commit 39b5d4abc4f6d59c8a041bb31e73f28545ff41f9 Author: miriam.baglioni Date: Sun Jun 5 11:37:23 2022 +0200 adding code and data diff --git a/Registry Overlap.xlsx b/Registry Overlap.xlsx new file mode 100644 index 0000000..991ec13 Binary files /dev/null and b/Registry Overlap.xlsx differ diff --git a/code/crossreferencededup.py b/code/crossreferencededup.py new file mode 100644 index 0000000..116162c --- /dev/null +++ b/code/crossreferencededup.py @@ -0,0 +1,202 @@ +import json + +fin = open('./data/in/ds_dedup_2022-02-16_13.03.17.csv') +fin.readline() +dic = {} +for line in fin: + line = line.strip().split(';') + last = len(line) -1 + if line[0] not in dic: + dic[line[0]] = set() + id = line[last ] + for i in range(len(line[last]), 12): + id += "_" + dic[line[0]].add(id.lower() + "::" + line[2]) + +fin.close() + +fin = open('./data/out/registryGroups.txt') +intersectionGroups = {} +onlyRegistries = [] +onlyDedup = [] +completeOverlap = [] +cp = set() + + +for line in fin: + rg = set(json.loads(line)) + found = False + for dg in dic: + intersection = rg.intersection(dic[dg]) + intl = len(intersection) + if intl > 0: + found = True + if intl == len(dic[dg]) and intl == len(rg): + completeOverlap.append(intersection) + cp.add(dg) + else: + if not dg in intersectionGroups: + intersectionGroups[dg] = [] + intersectionGroups[dg].append([dic[dg], rg, intersection]) + if not found: + onlyRegistries.append(rg) + +fin.close() + +freport = open('./data/out/allDuplicateSets.txt','w') +for dg in dic: + if not (dg in intersectionGroups or dg in cp): + onlyDedup.append(dic[dg]) + +fout = open('./data/out/onlyRegistry.txt','w') +for e in onlyRegistries: + r = fout.write("%s\n"%json.dumps(list(e))) + r = freport.write("%s\n"%json.dumps(list(e))) + +fout.close() + +fout = open('./data/out/completeOverlap.txt','w') +for e in completeOverlap: + r = fout.write("%s\n"%json.dumps(list(e))) + r = freport.write("%s\n"%json.dumps(list(e))) + +fout.close() + +fout = open('./data/out/intersection.txt','w') +for did in intersectionGroups: + ret = [] + for g in intersectionGroups[did]: + lista = [] + for l in g: + lista.append(list(l)) + ret.append(lista ) + r = fout.write("%s\n"%json.dumps(list(ret))) + +fout.close() + +fout = open('./data/out/onlyDedup.txt','w') +for e in onlyDedup: + r = fout.write("%s\n"%json.dumps(list(e))) + r = freport.write("%s\n"%json.dumps(list(e))) + +fout.close() + +dedupExtention = 0 +registryExtention = 0 +mutualExtention = 0 +groupMerging = 0 +newGroup = [] +newGroupCount = 0 +recount = 0 +extentionKeys = {'mutual':[], 'dedup':[],'registry':[],'merging':[]} + +for dg in intersectionGroups: + re = False + ng = set() + if len(intersectionGroups[dg]) > 1: + groupMerging += 1 + extentionKeys['merging'].append(dg) + for g in intersectionGroups[dg]: + ng = ng.union(g[0]) + ng = ng.union(g[1]) + else: + intersection = intersectionGroups[dg][0] + dedup = intersection[0] + registry = intersection[1] + inte = intersection[2] + if(len(inte)) < len(dedup) and len(inte) < len(registry): + mutualExtention += 1 + extentionKeys['mutual'].append(dg) + if(len(inte)) < len(dedup) and len(inte) == len(registry): + dedupExtention += 1 + extentionKeys['dedup'].append(dg) + if(len(inte)) == len(dedup) and len(inte) < len(registry): + registryExtention += 1 + re = True + extentionKeys['registry'].append(dg) + ng = dedup.union(registry) + duplicate = False + for tmp in newGroup: + l = len(tmp.intersection(ng)) + if l == len(tmp) and l == len(ng): + duplicate = True + break + if not duplicate: + newGroup.append(ng) + if not re : + newGroupCount += 1 + else: + recount += 1 + + +fout = open('./data/out/newGroups.txt','w') +for e in newGroup: + r = fout.write("%s\n"%json.dumps(list(e))) + r = freport.write("%s\n"%json.dumps(list(e))) + +fout.close() +freport.close() +fout = open('./data/out/report.txt','w') +fout.write("Merged Groups = %s \n"%str(groupMerging)) +fout.write("Mutual Extention = %s \n"%str(mutualExtention)) +fout.write("Extention to registry group via dedup = %s \n"%str(dedupExtention)) +fout.write("Extention to dedup group via registry = %s \n"%str(registryExtention)) +fout.write("Number of new groups without duplicates = %s \n"%str(newGroupCount)) +fout.write("Number of registry extentions without duplicates = %s \n"%str(recount)) +across4 = 0 +temp = [] +for i in newGroup: + tmp = [] + for e in i: + tmp .append(e[0:4]) + if 'fair' in tmp and 'roar' in tmp and 're3d' in tmp and 'open' in tmp: + across4 += 1 + temp.append(list(i)) +fout.write("Number Groups with at least one entry for each registry = %s \n"%str(across4)) + +fout.write("\n\n\n********** ENTRIES FROM ALL REGISTRY ************** \n\n\n") +for e in temp: + fout.write("%s\n"%json.dumps(e)) + +fout.write("\n\n\n********** MUTUAL EXTENTION GROUPS ************** \n\n\n") +for e in extentionKeys['mutual']: + ret = [] + for g in intersectionGroups[e]: + lista = [] + for l in g: + lista.append(list(l)) + ret.append(lista ) + r = fout.write("%s\n"%json.dumps(ret)) + +fout.write("\n\n\n********** MERGING EXTENTION GROUPS ************** \n\n\n") +for e in extentionKeys['merging']: + ret = [] + for g in intersectionGroups[e]: + lista = [] + for l in g: + lista.append(list(l)) + ret.append(lista ) + r = fout.write("%s\n"%json.dumps(ret)) + +fout.write("\n\n\n********** DEDUP EXTENTION GROUPS ************** \n\n\n") +for e in extentionKeys['dedup']: + ret = [] + for g in intersectionGroups[e]: + lista = [] + for l in g: + lista.append(list(l)) + ret.append(lista ) + r = fout.write("%s\n"%json.dumps(ret)) + +fout.write("\n\n\n********** REGISTRY EXTENTION GROUPS ************** \n\n\n") +for e in extentionKeys['registry']: + ret = [] + for g in intersectionGroups[e]: + lista = [] + for l in g: + lista.append(list(l)) + ret.append(lista ) + r = fout.write("%s\n"%json.dumps(ret)) + + +fout.close() diff --git a/code/crossreferencegroups.py b/code/crossreferencegroups.py new file mode 100644 index 0000000..528ba02 --- /dev/null +++ b/code/crossreferencegroups.py @@ -0,0 +1,255 @@ +import json + +def extendRe3data(r3key, gruppo): + global r3dic + global roardic + global externalRefs + foundErrors = False + if r3key in r3dic['opendoar']: + odkey = r3dic['opendoar'][r3key] + if odkey in externalRefs: + errors.write("ERROR Opendoar %s already inserted in previous set (ref %s)\n " % (odkey, r3key)) + foundErrors = True + gruppo.add(odkey) + externalRefs.add(odkey) + if r3key in r3dic['roar']: + rrkey = r3dic['roar'][r3key] + if rrkey in externalRefs: + errors.write("ERROR roar %s already inserted in previous set (ref %s ) \n" %(rrkey, r3key)) + foundErrors = True + gruppo.add(rrkey) + externalRefs.add(rrkey) + if rrkey in roardic: + od = roardic[rrkey] + if not od in gruppo and od in externalRefs: + errors.write("ERROR Opendoar %s already inserted in previous set (ref %s -> %s)\n " %(od, r3key, rrkey)) + foundErrors = True + gruppo.add(od) + externalRefs.add(od) + return foundErrors + +fairPrefix = 'fairsharing_::' +r3Prefix = 're3data_____::' +odoarPrefix = 'opendoar____::' +roarPrefix = 'roar________::' + +#creation of the crossreference structure for fairsharing and of the correspondence fairsharing doi -> fairsharing id +fin = open('./data/in/fairsharing_dump_api_02_2022.json') +cref = {} +fairdic = {} +for line in fin: + dic = json.loads(line) + if 'cross-references' in dic['attributes']['metadata']: + re3data = [e['name'] for e in dic['attributes']['metadata']['cross-references'] if e['portal']=='re3data'] + if len(re3data) > 0 : + cref[fairPrefix + dic['id']] = r3Prefix + re3data[0][8:] + if not dic['attributes']['doi'] is None: + fairdic[dic['attributes']['doi'].lower()] = dic['id'] + +fin.close() + + +#creation of the re3data crossrefence structure +fin = open('./data/in/re3data.tsv') +l = fin.readline() +r3dic= {'fairsharing' : {}, 'opendoar' : {}, 'roar' : {}} +for line in fin: + tmp = line.split('\t') + if tmp[5] != '[]': + if 'fairsharing' in tmp[5].lower() or 'opendoar' in tmp[5].lower() or 'roar' in tmp[5].lower(): + ids = json.loads(tmp[5]) + for i in ids: + if 'fairsharing_doi' in i.lower(): + key = i[16:].strip().lower() + if key[0] == ':': + key = key[1:] + if not key in fairdic: + print("%s => %s\n"%(tmp[0],key)) + else: + r3dic['fairsharing'][r3Prefix + tmp[0]] = fairPrefix + fairdic[key] + continue + if 'opendoar' in i.lower(): + r3dic['opendoar'][r3Prefix + tmp[0]] = odoarPrefix + i[9:].strip() + continue + if 'roar' in i.lower(): + r3dic['roar'][r3Prefix + tmp[0]] = roarPrefix + i[5:].strip() + +fin.close() + +#FAIRSHARING doi missing (adding them manually) +# r3d100010415 => 10.25504/fairsharing.fj07xj -> 1220 +r3dic['fairsharing'][r3Prefix + 'r3d100010415'] = fairPrefix + '1220' +# r3d100010422 => 10.25504/fairsharing.7b0fc3 -> 1091 +r3dic['fairsharing'][r3Prefix + 'r3d100010422'] = fairPrefix + '1091' +# r3d100012120 => 10.25504/fairsharing.3kfn3j -> 362 +r3dic['fairsharing'][r3Prefix + 'r3d100012120'] = fairPrefix + '362' +# r3d100012626 => 10.25504/fairsharing.62qk8w -> 1036 +r3dic['fairsharing'][r3Prefix + 'r3d100012626'] = fairPrefix + '1036' +# r3d100013199 => 10.24404/fairsharing.xb3lbl -> 2876 +r3dic['fairsharing'][r3Prefix + 'r3d100013199'] = fairPrefix + '2876' +# r3d100013295 => 10.25504/fairsharing.wp3t2 -> 2679 (typo. miss L at the end of the doi) +r3dic['fairsharing'][r3Prefix + 'r3d100013295'] = fairPrefix + '2679' + +# this is needed because in the input data there is the url +r3dic['roar']['re3data_____::r3d100013273'] = roarPrefix + '14208' + +#creation of the roar crossreference structure +fin = open('./data/in/roarCrossRef_1.tsv') + +fin.readline() +roardic = {} +for line in fin: + line = line.split('\t') + if line[1].lower() == 'opendoar': + if line[2].strip() != "": + roardic[roarPrefix +line[0].strip()] = odoarPrefix + line[2].strip() + +fin.close() + +#creation of groups from the crossreferences among the registries +registryGroups = [] +toCheckGroups = [] +externalRefs = set() + +errors = open('./data/out/ErrorsCrossRefs.txt','w') + +#searching crossreferences from fairsharing (only versus re3data) +for fkey in cref: + foundErrors = False + r3key = cref[fkey] + gruppo = set() + gruppo.add(fkey) + gruppo.add(r3key) + externalRefs.add(r3key) + externalRefs.add(fkey) + #verifies that re3data references back the same fairsharing id (if a crossreference from re3data to fairsharing exists) + #continues anyway to create the group + if r3key in r3dic['fairsharing'] and not r3dic['fairsharing'][r3key] == fkey: + errors.write("ERROR %s -> %s -> %s\n"%(fkey, r3key, r3dic['fairsharing'][r3key])) + foundErrors = True + if not foundErrors and not extendRe3data(r3key, gruppo): + registryGroups.append(gruppo) + else: + toCheckGroups.append(gruppo) + + +#searching cross references from re3data not already considered before + +#first the fairsharing remained from the fairsharing check +for r3key in r3dic['fairsharing']: + foundErrors = False + if r3key in externalRefs: + continue + fkey = r3dic['fairsharing'][r3key] + if fkey in externalRefs: + errors.write ("ERROR %s -> %s -> %s\n"%(r3key, fkey, cref[fkey])) + foundErrors = True + gruppo = set() + gruppo.add(r3key) + gruppo.add(fkey) + externalRefs.add(r3key) + externalRefs.add(fkey) + if not foundErrors and not extendRe3data(r3key, gruppo): + registryGroups.append(gruppo) + else: + toCheckGroups.append(gruppo) + +#second the roar +for r3key in r3dic['roar']: + foundErrors = False + if r3key in externalRefs: + continue + rrkey = r3dic['roar'][r3key] + if rrkey in externalRefs: + errors.write("ERROR roar %s already inserted in previous set (ref %s)\n " %(rrkey, r3key)) + foundErrors = True + gruppo = set() + gruppo.add(r3key) + gruppo.add(rrkey) + externalRefs.add(r3key) + externalRefs.add(rrkey) + if r3key in r3dic['opendoar']: + odkey = r3dic['opendoar'][r3key] + if odkey in externalRefs: + errors.write("ERROR Opendoar %s already inserted in previous set (ref %s)\n " %(odkey, r3key)) + foundErrors = True + gruppo.add(odkey) + externalRefs.add(odkey) + if rrkey in roardic: + od = roardic[rrkey] + if not od in gruppo and od in externalRefs: + errors.write("ERROR Opendoar %s already inserted in previous set (ref %s -> %s)\n " %(od, r3key, rrkey)) + foundErrors = True + gruppo.add(od) + externalRefs.add(od) + if not foundErrors: + registryGroups.append(gruppo) + else: + toCheckGroups.append(gruppo) + +#last those remaining from re3data to opendoar +for r3key in r3dic['opendoar']: + foundErrors = False + if r3key in externalRefs: + continue + odkey = r3dic['opendoar'][r3key] + if odkey in externalRefs: + errors.write("ERROR opendoar %s already inserted in previous set (ref %s) " %(odkey, r3key)) + foundErrors = True + gruppo = set() + gruppo.add(r3key) + gruppo.add(odkey) + externalRefs.add(odkey) + if not foundErrors: + registryGroups.append(gruppo) + else: + toCheckGroups.append(gruppo) + + +#searching crossreference from roar not already considered +for rrkey in roardic: + foundErrors = False + if rrkey in externalRefs: + continue + odkey = roardic[rrkey] + if odkey in externalRefs: + #here we have to check if the previous formed group has to be extended with roar + for g in registryGroups: + if odkey in g: + g.add(rrkey) + externalRefs.add(rrkey) + break + continue + gruppo = set() + gruppo.add(rrkey) + gruppo.add(odkey) + externalRefs.add(rrkey) + externalRefs.add(odkey) + if not foundErrors: + registryGroups.append(gruppo) + else: + toCheckGroups.append(gruppo) + + +errors.close() + +fout = open('./data/out/registryGroups.txt','w') +for g in registryGroups: + fout.write(json.dumps(list(g)) + "\n") + +fout.close() + + +fout = open('./data/out/toCheckGroups.txt','w') +for g in toCheckGroups: + fout.write(json.dumps(list(g)) + "\n") + +fout.close() + +fout = open('./data/out/report_registry_groups.txt','w') +fout.write("Fairsharing references to re3data = %s\n"%len(cref)) +fout.write("Re3Data references to Fairsharing = %s\n"%len(r3dic['fairsharing'])) +fout.write("Re3Data references to opendoar = %s\n"%len(r3dic['opendoar'])) +fout.write("Re3Data references to roar = %s\n"%len(r3dic['roar'])) +fout.write("ROAR references to opendoar = %s\n"%len(roardic)) +fout.close() diff --git a/data/in/ds_dedup_2022-02-16_13.03.17.csv b/data/in/ds_dedup_2022-02-16_13.03.17.csv new file mode 100644 index 0000000..6c9cd87 --- /dev/null +++ b/data/in/ds_dedup_2022-02-16_13.03.17.csv @@ -0,0 +1,4715 @@ +dedup_id;duplicate_id;original_id;name;collectedfrom +dedup::001e6d882e54c780ce269d3c46997287;https://fairsharing.org/10.25504/FAIRsharing.qaszjp;2094;"RESID Database of Protein Modifications";FAIRsharing +dedup::001e6d882e54c780ce269d3c46997287;re3data::r3d100011306;r3d100011306;"RESID Database of Protein Modifications";re3data +dedup::003ab6b40af9b488decea7c582d150a2;re3data::r3d100011894;r3d100011894;"Synapse";re3data +dedup::003ab6b40af9b488decea7c582d150a2;https://fairsharing.org/10.25504/FAIRsharing.dnxzmk;2315;"Synapse";FAIRsharing +dedup::0048f2e3aa55ab88aaaac0cfa4153ad5;opendoar::4562;4562;"erzincan binali yıldırım university institutional repository";OpenDOAR +dedup::0048f2e3aa55ab88aaaac0cfa4153ad5;roar::14673;14673;"Erzincan Binali Yıldırım University Institutional Repository";roar +dedup::00a35b4a2495a342f5632d18cf5985f6;opendoar::6787;6787;"scholarly commons university of the pacific";OpenDOAR +dedup::00a35b4a2495a342f5632d18cf5985f6;roar::13960;13960;"Scholarly Commons - University of the Pacific";roar +dedup::00a6af15fba302b272b110ac88924779;roar::755;755;"KFUPM ePrints";roar +dedup::00a6af15fba302b272b110ac88924779;opendoar::1285;1285;"kfupm eprints";OpenDOAR +dedup::00abc31cf19cdb0c3648bc93cf8adbd0;roar::13373;13373;"Digital Commons @ Fuller";roar +dedup::00abc31cf19cdb0c3648bc93cf8adbd0;opendoar::8955;8955;"digital commons @ fuller";OpenDOAR +dedup::00b7f4064a153e2abf6f1a29aa6f9cbc;opendoar::2192;2192;"médihal";OpenDOAR +dedup::00b7f4064a153e2abf6f1a29aa6f9cbc;roar::3979;3979;"MédiHAL";roar +dedup::011ce81bc02a8eba232cc922babdf54d;opendoar::3277;3277;"biblioteca digital da memória científica do inpe";OpenDOAR +dedup::011ce81bc02a8eba232cc922babdf54d;roar::7586;7586;"Biblioteca Digital da Memória Científica do INPE";roar +dedup::0124ad64019cf8aef049d8d893042b2c;opendoar::1633;1633;"evols at university of hawaii at manoa";OpenDOAR +dedup::0124ad64019cf8aef049d8d893042b2c;roar::550;550;"eVols at University of Hawaii at Manoa";roar +dedup::013efd32645729a492b4791f72b51409;roar::4209;4209;"Marshall Foundation Digital Library";roar +dedup::013efd32645729a492b4791f72b51409;opendoar::2282;2282;"marshall foundation digital library";OpenDOAR +dedup::01594f70078225acaaf0d190d1bc2071;opendoar::4643;4643;"repositório institucional digital da produção científica e intelectual da ufjf";OpenDOAR +dedup::01594f70078225acaaf0d190d1bc2071;roar::11520;11520;"Repositório Institucional Digital da Produção Científica e Intelectual da UFJF";roar +dedup::015d58d60d6a867d822f5c44e2a1cd98;roar::5988;5988;"Digitale Bibliothek Braunschweig";roar +dedup::015d58d60d6a867d822f5c44e2a1cd98;opendoar::719;719;"digitale bibliothek braunschweig";OpenDOAR +dedup::01ce55653d09956f196191efaeed59a0;opendoar::914;914;"utokyo repository";OpenDOAR +dedup::01ce55653d09956f196191efaeed59a0;roar::15186;15186;"UTokyo Repository";roar +dedup::0204ccdb313f94c841d0de0ad4c5d107;opendoar::1855;1855;"auc dar repository (digital archive and research repository)";OpenDOAR +dedup::0204ccdb313f94c841d0de0ad4c5d107;roar::2918;2918;"AUC DAR Repository (Digital Archive and Research Repository)";roar +dedup::0216955757aeecd8c948c52918f97ce8;re3data::r3d100013300;r3d100013300;"COVID-19 Research Collaborations";re3data +dedup::0216955757aeecd8c948c52918f97ce8;https://fairsharing.org/fairsharing_records/2926;2926;"COVID-19 Research Collaborations";FAIRsharing +dedup::0284e867f3fb80a95919384aaa078a74;roar::2595;2595;"Rajamangala University of Technology Phra Nakhon Intellectual Repository";roar +dedup::0284e867f3fb80a95919384aaa078a74;opendoar::1758;1758;"rajamangala university of technology phra nakhon intellectual repository";OpenDOAR +dedup::029bc63b4618a84b2b9965815d18696c;opendoar::1495;1495;"bioversity international publications";OpenDOAR +dedup::029bc63b4618a84b2b9965815d18696c;roar::5469;5469;"Bioversity International Publications";roar +dedup::02aade78e738a92af3972c6a2d15bbd6;opendoar::2403;2403;"repositorio institucional digital del ieo";OpenDOAR +dedup::02aade78e738a92af3972c6a2d15bbd6;roar::4707;4707;"Repositorio Institucional Digital del IEO";roar +dedup::02ac660b8298f2dbf1ab097347a06707;re3data::r3d100012862;r3d100012862;"Carbohydrate Structure Database";re3data +dedup::02ac660b8298f2dbf1ab097347a06707;https://fairsharing.org/10.25504/FAIRsharing.dkbt9j;1730;"Carbohydrate Structure Database";FAIRsharing +dedup::02ebadab8bdd9a1e0ee89ed6fbea74dc;opendoar::1398;1398;"hal-inserm";OpenDOAR +dedup::02ebadab8bdd9a1e0ee89ed6fbea74dc;roar::604;604;"HAL - INSERM";roar +dedup::033e820519216be214854215b16fdc71;re3data::r3d100011552;r3d100011552;"Ningaloo Atlas";re3data +dedup::033e820519216be214854215b16fdc71;https://fairsharing.org/fairsharing_records/3000;3000;"Ningaloo Atlas";FAIRsharing +dedup::033ee1bd075254a93ab0eae8bcb335fd;roar::11835;11835;"Humadoc Repositorio";roar +dedup::033ee1bd075254a93ab0eae8bcb335fd;opendoar::9625;9625;"humadoc repositorio";OpenDOAR +dedup::033ee1bd075254a93ab0eae8bcb335fd;re3data::r3d100013348;r3d100013348;"Humadoc repositorio";re3data +dedup::0347c9c5169d994c749d4867e0d8dcc6;re3data::r3d100013478;r3d100013478;"Bitbucket";re3data +dedup::0347c9c5169d994c749d4867e0d8dcc6;https://fairsharing.org/10.25504/FAIRsharing.fc3431;3275;"Bitbucket";FAIRsharing +dedup::0377b5b7665643d8abbb10fefc1f985b;https://fairsharing.org/fairsharing_records/3001;3001;"Chesapeake Bay Environmental Observatory";FAIRsharing +dedup::0377b5b7665643d8abbb10fefc1f985b;re3data::r3d100010076;r3d100010076;"Chesapeake Bay Environmental Observatory";re3data +dedup::037e3c7108987ff5886a9c11d01e58b3;opendoar::929;929;"resource repository";OpenDOAR +dedup::037e3c7108987ff5886a9c11d01e58b3;roar::1110;1110;"Resource Repository";roar +dedup::03805d9bcb93d37a085ca820c4792a72;opendoar::2205;2205;"publikationer från kungl. musikhögskolan";OpenDOAR +dedup::03805d9bcb93d37a085ca820c4792a72;roar::4033;4033;"Publikationer från Kungl. Musikhögskolan";roar +dedup::038ef33e8d3de51d3536d62e6c103be7;roar::6167;6167;"Institutional Repository UIN Syarif Hidayatullah Jakarta";roar +dedup::038ef33e8d3de51d3536d62e6c103be7;opendoar::2717;2717;"institutional repository uin syarif hidayatullah jakarta";OpenDOAR +dedup::038ef33e8d3de51d3536d62e6c103be7;roar::6580;6580;"Institutional Repository UIN Syarif Hidayatullah Jakarta";roar +dedup::03abe7cc18434c3def308690c720ed85;re3data::r3d100013018;r3d100013018;"Alberta Geological Survey Open Data Portal";re3data +dedup::03abe7cc18434c3def308690c720ed85;https://fairsharing.org/fairsharing_records/3085;3085;"Alberta Geological Survey Open Data Portal";FAIRsharing +dedup::03ae9b93d365a264e8aec9bb620d3712;opendoar::802;802;"fontys iport";OpenDOAR +dedup::03ae9b93d365a264e8aec9bb620d3712;roar::5714;5714;"Fontys iPort";roar +dedup::03b4791cfec8ed1ee795e6b5e113358a;https://fairsharing.org/10.25504/FAIRsharing.xxtmjs;1953;"Melanoma Molecular Map Project";FAIRsharing +dedup::03b4791cfec8ed1ee795e6b5e113358a;re3data::r3d100010276;r3d100010276;"Melanoma Molecular Map Project";re3data +dedup::03b89783081dd9da5992a866f591d343;opendoar::2292;2292;"repositório institucional da universidade de aveiro";OpenDOAR +dedup::03b89783081dd9da5992a866f591d343;roar::4988;4988;"Repositório Institucional da Universidade de Aveiro";roar +dedup::0403829899c51fc08e50a9cb8b9f74e8;opendoar::462;462;"digital collections repository";OpenDOAR +dedup::0403829899c51fc08e50a9cb8b9f74e8;roar::5264;5264;"Digital Collections Repository";roar +dedup::04223f18402c005b1bd8fd3267400c14;re3data::r3d100013382;r3d100013382;"intellectum";re3data +dedup::04223f18402c005b1bd8fd3267400c14;opendoar::2587;2587;"intellectum";OpenDOAR +dedup::04391372d7db7e27d24e26888cb6d311;roar::2466;2466;"Repositório do Instituto Politécnico de Castelo Branco";roar +dedup::04391372d7db7e27d24e26888cb6d311;opendoar::1716;1716;"repositório do instituto politécnico de castelo branco";OpenDOAR +dedup::04402b4397fba0acaa50da51fc21ae81;re3data::r3d100013208;r3d100013208;"depositar";re3data +dedup::04402b4397fba0acaa50da51fc21ae81;https://fairsharing.org/10.25504/FAIRsharing.58a42b;3576;"depositar";FAIRsharing +dedup::044edcd1c961b3942a7e0e90d1005e2d;roar::7902;7902;"The University of Arizona Campus Repository";roar +dedup::044edcd1c961b3942a7e0e90d1005e2d;opendoar::2468;2468;"university of arizona campus repository";OpenDOAR +dedup::044edcd1c961b3942a7e0e90d1005e2d;roar::5216;5216;"University of Arizona Campus Repository";roar +dedup::0468c62a26a75be73109e1efa74bee44;roar::12182;12182;"ScholarWorks @ UVM";roar +dedup::0468c62a26a75be73109e1efa74bee44;opendoar::3096;3096;"scholarworks @ uvm";OpenDOAR +dedup::0468c62a26a75be73109e1efa74bee44;roar::8677;8677;"ScholarWorks @ UVM";roar +dedup::04949517a3f002c5231fc109762df503;roar::6215;6215;"DSpace@Dogus";roar +dedup::04949517a3f002c5231fc109762df503;opendoar::2662;2662;"dspace@dogus";OpenDOAR +dedup::04bd899c7c7757b15e43cf5ccd3f30e7;roar::326;326;"DigitalCommons@CalPoly";roar +dedup::04bd899c7c7757b15e43cf5ccd3f30e7;opendoar::1152;1152;"digitalcommons@calpoly";OpenDOAR +dedup::053eb8ab14c76525fd6f1daeb061f064;opendoar::9528;9528;"repositorio institucional históricas - unam";OpenDOAR +dedup::053eb8ab14c76525fd6f1daeb061f064;roar::15805;15805;"Repositorio Institucional Históricas-UNAM";roar +dedup::053eb8ab14c76525fd6f1daeb061f064;roar::15765;15765;"Repositorio Institucional Históricas-UNAM";roar +dedup::055401e78b61444408b038e20115ec6e;opendoar::4874;4874;"cispa helmholtz center for information security publication database";OpenDOAR +dedup::055401e78b61444408b038e20115ec6e;roar::15263;15263;"CISPA – Helmholtz Center for Information Security Publication Database";roar +dedup::055a774ae670d67e9f3036d2d83cc002;opendoar::3833;3833;"kinu repository";OpenDOAR +dedup::055a774ae670d67e9f3036d2d83cc002;roar::11928;11928;"KINU Repository(통일연구원)";roar +dedup::05904fb5f20010d457b5f51a2c5a6134;https://fairsharing.org/10.25504/FAIRsharing.vd25jp;1936;"J-GLOBAL";FAIRsharing +dedup::05904fb5f20010d457b5f51a2c5a6134;re3data::r3d100012247;r3d100012247;"J-Global";re3data +dedup::05add0db223cc2368c43722abe93c3dc;opendoar::2251;2251;"podlaska digital library";OpenDOAR +dedup::05add0db223cc2368c43722abe93c3dc;roar::4134;4134;"Podlaska Digital Library";roar +dedup::05c7be0f4d3b73a769454d7a165b3ff9;opendoar::2164;2164;"cross collection discovery";OpenDOAR +dedup::05c7be0f4d3b73a769454d7a165b3ff9;roar::3864;3864;"Cross Collection Discovery";roar +dedup::05d2113d60044702281caa01b2ad2890;roar::8620;8620;"Beykent University Institutional Repository";roar +dedup::05d2113d60044702281caa01b2ad2890;opendoar::3097;3097;"beykent university institutional repository";OpenDOAR +dedup::05e5b94014b8180f0204465b21e3f152;re3data::r3d100012018;r3d100012018;"MalaCards";re3data +dedup::05e5b94014b8180f0204465b21e3f152;https://fairsharing.org/10.25504/FAIRsharing.e4r5nj;2371;"MalaCards";FAIRsharing +dedup::061f4ffa48d54949dccb596bd2669fcc;opendoar::2811;2811;"cuhk digital repository";OpenDOAR +dedup::061f4ffa48d54949dccb596bd2669fcc;roar::7330;7330;"CUHK Digital Repository";roar +dedup::0636364b14c8371406ad96ad036309e6;roar::7228;7228;"Daffodil International University Institutional Digital Repository";roar +dedup::0636364b14c8371406ad96ad036309e6;opendoar::2724;2724;"daffodil international university institutional digital repository";OpenDOAR +dedup::063f057111536acf72dae5f0af97a79b;re3data::r3d100010673;r3d100010673;"The Microbial Protein Interaction Database";re3data +dedup::063f057111536acf72dae5f0af97a79b;https://fairsharing.org/10.25504/FAIRsharing.eyjkws;1937;"Microbial Protein Interaction Database";FAIRsharing +dedup::06862545c8254d15e020c126906d0993;roar::14363;14363;"IIASA DARE";roar +dedup::06862545c8254d15e020c126906d0993;re3data::r3d100012932;r3d100012932;"IIASA DARE";re3data +dedup::068727aef5b6aa00ab683e8bd48c8207;re3data::r3d100011965;r3d100011965;"Imperial College Research Computing Service Data Repository";re3data +dedup::068727aef5b6aa00ab683e8bd48c8207;https://fairsharing.org/10.25504/FAIRsharing.LEtKjT;2707;"Imperial College Research Computing Service Data Repository";FAIRsharing +dedup::06a4be0dca480e71b823fd599ed221a0;opendoar::2557;2557;"biblioteka cyfrowa diecezji legnickiej";OpenDOAR +dedup::06a4be0dca480e71b823fd599ed221a0;roar::5840;5840;"Biblioteka Cyfrowa Diecezji Legnickiej";roar +dedup::06a4be0dca480e71b823fd599ed221a0;roar::5915;5915;"Biblioteka Cyfrowa Diecezji Legnickiej";roar +dedup::06d7a8551f51ff4b3f974df35fc9e0c2;roar::5964;5964;"Repository of Nicolaus Copernicus University";roar +dedup::06d7a8551f51ff4b3f974df35fc9e0c2;opendoar::2570;2570;"repository of nicolaus copernicus university";OpenDOAR +dedup::070cbbecb3ee2b030d6f827110e59d65;opendoar::2451;2451;"open knowledge environment of the caribbean";OpenDOAR +dedup::070cbbecb3ee2b030d6f827110e59d65;roar::5075;5075;"Open Knowledge Environment of the Caribbean";roar +dedup::07482e9dd24ad6ab77729701eea3927d;roar::4974;4974;"University of Florida Institutional Repository";roar +dedup::07482e9dd24ad6ab77729701eea3927d;opendoar::1109;1109;"university of florida institutional repository";OpenDOAR +dedup::074cf037e9171264d63b7320ae06ed44;roar::1188;1188;"Science Attic";roar +dedup::074cf037e9171264d63b7320ae06ed44;opendoar::737;737;"science attic";OpenDOAR +dedup::07af0c4715d053dffbd43ac846d986d1;roar::4384;4384;"Institutional Repository of Institute of Earth Environment";roar +dedup::07af0c4715d053dffbd43ac846d986d1;opendoar::2308;2308;"institutional repository of institute of earth environment, cas";OpenDOAR +dedup::07b65089515c8f99812d14bbb01334a6;roar::474;474;"ECNIS Repository (Environmental Cancer Risk";roar +dedup::07b65089515c8f99812d14bbb01334a6;roar::5541;5541;"ECNIS Repository (Environmental Cancer Risk";roar +dedup::07f571d999545698bd85f1a08aae18fd;opendoar::717;717;"opus w elektronische hochschulschriften der pädagogischen hochschule weingarten und der hochschule ravensburg - weingarten";OpenDOAR +dedup::07f571d999545698bd85f1a08aae18fd;roar::9144;9144;"OPUS W Elektronische Hochschulschriften der Paedagogischen Hochschule Weingarten und der Hochschule Ravensburg - Weingarten";roar +dedup::085cf1ab82c39a52f4d5f28b096be7bb;re3data::r3d100010418;r3d100010418;"RunMyCode";re3data +dedup::085cf1ab82c39a52f4d5f28b096be7bb;https://fairsharing.org/10.25504/FAIRsharing.f7p410;2541;"RunMyCode";FAIRsharing +dedup::086cfa616d22d79984ff9465a2b49fdc;roar::11913;11913;"SZTE Egyetemi kiadványok/University of Szeged Repository of Papers and Books";roar +dedup::086cfa616d22d79984ff9465a2b49fdc;opendoar::3962;3962;"szte egyetemi kiadványok / university of szeged repository of papers and books";OpenDOAR +dedup::0894634a3244e3050d8057a453e17e57;re3data::r3d100011553;r3d100011553;"European Variation Archive";re3data +dedup::0894634a3244e3050d8057a453e17e57;https://fairsharing.org/10.25504/FAIRsharing.6824pv;2155;"European Variation Archive";FAIRsharing +dedup::08c18110941d5a5640cbf5e16e73a78a;opendoar::2105;2105;"repositorio de trabajos finales del taller de diseño industrial (cátedra gálan) de la carrera de diseño industrial";OpenDOAR +dedup::08c18110941d5a5640cbf5e16e73a78a;roar::3684;3684;"Repositorio de trabajos finales del Taller de Diseño Industrial (Cátedra Gálan) de la Carrera de Diseño Industrial";roar +dedup::08f0ffa00223bcaa96c9eb7c9f69ea47;roar::5556;5556;"Digital Repository Polonica";roar +dedup::08f0ffa00223bcaa96c9eb7c9f69ea47;opendoar::2044;2044;"digital repository polonica";OpenDOAR +dedup::08f0ffa00223bcaa96c9eb7c9f69ea47;roar::3534;3534;"Digital Repository Polonica";roar +dedup::091afc0a9e20f52639655a6e5f2b5fa8;re3data::r3d100012457;r3d100012457;"AmoebaDB";re3data +dedup::091afc0a9e20f52639655a6e5f2b5fa8;https://fairsharing.org/10.25504/FAIRsharing.swbypy;2095;"AmoebaDB";FAIRsharing +dedup::0922f6891e1c3a9c0070bc692cc28283;roar::9980;9980;"Institutional Repository of Guangxi University For Nationalities(广西民族大学机构知识库)";roar +dedup::0922f6891e1c3a9c0070bc692cc28283;opendoar::3370;3370;"institutional repository of guangxi university for nationalities";OpenDOAR +dedup::0987233d4fc6338a49977f1f52f345b4;re3data::r3d100010205;r3d100010205;"ChemSpider";re3data +dedup::0987233d4fc6338a49977f1f52f345b4;https://fairsharing.org/10.25504/FAIRsharing.96f3gm;2042;"ChemSpider";FAIRsharing +dedup::09a78134c45595dade803bf79972c567;roar::14719;14719;"MEF University Institutional Repository";roar +dedup::09a78134c45595dade803bf79972c567;opendoar::3570;3570;"mef university institutional repository";OpenDOAR +dedup::09aa641e355f6d1b28bc8495e3ad86e0;opendoar::2161;2161;"umm al-qura university reference repository";OpenDOAR +dedup::09aa641e355f6d1b28bc8495e3ad86e0;roar::3860;3860;"Umm Al-Qura University Reference Repository";roar +dedup::09bc5f2315b77c87d17aaee1fee63aee;opendoar::117;117;"waseda university repository";OpenDOAR +dedup::09bc5f2315b77c87d17aaee1fee63aee;roar::1498;1498;"Waseda University Repository";roar +dedup::09c5bca1459da271151ecc350ebc7ce8;opendoar::3105;3105;"zonguldak bülent ecevit university institutional repository";OpenDOAR +dedup::09c5bca1459da271151ecc350ebc7ce8;roar::16037;16037;"Zonguldak Bülent Ecevit University Institutional Repository";roar +dedup::09daa55ce3c13eb73548432bec3cf223;https://fairsharing.org/fairsharing_records/3120;3120;"World Data Centre for Meteorology, Obninsk";FAIRsharing +dedup::09daa55ce3c13eb73548432bec3cf223;re3data::r3d100010144;r3d100010144;"World Data Centre for Meteorology, Obninsk";re3data +dedup::09f81148146ba167b247af49363a0b73;roar::6427;6427;"Portal Garuda STMIK IBBI (STMIK IBBI Repository)";roar +dedup::09f81148146ba167b247af49363a0b73;opendoar::2771;2771;"portal garuda stmik ibbi (stmik ibbi repository)";OpenDOAR +dedup::09f81148146ba167b247af49363a0b73;roar::7269;7269;"Portal Garuda STMIK IBBI (STMIK IBBI Repository)";roar +dedup::09f9da3739916d5d8c08622636afa8f8;opendoar::2903;2903;"biblioteca digital de teses e dissertações eletrônicas da uerj";OpenDOAR +dedup::09f9da3739916d5d8c08622636afa8f8;roar::7540;7540;"Biblioteca Digital de Teses e Dissertações Eletrônicas da UERJ";roar +dedup::09ff79f4c25bd966a6172a1ab3d701e5;opendoar::1434;1434;"ferris institutional repository";OpenDOAR +dedup::09ff79f4c25bd966a6172a1ab3d701e5;roar::5490;5490;"Ferris Institutional Repository";roar +dedup::0a1dba2fb7de1122f431e4b9e9f8343c;opendoar::4057;4057;"repositorio institucional de la universidad ricardo palma";OpenDOAR +dedup::0a1dba2fb7de1122f431e4b9e9f8343c;roar::15112;15112;"Repositorio Institucional de la Universidad Ricardo Palma";roar +dedup::0a7908f1abcc3daf42ef171aa96c022b;opendoar::1057;1057;"university of the ryukyus repository";OpenDOAR +dedup::0a7908f1abcc3daf42ef171aa96c022b;roar::1436;1436;"University of the Ryukyus Repository";roar +dedup::0a8991b8558e11221f674d0c5ee85cdb;re3data::r3d100010328;r3d100010328;"PsychData";re3data +dedup::0a8991b8558e11221f674d0c5ee85cdb;https://fairsharing.org/10.25504/FAIRsharing.a58029;2656;"PsychData";FAIRsharing +dedup::0ac7476b78b847fdbb311e710e7d8e2b;roar::8359;8359;"Digital Commons @ George Fox University";roar +dedup::0ac7476b78b847fdbb311e710e7d8e2b;opendoar::3136;3136;"digital commons @ george fox university";OpenDOAR +dedup::0acc05c043efdd781165b1609699b440;opendoar::1011;1011;"carlyle letters online: a victorian cultural reference";OpenDOAR +dedup::0acc05c043efdd781165b1609699b440;roar::2399;2399;"Carlyle Letters Online: A Victorian Cultural Reference";roar +dedup::0ad88cccfa0a423f6979236c8e3ea570;opendoar::961;961;"hku scholars hub";OpenDOAR +dedup::0ad88cccfa0a423f6979236c8e3ea570;opendoar::4395;4395;"hku scholars hub";OpenDOAR +dedup::0ad88cccfa0a423f6979236c8e3ea570;roar::631;631;"HKU Scholars Hub";roar +dedup::0ae9b5c3963d8c337a6b660578704d31;opendoar::4815;4815;"repositorio institucional unsaac";OpenDOAR +dedup::0ae9b5c3963d8c337a6b660578704d31;roar::15201;15201;"Repositorio Institucional - UNSAAC";roar +dedup::0af5923db60adf018789f42e332462dd;opendoar::4426;4426;"repositori universitas alma ata yogyakarta";OpenDOAR +dedup::0af5923db60adf018789f42e332462dd;roar::13403;13403;"Repository Universitas Alma Ata Yogyakarta";roar +dedup::0b27e3d0d6c2166ca2c65ea47d69c4c1;roar::648;648;"Humanities Text Initiative";roar +dedup::0b27e3d0d6c2166ca2c65ea47d69c4c1;opendoar::485;485;"humanities text initiative";OpenDOAR +dedup::0b56cbd073b7b1f119dc04d9b0fd18c9;opendoar::3133;3133;"krivet repository";OpenDOAR +dedup::0b56cbd073b7b1f119dc04d9b0fd18c9;roar::8768;8768;"KRIVET Repository(한국직업개발능력원)";roar +dedup::0b7e684c89e746c67c9761ce2b65479c;opendoar::375;375;"woods hole open access server";OpenDOAR +dedup::0b7e684c89e746c67c9761ce2b65479c;re3data::r3d100010423;r3d100010423;"Woods Hole Open Access Server";re3data +dedup::0b7e684c89e746c67c9761ce2b65479c;https://fairsharing.org/10.25504/FAIRsharing.r3fzzc;2536;"Woods Hole Open Access Server";FAIRsharing +dedup::0be44aa69610e09805d4002baf7e0b10;roar::16867;16867;"Chung Shan Medical University Institutional Repository: 中山醫學大學機構典藏系統";roar +dedup::0be44aa69610e09805d4002baf7e0b10;roar::2907;2907;"Chung Shan Medical University Institutional Repository: 中山醫學大學機構典藏系統";roar +dedup::0be7a33337930f8558a50a874112c041;https://fairsharing.org/fairsharing_records/3092;3092;"SUNScholarData";FAIRsharing +dedup::0be7a33337930f8558a50a874112c041;re3data::r3d100013165;r3d100013165;"SUNScholarData";re3data +dedup::0c288f0e51a667208dbb2d48227252c9;re3data::r3d100013711;r3d100013711;"RIKEN Bioresource Research Center";re3data +dedup::0c288f0e51a667208dbb2d48227252c9;https://fairsharing.org/10.25504/FAIRsharing.tn11nn;2039;"RIKEN Bioresource Research Center";FAIRsharing +dedup::0c336c630e3bd02e55bcfd391f6f172e;roar::1075;1075;"Repositorio Institucional de Asturias (RIA)";roar +dedup::0c336c630e3bd02e55bcfd391f6f172e;opendoar::1420;1420;"repositorio institucional de asturias";OpenDOAR +dedup::0c34770edc42a1d2ac361b64cfabfb63;roar::5432;5432;"Digital Library of Jelenia Góra";roar +dedup::0c34770edc42a1d2ac361b64cfabfb63;roar::4030;4030;"Digital Library of Jelenia Góra";roar +dedup::0c492a64ddf451c6f4c470b2dc5cddc4;roar::14428;14428;"Perbanas Institutional Repository ";roar +dedup::0c492a64ddf451c6f4c470b2dc5cddc4;opendoar::4303;4303;"perbanas institutional repository";OpenDOAR +dedup::0c4e7fe30cd6c3bb35d9ad1457893e27;roar::10029;10029;"Agritrop";roar +dedup::0c4e7fe30cd6c3bb35d9ad1457893e27;opendoar::3631;3631;"agritrop";OpenDOAR +dedup::0c62c0532c30f9d6896de56e2e437b7b;opendoar::2498;2498;"future university hakodate academic archive";OpenDOAR +dedup::0c62c0532c30f9d6896de56e2e437b7b;roar::5332;5332;"Future University Hakodate Academic Archive";roar +dedup::0c6ed4b110c461d9350bf5c620bc78d7;roar::3020;3020;"KCE Repository";roar +dedup::0c6ed4b110c461d9350bf5c620bc78d7;roar::3401;3401;"KCE Repository";roar +dedup::0c6ed4b110c461d9350bf5c620bc78d7;roar::5252;5252;"KCE Repository";roar +dedup::0c790a06b3f21ff3e18ed447f854095b;roar::16454;16454;"AIIAS Online Repository";roar +dedup::0c790a06b3f21ff3e18ed447f854095b;opendoar::9985;9985;"aiias online repository";OpenDOAR +dedup::0c7ef8295e0c78b0355144c94bcccc0a;opendoar::4763;4763;"niva open access archive";OpenDOAR +dedup::0c7ef8295e0c78b0355144c94bcccc0a;roar::15405;15405;"NIVA Open Access Archive";roar +dedup::0c7f17dd47a7c5ba34aed011c013ec15;opendoar::2414;2414;"shdl@mmu digital repository";OpenDOAR +dedup::0c7f17dd47a7c5ba34aed011c013ec15;roar::3873;3873;"SHDL@MMU Digital Repository";roar +dedup::0c838fb850568de92e5514a1d43c1866;opendoar::583;583;"te tumu eprints repository";OpenDOAR +dedup::0c838fb850568de92e5514a1d43c1866;roar::1258;1258;"Te Tumu Eprints Repository ";roar +dedup::0c94d4f2aed176ee07d338abab9d3963;roar::15775;15775;"IST Austria Research Explorer";roar +dedup::0c94d4f2aed176ee07d338abab9d3963;re3data::r3d100012394;r3d100012394;"IST Austria Research Explorer";re3data +dedup::0c94d4f2aed176ee07d338abab9d3963;opendoar::3529;3529;"ist austria research explorer";OpenDOAR +dedup::0caae752e52ab9a80b3669c2b6bcd394;roar::9560;9560;"Digital Commons @ RU";roar +dedup::0caae752e52ab9a80b3669c2b6bcd394;opendoar::5061;5061;"digital commons @ ru";OpenDOAR +dedup::0cc7a9f4665d1567ba07283db0fa41f1;roar::9726;9726;"Toin University of Yokohama Academic Repository";roar +dedup::0cc7a9f4665d1567ba07283db0fa41f1;opendoar::3330;3330;"toin university of yokohama academic repository";OpenDOAR +dedup::0cd3259d5c1a10ae87a1a87ab999e3fc;roar::10189;10189;"Maritime Commons: The Digital Repository of the World Maritime University";roar +dedup::0cd3259d5c1a10ae87a1a87ab999e3fc;opendoar::4929;4929;"maritime commons - the digital repository of world maritime university";OpenDOAR +dedup::0cf66ae6e3dddb2d0bea6973605c0938;roar::1404;1404;"University of Oregon Scholars' Bank";roar +dedup::0cf66ae6e3dddb2d0bea6973605c0938;opendoar::574;574;"university of oregon scholars bank";OpenDOAR +dedup::0d086e2fc269bc066ba611e13e9dd598;roar::3053;3053;"Travesía";roar +dedup::0d086e2fc269bc066ba611e13e9dd598;opendoar::1886;1886;"travesía";OpenDOAR +dedup::0d2a73ba37e2e25cce9bd27b68be4207;https://fairsharing.org/10.25504/FAIRsharing.wk5azf;1973;"Database of Sequence Tagged Sites";FAIRsharing +dedup::0d2a73ba37e2e25cce9bd27b68be4207;re3data::r3d100010649;r3d100010649;"database of Sequence Tagged Sites";re3data +dedup::0d71d7ca18339f31fa8d68ca56a43140;opendoar::2694;2694;"researchspace";OpenDOAR +dedup::0d71d7ca18339f31fa8d68ca56a43140;roar::6555;6555;"ResearchSPAce";roar +dedup::0d890b579ed28ed67aa17f7c44245542;opendoar::61;61;"central connecticut state university digital collections";OpenDOAR +dedup::0d890b579ed28ed67aa17f7c44245542;roar::222;222;"Central Connecticut State University Digital Collections";roar +dedup::0d890b579ed28ed67aa17f7c44245542;roar::5623;5623;"Central Connecticut State University Digital Collections";roar +dedup::0db48ddcc7d3e13267b3d7b9f2dfe72c;https://fairsharing.org/10.25504/FAIRsharing.7g1bzj;1120;"World Register of Marine Species";FAIRsharing +dedup::0db48ddcc7d3e13267b3d7b9f2dfe72c;re3data::r3d100010859;r3d100010859;"World Register of Marine Species";re3data +dedup::0dc316120624ab11770c98b58b97334f;opendoar::10051;10051;"bashkir state medical university repository";OpenDOAR +dedup::0dc316120624ab11770c98b58b97334f;roar::16967;16967;"Bashkir State Medical University Repository";roar +dedup::0de163bfff919f7fcd1a04876de626ac;roar::5718;5718;"Krosnienska Biblioteka Cyfrowa (Krosno Digital Library)";roar +dedup::0de163bfff919f7fcd1a04876de626ac;roar::4121;4121;"Krosnienska Biblioteka Cyfrowa (Krosno Digital Library)";roar +dedup::0de163bfff919f7fcd1a04876de626ac;opendoar::2245;2245;"krosnienska biblioteka cyfrowa (krosno digital library)";OpenDOAR +dedup::0e1826e6be785be69dd3abac81c9485f;opendoar::3580;3580;"publication server of the hochschule fuer musik detmold";OpenDOAR +dedup::0e1826e6be785be69dd3abac81c9485f;roar::11191;11191;"Opus - Publication Server of the Hochschule fuer Musik Detmold";roar +dedup::0e3c63baca694032044bbb00c2f1111e;roar::8405;8405;"Content Pro IRX";roar +dedup::0e3c63baca694032044bbb00c2f1111e;roar::8716;8716;"Content Pro IRX";roar +dedup::0e4b1602c9faf3691f3f012b621463b5;roar::5258;5258;"Education and Research Archive";roar +dedup::0e4b1602c9faf3691f3f012b621463b5;opendoar::1875;1875;"education and research archive";OpenDOAR +dedup::0e4fed35b7a98f332a3bc8e52a6e36b2;re3data::r3d100012733;r3d100012733;"The Yeast Metabolome Database";re3data +dedup::0e4fed35b7a98f332a3bc8e52a6e36b2;https://fairsharing.org/10.25504/FAIRsharing.tawpg2;1700;"The Yeast Metabolome Database";FAIRsharing +dedup::0e57c4a3ce39ae7e1341404a92ca1bcc;roar::2404;2404;"BiPrints";roar +dedup::0e57c4a3ce39ae7e1341404a92ca1bcc;opendoar::1453;1453;"biprints";OpenDOAR +dedup::0e57c4a3ce39ae7e1341404a92ca1bcc;roar::157;157;"BiPrints";roar +dedup::0e6e025b99f0cd8b6c01c04d9e48155b;roar::12292;12292;"Repositori UIN Alauddin Makassar";roar +dedup::0e6e025b99f0cd8b6c01c04d9e48155b;opendoar::4310;4310;"repositori uin alauddin makassar";OpenDOAR +dedup::0ec508f6fbae36b0b6dd666020e6ee64;roar::814;814;"LSE Research Online";roar +dedup::0ec508f6fbae36b0b6dd666020e6ee64;re3data::r3d100011218;r3d100011218;"LSE Research Online";re3data +dedup::0ec508f6fbae36b0b6dd666020e6ee64;opendoar::206;206;"lse research online";OpenDOAR +dedup::0ece03ecc0de35749abc020b78b3615f;roar::7197;7197;"University of Missouri School of Law";roar +dedup::0ece03ecc0de35749abc020b78b3615f;opendoar::4978;4978;"university of missouri school of law";OpenDOAR +dedup::0ee21f62176f38d78ec6490e19398acf;roar::985;985;"ORBi - Open Repository and Bibliography (University of Liege";roar +dedup::0ee21f62176f38d78ec6490e19398acf;opendoar::1318;1318;"open repository and bibliography - university of liège";OpenDOAR +dedup::0ee7965d8f5d1a39d8ac8be63e5e6a27;roar::5870;5870;"Repositorio Digital Universidad Laica Eloy Alfaro de Manabí: Home";roar +dedup::0ee7965d8f5d1a39d8ac8be63e5e6a27;opendoar::2563;2563;"repositorio digital universidad laica eloy alfaro de manabí";OpenDOAR +dedup::0f020b43d105828d4dd6a4d723cffbbb;opendoar::264;264;"publikationer från umeå universitet";OpenDOAR +dedup::0f020b43d105828d4dd6a4d723cffbbb;roar::2337;2337;"Publikationer från Umeå universitet";roar +dedup::0f375308b1cf151838e3f1e9815d58cc;roar::9962;9962;"University of Oklahoma College of Law Digital Commons";roar +dedup::0f375308b1cf151838e3f1e9815d58cc;opendoar::4972;4972;"university of oklahoma college of law digital commons";OpenDOAR +dedup::0f497277485c0566af8e2042190be4fb;opendoar::10122;10122;"i̇stanbul galata university institutional repository";OpenDOAR +dedup::0f497277485c0566af8e2042190be4fb;roar::17103;17103;"İstanbul Galata University Institutional Repository";roar +dedup::0f4e8c078ee5702b675fcfc07ea62a89;roar::13131;13131;"Repositorio Universidad de los Llanos";roar +dedup::0f4e8c078ee5702b675fcfc07ea62a89;opendoar::9501;9501;"repositorio universidad de los llanos";OpenDOAR +dedup::0f8f26704c2d39601da1b3d779a8d81c;opendoar::3359;3359;"furman university scholar exchange (fuse)";OpenDOAR +dedup::0f8f26704c2d39601da1b3d779a8d81c;roar::9123;9123;"Furman University Scholar Exchange (FUSE)";roar +dedup::0fb913b48ed8ebf047bce0c0b9b30dd5;roar::762;762;"KIT Academic Repository";roar +dedup::0fb913b48ed8ebf047bce0c0b9b30dd5;opendoar::1062;1062;"kit academic repository";OpenDOAR +dedup::0fbe15420ea90ddec86b0362ba7f83ba;opendoar::9497;9497;"hochschulrepositoriumimwesten";OpenDOAR +dedup::0fbe15420ea90ddec86b0362ba7f83ba;roar::8108;8108;"HochschulRepositoriumimWesten";roar +dedup::0ff29d2da14ac51b32456950b577962d;https://fairsharing.org/10.25504/FAIRsharing.fssydn;2146;"DisGeNET";FAIRsharing +dedup::0ff29d2da14ac51b32456950b577962d;re3data::r3d100013301;r3d100013301;"DisGeNET";re3data +dedup::101a54c71575bc230751eaee59110db0;roar::9509;9509;"Repository of Educational Research and Practice in Niigata";roar +dedup::101a54c71575bc230751eaee59110db0;opendoar::3275;3275;"repository of educational research and practice in niigata";OpenDOAR +dedup::107361a39bcc4616cd4a76c3bce7c702;https://fairsharing.org/10.25504/FAIRsharing.52d9fa;2809;"China Meterological Data Service Centre";FAIRsharing +dedup::107361a39bcc4616cd4a76c3bce7c702;re3data::r3d100011141;r3d100011141;"China Meteorological Data Service Center";re3data +dedup::109aa681b45fce7b8c3a049c4accd7d3;roar::12537;12537;"Osaka Museum of Natural History Research Repository";roar +dedup::109aa681b45fce7b8c3a049c4accd7d3;opendoar::3975;3975;"osaka museum of natural history research repository";OpenDOAR +dedup::10c042c14f48cdfdbfb1ad28fde256cc;opendoar::1763;1763;"dspace avignon at inra avignon";OpenDOAR +dedup::10c042c14f48cdfdbfb1ad28fde256cc;roar::4635;4635;"Dspace Avignon at Inra Avignon";roar +dedup::10e1b83b57b111ebb5c6f5e0226b6881;re3data::r3d100011543;r3d100011543;"Site Survey Data Bank";re3data +dedup::10e1b83b57b111ebb5c6f5e0226b6881;https://fairsharing.org/fairsharing_records/3103;3103;"Site Survey Data Bank";FAIRsharing +dedup::111659e1910f147455954626bd615fe3;opendoar::3252;3252;"kyushu sangyo university library institutional repository";OpenDOAR +dedup::111659e1910f147455954626bd615fe3;roar::9282;9282;"Kyushu Sangyo University Library Institutional Repository";roar +dedup::112665139285a13fdf199384e6556299;https://fairsharing.org/10.25504/FAIRsharing.tNQAlF;3108;"LSHTM Research Online";FAIRsharing +dedup::112665139285a13fdf199384e6556299;opendoar::2377;2377;"lshtm research online";OpenDOAR +dedup::116f545f3e4e32a3c8bde4c6e690c2c2;opendoar::1009;1009;"university of fukui repository";OpenDOAR +dedup::116f545f3e4e32a3c8bde4c6e690c2c2;roar::4680;4680;"University of Fukui Repository";roar +dedup::121f217a0fb40b5130a9354fa2c50982;https://fairsharing.org/10.25504/FAIRsharing.j8g2cv;2404;"Ensembl Plants";FAIRsharing +dedup::121f217a0fb40b5130a9354fa2c50982;re3data::r3d100011199;r3d100011199;"Ensembl Plants";re3data +dedup::125fd3a6696a01f8697f70256477a7e8;opendoar::4997;4997;"university of bath research data archive";OpenDOAR +dedup::125fd3a6696a01f8697f70256477a7e8;re3data::r3d100011947;r3d100011947;"University of Bath Research Data Archive";re3data +dedup::126b6b5afa73e81ed2f988a87fcf98b5;roar::4987;4987;"BOA Bicocca Open Archive";roar +dedup::126b6b5afa73e81ed2f988a87fcf98b5;opendoar::1299;1299;"boa - bicocca open archive";OpenDOAR +dedup::127aa41574ca07155faa11c996b2c884;roar::1564;1564;"GINMU - Global Institutional repository of Nara Medical University";roar +dedup::127aa41574ca07155faa11c996b2c884;opendoar::1733;1733;"ginmu :global institutional repository of nara medical university";OpenDOAR +dedup::12ae8d595ab9ed7caffcdf95a902d064;roar::2524;2524;"National Central University Library Institutional Repository (NCULR) - 中央大學機構典藏";roar +dedup::12ae8d595ab9ed7caffcdf95a902d064;roar::884;884;"National Central University Library Institutional Repository - 中央大學機構典藏";roar +dedup::12ae8d595ab9ed7caffcdf95a902d064;opendoar::1617;1617;"national central university library institutional repository (nculr) - 中央大學機構典藏";OpenDOAR +dedup::12c3f980b5e66e23328734edac32a74c;opendoar::10050;10050;"commonknowledge";OpenDOAR +dedup::12c3f980b5e66e23328734edac32a74c;roar::2819;2819;"CommonKnowledge";roar +dedup::12cdfd02f960721e02d8eefce4be5ef1;roar::3324;3324;"Kun Shan University Institutional Repository";roar +dedup::12cdfd02f960721e02d8eefce4be5ef1;opendoar::1989;1989;"kun shan university institutional repository";OpenDOAR +dedup::1315e8ca1974987941988c8a3b8827e0;roar::6363;6363;"SZTAKI Publication Repository";roar +dedup::1315e8ca1974987941988c8a3b8827e0;opendoar::2764;2764;"sztaki publication repository";OpenDOAR +dedup::1338f113a6e8a87d4aad74f87435b529;opendoar::942;942;"sheffield hallam university research archive";OpenDOAR +dedup::1338f113a6e8a87d4aad74f87435b529;roar::2465;2465;"Sheffield Hallam University Research Archive";roar +dedup::13496e70a04cb86f3fb0b2cd37f9d6c0;roar::837;837;"Max Planck Society Edoc Server";roar +dedup::13496e70a04cb86f3fb0b2cd37f9d6c0;opendoar::211;211;"max planck society edoc server";OpenDOAR +dedup::138a8986671389b4b1274cca9acfc947;roar::17456;17456;"Academic Repository of Yuriy Fedkovych Chernivtsi National University (ARCher)";roar +dedup::138a8986671389b4b1274cca9acfc947;opendoar::2157;2157;"academic repository of yuriy fedkovych chernivtsi national university";OpenDOAR +dedup::13b8e110eb001e7518482c73b6f538ce;roar::17294;17294;"Altınbaş University Institutional Repository";roar +dedup::13b8e110eb001e7518482c73b6f538ce;opendoar::10176;10176;"altınbaş university institutional repository";OpenDOAR +dedup::13badfe4f76008d6bea47cafbbfd32f2;opendoar::2260;2260;"insubriaspace";OpenDOAR +dedup::13badfe4f76008d6bea47cafbbfd32f2;roar::5002;5002;"InsubriaSPACE";roar +dedup::13cb20ccdda6e683167a834ff6bef110;roar::1108;1108;"ResearchSpace@Auckland";roar +dedup::13cb20ccdda6e683167a834ff6bef110;opendoar::547;547;"researchspace@auckland";OpenDOAR +dedup::13f57464c6d973aadc7745377f4c7998;opendoar::1883;1883;"eprint@nml";OpenDOAR +dedup::13f57464c6d973aadc7745377f4c7998;roar::520;520;"Eprints@NML";roar +dedup::140dc067fda48fd447f462ef6e650367;opendoar::433;433;"digitalcommons@providence";OpenDOAR +dedup::140dc067fda48fd447f462ef6e650367;roar::336;336;"DigitalCommons@Providence";roar +dedup::145102d22fbb5bcb2e13153ea7ca138e;opendoar::654;654;"opus-datenbank - universität koblenz-landau";OpenDOAR +dedup::145102d22fbb5bcb2e13153ea7ca138e;roar::983;983;"OPUS-Datenbank University Koblenz-Landau";roar +dedup::14564c68d81a1b1ec46545cc5fcfb78f;opendoar::4656;4656;"nisantasi university";OpenDOAR +dedup::14564c68d81a1b1ec46545cc5fcfb78f;opendoar::4662;4662;"nisantasi university";OpenDOAR +dedup::145b67c47b0d3870233b8da12be88524;roar::5835;5835;"Digital Commons at Framingham State University";roar +dedup::145b67c47b0d3870233b8da12be88524;opendoar::3362;3362;"digital commons at framingham state university";OpenDOAR +dedup::147a9be1f001f659d8c9e4169120299b;roar::15139;15139;"Repositorio Institucional";roar +dedup::147a9be1f001f659d8c9e4169120299b;roar::15142;15142;"Repositorio Institucional";roar +dedup::14b3afd1e87bea0bfe7c1a3a2be89f07;re3data::r3d100010163;r3d100010163;"SIMBAD Astronomical Database";re3data +dedup::14b3afd1e87bea0bfe7c1a3a2be89f07;https://fairsharing.org/10.25504/FAIRsharing.rd6gxr;2498;"SIMBAD Astronomical Database";FAIRsharing +dedup::14b9f33fa18aaa70340197a762cc0342;roar::2927;2927;"eResearch@Ozyegin";roar +dedup::14b9f33fa18aaa70340197a762cc0342;roar::3756;3756;"eResearch@Ozyegin";roar +dedup::14b9f33fa18aaa70340197a762cc0342;opendoar::1862;1862;"eresearch@ozyegin";OpenDOAR +dedup::14c7f3deedcf8ca9c883964ddb9fac91;roar::5604;5604;"Lux: Scholarship and Creativity at Lawrence University";roar +dedup::14c7f3deedcf8ca9c883964ddb9fac91;opendoar::5361;5361;"lux scholarship and creativity at lawrence university";OpenDOAR +dedup::14ca0e148736c435dcb086d2a364909e;opendoar::1696;1696;"ukzn institutional repository";OpenDOAR +dedup::14ca0e148736c435dcb086d2a364909e;roar::2784;2784;"UKZN Institutional Repository";roar +dedup::14cffe181cb398528febadf09a81d909;re3data::r3d100011527;r3d100011527;"GlycomeDB";re3data +dedup::14cffe181cb398528febadf09a81d909;https://fairsharing.org/10.25504/FAIRsharing.k5k0yh;1888;"GlycomeDB";FAIRsharing +dedup::14d9f07c1a4b8ec8f085416a11be3ede;roar::1506;1506;"webLyzard Publications";roar +dedup::14d9f07c1a4b8ec8f085416a11be3ede;opendoar::4901;4901;"weblyzard publications";OpenDOAR +dedup::14ede936c67b0d2f9166b9837d53dc3f;opendoar::1465;1465;"digital library of modern greek studies";OpenDOAR +dedup::14ede936c67b0d2f9166b9837d53dc3f;roar::5269;5269;"Digital Library of Modern Greek Studies";roar +dedup::14fd376c86857c81eab0052e8d87b378;opendoar::3430;3430;"hal amu";OpenDOAR +dedup::14fd376c86857c81eab0052e8d87b378;roar::9697;9697;"HAL AMU";roar +dedup::1506a88bda387a7a7f964424f72a1b86;opendoar::699;699;"indiana historical society digital image collections";OpenDOAR +dedup::1506a88bda387a7a7f964424f72a1b86;roar::2837;2837;"Indiana Historical Society Digital Image Collections";roar +dedup::1511fbdc7e3618e21817e615e278d97c;opendoar::9411;9411;"fordatis";OpenDOAR +dedup::1511fbdc7e3618e21817e615e278d97c;roar::15255;15255;"Fordatis";roar +dedup::1511fbdc7e3618e21817e615e278d97c;re3data::r3d100013135;r3d100013135;"Fordatis";re3data +dedup::1516d22440c232b01dc3fa83630c1fd1;https://fairsharing.org/10.25504/FAIRsharing.fk0z49;2267;"Host Pathogen Interaction Database";FAIRsharing +dedup::1516d22440c232b01dc3fa83630c1fd1;re3data::r3d100012381;r3d100012381;"Host - Pathogen Interaction Database";re3data +dedup::1523ee56c40f75e39c8bbee0ab07a625;https://fairsharing.org/10.25504/FAIRsharing.pkm8j3;2145;"Merritt";FAIRsharing +dedup::1523ee56c40f75e39c8bbee0ab07a625;re3data::r3d100010747;r3d100010747;"Merritt";re3data +dedup::153b77b8070cf38f18df52a8025e64b0;roar::3844;3844;"Repository Open Access to Scientific Information from Embrapa";roar +dedup::153b77b8070cf38f18df52a8025e64b0;opendoar::2154;2154;"repository open access to scientific information from embrapa";OpenDOAR +dedup::15670c21e1be2267f5f98fa05652f548;re3data::r3d100012266;r3d100012266;"ToxoDB";re3data +dedup::15670c21e1be2267f5f98fa05652f548;https://fairsharing.org/10.25504/FAIRsharing.a08mtc;1883;"ToxoDB";FAIRsharing +dedup::1573a08d7f3caf0daf3f9582c8275629;opendoar::4530;4530;"repositorio digital institucional universidad de buenos aires";OpenDOAR +dedup::1573a08d7f3caf0daf3f9582c8275629;roar::12914;12914;"Repositorio Digital Institucional - Universidad de Buenos Aires";roar +dedup::157f0c5d298806fac00221d001602627;opendoar::2008;2008;"repositorio de tesis de doctorado en ciencias biomédicas y de la salud de cuba";OpenDOAR +dedup::157f0c5d298806fac00221d001602627;roar::3408;3408;"Repositorio de Tesis de Doctorado en Ciencias Biomédicas y de la Salud de Cuba";roar +dedup::15817ec3a181b4ccb14c39608dad387c;roar::4950;4950;"IPACS Electronic library";roar +dedup::15817ec3a181b4ccb14c39608dad387c;opendoar::2394;2394;"ipacs electronic library";OpenDOAR +dedup::15ac7eaac73b4e08823b8cb5434228ca;re3data::r3d100011352;r3d100011352;"OceanRep GEOMAR Repository";re3data +dedup::15ac7eaac73b4e08823b8cb5434228ca;roar::3588;3588;"OceanRep - GEOMAR Repository";roar +dedup::15bfde11e4cb3d442f0b147ee2730d7b;opendoar::1055;1055;"nara women’s university digital information repository";OpenDOAR +dedup::15bfde11e4cb3d442f0b147ee2730d7b;roar::876;876;"Nara Women's University Digital Information Repository";roar +dedup::15c3255f519482307d9079c64a11afd2;roar::312;312;"Digital Library Network for Engineering and Technology";roar +dedup::15c3255f519482307d9079c64a11afd2;opendoar::426;426;"digital library network for engineering and technology";OpenDOAR +dedup::15e60774de12c4397418d396d7671f2f;roar::2464;2464;"Repositório Comum";roar +dedup::15e60774de12c4397418d396d7671f2f;opendoar::1714;1714;"repositório comum";OpenDOAR +dedup::15f688ba7b5887c7e5c4d226a42274dd;re3data::r3d100012912;r3d100012912;"National Coronial Information System";re3data +dedup::15f688ba7b5887c7e5c4d226a42274dd;https://fairsharing.org/10.25504/FAIRsharing.U9GXhB;2781;"National Coronial Information System";FAIRsharing +dedup::15f7b76c0f34b166a79a99cd4dac5c9c;re3data::r3d100011928;r3d100011928;"FAIRDOMHub";re3data +dedup::15f7b76c0f34b166a79a99cd4dac5c9c;https://fairsharing.org/10.25504/FAIRsharing.nnvcr9;2262;"FAIRDOMHub";FAIRsharing +dedup::15fbd9c1adcb5d9ac4da87b98635c37d;opendoar::9508;9508;"repositorio unidad de planeación minero energética";OpenDOAR +dedup::15fbd9c1adcb5d9ac4da87b98635c37d;roar::15722;15722;"Repositorio Unidad de Planeación Minero Energética";roar +dedup::162b7b1eeb9534fb4484585c46033e87;roar::8758;8758;"Bozok University Open Archive";roar +dedup::162b7b1eeb9534fb4484585c46033e87;opendoar::3144;3144;"bozok univeristy open archive";OpenDOAR +dedup::163c74ff701af36712dcc0ef72b3d092;opendoar::361;361;"publikationer från uppsala universitet";OpenDOAR +dedup::163c74ff701af36712dcc0ef72b3d092;roar::2322;2322;"Publikationer från Uppsala Universitet";roar +dedup::16a3fc8d85c84cbbfeca5835b78210f8;opendoar::4398;4398;"jooust repository";OpenDOAR +dedup::16a3fc8d85c84cbbfeca5835b78210f8;roar::11159;11159;"JOOUST Repository";roar +dedup::16feb94fcba83da510559f2264d3ed27;roar::3506;3506;"Infoteca-e";roar +dedup::16feb94fcba83da510559f2264d3ed27;opendoar::2043;2043;"infoteca-e";OpenDOAR +dedup::170fc45112a538fcaa69d2c853240f36;roar::321;321;"Digital.CSIC";roar +dedup::170fc45112a538fcaa69d2c853240f36;opendoar::1106;1106;"digital.csic";OpenDOAR +dedup::170fc45112a538fcaa69d2c853240f36;re3data::r3d100011076;r3d100011076;"DIGITAL.CSIC";re3data +dedup::17428141b710af06fbe71c9ea7ac7965;roar::5450;5450;"Center for Jewish History Digital Collections";roar +dedup::17428141b710af06fbe71c9ea7ac7965;opendoar::945;945;"center for jewish history digital collections";OpenDOAR +dedup::177ff6522706b6b7b2ce61a77f12e9d6;opendoar::2979;2979;"social science cyber library";OpenDOAR +dedup::177ff6522706b6b7b2ce61a77f12e9d6;roar::8221;8221;"Social Science Cyber Library";roar +dedup::179cf599ba6bcf4c93d27fc3705adc76;re3data::r3d100012086;r3d100012086;"Pseudomonas Genome DB";re3data +dedup::179cf599ba6bcf4c93d27fc3705adc76;https://fairsharing.org/10.25504/FAIRsharing.mn5m1p;2052;"Pseudomonas Genome DB";FAIRsharing +dedup::17bad15e69a059e6620da897c0d73933;opendoar::2797;2797;"doiserbia phd";OpenDOAR +dedup::17bad15e69a059e6620da897c0d73933;roar::7325;7325;"doiSerbiaPhD";roar +dedup::17be105a567329efecd4fc3c3606a6b6;https://fairsharing.org/10.25504/FAIRsharing.zcveaz;2537;"4TU.ResearchData";FAIRsharing +dedup::17be105a567329efecd4fc3c3606a6b6;opendoar::3739;3739;"4tu.researchdata";OpenDOAR +dedup::17d6a89ba4f6ec235a211fa2f05c349e;roar::16958;16958;"Beykoz University Institutional Repository";roar +dedup::17d6a89ba4f6ec235a211fa2f05c349e;opendoar::10083;10083;"beykoz university institutional repository";OpenDOAR +dedup::17db7128f2d310fb2de7c02f25c6e9b9;https://fairsharing.org/10.25504/FAIRsharing.rkq0vj;1803;"The Chromosome 7 Annotation Project";FAIRsharing +dedup::17db7128f2d310fb2de7c02f25c6e9b9;re3data::r3d100012136;r3d100012136;"The Chromosome 7 Annotation Project";re3data +dedup::181f665390e2b60cc1ae764820879eba;roar::3991;3991;"University of Leicester's OER Repository";roar +dedup::181f665390e2b60cc1ae764820879eba;opendoar::2195;2195;"university of leicesters oer repository";OpenDOAR +dedup::183f0ff5dfbf28e4c6b4194604a5a91e;roar::3471;3471;"Repositório Institucional da Universidade Católica Portuguesa";roar +dedup::183f0ff5dfbf28e4c6b4194604a5a91e;opendoar::2020;2020;"repositório institucional da universidade católica portuguesa";OpenDOAR +dedup::1880cce0d85afdf6285ea6111ddca40a;roar::5544;5544;"Archivio Istituzionale Università della Calabria";roar +dedup::1880cce0d85afdf6285ea6111ddca40a;roar::4946;4946;"Archivio Istituzionale Università della Calabria";roar +dedup::18b08dcd1f68755bd3447226e4626b85;https://fairsharing.org/10.25504/FAIRsharing.3J6NYn;2888;"Encyclopedia of Life";FAIRsharing +dedup::18b08dcd1f68755bd3447226e4626b85;re3data::r3d100010229;r3d100010229;"Encyclopedia of Life";re3data +dedup::18d5b9d56e474f309f0861224962b1b1;re3data::r3d100012431;r3d100012431;"Atmospheric Infrared Sounder";re3data +dedup::18d5b9d56e474f309f0861224962b1b1;https://fairsharing.org/10.25504/FAIRsharing.f43996;3048;"Atmospheric Infrared Sounder";FAIRsharing +dedup::18d842ceac5d7d0ea8379908e6c1be05;opendoar::1987;1987;"taiwan agricultural research institute institutional repository";OpenDOAR +dedup::18d842ceac5d7d0ea8379908e6c1be05;roar::3323;3323;"Tariawn Agricultural Research Institute Institutional Repository";roar +dedup::18ee572c2606c545c7f117aa35891d34;roar::8952;8952;"UTC Scholar";roar +dedup::18ee572c2606c545c7f117aa35891d34;opendoar::3183;3183;"utc scholar";OpenDOAR +dedup::1922a6962bcb1f8a811a227f7f12f52f;roar::1315;1315;"Tver State University Repository";roar +dedup::1922a6962bcb1f8a811a227f7f12f52f;opendoar::1524;1524;"tver state university repository";OpenDOAR +dedup::1926651cf55ae9799237231b66898ade;opendoar::2835;2835;"researchonline@avondale";OpenDOAR +dedup::1926651cf55ae9799237231b66898ade;roar::8463;8463;"ResearchOnline@Avondale";roar +dedup::1930248078e42f9348482d8e745b0391;opendoar::4863;4863;"repositorio de la escuela de postgrado san francisco xavier - sfx";OpenDOAR +dedup::1930248078e42f9348482d8e745b0391;roar::15275;15275;"Repositorio de la Escuela de Postgrado San Francisco Xavier - SFX";roar +dedup::193aee81195f98bc3e87f86e0793d81b;re3data::r3d100013575;r3d100013575;"OPAL";re3data +dedup::193aee81195f98bc3e87f86e0793d81b;opendoar::738;738;"opal";OpenDOAR +dedup::19475edb1fc63ebf546e0e0c01bed747;opendoar::3419;3419;"jukuri";OpenDOAR +dedup::19475edb1fc63ebf546e0e0c01bed747;roar::10035;10035;"Jukuri";roar +dedup::195cd53631ffaa4c006240d337a70074;roar::5538;5538;"Xiamen University Institutional Repository";roar +dedup::195cd53631ffaa4c006240d337a70074;opendoar::1178;1178;"xiamen university institutional repository";OpenDOAR +dedup::1963d9d7d4c3fe4a8cc4be0166cafbbd;re3data::r3d100011484;r3d100011484;"GERDA";re3data +dedup::1963d9d7d4c3fe4a8cc4be0166cafbbd;https://fairsharing.org/10.25504/FAIRsharing.893fc2;3115;"GERDA";FAIRsharing +dedup::1981db0a5f5d4feaa85fc05c0b4978da;https://fairsharing.org/fairsharing_records/3101;3101;"WHOI Ship Data-Grabber System";FAIRsharing +dedup::1981db0a5f5d4feaa85fc05c0b4978da;re3data::r3d100010511;r3d100010511;"WHOI Ship Data-Grabber System";re3data +dedup::19b3bd70c9149898f1a1178cd8079502;https://fairsharing.org/10.25504/FAIRsharing.wb0txg;2546;"Astrophysics Source Code Library";FAIRsharing +dedup::19b3bd70c9149898f1a1178cd8079502;re3data::r3d100011865;r3d100011865;"Astrophysics Source Code Library";re3data +dedup::19d5a6470e345578a0f7922ab66d1676;re3data::r3d100012723;r3d100012723;"Database for Bacterial Group II Introns";re3data +dedup::19d5a6470e345578a0f7922ab66d1676;https://fairsharing.org/10.25504/FAIRsharing.710xh8;1653;"Database for Bacterial Group II Introns";FAIRsharing +dedup::1a2236a370beb7f2565e563c569e69d2;roar::14546;14546;"Repositori Universitas Muhammadiyah Sumatera Utara: Home";roar +dedup::1a2236a370beb7f2565e563c569e69d2;opendoar::4423;4423;"repositori universitas muhammadiyah sumatera utara";OpenDOAR +dedup::1a3bfb655e644a571ffa49376296148f;opendoar::2828;2828;"fisher digital publications";OpenDOAR +dedup::1a3bfb655e644a571ffa49376296148f;roar::6855;6855;"Fisher Digital Publications";roar +dedup::1a6a8ff8c70ac7093d9ababd022dd4f6;roar::16074;16074;"Repositorio Universidad de Lambayeque";roar +dedup::1a6a8ff8c70ac7093d9ababd022dd4f6;opendoar::9662;9662;"repositorio universidad de lambayeque";OpenDOAR +dedup::1a8cab673cdbe811225b724a5780fa32;roar::4965;4965;"Digital library for Ardabil University of Medical Sciences";roar +dedup::1a8cab673cdbe811225b724a5780fa32;opendoar::2428;2428;"digital library for ardabil university of medical sciences";OpenDOAR +dedup::1a98650680ff9e6ebd11dfcf75103c7b;roar::9921;9921;"eNGSUIR";roar +dedup::1a98650680ff9e6ebd11dfcf75103c7b;opendoar::3394;3394;"engsuir";OpenDOAR +dedup::1a9e95eacb9b844da97ae513728e0e0b;roar::3191;3191;"Tottori University research result repository";roar +dedup::1a9e95eacb9b844da97ae513728e0e0b;opendoar::1945;1945;"tottori university research result repository";OpenDOAR +dedup::1ace536693ad556c51dc06893517944b;opendoar::2455;2455;"tarnobrzeska biblioteka cyfrowa";OpenDOAR +dedup::1ace536693ad556c51dc06893517944b;roar::5132;5132;"Tarnobrzeska Biblioteka Cyfrowa";roar +dedup::1ad59696baa7e077f39399bc77e052f7;roar::5476;5476;"CHSPR Publications";roar +dedup::1ad59696baa7e077f39399bc77e052f7;opendoar::993;993;"chspr publications";OpenDOAR +dedup::1ad8a4bf555ddf8f9f42662853eee39d;opendoar::2576;2576;"dehesa. repositorio institucional de la universidad de extremadura";OpenDOAR +dedup::1ad8a4bf555ddf8f9f42662853eee39d;roar::6058;6058;"Dehesa. Repositorio Institucional de la Universidad de Extremadura";roar +dedup::1aea2ea0bf0aaaced48c72274cab8468;roar::3211;3211;"Repositorio de Acceso Abierto EDUMED";roar +dedup::1aea2ea0bf0aaaced48c72274cab8468;opendoar::1956;1956;"repositorio de acceso abierto edumed";OpenDOAR +dedup::1aed68b1f966641c45805497870a5669;re3data::r3d100011570;r3d100011570;"Kyoto Encyclopedia of Genes and Genomes";re3data +dedup::1aed68b1f966641c45805497870a5669;https://fairsharing.org/10.25504/FAIRsharing.327nbg;2189;"Kyoto Encyclopedia of Genes and Genomes";FAIRsharing +dedup::1b099f46c26ad7beaf3a87929ba5238a;roar::17338;17338;"IMDEA Networks Institute Digital Repository";roar +dedup::1b099f46c26ad7beaf3a87929ba5238a;opendoar::10188;10188;"imdea networks institute digital repository";OpenDOAR +dedup::1b417a5ee0af662771cee4846fcebc44;re3data::r3d100012731;r3d100012731;"Pathway Commons";re3data +dedup::1b417a5ee0af662771cee4846fcebc44;https://fairsharing.org/10.25504/FAIRsharing.5y3gdd;1954;"Pathway Commons";FAIRsharing +dedup::1b46ad00befb66b5526d7590e7c96451;opendoar::10150;10150;"repositorio digital fundación universitaria juan n. corpas";OpenDOAR +dedup::1b46ad00befb66b5526d7590e7c96451;roar::17181;17181;"Repositorio Digital Fundación Universitaria Juan N. Corpas";roar +dedup::1b520bbecd34ff6d9b01e0a6971f41d5;opendoar::1849;1849;"kari e-repository";OpenDOAR +dedup::1b520bbecd34ff6d9b01e0a6971f41d5;roar::2863;2863;"KARI e-repository";roar +dedup::1b9cb75e49a8d320408f466e23d62983;opendoar::3775;3775;"ryotokuji university institutional repository";OpenDOAR +dedup::1b9cb75e49a8d320408f466e23d62983;roar::11393;11393;"Ryotokuji University Institutional Repository";roar +dedup::1ba7cdc429a9afa6aff94483001e76b4;opendoar::2596;2596;"biblioteca digital wilson popenoe";OpenDOAR +dedup::1ba7cdc429a9afa6aff94483001e76b4;roar::8898;8898;"Biblioteca digital Wilson Popenoe";roar +dedup::1bfbe7138b90a3ea2d2cd1cf88ae9ce4;re3data::r3d100011119;r3d100011119;"ScholarsArchive@OSU";re3data +dedup::1bfbe7138b90a3ea2d2cd1cf88ae9ce4;opendoar::108;108;"scholarsarchive@osu";OpenDOAR +dedup::1bfbe7138b90a3ea2d2cd1cf88ae9ce4;roar::1165;1165;"ScholarsArchive@OSU";roar +dedup::1c1d8f82f31891cff32101fcbbba31f3;opendoar::1932;1932;"repositório institucional da universidade federal da bahia";OpenDOAR +dedup::1c1d8f82f31891cff32101fcbbba31f3;roar::4934;4934;"Repositório Institucional da Universidade Federal da Bahia";roar +dedup::1c3b756064fce56e70da9bd3b009bbd6;roar::5550;5550;"PolyU Institutional Repository";roar +dedup::1c3b756064fce56e70da9bd3b009bbd6;roar::1019;1019;"PolyU Institutional Repository";roar +dedup::1c59a00037b0d8417997712cb972a821;https://fairsharing.org/10.25504/FAIRsharing.5rb3fk;1641;"ModelDB";FAIRsharing +dedup::1c59a00037b0d8417997712cb972a821;re3data::r3d100011330;r3d100011330;"ModelDB";re3data +dedup::1c6cf00bc7b2e489dabbebe4b1cc2061;roar::11889;11889;"CurateND";roar +dedup::1c6cf00bc7b2e489dabbebe4b1cc2061;opendoar::3421;3421;"curatend";OpenDOAR +dedup::1c6d68e9a41ae9df8573225af4cbb263;opendoar::2293;2293;"archivio istituzionale delluniversità della calabria";OpenDOAR +dedup::1c6d68e9a41ae9df8573225af4cbb263;roar::5181;5181;"Archivio Istituzionale Università della Calabria";roar +dedup::1c8caafe295c40a60e8c099265d4816b;re3data::r3d100011181;r3d100011181;"Digital Case";re3data +dedup::1c8caafe295c40a60e8c099265d4816b;opendoar::430;430;"digital case";OpenDOAR +dedup::1c8caafe295c40a60e8c099265d4816b;roar::302;302;"Digital Case";roar +dedup::1ca26e499eaa8c044ce2214fb333a47b;roar::8055;8055;"eLibrary ";roar +dedup::1ca26e499eaa8c044ce2214fb333a47b;opendoar::3017;3017;"elibrary";OpenDOAR +dedup::1cc7854196c2cfc12e7444bdbd3ff842;roar::13100;13100;"Vilnius University Institutional Repository";roar +dedup::1cc7854196c2cfc12e7444bdbd3ff842;opendoar::4036;4036;"vilnius university institutional repository";OpenDOAR +dedup::1d2cb2722a1a3625e367a97c8bd046ea;roar::5500;5500;"ULB Sachsen-Anhalt HALCoRe";roar +dedup::1d2cb2722a1a3625e367a97c8bd046ea;opendoar::845;845;"ulb sachsen-anhalt halcore";OpenDOAR +dedup::1d504b9d7d894a7afb55b9135487a1cb;roar::3681;3681;"Radom Digital Library";roar +dedup::1d504b9d7d894a7afb55b9135487a1cb;opendoar::1613;1613;"radom digital library";OpenDOAR +dedup::1d6adad72c1dcc6efa9903e5eb6822eb;roar::4165;4165;"Rolnicza Biblioteka Cyfrowa (Agricultural Digital Library)";roar +dedup::1d6adad72c1dcc6efa9903e5eb6822eb;opendoar::2264;2264;"rolnicza biblioteka cyfrowa (agricultural digital library)";OpenDOAR +dedup::1dbd978e3d3eb2a07300c0922cff75d3;https://fairsharing.org/10.25504/FAIRsharing.paz6mh;1846;"BioModels";FAIRsharing +dedup::1dbd978e3d3eb2a07300c0922cff75d3;re3data::r3d100010789;r3d100010789;"BioModels";re3data +dedup::1dbe888633a93b076ef6686c52781a8c;opendoar::2809;2809;"electronic volyn national university institutional repository";OpenDOAR +dedup::1dbe888633a93b076ef6686c52781a8c;roar::6699;6699;"Electronic Volyn National University Institutional Repository";roar +dedup::1dc454a0eff985157411a8722b50a0fa;roar::5027;5027;"DSpace at IUCAA: Home";roar +dedup::1dc454a0eff985157411a8722b50a0fa;roar::5028;5028;"DSpace at IUCAA: Home";roar +dedup::1dcef871e446eaa5ba495c077fcc9ba3;https://fairsharing.org/fairsharing_records/3206;3206;"Southern California Earthquake Data Center";FAIRsharing +dedup::1dcef871e446eaa5ba495c077fcc9ba3;re3data::r3d100011575;r3d100011575;"Southern California Earthquake Data Center";re3data +dedup::1e14a95b323e054b4f2c35ed107476fd;re3data::r3d100013465;r3d100013465;"Dipòsit Digital de Documents de la UAB";re3data +dedup::1e14a95b323e054b4f2c35ed107476fd;roar::10452;10452;"Dipòsit Digital de Documents de la UAB";roar +dedup::1e14a95b323e054b4f2c35ed107476fd;opendoar::1404;1404;"diposit digital de documents de la uab";OpenDOAR +dedup::1e31bff72e1b63d8d6ac6bec1796e254;roar::403;403;"DSpace at NTUA: Αρχική";roar +dedup::1e31bff72e1b63d8d6ac6bec1796e254;opendoar::1168;1168;"dspace at ntua";OpenDOAR +dedup::1e6b34c3c4add2e14a34aadac271ef49;https://fairsharing.org/fairsharing_records/3232;3232;"European Database of Seismogenic Faults";FAIRsharing +dedup::1e6b34c3c4add2e14a34aadac271ef49;re3data::r3d100012622;r3d100012622;"The European Database of Seismogenic Faults";re3data +dedup::1e70d4ca78e4df6b0586aeac442d5a73;re3data::r3d100012596;r3d100012596;"Digitale Bibliothek Thüringen";re3data +dedup::1e70d4ca78e4df6b0586aeac442d5a73;roar::349;349;"Digitale Bibliothek Thueringen";roar +dedup::1e70d4ca78e4df6b0586aeac442d5a73;opendoar::650;650;"digitale bibliothek thüringen";OpenDOAR +dedup::1e7b56fae0ed601187fffb3726eaa9d6;roar::4393;4393;"Institutional Repository of Kunming Institute of Zoology Chinese Academy of Sciences(中国科学院昆明动物研究所机构知识库)";roar +dedup::1e7b56fae0ed601187fffb3726eaa9d6;roar::4394;4394;"Institutional Repository of Kunming Institute of Zoology Chinese Academy of Sciences(中国科学院昆明动物研究所机构知识库)";roar +dedup::1e90c6f4fde1f85fd372ce423cefd899;roar::15616;15616;"Repository of Belarusian State Medical University";roar +dedup::1e90c6f4fde1f85fd372ce423cefd899;opendoar::3297;3297;"repository belarusian state medical university";OpenDOAR +dedup::1e90c9b568960493f31ebc26c31a499e;re3data::r3d100000037;r3d100000037;"Oak Ridge National Laboratory Distributed Active Archive Center for Biogeochemical Dynamics";re3data +dedup::1e90c9b568960493f31ebc26c31a499e;https://fairsharing.org/10.25504/FAIRsharing.a833sq;2435;"Oak Ridge National Laboratory Distributed Active Archive Center for Biogeochemical Dynamics";FAIRsharing +dedup::1eb1f415810956539ebb043d906ee475;roar::4205;4205;"PUB - Publications at Bielefeld University";roar +dedup::1eb1f415810956539ebb043d906ee475;https://fairsharing.org/10.25504/FAIRsharing.x68mjp;2557;"Publications at Bielefeld University";FAIRsharing +dedup::1eb1f415810956539ebb043d906ee475;opendoar::2294;2294;"publications at bielefeld university";OpenDOAR +dedup::1ed8d5e0dce2a1f0d9c8c10494ba0d11;opendoar::2568;2568;"royal college of art research repository";OpenDOAR +dedup::1ed8d5e0dce2a1f0d9c8c10494ba0d11;roar::5959;5959;"Royal College of Art Research Repository";roar +dedup::1ef791c4a49f94805525afa8ba0f28a4;roar::15954;15954;"Düzce University Institutional Repository";roar +dedup::1ef791c4a49f94805525afa8ba0f28a4;roar::16230;16230;"Düzce University Institutional Repository";roar +dedup::1f28af2c2665a6aa5d1baa8f6fc12112;re3data::r3d100010109;r3d100010109;"NASA Distributed Active Archive Center at National Snow & Ice Data Center";re3data +dedup::1f28af2c2665a6aa5d1baa8f6fc12112;https://fairsharing.org/10.25504/FAIRsharing.8f84ad;3052;"Distributed Active Archive Center at National Snow & Ice Data Center";FAIRsharing +dedup::1f2b507056090a4ac9bfa410bddf94a0;re3data::r3d100010846;r3d100010846;"SoyBase";re3data +dedup::1f2b507056090a4ac9bfa410bddf94a0;https://fairsharing.org/10.25504/FAIRsharing.z4agsr;1934;"SoyBase";FAIRsharing +dedup::1f41b948e7c004569bf288c9459123a6;roar::10326;10326;"UPCommons. Portal del coneixement obert de la UPC";roar +dedup::1f41b948e7c004569bf288c9459123a6;opendoar::3484;3484;"upcommons. portal del coneixement obert de la upc";OpenDOAR +dedup::1f6a3831411e4cc7ba152936570d4a19;https://fairsharing.org/10.25504/FAIRsharing.nzaz6z;2374;"Virtual Fly Brain";FAIRsharing +dedup::1f6a3831411e4cc7ba152936570d4a19;re3data::r3d100011373;r3d100011373;"Virtual Fly Brain";re3data +dedup::1ff0fdd8340b04b1783fba5772ff8e7a;opendoar::678;678;"wilson center digital archive";OpenDOAR +dedup::1ff0fdd8340b04b1783fba5772ff8e7a;re3data::r3d100012060;r3d100012060;"Wilson Center Digital Archive";re3data +dedup::2005399f891e70f7e4df01e509552d2f;opendoar::2507;2507;"huskie commons";OpenDOAR +dedup::2005399f891e70f7e4df01e509552d2f;roar::5424;5424;"Huskie Commons";roar +dedup::20068e86c3ddf659ce83a55b845884bf;roar::2510;2510;"Adam Mickiewicz University Repository";roar +dedup::20068e86c3ddf659ce83a55b845884bf;roar::4671;4671;"Adam Mickiewicz University Repository";roar +dedup::20068e86c3ddf659ce83a55b845884bf;opendoar::1736;1736;"adam mickiewicz university repository";OpenDOAR +dedup::20441e726d3f359853cc7226e7bed1a5;roar::9430;9430;"Digital Commons @ Winthrop University";roar +dedup::20441e726d3f359853cc7226e7bed1a5;roar::9316;9316;"Digital Commons @ Winthrop University";roar +dedup::20441e726d3f359853cc7226e7bed1a5;roar::10359;10359;"Digital Commons @ Winthrop University";roar +dedup::2058a148e813327b7bd65f3e99f5be9e;https://fairsharing.org/10.25504/FAIRsharing.f778c3;3093;"Open Government Data Platform India";FAIRsharing +dedup::2058a148e813327b7bd65f3e99f5be9e;re3data::r3d100010956;r3d100010956;"Open Government Data Platform India";re3data +dedup::206b0c64678a35878269050517153fa2;opendoar::2780;2780;"bibliothèque numérique des universités grenoble 2 et 3";OpenDOAR +dedup::206b0c64678a35878269050517153fa2;roar::6469;6469;"Bibliothèque numérique des universités Grenoble 2 et 3";roar +dedup::20950156d9a041bddfc56700e0e75949;https://fairsharing.org/fairsharing_records/3066;3066;"EBAS";FAIRsharing +dedup::20950156d9a041bddfc56700e0e75949;re3data::r3d100012336;r3d100012336;"EBAS";re3data +dedup::20b6476c0c271bb94562344fb5b60029;opendoar::2181;2181;"opengrey repository";OpenDOAR +dedup::20b6476c0c271bb94562344fb5b60029;roar::3952;3952;"OpenGrey Repository";roar +dedup::20c89cf212828b356fa56e00e3807f03;https://fairsharing.org/10.25504/FAIRsharing.1hqd55;2209;"Structural Biology Data Grid";FAIRsharing +dedup::20c89cf212828b356fa56e00e3807f03;re3data::r3d100011601;r3d100011601;"Structural Biology Data Grid";re3data +dedup::20dfdc4ab7ee44bea1e7e0262a36ea39;opendoar::906;906;"kaleidoscope open archive";OpenDOAR +dedup::20dfdc4ab7ee44bea1e7e0262a36ea39;roar::5187;5187;"Kaleidoscope Open Archive";roar +dedup::20ee968f540225066a7086efb5ce10d4;roar::3268;3268;"InK: Institutional Knowledge at Singapore Management University";roar +dedup::20ee968f540225066a7086efb5ce10d4;opendoar::2269;2269;"institutional knowledge at singapore management university";OpenDOAR +dedup::20f8fe6eccac26d9c5d1d36e68ac6e94;opendoar::3319;3319;"national research database of zimbabwe";OpenDOAR +dedup::20f8fe6eccac26d9c5d1d36e68ac6e94;roar::9705;9705;"National Research Database of Zimbabwe";roar +dedup::210d94b8e5f04e2c158a5171b67fb998;roar::10775;10775;"erKNUTD: Electronic Repository Kyiv National University of Technologies and Design";roar +dedup::210d94b8e5f04e2c158a5171b67fb998;opendoar::3632;3632;"electronic repository kyiv national university of technologies and design";OpenDOAR +dedup::211acf449b825a7d132aebe714c2ea48;roar::1011;1011;"Pharmacy Eprints";roar +dedup::211acf449b825a7d132aebe714c2ea48;opendoar::759;759;"pharmacy eprints";OpenDOAR +dedup::2121c8fd8dc0a19b8b597d7d8754524d;roar::1250;1250;"Systems Competence Area Document Server";roar +dedup::2121c8fd8dc0a19b8b597d7d8754524d;opendoar::502;502;"system competence area document server";OpenDOAR +dedup::2135ee27b40362b582029d0e59cd7226;roar::916;916;"NECTAR";roar +dedup::2135ee27b40362b582029d0e59cd7226;opendoar::1251;1251;"nectar";OpenDOAR +dedup::214ae2cda343b65787ca4a9b567d2542;roar::1546;1546;"Zhytomyr State University Library";roar +dedup::214ae2cda343b65787ca4a9b567d2542;opendoar::1368;1368;"zhytomyr state university library";OpenDOAR +dedup::214cdbc5c4ba3eb8ba7031afbeb1dab7;roar::6899;6899;"Repositorio Institucional UNAD";roar +dedup::214cdbc5c4ba3eb8ba7031afbeb1dab7;opendoar::2703;2703;"repositorio institucional unad";OpenDOAR +dedup::216b961a9064dfee1b8a3da5affdac22;opendoar::3018;3018;"scholarworks@unist";OpenDOAR +dedup::216b961a9064dfee1b8a3da5affdac22;roar::8072;8072;"ScholarWorks@UNIST";roar +dedup::217aa2f5b5ae7428a3514c44cfa3a5fd;roar::5475;5475;"Digital Land of Sieradz";roar +dedup::217aa2f5b5ae7428a3514c44cfa3a5fd;opendoar::2210;2210;"digital land of sieradz";OpenDOAR +dedup::217aa2f5b5ae7428a3514c44cfa3a5fd;roar::4021;4021;"Digital Land of Sieradz";roar +dedup::218becf9fd9508b5d507fa11dc192da8;https://fairsharing.org/10.25504/FAIRsharing.5ey5w6;2098;"PseudoBase";FAIRsharing +dedup::218becf9fd9508b5d507fa11dc192da8;re3data::r3d100010563;r3d100010563;"Pseudobase";re3data +dedup::21dc5f8082fa87049d028236e5c8997f;https://fairsharing.org/fairsharing_records/3043;3043;"Strong Motion Virtual Data Center";FAIRsharing +dedup::21dc5f8082fa87049d028236e5c8997f;re3data::r3d100011796;r3d100011796;"Strong Motion Virtual Data Center";re3data +dedup::21e07a36324f1065850dfb7c2fdcf9c9;opendoar::9983;9983;"kuet institutional repository";OpenDOAR +dedup::21e07a36324f1065850dfb7c2fdcf9c9;roar::16451;16451;"KUET Institutional Repository";roar +dedup::21fd97aea2835e75d4236c34f10694fd;opendoar::4839;4839;"repositorio institucional digital unap";OpenDOAR +dedup::21fd97aea2835e75d4236c34f10694fd;roar::16304;16304;"Repositorio Institucional Digital UNAP";roar +dedup::21fe4645879e1dd2c1486863f2bb7545;roar::13531;13531;"Repository Vitebsk State Academy of Veterinary Medicine";roar +dedup::21fe4645879e1dd2c1486863f2bb7545;opendoar::4640;4640;"repository of vitebsk state academy of veterinary medicine";OpenDOAR +dedup::2220ea8f81cc28be9f32756f29449c7a;https://fairsharing.org/10.25504/FAIRsharing.aa1f93;2993;"Western Regional Climate Center";FAIRsharing +dedup::2220ea8f81cc28be9f32756f29449c7a;re3data::r3d100010942;r3d100010942;"Western Regional Climate Center";re3data +dedup::2235fd9f2a6b0b2698d531595d65e675;opendoar::3317;3317;"okayama prefectural university epublications repository";OpenDOAR +dedup::2235fd9f2a6b0b2698d531595d65e675;roar::10806;10806;"Okayama Prefectural University ePublications Repository";roar +dedup::22453e341039e3e3cce07828ea530080;opendoar::2223;2223;"eeast-ukrnuir (electronic volodymyr dahl east ukrainian national university institutional repository)";OpenDOAR +dedup::22453e341039e3e3cce07828ea530080;opendoar::4920;4920;"eeast-ukrnuir (electronic volodymyr dahl east ukrainian national university institutional repository)";OpenDOAR +dedup::22453e341039e3e3cce07828ea530080;roar::3996;3996;"eEast-UkrNUIR - Electronic Volodymyr Dahl East Ukrainian National University Institutional Repository";roar +dedup::225e78f0c599db1684b4d0338c122be9;opendoar::258;258;"publikationer från mälardalens högskola";OpenDOAR +dedup::225e78f0c599db1684b4d0338c122be9;roar::2340;2340;"Publikationer från Mälardalens högskola";roar +dedup::22692d5f03b30fd79c693c927844a31e;roar::891;891;"National Chiao Tung University Institutional Repository ";roar +dedup::22692d5f03b30fd79c693c927844a31e;opendoar::1321;1321;"national chiao tung university institutional repository";OpenDOAR +dedup::227f3d074676bf3b97a88565d42d9af0;roar::14550;14550;"JayScholar@Etown";roar +dedup::227f3d074676bf3b97a88565d42d9af0;opendoar::8768;8768;"jayscholar@etown";OpenDOAR +dedup::228b0bcaaa58b2f3419b5884c0a84acd;opendoar::2998;2998;"saint petersburg state university research repository";OpenDOAR +dedup::228b0bcaaa58b2f3419b5884c0a84acd;roar::7942;7942;"Saint Petersburg State University Research Repository ";roar +dedup::22b910583e64f574ab3c520f7a859e53;opendoar::2248;2248;"nowohucka biblioteka cyfrowa (nowa huta digital library)";OpenDOAR +dedup::22b910583e64f574ab3c520f7a859e53;roar::4124;4124;"Nowohucka Biblioteka Cyfrowa (Nowa Huta Digital Library)";roar +dedup::22f8de469308ae74ea79f49b38202eba;roar::4624;4624;"Repositorio Institucional de la Universidad de Almería";roar +dedup::22f8de469308ae74ea79f49b38202eba;roar::5685;5685;"Repositorio Institucional de la Universidad de Almería (Spain)";roar +dedup::22f8de469308ae74ea79f49b38202eba;opendoar::2382;2382;"repositorio institucional de la universidad de almería (spain)";OpenDOAR +dedup::231d139386f97370c34af86529c3421b;roar::7863;7863;"Electronic Uman State Pedagogical University Institutional Repository";roar +dedup::231d139386f97370c34af86529c3421b;opendoar::2989;2989;"electronic uman state pedagogical university institutional repository";OpenDOAR +dedup::23273a247193a23b0ed88e729eca5288;opendoar::4553;4553;"digital commons @ new haven";OpenDOAR +dedup::23273a247193a23b0ed88e729eca5288;roar::9484;9484;"Digital Commons @ New Haven";roar +dedup::2338bf5e118d1b32f23db2b0f44b8614;roar::3155;3155;"Osaka Jogakuin Research Repository";roar +dedup::2338bf5e118d1b32f23db2b0f44b8614;opendoar::1927;1927;"osaka jogakuin research repository";OpenDOAR +dedup::2341e9471bd50f5114be6680e0f06efc;opendoar::3597;3597;"repositorio universidad de concepción";OpenDOAR +dedup::2341e9471bd50f5114be6680e0f06efc;roar::10352;10352;"Repositorio Universidad de Concepción";roar +dedup::23544780e8d24f2c8acfecbfda423ee2;roar::5453;5453;"Victoria University Eprints Repository";roar +dedup::23544780e8d24f2c8acfecbfda423ee2;opendoar::365;365;"victoria university eprints repository";OpenDOAR +dedup::23a86f51fc4c89305af6fcbef2fd9690;roar::3986;3986;"ARCA";roar +dedup::23a86f51fc4c89305af6fcbef2fd9690;roar::3230;3230;"ARCA";roar +dedup::2409cf4c76dcd09cf049dfd93b66cb40;roar::4998;4998;"Swansea Metropolitan University Repository";roar +dedup::2409cf4c76dcd09cf049dfd93b66cb40;roar::1241;1241;"Swansea Metropolitan University Repository";roar +dedup::24115a7284e021aadad4c7941365db5b;roar::7005;7005;"ISFOL OA";roar +dedup::24115a7284e021aadad4c7941365db5b;roar::7056;7056;"ISFOL OA";roar +dedup::24115a7284e021aadad4c7941365db5b;opendoar::2070;2070;"isfol oa";OpenDOAR +dedup::24650228a131ec3cc3d4836af64c1426;roar::2393;2393;"Department of Computer Science E-Repository";roar +dedup::24650228a131ec3cc3d4836af64c1426;opendoar::1709;1709;"department of computer science e-repository";OpenDOAR +dedup::246acbff8284184ecf34c3019fc747c6;re3data::r3d100012644;r3d100012644;"European Mouse Mutant Cell Repository";re3data +dedup::246acbff8284184ecf34c3019fc747c6;https://fairsharing.org/10.25504/FAIRsharing.zmhqcq;2066;"European Mouse Mutant Cell Repository";FAIRsharing +dedup::24752215b5e973f6d816ed1c78b9a916;opendoar::2871;2871;"south carolina state documents depository";OpenDOAR +dedup::24752215b5e973f6d816ed1c78b9a916;roar::7452;7452;"South Carolina State Documents Depository";roar +dedup::2479fa2dff47bcd70f11534257eba646;roar::4947;4947;"European Cultural Heritage Online";roar +dedup::2479fa2dff47bcd70f11534257eba646;opendoar::472;472;"european cultural heritage online";OpenDOAR +dedup::24946f3c6f334a0318c719e6196d7405;roar::4641;4641;"Banco Internacional de Objetos Educacionais";roar +dedup::24946f3c6f334a0318c719e6196d7405;opendoar::1287;1287;"banco internacional de objetos educacionais";OpenDOAR +dedup::24aa96b6577614c8f32e10fc5d148c1d;roar::3352;3352;"Electronic Sumy State University Institutional Repository";roar +dedup::24aa96b6577614c8f32e10fc5d148c1d;opendoar::2001;2001;"electronic sumy state university institutional repository";OpenDOAR +dedup::24ad679fe191e199cb4f800f65caf439;https://fairsharing.org/10.25504/FAIRsharing.qtm44s;2549;"UK Data Archive";FAIRsharing +dedup::24ad679fe191e199cb4f800f65caf439;re3data::r3d100010215;r3d100010215;"UK Data Archive";re3data +dedup::24d36c2ea6cd4b03b5a27734517106ca;roar::4029;4029;"Image & Multimedia Collections";roar +dedup::24d36c2ea6cd4b03b5a27734517106ca;opendoar::2215;2215;"image & multimedia collections";OpenDOAR +dedup::24d66cd6cf423b1bd8a4ae3403db24db;https://fairsharing.org/10.25504/FAIRsharing.c886cd;2346;"Immune Epitope Database";FAIRsharing +dedup::24d66cd6cf423b1bd8a4ae3403db24db;re3data::r3d100012702;r3d100012702;"Immune Epitope Database";re3data +dedup::2558b38a6cb50eafa89cb948e4c2ba7b;roar::726;726;"JAIST Repository";roar +dedup::2558b38a6cb50eafa89cb948e4c2ba7b;opendoar::974;974;"jaist repository";OpenDOAR +dedup::2560809461b3497e0c41b4b86e8265ba;opendoar::3420;3420;"vitela: repositorios institucional de la pontificia universidad javeriana";OpenDOAR +dedup::2560809461b3497e0c41b4b86e8265ba;roar::10020;10020;"Vitela: Repositorios Institucional de la Pontificia Universidad Javeriana Cali";roar +dedup::25940e474791ea82b3e7c35749fd1744;opendoar::2087;2087;"repositorio digital eoi";OpenDOAR +dedup::25940e474791ea82b3e7c35749fd1744;roar::3663;3663;"Repositorio Digital EOI";roar +dedup::2597a5e5b13151a41f1c3ac305e706ce;https://fairsharing.org/fairsharing_records/3235;3235;"GLUES Geoportal";FAIRsharing +dedup::2597a5e5b13151a41f1c3ac305e706ce;re3data::r3d100011100;r3d100011100;"GLUES Geoportal";re3data +dedup::25c84115b988df8b9c43aea5c29483e0;roar::15752;15752;"Muş Alparslan University Institutional Repository";roar +dedup::25c84115b988df8b9c43aea5c29483e0;opendoar::9656;9656;"muş alparslan university institutional repository";OpenDOAR +dedup::25dc4980fcf2d730e811c13ccdef0fee;https://fairsharing.org/fairsharing_records/2999;2999;"Cornell University Geospatial Information Repository";FAIRsharing +dedup::25dc4980fcf2d730e811c13ccdef0fee;re3data::r3d100000034;r3d100000034;"Cornell University Geospatial Information Repository";re3data +dedup::25e18af650086b7bcc41cae0c96d6a83;opendoar::1358;1358;"opensiuc";OpenDOAR +dedup::25e18af650086b7bcc41cae0c96d6a83;roar::970;970;"OpenSIUC";roar +dedup::25f638bd152813ccfdc2d514d6ffbf78;opendoar::779;779;"raman research institute digital repository";OpenDOAR +dedup::25f638bd152813ccfdc2d514d6ffbf78;roar::1055;1055;"Raman Research Institute Digital Repository";roar +dedup::261a6b21f3ccef2cdef6c1949ddc3f20;https://fairsharing.org/10.25504/FAIRsharing.xFI5ob;3309;"Propylaeum@heiDATA";FAIRsharing +dedup::261a6b21f3ccef2cdef6c1949ddc3f20;re3data::r3d100013507;r3d100013507;"Propylaeum@heiDATA";re3data +dedup::261fc64858a716b1f9a53ca94834cabf;roar::4466;4466;"Academica-e";roar +dedup::261fc64858a716b1f9a53ca94834cabf;opendoar::2347;2347;"academica-e";OpenDOAR +dedup::26577713715336c7c71d12e6b7b8c892;roar::5983;5983;"Volltextserver Universität Ulm - VTS Publication Service";roar +dedup::26577713715336c7c71d12e6b7b8c892;opendoar::355;355;"volltextserver universität ulm - vts publication service";OpenDOAR +dedup::266e3ec42cb7332aa001f417a334d860;opendoar::3243;3243;"vcu scholars compass";OpenDOAR +dedup::266e3ec42cb7332aa001f417a334d860;roar::8458;8458;"VCU Scholars Compass";roar +dedup::26962bffad8770800e9118e20f8b7f2b;re3data::r3d100010222;r3d100010222;"ArrayExpress";re3data +dedup::26962bffad8770800e9118e20f8b7f2b;https://fairsharing.org/10.25504/FAIRsharing.6k0kwd;1845;"ArrayExpress";FAIRsharing +dedup::26c374c8c263d066cbc5cd31ac843118;opendoar::4164;4164;"biodare2 - biological data repository";OpenDOAR +dedup::26c374c8c263d066cbc5cd31ac843118;https://fairsharing.org/10.25504/FAIRsharing.toIDed;2676;"BioDare2 - Biological Data Repository";FAIRsharing +dedup::26c56595608f0b9aca3ca98fd915fdd2;re3data::r3d100010138;r3d100010138;"Australian Data Archive";re3data +dedup::26c56595608f0b9aca3ca98fd915fdd2;https://fairsharing.org/10.25504/FAIRsharing.sN8d9i;2675;"Australian Data Archive";FAIRsharing +dedup::26f7a21b6749d23aefac1b30df619e2d;https://fairsharing.org/10.25504/FAIRsharing.2bdvmk;1609;"Molecular INTeraction Database";FAIRsharing +dedup::26f7a21b6749d23aefac1b30df619e2d;re3data::r3d100010414;r3d100010414;"Molecular INTeraction Database";re3data +dedup::26f9661d53c73b791f92bfbb337cf7a0;opendoar::986;986;"shinshu university institutional repository";OpenDOAR +dedup::26f9661d53c73b791f92bfbb337cf7a0;roar::12410;12410;"Shinshu University Institutional Repository";roar +dedup::27321019d429315641899c1f4506b6f6;opendoar::1891;1891;"red de bibliotecas virtuales de ciencias sociales de américa latina y el caribe";OpenDOAR +dedup::27321019d429315641899c1f4506b6f6;roar::2943;2943;"CLACSO - Red de Bibliotecas Virtuales de Ciencias Sociales de America Latina y El Caribe";roar +dedup::278588c7b63d88f78faa46184f45a7ee;roar::4130;4130;"Pomeranian Digital Library";roar +dedup::278588c7b63d88f78faa46184f45a7ee;opendoar::2243;2243;"pomeranian digital library";OpenDOAR +dedup::278588c7b63d88f78faa46184f45a7ee;roar::5692;5692;"Pomeranian Digital Library";roar +dedup::2795f74e88a60cca71aec01fe43cb0cc;https://fairsharing.org/fairsharing_records/3239;3239;"World Data Center for Geomagnetism, Kyoto";FAIRsharing +dedup::2795f74e88a60cca71aec01fe43cb0cc;re3data::r3d100010608;r3d100010608;"World Data Center for Geomagnetism, Kyoto";re3data +dedup::27b7aa526bb0616945ffbcd7bc923c90;roar::13868;13868;"Saitama Prefectural University Repository";roar +dedup::27b7aa526bb0616945ffbcd7bc923c90;opendoar::4315;4315;"saitama prefectural university repository";OpenDOAR +dedup::27bc47b046938632dd8d32ada0b5f952;re3data::r3d100010861;r3d100010861;"Reactome";re3data +dedup::27bc47b046938632dd8d32ada0b5f952;https://fairsharing.org/10.25504/FAIRsharing.tf6kj8;1866;"Reactome";FAIRsharing +dedup::27ca5cd9389c66e2f89aa6e766a55e84;https://fairsharing.org/10.25504/FAIRsharing.WxI96O;2773;"Signaling Pathways Project";FAIRsharing +dedup::27ca5cd9389c66e2f89aa6e766a55e84;re3data::r3d100013650;r3d100013650;"Signaling Pathways Project";re3data +dedup::27d98c3a37c4b4d086ade788af32c598;opendoar::10228;10228;"institutional repository of lanzhou university";OpenDOAR +dedup::27d98c3a37c4b4d086ade788af32c598;roar::10937;10937;"Institutional Repository of Lanzhou University";roar +dedup::27fe19f4306036a0ed98b55fdb9aeab5;opendoar::605;605;"scholarworks@umass amherst";OpenDOAR +dedup::27fe19f4306036a0ed98b55fdb9aeab5;re3data::r3d100013546;r3d100013546;"ScholarWorks@UMassAmherst";re3data +dedup::27fe19f4306036a0ed98b55fdb9aeab5;roar::1171;1171;"ScholarWorks@UMass Amherst";roar +dedup::280140536ef8ae6f661beb3eda8fb312;opendoar::10298;10298;"electronic archive (repository) of dnipropetrovsk state university of internal affairs";OpenDOAR +dedup::280140536ef8ae6f661beb3eda8fb312;roar::17678;17678;"Electronic archive (repository) of Dnipropetrovsk State University of Internal Affairs (Електронний архів (репозитарій) Дніпропетровського державного університету внутрішніх справ)";roar +dedup::2924897b9b0cebc0f60440365b0295d9;opendoar::2472;2472;"repositorio institucional uces";OpenDOAR +dedup::2924897b9b0cebc0f60440365b0295d9;roar::9932;9932;"Repositorio Institucional UCES";roar +dedup::2924897b9b0cebc0f60440365b0295d9;roar::5215;5215;"Repositorio Institucional UCES";roar +dedup::29605da063ef66aea7dbcff7c704b2e8;https://fairsharing.org/10.25504/FAIRsharing.efp5v2;1745;"Animal Genome Size Database";FAIRsharing +dedup::29605da063ef66aea7dbcff7c704b2e8;re3data::r3d100012517;r3d100012517;"Animal Genome Size Database";re3data +dedup::296de40ec291a56646c410f1484a9403;roar::761;761;"Kinki University Academic Resource Repository";roar +dedup::296de40ec291a56646c410f1484a9403;roar::5548;5548;"Kinki University Academic Resource Repository (近畿大学学術情報リポジトリ)";roar +dedup::29875eaa8121c1a651978eb5801ee712;roar::4933;4933;"DBS Esource";roar +dedup::29875eaa8121c1a651978eb5801ee712;opendoar::2313;2313;"dbs esource";OpenDOAR +dedup::2987e8e6dbc6b7131c3f6165ebb5b862;https://fairsharing.org/fairsharing_records/3174;3174;"Global Carbon Atlas";FAIRsharing +dedup::2987e8e6dbc6b7131c3f6165ebb5b862;re3data::r3d100011741;r3d100011741;"Global carbon atlas";re3data +dedup::29af0fe34f526ae358451625951cf8a6;roar::11577;11577;"ZHAW digitalcollection";roar +dedup::29af0fe34f526ae358451625951cf8a6;opendoar::3760;3760;"zhaw digitalcollection";OpenDOAR +dedup::29b798f675047c4bf63f08716fadc199;roar::3511;3511;"Vidya Prasarak Mandal - Thane";roar +dedup::29b798f675047c4bf63f08716fadc199;opendoar::2041;2041;"vidya prasarak mandal - thane";OpenDOAR +dedup::29bae2bbc063ced57dd1fc853fb9380e;roar::5576;5576;"FortWorks";roar +dedup::29bae2bbc063ced57dd1fc853fb9380e;opendoar::2502;2502;"fortworks";OpenDOAR +dedup::29ced8f0b9c606512b03e71544dd9ac1;https://fairsharing.org/10.25504/FAIRsharing.ac329k;1802;"The Autism Chromosome Rearrangement Database";FAIRsharing +dedup::29ced8f0b9c606512b03e71544dd9ac1;re3data::r3d100012092;r3d100012092;"Autism Chromosome Rearrangement Database";re3data +dedup::2a096d1c24fa3cf8459cde7f5666140c;roar::5073;5073;"Open Archive of Northern State Medical University (Arkhangelsk)";roar +dedup::2a096d1c24fa3cf8459cde7f5666140c;opendoar::2450;2450;"open archive of northern state medical university (arkhangelsk)";OpenDOAR +dedup::2a36408ca82975d89b3854100a35483a;roar::9747;9747;"Kawasaki University of Medical Welfare Institutional Repository";roar +dedup::2a36408ca82975d89b3854100a35483a;opendoar::3344;3344;"kawasaki university of medical welfare institutional repository";OpenDOAR +dedup::2a8cd5ff6c43cf05192bfdd66a0744b3;roar::11437;11437;"UNI ScholarWorks at the University of Northern Iowa";roar +dedup::2a8cd5ff6c43cf05192bfdd66a0744b3;roar::13584;13584;"UNI ScholarWorks at the University of Northern Iowa";roar +dedup::2aa7e7152565c17a6ef35c9f75bb032c;opendoar::508;508;"jiia eprints repository";OpenDOAR +dedup::2aa7e7152565c17a6ef35c9f75bb032c;roar::731;731;"JIIA Eprints Repository";roar +dedup::2af1adf47b3862962cf1b923f6d74276;re3data::r3d100011958;r3d100011958;"HALO database";re3data +dedup::2af1adf47b3862962cf1b923f6d74276;https://fairsharing.org/10.25504/FAIRsharing.e0b9db;3062;"HALO Database";FAIRsharing +dedup::2b087139d9dbd0b34abc44367c5ece87;roar::16080;16080;"Repositorio Digital Organo Judicial";roar +dedup::2b087139d9dbd0b34abc44367c5ece87;opendoar::9665;9665;"repositorio digital órgano judicial";OpenDOAR +dedup::2b505ba640db525fc59882b64a63a1b2;roar::4376;4376;"Institutional Repository of Institute of Modern Physics";roar +dedup::2b505ba640db525fc59882b64a63a1b2;opendoar::2310;2310;"institutional repository of institute of modern physics, cas";OpenDOAR +dedup::2b9a96c4e099490b55d00f9b33142474;opendoar::1059;1059;"hiroshima associated repository portal";OpenDOAR +dedup::2b9a96c4e099490b55d00f9b33142474;opendoar::3332;3332;"hiroshima associated repository portal";OpenDOAR +dedup::2b9a96c4e099490b55d00f9b33142474;opendoar::3238;3238;"hiroshima associated repository portal";OpenDOAR +dedup::2ba23be608830a8ca22dd1f27f66d3a2;opendoar::2155;2155;"digitalcommons@linfield";OpenDOAR +dedup::2ba23be608830a8ca22dd1f27f66d3a2;roar::2959;2959;"DigitalCommons@Linfield";roar +dedup::2bb23223a90976e68f402a4bc433f74f;roar::9752;9752;"American College of Healthcare Sciences Theses & Capstone Projects";roar +dedup::2bb23223a90976e68f402a4bc433f74f;opendoar::3428;3428;"american college of healthcare sciences, theses and capstone projects";OpenDOAR +dedup::2bc138c45013f5e0ba5a8f4c32434a70;opendoar::7584;7584;"ncrm eprints repository";OpenDOAR +dedup::2bc138c45013f5e0ba5a8f4c32434a70;roar::2522;2522;"NCRM EPrints Repository";roar +dedup::2bdec93f79991b07838b4aff286173ca;roar::16426;16426;"Welcome to the Registry of Open Access Repositories - Registry of Open Access Repositories";roar +dedup::2bdec93f79991b07838b4aff286173ca;roar::12545;12545;"Welcome to the Registry of Open Access Repositories - Registry of Open Access Repositories";roar +dedup::2be92f8ae3251ad0728162392df857fc;re3data::r3d100012355;r3d100012355;"PeanutBase";re3data +dedup::2be92f8ae3251ad0728162392df857fc;https://fairsharing.org/10.25504/FAIRsharing.fYFurb;2581;"PeanutBase";FAIRsharing +dedup::2c3215c17618d6b91468bbb9985d7539;opendoar::2795;2795;"warsaw university of technology repository";OpenDOAR +dedup::2c3215c17618d6b91468bbb9985d7539;roar::7310;7310;"Warsaw University of Technology Repository";roar +dedup::2c81b2eb89dbf3ce7c607e1ff734dce8;re3data::r3d100012682;r3d100012682;"Open Government Data Portal of Tamil Nadu";re3data +dedup::2c81b2eb89dbf3ce7c607e1ff734dce8;https://fairsharing.org/fairsharing_records/3081;3081;"Open Government Data Portal of Tamil Nadu";FAIRsharing +dedup::2c81d834a8557f71d89277cc9977f70a;roar::3083;3083;"Publikations- und Dokumentenserver der Universitätsbibliothek Siegen";roar +dedup::2c81d834a8557f71d89277cc9977f70a;roar::2335;2335;"Publikations- und Dokumentenserver der Universitätsbibliothek Siegen";roar +dedup::2c8ce27c93b9842d755c01bb21c36b77;opendoar::2340;2340;"repositório do centro hospitalar de lisboa central, epe";OpenDOAR +dedup::2c8ce27c93b9842d755c01bb21c36b77;roar::4951;4951;"Repositório do Centro Hospitalar de Lisboa Central";roar +dedup::2c8d4458402ad2accedbb5f72111dd37;roar::13698;13698;"Repositorio Institucional Sineace";roar +dedup::2c8d4458402ad2accedbb5f72111dd37;opendoar::4437;4437;"repositorio institucional sineace";OpenDOAR +dedup::2c9fe46f93d03d57c51884de300ca61d;re3data::r3d100011478;r3d100011478;"Pombase";re3data +dedup::2c9fe46f93d03d57c51884de300ca61d;https://fairsharing.org/10.25504/FAIRsharing.8jsya3;1683;"PomBase";FAIRsharing +dedup::2cb40dd2fa347314378edc93fc84bc67;roar::497;497;"Electronic Resource Preservation and Access Network: ERPAePRINTS Service";roar +dedup::2cb40dd2fa347314378edc93fc84bc67;opendoar::136;136;"electronic resource preservation and access network eprints service";OpenDOAR +dedup::2cc06bd8bd19f098dfc228c3c57ca2e3;re3data::r3d100012335;r3d100012335;"GFZ Data Services";re3data +dedup::2cc06bd8bd19f098dfc228c3c57ca2e3;https://fairsharing.org/10.25504/FAIRsharing.e0d571;3065;"GFZ Data Services";FAIRsharing +dedup::2d1966c7ae61bd71a802e0cd06690b70;roar::4784;4784;"Publikationer från Sophiahemmets Högskola";roar +dedup::2d1966c7ae61bd71a802e0cd06690b70;opendoar::2421;2421;"publikationer från sophiahemmets högskola";OpenDOAR +dedup::2d2e1a34f0b7a4ed064532e33fb79554;roar::12424;12424;"Colecciones digitales - Biblioteca Virtual del Banco de la República";roar +dedup::2d2e1a34f0b7a4ed064532e33fb79554;opendoar::4275;4275;"colecciones digitales - biblioteca virtual del banco de la república";OpenDOAR +dedup::2d2e856bc6752499d0388fe8342a5451;https://fairsharing.org/fairsharing_records/2982;2982;"Atlantic Canada Conservation Data Centre";FAIRsharing +dedup::2d2e856bc6752499d0388fe8342a5451;re3data::r3d100010908;r3d100010908;"Atlantic Canada Conservation Data Centre";re3data +dedup::2d35cc7319c7665c214235c390057052;roar::6564;6564;"Repository of Belarusian National Technical University";roar +dedup::2d35cc7319c7665c214235c390057052;opendoar::2402;2402;"repository of belarusian national technical university (bntu)";OpenDOAR +dedup::2d35cc7319c7665c214235c390057052;roar::4967;4967;"Repository of Belarusian National Technical University (BNTU)";roar +dedup::2d9a051e7914835b79c2139eedef9af2;roar::6878;6878;"UCTScholar";roar +dedup::2d9a051e7914835b79c2139eedef9af2;opendoar::2900;2900;"uctscholar";OpenDOAR +dedup::2db7654271350e406e554507c2250d1b;opendoar::2700;2700;"uwl repository";OpenDOAR +dedup::2db7654271350e406e554507c2250d1b;roar::7125;7125;"UWL Repository";roar +dedup::2dc3311dd1f4c020174d9ee407775e48;roar::149;149;"BieColl - Bielefeld Electronic Collections";roar +dedup::2dc3311dd1f4c020174d9ee407775e48;opendoar::995;995;"biecoll - bielefeld electronic collections";OpenDOAR +dedup::2dcef0be39680f8c9545d8231a6f6fe7;opendoar::2381;2381;"huveta hungarian veterinary archive";OpenDOAR +dedup::2dcef0be39680f8c9545d8231a6f6fe7;roar::6199;6199;"HuVetA-Hungarian Veterinary Archive";roar +dedup::2dcf0420219c54252d79c1bec347c047;opendoar::1610;1610;"upf digital repository";OpenDOAR +dedup::2dcf0420219c54252d79c1bec347c047;re3data::r3d100010751;r3d100010751;"UPF Digital Repository";re3data +dedup::2dd0e59ae486b3cb5cfdce78323b5c6c;roar::3630;3630;"OPUS FAU: Online-Publikationssystem der Friedrich-Alexander-Universität Erlangen-Nürnberg";roar +dedup::2dd0e59ae486b3cb5cfdce78323b5c6c;opendoar::2091;2091;"opus fau - online publication system of friedrich-alexander-universität erlangen-nürnberg";OpenDOAR +dedup::2df4fc698893aafd284fef982130fcb6;opendoar::2559;2559;"t-stór";OpenDOAR +dedup::2df4fc698893aafd284fef982130fcb6;roar::5850;5850;"T-Stor";roar +dedup::2dfc162e7cd5dc4be3a07afc73ff595a;opendoar::4988;4988;"digital commons @ uldaho law";OpenDOAR +dedup::2dfc162e7cd5dc4be3a07afc73ff595a;roar::12916;12916;"Digital Commons @ UIdaho Law";roar +dedup::2e0d902be2f72ae0433f757e150a3252;roar::2283;2283;"Chia Nan University of Pharmacy & Science Institutional Repository (嘉南藥理大學機構典藏)";roar +dedup::2e0d902be2f72ae0433f757e150a3252;opendoar::1616;1616;"chia nan university of pharmacy & science institutional repository";OpenDOAR +dedup::2e580b841094f8211e7bbcb9799256fc;re3data::r3d100000039;r3d100000039;"Global Biodiversity Information Facility";re3data +dedup::2e580b841094f8211e7bbcb9799256fc;https://fairsharing.org/10.25504/FAIRsharing.zv11j3;2163;"Global Biodiversity Information Facility";FAIRsharing +dedup::2e5ae499ae470600f7b4fe2faae61310;opendoar::2352;2352;"oplex";OpenDOAR +dedup::2e5ae499ae470600f7b4fe2faae61310;roar::4961;4961;"OPLex";roar +dedup::2e880d94f6b31be98bf5f8c0daa0de99;opendoar::1484;1484;"collection of biostatistics research archive";OpenDOAR +dedup::2e880d94f6b31be98bf5f8c0daa0de99;roar::5402;5402;"Collection Of Biostatistics Research Archive";roar +dedup::2ea582c87a5dd9a4aaeeccb67e185309;roar::11234;11234;"Shendi University Repository";roar +dedup::2ea582c87a5dd9a4aaeeccb67e185309;opendoar::3628;3628;"shendi university repository";OpenDOAR +dedup::2eca9d46f814b647c14628f2aab5a20e;roar::2995;2995;"KCE repository";roar +dedup::2eca9d46f814b647c14628f2aab5a20e;opendoar::1879;1879;"kce repository";OpenDOAR +dedup::2ed08e4580b5f1ffa783da1fad694cdf;https://fairsharing.org/fairsharing_records/2942;2942;"Humanitarian Data Exchange";FAIRsharing +dedup::2ed08e4580b5f1ffa783da1fad694cdf;re3data::r3d100013193;r3d100013193;"Humanitarian Data Exchange";re3data +dedup::2f113ffbd33297ccf083d6167c5676c2;roar::2640;2640;"Forced Migration Online: Digital Library";roar +dedup::2f113ffbd33297ccf083d6167c5676c2;opendoar::1466;1466;"forced migration online digital library";OpenDOAR +dedup::2f402521bd80f8f92629fd78eadb6318;roar::17470;17470;"Repository of Politeknik Negeri Banjarmasin";roar +dedup::2f402521bd80f8f92629fd78eadb6318;opendoar::10207;10207;"repository of politeknik negeri banjarmasin";OpenDOAR +dedup::2f55e93ae175442ad3fcd19a59d95727;https://fairsharing.org/10.25504/FAIRsharing.NmIgg9;3010;"Datanator";FAIRsharing +dedup::2f55e93ae175442ad3fcd19a59d95727;re3data::r3d100013339;r3d100013339;"Datanator";re3data +dedup::2f651b6630f58f4f899193cbdf941adb;roar::15183;15183;"REPOSITORIO ACADEMICO USMP: Página de inicio";roar +dedup::2f651b6630f58f4f899193cbdf941adb;roar::16081;16081;"REPOSITORIO ACADEMICO USMP: Página de inicio";roar +dedup::2f69c30b4aa6f7abdb292fc16267b43e;https://fairsharing.org/10.25504/FAIRsharing.Mkl9RR;2863;"Ontology Lookup Service";FAIRsharing +dedup::2f69c30b4aa6f7abdb292fc16267b43e;re3data::r3d100010413;r3d100010413;"Ontology Lookup Service";re3data +dedup::2f8a3d81dcb998ecc52f4655c8358c70;roar::4674;4674;"Colección de Tesis Digitales - Universidad de las Américas Puebla";roar +dedup::2f8a3d81dcb998ecc52f4655c8358c70;opendoar::416;416;"colección de tesis digitales - universidad de las américas puebla";OpenDOAR +dedup::2fb6f5e0089504a200428926339aaf34;opendoar::1646;1646;"pandektis";OpenDOAR +dedup::2fb6f5e0089504a200428926339aaf34;roar::4640;4640;"Pandektis";roar +dedup::30019208a2ba6185f2020a8a7ee4fede;https://fairsharing.org/10.25504/FAIRsharing.30f068;3064;"Climate4Impact";FAIRsharing +dedup::30019208a2ba6185f2020a8a7ee4fede;re3data::r3d100012141;r3d100012141;"climate4impact";re3data +dedup::302a53265bf7aed87c98dcea17355de9;roar::1386;1386;"University of Hertfordshire Research Archive";roar +dedup::302a53265bf7aed87c98dcea17355de9;opendoar::882;882;"university of hertfordshire research archive";OpenDOAR +dedup::302a53265bf7aed87c98dcea17355de9;re3data::r3d100013116;r3d100013116;"University of Hertfordshire Research Archive";re3data +dedup::302b2ecf59f9a5f75c97ce2ad6cfb24b;opendoar::1703;1703;"scholarship @ cornell law";OpenDOAR +dedup::302b2ecf59f9a5f75c97ce2ad6cfb24b;roar::1563;1563;"Scholarship@Cornell Law";roar +dedup::304e6565a6c5fafc68ac4f3515a58690;roar::14073;14073;"USRA Houston Repository";roar +dedup::304e6565a6c5fafc68ac4f3515a58690;opendoar::3530;3530;"usra houston repository";OpenDOAR +dedup::305134dafda687d417a67614be476b74;https://fairsharing.org/10.25504/FAIRsharing.a7abca;3132;"Keck Observatory Archive";FAIRsharing +dedup::305134dafda687d417a67614be476b74;re3data::r3d100010526;r3d100010526;"Keck Observatory Archive";re3data +dedup::30662d8e32f89a9d51a13b7f0ffe477a;opendoar::1448;1448;"northumbria research link";OpenDOAR +dedup::30662d8e32f89a9d51a13b7f0ffe477a;roar::931;931;"Northumbria Research Link";roar +dedup::307c115844ca3ab6f3278bebd14bbad3;roar::1461;1461;"UPCommons - Revistes i congressos UPC";roar +dedup::307c115844ca3ab6f3278bebd14bbad3;opendoar::1100;1100;"upcommons - revistes i congressos upc";OpenDOAR +dedup::309495abe419619e4dcaa83a387bd73a;re3data::r3d100010891;r3d100010891;"Rhea";re3data +dedup::309495abe419619e4dcaa83a387bd73a;https://fairsharing.org/10.25504/FAIRsharing.pn1sr5;1639;"Rhea";FAIRsharing +dedup::30a14adf7a6c3dcd4e99dae60a6df395;roar::15907;15907;"Vanderbilt University Institutional Repository ";roar +dedup::30a14adf7a6c3dcd4e99dae60a6df395;opendoar::364;364;"vanderbilt university institutional repository";OpenDOAR +dedup::30f5020da6930ed7600a181c22fd378e;roar::7842;7842;"Digital Commons @ Wofford College";roar +dedup::30f5020da6930ed7600a181c22fd378e;opendoar::4932;4932;"digital commons @ wofford college";OpenDOAR +dedup::3131f57df46fd7f8f234c015329f153d;opendoar::4610;4610;"biruni university institutional repository";OpenDOAR +dedup::3131f57df46fd7f8f234c015329f153d;roar::14777;14777;"Biruni University Institutional Repository";roar +dedup::314e9d37a5a6ca7705553a662d8ab5cd;roar::424;424;"DSpace at Cardiff Met";roar +dedup::314e9d37a5a6ca7705553a662d8ab5cd;opendoar::1309;1309;"dspace at cardiff met";OpenDOAR +dedup::316c060f34815110e4158952e909464c;re3data::r3d100012321;r3d100012321;"Carbohydrate-Active enZYmes Database";re3data +dedup::316c060f34815110e4158952e909464c;https://fairsharing.org/10.25504/FAIRsharing.ntyq70;1834;"The Carbohydrate-Active enZYmes Database";FAIRsharing +dedup::317dd7f135b467c49c62f388c80477a9;https://fairsharing.org/10.25504/FAIRsharing.7mFpMg;2684;"MorphoSource";FAIRsharing +dedup::317dd7f135b467c49c62f388c80477a9;re3data::r3d100012224;r3d100012224;"MorphoSource";re3data +dedup::318b4ff6d35f4298ae2814bd8dd04283;roar::12893;12893;"ECOLIB LIBRARY OF NATIONAL RESEARCH AND DEVELOPMENT INSTITUTE FOR INDUSTRIAL ECOLOGY: Home";roar +dedup::318b4ff6d35f4298ae2814bd8dd04283;opendoar::4058;4058;"ecolib-library of national research and development institute for industrial ecology";OpenDOAR +dedup::318beed64970a0dee1c859ad9a0c6b14;roar::3653;3653;"LSE Theses Online";roar +dedup::318beed64970a0dee1c859ad9a0c6b14;opendoar::2134;2134;"lse theses online";OpenDOAR +dedup::31a35ecdb21d862f5edcf9de19d2e472;roar::7571;7571;"FOSS Repository";roar +dedup::31a35ecdb21d862f5edcf9de19d2e472;opendoar::2898;2898;"foss repository";OpenDOAR +dedup::31b71fb5f3708399b636597c767a81e6;roar::6242;6242;"Fondo Documental Histórico de las Cortes de Aragón";roar +dedup::31b71fb5f3708399b636597c767a81e6;opendoar::2743;2743;"fondo documental histórico de las cortes de aragón";OpenDOAR +dedup::31c432dcf8f8727ed18a763dbef10909;re3data::r3d100010557;r3d100010557;"Universal PBM Resource for Oligonucleotide Binding Evaluation";re3data +dedup::31c432dcf8f8727ed18a763dbef10909;https://fairsharing.org/10.25504/FAIRsharing.8zf3ny;1793;"Universal PBM Resource for Oligonucleotide Binding Evaluation";FAIRsharing +dedup::31cbbde4defbef53dfc76d7d1211e015;roar::11060;11060;"NSUWorks - Nova Southeastern University Institutional Repository";roar +dedup::31cbbde4defbef53dfc76d7d1211e015;roar::8316;8316;"NSU Works Nova Southeastern University Institutional Repository";roar +dedup::31cea185c1c0ec5037c025f00d309a65;roar::8270;8270;"Trakya University Institutional Repository";roar +dedup::31cea185c1c0ec5037c025f00d309a65;opendoar::3044;3044;"trakya university institutional repository";OpenDOAR +dedup::31f7145ff65cab455ff73123f825e9e3;roar::3665;3665;"Tokyo Metropolitan University Institutional Repository (首都大学東京機関リポジトリ)";roar +dedup::31f7145ff65cab455ff73123f825e9e3;opendoar::2086;2086;"tokyo metropolitan university institutional repository (首都大学東京機関リポジトリ)";OpenDOAR +dedup::32069c081044aaa25689719aa06b3aeb;roar::16310;16310;"Etheses of Maulana Malik Ibrahim State Islamic University";roar +dedup::32069c081044aaa25689719aa06b3aeb;opendoar::3448;3448;"etheses of maulana malik ibrahim state islamic university";OpenDOAR +dedup::320fdd4fc3e13ed72eff3bee0b579c6b;opendoar::461;461;"dipartimento di fisica e astronomia - unict";OpenDOAR +dedup::320fdd4fc3e13ed72eff3bee0b579c6b;roar::5712;5712;"Dipartimento di Fisica e Astronomia - UNICT";roar +dedup::32216c5dddd9f3c43ff6113fb993e37b;opendoar::3009;3009;"institutional repository of xi an jiaotong university";OpenDOAR +dedup::32216c5dddd9f3c43ff6113fb993e37b;roar::7929;7929;"Institutional Repository of Xian Jiaotong University";roar +dedup::324906cb17950cb6d539eb71a0cc9240;roar::8894;8894;"COMU Open Access System";roar +dedup::324906cb17950cb6d539eb71a0cc9240;opendoar::3095;3095;"comu open access system";OpenDOAR +dedup::32b10947e02722a6d9bb8991f7348532;https://fairsharing.org/10.25504/FAIRsharing.5h3maw;1983;"NCBI Gene";FAIRsharing +dedup::32b10947e02722a6d9bb8991f7348532;re3data::r3d100010650;r3d100010650;"NCBI Gene";re3data +dedup::331947a5fd7a6d5f46550393e782e647;opendoar::1330;1330;"khazar university institutional repository";OpenDOAR +dedup::331947a5fd7a6d5f46550393e782e647;roar::756;756;"Khazar University Institutional Repository";roar +dedup::331947a5fd7a6d5f46550393e782e647;roar::5487;5487;"Khazar University Institutional Repository";roar +dedup::331947a5fd7a6d5f46550393e782e647;re3data::r3d100010690;r3d100010690;"Khazar University Institutional Repository";re3data +dedup::33265241031693a861105b61f731b8d9;opendoar::377;377;"yale medicine thesis digital library";OpenDOAR +dedup::33265241031693a861105b61f731b8d9;roar::5888;5888;"Yale Medicine Thesis Digital Library";roar +dedup::334de3b688fd3138a617f99364495209;re3data::r3d100010530;r3d100010530;"Earthdata powered by EOSDIS";re3data +dedup::334de3b688fd3138a617f99364495209;https://fairsharing.org/10.25504/FAIRsharing.OXUGmN;3050;"Earthdata powered by EOSDIS";FAIRsharing +dedup::336d46a917ab2e2606bafaa36799de30;roar::17212;17212;"Open Access Victoria University of Wellington | Te Herenga Waka";roar +dedup::336d46a917ab2e2606bafaa36799de30;opendoar::10092;10092;"open access victoria university of wellington | te herenga waka";OpenDOAR +dedup::33ae13dffd405900da32638479cd54a9;roar::4383;4383;"Institutional Repository of Research Center for Eco-Environmental Sciences";roar +dedup::33ae13dffd405900da32638479cd54a9;opendoar::2304;2304;"institutional repository of research center for eco-environmental sciences, cas";OpenDOAR +dedup::33cb55e3b4185dbc70cc80f0248414f5;re3data::r3d100011580;r3d100011580;"World Ocean Database";re3data +dedup::33cb55e3b4185dbc70cc80f0248414f5;https://fairsharing.org/10.25504/FAIRsharing.73ea53;3008;"World Ocean Database";FAIRsharing +dedup::3410c99026aa86dbaf4218f5ab13a9d6;opendoar::193;193;"iuscholarworks";OpenDOAR +dedup::3410c99026aa86dbaf4218f5ab13a9d6;roar::723;723;"IUScholarWorks";roar +dedup::342ec7125a9a0ef5e547088873e547de;roar::13024;13024;"Repository of Grodno State Medical University";roar +dedup::342ec7125a9a0ef5e547088873e547de;opendoar::3844;3844;"repository of grodno state medical university";OpenDOAR +dedup::3468ccf94dbe6b32545a4df2c168bd8d;opendoar::2122;2122;"ukm journal article repository";OpenDOAR +dedup::3468ccf94dbe6b32545a4df2c168bd8d;roar::3726;3726;"UKM Journal Article Repository";roar +dedup::34791210d9faa9e2d7c50f5dce577b75;roar::6452;6452;"South African Data Archive";roar +dedup::34791210d9faa9e2d7c50f5dce577b75;opendoar::2773;2773;"south africa data archive";OpenDOAR +dedup::348e0c5a53df002132d981737a3aaffb;roar::12224;12224;"Repositori Universitas Bhayangkara Jakarta Raya";roar +dedup::348e0c5a53df002132d981737a3aaffb;opendoar::3826;3826;"repositori universitas bhayangkara jakarta raya";OpenDOAR +dedup::349101854960285e155beb2cb1349ce6;opendoar::2176;2176;"repositorio digital de tesis pucp";OpenDOAR +dedup::349101854960285e155beb2cb1349ce6;roar::3924;3924;"Repositorio Digital de Tesis PUCP";roar +dedup::349101854960285e155beb2cb1349ce6;roar::5700;5700;"Repositorio Digital de Tesis PUCP";roar +dedup::349800c374eaa20944907819a0c97c6b;roar::14558;14558;"Repositorium PHZH";roar +dedup::349800c374eaa20944907819a0c97c6b;opendoar::4446;4446;"repositorium phzh";OpenDOAR +dedup::349be30097069298087b12faa5bbd0c3;opendoar::2201;2201;"repositorio institucional arjona y cubas de la real academia de córdoba";OpenDOAR +dedup::349be30097069298087b12faa5bbd0c3;roar::4005;4005;"Repositorio Institucional Arjona y Cubas de la Real Academia de Córdoba";roar +dedup::34aa838a7a11a939d4490993b059a271;opendoar::2426;2426;"academic research repository at the burgas free university";OpenDOAR +dedup::34aa838a7a11a939d4490993b059a271;roar::4834;4834;"Academic Research Repository at the Burgas Free University";roar +dedup::34bad9e9d70144601f31bad7d63373c4;re3data::r3d100013314;r3d100013314;"ViralZone";re3data +dedup::34bad9e9d70144601f31bad7d63373c4;https://fairsharing.org/10.25504/FAIRsharing.tppk10;2399;"ViralZone";FAIRsharing +dedup::34ca969e1342eadd180ad68237eb65df;roar::6900;6900;"Epoka University Repository";roar +dedup::34ca969e1342eadd180ad68237eb65df;opendoar::2980;2980;"epoka university repository";OpenDOAR +dedup::34d95ca6f91bb7d52fca882d57b47a03;roar::3320;3320;"Landspítali University Hospital Research Archive";roar +dedup::34d95ca6f91bb7d52fca882d57b47a03;opendoar::926;926;"landspítali university hospital research archive";OpenDOAR +dedup::357fa01a524af605967a224a7bd86297;roar::6361;6361;"Repositório Institucional da Universidade de Brasília";roar +dedup::357fa01a524af605967a224a7bd86297;opendoar::1375;1375;"repositório institucional da universidade de brasília";OpenDOAR +dedup::3585b8fc3fa08ae47645b4c06064b623;roar::729;729;"Jefferson Digital Commons";roar +dedup::3585b8fc3fa08ae47645b4c06064b623;opendoar::194;194;"jefferson digital commons";OpenDOAR +dedup::3589aa2dcbd8a696f0256847cc90843e;re3data::r3d100010363;r3d100010363;"Visual Arts Data Service";re3data +dedup::3589aa2dcbd8a696f0256847cc90843e;opendoar::1284;1284;"visual arts data service";OpenDOAR +dedup::3598d67d4aa5c38e18a7b25c1db3497f;opendoar::201;201;"lancaster eprints";OpenDOAR +dedup::3598d67d4aa5c38e18a7b25c1db3497f;roar::786;786;"Lancaster E-Prints ";roar +dedup::35ab54e045973319022cab639d0e7aef;https://fairsharing.org/fairsharing_records/3172;3172;"Permanent Service for Mean Sea Level";FAIRsharing +dedup::35ab54e045973319022cab639d0e7aef;re3data::r3d100011869;r3d100011869;"Permanent Service for Mean Sea Level";re3data +dedup::35e96e93badfa6a31a4a86f668c4cfb0;re3data::r3d100011033;r3d100011033;"NCBI BioSystems Database";re3data +dedup::35e96e93badfa6a31a4a86f668c4cfb0;https://fairsharing.org/10.25504/FAIRsharing.w2eeqr;1964;"NCBI BioSystems Database";FAIRsharing +dedup::35f6f556ba2af20eafeb1a6004b30ab3;re3data::r3d100013313;r3d100013313;"Surveillance Epidemiology of Coronavirus (COVID19) Under Research Exclusion";re3data +dedup::35f6f556ba2af20eafeb1a6004b30ab3;https://fairsharing.org/fairsharing_records/2936;2936;"Surveillance Epidemiology of Coronavirus (COVID-19) Under Research Exclusion - IBD";FAIRsharing +dedup::36091bb59d81962686d987420ed5c738;roar::4293;4293;"Armenian Rare Books 1512-1800";roar +dedup::36091bb59d81962686d987420ed5c738;opendoar::2281;2281;"armenian rare books 1512-1800";OpenDOAR +dedup::361bd4654b2dcd37ae7d95803b950520;roar::342;342;"DigitalCommons@The Texas Medical Center ";roar +dedup::361bd4654b2dcd37ae7d95803b950520;opendoar::93;93;"digitalcommons@the texas medical center";OpenDOAR +dedup::3630a90889c97aa1203b2228989a6e30;opendoar::3868;3868;"kwansei gakuin university repository";OpenDOAR +dedup::3630a90889c97aa1203b2228989a6e30;roar::12479;12479;"Kwansei Gakuin University Repository";roar +dedup::363163a57c943dd2035a202140306589;roar::13385;13385;"KURA : Kanazawa University Repository for Academic Resources";roar +dedup::363163a57c943dd2035a202140306589;opendoar::601;601;"kanazawa university repository for academic resources";OpenDOAR +dedup::363163a57c943dd2035a202140306589;roar::13359;13359;"KURA : Kanazawa University Repository for Academic Resources";roar +dedup::36550fbc631a140c432d4570ee4eb6c1;roar::790;790;"LARA - Libre Acces aux RApports scientifiques et techniques";roar +dedup::36550fbc631a140c432d4570ee4eb6c1;opendoar::905;905;"libre acces aux rapports scientifiques et techniques";OpenDOAR +dedup::365af37f67dd585c1369e587f5213838;opendoar::1218;1218;"university of regina campus digital archive";OpenDOAR +dedup::365af37f67dd585c1369e587f5213838;roar::1418;1418;"University of Regina Campus Digital Archive";roar +dedup::366b5c529982492b2f89dc62ee677069;roar::7245;7245;"REAL-d";roar +dedup::366b5c529982492b2f89dc62ee677069;opendoar::2945;2945;"real-d";OpenDOAR +dedup::36754f8f494668a0259eeb9e6abcbdc1;opendoar::5487;5487;"publication server of ph schwäbisch gmünd";OpenDOAR +dedup::36754f8f494668a0259eeb9e6abcbdc1;roar::11209;11209;"Publication Server of PH Schwäbisch Gmünd";roar +dedup::36b076f42cddfe844bab553b308ef860;roar::627;627;"Hiroshima University institutional Repository";roar +dedup::36b076f42cddfe844bab553b308ef860;opendoar::484;484;"hiroshima university institutional repository";OpenDOAR +dedup::36e80fe84f41ffc357d6925cbf8a5ffd;roar::5989;5989;"National Central University Library Electronic Thesis & Dissertation System";roar +dedup::36e80fe84f41ffc357d6925cbf8a5ffd;roar::883;883;"National Central University Library Electronic Thesis & Dissertation System";roar +dedup::36e80fe84f41ffc357d6925cbf8a5ffd;opendoar::1556;1556;"national central university library electronic thesis & dissertation system";OpenDOAR +dedup::36e88f3c338e2f906288cda38d906209;opendoar::2546;2546;"repositório institucional da ufpb";OpenDOAR +dedup::36e88f3c338e2f906288cda38d906209;opendoar::2969;2969;"repositório institucional da ufpb";OpenDOAR +dedup::3719d76dec7cd357fad44627ab54af71;opendoar::1007;1007;"prometheus academic collections";OpenDOAR +dedup::3719d76dec7cd357fad44627ab54af71;roar::1027;1027;"Prometheus-Academic Collections";roar +dedup::37284e6719e69672b7cc11a457516050;opendoar::157;157;"mason archival repository service";OpenDOAR +dedup::37284e6719e69672b7cc11a457516050;roar::833;833;"Mason Archival Repository Service";roar +dedup::37546df2cfc6dc8a92cb48f5cc5c898a;opendoar::1280;1280;"eprints@sbt mku";OpenDOAR +dedup::37546df2cfc6dc8a92cb48f5cc5c898a;roar::522;522;"Eprints@SBT MKU";roar +dedup::3770d953b0a0ec5a2e9b5259d30118a6;opendoar::2547;2547;"biblioteca nacional de uruguay";OpenDOAR +dedup::3770d953b0a0ec5a2e9b5259d30118a6;roar::5753;5753;"Biblioteca Nacional de Uruguay";roar +dedup::37763171ec8fa09d088341c44a991a79;https://fairsharing.org/10.25504/FAIRsharing.kqbg3s;2554;"Integrated Resource for Reproducibility in Macromolecular Crystallography";FAIRsharing +dedup::37763171ec8fa09d088341c44a991a79;re3data::r3d100012269;r3d100012269;"Integrated Resource for Reproducibility in Macromolecular Crystallography";re3data +dedup::378026cf480036ccaa6b997d4144f1b1;roar::5627;5627;"Repositorio Institucional Universidad Nueva Esparta";roar +dedup::378026cf480036ccaa6b997d4144f1b1;opendoar::2513;2513;"repositorio institucional universidad nueva esparta";OpenDOAR +dedup::37c716858b51196c7b2f84a366898caf;opendoar::1010;1010;"wildrepositorium";OpenDOAR +dedup::37c716858b51196c7b2f84a366898caf;roar::1527;1527;"WildRepositorium";roar +dedup::37cf2ae242013637a7b3531019889829;roar::9038;9038;"Seisen University Institutional Repository ";roar +dedup::37cf2ae242013637a7b3531019889829;opendoar::3206;3206;"seisen university institutional repository";OpenDOAR +dedup::37d9bac4793a209fdceb11965e7818db;re3data::r3d100013408;r3d100013408;"ProteomicsDB";re3data +dedup::37d9bac4793a209fdceb11965e7818db;https://fairsharing.org/10.25504/FAIRsharing.6y9h91;2518;"ProteomicsDB";FAIRsharing +dedup::37fb8e19f0a09b9f545245c9634c2809;re3data::r3d100010655;r3d100010655;"OpenTopography";re3data +dedup::37fb8e19f0a09b9f545245c9634c2809;https://fairsharing.org/10.25504/FAIRsharing.88wme4;2437;"OpenTopography";FAIRsharing +dedup::380194e889014b433f42db25e8d7ab35;https://fairsharing.org/10.25504/FAIRsharing.mya1ff;1865;"The European Genome-phenome Archive";FAIRsharing +dedup::380194e889014b433f42db25e8d7ab35;re3data::r3d100011242;r3d100011242;"The European Genome-phenome Archive";re3data +dedup::38036bb42a8ea4bd4324d33fc516adbb;roar::15892;15892;"icipe Digital Repository";roar +dedup::38036bb42a8ea4bd4324d33fc516adbb;opendoar::9598;9598;"icipe digital repository";OpenDOAR +dedup::381e4f2159aa462f2eae5db429103207;opendoar::709;709;"j. willard marriott library digital collections";OpenDOAR +dedup::381e4f2159aa462f2eae5db429103207;roar::4729;4729;"J. Willard Marriott Library Digital Collections";roar +dedup::383bf1019f07639ed2bf2bd33bda02b8;opendoar::2572;2572;"repositorio digital de la universidad nacional de córdoba";OpenDOAR +dedup::383bf1019f07639ed2bf2bd33bda02b8;roar::6032;6032;"Repositorio Digital de la Universidad Nacional de Córdoba";roar +dedup::387dbcd23b1a5f16a947d875a710889c;opendoar::1423;1423;"search4dev";OpenDOAR +dedup::387dbcd23b1a5f16a947d875a710889c;roar::1194;1194;"Search4Dev";roar +dedup::38a1d8a743920059c46e6fc2a994949d;roar::2651;2651;"Tennessee Research and Creative Exchange";roar +dedup::38a1d8a743920059c46e6fc2a994949d;opendoar::1774;1774;"tennessee research and creative exchange";OpenDOAR +dedup::38a373173aed30671d92f1f61f233846;opendoar::943;943;"kobe university repository kernel";OpenDOAR +dedup::38a373173aed30671d92f1f61f233846;roar::767;767;"Kobe University Repository Kernel";roar +dedup::38d38988065ed3592ea8de98a6b1599b;re3data::r3d100012629;r3d100012629;"CATH";re3data +dedup::38d38988065ed3592ea8de98a6b1599b;https://fairsharing.org/10.25504/FAIRsharing.xgcyyn;2082;"CATH";FAIRsharing +dedup::38e28f15656e2179eefc89ba37e50cc0;roar::3385;3385;"Institutional Repository of Vadym Hetman Kyiv National Economic University";roar +dedup::38e28f15656e2179eefc89ba37e50cc0;opendoar::2149;2149;"institutional repository of vadym hetman kyiv national economic university";OpenDOAR +dedup::38ef6b9dc862efd7d4a81277148cd149;roar::13331;13331;"Repositorio Institucional ULima";roar +dedup::38ef6b9dc862efd7d4a81277148cd149;opendoar::3883;3883;"repositorio institucional ulima";OpenDOAR +dedup::38fdada84502d3d32012ba5526104905;roar::4757;4757;"CEACS Repository";roar +dedup::38fdada84502d3d32012ba5526104905;opendoar::2405;2405;"ceacs repository";OpenDOAR +dedup::3917bf5f469ea84e4d7fb54e457bd36e;roar::1051;1051;"Queensland University of Technology - ePrints Archive";roar +dedup::3917bf5f469ea84e4d7fb54e457bd36e;opendoar::270;270;"queensland university of technology eprints archive";OpenDOAR +dedup::3918a02168cf87046860357436ff2afc;https://fairsharing.org/10.25504/FAIRsharing.l0p1Oi;2724;"Beilstein Archives";FAIRsharing +dedup::3918a02168cf87046860357436ff2afc;opendoar::9484;9484;"beilstein archives";OpenDOAR +dedup::394c0312ec2affabc655677e912dfce5;https://fairsharing.org/10.25504/FAIRsharing.wrvze3;1582;"FlyBase";FAIRsharing +dedup::394c0312ec2affabc655677e912dfce5;re3data::r3d100010591;r3d100010591;"FlyBase";re3data +dedup::39c1be238978ad3b06782083b3ef3f4f;opendoar::1471;1471;"the bue e-print repository";OpenDOAR +dedup::39c1be238978ad3b06782083b3ef3f4f;roar::1278;1278;"The BUE e-print repository";roar +dedup::39ca161f8596b540482ecdfa99a6f501;https://fairsharing.org/10.25504/FAIRsharing.sbikSF;2851;"Duke Research Data Repository";FAIRsharing +dedup::39ca161f8596b540482ecdfa99a6f501;re3data::r3d100013154;r3d100013154;"Duke Research Data Repository";re3data +dedup::3a388b6ab8f9fa34112949102c24566d;re3data::r3d100013272;r3d100013272;"ReefTEMPS";re3data +dedup::3a388b6ab8f9fa34112949102c24566d;https://fairsharing.org/10.25504/FAIRsharing.5ftlhl;3243;"ReefTEMPS";FAIRsharing +dedup::3a5177f08b9d57a451768fa6fa0fcc71;opendoar::1367;1367;"national chengchi university institutional repository";OpenDOAR +dedup::3a5177f08b9d57a451768fa6fa0fcc71;roar::889;889;"National Chengchi University Institutional Repository";roar +dedup::3a5431b32a86cd10e1efbe9b61932789;roar::10518;10518;"Egerton University Institutional Repository";roar +dedup::3a5431b32a86cd10e1efbe9b61932789;roar::10800;10800;"Egerton University Instititutional Repository";roar +dedup::3a5431b32a86cd10e1efbe9b61932789;opendoar::3612;3612;"egerton university institutional repository";OpenDOAR +dedup::3a72fe57c1eaf329d83098babd824334;opendoar::10334;10334;"namık kemal university institutional repository";OpenDOAR +dedup::3a72fe57c1eaf329d83098babd824334;roar::17710;17710;"Namık Kemal University Institutional Repository";roar +dedup::3a9c95c0c9d36df03212e3073391e93b;roar::5551;5551;"EHTC Repositorio Institucional";roar +dedup::3a9c95c0c9d36df03212e3073391e93b;roar::3417;3417;"EHTC Repositorio Institucional";roar +dedup::3a9c95c0c9d36df03212e3073391e93b;opendoar::1996;1996;"ehtc repositorio institucional";OpenDOAR +dedup::3ac1e64685c86f359a52909da76fa0a8;https://fairsharing.org/10.25504/FAIRsharing.cF5x1V;2968;"Infectious Diseases Data Observatory";FAIRsharing +dedup::3ac1e64685c86f359a52909da76fa0a8;re3data::r3d100013358;r3d100013358;"Infectious Diseases Data Observatory";re3data +dedup::3ae279b054a2f25dc09513a25efb536c;roar::15541;15541;"Repositorio Institucional de la Universidad Nacional de Ingeniería (RIBUNI)";roar +dedup::3ae279b054a2f25dc09513a25efb536c;opendoar::9428;9428;"repositorio institucional de la universidad nacional de ingeniería";OpenDOAR +dedup::3b0dd1c2073c11e0c49e3f7d8da24b90;opendoar::1740;1740;"försvarshögskolan";OpenDOAR +dedup::3b0dd1c2073c11e0c49e3f7d8da24b90;roar::2554;2554;"Försvarshögskolan";roar +dedup::3b4ac9cece11d9bf33eef15ec8f08e8c;opendoar::1507;1507;"tropmed central antwerp";OpenDOAR +dedup::3b4ac9cece11d9bf33eef15ec8f08e8c;roar::1307;1307;"TropMed Central Antwerp";roar +dedup::3b59e8b84802a25ca2458a8d74d3a309;re3data::r3d100012955;r3d100012955;"Research Data Unipd";re3data +dedup::3b59e8b84802a25ca2458a8d74d3a309;opendoar::4363;4363;"research data unipd";OpenDOAR +dedup::3b74fa6df5b83fe53614bc7b3ce3bd90;opendoar::4732;4732;"refubium";OpenDOAR +dedup::3b74fa6df5b83fe53614bc7b3ce3bd90;re3data::r3d100013519;r3d100013519;"Refubium";re3data +dedup::3b8ba9d914e9bc66da32074bfa55471c;opendoar::1345;1345;"chopin early editions";OpenDOAR +dedup::3b8ba9d914e9bc66da32074bfa55471c;roar::1597;1597;"Chopin Early Editions";roar +dedup::3b91a25d8ce63f3b645e8c3652d1eeab;re3data::r3d100013298;r3d100013298;"Coronavirus Antiviral Research Database";re3data +dedup::3b91a25d8ce63f3b645e8c3652d1eeab;https://fairsharing.org/10.25504/FAIRsharing.ec45c4;2917;"Coronavirus Antiviral Research Database";FAIRsharing +dedup::3bd0b1a53fa0e03d45e69f1565919288;roar::5552;5552;"Archaeology Data Service";roar +dedup::3bd0b1a53fa0e03d45e69f1565919288;opendoar::1578;1578;"archaeology data service";OpenDOAR +dedup::3bd0b1a53fa0e03d45e69f1565919288;https://fairsharing.org/10.25504/FAIRsharing.hm1mfg;2504;"Archaeology Data Service";FAIRsharing +dedup::3bd0b1a53fa0e03d45e69f1565919288;re3data::r3d100000006;r3d100000006;"Archaeology Data Service";re3data +dedup::3bd907fb962b2bf007205c9cf0dd6619;roar::5306;5306;"Biblioteca Digital de la Biblioteca Nacional del Maestro";roar +dedup::3bd907fb962b2bf007205c9cf0dd6619;opendoar::2033;2033;"biblioteca digital de la biblioteca nacional de maestros";OpenDOAR +dedup::3c214a8a51205113023628c5b533c6b6;opendoar::4701;4701;"repositorio geofísico nacional";OpenDOAR +dedup::3c214a8a51205113023628c5b533c6b6;roar::15071;15071;"Repositorio Geofísico Nacional";roar +dedup::3c4cc137cd7c8a2570369b1c79cbd2df;roar::16178;16178;"Çağ University Institutional Repository";roar +dedup::3c4cc137cd7c8a2570369b1c79cbd2df;roar::15264;15264;"Çağ University Institutional Repository";roar +dedup::3c4cc137cd7c8a2570369b1c79cbd2df;opendoar::4727;4727;"çağ university institutional repository";OpenDOAR +dedup::3c4e66ec037cf6dda0a742fce9601fc5;opendoar::1282;1282;"metropolitan travel survey archive";OpenDOAR +dedup::3c4e66ec037cf6dda0a742fce9601fc5;roar::4727;4727;"Metropolitan Travel Survey Archive";roar +dedup::3c4e66ec037cf6dda0a742fce9601fc5;re3data::r3d100011219;r3d100011219;"Metropolitan Travel Survey Archive";re3data +dedup::3c636c13bcb414194132fa3c3165cd10;roar::5037;5037;"武庫川女子大学リポジトリ(学術成果コレクション) Mukogawa Women's University Repository";roar +dedup::3c636c13bcb414194132fa3c3165cd10;roar::3286;3286;"Mukogawa Women’s University Repository";roar +dedup::3c7f58114c8e39242cb987585cfbe86c;https://fairsharing.org/10.25504/FAIRsharing.vkr57k;2097;"GWAS Central";FAIRsharing +dedup::3c7f58114c8e39242cb987585cfbe86c;re3data::r3d100010565;r3d100010565;"GWAS Central";re3data +dedup::3c8587572e3f11babbfb2b59821f2851;roar::5254;5254;"IUB Library Digital Repository";roar +dedup::3c8587572e3f11babbfb2b59821f2851;opendoar::2481;2481;"iub library digital repository";OpenDOAR +dedup::3ca0a15ae2cf6a6695ec598c7d6140cd;roar::3572;3572;"Bogor Agricultural University Repository";roar +dedup::3ca0a15ae2cf6a6695ec598c7d6140cd;opendoar::2049;2049;"bogor agricultural university repository";OpenDOAR +dedup::3cbd67892bf30573d7c7ae3013d2b91a;opendoar::3490;3490;"moi university institutional repository";OpenDOAR +dedup::3cbd67892bf30573d7c7ae3013d2b91a;roar::10366;10366;"Moi University Institutional Repository";roar +dedup::3cd092ac14fdc3fc038d00389a214b3a;https://fairsharing.org/fairsharing_records/3167;3167;"UNdata";FAIRsharing +dedup::3cd092ac14fdc3fc038d00389a214b3a;re3data::r3d100010762;r3d100010762;"UNdata";re3data +dedup::3cf2c4dcc05abf9c0ed9ba6363517a35;opendoar::4325;4325;"hal - upec / upem";OpenDOAR +dedup::3cf2c4dcc05abf9c0ed9ba6363517a35;roar::15462;15462;"HAL UPEC-UPEM";roar +dedup::3cf9d51824162ece74ae70b7c7bf74db;roar::14772;14772;"Balıkesir University Institutional Repository";roar +dedup::3cf9d51824162ece74ae70b7c7bf74db;opendoar::4609;4609;"balıkesir university institutional repository";OpenDOAR +dedup::3d12aeb30e6552941a53f9c128b12c54;roar::1104;1104;"Research Findings Register";roar +dedup::3d12aeb30e6552941a53f9c128b12c54;opendoar::542;542;"research findings register";OpenDOAR +dedup::3d1c2e26c7890f43b0d8f19b69fd041b;opendoar::2569;2569;"bard digital commons";OpenDOAR +dedup::3d1c2e26c7890f43b0d8f19b69fd041b;roar::5956;5956;"Bard Digital Commons";roar +dedup::3d3ec781dfabc940d0a6c6aa51b53d1b;roar::5051;5051;"Biblioteca Digital Real Academia de la Historia";roar +dedup::3d3ec781dfabc940d0a6c6aa51b53d1b;roar::4442;4442;"Biblioteca Digital Real Academia de la Historia";roar +dedup::3d3ec781dfabc940d0a6c6aa51b53d1b;opendoar::2447;2447;"biblioteca digital real academia de la historia";OpenDOAR +dedup::3d406896f87e8b5595b332a6768ee423;opendoar::1262;1262;"policy archive";OpenDOAR +dedup::3d406896f87e8b5595b332a6768ee423;roar::1018;1018;"PolicyArchive";roar +dedup::3d4673f728376c94f863e44fb3256955;https://fairsharing.org/10.25504/FAIRsharing.v448pt;2108;"eCrystals";FAIRsharing +dedup::3d4673f728376c94f863e44fb3256955;re3data::r3d100010057;r3d100010057;"eCrystals";re3data +dedup::3d8597a66b0339de065edf5100cd0bab;https://fairsharing.org/fairsharing_records/3211;3211;"MORPHYLL";FAIRsharing +dedup::3d8597a66b0339de065edf5100cd0bab;re3data::r3d100012278;r3d100012278;"MORPHYLL";re3data +dedup::3d935bde5fba1fb462af3f9ae600695c;roar::4136;4136;"Elbląska Biblioteka Cyfrowa (Elbląg Digital Library)";roar +dedup::3d935bde5fba1fb462af3f9ae600695c;opendoar::2241;2241;"elbląska biblioteka cyfrowa (elbląg digital library)";OpenDOAR +dedup::3dbf827780e4472f484cb16b51c192dd;re3data::r3d100013305;r3d100013305;"Facebook Data for Good";re3data +dedup::3dbf827780e4472f484cb16b51c192dd;https://fairsharing.org/fairsharing_records/2941;2941;"Facebook Data for Good";FAIRsharing +dedup::3dc704386da3b72d05962c6e0b695391;opendoar::2744;2744;"repositório institucional da fundação joão pinheiro";OpenDOAR +dedup::3dc704386da3b72d05962c6e0b695391;roar::7117;7117;"Repositório Institucional da Fundação João Pinheiro";roar +dedup::3dd356c8d39b56260c87abc8effe3001;roar::8102;8102;"Plymouth Marine Science Electronic Archive (PlyMSEA)";roar +dedup::3dd356c8d39b56260c87abc8effe3001;opendoar::3572;3572;"plymouth marine science electronic archive (plymea)";OpenDOAR +dedup::3de1bc1c1179e4fd4b6696b2aa98dc66;opendoar::1830;1830;"i-shou university institutional repository";OpenDOAR +dedup::3de1bc1c1179e4fd4b6696b2aa98dc66;roar::2810;2810;"I-Shou University Institutional Repository";roar +dedup::3de1bc1c1179e4fd4b6696b2aa98dc66;roar::2787;2787;"I-Shou University Institutional Repository";roar +dedup::3de1bc1c1179e4fd4b6696b2aa98dc66;roar::2788;2788;"I-Shou University Institutional Repository";roar +dedup::3de7e996361653a4cebcf17c5fffe1c9;opendoar::2560;2560;"national taipei university of technology institutional repository";OpenDOAR +dedup::3de7e996361653a4cebcf17c5fffe1c9;roar::5890;5890;"National Taipei University of Technology Institutional Repository";roar +dedup::3df16da2593743a88d5804ab412050f8;https://fairsharing.org/10.25504/FAIRsharing.j7esqq;1589;"GeneDB";FAIRsharing +dedup::3df16da2593743a88d5804ab412050f8;re3data::r3d100010626;r3d100010626;"GeneDB";re3data +dedup::3dfff4de65f5d8846d65421b7c6accde;re3data::r3d100011793;r3d100011793;"ASTER Volcano Archive";re3data +dedup::3dfff4de65f5d8846d65421b7c6accde;https://fairsharing.org/fairsharing_records/2800;2800;"Aster Volcanic Archive";FAIRsharing +dedup::3e3b75f1fe2cb0b62372b783b30c2918;roar::2622;2622;"Aberdeen University Research Archive";roar +dedup::3e3b75f1fe2cb0b62372b783b30c2918;opendoar::1767;1767;"aberdeen university research archive";OpenDOAR +dedup::3e7c90ce2f0b91db51b247eb96dcd1df;https://fairsharing.org/10.25504/FAIRsharing.1sfhp3;2511;"Donders Repository";FAIRsharing +dedup::3e7c90ce2f0b91db51b247eb96dcd1df;re3data::r3d100012701;r3d100012701;"Donders Repository";re3data +dedup::3e7f5e5cb66c463f933025d0147090c0;roar::5531;5531;"Biblioteca Virtual del Patrimonio Bibliográfico (Virtual Library of Bibliographical Heritage)";roar +dedup::3e7f5e5cb66c463f933025d0147090c0;opendoar::1232;1232;"biblioteca virtual del patrimonio bibliográfico (virtual library of bibliographical heritage)";OpenDOAR +dedup::3ea1504a376dafd8ca1da11977f5446b;re3data::r3d100010480;r3d100010480;"COSYNA Data web portal";re3data +dedup::3ea1504a376dafd8ca1da11977f5446b;https://fairsharing.org/fairsharing_records/3042;3042;"COSYNA data web portal";FAIRsharing +dedup::3eac3e9bcd43aeed795b351c55fc7942;roar::12453;12453;"Lumieres - Repositorio institucional Universidad de América: Home";roar +dedup::3eac3e9bcd43aeed795b351c55fc7942;roar::11933;11933;"Lumieres - Repositorio institucional Universidad de América: Home";roar +dedup::3ec8dd17b74d7af0628c6cd486465aeb;opendoar::10097;10097;"repositorio del instituto tecnológico de la producción - itp";OpenDOAR +dedup::3ec8dd17b74d7af0628c6cd486465aeb;roar::17013;17013;"Repositorio del Instituto Tecnológico de la Producción - ITP";roar +dedup::3ed00e01dd7f2d05ce921b12137a983e;https://fairsharing.org/10.25504/FAIRsharing.ex3fqk;1807;"Plant Transcription Factor Database";FAIRsharing +dedup::3ed00e01dd7f2d05ce921b12137a983e;re3data::r3d100011301;r3d100011301;"Plant Transcription Factor Database";re3data +dedup::3edb0e0d204d916ebfe2cde1db633d86;roar::4790;4790;"University of Limpopo";roar +dedup::3edb0e0d204d916ebfe2cde1db633d86;opendoar::1837;1837;"university of limpopo";OpenDOAR +dedup::3f12122018bd16e4c9fae3e16168d70a;opendoar::3913;3913;"manancial - repositório digital da ufsm";OpenDOAR +dedup::3f12122018bd16e4c9fae3e16168d70a;roar::12937;12937;"Manancial - Repositório Digital da UFSM";roar +dedup::3f2b49b82b7ac86632ece201861392bc;roar::10505;10505;"Electronic Institutional Repository of Admiral Makarov National University of Shipbuilding";roar +dedup::3f2b49b82b7ac86632ece201861392bc;opendoar::2901;2901;"electronic institutional repository of admiral makarov national university of shipbuilding";OpenDOAR +dedup::3f7e99738c93b1cf8f7c11be3c877b3d;roar::5449;5449;"S@L: Scholarship at Lesley";roar +dedup::3f7e99738c93b1cf8f7c11be3c877b3d;roar::5072;5072;"S@L: Scholarship at Lesley";roar +dedup::3f9b463ec419e36a9b85ccd4ae4648e4;opendoar::234;234;"openarchive@cbs";OpenDOAR +dedup::3f9b463ec419e36a9b85ccd4ae4648e4;roar::968;968;"OpenArchive@CBS";roar +dedup::3f9f365624099f64210a2084513fdfa2;re3data::r3d100010273;r3d100010273;"Marine Geoscience Data System";re3data +dedup::3f9f365624099f64210a2084513fdfa2;https://fairsharing.org/10.25504/FAIRsharing.9enwm8;2425;"Marine Geoscience Data System";FAIRsharing +dedup::3fbd9d6f3509961fd3e8ecbc78a4c118;roar::6694;6694;"Opus: Research & Creativity at IPFW ";roar +dedup::3fbd9d6f3509961fd3e8ecbc78a4c118;roar::3390;3390;"Opus: Research & Creativity at IPFW";roar +dedup::401295eb83c9fa3a90922293a10f0677;opendoar::3971;3971;"chinaxiv";OpenDOAR +dedup::401295eb83c9fa3a90922293a10f0677;roar::12556;12556;"ChinaXiv";roar +dedup::4023fa7bf40559b6991366770bdf4376;opendoar::3761;3761;"repositorio institucional digital de la universidad católica sedes sapientiae";OpenDOAR +dedup::4023fa7bf40559b6991366770bdf4376;roar::11907;11907;"Repositorio Institucional Digital de la Universidad Católica Sedes Sapientiae";roar +dedup::4024430eba865988254d0614e62c02b3;roar::4994;4994;"Indian Institute of Management Kozhikode Digital Library";roar +dedup::4024430eba865988254d0614e62c02b3;opendoar::2283;2283;"indian institute of management kozhikode digital library";OpenDOAR +dedup::403f0ba88d2ae13de4b1d6424186f3ae;opendoar::3905;3905;"cput electronic theses and dissertations repository";OpenDOAR +dedup::403f0ba88d2ae13de4b1d6424186f3ae;roar::12841;12841;"CPUT Electronic Theses and Dissertations Repository";roar +dedup::4051eacc338a5b458d4bffde17db6ca1;opendoar::2544;2544;"material properties open database";OpenDOAR +dedup::4051eacc338a5b458d4bffde17db6ca1;roar::5745;5745;"Material Properties Open Database";roar +dedup::407fdde717f7d35a4f22199e2ce3c167;https://fairsharing.org/10.25504/FAIRsharing.155022;3123;"Historical Climate Data, Canada";FAIRsharing +dedup::407fdde717f7d35a4f22199e2ce3c167;re3data::r3d100010210;r3d100010210;"Historical Climate Data Canada";re3data +dedup::4088ce2d2fc30148c264a623482c338e;roar::15099;15099;"Repositorio Institucional UTEC";roar +dedup::4088ce2d2fc30148c264a623482c338e;opendoar::4822;4822;"repositorio institucional utec";OpenDOAR +dedup::40899c5fb3f19a6551965d839a8f069f;roar::15496;15496;"Memorias de la Patagonia Austral · koluel · koluel";roar +dedup::40899c5fb3f19a6551965d839a8f069f;roar::15494;15494;"Memorias de la Patagonia Austral · koluel · koluel";roar +dedup::408eb4f1c5e45b2269ff4ad07d6ada0a;re3data::r3d100012823;r3d100012823;"Vivli";re3data +dedup::408eb4f1c5e45b2269ff4ad07d6ada0a;https://fairsharing.org/10.25504/FAIRsharing.uovQrT;2719;"Vivli";FAIRsharing +dedup::40a927701d10429e26c486f4de938a3c;roar::2387;2387;"National Science Digital Library";roar +dedup::40a927701d10429e26c486f4de938a3c;opendoar::826;826;"national science digital library";OpenDOAR +dedup::40acec5bd2ab6d3082715d6e20dc8580;opendoar::3856;3856;"bonndoc – der publikationsserver der universität bonn";OpenDOAR +dedup::40acec5bd2ab6d3082715d6e20dc8580;roar::12247;12247;"bonndoc - Der Publikationsserver der Universität Bonn";roar +dedup::40b34190cd8825085a10350ff5cfe381;roar::5431;5431;"Digital Assets Repository";roar +dedup::40b34190cd8825085a10350ff5cfe381;opendoar::1265;1265;"digital assets repository";OpenDOAR +dedup::412ac4fcc2ce2dfc8394bfdbf0884ae4;roar::5656;5656;"ScholarShip";roar +dedup::412ac4fcc2ce2dfc8394bfdbf0884ae4;opendoar::2516;2516;"scholarship";OpenDOAR +dedup::414cb4a405560d0cd90bd2a6f1985a54;https://fairsharing.org/10.25504/FAIRsharing.tyyn81;1890;"Health Canada Drug Product Database";FAIRsharing +dedup::414cb4a405560d0cd90bd2a6f1985a54;re3data::r3d100012754;r3d100012754;"Health Canada Drug Product Database";re3data +dedup::41623b73f7c1b34e5206f87d4514356e;opendoar::309;309;"upcommons - treballs acadèmics upc";OpenDOAR +dedup::41623b73f7c1b34e5206f87d4514356e;roar::1462;1462;"UPCommons - Treballs acadèmics UPC";roar +dedup::416c529d68cbf3e735c15f52b807995d;opendoar::1724;1724;"open thesis";OpenDOAR +dedup::416c529d68cbf3e735c15f52b807995d;roar::2490;2490;"Open Thesis";roar +dedup::418a67de0d1cf397725311fdee3e0313;https://fairsharing.org/fairsharing_records/3089;3089;"IOW Data Portal";FAIRsharing +dedup::418a67de0d1cf397725311fdee3e0313;re3data::r3d100012937;r3d100012937;"IOW Data Portal";re3data +dedup::419eb0ed5c66f3a95af4fead8d1b8442;re3data::r3d100012351;r3d100012351;"Hardwood Genomics Project";re3data +dedup::419eb0ed5c66f3a95af4fead8d1b8442;https://fairsharing.org/10.25504/FAIRsharing.srgkaf;2439;"Hardwood Genomics Project";FAIRsharing +dedup::41b4ed5da1aafca001e0cf0559dbf7ad;roar::5687;5687;"Borneo University Repository";roar +dedup::41b4ed5da1aafca001e0cf0559dbf7ad;roar::5157;5157;"Borneo University Repository";roar +dedup::41b4ed5da1aafca001e0cf0559dbf7ad;opendoar::2465;2465;"borneo university repository";OpenDOAR +dedup::41c4213d180ed61a7798a5e0b50fae54;roar::15646;15646;"IBS Publications Repository";roar +dedup::41c4213d180ed61a7798a5e0b50fae54;roar::11266;11266;"IBS Publications Repository(기초과학연구원)";roar +dedup::41dd029c429dd517e2e296cea97eda99;https://fairsharing.org/10.25504/FAIRsharing.XO6ppp;2975;"EBRAINS";FAIRsharing +dedup::41dd029c429dd517e2e296cea97eda99;re3data::r3d100013325;r3d100013325;"EBRAINS";re3data +dedup::41e1afba938d572b445800ee29b77274;roar::2830;2830;"Siberian Federal University Digital Repository";roar +dedup::41e1afba938d572b445800ee29b77274;opendoar::1841;1841;"siberian federal university digital repository";OpenDOAR +dedup::4206fa18cb9354505203262b8d6c0f35;https://fairsharing.org/10.25504/FAIRsharing.9b7wvk;1875;"STRING";FAIRsharing +dedup::4206fa18cb9354505203262b8d6c0f35;re3data::r3d100010604;r3d100010604;"STRING";re3data +dedup::423282cb41ecc3eb34812cccd84057cf;roar::7377;7377;"HAL - Audencia Group";roar +dedup::423282cb41ecc3eb34812cccd84057cf;opendoar::3059;3059;"hal - audencia group";OpenDOAR +dedup::42691e5956d510c5621e15ec31a6ba7d;https://fairsharing.org/10.25504/FAIRsharing.92dt9d;2128;"ProteomeXchange";FAIRsharing +dedup::42691e5956d510c5621e15ec31a6ba7d;re3data::r3d100010692;r3d100010692;"ProteomeXchange";re3data +dedup::4288009b142dfdee0687cd79b9ccc723;roar::4997;4997;"Bulgarian OpenAIRE Repository";roar +dedup::4288009b142dfdee0687cd79b9ccc723;opendoar::2286;2286;"bulgarian openaire repository";OpenDOAR +dedup::4297bba6a2a833093489aa87092a21eb;opendoar::362;362;"university of southern queensland eprints";OpenDOAR +dedup::4297bba6a2a833093489aa87092a21eb;roar::1424;1424;"University of Southern Queensland ePrints";roar +dedup::42d5f6ad3edb821bfebab21840de0426;opendoar::218;218;"multimedia online archiv chemnitz";OpenDOAR +dedup::42d5f6ad3edb821bfebab21840de0426;roar::5489;5489;"Multimedia ONline ARchiv CHemnitz";roar +dedup::42d8b3d3c295ef0d98377965c75f7767;opendoar::4066;4066;"digital repository of kazguu university";OpenDOAR +dedup::42d8b3d3c295ef0d98377965c75f7767;roar::13507;13507;"Digital repository of KAZGUU University";roar +dedup::4308eec01c32cbee1bab5c3e8c1e2663;opendoar::3087;3087;"landmark university repository";OpenDOAR +dedup::4308eec01c32cbee1bab5c3e8c1e2663;roar::8504;8504;"Landmark University Repository";roar +dedup::4308eec01c32cbee1bab5c3e8c1e2663;opendoar::4500;4500;"landmark university repository";OpenDOAR +dedup::431ace5b8146dc4ccf39761b86612962;roar::17455;17455;"YÖK Açık Bilim - CoHE Open Science";roar +dedup::431ace5b8146dc4ccf39761b86612962;opendoar::10208;10208;"yök açık bilim - cohe open science";OpenDOAR +dedup::431b2551be102a23157233d74abae912;roar::539;539;"Estudo Geral";roar +dedup::431b2551be102a23157233d74abae912;roar::3111;3111;"Estudo Geral";roar +dedup::431b2551be102a23157233d74abae912;roar::2945;2945;"Estudo Geral";roar +dedup::431b2551be102a23157233d74abae912;opendoar::1271;1271;"estudo geral";OpenDOAR +dedup::43388a35b4c35502d5abf18ee1f9bf6c;roar::7483;7483;"CERIST DL";roar +dedup::43388a35b4c35502d5abf18ee1f9bf6c;roar::7498;7498;"CERIST DL";roar +dedup::4352e5b889bc7a6eca38f5cd1d91b5dc;opendoar::1247;1247;"atatürk üniversitesi açık arşivi";OpenDOAR +dedup::4352e5b889bc7a6eca38f5cd1d91b5dc;roar::95;95;"Atatürk Üniversitesi Açık Arşivi";roar +dedup::435ac789dae8156764e5ff0334bc549f;roar::10021;10021;"Joetsu University of Education Repository";roar +dedup::435ac789dae8156764e5ff0334bc549f;opendoar::1903;1903;"joetsu university of education repository";OpenDOAR +dedup::435f2a4e7338737d3d5cea104c8a8811;roar::2556;2556;"Nordic Africa Institute";roar +dedup::435f2a4e7338737d3d5cea104c8a8811;opendoar::1748;1748;"nordic africa institute";OpenDOAR +dedup::4374feb0d7a8d7c3cd1435ca40b12eba;opendoar::1833;1833;"fukushima medical university repository";OpenDOAR +dedup::4374feb0d7a8d7c3cd1435ca40b12eba;roar::2806;2806;"Fukushima Medical University Repository = 福島県立医科大学学術成果リポジトリ";roar +dedup::437a6001006944b8deeac9c3db931158;roar::13180;13180;"Depósito Digital e-UCJC";roar +dedup::437a6001006944b8deeac9c3db931158;opendoar::3989;3989;"depósito digital e-ucjc";OpenDOAR +dedup::4382b61e8fbd41a9783e8693186277cf;roar::17564;17564;"Repositorio Institucional UPN";roar +dedup::4382b61e8fbd41a9783e8693186277cf;opendoar::1873;1873;"repositorio institucional upn";OpenDOAR +dedup::43a1bef87ac6c22cfe7e59234fd24d7d;roar::7528;7528;"Digital - Repository UMRI";roar +dedup::43a1bef87ac6c22cfe7e59234fd24d7d;roar::6108;6108;"Digital - Repository UMRI";roar +dedup::43a708e2bd02dffb0ea365c158b811b5;opendoar::10032;10032;"abdullah gül university institutional repository";OpenDOAR +dedup::43a708e2bd02dffb0ea365c158b811b5;roar::16742;16742;"Abdullah Gül University Institutional Repository";roar +dedup::43b12a849681214bd9fedc7fc97fcc76;roar::16401;16401;"OpenMETU";roar +dedup::43b12a849681214bd9fedc7fc97fcc76;opendoar::9954;9954;"openmetu";OpenDOAR +dedup::43d78691de75b53c1c81cffc1e9d9341;https://fairsharing.org/10.25504/FAIRsharing.63pjQU;3158;"National River Flow Archive";FAIRsharing +dedup::43d78691de75b53c1c81cffc1e9d9341;re3data::r3d100012554;r3d100012554;"National River Flow Archive";re3data +dedup::43e1bd796f6ac2fb39fb0153bed246db;https://fairsharing.org/10.25504/FAIRsharing.6AmTXC;2758;"Biodiversity Exploratories Information System";FAIRsharing +dedup::43e1bd796f6ac2fb39fb0153bed246db;re3data::r3d100012058;r3d100012058;"Biodiversity Exploratories Information System";re3data +dedup::440182e7beaedfd621ebd2581cee1e23;opendoar::2425;2425;"south ural state university repository (электронный архив юургу)";OpenDOAR +dedup::440182e7beaedfd621ebd2581cee1e23;roar::4815;4815;"South Ural State University Repository (Электронный архив ЮУрГУ)";roar +dedup::44285fafa3304a9f327290fe1e233576;roar::5651;5651;"Wellesley College Digital Scholarship and Archive";roar +dedup::44285fafa3304a9f327290fe1e233576;opendoar::4938;4938;"wellesley college digital scholarship and archive";OpenDOAR +dedup::4429e3a1ebf03de81b35af80c8d39280;roar::4446;4446;"HAL-HCL";roar +dedup::4429e3a1ebf03de81b35af80c8d39280;opendoar::2345;2345;"hal-hcl";OpenDOAR +dedup::443ee9b5e807388cf71a0237e15cd1a4;roar::1139;1139;"RUA - Repositorio Institucional de la Universidad de Alicante";roar +dedup::443ee9b5e807388cf71a0237e15cd1a4;roar::5628;5628;"Repositorio Institucional de la Universidad de Alicante";roar +dedup::44459b54ed2ab805834ffbe7548d1ad8;opendoar::2338;2338;"bibloteca para la persona (library for the person)";OpenDOAR +dedup::44459b54ed2ab805834ffbe7548d1ad8;roar::4346;4346;"Bibloteca para la Persona (Library for the Person)";roar +dedup::44485e792d94e704c14aad8fdad994c2;roar::5751;5751;"Predicted Crystallography Open Database";roar +dedup::44485e792d94e704c14aad8fdad994c2;opendoar::2543;2543;"predicted crystallography open database";OpenDOAR +dedup::4451020d380158f45bb9235e2e098038;opendoar::464;464;"electronic thesis & dissertations - brigham young university";OpenDOAR +dedup::4451020d380158f45bb9235e2e098038;roar::4781;4781;"Electronic Thesis & Dissertations - Brigham Young University";roar +dedup::4453613ecd027f0623626428cf70308e;opendoar::10160;10160;"rivec - repository of the institute for vegetable crops";OpenDOAR +dedup::4453613ecd027f0623626428cf70308e;roar::17220;17220;"RIVeC - Repository of the Institute for Vegetable Crops";roar +dedup::44b36066b84489851cd6db628e6ac409;opendoar::956;956;"open research exeter";OpenDOAR +dedup::44b36066b84489851cd6db628e6ac409;re3data::r3d100011202;r3d100011202;"Open Research Exeter";re3data +dedup::44e1f142e26f3a5fb3a12b0622dec339;https://fairsharing.org/10.25504/FAIRsharing.cUG0cV;2849;"DBpedia";FAIRsharing +dedup::44e1f142e26f3a5fb3a12b0622dec339;re3data::r3d100011713;r3d100011713;"DBpedia";re3data +dedup::44f9be50310798154a310e21fe95350c;roar::5221;5221;"OPUS-Datenbank - Universität Augsburg";roar +dedup::44f9be50310798154a310e21fe95350c;roar::2328;2328;"OPUS-Datenbank - Universität Augsburg";roar +dedup::451e54aae938f42c8147d7d86bb68178;roar::13456;13456;"Stritch Shares";roar +dedup::451e54aae938f42c8147d7d86bb68178;opendoar::9121;9121;"stritch shares";OpenDOAR +dedup::453ae69d7019e804ef01cc50fd71f60d;roar::13539;13539;"OAK: Obihiro University Archives of Knowledge";roar +dedup::453ae69d7019e804ef01cc50fd71f60d;opendoar::1034;1034;"oak: obihiro university archives of knowledge";OpenDOAR +dedup::45622943994633b08755494be75d9118;opendoar::2151;2151;"repositório institucional da universidade federal de sergipe";OpenDOAR +dedup::45622943994633b08755494be75d9118;opendoar::4642;4642;"repositório institucional da universidade federal de sergipe (riufs)";OpenDOAR +dedup::45622943994633b08755494be75d9118;roar::6485;6485;"Repositório Institucional da Universidade Federal de Sergipe (RIUFS)";roar +dedup::457f4b316853b2afe9395718a94092bf;opendoar::1821;1821;"archivio aperto di ateneo";OpenDOAR +dedup::457f4b316853b2afe9395718a94092bf;roar::2786;2786;"Archivio Aperto di Ateneo";roar +dedup::45a11ec9ccf203041d2f122d6fcf44f7;opendoar::4242;4242;"repositorio universidad simón bolívar";OpenDOAR +dedup::45a11ec9ccf203041d2f122d6fcf44f7;roar::14371;14371;"Repositorio Universidad Simón Bolívar";roar +dedup::45d003b425136f602aad169d176bb0e4;opendoar::203;203;"librarians digital library";OpenDOAR +dedup::45d003b425136f602aad169d176bb0e4;roar::800;800;"Librarians' Digital Library";roar +dedup::45e14757b089ac0752739ac3ef5cdafc;opendoar::4400;4400;"repositorium des wissensportals lsbti²";OpenDOAR +dedup::45e14757b089ac0752739ac3ef5cdafc;roar::13826;13826;"Repositorium des Wissensportals LSBTI²";roar +dedup::45f59d795245613a52c7740cc40bd6ef;roar::15889;15889;"Repositorio Institucional SENAMHI";roar +dedup::45f59d795245613a52c7740cc40bd6ef;roar::15219;15219;"Repositorio Institucional SENAMHI";roar +dedup::4610fdf9d0275aac4d0b022dbfd0d9e0;opendoar::504;504;"iowa publications online";OpenDOAR +dedup::4610fdf9d0275aac4d0b022dbfd0d9e0;roar::705;705;"Iowa Publications Online";roar +dedup::46127deaccd2dd375701be661ccf1cab;opendoar::2177;2177;"scholarworks @ georgia state university";OpenDOAR +dedup::46127deaccd2dd375701be661ccf1cab;roar::3795;3795;"ScholarWorks @ Georgia State University";roar +dedup::46235976d7c48c31c861736357932756;roar::16042;16042;"Işık University Institutional Repository";roar +dedup::46235976d7c48c31c861736357932756;roar::15268;15268;"Işık University Institutional Repository";roar +dedup::463ea4e90dde8ed5d001faf434bfb320;re3data::r3d100013427;r3d100013427;"Repositorio Institucional de la Universidad de Burgos";re3data +dedup::463ea4e90dde8ed5d001faf434bfb320;opendoar::1527;1527;"repositorio institucional de la universidad de burgos";OpenDOAR +dedup::4653be7dc7a8e73c85e4b3a4329d06d1;roar::9034;9034;"HAL-Lille3";roar +dedup::4653be7dc7a8e73c85e4b3a4329d06d1;opendoar::3201;3201;"hal - lille 3";OpenDOAR +dedup::465d176c8bd662e3972d8752e02a117e;roar::4125;4125;"Polska Biblioteka Cyfrowa";roar +dedup::465d176c8bd662e3972d8752e02a117e;opendoar::2255;2255;"polska biblioteka cyfrowa";OpenDOAR +dedup::46661c1920b093723a0757d823301502;https://fairsharing.org/10.25504/FAIRsharing.y0df7m;2454;"Inter-university Consortium for Political and Social Research";FAIRsharing +dedup::46661c1920b093723a0757d823301502;re3data::r3d100010255;r3d100010255;"Inter-university Consortium for Political and Social Research";re3data +dedup::467ab265614788ed27370fba71dffcaf;re3data::r3d100010676;r3d100010676;"InnateDB";re3data +dedup::467ab265614788ed27370fba71dffcaf;https://fairsharing.org/10.25504/FAIRsharing.rb2drw;2053;"InnateDB";FAIRsharing +dedup::46809c698c28a4766e4f9e5ac1f90325;roar::5124;5124;"Public Digital Archive of Agnieszka Osiecka";roar +dedup::46809c698c28a4766e4f9e5ac1f90325;opendoar::2461;2461;"public digital archive of agnieszka osiecka";OpenDOAR +dedup::46809c698c28a4766e4f9e5ac1f90325;roar::5460;5460;"Public Digital Archive of Agnieszka Osiecka";roar +dedup::46a79ac3a2592b56c84026f227ae1599;https://fairsharing.org/10.25504/FAIRsharing.ejofJI;2589;"Cassavabase";FAIRsharing +dedup::46a79ac3a2592b56c84026f227ae1599;re3data::r3d100013440;r3d100013440;"Cassavabase";re3data +dedup::46a87cef8b250e41662a2e549633e9e1;roar::6102;6102;"Repositório do Hospital Prof. Doutor Fernando Fonseca";roar +dedup::46a87cef8b250e41662a2e549633e9e1;roar::2462;2462;"Repositório do Hospital Prof. Doutor Fernando Fonseca";roar +dedup::46a87cef8b250e41662a2e549633e9e1;opendoar::1715;1715;"repositório do hospital prof. doutor fernando fonseca";OpenDOAR +dedup::46d99363844e11a266e7ca4a065dd5bf;opendoar::2150;2150;"biblioteca sor juana ines de la cruz";OpenDOAR +dedup::46d99363844e11a266e7ca4a065dd5bf;roar::3808;3808;"Biblioteca Sor Juana Ines de la Cruz";roar +dedup::4703dbb8c497dee21b0fe4e2491ef7ee;roar::2412;2412;"OhmDok";roar +dedup::4703dbb8c497dee21b0fe4e2491ef7ee;opendoar::1538;1538;"ohmdok";OpenDOAR +dedup::470c9f1cf5bc81c675609583011326f7;roar::1084;1084;"Repository@NOAA";roar +dedup::470c9f1cf5bc81c675609583011326f7;opendoar::541;541;"repository@noaa";OpenDOAR +dedup::471f1b8c4dde2abed5d3b3d2fc8cb06d;roar::12499;12499;"Repository Poltekkes Kemenkes Yogyakarta";roar +dedup::471f1b8c4dde2abed5d3b3d2fc8cb06d;opendoar::3972;3972;"repository poltekkes kemenkes yogyakarta";OpenDOAR +dedup::471f1b8c4dde2abed5d3b3d2fc8cb06d;roar::12517;12517;"Repository Poltekkes Kemenkes Yogyakarta";roar +dedup::472553feae9ca446ed1a00e460ec30d8;opendoar::1205;1205;"biblioteca digital - universidad icesi";OpenDOAR +dedup::472553feae9ca446ed1a00e460ec30d8;roar::125;125;"Biblioteca Digital - Universidad Icesi";roar +dedup::476184143ad5ad4ed64f2bb878001bc5;opendoar::1548;1548;"scholarship@western";OpenDOAR +dedup::476184143ad5ad4ed64f2bb878001bc5;roar::1167;1167;"Scholarship@Western";roar +dedup::477ea08acabcc1c8b46e591aa555cc53;roar::17190;17190;"Piri Reis University Institutional Repository";roar +dedup::477ea08acabcc1c8b46e591aa555cc53;opendoar::10152;10152;"piri reis university institutional repository";OpenDOAR +dedup::47b3b2cce6abfc6fdd845c300ab388ae;opendoar::1762;1762;"berman jewish policy archive @ nyu wagner";OpenDOAR +dedup::47b3b2cce6abfc6fdd845c300ab388ae;roar::2609;2609;"Berman Jewish Policy Archive @ NYU Wagner";roar +dedup::47cd02dc3925c6ca0a27f4af4823e7c3;roar::4385;4385;"Institutional Repository of Xi'an Institute of Optics and Precision Mechanics";roar +dedup::47cd02dc3925c6ca0a27f4af4823e7c3;opendoar::2309;2309;"institutional repository of xian institute of optics and precision mechanics, cas";OpenDOAR +dedup::47cfc8b5c732b24dd1883feaf10b5fa4;opendoar::578;578;"keio associated repository of academic resources";OpenDOAR +dedup::47cfc8b5c732b24dd1883feaf10b5fa4;roar::3038;3038;"KeiO Associated Repository of Academic resources";roar +dedup::47dafade5c184a36eb820c397bafe2b4;https://fairsharing.org/10.25504/FAIRsharing.mckkb4;2207;"Worldwide Protein Data Bank";FAIRsharing +dedup::47dafade5c184a36eb820c397bafe2b4;re3data::r3d100011104;r3d100011104;"Worldwide Protein Data Bank";re3data +dedup::4817ca71f597923c22a1c792a5579a15;opendoar::8336;8336;"iwate prefectural university institutional repository";OpenDOAR +dedup::4817ca71f597923c22a1c792a5579a15;roar::9586;9586;"Iwate Prefectural University Institutional Repository";roar +dedup::481faf80ab1e5d60d43539af3beb0d82;opendoar::85;85;"digitalcommons@connecticut college";OpenDOAR +dedup::481faf80ab1e5d60d43539af3beb0d82;roar::327;327;"DigitalCommons@Connecticut College";roar +dedup::482a48d74ecec96f949844470e058835;roar::8309;8309;"Digital Commons@Georgia Southern";roar +dedup::482a48d74ecec96f949844470e058835;opendoar::8648;8648;"digital commons@georgia southern";OpenDOAR +dedup::483c4edf540cb23516d756009da2480f;opendoar::4068;4068;"a. o. kovalevsky institute of biology of the southern seas of ras open access repository";OpenDOAR +dedup::483c4edf540cb23516d756009da2480f;roar::13271;13271;"A. O. Kovalevsky Institute of Biology of the Southern Seas of RAS Open Access Repository";roar +dedup::4862ba7209c6f68b0b775e127da6be14;roar::987;987;"Organic Eprints";roar +dedup::4862ba7209c6f68b0b775e127da6be14;opendoar::245;245;"organic eprints";OpenDOAR +dedup::48685ac7b24f317b2eb6b51701e54bdb;opendoar::2250;2250;"digital library of opole";OpenDOAR +dedup::48685ac7b24f317b2eb6b51701e54bdb;roar::4132;4132;"Digital Library of Opole";roar +dedup::48685ac7b24f317b2eb6b51701e54bdb;roar::5621;5621;"Digital Library of Opole";roar +dedup::48d2d726cd331c3c00757ba3b8b7baf3;roar::1107;1107;"ResearchOnline@ND";roar +dedup::48d2d726cd331c3c00757ba3b8b7baf3;opendoar::1477;1477;"researchonline@nd";OpenDOAR +dedup::48e767b66ecff4827019d9343df6537d;re3data::r3d100012369;r3d100012369;"Code Ocean";re3data +dedup::48e767b66ecff4827019d9343df6537d;https://fairsharing.org/10.25504/FAIRsharing.thskvr;2548;"Code Ocean";FAIRsharing +dedup::4932f2307f7fe1b0b3575da757ac35fa;roar::15857;15857;"National Thematic Repository Moldova - NTR Mold-LIS";roar +dedup::4932f2307f7fe1b0b3575da757ac35fa;roar::16800;16800;"National Thematic Repository Moldova - NTR Mold-LIS";roar +dedup::496869120881cfe0273e295db0bae19f;opendoar::2348;2348;"dugifonsespecials - universitat de girona";OpenDOAR +dedup::496869120881cfe0273e295db0bae19f;roar::4465;4465;"DUGiFonsEspecials - Universitat de Girona";roar +dedup::4973fd5242a0507225f5ec558dbd2cbc;roar::9037;9037;"C-RECS (Creative Repository of Electro-Communications)";roar +dedup::4973fd5242a0507225f5ec558dbd2cbc;opendoar::3204;3204;"c-recs (creative repository of electro-communications)";OpenDOAR +dedup::49d5c4cef2c1cbd11277af8e99811843;roar::14037;14037;"Yeshiva Academic Institutional Repository";roar +dedup::49d5c4cef2c1cbd11277af8e99811843;opendoar::4373;4373;"yeshiva academic institutional repository";OpenDOAR +dedup::49dc90d4dcb46ac03b3d0687d43b1c1c;roar::3283;3283;"Tokyo Women’s Medical University-Information & Knowledge Database";roar +dedup::49dc90d4dcb46ac03b3d0687d43b1c1c;opendoar::1976;1976;"tokyo women’s medical university information & knowledge database";OpenDOAR +dedup::49e74775ca5684a5644aa6d1c16f948b;opendoar::4838;4838;"repositorio institucional de la academia diplomática del perú";OpenDOAR +dedup::49e74775ca5684a5644aa6d1c16f948b;roar::15200;15200;"Repositorio Institucional de la Academia Diplomática del Perú";roar +dedup::4a2b0e9fcb31105196c8f41a7f13ea74;roar::11780;11780;"Dspace@UCLV";roar +dedup::4a2b0e9fcb31105196c8f41a7f13ea74;opendoar::3745;3745;"dspace@uclv";OpenDOAR +dedup::4a3ac7b855d42e9010b8a438b9a5ad6a;roar::3482;3482;"Portal de Revistas Científicas Complutenses";roar +dedup::4a3ac7b855d42e9010b8a438b9a5ad6a;opendoar::1403;1403;"portal de revistas científicas complutenses";OpenDOAR +dedup::4a41e19ddef62f5a01a8c6d5cacde640;roar::5952;5952;"Repositorio de Tesis - USAT";roar +dedup::4a41e19ddef62f5a01a8c6d5cacde640;opendoar::2522;2522;"repositorio de tesis usat";OpenDOAR +dedup::4a41e19ddef62f5a01a8c6d5cacde640;roar::5697;5697;"Repositorio de Tesis USAT";roar +dedup::4a95fdb0a160e818167f975efd4d0c1a;https://fairsharing.org/10.25504/FAIRsharing.y6w78m;2152;"Coherent X-ray Imaging Data Bank";FAIRsharing +dedup::4a95fdb0a160e818167f975efd4d0c1a;re3data::r3d100011554;r3d100011554;"Coherent X-ray Imaging Data Bank";re3data +dedup::4aaa92ef5dae79ba92f43db60c777bc4;https://fairsharing.org/10.25504/FAIRsharing.q31z3g;2433;"Research Data Archive at NCAR";FAIRsharing +dedup::4aaa92ef5dae79ba92f43db60c777bc4;re3data::r3d100010050;r3d100010050;"Research Data Archive at NCAR";re3data +dedup::4ab847ae36fadc6a757603345e523107;roar::3513;3513;"UCLA - Biblioteca de Administración y Contaduría";roar +dedup::4ab847ae36fadc6a757603345e523107;opendoar::2031;2031;"ucla - biblioteca de administración y contaduría";OpenDOAR +dedup::4b06711cb7b65035efa99a1ef33de0fe;re3data::r3d100010226;r3d100010226;"Alternative Fuels Data Center";re3data +dedup::4b06711cb7b65035efa99a1ef33de0fe;https://fairsharing.org/10.25504/FAIRsharing.eef384;2974;"Alternative Fuels Data Center";FAIRsharing +dedup::4b425bdcefd89ebdfd5e34abb9460850;roar::9878;9878;"National University of Lesotho Institutional Repository";roar +dedup::4b425bdcefd89ebdfd5e34abb9460850;opendoar::2825;2825;"national university of lesotho institutional repository";OpenDOAR +dedup::4b5aa1852781d80ca7b509a4489e1d20;roar::4675;4675;"York Digital Library";roar +dedup::4b5aa1852781d80ca7b509a4489e1d20;roar::3889;3889;"York Digital Library";roar +dedup::4b5aa1852781d80ca7b509a4489e1d20;opendoar::2170;2170;"york digital library";OpenDOAR +dedup::4b5aa1852781d80ca7b509a4489e1d20;re3data::r3d100011249;r3d100011249;"York Digital Library";re3data +dedup::4b5ebd588a55d18f78fc2a846cae6f0f;opendoar::415;415;"xios theses";OpenDOAR +dedup::4b5ebd588a55d18f78fc2a846cae6f0f;roar::5521;5521;"Xios Theses";roar +dedup::4b78ac8fd82080262b331b27f7f05dda;opendoar::88;88;"dspace@mit";OpenDOAR +dedup::4b78ac8fd82080262b331b27f7f05dda;re3data::r3d100010599;r3d100010599;"DSpace@MIT";re3data +dedup::4b931d64cd79f600fafc0e99c2847b55;opendoar::1971;1971;"repositorio digital unmsm";OpenDOAR +dedup::4b931d64cd79f600fafc0e99c2847b55;roar::5522;5522;"Repositorio Digital UNMSM";roar +dedup::4bd7ade7f0a06a4009965bec5a2d029d;opendoar::3605;3605;"corpus innovationis europaensis";OpenDOAR +dedup::4bd7ade7f0a06a4009965bec5a2d029d;roar::10438;10438;"Corpus Innovationis Europaensis";roar +dedup::4bf404c3bdb17e0ff1920521aa0a2539;opendoar::1464;1464;"e-locus university of crete institutional repository";OpenDOAR +dedup::4bf404c3bdb17e0ff1920521aa0a2539;roar::2309;2309;"E-Locus - University of Crete Institutional Repository";roar +dedup::4bf404c3bdb17e0ff1920521aa0a2539;roar::4552;4552;"E-Locus - University of Crete Institutional Repository";roar +dedup::4c62628ce9d41ec8296694e80c31c82f;opendoar::4761;4761;"institutional repository of the technical university of moldova";OpenDOAR +dedup::4c62628ce9d41ec8296694e80c31c82f;roar::11541;11541;"Institutional Repository of the Technical University of Moldova (IRTUM)";roar +dedup::4c6777a3b33d9b756268c5011b0d8d48;re3data::r3d100013294;r3d100013294;"Chinese Clinical Trial Register";re3data +dedup::4c6777a3b33d9b756268c5011b0d8d48;https://fairsharing.org/fairsharing_records/2935;2935;"Chinese Clinical Trial Registry";FAIRsharing +dedup::4c67b6d7adb6ffcb6e5e40a64af11a24;roar::784;784;"Kyushu University Institutional Repository";roar +dedup::4c67b6d7adb6ffcb6e5e40a64af11a24;roar::5756;5756;"Kyushu University Institutional Repository";roar +dedup::4c6eaad0784a20019079d2021bae855d;roar::5575;5575;"Electronic archive of Poltava University of Economics and Trade";roar +dedup::4c6eaad0784a20019079d2021bae855d;opendoar::2501;2501;"(electronic archive of poltava university of economics and trade)";OpenDOAR +dedup::4c9b1979ec94ba642f15cbc31d813e96;roar::6062;6062;"Full Text Institutional Repository of the Ruđer Bošković Institute (FULIR)";roar +dedup::4c9b1979ec94ba642f15cbc31d813e96;opendoar::2584;2584;"full-text institutional repository of the ruđer bošković institute";OpenDOAR +dedup::4ccc1f73fde2bb3c65cce3f21e7453a9;roar::3080;3080;"KANAGAWA University Repository";roar +dedup::4ccc1f73fde2bb3c65cce3f21e7453a9;roar::3651;3651;"KANAGAWA University Repository(神奈川大学学術機関リポジトリ)";roar +dedup::4d0351100d348da35d2de16129adebd8;opendoar::10272;10272;"data.sciencespo";OpenDOAR +dedup::4d0351100d348da35d2de16129adebd8;https://fairsharing.org/fairsharing_records/3333;3333;"data.sciencespo";FAIRsharing +dedup::4d0351100d348da35d2de16129adebd8;re3data::r3d100013271;r3d100013271;"data.sciencespo";re3data +dedup::4d0966a10d53f5e6d87c27422d676727;re3data::r3d100013102;r3d100013102;"mediaTUM";re3data +dedup::4d0966a10d53f5e6d87c27422d676727;roar::5561;5561;"MediaTUM";roar +dedup::4d30b70b543d0bd8153375403a662bd9;re3data::r3d100013433;r3d100013433;"Bicocca Open Archive Research Data";re3data +dedup::4d30b70b543d0bd8153375403a662bd9;https://fairsharing.org/10.25504/FAIRsharing.DDotIl;3284;"Bicocca Open Archive Research Data";FAIRsharing +dedup::4d4b986c98d62881b1ec72e84b16992c;roar::10485;10485;"Repositorio Institucional Digital de la UNJBG";roar +dedup::4d4b986c98d62881b1ec72e84b16992c;opendoar::2752;2752;"repositorio institucional digital de la unjbg";OpenDOAR +dedup::4d4cc38f66b006d91f3933e52cc72100;opendoar::2208;2208;"dspace в белгу";OpenDOAR +dedup::4d4cc38f66b006d91f3933e52cc72100;roar::4032;4032;"DSpace в БелГУ";roar +dedup::4d61a71f3578418d4b3ed01536f49059;opendoar::1893;1893;"sharegeo open";OpenDOAR +dedup::4d61a71f3578418d4b3ed01536f49059;roar::3051;3051;"ShareGeo Open";roar +dedup::4d6a4af028bad0a5584e4399a1c7aaaa;opendoar::544;544;"escholarship@umms";OpenDOAR +dedup::4d6a4af028bad0a5584e4399a1c7aaaa;roar::536;536;"eScholarship@UMMS";roar +dedup::4d8369385613b5f48080d50adcc25baf;roar::5474;5474;"Architektur-Informatik";roar +dedup::4d8369385613b5f48080d50adcc25baf;opendoar::1080;1080;"architektur-informatik";OpenDOAR +dedup::4d8662b003a3af4790e931d2f0bfb1d3;opendoar::344;344;"university of pretoria electronic theses and dissertations";OpenDOAR +dedup::4d8662b003a3af4790e931d2f0bfb1d3;roar::1415;1415;"University of Pretoria Electronic Theses and Dissertations";roar +dedup::4d8e1eaa6dafa9409fb9499cc3e015df;roar::14961;14961;"BPATC Institutional Repository";roar +dedup::4d8e1eaa6dafa9409fb9499cc3e015df;opendoar::4234;4234;"bpatc institutional repository";OpenDOAR +dedup::4da9927d6abe937ba0590c544379378d;roar::3197;3197;"Red Island Repository";roar +dedup::4da9927d6abe937ba0590c544379378d;opendoar::1320;1320;"red island repository";OpenDOAR +dedup::4e1df3e38ba2e9d4a13843ddb64f9524;opendoar::3375;3375;"seikei university repository";OpenDOAR +dedup::4e1df3e38ba2e9d4a13843ddb64f9524;roar::9870;9870;"SEIKEI University Repository";roar +dedup::4e3709c25d8add2e5bb2e122104ede43;roar::6068;6068;"Digital Commons @ EMUI";roar +dedup::4e3709c25d8add2e5bb2e122104ede43;opendoar::2580;2580;"digital commons @ emui";OpenDOAR +dedup::4e663f03026d8370d46dccef24f5a3b2;opendoar::446;446;"dokumentenserver der fachhochschule münster";OpenDOAR +dedup::4e663f03026d8370d46dccef24f5a3b2;roar::375;375;" Dokumentenserver der Fachhochschule Münster";roar +dedup::4ed22e4e13a9510c3b96dfcc669dfb0e;roar::5006;5006;"DSpace @ GGSIPU";roar +dedup::4ed22e4e13a9510c3b96dfcc669dfb0e;opendoar::1539;1539;"dspace @ ggsipu";OpenDOAR +dedup::4edb05171a4028c485a1cc08bba55605;opendoar::1892;1892;"repositório saberes em gestão pública";OpenDOAR +dedup::4edb05171a4028c485a1cc08bba55605;roar::5759;5759;"Repositório Saberes em Gestão Pública";roar +dedup::4ef9e2f80252ff73e0cab129cda59095;opendoar::2370;2370;"digitale sammlungen - goethe-universität frankfurt am main";OpenDOAR +dedup::4ef9e2f80252ff73e0cab129cda59095;re3data::r3d100011183;r3d100011183;"Digitale Sammlungen, Goethe-Universität Frankfurt am Main";re3data +dedup::4ef9e2f80252ff73e0cab129cda59095;roar::4315;4315;"Digitale Sammlungen - Goethe-Universität Frankfurt am Main";roar +dedup::4ef9ed922457644db8fbe938da91d08c;re3data::r3d100010685;r3d100010685;"virus mentha";re3data +dedup::4ef9ed922457644db8fbe938da91d08c;https://fairsharing.org/10.25504/FAIRsharing.6w29qp;2223;"VirusMentha";FAIRsharing +dedup::4f2711b13c919da1fe519adb503b4f1b;roar::17051;17051;"Bursa Teknik University Institutional Repository";roar +dedup::4f2711b13c919da1fe519adb503b4f1b;opendoar::10126;10126;"bursa technical university institutional repository";OpenDOAR +dedup::4f2998eba50feeb3cc93997c1da7457f;opendoar::2590;2590;"asu digital repository";OpenDOAR +dedup::4f2998eba50feeb3cc93997c1da7457f;roar::6083;6083;"ASU Digital Repository";roar +dedup::4f2becad78b780865d4c5b17d35a712f;opendoar::2332;2332;"most digital library";OpenDOAR +dedup::4f2becad78b780865d4c5b17d35a712f;roar::4294;4294;"MOST Digital Library";roar +dedup::4f3bd35220c3c837f1e50db9dcee47f0;opendoar::757;757;"online repository - elmwood college scotland";OpenDOAR +dedup::4f3bd35220c3c837f1e50db9dcee47f0;roar::4749;4749;"Online Repository - Elmwood College Scotland";roar +dedup::4f51df0d53844cd27cf034e354d3a6e9;roar::4935;4935;"University of Chicago Library Digital Activities & Collections";roar +dedup::4f51df0d53844cd27cf034e354d3a6e9;opendoar::710;710;"university of chicago library digital activities & collections";OpenDOAR +dedup::4f6465cdc29e817362cb8c61d8ef71b6;roar::11459;11459;"Touro Scholar";roar +dedup::4f6465cdc29e817362cb8c61d8ef71b6;opendoar::4490;4490;"touro scholar";OpenDOAR +dedup::4fbab6f6bd04ada0d9b7d76e2de80754;opendoar::407;407;"caltech archives finding aids online";OpenDOAR +dedup::4fbab6f6bd04ada0d9b7d76e2de80754;roar::185;185;"Caltech Archives Finding Aids Online";roar +dedup::4fc1aaf03dd41d4daf54fcb9d05049b1;opendoar::2083;2083;"peak digital";OpenDOAR +dedup::4fc1aaf03dd41d4daf54fcb9d05049b1;roar::3643;3643;"PEAK Digital";roar +dedup::4fc4300b7ee5920007777ac842751a2f;opendoar::8959;8959;"digital commons @ assumption college";OpenDOAR +dedup::4fc4300b7ee5920007777ac842751a2f;roar::13234;13234;"Digital Commons @ Assumption College";roar +dedup::4fe5854519a4cd71e079dbad1034d675;opendoar::2036;2036;"repositório institucional rede cedes";OpenDOAR +dedup::4fe5854519a4cd71e079dbad1034d675;roar::3232;3232;"Repositório Institucional Rede CEDES";roar +dedup::4ffc9dae5b29e62b60b1883b4328c23b;opendoar::1277;1277;"biblioteca digital do senado federal";OpenDOAR +dedup::4ffc9dae5b29e62b60b1883b4328c23b;roar::132;132;"Biblioteca Digital do Senado Federal";roar +dedup::50025b862563aa8313f604f7c5a9d602;opendoar::562;562;"digital scholarship @ tennessee state university";OpenDOAR +dedup::50025b862563aa8313f604f7c5a9d602;roar::5569;5569;"Digital Scholarship @ Tennessee State University";roar +dedup::5021da410f0afcf25ddd0d7a08358fb9;roar::2993;2993;"Hwa Hsia Institutional Repository";roar +dedup::5021da410f0afcf25ddd0d7a08358fb9;opendoar::1870;1870;"hwa hsia institutional repository";OpenDOAR +dedup::502d1b8ee044dd5e57d204950a74526a;opendoar::3918;3918;"repositorio institucional usat";OpenDOAR +dedup::502d1b8ee044dd5e57d204950a74526a;roar::11781;11781;"Repositorio Institucional USAT ";roar +dedup::503277bcac1daab6d0589bf2e6eee900;re3data::r3d100013201;r3d100013201;"Reanalysis Tropopause Data Repository";re3data +dedup::503277bcac1daab6d0589bf2e6eee900;https://fairsharing.org/10.25504/FAIRsharing.c7bf1b;3105;"Reanalysis Tropopause Data Repository";FAIRsharing +dedup::503e6ca6c4c104a67ce9909c0cac9fe3;roar::7296;7296;"COllections de COrpus Oraux Numeriques (COCOON)";roar +dedup::503e6ca6c4c104a67ce9909c0cac9fe3;opendoar::2787;2787;"collections de corpus oraux numeriques (cocoon)";OpenDOAR +dedup::5046bb38553207019109dce44c0e20eb;opendoar::4847;4847;"repositorio institucional de la unsa";OpenDOAR +dedup::5046bb38553207019109dce44c0e20eb;roar::15283;15283;"Repositorio Institucional de la UNSA";roar +dedup::504e59d38f01a548ffe15fb15c2e641b;opendoar::5097;5097;"sound ideas";OpenDOAR +dedup::504e59d38f01a548ffe15fb15c2e641b;roar::4119;4119;"Sound Ideas";roar +dedup::508635fb4048e8b205ba3aa5eec764e7;re3data::r3d100013559;r3d100013559;"CORA. Repositori de Dades de Recerca";re3data +dedup::508635fb4048e8b205ba3aa5eec764e7;https://fairsharing.org/10.25504/FAIRsharing.av9fsp;3313;"CORA. Repositori de dades de Recerca";FAIRsharing +dedup::50aea5b4a56b9e7db84b7759eb01979e;roar::15435;15435;"İzmir Kavram Vocational School Institutional Repository";roar +dedup::50aea5b4a56b9e7db84b7759eb01979e;opendoar::9439;9439;"i̇zmir kavram vocational school institutional repository";OpenDOAR +dedup::50b875730ceef5495ae3fb4134a9859f;opendoar::2075;2075;"repositorio cesa";OpenDOAR +dedup::50b875730ceef5495ae3fb4134a9859f;roar::3642;3642;"Repositorio CESA";roar +dedup::50ccf57a3703a97bf5a3c97b66591f6a;re3data::r3d100010814;r3d100010814;"Database of Genomic Variants Archive";re3data +dedup::50ccf57a3703a97bf5a3c97b66591f6a;https://fairsharing.org/10.25504/FAIRsharing.txkh36;2156;"Database of Genomic Variants Archive";FAIRsharing +dedup::50ef04eb4f3b75ae3695ae95a55484e3;opendoar::10287;10287;"dr rgf - rgf repository";OpenDOAR +dedup::50ef04eb4f3b75ae3695ae95a55484e3;roar::17641;17641;"Dr RGF - RGF Repository";roar +dedup::5150cda5ef5390027476db85c6926cf8;re3data::r3d100013308;r3d100013308;"IUPHAR/BPS Guide to Pharmacology";re3data +dedup::5150cda5ef5390027476db85c6926cf8;https://fairsharing.org/10.25504/FAIRsharing.f1dv0;1933;"IUPHAR/BPS Guide to PHARMACOLOGY";FAIRsharing +dedup::51636bbe9e94cb57efddd4a8fce3e316;roar::4374;4374;"Institutional Repository of Institute of Chemistry";roar +dedup::51636bbe9e94cb57efddd4a8fce3e316;roar::4268;4268;"Institutional Repository of Institute of Chemistry";roar +dedup::51636bbe9e94cb57efddd4a8fce3e316;opendoar::2311;2311;"institutional repository of institute of chemistry, cas";OpenDOAR +dedup::516891ddd4ccb9ea21de3bcfd9caaf1d;roar::15265;15265;"Demiroğlu Bilim University Institutional Repository";roar +dedup::516891ddd4ccb9ea21de3bcfd9caaf1d;roar::16179;16179;"Demiroğlu Bilim University Institutional Repository";roar +dedup::5171c02bc3130f650481e0f161f9d9dd;opendoar::1564;1564;"ic-online";OpenDOAR +dedup::5171c02bc3130f650481e0f161f9d9dd;roar::653;653;"ic-Online";roar +dedup::5199ef3360a1a9940b9b8a5bd0302460;re3data::r3d100013487;r3d100013487;"Polish Platform of Medical Research";re3data +dedup::5199ef3360a1a9940b9b8a5bd0302460;opendoar::10049;10049;"polish platform of medical research";OpenDOAR +dedup::51bd4182f32fa108976564d020e0acab;opendoar::2117;2117;"repositório digital da universidade municipal de são caetano do sul";OpenDOAR +dedup::51bd4182f32fa108976564d020e0acab;roar::3692;3692;"Repositório Digital da Universidade Municipal de São Caetano do Sul";roar +dedup::51ccc2ce1bcce83c8c007cffa98e1a13;re3data::r3d100010338;r3d100010338;"National Biodiversity Network Atlas";re3data +dedup::51ccc2ce1bcce83c8c007cffa98e1a13;https://fairsharing.org/10.25504/FAIRsharing.p7YFEc;2818;"National Biodiversity Network Atlas";FAIRsharing +dedup::51dd13d92e5c9bd6bb9f239aee474f6f;opendoar::274;274;"saberula repositorio institucional de la universidad de los andes";OpenDOAR +dedup::51dd13d92e5c9bd6bb9f239aee474f6f;roar::1147;1147;"SABER-ULA: Repositorio Institucional de la Universidad de Los Andes";roar +dedup::51dd13d92e5c9bd6bb9f239aee474f6f;roar::13727;13727;"SaberULA Repositorio Institucional de la Universidad de Los Andes";roar +dedup::524383b0c5f11ba8ab9d93a63de8a057;opendoar::4286;4286;"klri repository";OpenDOAR +dedup::524383b0c5f11ba8ab9d93a63de8a057;roar::14409;14409;"KLRI Repository";roar +dedup::52abebb85045b4bf068b890f04e42cd1;roar::3666;3666;"Digital Library of The KARTA Center Foundation";roar +dedup::52abebb85045b4bf068b890f04e42cd1;opendoar::2096;2096;"digital library of the karta center foundation";OpenDOAR +dedup::52b193914db591444a0317fc86df129c;roar::5448;5448;"Perseus Digital Library";roar +dedup::52b193914db591444a0317fc86df129c;roar::1008;1008;"Perseus Digital Library";roar +dedup::52b193914db591444a0317fc86df129c;opendoar::631;631;"perseus digital library";OpenDOAR +dedup::5370e555cc52749b19288f0ffb8f0f63;opendoar::2656;2656;"stór";OpenDOAR +dedup::5370e555cc52749b19288f0ffb8f0f63;roar::7593;7593;"STÓR";roar +dedup::53749a663c1281d59b6209f4638358da;roar::13824;13824;"Digital Commons @ New Jersey Institute of Technology";roar +dedup::53749a663c1281d59b6209f4638358da;opendoar::8951;8951;"digital commons @ new jersey institute of technology";OpenDOAR +dedup::5393b9ac3d5fab84d63ae52ed3d91478;opendoar::2456;2456;"open knowledge repository";OpenDOAR +dedup::5393b9ac3d5fab84d63ae52ed3d91478;roar::5125;5125;"Open Knowledge Repository";roar +dedup::539c793ddc4cb875e0f8fde4bd1aea63;opendoar::9489;9489;"bayburt university institutional repository";OpenDOAR +dedup::539c793ddc4cb875e0f8fde4bd1aea63;roar::14666;14666;"Bayburt University Institutional Repository";roar +dedup::539e303c65fb1e9f5d5f6d7e5eb8816e;roar::4034;4034;"Dolnośląska Digital Library";roar +dedup::539e303c65fb1e9f5d5f6d7e5eb8816e;opendoar::2213;2213;"dolnośląska digital library";OpenDOAR +dedup::53a28a956554ab29add15c36ca823fea;opendoar::3774;3774;"kanagawa dental university repository";OpenDOAR +dedup::53a28a956554ab29add15c36ca823fea;roar::12577;12577;"Kanagawa Dental Univeristy Repository";roar +dedup::53e70ea851021c2974de4494236cc526;opendoar::509;509;"kansas state publications archival collection";OpenDOAR +dedup::53e70ea851021c2974de4494236cc526;roar::750;750;"Kansas State Publications Archival Collection";roar +dedup::541c6551fb7a1c1d9a2bc91bec71f747;opendoar::1244;1244;"centro virtual de informacion cvi iica oficina en colombia";OpenDOAR +dedup::541c6551fb7a1c1d9a2bc91bec71f747;roar::232;232;"Centro Virtual de Información IICA oficina en Colombia";roar +dedup::541f9528a129ed2db1c3676b57581abb;opendoar::1964;1964;"islandscholar";OpenDOAR +dedup::541f9528a129ed2db1c3676b57581abb;roar::3255;3255;"IslandScholar";roar +dedup::54293e84f6dae32d5657358255d73cfd;https://fairsharing.org/10.25504/FAIRsharing.ws7cgw;1726;"Influenza Research Database";FAIRsharing +dedup::54293e84f6dae32d5657358255d73cfd;re3data::r3d100011558;r3d100011558;"Influenza Research Database";re3data +dedup::545782b535cd95c6190bc9733ad4632f;opendoar::4835;4835;"repositorio institucional de la universidad esan";OpenDOAR +dedup::545782b535cd95c6190bc9733ad4632f;roar::15169;15169;"Repositorio Institucional de la Universidad ESAN";roar +dedup::545a8d6cb7ee0c8a24cd5b2f88a7a96c;opendoar::1119;1119;"openstarts";OpenDOAR +dedup::545a8d6cb7ee0c8a24cd5b2f88a7a96c;roar::4990;4990;"OpenstarTs";roar +dedup::54766d51671b50c36f10efc954268ad9;opendoar::2942;2942;"real-eod";OpenDOAR +dedup::54766d51671b50c36f10efc954268ad9;roar::7749;7749;"REAL-EOD";roar +dedup::54875b3a3b8def565801553427d531cd;roar::15761;15761;"ICI Berlin Repository";roar +dedup::54875b3a3b8def565801553427d531cd;opendoar::9522;9522;"ici berlin repository";OpenDOAR +dedup::54a363b57fa95d83a95fb9269136dbfc;roar::2585;2585;"Flacso Recursos Académicos: Repositorio Digital";roar +dedup::54a363b57fa95d83a95fb9269136dbfc;roar::2559;2559;"Flacso Recursos Académicos: Repositorio Digital";roar +dedup::54d92a447429a61ced73ecf9c3b5a141;roar::692;692;"Institutional Repository of the Freie Universität Berlin";roar +dedup::54d92a447429a61ced73ecf9c3b5a141;roar::5540;5540;"Institutional Repository of the Freie Universität Berlin";roar +dedup::55062a764ca7495ea2ed6e984e991736;opendoar::2085;2085;"wejherowo digital library";OpenDOAR +dedup::55062a764ca7495ea2ed6e984e991736;roar::3641;3641;"Wejherowo Digital Library";roar +dedup::55062a764ca7495ea2ed6e984e991736;roar::5456;5456;"Wejherowo Digital Library";roar +dedup::554de3ec0f9e6f16981a086af34ca9f6;re3data::r3d100011957;r3d100011957;"Network for the Detection of Atmospheric Composition Change";re3data +dedup::554de3ec0f9e6f16981a086af34ca9f6;https://fairsharing.org/10.25504/FAIRsharing.298d50;3133;"Network for the Detection of Atmospheric Composition Change";FAIRsharing +dedup::5557c5c3942f9ce54f66f2c340eb2466;opendoar::1044;1044;"hosei university repository";OpenDOAR +dedup::5557c5c3942f9ce54f66f2c340eb2466;roar::13988;13988;"Hosei University Repository";roar +dedup::559ded49c0ead8568ff28a0745ef9b88;re3data::r3d100012668;r3d100012668;"CottonGen";re3data +dedup::559ded49c0ead8568ff28a0745ef9b88;https://fairsharing.org/10.25504/FAIRsharing.2f668a;2573;"CottonGen";FAIRsharing +dedup::55b4c75622bc4778a7c997d5adc888b9;opendoar::9413;9413;"data.gov.uk";OpenDOAR +dedup::55b4c75622bc4778a7c997d5adc888b9;re3data::r3d100010579;r3d100010579;"DATA.GOV.UK";re3data +dedup::55bd8dc6ae73c5a8d9e0dc37b8ac51b0;roar::9129;9129;"Repositorio Institucional de la Universidad de La Laguna";roar +dedup::55bd8dc6ae73c5a8d9e0dc37b8ac51b0;opendoar::3235;3235;"repositorio institucional de la universidad de la laguna";OpenDOAR +dedup::55c9f02eb2af269898ec3c5d3c397f9c;opendoar::1706;1706;"digital innovation south africa";OpenDOAR +dedup::55c9f02eb2af269898ec3c5d3c397f9c;roar::2461;2461;"Digital Innovation South Africa";roar +dedup::55dd2a49ad6f2af3db1cf4280a5b1c00;https://fairsharing.org/10.25504/FAIRsharing.8fe1d6;2954;"Vectorborne Disease Surveillance System";FAIRsharing +dedup::55dd2a49ad6f2af3db1cf4280a5b1c00;re3data::r3d100010196;r3d100010196;"Vectorborne Disease Surveillance System";re3data +dedup::55e0f0ee7e4bd3be787c3c602cf99da1;roar::5683;5683;"Śląska Biblioteka Cyfrowa (Silesia Digital Library)";roar +dedup::55e0f0ee7e4bd3be787c3c602cf99da1;roar::5497;5497;"Śląska Biblioteka Cyfrowa (Silesia Digital Library)";roar +dedup::55e0f0ee7e4bd3be787c3c602cf99da1;opendoar::1158;1158;"śląska biblioteka cyfrowa (silesia digital library)";OpenDOAR +dedup::561d07cfea497e84add81df97e032545;https://fairsharing.org/fairsharing_records/3125;3125;"U.S. Energy Information Administration";FAIRsharing +dedup::561d07cfea497e84add81df97e032545;re3data::r3d100010227;r3d100010227;"U.S. Energy Information Administration";re3data +dedup::5665aabad5a07d1d4b94e874ea9f138f;re3data::r3d100012041;r3d100012041;"Canadian Disaster Database";re3data +dedup::5665aabad5a07d1d4b94e874ea9f138f;https://fairsharing.org/10.25504/FAIRsharing.ea287c;2804;"Canadian Disaster Database";FAIRsharing +dedup::5684ab4d191060495fc58411e7109fb2;roar::7388;7388;"BLD - Bilboko Liburutegi Digitala";roar +dedup::5684ab4d191060495fc58411e7109fb2;opendoar::2850;2850;"bld - bilboko liburutegi digitala";OpenDOAR +dedup::568a403be1eb719479d43888d86539c7;opendoar::9477;9477;"i̇stanbul medipol university institutional repository";OpenDOAR +dedup::568a403be1eb719479d43888d86539c7;roar::14977;14977;"Istanbul Medipol University Institutional Repository";roar +dedup::56a8004a71c250cdbeb36c9f8e30b862;re3data::r3d100013242;r3d100013242;"Repositorio Institucional Universidad de Antioquia";re3data +dedup::56a8004a71c250cdbeb36c9f8e30b862;opendoar::1606;1606;"repositorio institucional universidad de antioquia";OpenDOAR +dedup::56e2a6d6e77bedaa398a896445b9d551;opendoar::1165;1165;"les mémoires en ligne de linstitut detudes politiques de lyon";OpenDOAR +dedup::56e2a6d6e77bedaa398a896445b9d551;roar::4636;4636;"Les mémoires en ligne de l'Institut d'Etudes Politiques de Lyon";roar +dedup::56eb8a906b159541d4793f6077a045d0;roar::17685;17685;"Portal de Livros da UnB";roar +dedup::56eb8a906b159541d4793f6077a045d0;opendoar::10289;10289;"portal de livros da unb";OpenDOAR +dedup::56f994a2dd1050f56f2f7179591e580d;re3data::r3d100013369;r3d100013369;"Repositório de Dados Científicos";re3data +dedup::56f994a2dd1050f56f2f7179591e580d;opendoar::7042;7042;"repositório dados científicos";OpenDOAR +dedup::57453419f8fa0c177472d6f759122b61;re3data::r3d100011876;r3d100011876;"Plant Genomics and Phenomics Research Data Repository";re3data +dedup::57453419f8fa0c177472d6f759122b61;https://fairsharing.org/10.25504/FAIRsharing.rf3m4g;2195;"Plant Genomics and Phenomics Research Data Repository";FAIRsharing +dedup::575a618d510341097240f74c94335c9e;roar::2948;2948;"Dspace on Instituto Politécnico Nacional";roar +dedup::575a618d510341097240f74c94335c9e;opendoar::1863;1863;"dspace on instituto politécnico nacional";OpenDOAR +dedup::57628bee2dda6ce4f482d5112e56b79c;opendoar::3325;3325;"soe repository of publications";OpenDOAR +dedup::57628bee2dda6ce4f482d5112e56b79c;roar::9002;9002;"NYME Repository of Publications";roar +dedup::57b4b7ce576ce216ed79e74958e49480;roar::88;88;"ARTUR-FC";roar +dedup::57b4b7ce576ce216ed79e74958e49480;opendoar::1478;1478;"artur-fc";OpenDOAR +dedup::583b3d7e07cd320f5545145dc6170704;re3data::r3d100010889;r3d100010889;"PeptideAtlas";re3data +dedup::583b3d7e07cd320f5545145dc6170704;https://fairsharing.org/10.25504/FAIRsharing.dvyrsz;1927;"PeptideAtlas";FAIRsharing +dedup::583b5a33a066175963cc70bc7dc32b37;opendoar::10096;10096;"publication of university of dunaújváros";OpenDOAR +dedup::583b5a33a066175963cc70bc7dc32b37;roar::16995;16995;"Publication of University of Dunaújváros";roar +dedup::5848eae100cdaaf38ef629385a29bc5f;roar::4242;4242;"University of Hull Institutional Repository";roar +dedup::5848eae100cdaaf38ef629385a29bc5f;opendoar::1370;1370;"university of hull institutional repository";OpenDOAR +dedup::58612ed9817555316e886cbc07853692;opendoar::889;889;"athabasca university library institutional repository";OpenDOAR +dedup::58612ed9817555316e886cbc07853692;roar::2346;2346;"Athabasca University Library Institutional Repository";roar +dedup::5866fc5ae89eb8098ce2517220a5dd99;re3data::r3d100010551;r3d100010551;"Nucleic Acid Database";re3data +dedup::5866fc5ae89eb8098ce2517220a5dd99;https://fairsharing.org/10.25504/FAIRsharing.bh0k78;2046;"Nucleic Acid Database";FAIRsharing +dedup::5875a63f8abf480f894beecac5bbcc82;roar::6688;6688;"SERVIFAPA: Plataforma de Asesoramiento y Transferencia del Conocimiento Agrario y Pesquero de Andalucía";roar +dedup::5875a63f8abf480f894beecac5bbcc82;roar::7829;7829;"SERVIFAPA: Plataforma de Asesoramiento y Transferencia del Conocimiento Agrario y Pesquero de Andalucía";roar +dedup::587efc71588b388e8cb5b07ef843d2bc;opendoar::3284;3284;"repositorio cudi";OpenDOAR +dedup::587efc71588b388e8cb5b07ef843d2bc;roar::9531;9531;"Repositorio CUDI";roar +dedup::5881fb0352966bc41010128f36b4954a;https://fairsharing.org/10.25504/FAIRsharing.Q0Ytmr;3262;"University of Arizona Research Data Repository";FAIRsharing +dedup::5881fb0352966bc41010128f36b4954a;opendoar::10274;10274;"university of arizona research data repository";OpenDOAR +dedup::58908d28afbdba97b67afc6ee4b411d7;roar::7755;7755;"Repozytorium PJWSTK / PJIIT Repository";roar +dedup::58908d28afbdba97b67afc6ee4b411d7;opendoar::2931;2931;"repozytorium pjwstk / pjiit repository";OpenDOAR +dedup::58a156f6c954a990008453697edb8708;roar::3089;3089;"ISI Denpasar | Institutional Repository";roar +dedup::58a156f6c954a990008453697edb8708;opendoar::1888;1888;"isi denpasar | institutional repository";OpenDOAR +dedup::58a88f968222c3dc393fae37bdefc41b;roar::14547;14547;"Batman Üniversitesi Akademik Arşiv Sistemi";roar +dedup::58a88f968222c3dc393fae37bdefc41b;roar::10545;10545;"Batman Üniversitesi Akademik Arşiv Sistemi";roar +dedup::58b3efa1be27338f7d350d27f997773f;roar::13171;13171;"Electronic arhive of Vitebsk State Medical University Library";roar +dedup::58b3efa1be27338f7d350d27f997773f;opendoar::3672;3672;"electronic arhive of vitebsk state medical university library (репозиторий библиотеки витебского государственного медицинского университета)";OpenDOAR +dedup::58c4660f75ea3bfc17c72431e0774507;opendoar::3212;3212;"icpbs digital cllections";OpenDOAR +dedup::58c4660f75ea3bfc17c72431e0774507;roar::7375;7375;"ICPBS Digital Collections";roar +dedup::58e0754343cdee9f1efaf9863ccefe58;opendoar::5331;5331;"scholarworks @ morehead state";OpenDOAR +dedup::58e0754343cdee9f1efaf9863ccefe58;roar::10179;10179;"ScholarWorks @ Morehead State";roar +dedup::58f75399495eb3c2a9fb6164ad6bb385;roar::5452;5452;"University of Oulu Repository - Jultika";roar +dedup::58f75399495eb3c2a9fb6164ad6bb385;opendoar::2423;2423;"university of oulu repository - jultika";OpenDOAR +dedup::58f75399495eb3c2a9fb6164ad6bb385;roar::4751;4751;"University of Oulu Repository - Jultika";roar +dedup::59305989333a545c1fc51099237171e2;roar::12969;12969;"Repositorio institucional GRADE";roar +dedup::59305989333a545c1fc51099237171e2;opendoar::3395;3395;"repositorio institucional grade";OpenDOAR +dedup::59313e6ca9d01c93e5a2fb9249f330d1;roar::2405;2405;"Stellenbosch University SUNScholar Repository";roar +dedup::59313e6ca9d01c93e5a2fb9249f330d1;opendoar::1707;1707;"stellenbosch university sunscholar repository";OpenDOAR +dedup::593e3aee5ec83f8ce12bed456e396681;https://fairsharing.org/10.25504/FAIRsharing.1y63n8;2372;"MorphoBank";FAIRsharing +dedup::593e3aee5ec83f8ce12bed456e396681;opendoar::4296;4296;"morphobank";OpenDOAR +dedup::593e3aee5ec83f8ce12bed456e396681;re3data::r3d100010101;r3d100010101;"MorphoBank";re3data +dedup::5955240a2df3b380d5e41ed99474794e;opendoar::1622;1622;"biblioteca virtual de la real academia de jurisprudencia y legislación";OpenDOAR +dedup::5955240a2df3b380d5e41ed99474794e;roar::5577;5577;"Biblioteca Virtual de la Real Academia de Jurisprudencia y Legislación";roar +dedup::59606829adbd688d3e387feaff40df4b;opendoar::3875;3875;"emu dspace";OpenDOAR +dedup::59606829adbd688d3e387feaff40df4b;roar::14403;14403;"EMU DSpace";roar +dedup::59624f66452ad167a80142c6fe112f60;https://fairsharing.org/10.25504/FAIRsharing.pxr7x2;2259;"SwissLipids";FAIRsharing +dedup::59624f66452ad167a80142c6fe112f60;re3data::r3d100012603;r3d100012603;"SwissLipids";re3data +dedup::596338ae3e2679608a4b6a5011e939d0;https://fairsharing.org/fairsharing_records/3192;3192;"India Environment Portal";FAIRsharing +dedup::596338ae3e2679608a4b6a5011e939d0;re3data::r3d100011012;r3d100011012;"India Environment Portal";re3data +dedup::596997a54be38a8de99ea221c588315c;opendoar::4712;4712;"osmaniye korkut ata university academic repository";OpenDOAR +dedup::596997a54be38a8de99ea221c588315c;roar::14935;14935;"Osmaniye Korkut Ata University Academic Repository";roar +dedup::59bcfa894852f25f4a6d5a3480cda687;opendoar::4079;4079;"dipòsit digital eina";OpenDOAR +dedup::59bcfa894852f25f4a6d5a3480cda687;roar::13745;13745;"Dipòsit Digital EINA";roar +dedup::59bfd410604707b3d24beca0a9fb39c7;re3data::r3d100011704;r3d100011704;"Climate Data Online";re3data +dedup::59bfd410604707b3d24beca0a9fb39c7;https://fairsharing.org/10.25504/FAIRsharing.a00142;3138;"Climate Data Online";FAIRsharing +dedup::59cdddb7ad197286895c0318c1dfebc3;roar::6536;6536;"Repositorio Institucional Universidad EAFIT";roar +dedup::59cdddb7ad197286895c0318c1dfebc3;opendoar::2653;2653;"repositorio institucional universidad eafit";OpenDOAR +dedup::59e8649b30fc7bb2e02bf6a65d040aa7;roar::7486;7486;"Repositorio Académico de la Universidad Nacional de Costa Rica";roar +dedup::59e8649b30fc7bb2e02bf6a65d040aa7;opendoar::2844;2844;"repositorio académico de la universidad nacional de costa rica";OpenDOAR +dedup::5a169ea37085767318ceeb1193830bac;opendoar::4406;4406;"biblioteca digital - universidad externado de colombia";OpenDOAR +dedup::5a169ea37085767318ceeb1193830bac;roar::12863;12863;"Biblioteca Digital - Universidad Externado de Colombia";roar +dedup::5a1ea8da722588ab58ccd23ff015835c;roar::10522;10522;"CUNY Academic Works";roar +dedup::5a1ea8da722588ab58ccd23ff015835c;opendoar::3365;3365;"cuny academic works";OpenDOAR +dedup::5a21e6a8cb3654a355fd85f60f18d69a;roar::4949;4949;"University of Bedfordshire Repository";roar +dedup::5a21e6a8cb3654a355fd85f60f18d69a;opendoar::2410;2410;"university of bedfordshire repository";OpenDOAR +dedup::5a3a6f23b89924d4a43dee775641af29;opendoar::2009;2009;"meiho institutional repository";OpenDOAR +dedup::5a3a6f23b89924d4a43dee775641af29;roar::3370;3370;"Meiho Institutional Repository";roar +dedup::5a7393c6e71fd9d0aee1d43e503035bd;roar::4459;4459;"Electronic Archive of National University of Pharmacy";roar +dedup::5a7393c6e71fd9d0aee1d43e503035bd;roar::4368;4368;"Electronic Archive of National University of Pharmacy Електронний архів Національного фармацевтичного університету";roar +dedup::5a914638be5fc9e60aa79cca779712bb;re3data::r3d100013591;r3d100013591;"National Ecosystem Data Bank";re3data +dedup::5a914638be5fc9e60aa79cca779712bb;https://fairsharing.org/10.25504/FAIRsharing.ad7575;3339;"National Ecosystem Data Bank";FAIRsharing +dedup::5a9b3f97d0abd9c9f60d424006c81df4;re3data::r3d100010106;r3d100010106;"Neuroscience Information Framework";re3data +dedup::5a9b3f97d0abd9c9f60d424006c81df4;https://fairsharing.org/10.25504/FAIRsharing.v11s0z;2019;"Neuroscience Information Framework";FAIRsharing +dedup::5aac31e20c5dbfd0bb137d2e47b791c9;opendoar::1710;1710;"unt digital library";OpenDOAR +dedup::5aac31e20c5dbfd0bb137d2e47b791c9;roar::2379;2379;"UNT Digital Library";roar +dedup::5ac6b6f2cabb0584e50649b08d592848;re3data::r3d100012728;r3d100012728;"OrtholugeDB";re3data +dedup::5ac6b6f2cabb0584e50649b08d592848;https://fairsharing.org/10.25504/FAIRsharing.675y92;1706;"OrtholugeDB";FAIRsharing +dedup::5ac8aa3f42da7670466454e3f20ae79d;opendoar::6444;6444;"tokyo polytechnic university repository";OpenDOAR +dedup::5ac8aa3f42da7670466454e3f20ae79d;roar::9349;9349;"Tokyo Polytechnic University Repository";roar +dedup::5ad71b8cc351dca8146b535a0f3cd029;opendoar::432;432;"massey research online";OpenDOAR +dedup::5ad71b8cc351dca8146b535a0f3cd029;roar::4677;4677;"Massey Research Online";roar +dedup::5ae7f44d04089a20f8dd8d772a0bd3fa;roar::9039;9039;"Matsumoto Dental University Repository";roar +dedup::5ae7f44d04089a20f8dd8d772a0bd3fa;opendoar::3207;3207;"matsumoto dental university repository";OpenDOAR +dedup::5af4bffe141459c0ef05627133e0751b;re3data::r3d100010405;r3d100010405;"Integrated Climate Data Center";re3data +dedup::5af4bffe141459c0ef05627133e0751b;https://fairsharing.org/10.25504/FAIRsharing.d95034;3094;"Integrated Climate Data Center";FAIRsharing +dedup::5b0a0fffe86efdda9a3c0a18c687c782;https://fairsharing.org/fairsharing_records/3020;3020;"Northern California Earthquake Data Center";FAIRsharing +dedup::5b0a0fffe86efdda9a3c0a18c687c782;re3data::r3d100011679;r3d100011679;"Northern California Earthquake Data Center";re3data +dedup::5b257dacb4e15624b974fa367a2ba12c;roar::10208;10208;"Repositorio Universidad Sergio Arboleda";roar +dedup::5b257dacb4e15624b974fa367a2ba12c;opendoar::3483;3483;"repositorio universidad sergio arboleda";OpenDOAR +dedup::5b2b0eb28d86edab4f85dc4218979668;re3data::r3d100013199;r3d100013199;"Population Health Data Archive";re3data +dedup::5b2b0eb28d86edab4f85dc4218979668;https://fairsharing.org/10.25504/FAIRsharing.Xb3LBL;2876;"Population Health Data Archive";FAIRsharing +dedup::5b2bc1b9393ba2030baefee216ecba6a;https://fairsharing.org/10.25504/FAIRsharing.tYYt1o;3117;"Astromaterials Data System";FAIRsharing +dedup::5b2bc1b9393ba2030baefee216ecba6a;re3data::r3d100013429;r3d100013429;"Astromaterials Data System";re3data +dedup::5b2d7a8bf787f74cc0157c2da9cb7cc2;roar::13715;13715;"Electronic library of Belarusian Trade and Economics University of Consumer Cooperatives";roar +dedup::5b2d7a8bf787f74cc0157c2da9cb7cc2;opendoar::3815;3815;"electronic library of belarusian trade and economics university of consumer cooperatives";OpenDOAR +dedup::5b41d10f6a24a7e2e4f53a6f599ac0a8;opendoar::10190;10190;"repository of minsk state linguistic university";OpenDOAR +dedup::5b41d10f6a24a7e2e4f53a6f599ac0a8;roar::15584;15584;"Repository of Minsk State Linguistic University";roar +dedup::5b63124e3c88256548342fa1d48fcc92;roar::4960;4960;"Virtual Archive of Polish Armenians";roar +dedup::5b63124e3c88256548342fa1d48fcc92;opendoar::2420;2420;"virtual archive of polish armenians";OpenDOAR +dedup::5b784635e347fbf29abc8251be80891c;opendoar::990;990;"ibss repository";OpenDOAR +dedup::5b784635e347fbf29abc8251be80891c;roar::4996;4996;"IBSS Repository";roar +dedup::5b784635e347fbf29abc8251be80891c;roar::652;652;"IBSS Repository";roar +dedup::5b94239d407d42ce7d751dac4288c090;opendoar::2303;2303;"institutional repository of south china sea institute of oceanology, cas";OpenDOAR +dedup::5b94239d407d42ce7d751dac4288c090;roar::4274;4274;"Institutional Repository of South China Sea Institute of Oceanology";roar +dedup::5b94239d407d42ce7d751dac4288c090;roar::4377;4377;"Institutional Repository of South China Sea Institute of Oceanology";roar +dedup::5bbedea237d1d3175a49c6aafbbd6464;opendoar::4875;4875;"repositorio institucional universidad sise";OpenDOAR +dedup::5bbedea237d1d3175a49c6aafbbd6464;roar::15327;15327;"Repositorio Institucional Universidad SISE";roar +dedup::5bc402c4963a615824ccef70e441e6d9;roar::9782;9782;"Yokohama National University Repository";roar +dedup::5bc402c4963a615824ccef70e441e6d9;opendoar::965;965;"yokohama national university repository";OpenDOAR +dedup::5bf5a4374818dd9aed336b7ca59b4ba6;roar::15770;15770;"BCNROC. Repositori Obert de Coneixement de l'Ajuntament de Barcelona: Página de inicio";roar +dedup::5bf5a4374818dd9aed336b7ca59b4ba6;roar::15490;15490;"BCNROC. Repositori Obert de Coneixement de l'Ajuntament de Barcelona: Página de inicio";roar +dedup::5bf5a4374818dd9aed336b7ca59b4ba6;roar::15531;15531;"BCNROC. Repositori Obert de Coneixement de l'Ajuntament de Barcelona: Página de inicio";roar +dedup::5c03bf36a9bd948324d2fc2d44f09b29;https://fairsharing.org/10.25504/FAIRsharing.7ad252;3653;"NCBI Genome";FAIRsharing +dedup::5c03bf36a9bd948324d2fc2d44f09b29;re3data::r3d100010785;r3d100010785;"NCBI Genome";re3data +dedup::5c0d51b7573b1cda6e3bfd027e1569ae;https://fairsharing.org/10.25504/FAIRsharing.e28856;3329;"JACQ - Virtual herbaria";FAIRsharing +dedup::5c0d51b7573b1cda6e3bfd027e1569ae;re3data::r3d100013564;r3d100013564;"JACQ - Virtual Herbaria";re3data +dedup::5c0f688f692bc2ef79ba37198f73342c;roar::135;135;"Repositório Digital FGV";roar +dedup::5c0f688f692bc2ef79ba37198f73342c;opendoar::3974;3974;"repositório digital fgv";OpenDOAR +dedup::5c157e5d0b5bb084e6201d2dd392f0f7;roar::7041;7041;"Penn Law: Legal Scholarship Repository";roar +dedup::5c157e5d0b5bb084e6201d2dd392f0f7;opendoar::5271;5271;"penn law: legal scholarship repository";OpenDOAR +dedup::5c1f9fe161f664a13226a6ded4c66731;roar::2526;2526;"University of Rochester Digital Repository";roar +dedup::5c1f9fe161f664a13226a6ded4c66731;opendoar::346;346;"university of rochester digital repository";OpenDOAR +dedup::5c5440e72808c40c88c725d31c8348e9;opendoar::4253;4253;"repositorio institucional investigare pucmm";OpenDOAR +dedup::5c5440e72808c40c88c725d31c8348e9;roar::13511;13511;"Repositorio Institucional Investigare PUCMM";roar +dedup::5cbee91e123dda70c30e2d5452026dd4;opendoar::2884;2884;"repository of polessky state university (репозиторий полесского государственного университета)";OpenDOAR +dedup::5cbee91e123dda70c30e2d5452026dd4;roar::7575;7575;"Repository of Polessky State University";roar +dedup::5cc8c334321d493fcd10b296cf7f43ff;roar::924;924;"New York University Faculty Digital Archive";roar +dedup::5cc8c334321d493fcd10b296cf7f43ff;opendoar::923;923;"new york university faculty digital archive";OpenDOAR +dedup::5cd19da0ef4044eb2b808d6719747c09;re3data::r3d100011048;r3d100011048;"Copernicus Space Component Data Access";re3data +dedup::5cd19da0ef4044eb2b808d6719747c09;https://fairsharing.org/fairsharing_records/2813;2813;"Copernicus Space Component Data Access";FAIRsharing +dedup::5ce7e8e3db76d3c46317ae1c1d16c11b;roar::5625;5625;"Repositorio de la Facultad de Psicología";roar +dedup::5ce7e8e3db76d3c46317ae1c1d16c11b;opendoar::2510;2510;"repositorio de la facultad de psicología";OpenDOAR +dedup::5cef2c40a494f84960ca9809c83c0bb0;opendoar::3786;3786;"trakia university - digital repository";OpenDOAR +dedup::5cef2c40a494f84960ca9809c83c0bb0;roar::11827;11827;"Trakia University - Digital Repository";roar +dedup::5cfc56a690b4fcdda131ba41ba5ec9fc;opendoar::4243;4243;"repository of brest state a. s. pushkin university";OpenDOAR +dedup::5cfc56a690b4fcdda131ba41ba5ec9fc;roar::16469;16469;"Repository of Brest State A.S. Pushkin University (BrSU)";roar +dedup::5d1812b196be9d8872d7c09469bbf198;opendoar::928;928;"topscholar";OpenDOAR +dedup::5d1812b196be9d8872d7c09469bbf198;roar::1302;1302;"TopSCHOLAR";roar +dedup::5d43a6ee586706013be67b5fed346542;opendoar::4790;4790;"repositorio institucional digital unas";OpenDOAR +dedup::5d43a6ee586706013be67b5fed346542;roar::15231;15231;"Repositorio Institucional Digital UNAS";roar +dedup::5d4b1531e5a6dd9b46c544e1d9568e64;opendoar::2750;2750;"life+ marpro repository";OpenDOAR +dedup::5d4b1531e5a6dd9b46c544e1d9568e64;roar::6313;6313;"LIFE+ MarPro Repository";roar +dedup::5d4dad953034e3d98a71dec8280b0f44;roar::645;645;"Hrčak - Portal of scientific journals of Croatia";roar +dedup::5d4dad953034e3d98a71dec8280b0f44;opendoar::951;951;"hrčak - portal of scientific journals of croatia";OpenDOAR +dedup::5d57d983a044ad3395efe57c6abad48e;opendoar::9699;9699;"arch";OpenDOAR +dedup::5d57d983a044ad3395efe57c6abad48e;https://fairsharing.org/fairsharing_records/3672;3672;"Arch";FAIRsharing +dedup::5d57d983a044ad3395efe57c6abad48e;re3data::r3d100012925;r3d100012925;"Arch";re3data +dedup::5d57d983a044ad3395efe57c6abad48e;opendoar::4464;4464;"arch";OpenDOAR +dedup::5d57d983a044ad3395efe57c6abad48e;opendoar::4726;4726;"arch";OpenDOAR +dedup::5d60222743ee7f67ec58b0efa8d842d7;re3data::r3d100011131;r3d100011131;"Panel Study on Income Dynamics";re3data +dedup::5d60222743ee7f67ec58b0efa8d842d7;https://fairsharing.org/fairsharing_records/3031;3031;"Panel Study of Income Dynamics";FAIRsharing +dedup::5d6795108ec524bfd767a5d5b1d40514;opendoar::3418;3418;"hzsk repository";OpenDOAR +dedup::5d6795108ec524bfd767a5d5b1d40514;roar::10018;10018;"HZSK Repository";roar +dedup::5d6b72fd5439b6fd3f658f73da5c012a;roar::12405;12405;"- Aston Data Explorer";roar +dedup::5d6b72fd5439b6fd3f658f73da5c012a;re3data::r3d100012285;r3d100012285;"Aston Data Explorer";re3data +dedup::5d6b72fd5439b6fd3f658f73da5c012a;opendoar::3824;3824;"aston data explorer";OpenDOAR +dedup::5d863b1e74a0cb6e62616044694a7443;opendoar::5131;5131;"saint marys digital commons";OpenDOAR +dedup::5d863b1e74a0cb6e62616044694a7443;roar::12810;12810;"Saint Mary's Digital Commons";roar +dedup::5db038b94b21d03c3762c22964ebee21;opendoar::2865;2865;"digital library of polotsk state university";OpenDOAR +dedup::5db038b94b21d03c3762c22964ebee21;roar::7541;7541;"Digital Library of Polotsk State University (PSU)";roar +dedup::5db29f68377405a2db916c5e1cd29a01;roar::11857;11857;"Illinois Data Bank";roar +dedup::5db29f68377405a2db916c5e1cd29a01;re3data::r3d100012001;r3d100012001;"Illinois Data Bank";re3data +dedup::5dbb19a60f9db86fb247897805229fa9;re3data::r3d100012354;r3d100012354;"DNASU plasmid repository";re3data +dedup::5dbb19a60f9db86fb247897805229fa9;https://fairsharing.org/10.25504/FAIRsharing.qqc7zw;1750;"DNASU Plasmid Repository";FAIRsharing +dedup::5dc0b79cbc388921974e1a56d252cc43;roar::5707;5707;"Codices Electronici Sangallenses";roar +dedup::5dc0b79cbc388921974e1a56d252cc43;opendoar::1377;1377;"codices electronici sangallenses";OpenDOAR +dedup::5dfae79b1712b3b809aae3d5a9e3eea4;https://fairsharing.org/10.25504/FAIRsharing.YzTIE8;3096;"National Tibetan Plateau/Third Pole Environment Data Center";FAIRsharing +dedup::5dfae79b1712b3b809aae3d5a9e3eea4;re3data::r3d100013285;r3d100013285;"National Tibetan Plateau/Third Pole Environment Data Center";re3data +dedup::5e1457e018bad570558b11c1edba362e;roar::2547;2547;"Högskolan Väst";roar +dedup::5e1457e018bad570558b11c1edba362e;opendoar::1746;1746;"högskolan väst";OpenDOAR +dedup::5e73f13b7036a7e15dd6b1fa9f998ad1;roar::5754;5754;"VUT DigiResearch";roar +dedup::5e73f13b7036a7e15dd6b1fa9f998ad1;opendoar::2535;2535;"vut digiresearch";OpenDOAR +dedup::5e7db37b28a18fbfe88b897541bacd63;opendoar::1829;1829;"npue ir";OpenDOAR +dedup::5e7db37b28a18fbfe88b897541bacd63;roar::2790;2790;"NPUE IR";roar +dedup::5e7db37b28a18fbfe88b897541bacd63;roar::4685;4685;"NPUE IR";roar +dedup::5ebd51b66f1e967982204d306be5f869;re3data::r3d100010146;r3d100010146;"Swedish National Data Service";re3data +dedup::5ebd51b66f1e967982204d306be5f869;https://fairsharing.org/10.25504/FAIRsharing.pn7yxf;2509;"Swedish National Data Service";FAIRsharing +dedup::5edf6f5210eadb1dd953b8b364adfb42;opendoar::3949;3949;"kansai gaidai university repository";OpenDOAR +dedup::5edf6f5210eadb1dd953b8b364adfb42;roar::12200;12200;"Kansai Gaidai University Repository";roar +dedup::5ee5e38ed577a80dcb2870595d546cc7;https://fairsharing.org/10.25504/FAIRsharing.g6kz6h;1931;"Infevers";FAIRsharing +dedup::5ee5e38ed577a80dcb2870595d546cc7;re3data::r3d100010548;r3d100010548;"Infevers";re3data +dedup::5efab1565d0835b482dff5e308299407;opendoar::1847;1847;"national ilan university repository";OpenDOAR +dedup::5efab1565d0835b482dff5e308299407;roar::2850;2850;"National Ilan University Repository";roar +dedup::5f00e7a0c27368667ac5f99017226e27;roar::15272;15272;"Shukutoku University Academic Repository";roar +dedup::5f00e7a0c27368667ac5f99017226e27;opendoar::6686;6686;"shukutoku university academic repository";OpenDOAR +dedup::5f31c7fb5c0b0048681e6b04d5543965;roar::16034;16034;"Giresun University Institutional Repository";roar +dedup::5f31c7fb5c0b0048681e6b04d5543965;opendoar::9647;9647;"giresun university institutional repository";OpenDOAR +dedup::5f5193653a894fab3dad63d2f97196a6;opendoar::4723;4723;"iskenderun technical university institutional repository";OpenDOAR +dedup::5f5193653a894fab3dad63d2f97196a6;roar::14975;14975;"Iskenderun Technical University Institutional Repository";roar +dedup::5f5e647d675f5fcb24f8bc3b775e9692;opendoar::394;394;"american mineralogist crystal structure database";OpenDOAR +dedup::5f5e647d675f5fcb24f8bc3b775e9692;https://fairsharing.org/10.25504/FAIRsharing.6bfdfc;2702;"American Mineralogist Crystal Structure Database";FAIRsharing +dedup::5f5e647d675f5fcb24f8bc3b775e9692;re3data::r3d100010765;r3d100010765;"American Mineralogist Crystal Structure Database";re3data +dedup::5f5e647d675f5fcb24f8bc3b775e9692;roar::46;46;"American Mineralogist Crystal Structure Database ";roar +dedup::5f65a344750c39764c58f9e194706b96;roar::9487;9487;"IR at NRF: Home";roar +dedup::5f65a344750c39764c58f9e194706b96;roar::7574;7574;"IR at NRF: Home";roar +dedup::5fabf607d6c1fbbf4ce9b2824ea2a376;https://fairsharing.org/fairsharing_records/2662;2662;"Magnetics Information Consortium";FAIRsharing +dedup::5fabf607d6c1fbbf4ce9b2824ea2a376;re3data::r3d100011910;r3d100011910;"Magnetics Information Consortium";re3data +dedup::5fc29d6ad34311350a7483121967961c;roar::3745;3745;"Digital Repository of Hellenic Managing Authority of the Operational Programme Education and Lifelong Learning (EDULLL)";roar +dedup::5fc29d6ad34311350a7483121967961c;opendoar::2894;2894;"digital repository of hellenic managing authority of the operational programme education and lifelong learning (edulll)";OpenDOAR +dedup::5fdb8b169181b6778acdd1db8e63314f;opendoar::2924;2924;"the ubm repository";OpenDOAR +dedup::5fdb8b169181b6778acdd1db8e63314f;roar::6936;6936;"The UBM Repository";roar +dedup::5ff67d495b309438ab27e0446bc5ceca;opendoar::2317;2317;"institutional repository of institute of computing technology, cas";OpenDOAR +dedup::5ff67d495b309438ab27e0446bc5ceca;roar::4269;4269;"Institutional Repository of Institute of Computing Technology";roar +dedup::6012601a144441594566699e238b678b;roar::16693;16693;"Repositorio Institucional UNIFÉ";roar +dedup::6012601a144441594566699e238b678b;opendoar::3954;3954;"repositorio institucional unifé";OpenDOAR +dedup::6020a4a04d6a3656303355c41b20a1f0;opendoar::1969;1969;"national changhua university of education institutional repository";OpenDOAR +dedup::6020a4a04d6a3656303355c41b20a1f0;roar::3242;3242;"National Changhua University of Education Institutional Repository";roar +dedup::60374eb3a5c6354fed71757a860cbaae;roar::4789;4789;"Repositório Aberto da Universidade Aberta";roar +dedup::60374eb3a5c6354fed71757a860cbaae;opendoar::1501;1501;"repositório aberto da universidade aberta";OpenDOAR +dedup::606f4d7842707b48dd1c9bfb52280b42;roar::7278;7278;"IAPS Digital Library | International Association for People-Environment Studies";roar +dedup::606f4d7842707b48dd1c9bfb52280b42;roar::7216;7216;"IAPS Digital Library | International Association for People-Environment Studies";roar +dedup::60d5c62dec49f098631b55e40ce3e265;roar::16144;16144;"DigitalCommons@UNO - The Institutional Repository of the University of Nebraska at Omaha";roar +dedup::60d5c62dec49f098631b55e40ce3e265;roar::8453;8453;"DigitalCommons@UNO - The Institutional Repository of the University of Nebraska Omaha";roar +dedup::60dde325599fe1aff8c8ba3dd036bfd7;opendoar::2142;2142;"open repository of keldysh institute of applied mathematics of ras";OpenDOAR +dedup::60dde325599fe1aff8c8ba3dd036bfd7;roar::3442;3442;"Open Repository of Keldysh Institute of Applied Mathematics of RAS";roar +dedup::6102d7cc1f032838afbca0db088e7edf;opendoar::5376;5376;"kirchlicher dokumentenserver";OpenDOAR +dedup::6102d7cc1f032838afbca0db088e7edf;opendoar::3586;3586;"kirchlicher dokumentenserver";OpenDOAR +dedup::61039e9b7375d92def7a92929afab541;re3data::r3d100010412;r3d100010412;"EarthChem Library";re3data +dedup::61039e9b7375d92def7a92929afab541;re3data::r3d100011538;r3d100011538;"EarthChem Library";re3data +dedup::614e9cf91677e585f80cd0b5241cd585;opendoar::1283;1283;"scientific open-access literature archive and repository";OpenDOAR +dedup::614e9cf91677e585f80cd0b5241cd585;roar::5219;5219;"Scientific Open-access Literature Archive and Repository";roar +dedup::6152d856612bddc3cd7c2b48ef48edd2;re3data::r3d100000043;r3d100000043;"DataBasin";re3data +dedup::6152d856612bddc3cd7c2b48ef48edd2;https://fairsharing.org/10.25504/FAIRsharing.b688ad;3136;"Data Basin";FAIRsharing +dedup::615cf9855be90483788993a83ab8b37d;roar::8003;8003;"EPrints@NIRT Library Welcomes! - EPrints@NIRT";roar +dedup::615cf9855be90483788993a83ab8b37d;roar::7943;7943;"EPrints@NIRT Library Welcomes! - EPrints@NITR";roar +dedup::61879d26e6e4ce6df8df7b71412da3a6;re3data::r3d100013602;r3d100013602;"University of Tasmania Research Data Portal";re3data +dedup::61879d26e6e4ce6df8df7b71412da3a6;https://fairsharing.org/10.25504/FAIRsharing.l3u60T;3183;"University of Tasmania Research Data Portal";FAIRsharing +dedup::6198a24015df7857b42a434bbdf88c12;roar::15563;15563;"W&M ScholarWorks";roar +dedup::6198a24015df7857b42a434bbdf88c12;opendoar::4474;4474;"w&m scholarworks";OpenDOAR +dedup::61b7d1f4bcb16e65db597e1f0130e29d;opendoar::3863;3863;"eastern university institutional repository";OpenDOAR +dedup::61b7d1f4bcb16e65db597e1f0130e29d;roar::12363;12363;"Eastern University Institutional Repository";roar +dedup::61cdfe2e376ff721f947a1fceaff1359;opendoar::4320;4320;"ru económicas";OpenDOAR +dedup::61cdfe2e376ff721f947a1fceaff1359;roar::4745;4745;"RU-Económicas";roar +dedup::61cdfe2e376ff721f947a1fceaff1359;opendoar::2429;2429;"ru-económicas";OpenDOAR +dedup::61ce3e2cac374644015bc778f78d699e;opendoar::1960;1960;"digital commons@becker";OpenDOAR +dedup::61ce3e2cac374644015bc778f78d699e;roar::3253;3253;"Digital Commons@Becker";roar +dedup::61f92ddb4865b0f64561ebe3362f7302;roar::3157;3157;"Biblioteca Multimídia";roar +dedup::61f92ddb4865b0f64561ebe3362f7302;opendoar::1919;1919;"biblioteca multimídia";OpenDOAR +dedup::621f2bc454b199eb6f7ab53607c3e0c0;opendoar::400;400;"university of adelaide library electronic text collection";OpenDOAR +dedup::621f2bc454b199eb6f7ab53607c3e0c0;roar::2425;2425;"University of Adelaide Library Electronic Text Collection";roar +dedup::6228d693c2792ffa1a0ad847454758d2;roar::11546;11546;"MC Law Digital Commons";roar +dedup::6228d693c2792ffa1a0ad847454758d2;opendoar::5332;5332;"mc law digital commons";OpenDOAR +dedup::626271c09f55ab7ab3b300c789415f8e;re3data::r3d100013029;r3d100013029;"TUdatalib";re3data +dedup::626271c09f55ab7ab3b300c789415f8e;roar::14634;14634;"TUdatalib";roar +dedup::626271c09f55ab7ab3b300c789415f8e;opendoar::4786;4786;"tudatalib";OpenDOAR +dedup::6281f68a651c3525b9a998548ec8554e;re3data::r3d100012078;r3d100012078;"SOL Genomics Network";re3data +dedup::6281f68a651c3525b9a998548ec8554e;https://fairsharing.org/10.25504/FAIRsharing.3zqvaf;1841;"Sol Genomics Network";FAIRsharing +dedup::62afe6d66aca6043d9563d2b4b330be6;roar::3198;3198;"Beppu University and Oita Regional Society Co-Operation";roar +dedup::62afe6d66aca6043d9563d2b4b330be6;opendoar::1959;1959;"beppu university and oita regional society co-operation";OpenDOAR +dedup::62d9eda965e8c07c048d24d6ec381357;opendoar::4611;4611;"kütahya dumlupınar university institutional repository";OpenDOAR +dedup::62d9eda965e8c07c048d24d6ec381357;roar::14700;14700;"Kütahya Dumlupınar University Institutional Repository";roar +dedup::62e0ccadd68de5b4d55e36aac147836f;https://fairsharing.org/10.25504/FAIRsharing.x93ckv;2057;"Stanford Microarray Database";FAIRsharing +dedup::62e0ccadd68de5b4d55e36aac147836f;re3data::r3d100010555;r3d100010555;"Stanford Microarray Database";re3data +dedup::62ea72e3d1a194197d0d3b2648043c2b;roar::3366;3366;"Unitec Research Bank";roar +dedup::62ea72e3d1a194197d0d3b2648043c2b;opendoar::2030;2030;"unitec research bank";OpenDOAR +dedup::63312c4d60c3c3133fe5f1a391133f02;roar::14649;14649;"Alpha Repositório Digital Facimed";roar +dedup::63312c4d60c3c3133fe5f1a391133f02;opendoar::4649;4649;"alpha - repositório digital da facimed";OpenDOAR +dedup::633e0004c9cbc95f91daa5396356fed4;roar::11026;11026;"Institute for Social Research in Zagreb (ISRZ) Repository";roar +dedup::633e0004c9cbc95f91daa5396356fed4;opendoar::3644;3644;"institute for social research in zagreb (isrz) repository";OpenDOAR +dedup::634604a37784bc00e4c18ba8cbaf4b93;https://fairsharing.org/10.25504/FAIRsharing.938eb4;3107;"Environmental Dataset Gateway";FAIRsharing +dedup::634604a37784bc00e4c18ba8cbaf4b93;re3data::r3d100011723;r3d100011723;"Environmental Dataset Gateway";re3data +dedup::636a44f1141c909d146a78ba94e51444;opendoar::3008;3008;"institutional repository@vsl";OpenDOAR +dedup::636a44f1141c909d146a78ba94e51444;roar::8008;8008;"Institutional Repository @VSL";roar +dedup::636db76b4bc336fbd96480e2615aba3a;opendoar::4452;4452;"digital repository of warmadewa university";OpenDOAR +dedup::636db76b4bc336fbd96480e2615aba3a;roar::11120;11120;"Digital Repository Warmadewa University";roar +dedup::6378970fb32f2b7feb3fc3b950f36502;opendoar::674;674;"digital south asia library";OpenDOAR +dedup::6378970fb32f2b7feb3fc3b950f36502;re3data::r3d100011188;r3d100011188;"Digital South Asia Library";re3data +dedup::63a3f6101f961f94ca8b8c86f8fc8616;re3data::r3d100012440;r3d100012440;"DR-NTU (Data)";re3data +dedup::63a3f6101f961f94ca8b8c86f8fc8616;opendoar::3925;3925;"dr-ntu (data)";OpenDOAR +dedup::63aef303e05c95f4a34da303c10b8beb;opendoar::3948;3948;"eprints@atree";OpenDOAR +dedup::63aef303e05c95f4a34da303c10b8beb;roar::3391;3391;"ePrints@ATREE";roar +dedup::63c44188e5e59db34bca21d3a630f5f6;opendoar::1104;1104;"open marine archive";OpenDOAR +dedup::63c44188e5e59db34bca21d3a630f5f6;opendoar::232;232;"open marine archive";OpenDOAR +dedup::63fee471096034bdc2377cb1457d753f;roar::3839;3839;"Dominikańska Biblioteka Cyfrowa";roar +dedup::63fee471096034bdc2377cb1457d753f;opendoar::2159;2159;"dominikańska biblioteka cyfrowa";OpenDOAR +dedup::63fee471096034bdc2377cb1457d753f;roar::5583;5583;"Dominikańska Biblioteka Cyfrowa";roar +dedup::640f84f380bb78e4133d64674fb6ab39;opendoar::2032;2032;"wireless u";OpenDOAR +dedup::640f84f380bb78e4133d64674fb6ab39;roar::3509;3509;"Wireless U";roar +dedup::644f7af130ba9f5a8fecffa6377e0fb1;opendoar::3773;3773;"saitama medical university repository";OpenDOAR +dedup::644f7af130ba9f5a8fecffa6377e0fb1;roar::11381;11381;"Saitama Medical University Repository";roar +dedup::6455f4d295093b657a667ea3bd08e333;re3data::r3d100011378;r3d100011378;"MatDB";re3data +dedup::6455f4d295093b657a667ea3bd08e333;opendoar::3562;3562;"matdb";OpenDOAR +dedup::646cbb842650c8a0061e6efcf03ab561;roar::3787;3787;"National Library of Finland DSpace Services";roar +dedup::646cbb842650c8a0061e6efcf03ab561;opendoar::1189;1189;"national library of finland dspace services";OpenDOAR +dedup::64a19fdc3e4c0039e995f5e9f803bd34;roar::1126;1126;"RIT Digital Media Library";roar +dedup::64a19fdc3e4c0039e995f5e9f803bd34;opendoar::648;648;"rit digital media library";OpenDOAR +dedup::64a7b0cfa448a001bf8d14d392756b12;opendoar::2189;2189;"repositório institucional da universidade federal de uberlândia";OpenDOAR +dedup::64a7b0cfa448a001bf8d14d392756b12;roar::3978;3978;"Repositório Institucional da Universidade Federal de Uberlândia";roar +dedup::64c5f3f40eeef7214722166f819e753f;roar::3302;3302;"National Pingtung Institute of Commerce Institutional Repository";roar +dedup::64c5f3f40eeef7214722166f819e753f;opendoar::1988;1988;"national pingtung institute of commerce institutional repository";OpenDOAR +dedup::64d5c8c0daae72bf36e6e119b4191698;opendoar::606;606;"bibliothèques virtuelles humanistes";OpenDOAR +dedup::64d5c8c0daae72bf36e6e119b4191698;roar::143;143;"Bibliothèques Virtuelles Humanistes";roar +dedup::64d5c8c0daae72bf36e6e119b4191698;re3data::r3d100011169;r3d100011169;"Bibliothèques Virtuelles Humanistes";re3data +dedup::65210aca2db00b970f07314664b5a5bb;opendoar::2454;2454;"glim ir institution repository";OpenDOAR +dedup::65210aca2db00b970f07314664b5a5bb;roar::5068;5068;"GLIM Institution Repository";roar +dedup::652f16be49a6d7a5295d330e113b6590;re3data::r3d100012199;r3d100012199;"European Data Portal";re3data +dedup::652f16be49a6d7a5295d330e113b6590;https://fairsharing.org/fairsharing_records/2940;2940;"European Data Portal";FAIRsharing +dedup::653ccc40e2e4683275398f3aef8761a1;roar::2499;2499;"PolyPublie";roar +dedup::653ccc40e2e4683275398f3aef8761a1;opendoar::1572;1572;"polypublie";OpenDOAR +dedup::654ec189797bfa7da206303edd6e7f99;roar::3206;3206;"Hokkaido University of Education Repository";roar +dedup::654ec189797bfa7da206303edd6e7f99;opendoar::1937;1937;"hokkaido university of education repository";OpenDOAR +dedup::6558596e8bd6764766a8fa1657fb4c2f;roar::4262;4262;"Institutional Repository of GuangZhou Institute of Energy Conversion";roar +dedup::6558596e8bd6764766a8fa1657fb4c2f;opendoar::2298;2298;"institutional repository of guangzhou institute of energy conversion, cas";OpenDOAR +dedup::6558596e8bd6764766a8fa1657fb4c2f;roar::4370;4370;"Institutional Repository of GuangZhou Institute of Energy Conversion";roar +dedup::6558596e8bd6764766a8fa1657fb4c2f;roar::4371;4371;"Institutional Repository of GuangZhou Institute of Energy Conversion";roar +dedup::655def7e91fe5ae609160f50956ff45b;roar::17724;17724;"TITULA";roar +dedup::655def7e91fe5ae609160f50956ff45b;opendoar::10354;10354;"titula";OpenDOAR +dedup::658e96d70040b23fb134a3884fa8b9d8;roar::4369;4369;"Institutional Repository of Guangzhou Institute of Geochemistry";roar +dedup::658e96d70040b23fb134a3884fa8b9d8;roar::4273;4273;"Institutional Repository of Guangzhou Institute of Geochemistry";roar +dedup::65ad60c7bd607722dae5c3c248095a45;roar::3559;3559;"UVT E-DOC";roar +dedup::65ad60c7bd607722dae5c3c248095a45;opendoar::2138;2138;"uvt e-doc";OpenDOAR +dedup::65e195e17767b85b0281c7ecb34ddcbb;roar::14678;14678;"Maltepe University Institutional Repository";roar +dedup::65e195e17767b85b0281c7ecb34ddcbb;opendoar::4486;4486;"maltepe university institutional repository";OpenDOAR +dedup::65e2d0425fefc6462e8f0872c7c67e59;roar::4410;4410;"Institutional Repository of Institute of Botany";roar +dedup::65e2d0425fefc6462e8f0872c7c67e59;roar::4409;4409;"Institutional Repository of Institute of Botany";roar +dedup::65e73a0a44f8f3ceb8b5830986014fdd;https://fairsharing.org/10.25504/FAIRsharing.h3tjtr;1716;"Comparative Toxicogenomics Database";FAIRsharing +dedup::65e73a0a44f8f3ceb8b5830986014fdd;re3data::r3d100011530;r3d100011530;"Comparative Toxicogenomics Database";re3data +dedup::664a09d38c3b701d98549899af231f76;opendoar::4108;4108;"repositorio institucional digital de la universidad nacional de quilmes";OpenDOAR +dedup::664a09d38c3b701d98549899af231f76;roar::11486;11486;"RIDAA: Repositorio Institucional Digital de la Universidad Nacional de Quilmes";roar +dedup::66503e05fda50386061c6f6de54f9990;https://fairsharing.org/10.25504/FAIRsharing.k9ptv7;2216;"PlasmID";FAIRsharing +dedup::66503e05fda50386061c6f6de54f9990;re3data::r3d100012516;r3d100012516;"PlasmID";re3data +dedup::66e99f46d64e2249eb8ef005f2cbe69e;roar::11686;11686;"Knowledge@UChicago";roar +dedup::66e99f46d64e2249eb8ef005f2cbe69e;opendoar::4684;4684;"knowledge@uchicago";OpenDOAR +dedup::66f131e7b0575c9de4a2570e12a8b322;opendoar::528;528;"northsee: gasunie";OpenDOAR +dedup::66f131e7b0575c9de4a2570e12a8b322;roar::3107;3107;"NorthSee: Gasunie";roar +dedup::66f43ef09066b8beef7bf7732200d037;roar::616;616;"Helda - Digital Repository of University of Helsinki";roar +dedup::66f43ef09066b8beef7bf7732200d037;opendoar::1593;1593;"helda - digital repository of the university of helsinki";OpenDOAR +dedup::6706c253cd356ebc6e348ed792eb71f8;roar::3270;3270;"Repositório Científico do Instituto Politécnico de Santarém: Home";roar +dedup::6706c253cd356ebc6e348ed792eb71f8;roar::3271;3271;"Repositório Científico do Instituto Politécnico de Santarém: Home";roar +dedup::6706c253cd356ebc6e348ed792eb71f8;opendoar::2002;2002;"repositório cientifico do instituto politécnico de santarém";OpenDOAR +dedup::67257009860eb3418c7d7141d7135bf2;re3data::r3d100013727;r3d100013727;"ATCC Genome Portal";re3data +dedup::67257009860eb3418c7d7141d7135bf2;https://fairsharing.org/fairsharing_records/3780;3780;"ATCC Genome Portal";FAIRsharing +dedup::673f3e9d210d4af84c0480a4b3221148;re3data::r3d100011011;r3d100011011;"Pakistan Petroleum Exploration & Production Data Repository";re3data +dedup::673f3e9d210d4af84c0480a4b3221148;https://fairsharing.org/fairsharing_records/3028;3028;"Pakistan Petroleum Exploration & Production Data Repository";FAIRsharing +dedup::674e91cdeecba907af9187b5295187a4;roar::3805;3805;"Repositorio academico de la Universidad Tecnológica de Pereira";roar +dedup::674e91cdeecba907af9187b5295187a4;opendoar::2144;2144;"repositorio academico de la universidad tecnológica de pereira";OpenDOAR +dedup::6791ea1210fa56b4aad54161aa26e590;roar::9027;9027;"E-theses of the University of Tuzla (PHAIDRA)";roar +dedup::6791ea1210fa56b4aad54161aa26e590;opendoar::3196;3196;"e-theses of the university of tuzla (phaidra)";OpenDOAR +dedup::67943eee7d69d883f3e7929358642b4f;roar::5441;5441;"Repositorio Institucional de la Universidad de Oviedo";roar +dedup::67943eee7d69d883f3e7929358642b4f;opendoar::2439;2439;"repositorio institucional de la universidad de oviedo";OpenDOAR +dedup::67a93efab18da2a7941fcaf02094a55e;roar::9849;9849;"TECNALIA Publications";roar +dedup::67a93efab18da2a7941fcaf02094a55e;opendoar::3360;3360;"tecnalia publications";OpenDOAR +dedup::67b4c80f28397b5f8ad02921e9a7a98d;roar::17252;17252;"RIUR: Repositorio Institucional de la Universidad de La Rioja";roar +dedup::67b4c80f28397b5f8ad02921e9a7a98d;opendoar::10175;10175;"riur - repositorio institucional de la universidad de la rioja";OpenDOAR +dedup::67c12a6c3288a49f1db6a2343ec599ca;opendoar::3593;3593;"lshtm data compass";OpenDOAR +dedup::67c12a6c3288a49f1db6a2343ec599ca;roar::11294;11294;"LSHTM Data Compass";roar +dedup::67c12a6c3288a49f1db6a2343ec599ca;re3data::r3d100011800;r3d100011800;"LSHTM Data Compass";re3data +dedup::67c12a6c3288a49f1db6a2343ec599ca;https://fairsharing.org/fairsharing_records/3331;3331;"LSHTM Data Compass";FAIRsharing +dedup::67c12a6c3288a49f1db6a2343ec599ca;opendoar::3594;3594;"lshtm data compass";OpenDOAR +dedup::67d36d80b57932c3307f6af989c275a4;roar::5530;5530;"University of Zimbabwe Institutional Repository";roar +dedup::67d36d80b57932c3307f6af989c275a4;opendoar::1760;1760;"university of zimbabwe institutional repository";OpenDOAR +dedup::67d36d80b57932c3307f6af989c275a4;roar::4590;4590;"University of Zimbabwe Institutional Repository";roar +dedup::67ec1777f51baa7fa620f59ffb8be5d5;roar::3573;3573;"Lirias";roar +dedup::67ec1777f51baa7fa620f59ffb8be5d5;opendoar::1131;1131;"lirias";OpenDOAR +dedup::67f4168c1b317914d21005463f01f0ca;roar::12118;12118;"ePrints@Bangalore University";roar +dedup::67f4168c1b317914d21005463f01f0ca;opendoar::3782;3782;"eprints@bangalore university";OpenDOAR +dedup::67f504cde13a608be7fbbb8e3c0f3ea8;https://fairsharing.org/10.25504/FAIRsharing.2cw3HU;2856;"BonaRes Repository";FAIRsharing +dedup::67f504cde13a608be7fbbb8e3c0f3ea8;re3data::r3d100013470;r3d100013470;"BonaRes Repository";re3data +dedup::67f9e62708b624dfdbce5cc740591c4f;roar::5451;5451;"R4D";roar +dedup::67f9e62708b624dfdbce5cc740591c4f;opendoar::1494;1494;"r4d";OpenDOAR +dedup::6893b921fbaee9390049ca149aae5a0f;roar::382;382;"DSpace - Tor Vergata";roar +dedup::6893b921fbaee9390049ca149aae5a0f;opendoar::976;976;"dspace @ tor vergata";OpenDOAR +dedup::68a124f369d9bbbb6b9dea65711967d0;https://fairsharing.org/10.25504/FAIRsharing.c23cqq;2406;"Ensembl Metazoa";FAIRsharing +dedup::68a124f369d9bbbb6b9dea65711967d0;re3data::r3d100011198;r3d100011198;"Ensembl Metazoa";re3data +dedup::68b35441dcf43920d798452c86bc64dc;opendoar::3623;3623;"institutional repository in agricultural sciences of state agrarian university of moldova";OpenDOAR +dedup::68b35441dcf43920d798452c86bc64dc;roar::10802;10802;"Institutional Repository in Agricultural Sciences of State Agrarian University of Moldova (IRAS)";roar +dedup::68c7cb0ade37c86b9f3eb36da8b5d28f;roar::3091;3091;"Publication Server of the Aachen University of Applied Sciences";roar +dedup::68c7cb0ade37c86b9f3eb36da8b5d28f;opendoar::792;792;"publication server of the aachen university of applied sciences";OpenDOAR +dedup::68f59a5cd142d8ead75a37adc5b11957;opendoar::1573;1573;"taipei medical university repository";OpenDOAR +dedup::68f59a5cd142d8ead75a37adc5b11957;roar::1254;1254;"Taipei Medical University Repository";roar +dedup::690c2035bab6a60fd3639fb601312e4e;roar::16423;16423;"Jthink Repository(전북연구원 리포지터리)";roar +dedup::690c2035bab6a60fd3639fb601312e4e;opendoar::9970;9970;"jthink repository";OpenDOAR +dedup::692927db9c16dfa34e28d6e12839dd72;opendoar::3837;3837;"kumel repository";OpenDOAR +dedup::692927db9c16dfa34e28d6e12839dd72;roar::11296;11296;"KUMeL Repository(계명대학교 의학도서관)";roar +dedup::6934ea70ddf0ea1cf79cf30258ad906e;re3data::r3d100011045;r3d100011045;"Index to Marine & Lacustrine Geological Samples";re3data +dedup::6934ea70ddf0ea1cf79cf30258ad906e;https://fairsharing.org/fairsharing_records/3004;3004;"Index to Marine and Lacustrine Geological Samples";FAIRsharing +dedup::6945864f5457caa31b7082c1f7d3529e;opendoar::10159;10159;"ridaa-cfe repositorio institucional de acceso abierto del consejo de formación en educación";OpenDOAR +dedup::6945864f5457caa31b7082c1f7d3529e;roar::15420;15420;"RIdAA-CFE: Repositorio Institucional de Acceso Abierto - Consejo de Formación en Educación";roar +dedup::6945864f5457caa31b7082c1f7d3529e;roar::16164;16164;"RIdAA-CFE Repositorio Institucional de Acceso Abierto del Consejo de Formación en Educación";roar +dedup::69662c4fb78d834940b8f0f03a8b2f22;https://fairsharing.org/10.25504/FAIRsharing.1h7t5t;2214;"National Database for Clinical Trials related to Mental Illness";FAIRsharing +dedup::69662c4fb78d834940b8f0f03a8b2f22;re3data::r3d100012481;r3d100012481;"National Database for Clinical Trials Related to Mental Illness";re3data +dedup::6973375bbb56846f0d935bd1cd9e0b98;opendoar::3820;3820;"repositorio - universidad de la costa";OpenDOAR +dedup::6973375bbb56846f0d935bd1cd9e0b98;opendoar::5226;5226;"repositorio universidad de la costa";OpenDOAR +dedup::6973375bbb56846f0d935bd1cd9e0b98;roar::14929;14929;"Repositorio Universidad de la Costa";roar +dedup::6973375bbb56846f0d935bd1cd9e0b98;roar::16263;16263;"Repositorio Universidad de la Costa";roar +dedup::69863849b73ec3dfab63962dc55db867;https://fairsharing.org/10.25504/FAIRsharing.7mm5g5;1562;"Crystallography Open Database";FAIRsharing +dedup::69863849b73ec3dfab63962dc55db867;roar::269;269;"Crystallography Open Database";roar +dedup::69863849b73ec3dfab63962dc55db867;opendoar::418;418;"crystallography open database";OpenDOAR +dedup::69863849b73ec3dfab63962dc55db867;re3data::r3d100010213;r3d100010213;"Crystallography Open Database";re3data +dedup::69948924614780b8d8c61608ed989166;roar::3605;3605;"IIT Roorkee Repository";roar +dedup::69948924614780b8d8c61608ed989166;opendoar::2069;2069;"iit roorkee repository";OpenDOAR +dedup::69948924614780b8d8c61608ed989166;roar::5420;5420;"IIT Roorkee Repository";roar +dedup::69a8523b772c17c2f13cd6740b978eff;https://fairsharing.org/10.25504/FAIRsharing.83wDfe;2584;"Ag Data Commons";FAIRsharing +dedup::69a8523b772c17c2f13cd6740b978eff;opendoar::10026;10026;"ag data commons";OpenDOAR +dedup::69a8523b772c17c2f13cd6740b978eff;re3data::r3d100011890;r3d100011890;"Ag Data Commons";re3data +dedup::69b2ae67d45c917bb62f1a28a02ef089;https://fairsharing.org/10.25504/FAIRsharing.b2017d;3084;"Bjerknes Climate Data Centre";FAIRsharing +dedup::69b2ae67d45c917bb62f1a28a02ef089;re3data::r3d100012909;r3d100012909;"Bjerknes Climate Data Centre";re3data +dedup::69d6bdd631ffe8f3c8471a779189babc;roar::14418;14418;"DSpace Technical University of Liberec";roar +dedup::69d6bdd631ffe8f3c8471a779189babc;opendoar::3914;3914;"dspace - technical university of liberec";OpenDOAR +dedup::6a884cbd43dd736fa9a38066df70737b;opendoar::2558;2558;"nuspace";OpenDOAR +dedup::6a884cbd43dd736fa9a38066df70737b;roar::4662;4662;"NuSpace";roar +dedup::6a89af5c4bdf9bef64c42c6091300047;opendoar::9391;9391;"trovare repositorio institucional";OpenDOAR +dedup::6a89af5c4bdf9bef64c42c6091300047;roar::15351;15351;"Trovare Repositorio Institucional";roar +dedup::6a8f6c85d6434142e1105c14bb60eaf9;opendoar::10279;10279;"cuhk research data repository";OpenDOAR +dedup::6a8f6c85d6434142e1105c14bb60eaf9;re3data::r3d100013661;r3d100013661;"CUHK Research Data Repository";re3data +dedup::6b5584fd4deaf72a72cb540c916b2e22;opendoar::4366;4366;"hitit university institutional repository";OpenDOAR +dedup::6b5584fd4deaf72a72cb540c916b2e22;roar::14674;14674;"Hitit University Institutional Repository";roar +dedup::6b5bdaebee7f038ea6492c437b6b574e;roar::1568;1568;"ePublications@SCU";roar +dedup::6b5bdaebee7f038ea6492c437b6b574e;opendoar::409;409;"epublications@scu";OpenDOAR +dedup::6b82842585766cb11a073b55f87bd9a9;https://fairsharing.org/10.25504/FAIRsharing.f3b7a9;2934;"COVID-19 Data Portal";FAIRsharing +dedup::6b82842585766cb11a073b55f87bd9a9;re3data::r3d100013292;r3d100013292;"COVID-19 Data Portal";re3data +dedup::6ba01b8035778d71c54036d643a74250;re3data::r3d100010538;r3d100010538;"Protein Data Bank in Europe";re3data +dedup::6ba01b8035778d71c54036d643a74250;https://fairsharing.org/10.25504/FAIRsharing.26ek1v;1860;"Protein Data Bank in Europe";FAIRsharing +dedup::6bbcd1b0421af150acbbf56c9f0a40bf;opendoar::1942;1942;"nara university repository";OpenDOAR +dedup::6bbcd1b0421af150acbbf56c9f0a40bf;roar::3215;3215;"Nara University Repository";roar +dedup::6c0b76ab8140b40f7b43e0e58f78350b;roar::5494;5494;"Biblioteca Digital - Bolsa de Cereales";roar +dedup::6c0b76ab8140b40f7b43e0e58f78350b;opendoar::2484;2484;"biblioteca digital - bolsa de cereales";OpenDOAR +dedup::6c40966a86c1df7b2caebba10c85acc5;opendoar::7771;7771;"prism: university of calgary digital repository";OpenDOAR +dedup::6c40966a86c1df7b2caebba10c85acc5;re3data::r3d100011189;r3d100011189;"PRISM: University of Calgary's Digital Repository";re3data +dedup::6c4b870befb4ef79aaf9f3501ffd46c4;roar::5443;5443;"Arab Repository for Library and Information Studies";roar +dedup::6c4b870befb4ef79aaf9f3501ffd46c4;roar::3032;3032;"Arab Repository for Library and Information Studies";roar +dedup::6c4b870befb4ef79aaf9f3501ffd46c4;opendoar::1884;1884;"arab repository for library and information studies";OpenDOAR +dedup::6c7074b72104114aeffee74721d4bde3;roar::2419;2419;"Jean Monnet Working Papers";roar +dedup::6c7074b72104114aeffee74721d4bde3;opendoar::299;299;"jean monnet working papers";OpenDOAR +dedup::6c721c87db0c0d72e2ffe42bebd2faa4;re3data::r3d100010473;r3d100010473;"myExperiment";re3data +dedup::6c721c87db0c0d72e2ffe42bebd2faa4;https://fairsharing.org/10.25504/FAIRsharing.a971f7;2966;"myExperiment";FAIRsharing +dedup::6c75c92b2f7a80c14722cd62a56b3dc1;roar::8224;8224;"Repositório Institucional da ENAP";roar +dedup::6c75c92b2f7a80c14722cd62a56b3dc1;opendoar::3046;3046;"repositório institucional da enap";OpenDOAR +dedup::6c7611f573608928f9c7f8ab3fa6ae52;roar::2670;2670;"HSF Brage Open Research Archive";roar +dedup::6c7611f573608928f9c7f8ab3fa6ae52;roar::2698;2698;"HSF Brage Open Research Archive";roar +dedup::6c995239401fe4fdc20c9da4377548e5;re3data::r3d100010417;r3d100010417;"Rat Genome Database";re3data +dedup::6c995239401fe4fdc20c9da4377548e5;https://fairsharing.org/10.25504/FAIRsharing.pfg82t;1951;"Rat Genome Database";FAIRsharing +dedup::6d491c54825dcf2f3ec440bfb07e5a16;opendoar::2803;2803;"digital archive library of the msu named after a.a. kuleshov instututional repository";OpenDOAR +dedup::6d491c54825dcf2f3ec440bfb07e5a16;roar::9330;9330;"Digital archive library of the MSU named after A.A. Kuleshov Instututional Repository";roar +dedup::6d4e01736463f2d05988a6517c2db7c1;opendoar::9645;9645;"knowledge commons of national science library, cas";OpenDOAR +dedup::6d4e01736463f2d05988a6517c2db7c1;opendoar::9629;9629;"knowledge commons of national science library";OpenDOAR +dedup::6d573b44b9fa068e65382054cbeff096;opendoar::1110;1110;"lund university publications";OpenDOAR +dedup::6d573b44b9fa068e65382054cbeff096;roar::4925;4925;"Lund University Publications";roar +dedup::6d7707f4e30316135fbda40782247d3a;opendoar::3369;3369;"asian development bank open access repository";OpenDOAR +dedup::6d7707f4e30316135fbda40782247d3a;roar::9526;9526;"Asian Development Bank Open Access Repository";roar +dedup::6deadc4af7b6d0d2b5b42bb195cf5d35;https://fairsharing.org/10.25504/FAIRsharing.wqsxtg;2558;"Texas Data Repository";FAIRsharing +dedup::6deadc4af7b6d0d2b5b42bb195cf5d35;opendoar::4241;4241;"texas data repository";OpenDOAR +dedup::6e1633cd56c9a23e585478e467169508;opendoar::9744;9744;"repositorio institucional tecnologico de antioquia";OpenDOAR +dedup::6e1633cd56c9a23e585478e467169508;roar::16219;16219;"Repositorio Institucional Tecnologico de Antioquia - TDEA";roar +dedup::6e17817afd8da0be22281ed0d54062a0;roar::3007;3007;"Edinburgh DataShare";roar +dedup::6e17817afd8da0be22281ed0d54062a0;opendoar::1176;1176;"edinburgh datashare";OpenDOAR +dedup::6e3e08901cd4653f8f421fcb1f7feddb;opendoar::4351;4351;"odu digital commons";OpenDOAR +dedup::6e3e08901cd4653f8f421fcb1f7feddb;roar::10431;10431;"ODU Digital Commons";roar +dedup::6e3ec42a76f7bb6a43ec1c634b7166f2;roar::15035;15035;"GraFar - Repository of the Faculty of Civil Engineering";roar +dedup::6e3ec42a76f7bb6a43ec1c634b7166f2;opendoar::4693;4693;"grafar - repository of the faculty of civil engineering";OpenDOAR +dedup::6e7f478055c280706104c64867a51017;https://fairsharing.org/10.25504/FAIRsharing.L13TT5;3209;"National Institute of Mental Health Data Archive";FAIRsharing +dedup::6e7f478055c280706104c64867a51017;re3data::r3d100012653;r3d100012653;"National Institute of Mental Health Data Archive";re3data +dedup::6e92437ed5986a34c373f6f4a77f58e5;re3data::r3d100010066;r3d100010066;"figshare";re3data +dedup::6e92437ed5986a34c373f6f4a77f58e5;https://fairsharing.org/10.25504/FAIRsharing.drtwnh;1843;"figshare";FAIRsharing +dedup::6e92437ed5986a34c373f6f4a77f58e5;opendoar::2073;2073;"figshare";OpenDOAR +dedup::6ee8c8a51e0a87988c3096a4d1b8be9d;roar::4765;4765;"HAL - Polytechnique";roar +dedup::6ee8c8a51e0a87988c3096a4d1b8be9d;opendoar::3524;3524;"hal-polytechnique";OpenDOAR +dedup::6ef36f49b1d9f0e6a58097078f865d02;roar::9884;9884;"DSpace Sinop Üniversitesi Repository";roar +dedup::6ef36f49b1d9f0e6a58097078f865d02;opendoar::3302;3302;"dspace sinop university repository";OpenDOAR +dedup::6efabf3e2f60378200b24573e41e6527;opendoar::4174;4174;"polish botanical society repository";OpenDOAR +dedup::6efabf3e2f60378200b24573e41e6527;roar::14272;14272;"Polish Botanical Society Repository";roar +dedup::6f3b096896896a8543198e5ae6b5f4b5;opendoar::7335;7335;"polar data catalogue";OpenDOAR +dedup::6f3b096896896a8543198e5ae6b5f4b5;re3data::r3d100010953;r3d100010953;"Polar Data Catalogue";re3data +dedup::6f80a1840aad14cf75cb48dbc0d529b5;re3data::r3d100010464;r3d100010464;"Research Data Australia";re3data +dedup::6f80a1840aad14cf75cb48dbc0d529b5;https://fairsharing.org/10.25504/FAIRsharing.2g5kcb;2451;"Research Data Australia";FAIRsharing +dedup::6f943736700b232ddb70f1a92427d983;roar::1092;1092;"Repositório Digital da Universidade Federal do Rio Grande do Sul";roar +dedup::6f943736700b232ddb70f1a92427d983;opendoar::1853;1853;"lume - repositório digital da universidade federal do rio grande do sul";OpenDOAR +dedup::6fcb6e8b148b56f9e4c373ffc1146eb7;https://fairsharing.org/10.25504/FAIRsharing.56a0Uj;2880;"GeoNames";FAIRsharing +dedup::6fcb6e8b148b56f9e4c373ffc1146eb7;re3data::r3d100010245;r3d100010245;"GeoNames";re3data +dedup::6fd7bed55f5589dbdf21fd8e95877670;roar::5403;5403;"Publikations- und Dokumentenserver der Universitätsbibliothek Siegen";roar +dedup::6fd7bed55f5589dbdf21fd8e95877670;opendoar::691;691;"publikations- und dokumentenserver der universitätsbibliothek siegen";OpenDOAR +dedup::6fdb7a42a5141525b1417c79778ae60d;roar::16302;16302;"Science Data Bank";roar +dedup::6fdb7a42a5141525b1417c79778ae60d;https://fairsharing.org/10.25504/FAIRsharing.Tb0BKn;2768;"Science Data Bank";FAIRsharing +dedup::6fdb7a42a5141525b1417c79778ae60d;opendoar::9768;9768;"science data bank";OpenDOAR +dedup::6fdcde9312d118f78850b60c9c5c9f05;opendoar::1859;1859;"lviv polytechnic national university institutional repository";OpenDOAR +dedup::6fdcde9312d118f78850b60c9c5c9f05;roar::2844;2844;"Lviv Polytechnic National University Institutional Repository - Електронний науковий архів Науково-технічної бібліотеки Національного університету Львівська політехніка";roar +dedup::6fef6aee41e8596abd2ff6702186f37b;https://fairsharing.org/10.25504/FAIRsharing.q9VUYM;2857;"BBMRI-ERIC Directory";FAIRsharing +dedup::6fef6aee41e8596abd2ff6702186f37b;re3data::r3d100013028;r3d100013028;"BBMRI-ERIC Directory";re3data +dedup::709e7274cc06a0490b2214375057c93a;roar::3604;3604;"Allen Park Veterans Administration Hospital Archives";roar +dedup::709e7274cc06a0490b2214375057c93a;opendoar::1351;1351;"allen park veterans administration hospital archives";OpenDOAR +dedup::70b37638d8a500a55d4f2b2a1d3eb34d;opendoar::130;130;"ecological restoration institute - northern arizona university";OpenDOAR +dedup::70b37638d8a500a55d4f2b2a1d3eb34d;roar::475;475;"Ecological Restoration Institute - Northern Arizon University";roar +dedup::714d2c1104ccf0b6994399c46763eb44;opendoar::1163;1163;"padua@thesis";OpenDOAR +dedup::714d2c1104ccf0b6994399c46763eb44;roar::998;998;"Padua@Thesis";roar +dedup::714d42d4b9fc4336ed2b3a3711ee7c1b;opendoar::1623;1623;"biblioteca valenciana digital";OpenDOAR +dedup::714d42d4b9fc4336ed2b3a3711ee7c1b;roar::4440;4440;"Biblioteca Valenciana Digital";roar +dedup::715a8b1b1f06df2b43f0f4bd5376237e;roar::4985;4985;"E-resource repository of the University of Latvia";roar +dedup::715a8b1b1f06df2b43f0f4bd5376237e;roar::4531;4531;"E-resource repository of the University of Latvia";roar +dedup::715a8b1b1f06df2b43f0f4bd5376237e;opendoar::2360;2360;"e-resource repository of the university of latvia";OpenDOAR +dedup::715bc5ce22f2bd2439636ce2c578aad5;roar::6884;6884;"Repository of the Yaroslav Mudryi National Law University";roar +dedup::715bc5ce22f2bd2439636ce2c578aad5;opendoar::2766;2766;"repository of the yaroslav mudryi national law university";OpenDOAR +dedup::717add716097b3534f350ac778c5a1c0;opendoar::2404;2404;"ridi - repositório institucional digital do ibict";OpenDOAR +dedup::717add716097b3534f350ac778c5a1c0;roar::4694;4694;"RIDI: Repositório Institucional Digital do ibict";roar +dedup::71862239836651a7e75a59220faa9e3b;roar::15471;15471;"Repository STIE Nobel Indonesia";roar +dedup::71862239836651a7e75a59220faa9e3b;roar::16390;16390;"Repository STIE Nobel Indonesia";roar +dedup::71bf80a158c91bad6338b3dfa1c283e8;roar::5942;5942;"Hispana";roar +dedup::71bf80a158c91bad6338b3dfa1c283e8;roar::628;628;"Hispana";roar +dedup::71dad7a3048a5c0188e7b8d9de343052;https://fairsharing.org/10.25504/FAIRsharing.szj2xw;2485;"Health and Medical Care Archive";FAIRsharing +dedup::71dad7a3048a5c0188e7b8d9de343052;re3data::r3d100010257;r3d100010257;"Health and Medical Care Archive";re3data +dedup::72086db85e606cd3c277dc321332b359;roar::2327;2327;"Publikationer från Örebro universitet";roar +dedup::72086db85e606cd3c277dc321332b359;opendoar::384;384;"publikationer från örebro universitet";OpenDOAR +dedup::725bf8959f4b68ef9fb4653a68ec89cf;roar::13832;13832;"Erdélyi Digitális Adattár";roar +dedup::725bf8959f4b68ef9fb4653a68ec89cf;opendoar::4195;4195;"erdélyi digitális adattár";OpenDOAR +dedup::72850e03ef72cd6b25d7b82ccdad4971;opendoar::2506;2506;"research+rmuts";OpenDOAR +dedup::72850e03ef72cd6b25d7b82ccdad4971;roar::5523;5523;"Research+rmuts";roar +dedup::728c4f002942a66c3065f333600aa759;roar::5210;5210;"Sophia University Repository for Academic Resources";roar +dedup::728c4f002942a66c3065f333600aa759;roar::3199;3199;"Sophia University Repository for Academic Resources";roar +dedup::72a098844cf6aac7b3c0773accd5322b;re3data::r3d100011843;r3d100011843;"OsteoArthritis Initiative";re3data +dedup::72a098844cf6aac7b3c0773accd5322b;https://fairsharing.org/10.25504/FAIRsharing.D5iouq;3212;"Osteoarthritis Initiative";FAIRsharing +dedup::72e5c87f54c24a6f1a2eb4c47ebe92bd;opendoar::2173;2173;"edge hill research archive";OpenDOAR +dedup::72e5c87f54c24a6f1a2eb4c47ebe92bd;roar::3497;3497;"Edge Hill Research Archive";roar +dedup::72ef2c6170fe6f13a42f9541e28c5a66;roar::3583;3583;"Biała Podlaska Digital Library";roar +dedup::72ef2c6170fe6f13a42f9541e28c5a66;opendoar::2050;2050;"biała podlaska digital library";OpenDOAR +dedup::7320c3a1edf912689f9bb4dcf794e2d1;opendoar::581;581;"dspace@inflibnet";OpenDOAR +dedup::7320c3a1edf912689f9bb4dcf794e2d1;roar::3109;3109;"DSpace@INFLIBNET";roar +dedup::73239e23963525c3de0ca5cc4b84dd16;https://fairsharing.org/10.25504/FAIRsharing.wx5r6f;2265;"ClinVar";FAIRsharing +dedup::73239e23963525c3de0ca5cc4b84dd16;re3data::r3d100013331;r3d100013331;"ClinVar";re3data +dedup::733a55c4e40fe9e90a580627a81c6353;opendoar::2390;2390;"electronic theses and dissertations";OpenDOAR +dedup::733a55c4e40fe9e90a580627a81c6353;roar::4682;4682;"Electronic Theses and Dissertations";roar +dedup::7362e35860eb6defba02676f6414a800;roar::3969;3969;"Aquatic Commons";roar +dedup::7362e35860eb6defba02676f6414a800;opendoar::1022;1022;"aquatic commons";OpenDOAR +dedup::737f8314daa4aba117418d26a5497fd1;re3data::r3d100010068;r3d100010068;"World Data Centre for Greenhouse Gases";re3data +dedup::737f8314daa4aba117418d26a5497fd1;https://fairsharing.org/fairsharing_records/3068;3068;"World Data Centre for Greenhouse Gases";FAIRsharing +dedup::739151bb11fd8357c5105e0bdeb966d9;re3data::r3d100010675;r3d100010675;"Interologous Interaction Database";re3data +dedup::739151bb11fd8357c5105e0bdeb966d9;https://fairsharing.org/10.25504/FAIRsharing.k56rjs;2113;"Interologous Interaction Database";FAIRsharing +dedup::73cbf5e0e61415371641b5d3ac80e873;opendoar::2288;2288;"kazakhstan human rights commission";OpenDOAR +dedup::73cbf5e0e61415371641b5d3ac80e873;roar::4953;4953;"Kazakhstan Human Rights Commission";roar +dedup::73d5bb52f26cea1053debd0058c2c57b;roar::4676;4676;"Universidad Ricardo Palma";roar +dedup::73d5bb52f26cea1053debd0058c2c57b;roar::1349;1349;"Universidad Ricardo Palma";roar +dedup::740f4afb4f23c5c67c71247ae8ee0986;https://fairsharing.org/10.25504/FAIRsharing.hmb1f4;1620;"NONCODE";FAIRsharing +dedup::740f4afb4f23c5c67c71247ae8ee0986;re3data::r3d100012169;r3d100012169;"NONCODE";re3data +dedup::743e701b9c768a771b3cafe1749b1702;opendoar::1385;1385;"byu scholarsarchive";OpenDOAR +dedup::743e701b9c768a771b3cafe1749b1702;roar::8784;8784;"BYU ScholarsArchive";roar +dedup::744768407b278166e3a3623ab562c4ba;re3data::r3d100010914;r3d100010914;"Australian Ocean Data Network Portal";re3data +dedup::744768407b278166e3a3623ab562c4ba;https://fairsharing.org/10.25504/FAIRsharing.j5eden;2496;"Australian Ocean Data Network Portal";FAIRsharing +dedup::7454638f2f0fdf28cbb4c386a7f8bfd7;roar::1353;1353;"Universidade do Minho: RepositoriUM";roar +dedup::7454638f2f0fdf28cbb4c386a7f8bfd7;opendoar::307;307;"universidade do minho: repositorium";OpenDOAR +dedup::7476c1503aea1bc3a59911d59890304a;re3data::r3d100012471;r3d100012471;"data.world";re3data +dedup::7476c1503aea1bc3a59911d59890304a;https://fairsharing.org/10.25504/FAIRsharing.pP4ALT;2620;"data.world";FAIRsharing +dedup::74792ce0a301cc93ff933cb7a53f49d3;roar::8109;8109;"UNALM - Repositorio Institucional";roar +dedup::74792ce0a301cc93ff933cb7a53f49d3;opendoar::3039;3039;"unalm - repositorio institucional";OpenDOAR +dedup::7487b2fae55e6976bcfe116012ffcf0c;https://fairsharing.org/10.25504/FAIRsharing.snAELz;3135;"National Space Science Data Center";FAIRsharing +dedup::7487b2fae55e6976bcfe116012ffcf0c;re3data::r3d100010143;r3d100010143;"National Space Science Data Center";re3data +dedup::7489819eac1f21687800df684cb29a54;opendoar::2178;2178;"biwako seikei sport college repository";OpenDOAR +dedup::7489819eac1f21687800df684cb29a54;roar::3899;3899;"Biwako Seikei Sport College Repository";roar +dedup::7497d9feec45e44cc162d45fdc3d35ee;opendoar::179;179;"iupuischolarworks";OpenDOAR +dedup::7497d9feec45e44cc162d45fdc3d35ee;roar::4726;4726;"IUPUIScholarWorks";roar +dedup::74a5dabf63833ccbcbcca1e516d59902;roar::13194;13194;"JKU ePub";roar +dedup::74a5dabf63833ccbcbcca1e516d59902;opendoar::3361;3361;"jku epub";OpenDOAR +dedup::74bf4d2f1945f65aeee56c5d811cd1e5;opendoar::2890;2890;"the parthenon frieze repository";OpenDOAR +dedup::74bf4d2f1945f65aeee56c5d811cd1e5;roar::7550;7550;"The Parthenon Frieze Repository";roar +dedup::74c20c4663f69be96bc324177c1875c2;re3data::r3d100010520;r3d100010520;"Upper Ocean Processes Group";re3data +dedup::74c20c4663f69be96bc324177c1875c2;https://fairsharing.org/fairsharing_records/3130;3130;"Upper Ocean Processes Group";FAIRsharing +dedup::74e7c79f4ca30112bfa0daf097be3a11;roar::2970;2970;"Recursos";roar +dedup::74e7c79f4ca30112bfa0daf097be3a11;opendoar::1615;1615;"recursos";OpenDOAR +dedup::7561491ecf9745b0eb895d96532688b1;opendoar::2056;2056;"lublin university of technology digital library";OpenDOAR +dedup::7561491ecf9745b0eb895d96532688b1;roar::3582;3582;"Lublin University of Technology Digital Library";roar +dedup::7573bb5878a91d1b038df48789d3aafa;roar::4071;4071;"KRIBB Repository";roar +dedup::7573bb5878a91d1b038df48789d3aafa;opendoar::2229;2229;"kribb repository";OpenDOAR +dedup::757f9d83389a94554901f2a51450040e;re3data::r3d100010552;r3d100010552;"Mouse Phenome Database";re3data +dedup::757f9d83389a94554901f2a51450040e;https://fairsharing.org/10.25504/FAIRsharing.h6enr1;1616;"Mouse Phenome Database";FAIRsharing +dedup::7582ded97f0f622ece40a1866e9a5bbb;re3data::r3d100012051;r3d100012051;"Repositorio Institucional USIL";re3data +dedup::7582ded97f0f622ece40a1866e9a5bbb;opendoar::3128;3128;"repositorio institucional usil";OpenDOAR +dedup::7582ded97f0f622ece40a1866e9a5bbb;roar::11444;11444;"Repositorio Institucional - USIL";roar +dedup::75b4327675cc478d814f813652456a3e;roar::14181;14181;"Institutional Repositary of Bohdan Khmelnitskiy Melitopol State Pedagogical University";roar +dedup::75b4327675cc478d814f813652456a3e;opendoar::9416;9416;"institutional repository of bohdan khmelnitskiy melitopol state pedagogical university";OpenDOAR +dedup::75b9ce3c0785345f9efc049b23bf7da1;roar::990;990;"oURspace";roar +dedup::75b9ce3c0785345f9efc049b23bf7da1;opendoar::1676;1676;"ourspace";OpenDOAR +dedup::75c1278cf51ef484f2c591fef557bf7b;opendoar::2770;2770;"e-artexte";OpenDOAR +dedup::75c1278cf51ef484f2c591fef557bf7b;roar::6838;6838;"e-artexte";roar +dedup::75cb7d44daeb386b763335d8409bfc24;roar::5547;5547;"Digital Collections";roar +dedup::75cb7d44daeb386b763335d8409bfc24;roar::3514;3514;"Digital Collections";roar +dedup::75cb7d44daeb386b763335d8409bfc24;opendoar::2038;2038;"digital collections";OpenDOAR +dedup::763c1929833c7655b7094d235bbd0ee4;roar::4219;4219;"Electronic National University of Food Technologies Institutional Repository";roar +dedup::763c1929833c7655b7094d235bbd0ee4;opendoar::2391;2391;"electronic national university of food technologies institutional repository";OpenDOAR +dedup::76432021b8df485a53f19e859087b139;re3data::r3d100010346;r3d100010346;"Database of Genomic Variants";re3data +dedup::76432021b8df485a53f19e859087b139;https://fairsharing.org/10.25504/FAIRsharing.76044b;2663;"Database of Genomic Variants";FAIRsharing +dedup::765ad1f2e31a7fcb8babd79ee818dab1;re3data::r3d100013302;r3d100013302;"EU Clinical Trial Register";re3data +dedup::765ad1f2e31a7fcb8babd79ee818dab1;https://fairsharing.org/10.25504/FAIRsharing.566n8c;2271;"EU Clinical Trial Register";FAIRsharing +dedup::7697c56c443150735a42034d7d1cca2c;roar::17598;17598;"Aperta - Turkey Open Archive";roar +dedup::7697c56c443150735a42034d7d1cca2c;opendoar::10288;10288;"aperta turkey open archive";OpenDOAR +dedup::769da4d3a713641b159b78c4c924bdd4;roar::16085;16085;"RhinoSec - Repository of the Faculty of Security Studies";roar +dedup::769da4d3a713641b159b78c4c924bdd4;opendoar::9514;9514;"rhinosec - repository of the faculty of security studies";OpenDOAR +dedup::76c2d06d37cd765388f0bef5e078d0a7;re3data::r3d100012894;r3d100012894;"LinkedEarth Wiki";re3data +dedup::76c2d06d37cd765388f0bef5e078d0a7;https://fairsharing.org/fairsharing_records/3222;3222;"Linked Earth Wiki";FAIRsharing +dedup::76ebbe17e8209e033182fe7489ef315e;roar::340;340;"DigitalCommons@Simmons ";roar +dedup::76ebbe17e8209e033182fe7489ef315e;opendoar::435;435;"digitalcommons@simmons";OpenDOAR +dedup::7718eaf66ab2bb9fb0350a7538f0be1e;roar::3108;3108;"Fotografía Sobre España en el Siglo XIX";roar +dedup::7718eaf66ab2bb9fb0350a7538f0be1e;opendoar::1912;1912;"fotografía sobre españa en el siglo xix";OpenDOAR +dedup::776433ad7f730129bb72d9674bd4d660;roar::5584;5584;"Warwick Digital Library";roar +dedup::776433ad7f730129bb72d9674bd4d660;opendoar::1485;1485;"warwick digital library";OpenDOAR +dedup::776a62b090ad4b7ddaf01a75bd8b1958;opendoar::2575;2575;"electronic zhytomyr state technological university institutional repository";OpenDOAR +dedup::776a62b090ad4b7ddaf01a75bd8b1958;roar::5645;5645;"eZTUIR – Electronic Zhytomyr State Technological University Institutional Repository";roar +dedup::7771e2f7bbf44e5e77817fd974bfbcd1;opendoar::2046;2046;"electronic archive donetsk national technical university";OpenDOAR +dedup::7771e2f7bbf44e5e77817fd974bfbcd1;roar::5560;5560;"Electronic Archive Donetsk National Technical University";roar +dedup::777ea062ef07fb06ea3d95c4e5fb41c9;roar::2471;2471;"Qatar University Institutional Repository";roar +dedup::777ea062ef07fb06ea3d95c4e5fb41c9;opendoar::1664;1664;"qatar university institutional repository";OpenDOAR +dedup::77a20e7967fd2d11c913052fce9c1165;opendoar::704;704;"umw libraries digital collections";OpenDOAR +dedup::77a20e7967fd2d11c913052fce9c1165;opendoar::6099;6099;"uwm libraries digital collections";OpenDOAR +dedup::77a6542a2266a0034470ffb1251e6910;roar::2646;2646;"Biblioteca Digital do IPB";roar +dedup::77a6542a2266a0034470ffb1251e6910;roar::2980;2980;"Biblioteca Digital do IPB";roar +dedup::77a6542a2266a0034470ffb1251e6910;opendoar::1255;1255;"biblioteca digital do ipb";OpenDOAR +dedup::77bc256040eda87bc8f18f6df0331177;roar::10665;10665;"Repository of University of Primorska";roar +dedup::77bc256040eda87bc8f18f6df0331177;opendoar::3506;3506;"repository of university of primorska";OpenDOAR +dedup::77cbb16e82a7860e143660ae582611cd;roar::10277;10277;"Tezukayama University Repository";roar +dedup::77cbb16e82a7860e143660ae582611cd;opendoar::3493;3493;"tezukayama university repository";OpenDOAR +dedup::77e08b427ce70d4e0eff70c50c2e7038;re3data::r3d100013148;r3d100013148;"Blackfynn Discover";re3data +dedup::77e08b427ce70d4e0eff70c50c2e7038;https://fairsharing.org/10.25504/FAIRsharing.PD1PEt;2833;"Blackfynn Discover";FAIRsharing +dedup::77e183e3ba1af020adc2f403cb119eed;roar::1041;1041;"Publikationsserver der Universität Potsdam";roar +dedup::77e183e3ba1af020adc2f403cb119eed;roar::1043;1043;"Publikationsserver der Universität Potsdam";roar +dedup::77e183e3ba1af020adc2f403cb119eed;roar::1042;1042;"Publikationsserver der Universität Potsdam";roar +dedup::77e6416ecffb0d0e4f586fc355f17733;opendoar::3083;3083;"scivie";OpenDOAR +dedup::77e6416ecffb0d0e4f586fc355f17733;roar::8498;8498;"SciVie";roar +dedup::7801a552a435b63fad3390ca772b9f03;roar::5442;5442;"Cybertesis Perú";roar +dedup::7801a552a435b63fad3390ca772b9f03;roar::277;277;"Cybertesis Perú";roar +dedup::78052173a9f2268d54b71fc0f2063af1;roar::1193;1193;"SeDiCI";roar +dedup::78052173a9f2268d54b71fc0f2063af1;re3data::r3d100013445;r3d100013445;"SEDICI";re3data +dedup::7815391a98bf6d325f9caeb15f0c517a;opendoar::2816;2816;"recil - repositório científico lusófona";OpenDOAR +dedup::7815391a98bf6d325f9caeb15f0c517a;roar::13747;13747;"ReCiL : Repositório Científico Lusófona";roar +dedup::781f5ab8f728b6c0ebfb28ebed529053;roar::5131;5131;"Kolbuszowa Digital Library";roar +dedup::781f5ab8f728b6c0ebfb28ebed529053;opendoar::2462;2462;"kolbuszowa digital library";OpenDOAR +dedup::783ae8782b26abf384df2c52e9bcbd5f;opendoar::2280;2280;"greater cincinnati memory project";OpenDOAR +dedup::783ae8782b26abf384df2c52e9bcbd5f;roar::4942;4942;"Greater Cincinnati Memory Project";roar +dedup::7844d4aeb9ae6d138e99bb640b3bd892;roar::4296;4296;"Online Collection";roar +dedup::7844d4aeb9ae6d138e99bb640b3bd892;opendoar::2329;2329;"online collection";OpenDOAR +dedup::7857f0ca90b3cbb8baa608052d5456b1;roar::2665;2665;"Biblioteca Digital | Sistema Integrado de Documentación | UNCuyo.";roar +dedup::7857f0ca90b3cbb8baa608052d5456b1;roar::133;133;"Biblioteca Digital | Sistema Integrado de Documentación | UNCuyo";roar +dedup::78594b91c935877060f4fad7c47a2a21;https://fairsharing.org/10.25504/FAIRsharing.p7btsb;2342;"CropPAL";FAIRsharing +dedup::78594b91c935877060f4fad7c47a2a21;re3data::r3d100011637;r3d100011637;"cropPAL";re3data +dedup::7866085b795f3fb1371d8563f7c50fe0;opendoar::1249;1249;"university of limerick institutional repository";OpenDOAR +dedup::7866085b795f3fb1371d8563f7c50fe0;roar::1391;1391;"University of Limerick Institutional Repository";roar +dedup::7875b14c34abdc2986e428ac9dee91e8;opendoar::1704;1704;"culturally authentic pictorial lexicon";OpenDOAR +dedup::7875b14c34abdc2986e428ac9dee91e8;roar::2339;2339;"Culturally Authentic Pictorial Lexicon";roar +dedup::788148bebe544ea26dbb759a1ca54241;re3data::r3d100012409;r3d100012409;"Nottingham Research Data Management Repository";re3data +dedup::788148bebe544ea26dbb759a1ca54241;opendoar::3902;3902;"nottingham research data management repository";OpenDOAR +dedup::788c7cf4b8a05463583b0bd6cb052021;roar::13520;13520;"Narotama University Repository";roar +dedup::788c7cf4b8a05463583b0bd6cb052021;opendoar::7587;7587;"narotama university repository";OpenDOAR +dedup::78ce8945021e3607f2ca8878ca16ce65;opendoar::1469;1469;"deakin research online";OpenDOAR +dedup::78ce8945021e3607f2ca8878ca16ce65;roar::4616;4616;"Deakin Research Online";roar +dedup::78ce8945021e3607f2ca8878ca16ce65;re3data::r3d100011274;r3d100011274;"Deakin Research Online";re3data +dedup::78ce8945021e3607f2ca8878ca16ce65;roar::288;288;"Deakin Research Online";roar +dedup::78e25bb8d5250e31e55fa060fe89ec26;roar::3368;3368;"Chaoyang University of Technology Institutional Repository";roar +dedup::78e25bb8d5250e31e55fa060fe89ec26;opendoar::1993;1993;"chaoyang university of technology institutional repository";OpenDOAR +dedup::78f9ad03be465f3bebea69fd765b21f9;roar::2760;2760;"Repositorio Institucional del Centro Atomico Bariloche y el Instituto Balseiro";roar +dedup::78f9ad03be465f3bebea69fd765b21f9;opendoar::1817;1817;"repositorio institucional del centro atomico bariloche y el instituto balseiro";OpenDOAR +dedup::78fd7f7c99e6d87a0f5bf2904ea1f22a;https://fairsharing.org/10.25504/FAIRsharing.3epmpp;2453;"Mendeley Data";FAIRsharing +dedup::78fd7f7c99e6d87a0f5bf2904ea1f22a;opendoar::3881;3881;"mendeley data";OpenDOAR +dedup::78fd7f7c99e6d87a0f5bf2904ea1f22a;re3data::r3d100011868;r3d100011868;"Mendeley Data";re3data +dedup::7936365f79416495447b82d0de7037c2;https://fairsharing.org/10.25504/FAIRsharing.809b50;3086;"Quinte West Open GIS Data Portal";FAIRsharing +dedup::7936365f79416495447b82d0de7037c2;re3data::r3d100013023;r3d100013023;"Quinte West Open GIS Data Portal";re3data +dedup::795d8fc9396a3f26635ccd958d34f93e;roar::11574;11574;"mdw Repository";roar +dedup::795d8fc9396a3f26635ccd958d34f93e;re3data::r3d100012108;r3d100012108;"mdw Repository";re3data +dedup::7961e89b51e10a3605fc759c0d406ee7;re3data::r3d100013295;r3d100013295;"Complex Portal";re3data +dedup::7961e89b51e10a3605fc759c0d406ee7;https://fairsharing.org/10.25504/FAIRsharing.wP3t2L;2679;"Complex Portal";FAIRsharing +dedup::796c3e662e6e9ed5b5945b27c3dce262;opendoar::1773;1773;"openarchive@gsom (открытый архив высшей школы менеджмента)";OpenDOAR +dedup::796c3e662e6e9ed5b5945b27c3dce262;roar::2751;2751;"OpenArchive@GSOM";roar +dedup::797ca64fd45f0a6aab6a43873f45fb74;roar::5445;5445;"Institutional Repository";roar +dedup::797ca64fd45f0a6aab6a43873f45fb74;opendoar::1226;1226;"institutional repository";OpenDOAR +dedup::798ed08ab170ac76992bb4395c4122c7;https://fairsharing.org/10.25504/FAIRsharing.c28bae;3580;"Geothermal Data Repository";FAIRsharing +dedup::798ed08ab170ac76992bb4395c4122c7;re3data::r3d100011915;r3d100011915;"Geothermal Data Repository";re3data +dedup::79c1c6f1163ededc0370f2b97ecf2eda;opendoar::3475;3475;"okina";OpenDOAR +dedup::79c1c6f1163ededc0370f2b97ecf2eda;roar::12348;12348;"Okina";roar +dedup::79e61f8342a583571bbac807dbfa2a50;roar::9892;9892;"Repositorio Institucional INGEMMET";roar +dedup::79e61f8342a583571bbac807dbfa2a50;opendoar::2991;2991;"repositorio institucional ingemmet";OpenDOAR +dedup::79e61f8342a583571bbac807dbfa2a50;roar::15140;15140;"Repositorio Institucional INGEMMET";roar +dedup::79f80e2fd7b879e9c55d7ee97a99b999;roar::5706;5706;"Electronic Institutional Repository Pryazovskyi State Technical University (Електронний інституційний репозиторій Приазовського державного технічного університету)";roar +dedup::79f80e2fd7b879e9c55d7ee97a99b999;opendoar::2525;2525;"electronic institutional repository of pryazovskyi state technical university (електронний інституційний репозиторій приазовського державного технічного університету)";OpenDOAR +dedup::7a02ede085122c6edabbf2e50f88582e;roar::10013;10013;"ErUCU: Electronic repository of the Ukrainian Catholic University";roar +dedup::7a02ede085122c6edabbf2e50f88582e;opendoar::3410;3410;"erucu: electronic repository of the ukrainian catholic university";OpenDOAR +dedup::7a073afdccecaac136e64fd415f1e4da;https://fairsharing.org/10.25504/FAIRsharing.5q1p14;1661;"Genomes OnLine Database";FAIRsharing +dedup::7a073afdccecaac136e64fd415f1e4da;re3data::r3d100010808;r3d100010808;"Genomes OnLine Database";re3data +dedup::7a14d0f59665a5c47eb7900d41575269;opendoar::3725;3725;"ocad university open research repository";OpenDOAR +dedup::7a14d0f59665a5c47eb7900d41575269;roar::10339;10339;"OCAD University Open Research Repository";roar +dedup::7a4316c249caf4f6dadc95bd7d2f78b9;roar::14288;14288;"RIStocar - Repository of the Institute of Animal Husbandry";roar +dedup::7a4316c249caf4f6dadc95bd7d2f78b9;opendoar::4207;4207;"ristocar - repository of the institute of animal husbandry";OpenDOAR +dedup::7a4a0e9d2ef7b8f4c8ac762a0b5fa2c5;re3data::r3d100010191;r3d100010191;"Biological Magnetic Resonance Data Bank";re3data +dedup::7a4a0e9d2ef7b8f4c8ac762a0b5fa2c5;opendoar::2963;2963;"biological magnetic resonance data bank";OpenDOAR +dedup::7a4bc201ae70b22c057b4b98337615a8;opendoar::2351;2351;"william & mary law school scholarship repository";OpenDOAR +dedup::7a4bc201ae70b22c057b4b98337615a8;roar::4463;4463;"William & Mary Law School Scholarship Repository";roar +dedup::7a6371de5e40ca839e1bddb869192671;opendoar::1445;1445;"b-digital";OpenDOAR +dedup::7a6371de5e40ca839e1bddb869192671;roar::4687;4687;"B-Digital";roar +dedup::7a7dc075f38d243a0ba70c18d98958c7;https://fairsharing.org/10.25504/FAIRsharing.e16565;3069;"World Radiation Data Centre";FAIRsharing +dedup::7a7dc075f38d243a0ba70c18d98958c7;re3data::r3d100010177;r3d100010177;"World Radiation Data Centre";re3data +dedup::7aa77652e090d37e2bf26cee672b4c93;roar::4354;4354;"Institutional Repository of Dalian Institute of Chemical Physics";roar +dedup::7aa77652e090d37e2bf26cee672b4c93;opendoar::2305;2305;"institutional repository of dalian institute of chemical physics, cas";OpenDOAR +dedup::7aa77652e090d37e2bf26cee672b4c93;roar::4270;4270;"Institutional Repository of Dalian Institute of Chemical Physics";roar +dedup::7aa8c037f8c92f03f84fb7c2fadb9761;roar::379;379;"Dryad";roar +dedup::7aa8c037f8c92f03f84fb7c2fadb9761;opendoar::1475;1475;"dryad";OpenDOAR +dedup::7aedf7abb19f0d068d6da6c1332e58af;opendoar::1530;1530;"digital online collection of knowledge and scholarship";OpenDOAR +dedup::7aedf7abb19f0d068d6da6c1332e58af;opendoar::5057;5057;"nc digital online collection of knowledge and scholarship";OpenDOAR +dedup::7af23caad8093996ddbb2f144095ba43;roar::10253;10253;"Digital Commons @ Gardner-Webb University";roar +dedup::7af23caad8093996ddbb2f144095ba43;opendoar::3554;3554;"digital commons @ gardner-webb university";OpenDOAR +dedup::7af5acd7335c4ec98fcdab5b4ce58562;roar::7151;7151;"Welcome to IR@NPL ";roar +dedup::7af5acd7335c4ec98fcdab5b4ce58562;roar::7161;7161;"Welcome to IR@NPL ";roar +dedup::7af67fd32c06af93a74952935b7cefec;opendoar::3465;3465;"repositório institucional unifesp";OpenDOAR +dedup::7af67fd32c06af93a74952935b7cefec;roar::13474;13474;"Repositório Institucional UNIFESP";roar +dedup::7b1986cb85e870fe59b1aee99e458cdc;roar::5423;5423;"DSpace at The College of William and Mary";roar +dedup::7b1986cb85e870fe59b1aee99e458cdc;opendoar::1583;1583;"dspace at the college of william and mary";OpenDOAR +dedup::7b1d320cf2eb1a079261ef20c840f487;roar::7262;7262;"ARES - Acervo de Recursos Educacionais em Saúde";roar +dedup::7b1d320cf2eb1a079261ef20c840f487;opendoar::2748;2748;"ares - acervo de recursos educacionais em saúde";OpenDOAR +dedup::7baaeaaaf612ac9e52764d769b583652;roar::9142;9142;"Online Publikationsserver OPUS der Hochschule Osnabrück";roar +dedup::7baaeaaaf612ac9e52764d769b583652;opendoar::2533;2533;"online publikationsserver opus der hochschule osnabrück";OpenDOAR +dedup::7bc06bd8551168af52b91232c69ebaee;opendoar::9438;9438;"kırşehir ahi evran university institutional repository";OpenDOAR +dedup::7bc06bd8551168af52b91232c69ebaee;roar::15306;15306;"Kırşehir Ahi Evran University Institutional Repository";roar +dedup::7c2db6463030db37cc555e7fab43a9f5;roar::9529;9529;"South East Kenya University Digital Repository";roar +dedup::7c2db6463030db37cc555e7fab43a9f5;opendoar::3283;3283;"south eastern kenya university digital repository";OpenDOAR +dedup::7c4f65867eb9a021ace3f8f7872d3ef3;opendoar::2928;2928;"repositorio institucional escuela de ingenieria de antioquia";OpenDOAR +dedup::7c4f65867eb9a021ace3f8f7872d3ef3;roar::7076;7076;"Repositorio Institucional Escuela de Ingenieria de Antioquia";roar +dedup::7c5a8b728e98b8d9e438afde4500e177;opendoar::2111;2111;"repositório institucional da universidade federal do rio grande do norte";OpenDOAR +dedup::7c5a8b728e98b8d9e438afde4500e177;roar::5189;5189;"Repositório Institucional da Universidade Federal do Rio Grande do Norte";roar +dedup::7c6720a14b67b57419722101e3070d33;roar::15611;15611;"Selçuk University Institutional Repository";roar +dedup::7c6720a14b67b57419722101e3070d33;opendoar::4883;4883;"selcuk university institutional repository";OpenDOAR +dedup::7c73b333eb06659937b338fa625febbf;opendoar::2318;2318;"iława biblioteka cyrfrowa (iława digital library)";OpenDOAR +dedup::7c73b333eb06659937b338fa625febbf;roar::5503;5503;"Iława Biblioteka Cyrfrowa (Iława Digital Library)";roar +dedup::7c73b333eb06659937b338fa625febbf;roar::4271;4271;"Iława Biblioteka Cyrfrowa (Iława Digital Library)";roar +dedup::7c89ea17a5012778fc7ab965262c3689;roar::702;702;"Internet Archive";roar +dedup::7c89ea17a5012778fc7ab965262c3689;opendoar::595;595;"internet archive";OpenDOAR +dedup::7c8c3aa9e8f25931c460b4873505ce91;opendoar::1332;1332;"claremont colleges digital library";OpenDOAR +dedup::7c8c3aa9e8f25931c460b4873505ce91;roar::5581;5581;"Claremont Colleges Digital Library";roar +dedup::7cd26a7524c7a91212658afd55cfe9f9;roar::3217;3217;"PSU Knowledge Bank";roar +dedup::7cd26a7524c7a91212658afd55cfe9f9;opendoar::1957;1957;"psu knowledge bank";OpenDOAR +dedup::7cd26a7524c7a91212658afd55cfe9f9;roar::2634;2634;"PSU Knowledge Bank";roar +dedup::7cd2cbc48c667e685067ce2a77ce5497;re3data::r3d100011298;r3d100011298;"Nuclear Receptor Signaling Atlas";re3data +dedup::7cd2cbc48c667e685067ce2a77ce5497;https://fairsharing.org/10.25504/FAIRsharing.vszknv;2169;"Nuclear Receptor Signaling Atlas";FAIRsharing +dedup::7ce2f7cf9d74fd1364db9e8af013e5c3;roar::3893;3893;"Biblioteka Humanistyczna (Humanist Library)";roar +dedup::7ce2f7cf9d74fd1364db9e8af013e5c3;opendoar::2169;2169;"biblioteka humanistyczna (humanist library)";OpenDOAR +dedup::7d12e8b3ac42a270848750109334dff8;opendoar::2504;2504;"memorial university research repository";OpenDOAR +dedup::7d12e8b3ac42a270848750109334dff8;roar::5415;5415;"Memorial University Research Repository";roar +dedup::7d8374dfdcaa20f5d004609d61f76fb5;opendoar::3635;3635;"repositorio institucional uladech católica";OpenDOAR +dedup::7d8374dfdcaa20f5d004609d61f76fb5;roar::15141;15141;"Repositorio Institucional ULADECH CATÓLICA";roar +dedup::7d956046e51f9c79feecffe2a01201a1;roar::3784;3784;"Repositório Institucional da Universidade Federal do Rio Grande - FURG";roar +dedup::7d956046e51f9c79feecffe2a01201a1;opendoar::2174;2174;"repositório institucional da universidade federal do rio grande";OpenDOAR +dedup::7da2dc4afabd2d8a2ba63e9b89a79da5;opendoar::1266;1266;"vbn";OpenDOAR +dedup::7da2dc4afabd2d8a2ba63e9b89a79da5;roar::5545;5545;"VBN";roar +dedup::7dbaf20daefc9f0eb88def5d76a077e9;https://fairsharing.org/10.25504/FAIRsharing.8b7a2f;3022;"Fisheries and Oceans Canada Pacific Region Data Archive";FAIRsharing +dedup::7dbaf20daefc9f0eb88def5d76a077e9;re3data::r3d100010929;r3d100010929;"Fisheries and Oceans Canada Pacific Region Data Archive";re3data +dedup::7dbc82739d9c2b497bbf5abc0867def5;opendoar::4560;4560;"irta pubpro";OpenDOAR +dedup::7dbc82739d9c2b497bbf5abc0867def5;roar::14763;14763;"IRTA Pubpro";roar +dedup::7e354576ee11027859c5f1ad9767a7fd;roar::5681;5681;"Kagoshima University Repository";roar +dedup::7e354576ee11027859c5f1ad9767a7fd;opendoar::964;964;"kagoshima university repository";OpenDOAR +dedup::7e354576ee11027859c5f1ad9767a7fd;roar::747;747;"Kagoshima University Repository";roar +dedup::7eddf0c188501b520962dc3a0e14427e;https://fairsharing.org/10.25504/FAIRsharing.cnwx8c;2110;"UNITE";FAIRsharing +dedup::7eddf0c188501b520962dc3a0e14427e;re3data::r3d100011316;r3d100011316;"UNITE";re3data +dedup::7ee07d29280a34a26c8869fdd1d083d5;roar::343;343;"DigitalCommons@UConn";roar +dedup::7ee07d29280a34a26c8869fdd1d083d5;opendoar::98;98;"digitalcommons@uconn";OpenDOAR +dedup::7eeed117ed425c1c14dfc70e9b8569ec;roar::5533;5533;"Cybertesis Pontificia Universidad Católica de Valparaíso";roar +dedup::7eeed117ed425c1c14dfc70e9b8569ec;opendoar::839;839;"cybertesis pontificia universidad católica de valparaíso";OpenDOAR +dedup::7ef1e45a1ac571965246d19f7f330221;re3data::r3d100012156;r3d100012156;"Open Research Data Online";re3data +dedup::7ef1e45a1ac571965246d19f7f330221;https://fairsharing.org/fairsharing_records/3178;3178;"Open Research Data Online";FAIRsharing +dedup::7f1adfad33a62a098b07a49d39785649;roar::16962;16962;"Repositorio Cientifico del Instituto Nacional de Salud";roar +dedup::7f1adfad33a62a098b07a49d39785649;opendoar::10087;10087;"repositorio cientifico del instituto nacional de salud";OpenDOAR +dedup::7f5adcd83bf42ff9a316cb3170428f62;roar::526;526;"ePublish@UTD";roar +dedup::7f5adcd83bf42ff9a316cb3170428f62;opendoar::468;468;"epublish@utd";OpenDOAR +dedup::7f6d91e6d1f3a20e9d946270c9561a7e;roar::3634;3634;"Cybertesis - USMP";roar +dedup::7f6d91e6d1f3a20e9d946270c9561a7e;roar::5492;5492;"Cybertesis USMP";roar +dedup::7f983867bb74df996b46386d2fcee29c;opendoar::3501;3501;"ihu institutional repository";OpenDOAR +dedup::7f983867bb74df996b46386d2fcee29c;roar::10456;10456;"IHU Institutional Repository";roar +dedup::7fabba37d6f99b0a736d4207b2625751;opendoar::2054;2054;"ore digital library";OpenDOAR +dedup::7fabba37d6f99b0a736d4207b2625751;roar::3577;3577;"ORE Digital Library";roar +dedup::7fea557bd4f38e8978e095ecc682eab7;re3data::r3d100011973;r3d100011973;"NSF Arctic Data Center";re3data +dedup::7fea557bd4f38e8978e095ecc682eab7;https://fairsharing.org/10.25504/FAIRsharing.6QPjtA;3021;"NSF Arctic Data Center";FAIRsharing +dedup::7fed40960809e89d66e4db059f1ef0c8;re3data::r3d100010490;r3d100010490;"Finnish Social Science Data Archive";re3data +dedup::7fed40960809e89d66e4db059f1ef0c8;https://fairsharing.org/10.25504/FAIRsharing.2okP6D;2997;"Finnish Social Science Data Archive";FAIRsharing +dedup::7ff0a9d360b2b678b60743b0a7fba454;roar::303;303;"Digital Commons @ Butler University";roar +dedup::7ff0a9d360b2b678b60743b0a7fba454;opendoar::1600;1600;"digital commons @ butler university";OpenDOAR +dedup::7ffd7e2e2fd5b9c94f90d3c358b762e4;opendoar::9382;9382;"repositorio institucional digital de la universidad nacional del altiplano";OpenDOAR +dedup::7ffd7e2e2fd5b9c94f90d3c358b762e4;roar::15339;15339;"REPOSITORIO INSTITUCIONAL DIGITAL DE LA UNIVERSIDAD NACIONAL DEL ALTIPLANO";roar +dedup::8008c813ab8a772cddf4e9ad3ee56bd8;roar::3019;3019;"Colpos digital";roar +dedup::8008c813ab8a772cddf4e9ad3ee56bd8;opendoar::1878;1878;"colpos digital";OpenDOAR +dedup::804495065af93724dc0010bf57716353;roar::3194;3194;"Georgetown Law Scholarly Commons";roar +dedup::804495065af93724dc0010bf57716353;opendoar::1955;1955;"georgetown law scholarly commons";OpenDOAR +dedup::804be91377032a0474e8a26df54426c6;opendoar::1263;1263;"dugimedia – universitat de girona";OpenDOAR +dedup::804be91377032a0474e8a26df54426c6;roar::447;447;"DUGiMedia – Universitat de Girona ";roar +dedup::80745e63a39c0dab12fb3965b46d3f24;https://fairsharing.org/10.25504/FAIRsharing.LdoU1I;2977;"International Mouse Phenotyping Consortium";FAIRsharing +dedup::80745e63a39c0dab12fb3965b46d3f24;re3data::r3d100010636;r3d100010636;"International Mouse Phenotyping Consortium";re3data +dedup::809e2e33895b8a647d6c11a09206953b;re3data::r3d100011840;r3d100011840;"Mexican Health and Aging Study";re3data +dedup::809e2e33895b8a647d6c11a09206953b;https://fairsharing.org/10.25504/FAIRsharing.n8qft8;2251;"Mexican Health and Aging Study";FAIRsharing +dedup::80aad488c988db52070459762594e6a5;re3data::r3d100012627;r3d100012627;"BioStudies";re3data +dedup::80aad488c988db52070459762594e6a5;https://fairsharing.org/10.25504/FAIRsharing.mtjvme;2507;"BioStudies";FAIRsharing +dedup::80b0f5728fad5638a177a57799970ac1;roar::3768;3768;"Digital Online Repository and Information System";roar +dedup::80b0f5728fad5638a177a57799970ac1;opendoar::2129;2129;"digital online repository and information system";OpenDOAR +dedup::812715200efa63ee24fa5b92c860a72a;roar::2333;2333;"National Sun Yat-sen University Institutional Repository";roar +dedup::812715200efa63ee24fa5b92c860a72a;opendoar::1296;1296;"national sun yat-sen university institutional repository";OpenDOAR +dedup::81389e80625d7534f741d15202301ff2;roar::6393;6393;"Situs Penyimpanan Data Ilmiah - Universitas Andalas";roar +dedup::81389e80625d7534f741d15202301ff2;roar::2649;2649;"Situs Penyimpanan Data Ilmiah - Universitas Andalas";roar +dedup::813a7c6a11008b073b6d262853dc5079;roar::7369;7369;"RIBERDIS";roar +dedup::813a7c6a11008b073b6d262853dc5079;opendoar::2736;2736;"riberdis";OpenDOAR +dedup::81764d41c96b383b94c1f6a068b75a49;opendoar::907;907;"sas-space";OpenDOAR +dedup::81764d41c96b383b94c1f6a068b75a49;roar::3467;3467;"SAS-SPACE";roar +dedup::817bbc0bf5554c620e75f6cd0833d384;opendoar::2218;2218;"indian institute of petroleum institutional repository";OpenDOAR +dedup::817bbc0bf5554c620e75f6cd0833d384;roar::4059;4059;"Indian Institute of Petroleum Institutional Repository";roar +dedup::817d693524668badb405ba6290ab1c14;opendoar::1761;1761;"biens culturels africains";OpenDOAR +dedup::817d693524668badb405ba6290ab1c14;roar::2607;2607;"Biens Culturels Africains";roar +dedup::81c96b71e1c75bdef412a8673e6565cd;opendoar::1702;1702;"ethics in science and engineering national clearinghouse";OpenDOAR +dedup::81c96b71e1c75bdef412a8673e6565cd;roar::4962;4962;"Ethics in Science and Engineering National Clearinghouse";roar +dedup::81d875813b8a1b42113e16078ab7f8ff;opendoar::2035;2035;"thai agricultural research repository (เครือข่ายสารสนเทศงานวิจัยเกษตรไทย)";OpenDOAR +dedup::81d875813b8a1b42113e16078ab7f8ff;roar::3127;3127;"Thai Agricultural Research Repository: เครือข่ายสารสนเทศงานวิจัยเกษตรไทย";roar +dedup::820e94472e2ee758c758da47e31d9cde;roar::4649;4649;"IIT Bombay Institutional Repository";roar +dedup::820e94472e2ee758c758da47e31d9cde;roar::4612;4612;"IIT Bombay Institutional Repository";roar +dedup::824eb22fb0321bdc73768faef2ea49c4;re3data::r3d100010701;r3d100010701;"ScholarSphere";re3data +dedup::824eb22fb0321bdc73768faef2ea49c4;roar::6033;6033;"ScholarSphere";roar +dedup::824eb22fb0321bdc73768faef2ea49c4;opendoar::2571;2571;"scholarsphere";OpenDOAR +dedup::8265645b40247eed9a5aafa4a55a1cb7;roar::5438;5438;"Biblioteca Virtual Silverio Lanza";roar +dedup::8265645b40247eed9a5aafa4a55a1cb7;roar::4621;4621;"Biblioteca Virtual Silverio Lanza";roar +dedup::8265645b40247eed9a5aafa4a55a1cb7;opendoar::2397;2397;"biblioteca virtual silverio lanza";OpenDOAR +dedup::82a6a954975d0324a4028371c4015bb0;roar::2530;2530;"Greenwich Academic Literature Archive";roar +dedup::82a6a954975d0324a4028371c4015bb0;opendoar::1756;1756;"greenwich academic literature archive";OpenDOAR +dedup::82a7e0457f6fab1d0316ff55e5d64233;opendoar::827;827;"national engineering education delivery system";OpenDOAR +dedup::82a7e0457f6fab1d0316ff55e5d64233;roar::5404;5404;"National Engineering Education Delivery System";roar +dedup::82b57df90485279810a73aa13db727dc;opendoar::2480;2480;"virtual library on capacity development";OpenDOAR +dedup::82b57df90485279810a73aa13db727dc;roar::5253;5253;"Virtual Library on Capacity Development";roar +dedup::82f7135cc9ce0b48cd792fceb91f86b1;https://fairsharing.org/10.25504/FAIRsharing.pwgf4p;2300;"Japanese Genotype-phenotype Archive";FAIRsharing +dedup::82f7135cc9ce0b48cd792fceb91f86b1;re3data::r3d100012689;r3d100012689;"Japanese Genotype-phenotype Archive";re3data +dedup::82fe79971252111d345e4b2ba6d1e916;roar::4437;4437;"Edudoc";roar +dedup::82fe79971252111d345e4b2ba6d1e916;roar::3555;3555;"EduDoc";roar +dedup::82fe79971252111d345e4b2ba6d1e916;opendoar::1525;1525;"edudoc";OpenDOAR +dedup::8314d6f41db4fc4efae217867dfc2cbc;roar::1363;1363;"UCL Discovery";roar +dedup::8314d6f41db4fc4efae217867dfc2cbc;opendoar::322;322;"ucl discovery";OpenDOAR +dedup::8314d6f41db4fc4efae217867dfc2cbc;re3data::r3d100012417;r3d100012417;"UCL Discovery";re3data +dedup::838c79261a854818dc3dc61e0669189f;opendoar::9670;9670;"repositorio del instituto para la investigación educativa y el desarrollo pedagógico";OpenDOAR +dedup::838c79261a854818dc3dc61e0669189f;roar::16091;16091;"Repositorio del Instituto para la Investigación Educativa y el Desarrollo Pedagógico (IDEP)";roar +dedup::83a380550c969f9aea05c64326ce45e3;roar::3470;3470;"Repositório Científico do Instituto Politécnico de Viseu";roar +dedup::83a380550c969f9aea05c64326ce45e3;opendoar::2017;2017;"repositório científico do instituto politécnico de viseu";OpenDOAR +dedup::83f7c3a2b095a2179bcc328f658b6b07;opendoar::10075;10075;"bolu abant i̇zzet baysal university institutional repository";OpenDOAR +dedup::83f7c3a2b095a2179bcc328f658b6b07;roar::16892;16892;"Bolu Abant İzzet Baysal University Institutional Repository";roar +dedup::83fd0f07a59a195937e8df69c2d41165;opendoar::2271;2271;"repository universitas padjadjaran";OpenDOAR +dedup::83fd0f07a59a195937e8df69c2d41165;roar::4105;4105;"Repository Universitas Padjadjaran";roar +dedup::8411e77821bab25e6c4588617ca6e17a;https://fairsharing.org/10.25504/FAIRsharing.7qBaJ0;2905;"Genome Warehouse";FAIRsharing +dedup::8411e77821bab25e6c4588617ca6e17a;re3data::r3d100013428;r3d100013428;"Genome Warehouse";re3data +dedup::8434d3bd36dec6749959a463e7ccb720;roar::6031;6031;"Repositorio Universitario de la DGTIC";roar +dedup::8434d3bd36dec6749959a463e7ccb720;opendoar::2573;2573;"repositorio universitario de la dgtic";OpenDOAR +dedup::8438cda6858505f952d0c02cd614205c;roar::9104;9104;"MacSphere";roar +dedup::8438cda6858505f952d0c02cd614205c;opendoar::1154;1154;"macsphere";OpenDOAR +dedup::84acaba096e2f926ecc1cfec3bbebb24;roar::7695;7695;"Digital library of Brno University of Technology";roar +dedup::84acaba096e2f926ecc1cfec3bbebb24;opendoar::2852;2852;"digital library of brno university of technology";OpenDOAR +dedup::84be1e3cd6dac0cd180f0026e1e78e51;roar::8868;8868;"Institutional Repository of Poltava V.G. Korolenko National Pedagogical University";roar +dedup::84be1e3cd6dac0cd180f0026e1e78e51;opendoar::4212;4212;"institutional repository of poltava v.g. korolenko national pedagogical university";OpenDOAR +dedup::84be1e3cd6dac0cd180f0026e1e78e51;roar::8873;8873;"Institutional Repository of Poltava V.G. Korolenko National Pedagogical University";roar +dedup::84c120e70e191b5bef8b828d4e02c12a;opendoar::3109;3109;"institutional repository of zhytomyr national agroecological university";OpenDOAR +dedup::84c120e70e191b5bef8b828d4e02c12a;roar::8840;8840;"Institutional Repository of Zhytomyr National Agroecological University ";roar +dedup::84cf6051b08018ae47e9e8b08767757b;https://fairsharing.org/10.25504/FAIRsharing.pwEima;3207;"BioSimulators";FAIRsharing +dedup::84cf6051b08018ae47e9e8b08767757b;re3data::r3d100013432;r3d100013432;"BioSimulators";re3data +dedup::85222dbbe5baab1f4b3238a61585f0f2;roar::6219;6219;"Welcome to Research Philadelphia University - Research Philadelphia University";roar +dedup::85222dbbe5baab1f4b3238a61585f0f2;roar::5949;5949;"Welcome to Research Philadelphia University - Research Philadelphia University";roar +dedup::85328bdb629b7e6dac8694b406f76f03;roar::4943;4943;"Repositório Institucional UFMS";roar +dedup::85328bdb629b7e6dac8694b406f76f03;roar::3757;3757;"Repositório Institucional UFMS";roar +dedup::853483d429cc1ba4c1e8ac054ff8d104;https://fairsharing.org/fairsharing_records/3118;3118;"Data Center for Aurora in NIPR";FAIRsharing +dedup::853483d429cc1ba4c1e8ac054ff8d104;re3data::r3d100010454;r3d100010454;"Data Center for Aurora in NIPR";re3data +dedup::85373d138a238369c2645cab077529f4;opendoar::871;871;"osaka university knowledge archive";OpenDOAR +dedup::85373d138a238369c2645cab077529f4;roar::989;989;"Osaka University Knowledge Archive";roar +dedup::854b0a8c5215bd3bd45997e6255ba4a3;opendoar::4238;4238;"ccu digital commons";OpenDOAR +dedup::854b0a8c5215bd3bd45997e6255ba4a3;roar::14052;14052;"CCU Digital Commons";roar +dedup::857a8f1065d29a3179ddd8e30ba1438c;roar::14170;14170;"Repository of Belarusian State Agrarian Technical University";roar +dedup::857a8f1065d29a3179ddd8e30ba1438c;opendoar::4262;4262;"repository of the belarusian state agrarian technical university";OpenDOAR +dedup::85acc8426bb9a966fd841e2777181277;roar::4939;4939;"European Centre for Minority Issues";roar +dedup::85acc8426bb9a966fd841e2777181277;opendoar::996;996;"european centre for minority issues";OpenDOAR +dedup::8663a941404fe5d2451d70d466fe52c7;roar::15251;15251;"Repositorio Institucional Neumann";roar +dedup::8663a941404fe5d2451d70d466fe52c7;roar::15859;15859;"Repositorio Institucional Neumann";roar +dedup::86709df2c09c687fd6a8f66c6240114f;roar::15039;15039;"MiCISAN";roar +dedup::86709df2c09c687fd6a8f66c6240114f;roar::15036;15036;"MiCISAN";roar +dedup::869b5bca06040fdc34b2dbdbbc85dd2f;roar::2870;2870;"Repositorio Digital IAEN";roar +dedup::869b5bca06040fdc34b2dbdbbc85dd2f;opendoar::1852;1852;"repositorio digital iaen";OpenDOAR +dedup::869f2cf8e60c46ce4152b1e5cbc67221;roar::10866;10866;"Nazarbayev University Repository";roar +dedup::869f2cf8e60c46ce4152b1e5cbc67221;opendoar::3434;3434;"nazarbayev university repository";OpenDOAR +dedup::86ba155e9ec34ccf6e2914d7089967cc;roar::4719;4719;"ETDs @ VT";roar +dedup::86ba155e9ec34ccf6e2914d7089967cc;opendoar::471;471;"etds @ vt";OpenDOAR +dedup::86bb55679b2c7155c57b1c45c7b14148;opendoar::1058;1058;"tokyo dental college institutional repository : irucaa@tdc";OpenDOAR +dedup::86bb55679b2c7155c57b1c45c7b14148;roar::1300;1300;"Tokyo Dental College Institutional Repository : IRUCAA@TDC";roar +dedup::86cbd6828920cc78baa0c82216e2e567;roar::17012;17012;"Академічний репозиторій Комунального закладу Харківська гуманітарно-педагогічна академія Харківської обласної ради/Academic repository of Municipal Establishment Kharkiv Humanitarian and Pedagogical Academy of the Kharkiv Regional Council";roar +dedup::86cbd6828920cc78baa0c82216e2e567;opendoar::10103;10103;"academic repository of municipal establishment kharkiv humanitarian and pedagogical academy of the kharkiv regional council";OpenDOAR +dedup::870489c446034e804bfaf66ad77d8d76;https://fairsharing.org/fairsharing_records/3187;3187;"Water Quality Portal";FAIRsharing +dedup::870489c446034e804bfaf66ad77d8d76;re3data::r3d100012920;r3d100012920;"Water Quality Portal";re3data +dedup::8730605815a60fe6262f4bd77d45f5ad;roar::4977;4977;"Bulgarian Digital Mathematics Library at IMI-BAS";roar +dedup::8730605815a60fe6262f4bd77d45f5ad;opendoar::1694;1694;"bulgarian digital mathematics library at imi-bas";OpenDOAR +dedup::87850d323f096fd3ba03d3785a0c9131;roar::1558;1558;"National Chiayi University Institutiional Repository 嘉義大學機構典藏 : 主頁";roar +dedup::87850d323f096fd3ba03d3785a0c9131;roar::892;892;"National Chiayi University Institutional Repository";roar +dedup::87850d323f096fd3ba03d3785a0c9131;roar::2674;2674;"National Chiayi University Institutional repository";roar +dedup::87cb1311d830e02badbfb31dbb907b60;opendoar::2638;2638;"borys grinchenko kyiv university institutional repository";OpenDOAR +dedup::87cb1311d830e02badbfb31dbb907b60;roar::6589;6589;"Borys Grinchenko Kyiv University Institutional repository";roar +dedup::880845aa734b279b4328c053ee1534ee;roar::7230;7230;"Embry-Riddle Aeronautical University Scholarly Commons";roar +dedup::880845aa734b279b4328c053ee1534ee;opendoar::4063;4063;"embry-riddle aeronautical university scholarly commons";OpenDOAR +dedup::881d536ec754c25ff69b9e354fa3035b;opendoar::1864;1864;"okayama university scientific achievement repository";OpenDOAR +dedup::881d536ec754c25ff69b9e354fa3035b;roar::2946;2946;"Okayama University Scientific Achievement Repository";roar +dedup::882f96c8219dc8e82b41c8e0803bda76;https://fairsharing.org/fairsharing_records/3063;3063;"Résif Seismological Data Portal";FAIRsharing +dedup::882f96c8219dc8e82b41c8e0803bda76;re3data::r3d100012222;r3d100012222;"Résif Seismological Data Portal";re3data +dedup::884d085968ae42d0d7758b632c6e7dbf;opendoar::6892;6892;"digital commons @ risd";OpenDOAR +dedup::884d085968ae42d0d7758b632c6e7dbf;roar::10090;10090;"DigitalCommons@RISD";roar +dedup::888a01dd6cd633eb59a7d28cb0d7b51a;roar::3609;3609;"The West Pomeranian Digital Library „POMERANIA”";roar +dedup::888a01dd6cd633eb59a7d28cb0d7b51a;opendoar::2068;2068;"the west pomeranian digital library „pomerania”";OpenDOAR +dedup::888a01dd6cd633eb59a7d28cb0d7b51a;roar::5582;5582;"The West Pomeranian Digital Library „POMERANIA”";roar +dedup::88a7d0e9c97fdbbb73f0ad624d01c647;https://fairsharing.org/10.25504/FAIRsharing.5vtYGG;2669;"SILVA";FAIRsharing +dedup::88a7d0e9c97fdbbb73f0ad624d01c647;re3data::r3d100011323;r3d100011323;"SILVA";re3data +dedup::88c0359b984d5313cf37f1d905cc563c;roar::1387;1387;"University of Huddersfield Repository";roar +dedup::88c0359b984d5313cf37f1d905cc563c;opendoar::1012;1012;"university of huddersfield repository";OpenDOAR +dedup::88cf958fd4e9c6154608d1202a27bcde;opendoar::2608;2608;"electronic odessa national economic university institutional repository";OpenDOAR +dedup::88cf958fd4e9c6154608d1202a27bcde;opendoar::3601;3601;"electronic odessa national economic university institutional repository";OpenDOAR +dedup::88f3d55b58ccabc116014a05eb8e9ed6;roar::8798;8798;"Welcome to Digilib - Digital Library of UIN Sunan Ampel";roar +dedup::88f3d55b58ccabc116014a05eb8e9ed6;roar::8812;8812;"Welcome to Digilib - Digital Library of UIN Sunan Ampel";roar +dedup::8937f394ee0e0239b21d2c54ac347191;opendoar::1658;1658;"unimap library digital repository";OpenDOAR +dedup::8937f394ee0e0239b21d2c54ac347191;roar::8709;8709;"UniMAP Library Digital Repository";roar +dedup::8948ef32303e7e6a47db245070e77dfd;opendoar::3439;3439;"the academia sinica institutional repository";OpenDOAR +dedup::8948ef32303e7e6a47db245070e77dfd;roar::9419;9419;"The Academia Sinica Institutional Repository";roar +dedup::894991751801909d7cb040c86f23d031;re3data::r3d100010528;r3d100010528;"GenBank";re3data +dedup::894991751801909d7cb040c86f23d031;https://fairsharing.org/10.25504/FAIRsharing.9kahy4;1547;"GenBank";FAIRsharing +dedup::895f3333c36053c3fdf7f485f5af2053;opendoar::2230;2230;"ajou open repository";OpenDOAR +dedup::895f3333c36053c3fdf7f485f5af2053;roar::5385;5385;"AJOU Open Repository(아주대학교 의학문헌정보센터)";roar +dedup::897af83bc94cc20101287c396b29f915;roar::1146;1146;"Sabanci University Research Database";roar +dedup::897af83bc94cc20101287c396b29f915;opendoar::1246;1246;"sabanci university research database";OpenDOAR +dedup::89867af2d4464930de6979aa07c056db;roar::5044;5044;"Repositorio Institucional Unilibre";roar +dedup::89867af2d4464930de6979aa07c056db;opendoar::4420;4420;"repositorio institucional unilibre";OpenDOAR +dedup::898c3f556ec20a4f756bafcca5c480b2;roar::11706;11706;"Institutional repository of Ivano-Frankivsk National Technical University of Oil and Gas (Електронний науковий архів Івано-Франківського національного технічного університету нафти і газу)";roar +dedup::898c3f556ec20a4f756bafcca5c480b2;opendoar::3806;3806;"institutional repository of ivano-frankivsk national technical university of oil and gas";OpenDOAR +dedup::89c916cfce5ce1b90f4a1643749f5d06;roar::16077;16077;"Repositorio de la Fundación Universitaria del Área Andina";roar +dedup::89c916cfce5ce1b90f4a1643749f5d06;opendoar::1958;1958;"repositorio de la fundación universitaria del área andina";OpenDOAR +dedup::89d7f1c1f3248e74f790f79db8d5bb55;opendoar::3770;3770;"asia university academic repositories";OpenDOAR +dedup::89d7f1c1f3248e74f790f79db8d5bb55;opendoar::9883;9883;"asia university academic repository";OpenDOAR +dedup::8a156af47c6a57b17a22b095360e68fb;re3data::r3d100010375;r3d100010375;"GitHub";re3data +dedup::8a156af47c6a57b17a22b095360e68fb;https://fairsharing.org/10.25504/FAIRsharing.c55d5e;2667;"GitHub";FAIRsharing +dedup::8a385d9321c326f096092b6e91971817;https://fairsharing.org/fairsharing_records/2803;2803;"Natural History Museum Data Portal";FAIRsharing +dedup::8a385d9321c326f096092b6e91971817;re3data::r3d100011675;r3d100011675;"Natural History Museum, Data Portal";re3data +dedup::8a39feae52a1eca96110fc035f3562c6;re3data::r3d100013265;r3d100013265;"SupraBank";re3data +dedup::8a39feae52a1eca96110fc035f3562c6;https://fairsharing.org/10.25504/FAIRsharing.vjWUT7;3303;"SupraBank";FAIRsharing +dedup::8a40d7160c77527d5fe0c3dafbf055ce;https://fairsharing.org/10.25504/FAIRsharing.hmgte8;2100;"miRBase";FAIRsharing +dedup::8a40d7160c77527d5fe0c3dafbf055ce;re3data::r3d100010566;r3d100010566;"miRBase";re3data +dedup::8a65c4873860236769cb0c8680000603;roar::3192;3192;"ΣStar";roar +dedup::8a65c4873860236769cb0c8680000603;opendoar::1043;1043;"σstar";OpenDOAR +dedup::8a6e68be8f20685dfb18865bbf9465df;roar::634;634;"Hofstra University EPrint Archive";roar +dedup::8a6e68be8f20685dfb18865bbf9465df;opendoar::171;171;"hofstra university eprint archive";OpenDOAR +dedup::8a74a845f4bafe25833c3cf7b89bd503;opendoar::3081;3081;"altai state university electronic library";OpenDOAR +dedup::8a74a845f4bafe25833c3cf7b89bd503;roar::8491;8491;"Altai State University Electronic library";roar +dedup::8a8c4452b7badf8fb5022508da1e03e4;opendoar::2372;2372;"biblioteca digital educativa de la región de murcia";OpenDOAR +dedup::8a8c4452b7badf8fb5022508da1e03e4;roar::5574;5574;"Biblioteca Digital Educativa de la Región de Murcia";roar +dedup::8a8c4452b7badf8fb5022508da1e03e4;roar::4578;4578;"Biblioteca Digital Educativa de la Región de Murcia";roar +dedup::8a9359f4b09365b92a40a1ea8337069b;opendoar::1064;1064;"oxford university research archive";OpenDOAR +dedup::8a9359f4b09365b92a40a1ea8337069b;roar::992;992;"Oxford University Research Archive";roar +dedup::8a9359f4b09365b92a40a1ea8337069b;re3data::r3d100011230;r3d100011230;"Oxford University Research Archive";re3data +dedup::8a9359f4b09365b92a40a1ea8337069b;https://fairsharing.org/10.25504/FAIRsharing.rkwr6y;2326;"Oxford University Research Archive";FAIRsharing +dedup::8a96742072ae08ee2ce4d0aa9aa58dae;opendoar::438;438;"digitalcommons@university of georgia school of law";OpenDOAR +dedup::8a96742072ae08ee2ce4d0aa9aa58dae;roar::344;344;"DigitalCommons@University of Georgia School of Law";roar +dedup::8ac31b6f27567bcacb0bd194ae226fe1;opendoar::2959;2959;"electronic library pavel sukhoi state technical university of gomel (gstu)";OpenDOAR +dedup::8ac31b6f27567bcacb0bd194ae226fe1;roar::7932;7932;"Electronic Library Pavel Sukhoi State Technical University of Gomel (GSTU)";roar +dedup::8ac6a5a127f078b3b025c0895ea22094;opendoar::10323;10323;"dspace@sfit";OpenDOAR +dedup::8ac6a5a127f078b3b025c0895ea22094;roar::17822;17822;"DSpace@SFIT";roar +dedup::8ac737cd46e7c3f9121229c206784ccc;opendoar::1153;1153;"digitalresearch@fordham";OpenDOAR +dedup::8ac737cd46e7c3f9121229c206784ccc;roar::351;351;"DigitalResearch@Fordham";roar +dedup::8ae0ed2a2c5f57e510e961bae5729371;roar::16974;16974;"Niner Commons";roar +dedup::8ae0ed2a2c5f57e510e961bae5729371;opendoar::10091;10091;"niner commons";OpenDOAR +dedup::8b6fd5edc823931bdc561ac63bead5b7;roar::16418;16418;"Home | Abdelhamid Mehri University Constantine2 Scholarlyworks Repository";roar +dedup::8b6fd5edc823931bdc561ac63bead5b7;opendoar::9968;9968;"abdelhamid mehri university constantine2 scholarlyworks repository";OpenDOAR +dedup::8b9d4e27e57256e238a11856b0091518;opendoar::1595;1595;"ruc: repositorio da universidade da coruña";OpenDOAR +dedup::8b9d4e27e57256e238a11856b0091518;roar::5022;5022;"Repositorio da Universidade da Coruña";roar +dedup::8bcd96d007b3993b5a46fb491813006b;roar::14659;14659;"Istanbul Ticaret University Institutional Repository (DSpace@Ticaret)";roar +dedup::8bcd96d007b3993b5a46fb491813006b;opendoar::3595;3595;"istanbul ticaret university institutional repository (dspace@ticaret)";OpenDOAR +dedup::8bd11136ba7ae2d5d356f916ab25b1fc;opendoar::4482;4482;"elischolar";OpenDOAR +dedup::8bd11136ba7ae2d5d356f916ab25b1fc;roar::8460;8460;"EliScholar";roar +dedup::8bdf10c51ca7c219fec2e07ce362c631;re3data::r3d100010550;r3d100010550;"MiCroKitS";re3data +dedup::8bdf10c51ca7c219fec2e07ce362c631;https://fairsharing.org/10.25504/FAIRsharing.3cswbc;1823;"MiCroKiTS";FAIRsharing +dedup::8beca7b794f03dfb0d6b8ca744cf2cd9;opendoar::4678;4678;"repositorio documental y de datos undav";OpenDOAR +dedup::8beca7b794f03dfb0d6b8ca744cf2cd9;roar::14841;14841;"Repositorio Documental y de Datos UNDAV";roar +dedup::8c05d7679c29ecefd984406b1d82d908;opendoar::4411;4411;"una scholarly repository";OpenDOAR +dedup::8c05d7679c29ecefd984406b1d82d908;roar::13575;13575;"UNA Scholarly Repository";roar +dedup::8c17fbacd0e2af43bbc9b42a147bebfe;roar::5495;5495;"Göteborgs universitets publikationer - e-publicering och e-arkiv";roar +dedup::8c17fbacd0e2af43bbc9b42a147bebfe;roar::2312;2312;"Göteborgs universitets publikationer - e-publicering och e-arkiv";roar +dedup::8c17fbacd0e2af43bbc9b42a147bebfe;opendoar::1149;1149;"göteborgs universitets publikationer - e-publicering och e-arkiv";OpenDOAR +dedup::8c22690da9d913ed2458b461b6644e4a;roar::5001;5001;"ARENA Publications";roar +dedup::8c22690da9d913ed2458b461b6644e4a;opendoar::14;14;"arena publications";OpenDOAR +dedup::8c3ef031a4798bdb9901e540f93d7828;opendoar::1994;1994;"biblioteca digital icaro";OpenDOAR +dedup::8c3ef031a4798bdb9901e540f93d7828;roar::3931;3931;"Biblioteca Digital Icaro";roar +dedup::8c6002c54e0b3e3e215409359f027a7b;roar::11956;11956;"Yamagata University Academic Repository";roar +dedup::8c6002c54e0b3e3e215409359f027a7b;opendoar::3802;3802;"yamagata university academic repository";OpenDOAR +dedup::8c6262b1f35b9a12696341d9cfa82a20;re3data::r3d100010223;r3d100010223;"Expression Atlas";re3data +dedup::8c6262b1f35b9a12696341d9cfa82a20;https://fairsharing.org/10.25504/FAIRsharing.f5zx00;1588;"Expression Atlas";FAIRsharing +dedup::8c70db5e1262470345cb2f3e7a26cd8c;roar::5496;5496;"VTechWorks";roar +dedup::8c70db5e1262470345cb2f3e7a26cd8c;opendoar::2485;2485;"vtechworks";OpenDOAR +dedup::8c944108b602057b0ead8cb4511b25ba;roar::2716;2716;"Central de Informações sobre Cooperação Jurídica Internacional";roar +dedup::8c944108b602057b0ead8cb4511b25ba;roar::2730;2730;"Central de Informações sobre Cooperação Jurídica Internacional";roar +dedup::8c95bad2ab622d6e50703fbc12acd70f;roar::10037;10037;"IAIN Antasari Institutional Repository";roar +dedup::8c95bad2ab622d6e50703fbc12acd70f;opendoar::3425;3425;"iain antasari institutional repository";OpenDOAR +dedup::8ca7b139216c818abed4944002b7a109;roar::17602;17602;"REFF - Faculty of Philosophy Repository";roar +dedup::8ca7b139216c818abed4944002b7a109;opendoar::10312;10312;"reff - faculty of filosophy repository";OpenDOAR +dedup::8cb1e9037960d97c74dbef18b1bab1c0;roar::3608;3608;"Sandomierz Diocese Digital Library";roar +dedup::8cb1e9037960d97c74dbef18b1bab1c0;opendoar::2061;2061;"sandomierz diocese digital library";OpenDOAR +dedup::8cdfea32cf041d27a56766c03d46ad79;opendoar::2868;2868;"szte publicatio repozitórium - szte - repository of publications";OpenDOAR +dedup::8cdfea32cf041d27a56766c03d46ad79;roar::7465;7465;"SZTE Publicatio Repozitórium - SZTE - Repository of Publications";roar +dedup::8d1c5ea6d49dafda15b17a4c19d0f42a;re3data::r3d100012352;r3d100012352;"TreeGenes";re3data +dedup::8d1c5ea6d49dafda15b17a4c19d0f42a;https://fairsharing.org/10.25504/FAIRsharing.lCVfCv;2594;"TreeGenes";FAIRsharing +dedup::8d447389b332da9edb2cd5a3578737f8;opendoar::885;885;"zurich open repository and archive";OpenDOAR +dedup::8d447389b332da9edb2cd5a3578737f8;roar::1547;1547;"Zurich Open Repository and Archive";roar +dedup::8d45ad1da6e88d479bdbd0ea61eeffa0;re3data::r3d100010519;r3d100010519;"OAFlux";re3data +dedup::8d45ad1da6e88d479bdbd0ea61eeffa0;https://fairsharing.org/fairsharing_records/2991;2991;"OAFlux";FAIRsharing +dedup::8d4e07c43a6f48d53179283ce53b4118;roar::2286;2286;"Qucosa";roar +dedup::8d4e07c43a6f48d53179283ce53b4118;opendoar::104;104;"qucosa";OpenDOAR +dedup::8d4e07c43a6f48d53179283ce53b4118;opendoar::5506;5506;"qucosa";OpenDOAR +dedup::8d6b756223e8a561dc34b07270002524;opendoar::2005;2005;"wenzao ursuline college of languages institutional repository";OpenDOAR +dedup::8d6b756223e8a561dc34b07270002524;roar::3359;3359;"Wenzao Ursuline College of Languages Institutional Repository ";roar +dedup::8d7ba6a03970bbb276efa01a91fb3e82;opendoar::1388;1388;"arias montano, repositorio institucional de la universidad de huelva";OpenDOAR +dedup::8d7ba6a03970bbb276efa01a91fb3e82;roar::81;81;"Arias Montano: Repositorio Institucional de la Universidad de Huelva";roar +dedup::8d87f66bf7a8bf44c765b09d842e4444;https://fairsharing.org/10.25504/FAIRsharing.vs7865;1796;"The Cambridge Structural Database";FAIRsharing +dedup::8d87f66bf7a8bf44c765b09d842e4444;re3data::r3d100010197;r3d100010197;"The Cambridge Structural Database";re3data +dedup::8dac1a7fd27fded14c6a2806aaeb9a56;opendoar::2025;2025;"yu da university institutional repository";OpenDOAR +dedup::8dac1a7fd27fded14c6a2806aaeb9a56;roar::3456;3456;"YuDa University Institutional Repository";roar +dedup::8ddb5423d58a322e1666cb3818d2dfd1;https://fairsharing.org/10.25504/FAIRsharing.095469;3311;"Data and Service Center for the Humanities";FAIRsharing +dedup::8ddb5423d58a322e1666cb3818d2dfd1;re3data::r3d100012374;r3d100012374;"Data and Service Center for the Humanities";re3data +dedup::8de637a16cad54fe67fc723e367aefb1;opendoar::2179;2179;"repositorio academico digital uanl";OpenDOAR +dedup::8de637a16cad54fe67fc723e367aefb1;roar::3929;3929;"Repositorio Academico Digital UANL";roar +dedup::8e40f21419f7ee34ac2851188b75e818;roar::4959;4959;"Biblioteca Digital de la Facultad de Ciencias Exactas y Naturales de la Universidad de Buenos Aires";roar +dedup::8e40f21419f7ee34ac2851188b75e818;opendoar::1896;1896;"biblioteca digital de la facultad de ciencias exactas y naturales de la universidad de buenos aires";OpenDOAR +dedup::8e4c9138cde1845e1564c7c01520b370;roar::8381;8381;"eCollections | Florida International University College of Law";roar +dedup::8e4c9138cde1845e1564c7c01520b370;roar::8797;8797;"eCollections | Florida International University College of Law";roar +dedup::8e67870b5a239af1b35962f2a98e004c;opendoar::2204;2204;"publikationer från handelshögskolan";OpenDOAR +dedup::8e67870b5a239af1b35962f2a98e004c;roar::4031;4031;"Publikationer från Handelshögskolan";roar +dedup::8e6b02c74b62f64e93bc4318bf7fb787;opendoar::3156;3156;"belarusian state university of informatics and radioelectronics repository";OpenDOAR +dedup::8e6b02c74b62f64e93bc4318bf7fb787;roar::9124;9124;"Belarusian State University of Informatics and Radioelectronics Repository";roar +dedup::8e80d148da0fa0f05edae4ab6a29b839;roar::778;778;"Kujawsko-Pomorska Digital Library";roar +dedup::8e80d148da0fa0f05edae4ab6a29b839;re3data::r3d100010094;r3d100010094;"Kujawsko-Pomorska Digital Library";re3data +dedup::8ec50ee6674c690ef59ce7523985e9a1;roar::3204;3204;"Scholarly Commons @ UNLV Law";roar +dedup::8ec50ee6674c690ef59ce7523985e9a1;opendoar::1949;1949;"scholarly commons @ unlv law";OpenDOAR +dedup::8f071dc6995a130f7b679df69ec70630;roar::4937;4937;"Washington Research Library Consortium Special Collections";roar +dedup::8f071dc6995a130f7b679df69ec70630;opendoar::2273;2273;"washington research library consortium special collections";OpenDOAR +dedup::8f420b60d22bcb5f820d5c098d64631a;roar::8469;8469;"Pepperdine Digital Commons";roar +dedup::8f420b60d22bcb5f820d5c098d64631a;roar::5446;5446;"Pepperdine Digital Commons";roar +dedup::8f420b60d22bcb5f820d5c098d64631a;opendoar::2503;2503;"pepperdine digital commons";OpenDOAR +dedup::8f8082bc5225aead011bfbefaf12a845;roar::8295;8295;"Digital Commons @ East Tennessee State University | East Tennessee State University Research";roar +dedup::8f8082bc5225aead011bfbefaf12a845;roar::8467;8467;"Digital Commons @ East Tennessee State University | East Tennessee State University Research";roar +dedup::8f8aad92d38e62441c76de0ed2fd3a41;opendoar::11;11;"archive of european integration";OpenDOAR +dedup::8f8aad92d38e62441c76de0ed2fd3a41;roar::67;67;"Archive of European Integration";roar +dedup::8faa26ec42846a6e253ad4061413c5e6;roar::9778;9778;"Scholarly Commons @Baptist Health South Florida";roar +dedup::8faa26ec42846a6e253ad4061413c5e6;opendoar::6783;6783;"scholarly commons @ baptist health south florida";OpenDOAR +dedup::8fb563a21bba50efab766d2d05c76935;roar::12374;12374;"Hodges University Institutional Respository";roar +dedup::8fb563a21bba50efab766d2d05c76935;opendoar::3869;3869;"hodges university institutional respository";OpenDOAR +dedup::8fd2144ad581c1831cd767ef9b28332a;roar::5571;5571;"Language Box";roar +dedup::8fd2144ad581c1831cd767ef9b28332a;opendoar::1518;1518;"language box";OpenDOAR +dedup::8feb0d921c521b3e5ecc2012496a9925;roar::10427;10427;"Publikationsserver der Technischen Universität Clausthal";roar +dedup::8feb0d921c521b3e5ecc2012496a9925;opendoar::3482;3482;"publikationsserver der technischen universität clausthal";OpenDOAR +dedup::8ff31aad1c81f3bb27ee851d5469e9ab;opendoar::2553;2553;"repositorio de la unia";OpenDOAR +dedup::8ff31aad1c81f3bb27ee851d5469e9ab;roar::5792;5792;"Repositorio de la UNIA";roar +dedup::8ffadf8544574f6f4407b7dafe9d068d;opendoar::1446;1446;"state library of massachusetts";OpenDOAR +dedup::8ffadf8544574f6f4407b7dafe9d068d;roar::2345;2345;"State Library of Massachusetts";roar +dedup::90068b3592f4bc6b3e45026b405bf428;roar::17067;17067;"RIMI - Repository of the Institute for Medical Research";roar +dedup::90068b3592f4bc6b3e45026b405bf428;opendoar::10108;10108;"repository of the institute for medical research";OpenDOAR +dedup::903c091da0db4cbacc449a1442a7576c;opendoar::4085;4085;"udimundus";OpenDOAR +dedup::903c091da0db4cbacc449a1442a7576c;roar::13799;13799;"udiMundus";roar +dedup::90650438bb5cdb60bdd756b03498ea59;roar::589;589;"Gobierno del Estado Chiapas";roar +dedup::90650438bb5cdb60bdd756b03498ea59;opendoar::479;479;"gobierno del estado chiapas";OpenDOAR +dedup::90844b7d18b4d7d76f4c199558aa46f2;opendoar::10153;10153;"ankara sosyal bilimler university institutional repository";OpenDOAR +dedup::90844b7d18b4d7d76f4c199558aa46f2;roar::17196;17196;"Ankara Sosyal Bilimler University Institutional Repository";roar +dedup::90a6276df72caa7ef54f4745b753165a;roar::3146;3146;"Durham e-Theses";roar +dedup::90a6276df72caa7ef54f4745b753165a;opendoar::1918;1918;"durham e-theses";OpenDOAR +dedup::90cf7603ff8d8ee5d0cf81fb23c6de5b;roar::2439;2439;"GSLIS Electronic Archives Project";roar +dedup::90cf7603ff8d8ee5d0cf81fb23c6de5b;opendoar::671;671;"gslis electronic archives project";OpenDOAR +dedup::90ec6f82a397e51642bcefb23b58ebdd;opendoar::4409;4409;"electronic institutional repository of mariupol state university";OpenDOAR +dedup::90ec6f82a397e51642bcefb23b58ebdd;roar::14382;14382;"The Electronic Institutional Repository of Mariupol State University";roar +dedup::90fa532d80633e6eb7beeaacbb59fade;re3data::r3d100011177;r3d100011177;"Claremont Colleges Digital Library";re3data +dedup::90fa532d80633e6eb7beeaacbb59fade;https://fairsharing.org/fairsharing_records/3007;3007;"Claremont Colleges Digital Library";FAIRsharing +dedup::90fccf8d5cf0a97661c7bab535c20db9;opendoar::7205;7205;"providence st. joseph health digital commons";OpenDOAR +dedup::90fccf8d5cf0a97661c7bab535c20db9;roar::13823;13823;"Providence St. Joseph Health Digital Commons";roar +dedup::910943511db16eefcece9c4606b91e9e;re3data::r3d100010901;r3d100010901;"HUGO Gene Nomenclature Committee";re3data +dedup::910943511db16eefcece9c4606b91e9e;https://fairsharing.org/10.25504/FAIRsharing.29we0s;1868;"HUGO Gene Nomenclature Committee";FAIRsharing +dedup::910e01082c2e3b1eb16d32ccdee88dff;opendoar::4802;4802;"repositorio institucional del oefa";OpenDOAR +dedup::910e01082c2e3b1eb16d32ccdee88dff;roar::15161;15161;"Repositorio Institucional del OEFA";roar +dedup::91160dd2c1cce168a208abfdf14cc359;re3data::r3d100010731;r3d100010731;"Open Data LMU";re3data +dedup::91160dd2c1cce168a208abfdf14cc359;opendoar::7462;7462;"open data lmu";OpenDOAR +dedup::9118c851b21a6a26fddc6e974467da27;opendoar::1687;1687;"econstor";OpenDOAR +dedup::9118c851b21a6a26fddc6e974467da27;roar::2891;2891;"EconStor";roar +dedup::9126e07a8f497ce2c4df344b4099b7cf;re3data::r3d100010574;r3d100010574;"caNanoLab";re3data +dedup::9126e07a8f497ce2c4df344b4099b7cf;https://fairsharing.org/10.25504/FAIRsharing.y1qpdm;1961;"caNanoLab";FAIRsharing +dedup::912c4b6c07463c1a9a4354063b25b0a2;roar::3682;3682;"EEPIS Proceeding";roar +dedup::912c4b6c07463c1a9a4354063b25b0a2;roar::4992;4992;"EEPIS Proceeding";roar +dedup::9135b1f645340f65d247c5daf2ec892a;roar::40;40;"Aletheia University Institutional Repository : 主頁";roar +dedup::9135b1f645340f65d247c5daf2ec892a;opendoar::1294;1294;"aletheia university institutional repository";OpenDOAR +dedup::913c620659a4b0377206ae68318d6f24;roar::11513;11513;"Federal University Lokoja Institutional Repository";roar +dedup::913c620659a4b0377206ae68318d6f24;opendoar::3742;3742;"federal university lokoja institutional repository";OpenDOAR +dedup::9153cee899d342702523273ac157785d;https://fairsharing.org/10.25504/FAIRsharing.4m97ah;2290;"BioPortal";FAIRsharing +dedup::9153cee899d342702523273ac157785d;re3data::r3d100012344;r3d100012344;"BioPortal";re3data +dedup::917333c03542ac5184a1c94c1bf2020e;roar::845;845;"Meiji Repository";roar +dedup::917333c03542ac5184a1c94c1bf2020e;opendoar::1217;1217;"meiji repository";OpenDOAR +dedup::9182c32201a11d2d5ba540a18ea0dae2;roar::9762;9762;"National Institute of Polar Research Repository";roar +dedup::9182c32201a11d2d5ba540a18ea0dae2;https://fairsharing.org/10.25504/FAIRsharing.ZTrlTh;2603;"National Institute of Polar Research Repository";FAIRsharing +dedup::9182c32201a11d2d5ba540a18ea0dae2;opendoar::3342;3342;"national institute of polar research repository";OpenDOAR +dedup::91a607a2b54884e44e2d0dc0c2f52481;roar::4120;4120;"University of Derby Online Research Archive";roar +dedup::91a607a2b54884e44e2d0dc0c2f52481;opendoar::2236;2236;"university of derby online research archive";OpenDOAR +dedup::91bf298456d1789db77c1ac5ff508647;opendoar::2262;2262;"city research online";OpenDOAR +dedup::91bf298456d1789db77c1ac5ff508647;roar::4176;4176;"City Research Online";roar +dedup::91ef3043a33d64b82e0f44baa13ad083;roar::17295;17295;"Malatya Turgut Özal University Institutional Repository";roar +dedup::91ef3043a33d64b82e0f44baa13ad083;opendoar::10099;10099;"malatya turgut özal university institutional repository";OpenDOAR +dedup::91f472454845b94df9b48c03e9c3d3aa;opendoar::5064;5064;"the linnean collections";OpenDOAR +dedup::91f472454845b94df9b48c03e9c3d3aa;roar::1288;1288;"The Linnean Collections";roar +dedup::91f49a40f6ec59cbce3ac3bc7254445b;re3data::r3d100012308;r3d100012308;"DesignSafe-CI Data Depot Repository";re3data +dedup::91f49a40f6ec59cbce3ac3bc7254445b;https://fairsharing.org/10.25504/FAIRsharing.6a3ef8;3326;"DesignSafe Data Depot Repository";FAIRsharing +dedup::91fd0e58ff9a521d304e2202f8cea25d;roar::3508;3508;"Research Commons@Waikato";roar +dedup::91fd0e58ff9a521d304e2202f8cea25d;opendoar::938;938;"research commons@waikato";OpenDOAR +dedup::92050d6d6df35d987998e7aef05d75e4;re3data::r3d100010653;r3d100010653;"Conserved Domain database";re3data +dedup::92050d6d6df35d987998e7aef05d75e4;https://fairsharing.org/10.25504/FAIRsharing.b9st5p;1967;"Conserved Domain Database";FAIRsharing +dedup::920a36990d3eb219232d2bce8e6e592d;opendoar::3197;3197;"kyoto women’s university academic information repository";OpenDOAR +dedup::920a36990d3eb219232d2bce8e6e592d;roar::9031;9031;"Kyoto Women's University Academic Information Repository";roar +dedup::9212b00ff1e6f8e232826151a02f79b4;opendoar::821;821;"michigan state university digital & multimedia center";OpenDOAR +dedup::9212b00ff1e6f8e232826151a02f79b4;roar::4715;4715;"Michigan State University Digital & Multimedia Center";roar +dedup::922345504f4709d2d20ad53c6ef61cdd;roar::4638;4638;"Thèses de l'INSA de Lyon";roar +dedup::922345504f4709d2d20ad53c6ef61cdd;opendoar::66;66;"thèses de linsa de lyon";OpenDOAR +dedup::92258476b67dbe16578a057feb515473;roar::9715;9715;"Kitami Institute of Technology Repository";roar +dedup::92258476b67dbe16578a057feb515473;roar::9708;9708;"Kitami Institute of Technology Repository";roar +dedup::92258476b67dbe16578a057feb515473;opendoar::1035;1035;"kitami institute of technology repository";OpenDOAR +dedup::9287aaef16b83db7c4777c41ea71d73b;opendoar::9672;9672;"repositorio digital universidad ecci";OpenDOAR +dedup::9287aaef16b83db7c4777c41ea71d73b;roar::16094;16094;"Repositorio Digital Universidad ECCI";roar +dedup::92a5abfe213cdf58be16e46f2bd08c09;opendoar::1741;1741;"swedish school of sport and health sciences";OpenDOAR +dedup::92a5abfe213cdf58be16e46f2bd08c09;roar::2545;2545;"Swedish School of Sport and Health Sciences";roar +dedup::92d1258a087fd1613fa9ee2e6169ef33;roar::920;920;"NERC Open Research Archive";roar +dedup::92d1258a087fd1613fa9ee2e6169ef33;opendoar::1002;1002;"nerc open research archive";OpenDOAR +dedup::92fc2e10db1ed825da7a7b2f0a5dfd98;https://fairsharing.org/10.25504/FAIRsharing.f55jfq;1707;"GenomeRNAi";FAIRsharing +dedup::92fc2e10db1ed825da7a7b2f0a5dfd98;re3data::r3d100011089;r3d100011089;"GenomeRNAi";re3data +dedup::9324a82a8a0b199fc9ede9d2640bb527;roar::14150;14150;"Colecciones Digitales Uniminuto";roar +dedup::9324a82a8a0b199fc9ede9d2640bb527;opendoar::1528;1528;"colecciones digitales uniminuto";OpenDOAR +dedup::93252b2c6e6bc9ef38d1bde0c8f88c69;re3data::r3d100012646;r3d100012646;"Federated Research Data Repository";re3data +dedup::93252b2c6e6bc9ef38d1bde0c8f88c69;https://fairsharing.org/10.25504/FAIRsharing.EnRBIa;2770;"Federated Research Data Repository";FAIRsharing +dedup::9338ef66161bfcec7887f67f6c01c9b0;roar::11320;11320;"DSpace University of Palestine";roar +dedup::9338ef66161bfcec7887f67f6c01c9b0;opendoar::3608;3608;"dspace university of palestine";OpenDOAR +dedup::933bfb602ce5df2dd9f27f08547861b4;opendoar::1546;1546;"electronic archive v.n. karazin kharkiv national university";OpenDOAR +dedup::933bfb602ce5df2dd9f27f08547861b4;roar::2866;2866;"Electronic Archive V.N. Karazin Kharkiv National University";roar +dedup::9340d72d53b0082150f7f8370e37ad00;opendoar::10001;10001;"repositorio digital de la universidad villanueva";OpenDOAR +dedup::9340d72d53b0082150f7f8370e37ad00;roar::16480;16480;"Repositorio Digital de la Universidad Villanueva";roar +dedup::9361a10425887f23c709014ab2feb115;roar::12711;12711;"RPsico Repositorio de Psicología";roar +dedup::9361a10425887f23c709014ab2feb115;roar::12712;12712;"RPsico Repositorio de Psicología";roar +dedup::936bc7e6550482cea121deb94e0fd7e5;roar::2390;2390;"Library and Archives Canada";roar +dedup::936bc7e6550482cea121deb94e0fd7e5;opendoar::816;816;"library and archives canada";OpenDOAR +dedup::93d1e7d63fd7882505d175912b7d89e1;roar::3891;3891;"OstDok - Osteuropa-Dokumente online";roar +dedup::93d1e7d63fd7882505d175912b7d89e1;opendoar::2168;2168;"ostdok - osteuropa-dokumente online";OpenDOAR +dedup::93de94bd772b39667c1fba69c132c899;roar::11942;11942;"Repositorio Institucional Universidad Centroamericana José Simeón Cañas";roar +dedup::93de94bd772b39667c1fba69c132c899;opendoar::3811;3811;"repositorio institucional universidad centroamericana josé simeón cañas";OpenDOAR +dedup::942396aa1449566b07d34daf59096268;re3data::r3d100012190;r3d100012190;"ZBW Journal Data Archive";re3data +dedup::942396aa1449566b07d34daf59096268;https://fairsharing.org/10.25504/FAIRsharing.Z1Y4J2;2805;"ZBW Journal Data Archive";FAIRsharing +dedup::943cfe474a56c2d0cbada9304d4e42a6;opendoar::3324;3324;"projetos e dissertações em sistemas de informação e gestão do conhecimento";OpenDOAR +dedup::943cfe474a56c2d0cbada9304d4e42a6;roar::8841;8841;"Projetos e Dissertações em Sistemas de Informação e Gestão do Conhecimento";roar +dedup::9488e70b567825aab79eca1e226ae7f6;roar::4171;4171;"Biblioteca Digital de Castilla y León";roar +dedup::9488e70b567825aab79eca1e226ae7f6;opendoar::2265;2265;"biblioteca digital de castilla y león";OpenDOAR +dedup::948acf7378c9be389047fdfeb49fb8aa;roar::13965;13965;"Repositório Institucional da Universidade Federal do Tocantins - RIUFT";roar +dedup::948acf7378c9be389047fdfeb49fb8aa;opendoar::4065;4065;"repositório institucional da universidade federal do tocantins";OpenDOAR +dedup::949407cfc0c4c9b210b55c1f51cc6523;opendoar::3182;3182;"repositorio institucional universidad de medellín";OpenDOAR +dedup::949407cfc0c4c9b210b55c1f51cc6523;roar::8912;8912;"Repositorio Institucional Universidad de Medellín";roar +dedup::9497302da1abf226c453a932627846ad;roar::3160;3160;"Repository of the University of Nagasaki";roar +dedup::9497302da1abf226c453a932627846ad;opendoar::1926;1926;"repository of the university of nagasaki";OpenDOAR +dedup::94b1ed0629584bdbcd91809b302bdaea;https://fairsharing.org/10.25504/FAIRsharing.1x53qk;1698;"WikiPathways";FAIRsharing +dedup::94b1ed0629584bdbcd91809b302bdaea;re3data::r3d100013316;r3d100013316;"WikiPathways";re3data +dedup::94b40734efe10ba12b863777e371dc22;roar::7531;7531;"LSMU DSpace CRIS";roar +dedup::94b40734efe10ba12b863777e371dc22;opendoar::2888;2888;"lsmu dspace cris";OpenDOAR +dedup::94e5fb661f84bddb81a0a335d12e6053;https://fairsharing.org/10.25504/FAIRsharing.agwgmc;2531;"CloudFlame";FAIRsharing +dedup::94e5fb661f84bddb81a0a335d12e6053;re3data::r3d100013647;r3d100013647;"CloudFlame";re3data +dedup::94ebe4a2380d6cd2a6391e854f77566f;opendoar::3191;3191;"repositorio de la universidad del pacífico";OpenDOAR +dedup::94ebe4a2380d6cd2a6391e854f77566f;roar::9168;9168;"Repositorio de la Universidad del Pacífico";roar +dedup::94f53d5029a6764456ae7c524b586f31;opendoar::2520;2520;"bibliotecka cyfrowa politechniki koszalińskiej (digital library of koszalin university of technology)";OpenDOAR +dedup::94f53d5029a6764456ae7c524b586f31;roar::5657;5657;"Bibliotecka Cyfrowa Politechniki Koszalińskiej (Digital Library of Koszalin University of Technology)";roar +dedup::950812927e6cdcf99490416165c2ced8;roar::5626;5626;"WHO Institutional Repository for Information Sharing";roar +dedup::950812927e6cdcf99490416165c2ced8;opendoar::2512;2512;"institutional repository for information sharing";OpenDOAR +dedup::954d788eebfceeeee11d4e3f0a7333c3;opendoar::2518;2518;"naturalis";OpenDOAR +dedup::954d788eebfceeeee11d4e3f0a7333c3;roar::5769;5769;"Naturalis";roar +dedup::956a3960d26ff47932cb6d019e3e2190;opendoar::473;473;"examensarbeten högskolan kristianstad";OpenDOAR +dedup::956a3960d26ff47932cb6d019e3e2190;roar::551;551;"Examensarbeten Högskolan Kristianstad";roar +dedup::95b1376e01894152445053840375486e;opendoar::1621;1621;"repositório digital da universidade da madeira";OpenDOAR +dedup::95b1376e01894152445053840375486e;roar::1091;1091;"Repositório Digital da Universidade da Madeira";roar +dedup::95dcb9f46ebfdbee92bfa07ca3f610d9;roar::8673;8673;"KDI School Archives";roar +dedup::95dcb9f46ebfdbee92bfa07ca3f610d9;opendoar::3115;3115;"kdi school archives";OpenDOAR +dedup::95ffad8407d7522efb213de604648546;opendoar::1390;1390;"scielo social sciences";OpenDOAR +dedup::95ffad8407d7522efb213de604648546;roar::1184;1184;"SciELO - Social Sciences";roar +dedup::9608be0a6c95a0ee692367b7d5d83d72;roar::6940;6940;"Türkiye Bilgi ve Belge Yönetimi Bölümleri Lisansüstü Tez Arşivi";roar +dedup::9608be0a6c95a0ee692367b7d5d83d72;opendoar::2672;2672;"türkiye bilgi ve belge yönetimi bölümleri lisansüstü tez arşivi";OpenDOAR +dedup::960ce20ea8def858e7081e24a1d29fce;roar::4347;4347;"Biblioteca Digital de la Comunidad de Madrid";roar +dedup::960ce20ea8def858e7081e24a1d29fce;roar::4981;4981;"Biblioteca Digital de la Comunidad de Madrid";roar +dedup::960ce20ea8def858e7081e24a1d29fce;opendoar::2368;2368;"biblioteca digital de la comunidad de madrid";OpenDOAR +dedup::96236f6281a7562639cd15de8f2c40c8;roar::13910;13910;"University of Tripoli Digital Repository";roar +dedup::96236f6281a7562639cd15de8f2c40c8;opendoar::4281;4281;"university of tripoli digital repository";OpenDOAR +dedup::9677b132d622e416c94db00cbf4319c2;opendoar::4778;4778;"hatay mustafa kemal university institutional repository";OpenDOAR +dedup::9677b132d622e416c94db00cbf4319c2;roar::15266;15266;"Hatay Mustafa Kemal University Institutional Repository";roar +dedup::9692e6721f4189c89c5f045d42fbf136;re3data::r3d100012388;r3d100012388;"GlyTouCan";re3data +dedup::9692e6721f4189c89c5f045d42fbf136;https://fairsharing.org/10.25504/FAIRsharing.5Pze7l;2759;"GlyTouCan";FAIRsharing +dedup::96a2cb0fa8d0146bca9eb067786f10ba;roar::3006;3006;"Khon Kaen University Institutional Repository";roar +dedup::96a2cb0fa8d0146bca9eb067786f10ba;opendoar::1877;1877;"khon kaen university institutional repository";OpenDOAR +dedup::96b38551b4bdcd1bb0b6964593072d1e;roar::4317;4317;"Biblioteca Digital Museo de la Memoria";roar +dedup::96b38551b4bdcd1bb0b6964593072d1e;opendoar::2337;2337;"biblioteca digital museo de la memoria";OpenDOAR +dedup::96b38551b4bdcd1bb0b6964593072d1e;roar::5563;5563;"Biblioteca Digital Museo de la Memoria";roar +dedup::96b9a40f496eb7b69cd4ed12fb8b69b7;roar::485;485;"Education Resources Information Center";roar +dedup::96b9a40f496eb7b69cd4ed12fb8b69b7;opendoar::1542;1542;"education resources information center";OpenDOAR +dedup::96cbc2288e171bc4088d510c56675cbf;roar::4292;4292;"المستودع الرقمي لجمعية المكتبات و المعلومات السودانية (Sali Library English Literature collection)";roar +dedup::96cbc2288e171bc4088d510c56675cbf;roar::3484;3484;"Sali Library English Literature collection المستودع الرقمي لجمعية المكتبات و المعلومات السودانية ";roar +dedup::977e2bfa351675d53ee18018c3c4ec6f;re3data::r3d100012384;r3d100012384;"CaltechDATA";re3data +dedup::977e2bfa351675d53ee18018c3c4ec6f;https://fairsharing.org/10.25504/FAIRsharing.S09se7;2672;"CaltechDATA";FAIRsharing +dedup::9792c94b4be834bb12ba562256400af1;opendoar::3431;3431;"repositum";OpenDOAR +dedup::9792c94b4be834bb12ba562256400af1;roar::17025;17025;"reposiTUm";roar +dedup::97b12141a0c0953732c5ce480682f700;opendoar::2339;2339;"eprintsunife";OpenDOAR +dedup::97b12141a0c0953732c5ce480682f700;roar::5184;5184;"EprintsUnife";roar +dedup::97b148e6f3c8e17872ff6f9546a18ce4;opendoar::2387;2387;"etheses - a saurashtra university library service";OpenDOAR +dedup::97b148e6f3c8e17872ff6f9546a18ce4;roar::4809;4809;"E-theses A Saurashtra University Library Service";roar +dedup::97c860973cbdc985beacb4cf7310fa4a;opendoar::1868;1868;"repositorio de la universidad estatal a distancia de costa rica";OpenDOAR +dedup::97c860973cbdc985beacb4cf7310fa4a;roar::4020;4020;"Repositorio de la Universidad Estatal a Distancia de Costa Rica";roar +dedup::97ceaf489914e2b0c3d9779678a88257;https://fairsharing.org/10.25504/FAIRsharing.httzv2;2257;"Movebank Data Repository";FAIRsharing +dedup::97ceaf489914e2b0c3d9779678a88257;re3data::r3d100010469;r3d100010469;"Movebank Data Repository";re3data +dedup::97e99159fdbd6aa708d0d3343e63a805;roar::11531;11531;"CaSA NaRA";roar +dedup::97e99159fdbd6aa708d0d3343e63a805;opendoar::3967;3967;"casa nara";OpenDOAR +dedup::985c60d17e8585c7fb1f99541ec18ae0;re3data::r3d100012673;r3d100012673;"Data INRAE";re3data +dedup::985c60d17e8585c7fb1f99541ec18ae0;opendoar::10197;10197;"data inrae";OpenDOAR +dedup::987c4288c0d1910a2cae33755d740b8d;roar::310;310;"Digital Library";roar +dedup::987c4288c0d1910a2cae33755d740b8d;roar::3409;3409;"Digital Library";roar +dedup::98c515f8ee4cb5d78cb9bb5062fa4b62;opendoar::1856;1856;"euskal doktorego tesien bilduma - repositorio de tesis doctorales";OpenDOAR +dedup::98c515f8ee4cb5d78cb9bb5062fa4b62;roar::2917;2917;"Euskal Doktorego Tesien Bilduma - Repositorio de Tesis Doctorales";roar +dedup::98d120a1a37f9b7d5a3389290c06d8b0;opendoar::1511;1511;"central and eastern european marine repository";OpenDOAR +dedup::98d120a1a37f9b7d5a3389290c06d8b0;roar::220;220;"Central and Eastern European Marine Repository";roar +dedup::98d120a1a37f9b7d5a3389290c06d8b0;roar::4686;4686;"Central and Eastern European Marine Repository";roar +dedup::98f90bf2daa6f78873adaf311684cc73;re3data::r3d100013225;r3d100013225;"Digital Repository at the University of Maryland";re3data +dedup::98f90bf2daa6f78873adaf311684cc73;roar::2973;2973;"DRUM (Digital Repository at the University of Maryland)";roar +dedup::98f90bf2daa6f78873adaf311684cc73;opendoar::427;427;"digital repository at the university of maryland";OpenDOAR +dedup::9917b084b0a2ef71ab4292a46e25ef38;opendoar::4625;4625;"the catholic university of eastern africa digital repository";OpenDOAR +dedup::9917b084b0a2ef71ab4292a46e25ef38;roar::14736;14736;"The Catholic Univesity of Eastern Africa Digital Repository: Home";roar +dedup::992745f63c9ba7608831e515b181471e;roar::1466;1466;"UT Repository";roar +dedup::992745f63c9ba7608831e515b181471e;roar::5506;5506;"UT Repository";roar +dedup::994f0bdbecfdfc518c229314ef85b696;opendoar::3973;3973;"activos digitales iaph";OpenDOAR +dedup::994f0bdbecfdfc518c229314ef85b696;roar::12515;12515;"Activos Digitales IAPH";roar +dedup::99598fada1b27dd609d1adf3cb37c815;roar::3966;3966;"Repositorio de Legislación en Salud de Cuba";roar +dedup::99598fada1b27dd609d1adf3cb37c815;opendoar::2183;2183;"repositorio de legislación en salud de cuba";OpenDOAR +dedup::995d521549bd8cab425baa3b78aef030;roar::3416;3416;"TU/e Publications";roar +dedup::995d521549bd8cab425baa3b78aef030;roar::2838;2838;"TU/e Publications";roar +dedup::996297e0437d31d6074c780c7bc2d854;opendoar::1409;1409;"digital knowledge repository of central drug research institute";OpenDOAR +dedup::996297e0437d31d6074c780c7bc2d854;roar::5572;5572;"Digital Knowledge Repository of Central Drug Research Institute";roar +dedup::9976f74f2a67277bf05c2e37a6047f8d;roar::5030;5030;"Archivo gráfico institucional de la Universidad de Las Palmas de Gran Canaria (ULPGC)";roar +dedup::9976f74f2a67277bf05c2e37a6047f8d;opendoar::2445;2445;"archivo gráfico institucional de la universidad de las palmas de gran canaria";OpenDOAR +dedup::999d01cf0e5d838fa55dfe760f81e9e7;opendoar::4885;4885;"repositorio de la universidad maría auxiliadora";OpenDOAR +dedup::999d01cf0e5d838fa55dfe760f81e9e7;roar::15100;15100;"Repositorio de la Universidad María Auxiliadora";roar +dedup::99b7563265427cdb53149f3c8497e09b;re3data::r3d100010419;r3d100010419;"Saccharomyces Genome Database";re3data +dedup::99b7563265427cdb53149f3c8497e09b;https://fairsharing.org/10.25504/FAIRsharing.pzvw40;1644;"Saccharomyces Genome Database";FAIRsharing +dedup::99bd31ab08d8fb0c7934b1ebda9c5fe9;roar::10561;10561;"University of Thessaly Institutional Repository";roar +dedup::99bd31ab08d8fb0c7934b1ebda9c5fe9;opendoar::3616;3616;"university of thessaly institutional repository";OpenDOAR +dedup::99eb17014f20cbe84fe97a383bc5630c;re3data::r3d100013120;r3d100013120;"INPTDAT";re3data +dedup::99eb17014f20cbe84fe97a383bc5630c;opendoar::10134;10134;"inptdat";OpenDOAR +dedup::99eb17014f20cbe84fe97a383bc5630c;roar::17137;17137;"INPTDAT";roar +dedup::99ef512be891b2ff8859a143a8aa4550;re3data::r3d100011200;r3d100011200;"Ensembl Protists";re3data +dedup::99ef512be891b2ff8859a143a8aa4550;https://fairsharing.org/10.25504/FAIRsharing.ad1zae;2403;"Ensembl Protists";FAIRsharing +dedup::9a1d98b15d366e1293584b566764f08f;roar::16430;16430;"Ciencia Unisalle | Universidad de La Salle Research";roar +dedup::9a1d98b15d366e1293584b566764f08f;roar::16432;16432;"Ciencia Unisalle | Universidad de La Salle Research";roar +dedup::9a4d0467c823a0fe59841769ace6cba4;roar::15286;15286;"Repository of the Maize Research Institute Zemun Polje - RIK";roar +dedup::9a4d0467c823a0fe59841769ace6cba4;opendoar::4870;4870;"repository of the maize research institute, zemun polje";OpenDOAR +dedup::9a55067bbe148056a7fe605bbf50891f;re3data::r3d100011909;r3d100011909;"Sheffield Hallam University Research Data Archive";re3data +dedup::9a55067bbe148056a7fe605bbf50891f;opendoar::3503;3503;"sheffield hallam university research data archive";OpenDOAR +dedup::9a6978b8192b66e88a432a01b63a388a;roar::4207;4207;"Projekt „Otwórz książkę"";roar +dedup::9a6978b8192b66e88a432a01b63a388a;opendoar::2285;2285;"projekt „otwórz książkę";OpenDOAR +dedup::9a7cb42c286de97536f94e9a21df9f8c;opendoar::9631;9631;"oskar bordeaux";OpenDOAR +dedup::9a7cb42c286de97536f94e9a21df9f8c;roar::16006;16006;"OSKAR Bordeaux ";roar +dedup::9a8ec8e72fdd4d4842842c5deb3ee4e9;opendoar::793;793;"depositonce";OpenDOAR +dedup::9a8ec8e72fdd4d4842842c5deb3ee4e9;roar::8289;8289;"DepositOnce";roar +dedup::9a8ec8e72fdd4d4842842c5deb3ee4e9;re3data::r3d100011091;r3d100011091;"DepositOnce";re3data +dedup::9a9227d2b3db59e57f35797a486e9326;https://fairsharing.org/10.25504/FAIRsharing.t2e1ss;2452;"Harvard Dataverse";FAIRsharing +dedup::9a9227d2b3db59e57f35797a486e9326;opendoar::2954;2954;"harvard dataverse";OpenDOAR +dedup::9a9227d2b3db59e57f35797a486e9326;re3data::r3d100010051;r3d100010051;"Harvard Dataverse";re3data +dedup::9ace9dae5e853049ecf2d8eade86a49c;https://fairsharing.org/10.25504/FAIRsharing.y2qws7;1930;"Human Protein Reference Database";FAIRsharing +dedup::9ace9dae5e853049ecf2d8eade86a49c;re3data::r3d100010978;r3d100010978;"Human Protein Reference Database";re3data +dedup::9adc0c4b827b9735936c01b2d9a56abf;opendoar::10102;10102;"gutenberg open science";OpenDOAR +dedup::9adc0c4b827b9735936c01b2d9a56abf;roar::17028;17028;"Gutenberg Open Science";roar +dedup::9afbc82e039563fcf505273a73fe6371;re3data::r3d100010734;r3d100010734;"CSIRO Data Access Portal";re3data +dedup::9afbc82e039563fcf505273a73fe6371;https://fairsharing.org/10.25504/FAIRsharing.fmc0g0;2508;"CSIRO Data Access Portal";FAIRsharing +dedup::9afbc82e039563fcf505273a73fe6371;opendoar::3054;3054;"csiro data access portal";OpenDOAR +dedup::9b2b6083cbe8a2e73eb5ceb89fbc7b0f;roar::1320;1320;"UC Research Repository";roar +dedup::9b2b6083cbe8a2e73eb5ceb89fbc7b0f;opendoar::969;969;"uc research repository";OpenDOAR +dedup::9b41b4622c38ba842c071e38d7327013;opendoar::5523;5523;"galileo open learning materials";OpenDOAR +dedup::9b41b4622c38ba842c071e38d7327013;roar::11250;11250;"GALILEO Open Learning Materials";roar +dedup::9b722286837f6992f23209e57a5ef12a;roar::2372;2372;"USU Repository: Open Access Repository";roar +dedup::9b722286837f6992f23209e57a5ef12a;roar::2820;2820;"USU Repository: Open Access Repository";roar +dedup::9b76fe9e373117c273ddbb16b6d602c4;roar::5237;5237;"Institutional Repository at TNPU: Institutional Repository of Ternopil National Pedagogical University V.Hnatiuk";roar +dedup::9b76fe9e373117c273ddbb16b6d602c4;roar::5234;5234;"Institutional Repository at TNPU: Institutional Repository of Ternopil National Pedagogical University V.Hnatiuk";roar +dedup::9b936b6ee0705cffe9d86f72e56c4af4;roar::5557;5557;"knustspace";roar +dedup::9b936b6ee0705cffe9d86f72e56c4af4;roar::766;766;"KNUSTSpace ";roar +dedup::9b936b6ee0705cffe9d86f72e56c4af4;roar::3933;3933;"KNUSTSpace";roar +dedup::9b936b6ee0705cffe9d86f72e56c4af4;opendoar::1649;1649;"knustspace";OpenDOAR +dedup::9ba00267332e039e5ba4c19096796b2e;re3data::r3d100011469;r3d100011469;"GIS Maps Portal at AWI";re3data +dedup::9ba00267332e039e5ba4c19096796b2e;https://fairsharing.org/fairsharing_records/3003;3003;"GIS Maps Portal at AWI";FAIRsharing +dedup::9ba078aae99736c71aaae2b1f74ad7b6;opendoar::2024;2024;"knowledge repository of indian institute of horticultural research";OpenDOAR +dedup::9ba078aae99736c71aaae2b1f74ad7b6;roar::3465;3465;"Knowledge Repository of Indian Institute of Horticultural Research";roar +dedup::9bad20a3f1c1c0fcd54e5d88c472a27a;roar::14752;14752;"Digital Commons @ Shawnee State University";roar +dedup::9bad20a3f1c1c0fcd54e5d88c472a27a;opendoar::8948;8948;"digital commons @ shawnee state university";OpenDOAR +dedup::9bbb264e398665654a13e0fa37e846cd;opendoar::2464;2464;"repositorio institucional universidad católica de colombia";OpenDOAR +dedup::9bbb264e398665654a13e0fa37e846cd;roar::5158;5158;"Repositorio Institucional Universidad Católica de Colombia";roar +dedup::9bcb01bbf82d2c19f42e07917bce8ad0;opendoar::4877;4877;"farfar - pharmacy repository";OpenDOAR +dedup::9bcb01bbf82d2c19f42e07917bce8ad0;roar::15287;15287;"FarFar - Pharmacy Repository";roar +dedup::9bed5149e3b2f4d0914cb8191a1ccad9;opendoar::1493;1493;"dial uclouvain - digital access to libraries";OpenDOAR +dedup::9bed5149e3b2f4d0914cb8191a1ccad9;roar::14955;14955;"DIAL UCLouvain - Digital Access to Libraries";roar +dedup::9bf87d08d6062754363c972719b98270;roar::9001;9001;"NYME Repository of Dissertations";roar +dedup::9bf87d08d6062754363c972719b98270;opendoar::3167;3167;"soe repository of dissertations";OpenDOAR +dedup::9bfc4f9bfa78bceab59432ae0d2d9a64;re3data::r3d100010376;r3d100010376;"Land Processes Distributed Active Archive Center";re3data +dedup::9bfc4f9bfa78bceab59432ae0d2d9a64;https://fairsharing.org/fairsharing_records/3014;3014;"Land Processes Distributed Active Archive Center";FAIRsharing +dedup::9c037dcf197f85a32f56296b9f4c69d1;https://fairsharing.org/10.25504/FAIRsharing.d6423b;3226;"WDC Sunspot Index and Long-term Solar Observations";FAIRsharing +dedup::9c037dcf197f85a32f56296b9f4c69d1;re3data::r3d100010601;r3d100010601;"WDC Sunspot Index and Long-term Solar Observations";re3data +dedup::9cb5e107f8eaea1aae0a7022da704735;roar::1272;1272;"Tesis Electrónicas UACh";roar +dedup::9cb5e107f8eaea1aae0a7022da704735;opendoar::1609;1609;"tesis electronica uach";OpenDOAR +dedup::9cb5e107f8eaea1aae0a7022da704735;roar::3172;3172;"Tesis Electrónicas UACh";roar +dedup::9cf068f7b713c65a1c01562584475900;https://fairsharing.org/10.25504/FAIRsharing.4wjhCf;2883;"National Archive of Criminal Justice Data";FAIRsharing +dedup::9cf068f7b713c65a1c01562584475900;re3data::r3d100010260;r3d100010260;"National Archive of Criminal Justice Data";re3data +dedup::9d5d6874bfad82d6311e31105f1f63a5;roar::5422;5422;"Electronic Thesis and Dissertation Library - LSU";roar +dedup::9d5d6874bfad82d6311e31105f1f63a5;opendoar::138;138;"electronic thesis and dissertation library - lsu";OpenDOAR +dedup::9dbf519cd67c4ea391f41a434a2a0adf;opendoar::4816;4816;"repositorio institucional umb";OpenDOAR +dedup::9dbf519cd67c4ea391f41a434a2a0adf;roar::15110;15110;"Repositorio Institucional UMB";roar +dedup::9e23ea63d43feb4c08669f02c381ffeb;opendoar::1832;1832;"southern taiwan university institutional repository";OpenDOAR +dedup::9e23ea63d43feb4c08669f02c381ffeb;roar::1228;1228;"Southern Taiwan University Institutional Repository";roar +dedup::9e2d3b3b06271c1cf52486b9c56979d1;opendoar::1166;1166;"e-learning repository";OpenDOAR +dedup::9e2d3b3b06271c1cf52486b9c56979d1;roar::459;459;"e-Learning Repository";roar +dedup::9e7ec8b2b5d27c3261f41fd34be0c9ca;opendoar::2443;2443;"digital repository of luhansk taras shevchenko national university";OpenDOAR +dedup::9e7ec8b2b5d27c3261f41fd34be0c9ca;roar::13496;13496;" Digital Repository of Luhansk Taras Shevchenko National University";roar +dedup::9e7ec8b2b5d27c3261f41fd34be0c9ca;roar::5014;5014;"Digital Repository of Luhansk Taras Shevchenko National University";roar +dedup::9e8284732da353cd6ddbf19d40c78a94;roar::13928;13928;"Institutional Repository of the Academy of Public Administration";roar +dedup::9e8284732da353cd6ddbf19d40c78a94;opendoar::4387;4387;"institutional repository of the academy of public administration";OpenDOAR +dedup::9ed0962df1cc7c8f6499d0f02c6fbcdd;roar::2557;2557;"JRC Publications Repository";roar +dedup::9ed0962df1cc7c8f6499d0f02c6fbcdd;opendoar::1739;1739;"jrc publications repository";OpenDOAR +dedup::9ed8402aea8b8bdb65515fb6171aa613;roar::12965;12965;"Scholarly Commons @ IIT Chicago-Kent College of Law";roar +dedup::9ed8402aea8b8bdb65515fb6171aa613;opendoar::5632;5632;"scholarly commons @ iit chicago-kent college of law";OpenDOAR +dedup::9efc2342258e3660c42fd9f9a6bf9595;re3data::r3d100011126;r3d100011126;"Integrated Digitized Biocollections";re3data +dedup::9efc2342258e3660c42fd9f9a6bf9595;https://fairsharing.org/10.25504/FAIRsharing.d21jc4;2222;"Integrated Digitized Biocollections";FAIRsharing +dedup::9f18a661c591c55e9db0aef2e6cd5f46;opendoar::2491;2491;"biblioteca virtual del ministerio de defensa";OpenDOAR +dedup::9f18a661c591c55e9db0aef2e6cd5f46;roar::5297;5297;"Biblioteca Virtual del Ministerio de Defensa";roar +dedup::9f18a661c591c55e9db0aef2e6cd5f46;roar::5578;5578;"Biblioteca Virtual del Ministerio de Defensa";roar +dedup::9f1d49c9bccc09a2d7ada928a6fae65a;opendoar::4039;4039;"phiq - das repository der pädagogischen hochschule st.gallen";OpenDOAR +dedup::9f1d49c9bccc09a2d7ada928a6fae65a;roar::15375;15375;"PHIQ - das Repository der Pädagogischen Hochschule St.Gallen";roar +dedup::9f1f6fe224a350cf4a1da6a90bb6d399;roar::7656;7656;"InSPIRe@Redlands";roar +dedup::9f1f6fe224a350cf4a1da6a90bb6d399;opendoar::4280;4280;"inspire @ redlands";OpenDOAR +dedup::9f266f01c9cf7a8b1f2bf112067abaf0;re3data::r3d100011124;r3d100011124;"mentha";re3data +dedup::9f266f01c9cf7a8b1f2bf112067abaf0;https://fairsharing.org/10.25504/FAIRsharing.j1eyq2;2419;"mentha";FAIRsharing +dedup::9f27e46f68d4e2813114e59626e8bb35;opendoar::10078;10078;"bahandian: institutional repository of central philippine university";OpenDOAR +dedup::9f27e46f68d4e2813114e59626e8bb35;roar::16926;16926;"BAHÁNDÌAN: Institutional Repository of Central Philippine University";roar +dedup::9f4ccc87ed78ab1d3e4ece020c1b970c;opendoar::2716;2716;"ums institutional repository";OpenDOAR +dedup::9f4ccc87ed78ab1d3e4ece020c1b970c;roar::7144;7144;"UMS Institutional Repository ";roar +dedup::9f63ab66b56c361ee1501d4e05d4fa7e;opendoar::2619;2619;"university of nairobi digital repository";OpenDOAR +dedup::9f63ab66b56c361ee1501d4e05d4fa7e;roar::6212;6212;"University of Nairobi Digital Repository";roar +dedup::9f64b35f2dea0b037d16c97b9e4b1afc;opendoar::10094;10094;"ipir - repository of the institute for educational research";OpenDOAR +dedup::9f64b35f2dea0b037d16c97b9e4b1afc;roar::16982;16982;"IPIR – Repository of the Institute for Educational Research";roar +dedup::9f88b48ca9c7ce482bdcf1d080f62a4c;roar::12204;12204;"Konan University Repository";roar +dedup::9f88b48ca9c7ce482bdcf1d080f62a4c;opendoar::3950;3950;"konan university repository";OpenDOAR +dedup::9f8c4f814a2efdd22bc7a2c75b0cdf1c;roar::3483;3483;"Archiwum Map Wojskowego Instytutu Geograficznego 1919 - 1939";roar +dedup::9f8c4f814a2efdd22bc7a2c75b0cdf1c;opendoar::1995;1995;"archiwum map wojskowego instytutu geograficznego 1919 - 1939";OpenDOAR +dedup::9fc42e222dbedb8b2d9503021e6e7561;opendoar::2350;2350;"electronic repository of the national pedagogical dragomanov university";OpenDOAR +dedup::9fc42e222dbedb8b2d9503021e6e7561;roar::4464;4464;"Electronic Repository of the National Pedagogical Dragomanov University";roar +dedup::9fda7543cadb586836d29b1fa8b43f64;re3data::r3d100011707;r3d100011707;"Genomic Observatories MetaDatabase";re3data +dedup::9fda7543cadb586836d29b1fa8b43f64;https://fairsharing.org/10.25504/FAIRsharing.wOcTaM;3019;"Genomic Observatories Meta-Database";FAIRsharing +dedup::9fed61b65787755066174d87fa83aa7d;opendoar::2278;2278;"papers past";OpenDOAR +dedup::9fed61b65787755066174d87fa83aa7d;roar::4923;4923;"Papers Past";roar +dedup::9fee8b2282e577efcd5f5117a9f43fb7;opendoar::70;70;"cranfield ceres";OpenDOAR +dedup::9fee8b2282e577efcd5f5117a9f43fb7;roar::266;266;"Cranfield CERES";roar +dedup::9ff84e3d49b0cc32eb7ed6a38899c4df;opendoar::3384;3384;"biblioteca digital de artesanías de colombia";OpenDOAR +dedup::9ff84e3d49b0cc32eb7ed6a38899c4df;roar::9896;9896;"Biblioteca Digital de Artesanías de Colombia ";roar +dedup::a0126e7444cce073b66b78516584e763;opendoar::4865;4865;"mardin artuklu university institutional repository";OpenDOAR +dedup::a0126e7444cce073b66b78516584e763;roar::15241;15241;"Mardin Artuklu University Institutional Repository";roar +dedup::a016f0320261941ed7d7850ef0e69cfc;opendoar::2473;2473;"ucrea";OpenDOAR +dedup::a016f0320261941ed7d7850ef0e69cfc;roar::5212;5212;"UCrea";roar +dedup::a016f0320261941ed7d7850ef0e69cfc;re3data::r3d100013537;r3d100013537;"UCREA";re3data +dedup::a0423f393c5c6839e7251aca4eae5f9b;https://fairsharing.org/fairsharing_records/3055;3055;"National Microbiome Data Collaborative";FAIRsharing +dedup::a0423f393c5c6839e7251aca4eae5f9b;re3data::r3d100013542;r3d100013542;"National Microbiome Data Collaborative";re3data +dedup::a05312f58ab09f560a3888994eb9e7ba;re3data::r3d100011197;r3d100011197;"Ensembl Genomes";re3data +dedup::a05312f58ab09f560a3888994eb9e7ba;https://fairsharing.org/10.25504/FAIRsharing.923a0p;2386;"Ensembl Genomes";FAIRsharing +dedup::a05b07c2838c4a1755fb57688004d514;opendoar::4287;4287;"shokei gakuin university academic institutional repository";OpenDOAR +dedup::a05b07c2838c4a1755fb57688004d514;roar::13975;13975;"Shokei Gakuin University Academic Institutional Repository";roar +dedup::a067732caecf80cbc432a6bf6a79637e;roar::11737;11737;"pub H-BRS - Publikationsserver der Hochschule Bonn-Rhein-Sieg";roar +dedup::a067732caecf80cbc432a6bf6a79637e;opendoar::3557;3557;"pub h-brs - publikationsserver der hochschule bonn-rhein-sieg";OpenDOAR +dedup::a09447449254baee1466ea3f763e96d9;re3data::r3d100013080;r3d100013080;"DataStream";re3data +dedup::a09447449254baee1466ea3f763e96d9;https://fairsharing.org/10.25504/FAIRsharing.EEDgWH;3234;"DataStream";FAIRsharing +dedup::a0ac04e1d31ab52075608a1ce0df72a8;opendoar::1560;1560;"riunet";OpenDOAR +dedup::a0ac04e1d31ab52075608a1ce0df72a8;re3data::r3d100013030;r3d100013030;"RiuNet";re3data +dedup::a10f57feee57659b4ecd9b27a1a3c5f6;opendoar::2112;2112;"repositório institucional da universidade tecnológica federal do paraná";OpenDOAR +dedup::a10f57feee57659b4ecd9b27a1a3c5f6;roar::3597;3597;"Repositório Institucional da Universidade Tecnológica Federal do Paraná (RIUT)";roar +dedup::a10f57feee57659b4ecd9b27a1a3c5f6;roar::8772;8772;"Repositório Institucional da Universidade Tecnológica Federal do Paraná (RIUT)";roar +dedup::a11335bce047804d7efc73c045570b29;https://fairsharing.org/10.25504/FAIRsharing.5b85dc;3036;"Satellite Application Facility on Climate Monitoring";FAIRsharing +dedup::a11335bce047804d7efc73c045570b29;re3data::r3d100011659;r3d100011659;"Satellite Application Facility on Climate Monitoring";re3data +dedup::a11f1ff437a6bc4125cd00a35613d44d;opendoar::850;850;"swedish institute of computer science publications database";OpenDOAR +dedup::a11f1ff437a6bc4125cd00a35613d44d;roar::1242;1242;"Swedish Institute of Computer Science Publications Database";roar +dedup::a122949ed24a4402733e676ce38b1df1;roar::3190;3190;"Biblioteca Digital IEP-PETROECUADOR";roar +dedup::a122949ed24a4402733e676ce38b1df1;opendoar::1963;1963;"biblioteca digital iep-petroecuador";OpenDOAR +dedup::a12e5564dfdd612ce4ead778538ad9ba;opendoar::665;665;"historic american sheet music";OpenDOAR +dedup::a12e5564dfdd612ce4ead778538ad9ba;roar::2418;2418;"Historic American Sheet Music";roar +dedup::a14ff1238fabcce6e8ba02ec66da0fc8;roar::8050;8050;"Repozytorium Uniwersytetu w Białymstoku/University of Bialystok Repository";roar +dedup::a14ff1238fabcce6e8ba02ec66da0fc8;opendoar::3011;3011;"repozytorium uniwersytetu w białymstoku (university of bialystok repository)";OpenDOAR +dedup::a1a1feee38dc9c14bbb8e3275f54ffa0;roar::603;603;"HAL - IN2P3";roar +dedup::a1a1feee38dc9c14bbb8e3275f54ffa0;opendoar::80;80;"hal-in2p3";OpenDOAR +dedup::a2377b13c57dd169e0b459fe5092b12d;re3data::r3d100010159;r3d100010159;"NASA Socioeconomic Data and Applications Center";re3data +dedup::a2377b13c57dd169e0b459fe5092b12d;https://fairsharing.org/10.25504/FAIRsharing.4ufVpm;3024;"NASA Socioeconomic Data and Applications Center";FAIRsharing +dedup::a23994761232296cdf6bf46ccc6fa0fe;https://fairsharing.org/10.25504/FAIRsharing.mqvqde;2254;"FaceBase";FAIRsharing +dedup::a23994761232296cdf6bf46ccc6fa0fe;re3data::r3d100013263;r3d100013263;"FaceBase";re3data +dedup::a23e59ac5dad478b04138ae3b02d08f5;re3data::r3d100012195;r3d100012195;"SuperTarget";re3data +dedup::a23e59ac5dad478b04138ae3b02d08f5;https://fairsharing.org/10.25504/FAIRsharing.se4zhk;1691;"SuperTarget";FAIRsharing +dedup::a2abe454877e666233329f8aeb0c6022;re3data::r3d100013547;r3d100013547;"LiceBase";re3data +dedup::a2abe454877e666233329f8aeb0c6022;https://fairsharing.org/10.25504/FAIRsharing.c7w81a;2389;"LiceBase";FAIRsharing +dedup::a2ac8b8657dde20743c2f511a4757d8a;opendoar::2057;2057;"silesian university of technology digital library";OpenDOAR +dedup::a2ac8b8657dde20743c2f511a4757d8a;roar::3581;3581;"Silesian University of Technology Digital Library";roar +dedup::a2c58a097cedaba3307777bfb768b02d;opendoar::1788;1788;"chinese culture university institutional repository(中國文化大學機構典藏)";OpenDOAR +dedup::a2c58a097cedaba3307777bfb768b02d;roar::2703;2703;"Chinese Culture University Institutional Repository(中國文化大學機構典藏)";roar +dedup::a2cca42e36f510a426d95397741abb46;roar::5127;5127;"Catalogue des thèses URCA";roar +dedup::a2cca42e36f510a426d95397741abb46;opendoar::283;283;"catalogue des thèses urca";OpenDOAR +dedup::a2f27fd2da8144a602d987b10b6de59d;re3data::r3d100000036;r3d100000036;"Goddard Earth Sciences Data and Information Services Center";re3data +dedup::a2f27fd2da8144a602d987b10b6de59d;https://fairsharing.org/10.25504/FAIRsharing.7388wt;2495;"NASA Goddard Earth Sciences Data and Information Services Center";FAIRsharing +dedup::a31e8f7a9ad976edebb39b1879ad789b;roar::1398;1398;"University of Minnesota Digital Conservancy";roar +dedup::a31e8f7a9ad976edebb39b1879ad789b;opendoar::1008;1008;"university of minnesota digital conservancy";OpenDOAR +dedup::a3421964553fcf5e9f03531a177ae95f;https://fairsharing.org/10.25504/FAIRsharing.abwvhp;2164;"NCBI Trace Archive";FAIRsharing +dedup::a3421964553fcf5e9f03531a177ae95f;re3data::r3d100010905;r3d100010905;"NCBI Trace Archive";re3data +dedup::a35807788e3134b56dc8614cb281f07f;opendoar::4567;4567;"plantarum - repository of the institute for plant protection and environment";OpenDOAR +dedup::a35807788e3134b56dc8614cb281f07f;roar::14650;14650;"PlantaRum - Repository of the Institute for Plant Protection and Environment";roar +dedup::a36a0ce45609b91c04b22e50e9c8de0a;roar::4821;4821;"ePrints Sriwijaya University - UNSRI Online Repository";roar +dedup::a36a0ce45609b91c04b22e50e9c8de0a;roar::4559;4559;"ePrints Sriwijaya University - UNSRI Online Repository";roar +dedup::a39676eb44cf4eab46666307206a9d84;opendoar::2528;2528;"opus - hochschulschriftenserver der hochschule aalen";OpenDOAR +dedup::a39676eb44cf4eab46666307206a9d84;roar::8647;8647;"OPUS - Hochschulschriftenserver der Hochschule Aalen";roar +dedup::a3e9de3bb91e2f99029d599869aa4220;roar::2323;2323;"Publikationer från Södertörns Högskola";roar +dedup::a3e9de3bb91e2f99029d599869aa4220;opendoar::262;262;"publikationer från södertörns högskola";OpenDOAR +dedup::a3f53243a3ae7f937c353060f372f886;re3data::r3d100011030;r3d100011030;"Center for Operational Oceanographic Products and Services";re3data +dedup::a3f53243a3ae7f937c353060f372f886;https://fairsharing.org/fairsharing_records/2996;2996;"Center for Operational Oceanographic Products and Services";FAIRsharing +dedup::a41b90c2b57965ec07979293f0c429bf;opendoar::1984;1984;"twcu repository";OpenDOAR +dedup::a41b90c2b57965ec07979293f0c429bf;roar::3284;3284;"TWCU Repository";roar +dedup::a41cb94a043bdc56fb81f844e812c0e4;re3data::r3d100011164;r3d100011164;"Australian New Zealand Clinical Trials Registry";re3data +dedup::a41cb94a043bdc56fb81f844e812c0e4;https://fairsharing.org/10.25504/FAIRsharing.7f07dd;2927;"Australian New Zealand Clinical Trials Registry";FAIRsharing +dedup::a429077460fd30a7c0229c962fc6ecb8;opendoar::2093;2093;"tarnow digital library";OpenDOAR +dedup::a429077460fd30a7c0229c962fc6ecb8;roar::3664;3664;"Tarnow Digital Library";roar +dedup::a429077460fd30a7c0229c962fc6ecb8;roar::5549;5549;"Tarnow Digital Library";roar +dedup::a440e0040ebaeea1258a2dd3062b0a0e;opendoar::7907;7907;"kamakura women’s university repository";OpenDOAR +dedup::a440e0040ebaeea1258a2dd3062b0a0e;roar::12753;12753;"Kamakura Women's University Repository";roar +dedup::a48acc014296c93d501756224c5f1800;roar::4156;4156;"Repositorio Institucional de la Universidad de El Salvador";roar +dedup::a48acc014296c93d501756224c5f1800;opendoar::2268;2268;"repositorio institucional de la universidad de el salvador";OpenDOAR +dedup::a4a2b6dd490ba050e5bf9ed6d4746b04;opendoar::2237;2237;"biblioteka cyfrowa małopolskiego towarzystwa genealogicznego";OpenDOAR +dedup::a4a2b6dd490ba050e5bf9ed6d4746b04;roar::4122;4122;"Biblioteka Cyfrowa Małopolskiego Towarzystwa Genealogicznego";roar +dedup::a4d67da8551fc19a06a6b8abc6d1cd11;re3data::r3d100010890;r3d100010890;"Protein Circular Dichroism Data Bank";re3data +dedup::a4d67da8551fc19a06a6b8abc6d1cd11;https://fairsharing.org/10.25504/FAIRsharing.65yfxp;2142;"Protein Circular Dichroism Data Bank";FAIRsharing +dedup::a4eb7c44c58cc29605703e7cda5776df;roar::9645;9645;"KOTRA(대한투자무역진흥공사)";roar +dedup::a4eb7c44c58cc29605703e7cda5776df;opendoar::3266;3266;"kotra";OpenDOAR +dedup::a50821f4664ed16a8bd181ad3af690b8;opendoar::4397;4397;"repositorio digital universidad del magdalena";OpenDOAR +dedup::a50821f4664ed16a8bd181ad3af690b8;roar::15423;15423;"Repositorio Digital Universidad del Magdalena";roar +dedup::a514bbc9ca8dfcc2f4a00ed36bf7b46a;opendoar::2732;2732;"mountain forum";OpenDOAR +dedup::a514bbc9ca8dfcc2f4a00ed36bf7b46a;roar::7204;7204;"Mountain Forum";roar +dedup::a5e4f9f655e2534705e0ca965dc270ed;re3data::r3d100013633;r3d100013633;"Scholar@UC";re3data +dedup::a5e4f9f655e2534705e0ca965dc270ed;roar::11687;11687;"Scholar@UC";roar +dedup::a5e6ad325922eb43c73dabad1afe0b8d;re3data::r3d100010525;r3d100010525;"NASA/IPAC Extragalactic Database";re3data +dedup::a5e6ad325922eb43c73dabad1afe0b8d;https://fairsharing.org/10.25504/FAIRsharing.b952rv;2539;"NASA/IPAC Extragalactic Database";FAIRsharing +dedup::a5ec843e28aa3d6a41532692b6007245;roar::13356;13356;"RIUNNE: Repositorio Institucional de la Universidad Nacional del Nordeste";roar +dedup::a5ec843e28aa3d6a41532692b6007245;opendoar::4871;4871;"repositorio institucional de la universidad nacional del nordeste";OpenDOAR +dedup::a5f28b111b76ff2be1c8045fa449cf8e;roar::73;73;"Archivio Istituzionale della Ricerca";roar +dedup::a5f28b111b76ff2be1c8045fa449cf8e;roar::8237;8237;"AIR | Archivio Istituzionale della Ricerca";roar +dedup::a5f3965a361d6094ad9533162805c73d;roar::6914;6914;"Repositorio Institucional del ITESO";roar +dedup::a5f3965a361d6094ad9533162805c73d;opendoar::2660;2660;"repositorio institucional del iteso";OpenDOAR +dedup::a63640a8b517d7817e8de23e17504c85;re3data::r3d100011555;r3d100011555;"International Neuroimaging Data-sharing Initiative";re3data +dedup::a63640a8b517d7817e8de23e17504c85;https://fairsharing.org/10.25504/FAIRsharing.ajpk6x;2153;"International Neuroimaging Data-Sharing Initiative";FAIRsharing +dedup::a661854c8b5e95fe3a282a55830b54c6;roar::11376;11376;"Investigo";roar +dedup::a661854c8b5e95fe3a282a55830b54c6;opendoar::3690;3690;"investigo";OpenDOAR +dedup::a69858409f00530e6ffba6c89f8ac622;roar::11352;11352;"Institutional Repository of Moldova State University";roar +dedup::a69858409f00530e6ffba6c89f8ac622;opendoar::3738;3738;"institutional repository of moldova state university";OpenDOAR +dedup::a69ad331150e6e360a1f20e4c2c3e4d0;roar::10033;10033;"Kyushu University of Health and Welfare Repository";roar +dedup::a69ad331150e6e360a1f20e4c2c3e4d0;opendoar::3422;3422;"kyushu university of health and welfare repository";OpenDOAR +dedup::a6c27361baac8a826c1f64ac254de406;opendoar::9495;9495;"digitaler lesesaal zur staedtepartnerschaft ludwigsburg und montbéliard";OpenDOAR +dedup::a6c27361baac8a826c1f64ac254de406;roar::15656;15656;"Digitaler Lesesaal zur Staedtepartnerschaft Ludwigsburg und Montbéliard ";roar +dedup::a70f0c812dc527508b7c803561ee9c8b;roar::11287;11287;"Biblioteca Digital Universidad de San Buenaventura";roar +dedup::a70f0c812dc527508b7c803561ee9c8b;opendoar::3916;3916;"biblioteca digital universidad de san buenaventura";OpenDOAR +dedup::a79814239867500096192314828a8657;opendoar::497;497;"simon fraser university institutional repository";OpenDOAR +dedup::a79814239867500096192314828a8657;roar::4637;4637;"Simon Fraser University Institutional Repository";roar +dedup::a7c77a73045a1870bb496392979d48f0;roar::9803;9803;"RI-UNAPEC: Repositorio Institucional de la Universidad APEC";roar +dedup::a7c77a73045a1870bb496392979d48f0;opendoar::3349;3349;"ri-unapec. repositorio institucional de la universidad apec";OpenDOAR +dedup::a7e4dc1e30c4eff030c6c1fef723da3f;opendoar::1275;1275;"glasgow theses service";OpenDOAR +dedup::a7e4dc1e30c4eff030c6c1fef723da3f;roar::583;583;"Glasgow Theses Service";roar +dedup::a8300eb91261f782933b09df7d335138;opendoar::651;651;"kaiserslauterer uniweiter elektronischer dokumentenserver";OpenDOAR +dedup::a8300eb91261f782933b09df7d335138;roar::5468;5468;"Kaiserslauterer uniweiter elektronischer Dokumentenserver";roar +dedup::a83da9dc3d88f07412edd88e9cfc18b2;opendoar::1666;1666;"eiah digital repository";OpenDOAR +dedup::a83da9dc3d88f07412edd88e9cfc18b2;roar::5209;5209;"EIAH Digital Repository";roar +dedup::a8537119c0d3c9c5d14efeff5537f51f;re3data::r3d100013574;r3d100013574;"Macromolecular Xtallography Raw Data Repository";re3data +dedup::a8537119c0d3c9c5d14efeff5537f51f;opendoar::10113;10113;"macromolecular xtallography raw data repository";OpenDOAR +dedup::a858769a60313609569cb8c86624b78d;opendoar::2143;2143;"its digital repository";OpenDOAR +dedup::a858769a60313609569cb8c86624b78d;roar::3802;3802;"ITS Digital Repository";roar +dedup::a869e422accd6758a0d68559e8ef69ac;re3data::r3d100013645;r3d100013645;"TemplateFlow";re3data +dedup::a869e422accd6758a0d68559e8ef69ac;opendoar::10204;10204;"templateflow";OpenDOAR +dedup::a87574d11200e6d5e1668f10433ae0bf;opendoar::2378;2378;"dokumentenserver der akademie der wissenschaften zu göttingen";OpenDOAR +dedup::a87574d11200e6d5e1668f10433ae0bf;roar::5559;5559;"Dokumentenserver der Akademie der Wissenschaften zu Göttingen";roar +dedup::a886fc8016ad09b2064fa37f32e0bb8c;opendoar::1481;1481;"publikationer från högskolan i skövde";OpenDOAR +dedup::a886fc8016ad09b2064fa37f32e0bb8c;roar::2326;2326;"Publikationer från Högskolan i Skövde";roar +dedup::a8b74ef584d3b8c6ee02ecfd74180c9d;opendoar::2231;2231;"digital commons @ boston college law school";OpenDOAR +dedup::a8b74ef584d3b8c6ee02ecfd74180c9d;roar::4133;4133;"Digital Commons @ Boston College Law School";roar +dedup::a8dc09fb7062b6a45da0eabde0260ee7;https://fairsharing.org/10.25504/FAIRsharing.pr47jw;2200;"NIDDK Central Repository";FAIRsharing +dedup::a8dc09fb7062b6a45da0eabde0260ee7;re3data::r3d100010377;r3d100010377;"NIDDK Central Repository";re3data +dedup::a8e4a95b222bfc5ac822537759202bba;roar::1240;1240;"Surrey Research Insight";roar +dedup::a8e4a95b222bfc5ac822537759202bba;opendoar::305;305;"surrey research insight";OpenDOAR +dedup::a8e4a95b222bfc5ac822537759202bba;re3data::r3d100012232;r3d100012232;"Surrey Research Insight";re3data +dedup::a8ec8e8fd738b9b11b352fcadee4be6b;opendoar::4782;4782;"repositorio institucional de la utp";OpenDOAR +dedup::a8ec8e8fd738b9b11b352fcadee4be6b;roar::16004;16004;"Repositorio Institucional de la UTP";roar +dedup::a8ec8e8fd738b9b11b352fcadee4be6b;roar::15178;15178;"Repositorio Institucional de la UTP";roar +dedup::a976535abe21f7c5e5eaa001bcb06407;https://fairsharing.org/10.25504/FAIRsharing.9btRvC;2748;"China National GeneBank DataBase";FAIRsharing +dedup::a976535abe21f7c5e5eaa001bcb06407;re3data::r3d100012917;r3d100012917;"China National GeneBank DataBase";re3data +dedup::a984afa72af5ec8c663f24b822f6bb25;roar::1333;1333;"UnissResearch";roar +dedup::a984afa72af5ec8c663f24b822f6bb25;opendoar::1389;1389;"unissresearch";OpenDOAR +dedup::a98505f2e69d9bdff9dcba6e3dce57a4;opendoar::3041;3041;"repository of the vitebsk state university named after p.m.masherov";OpenDOAR +dedup::a98505f2e69d9bdff9dcba6e3dce57a4;roar::16258;16258;"Repository of the Vitebsk State University named after P.M.Masherov";roar +dedup::a9c08979d097acaa932163232c3b6993;opendoar::1092;1092;"digital collections@um";OpenDOAR +dedup::a9c08979d097acaa932163232c3b6993;roar::4936;4936;"Digital Collections@UM";roar +dedup::a9cd8b41af8dd2a7e38bada87ab44acd;opendoar::4623;4623;"repository of bjelovar university of applied sciences";OpenDOAR +dedup::a9cd8b41af8dd2a7e38bada87ab44acd;opendoar::4218;4218;"repository of bjelovar university of applied sciences";OpenDOAR +dedup::a9fd0352ce553fa3d85d16ce9ea6a0d1;roar::10244;10244;"Home - Repositorio Institucional del Tecnologico de Monterrey";roar +dedup::a9fd0352ce553fa3d85d16ce9ea6a0d1;roar::10243;10243;"Home - Repositorio Institucional del Tecnologico de Monterrey";roar +dedup::aa1999a32d12c7933f6083b7de66f823;opendoar::984;984;"nature precedings";OpenDOAR +dedup::aa1999a32d12c7933f6083b7de66f823;roar::911;911;"Nature Precedings";roar +dedup::aa33258fa66418e45fdb051bee863df2;opendoar::2508;2508;"firsttech institutional repository";OpenDOAR +dedup::aa33258fa66418e45fdb051bee863df2;roar::5272;5272;"FirstTech Institutional Repository";roar +dedup::aa38e3ff93dcc41c0e842b314f91da7c;opendoar::373;373;"white rose research online";OpenDOAR +dedup::aa38e3ff93dcc41c0e842b314f91da7c;roar::1525;1525;"White Rose Research Online";roar +dedup::aa5b20297679a28b84476eba0582d7ab;re3data::r3d100013311;r3d100013311;"Netherlands Trial Register";re3data +dedup::aa5b20297679a28b84476eba0582d7ab;https://fairsharing.org/fairsharing_records/2932;2932;"Netherlands Trial Register";FAIRsharing +dedup::aa6108324e58c8dae5134edcfa5cab83;re3data::r3d100010985;r3d100010985;"Human Proteinpedia";re3data +dedup::aa6108324e58c8dae5134edcfa5cab83;https://fairsharing.org/10.25504/FAIRsharing.xxdxtv;1929;"Human Proteinpedia";FAIRsharing +dedup::aa638303092db49ca1c08300bd56fb37;opendoar::2409;2409;"university of essex research repository";OpenDOAR +dedup::aa638303092db49ca1c08300bd56fb37;roar::5074;5074;"University of Essex Research Repository";roar +dedup::aa86bb103d3097808b6cfaa57218368e;https://fairsharing.org/10.25504/FAIRsharing.e8e24f;3154;"Hustedt Diatom Collection Database";FAIRsharing +dedup::aa86bb103d3097808b6cfaa57218368e;re3data::r3d100011122;r3d100011122;"Hustedt Diatom Collection Database";re3data +dedup::aa923a4deb9ac20fdbc2bc2cddcec645;opendoar::4636;4636;"the tokyo foundation for policy research repository";OpenDOAR +dedup::aa923a4deb9ac20fdbc2bc2cddcec645;opendoar::4702;4702;"the tokyo foundation for policy research repository";OpenDOAR +dedup::aa923a4deb9ac20fdbc2bc2cddcec645;roar::14936;14936;"The Tokyo Foundation for Policy Research Repository";roar +dedup::aa9ede3a55d815b6b3ae758f2d33d9c0;roar::5052;5052;"Repositorio Digital Universidad Don Bosco";roar +dedup::aa9ede3a55d815b6b3ae758f2d33d9c0;opendoar::2441;2441;"repositorio digital universidad don bosco";OpenDOAR +dedup::aaa92b8b6eedd55320e3b3623de61ce8;roar::17524;17524;"Repositorio AURORA";roar +dedup::aaa92b8b6eedd55320e3b3623de61ce8;opendoar::10243;10243;"repositorio aurora";OpenDOAR +dedup::aab12e2454b59d04c700b4afb1624fcb;opendoar::3260;3260;"biblioteca digital da univates - bdu";OpenDOAR +dedup::aab12e2454b59d04c700b4afb1624fcb;roar::9397;9397;"Biblioteca Digital da Univates - BDU";roar +dedup::aac97eaa108e5d5cf9a2ab51b312b6fb;opendoar::1482;1482;"biblioteca digital da flup";OpenDOAR +dedup::aac97eaa108e5d5cf9a2ab51b312b6fb;roar::128;128;"Biblioteca Digital da FLUP";roar +dedup::aae4719e40af4d19401943d4ac1abfac;opendoar::1967;1967;"researchspace@ukzn";OpenDOAR +dedup::aae4719e40af4d19401943d4ac1abfac;roar::2768;2768;"ResearchSpace@UKZN ";roar +dedup::aae4719e40af4d19401943d4ac1abfac;roar::6466;6466;"ResearchSpace@UKZN";roar +dedup::aae4719e40af4d19401943d4ac1abfac;roar::2421;2421;"ResearchSpace@UKZN";roar +dedup::aae8a015103290b76a7e04551dbbe7de;re3data::r3d100013312;r3d100013312;"Novartis Clinical Trial Results Database";re3data +dedup::aae8a015103290b76a7e04551dbbe7de;https://fairsharing.org/fairsharing_records/2961;2961;"Novartis Clinical Trial Results Database";FAIRsharing +dedup::aaed82673b07468cd4779e3798c9c26c;roar::528;528;"Eres : Digital Library";roar +dedup::aaed82673b07468cd4779e3798c9c26c;roar::5564;5564;"ERES Digital Library";roar +dedup::ab28a03fcd66abe1c41bdd747a2437c4;https://fairsharing.org/fairsharing_records/3267;3267;"Integrated Public Use Microdata Series - International";FAIRsharing +dedup::ab28a03fcd66abe1c41bdd747a2437c4;re3data::r3d100011135;r3d100011135;"Integrated Public Use Microdata Series - International";re3data +dedup::ab6faa1e4249dbe1d56bc7e1ffaefc0b;opendoar::105;105;"document server@uhasselt";OpenDOAR +dedup::ab6faa1e4249dbe1d56bc7e1ffaefc0b;roar::370;370;"Document Server@UHasselt";roar +dedup::ab747a365462e7f9bf25869f4647a279;roar::10970;10970;"Repositorio Universidad Autónoma de Manizales ";roar +dedup::ab747a365462e7f9bf25869f4647a279;opendoar::4706;4706;"repositorio universidad autónoma de manizales";OpenDOAR +dedup::ab747a365462e7f9bf25869f4647a279;roar::16495;16495;"Repositorio Universidad Autónoma de Manizales ";roar +dedup::ab747a365462e7f9bf25869f4647a279;roar::16494;16494;"Repositorio Universidad Autónoma de Manizales ";roar +dedup::ab915d9029a608c73f0b3b00b4011479;roar::3017;3017;"IRCULB Institutional Repository of Central University Library in Bucharest";roar +dedup::ab915d9029a608c73f0b3b00b4011479;roar::3097;3097;"IRCULB Institutional Repository of Central University Library Carol I in Bucharest";roar +dedup::abbbc4e99d6571c518a62e9eb5dc1c7f;roar::11276;11276;"Repository UIN Sumatera Utara";roar +dedup::abbbc4e99d6571c518a62e9eb5dc1c7f;opendoar::3609;3609;"repository uin sumatera utara";OpenDOAR +dedup::ac1f4bffb5100785e0d17e3dea1fa6af;https://fairsharing.org/10.25504/FAIRsharing.rz7h29;2025;"Federal Interagency Traumatic Brain Injury Research Informatics System";FAIRsharing +dedup::ac1f4bffb5100785e0d17e3dea1fa6af;re3data::r3d100012837;r3d100012837;"Federal Interagency Traumatic Brain Injury Research Informatics System";re3data +dedup::ac3bc29809ea00744282534e1cbef54b;opendoar::2715;2715;"repositorio institucional del ministerio de educación de la nación";OpenDOAR +dedup::ac3bc29809ea00744282534e1cbef54b;roar::6019;6019;"Repositorio Institucional del Ministerio de Educación de la Nación";roar +dedup::ac411cb18341e90f7f0a00b5f4c75ac8;roar::8678;8678;"Midlands State University Institutional Repository";roar +dedup::ac411cb18341e90f7f0a00b5f4c75ac8;opendoar::3186;3186;"midlands state university institutional repository";OpenDOAR +dedup::ac53a8e95819b4f3e92c3d00d903fe48;roar::5535;5535;"DSpace at Trinity College Carmarthen";roar +dedup::ac53a8e95819b4f3e92c3d00d903fe48;roar::419;419;"DSpace at Trinity College Carmarthen";roar +dedup::ac8258ef9c21db115ec766c2245f892b;roar::307;307;"Digital Commons@Wayne State University";roar +dedup::ac8258ef9c21db115ec766c2245f892b;opendoar::592;592;"digital commons@wayne state university";OpenDOAR +dedup::ac9611b4b94b548e1cba5aaa5a7f2062;https://fairsharing.org/10.25504/FAIRsharing.wpt5mp;1987;"PubMed Central";FAIRsharing +dedup::ac9611b4b94b548e1cba5aaa5a7f2062;opendoar::267;267;"pubmed central";OpenDOAR +dedup::acba8e9a8d5488b555e31aca287946f2;opendoar::3355;3355;"miyagi university of education repository";OpenDOAR +dedup::acba8e9a8d5488b555e31aca287946f2;roar::9805;9805;"Miyagi University of Education Repository";roar +dedup::accf77a9386e503adf6ca6089aff4db7;opendoar::7590;7590;"nara prefectural university repository";OpenDOAR +dedup::accf77a9386e503adf6ca6089aff4db7;roar::14227;14227;"Nara Prefectural University Repository";roar +dedup::ad2ddf6a0438a81935f1c988b0047848;roar::3644;3644;"Espace ÉTS";roar +dedup::ad2ddf6a0438a81935f1c988b0047848;opendoar::2074;2074;"espace éts";OpenDOAR +dedup::ad5f196c6bfa8b3dff7a2d44895a8bef;re3data::r3d100011691;r3d100011691;"ACTRIS Data Centre";re3data +dedup::ad5f196c6bfa8b3dff7a2d44895a8bef;https://fairsharing.org/fairsharing_records/3012;3012;"ACTRIS Data Centre";FAIRsharing +dedup::ad7c464996a56026cc83f417403c1d60;roar::4170;4170;"Biodiversity Heritage Library OAI Repository";roar +dedup::ad7c464996a56026cc83f417403c1d60;opendoar::2266;2266;"biodiversity heritage library oai repository";OpenDOAR +dedup::ad7f0109a4b585ee4dc45b3737248026;opendoar::2059;2059;"regional materials of łódź";OpenDOAR +dedup::ad7f0109a4b585ee4dc45b3737248026;roar::3611;3611;"Regional Materials of Łódź";roar +dedup::ad93a73f219e7c97fd4c0a904f5c0ec7;opendoar::3314;3314;"institutional repository of satya wacana christian university";OpenDOAR +dedup::ad93a73f219e7c97fd4c0a904f5c0ec7;roar::8981;8981;"Institutional Repository of Satya Wacana Christian University";roar +dedup::ada825779e11017f36055d5dcc8d34c8;opendoar::2591;2591;"liburuklik biblioteca digital vasca";OpenDOAR +dedup::ada825779e11017f36055d5dcc8d34c8;roar::6829;6829;"Liburuklik: Biblioteca Digital Vasca";roar +dedup::adace01ab4902f8bd6cba3dec87d977f;opendoar::3089;3089;"ewu institutional repository";OpenDOAR +dedup::adace01ab4902f8bd6cba3dec87d977f;roar::8997;8997;"EWU Institutional Repository";roar +dedup::adc5fbcec374bed6a5357aa9123daa34;opendoar::1046;1046;"doshisha university academic repository";OpenDOAR +dedup::adc5fbcec374bed6a5357aa9123daa34;roar::16291;16291;"Doshisha University Academic Repository";roar +dedup::adc5fbcec374bed6a5357aa9123daa34;roar::6967;6967;"Doshisha University Academic Repository";roar +dedup::adcef2b7dcf2cb8f565f2559b5cb8e69;https://fairsharing.org/fairsharing_records/3060;3060;"Crustal Dynamics Data Information System";FAIRsharing +dedup::adcef2b7dcf2cb8f565f2559b5cb8e69;re3data::r3d100010501;r3d100010501;"Crustal Dynamics Data Information System";re3data +dedup::adcfc3f14b0781bf376245321ca9f739;roar::3375;3375;"Chung Hwa University of Medical Technology Repository";roar +dedup::adcfc3f14b0781bf376245321ca9f739;opendoar::1842;1842;"chung hwa university of medical technology repository";OpenDOAR +dedup::adcfc3f14b0781bf376245321ca9f739;roar::2854;2854;"Hung Hwa University of Medical Technology Repository";roar +dedup::add0ee6f44a5f906f888dca22dfae163;roar::4591;4591;"computer science publication server";roar +dedup::add0ee6f44a5f906f888dca22dfae163;opendoar::2375;2375;"computer science publication server";OpenDOAR +dedup::ae3fd53697e48631a2894009f21acb57;roar::14077;14077;"The Research Repository @ WVU";roar +dedup::ae3fd53697e48631a2894009f21acb57;opendoar::6501;6501;"the research repository @ wvu";OpenDOAR +dedup::ae426e4780133fecc79ac9d6cc483b68;opendoar::9642;9642;"repositório febab";OpenDOAR +dedup::ae426e4780133fecc79ac9d6cc483b68;roar::16035;16035;"Repositório - FEBAB";roar +dedup::ae67d0d1fb36bc0d09079612a4b5293c;re3data::r3d100013456;r3d100013456;"Open Forest Data";re3data +dedup::ae67d0d1fb36bc0d09079612a4b5293c;opendoar::10035;10035;"open forest data";OpenDOAR +dedup::ae97954509522a28ff42e67440d2d028;roar::16033;16033;"Kapadokya University Institutional Repository";roar +dedup::ae97954509522a28ff42e67440d2d028;opendoar::9646;9646;"kapadokya university institutional repository";OpenDOAR +dedup::aea0286d59ac6e3293ce1ea5ecbda645;opendoar::1364;1364;"texas scholarworks";OpenDOAR +dedup::aea0286d59ac6e3293ce1ea5ecbda645;roar::3570;3570;"Texas ScholarWorks";roar +dedup::aed3523dea69f46bf43aa1e1ae7270f9;opendoar::7351;7351;"digitalcommons@pcom";OpenDOAR +dedup::aed3523dea69f46bf43aa1e1ae7270f9;roar::8300;8300;"DigitalCommons@PCOM";roar +dedup::aef49bc4ca083d1b47e960c0a7356a01;roar::12165;12165;"IO PWr";roar +dedup::aef49bc4ca083d1b47e960c0a7356a01;opendoar::3845;3845;"io pwr";OpenDOAR +dedup::aef6d57898a9cc106dc224ced46e95f0;roar::3415;3415;"Lafayette Digital Repository";roar +dedup::aef6d57898a9cc106dc224ced46e95f0;opendoar::2003;2003;"lafayette digital repository";OpenDOAR +dedup::af1b2585a04e7208f3c67c5f9c123e3f;roar::4722;4722;"ScholarWorks at WMU";roar +dedup::af1b2585a04e7208f3c67c5f9c123e3f;opendoar::2396;2396;"scholarworks at wmu";OpenDOAR +dedup::af567f8ad5e06f080a695d77cf4bf226;roar::776;776;"Ktisis";roar +dedup::af567f8ad5e06f080a695d77cf4bf226;opendoar::1540;1540;"ktisis";OpenDOAR +dedup::af567f8ad5e06f080a695d77cf4bf226;re3data::r3d100013287;r3d100013287;"KTISIS";re3data +dedup::af5a82b6f31667d4312c4bb1b32a6998;roar::4940;4940;"OAPEN Library";roar +dedup::af5a82b6f31667d4312c4bb1b32a6998;roar::5709;5709;"OAPEN Library";roar +dedup::af666782197434e32d20d45300bf308d;roar::2742;2742;"Dagstuhl Research Online Publication Server";roar +dedup::af666782197434e32d20d45300bf308d;opendoar::1814;1814;"dagstuhl research online publication server";OpenDOAR +dedup::af6c6019958ead18bbd4f152aa9495d0;https://fairsharing.org/fairsharing_records/3035;3035;"U.S. Census Bureau TIGER/Line Shapefiles and TIGER/Line® Files";FAIRsharing +dedup::af6c6019958ead18bbd4f152aa9495d0;re3data::r3d100011313;r3d100011313;"U.S. Census Bureau TIGER/Line Shapefiles and TIGER/Line® Files";re3data +dedup::af84d6f433935282d80aef21bf5091da;opendoar::3992;3992;"electronic library of belarusian state technological university";OpenDOAR +dedup::af84d6f433935282d80aef21bf5091da;roar::12762;12762;"Electronic Library of Belarusian State Technological University";roar +dedup::af9d4f9e444d3e7417a36b1da75b07d0;roar::16444;16444;"Chalmers Research";roar +dedup::af9d4f9e444d3e7417a36b1da75b07d0;opendoar::4160;4160;"chalmers research";OpenDOAR +dedup::afac00c7fd235f3688f79e3f975dfc2f;opendoar::4866;4866;"aksaray university institutional repository";OpenDOAR +dedup::afac00c7fd235f3688f79e3f975dfc2f;roar::14756;14756;"Aksaray University Institutional Repository";roar +dedup::afb83e6b4ae70386208982e035c41cd0;opendoar::4691;4691;"digitalhub";OpenDOAR +dedup::afb83e6b4ae70386208982e035c41cd0;roar::10350;10350;"DigitalHub";roar +dedup::afca6abee4200f4971ac243607ed393e;opendoar::9445;9445;"repository of the faculty of architecture";OpenDOAR +dedup::afca6abee4200f4971ac243607ed393e;roar::15460;15460;"RAF - Repository of the Faculty of Architecture";roar +dedup::afdc20322c85c2b463b066b5feb059b7;re3data::r3d100012461;r3d100012461;"TrichDB";re3data +dedup::afdc20322c85c2b463b066b5feb059b7;https://fairsharing.org/10.25504/FAIRsharing.pv0ezt;1884;"TrichDB";FAIRsharing +dedup::afdfaeaf91dab476af381ccac5c6149f;opendoar::1961;1961;"universidade de lisboa: repositório.ul";OpenDOAR +dedup::afdfaeaf91dab476af381ccac5c6149f;roar::3260;3260;"Universidade de Lisboa: Repositório.UL";roar +dedup::b013485a758c388dbc11eb8a3604d99f;roar::9136;9136;"Hochschulschriftenserver der HTWG Konstanz";roar +dedup::b013485a758c388dbc11eb8a3604d99f;opendoar::714;714;"hochschulschriftenserver der htwg konstanz";OpenDOAR +dedup::b0631e77efaa796b86245a70ec618f19;opendoar::4125;4125;"university of brighton research repository";OpenDOAR +dedup::b0631e77efaa796b86245a70ec618f19;roar::1369;1369;"University of Brighton Research Repository";roar +dedup::b0795a43ef365528c6167f9acd0aacaf;opendoar::2206;2206;"publikationer från konstfack";OpenDOAR +dedup::b0795a43ef365528c6167f9acd0aacaf;roar::4023;4023;"Publikationer från Konstfack";roar +dedup::b07f7d245d6fc442f8591a679fd866be;roar::4129;4129;"Podkarpacka Digital Library";roar +dedup::b07f7d245d6fc442f8591a679fd866be;opendoar::2242;2242;"podkarpacka digital library";OpenDOAR +dedup::b0b11dec75c2a8e24832c5d938d43fb8;https://fairsharing.org/fairsharing_records/3237;3237;"Geochron";FAIRsharing +dedup::b0b11dec75c2a8e24832c5d938d43fb8;re3data::r3d100011537;r3d100011537;"Geochron";re3data +dedup::b0bc00384731d93be9ea33059be55908;opendoar::10089;10089;"tokat gaziosmanpaşa university institutional repository";OpenDOAR +dedup::b0bc00384731d93be9ea33059be55908;roar::9888;9888;"Tokat Gaziosmanpaşa University Institutional Repository";roar +dedup::b0c65d2c97b8586ac72e23b39546039e;opendoar::2279;2279;"council of independent colleges historic campus architecture project";OpenDOAR +dedup::b0c65d2c97b8586ac72e23b39546039e;roar::5000;5000;"Council of Independent Colleges Historic Campus Architecture Project";roar +dedup::b0dbb27bd0aab3a959db5b4e6412b013;roar::3256;3256;"Learning Exchange";roar +dedup::b0dbb27bd0aab3a959db5b4e6412b013;opendoar::1240;1240;"learning exchange";OpenDOAR +dedup::b0e70ff7bac329561194e39fd3ec2a79;roar::13274;13274;"Ibn Haldun University Institutional Repository";roar +dedup::b0e70ff7bac329561194e39fd3ec2a79;opendoar::4038;4038;"ibn haldun university institutional repository";OpenDOAR +dedup::b108dbbede87e2de739c091f15066510;opendoar::1354;1354;"black abolitionist archive";OpenDOAR +dedup::b108dbbede87e2de739c091f15066510;roar::5283;5283;"Black Abolitionist Archive";roar +dedup::b12269976607fe046d7af23aedafb190;opendoar::9623;9623;"repositorio utb";OpenDOAR +dedup::b12269976607fe046d7af23aedafb190;roar::16089;16089;"Repositorio UTB";roar +dedup::b12269976607fe046d7af23aedafb190;roar::15991;15991;"Repositorio UTB";roar +dedup::b1285606c67bc8d6bf0b8942e007d6dd;roar::3590;3590;"Serveur des theses en ligne de l'INSA de Toulouse";roar +dedup::b1285606c67bc8d6bf0b8942e007d6dd;opendoar::2071;2071;"serveur des thèses en ligne de linsa de toulouse";OpenDOAR +dedup::b14bfe2773373a328444cda147e99be1;roar::3739;3739;"BULERIA";roar +dedup::b14bfe2773373a328444cda147e99be1;roar::3403;3403;"BULERIA";roar +dedup::b14bfe2773373a328444cda147e99be1;opendoar::2010;2010;"buleria";OpenDOAR +dedup::b19f4e71ec85aa37c9cf399b4586c736;roar::6774;6774;"Bukkyo University Academic Knowledge & E-resources Repository:BAKER";roar +dedup::b19f4e71ec85aa37c9cf399b4586c736;opendoar::9880;9880;"bukkyo university academic knowledge & e-resources repository: baker";OpenDOAR +dedup::b1b4debb547542b5f6f7effb43a4f09d;roar::610;610;"Hedatuz";roar +dedup::b1b4debb547542b5f6f7effb43a4f09d;opendoar::1426;1426;"hedatuz";OpenDOAR +dedup::b1b8273b853958592e5824b8d4527bb5;https://fairsharing.org/10.25504/FAIRsharing.mKDii0;2597;"Norwegian Centre for Research Data";FAIRsharing +dedup::b1b8273b853958592e5824b8d4527bb5;re3data::r3d100010493;r3d100010493;"Norwegian Centre for Research Data";re3data +dedup::b1e15d6d952f0055dfc75ff04c4f01c4;roar::5720;5720;"University of the Western Cape Research Repository";roar +dedup::b1e15d6d952f0055dfc75ff04c4f01c4;opendoar::1678;1678;"university of the western cape research repository";OpenDOAR +dedup::b1f05aec523ae4833a69a54f005f8c60;roar::7355;7355;"Ballarat Health Services Digital Repository";roar +dedup::b1f05aec523ae4833a69a54f005f8c60;opendoar::3024;3024;"ballarat health services digital repository";OpenDOAR +dedup::b1f3f3f5ba28c1f3cd390602778e845e;re3data::r3d100010857;r3d100010857;"IonomicHub";re3data +dedup::b1f3f3f5ba28c1f3cd390602778e845e;https://fairsharing.org/fairsharing_records/2750;2750;"ionomicHUB";FAIRsharing +dedup::b1f47c4e1ffdb26bf269a7735e3824ca;opendoar::217;217;"mspace at the university of manitoba";OpenDOAR +dedup::b1f47c4e1ffdb26bf269a7735e3824ca;roar::862;862;"MSpace at the University of Manitoba";roar +dedup::b20384378e96d963bcc81adaef3e7c2f;roar::607;607;"Harvard College Thesis Repository";roar +dedup::b20384378e96d963bcc81adaef3e7c2f;opendoar::1132;1132;"harvard college thesis repository";OpenDOAR +dedup::b20d166987614bb95118aed064b8a46f;opendoar::8958;8958;"digital commons @ biola";OpenDOAR +dedup::b20d166987614bb95118aed064b8a46f;roar::12968;12968;"Digital Commons @ Biola ";roar +dedup::b23d8e3b952da1970ff0e75c5ddfbbaa;opendoar::10271;10271;"repositorio universidad autónoma de bucaramanga";OpenDOAR +dedup::b23d8e3b952da1970ff0e75c5ddfbbaa;re3data::r3d100013426;r3d100013426;"Repositorio Universidad Autónoma de Bucaramanga";re3data +dedup::b271611bc919127f8c2b62c832bd1f56;roar::15566;15566;"Digital Repository of University of Zilina";roar +dedup::b271611bc919127f8c2b62c832bd1f56;opendoar::9463;9463;"digital repository of university of zilina";OpenDOAR +dedup::b27a96789c109ac4d90777c8477a6102;roar::4585;4585;"UPN JATIM REPOSITORY";roar +dedup::b27a96789c109ac4d90777c8477a6102;opendoar::2379;2379;"upn jatim repository";OpenDOAR +dedup::b27a96789c109ac4d90777c8477a6102;roar::3693;3693;"UPN JATIM REPOSITORY";roar +dedup::b27a96789c109ac4d90777c8477a6102;roar::2617;2617;"UPN JATIM REPOSITORY";roar +dedup::b27a96789c109ac4d90777c8477a6102;roar::3592;3592;"UPN JATIM REPOSITORY";roar +dedup::b2931bc351eab89a1a9dd3be3f3d214a;opendoar::1289;1289;"gunadarma university repository";OpenDOAR +dedup::b2931bc351eab89a1a9dd3be3f3d214a;roar::600;600;"Gunadarma University Repository";roar +dedup::b2b851e9f901f3e0584869763c6010e2;opendoar::4240;4240;"scientific repository of the academy of the ministry of internal affairs of the republic of belarus";OpenDOAR +dedup::b2b851e9f901f3e0584869763c6010e2;roar::13709;13709;"Scientific repository of the Academy of the Ministry of Internal Affairs of the Republic of Belarus";roar +dedup::b2e0a98db71030caa6edafcd1baf1d61;opendoar::3860;3860;"electronic sumy state pedagogical university named after a. s. makarenko institutional repository";OpenDOAR +dedup::b2e0a98db71030caa6edafcd1baf1d61;roar::12193;12193;"Electronic Sumy State Pedagogical University named after A. S. Makarenko Institutional Repository";roar +dedup::b2f02e6a47413399709ad867f1a4b798;https://fairsharing.org/10.25504/FAIRsharing.jnzrt;2513;"Project Tycho: Data for Health";FAIRsharing +dedup::b2f02e6a47413399709ad867f1a4b798;re3data::r3d100011948;r3d100011948;"Project Tycho: Data for Health";re3data +dedup::b2f1e94833371648aabd85c25b3ac973;opendoar::403;403;"association for the scientific study of consciousness eprints archive";OpenDOAR +dedup::b2f1e94833371648aabd85c25b3ac973;roar::2839;2839;"Association for the Scientific Study of Consciousness ePrints Archive";roar +dedup::b3151213e5203a648e6fa9b360e223a1;roar::97;97;"AUR Student Working Papers Series";roar +dedup::b3151213e5203a648e6fa9b360e223a1;opendoar::1210;1210;"aur student working papers series";OpenDOAR +dedup::b3459790ebc686dd16a84a05315a10d1;roar::16231;16231;"Ondokuz Mayıs University Institutional Repository";roar +dedup::b3459790ebc686dd16a84a05315a10d1;opendoar::9773;9773;"ondokuz mayıs university institutional repository";OpenDOAR +dedup::b398c15dbd36e09d4b53c36582170e2d;roar::3120;3120;"Repositoorium E-ait";roar +dedup::b398c15dbd36e09d4b53c36582170e2d;opendoar::1907;1907;"repositoorium e-ait";OpenDOAR +dedup::b3dfc11a75337a50f5c24bcd3b33c58d;roar::13098;13098;"Repositório Aberto da Universidade do Porto";roar +dedup::b3dfc11a75337a50f5c24bcd3b33c58d;roar::1086;1086;"Repositório Aberto da Universidade do Porto";roar +dedup::b3dfc11a75337a50f5c24bcd3b33c58d;opendoar::1406;1406;"repositório aberto da universidade do porto";OpenDOAR +dedup::b3eaac9a5a0e92d448bb45b73eb14825;re3data::r3d100011761;r3d100011761;"Neotoma Paleoecology Database";re3data +dedup::b3eaac9a5a0e92d448bb45b73eb14825;https://fairsharing.org/10.25504/FAIRsharing.3wwc0m;2566;"Neotoma Paleoecology Database";FAIRsharing +dedup::b402122583ae7eef511cd51aa29c68e2;re3data::r3d100010248;r3d100010248;"GermOnline";re3data +dedup::b402122583ae7eef511cd51aa29c68e2;https://fairsharing.org/10.25504/FAIRsharing.vk3v6s;1913;"GermOnline";FAIRsharing +dedup::b4026fd174d7b548a7b22331aa72122b;roar::9631;9631;"idUS. Depósito de Investigación Universidad de Sevilla";roar +dedup::b4026fd174d7b548a7b22331aa72122b;opendoar::3272;3272;"depósito de investigación universidad de sevilla";OpenDOAR +dedup::b40fc4d3d84537739d38ba98e858538a;roar::324;324;"DigitalCommons@Bryant University";roar +dedup::b40fc4d3d84537739d38ba98e858538a;opendoar::676;676;"digitalcommons@bryant university";OpenDOAR +dedup::b417563b444313f4304ae27520811095;roar::13313;13313;"e-cienciaDatos";roar +dedup::b417563b444313f4304ae27520811095;opendoar::4062;4062;"e-cienciadatos";OpenDOAR +dedup::b417563b444313f4304ae27520811095;https://fairsharing.org/10.25504/FAIRsharing.lone3g;2760;"e-cienciaDatos";FAIRsharing +dedup::b417563b444313f4304ae27520811095;re3data::r3d100012316;r3d100012316;"e-cienciaDatos";re3data +dedup::b425cbe5118f5dba429aac20e76cfb4a;re3data::r3d100010728;r3d100010728;"EUROLAS Data Center";re3data +dedup::b425cbe5118f5dba429aac20e76cfb4a;https://fairsharing.org/10.25504/FAIRsharing.4e7190;2976;"EUROLAS Data Center";FAIRsharing +dedup::b4616bfa0bae2fe0d2221c501530f79c;roar::14946;14946;"AUB Scholarworks";roar +dedup::b4616bfa0bae2fe0d2221c501530f79c;re3data::r3d100013672;r3d100013672;"AUBScholarWorks";re3data +dedup::b48416184bd7f64d326db56ba04abc57;opendoar::431;431;"digitalcommons@fayetteville state university";OpenDOAR +dedup::b48416184bd7f64d326db56ba04abc57;roar::328;328;"DigitalCommons@Fayetteville State University";roar +dedup::b4a2727fcdeaa090ee97228de7d65d6e;roar::4921;4921;"Centro de Recursos para la Enseñanza y el Aprendizaje";roar +dedup::b4a2727fcdeaa090ee97228de7d65d6e;opendoar::2257;2257;"centro de recursos para la enseñanza y el aprendizaje";OpenDOAR +dedup::b4ba84823ccc096b4a34d4b548dfbff0;roar::3607;3607;"National Digital Library Polona";roar +dedup::b4ba84823ccc096b4a34d4b548dfbff0;opendoar::2062;2062;"national digital library polona";OpenDOAR +dedup::b4cbd4a92144f2968b1e9c2f81d2569f;https://fairsharing.org/fairsharing_records/3177;3177;"International Earth Rotation and Reference Systems Service";FAIRsharing +dedup::b4cbd4a92144f2968b1e9c2f81d2569f;re3data::r3d100010312;r3d100010312;"International Earth Rotation and Reference Systems Service";re3data +dedup::b4ea5de06960851865b251cabfa7cab9;https://fairsharing.org/10.25504/FAIRsharing.yyf78h;2414;"DataONE";FAIRsharing +dedup::b4ea5de06960851865b251cabfa7cab9;re3data::r3d100000045;r3d100000045;"DataONE";re3data +dedup::b4f5def61b744aa203959236cda7a3ce;opendoar::4578;4578;"dataverse unimi";OpenDOAR +dedup::b4f5def61b744aa203959236cda7a3ce;re3data::r3d100012994;r3d100012994;"Dataverse UNIMI";re3data +dedup::b53494fe91e32ed693907cd4a372e5e8;re3data::r3d100012715;r3d100012715;"enviPath";re3data +dedup::b53494fe91e32ed693907cd4a372e5e8;https://fairsharing.org/10.25504/FAIRsharing.g0c5qn;2242;"enviPath";FAIRsharing +dedup::b53cde29e0391856c1eb1047d2191440;opendoar::635;635;"portfolio @ duke";OpenDOAR +dedup::b53cde29e0391856c1eb1047d2191440;roar::1021;1021;"Portfolio@Duke";roar +dedup::b53e0bec0cfbde0a5d1d7ab39511bc19;re3data::r3d100011222;r3d100011222;"MycoBank";re3data +dedup::b53e0bec0cfbde0a5d1d7ab39511bc19;https://fairsharing.org/10.25504/FAIRsharing.v8se8r;1932;"MycoBank";FAIRsharing +dedup::b556c28195c45cd2f90a75bc85b0ce2d;opendoar::1366;1366;"university of east anglia digital repository";OpenDOAR +dedup::b556c28195c45cd2f90a75bc85b0ce2d;roar::1380;1380;"University of East Anglia digital repository";roar +dedup::b568ffeec29fe69fad88c939989f715a;roar::16528;16528;"Repositorio de Resultados de Investigación del INIA";roar +dedup::b568ffeec29fe69fad88c939989f715a;opendoar::10013;10013;"repositorio de resultados de investigación del inia";OpenDOAR +dedup::b5a26bf3541a0852dd3d51fb7b77e0eb;roar::6882;6882;"CyberLeninka - Russian open access scientific library";roar +dedup::b5a26bf3541a0852dd3d51fb7b77e0eb;opendoar::2806;2806;"cyberleninka - russian open access scientific library";OpenDOAR +dedup::b5b400c53568f3a00ae6eda2ec543ca5;opendoar::76;76;"dalarna university college electronic archive";OpenDOAR +dedup::b5b400c53568f3a00ae6eda2ec543ca5;roar::5186;5186;"Dalarna University College Electronic Archive";roar +dedup::b5c7c782ab062958462c9785fabfd0a5;opendoar::2007;2007;"dspace en uces";OpenDOAR +dedup::b5c7c782ab062958462c9785fabfd0a5;roar::3374;3374;"DSpace en UCES";roar +dedup::b5d33df96f2d0107d49859d42d0621cb;opendoar::1267;1267;"mountain scholar";OpenDOAR +dedup::b5d33df96f2d0107d49859d42d0621cb;re3data::r3d100013362;r3d100013362;"Mountain Scholar";re3data +dedup::b5d604d8dd055692144606d6cd6b6ef0;roar::1045;1045;"Publishing Network for Geoscientific & Environmental Data";roar +dedup::b5d604d8dd055692144606d6cd6b6ef0;opendoar::835;835;"publishing network for geoscientific and environmental data";OpenDOAR +dedup::b6192653ca3af846b645943120441113;opendoar::153;153;"digitalcommons@florida international university";OpenDOAR +dedup::b6192653ca3af846b645943120441113;roar::3495;3495;"Digital Commons at Florida International University";roar +dedup::b66511b41a1d28d21abcf7afe2e91214;opendoar::1031;1031;"skemman";OpenDOAR +dedup::b66511b41a1d28d21abcf7afe2e91214;roar::2338;2338;"Skemman";roar +dedup::b678d67d000b3c673d631e9485bab2ad;opendoar::10071;10071;"alanya alaaddin keykubat university institutional repository";OpenDOAR +dedup::b678d67d000b3c673d631e9485bab2ad;roar::16881;16881;"Alanya Alaaddin Keykubat University Institutional Repository";roar +dedup::b683bbf89085918a13448c61bb3a6e26;roar::3771;3771;"Biblioteca Digital de Teses e Dissertações da Universidade Federal do Maranhão";roar +dedup::b683bbf89085918a13448c61bb3a6e26;opendoar::2131;2131;"biblioteca digital de teses e dissertações da universidade federal do maranhão";OpenDOAR +dedup::b6e75ae99f6cff87be7ddaf6304191ce;opendoar::4304;4304;"repositorio de la escuela de postgrado gěrens";OpenDOAR +dedup::b6e75ae99f6cff87be7ddaf6304191ce;roar::13418;13418;"Repositorio de la Escuela de Postgrado Gerens";roar +dedup::b6ec2a06350398743da6d9bb87bb756a;roar::5585;5585;"Digital Library of Polish Institute of Anthropology";roar +dedup::b6ec2a06350398743da6d9bb87bb756a;roar::4089;4089;"Digital Library of Polish Institute of Anthropology";roar +dedup::b6ec2a06350398743da6d9bb87bb756a;opendoar::2227;2227;"digital library of polish institute of anthropology";OpenDOAR +dedup::b6f4135e9f619a59cc1e1e8a28ac6076;roar::1249;1249;"Sydney eScholarship";roar +dedup::b6f4135e9f619a59cc1e1e8a28ac6076;opendoar::293;293;"sydney escholarship";OpenDOAR +dedup::b6fadafcb44c506bbd3bebbf9442ba51;opendoar::1383;1383;"dukespace";OpenDOAR +dedup::b6fadafcb44c506bbd3bebbf9442ba51;roar::450;450;"DukeSpace";roar +dedup::b6fbfad9962bd034847d93e54da9f6e8;roar::8907;8907;"Argos";roar +dedup::b6fbfad9962bd034847d93e54da9f6e8;opendoar::3048;3048;"argos";OpenDOAR +dedup::b72d45f6913a843b1b01bdac6300c681;roar::12777;12777;"Repositorio Institucional de la Universidad Francisco Gavidia.";roar +dedup::b72d45f6913a843b1b01bdac6300c681;opendoar::1786;1786;"repositorio institucional universidad francisco gavidia";OpenDOAR +dedup::b73608944b50d09acb215fe687d3c24c;opendoar::2380;2380;"diginole commons: virtual repository for electronic scholarship";OpenDOAR +dedup::b73608944b50d09acb215fe687d3c24c;roar::4615;4615;"DigiNole Commons: Virtual Repository for Electronic Scholarship";roar +dedup::b73e8c5fd6014dca750eff2fbf624af8;opendoar::1508;1508;"iwmi publications";OpenDOAR +dedup::b73e8c5fd6014dca750eff2fbf624af8;roar::725;725;"IWMI Publications";roar +dedup::b7506ed89b319630e1487f50cc12775c;opendoar::1269;1269;"auca open electronic library";OpenDOAR +dedup::b7506ed89b319630e1487f50cc12775c;roar::2413;2413;"AUCA Open Electronic Library";roar +dedup::b764e0980868aba01345364f49d3278a;opendoar::1488;1488;"uel research repository";OpenDOAR +dedup::b764e0980868aba01345364f49d3278a;re3data::r3d100012414;r3d100012414;"UEL Research Repository";re3data +dedup::b76fc73f5ce8204f6f58ff53683e2769;opendoar::3002;3002;"istanbul arel university institutional repository";OpenDOAR +dedup::b76fc73f5ce8204f6f58ff53683e2769;roar::7978;7978;"Istanbul Arel University Institutional Repository";roar +dedup::b7da16e309bb0cf76c3e5283d58a96ec;roar::15610;15610;"Necmettin Erbakan University Institutional Repository";roar +dedup::b7da16e309bb0cf76c3e5283d58a96ec;roar::16225;16225;"Necmettin Erbakan University Institutional Repository";roar +dedup::b7da16e309bb0cf76c3e5283d58a96ec;opendoar::9479;9479;"necmettin erbakan university institutional repository";OpenDOAR +dedup::b7f854dc5015b5937686803d5af1ba5b;roar::490;490;"Eldorado - Repository of the TU Dortmund";roar +dedup::b7f854dc5015b5937686803d5af1ba5b;opendoar::8789;8789;"eldorado- repository of the tu dortmund";OpenDOAR +dedup::b7f854dc5015b5937686803d5af1ba5b;opendoar::134;134;"eldorado - repository of the tu dortmund";OpenDOAR +dedup::b854b9c09eb1f3d9891f3f3416e6de0f;re3data::r3d100013525;r3d100013525;"Data@Lincoln";re3data +dedup::b854b9c09eb1f3d9891f3f3416e6de0f;opendoar::4872;4872;"data@lincoln";OpenDOAR +dedup::b87dcce365cb2dab61a070a2f915f4d2;https://fairsharing.org/fairsharing_records/3002;3002;"South Australian Resources Information Geoserver";FAIRsharing +dedup::b87dcce365cb2dab61a070a2f915f4d2;re3data::r3d100011369;r3d100011369;"South Australian Resources Information Geoserver";re3data +dedup::b885449a52073e14af2c19cc5e19b103;roar::311;311;"Digital Library for Earth System Education";roar +dedup::b885449a52073e14af2c19cc5e19b103;opendoar::425;425;"digital library for earth system education";OpenDOAR +dedup::b885449a52073e14af2c19cc5e19b103;re3data::r3d100010806;r3d100010806;"Digital Library for Earth System Education";re3data +dedup::b8ca979590a85e6a56503e2144bc4040;re3data::r3d100011805;r3d100011805;"Digital Repository of Ireland";re3data +dedup::b8ca979590a85e6a56503e2144bc4040;opendoar::10062;10062;"digital repository of ireland";OpenDOAR +dedup::b8ca979590a85e6a56503e2144bc4040;https://fairsharing.org/10.25504/FAIRsharing.wL29nJ;3009;"Digital Repository of Ireland";FAIRsharing +dedup::b8cbf0760ae8e33513fe83840a4b62d4;opendoar::1504;1504;"repositório institucional dos hospitais da universidade de coimbra";OpenDOAR +dedup::b8cbf0760ae8e33513fe83840a4b62d4;roar::1098;1098;"Repositório Institucional dos Hospitais da Universidade Coimbra";roar +dedup::b8e5180a2151746dbdb8919e352b6500;opendoar::3720;3720;"openemory";OpenDOAR +dedup::b8e5180a2151746dbdb8919e352b6500;roar::5856;5856;"OpenEmory";roar +dedup::b900cbe45d7088186d4b241967eeee72;roar::17656;17656;"The digital repository of Medina Research and Studies Center";roar +dedup::b900cbe45d7088186d4b241967eeee72;opendoar::10297;10297;"the digital repository of medina research and studies center";OpenDOAR +dedup::b908cdee93be555f70ffacdd49bb0ff6;roar::2546;2546;"Högskolan Kristianstad Publikationer";roar +dedup::b908cdee93be555f70ffacdd49bb0ff6;opendoar::1745;1745;"högskolan kristianstad publikationer";OpenDOAR +dedup::b9409f3ca521c38865368089c74f0cf0;opendoar::2346;2346;"repositório científico do centro hospitalar do porto";OpenDOAR +dedup::b9409f3ca521c38865368089c74f0cf0;roar::4467;4467;"Repositório Científico do Centro Hospitalar do Porto";roar +dedup::b96088e4294f691d157714fbe87333f4;re3data::r3d100010617;r3d100010617;"Candida Genome Database";re3data +dedup::b96088e4294f691d157714fbe87333f4;https://fairsharing.org/10.25504/FAIRsharing.j7j53;1816;"Candida Genome Database";FAIRsharing +dedup::b96a0c216b4418d7b7e4bab6f1491517;opendoar::586;586;"combined arms research library digital library";OpenDOAR +dedup::b96a0c216b4418d7b7e4bab6f1491517;roar::4969;4969;"Combined Arms Research Library Digital Library";roar +dedup::b9758dc4ce2e5c07a7bea5bf1b0425b6;opendoar::524;524;"nasa dryden technical reports server";OpenDOAR +dedup::b9758dc4ce2e5c07a7bea5bf1b0425b6;roar::5265;5265;"NASA Dryden Technical Reports Server";roar +dedup::b9891933798de02e3ded35289cd6010a;roar::15273;15273;"Odessa National Medical University Institutional Repository";roar +dedup::b9891933798de02e3ded35289cd6010a;opendoar::4078;4078;"odessa national medical university institutional repository";OpenDOAR +dedup::b9991d60ac40984925d2538183f5165b;roar::14658;14658;"Ardahan University Institutional Repository";roar +dedup::b9991d60ac40984925d2538183f5165b;opendoar::4561;4561;"ardahan university institutional repository";OpenDOAR +dedup::b99e5091df15290d3c7eeae7e6d4ab11;opendoar::4668;4668;"acibadem university repository";OpenDOAR +dedup::b99e5091df15290d3c7eeae7e6d4ab11;roar::14901;14901;"Acibadem University Repository";roar +dedup::b9c87ed4a01b4fd55432b8371b8a73bf;roar::3862;3862;"citaREA Repositorio Electrónico Agroalimentario";roar +dedup::b9c87ed4a01b4fd55432b8371b8a73bf;opendoar::2165;2165;"citarea repositorio electrónico agroalimentario";OpenDOAR +dedup::b9e149bc44cb4afdb33b3793058fb2a7;re3data::r3d100010211;r3d100010211;"ClinicalTrials.gov";re3data +dedup::b9e149bc44cb4afdb33b3793058fb2a7;https://fairsharing.org/10.25504/FAIRsharing.mewhad;2004;"ClinicalTrials.gov";FAIRsharing +dedup::b9f3d4019ffc56719b8fa7352e085200;roar::4388;4388;"Institutional Repository of Yantai Institute of Coastal Zone Research";roar +dedup::b9f3d4019ffc56719b8fa7352e085200;opendoar::2299;2299;"institutional repository of yantai institute of coastal zone research, cas";OpenDOAR +dedup::ba057b43de119e6587ed92b06ae84716;opendoar::723;723;"digital library of zielona gora";OpenDOAR +dedup::ba057b43de119e6587ed92b06ae84716;roar::3610;3610;"Digital Library of Zielona Góra";roar +dedup::ba07651b7bd9f9e811835216a900138b;roar::11128;11128;"Pamukkale Üniversitesi Açık Erişim Arşivi";roar +dedup::ba07651b7bd9f9e811835216a900138b;opendoar::3566;3566;"pamukkale üniversitesi açık erişim arşivi";OpenDOAR +dedup::ba31efd0da7251bdc11ed7272affe948;roar::4548;4548;"ELOGeo Repository";roar +dedup::ba31efd0da7251bdc11ed7272affe948;opendoar::2355;2355;"elogeo repository";OpenDOAR +dedup::ba52589d067616dd65426cbde49b0197;roar::5698;5698;"DESY Publication Database";roar +dedup::ba52589d067616dd65426cbde49b0197;opendoar::1108;1108;"desy publication database";OpenDOAR +dedup::ba5d7d217960f12b43a347d517b107b0;roar::10766;10766;"Kyoto Prefectural University of Medicine Institutional Repository (Kissei)";roar +dedup::ba5d7d217960f12b43a347d517b107b0;opendoar::3639;3639;"kyoto prefectural university of medicine institutional repository (kissei)";OpenDOAR +dedup::baab497feeb52f90ef7ff880e812550f;roar::5618;5618;"Think Tech";roar +dedup::baab497feeb52f90ef7ff880e812550f;opendoar::2496;2496;"think tech";OpenDOAR +dedup::bab613652b83530db9f10ce511073300;opendoar::495;495;"rruff project";OpenDOAR +dedup::bab613652b83530db9f10ce511073300;re3data::r3d100010766;r3d100010766;"RRUFF Project";re3data +dedup::bab613652b83530db9f10ce511073300;roar::2463;2463;"RRUFF Project";roar +dedup::bad04cff32bafe82cccf0c9c17e02330;opendoar::174;174;"hong kong university of science and technology institutional repository";OpenDOAR +dedup::bad04cff32bafe82cccf0c9c17e02330;roar::641;641;"Hong Kong University of Science and Technology Institutional Repository";roar +dedup::bad7925694f981c26d8efcf9d62e691a;opendoar::9713;9713;"materials data repository";OpenDOAR +dedup::bad7925694f981c26d8efcf9d62e691a;re3data::r3d100013499;r3d100013499;"Materials Data Repository";re3data +dedup::bae72cfb9fd97f414a10a96082eb8451;re3data::r3d100013276;r3d100013276;"Arctic Permafrost Geospatial Centre";re3data +dedup::bae72cfb9fd97f414a10a96082eb8451;https://fairsharing.org/10.25504/FAIRsharing.hrM7RP;3113;"Arctic Permafrost Geospatial Centre";FAIRsharing +dedup::baf2ad64da4defab76baafa650f8fb64;roar::9416;9416;"WAKO University Repository";roar +dedup::baf2ad64da4defab76baafa650f8fb64;opendoar::3269;3269;"wako university repository";OpenDOAR +dedup::bb1dc7205d35d347f67ab18c005fbe67;re3data::r3d100010411;r3d100010411;"Comprehensive R Archive Network";re3data +dedup::bb1dc7205d35d347f67ab18c005fbe67;https://fairsharing.org/10.25504/FAIRsharing.1a283d;2855;"Comprehensive R Archive Network";FAIRsharing +dedup::bb27b647f3a7faa0ca7a3a739aade5da;opendoar::2333;2333;"influenza training digital library";OpenDOAR +dedup::bb27b647f3a7faa0ca7a3a739aade5da;roar::4931;4931;"Influenza Training Digital Library";roar +dedup::bb2e90752ab4ce8321fe16a0f3f33e9b;roar::1243;1243;"Epsilon Undergraduate Theses Archive";roar +dedup::bb2e90752ab4ce8321fe16a0f3f33e9b;roar::5553;5553;"Epsilon Undergraduate Theses Archive";roar +dedup::bb36062439e3d29ea9387dfaf5ae7d20;opendoar::287;287;"sioexplorer digital library project";OpenDOAR +dedup::bb36062439e3d29ea9387dfaf5ae7d20;roar::3086;3086;"SIOExplorer Digital Library Project";roar +dedup::bb4b495912097bb44f96fcd474fcd810;opendoar::9749;9749;"electronic library of the minsk theological academy";OpenDOAR +dedup::bb4b495912097bb44f96fcd474fcd810;roar::16250;16250;"Electronic library of the Minsk Theological Academy";roar +dedup::bb9561f1f4a1bd723eccb44e19d7c824;opendoar::2301;2301;"institutional repository of xinjiang institute of ecology and geography, cas";OpenDOAR +dedup::bb9561f1f4a1bd723eccb44e19d7c824;roar::4387;4387;"Institutional Repository of Xinjiang Institute of Ecology and Geography";roar +dedup::bba4123bbb83dd246eb33e2e8c2425f0;roar::13235;13235;"Carroll Scholars";roar +dedup::bba4123bbb83dd246eb33e2e8c2425f0;opendoar::4450;4450;"carroll scholars";OpenDOAR +dedup::bbc66a44b9a488daa2908881d049f374;opendoar::2475;2475;"caltechconf";OpenDOAR +dedup::bbc66a44b9a488daa2908881d049f374;roar::5213;5213;"CaltechCONF";roar +dedup::bbc6994b6f2a341eef760120b0f35c77;roar::1375;1375;"University of Cincinnati Digital Resource Commons";roar +dedup::bbc6994b6f2a341eef760120b0f35c77;opendoar::1686;1686;"university of cincinnati digital resource commons";OpenDOAR +dedup::bbc9d730957cad174af3cf6dcb33958c;roar::15355;15355;"UANCV Repositorio Digital";roar +dedup::bbc9d730957cad174af3cf6dcb33958c;roar::15356;15356;"UANCV Repositorio Digital";roar +dedup::bbefc19cc9e31546065004a2f7015e38;roar::3773;3773;"Constellation";roar +dedup::bbefc19cc9e31546065004a2f7015e38;opendoar::2130;2130;"constellation";OpenDOAR +dedup::bc0869e5c910ec9fcdc96c05b95faa82;opendoar::3577;3577;"source: sheridan scholarly output undergraduate research creative excellence";OpenDOAR +dedup::bc0869e5c910ec9fcdc96c05b95faa82;roar::10379;10379;"SOURCE: Sheridan Scholarly Output Undergraduate Research Creative Excellence";roar +dedup::bc118676ca9dcbc342ae43ac2efb32ee;re3data::r3d100013715;r3d100013715;"Mutant Mouse Resource & Research Centers";re3data +dedup::bc118676ca9dcbc342ae43ac2efb32ee;https://fairsharing.org/10.25504/FAIRsharing.9dpd18;2068;"Mutant Mouse Resource and Research Centers";FAIRsharing +dedup::bc166cc705c8f6d3d889fbd4aee703aa;opendoar::3088;3088;"ucd digital library";OpenDOAR +dedup::bc166cc705c8f6d3d889fbd4aee703aa;re3data::r3d100010742;r3d100010742;"UCD Digital Library";re3data +dedup::bc250a59940f144822bbc0c8f0d39b71;opendoar::2113;2113;"snhu academic archive";OpenDOAR +dedup::bc250a59940f144822bbc0c8f0d39b71;roar::2678;2678;"SNHU Academic Archive";roar +dedup::bc2cec19de3f556a5f5c01b5bddc7898;opendoar::259;259;"publikationer från högskolan i jönköping";OpenDOAR +dedup::bc2cec19de3f556a5f5c01b5bddc7898;roar::2341;2341;"Publikationer från Högskolan i Jönköping";roar +dedup::bc32fec67340a044feb5d0a7fdb43b4a;opendoar::1516;1516;"worldfish center publications";OpenDOAR +dedup::bc32fec67340a044feb5d0a7fdb43b4a;roar::1533;1533;"WorldFish Center Publications";roar +dedup::bc3b06667031b37976393aba7bc6877f;opendoar::644;644;"servicios bibliotecarios de la universidad de los andes";OpenDOAR +dedup::bc3b06667031b37976393aba7bc6877f;roar::1199;1199;"Servicios Bibliotecarios de la Universidad de Los Andes";roar +dedup::bc84ed2bb63f6d7539a5418735d062df;roar::9761;9761;"Sabzevar University of Medical Sciences Electronic Publications";roar +dedup::bc84ed2bb63f6d7539a5418735d062df;opendoar::3442;3442;"sabzevar university of medical sciences electronic publications";OpenDOAR +dedup::bc9034e68300de653dc7c5e4be4c27c4;opendoar::1407;1407;"white rose e-theses online";OpenDOAR +dedup::bc9034e68300de653dc7c5e4be4c27c4;roar::1524;1524;"White Rose Etheses Online";roar +dedup::bc995d1470ae1ff05567faba0fd6427f;opendoar::891;891;"howest dspace";OpenDOAR +dedup::bc995d1470ae1ff05567faba0fd6427f;roar::5507;5507;"Howest DSpace";roar +dedup::bcb5c2b75a9918f4a1c02ab115e285a3;opendoar::1503;1503;"utl repository";OpenDOAR +dedup::bcb5c2b75a9918f4a1c02ab115e285a3;roar::1468;1468;"UTL Repository";roar +dedup::bcc04d54ccfcf99ba32bbda255038320;roar::4986;4986;"NSTDA Knowledge Repository";roar +dedup::bcc04d54ccfcf99ba32bbda255038320;opendoar::1563;1563;"nstda knowledge repository";OpenDOAR +dedup::bd1a76f9b202a527a6fd23f316a9dd1b;re3data::r3d100010635;r3d100010635;"World Data Centre for Space Weather";re3data +dedup::bd1a76f9b202a527a6fd23f316a9dd1b;https://fairsharing.org/10.25504/FAIRsharing.cc3QN9;2971;"World Data Centre for Space Weather";FAIRsharing +dedup::bd3965953a77e967ba02ebc1443c3086;opendoar::2644;2644;"repositorio institucional pirhua";OpenDOAR +dedup::bd3965953a77e967ba02ebc1443c3086;roar::6640;6640;"Repositorio Institucional Pirhua";roar +dedup::bd50442812a565d7361b2d12d3f52365;roar::9507;9507;"²Dok";roar +dedup::bd50442812a565d7361b2d12d3f52365;roar::9474;9474;"²Dok";roar +dedup::bd50442812a565d7361b2d12d3f52365;opendoar::3316;3316;"²dok";OpenDOAR +dedup::bd50442812a565d7361b2d12d3f52365;re3data::r3d100012347;r3d100012347;"²Dok[§]";re3data +dedup::bd59254a27c1ed9549d8fac5f15b1d88;roar::5447;5447;"Repositório UEPG";roar +dedup::bd59254a27c1ed9549d8fac5f15b1d88;opendoar::2118;2118;"repositório uepg";OpenDOAR +dedup::bd59254a27c1ed9549d8fac5f15b1d88;roar::3707;3707;"Repositório UEPG";roar +dedup::bd70d0f99ec6cd5751a2806fadde09d3;https://fairsharing.org/10.25504/FAIRsharing.dq46p7;2325;"Life Science Database Archive";FAIRsharing +dedup::bd70d0f99ec6cd5751a2806fadde09d3;re3data::r3d100012368;r3d100012368;"Life Science Database Archive";re3data +dedup::bd876d720204f8896d1f6ff1b18e1c26;re3data::r3d100010510;r3d100010510;"Jason Virtual Van";re3data +dedup::bd876d720204f8896d1f6ff1b18e1c26;https://fairsharing.org/fairsharing_records/2985;2985;"Jason Virtual Van";FAIRsharing +dedup::bd982680a6c3e440e3fb7759b9f68546;opendoar::1472;1472;"gredos";OpenDOAR +dedup::bd982680a6c3e440e3fb7759b9f68546;roar::5536;5536;"GREDOS";roar +dedup::bdaa0a012a3b5b6b0e2e188df8680139;opendoar::2371;2371;"archenvimat";OpenDOAR +dedup::bdaa0a012a3b5b6b0e2e188df8680139;roar::58;58;"ArchEnviMat";roar +dedup::bdb4c28493876a6b56e44aec971025f9;re3data::r3d100010834;r3d100010834;"Biologic Specimen and Data Repository Information Coordinating Center";re3data +dedup::bdb4c28493876a6b56e44aec971025f9;https://fairsharing.org/10.25504/FAIRsharing.a46gtf;2010;"Biologic Specimen and Data Repository Information Coordinating Center";FAIRsharing +dedup::bdc38e8affd79b01c032d1f432f728ce;roar::15173;15173;"Repositorio Institucional de la Universidad Nacional de Cajamarca";roar +dedup::bdc38e8affd79b01c032d1f432f728ce;opendoar::4868;4868;"repositorio institucional de la universidad nacional de cajamarca";OpenDOAR +dedup::bde28e369d23a5cfedbb64cc200729e4;roar::14918;14918;"Western Sydney University ResearchDirect";roar +dedup::bde28e369d23a5cfedbb64cc200729e4;roar::14919;14919;"Western Sydney University ResearchDirect";roar +dedup::bdfda84adc0e5c717da2083e9cddcfa2;roar::1089;1089;"Repositório da Universidade dos Açores";roar +dedup::bdfda84adc0e5c717da2083e9cddcfa2;opendoar::1502;1502;"repositório da universidade dos açores";OpenDOAR +dedup::be0517e193026bee8b9c7cef94ff54fa;re3data::r3d100012467;r3d100012467;"OpenAgrar";re3data +dedup::be0517e193026bee8b9c7cef94ff54fa;opendoar::4173;4173;"openagrar";OpenDOAR +dedup::be1242d6a058855a36864491effea7a9;roar::2733;2733;"RUIdeRA";roar +dedup::be1242d6a058855a36864491effea7a9;opendoar::1811;1811;"ruidera";OpenDOAR +dedup::be1242d6a058855a36864491effea7a9;roar::5622;5622;"RUIdeRA";roar +dedup::be18528d6916c4d4ee8e33bd9978d972;roar::5546;5546;"Memoria digital de Canarias";roar +dedup::be18528d6916c4d4ee8e33bd9978d972;opendoar::2193;2193;"memoria digital de canarias";OpenDOAR +dedup::be21b7a34af71e8db1036ebc775aec71;opendoar::4834;4834;"repositorio institucional universidad nacional de tumbes";OpenDOAR +dedup::be21b7a34af71e8db1036ebc775aec71;roar::15116;15116;"Repositorio Institucional Universidad Nacional de Tumbes";roar +dedup::be3e3be681e67435b4a7a9ee5027f6ee;roar::3977;3977;"HAL-IRD";roar +dedup::be3e3be681e67435b4a7a9ee5027f6ee;opendoar::2191;2191;"hal-ird";OpenDOAR +dedup::be408a9cab39b68e92b86eab95129cd1;roar::8928;8928;"Welcome to Widya Mandala Catholic University Surabaya Repository - Widya Mandala Catholic University Surabaya Repository";roar +dedup::be408a9cab39b68e92b86eab95129cd1;roar::15285;15285;"Welcome to Widya Mandala Catholic University Surabaya Repository - Widya Mandala Catholic University Surabaya Repository";roar +dedup::be4a410de52f2e970857d47db89790fd;opendoar::991;991;"university of salford institutional repository";OpenDOAR +dedup::be4a410de52f2e970857d47db89790fd;roar::1420;1420;"University of Salford Institutional Repository";roar +dedup::bea39da1a91d20ad03cd178884269fc7;re3data::r3d100011904;r3d100011904;"Allele Frequency Net Database";re3data +dedup::bea39da1a91d20ad03cd178884269fc7;https://fairsharing.org/10.25504/FAIRsharing.2cfr4z;2448;"Allele Frequency Net Database";FAIRsharing +dedup::beae611c0d85abe76f7cd065b2f34ec2;opendoar::9275;9275;"baika womens university academic repository";OpenDOAR +dedup::beae611c0d85abe76f7cd065b2f34ec2;opendoar::9882;9882;"baika womens university academic repository";OpenDOAR +dedup::bec4d70d47bf2e627cf85169a2ef526f;opendoar::4268;4268;"hacettepe university institutional repository";OpenDOAR +dedup::bec4d70d47bf2e627cf85169a2ef526f;roar::14869;14869;"Hacettepe University Institutional Repository";roar +dedup::beca4189649c9682d36f8ff62cfdb5b7;roar::16936;16936;"Repositorio Institucional Universidad El Bosque";roar +dedup::beca4189649c9682d36f8ff62cfdb5b7;opendoar::4850;4850;"repositorio institucional universidad el bosque";OpenDOAR +dedup::becf3e358f2bc35fe90fbc6978377650;opendoar::2718;2718;"producción académica ucc";OpenDOAR +dedup::becf3e358f2bc35fe90fbc6978377650;roar::6686;6686;"Producción Académica UCC ";roar +dedup::becf3e358f2bc35fe90fbc6978377650;re3data::r3d100013442;r3d100013442;"Producción Académica UCC";re3data +dedup::beea34344efa654d6a96954336f550dd;roar::5509;5509;"AMS Acta";roar +dedup::beea34344efa654d6a96954336f550dd;opendoar::3;3;"ams acta";OpenDOAR +dedup::beea34344efa654d6a96954336f550dd;re3data::r3d100012604;r3d100012604;"AMS Acta";re3data +dedup::bf1593277517fabb5f477e805bec17f0;opendoar::4424;4424;"repositório institucional da universidade federal rural da amazônia";OpenDOAR +dedup::bf1593277517fabb5f477e805bec17f0;roar::13066;13066;"Repositório Institucional da Universidade Federal Rural da Amazônia (RIUFRA)";roar +dedup::bf18643ba02e3eb9cf0ec2f33a619874;roar::5562;5562;"University of Debrecen Electronic Archive";roar +dedup::bf18643ba02e3eb9cf0ec2f33a619874;opendoar::1690;1690;"university of debrecen electronic archive";OpenDOAR +dedup::bf35bc6a9d89069b62403c94341ba4bd;opendoar::3835;3835;"hanyang repository";OpenDOAR +dedup::bf35bc6a9d89069b62403c94341ba4bd;roar::11157;11157;"HANYANG Repository(한양대학교)";roar +dedup::bf4383bfa0b50919749379a7fdec24ff;re3data::r3d100012513;r3d100012513;"DataSpace";re3data +dedup::bf4383bfa0b50919749379a7fdec24ff;opendoar::3373;3373;"dataspace";OpenDOAR +dedup::bf4c705b1a03263fbcc649719d4da5ba;roar::6225;6225;"Electronic National Aviation University Repository";roar +dedup::bf4c705b1a03263fbcc649719d4da5ba;roar::7274;7274;"Electronic National Aviation University Repository";roar +dedup::bf6d050fc119cd21993bb1fa378627ef;re3data::r3d100010527;r3d100010527;"European Nucleotide Archive";re3data +dedup::bf6d050fc119cd21993bb1fa378627ef;https://fairsharing.org/10.25504/FAIRsharing.dj8nt8;1850;"European Nucleotide Archive";FAIRsharing +dedup::bf727aa83456f7d8be9aa6c31ed0859b;opendoar::2799;2799;"csun scholarworks";OpenDOAR +dedup::bf727aa83456f7d8be9aa6c31ed0859b;roar::6249;6249;"CSUN ScholarWorks";roar +dedup::bfb5cafc20506a573779b596df98a5b0;roar::856;856;"MODIYA Project";roar +dedup::bfb5cafc20506a573779b596df98a5b0;opendoar::522;522;"modiya project";OpenDOAR +dedup::bfba63d7f1f42b8e8fb71df33f152a44;roar::4199;4199;"Biblioteca Digital de la Universidad del Valle";roar +dedup::bfba63d7f1f42b8e8fb71df33f152a44;opendoar::2354;2354;"biblioteca digital de la universidad del valle";OpenDOAR +dedup::bfbfc3ca2ad2c56237f3761a858df940;roar::3258;3258;"Osaka City University Repository";roar +dedup::bfbfc3ca2ad2c56237f3761a858df940;roar::12789;12789;"Osaka City University Repository ";roar +dedup::bfbfc3ca2ad2c56237f3761a858df940;roar::15586;15586;"Osaka City University Repository";roar +dedup::bfbfc3ca2ad2c56237f3761a858df940;opendoar::1939;1939;"osaka city university repository";OpenDOAR +dedup::bfcc98e1a3811d82e7940c0cc6218413;roar::4964;4964;"University of Florida Digital Collections";roar +dedup::bfcc98e1a3811d82e7940c0cc6218413;opendoar::1585;1585;"university of florida digital collections";OpenDOAR +dedup::bfeacbe92e681057d5e0d995ebd9a5bd;roar::5007;5007;"Biblioteca Digital por la Identidad";roar +dedup::bfeacbe92e681057d5e0d995ebd9a5bd;opendoar::1347;1347;"biblioteca digital por la identidad";OpenDOAR +dedup::bff20cceddd140d160b2057c95afffec;roar::11488;11488;"Murray State's Digital Commons";roar +dedup::bff20cceddd140d160b2057c95afffec;opendoar::3727;3727;"murray states digital commons";OpenDOAR +dedup::c00853169d079fd499a5a537f97030ec;re3data::r3d100010072;r3d100010072;"Environmental data explorer";re3data +dedup::c00853169d079fd499a5a537f97030ec;https://fairsharing.org/fairsharing_records/3197;3197;"Environmental Data Explorer";FAIRsharing +dedup::c016dcabedbe5df637e6477e4310b35f;https://fairsharing.org/10.25504/FAIRsharing.1ky0cs;2502;"UK Data Service";FAIRsharing +dedup::c016dcabedbe5df637e6477e4310b35f;re3data::r3d100010230;r3d100010230;"UK Data Service";re3data +dedup::c02456cc0e2c802b263fbfaa3471ac34;roar::3402;3402;"CSU Research Output";roar +dedup::c02456cc0e2c802b263fbfaa3471ac34;opendoar::1314;1314;"csu research output";OpenDOAR +dedup::c02c2cdd3859555cab63a42054986de0;roar::325;325;"DigitalCommons@C.O.D.";roar +dedup::c02c2cdd3859555cab63a42054986de0;opendoar::1598;1598;"digitalcommons@c.o.d.";OpenDOAR +dedup::c0310cb1acbfb5c79ba2c4e16e1935d8;opendoar::3689;3689;"university of johannesburg institutional repository";OpenDOAR +dedup::c0310cb1acbfb5c79ba2c4e16e1935d8;roar::11010;11010;"University of Johannesburg Institutional Repository";roar +dedup::c031b1aa7c9fac1f9c4eb3e1c797930b;opendoar::5536;5536;"scholarly commons @ famu law";OpenDOAR +dedup::c031b1aa7c9fac1f9c4eb3e1c797930b;roar::10376;10376;"Scholarly Commons @ FAMU Law";roar +dedup::c03b1a0291183234e5354ed444c0efcf;re3data::r3d100010623;r3d100010623;"National Pollutant Release Inventory";re3data +dedup::c03b1a0291183234e5354ed444c0efcf;https://fairsharing.org/10.25504/FAIRsharing.f14e0b;2970;"National Pollutant Release Inventory";FAIRsharing +dedup::c04f9dd2dd00fce3c8243ebe6fe72d58;opendoar::1936;1936;"okinawa repository integrated open-access network";OpenDOAR +dedup::c04f9dd2dd00fce3c8243ebe6fe72d58;roar::3200;3200;"Okinawa Repository Integrated Open-Access Network";roar +dedup::c0a2d2e114f3bc85f5e4dab3c72834f5;opendoar::1324;1324;"idaho state historical society digital collections";OpenDOAR +dedup::c0a2d2e114f3bc85f5e4dab3c72834f5;roar::5457;5457;"Idaho State Historical Society Digital Collections";roar +dedup::c0b153364fb29b5c87c611df6d62cff7;https://fairsharing.org/10.25504/FAIRsharing.4e2z82;2563;"JRC Data Catalogue";FAIRsharing +dedup::c0b153364fb29b5c87c611df6d62cff7;re3data::r3d100012593;r3d100012593;"JRC Data Catalogue";re3data +dedup::c0e3fcfb1a60d00c639974246e1b7b24;opendoar::1227;1227;"repositorio de material educativo";OpenDOAR +dedup::c0e3fcfb1a60d00c639974246e1b7b24;roar::3753;3753;"Repositorio de Material Educativo";roar +dedup::c0e4a874b1ca4b7f7f9687ca5fc0f39a;roar::3713;3713;"Інституційний репозитарій Української академії банківської справи Національ (Electronic Ukrainian Academy of Banking of the National Bank of Ukraine Institutional Repository)";roar +dedup::c0e4a874b1ca4b7f7f9687ca5fc0f39a;opendoar::2107;2107;"electronic ukrainian academy of banking of the national bank of ukraine institutional repository";OpenDOAR +dedup::c0f4031cd702149b158623e7356674b7;roar::16402;16402;"Repositorio IBERO";roar +dedup::c0f4031cd702149b158623e7356674b7;opendoar::9952;9952;"repositorio ibero";OpenDOAR +dedup::c14a1b5d8389cb072146690a611ed069;re3data::r3d100011479;r3d100011479;"TriTrypDB";re3data +dedup::c14a1b5d8389cb072146690a611ed069;https://fairsharing.org/10.25504/FAIRsharing.fs1z27;1885;"TriTrypDB";FAIRsharing +dedup::c15dffeab6ddc08658df57432659e794;opendoar::4084;4084;"repozytorium uniwersytetu śląskiego re-buś";OpenDOAR +dedup::c15dffeab6ddc08658df57432659e794;roar::13614;13614;"Repozytorium Uniwersytetu Śląskiego RE-BUŚ";roar +dedup::c15ee5123949c3c75f758174f1c5c804;opendoar::3545;3545;"botho university institutional repository";OpenDOAR +dedup::c15ee5123949c3c75f758174f1c5c804;roar::10373;10373;"Botho University Institutional Repository ";roar +dedup::c1905360d343153bed2a2183be5a0b43;opendoar::2037;2037;"archival sound recordings";OpenDOAR +dedup::c1905360d343153bed2a2183be5a0b43;roar::3510;3510;"Archival Sound Recordings";roar +dedup::c1905360d343153bed2a2183be5a0b43;roar::5684;5684;"Archival Sound Recordings";roar +dedup::c1ad730800ac8513d064919d58d186b8;https://fairsharing.org/10.25504/FAIRsharing.hESBcy;2743;"Genomic Expression Archive";FAIRsharing +dedup::c1ad730800ac8513d064919d58d186b8;re3data::r3d100013187;r3d100013187;"Genomic Expression Archive";re3data +dedup::c1d1ece1818c25b3e4d49a2242ec4752;opendoar::4616;4616;"institutional repository of bila tserkva national agrarian university";OpenDOAR +dedup::c1d1ece1818c25b3e4d49a2242ec4752;roar::14685;14685;"Institutional Repository of Bila Tserkva National Agrarian University";roar +dedup::c1d787befe13f33b2416efd1e2928b6d;opendoar::2588;2588;"university of canberra research portal";OpenDOAR +dedup::c1d787befe13f33b2416efd1e2928b6d;roar::11231;11231;"The University of Canberra Research Portal";roar +dedup::c1ddb88522b478468511b91e8ed822eb;roar::5690;5690;"Świętokrzyska Digital Library";roar +dedup::c1ddb88522b478468511b91e8ed822eb;roar::3662;3662;"Świętokrzyska Digital Library";roar +dedup::c1ddb88522b478468511b91e8ed822eb;opendoar::2094;2094;"świętokrzyska digital library";OpenDOAR +dedup::c203a9658099b00aa440f942970cc4ce;roar::3703;3703;"IRUA (Institutional Repository Universiteit Antwerpen)";roar +dedup::c203a9658099b00aa440f942970cc4ce;opendoar::2097;2097;"institutional repository universiteit antwerpen";OpenDOAR +dedup::c22168babbf71162ea03bf42dca83706;roar::15210;15210;"Repositorio Institucional UPeU";roar +dedup::c22168babbf71162ea03bf42dca83706;opendoar::4840;4840;"repositorio institucional upeu";OpenDOAR +dedup::c2277c8a3336c4860e392fe621137f87;https://fairsharing.org/10.25504/FAIRsharing.nvwz0x;2503;"openICPSR";FAIRsharing +dedup::c2277c8a3336c4860e392fe621137f87;re3data::r3d100012693;r3d100012693;"OpenICPSR";re3data +dedup::c28ca0880f1d6cbee6e0cb0e9fe4468e;https://fairsharing.org/10.25504/FAIRsharing.zsgmvd;2402;"Ensembl Bacteria";FAIRsharing +dedup::c28ca0880f1d6cbee6e0cb0e9fe4468e;re3data::r3d100011195;r3d100011195;"Ensembl Bacteria";re3data +dedup::c2943ff941da78fac8818938d6c1f352;https://fairsharing.org/10.25504/FAIRsharing.LYsiMd;2671;"Mass Spectrometry Interactive Virtual Environment";FAIRsharing +dedup::c2943ff941da78fac8818938d6c1f352;re3data::r3d100012858;r3d100012858;"Mass Spectrometry Interactive Virtual Environment";re3data +dedup::c2ac3a7684726d09e9e703b9a048ef3d;opendoar::2659;2659;"zenodo";OpenDOAR +dedup::c2ac3a7684726d09e9e703b9a048ef3d;re3data::r3d100010468;r3d100010468;"Zenodo";re3data +dedup::c2d7ed708fc5846c3192dbc6ed41a98e;https://fairsharing.org/10.25504/FAIRsharing.45c8c8;2885;"International Plant Names Index";FAIRsharing +dedup::c2d7ed708fc5846c3192dbc6ed41a98e;re3data::r3d100012002;r3d100012002;"International Plant Names Index";re3data +dedup::c2da5fe48c749bccd7bab443ee52c782;roar::3823;3823;"Indian Academy of Sciences: Publications of Fellows";roar +dedup::c2da5fe48c749bccd7bab443ee52c782;opendoar::2182;2182;"indian academy of sciences: publications of fellows";OpenDOAR +dedup::c3062abfed46b402065ab5a0298a64d8;roar::17297;17297;"İstanbul Atlas University Institutional Repository";roar +dedup::c3062abfed46b402065ab5a0298a64d8;opendoar::10100;10100;"i̇stanbul atlas university institutional repository";OpenDOAR +dedup::c3133cb65657e3eb1000d99a85e1b6f8;re3data::r3d100011098;r3d100011098;"OpenML";re3data +dedup::c3133cb65657e3eb1000d99a85e1b6f8;https://fairsharing.org/fairsharing_records/2817;2817;"OpenML";FAIRsharing +dedup::c338c7c33df92672d478a89500a00225;re3data::r3d100010815;r3d100010815;"Mechanism and Catalytic Site Atlas";re3data +dedup::c338c7c33df92672d478a89500a00225;https://fairsharing.org/10.25504/FAIRsharing.BrubDI;2595;"Mechanism and Catalytic Site Atlas";FAIRsharing +dedup::c3447c364b4fa3194d30b59d441db7e9;opendoar::1264;1264;"dugidocs – universitat de girona";OpenDOAR +dedup::c3447c364b4fa3194d30b59d441db7e9;roar::446;446;"DUGiDocs – Universitat de Girona";roar +dedup::c35bdb5253f0019c87f1a134616b1b5f;re3data::r3d100010660;r3d100010660;"U.S. Antarctic Program Data Center";re3data +dedup::c35bdb5253f0019c87f1a134616b1b5f;https://fairsharing.org/10.25504/FAIRsharing.XIxciC;3259;"U.S. Antarctic Program Data Center";FAIRsharing +dedup::c36f8adf241c173dac7023d160c82a4f;opendoar::9491;9491;"çukurova university institutional repository";OpenDOAR +dedup::c36f8adf241c173dac7023d160c82a4f;roar::3629;3629;"Çukurova University Institutional Repository";roar +dedup::c38273d52f429a73686c1d53943537b1;opendoar::1460;1460;"bradford scholars";OpenDOAR +dedup::c38273d52f429a73686c1d53943537b1;roar::173;173;"Bradford Scholars";roar +dedup::c38437db3310838ecdcf17824e26806e;opendoar::3889;3889;"amu repository (knowledge repository)";OpenDOAR +dedup::c38437db3310838ecdcf17824e26806e;roar::12898;12898;"AMU Repository (Knowledge Repository)";roar +dedup::c38ca2394d7b65879f960a22d70e264c;roar::3552;3552;"Bałtycka Biblioteka Cyfrowa";roar +dedup::c38ca2394d7b65879f960a22d70e264c;opendoar::2048;2048;"bałtycka biblioteka cyfrowa";OpenDOAR +dedup::c3c81052019ad89351a3cb957d0aef93;https://fairsharing.org/10.25504/FAIRsharing.1547e3;3152;"LITTERBASE";FAIRsharing +dedup::c3c81052019ad89351a3cb957d0aef93;re3data::r3d100013207;r3d100013207;"Litterbase";re3data +dedup::c3e7af8f4748f270d1302ee1ccafaba8;roar::4995;4995;"Graduate School Section of the eTD database";roar +dedup::c3e7af8f4748f270d1302ee1ccafaba8;opendoar::137;137;"graduate school section of the etd database";OpenDOAR +dedup::c3f88d70167147e2169412c74af31099;roar::323;323;"DigitalCollections@SIT";roar +dedup::c3f88d70167147e2169412c74af31099;roar::8449;8449;"DigitalCollections@SIT";roar +dedup::c4640f22317e3c38d659ea940327b5e0;opendoar::296;296;"tesis doctorals en xarxa";OpenDOAR +dedup::c4640f22317e3c38d659ea940327b5e0;roar::3840;3840;"Tesis Doctorals en Xarxa";roar +dedup::c49763e6d1bf037a83aa301fd579f1f1;opendoar::150;150;"research collection";OpenDOAR +dedup::c49763e6d1bf037a83aa301fd579f1f1;roar::5519;5519;"Research Collection";roar +dedup::c49a47ccb69653eb7980cb1451853cdf;opendoar::5661;5661;"brandman digital repository";OpenDOAR +dedup::c49a47ccb69653eb7980cb1451853cdf;roar::12232;12232;"Brandman Digital Repository";roar +dedup::c4a674f72770cd956d8d9c784a2ebc4f;roar::4380;4380;"Institutional Repository of Institute of Coal Chemistry";roar +dedup::c4a674f72770cd956d8d9c784a2ebc4f;opendoar::2307;2307;"institutional repository of institute of coal chemistry, cas";OpenDOAR +dedup::c4b1b1da161097e6555409405fdba157;opendoar::1647;1647;"cput institutional repository";OpenDOAR +dedup::c4b1b1da161097e6555409405fdba157;roar::12551;12551;"CPUT Institutional Repository";roar +dedup::c4bf74ce58878bbd313ce01d49799687;re3data::r3d100010185;r3d100010185;"The Arabidopsis Information Resource";re3data +dedup::c4bf74ce58878bbd313ce01d49799687;https://fairsharing.org/10.25504/FAIRsharing.4dqw0;1649;"The Arabidopsis Information Resource";FAIRsharing +dedup::c4c99dfccdfaf58613533e8956528a27;https://fairsharing.org/10.25504/FAIRsharing.xhzfk0;2252;"National Archive of Computerized Data on Aging";FAIRsharing +dedup::c4c99dfccdfaf58613533e8956528a27;re3data::r3d100010259;r3d100010259;"National Archive of Computerized Data on Aging";re3data +dedup::c4dabfce7e343f76cd66acbfb465baa6;opendoar::3080;3080;"scholarworks@ua";OpenDOAR +dedup::c4dabfce7e343f76cd66acbfb465baa6;roar::8189;8189;"ScholarWorks@UA";roar +dedup::c4e26f8114e9a24a466c28264876a08c;roar::3648;3648;"Digital Archives of Colorado College";roar +dedup::c4e26f8114e9a24a466c28264876a08c;opendoar::2081;2081;"digital archives of colorado college";OpenDOAR +dedup::c4ec56ce06abc1eb88c57bda788c3220;https://fairsharing.org/10.25504/FAIRsharing.vcmz9h;2184;"SICAS Medical Image Repository";FAIRsharing +dedup::c4ec56ce06abc1eb88c57bda788c3220;re3data::r3d100011560;r3d100011560;"Sicas Medical Image Repository";re3data +dedup::c4f37d1c655c9792f4701c95f9312f66;opendoar::2413;2413;"ub institutional repository";OpenDOAR +dedup::c4f37d1c655c9792f4701c95f9312f66;roar::4782;4782;"UB Institutional Repository";roar +dedup::c51dca515f503de0c87146db4e8e660c;roar::2565;2565;"IssueLab";roar +dedup::c51dca515f503de0c87146db4e8e660c;opendoar::2104;2104;"issuelab";OpenDOAR +dedup::c58692a37312a79cc4c217501eb6b770;opendoar::1006;1006;"csir research space";OpenDOAR +dedup::c58692a37312a79cc4c217501eb6b770;roar::271;271;"CSIR Research Space";roar +dedup::c5905f3e2bf80759601a2544aeaeb507;https://fairsharing.org/10.25504/FAIRsharing.v9fya8;1969;"Expressed Sequence Tags database";FAIRsharing +dedup::c5905f3e2bf80759601a2544aeaeb507;re3data::r3d100010648;r3d100010648;"Expressed Sequence Tags database";re3data +dedup::c5c777a41777ee85736aed64b79bff36;roar::2505;2505;"Occidental College Scholar";roar +dedup::c5c777a41777ee85736aed64b79bff36;opendoar::1729;1729;"occidental college scholar";OpenDOAR +dedup::c5da6caa3d01642098555c844a1c1dcf;opendoar::2566;2566;"repositorio de digital institucional - ucsg";OpenDOAR +dedup::c5da6caa3d01642098555c844a1c1dcf;roar::5943;5943;"Repositorio de Digital Institucional - UCSG";roar +dedup::c634933675631eafc77a673c6c66e175;https://fairsharing.org/10.25504/FAIRsharing.86123d;3033;"Scholars' Bank";FAIRsharing +dedup::c634933675631eafc77a673c6c66e175;re3data::r3d100011682;r3d100011682;"Scholar's Bank";re3data +dedup::c669e669cde1d92a81cb45671df86408;roar::5005;5005;"Theses@asb";roar +dedup::c669e669cde1d92a81cb45671df86408;opendoar::2416;2416;"theses@asb";OpenDOAR +dedup::c673ecc7281559f5d4da4d22e27a42df;opendoar::3549;3549;"oar@um";OpenDOAR +dedup::c673ecc7281559f5d4da4d22e27a42df;roar::11816;11816;"OAR@UM";roar +dedup::c68762d57d31d96ba2297bc0a88c86ef;opendoar::7753;7753;"louisiana tech digital commons";OpenDOAR +dedup::c68762d57d31d96ba2297bc0a88c86ef;roar::14636;14636;"Louisiana Tech Digital Commons ";roar +dedup::c6bb516bed9e87e851b288f1a88d0f83;roar::4756;4756;"Welcome to Open Access Repository of ICRISAT - OAR@ICRISAT";roar +dedup::c6bb516bed9e87e851b288f1a88d0f83;roar::5056;5056;"Welcome to Open Access Repository of ICRISAT - OAR@ICRISAT";roar +dedup::c6da0251c73bc585f21497033c30274e;roar::8877;8877;"Welcome to Institutional Repository IAIN Tulungagung - Institutional Repository IAIN Tulungagung";roar +dedup::c6da0251c73bc585f21497033c30274e;roar::8879;8879;"Welcome to Institutional Repository IAIN Tulungagung - Institutional Repository IAIN Tulungagung";roar +dedup::c70f947ff8e366ff6709cfc76e2cd00f;opendoar::1510;1510;"unisa institutional repository";OpenDOAR +dedup::c70f947ff8e366ff6709cfc76e2cd00f;re3data::r3d100012376;r3d100012376;"Unisa Institutional Repository";re3data +dedup::c70f947ff8e366ff6709cfc76e2cd00f;roar::3911;3911;"Unisa Institutional Repository";roar +dedup::c7167fa75c9a434063085cf407ef41f6;roar::4718;4718;"TREASURES @ UTD";roar +dedup::c7167fa75c9a434063085cf407ef41f6;opendoar::1467;1467;"treasures @ utd";OpenDOAR +dedup::c716873e6311e6d3bf61c431168ed23b;re3data::r3d100012752;r3d100012752;"BenchSCI";re3data +dedup::c716873e6311e6d3bf61c431168ed23b;https://fairsharing.org/10.25504/FAIRsharing.fwg0qf;2481;"BenchSci";FAIRsharing +dedup::c723414358e3785f7b711e4b33d85ea1;opendoar::1673;1673;"ual research online";OpenDOAR +dedup::c723414358e3785f7b711e4b33d85ea1;roar::2482;2482;"UAL Research Online";roar +dedup::c7875510ccafb23303479bcc560e02e6;roar::6412;6412;"Digital Library of the Czech Technical University in Prague";roar +dedup::c7875510ccafb23303479bcc560e02e6;opendoar::2606;2606;"digital library of the czech technical university in prague";OpenDOAR +dedup::c78feed98cf1b59cc842ee109adb1422;opendoar::393;393;"american memory";OpenDOAR +dedup::c78feed98cf1b59cc842ee109adb1422;roar::5003;5003;"American Memory";roar +dedup::c791177acf23de6425c66359374e9bb1;opendoar::2334;2334;"repositorio institucional funde";OpenDOAR +dedup::c791177acf23de6425c66359374e9bb1;roar::4928;4928;"Repositorio Institucional FUNDE";roar +dedup::c7c060821fc1c009c9e15265ff877315;opendoar::1890;1890;"repositori obert udl";OpenDOAR +dedup::c7c060821fc1c009c9e15265ff877315;roar::3052;3052;"Repositori Obert UdL";roar +dedup::c7c060821fc1c009c9e15265ff877315;roar::8703;8703;"Repositori Obert UdL";roar +dedup::c7cde62b180b7103699dda20691b3bab;roar::5182;5182;"Institute Repository of TianJin Institute of Industrial Biotechnology";roar +dedup::c7cde62b180b7103699dda20691b3bab;opendoar::2470;2470;"institute repository of tianjin institute of industrial biotechnology";OpenDOAR +dedup::c7d47f55ac346a0f3c93994e6350b623;roar::464;464;"e-Publications@Marquette";roar +dedup::c7d47f55ac346a0f3c93994e6350b623;opendoar::1876;1876;"epublications@marquette";OpenDOAR +dedup::c84abb5d1127063d970b6e2049d652fd;opendoar::4527;4527;"wakayama university academic repository";OpenDOAR +dedup::c84abb5d1127063d970b6e2049d652fd;roar::13031;13031;"Wakayama University Academic Repository";roar +dedup::c8d5b8fdd97d77f781d741857e018eea;roar::14679;14679;"Munzur University Institutional Repository";roar +dedup::c8d5b8fdd97d77f781d741857e018eea;opendoar::4572;4572;"munzur university institutional repository";OpenDOAR +dedup::c8da8fad1e6173feea8271b8d1e7d0b1;re3data::r3d100012490;r3d100012490;"Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations";re3data +dedup::c8da8fad1e6173feea8271b8d1e7d0b1;https://fairsharing.org/fairsharing_records/2811;2811;"Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations";FAIRsharing +dedup::c8e14c9c7c6352f884ea56b85907d70f;opendoar::129;129;"earth-prints repository";OpenDOAR +dedup::c8e14c9c7c6352f884ea56b85907d70f;re3data::r3d100011191;r3d100011191;"Earth-prints Repository";re3data +dedup::c93d5630abc251808584808942f8c7f7;roar::4028;4028;"ICM - DIR - Zasoby Polskie";roar +dedup::c93d5630abc251808584808942f8c7f7;opendoar::2214;2214;"icm - dir - zasoby polskie";OpenDOAR +dedup::c95ed44c598b67ac91778edd46254615;re3data::r3d100011861;r3d100011861;"National Sleep Research Resource";re3data +dedup::c95ed44c598b67ac91778edd46254615;https://fairsharing.org/10.25504/FAIRsharing.crjxwd;2253;"National Sleep Research Resource";FAIRsharing +dedup::c96af516df23e4670899c06dda61e8c2;roar::3193;3193;"University of Yamanashi Academic Repository";roar +dedup::c96af516df23e4670899c06dda61e8c2;opendoar::1938;1938;"university of yamanashi academic repository";OpenDOAR +dedup::c9801b55a7bc9cfcfb8bf568d6014f2b;roar::3307;3307;"Covenant University Repository";roar +dedup::c9801b55a7bc9cfcfb8bf568d6014f2b;opendoar::2022;2022;"covenant university repository";OpenDOAR +dedup::c99389eb9d7d496ffc7ecd4a88413771;opendoar::2160;2160;"morska biblioteka cyfrowa (maritime digital library)";OpenDOAR +dedup::c99389eb9d7d496ffc7ecd4a88413771;roar::3841;3841;"Morska Biblioteka Cyfrowa (Maritime Digital LIbrary)";roar +dedup::c9c7d17a50790ba8d335c8e33367cf15;roar::2317;2317;"Epsilon Archive for Student Projects";roar +dedup::c9c7d17a50790ba8d335c8e33367cf15;opendoar::292;292;"epsilon archive for student projects";OpenDOAR +dedup::c9cab4a4c28fb8789a547b8cdf6e3a92;re3data::r3d100013668;r3d100013668;"bio.tools";re3data +dedup::c9cab4a4c28fb8789a547b8cdf6e3a92;https://fairsharing.org/10.25504/FAIRsharing.63520c;3300;"bio.tools";FAIRsharing +dedup::c9f3275b9c249c8e0de8cd7c8dc4e17a;roar::8371;8371;"Scholarly and Creative Work from DePauw University | DePauw University Research";roar +dedup::c9f3275b9c249c8e0de8cd7c8dc4e17a;roar::8324;8324;"Scholarly and Creative Work from DePauw University | DePauw University Research";roar +dedup::ca0b11374cbb46a56182b5cbeb0a313b;roar::2392;2392;"K-State Research Exchange";roar +dedup::ca0b11374cbb46a56182b5cbeb0a313b;opendoar::931;931;"k-state research exchange";OpenDOAR +dedup::ca28e94ad3f455aa60ba2ce69ffdb924;opendoar::3432;3432;"iris - institutional research information system of the university of trento";OpenDOAR +dedup::ca28e94ad3f455aa60ba2ce69ffdb924;roar::8223;8223;"IRIS - Institutional Research Information System of the University of Trento";roar +dedup::ca2c70bca7f32827c46ce1213f7db814;opendoar::2163;2163;"cbpf index";OpenDOAR +dedup::ca2c70bca7f32827c46ce1213f7db814;roar::3865;3865;"CBPF Index";roar +dedup::ca4cdcfcb199e947ec2eb1fce25801c4;roar::15025;15025;"Ağrı İbrahim Çeçen University Institutional Repository";roar +dedup::ca4cdcfcb199e947ec2eb1fce25801c4;opendoar::4667;4667;"ağrı i̇brahim çeçen university institutional repository";OpenDOAR +dedup::ca501576343044c945d2e66e7b210e0b;roar::14640;14640;"DigitalCommons@ONU";roar +dedup::ca501576343044c945d2e66e7b210e0b;opendoar::7492;7492;"digitalcommons@onu";OpenDOAR +dedup::ca501576343044c945d2e66e7b210e0b;roar::14739;14739;"DigitalCommons@ONU";roar +dedup::ca5810ce60810af65fc74b129548b237;roar::14757;14757;"Amasya University Institutional Repository";roar +dedup::ca5810ce60810af65fc74b129548b237;opendoar::4608;4608;"amasya university institutional repository";OpenDOAR +dedup::ca5bbb7ed9b141929ab555afad60e343;https://fairsharing.org/10.25504/FAIRsharing.6069e1;3144;"Data.gov";FAIRsharing +dedup::ca5bbb7ed9b141929ab555afad60e343;re3data::r3d100010078;r3d100010078;"Data.gov";re3data +dedup::ca5bbb7ed9b141929ab555afad60e343;roar::3887;3887;"Data.gov";roar +dedup::ca8a2149d9280c374741a7cf9eefc41b;roar::1053;1053;"RABCI - Repositório acadêmico de Biblioteconomia e Ciência da Informação";roar +dedup::ca8a2149d9280c374741a7cf9eefc41b;opendoar::273;273;"repositório acadêmico de biblioteconomia e ciência da informação";OpenDOAR +dedup::caa51f26959045506242057ec9b72389;opendoar::2784;2784;"hal-ecole des ponts paristech";OpenDOAR +dedup::caa51f26959045506242057ec9b72389;roar::6969;6969;"HAL - Ecole des Ponts ParisTech ";roar +dedup::cab25b9d7f69d870e56617a8476ec5bd;re3data::r3d100010779;r3d100010779;"NCBI Structure";re3data +dedup::cab25b9d7f69d870e56617a8476ec5bd;https://fairsharing.org/10.25504/FAIRsharing.zqzvyc;1981;"NCBI Structure";FAIRsharing +dedup::cac1571a0634f4d95b93dfd8634ce7a8;roar::4639;4639;"HELIOS Repository";roar +dedup::cac1571a0634f4d95b93dfd8634ce7a8;opendoar::1457;1457;"helios repository";OpenDOAR +dedup::cb16e35a9da672737d5d56e149fdec90;opendoar::3279;3279;"digital repository universitas negeri medan";OpenDOAR +dedup::cb16e35a9da672737d5d56e149fdec90;roar::9524;9524;"Digital Repository Universitas Negeri Medan";roar +dedup::cb404a79cf929da69059d3879a13b771;https://fairsharing.org/10.25504/FAIRsharing.bmz5ap;2506;"Qualitative Data Repository";FAIRsharing +dedup::cb404a79cf929da69059d3879a13b771;re3data::r3d100011038;r3d100011038;"Qualitative Data Repository";re3data +dedup::cb5ab88eae6cf68280cf0ba410831207;roar::360;360;"Division of Academic and Health Affairs Repository";roar +dedup::cb5ab88eae6cf68280cf0ba410831207;opendoar::1157;1157;"division of academic and health affairs repository";OpenDOAR +dedup::cb754af36ac4cc06978a47f34c09d844;roar::15718;15718;"Kırıkkale Üniversitesi Akademik Arşiv Sistemi";roar +dedup::cb754af36ac4cc06978a47f34c09d844;opendoar::9506;9506;"kırıkkale üniversitesi akademik arşiv sistemi";OpenDOAR +dedup::cb77052afe0fb13fc9dabba0bc9d19dc;opendoar::1660;1660;"national taiwan university of science and technology institutional repository";OpenDOAR +dedup::cb77052afe0fb13fc9dabba0bc9d19dc;roar::4968;4968;"National Taiwan University of Science and Technology Institutional Repository";roar +dedup::cbb495a081a40e09c06f924c33e1941a;opendoar::3108;3108;"opus-phfr - hochschulschriftenserver der paedagogischen hochschule freiburg";OpenDOAR +dedup::cbb495a081a40e09c06f924c33e1941a;roar::8645;8645;"OPUS-PHFR - Hochschulschriftenserver der Paedagogischen Hochschule Freiburg";roar +dedup::cbbb00700d57e1098f707e303e37751f;roar::1105;1105;"Research Online @ ECU";roar +dedup::cbbb00700d57e1098f707e303e37751f;opendoar::2045;2045;"research online @ ecu";OpenDOAR +dedup::cbcc6fbf2822100bccf50eba45a9e517;roar::5478;5478;"Thèses-Unistra : thèses et mémoires électroniques de l'Université de Strasbourg";roar +dedup::cbcc6fbf2822100bccf50eba45a9e517;opendoar::2488;2488;"thèses-unistra : thèses et mémoires électroniques de luniversité de strasbourg";OpenDOAR +dedup::cc0954a569b666aa8e9291076cc50e0e;roar::3948;3948;"data.gov.au";roar +dedup::cc0954a569b666aa8e9291076cc50e0e;re3data::r3d100010868;r3d100010868;"Data.gov.au";re3data +dedup::cc324f1cc75596559ef5d0351e83f473;re3data::r3d100010532;r3d100010532;"OceanDataPortal";re3data +dedup::cc324f1cc75596559ef5d0351e83f473;https://fairsharing.org/fairsharing_records/2992;2992;"OceanDataPortal";FAIRsharing +dedup::cc4da61e97f15d0f2627d9751afafc0d;re3data::r3d100011898;r3d100011898;"UWA Profiles and Research Repository";re3data +dedup::cc4da61e97f15d0f2627d9751afafc0d;opendoar::4344;4344;"uwa profiles and research repository";OpenDOAR +dedup::cc4da61e97f15d0f2627d9751afafc0d;https://fairsharing.org/fairsharing_records/3080;3080;"UWA Profiles and Research Repository";FAIRsharing +dedup::cc75efd39913372bf4cdee57139c0a27;roar::4002;4002;"National Kaohsiung Normal University Institutional Repository ";roar +dedup::cc75efd39913372bf4cdee57139c0a27;opendoar::2209;2209;"national kaohsiung normal university institutional repository";OpenDOAR +dedup::cc75efd39913372bf4cdee57139c0a27;roar::4026;4026;"National Kaohsiung Normal University Institutional Repository";roar +dedup::cc95f3d14a11e848bca1b695fa97df24;opendoar::982;982;"elpub digital repository";OpenDOAR +dedup::cc95f3d14a11e848bca1b695fa97df24;roar::5558;5558;"ELPUB Digital Repository";roar +dedup::ccc4c66f6c23437ea1bddca339ef98cd;roar::8651;8651;"Wissenschaftlicher Publikationsserver der Frankfurt University of Applied Sciences (WIPS)";roar +dedup::ccc4c66f6c23437ea1bddca339ef98cd;opendoar::3584;3584;"wissenschaftliche publikationsserver der frankfurt university of applied sciences";OpenDOAR +dedup::ccdbc9b03f9a37fc27a76c5da7703785;https://fairsharing.org/10.25504/FAIRsharing.m3jtpg;1561;"ChEMBL";FAIRsharing +dedup::ccdbc9b03f9a37fc27a76c5da7703785;re3data::r3d100010539;r3d100010539;"ChEMBL";re3data +dedup::ccddfb15c63a65549a29429de20d389a;roar::1069;1069;"Repositorio da Universidade de Lisboa";roar +dedup::ccddfb15c63a65549a29429de20d389a;opendoar::1620;1620;"repositorio da universidade de lisboa";OpenDOAR +dedup::ccf4d43eb7ecd7d3e9fa31ce288fafdd;roar::4975;4975;"FAMENA Repository";roar +dedup::ccf4d43eb7ecd7d3e9fa31ce288fafdd;opendoar::3499;3499;"famena repository";OpenDOAR +dedup::cd43e393d243c3f2bcc30ccc96c67a9e;opendoar::2225;2225;"knowledge repository open network";OpenDOAR +dedup::cd43e393d243c3f2bcc30ccc96c67a9e;roar::5218;5218;"Knowledge Repository Open Network";roar +dedup::cd4ee6ea85779a33ee7f9de5a6bb3946;roar::15609;15609;"Siirt University Institutional Repository";roar +dedup::cd4ee6ea85779a33ee7f9de5a6bb3946;opendoar::9478;9478;"siirt university institutional repository";OpenDOAR +dedup::cd853a3abfda91d70e1b1419b7a47985;opendoar::2990;2990;"repositorio institucional académico universidad andrés bello";OpenDOAR +dedup::cd853a3abfda91d70e1b1419b7a47985;roar::8059;8059;"Repositorio Institucional Académico de la Universidad Andrés Bello";roar +dedup::cd853a3abfda91d70e1b1419b7a47985;roar::11529;11529;"Repositorio Institucional Académico Universidad Andrés Bello";roar +dedup::cd89fcfc0aa9baa92bc6c4fca9b016ae;https://fairsharing.org/10.25504/FAIRsharing.7IQk4a;2879;"Primate Cell Type Database";FAIRsharing +dedup::cd89fcfc0aa9baa92bc6c4fca9b016ae;re3data::r3d100013202;r3d100013202;"Primate Cell Type Database";re3data +dedup::cd90e833d1f1756fabd68b716e810a1a;opendoar::1442;1442;"sandra day oconnor college of law faculty scholarship repository";OpenDOAR +dedup::cd90e833d1f1756fabd68b716e810a1a;roar::2836;2836;"Sandra Day O'Connor College of Law Faculty Scholarship Repository";roar +dedup::cdba6d54b9f195cb2ce868df9c2086b0;opendoar::2597;2597;"hellenic national archive of doctoral dissertations";OpenDOAR +dedup::cdba6d54b9f195cb2ce868df9c2086b0;roar::6256;6256;"Hellenic National Archive of Doctoral Dissertations";roar +dedup::cde88df0268a9ad48a8bdfc1da9f1ae1;roar::11092;11092;"NIFS-Repository";roar +dedup::cde88df0268a9ad48a8bdfc1da9f1ae1;opendoar::1941;1941;"nifs repository";OpenDOAR +dedup::cdf70eade43eb5238c9232e025d93b60;re3data::r3d100010741;r3d100010741;"Addgene";re3data +dedup::cdf70eade43eb5238c9232e025d93b60;https://fairsharing.org/10.25504/FAIRsharing.8hcczk;1738;"Addgene";FAIRsharing +dedup::ce092589abea47d1610932053053f302;roar::8619;8619;"Marmara University Open Archive Repository";roar +dedup::ce092589abea47d1610932053053f302;opendoar::3098;3098;"marmara university open archive repository";OpenDOAR +dedup::ce1de67103cccbae8219caf79665a3f2;opendoar::1509;1509;"bibioteca digital ação educativa";OpenDOAR +dedup::ce1de67103cccbae8219caf79665a3f2;roar::5711;5711;"Bibioteca Digital Ação Educativa";roar +dedup::ce1de67103cccbae8219caf79665a3f2;roar::126;126;"Biblioteca Digital Ação Educativa";roar +dedup::ce1f0c2e747f5e0fdee667dd6f0cf6fc;roar::3147;3147;"Beppu University Information Library for Documentation";roar +dedup::ce1f0c2e747f5e0fdee667dd6f0cf6fc;opendoar::1930;1930;"beppu university information library for documentation";OpenDOAR +dedup::ce6651c66c0855a5c3c67dcd49c6f586;roar::4999;4999;"Biblioteca Virtual del la Universidad Tecnológica de El Salvador";roar +dedup::ce6651c66c0855a5c3c67dcd49c6f586;roar::5524;5524;"Biblioteca Virtual del la Universidad Tecnológica de El Salvador";roar +dedup::ce6651c66c0855a5c3c67dcd49c6f586;roar::2723;2723;"Biblioteca Virtual del la Universidad Tecnológica de El Salvador";roar +dedup::cec6dc50a99ace08c134d8cc56dd7ef9;https://fairsharing.org/10.25504/FAIRsharing.fNXAq5;3079;"ETH Zürich Research Collection";FAIRsharing +dedup::cec6dc50a99ace08c134d8cc56dd7ef9;re3data::r3d100012557;r3d100012557;"ETH Zürich Research Collection";re3data +dedup::ceca0e7fbd95f5f8d2ef9dfc5dcbc5ae;roar::11303;11303;"KITopen";roar +dedup::ceca0e7fbd95f5f8d2ef9dfc5dcbc5ae;re3data::r3d100012578;r3d100012578;"KITopen";re3data +dedup::ceca0e7fbd95f5f8d2ef9dfc5dcbc5ae;opendoar::3596;3596;"kitopen";OpenDOAR +dedup::cecb433ee31e37e97d35bbc70063b152;re3data::r3d100010801;r3d100010801;"National Science Digital Library";re3data +dedup::cecb433ee31e37e97d35bbc70063b152;https://fairsharing.org/10.25504/FAIRsharing.73afbf;2698;"National Science Digital Library";FAIRsharing +dedup::ceeb52b9f4e8f65775181b30c0c04de5;roar::4135;4135;"Univeristy of Warmia and Mazury Digital Library";roar +dedup::ceeb52b9f4e8f65775181b30c0c04de5;opendoar::2240;2240;"univeristy of warmia and mazury digital library";OpenDOAR +dedup::cef2aac362a36d55d43ed1aabe033ad8;https://fairsharing.org/10.25504/FAIRsharing.q2n5wk;2378;"SureChEMBL";FAIRsharing +dedup::cef2aac362a36d55d43ed1aabe033ad8;re3data::r3d100011037;r3d100011037;"SureChEMBL";re3data +dedup::cef4c4b150b5232577b9fd1cf1a7a028;opendoar::3904;3904;"repositorio universidad pedagógica y tecnológica de colombia";OpenDOAR +dedup::cef4c4b150b5232577b9fd1cf1a7a028;roar::13135;13135;"Repositorio de la Universidad Pedagógica y Tecnólogica de Colombia";roar +dedup::cf368cf875072ac2c62523436423c412;roar::4087;4087;"UPSpace at the University of Pretoria";roar +dedup::cf368cf875072ac2c62523436423c412;opendoar::642;642;"upspace at the university of pretoria";OpenDOAR +dedup::cf3d655d0412167208bdfee2f210b497;re3data::r3d100012625;r3d100012625;"HydroShare";re3data +dedup::cf3d655d0412167208bdfee2f210b497;https://fairsharing.org/10.25504/FAIRsharing.ZvHsiN;3095;"HydroShare";FAIRsharing +dedup::cf58dbd2307d7b180444cd47f1b95ca3;re3data::r3d100010775;r3d100010775;"Sequence Read Archive";re3data +dedup::cf58dbd2307d7b180444cd47f1b95ca3;https://fairsharing.org/10.25504/FAIRsharing.g7t2hv;1978;"Sequence Read Archive";FAIRsharing +dedup::cf5a1f0e7bba254cbb1b96dbfbf02bb5;roar::3762;3762;"Scholarly Commons at Miami University";roar +dedup::cf5a1f0e7bba254cbb1b96dbfbf02bb5;roar::1159;1159;"Scholarly Commons at Miami University";roar +dedup::cf5a1f0e7bba254cbb1b96dbfbf02bb5;opendoar::1155;1155;"scholarly commons at miami university";OpenDOAR +dedup::cf6824ba651c0a77d7ac77039507e49c;roar::12835;12835;"Edmond";roar +dedup::cf6824ba651c0a77d7ac77039507e49c;re3data::r3d100011387;r3d100011387;"Edmond";re3data +dedup::cf7e539500dd806cadd2fda16ddc3fd5;roar::16491;16491;"Muğla Sıtkı Koçman University Institutional Repository";roar +dedup::cf7e539500dd806cadd2fda16ddc3fd5;opendoar::10004;10004;"muğla sıtkı koçman university institutional repository";OpenDOAR +dedup::cf859ccc5bb1c5eab0e9c725a8325e41;roar::2621;2621;"Digital repository of Cochin University of Science & Technology";roar +dedup::cf859ccc5bb1c5eab0e9c725a8325e41;opendoar::1768;1768;"digital repository of cochin university of science & technology";OpenDOAR +dedup::cf908ebe09006d369878345cdb48983f;opendoar::300;300;"open research online";OpenDOAR +dedup::cf908ebe09006d369878345cdb48983f;roar::965;965;"Open Research Online";roar +dedup::cf9191e1b68b372551bb57ab2f83bd51;roar::9717;9717;"Nayoro City University Institutional Repository";roar +dedup::cf9191e1b68b372551bb57ab2f83bd51;opendoar::3323;3323;"nayoro city university institutional repository";OpenDOAR +dedup::cfa3c6d4bafb6fd8edc1934232713067;re3data::r3d100013084;r3d100013084;"SURF Data Repository";re3data +dedup::cfa3c6d4bafb6fd8edc1934232713067;https://fairsharing.org/fairsharing_records/3774;3774;"SURF Data Repository";FAIRsharing +dedup::cfdddf30406946292472948fe5d72715;roar::5529;5529;"Repositório Científico da Universidade de Évora";roar +dedup::cfdddf30406946292472948fe5d72715;opendoar::1619;1619;"repositório científico da universidade de évora";OpenDOAR +dedup::cfdddf30406946292472948fe5d72715;roar::1088;1088;"Repositório Científico da Universidade de Évora";roar +dedup::cfdddf30406946292472948fe5d72715;roar::4945;4945;"Repositório Científico da Universidade de Évora";roar +dedup::cfea73ff14eaec11db2771a885849c98;roar::17601;17601;"RITEC Repositorio Institucional del Tecnológico de Monterrey";roar +dedup::cfea73ff14eaec11db2771a885849c98;opendoar::3460;3460;"repositorio institucional del tecnológico de monterrey";OpenDOAR +dedup::d026ffbe47d26082f0aa49e1e94535cc;opendoar::304;304;"university of washington structural informatics group publications";OpenDOAR +dedup::d026ffbe47d26082f0aa49e1e94535cc;roar::1444;1444;"University of Washington: Structural Informatics Group Publications";roar +dedup::d077693c93602447e4535ed9414dc1db;re3data::r3d100010421;r3d100010421;"The Zebrafish Information Network";re3data +dedup::d077693c93602447e4535ed9414dc1db;https://fairsharing.org/10.25504/FAIRsharing.ybxnhg;2106;"The Zebrafish Information Network";FAIRsharing +dedup::d0abe934f4864c8cd611cb9e0ec67c40;roar::9904;9904;"Tokyo Ariake University of Medical and Health Sciences Academic Repository";roar +dedup::d0abe934f4864c8cd611cb9e0ec67c40;opendoar::3381;3381;"tokyo ariake university of medical and health sciences academic repository";OpenDOAR +dedup::d0dc5af947c9d4798d1407128e05d5a3;opendoar::3488;3488;"repositorio abierto de entomología aplicada de la seea";OpenDOAR +dedup::d0dc5af947c9d4798d1407128e05d5a3;roar::10226;10226;"Repositorio Abierto de Entomología Aplicada de la SEEA";roar +dedup::d0f741deadf05c603f2f7e90bde033df;https://fairsharing.org/10.25504/FAIRsharing.a95199;3198;"Inorganic Crystal Structure Database";FAIRsharing +dedup::d0f741deadf05c603f2f7e90bde033df;re3data::r3d100010085;r3d100010085;"Inorganic Crystal Structure Database";re3data +dedup::d11f4cfd1f7324afc574a11dc6c7b3d9;opendoar::3769;3769;"teikyo university of science academic repository";OpenDOAR +dedup::d11f4cfd1f7324afc574a11dc6c7b3d9;roar::11058;11058;"TEIKYO University of Science Academic Repository";roar +dedup::d169861d045b48cf2c0b65647fd8b53b;https://fairsharing.org/10.25504/FAIRsharing.04fcf5;3015;"EMDataResource";FAIRsharing +dedup::d169861d045b48cf2c0b65647fd8b53b;re3data::r3d100010882;r3d100010882;"EMDataResource";re3data +dedup::d1f44b07a2f22b0bd8f69d613e7b301d;opendoar::9400;9400;"monash university research portal";OpenDOAR +dedup::d1f44b07a2f22b0bd8f69d613e7b301d;roar::6724;6724;"Monash University Research Portal";roar +dedup::d1f63ba3ac7926e30f9b0590a0d73b4f;roar::5566;5566;"MOspace";roar +dedup::d1f63ba3ac7926e30f9b0590a0d73b4f;opendoar::1728;1728;"mospace";OpenDOAR +dedup::d1f63ba3ac7926e30f9b0590a0d73b4f;roar::2506;2506;"MOspace";roar +dedup::d1ffaf2005a535906099c0533de3cb47;roar::5774;5774;"Digital Commons @ Lingnan University";roar +dedup::d1ffaf2005a535906099c0533de3cb47;opendoar::2921;2921;"digital commons @ lingnan university";OpenDOAR +dedup::d2547e9f34de5b909abe0f5c810fb538;roar::14282;14282;"Rothamsted Repository";roar +dedup::d2547e9f34de5b909abe0f5c810fb538;opendoar::4225;4225;"rothamsted repository";OpenDOAR +dedup::d256c2afb49fa9cd1a9da54652519862;roar::11133;11133;"KABU Repository";roar +dedup::d256c2afb49fa9cd1a9da54652519862;opendoar::4455;4455;"kabu repository";OpenDOAR +dedup::d28e3bf62c46ba3bd09cde26e4d5d5d7;re3data::r3d100011699;r3d100011699;"Bolin Centre Database";re3data +dedup::d28e3bf62c46ba3bd09cde26e4d5d5d7;https://fairsharing.org/fairsharing_records/3230;3230;"Bolin Centre Database";FAIRsharing +dedup::d2e56b05c65e91beb7933f12a48dc7e0;opendoar::505;505;"isu electrical and computer engineering archives";OpenDOAR +dedup::d2e56b05c65e91beb7933f12a48dc7e0;roar::720;720;"ISU Electrical and Computer Engineering Archives";roar +dedup::d2f9cf5d016cdcedea02b897541f60bc;opendoar::3383;3383;"e knowledge center";OpenDOAR +dedup::d2f9cf5d016cdcedea02b897541f60bc;roar::10119;10119;"E-Knowledge Center";roar +dedup::d301c3994ff34feb9a6bb8d9b9dc5856;opendoar::3606;3606;"mcstor";OpenDOAR +dedup::d301c3994ff34feb9a6bb8d9b9dc5856;roar::10453;10453;"MCStor";roar +dedup::d306629cfdd752150816b74566aac957;opendoar::1049;1049;"kansai university repository";OpenDOAR +dedup::d306629cfdd752150816b74566aac957;roar::14971;14971;"Kansai University Repository";roar +dedup::d323f3ba232f213198b0e16f55586b54;https://fairsharing.org/fairsharing_records/3025;3025;"Tropospheric Emission Spectrometer";FAIRsharing +dedup::d323f3ba232f213198b0e16f55586b54;re3data::r3d100012494;r3d100012494;"Tropospheric Emission Spectrometer";re3data +dedup::d32875baa26cee0ab48815d2ead3d19e;opendoar::6547;6547;"tamu-cc repository";OpenDOAR +dedup::d32875baa26cee0ab48815d2ead3d19e;roar::16126;16126;"TAMU-CC Repository";roar +dedup::d334f23e9bc3ca178a6425b7d9980d0e;roar::15126;15126;"REPOSITORIO INSTITUCIONAL USDG";roar +dedup::d334f23e9bc3ca178a6425b7d9980d0e;opendoar::4823;4823;"repositorio institucional - usdg";OpenDOAR +dedup::d35211cc20e52d79659f385204477654;roar::3030;3030;"DSpace at IRRI";roar +dedup::d35211cc20e52d79659f385204477654;opendoar::1885;1885;"dspace at irri";OpenDOAR +dedup::d36ff4d341d26109ae5f694b813ce716;opendoar::3852;3852;"aab college repository";OpenDOAR +dedup::d36ff4d341d26109ae5f694b813ce716;roar::12298;12298;"AAB College Repository";roar +dedup::d3736200bd284f0883d8ce54dd26f7db;roar::8439;8439;"CSUSB ScholarWorks";roar +dedup::d3736200bd284f0883d8ce54dd26f7db;opendoar::3765;3765;"csusb scholarworks";OpenDOAR +dedup::d39db991396739836a45605dc18361f4;roar::16195;16195;"Repositorio Institucional de la Universidad Nacional de Ucayali";roar +dedup::d39db991396739836a45605dc18361f4;opendoar::4869;4869;"repositorio institucional - universidad nacional de ucayali";OpenDOAR +dedup::d3bd83cee60d2d53214b5ff531506e95;opendoar::3834;3834;"pusan national university hospital repository";OpenDOAR +dedup::d3bd83cee60d2d53214b5ff531506e95;roar::11160;11160;"Pusan National University Hospital Repository(부산대학교병원)";roar +dedup::d3c0aa31d01017f056815611a44b25c1;re3data::r3d100011241;r3d100011241;"Catalogue of Life";re3data +dedup::d3c0aa31d01017f056815611a44b25c1;https://fairsharing.org/10.25504/FAIRsharing.9b63c9;2889;"Catalogue of Life";FAIRsharing +dedup::d400951c3f26744153e6242977b011ef;roar::16108;16108;"Repositorio Universidad de Córdoba";roar +dedup::d400951c3f26744153e6242977b011ef;roar::15712;15712;"Repositorio Universidad de Cordoba";roar +dedup::d44539172f8d55fcca947c39817f1ebf;roar::8446;8446;"Marshall Digital Scholar";roar +dedup::d44539172f8d55fcca947c39817f1ebf;opendoar::2834;2834;"marshall digital scholar";OpenDOAR +dedup::d44c8d067ee02719879333cb3640f09f;opendoar::10329;10329;"scholars portal dataverse";OpenDOAR +dedup::d44c8d067ee02719879333cb3640f09f;re3data::r3d100010691;r3d100010691;"Scholars Portal Dataverse";re3data +dedup::d44c8d067ee02719879333cb3640f09f;https://fairsharing.org/10.25504/FAIRsharing.kwzydf;2542;"Scholars Portal Dataverse";FAIRsharing +dedup::d453c6ce3fa26a353eb605cffaa75fdc;opendoar::3224;3224;"uşak university institutional repository";OpenDOAR +dedup::d453c6ce3fa26a353eb605cffaa75fdc;roar::15684;15684;"Uşak University Institutional Repository";roar +dedup::d4803edbcc3efbaf2dabbb9f6cb657c6;roar::3287;3287;"Publikationer från KTH";roar +dedup::d4803edbcc3efbaf2dabbb9f6cb657c6;roar::2334;2334;"Publikationer från KTH";roar +dedup::d4803edbcc3efbaf2dabbb9f6cb657c6;opendoar::260;260;"publikationer från kth";OpenDOAR +dedup::d48723967144dd7b4c03d1292b3fc37b;roar::3551;3551;"UMM Institutional Repository";roar +dedup::d48723967144dd7b4c03d1292b3fc37b;opendoar::2040;2040;"umm institutional repository";OpenDOAR +dedup::d49835c0380ec6089007dfac287c73e0;roar::14623;14623;"Toyama Science Museum Repository";roar +dedup::d49835c0380ec6089007dfac287c73e0;opendoar::4533;4533;"toyama science museum repository";OpenDOAR +dedup::d4abb0f27c50a2bb468b327fd031dbb2;https://fairsharing.org/10.25504/FAIRsharing.b138b5;3278;"SourceForge";FAIRsharing +dedup::d4abb0f27c50a2bb468b327fd031dbb2;re3data::r3d100010167;r3d100010167;"SourceForge";re3data +dedup::d4c0ed463d07cbe95282527ac8ddb0e4;roar::7992;7992;"JCF Seek";roar +dedup::d4c0ed463d07cbe95282527ac8ddb0e4;opendoar::3005;3005;"jcf seek";OpenDOAR +dedup::d4cdedc36ac4cc83872ddb81b2325ea8;opendoar::1054;1054;"gifu university institutional repository";OpenDOAR +dedup::d4cdedc36ac4cc83872ddb81b2325ea8;roar::578;578;"Gifu University Institutional Repository";roar +dedup::d4dd36ee0790b9f005ac36e5908a2a91;opendoar::3063;3063;"spire - sciences po institutional repository";OpenDOAR +dedup::d4dd36ee0790b9f005ac36e5908a2a91;roar::8294;8294;"SPIRE - Sciences Po Institutional REpository";roar +dedup::d4fa0c7de60509c1c899da547f4ea5f4;roar::3330;3330;"King Saud University Repository";roar +dedup::d4fa0c7de60509c1c899da547f4ea5f4;opendoar::1424;1424;"king saud university repository";OpenDOAR +dedup::d50a33a37cad9eabf39b8b4b5b8e95de;opendoar::2121;2121;"archivo digital para la docencia y la investigacion";OpenDOAR +dedup::d50a33a37cad9eabf39b8b4b5b8e95de;roar::3754;3754;"Archivo Digital para la Docencia y la Investigación";roar +dedup::d5129af190456f75f4dd99830ef4ff1b;opendoar::2919;2919;"digitunito";OpenDOAR +dedup::d5129af190456f75f4dd99830ef4ff1b;roar::8044;8044;"DigitUniTO";roar +dedup::d53662594cd3c3483028a2309c90bda6;roar::8668;8668;"Digital Commons @ Center for the Blue Economy";roar +dedup::d53662594cd3c3483028a2309c90bda6;opendoar::8940;8940;"digital commons@center for the blue economy";OpenDOAR +dedup::d53668b381d49e80287fb402e47df802;roar::3580;3580;"Armenian Foundation Digital Library";roar +dedup::d53668b381d49e80287fb402e47df802;opendoar::2051;2051;"armenian foundation digital library";OpenDOAR +dedup::d568d5b3db22116c7ebb88686a3274d1;roar::1377;1377;"University of Delaware Library Institutional Repository";roar +dedup::d568d5b3db22116c7ebb88686a3274d1;opendoar::327;327;"university of delaware library institutional repository";OpenDOAR +dedup::d56f0f7482fc18f78678c9a71f6a7684;roar::7962;7962;"Electronic Institutional Repository Donbas State Technical University";roar +dedup::d56f0f7482fc18f78678c9a71f6a7684;opendoar::3013;3013;"electronic institutional repository donbas state technical university";OpenDOAR +dedup::d56f0f7482fc18f78678c9a71f6a7684;roar::8058;8058;"Electronic Institutional Repository Donbas State Technical University";roar +dedup::d579c3078f3f114be3e0b5b3e6f38fc6;roar::1144;1144;"SA Health Publications";roar +dedup::d579c3078f3f114be3e0b5b3e6f38fc6;opendoar::1315;1315;"sa health publications";OpenDOAR +dedup::d58d478718fdd5bda059fb47b3a8ff91;roar::5743;5743;"Korea Institute of International Economic Policy Repository";roar +dedup::d58d478718fdd5bda059fb47b3a8ff91;opendoar::1297;1297;"korea institute of international economic policy repository";OpenDOAR +dedup::d5b806b845b77269998f523a6b4e91a4;roar::14764;14764;"Daemen Digital Commons";roar +dedup::d5b806b845b77269998f523a6b4e91a4;opendoar::8994;8994;"daemen digital commons";OpenDOAR +dedup::d5ddc5f7756b1d111c0838a02cf2a58f;re3data::r3d100010327;r3d100010327;"RCSB Protein Data Bank";re3data +dedup::d5ddc5f7756b1d111c0838a02cf2a58f;https://fairsharing.org/10.25504/FAIRsharing.2t35ja;2044;"RCSB Protein Data Bank";FAIRsharing +dedup::d64bb944389727ddfff1c8bc2c089aa4;re3data::r3d100012458;r3d100012458;"GiardiaDB";re3data +dedup::d64bb944389727ddfff1c8bc2c089aa4;https://fairsharing.org/10.25504/FAIRsharing.e7skwg;1880;"GiardiaDB";FAIRsharing +dedup::d6615360e4d39090c884f712216d2027;roar::7097;7097;"SEALS Digital Commons";roar +dedup::d6615360e4d39090c884f712216d2027;opendoar::2872;2872;"seals digital commons";OpenDOAR +dedup::d6a0769cc20431e25aeadee81a5fed91;roar::2531;2531;"Welcome to Cardinal Scholar - Cardinal Scholar";roar +dedup::d6a0769cc20431e25aeadee81a5fed91;roar::5062;5062;"Welcome to Cardinal Scholar - Cardinal Scholar";roar +dedup::d6c9b775aa392bd1d835eebdd19e0740;opendoar::957;957;"african higher education research online";OpenDOAR +dedup::d6c9b775aa392bd1d835eebdd19e0740;roar::33;33;"African Higher Education Research Online";roar +dedup::d6e9f88bbbca3de8bbb3acd0bf2b2216;roar::5421;5421;"Swinburne Research Bank";roar +dedup::d6e9f88bbbca3de8bbb3acd0bf2b2216;opendoar::867;867;"swinburne research bank";OpenDOAR +dedup::d6ecea5b30b0e12a8c68e565c8b47219;opendoar::4082;4082;"karaganda state medical university repository";OpenDOAR +dedup::d6ecea5b30b0e12a8c68e565c8b47219;roar::13746;13746;"KARAGANDA STATE MEDICAL UNIVERSITY REPOSITORY";roar +dedup::d71e04ef312c3ba3032553ea58cfee3d;https://fairsharing.org/10.25504/FAIRsharing.5a3bc5;2650;"International Clinical Trials Registry Platform";FAIRsharing +dedup::d71e04ef312c3ba3032553ea58cfee3d;re3data::r3d100012586;r3d100012586;"International Clinical Trials Registry Platform";re3data +dedup::d76896a3efc8cbcc1d684e5c6fc83007;opendoar::2115;2115;"repositório institucional da universidade federal de santa catarina";OpenDOAR +dedup::d76896a3efc8cbcc1d684e5c6fc83007;roar::4562;4562;"Repositório Institucional da Universidade Federal de Santa Catarina";roar +dedup::d78e32f443422492c4b7ba085c2ccded;opendoar::240;240;"opus - volltextserver universität passau";OpenDOAR +dedup::d78e32f443422492c4b7ba085c2ccded;roar::977;977;"OPUS Volltextserver der Universität Passau";roar +dedup::d7bc828a2d9ad1470029270884777055;opendoar::752;752;"australasian digital theses program - university of tasmania -";OpenDOAR +dedup::d7bc828a2d9ad1470029270884777055;roar::2343;2343;"Australasian Digital Theses Program - University of Tasmania";roar +dedup::d7cc4b78f31174e553b3982d2b062a63;roar::4245;4245;"Scholars Commons @ Laurier | Research at Wilfrid Laurier University";roar +dedup::d7cc4b78f31174e553b3982d2b062a63;roar::4304;4304;"Scholars Commons @ Laurier | Research at Wilfrid Laurier University";roar +dedup::d7f06a7b3064a174f7c56617718420b9;https://fairsharing.org/fairsharing_records/2909;2909;"Mammalian Transcriptomic Database";FAIRsharing +dedup::d7f06a7b3064a174f7c56617718420b9;re3data::r3d100012214;r3d100012214;"Mammalian Transcriptomic Database";re3data +dedup::d8194e8801fa6eecf0e67efad001b8ab;opendoar::2418;2418;"athenaeum@uga";OpenDOAR +dedup::d8194e8801fa6eecf0e67efad001b8ab;roar::4754;4754;"Athenaeum@UGA";roar +dedup::d821725a7266f3c46f9a8a2522a8ad98;opendoar::10275;10275;"repositorio institucional digital";OpenDOAR +dedup::d821725a7266f3c46f9a8a2522a8ad98;opendoar::4788;4788;"repositorio institucional digital";OpenDOAR +dedup::d84bed2bc11d84654a0ab58c8bd2d6ff;roar::2525;2525;"Repositorio Digital Universidad Politécnica Salesiana";roar +dedup::d84bed2bc11d84654a0ab58c8bd2d6ff;opendoar::1737;1737;"repositorio digital universidad politécnica salesiana";OpenDOAR +dedup::d862257ddc8e5695a5cf9efb5bcf5987;opendoar::3651;3651;"acu research bank";OpenDOAR +dedup::d862257ddc8e5695a5cf9efb5bcf5987;re3data::r3d100012155;r3d100012155;"ACU Research Bank";re3data +dedup::d879ff4ff7bdc693920ae3f87dc1a311;roar::3975;3975;"Queen Mary Research Online";roar +dedup::d879ff4ff7bdc693920ae3f87dc1a311;opendoar::2185;2185;"queen mary research online";OpenDOAR +dedup::d8a49ed54bb93770af02564d9518b98d;re3data::r3d100012418;r3d100012418;"DART Data";re3data +dedup::d8a49ed54bb93770af02564d9518b98d;https://fairsharing.org/fairsharing_records/3046;3046;"DART Data";FAIRsharing +dedup::d8a5e8321fada1ed6858b283cb1b6f87;roar::15528;15528;"MACAU: Open Access Repository of Kiel University";roar +dedup::d8a5e8321fada1ed6858b283cb1b6f87;opendoar::660;660;"macau: open access repository of kiel university";OpenDOAR +dedup::d8e972d4e88a4a26c57da4fe88648dfa;re3data::r3d100011046;r3d100011046;"Golm Metabolome Database";re3data +dedup::d8e972d4e88a4a26c57da4fe88648dfa;https://fairsharing.org/10.25504/FAIRsharing.jykmkw;1729;"Golm Metabolome Database";FAIRsharing +dedup::d9012ca5a7ce7cf265eb7f1ff790daa8;opendoar::4783;4783;"repositorio institucional uch";OpenDOAR +dedup::d9012ca5a7ce7cf265eb7f1ff790daa8;roar::15073;15073;"Repositorio Institucional UCH";roar +dedup::d90341411c069f26fba2cc818c7f5bf8;roar::119;119;"Bergen Open Research Archive";roar +dedup::d90341411c069f26fba2cc818c7f5bf8;opendoar::24;24;"bergen open research archive";OpenDOAR +dedup::d908dd49944f0789ca6a4f7cfbbd1161;roar::805;805;"Lincoln University Research Archive";roar +dedup::d908dd49944f0789ca6a4f7cfbbd1161;opendoar::1428;1428;"lincoln university research archive";OpenDOAR +dedup::d92401a0c88bd92b3dea6226f028b53d;roar::15680;15680;"Angelo State University Digital Repository";roar +dedup::d92401a0c88bd92b3dea6226f028b53d;opendoar::4239;4239;"angelo state university digital repository";OpenDOAR +dedup::d935ae63eaf2afa746f48f6dded55a03;https://fairsharing.org/10.25504/FAIRsharing.lwW6a1;3302;"ioChem-BD";FAIRsharing +dedup::d935ae63eaf2afa746f48f6dded55a03;re3data::r3d100012553;r3d100012553;"ioChem-BD";re3data +dedup::d93dca73b6d6634fc887b70c1111635a;opendoar::3426;3426;"usiu africa digital repository";OpenDOAR +dedup::d93dca73b6d6634fc887b70c1111635a;roar::10365;10365;"USIU-Africa Digital Repository";roar +dedup::d93f21e33fa024898e55801d1f23eb03;roar::743;743;"JScholarship";roar +dedup::d93f21e33fa024898e55801d1f23eb03;opendoar::1167;1167;"jscholarship";OpenDOAR +dedup::d988f35ceb375073f2c6eb48b7e02f97;re3data::r3d100012064;r3d100012064;"University of Reading Research Data Archive";re3data +dedup::d988f35ceb375073f2c6eb48b7e02f97;opendoar::3757;3757;"university of reading research data archive";OpenDOAR +dedup::d991233248128f80352152ea5ba45cd7;roar::4762;4762;"FREDE G. MORENO - Google Scholar Citations";roar +dedup::d991233248128f80352152ea5ba45cd7;roar::4761;4761;"FREDE G. MORENO - Google Scholar Citations";roar +dedup::d9c88a4a2238d748832685242feef8e1;opendoar::936;936;"westminsterresearch";OpenDOAR +dedup::d9c88a4a2238d748832685242feef8e1;roar::1523;1523;"WestminsterResearch";roar +dedup::da0ed8ac09c91dd2c43d84ca5a4feeeb;roar::14356;14356;"SOAR@USA: Scholarship and Open Access Repository";roar +dedup::da0ed8ac09c91dd2c43d84ca5a4feeeb;roar::14616;14616;"SOAR@USA: Scholarship and Open Access Repository";roar +dedup::da0ed8ac09c91dd2c43d84ca5a4feeeb;opendoar::4518;4518;"soar@usa: scholarship and open access repository";OpenDOAR +dedup::da18ea1859fb894cef5ac0577a3af679;roar::1033;1033;"PTSL UKM Repository";roar +dedup::da18ea1859fb894cef5ac0577a3af679;opendoar::1194;1194;"ptsl ukm repository";OpenDOAR +dedup::da24ada2bf9da9740523908b5f8d5d28;opendoar::740;740;"university of southern queensland - australasian digital theses program";OpenDOAR +dedup::da24ada2bf9da9740523908b5f8d5d28;roar::3082;3082;"University of Southern Queensland - Australasian Digital Theses Program";roar +dedup::da519c29ff972af416d537a6e185b098;roar::4720;4720;"Humboldt Digital Scholar";roar +dedup::da519c29ff972af416d537a6e185b098;opendoar::176;176;"humboldt digital scholar";OpenDOAR +dedup::da574f2aaf7174a88c9a0430422d82ba;https://fairsharing.org/10.25504/FAIRsharing.2s4n8r;2047;"MEROPS";FAIRsharing +dedup::da574f2aaf7174a88c9a0430422d82ba;re3data::r3d100012783;r3d100012783;"MEROPS";re3data +dedup::da5e5cf0824fb86fcbd4c3798f700ab3;https://fairsharing.org/fairsharing_records/3327;3327;"Apollo - University of Cambridge Repository";FAIRsharing +dedup::da5e5cf0824fb86fcbd4c3798f700ab3;opendoar::109;109;"apollo - university of cambridge repository";OpenDOAR +dedup::da7842f16b281a310f12447efd5adf4c;roar::5606;5606;"Digital Window @ Vassar";roar +dedup::da7842f16b281a310f12447efd5adf4c;opendoar::2555;2555;"digital window @vassar";OpenDOAR +dedup::da7905915d0e766697462409fd95dc13;re3data::r3d100013658;r3d100013658;"SciELO Data";re3data +dedup::da7905915d0e766697462409fd95dc13;https://fairsharing.org/fairsharing_records/3575;3575;"SciELO Data";FAIRsharing +dedup::da80b407224b1dae4e79485aa4078ece;roar::4547;4547;"ArchivIA";roar +dedup::da80b407224b1dae4e79485aa4078ece;opendoar::2357;2357;"archivia";OpenDOAR +dedup::dadf5128f2e1bf96e303e46e6ea6e565;roar::635;635;"Hokkaido University collection of scholarly and academic papers";roar +dedup::dadf5128f2e1bf96e303e46e6ea6e565;opendoar::5483;5483;"hokkaido university collection of scholarly and academic papers";OpenDOAR +dedup::dadf5128f2e1bf96e303e46e6ea6e565;opendoar::172;172;"hokkaido university collection of scholarly and academic papers";OpenDOAR +dedup::db453b0a133112317c2fd82ad39edc4d;roar::5796;5796;"KARlsruhe Open Literature Archive";roar +dedup::db453b0a133112317c2fd82ad39edc4d;opendoar::2549;2549;"karlsruhe open literature archive";OpenDOAR +dedup::db4a8959f3a08754600303ca94d89dda;roar::4266;4266;"Institutional Repository of Ningbo Institute of Material Technology & Engineering";roar +dedup::db4a8959f3a08754600303ca94d89dda;roar::4379;4379;"Institutional Repository of Ningbo Institute of Material Technology & Engineering";roar +dedup::db4a8959f3a08754600303ca94d89dda;opendoar::2306;2306;"institutional repository of ningbo institute of material technology & engineering, cas";OpenDOAR +dedup::db678beab12db86c0c4cab46ecdd3821;roar::7338;7338;"Repository of Vinnytsya National Agrarian University";roar +dedup::db678beab12db86c0c4cab46ecdd3821;roar::7367;7367;"Repository of Vinnytsya National Agrarian University";roar +dedup::db678beab12db86c0c4cab46ecdd3821;opendoar::2858;2858;"repository of vinnytsya national agrarian university";OpenDOAR +dedup::dbb52b2c24a73aae8659bc56d0ba0a2d;roar::2997;2997;"Sistema Nou-Rau: Biblioteca Digital de Teses e Dissertações da UEL";roar +dedup::dbb52b2c24a73aae8659bc56d0ba0a2d;roar::4098;4098;"Sistema Nou-Rau: Biblioteca Digital de Teses e Dissertações da UEL";roar +dedup::dbc6be1c78dc52339ef3d8551f520734;opendoar::3922;3922;"colección digital cemiegeo";OpenDOAR +dedup::dbc6be1c78dc52339ef3d8551f520734;roar::12932;12932;"Colección Digital CeMIEGeo";roar +dedup::dc156932ffe2290a8b02057d54bfc8b4;opendoar::2792;2792;"eprints @mdrf";OpenDOAR +dedup::dc156932ffe2290a8b02057d54bfc8b4;roar::518;518;"Eprints@MDRF";roar +dedup::dc2c005aab0b69d047cc56b084532439;re3data::r3d100010917;r3d100010917;"Geoscience Australia";re3data +dedup::dc2c005aab0b69d047cc56b084532439;https://fairsharing.org/fairsharing_records/3162;3162;"Geoscience Australia";FAIRsharing +dedup::dc3dc87a34a090664c1cb2fa9bf32587;opendoar::2102;2102;"udospace";OpenDOAR +dedup::dc3dc87a34a090664c1cb2fa9bf32587;roar::3686;3686;"UDOspace";roar +dedup::dc5bad73319b0934241b24e05751eab8;roar::8839;8839;"Repositorio de la Universidad de Puerto Rico";roar +dedup::dc5bad73319b0934241b24e05751eab8;opendoar::1734;1734;"repositorio de la universidad de puerto rico";OpenDOAR +dedup::dc676735d8af4263a7ebb33993862d00;opendoar::684;684;"duke medicine digital repository";OpenDOAR +dedup::dc676735d8af4263a7ebb33993862d00;roar::2411;2411;"Duke Medicine Digital Repository";roar +dedup::dcaa329b666e4d5b35f37537c0e5eb93;roar::16720;16720;"Lanzhou University of Technology Institutional Repository ";roar +dedup::dcaa329b666e4d5b35f37537c0e5eb93;opendoar::9659;9659;"lanzhou university of technology institutional repository";OpenDOAR +dedup::dcbb63cb7536dc8c7bfc4542a58965ff;roar::10211;10211;"University of Innsbruck Digital Library";roar +dedup::dcbb63cb7536dc8c7bfc4542a58965ff;opendoar::3132;3132;"university of innsbruck digital library";OpenDOAR +dedup::dcc301ff4f8e96f8c5fd8abd38a0d866;roar::10109;10109;"Electronic library of Belarusian-Russian University";roar +dedup::dcc301ff4f8e96f8c5fd8abd38a0d866;opendoar::3462;3462;"electronic library of belarusian-russian university";OpenDOAR +dedup::dcf8f64c244d0beac7fc0d4b7192766d;roar::14013;14013;"Repository of Almaty Management University";roar +dedup::dcf8f64c244d0beac7fc0d4b7192766d;opendoar::3797;3797;"repository of almaty management university";OpenDOAR +dedup::dd02a27e758c0024a2486772026f244f;opendoar::1712;1712;"national university of tainan institutional repository";OpenDOAR +dedup::dd02a27e758c0024a2486772026f244f;roar::2532;2532;"National University of Tainan Institutional Repository";roar +dedup::dd126ededed005936681c514480fb2c8;roar::3591;3591;"Institucional Repository at the Federal University of Santa Catarina.";roar +dedup::dd126ededed005936681c514480fb2c8;roar::4695;4695;"Institucional Repository at the Federal University of Santa Catarina.";roar +dedup::dd23d1d0515c8acf067d7d7527d6a740;roar::13970;13970;"University of Mohaghegh Ardabili Scientific Repository";roar +dedup::dd23d1d0515c8acf067d7d7527d6a740;opendoar::4316;4316;"university of mohaghegh ardabili scientific repository";OpenDOAR +dedup::dd2c0dd2c4de21ccf196b0ca4db513bd;roar::1128;1128;"RMIT Research Repository";roar +dedup::dd2c0dd2c4de21ccf196b0ca4db513bd;opendoar::2399;2399;"rmit research repository";OpenDOAR +dedup::dd5b51aaff2ad64f6bdf042a9dbc172f;opendoar::428;428;"digital.maag";OpenDOAR +dedup::dd5b51aaff2ad64f6bdf042a9dbc172f;roar::3110;3110;"Digital.Maag";roar +dedup::dd5e707a630ad92ab4bb4e34033069f9;roar::137;137;"Biblioteka Cyfrowa Centralnego Ośrodka Doskonalenia Nauczycieli";roar +dedup::dd5e707a630ad92ab4bb4e34033069f9;opendoar::1611;1611;"biblioteka cyfrowa centralnego ośrodka doskonalenia nauczycieli";OpenDOAR +dedup::dd67ecf8ca69c0858d67f857fe47cce1;roar::1460;1460;"UPCommons - E-prints UPC";roar +dedup::dd67ecf8ca69c0858d67f857fe47cce1;opendoar::456;456;"upcommons - e-prints upc";OpenDOAR +dedup::dd722ed308188ead1de042c59086c544;opendoar::1032;1032;"spiral - imperial college digital repository";OpenDOAR +dedup::dd722ed308188ead1de042c59086c544;roar::658;658;"Spiral: Imperial College Digital Repository";roar +dedup::dd8523a1363f99e3abdc3fda900ac0e0;re3data::r3d100013423;r3d100013423;"Yareta";re3data +dedup::dd8523a1363f99e3abdc3fda900ac0e0;opendoar::10042;10042;"yareta";OpenDOAR +dedup::ddb17f65eff99cdb866de13ab2aa01b8;roar::5278;5278;"Bayerische StaatsBibliothek - Münchener Digitalisierungszentrum";roar +dedup::ddb17f65eff99cdb866de13ab2aa01b8;opendoar::649;649;"bayerische staatsbibliothek - münchener digitalisierungszentrum";OpenDOAR +dedup::ddb60d3b4be0d51755dbdebdfd5dad08;re3data::r3d100000044;r3d100000044;"DRYAD";re3data +dedup::ddb60d3b4be0d51755dbdebdfd5dad08;https://fairsharing.org/10.25504/FAIRsharing.wkggtx;1998;"Dryad";FAIRsharing +dedup::dddf86cd9759f443af11aeafad9233ca;roar::14199;14199;"Repositori STKIP PGRI Sumenep";roar +dedup::dddf86cd9759f443af11aeafad9233ca;opendoar::4425;4425;"repositori stkip pgri sumenep";OpenDOAR +dedup::ddfa7befe09d8f4d5bc96e3a4241bea9;roar::15154;15154;"Repositorio Institucional ULC";roar +dedup::ddfa7befe09d8f4d5bc96e3a4241bea9;opendoar::4789;4789;"repositorio institucional ulc";OpenDOAR +dedup::ddfd7f8143cb62a195802e06b5832cba;opendoar::1250;1250;"dspace@imsc";OpenDOAR +dedup::ddfd7f8143cb62a195802e06b5832cba;roar::4642;4642;"DSpace@IMSC";roar +dedup::de2418a59b9fc5f2b68ca5353fac0a54;roar::16759;16759;"Repositório Institucional da Universidade Federal de Minas Gerais";roar +dedup::de2418a59b9fc5f2b68ca5353fac0a54;opendoar::2907;2907;"repositório institucional da universidade federal de minas gerais";OpenDOAR +dedup::de62460c0bb0b504796768dd312c19f6;roar::5570;5570;"FIDES Digital Library";roar +dedup::de62460c0bb0b504796768dd312c19f6;roar::4126;4126;"FIDES Digital Library";roar +dedup::de62460c0bb0b504796768dd312c19f6;opendoar::2246;2246;"fides digital library";OpenDOAR +dedup::de69a6fea22206887f54b2bb95e1b23d;https://fairsharing.org/10.25504/FAIRsharing.fb172e;3141;"Comprehensive Large Array-data Stewardship System";FAIRsharing +dedup::de69a6fea22206887f54b2bb95e1b23d;re3data::r3d100010996;r3d100010996;"Comprehensive Large Array-data Stewardship System";re3data +dedup::de872392d513aac4018a5b1366ad611f;roar::1102;1102;"Research Archive @ Victoria University of Wellington";roar +dedup::de872392d513aac4018a5b1366ad611f;opendoar::989;989;"researcharchive at victoria university of wellington";OpenDOAR +dedup::de99612a0806dec4928484b37075dce4;roar::5752;5752;"Łódzka Regionalna Biblioteka Cyfrowa";roar +dedup::de99612a0806dec4928484b37075dce4;opendoar::2542;2542;"łódzka regionalna biblioteka cyfrowa";OpenDOAR +dedup::dea14a56d95e50259d8e7be71322f3dd;re3data::r3d100013352;r3d100013352;"Bilkent University Institutional Repository";re3data +dedup::dea14a56d95e50259d8e7be71322f3dd;opendoar::3533;3533;"bilkent university institutional repository";OpenDOAR +dedup::dec06db4760ae0a339382c127a5a33fb;re3data::r3d100011049;r3d100011049;"STOREDB";re3data +dedup::dec06db4760ae0a339382c127a5a33fb;https://fairsharing.org/10.25504/FAIRsharing.6h8d2r;2362;"STOREDB";FAIRsharing +dedup::dec100d3a48a8817169719d831b989e9;opendoar::1371;1371;"biblos-e archivo";OpenDOAR +dedup::dec100d3a48a8817169719d831b989e9;roar::145;145;"Biblos-e Archivo";roar +dedup::deec748cf59ceb5dee48153496ed4301;roar::5427;5427;"USC Digital Library";roar +dedup::deec748cf59ceb5dee48153496ed4301;opendoar::765;765;"usc digital library";OpenDOAR +dedup::df55b8916b6c0c58d35b735c86608e99;opendoar::226;226;"nottingham eprints";OpenDOAR +dedup::df55b8916b6c0c58d35b735c86608e99;roar::933;933;"Nottingham ePrints";roar +dedup::df6d816213c0d1574ac68592f0b9dbea;opendoar::861;861;"wsu libraries digital collections";OpenDOAR +dedup::df6d816213c0d1574ac68592f0b9dbea;roar::5281;5281;"WSU Libraries Digital Collections";roar +dedup::df776bd21d265bb6eff3034918c29196;https://fairsharing.org/10.25504/FAIRsharing.536d54;3308;"Integrated Interactions Database";FAIRsharing +dedup::df776bd21d265bb6eff3034918c29196;re3data::r3d100012380;r3d100012380;"Integrated Interactions Database";re3data +dedup::df8b3fb1c096c05cde6267ce5c61af9e;https://fairsharing.org/fairsharing_records/3218;3218;"AmeriFlux";FAIRsharing +dedup::df8b3fb1c096c05cde6267ce5c61af9e;re3data::r3d100013260;r3d100013260;"AmeriFlux";re3data +dedup::dfa3e2db58d851337e7adc7aa21de657;roar::8451;8451;"Trinity College Digital Repository";roar +dedup::dfa3e2db58d851337e7adc7aa21de657;opendoar::4757;4757;"trinity college digital repository";OpenDOAR +dedup::dfaedcd98cdfb05a959c5c1050c6d61e;https://fairsharing.org/10.25504/FAIRsharing.nhVgNw;3157;"Research Data Leeds Repository";FAIRsharing +dedup::dfaedcd98cdfb05a959c5c1050c6d61e;re3data::r3d100011945;r3d100011945;"Research Data Leeds Repository";re3data +dedup::dfb0c570e027288310f426699f740da6;re3data::r3d100010283;r3d100010283;"Gene Expression Omnibus";re3data +dedup::dfb0c570e027288310f426699f740da6;https://fairsharing.org/10.25504/FAIRsharing.5hc8vt;1975;"Gene Expression Omnibus";FAIRsharing +dedup::dfb7bedaf8bef105ea96cd5baf50986d;roar::6428;6428;"Smithsonian Research Online";roar +dedup::dfb7bedaf8bef105ea96cd5baf50986d;re3data::r3d100012274;r3d100012274;"Smithsonian Research Online";re3data +dedup::dfe2992c636402002dc351b50a1c297f;roar::1094;1094;"Repositório Institucional da ESEPF";roar +dedup::dfe2992c636402002dc351b50a1c297f;opendoar::1630;1630;"repositório institucional da esepf";OpenDOAR +dedup::dffc0fe459701f51f2688f5a98a26e4e;roar::183;183;"California State University Channel Islands Institutional Repository";roar +dedup::dffc0fe459701f51f2688f5a98a26e4e;opendoar::933;933;"california state university channel islands institutional repository";OpenDOAR +dedup::e01e6f0222a2dde8e01c89b348517f4d;opendoar::1459;1459;"digitalcommons@usu";OpenDOAR +dedup::e01e6f0222a2dde8e01c89b348517f4d;roar::348;348;"DigitalCommons@USU";roar +dedup::e02e269ed1fed216eb0015bd2613e9d9;opendoar::9436;9436;"ege university institutional repository";OpenDOAR +dedup::e02e269ed1fed216eb0015bd2613e9d9;roar::15433;15433;"Ege University Institutional Repository";roar +dedup::e06f8a69a2bf220f444ce074b8b35fe8;roar::5587;5587;"Publications from Karolinska Institutet";roar +dedup::e06f8a69a2bf220f444ce074b8b35fe8;roar::3214;3214;"Publications from Karolinska Institutet";roar +dedup::e09b2fc53bd12ba6d50afa546c46504d;opendoar::4776;4776;"repositorio institucional universidad católica del oriente";OpenDOAR +dedup::e09b2fc53bd12ba6d50afa546c46504d;roar::14800;14800;"Repositorio Institucional Universidad Catolica del Oriente";roar +dedup::e0cdf15affb0bd05ffc3e4b3e341ddbb;roar::7256;7256;"Repositorio Digital - IMARPE";roar +dedup::e0cdf15affb0bd05ffc3e4b3e341ddbb;opendoar::2682;2682;"repositorio digital imarpe";OpenDOAR +dedup::e0dcfe286e403006b7abc4363d475bfb;opendoar::3986;3986;"clarin service center of the zentrum sprache at the bbaw";OpenDOAR +dedup::e0dcfe286e403006b7abc4363d475bfb;re3data::r3d100012054;r3d100012054;"CLARIN service center of the Zentrum Sprache at the BBAW";re3data +dedup::e101e0af4ecc4083a348b078d1c2ab04;roar::5794;5794;"Livro Aberto";roar +dedup::e101e0af4ecc4083a348b078d1c2ab04;opendoar::2552;2552;"livro aberto";OpenDOAR +dedup::e10fdbd14e33f6828ba2984eed7fcb76;re3data::r3d100010918;r3d100010918;"Atlas of Living Australia";re3data +dedup::e10fdbd14e33f6828ba2984eed7fcb76;https://fairsharing.org/10.25504/FAIRsharing.2f66da;3258;"Atlas of Living Australia";FAIRsharing +dedup::e1376cef6d6df11d237ad81af5d3f5a7;roar::3060;3060;"HEART:Hyokyo Educational and Academic Resources for Teachers";roar +dedup::e1376cef6d6df11d237ad81af5d3f5a7;opendoar::1894;1894;"heart:hyokyo educational academic resources for teachers";OpenDOAR +dedup::e138cf2ac41d879187272c8771fa37d0;re3data::r3d100011296;r3d100011296;"NIST Atomic Spectra Database";re3data +dedup::e138cf2ac41d879187272c8771fa37d0;https://fairsharing.org/10.25504/FAIRsharing.401958;2621;"NIST Atomic Spectra Database";FAIRsharing +dedup::e13c5db3c974070f8bbf8a6dbfd7c87d;opendoar::460;460;"digital collections";OpenDOAR +dedup::e13c5db3c974070f8bbf8a6dbfd7c87d;roar::5429;5429;"Digital Collections";roar +dedup::e146d91fe8926797d10c50fca745ba11;roar::1017;1017;"Policy Documentation Center";roar +dedup::e146d91fe8926797d10c50fca745ba11;opendoar::531;531;"policy documentation center";OpenDOAR +dedup::e14b29dd88982bd9c929e1073d9e6b8f;re3data::r3d100011311;r3d100011311;"Taiwan Forestry Research Institute Data Catalog";re3data +dedup::e14b29dd88982bd9c929e1073d9e6b8f;https://fairsharing.org/fairsharing_records/3229;3229;"Taiwan Forestry Research Institute Data Catalog";FAIRsharing +dedup::e14e9428a73c96e4da85886bb6448ea2;opendoar::2316;2316;"institutional repository of institute of automation, cas";OpenDOAR +dedup::e14e9428a73c96e4da85886bb6448ea2;roar::4272;4272;"Institutional Repository of Institute of Automation";roar +dedup::e14f3fa219ea619b414a41841eb305ec;https://fairsharing.org/10.25504/FAIRsharing.q1fdkc;1853;"Integrated relational Enzyme database";FAIRsharing +dedup::e14f3fa219ea619b414a41841eb305ec;re3data::r3d100010803;r3d100010803;"Integrated Relational Enzyme database";re3data +dedup::e16945a2ddb28840de2850b073f3a8a8;re3data::r3d100010228;r3d100010228;"Ensembl";re3data +dedup::e16945a2ddb28840de2850b073f3a8a8;https://fairsharing.org/10.25504/FAIRsharing.fx0mw7;1867;"Ensembl";FAIRsharing +dedup::e16dc320d4fc3bdb73e8394cdedb4b64;roar::12796;12796;"Repositorio académico UTEM";roar +dedup::e16dc320d4fc3bdb73e8394cdedb4b64;opendoar::3895;3895;"repositorio académico utem";OpenDOAR +dedup::e175b5b2281ea56ab7152d3c065ebd45;https://fairsharing.org/fairsharing_records/3153;3153;"Canadian Biodiversity Information Facility";FAIRsharing +dedup::e175b5b2281ea56ab7152d3c065ebd45;re3data::r3d100010909;r3d100010909;"Canadian Biodiversity Information Facility";re3data +dedup::e17b174a1731b7ef6896fa5545ec21dd;roar::1106;1106;"Research Repository UCD";roar +dedup::e17b174a1731b7ef6896fa5545ec21dd;opendoar::1061;1061;"research repository ucd";OpenDOAR +dedup::e19c7385c076480944ae76e5f55a40b8;opendoar::9752;9752;"european xfel publication database";OpenDOAR +dedup::e19c7385c076480944ae76e5f55a40b8;roar::16367;16367;"European XFEL Publication Database";roar +dedup::e1c400e97a3c19cd2dfc4f347b855348;opendoar::1235;1235;"macquarie university researchonline";OpenDOAR +dedup::e1c400e97a3c19cd2dfc4f347b855348;roar::2417;2417;"Macquarie University Research Online";roar +dedup::e1c400e97a3c19cd2dfc4f347b855348;roar::820;820;"Macquarie University ResearchOnline";roar +dedup::e1c8bdc9beed54345a138e60a1a6cebc;roar::2872;2872;"University of Macau Institutional Repository";roar +dedup::e1c8bdc9beed54345a138e60a1a6cebc;opendoar::1851;1851;"university of macau institutional repository";OpenDOAR +dedup::e1c8bdc9beed54345a138e60a1a6cebc;roar::5473;5473;"University of Macau Institutional Repository";roar +dedup::e1d7906a75f1c3315bcc3cc4aa3c20f0;roar::612;612;"CrossAsia Repository";roar +dedup::e1d7906a75f1c3315bcc3cc4aa3c20f0;opendoar::880;880;"crossasia-repository";OpenDOAR +dedup::e1eb0ab343f911d68b9247a23ff47a7a;roar::4721;4721;"Global Performing Arts Database";roar +dedup::e1eb0ab343f911d68b9247a23ff47a7a;opendoar::626;626;"global performing arts database";OpenDOAR +dedup::e209fa115d8776f4fc6f1a056c2e3b74;opendoar::4166;4166;"image data resource";OpenDOAR +dedup::e209fa115d8776f4fc6f1a056c2e3b74;https://fairsharing.org/10.25504/FAIRsharing.6wf1zw;2303;"Image Data Resource";FAIRsharing +dedup::e209fa115d8776f4fc6f1a056c2e3b74;re3data::r3d100012435;r3d100012435;"Image Data Resource";re3data +dedup::e23545ef5a1a6b845a5496d0e331369a;opendoar::3454;3454;"kovsiescholar";OpenDOAR +dedup::e23545ef5a1a6b845a5496d0e331369a;roar::11311;11311;"KovsieScholar";roar +dedup::e28b5d7c9619b9153f36c264c816ebfb;roar::1313;1313;"tuprints";roar +dedup::e28b5d7c9619b9153f36c264c816ebfb;opendoar::1374;1374;"tuprints";OpenDOAR +dedup::e2bef20bf9a3b8369558a6ff84595109;opendoar::1831;1831;"national university of kashsiung repository";OpenDOAR +dedup::e2bef20bf9a3b8369558a6ff84595109;roar::2821;2821;"National University of Kashsiung Repository";roar +dedup::e2cbc5e52527d5e59310f8e44112b8c7;opendoar::2320;2320;"digimom";OpenDOAR +dedup::e2cbc5e52527d5e59310f8e44112b8c7;roar::4956;4956;"DIGIMOM";roar +dedup::e2d20296abea7fa8118682d0fe904c59;opendoar::3748;3748;"kazan federal university digital repository";OpenDOAR +dedup::e2d20296abea7fa8118682d0fe904c59;roar::11312;11312;"Kazan Federal University Digital Repository";roar +dedup::e303fbe5f087e203475595ab02766840;opendoar::2217;2217;"uplace";OpenDOAR +dedup::e303fbe5f087e203475595ab02766840;roar::4056;4056;"UPLACE";roar +dedup::e32d1f40ae31f7dbfdb8b7f684cf929b;roar::12539;12539;"Kobe Tokiwa University Institutional Repository";roar +dedup::e32d1f40ae31f7dbfdb8b7f684cf929b;opendoar::3976;3976;"kobe tokiwa university institutional repository";OpenDOAR +dedup::e353b87f291a84bb75cc2d849ec86fde;roar::10663;10663;"Repository of University of Nova Gorica";roar +dedup::e353b87f291a84bb75cc2d849ec86fde;opendoar::3507;3507;"repository of university of nova gorica";OpenDOAR +dedup::e359345a44e2214a38857fb84645a6e8;opendoar::2789;2789;"eastern mediterranean university institutional repository (emu i-rep)";OpenDOAR +dedup::e359345a44e2214a38857fb84645a6e8;roar::6503;6503;"Eastern Mediterranean University Institutional Repository (EMU I-REP)";roar +dedup::e36cfeabee200ed42c046f6081b62b7b;roar::3387;3387;"Welcome to MB IPB Repository - MB IPB Repository";roar +dedup::e36cfeabee200ed42c046f6081b62b7b;roar::4075;4075;"Welcome to MB IPB Repository - MB IPB Repository";roar +dedup::e39903e09e1d2fc42ce4abbf71a9fc87;roar::5528;5528;"Vtext Digital Repository";roar +dedup::e39903e09e1d2fc42ce4abbf71a9fc87;opendoar::1637;1637;"vtext digital repository";OpenDOAR +dedup::e39903e09e1d2fc42ce4abbf71a9fc87;roar::1492;1492;"Vtext Digital Repository";roar +dedup::e3a843cc1cb84c7a8734c8b4d0e3a25d;roar::2822;2822;"Mingdao University Institutional Repository (明道大學機構典藏)";roar +dedup::e3a843cc1cb84c7a8734c8b4d0e3a25d;opendoar::1835;1835;"mingdao university institutional repository";OpenDOAR +dedup::e3b91207f4d6c930f7917e6a595eeb97;https://fairsharing.org/10.25504/FAIRsharing.dff3ef;2649;"Electron Microscopy Public Image Archive";FAIRsharing +dedup::e3b91207f4d6c930f7917e6a595eeb97;re3data::r3d100012356;r3d100012356;"Electron Microscopy Public Image Archive";re3data +dedup::e3fe96c7184e19804b7398f2ffc7fcdf;roar::4264;4264;"IDS OpenDocs";roar +dedup::e3fe96c7184e19804b7398f2ffc7fcdf;opendoar::2319;2319;"ids opendocs";OpenDOAR +dedup::e43c3d39c160c479d94055b9221e156b;https://fairsharing.org/fairsharing_records/3321;3321;"Radiocarbon Palaeolithic Europe Database";FAIRsharing +dedup::e43c3d39c160c479d94055b9221e156b;re3data::r3d100013648;r3d100013648;"Radiocarbon Palaeolithic Europe Database";re3data +dedup::e45249bac8b50003fa7b18405529fd65;opendoar::1662;1662;"aspeckt dspace";OpenDOAR +dedup::e45249bac8b50003fa7b18405529fd65;roar::4681;4681;"ASPECKT DSpace";roar +dedup::e47933da668e0271170f73516c900d8e;opendoar::2275;2275;"pacific archive of digital data for learning and education";OpenDOAR +dedup::e47933da668e0271170f73516c900d8e;roar::4191;4191;"Pacific Archive of Digital Data for Learning and Education";roar +dedup::e48260f516f7804d904b0059cbd0d94e;opendoar::1312;1312;"usc research bank - university of the sunshine coast";OpenDOAR +dedup::e48260f516f7804d904b0059cbd0d94e;roar::7767;7767;"USC Research Bank - University of the Sunshine Coast";roar +dedup::e48baaf10f998f4fea4760e4186869a2;re3data::r3d100013524;r3d100013524;"SMU Research Data Repository";re3data +dedup::e48baaf10f998f4fea4760e4186869a2;opendoar::10081;10081;"smu research data repository";OpenDOAR +dedup::e495de4c3d30746c47d0fa26d1c70fc6;roar::2332;2332;"Publikationer från Stockholms universitet";roar +dedup::e495de4c3d30746c47d0fa26d1c70fc6;opendoar::263;263;"publikationer från stockholms universitet";OpenDOAR +dedup::e499a1315447056335e0bc90bbb5bb2f;opendoar::1236;1236;"radboud repository";OpenDOAR +dedup::e499a1315447056335e0bc90bbb5bb2f;roar::5411;5411;"Radboud Repository";roar +dedup::e504d8d556bcd7a2c233a8509a0cb909;roar::16130;16130;"University of Houston Institutional Repository";roar +dedup::e504d8d556bcd7a2c233a8509a0cb909;opendoar::4228;4228;"university of houston institutional repository";OpenDOAR +dedup::e51764bc4774ec3fbe38d20bdaaf283e;roar::1458;1458;"UNTHSC Scholarly Repository";roar +dedup::e51764bc4774ec3fbe38d20bdaaf283e;opendoar::1554;1554;"unthsc scholarly repository";OpenDOAR +dedup::e519865de6bb713e3d60ebba60558dee;opendoar::1827;1827;"national united university institutional repository";OpenDOAR +dedup::e519865de6bb713e3d60ebba60558dee;roar::2808;2808;"National United University Institutional Repository";roar +dedup::e5dd9918a0b14d90906e394ddcf8139f;roar::1416;1416;"University of Queensland ePrint Archive";roar +dedup::e5dd9918a0b14d90906e394ddcf8139f;opendoar::345;345;"university of queensland eprint archive";OpenDOAR +dedup::e617b3c503e92e71e3fb43fa7386676d;roar::4626;4626;"NASA Technical Reports Server";roar +dedup::e617b3c503e92e71e3fb43fa7386676d;opendoar::2385;2385;"nasa technical reports server";OpenDOAR +dedup::e617b3c503e92e71e3fb43fa7386676d;roar::5480;5480;"NASA Technical Reports Server";roar +dedup::e617b3c503e92e71e3fb43fa7386676d;roar::4684;4684;"NASA Technical Reports Server";roar +dedup::e61ee2c74068768dcff7d637d75919d6;re3data::r3d100012971;r3d100012971;"Region of Waterloo - Open Data";re3data +dedup::e61ee2c74068768dcff7d637d75919d6;https://fairsharing.org/fairsharing_records/3071;3071;"Region of Waterloo - Open Data";FAIRsharing +dedup::e67a40b57156721f4db911365a886c65;roar::8168;8168;"Electronic National University Odessa Law Academy Institutional Repository";roar +dedup::e67a40b57156721f4db911365a886c65;opendoar::3036;3036;"electronic national university odessa law academy institutional repository";OpenDOAR +dedup::e67d72501e8509ddc789356625a597da;roar::621;621;"Helvia: Repositorio Institucional de la Universidad de Córdoba";roar +dedup::e67d72501e8509ddc789356625a597da;opendoar::1412;1412;"helvia. repositorio institucional de la universidad de córdoba";OpenDOAR +dedup::e6e0cbfb05fdd9d59a69623efc018b46;opendoar::1651;1651;"recherche uo research";OpenDOAR +dedup::e6e0cbfb05fdd9d59a69623efc018b46;roar::1057;1057;"Recherche uO Research";roar +dedup::e6e3f80a9038fae7c0d92b73fbd9d448;roar::2431;2431;"Digital Library of the University of Pardubice";roar +dedup::e6e3f80a9038fae7c0d92b73fbd9d448;opendoar::1512;1512;"digital library of the university of pardubice";OpenDOAR +dedup::e6e63d9c7e421ed7f49df7309776de64;opendoar::2829;2829;"scholarbank@nus";OpenDOAR +dedup::e6e63d9c7e421ed7f49df7309776de64;re3data::r3d100012564;r3d100012564;"ScholarBank@NUS";re3data +dedup::e74e99e368bb337bd7b67ae1ccf5750f;roar::11257;11257;"Smith Scholarworks";roar +dedup::e74e99e368bb337bd7b67ae1ccf5750f;roar::11295;11295;"Smith ScholarWorks";roar +dedup::e75eb57d16e48fb3e60044c8836f6fe4;roar::3115;3115;"Biblioteca Virtual de Andalucía";roar +dedup::e75eb57d16e48fb3e60044c8836f6fe4;roar::5437;5437;"Biblioteca Virtual de Andalucía";roar +dedup::e76e557dd690b735d8b611d325a5683b;opendoar::2323;2323;"institutional repository of chengdu institute of biology, cas";OpenDOAR +dedup::e76e557dd690b735d8b611d325a5683b;roar::4352;4352;" Institutional Repository of Chengdu Institute of Biology";roar +dedup::e76e557dd690b735d8b611d325a5683b;roar::4353;4353;"Institutional Repository of Chengdu Institute of Biology";roar +dedup::e7788f80b67124e9f98b9afe969f53d4;roar::237;237;"ChesterRep";roar +dedup::e7788f80b67124e9f98b9afe969f53d4;opendoar::920;920;"chesterrep";OpenDOAR +dedup::e7a8b7788e9cc7a975f87d074149c190;roar::14836;14836;"Kadir Has University Academic Repository";roar +dedup::e7a8b7788e9cc7a975f87d074149c190;opendoar::3112;3112;"kadir has university academic repository";OpenDOAR +dedup::e7bec4e69d5564ecacc819db5286acf0;re3data::r3d100010543;r3d100010543;"Protein Lysine Modification Database";re3data +dedup::e7bec4e69d5564ecacc819db5286acf0;https://fairsharing.org/10.25504/FAIRsharing.7b2e3b;3340;"Protein Lysine Modifications Database";FAIRsharing +dedup::e7f30e9b9bd37f93d8436d9eae8f749a;opendoar::2583;2583;"viurrspace";OpenDOAR +dedup::e7f30e9b9bd37f93d8436d9eae8f749a;opendoar::6048;6048;"viurrspace";OpenDOAR +dedup::e7fa9508b82d1f03e0226aa86dee6bba;https://fairsharing.org/10.25504/FAIRsharing.RJ3PDJ;3075;"AUSSDA Dataverse";FAIRsharing +dedup::e7fa9508b82d1f03e0226aa86dee6bba;re3data::r3d100010483;r3d100010483;"AUSSDA Dataverse";re3data +dedup::e7fdfb1ee2d9e92549d760dd48192581;https://fairsharing.org/10.25504/FAIRsharing.z0ea6a;1574;"doRiNA";FAIRsharing +dedup::e7fdfb1ee2d9e92549d760dd48192581;re3data::r3d100011087;r3d100011087;"doRiNA";re3data +dedup::e820cdce3e2f690f4e6f1476515f333e;opendoar::3032;3032;"rediumh";OpenDOAR +dedup::e820cdce3e2f690f4e6f1476515f333e;opendoar::4575;4575;"rediumh";OpenDOAR +dedup::e8a077e12ad6ba008936888e4c01fb95;roar::7858;7858;"Welcome to UG Repository - UG Repository";roar +dedup::e8a077e12ad6ba008936888e4c01fb95;roar::7996;7996;"Welcome to UG Repository - UG Repository";roar +dedup::e8b91e88ab852708d4f1d42000d601e8;roar::2407;2407;"Illinois Digital Environment for Access to Learning and Scholarship Repository";roar +dedup::e8b91e88ab852708d4f1d42000d601e8;opendoar::487;487;"illinois digital environment for access to learning and scholarship repository";OpenDOAR +dedup::e8ba44edda5eafb1615bb1e8320f174c;opendoar::2878;2878;"institute of volcanology and seismology feb ras repository";OpenDOAR +dedup::e8ba44edda5eafb1615bb1e8320f174c;roar::6707;6707;"Institute of Volcanology and Seismology FEB RAS Repository";roar +dedup::e8c72e32cc9e0d2606f8a50d865edf91;opendoar::1700;1700;"repositorio de objetos de docencia e investigación de la universidad de cádiz";OpenDOAR +dedup::e8c72e32cc9e0d2606f8a50d865edf91;roar::5204;5204;"Repositorio de Objetos de Docencia e Investigación de la Universidad de Cádiz";roar +dedup::e8e05053929176d504b10119150bd0a7;roar::1058;1058;"Recursos de Investigación de la Alhambra";roar +dedup::e8e05053929176d504b10119150bd0a7;opendoar::1655;1655;"recursos de investigación de la alhambra";OpenDOAR +dedup::e8f6f45a7f8eccc3a02d295125a0aab2;roar::2856;2856;"Portal de Promoción y Difusión Pública del Conocimiento Académico y Científico";roar +dedup::e8f6f45a7f8eccc3a02d295125a0aab2;roar::3202;3202;"Portal de Promoción y Difusión Pública del Conocimiento Académico y Científico";roar +dedup::e92374693bbd9c330c456d1a8b9a58e0;https://fairsharing.org/10.25504/FAIRsharing.pS2p8c;2864;"UNC Dataverse";FAIRsharing +dedup::e92374693bbd9c330c456d1a8b9a58e0;opendoar::2731;2731;"unc dataverse";OpenDOAR +dedup::e92374693bbd9c330c456d1a8b9a58e0;re3data::r3d100000005;r3d100000005;"UNC Dataverse";re3data +dedup::e9250242935d1e427db7ff2d3c209836;roar::10645;10645;"Repository of the University of Ljubljana";roar +dedup::e9250242935d1e427db7ff2d3c209836;opendoar::3505;3505;"repository of the university of ljubljana";OpenDOAR +dedup::e9384e4557083eab543f216303a5781e;roar::264;264;"Corvinus University of Budapest - Ph.D. dissertations";roar +dedup::e9384e4557083eab543f216303a5781e;opendoar::1098;1098;"corvinus university of budapest phd dissertations";OpenDOAR +dedup::e98bccf651cad3a589df9e1aa15c9825;roar::8473;8473;"Digital Commons @ West Chester University";roar +dedup::e98bccf651cad3a589df9e1aa15c9825;opendoar::8945;8945;"digital commons @ west chester university";OpenDOAR +dedup::e9cebc113656c022ccd83927a63b9e0b;re3data::r3d100011326;r3d100011326;"GEOFON";re3data +dedup::e9cebc113656c022ccd83927a63b9e0b;https://fairsharing.org/10.25504/FAIRsharing.J3YyP9;3213;"GEOFON";FAIRsharing +dedup::ea0fbcf3f1f9e74f0751340abef0a474;roar::617;617;"HELIN Digital Commons";roar +dedup::ea0fbcf3f1f9e74f0751340abef0a474;opendoar::483;483;"helin digital commons";OpenDOAR +dedup::ea127f5217bea254ec153e324c0e03f7;opendoar::1922;1922;"jubilothèque";OpenDOAR +dedup::ea127f5217bea254ec153e324c0e03f7;roar::3149;3149;"Jubilothèque";roar +dedup::ea32c5f728766104f8668370f7cb1453;opendoar::2554;2554;"imt e-theses";OpenDOAR +dedup::ea32c5f728766104f8668370f7cb1453;roar::5791;5791;"IMT E-Theses";roar +dedup::ea3e086163809528366d0e0eca521575;re3data::r3d100012724;r3d100012724;"BacMap";re3data +dedup::ea3e086163809528366d0e0eca521575;https://fairsharing.org/10.25504/FAIRsharing.z6rbe3;1655;"BacMap";FAIRsharing +dedup::ea505a03ab6aad45b80d312329b8ef61;opendoar::1766;1766;"jamstec repository";OpenDOAR +dedup::ea505a03ab6aad45b80d312329b8ef61;roar::2599;2599;"JAMSTEC Repository";roar +dedup::ea51e228de9050581a06c1bbaa5ee321;roar::3454;3454;"Carolina Digital Repository";roar +dedup::ea51e228de9050581a06c1bbaa5ee321;opendoar::2021;2021;"carolina digital repository";OpenDOAR +dedup::ea6c69aa78cc7501099d62ff9efd69ea;opendoar::6784;6784;"scholarly commons at boston university school of law";OpenDOAR +dedup::ea6c69aa78cc7501099d62ff9efd69ea;roar::13686;13686;"Scholarly Commons at Boston University School of Law";roar +dedup::ea7f38fda99388c686a222aae40d027a;re3data::r3d100011147;r3d100011147;"Forest Service Research Data Archive";re3data +dedup::ea7f38fda99388c686a222aae40d027a;https://fairsharing.org/10.25504/FAIRsharing.NzKTvN;2601;"Forest Service Research Data Archive";FAIRsharing +dedup::ea84935bf91889ec25c75481cbe77229;re3data::r3d100012574;r3d100012574;"Energy Data eXchange";re3data +dedup::ea84935bf91889ec25c75481cbe77229;https://fairsharing.org/10.25504/FAIRsharing.ltYWUS;3147;"Energy Data eXchange";FAIRsharing +dedup::ead4761f48a0f6a0692e59eb5d8edf10;opendoar::10037;10037;"edata: the stfc research data repository";OpenDOAR +dedup::ead4761f48a0f6a0692e59eb5d8edf10;re3data::r3d100013215;r3d100013215;"eData: the STFC Research Data Repository";re3data +dedup::eb0dd37cbe8e0d77dd3a0a9b60d79255;re3data::r3d100012621;r3d100012621;"Database of Individual Seismogenic Sources";re3data +dedup::eb0dd37cbe8e0d77dd3a0a9b60d79255;https://fairsharing.org/fairsharing_records/3231;3231;"Database of Individual Seismogenic Sources";FAIRsharing +dedup::eb1eee12b0108144662ec7606f17999e;opendoar::913;913;"naturalis publications";OpenDOAR +dedup::eb1eee12b0108144662ec7606f17999e;roar::910;910;"Naturalis Publications";roar +dedup::eb26c8a2fb107ee3005f02a1fba4df47;opendoar::447;447;"dspace at bromley college";OpenDOAR +dedup::eb26c8a2fb107ee3005f02a1fba4df47;roar::389;389;"DSpace at Bromley College";roar +dedup::eb34ae00dfb91b424642dda1811b29b3;re3data::r3d100013304;r3d100013304;"European Centre for Disease Prevention and Control";re3data +dedup::eb34ae00dfb91b424642dda1811b29b3;https://fairsharing.org/10.25504/FAIRsharing.7ceb60;2950;"European Centre for Disease Prevention and Control";FAIRsharing +dedup::eb522c1f21c759b56a838929c3983460;re3data::r3d100010735;r3d100010735;"Rolling Deck to Repository";re3data +dedup::eb522c1f21c759b56a838929c3983460;https://fairsharing.org/10.25504/FAIRsharing.ZEbjok;3233;"Rolling Deck to Repository";FAIRsharing +dedup::eb666190d244381ceffe7f6b56be3b5b;roar::3995;3995;"Universidad Técnica de Manabí";roar +dedup::eb666190d244381ceffe7f6b56be3b5b;opendoar::2196;2196;"universidad técnica de manabí";OpenDOAR +dedup::eb8a8882f53a38ddf82ddc8f34bb5116;opendoar::2187;2187;"biblioteca virtual unl";OpenDOAR +dedup::eb8a8882f53a38ddf82ddc8f34bb5116;roar::3976;3976;"Biblioteca Virtual UNL";roar +dedup::eb92209f73a2ecf9f5f1117ca6137088;roar::3553;3553;"Repositório da Universidade Nova de Lisboa";roar +dedup::eb92209f73a2ecf9f5f1117ca6137088;opendoar::1437;1437;"repositório da universidade nova de lisboa";OpenDOAR +dedup::ebaae3c6e2990c80e7dae6f1a227520a;re3data::r3d100000038;r3d100000038;"Australian Antarctic Data Centre";re3data +dedup::ebaae3c6e2990c80e7dae6f1a227520a;https://fairsharing.org/10.25504/FAIRsharing.t1tvm9;2494;"Australian Antarctic Data Centre";FAIRsharing +dedup::ebc919913fa52b49dc5c1de677e563d2;opendoar::1844;1844;"eprints@iari";OpenDOAR +dedup::ebc919913fa52b49dc5c1de677e563d2;roar::514;514;"Eprints@IARI";roar +dedup::ebf3c9b541400647fb10cd6db2560f99;roar::11291;11291;"Research Institute for Humanity and Nature Repository";roar +dedup::ebf3c9b541400647fb10cd6db2560f99;opendoar::3772;3772;"research institute for humanity and nature repository";OpenDOAR +dedup::ec692294074b65af0c465b719c1f748d;opendoar::10154;10154;"scholarly works @ shsu";OpenDOAR +dedup::ec692294074b65af0c465b719c1f748d;roar::16049;16049;"Scholarly Works @ SHSU";roar +dedup::ec76aa11a37a4c5a68c7d5657a45df4b;opendoar::89;89;"digital library of the commons";OpenDOAR +dedup::ec76aa11a37a4c5a68c7d5657a45df4b;roar::314;314;"Digital Library of the Commons";roar +dedup::ec926af3fedd761252af471b0aa74d3b;opendoar::3893;3893;"repository universitas medan area";OpenDOAR +dedup::ec926af3fedd761252af471b0aa74d3b;https://fairsharing.org/10.25504/FAIRsharing.9iYFcl;3041;"Repository Universitas Medan Area";FAIRsharing +dedup::ec926af3fedd761252af471b0aa74d3b;roar::12885;12885;"REPOSITORY UNIVERSITAS MEDAN AREA";roar +dedup::ec99b3d540f52c59fbc3f787abd8a02e;https://fairsharing.org/10.25504/FAIRsharing.denvnv;2560;"DataverseNL";FAIRsharing +dedup::ec99b3d540f52c59fbc3f787abd8a02e;opendoar::4194;4194;"dataversenl";OpenDOAR +dedup::ec99b3d540f52c59fbc3f787abd8a02e;re3data::r3d100011201;r3d100011201;"DataverseNL";re3data +dedup::ec9c6e2519a0edfaf76d3b7a01906ecb;opendoar::9914;9914;"hokkai-gakuen organization of knowledge ubiquitous through gaining archives";OpenDOAR +dedup::ec9c6e2519a0edfaf76d3b7a01906ecb;opendoar::9864;9864;"hokkai-gakuen organization of knowledge ubiquitous through gaining archives";OpenDOAR +dedup::eca0f6952944e302de9f97d34600739d;roar::7908;7908;"Institutional Digital Repository - Naif Arab University for Security Sciences";roar +dedup::eca0f6952944e302de9f97d34600739d;opendoar::2968;2968;"institutional digital repository for naif arab university for security sciences";OpenDOAR +dedup::eca0f6952944e302de9f97d34600739d;roar::10659;10659;"Institutional Digital Repository - Naif Arab University for Security Sciences المستودع الرقمي المؤسسي لجامعة نايف العربية للعلوم الأمنية | ";roar +dedup::ecc3fd93a013fd9e808ef588f32f0c3a;opendoar::1653;1653;"bibliothèque numérique de lenssib";OpenDOAR +dedup::ecc3fd93a013fd9e808ef588f32f0c3a;roar::142;142;"Bibliothèque numérique de l'enssib";roar +dedup::ed18e752cb2ea743948a28c5657a03da;opendoar::2519;2519;"repositorio de información de medio ambiente de cuba";OpenDOAR +dedup::ed18e752cb2ea743948a28c5657a03da;roar::17002;17002;"Repositorio de Información de Medio Ambiente de Cuba";roar +dedup::ed7e88a893fc2306dab679617c9c352d;opendoar::2793;2793;"earth simulator research results repository";OpenDOAR +dedup::ed7e88a893fc2306dab679617c9c352d;roar::6425;6425;"Earth Simulator Research Results Repository";roar +dedup::edaa9e11aaba7f38acc4b63a89f33500;roar::5430;5430;"Open Archief van VIOE-publicaties";roar +dedup::edaa9e11aaba7f38acc4b63a89f33500;opendoar::988;988;"open archief van vioe-publicaties";OpenDOAR +dedup::edabc44237ceec1216d65ac037b752d9;opendoar::10347;10347;"tarsus university institutional repository";OpenDOAR +dedup::edabc44237ceec1216d65ac037b752d9;roar::17744;17744;"Tarsus University Institutional Repository";roar +dedup::edad72860030c743cf8b50c96edf97be;opendoar::2019;2019;"repositório do lneg";OpenDOAR +dedup::edad72860030c743cf8b50c96edf97be;roar::3469;3469;"Repositório do LNEG";roar +dedup::edc51d7d7546f4fc7914a4caa78dfbb7;roar::9276;9276;"Sojo University Repository";roar +dedup::edc51d7d7546f4fc7914a4caa78dfbb7;opendoar::3199;3199;"sojo university repository";OpenDOAR +dedup::edc51d7d7546f4fc7914a4caa78dfbb7;roar::9094;9094;"Sojo University Repository";roar +dedup::ee09c0eb054722e060cb4053818214a4;https://fairsharing.org/10.25504/FAIRsharing.951f2b;3139;"NOAA National Centers for Environmental Information Paleoclimatology Data";FAIRsharing +dedup::ee09c0eb054722e060cb4053818214a4;re3data::r3d100010311;r3d100010311;"NOAA National Centers for Environmental Information - Paleoclimatology Data";re3data +dedup::ee3cf83173f7e66927008f88293a6418;opendoar::3576;3576;"cancerdata";OpenDOAR +dedup::ee3cf83173f7e66927008f88293a6418;https://fairsharing.org/10.25504/FAIRsharing.s2txbp;2295;"CancerData";FAIRsharing +dedup::ee408b0c9cbf653f2e79504e6396b3b2;roar::8151;8151;"RIT Scholar Works";roar +dedup::ee408b0c9cbf653f2e79504e6396b3b2;opendoar::3079;3079;"rit scholar works";OpenDOAR +dedup::ee6c3effcdfb6e04841b3d6e4ba05ed0;opendoar::769;769;"econport";OpenDOAR +dedup::ee6c3effcdfb6e04841b3d6e4ba05ed0;roar::5708;5708;"EconPort";roar +dedup::ee9c3bc9eada1a4f46f3e241c15a6517;opendoar::2719;2719;"biblioteca virtual de aragón";OpenDOAR +dedup::ee9c3bc9eada1a4f46f3e241c15a6517;roar::4443;4443;"Biblioteca Virtual de Aragón";roar +dedup::eec146ae8e35164b57320cffe1f90670;roar::5126;5126;"Digital Commons @Brockport";roar +dedup::eec146ae8e35164b57320cffe1f90670;opendoar::2457;2457;"digital commons @brockport";OpenDOAR +dedup::eee4f16b8e5acd71ffa9d189fed0dd18;opendoar::3766;3766;"meiji university of integrative medicine academic repository";OpenDOAR +dedup::eee4f16b8e5acd71ffa9d189fed0dd18;roar::10901;10901;"Meiji University of Integrative Medicine Academic Repository";roar +dedup::eefbc95eb9e65998173b7b74f7db166f;opendoar::963;963;"diposit digital de la universitat de barcelona";OpenDOAR +dedup::eefbc95eb9e65998173b7b74f7db166f;roar::4952;4952;"Diposit Digital de la Universitat de Barcelona";roar +dedup::eeffce53ab49ca8e347e52da213a2900;opendoar::916;916;"kyoto university research information repository";OpenDOAR +dedup::eeffce53ab49ca8e347e52da213a2900;roar::781;781;"Kyoto University Research Information Repository";roar +dedup::ef46a43afd7c7d67e21f4306bb1364e9;re3data::r3d100011108;r3d100011108;"heiDATA";re3data +dedup::ef46a43afd7c7d67e21f4306bb1364e9;https://fairsharing.org/10.25504/FAIRsharing.zABkyi;2778;"heiDATA";FAIRsharing +dedup::ef46a43afd7c7d67e21f4306bb1364e9;opendoar::5870;5870;"heidata";OpenDOAR +dedup::ef73186bc2973ded865105cd8e8b2ce7;roar::5680;5680;"Electronic Environmental Resources Library";roar +dedup::ef73186bc2973ded865105cd8e8b2ce7;opendoar::775;775;"electronic environmental resources library";OpenDOAR +dedup::ef77258423cc6256723e835d9477e8c4;roar::13524;13524;"Digital Commons @ University at Buffalo School of Law";roar +dedup::ef77258423cc6256723e835d9477e8c4;opendoar::8946;8946;"digital commons @ university at buffalo school of law";OpenDOAR +dedup::efd10d9dd8b3215a8ec7316a69e57cb7;re3data::r3d100013399;r3d100013399;"Repositorio Institucional Universidad Santo Tomás";re3data +dedup::efd10d9dd8b3215a8ec7316a69e57cb7;roar::13934;13934;"Repositorio Institucional Universidad Santo Tomás";roar +dedup::efd10d9dd8b3215a8ec7316a69e57cb7;opendoar::3896;3896;"repositorio institucional universidad santo tomás";OpenDOAR +dedup::f00f854ab78eabb04f54745efd08c4c1;https://fairsharing.org/fairsharing_records/3088;3088;"New Mexico Bureau of Geology & Mineral Resources Data Repository";FAIRsharing +dedup::f00f854ab78eabb04f54745efd08c4c1;re3data::r3d100012841;r3d100012841;"New Mexico Bureau of Geology & Mineral Resources Data Repository";re3data +dedup::f0510e60192171d59cd4e2c43a6a1f8e;opendoar::4830;4830;"repositorio institucional inia";OpenDOAR +dedup::f0510e60192171d59cd4e2c43a6a1f8e;roar::15188;15188;"Repositorio Institucional INIA";roar +dedup::f06ced368625ba525a6e062a1c04536b;re3data::r3d100011728;r3d100011728;"European Union Open Data Portal";re3data +dedup::f06ced368625ba525a6e062a1c04536b;https://fairsharing.org/fairsharing_records/2947;2947;"European Union Open Data Portal";FAIRsharing +dedup::f08276a4a5c873bf768c803f75260ef4;opendoar::1629;1629;"tamkang university institutional repository";OpenDOAR +dedup::f08276a4a5c873bf768c803f75260ef4;roar::1257;1257;"Tamkang University Institutional Repository";roar +dedup::f088986a9bb700ad9bc236705376e48a;roar::13911;13911;"Deycrit-Sur Base de datos";roar +dedup::f088986a9bb700ad9bc236705376e48a;opendoar::4288;4288;"deycrit sur base de datos";OpenDOAR +dedup::f0a76a3ecf53c501cc67d262a464c4c2;opendoar::546;546;"geo-leoe-docs";OpenDOAR +dedup::f0a76a3ecf53c501cc67d262a464c4c2;roar::5567;5567;"GEO-LEOe-docs";roar +dedup::f0b422528a21c62217892946409c8caa;opendoar::2175;2175;"repositorio institucional da universidade federal do ceará";OpenDOAR +dedup::f0b422528a21c62217892946409c8caa;roar::3878;3878;"Repositório Institucional da Universidade Federal do Ceará";roar +dedup::f0b422528a21c62217892946409c8caa;roar::5884;5884;"Repositorio Institucional da Universidade Federal do Ceará";roar +dedup::f0f70ad92566615c93315c6a838c67d4;opendoar::3932;3932;"repositorio institucional universidad peruana cayetano heredia";OpenDOAR +dedup::f0f70ad92566615c93315c6a838c67d4;roar::15083;15083;"Repositorio Institucional Universidad Peruana Cayetano Heredia";roar +dedup::f153ec3850669837f4c25a3e0638b6d4;roar::13716;13716;"Belmont Digital Repository";roar +dedup::f153ec3850669837f4c25a3e0638b6d4;opendoar::9246;9246;"belmont digital repository";OpenDOAR +dedup::f17096691a885004c0cf3c60cff87e04;opendoar::3382;3382;"seisen university academic repository";OpenDOAR +dedup::f17096691a885004c0cf3c60cff87e04;roar::9901;9901;"Seisen University Academic Repository";roar +dedup::f19d254216fd32ce9ee7362ae21ed1cf;re3data::r3d100011905;r3d100011905;"Leiden Open Variation Database";re3data +dedup::f19d254216fd32ce9ee7362ae21ed1cf;https://fairsharing.org/10.25504/FAIRsharing.21tjj7;2449;"Leiden Open Variation Database";FAIRsharing +dedup::f1a571e833091741e3b58a859a71aee1;roar::17843;17843;"Közszolgálati Tudásportál";roar +dedup::f1a571e833091741e3b58a859a71aee1;opendoar::10365;10365;"közszolgálati tudásportál";OpenDOAR +dedup::f1ab1c4e506ca3351e000afab2f2da65;roar::14266;14266;"Biblioteca Digital Agropecuaria de Colombia";roar +dedup::f1ab1c4e506ca3351e000afab2f2da65;opendoar::9943;9943;"biblioteca digital agropecuaria de colombia";OpenDOAR +dedup::f1ad5b8e2bf041096634af64e07570d9;opendoar::9925;9925;"stockholm university figshare repository";OpenDOAR +dedup::f1ad5b8e2bf041096634af64e07570d9;re3data::r3d100012147;r3d100012147;"Stockholm University Figshare Repository";re3data +dedup::f1cbde634519f38ee4c1a2e2784609d8;roar::7861;7861;"Kyushu University Institutional Repository (QIR)";roar +dedup::f1cbde634519f38ee4c1a2e2784609d8;opendoar::510;510;"kyushu university institutional repository";OpenDOAR +dedup::f22f5075f9e30ce19ca71f9ac10c0982;roar::15479;15479;"Repositorio Digital Institucional de la Universidad de Holguín";roar +dedup::f22f5075f9e30ce19ca71f9ac10c0982;opendoar::10165;10165;"repositorio digital institucional de la universidad de holguín";OpenDOAR +dedup::f24533abf49c93961b9b8eb4a7262455;opendoar::410;410;"cybertesis unmsm";OpenDOAR +dedup::f24533abf49c93961b9b8eb4a7262455;roar::16196;16196;"Cybertesis-UNMSM";roar +dedup::f25efa97eb598492a5645326b1d0f072;https://fairsharing.org/10.25504/FAIRsharing.g4n8sw;1882;"PlasmoDB";FAIRsharing +dedup::f25efa97eb598492a5645326b1d0f072;re3data::r3d100011569;r3d100011569;"PlasmoDB";re3data +dedup::f26fbf7149d1ab46d852fab0db9332d7;roar::3087;3087;"Fukushima University Repository (福島大学学術機関リポジトリ)";roar +dedup::f26fbf7149d1ab46d852fab0db9332d7;roar::5205;5205;"Fukushima University Repository (福島大学学術機関リポジトリ)";roar +dedup::f27de18923f17e9c477ec95d6b93b855;opendoar::3278;3278;"chapman university digital commons";OpenDOAR +dedup::f27de18923f17e9c477ec95d6b93b855;roar::8777;8777;"Chapman University Digital Commons";roar +dedup::f2847ecafa7c5a03491ad0be1ea1e0ce;roar::16511;16511;"Hakkari University Institutional Repository";roar +dedup::f2847ecafa7c5a03491ad0be1ea1e0ce;opendoar::10009;10009;"hakkari university institutional repository";OpenDOAR +dedup::f28b5c4f6e94bdab3a453cb6fb77bfa5;opendoar::3582;3582;"publication server of furtwangen university of applied sciences";OpenDOAR +dedup::f28b5c4f6e94bdab3a453cb6fb77bfa5;roar::11194;11194;"Publication Server of Furtwangen University of Applied Sciences";roar +dedup::f296bb3903d8a84d81c47e6db90764b9;https://fairsharing.org/10.25504/FAIRsharing.qt3w7z;1989;"PubChem";FAIRsharing +dedup::f296bb3903d8a84d81c47e6db90764b9;re3data::r3d100010129;r3d100010129;"PubChem";re3data +dedup::f296bb3903d8a84d81c47e6db90764b9;opendoar::1373;1373;"pubchem";OpenDOAR +dedup::f2f6c79c3c8b6c7ef495a3b46090c402;roar::6334;6334;"Institutional Repository of Institute for the History of Natural Sciences";roar +dedup::f2f6c79c3c8b6c7ef495a3b46090c402;roar::7244;7244;"IHNS-IR(Institutional Repository of Institute for the History of Natural Sciences";roar +dedup::f2fbdda2d0b526490bb0a154a0ab775b;https://fairsharing.org/10.25504/FAIRsharing.yytevr;1680;"MetaCyc";FAIRsharing +dedup::f2fbdda2d0b526490bb0a154a0ab775b;re3data::r3d100011294;r3d100011294;"MetaCyc";re3data +dedup::f318e3dcc7d09f23fe76f15b38e7c497;opendoar::2819;2819;"osmania university digital library [oudl]";OpenDOAR +dedup::f318e3dcc7d09f23fe76f15b38e7c497;roar::6868;6868;"Osmania University Digital Library [OUDL]";roar +dedup::f33035fb41ab20a081b7bed48b13553f;https://fairsharing.org/10.25504/FAIRsharing.VBxAep;3299;"arthistoricum.net@heiDATA";FAIRsharing +dedup::f33035fb41ab20a081b7bed48b13553f;re3data::r3d100013503;r3d100013503;"arthistoricum.net@heiDATA";re3data +dedup::f358c715a13ba7113079570fa2a3e00f;roar::15101;15101;"Repositorio del Instituto de Estudios Peruanos ";roar +dedup::f358c715a13ba7113079570fa2a3e00f;opendoar::979;979;"repositorio del instituto de estudios peruanos";OpenDOAR +dedup::f359532f42c5a07064bbfb5880889bc4;opendoar::242;242;"opus-datenbank berufsverband information bibliothek";OpenDOAR +dedup::f359532f42c5a07064bbfb5880889bc4;roar::4932;4932;"OPUS-Datenbank Berufsverband Information Bibliothek";roar +dedup::f391ca6582a9c8d2004b225a5c29473a;roar::12023;12023;"Iwate University Repository";roar +dedup::f391ca6582a9c8d2004b225a5c29473a;opendoar::1036;1036;"iwate university repository";OpenDOAR +dedup::f39fc60e789802e892e00b6e6e2fd8aa;opendoar::3276;3276;"aceresearch";OpenDOAR +dedup::f39fc60e789802e892e00b6e6e2fd8aa;roar::26;26;"ACEReSearch";roar +dedup::f3b0bf0c16e5a87355292bdca5249f0a;https://fairsharing.org/10.25504/FAIRsharing.f5bf2e;3104;"Seamount Catalog";FAIRsharing +dedup::f3b0bf0c16e5a87355292bdca5249f0a;re3data::r3d100012835;r3d100012835;"Seamount Catalog";re3data +dedup::f3dc6512e46961c363ea402ff218c8fb;opendoar::10171;10171;"dataverseno";OpenDOAR +dedup::f3dc6512e46961c363ea402ff218c8fb;re3data::r3d100012538;r3d100012538;"DataverseNO";re3data +dedup::f3dc6512e46961c363ea402ff218c8fb;https://fairsharing.org/10.25504/FAIRsharing.5O9YTT;2955;"DataverseNO";FAIRsharing +dedup::f3f6dfa5be591320eb6c83b4dfda2511;roar::4128;4128;"Mazowiecka Biblioteka Cyfrowa";roar +dedup::f3f6dfa5be591320eb6c83b4dfda2511;roar::5256;5256;"Mazowiecka Biblioteka Cyfrowa";roar +dedup::f3f6dfa5be591320eb6c83b4dfda2511;opendoar::2254;2254;"mazowiecka biblioteka cyfrowa";OpenDOAR +dedup::f3f9c0ca6b8dffa8024d052af87bd19b;opendoar::4657;4657;"dspace@kto karatay";OpenDOAR +dedup::f3f9c0ca6b8dffa8024d052af87bd19b;roar::14884;14884;"Dspace@KTO Karatay";roar +dedup::f44a8cd590e5e9d4886d472d46b1d03e;https://fairsharing.org/10.25504/FAIRsharing.de9d18;3126;"Scripps Institute of Oceanography Explorer";FAIRsharing +dedup::f44a8cd590e5e9d4886d472d46b1d03e;re3data::r3d100010843;r3d100010843;"Scripps Institute of Oceanography Explorer";re3data +dedup::f451677c550a61a51833fe42a7729b94;opendoar::2577;2577;"sémaphore";OpenDOAR +dedup::f451677c550a61a51833fe42a7729b94;roar::4913;4913;"Sémaphore";roar +dedup::f4677ccc7a198ef679627bd3ea5d8170;roar::9850;9850;"London Met Repository";roar +dedup::f4677ccc7a198ef679627bd3ea5d8170;opendoar::3367;3367;"london met repository";OpenDOAR +dedup::f46b85b583dd1001542ab92543fb8c93;roar::2360;2360;"JorumOpen";roar +dedup::f46b85b583dd1001542ab92543fb8c93;opendoar::1834;1834;"jorum open";OpenDOAR +dedup::f4840867ecb0ffa92888d7f65421d3c5;opendoar::5415;5415;"rian - pathways to irish research";OpenDOAR +dedup::f4840867ecb0ffa92888d7f65421d3c5;roar::3981;3981;"rian.ie - Pathways to Irish Research";roar +dedup::f48b2900a0a6aca72f8334c28001710b;https://fairsharing.org/10.25504/FAIRsharing.hkk309;2348;"Cellosaurus";FAIRsharing +dedup::f48b2900a0a6aca72f8334c28001710b;re3data::r3d100013293;r3d100013293;"Cellosaurus";re3data +dedup::f4c28273a8815a564604ed6281e4ec45;roar::5129;5129;"DigitalCommons@SHU";roar +dedup::f4c28273a8815a564604ed6281e4ec45;opendoar::2458;2458;"digitalcommons@shu";OpenDOAR +dedup::f4c66ebfe3ec99abfd0ffeebcf96c728;roar::698;698;"InterNano Nanomanufacturing Repository";roar +dedup::f4c66ebfe3ec99abfd0ffeebcf96c728;opendoar::1517;1517;"internano nanomanufacturing repository";OpenDOAR +dedup::f4ce0f0ebc26ea636a3b19d22108ff60;roar::9057;9057;"CU Scholar";roar +dedup::f4ce0f0ebc26ea636a3b19d22108ff60;re3data::r3d100012866;r3d100012866;"CU Scholar";re3data +dedup::f50747bbc8c8baad188bdb3bd2f48666;roar::2548;2548;"Högskolebiblioteket i Halmstad Publikationer";roar +dedup::f50747bbc8c8baad188bdb3bd2f48666;opendoar::1743;1743;"högskolebiblioteket i halmstad publikationer";OpenDOAR +dedup::f509f10258b4f6faa8c922393c058df4;opendoar::4810;4810;"rowan digital works";OpenDOAR +dedup::f509f10258b4f6faa8c922393c058df4;roar::10874;10874;"Rowan Digital Works";roar +dedup::f5253851f3e8081ed98db88d43039244;re3data::r3d100012787;r3d100012787;"Gambling Research Exchange Dataverse";re3data +dedup::f5253851f3e8081ed98db88d43039244;opendoar::9747;9747;"gambling research exchange dataverse";OpenDOAR +dedup::f5370fe8f911b378425e5cf1a76a0c5b;opendoar::2417;2417;"hal-upmc";OpenDOAR +dedup::f5370fe8f911b378425e5cf1a76a0c5b;roar::4753;4753;"HAL-UPMC";roar +dedup::f53780eb9c2f3f7bedc0cc67e6cd3fd5;re3data::r3d100013223;r3d100013223;"Brainlife";re3data +dedup::f53780eb9c2f3f7bedc0cc67e6cd3fd5;https://fairsharing.org/10.25504/FAIRsharing.by3p8p;2524;"brainlife";FAIRsharing +dedup::f53780eb9c2f3f7bedc0cc67e6cd3fd5;re3data::r3d100012397;r3d100012397;"brainlife";re3data +dedup::f54bc5ca947dcfe63a5230df7bc0c7b7;roar::10295;10295;"CSU ePress";roar +dedup::f54bc5ca947dcfe63a5230df7bc0c7b7;opendoar::4297;4297;"csu epress";OpenDOAR +dedup::f56703c17fd0ee84513fc6ff6fac24c7;https://fairsharing.org/10.25504/FAIRsharing.g4z879;2181;"Open Science Framework";FAIRsharing +dedup::f56703c17fd0ee84513fc6ff6fac24c7;re3data::r3d100011137;r3d100011137;"Open Science Framework";re3data +dedup::f578b894aaa48af3ca609ddab7e3b3e6;opendoar::2916;2916;"repository of l.n. gumilyov eurasian national university";OpenDOAR +dedup::f578b894aaa48af3ca609ddab7e3b3e6;roar::6949;6949;"Repository of Gumilyov Eurasian National University";roar +dedup::f59018f5c335447d8cf7199a78a116f3;opendoar::3035;3035;"repositori universitas dinamika";OpenDOAR +dedup::f59018f5c335447d8cf7199a78a116f3;roar::8162;8162;"Repository Universitas Dinamika";roar +dedup::f590e4b9947b61b14daba8e04606b055;opendoar::2004;2004;"hsiuping institute of technology institutional repository";OpenDOAR +dedup::f590e4b9947b61b14daba8e04606b055;roar::5885;5885;"Hsiuping Institute of Technology Institutional Repository";roar +dedup::f5a9fcfaac076b4aa77b011216207fda;roar::893;893;"National Chung Cheng University Institutional Repository";roar +dedup::f5a9fcfaac076b4aa77b011216207fda;roar::11100;11100;"National Chung Cheng University Institutional Repository";roar +dedup::f5c5b5ba3c3d69d67c2842dfe1176a8a;opendoar::1625;1625;"scholarspace at university of hawaii at manoa";OpenDOAR +dedup::f5c5b5ba3c3d69d67c2842dfe1176a8a;roar::1169;1169;"ScholarSpace at University of Hawaii at Manoa";roar +dedup::f5d6285d193c9154b9749a636730b267;https://fairsharing.org/10.25504/FAIRsharing.NKUobC;3220;"Sciflection";FAIRsharing +dedup::f5d6285d193c9154b9749a636730b267;re3data::r3d100013413;r3d100013413;"Sciflection";re3data +dedup::f5dc185fcd9ee17bd0df3ee48367e865;opendoar::2300;2300;"institutional repository of institute of geographic sciences and natural resources research, cas";OpenDOAR +dedup::f5dc185fcd9ee17bd0df3ee48367e865;roar::4263;4263;"Institutional Repository of Institute of Geographic Sciences and Natural Resources Research";roar +dedup::f5dc185fcd9ee17bd0df3ee48367e865;roar::4358;4358;"Institutional Repository of Institute of Geographic Sciences and Natural Resources Research";roar +dedup::f5ead6c21bb553b6887e94a4146cb0e7;opendoar::9525;9525;"repositorio institucional de uraccan";OpenDOAR +dedup::f5ead6c21bb553b6887e94a4146cb0e7;roar::15778;15778;"Repositorio Institucional de URACCAN ";roar +dedup::f6109725f1da9713c283267ea2791278;roar::5646;5646;"University of Manchester - Institutional Repository";roar +dedup::f6109725f1da9713c283267ea2791278;opendoar::3818;3818;"the university of manchester - institutional repository";OpenDOAR +dedup::f61c09444c87f7ebef9d3504b37b4a17;re3data::r3d100012459;r3d100012459;"MicrosporidiaDB";re3data +dedup::f61c09444c87f7ebef9d3504b37b4a17;https://fairsharing.org/10.25504/FAIRsharing.vk0ax6;1881;"MicrosporidiaDB";FAIRsharing +dedup::f6267f1b5fcc7df82e2514e3d29dd82d;roar::4025;4025;"Publikationer från Röda Korsets Högskola";roar +dedup::f6267f1b5fcc7df82e2514e3d29dd82d;opendoar::2207;2207;"publikationer från röda korsets högskola";OpenDOAR +dedup::f64c942070566bdd383b8c83e374f5d0;opendoar::383;383;"publikationer från karlstads universitet";OpenDOAR +dedup::f64c942070566bdd383b8c83e374f5d0;roar::2344;2344;"Publikationer från Karlstads Universitet";roar +dedup::f67bdf26bbabf80eb080894ea8b14f77;roar::1210;1210;"Sistema Eletrônico de Editoração de Revistas";roar +dedup::f67bdf26bbabf80eb080894ea8b14f77;roar::1211;1211;"Sistema Eletrônico de Editoração de Revistas";roar +dedup::f67bdf26bbabf80eb080894ea8b14f77;roar::1212;1212;"Sistema Eletrônico de Editoração de Revistas";roar +dedup::f688ca228a65e91c04ac9db344fd0c13;https://fairsharing.org/10.25504/FAIRsharing.f9a62c;3336;"WOVOdat";FAIRsharing +dedup::f688ca228a65e91c04ac9db344fd0c13;re3data::r3d100013649;r3d100013649;"WOVOdat";re3data +dedup::f6953fce0c58094e5cb8f5ce9a98c55e;roar::332;332;"DigitalCommons@Macalester College";roar +dedup::f6953fce0c58094e5cb8f5ce9a98c55e;opendoar::96;96;"digitalcommons@macalester college";OpenDOAR +dedup::f6ac19293b3dfae2d053191f38fb8935;roar::2855;2855;"Mount Saint Vincent University";roar +dedup::f6ac19293b3dfae2d053191f38fb8935;opendoar::1839;1839;"mount saint vincent university";OpenDOAR +dedup::f6c8be4be72f494aa96094919e9a7041;roar::17599;17599;"Repositorio Institucional EUG";roar +dedup::f6c8be4be72f494aa96094919e9a7041;opendoar::10325;10325;"repositorio institucional eug";OpenDOAR +dedup::f6cfa68859fe648512c8b7ad7dbd8a47;roar::13206;13206;"OPUS Open Portal to University Scholarship";roar +dedup::f6cfa68859fe648512c8b7ad7dbd8a47;roar::8934;8934;"OPUS: Open Portal to University Scholarship";roar +dedup::f6d1bb331862fef1c65c9a0626057898;roar::15957;15957;"Repository of the Academy of Public Administration under the President of the Republic of Kazakhstan";roar +dedup::f6d1bb331862fef1c65c9a0626057898;opendoar::9621;9621;"repository of the academy of public administration under the president of the republic of kazakhstan";OpenDOAR +dedup::f6ebe3fa3c36d48f8060b6ccc6a11bbe;roar::5565;5565;"Virtual Reading Room of The John Paul II Catholic University of Lublin";roar +dedup::f6ebe3fa3c36d48f8060b6ccc6a11bbe;roar::4027;4027;"Virtual Reading Room of The John Paul II Catholic University of Lublin";roar +dedup::f6ebe3fa3c36d48f8060b6ccc6a11bbe;opendoar::2212;2212;"virtual reading room of the john paul ii catholic university of lublin";OpenDOAR +dedup::f71022ddebf05c839716caf74c22407b;roar::3803;3803;"dspace @ sdmcet";roar +dedup::f71022ddebf05c839716caf74c22407b;opendoar::2146;2146;"dspace @ sdmcet";OpenDOAR +dedup::f7128d72dcdb16ad2effa9f00c997b11;roar::5466;5466;"Nagoya Repository";roar +dedup::f7128d72dcdb16ad2effa9f00c997b11;roar::870;870;"NAGOYA Repository";roar +dedup::f7278d98844aa7e592881df3b206bc48;opendoar::10033;10033;"istanbul university - cerrahpasa institutional repository";OpenDOAR +dedup::f7278d98844aa7e592881df3b206bc48;roar::16744;16744;"İstanbul University Cerrahpaşa Institutional Repository";roar +dedup::f732a63d573f66cd791f87302d207d10;opendoar::3220;3220;"ludovika digital knowledge repository and archive (ludita)";OpenDOAR +dedup::f732a63d573f66cd791f87302d207d10;roar::9811;9811;"Ludovika Digital Knowledge Repository and Archive (LUDITA)";roar +dedup::f73507017fbe0fd0e5d4855f0d003c97;roar::2672;2672;"Chung Yuan Christian University Institutional Repository";roar +dedup::f73507017fbe0fd0e5d4855f0d003c97;roar::5526;5526;"Chung Yuan Christian University Institutional Repository";roar +dedup::f73507017fbe0fd0e5d4855f0d003c97;opendoar::1783;1783;"chung yuan christian university institutional repository";OpenDOAR +dedup::f74e1da40a6b5338ade849028a758c45;opendoar::2386;2386;"oceanrep";OpenDOAR +dedup::f74e1da40a6b5338ade849028a758c45;roar::4669;4669;"OceanRep";roar +dedup::f755d56ac33d4b8ae9d162fc4c6cc7f1;roar::5511;5511;"Fagarkivet";roar +dedup::f755d56ac33d4b8ae9d162fc4c6cc7f1;opendoar::2483;2483;"fagarkivet";OpenDOAR +dedup::f755d56ac33d4b8ae9d162fc4c6cc7f1;roar::5280;5280;"Fagarkivet";roar +dedup::f755ef2f0ace36b7b280ca770dd81723;roar::16376;16376;"Repository of the Academy of law enforcement agencies under the Prosecutor General's office of the Republic of Kazakhstan | Репозиторий Академии правоохранительных органов при Генеральной прокуратуре Республики Казахстан";roar +dedup::f755ef2f0ace36b7b280ca770dd81723;opendoar::4375;4375;"repository of the academy of law enforcement agencies under the prosecutor generals office of the republic of kazakhstan";OpenDOAR +dedup::f769610a5a48698e81dfba601f1c457d;re3data::r3d100012842;r3d100012842;"NeuroVault";re3data +dedup::f769610a5a48698e81dfba601f1c457d;https://fairsharing.org/10.25504/FAIRsharing.rm14bx;2151;"NeuroVault";FAIRsharing +dedup::f776660b01e1945dab646c64f7640415;re3data::r3d100012265;r3d100012265;"CryptoDB";re3data +dedup::f776660b01e1945dab646c64f7640415;https://fairsharing.org/10.25504/FAIRsharing.t3nprm;1878;"CryptoDB";FAIRsharing +dedup::f7cde3b131320e25665b8ce0a8027d9b;opendoar::2140;2140;"repositorio institucional da fundacao santo andre";OpenDOAR +dedup::f7cde3b131320e25665b8ce0a8027d9b;roar::3788;3788;"Repositorio Institucional da Fundacao Santo Andre";roar +dedup::f7cf0f4b6c6aa3a84f90cbe7bb8e0297;https://fairsharing.org/10.25504/FAIRsharing.k34tv5;2016;"National Addiction & HIV Data Archive Program";FAIRsharing +dedup::f7cf0f4b6c6aa3a84f90cbe7bb8e0297;re3data::r3d100010261;r3d100010261;"National Addiction & HIV Data Archive Program";re3data +dedup::f7d6ef5ab7713722a761a3d241cfc7b5;https://fairsharing.org/10.25504/FAIRsharing.6bb22f;3059;"Physical Oceanography Distributed Active Archive Center";FAIRsharing +dedup::f7d6ef5ab7713722a761a3d241cfc7b5;re3data::r3d100010505;r3d100010505;"Physical Oceanography Distributed Active Archive Center";re3data +dedup::f7ddbfeb80b104bbe1b06d66d0c7b677;opendoar::2244;2244;"jagiellonian digital library";OpenDOAR +dedup::f7ddbfeb80b104bbe1b06d66d0c7b677;roar::4123;4123;"Jagiellonian Digital Library";roar +dedup::f7f7ff48f9ed690804a2aff5f2770031;re3data::r3d100013307;r3d100013307;"ISRCTN Registry";re3data +dedup::f7f7ff48f9ed690804a2aff5f2770031;https://fairsharing.org/fairsharing_records/2928;2928;"ISRCTN Registry";FAIRsharing +dedup::f7fc83c605d8207d50f4baa92dc69ba2;roar::1417;1417;"University of Queensland eSpace";roar +dedup::f7fc83c605d8207d50f4baa92dc69ba2;opendoar::575;575;"university of queensland espace";OpenDOAR +dedup::f80ced0abc7ac31443b62cf6033f11e4;opendoar::2389;2389;"lekythos";OpenDOAR +dedup::f80ced0abc7ac31443b62cf6033f11e4;roar::4930;4930;"LEKYTHOS";roar +dedup::f829830406e05d427412247c5d238b6b;opendoar::2018;2018;"repositório do ispa";OpenDOAR +dedup::f829830406e05d427412247c5d238b6b;roar::3468;3468;"Repositório do ISPA";roar +dedup::f83592f0f79d767694a1877816c2fe52;roar::5695;5695;"Repozytorium Cyfrowego Instytutów Naukowych (Digital Repository of Scientific Institutions)";roar +dedup::f83592f0f79d767694a1877816c2fe52;roar::5461;5461;"Repozytorium Cyfrowego Instytutów Naukowych (Digital Repository of Scientific Institutions)";roar +dedup::f83592f0f79d767694a1877816c2fe52;roar::3930;3930;"Repozytorium Cyfrowego Instytutów Naukowych (Digital Repository of Scientific Institutions)";roar +dedup::f837f6d9f0fbd4640e58a4d6bc986e73;opendoar::2047;2047;"academic digital library (akademickiej bibliotece cyfrowej)";OpenDOAR +dedup::f837f6d9f0fbd4640e58a4d6bc986e73;roar::5514;5514;"Academic Digital Library (Akademickiej Bibliotece Cyfrowej)";roar +dedup::f839dbb4a8fe3b60119c6593d7185f35;roar::997;997;"Padua@Research";roar +dedup::f839dbb4a8fe3b60119c6593d7185f35;opendoar::1162;1162;"padua@research";OpenDOAR +dedup::f8be4cc77c47b6643d6b350e2a7e6e19;https://fairsharing.org/10.25504/FAIRsharing.pjj4gd;2512;"Biological and Chemical Oceanography Data Management Office";FAIRsharing +dedup::f8be4cc77c47b6643d6b350e2a7e6e19;re3data::r3d100000012;r3d100000012;"Biological and Chemical Oceanography Data Management Office";re3data +dedup::f8c2fa9be4e3784ec6acddf8741a147b;roar::3472;3472;"Digital Repository of Pan American Health Organization";roar +dedup::f8c2fa9be4e3784ec6acddf8741a147b;opendoar::2013;2013;"digital repository of pan american health organization";OpenDOAR +dedup::f8c51c178f9448c5a07bd074417d90cc;opendoar::3926;3926;"sunway institutional repository";OpenDOAR +dedup::f8c51c178f9448c5a07bd074417d90cc;roar::8536;8536;"Sunway Institutional Repository";roar +dedup::f8f8c0bd93f00ec83efdc0dbe129c385;roar::13936;13936;"LMU Digital Commons";roar +dedup::f8f8c0bd93f00ec83efdc0dbe129c385;opendoar::7764;7764;"lmu digital comons";OpenDOAR +dedup::f9293f212c2f13c7cc7a2d2a967ac7d5;roar::15060;15060;"Repositorio Universidad de Sucre";roar +dedup::f9293f212c2f13c7cc7a2d2a967ac7d5;roar::13134;13134;"Repositorio Universidad de Sucre";roar +dedup::f945a5053b15388d9d339dd555a66221;roar::6110;6110;"DDFV";roar +dedup::f945a5053b15388d9d339dd555a66221;opendoar::2582;2582;"ddfv";OpenDOAR +dedup::f999d411c8ac8cc0409ef5c9b5f9a18f;opendoar::2688;2688;"ewu digital library";OpenDOAR +dedup::f999d411c8ac8cc0409ef5c9b5f9a18f;roar::6891;6891;"EWU Digital Library";roar +dedup::f9aa64cbb57131939eda048250f2dbae;opendoar::1237;1237;"scholars mine";OpenDOAR +dedup::f9aa64cbb57131939eda048250f2dbae;https://fairsharing.org/10.25504/FAIRsharing.SWMYY2;3027;"Scholars' Mine";FAIRsharing +dedup::f9aa64cbb57131939eda048250f2dbae;re3data::r3d100012692;r3d100012692;"Scholars' Mine";re3data +dedup::f9d0fc9198b484da689e907806e280cf;roar::17302;17302;"Repositorio Fundación Universitaria Compensar";roar +dedup::f9d0fc9198b484da689e907806e280cf;opendoar::10178;10178;"repositorio fundación universitaria compensar";OpenDOAR +dedup::f9d68e8fafe955ba0e041d55520fb42d;re3data::r3d100011272;r3d100011272;"The Comprehensive Resource of Mammalian protein complexes";re3data +dedup::f9d68e8fafe955ba0e041d55520fb42d;https://fairsharing.org/10.25504/FAIRsharing.ohbpNw;2839;" Comprehensive Resource of Mammalian protein complexes";FAIRsharing +dedup::fa0721f07402e0593da77a46fa687da6;roar::5779;5779;"Sanok Digital Library";roar +dedup::fa0721f07402e0593da77a46fa687da6;opendoar::2545;2545;"sanok digital library";OpenDOAR +dedup::fa0721f07402e0593da77a46fa687da6;roar::5746;5746;"Sanok Digital Library";roar +dedup::fa12509fb4d86baac0a3c1e7c2ffc156;opendoar::3508;3508;"digital repository of slovenian research organizations";OpenDOAR +dedup::fa12509fb4d86baac0a3c1e7c2ffc156;roar::10688;10688;"Digital repository of Slovenian research organizations";roar +dedup::fa220bc9ef4c84347f94746d23e4d472;re3data::r3d100010596;r3d100010596;"International Service of Geomagnetic Indices";re3data +dedup::fa220bc9ef4c84347f94746d23e4d472;https://fairsharing.org/10.25504/FAIRsharing.5Sfaz2;3047;"International Service of Geomagnetic Indices";FAIRsharing +dedup::fa3401b97ac2ad3d011f1e08fceab291;roar::5542;5542;"Baylor Electronically Accessible Research Documents";roar +dedup::fa3401b97ac2ad3d011f1e08fceab291;opendoar::1444;1444;"baylor electronically accessible research documents";OpenDOAR +dedup::fa527dec0d98bcc21a9e2086a1ebeeaf;roar::1067;1067;"Repositorio Academico de la Biblioteca JCU";roar +dedup::fa527dec0d98bcc21a9e2086a1ebeeaf;opendoar::1607;1607;"repositorio academico de la biblioteca jcu";OpenDOAR +dedup::fa581bf2652d39c2490f1b64019d9d1b;opendoar::2016;2016;"repositório científico do instituto nacional de saúde";OpenDOAR +dedup::fa581bf2652d39c2490f1b64019d9d1b;roar::3466;3466;"Repositório Científico do Instituto Nacional de Saúde";roar +dedup::fab2415bf42ac76e4ae00aa68b61a4ba;roar::5482;5482;"Biblioteca Virtual del Centro de Documentación";roar +dedup::fab2415bf42ac76e4ae00aa68b61a4ba;roar::5214;5214;"Biblioteca Virtual del Centro de Documentación";roar +dedup::fab888b1713fb886b13bbd2d569bba60;opendoar::2539;2539;"publication server of the wuppertal institute";OpenDOAR +dedup::fab888b1713fb886b13bbd2d569bba60;roar::11212;11212;"Publication Server of the Wuppertal Institute";roar +dedup::fab888b1713fb886b13bbd2d569bba60;roar::5891;5891;"Publication Server of the Wuppertal Institute";roar +dedup::fac554962a4f05b44235f0ba47c5ec8d;re3data::r3d100011216;r3d100011216;"KU ScholarWorks";re3data +dedup::fac554962a4f05b44235f0ba47c5ec8d;opendoar::332;332;"ku scholarworks";OpenDOAR +dedup::fac58c7815f9d28e8b143750d70f5e63;roar::4588;4588;"ACUBO (Archivio Aperto di Ateneo)";roar +dedup::fac58c7815f9d28e8b143750d70f5e63;opendoar::2376;2376;"acubo (archivio aperto di ateneo)";OpenDOAR +dedup::fae1103e11cb1e0a1ae9fe225ea68db1;roar::16086;16086;"Jewish Digital Library";roar +dedup::fae1103e11cb1e0a1ae9fe225ea68db1;opendoar::9493;9493;"jewish digital library";OpenDOAR +dedup::faf834b3f443d5d4d703c6ec117b5ecd;roar::7724;7724;"Repositório Institucional UNESP";roar +dedup::faf834b3f443d5d4d703c6ec117b5ecd;opendoar::2946;2946;"repositório institucional unesp";OpenDOAR +dedup::fb13c06a0bc9b60a941884b048be3a57;opendoar::1414;1414;"mona online research database";OpenDOAR +dedup::fb13c06a0bc9b60a941884b048be3a57;roar::857;857;"Mona Online Research Database";roar +dedup::fb1f53cb10774927417d6686f1af7cc8;opendoar::10192;10192;"repository universiitas muhammadiyah palembang";OpenDOAR +dedup::fb1f53cb10774927417d6686f1af7cc8;roar::16264;16264;"Repository Universitas Muhammadiyah Palembang ";roar +dedup::fb2172c5c5a9e318583ff60fae26fe35;roar::16078;16078;"Repositorio - Fundación Universitaria Konrad Lorenz";roar +dedup::fb2172c5c5a9e318583ff60fae26fe35;opendoar::9663;9663;"repositorio - fundación universitaria konrad lorenz";OpenDOAR +dedup::fb252b5a18a9fde1d98cd94869c99d75;roar::1479;1479;"Vernadsky National Library of Ukraine";roar +dedup::fb252b5a18a9fde1d98cd94869c99d75;opendoar::1456;1456;"vernadsky national library of ukraine";OpenDOAR +dedup::fb8256deaa69cafc1d65f7f9386913b6;https://fairsharing.org/10.25504/FAIRsharing.k337f0;1572;"DNA Data Bank of Japan";FAIRsharing +dedup::fb8256deaa69cafc1d65f7f9386913b6;re3data::r3d100010218;r3d100010218;"DNA Data Bank of Japan";re3data +dedup::fba17aa7b21a2708d65b58d65e7fc54d;re3data::r3d100010107;r3d100010107;"NeuroMorpho.Org";re3data +dedup::fba17aa7b21a2708d65b58d65e7fc54d;https://fairsharing.org/10.25504/FAIRsharing.drcy7r;1944;"NeuroMorpho.Org";FAIRsharing +dedup::fc07203bfbbded18f039eccc44bec049;opendoar::2427;2427;"tukart";OpenDOAR +dedup::fc07203bfbbded18f039eccc44bec049;roar::4835;4835;"tukart";roar +dedup::fc092a5a173b2bb42d0e7b8cca7f0bce;roar::3606;3606;"Digital Library University of Lodz";roar +dedup::fc092a5a173b2bb42d0e7b8cca7f0bce;opendoar::2060;2060;"digital library university of lodz";OpenDOAR +dedup::fc1370f72d075c75c53a24e5da6b25a0;roar::1157;1157;"Scholar Works @ GVSU";roar +dedup::fc1370f72d075c75c53a24e5da6b25a0;opendoar::1624;1624;"scholarworks@gvsu";OpenDOAR +dedup::fc451147697dbef842684f8bc18e5aa2;re3data::r3d100010424;r3d100010424;"WormBase";re3data +dedup::fc451147697dbef842684f8bc18e5aa2;https://fairsharing.org/10.25504/FAIRsharing.zx1td8;1699;"WormBase";FAIRsharing +dedup::fc69a89495e855710c4f8a4a56e4595a;opendoar::6127;6127;"digitalcommons@unmc";OpenDOAR +dedup::fc69a89495e855710c4f8a4a56e4595a;roar::8225;8225;"DigitalCommons@UNMC";roar +dedup::fc7a830badb6f3f727d7cdd5d768f03b;roar::3974;3974;"Saber UCAB";roar +dedup::fc7a830badb6f3f727d7cdd5d768f03b;opendoar::2226;2226;"saber ucab";OpenDOAR +dedup::fc851c92b4f333e2312a86aafab88854;opendoar::2123;2123;"repositório institucional da universidade federal do pará";OpenDOAR +dedup::fc851c92b4f333e2312a86aafab88854;roar::5986;5986;"Repositório Institucional da Universidade Federal do Pará";roar +dedup::fcace6b409c07cd469d26301f541a626;roar::11177;11177;"Repositorio Institucional de la Universidad Autónoma del Estado de México";roar +dedup::fcace6b409c07cd469d26301f541a626;opendoar::3624;3624;"repositorio institucional de la universidad autónoma del estado de méxico";OpenDOAR +dedup::fcb1087ea63e01e640500cc8574af7ea;roar::438;438;"DSpace Universidad de Talca";roar +dedup::fcb1087ea63e01e640500cc8574af7ea;opendoar::114;114;"dspace universidad de talca";OpenDOAR +dedup::fcbb8f68169cc653d2ebcd016d37347b;opendoar::91;91;"digitalcommons@pace";OpenDOAR +dedup::fcbb8f68169cc653d2ebcd016d37347b;roar::335;335;"DigitalCommons@Pace";roar +dedup::fcd1540c3e74a52cdf2ca453a2773677;opendoar::2042;2042;"repositorio digital espe";OpenDOAR +dedup::fcd1540c3e74a52cdf2ca453a2773677;roar::3515;3515;"Repositorio Digital ESPE";roar +dedup::fce92cd7c6f8f072c8b1585adbf391df;re3data::r3d100013646;r3d100013646;"Brain Analysis Library of Spatial maps and Atlases";re3data +dedup::fce92cd7c6f8f072c8b1585adbf391df;https://fairsharing.org/10.25504/FAIRsharing.11c072;3320;"Brain Analysis Library of Spatial maps and Atlases";FAIRsharing +dedup::fcea3bdc3328a5e033315127c14078b3;roar::70;70;"Archive ouverte UNIGE";roar +dedup::fcea3bdc3328a5e033315127c14078b3;opendoar::1400;1400;"archive ouverte unige";OpenDOAR +dedup::fcef985a60bbab983037b3a45804eb1a;re3data::r3d100011196;r3d100011196;"Ensembl Fungi";re3data +dedup::fcef985a60bbab983037b3a45804eb1a;https://fairsharing.org/10.25504/FAIRsharing.bg5xqs;2405;"Ensembl Fungi";FAIRsharing +dedup::fcf6ab13941a14f007d1be3ef073df82;re3data::r3d100011654;r3d100011654;"Brown Digital Repository";re3data +dedup::fcf6ab13941a14f007d1be3ef073df82;opendoar::3722;3722;"brown digital repository";OpenDOAR +dedup::fcf6ab13941a14f007d1be3ef073df82;roar::11684;11684;"Brown Digital Repository";roar +dedup::fd3d6fa25f7376f3d8dfd014494b6bba;opendoar::959;959;"opendepot.org";OpenDOAR +dedup::fd3d6fa25f7376f3d8dfd014494b6bba;roar::3419;3419;"OpenDEPOT.org";roar +dedup::fd3eafa42a631ab831570d7a7240949a;opendoar::1224;1224;"um research repository";OpenDOAR +dedup::fd3eafa42a631ab831570d7a7240949a;roar::5773;5773;"UM Research Repository";roar +dedup::fd48576dcaee822ae79cfe563e9414fa;roar::5869;5869;"UPSpace";roar +dedup::fd48576dcaee822ae79cfe563e9414fa;re3data::r3d100010133;r3d100010133;"UPSpace";re3data +dedup::fd7508b513cc311e26b8c82bbc811953;opendoar::3891;3891;"uef erepository";OpenDOAR +dedup::fd7508b513cc311e26b8c82bbc811953;roar::13022;13022;"UEF eRepository";roar +dedup::fd7bdd79a0bfaff29a52bdc0d14c31b5;roar::4717;4717;"Brandeis University Digital Collections";roar +dedup::fd7bdd79a0bfaff29a52bdc0d14c31b5;opendoar::1140;1140;"brandeis university digital collections";OpenDOAR +dedup::fdc74eb6544b2533f3f9fa8e8c7c34d7;opendoar::4470;4470;"igu institutional open access repository";OpenDOAR +dedup::fdc74eb6544b2533f3f9fa8e8c7c34d7;roar::14676;14676;"IGU Institutional Open Access Repository";roar +dedup::fddb2b9f38ec47b6debfdcac82b6a6b0;opendoar::2180;2180;"repositorio digital puce";OpenDOAR +dedup::fddb2b9f38ec47b6debfdcac82b6a6b0;roar::3951;3951;"Repositorio Digital PUCE";roar +dedup::fe173cd995e699fe3b6aa437d88913cd;roar::13329;13329;"St Paul's University Institutional Repository";roar +dedup::fe173cd995e699fe3b6aa437d88913cd;opendoar::3917;3917;"st. pauls university institutional repository";OpenDOAR +dedup::fe66a9a531633c2350b09f04cd9d5d6f;opendoar::4801;4801;"repositorio institucional unitru";OpenDOAR +dedup::fe66a9a531633c2350b09f04cd9d5d6f;roar::15176;15176;"Repositorio Institucional UNITRU";roar +dedup::fe7002e54a85e036c654395f858f78bc;opendoar::2362;2362;"electronic kerch state maritime technological university institutional repository";OpenDOAR +dedup::fe7002e54a85e036c654395f858f78bc;roar::4550;4550;"Electronic Kerch State Maritime Technological University Institutional Repository";roar +dedup::fe97d94777ee58a90487c38f65ad629e;opendoar::3134;3134;"seoul metropolitan library";OpenDOAR +dedup::fe97d94777ee58a90487c38f65ad629e;roar::8766;8766;"Seoul Metropolitan Library(서울도서관)";roar +dedup::fec5b86a3359a15ab7caaa888efecb18;opendoar::1245;1245;"depósito de la universidad de murcia";OpenDOAR +dedup::fec5b86a3359a15ab7caaa888efecb18;roar::5459;5459;"Depósito de la Universidad de Murcia";roar +dedup::fec906f363350084246ca7da5043b31f;opendoar::2808;2808;"theses & dissertations";OpenDOAR +dedup::fec906f363350084246ca7da5043b31f;roar::7818;7818;"Theses & Dissertations";roar +dedup::fee4180dcb5f2af4d963b6d74d82d8c2;roar::3992;3992;"York St John University ArchivalWare Digital Library";roar +dedup::fee4180dcb5f2af4d963b6d74d82d8c2;roar::5185;5185;"York St John University ArchivalWare Digital Library";roar +dedup::ff08278e29f12815a5db5bf0f99b949c;roar::6232;6232;"Digital Commons @ Montana Tech";roar +dedup::ff08278e29f12815a5db5bf0f99b949c;opendoar::2782;2782;"digital commons @ montana tech";OpenDOAR +dedup::ff1ee560707fbfd9a33d008835554863;roar::17088;17088;"Afyonkarahisar Health Sciences University Institutional Repository";roar +dedup::ff1ee560707fbfd9a33d008835554863;opendoar::10184;10184;"afyonkarahisar health sciences university institutional repository";OpenDOAR +dedup::ff21b8e683c588b6397effeb4a8f94f8;roar::2873;2873;"Research at Sofia University";roar +dedup::ff21b8e683c588b6397effeb4a8f94f8;opendoar::1421;1421;"research at sofia university";OpenDOAR +dedup::ff2ed85fe546be9cc9add5abb3e495f1;opendoar::3691;3691;"datadoi";OpenDOAR +dedup::ff2ed85fe546be9cc9add5abb3e495f1;re3data::r3d100012333;r3d100012333;"DataDOI";re3data +dedup::ff320808b4b59d64b99080f030da8f2f;opendoar::1443;1443;"oldenburger online publikations server";OpenDOAR +dedup::ff320808b4b59d64b99080f030da8f2f;roar::2391;2391;"Oldenburger Online Publikations Server";roar +dedup::ff489a40cae7c8a4b7769d67dec92c3a;roar::4938;4938;"Digital Collections - USC";roar +dedup::ff489a40cae7c8a4b7769d67dec92c3a;opendoar::865;865;"digital collections - usc";OpenDOAR +dedup::ff7c82d91af5299dfeec4a83e0517429;roar::4320;4320;"SMU Scholar";roar +dedup::ff7c82d91af5299dfeec4a83e0517429;opendoar::5091;5091;"smu scholar";OpenDOAR +dedup::ff7d2ea87cebddb182db2fb8cf32aa89;roar::3770;3770;"SOPHIA";roar +dedup::ff7d2ea87cebddb182db2fb8cf32aa89;opendoar::2126;2126;"sophia";OpenDOAR +dedup::ffb342887a73ec0ead022e0414d765b1;roar::668;668;"Infoscience: École polytechnique fédérale de Lausanne";roar +dedup::ffb342887a73ec0ead022e0414d765b1;opendoar::185;185;"infoscience - école polytechnique fédérale de lausanne";OpenDOAR +dedup::ffbb6800107747f9224cdde0df95da7c;opendoar::3122;3122;"istanbul bilgi university library open access";OpenDOAR +dedup::ffbb6800107747f9224cdde0df95da7c;roar::13646;13646;"Istanbul Bilgi University Library Open Access";roar +dedup::5c26cf44b51bdbf0b5bfb2ceab523453;roar::978;978;"OPUS Volltextserver der Universität Regensburg";roar +dedup::5c26cf44b51bdbf0b5bfb2ceab523453;roar::976;976;"OPUS Volltextserver der Universität Augsburg";roar +dedup::6c7611f573608928f9c7f8ab3fa6ae52;roar::2670;2670;"HSF Brage Open Research Archive";roar +dedup::6c7611f573608928f9c7f8ab3fa6ae52;roar::2698;2698;"HSF Brage Open Research Archive";roar +dedup::6c7611f573608928f9c7f8ab3fa6ae52;roar::2741;2741;"NLA Brage Open Research Archive";roar +dedup::7510f5f97f874196197aa9c4e1fa904f;roar::2705;2705;"HIØ Brage";roar +dedup::7510f5f97f874196197aa9c4e1fa904f;roar::5439;5439;"KHiO Brage";roar +dedup::788681b29d75bb1c914d47943f283b5c;opendoar::9465;9465;"digital object repository at eawag";OpenDOAR +dedup::788681b29d75bb1c914d47943f283b5c;opendoar::9466;9466;"digital object repository at empa";OpenDOAR +dedup::ad875a3bcbde0b8d00e8d43fba1ff7a8;re3data::r3d100011743;r3d100011743;"GOES Space Environment Monitor";re3data +dedup::ad875a3bcbde0b8d00e8d43fba1ff7a8;re3data::r3d100011961;r3d100011961;"POES Space Environment Monitor";re3data +dedup::c11de4080d626229687abc8cb7739d0a;roar::15575;15575;"DORA PSI: Digital Object Repository at PSI";roar +dedup::c11de4080d626229687abc8cb7739d0a;roar::15574;15574;"DORA WSL: Digital Object Repository at WSL";roar +dedup::f46cb95726f6acbbc4017b8ea48bf9e8;opendoar::9468;9468;"digital object repository at psi";OpenDOAR +dedup::f46cb95726f6acbbc4017b8ea48bf9e8;opendoar::9467;9467;"digital object repository at wsl";OpenDOAR +dedup::557430214f268761558a1e12d87eb10a;roar::2725;2725;"HiST Brage";roar +dedup::557430214f268761558a1e12d87eb10a;roar::2704;2704;"HiNT Brage";roar +dedup::a28a3b2c99b716f9d08ee0689005b9c2;roar::5;5;"Academic Archive On-line (Jönköping University";roar +dedup::a28a3b2c99b716f9d08ee0689005b9c2;roar::8;8;"Academic Archive On-line (Linköping University";roar +dedup::c41e1f5c09a9f3e0870bac6b7d339f7c;roar::16;16;"Academic Archive On-line (University of Skövde";roar +dedup::c41e1f5c09a9f3e0870bac6b7d339f7c;roar::15;15;"Academic Archive On-line (University of Gävle";roar \ No newline at end of file diff --git a/data/in/fairsharing_dump_api_02_2022.json b/data/in/fairsharing_dump_api_02_2022.json new file mode 100644 index 0000000..0b5e0ee --- /dev/null +++ b/data/in/fairsharing_dump_api_02_2022.json @@ -0,0 +1,1853 @@ +{"id": "3226", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-09T11:53:44.000Z", "updated-at": "2022-02-08T10:42:36.452Z", "metadata": {"doi": "10.25504/FAIRsharing.d6423b", "name": "WDC Sunspot Index and Long-term Solar Observations", "status": "ready", "contacts": [{"contact-name": "Fr\u00e9d\u00e9ric Clette", "contact-email": "silso.info@oma.be", "contact-orcid": "0000-0002-3343-5153"}], "homepage": "http://sidc.be/silso/home", "identifier": 3226, "description": "The WDC-SILSO is an activity of the Operational Directorate \u201cSolar Physics and Space Weather\u201d also known internationally as the Solar Influences Data analysis Center (SIDC). The SIDC is a department of the Royal Observatory of Belgium. Its mission is to preserve, develop and diffuse the knowledge of the long-term variations of solar activity, as a reference input to studies of the solar cycle mechanism and of the solar forcing on the Earth\u2019s climate.", "abbreviation": "WDC-SILSO", "support-links": [{"url": "http://www.sidc.be/silso/taxonomy/term/1", "name": "News", "type": "Blog/News"}, {"url": "silso.obs@oma.be", "name": "Technical, website-related, or more general questions", "type": "Support email"}, {"url": "http://sidc.be/silso/faq-page", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2013, "data-processes": [{"url": "http://www.sidc.be/silso/datafiles", "name": "Browse data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010601", "name": "re3data:r3d100010601", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001740", "bsg-d001740"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Electromagnetism", "Astrophysics and Astronomy", "Earth Science", "Atmospheric Science"], "domains": ["Climate", "Observation design"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "earth observation", "Electromagnetism", "Solar activity", "Solar physics", "space weather", "Sunspot"], "countries": ["Belgium"], "name": "FAIRsharing record for: WDC Sunspot Index and Long-term Solar Observations", "abbreviation": "WDC-SILSO", "url": "https://fairsharing.org/10.25504/FAIRsharing.d6423b", "doi": "10.25504/FAIRsharing.d6423b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The WDC-SILSO is an activity of the Operational Directorate \u201cSolar Physics and Space Weather\u201d also known internationally as the Solar Influences Data analysis Center (SIDC). The SIDC is a department of the Royal Observatory of Belgium. Its mission is to preserve, develop and diffuse the knowledge of the long-term variations of solar activity, as a reference input to studies of the solar cycle mechanism and of the solar forcing on the Earth\u2019s climate.", "publications": [], "licence-links": [{"licence-name": "SILSO legal notices", "licence-id": 747, "link-id": 2227, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2114", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-21T14:39:02.195Z", "metadata": {"doi": "10.25504/FAIRsharing.p06nme", "name": "Biological Magnetic Resonance Data Bank", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "help@bmrb.io", "contact-orcid": null}], "homepage": "https://bmrb.io/", "citations": [{"doi": "10.1093/nar/gkm957", "pubmed-id": 17984079, "publication-id": 1723}], "identifier": 2114, "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "abbreviation": "BMRB", "data-curation": {}, "support-links": [{"url": "https://bmrb.io/bmrb/news/", "name": "News", "type": "Blog/News"}, {"url": "https://bmrb.io/education/", "name": "Education and Outreach", "type": "Help documentation"}, {"url": "https://bmrb.io/standards/", "name": "Standards Used", "type": "Help documentation"}], "year-creation": 1988, "data-processes": [{"url": "https://bmrb.io/data_library/rsync.shtml", "name": "RSYNC access", "type": "data release"}, {"url": "https://bmrb.io/search/", "name": "search", "type": "data access"}, {"url": "https://deposit.bmrb.io/", "name": "submit", "type": "data curation"}, {"url": "https://bmrb.io/search/query_grid/overview.php", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://bmrb.io/validate/", "name": "Validation Tools Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010191", "name": "re3data:r3d100010191", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002296", "name": "SciCrunch:RRID:SCR_002296", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://bmrb.io/deposit/", "type": "open"}}, "legacy-ids": ["biodbcore-000584", "bsg-d000584"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Molecular structure", "Protein structure", "Peptide", "Molecular entity", "Nucleic acid", "Ligand", "Nuclear Magnetic Resonance (NMR) spectroscopy", "Spectrum", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Biological Magnetic Resonance Data Bank", "abbreviation": "BMRB", "url": "https://fairsharing.org/10.25504/FAIRsharing.p06nme", "doi": "10.25504/FAIRsharing.p06nme", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "publications": [{"id": 552, "pubmed_id": 18288446, "title": "BioMagResBank (BMRB) as a partner in the Worldwide Protein Data Bank (wwPDB): new policies affecting biomolecular NMR depositions.", "year": 2008, "url": "http://doi.org/10.1007/s10858-008-9221-y", "authors": "Markley JL., Ulrich EL., Berman HM., Henrick K., Nakamura H., Akutsu H.,", "journal": "J. Biomol. NMR", "doi": "10.1007/s10858-008-9221-y", "created_at": "2021-09-30T08:23:20.259Z", "updated_at": "2021-09-30T08:23:20.259Z"}, {"id": 1723, "pubmed_id": 17984079, "title": "BioMagResBank.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm957", "authors": "Ulrich EL,Akutsu H,Doreleijers JF,Harano Y,Ioannidis YE,Lin J,Livny M,Mading S,Maziuk D,Miller Z,Nakatani E,Schulte CF,Tolmie DE,Kent Wenger R,Yao H,Markley JL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm957", "created_at": "2021-09-30T08:25:33.068Z", "updated_at": "2021-09-30T11:29:19.360Z"}], "licence-links": [{"licence-name": "wwPDB Privacy and Usage Policies", "licence-id": 891, "link-id": 2501, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3022", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-17T10:25:30.000Z", "updated-at": "2022-02-08T10:41:04.073Z", "metadata": {"doi": "10.25504/FAIRsharing.8b7a2f", "name": "Fisheries and Oceans Canada Pacific Region Data Archive", "status": "ready", "contacts": [{"contact-name": "Peter Chandler", "contact-email": "Peter.Chandler@dfo-mpo.gc.ca"}], "homepage": "http://www.pac.dfo-mpo.gc.ca/science/oceans/data-donnees/index-eng.html", "identifier": 3022, "description": "The Institute of Ocean Sciences (IOS)/Ocean Sciences Division (OSD) data archive contains the holdings of oceanographic data generated by the IOS and other agencies and laboratories, including the Institute of Oceanography at the University of British Columbia and the Pacific Biological Station. The contents include data from British Columbia coastal waters and inlets, British Columbia continental shelf waters, open ocean North Pacific waters, Beaufort Sea and the Arctic Archipelago.", "abbreviation": null, "support-links": [{"url": "DFO.PAC.SCI.IOSData-DonneesISO.SCI.PAC.MPO@dfo-mpo.gc.ca", "name": "Senior Analyst", "type": "Support email"}, {"url": "http://www.dfo-mpo.gc.ca/media/rss-eng.htm", "type": "Blog/News"}], "data-processes": [{"name": "Users must contact the Senior Analyst", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010929", "name": "re3data:r3d100010929", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001530", "bsg-d001530"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Meteorology", "Earth Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Salinity", "Temperature"], "countries": ["Canada"], "name": "FAIRsharing record for: Fisheries and Oceans Canada Pacific Region Data Archive", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.8b7a2f", "doi": "10.25504/FAIRsharing.8b7a2f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Institute of Ocean Sciences (IOS)/Ocean Sciences Division (OSD) data archive contains the holdings of oceanographic data generated by the IOS and other agencies and laboratories, including the Institute of Oceanography at the University of British Columbia and the Pacific Biological Station. The contents include data from British Columbia coastal waters and inlets, British Columbia continental shelf waters, open ocean North Pacific waters, Beaufort Sea and the Arctic Archipelago.", "publications": [], "licence-links": [{"licence-name": "Fisheries and Oceans Canada Terms and Conditions", "licence-id": 316, "link-id": 1919, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2998", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-21T07:42:30.000Z", "updated-at": "2022-02-08T10:40:19.531Z", "metadata": {"doi": "10.25504/FAIRsharing.e08886", "name": "Climate Prediction Center", "status": "ready", "contacts": [{"contact-name": "Jon Hoopingarner", "contact-email": "Jon.Hoopingarner@noaa.gov"}], "homepage": "https://www.cpc.ncep.noaa.gov/", "identifier": 2998, "description": "The Climate Prediction Center (CPC) produces operational predictions of climate variability, real-time monitoring of climate and the required data bases, and assessments of the origins of major climate anomalies. These cover time scales from a week to seasons, extending into the future as far as technically feasible, and cover the land, the ocean, and the atmosphere, extending into the stratosphere.", "abbreviation": "CPC", "support-links": [{"url": "https://www.cpc.ncep.noaa.gov/comment-form.php", "type": "Contact form"}, {"url": "https://www.cio.noaa.gov/services_programs/info_quality.html", "name": "Information Quality", "type": "Help documentation"}, {"url": "https://www.nws.noaa.gov/admin.php", "name": "About", "type": "Help documentation"}], "year-creation": 1970, "data-processes": [{"url": "https://www.cpc.ncep.noaa.gov/", "name": "Browse data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011138", "name": "re3data:r3d100011138", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001504", "bsg-d001504"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Geography", "Meteorology", "Geodesy", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Forecasting", "weather"], "countries": ["United States"], "name": "FAIRsharing record for: Climate Prediction Center", "abbreviation": "CPC", "url": "https://fairsharing.org/10.25504/FAIRsharing.e08886", "doi": "10.25504/FAIRsharing.e08886", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Climate Prediction Center (CPC) produces operational predictions of climate variability, real-time monitoring of climate and the required data bases, and assessments of the origins of major climate anomalies. These cover time scales from a week to seasons, extending into the future as far as technically feasible, and cover the land, the ocean, and the atmosphere, extending into the stratosphere.", "publications": [], "licence-links": [{"licence-name": "National Weather Service Disclaimer", "licence-id": 549, "link-id": 1673, "relation": "undefined"}, {"licence-name": "National Weather Service Credits", "licence-id": 548, "link-id": 1674, "relation": "undefined"}, {"licence-name": "National Weather Service Privacy Policy", "licence-id": 550, "link-id": 1676, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2301", "type": "fairsharing-records", "attributes": {"created-at": "2016-06-03T14:54:08.000Z", "updated-at": "2021-11-24T13:17:51.201Z", "metadata": {"doi": "10.25504/FAIRsharing.meh9wz", "name": "Acytostelium Gene Database", "status": "deprecated", "contacts": [{"contact-name": "Acytostelium genome consortium", "contact-email": "hidek@biol.tsukuba.ac.jp"}], "homepage": "http://cosmos.bot.kyoto-u.ac.jp/acytodb//cgi-bin/index.cgi?org=as", "identifier": 2301, "description": "Genome and transcriptome database of Acytostelium subglobosum", "year-creation": 2008, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000775", "bsg-d000775"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science", "Transcriptomics"], "domains": ["DNA sequence data", "Gene model annotation"], "taxonomies": ["Acytostelium subglobosum"], "user-defined-tags": [], "countries": ["United Kingdom", "Japan"], "name": "FAIRsharing record for: Acytostelium Gene Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.meh9wz", "doi": "10.25504/FAIRsharing.meh9wz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genome and transcriptome database of Acytostelium subglobosum", "publications": [{"id": 1139, "pubmed_id": 25758444, "title": "Comparative genome and transcriptome analyses of the social amoeba Acytostelium subglobosum that accomplishes multicellular development without germ-soma differentiation", "year": 2015, "url": "http://doi.org/10.1186/s12864-015-1278-x", "authors": "Urushihara H, Kuwayama H, Fukuhara K, Itoh T, Kagoshima H, Shin-I T, Toyoda A, Ohishi K, Taniguchi T, Noguchi H, Kuroki Y, Hata T, Uchi K, Mohri K, King JS, Insall RH, Kohara Y, Fujiyama A", "journal": "BMC Genomics", "doi": "10.1186/s12864-015-1278-x", "created_at": "2021-09-30T08:24:26.556Z", "updated_at": "2021-09-30T08:24:26.556Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3237", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T17:39:28.000Z", "updated-at": "2021-12-06T10:47:40.966Z", "metadata": {"name": "Geochron", "status": "ready", "contacts": [{"contact-name": "James D. Walker", "contact-email": "jdwalker@ku.edu"}], "homepage": "https://www.geochron.org/", "identifier": 3237, "description": "Geochron is a database system designed to capture complete data and metadata to document geochronologic age estimation, allowing future reuse, recalculation, and integration with other data.", "abbreviation": "Geochron", "data-processes": [{"url": "https://www.geochron.org/geochronsearch", "name": "General search", "type": "data access"}, {"url": "https://www.geochron.org/detritalsearch", "name": "Detrital search", "type": "data access"}, {"url": "https://www.geochron.org/submitdata", "name": "Submit data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011537", "name": "re3data:r3d100011537", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001751", "bsg-d001751"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geoinformatics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geochronology", "thermochronology"], "countries": ["United States"], "name": "FAIRsharing record for: Geochron", "abbreviation": "Geochron", "url": "https://fairsharing.org/fairsharing_records/3237", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Geochron is a database system designed to capture complete data and metadata to document geochronologic age estimation, allowing future reuse, recalculation, and integration with other data.", "publications": [], "licence-links": [{"licence-name": "Geochron Privacy", "licence-id": 336, "link-id": 2163, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2475", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-05T12:32:59.000Z", "updated-at": "2021-12-06T10:49:29.602Z", "metadata": {"doi": "10.25504/FAIRsharing.y2vm4r", "name": "Taiwan Biodiversity Information Facility IPT - GBIF Taiwan", "status": "ready", "contacts": [{"contact-name": "Kun-Chi Lai", "contact-email": "east0122@gate.sinica.edu.tw"}], "homepage": "http://ipt.taibif.tw/", "identifier": 2475, "description": "TaiBIF (Taiwan Biodiversity Information Facility) is the Taiwan portal of GBIF. Although Taiwan\u2019s land is not spacious, it possesses extraordinarily abundant biodiversity resources and many endemic species. TaiBIF is in charge of integrating Taiwan's biodiversity information, including lists of species and local experts, illustrations of species, introduction of endemic species and invasive species, Taiwan's terrestrial and marine organisms, biodiversity literature, geographical and environmental information, information about relevant institutions, organizations, projects, and observation spots, the Catalog of Life (a list of Taiwanese endemic species), and publications.", "abbreviation": "TaiBIF IPT - GBIF Taiwan", "support-links": [{"url": "yuhuangwang@gmail.com", "name": "Yu-Huang Wang", "type": "Support email"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "data-processes": [{"url": "http://ipt.taibif.tw/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011310", "name": "re3data:r3d100011310", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000957", "bsg-d000957"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: Taiwan Biodiversity Information Facility IPT - GBIF Taiwan", "abbreviation": "TaiBIF IPT - GBIF Taiwan", "url": "https://fairsharing.org/10.25504/FAIRsharing.y2vm4r", "doi": "10.25504/FAIRsharing.y2vm4r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TaiBIF (Taiwan Biodiversity Information Facility) is the Taiwan portal of GBIF. Although Taiwan\u2019s land is not spacious, it possesses extraordinarily abundant biodiversity resources and many endemic species. TaiBIF is in charge of integrating Taiwan's biodiversity information, including lists of species and local experts, illustrations of species, introduction of endemic species and invasive species, Taiwan's terrestrial and marine organisms, biodiversity literature, geographical and environmental information, information about relevant institutions, organizations, projects, and observation spots, the Catalog of Life (a list of Taiwanese endemic species), and publications.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 86, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 87, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 89, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 90, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2078", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:24.365Z", "metadata": {"doi": "10.25504/FAIRsharing.3axym7", "name": "Germplasm Resources Information Network", "status": "ready", "contacts": [{"contact-email": "dbmu@ars-grin.gov"}], "homepage": "https://www.ars-grin.gov/", "identifier": 2078, "description": "GRIN provides National Genetic Resources Program (NGRP) personnel and germplasm users continuous access to databases for the maintenance of passport, characterization, evaluation, inventory, and distribution data important for the effective management and utilization of national germplasm collections.", "abbreviation": "GRIN", "support-links": [{"url": "https://www.ars-grin.gov/Pages/Collections", "name": "About Collections", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://www.ars-grin.gov/", "name": "Search", "type": "data access"}, {"url": "https://npgsweb.ars-grin.gov/gringlobal/search", "name": "Search with GRIN-GLOBAL", "type": "data access"}]}, "legacy-ids": ["biodbcore-000546", "bsg-d000546"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Cell", "Cell culture", "Germplasm"], "taxonomies": ["Bacteria", "Metazoa", "Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Germplasm Resources Information Network", "abbreviation": "GRIN", "url": "https://fairsharing.org/10.25504/FAIRsharing.3axym7", "doi": "10.25504/FAIRsharing.3axym7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GRIN provides National Genetic Resources Program (NGRP) personnel and germplasm users continuous access to databases for the maintenance of passport, characterization, evaluation, inventory, and distribution data important for the effective management and utilization of national germplasm collections.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3149", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T09:46:24.000Z", "updated-at": "2022-02-08T10:34:07.212Z", "metadata": {"doi": "10.25504/FAIRsharing.bf65d9", "name": "meereisportal.de Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@meereisportal.de"}], "homepage": "https://data.seaiceportal.de", "citations": [{"publication-id": 3032}], "identifier": 3149, "description": "The data and image archive of meereisportal.de is an open data portal providing sea ice data for the Arctic and Antarctic. In addition to graphic representations of the underlying verified data and derived data products, it is also possible to download the data for further processing. It is intended as a service both for scientific groups performing research on sea ice and as a platform for communicating the results of their research. Information is available in German and English. The URL seaiceportal.de is used to designate those areas of the website, such as this data portal, which are available in English.", "abbreviation": null, "year-creation": 2013, "data-processes": [{"url": "https://data.seaiceportal.de/gallery/index_new.php?lang=en_US&active-tab1=method", "name": "Search by Method", "type": "data access"}, {"url": "https://data.seaiceportal.de/gallery/index_new.php?lang=en_US&active-tab1=measurement", "name": "Search by Parameter", "type": "data access"}, {"url": "https://data.seaiceportal.de/gallery/index_new.php?lang=en_US&active-tab1=derived_products", "name": "Search by Derived Products", "type": "data access"}, {"url": "https://data.seaiceportal.de/gallery/index_new.php?lang=en_US&active-tab1=mosaic", "name": "Search MOSAiC Data", "type": "data access"}, {"name": "Downloads available", "type": "data release"}]}, "legacy-ids": ["biodbcore-001660", "bsg-d001660"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science", "Remote Sensing"], "domains": ["Climate", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Antarctic", "Arctic", "Sea ice"], "countries": ["Germany"], "name": "FAIRsharing record for: meereisportal.de Data Portal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bf65d9", "doi": "10.25504/FAIRsharing.bf65d9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The data and image archive of meereisportal.de is an open data portal providing sea ice data for the Arctic and Antarctic. In addition to graphic representations of the underlying verified data and derived data products, it is also possible to download the data for further processing. It is intended as a service both for scientific groups performing research on sea ice and as a platform for communicating the results of their research. Information is available in German and English. The URL seaiceportal.de is used to designate those areas of the website, such as this data portal, which are available in English.", "publications": [{"id": 3032, "pubmed_id": null, "title": "Online sea-ice knowledge and data platform ", "year": 2016, "url": "http://doi.org/10.2312/polfor.2016.011", "authors": "Grosfeld, K.; Treffeisen, R.; Asseng, J.; Bartsch, A.; Br\u00e4uer, B.; Fritzsch, B.; Gerdes, R.; Hendricks, S.; Hiller, W.; Heygster, G.; Krumpen, T.; Lemke, P.; Melsheimer, C.; Nicolaus, M.; Ricker, R. and Weigelt, M.", "journal": "Polarforschung, Bremerhaven, Alfred Wegener Institute for Polar and Marine Research & German Society of Polar Research, 85 (2), 143-155", "doi": null, "created_at": "2021-09-30T08:28:13.650Z", "updated_at": "2021-09-30T08:28:13.650Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1740", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:51.920Z", "metadata": {"doi": "10.25504/FAIRsharing.2sqcxs", "name": "Nottingham Arabidopsis Stock Centre Seeds Database", "status": "ready", "contacts": [{"contact-name": "Sean May", "contact-email": "sean@arabidopsis.org.uk", "contact-orcid": "0000-0001-5282-3250"}], "homepage": "http://arabidopsis.info", "identifier": 1740, "description": "The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", "abbreviation": "NASC", "support-links": [{"url": "http://arabidopsis.info/InfoPages?template=ask_a_question;web_section=germplasm", "type": "Contact form"}, {"url": "bioinfo@arabidopsis.org.uk", "type": "Support email"}, {"url": "http://arabidopsis.info/InfoPages?template=orderfaq;web_section=germplasm", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://arabidopsis.info/InfoPages?template=help", "type": "Help documentation"}, {"url": "https://twitter.com/NascArabidopsis", "type": "Twitter"}], "year-creation": 1991, "data-processes": [{"url": "http://arabidopsis.info/BrowsePage", "name": "browse", "type": "data access"}, {"url": "http://arabidopsis.info/BasicForm", "name": "search", "type": "data access"}, {"url": "http://arabidopsis.info/AdvancedForm", "name": "advanced search", "type": "data access"}, {"url": "http://arabidopsis.info/cgi-bin/ontology/nasc_po/go.cgi?action=plus_node", "name": "ontology browser", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010906", "name": "re3data:r3d100010906", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004576", "name": "SciCrunch:RRID:SCR_004576", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000198", "bsg-d000198"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Insertion sequence", "Genome"], "taxonomies": ["Arabidopsis thaliana", "Brassica"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Nottingham Arabidopsis Stock Centre Seeds Database", "abbreviation": "NASC", "url": "https://fairsharing.org/10.25504/FAIRsharing.2sqcxs", "doi": "10.25504/FAIRsharing.2sqcxs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", "publications": [{"id": 257, "pubmed_id": 14681484, "title": "NASCArrays: a repository for microarray data generated by NASC's transcriptomics service.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh133", "authors": "Craigon DJ., James N., Okyere J., Higgins J., Jotham J., May S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh133", "created_at": "2021-09-30T08:22:47.782Z", "updated_at": "2021-09-30T08:22:47.782Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3319", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-26T14:55:26.000Z", "updated-at": "2021-12-06T10:47:42.624Z", "metadata": {"name": "IsoArcH database", "status": "ready", "contacts": [{"contact-name": "Dr. Kevin Salesse", "contact-email": "contact@isoarch.eu", "contact-orcid": "0000-0003-2492-1536"}], "homepage": "https://isoarch.eu/", "citations": [{"doi": "https://doi.org/10.1016/j.jasrep.2017.07.030", "publication-id": 1408}], "identifier": 3319, "description": "IsoArcH is an open access, collaborative isotope database for bioarchaeological samples without geographical or chronological restrictions. It consists of georeferenced isotopic, archaeological, and anthropological information related to the study of 1) dietary and mobility patterns of human and animal populations, 2) animal and crop management practices, and 3) past climates and environments. IsoArcH aims at facilitating information exchange, collaboration, and discussion between science-based archaeologists (anthropologists, zooarchaeologists, archaeobotanists, etc.), generalist archaeologists, and historians.", "abbreviation": "IsoArcH", "support-links": [{"url": "https://isoarch.eu/index.php/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "contact@isoarch.eu", "name": "Dr. Kevin Salesse", "type": "Support email"}, {"url": "https://isoarch.eu/index.php/data-sharing/", "name": "Submission Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/isoarch_eu", "name": "@isoarch_eu", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://database.isoarch.eu/map.php", "name": "Map View", "type": "data access"}, {"url": "https://database.isoarch.eu/", "name": "Search (Registration required)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013383", "name": "re3data:r3d100013383", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001834", "bsg-d001834"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Humanities", "Anthropology"], "domains": ["Geographical location", "Climate", "Diet", "Biological sample"], "taxonomies": ["All"], "user-defined-tags": ["Archaeology", "biogeochemistry"], "countries": ["European Union", "France"], "name": "FAIRsharing record for: IsoArcH database", "abbreviation": "IsoArcH", "url": "https://fairsharing.org/fairsharing_records/3319", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IsoArcH is an open access, collaborative isotope database for bioarchaeological samples without geographical or chronological restrictions. It consists of georeferenced isotopic, archaeological, and anthropological information related to the study of 1) dietary and mobility patterns of human and animal populations, 2) animal and crop management practices, and 3) past climates and environments. IsoArcH aims at facilitating information exchange, collaboration, and discussion between science-based archaeologists (anthropologists, zooarchaeologists, archaeobotanists, etc.), generalist archaeologists, and historians.", "publications": [{"id": 1408, "pubmed_id": null, "title": "IsoArcH.eu: An open-access and collaborative isotope database for bioarchaeological samples from the Graeco-Roman world and its margins", "year": 2018, "url": "http://doi.org/https://doi.org/10.1016/j.jasrep.2017.07.030", "authors": "Salesse et al.", "journal": "Journal of Archaeological Science: Reports", "doi": "https://doi.org/10.1016/j.jasrep.2017.07.030", "created_at": "2021-09-30T08:24:57.410Z", "updated_at": "2021-09-30T08:24:57.410Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2443, "relation": "undefined"}, {"licence-name": "IsoArcH: Registration required for saving queries and submitting", "licence-id": 456, "link-id": 2444, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2457", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-12T19:13:39.000Z", "updated-at": "2022-01-11T14:34:49.129Z", "metadata": {"doi": "10.25504/FAIRsharing.6hb7c1", "name": "Chile National Health Survey 2009-2010", "status": "deprecated", "contacts": [{"contact-name": "jpalegre@minsal.cl", "contact-email": "jpalegre@minsal.cl"}], "homepage": "http://epi.minsal.cl/bases-de-datos/", "citations": [], "identifier": 2457, "description": "The Chile National Health Survey 2009-2010 includes health status questionnaires including the SF-12, mental health questionnaires, physical activity questionnaires, and biological measurements taken during a physical exam.", "abbreviation": "Chile NHS 2009", "year-creation": 2009, "deprecation-date": "2022-01-05", "deprecation-reason": "This resource no longer fits within our remit as a database. Please get in touch with us if you have information relating to this resource's status."}, "legacy-ids": ["biodbcore-000939", "bsg-d000939"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Chile"], "name": "FAIRsharing record for: Chile National Health Survey 2009-2010", "abbreviation": "Chile NHS 2009", "url": "https://fairsharing.org/10.25504/FAIRsharing.6hb7c1", "doi": "10.25504/FAIRsharing.6hb7c1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chile National Health Survey 2009-2010 includes health status questionnaires including the SF-12, mental health questionnaires, physical activity questionnaires, and biological measurements taken during a physical exam.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2881", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-29T07:18:27.000Z", "updated-at": "2021-11-24T13:13:57.483Z", "metadata": {"doi": "10.25504/FAIRsharing.4APEVR", "name": "Global Project Management System Tuberculosis Transportal", "status": "ready", "contacts": [{"contact-name": "Bindu Madhuri K", "contact-email": "madhu39399@gmail.com", "contact-orcid": "0000-0002-0875-4419"}], "homepage": "https://tbindia.indiancst.com/GPMSTBTransportal/", "identifier": 2881, "description": "Global Project Management System Tuberculosis Transportal (GPMS TB Transportal) is a digital platform piloting TB surveillance in the 4 districts of Karnataka. It is an integrated dashboard that contains the information of all the TB control programs. As per section 3.3 of the Sustainable Development Goals (SDG) of the United Nations, health for all and eradication of TB and Malaria by 2030 are identified targets. GPMS TB Transportal was created to aid the identification of new TB cases, improve treatment compliance, and reduce the death of TB patients in Karnataka. This resource will also be used to develop early TB presumptive patients' diagnoses.", "abbreviation": "GPMS TB Transportal", "support-links": [{"url": "rajaseevan@gmail.com", "name": "Shri. RAJA SEEVAN", "type": "Support email"}, {"url": "rajaseevan@indiancst.in", "name": "Shri. RAJA SEEVAN", "type": "Support email"}, {"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/acfdailyreport/live_graph", "name": "Analytics", "type": "Help documentation"}, {"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/elearning/usermanual", "name": "GPMS User Manual", "type": "Help documentation"}, {"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/elearning/databaseframework", "name": "Database Framework", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/form_two/view_records", "name": "Browse Form Four Data", "type": "data access"}, {"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/form_one/view_form_two_records", "name": "Browse Form Two Data", "type": "data access"}, {"url": "https://tbindia.indiancst.com/GPMSTBTransportal/index.php/form_one/view_records", "name": "Browse Form One Data", "type": "data access"}, {"name": "Downloading information: The data is not downloadable, only accessible according to National Data Sharing and Accessibility Policy (NDSAP) and National eHealth Authority (NeHA)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001382", "bsg-d001382"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Epidemiology"], "domains": ["Disease onset", "Disease", "Diagnosis", "Treatment"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Global Project Management System Tuberculosis Transportal", "abbreviation": "GPMS TB Transportal", "url": "https://fairsharing.org/10.25504/FAIRsharing.4APEVR", "doi": "10.25504/FAIRsharing.4APEVR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Global Project Management System Tuberculosis Transportal (GPMS TB Transportal) is a digital platform piloting TB surveillance in the 4 districts of Karnataka. It is an integrated dashboard that contains the information of all the TB control programs. As per section 3.3 of the Sustainable Development Goals (SDG) of the United Nations, health for all and eradication of TB and Malaria by 2030 are identified targets. GPMS TB Transportal was created to aid the identification of new TB cases, improve treatment compliance, and reduce the death of TB patients in Karnataka. This resource will also be used to develop early TB presumptive patients' diagnoses.", "publications": [], "licence-links": [{"licence-name": "National Data Sharing and Accessibility Policy (NDSAP)", "licence-id": 544, "link-id": 117, "relation": "undefined"}, {"licence-name": "National eHealth Authority (NeHA)", "licence-id": 545, "link-id": 124, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2810", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-30T19:32:48.000Z", "updated-at": "2022-02-01T10:48:40.695Z", "metadata": {"name": "Chinese National Arctic and Antarctic Data Center", "status": "uncertain", "contacts": [{"contact-name": "General Enquiries", "contact-email": "nadc@pric.org.cn"}], "homepage": "https://www.chinare.org.cn/en/", "citations": [], "identifier": 2810, "description": "The Chinese National Artic and Antarctic Data centre collects, analyses and preserves datasets from the polar environment.", "abbreviation": null, "support-links": [{"url": "https://www.chinare.org.cn/en/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.chinare.org.cn/en/help/using-help", "name": "Help and FAQ", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.chinare.org.cn/en/data", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011380", "name": "re3data:r3d100011380", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001309", "bsg-d001309"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Antarctic", "Arctic"], "countries": ["China"], "name": "FAIRsharing record for: Chinese National Arctic and Antarctic Data Center", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2810", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chinese National Artic and Antarctic Data centre collects, analyses and preserves datasets from the polar environment.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2659", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-25T00:52:33.000Z", "updated-at": "2021-11-24T13:14:55.668Z", "metadata": {"doi": "10.25504/FAIRsharing.Zz0lIi", "name": "Brainbase", "status": "uncertain", "contacts": [{"contact-email": "brainbase@sapienlabs.org"}], "homepage": "https://brainbase.io", "identifier": 2659, "description": "Brainbase is a data management, collaboration and sharing platform for the human neuroscience community. The platform provides private research collaboration workspaces, tools to flexibly organize and track subjects and sessions within studies, validation tools to check that metadata and datasets are complete and public sharing tools. Publicly shared data is searchable. FAIRsharing has marked this record as Uncertain because the homepage for Brainbase (https://brainbase.io) now sits behind a login screen, and therefore we cannot accurately assess the status of the resource. If you have any information on this resource, please get in touch.", "abbreviation": "Brainbase", "support-links": [{"url": "https://sapienlabs.co/brainbase-beta/", "name": "Brainbase Beta Blog Post", "type": "Blog/News"}, {"url": "https://twitter.com/sapien_labs", "name": "@sapien_labs", "type": "Twitter"}], "year-creation": 2018}, "legacy-ids": ["biodbcore-001152", "bsg-d001152"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Neuroscience"], "domains": ["Imaging", "Functional magnetic resonance imaging", "Electroencephalography", "Brain"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Brainbase", "abbreviation": "Brainbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.Zz0lIi", "doi": "10.25504/FAIRsharing.Zz0lIi", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Brainbase is a data management, collaboration and sharing platform for the human neuroscience community. The platform provides private research collaboration workspaces, tools to flexibly organize and track subjects and sessions within studies, validation tools to check that metadata and datasets are complete and public sharing tools. Publicly shared data is searchable. FAIRsharing has marked this record as Uncertain because the homepage for Brainbase (https://brainbase.io) now sits behind a login screen, and therefore we cannot accurately assess the status of the resource. If you have any information on this resource, please get in touch.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2294", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-27T12:00:36.000Z", "updated-at": "2021-12-06T10:47:55.284Z", "metadata": {"doi": "10.25504/FAIRsharing.3rv9m8", "name": "Ocean Biodiversity Information System", "status": "ready", "contacts": [{"contact-name": "Ward Appeltans", "contact-email": "w.appeltans@unesco.org", "contact-orcid": "0000-0002-3237-4547"}], "homepage": "https://obis.org/", "identifier": 2294, "description": "The Ocean Biodiversity (formerly Biogeographic) information System (OBIS) seeks to absorb, integrate, and assess isolated datasets into a larger, more comprehensive pictures of life in our oceans. The system hopes to stimulate research about our oceans to generate new hypotheses concerning evolutionary processes, species distributions, and roles of organisms in marine systems on a global scale. The abstract maps that OBIS generates are maps that contribute to the \u2018big picture\u2019 of our oceans: a comprehensive, collaborative, world-wide view of our oceans. OBIS provides a portal or gateway to many datasets containing information on where and when marine species have been recorded. The datasets are integrated so you can search them all seamlessly by species name, higher taxonomic level, geographic area, depth, and time; and then map and find environmental data related to the locations.", "abbreviation": "OBIS", "access-points": [{"url": "https://api.obis.org/", "name": "OBIS REST API", "type": "REST"}], "support-links": [{"url": "https://obis.org/data/policy/", "name": "OBIS Data Policy", "type": "Help documentation"}, {"url": "https://obis.org/manual/", "name": "The OBIS Manual", "type": "Help documentation"}, {"url": "https://www.slideshare.net/OBIS-IOC/presentations", "name": "OBIS Presentations (Slideshare)", "type": "Help documentation"}, {"url": "https://obis.org/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://obis.org/about/", "name": "About OBIS", "type": "Help documentation"}, {"url": "https://obis.org/training/", "name": "OBIS Training", "type": "Training documentation"}, {"url": "https://twitter.com/OBISNetwork", "name": "@OBISNetwork", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "https://mapper.obis.org/", "name": "Browse via Map", "type": "data access"}, {"url": "https://obis.org/manual/contribute/", "name": "Submitting Data", "type": "data curation"}], "associated-tools": [{"url": "https://obis.org/manual/accessr", "name": "OBIS R package"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010088", "name": "re3data:r3d100010088", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006933", "name": "SciCrunch:RRID:SCR_006933", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000768", "bsg-d000768"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geography", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Ocean Biodiversity Information System", "abbreviation": "OBIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.3rv9m8", "doi": "10.25504/FAIRsharing.3rv9m8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ocean Biodiversity (formerly Biogeographic) information System (OBIS) seeks to absorb, integrate, and assess isolated datasets into a larger, more comprehensive pictures of life in our oceans. The system hopes to stimulate research about our oceans to generate new hypotheses concerning evolutionary processes, species distributions, and roles of organisms in marine systems on a global scale. The abstract maps that OBIS generates are maps that contribute to the \u2018big picture\u2019 of our oceans: a comprehensive, collaborative, world-wide view of our oceans. OBIS provides a portal or gateway to many datasets containing information on where and when marine species have been recorded. The datasets are integrated so you can search them all seamlessly by species name, higher taxonomic level, geographic area, depth, and time; and then map and find environmental data related to the locations.", "publications": [{"id": 1135, "pubmed_id": 25858475, "title": "Conservation of biodiversity through taxonomy, data publication, and collaborative infrastructures.", "year": 2015, "url": "http://doi.org/10.1111/cobi.12496", "authors": "Costello MJ,Vanhoorne B,Appeltans W", "journal": "Conserv Biol", "doi": "10.1111/cobi.12496", "created_at": "2021-09-30T08:24:25.982Z", "updated_at": "2021-09-30T08:24:25.982Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2081, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2082, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2083, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3245", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-17T19:51:11.000Z", "updated-at": "2021-12-06T10:48:06.937Z", "metadata": {"doi": "10.25504/FAIRsharing.7qwrhY", "name": "Canadian Open Neuroscience Platform (CONP) Portal", "status": "ready", "contacts": [{"contact-name": "CONP info", "contact-email": "info@conp.ca"}], "homepage": "https://portal.conp.ca", "identifier": 3245, "description": "The CONP portal is a web interface for the Canadian Open Neuroscience Platform (CONP) to facilitate open science in the neuroscience community. CONP simplifies global researcher access and sharing of datasets and tools. The portal internalizes the cycle of a typical research project: starting with data acquisition, followed by processing using already existing/published tools, and ultimately publication of the obtained results including a link to the original dataset. From more information on CONP, please visit https://conp.ca", "abbreviation": "CONP Portal", "support-links": [{"url": "https://portal.conp.ca/contact_us", "name": "CONP Portal Contact Us Form", "type": "Contact form"}, {"url": "info@conp.ca", "name": "CONP information", "type": "Support email"}, {"url": "https://portal.conp.ca/faq", "name": "CONP Portal FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://portal.conp.ca/tutorial", "name": "CONP Portal Tutorial", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://portal.conp.ca/search", "name": "Search data", "type": "data access"}, {"url": "https://portal.conp.ca/pipelines", "name": "Search pipelines", "type": "data access"}, {"url": "https://portal.conp.ca/share", "name": "Share data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013461", "name": "re3data:r3d100013461", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_016433", "name": "SciCrunch:RRID:SCR_016433", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001759", "bsg-d001759"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenomics", "Bioinformatics", "Biological Psychology", "Computational Neuroscience", "Life Science", "Neuroscience"], "domains": ["Medical imaging"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Canadian Open Neuroscience Platform (CONP) Portal", "abbreviation": "CONP Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.7qwrhY", "doi": "10.25504/FAIRsharing.7qwrhY", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CONP portal is a web interface for the Canadian Open Neuroscience Platform (CONP) to facilitate open science in the neuroscience community. CONP simplifies global researcher access and sharing of datasets and tools. The portal internalizes the cycle of a typical research project: starting with data acquisition, followed by processing using already existing/published tools, and ultimately publication of the obtained results including a link to the original dataset. From more information on CONP, please visit https://conp.ca", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3170", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-04T12:45:40.000Z", "updated-at": "2021-12-06T10:47:37.723Z", "metadata": {"name": "AErosol RObotic NETwork", "status": "ready", "contacts": [{"contact-name": "David Giles", "contact-email": "David.M.Giles@nasa.gov"}], "homepage": "https://aeronet.gsfc.nasa.gov/new_web/data.html", "identifier": 3170, "description": "The AErosol RObotic NETwork (AERONET) database stores information collected by ground-based remote sensing aerosol networks originally established by NASA and LOA-PHOTONS (CNRS). AERONET includes data on aerosol optical, microphysical and radiative properties for aerosol research as well as characterization and validation of satellite retrievals with other databases. The network imposes standardization of instruments, calibration, processing and distribution. AERONET also provides globally distributed observations of spectral aerosol optical Depth (AOD), inversion products, and precipitable water in diverse aerosol regimes.", "abbreviation": "AERONET", "support-links": [{"url": "https://aeronet.gsfc.nasa.gov/new_web/announce.html", "name": "News and Announcements", "type": "Blog/News"}, {"url": "https://aeronet.gsfc.nasa.gov/new_web/file_help.html", "name": "Data File Help", "type": "Help documentation"}, {"url": "https://aeronet.gsfc.nasa.gov/new_web/system_descriptions.html", "name": "About AERONET", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://aeronet.gsfc.nasa.gov/cgi-bin/bamgomas_interactive", "name": "Search All Data", "type": "data access"}, {"url": "https://aeronet.gsfc.nasa.gov/cgi-bin/draw_map_display_inv_v3", "name": "Browse Aerosol Inversions", "type": "data access"}, {"url": "https://aeronet.gsfc.nasa.gov/cgi-bin/draw_map_display_seaprism_v3", "name": "Browse Ocean Color Data", "type": "data access"}, {"url": "https://aeronet.gsfc.nasa.gov/cgi-bin/type_piece_of_map_cloud", "name": "Browse Cloud Mode", "type": "data access"}, {"url": "https://aeronet.gsfc.nasa.gov/cgi-bin/draw_map_display_aod_v3", "name": "Browse Aerosol Optical Depth Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011742", "name": "re3data:r3d100011742", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001681", "bsg-d001681"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Atmospheric Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol"], "countries": ["United States"], "name": "FAIRsharing record for: AErosol RObotic NETwork", "abbreviation": "AERONET", "url": "https://fairsharing.org/fairsharing_records/3170", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AErosol RObotic NETwork (AERONET) database stores information collected by ground-based remote sensing aerosol networks originally established by NASA and LOA-PHOTONS (CNRS). AERONET includes data on aerosol optical, microphysical and radiative properties for aerosol research as well as characterization and validation of satellite retrievals with other databases. The network imposes standardization of instruments, calibration, processing and distribution. AERONET also provides globally distributed observations of spectral aerosol optical Depth (AOD), inversion products, and precipitable water in diverse aerosol regimes.", "publications": [], "licence-links": [{"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1949, "relation": "undefined"}, {"licence-name": "AERONET Data Usage and Guidelines", "licence-id": 14, "link-id": 1950, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3672", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-09T16:03:15.673Z", "updated-at": "2021-12-10T11:28:50.680Z", "metadata": {"name": "Arch", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "digitalscholarship@northwestern.edu", "contact-orcid": null}], "homepage": "https://arch.library.northwestern.edu/", "citations": [], "identifier": 3672, "description": "Arch is an open access repository for the research and scholarly output of Northwestern University.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://arch.library.northwestern.edu/contact?locale=en", "name": "Contact Form", "type": "Contact form"}, {"url": "https://arch.library.northwestern.edu/help?locale=en", "name": "Help", "type": "Help documentation"}, {"url": "https://arch.library.northwestern.edu/about?locale=en", "name": "About", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://arch.library.northwestern.edu/dashboard/my/works?locale=en", "name": "Data Deposition (Institution only)", "type": "data curation"}, {"url": "https://arch.library.northwestern.edu/catalog?locale=en", "name": "Browse", "type": "data access"}, {"url": "https://arch.library.northwestern.edu/", "name": "Search", "type": "data access"}, {"url": "https://arch.library.northwestern.edu/catalog?Bresource_type_sim=Dataset&_=1507752905211&f%5Bresource_type_sim%5D%5B%5D=Dataset", "name": "Browse Datasets", "type": "data access"}, {"url": "https://arch.library.northwestern.edu/catalog?f%5Bhuman_readable_type_sim%5D%5B%5D=Collection", "name": "Browse Collections", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {"url": "https://arch.library.northwestern.edu/about?locale=en", "type": "open"}, "resource-sustainability": {"url": "https://www.library.northwestern.edu/about/administration/policies/digital-preservation-policy.html", "name": "Commitment to Sustainability: Level 1"}, "data-contact-information": "yes", "data-preservation-policy": {"url": "http://www.library.northwestern.edu/about/administration/policies/digital-preservation-policy.html", "name": "Digital Preservation Policy: Level 1"}, "data-deposition-condition": {"url": "https://arch.library.northwestern.edu/about?locale=en", "type": "controlled"}, "data-access-for-pre-publication-review": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["United States"], "name": "FAIRsharing record for: Arch", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3672", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Arch is an open access repository for the research and scholarly output of Northwestern University.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2012", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:26.287Z", "metadata": {"doi": "10.25504/FAIRsharing.x80z26", "name": "The Cardiovascular Research Grid", "status": "ready", "contacts": [{"contact-name": "Stephen Granite", "contact-email": "sgranite@jhu.edu", "contact-orcid": "0000-0002-0956-7500"}], "homepage": "https://www.cvrgrid.org/", "citations": [], "identifier": 2012, "description": "The CardioVascular Research Grid (CVRG) project is creating an infrastructure for sharing cardiovascular data and data analysis tools. CVRG tools are developed using the Software as a Service model, allowing users to access tools through their browser, thus eliminating the need to install and maintain complex software.", "abbreviation": "CVRG", "support-links": [{"url": "https://www.facebook.com/CVRGrid/", "name": "Facebook", "type": "Facebook"}, {"url": "http://cvrgrid.org/email-list", "type": "Mailing list"}, {"url": "http://wiki.cvrgrid.org/index.php/Main_Page", "name": "Wiki", "type": "Help documentation"}, {"url": "http://cvrgrid.org/taxonomy/term/32", "name": "Webinars", "type": "Help documentation"}, {"url": "https://twitter.com/CVRGrid", "type": "Twitter"}], "data-processes": [{"url": "http://cvrgrid.org/data/available-datasets", "name": "Browse Data", "type": "data access"}], "associated-tools": [{"url": "http://cvrgrid.org/tools/cardiac-ca", "name": "Cardiac CAWorks"}, {"url": "http://cvrgrid.org/tools/cvrg-imaging-informatics-platform", "name": "CVRG Imaging Informatics Platform"}, {"url": "http://cvrgrid.org/tools/waveform-ecg", "name": "Waveform ECG"}, {"url": "http://cvrgrid.org/tools/eureka-clinical-analytics", "name": "CVRG Eureka! Clinical Analytics"}, {"url": "http://cvrgrid.org/tools/imaging-mediawiki", "name": "CVRG Cardiovascular Imaging Framework Semantic Media Wiki"}, {"url": "http://cvrgrid.org/tools/eddi", "name": "Electrophysiology Data Discovery Index"}, {"url": "https://portal.cvrgrid.org", "name": "Tool Demo Portal"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012849", "name": "re3data:r3d100012849", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004472", "name": "SciCrunch:RRID:SCR_004472", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000478", "bsg-d000478"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Life Science", "Biomedical Science"], "domains": ["Modeling and simulation", "Heart", "Software"], "taxonomies": ["Canis", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Cardiovascular Research Grid", "abbreviation": "CVRG", "url": "https://fairsharing.org/10.25504/FAIRsharing.x80z26", "doi": "10.25504/FAIRsharing.x80z26", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CardioVascular Research Grid (CVRG) project is creating an infrastructure for sharing cardiovascular data and data analysis tools. CVRG tools are developed using the Software as a Service model, allowing users to access tools through their browser, thus eliminating the need to install and maintain complex software.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2548", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-05T14:22:52.000Z", "updated-at": "2021-12-06T10:49:16.522Z", "metadata": {"doi": "10.25504/FAIRsharing.thskvr", "name": "Code Ocean", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "contact@codeocean.com"}], "homepage": "https://codeocean.com", "identifier": 2548, "description": "Code Ocean is a cloud-based computational reproducibility platform that provides researchers and developers an easy way to share, discover and run code published in academic journals and conferences. The platform provides open access to the published software code and data to view and download for everyone for free. Users can execute all published code without installing anything on their personal computer. Everything runs in the cloud on CPUs or GPUs according to the user needs.", "abbreviation": "CO", "support-links": [{"url": "https://codeocean.com/blog", "name": "Code Ocean Blog", "type": "Blog/News"}, {"url": "https://codeocean.com/contact", "name": "Contact form", "type": "Contact form"}, {"url": "https://help.codeocean.com", "name": "Help center", "type": "Help documentation"}, {"url": "https://twitter.com/CodeOceanHQ", "name": "CodeOceanHQ", "type": "Twitter"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012369", "name": "re3data:r3d100012369", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_015532", "name": "SciCrunch:RRID:SCR_015532", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001031", "bsg-d001031"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Code Ocean", "abbreviation": "CO", "url": "https://fairsharing.org/10.25504/FAIRsharing.thskvr", "doi": "10.25504/FAIRsharing.thskvr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Code Ocean is a cloud-based computational reproducibility platform that provides researchers and developers an easy way to share, discover and run code published in academic journals and conferences. The platform provides open access to the published software code and data to view and download for everyone for free. Users can execute all published code without installing anything on their personal computer. Everything runs in the cloud on CPUs or GPUs according to the user needs.", "publications": [], "licence-links": [{"licence-name": "Code Ocean Terms of Use", "licence-id": 142, "link-id": 935, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2495", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T12:05:32.000Z", "updated-at": "2021-12-06T10:48:05.990Z", "metadata": {"doi": "10.25504/FAIRsharing.7388wt", "name": "NASA Goddard Earth Sciences Data and Information Services Center", "status": "ready", "contacts": [{"contact-name": "Dave Meyer", "contact-email": "david.j.meyer@nasa.gov"}], "homepage": "https://disc.gsfc.nasa.gov", "identifier": 2495, "description": "The NASA Goddard Earth Sciences (GES) Data and Information Services Center (DISC) is located at the Goddard Space Flight Center (GSFC) in Greenbelt, Maryland, and is one of 12 NASA Science Mission Directorate Data Centers that provide Earth science data, information, and services to research scientists, applications scientists, applications users, and students. They archive and support data sets applicable to several NASA Earth Science Focus Areas including: Atmospheric Composition, Water & Energy Cycles, and Climate Variability. The GES DISC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "GES DISC", "support-links": [{"url": "https://disc.gsfc.nasa.gov/information/alerts", "name": "Alerts", "type": "Blog/News"}, {"url": "https://disc.gsfc.nasa.gov/information/news", "name": "News", "type": "Blog/News"}, {"url": "gsfc-help-disc@lists.nasa.gov", "name": "Helpmail contact", "type": "Support email"}, {"url": "https://disc.gsfc.nasa.gov/information/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://forum.earthdata.nasa.gov/", "type": "Forum"}, {"url": "https://disc.gsfc.nasa.gov/information/howto", "name": "How to", "type": "Help documentation"}, {"url": "https://disc.gsfc.nasa.gov/information/glossary", "name": "Glossary", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/NASAGESDISC", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/NASA_GESDISC", "name": "@NASA_GESDISC", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"url": "https://disc.gsfc.nasa.gov/", "name": "Search & Browse", "type": "data access"}, {"url": "https://disc.gsfc.nasa.gov/information/data-release", "name": "Data Release", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000036", "name": "re3data:r3d100000036", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000977", "bsg-d000977"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NASA Goddard Earth Sciences Data and Information Services Center", "abbreviation": "GES DISC", "url": "https://fairsharing.org/10.25504/FAIRsharing.7388wt", "doi": "10.25504/FAIRsharing.7388wt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NASA Goddard Earth Sciences (GES) Data and Information Services Center (DISC) is located at the Goddard Space Flight Center (GSFC) in Greenbelt, Maryland, and is one of 12 NASA Science Mission Directorate Data Centers that provide Earth science data, information, and services to research scientists, applications scientists, applications users, and students. They archive and support data sets applicable to several NASA Earth Science Focus Areas including: Atmospheric Composition, Water & Energy Cycles, and Climate Variability. The GES DISC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2034, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2615", "type": "fairsharing-records", "attributes": {"created-at": "2018-06-07T12:52:27.000Z", "updated-at": "2022-02-08T10:28:21.350Z", "metadata": {"doi": "10.25504/FAIRsharing.d8fea5", "name": "Metabolonote", "status": "ready", "contacts": [{"contact-name": "Metabolonote Administrators", "contact-email": "metabolonote@kazusa.or.jp"}], "homepage": "http://metabolonote.kazusa.or.jp", "identifier": 2615, "description": "Metabolonote is a specialized database system that manages metadata for experimental data obtained through the study of Metabolomics. This system was developed with the aim of promoting the publication and utilization of Metabolomics data by simplifying the metadata recording process.", "abbreviation": "Metabolonote", "access-points": [{"url": "http://metabolonote.kazusa.or.jp/Help:Use_Data_From_External_System", "name": "API Information", "type": "REST"}], "support-links": [{"url": "http://metabolonote.kazusa.or.jp/Help:Create_New_Account", "name": "How to Create an Account", "type": "Help documentation"}, {"url": "http://metabolonote.kazusa.or.jp/Help:Data_Structure_ID", "name": "Structure and ID Notation", "type": "Help documentation"}, {"url": "http://metabolonote.kazusa.or.jp/Help:Setup_Metabolonote", "name": "How to Setup a Local Metabolonote Installation", "type": "Help documentation"}, {"url": "http://metabolonote.kazusa.or.jp/Help:Contents", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://metabolonote.kazusa.or.jp/Metabolonote:About", "name": "About Metabolonote", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://metabolonote.kazusa.or.jp/Special:PublicPages", "name": "Browse Data", "type": "data access"}, {"url": "http://metabolonote.kazusa.or.jp/Special:MetadataSearch", "name": "Metadata Search", "type": "data access"}, {"url": "http://metabolonote.kazusa.or.jp/Help:Create_New_Account", "name": "Register and Edit Metadata", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001099", "bsg-d001099"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Metabolomics"], "domains": ["Experimental measurement", "Protocol", "Study design"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Metabolonote", "abbreviation": "Metabolonote", "url": "https://fairsharing.org/10.25504/FAIRsharing.d8fea5", "doi": "10.25504/FAIRsharing.d8fea5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Metabolonote is a specialized database system that manages metadata for experimental data obtained through the study of Metabolomics. This system was developed with the aim of promoting the publication and utilization of Metabolomics data by simplifying the metadata recording process.", "publications": [{"id": 1360, "pubmed_id": 25905099, "title": "Metabolonote: a wiki-based database for managing hierarchical metadata of metabolome analyses.", "year": 2015, "url": "http://doi.org/10.3389/fbioe.2015.00038", "authors": "Ara T,Enomoto M,Arita M,Ikeda C,Kera K,Yamada M,Nishioka T,Ikeda T,Nihei Y,Shibata D,Kanaya S,Sakurai N", "journal": "Front Bioeng Biotechnol", "doi": "10.3389/fbioe.2015.00038", "created_at": "2021-09-30T08:24:52.085Z", "updated_at": "2021-09-30T08:24:52.085Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2253, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1547", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-09T15:04:01.537Z", "metadata": {"doi": "10.25504/FAIRsharing.9kahy4", "name": "GenBank", "status": "ready", "contacts": [{"contact-name": "NCBI Helpdesk", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/genbank/", "citations": [{"doi": "10.1093/nar/gks1195", "pubmed-id": 23193287, "publication-id": 531}], "identifier": 1547, "description": "GenBank is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences. The complete release notes for the current version of GenBank are available on the NCBI ftp site. A new release is made every two months. GenBank growth statistics for both the traditional GenBank divisions and the WGS division are available from each release. GenBank is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "abbreviation": "GenBank", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", "name": "Entrez Programming Utilities Help", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/genbank/submit_types/", "name": "GenBank Submission Types", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/genbank/submit/", "name": "How to Submit", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/genbank/update/", "name": "Updating GenBank records", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK53707/", "name": "GenBank Submissions Handbook", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/blast/producttable.shtml", "name": "Using BLAST at GenBank", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/GenBank", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1982, "data-processes": [{"name": "bimonthly release (as in every 2 months)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "automated annotation", "type": "data curation"}, {"name": "current and historical archived versions are available for download", "type": "data versioning"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/genbank", "name": "Download (Flatfiles)", "type": "data access"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/ncbi-asn1", "name": "Download (ASN.1)", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/nucleotide/", "name": "Search (Entrez Nucleotide)", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/WebSub/?tool=genbank", "name": "Submit via BankIt", "type": "data curation"}, {"url": "https://submit.ncbi.nlm.nih.gov/", "name": "Submit via NCBI Submission Portal", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/blast", "name": "BLAST", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/nuccore/advanced", "name": "Nucleotide Advanced Search Builder", "type": "data access"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/genbank/tbl2asn2/", "name": "tbl2asn2 Submission Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010528", "name": "re3data:r3d100010528", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002760", "name": "SciCrunch:RRID:SCR_002760", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000001", "bsg-d000001"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Metagenomics", "Genomics", "Bioinformatics", "Data Management", "Virology", "Transcriptomics", "Epidemiology"], "domains": ["Nucleic acid sequence", "DNA sequence data", "Annotation", "Genomic assembly", "Deoxyribonucleic acid", "Nucleotide", "Whole genome sequencing", "Sequencing", "Disease", "Messenger RNA", "Gene", "Genome", "Sequence alteration", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States", "European Union", "Japan"], "name": "FAIRsharing record for: GenBank", "abbreviation": "GenBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.9kahy4", "doi": "10.25504/FAIRsharing.9kahy4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GenBank is the NIH genetic sequence database, an annotated collection of all publicly available DNA sequences. The complete release notes for the current version of GenBank are available on the NCBI ftp site. A new release is made every two months. GenBank growth statistics for both the traditional GenBank divisions and the WGS division are available from each release. GenBank is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "publications": [{"id": 18, "pubmed_id": 22144687, "title": "GenBank.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1202", "authors": "Benson DA., Karsch-Mizrachi I., Clark K., Lipman DJ., Ostell J., Sayers EW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1202", "created_at": "2021-09-30T08:22:22.372Z", "updated_at": "2021-09-30T08:22:22.372Z"}, {"id": 19, "pubmed_id": 21071399, "title": "GenBank.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1079", "authors": "Benson DA., Karsch-Mizrachi I., Lipman DJ., Ostell J., Sayers EW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1079", "created_at": "2021-09-30T08:22:22.463Z", "updated_at": "2021-09-30T08:22:22.463Z"}, {"id": 34, "pubmed_id": 18073190, "title": "GenBank.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm929", "authors": "Benson DA., Karsch-Mizrachi I., Lipman DJ., Ostell J., Wheeler DL.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm929", "created_at": "2021-09-30T08:22:23.972Z", "updated_at": "2021-09-30T08:22:23.972Z"}, {"id": 150, "pubmed_id": 18940867, "title": "GenBank.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn723", "authors": "Benson DA., Karsch-Mizrachi I., Lipman DJ., Ostell J., Sayers EW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn723", "created_at": "2021-09-30T08:22:36.289Z", "updated_at": "2021-09-30T08:22:36.289Z"}, {"id": 531, "pubmed_id": 23193287, "title": "GenBank.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1195", "authors": "Benson DA,Cavanaugh M,Clark K,Karsch-Mizrachi I,Lipman DJ,Ostell J,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1195", "created_at": "2021-09-30T08:23:17.973Z", "updated_at": "2021-09-30T11:28:47.158Z"}, {"id": 714, "pubmed_id": 24217914, "title": "GenBank.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1030", "authors": "Benson DA,Clark K,Karsch-Mizrachi I,Lipman DJ,Ostell J,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1030", "created_at": "2021-09-30T08:23:38.702Z", "updated_at": "2021-09-30T11:28:49.234Z"}, {"id": 815, "pubmed_id": 29140468, "title": "GenBank", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1094", "authors": "Benson DA,Cavanaugh M,Clark K,Karsch-Mizrachi I,Ostell J,Pruitt K,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1094", "created_at": "2021-09-30T08:23:49.901Z", "updated_at": "2021-09-30T11:28:51.967Z"}, {"id": 816, "pubmed_id": 31665464, "title": "GenBank.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz956", "authors": "Sayers EW,Cavanaugh M,Clark K,Ostell J,Pruitt KD,Karsch-Mizrachi I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz956", "created_at": "2021-09-30T08:23:50.009Z", "updated_at": "2021-09-30T11:28:52.067Z"}, {"id": 959, "pubmed_id": 30365038, "title": "GenBank.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky989", "authors": "Sayers EW,Cavanaugh M,Clark K,Ostell J,Pruitt KD,Karsch-Mizrachi I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky989", "created_at": "2021-09-30T08:24:06.128Z", "updated_at": "2021-09-30T11:28:55.967Z"}, {"id": 960, "pubmed_id": 27899564, "title": "GenBank.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1070", "authors": "Benson DA,Cavanaugh M,Clark K,Karsch-Mizrachi I,Lipman DJ,Ostell J,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1070", "created_at": "2021-09-30T08:24:06.269Z", "updated_at": "2021-09-30T11:28:56.069Z"}, {"id": 961, "pubmed_id": 26590407, "title": "GenBank.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1276", "authors": "Clark K,Karsch-Mizrachi I,Lipman DJ,Ostell J,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1276", "created_at": "2021-09-30T08:24:06.369Z", "updated_at": "2021-09-30T11:28:56.151Z"}, {"id": 962, "pubmed_id": 25414350, "title": "GenBank.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1216", "authors": "Benson DA,Clark K,Karsch-Mizrachi I,Lipman DJ,Ostell J,Sayers EW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1216", "created_at": "2021-09-30T08:24:06.471Z", "updated_at": "2021-09-30T11:28:56.251Z"}], "licence-links": [{"licence-name": "NCBI Website and Data Usage Policies and Disclaimers", "licence-id": 558, "link-id": 747, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2621", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-19T20:31:02.000Z", "updated-at": "2022-02-08T10:28:33.250Z", "metadata": {"doi": "10.25504/FAIRsharing.401958", "name": "NIST Atomic Spectra Database", "status": "ready", "contacts": [{"contact-name": "Yuri Ralchenko", "contact-email": "yuri.ralchenko@nist.gov", "contact-orcid": "0000-0003-0083-9554"}], "homepage": "https://www.nist.gov/pml/atomic-spectra-database", "citations": [], "identifier": 2621, "description": "The Atomic Spectra Database (ASD) contains data for radiative transitions and energy levels in atoms and atomic ions. Data are included for observed transitions and energy levels of most of the known chemical elements. ASD contains data on spectral lines with wavelengths from about 20 pm (picometers) to 60 m (meters). For many lines, ASD includes radiative transition probabilities. The energy level data include the ground states and ionization energies for all spectra. For most spectra, wavelengths, transition-probabilities, relative intensities, and energy levels are integrated, so that all the available information for a given transition is incorporated under a single listing. For classified lines, in addition to the observed wavelength, ASD includes the Ritz wavelength, which is the wavelength derived from the energy levels.", "abbreviation": "ASD", "support-links": [{"url": "https://www.nist.gov/srd/standard-reference-data-contact-form?id=78", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.nist.gov/about-nist/contact-us", "name": "Contact Us", "type": "Contact form"}, {"url": "http://physics.nist.gov/PhysRefData/ASD/Html/help.html", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.nist.gov/pml/atomic-spectra-database-contents", "name": "ASD Documentation", "type": "Help documentation"}, {"url": "https://www.nist.gov/pml/atomic-spectroscopy-compendium-basic-ideas-notation-data-and-formulas", "name": "Atomic Spectroscopy Introduction", "type": "Help documentation"}, {"url": "https://physics.nist.gov/PhysRefData/ASD/Html/verhist.shtml", "name": "Version History", "type": "Help documentation"}], "year-creation": 1979, "data-processes": [{"url": "https://physics.nist.gov/PhysRefData/ASD/lines_form.html", "name": "NIST Atomic Spectra Database Lines Form", "type": "data access"}, {"url": "http://physics.nist.gov/PhysRefData/ASD/levels_form.html", "name": "NIST Atomic Spectra Database Levels Form", "type": "data access"}, {"url": "https://physics.nist.gov/PhysRefData/ASD/ionEnergy.html", "name": "NIST Atomic Spectra Database Ionization Energies Form", "type": "data access"}], "associated-tools": [{"url": "https://physics.nist.gov/PhysRefData/ASD/LIBS/libs-form.html", "name": "ASD Interface for Laser Induced Breakdown Spectroscopy (LIBS)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011296", "name": "re3data:r3d100011296", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001108", "bsg-d001108"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry"], "domains": ["Radiation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIST Atomic Spectra Database", "abbreviation": "ASD", "url": "https://fairsharing.org/10.25504/FAIRsharing.401958", "doi": "10.25504/FAIRsharing.401958", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atomic Spectra Database (ASD) contains data for radiative transitions and energy levels in atoms and atomic ions. Data are included for observed transitions and energy levels of most of the known chemical elements. ASD contains data on spectral lines with wavelengths from about 20 pm (picometers) to 60 m (meters). For many lines, ASD includes radiative transition probabilities. The energy level data include the ground states and ionization energies for all spectra. For most spectra, wavelengths, transition-probabilities, relative intensities, and energy levels are integrated, so that all the available information for a given transition is incorporated under a single listing. For classified lines, in addition to the observed wavelength, ASD includes the Ritz wavelength, which is the wavelength derived from the energy levels.", "publications": [], "licence-links": [{"licence-name": "NIST Database Disclaimer", "licence-id": 588, "link-id": 1680, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2736", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T12:31:27.000Z", "updated-at": "2022-02-08T10:29:33.367Z", "metadata": {"doi": "10.25504/FAIRsharing.a1de61", "name": "The Track Hub Registry", "status": "ready", "contacts": [{"contact-name": "The Track Hub Registry Helpdesk", "contact-email": "helpdesk@trackhubregistry.org"}], "homepage": "https://www.trackhubregistry.org/", "identifier": 2736, "description": "The Track Hub Registry is a global centralised collection of publicly accessible track hubs. Its goal is to allow third parties to advertise track hubs, and to make it easier for researchers around the world to discover and use track hubs containing different types of genomic research data.", "abbreviation": null, "access-points": [{"url": "https://www.trackhubregistry.org/docs/apis", "name": "The Track Hub Registry API", "type": "REST"}], "support-links": [{"url": "https://www.trackhubregistry.org/help", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.trackhubregistry.org/docs/search", "name": "Search Documentation", "type": "Help documentation"}, {"url": "https://www.trackhubregistry.org/docs/management/overview", "name": "Information on Registration", "type": "Help documentation"}, {"url": "https://www.trackhubregistry.org/about", "name": "About the Track Hub Registry", "type": "Help documentation"}], "data-processes": [{"url": "https://www.trackhubregistry.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.trackhubregistry.org/user/register", "name": "Submit", "type": "data access"}]}, "legacy-ids": ["biodbcore-001234", "bsg-d001234"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science"], "domains": ["Genome visualization", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: The Track Hub Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.a1de61", "doi": "10.25504/FAIRsharing.a1de61", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Track Hub Registry is a global centralised collection of publicly accessible track hubs. Its goal is to allow third parties to advertise track hubs, and to make it easier for researchers around the world to discover and use track hubs containing different types of genomic research data.", "publications": [], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1732, "relation": "undefined"}, {"licence-name": "TrackHub Registry Privacy Notice", "licence-id": 791, "link-id": 1733, "relation": "undefined"}, {"licence-name": "TrackHub Registry Account Creation Privacy Notice", "licence-id": 790, "link-id": 1734, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1583", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.614Z", "metadata": {"doi": "10.25504/FAIRsharing.sbnhkq", "name": "DRSC Functional Genomics Resources", "status": "ready", "contacts": [{"contact-name": "Stephanie E Mohr", "contact-email": "stephanie_mohr@hms.harvard.edu"}], "homepage": "http://www.flyrnai.org/", "identifier": 1583, "description": "DRSC Functional Genomics Resources (DRSC-FGR) began as the Drosophila RNAi Screening Center (DRSC), founded by Prof. Norbert Perrimon in 2003, and the Transgenic RNAi Project (TRiP), founded by Prof. Perrimon in 2008. DRSC-FGR has been previously known as flyRNAi.org. It has since grown into a functional genomics platform meeting the needs of the Drosophila and broader community.", "abbreviation": "DRSC-FGR", "support-links": [{"url": "https://hms.az1.qualtrics.com/jfe/form/SV_cApK7Mvnw54HeyV", "type": "Contact form"}], "year-creation": 2002, "data-processes": [{"name": "continuous release of RNAi reagent", "type": "data release"}, {"name": "third party database dependent release of gene annotation", "type": "data release"}, {"name": "release upon publication of experimental screen data", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "access to historical files available", "type": "data versioning"}, {"url": "http://fgr.hms.harvard.edu/", "name": "search", "type": "data access"}, {"name": "file download(CSV)", "type": "data access"}, {"name": "XSL", "type": "data access"}, {"name": "tab-delimited)", "type": "data access"}], "associated-tools": [{"url": "http://www.flyrnai.org/cgi-bin/RNAi_expression_levels.pl", "name": "CellExpressionLevels 1.0"}, {"url": "http://www.flyrnai.org/compleat/", "name": "COMPLEAT 1.0"}, {"url": "http://www.flyrnai.org/tools/dget/web/", "name": "DGET 1.0"}, {"url": "http://www.flyrnai.org/diopt", "name": "DIOPT 5.3"}, {"url": "http://www.flyrnai.org/diopt-dist", "name": "DIOPT-DIST 6.0"}, {"url": "http://fgr.hms.harvard.edu/crispr-efficiency", "name": "CRISPR Efficiency Prediction 1.0"}, {"url": "http://www.flyrnai.org/crispr2/", "name": "Find CRISPRs 3.0"}, {"url": "http://fgr.hms.harvard.edu/flyprimerbank", "name": "FlyPrimerBank 1.0"}, {"url": "http://www.flyrnai.org/FlyPrimerBank", "name": "FlyPrimerBank-AddFeedback 1.0"}, {"url": "http://www.flyrnai.org/cgi-bin/DRSC_gene_lookup.pl", "name": "Gene Lookup"}, {"url": "http://www.flyrnai.org/tools/glad/web/", "name": "GLAD 1.0"}, {"url": "http://www.flyrnai.org/hrma", "name": "HRMA 1.0"}, {"url": "http://fgr.hms.harvard.edu/minotar", "name": "MinoTar 1.0"}, {"url": "http://www.flyrnai.org/gess/", "name": "Online GESS 1.0"}, {"url": "http://www.flyrnai.org/cgi-bin/RSVP_search.pl", "name": "RSVP 1.0"}, {"url": "http://fgr.hms.harvard.edu/rsvp-addfeedback", "name": "RSVP-AddFeedback 1.0"}, {"url": "http://www.flyrnai.org/cgi-bin/TRiP_batch_query.pl", "name": "TRiP fly stock batch query 1.0"}, {"url": "http://fgr.hms.harvard.edu/utility-tools", "name": "Utility Tools"}]}, "legacy-ids": ["biodbcore-000038", "bsg-d000038"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Cell line", "RNAi screening", "RNA interference"], "taxonomies": ["Drosophila melanogaster"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: DRSC Functional Genomics Resources", "abbreviation": "DRSC-FGR", "url": "https://fairsharing.org/10.25504/FAIRsharing.sbnhkq", "doi": "10.25504/FAIRsharing.sbnhkq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DRSC Functional Genomics Resources (DRSC-FGR) began as the Drosophila RNAi Screening Center (DRSC), founded by Prof. Norbert Perrimon in 2003, and the Transgenic RNAi Project (TRiP), founded by Prof. Perrimon in 2008. DRSC-FGR has been previously known as flyRNAi.org. It has since grown into a functional genomics platform meeting the needs of the Drosophila and broader community.", "publications": [{"id": 1434, "pubmed_id": 21880147, "title": "An integrative approach to ortholog prediction for disease-focused and other functional studies.", "year": 2011, "url": "http://doi.org/10.1186/1471-2105-12-357", "authors": "Hu Y., Flockhart I., Vinayagam A., Bergwitz C., Berger B., Perrimon N., Mohr SE.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-12-357", "created_at": "2021-09-30T08:25:00.332Z", "updated_at": "2021-09-30T08:25:00.332Z"}, {"id": 1435, "pubmed_id": 21251254, "title": "False negative rates in Drosophila cell-based RNAi screens: a case study.", "year": 2011, "url": "http://doi.org/10.1186/1471-2164-12-50", "authors": "Booker M., Samsonova AA., Kwon Y., Flockhart I., Mohr SE., Perrimon N.,", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-12-50", "created_at": "2021-09-30T08:25:00.432Z", "updated_at": "2021-09-30T08:25:00.432Z"}, {"id": 1436, "pubmed_id": 20367032, "title": "Genomic screening with RNAi: results and challenges.", "year": 2010, "url": "http://doi.org/10.1146/annurev-biochem-060408-092949", "authors": "Mohr S., Bakal C., Perrimon N.,", "journal": "Annu. Rev. Biochem.", "doi": "10.1146/annurev-biochem-060408-092949", "created_at": "2021-09-30T08:25:00.532Z", "updated_at": "2021-09-30T08:25:00.532Z"}, {"id": 1437, "pubmed_id": 19720858, "title": "Cross-species RNAi rescue platform in Drosophila melanogaster.", "year": 2009, "url": "http://doi.org/10.1534/genetics.109.106567", "authors": "Kondo S., Booker M., Perrimon N.,", "journal": "Genetics", "doi": "10.1534/genetics.109.106567", "created_at": "2021-09-30T08:25:00.634Z", "updated_at": "2021-09-30T08:25:00.634Z"}, {"id": 1438, "pubmed_id": 19487563, "title": "A Drosophila resource of transgenic RNAi lines for neurogenetics.", "year": 2009, "url": "http://doi.org/10.1534/genetics.109.103630", "authors": "Ni JQ., Liu LP., Binari R., Hardy R., Shim HS., Cavallaro A., Booker M., Pfeiffer BD., Markstein M., Wang H., Villalta C., Laverty TR., Perkins LA., Perrimon N.,", "journal": "Genetics", "doi": "10.1534/genetics.109.103630", "created_at": "2021-09-30T08:25:00.744Z", "updated_at": "2021-09-30T08:25:00.744Z"}, {"id": 1439, "pubmed_id": 18084299, "title": "Vector and parameters for targeted transgenic RNA interference in Drosophila melanogaster.", "year": 2007, "url": "http://doi.org/10.1038/nmeth1146", "authors": "Ni JQ., Markstein M., Binari R., Pfeiffer B., Liu LP., Villalta C., Booker M., Perkins L., Perrimon N.,", "journal": "Nat. Methods", "doi": "10.1038/nmeth1146", "created_at": "2021-09-30T08:25:00.851Z", "updated_at": "2021-09-30T08:25:00.851Z"}, {"id": 1440, "pubmed_id": 17853882, "title": "Design and implementation of high-throughput RNAi screens in cultured Drosophila cells.", "year": 2007, "url": "http://doi.org/10.1038/nprot.2007.250", "authors": "Ramadan N., Flockhart I., Booker M., Perrimon N., Mathey-Prevot B.,", "journal": "Nat Protoc", "doi": "10.1038/nprot.2007.250", "created_at": "2021-09-30T08:25:00.962Z", "updated_at": "2021-09-30T08:25:00.962Z"}, {"id": 1441, "pubmed_id": 16964256, "title": "Evidence of off-target effects associated with long dsRNAs in Drosophila melanogaster cell-based assays.", "year": 2006, "url": "http://doi.org/10.1038/nmeth935", "authors": "Kulkarni MM., Booker M., Silver SJ., Friedman A., Hong P., Perrimon N., Mathey-Prevot B.,", "journal": "Nat. Methods", "doi": "10.1038/nmeth935", "created_at": "2021-09-30T08:25:01.069Z", "updated_at": "2021-09-30T08:25:01.069Z"}, {"id": 1442, "pubmed_id": 16381918, "title": "FlyRNAi: the Drosophila RNAi screening center database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj114", "authors": "Flockhart I., Booker M., Kiger A., Boutros M., Armknecht S., Ramadan N., Richardson K., Xu A., Perrimon N., Mathey-Prevot B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj114", "created_at": "2021-09-30T08:25:01.185Z", "updated_at": "2021-09-30T08:25:01.185Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2742", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-14T13:50:55.000Z", "updated-at": "2022-02-08T10:29:47.091Z", "metadata": {"doi": "10.25504/FAIRsharing.c7edd8", "name": "Human Genetic Variation Database", "status": "ready", "contacts": [{"contact-name": "HGVD Helpdesk", "contact-email": "hgvd@genome.med.kyoto-u.ac.jp"}], "homepage": "http://www.hgvd.genome.med.kyoto-u.ac.jp/", "citations": [{"doi": "10.1038/jhg.2016.12", "pubmed-id": 26911352, "publication-id": 2503}], "identifier": 2742, "description": "The Human Genetic Variation Database (HGVD) aims to provide a central resource to archive and display Japanese genetic variation and association between the variation and transcription level of genes. The database currently contains genetic variations determined by exome sequencing of 1,208 individuals and genotyping data of common variations obtained from a cohort of 3,248 individuals. The HGVD browser can be used to view allele and genotype frequencies, number of samples, coverages, and expression QTL (eQTL) significances.", "abbreviation": "HGVD", "support-links": [{"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/manual.html", "name": "HGVD User Manual", "type": "Help documentation"}, {"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/about.html", "name": "About HGVD", "type": "Help documentation"}, {"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/statistics.html", "name": "HGVD Statistics", "type": "Help documentation"}, {"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/link.html", "name": "Associated Links", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/download.html", "name": "Download", "type": "data access"}, {"url": "http://www.hgvd.genome.med.kyoto-u.ac.jp/repository.html", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012433", "name": "re3data:r3d100012433", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001240", "bsg-d001240"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science", "Comparative Genomics"], "domains": ["Genome visualization", "Transcript", "Gene", "Quantitative trait loci", "Genome", "Sequence variant"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["genomic variation"], "countries": ["Japan"], "name": "FAIRsharing record for: Human Genetic Variation Database", "abbreviation": "HGVD", "url": "https://fairsharing.org/10.25504/FAIRsharing.c7edd8", "doi": "10.25504/FAIRsharing.c7edd8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Genetic Variation Database (HGVD) aims to provide a central resource to archive and display Japanese genetic variation and association between the variation and transcription level of genes. The database currently contains genetic variations determined by exome sequencing of 1,208 individuals and genotyping data of common variations obtained from a cohort of 3,248 individuals. The HGVD browser can be used to view allele and genotype frequencies, number of samples, coverages, and expression QTL (eQTL) significances.", "publications": [{"id": 2503, "pubmed_id": 26911352, "title": "Human genetic variation database, a reference database of genetic variations in the Japanese population.", "year": 2016, "url": "http://doi.org/10.1038/jhg.2016.12", "authors": "Higasa K,Miyake N,Yoshimura J,Okamura K,Niihori T,Saitsu H,Doi K,Shimizu M,Nakabayashi K,Aoki Y,Tsurusaki Y,Morishita S,Kawaguchi T,Migita O,Nakayama K,Nakashima M,Mitsui J,Narahara M,Hayashi K,Funayama R,Yamaguchi D,Ishiura H,Ko WY,Hata K,Nagashima T,Yamada R,Matsubara Y,Umezawa A,Tsuji S,Matsumoto N,Matsuda F", "journal": "J Hum Genet", "doi": "10.1038/jhg.2016.12", "created_at": "2021-09-30T08:27:07.213Z", "updated_at": "2021-09-30T08:27:07.213Z"}], "licence-links": [{"licence-name": "HGVD Terms of Use", "licence-id": 391, "link-id": 1321, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2788", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-15T10:18:13.000Z", "updated-at": "2022-02-08T10:30:02.501Z", "metadata": {"doi": "10.25504/FAIRsharing.99c9b0", "name": "Functional ANnoTation Of the Mammalian genome Database", "status": "ready", "contacts": [{"contact-name": "Hideya Kawaji", "contact-email": "kawaji@gsc.riken.jp", "contact-orcid": "0000-0002-0575-0308"}], "homepage": "https://fantom.gsc.riken.jp/", "citations": [], "identifier": 2788, "description": "FANTOM (Functional ANnoTation Of the Mammalian genome) is a worldwide collaborative project aiming at identifying all functional elements in mammalian genomes.", "abbreviation": "FANTOM5", "support-links": [{"url": "fantom-help@riken.jp", "type": "Support email"}, {"url": "https://fantom.gsc.riken.jp/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://fantom.gsc.riken.jp/protocols/", "name": "Protocols Used", "type": "Help documentation"}, {"url": "https://twitter.com/FANTOM_project", "name": "@FANTOM_project", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://fantom.gsc.riken.jp/5/data/", "name": "Download Data", "type": "data release"}, {"url": "http://fantom.gsc.riken.jp/5/sstar/Main_Page", "name": "Search (SSTAR)", "type": "data access"}], "associated-tools": [{"url": "http://fantom.gsc.riken.jp/5/tet/#!/", "name": "FANTOM5 Table Extraction Tool"}, {"url": "http://biomart.gsc.riken.jp/", "name": "FANTOM5 BioMart"}, {"url": "http://fantom.gsc.riken.jp/zenbu/", "name": "ZENBU Visualization Tool"}, {"url": "http://fantom.gsc.riken.jp/5/biolayout/", "name": "BioLayout Express 3D: Network Visualization"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010589", "name": "re3data:r3d100010589", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002678", "name": "SciCrunch:RRID:SCR_002678", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001287", "bsg-d001287"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Bioinformatics", "Life Science"], "domains": ["Genome annotation", "Genome visualization", "Cap Analysis Gene Expression", "Micro RNA", "Genome"], "taxonomies": ["Mammalia"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Functional ANnoTation Of the Mammalian genome Database", "abbreviation": "FANTOM5", "url": "https://fairsharing.org/10.25504/FAIRsharing.99c9b0", "doi": "10.25504/FAIRsharing.99c9b0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FANTOM (Functional ANnoTation Of the Mammalian genome) is a worldwide collaborative project aiming at identifying all functional elements in mammalian genomes.", "publications": [{"id": 2530, "pubmed_id": 25723102, "title": "Gateways to the FANTOM5 promoter level mammalian expression atlas.", "year": 2015, "url": "http://doi.org/10.1186/s13059-014-0560-6", "authors": "Lizio M,Harshbarger J,Shimoji H,Severin J,Kasukawa T,Sahin S,Abugessaisa I,Fukuda S,Hori F,Ishikawa-Kato S,Mungall CJ,Arner E,Baillie JK,Bertin N,Bono H,de Hoon M,Diehl AD,Dimont E,Freeman TC,Fujieda K,Hide W,Kaliyaperumal R,Katayama T,Lassmann T,Meehan TF,Nishikata K,Ono H,Rehli M,Sandelin A,Schultes EA,'t Hoen PA,Tatum Z,Thompson M,Toyoda T,Wright DW,Daub CO,Itoh M,Carninci P,Hayashizaki Y,Forrest AR,Kawaji H", "journal": "Genome Biol", "doi": "10.1186/s13059-014-0560-6", "created_at": "2021-09-30T08:27:10.378Z", "updated_at": "2021-09-30T08:27:10.378Z"}, {"id": 2726, "pubmed_id": 30407557, "title": "Update of the FANTOM web resource: expansion to provide additional transcriptome atlases.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1099", "authors": "Lizio M,Abugessaisa I,Noguchi S,Kondo A,Hasegawa A,Hon CC,de Hoon M,Severin J,Oki S,Hayashizaki Y,Carninci P,Kasukawa T,Kawaji H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1099", "created_at": "2021-09-30T08:27:34.854Z", "updated_at": "2021-09-30T11:29:41.972Z"}, {"id": 2727, "pubmed_id": 11752270, "title": "FANTOM DB: database of Functional Annotation of RIKEN Mouse cDNA Clones.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.116", "authors": "Bono H,Kasukawa T,Furuno M,Hayashizaki Y,Okazaki Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.116", "created_at": "2021-09-30T08:27:34.969Z", "updated_at": "2021-09-30T11:29:42.062Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1766, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3056", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-26T17:47:15.000Z", "updated-at": "2021-12-06T10:47:32.204Z", "metadata": {"name": "Level-1 and Atmosphere Archive & Distribution System", "status": "ready", "contacts": [{"contact-name": "Robert Wolfe", "contact-email": "robert.e.wolfe@nasa.gov", "contact-orcid": "0000-0002-0915-1855"}], "homepage": "https://ladsweb.modaps.eosdis.nasa.gov/", "identifier": 3056, "description": "The Level-1 and Atmosphere Archive & Distribution System (LAADS) Distributed Active Archive Center (DAAC) at the Goddard Space Flight Center (GSFC) is one of the data centers that primarily serves atmosphere data and derived data products. Scientists use these datasets to study Earth's atmosphere, which is one of the three primordial elements that sustain all life-support systems in our biosphere. The LAADS DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "LAADS DAAC", "access-points": [{"url": "https://ladsweb.modaps.eosdis.nasa.gov/tools-and-services/lws-classic/api.php", "name": "LAADS Web Service Classic API", "type": "REST"}], "support-links": [{"url": "https://ladsweb.modaps.eosdis.nasa.gov/#laads-alerts", "name": "Alerts", "type": "Blog/News"}, {"url": "MODAPSUSO@lists.nasa.gov", "name": "Support", "type": "Support email"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/help/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/help/search/", "name": "Finding and Requesting LAADS Data", "type": "Help documentation"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/help/tutorials/", "name": "LAADS Web Tutorials", "type": "Help documentation"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/help/acronyms/", "name": "Acronyms", "type": "Help documentation"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/help/atmosphere/", "name": "Atmospheric Science Tutorials", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://ladsweb.modaps.eosdis.nasa.gov/search/", "name": "Search data", "type": "data access"}, {"url": "https://ladsweb.modaps.eosdis.nasa.gov/tools-and-services/data-download-scripts/", "name": "Download data", "type": "data access"}], "associated-tools": [{"url": "https://ladsweb.modaps.eosdis.nasa.gov/tools-and-services/", "name": "Tools & Services"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010503", "name": "re3data:r3d100010503", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001564", "bsg-d001564"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Climate change", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: Level-1 and Atmosphere Archive & Distribution System", "abbreviation": "LAADS DAAC", "url": "https://fairsharing.org/fairsharing_records/3056", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Level-1 and Atmosphere Archive & Distribution System (LAADS) Distributed Active Archive Center (DAAC) at the Goddard Space Flight Center (GSFC) is one of the data centers that primarily serves atmosphere data and derived data products. Scientists use these datasets to study Earth's atmosphere, which is one of the three primordial elements that sustain all life-support systems in our biosphere. The LAADS DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2037, "relation": "undefined"}, {"licence-name": "EOSDIS Data and Information Policy", "licence-id": 284, "link-id": 2038, "relation": "undefined"}, {"licence-name": "CoreTrustSeal Assessment", "licence-id": 150, "link-id": 2039, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3157", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-24T13:03:07.000Z", "updated-at": "2021-12-06T10:48:55.484Z", "metadata": {"doi": "10.25504/FAIRsharing.nhVgNw", "name": "Research Data Leeds Repository", "status": "ready", "contacts": [{"contact-name": "Research Data Team", "contact-email": "researchdataenquiries@leeds.ac.uk"}], "homepage": "http://archive.researchdata.leeds.ac.uk/", "citations": [], "identifier": 3157, "description": "Research Data Leeds is the institutional research data repository for the University of Leeds. The service aims to facilitate data discovery and data sharing. The repository houses data generated by researchers at the University of Leeds.", "abbreviation": "RDL", "access-points": [{"url": "http://archive.researchdata.leeds.ac.uk/cgi/oai2", "name": "OAI endpoint", "type": "REST"}], "support-links": [{"url": "https://library.leeds.ac.uk/info/14062/research_data_management/67/deposit_in_research_data_leeds", "name": "How to Deposit Data", "type": "Help documentation"}, {"url": "http://archive.researchdata.leeds.ac.uk/information.html", "name": "About", "type": "Help documentation"}, {"url": "https://library.leeds.ac.uk/info/14062/research_data_management/67/deposit_in_research_data_leeds/2", "name": "Repository Deposit Agreement", "type": "Help documentation"}, {"url": "https://library.leeds.ac.uk/info/14062/research_data_management/61/research_data_management_explained", "name": "About Research Data Management", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://archive.researchdata.leeds.ac.uk/view/", "name": "Browse", "type": "data access"}, {"url": "http://archive.researchdata.leeds.ac.uk/cgi/latest", "name": "Recently Added Data", "type": "data access"}, {"url": "http://archive.researchdata.leeds.ac.uk/cgi/search/advanced", "name": "Advanced Search", "type": "data access"}, {"url": "http://archive.researchdata.leeds.ac.uk/cgi/search/simple", "name": "Simple Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011945", "name": "re3data:r3d100011945", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001668", "bsg-d001668"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Research Data Leeds Repository", "abbreviation": "RDL", "url": "https://fairsharing.org/10.25504/FAIRsharing.nhVgNw", "doi": "10.25504/FAIRsharing.nhVgNw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Research Data Leeds is the institutional research data repository for the University of Leeds. The service aims to facilitate data discovery and data sharing. The repository houses data generated by researchers at the University of Leeds.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1877, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2879", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-07T17:11:15.000Z", "updated-at": "2021-12-06T10:48:06.373Z", "metadata": {"doi": "10.25504/FAIRsharing.7IQk4a", "name": "Primate Cell Type Database", "status": "ready", "contacts": [{"contact-name": "Eric S. Kuebler", "contact-email": "ekuebler@uwo.ca", "contact-orcid": "0000-0002-6816-156X"}], "homepage": "https://primatedatabase.com/", "identifier": 2879, "description": "PrimateDatabase.com, a publicly available web-accessible archive of intracellular patch clamp recordings and highly detailed three-dimensional digital reconstructions of neuronal morphology. PrimateDatabase.com is unique because it is currently the largest collection of non-human primate (NHP) intracellular recordings.", "abbreviation": "PCTD", "support-links": [{"url": "primate.database@gmail.com", "name": "Contact PCTD", "type": "Support email"}, {"url": "https://primatedatabase.com/ourTeam.html", "name": "About the PCTD Team", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://primatedatabase.com/ephysCT.html", "name": "Browse and Filter Electrophysiology Data", "type": "data access"}], "associated-tools": [{"url": "https://primatedatabase.com/morphology.html", "name": "Morphology Reconstruction Viewer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013202", "name": "re3data:r3d100013202", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001380", "bsg-d001380"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Electrophysiology"], "domains": ["Cell morphology", "RNA sequencing", "Immunohistochemistry"], "taxonomies": ["Macaca fascicularis", "Rhesus macaques"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Primate Cell Type Database", "abbreviation": "PCTD", "url": "https://fairsharing.org/10.25504/FAIRsharing.7IQk4a", "doi": "10.25504/FAIRsharing.7IQk4a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PrimateDatabase.com, a publicly available web-accessible archive of intracellular patch clamp recordings and highly detailed three-dimensional digital reconstructions of neuronal morphology. PrimateDatabase.com is unique because it is currently the largest collection of non-human primate (NHP) intracellular recordings.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1699, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3250", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-14T15:09:01.000Z", "updated-at": "2021-11-24T13:13:58.718Z", "metadata": {"doi": "10.25504/FAIRsharing.ogTCME", "name": "Discovery VIRUS COVID-19 Registry", "status": "ready", "contacts": [{"contact-name": "Vishakha Kumar", "contact-email": "vkumar@sccm.org"}], "homepage": "https://www.sccm.org/Research/Research/Discovery-Research-Network/VIRUS-COVID-19-Registry", "identifier": 3250, "description": "VIRUS is a cross-sectional, observational study and registry of all eligible adult and pediatric patients who are admitted to a hospital.", "support-links": [{"url": "discovery@sccm.org", "name": "Registry email", "type": "Support email"}, {"url": "Kashyap.Rahul@mayo.edu", "name": "Rahul Kashyap", "type": "Support email"}, {"url": "https://docs.google.com/document/d/1g9T4uoYCNt3Lb3QYpgfV0VeC43xuF_H6V_kXS3KDT10/edit", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://docs.google.com/spreadsheets/d/19e2oof7S6CZViFthOduRXA6R9uzrmQCTIlb-Z03IrTk/edit#gid=734616311", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://forms.office.com/Pages/ResponsePage.aspx?id=9blcEC18Rk2tC6sR_bUbihfA9kgW78pBs7x-kh6Cg1FUMTVBWDhLVzZTUFFUWTRSUFJROFJRWVVENy4u", "name": "To participate as a site (REDCap)", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://sccmcovid19.org/", "name": "VIRUS dashboard", "type": "data access"}, {"url": "https://docs.google.com/document/d/1g9T4uoYCNt3Lb3QYpgfV0VeC43xuF_H6V_kXS3KDT10/edit", "name": "Data access upon request", "type": "data access"}, {"url": "https://clinicaltrials.gov/ct2/show/NCT04323787", "name": "Viral Infection and Respiratory Illness Universal Study on ClinicalTrials.gov", "type": "data access"}, {"url": "https://www.sccm.org/COVID-19Registry", "name": "VIRUS COVID-19 Registry (for individuals whose site is IRB approved)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001764", "bsg-d001764"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Respiratory Medicine", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Discovery VIRUS COVID-19 Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ogTCME", "doi": "10.25504/FAIRsharing.ogTCME", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VIRUS is a cross-sectional, observational study and registry of all eligible adult and pediatric patients who are admitted to a hospital.", "publications": [{"id": 3089, "pubmed_id": 32426754, "title": "The Viral Infection and Respiratory Illness Universal Study (VIRUS): An International Registry of Coronavirus 2019-Related Critical Illness.", "year": 2020, "url": "http://doi.org/10.1097/CCE.0000000000000113", "authors": "Walkey AJ,Kumar VK,Harhay MO,Bolesta S,Bansal V,Gajic O,Kashyap R", "journal": "Crit Care Explor", "doi": "10.1097/CCE.0000000000000113", "created_at": "2021-09-30T08:28:20.592Z", "updated_at": "2021-09-30T08:28:20.592Z"}, {"id": 3095, "pubmed_id": 32932348, "title": "Guiding Principles for the Conduct of Observational Critical Care Research for Coronavirus Disease 2019 Pandemics and Beyond: The Society of Critical Care Medicine Discovery Viral Infection and Respiratory Illness Universal Study Registry.", "year": 2020, "url": "http://doi.org/10.1097/CCM.0000000000004572", "authors": "Walkey AJ,Sheldrick RC,Kashyap R,Kumar VK,Boman K,Bolesta S,Zampieri FG,Bansal V,Harhay MO,Gajic O", "journal": "Crit Care Med", "doi": "10.1097/CCM.0000000000004572", "created_at": "2021-09-30T08:28:21.343Z", "updated_at": "2021-09-30T08:28:21.343Z"}], "licence-links": [{"licence-name": "SCCM Privacy Statement", "licence-id": 727, "link-id": 642, "relation": "undefined"}, {"licence-name": "SCCM Terms and Conditions", "licence-id": 728, "link-id": 644, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2499", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-05T14:01:36.000Z", "updated-at": "2021-11-24T13:19:35.537Z", "metadata": {"doi": "10.25504/FAIRsharing.qy4b7s", "name": "real-time quantitative PCR Primer Database", "status": "ready", "contacts": [{"contact-name": "Kun Lu", "contact-email": "drlukun@swu.edu.cn", "contact-orcid": "0000-0003-1370-8633"}], "homepage": "http://biodb.swu.edu.cn/qprimerdb/", "identifier": 2499, "description": "The qPrimerDB database stores information on qPCR primers. Accessible through a web front-end providing gene-specific and pre-computed primer pairs across 147 different organisms, including human, mouse, zebrafish, yeast, thale cress, rice, and maize. The qPrimerDB provides an interactive and information-rich web graphical interface to display search and BLAST results as table-based descriptions and associated links. In this database, we provide 3,331,426 of the best primer pairs for each gene based on primer pair coverage (PPC), as well as 47,726,569 alternative gene-specific primer pairs, which can be conveniently batch downloaded. We validated the specificity and efficiency of the qPCR primer pairs for 66 randomly selected genes in six different organisms through qPCR assays and gel electrophoresis. The qPrimerDB database represents a valuable, timesaving resource for gene expression analysis.", "abbreviation": "qPrimerDB", "support-links": [{"url": "http://biodb.swu.edu.cn/qprimerdb/contact", "name": "Contact form", "type": "Contact form"}, {"url": "http://biodb.swu.edu.cn/qprimerdb/faq", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://biodb.swu.edu.cn/qprimerdb/primer-design-request", "name": "Design Request", "type": "Help documentation"}, {"url": "http://biodb.swu.edu.cn/qprimerdb/manual", "name": "Manual", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://biodb.swu.edu.cn/qprimerdb/pipeline", "name": "Pipeline", "type": "data access"}], "associated-tools": [{"url": "http://biodb.swu.edu.cn/qprimerdb/blast", "name": "BLAST"}, {"url": "http://biodb.swu.edu.cn/qprimerdb/download_primers", "name": "Download"}]}, "legacy-ids": ["biodbcore-000981", "bsg-d000981"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Polymerase chain reaction primers"], "taxonomies": ["Arabidopsis thaliana", "Bombyx mori", "Brassica", "Drosophila", "Homo sapiens", "Mus musculus", "Oryza", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: real-time quantitative PCR Primer Database", "abbreviation": "qPrimerDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.qy4b7s", "doi": "10.25504/FAIRsharing.qy4b7s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The qPrimerDB database stores information on qPCR primers. Accessible through a web front-end providing gene-specific and pre-computed primer pairs across 147 different organisms, including human, mouse, zebrafish, yeast, thale cress, rice, and maize. The qPrimerDB provides an interactive and information-rich web graphical interface to display search and BLAST results as table-based descriptions and associated links. In this database, we provide 3,331,426 of the best primer pairs for each gene based on primer pair coverage (PPC), as well as 47,726,569 alternative gene-specific primer pairs, which can be conveniently batch downloaded. We validated the specificity and efficiency of the qPCR primer pairs for 66 randomly selected genes in six different organisms through qPCR assays and gel electrophoresis. The qPrimerDB database represents a valuable, timesaving resource for gene expression analysis.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2538", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-20T20:52:09.000Z", "updated-at": "2021-12-06T10:49:26.072Z", "metadata": {"doi": "10.25504/FAIRsharing.x6y19r", "name": "Citrination", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@citrine.io"}], "homepage": "https://citrination.com/", "identifier": 2538, "description": "Citrination is an open database and analytics platform for material and chemical information. Registration is required to access all data, but is free for academics, researchers and other non-commercial users.", "abbreviation": "Citrination", "access-points": [{"url": "https://citrineinformatics.github.io/python-citrination-client/index.html", "name": "Citrination Python Client", "type": "REST"}], "support-links": [{"url": "https://citrination.com/faq", "name": "Citrination FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://help.citrination.com/", "name": "Help Knowledgebase", "type": "Help documentation"}, {"url": "https://github.com/CitrineInformatics/learn-citrination", "name": "API Tutorials", "type": "Github"}, {"url": "http://citrine.us3.list-manage1.com/subscribe?u=014639e57e11aa6a7d2f2e4a8&id=60e6d7fee0", "name": "Newsletter", "type": "Mailing list"}, {"url": "https://citrination.com/tos", "name": "Terms of Service", "type": "Help documentation"}, {"url": "https://citrination.com/privacy", "name": "Privacy Policy", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://citrination.com/search/simple", "name": "Search Records", "type": "data access"}, {"url": "https://citrination.com/datasets", "name": "Browse and Search Datasets", "type": "data access"}, {"url": "https://citrination.com/add_data", "name": "Upload Data", "type": "data access"}, {"url": "https://citrination.com/data_views/new", "name": "Browse and Search Data Views", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012077", "name": "re3data:r3d100012077", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001021", "bsg-d001021"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Materials Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Citrination", "abbreviation": "Citrination", "url": "https://fairsharing.org/10.25504/FAIRsharing.x6y19r", "doi": "10.25504/FAIRsharing.x6y19r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Citrination is an open database and analytics platform for material and chemical information. Registration is required to access all data, but is free for academics, researchers and other non-commercial users.", "publications": [], "licence-links": [{"licence-name": "Citrination Copyright", "licence-id": 130, "link-id": 932, "relation": "undefined"}, {"licence-name": "Citrination Data Licence", "licence-id": 131, "link-id": 940, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1998", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:22.738Z", "metadata": {"doi": "10.25504/FAIRsharing.wkggtx", "name": "Dryad", "status": "ready", "contacts": [{"contact-name": "Dryad Helpdesk", "contact-email": "help@datadryad.org"}], "homepage": "http://datadryad.org/", "citations": [], "identifier": 1998, "description": "Dryad is an open-source, community-led data curation, publishing, and preservation platform for CC0 publicly available research data. Dryad has a long-term data preservation strategy, and is a Core Trust Seal Certified Merritt repository with storage in US and EU at the San Diego Supercomputing Center, DANS, and Zenodo. While data is undergoing peer review, it is embargoed if the related journal requires / allows this. Dryad is an independent non-profit that works directly with: researchers to publish datasets utilising best practices for discovery and reuse; publishers to support the integration of data availability statements and data citations into their workflows; and institutions to enable scalable campus support for research data management best practices at low cost. Costs are covered by institutional, publisher, and funder members, otherwise a one-time fee of $120 for authors to cover cost of curation and preservation. Dryad also receives direct funder support through grants.", "abbreviation": "Dryad", "access-points": [{"url": "https://datadryad.org/api/v2/", "name": "Dryad API", "type": "REST", "example-url": "https://datadryad.org/api/v2/datasets", "documentation-url": "https://datadryad.org/api/v2/docs/"}, {"url": "https://datadryad.org/stash/our_platform", "name": "Protocol modules are available for OAI-PMH", "type": "OAI-PMH", "documentation-url": "https://datadryad.org/stash/our_platform"}], "data-curation": {}, "support-links": [{"url": "https://blog.datadryad.org/", "name": "Dryad News and Views", "type": "Blog/News"}, {"url": "https://datadryad.org/feedback", "name": "Dryad Contact Form", "type": "Contact form"}, {"url": "https://datadryad.org/pages/faq", "name": "Dryad FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/CDL-Dryad/dryad-app/tree/main/documentation/apis", "name": "Dryad Web Service Documentation", "type": "Github"}, {"url": "http://wiki.datadryad.org/Main_Page", "name": "Dryad Wiki Pages", "type": "Help documentation"}, {"url": "https://datadryad.org/stash/submission_process", "name": "Submission Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/datadryad", "name": "@datadryad", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Dryad_%28repository%29", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2008, "data-processes": [{"url": "http://wiki.datadryad.org/Curation", "name": "Data curation", "type": "data curation"}, {"url": "https://datadryad.org/search", "name": "Search", "type": "data access"}, {"url": "http://datadryad.org", "name": "Browse", "type": "data access"}, {"url": "https://datadryad.org/submit", "name": "Submit", "type": "data curation"}, {"name": "Size Limit: 300GB/dataset", "type": "data curation"}, {"name": "Versioning supported", "type": "data versioning"}, {"name": "No support for individual-level human data", "type": "data curation"}, {"name": "Per-researcher storage: unlimited", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000044", "name": "re3data:r3d100000044", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005910", "name": "SciCrunch:RRID:SCR_005910", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000464", "bsg-d000464"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Curated information", "Literature curation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Dryad", "abbreviation": "Dryad", "url": "https://fairsharing.org/10.25504/FAIRsharing.wkggtx", "doi": "10.25504/FAIRsharing.wkggtx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dryad is an open-source, community-led data curation, publishing, and preservation platform for CC0 publicly available research data. Dryad has a long-term data preservation strategy, and is a Core Trust Seal Certified Merritt repository with storage in US and EU at the San Diego Supercomputing Center, DANS, and Zenodo. While data is undergoing peer review, it is embargoed if the related journal requires / allows this. Dryad is an independent non-profit that works directly with: researchers to publish datasets utilising best practices for discovery and reuse; publishers to support the integration of data availability statements and data citations into their workflows; and institutions to enable scalable campus support for research data management best practices at low cost. Costs are covered by institutional, publisher, and funder members, otherwise a one-time fee of $120 for authors to cover cost of curation and preservation. Dryad also receives direct funder support through grants.", "publications": [{"id": 1215, "pubmed_id": 26728592, "title": "Making Data Accessible: The Dryad Experience.", "year": 2016, "url": "http://doi.org/10.1093/toxsci/kfv238", "authors": "Miller GW", "journal": "Toxicol Sci", "doi": "10.1093/toxsci/kfv238", "created_at": "2021-09-30T08:24:35.450Z", "updated_at": "2021-09-30T08:24:35.450Z"}, {"id": 1236, "pubmed_id": 26413172, "title": "GMS publishes your research findings - and makes the related research data available through Dryad.", "year": 2015, "url": "http://doi.org/10.3205/zma000976", "authors": "Arning U", "journal": "GMS Z Med Ausbild", "doi": "10.3205/zma000976", "created_at": "2021-09-30T08:24:37.891Z", "updated_at": "2021-09-30T08:24:37.891Z"}], "licence-links": [{"licence-name": "DataDryad Terms of Service", "licence-id": 220, "link-id": 755, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 770, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3019", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-27T11:07:08.000Z", "updated-at": "2021-12-06T10:49:23.086Z", "metadata": {"doi": "10.25504/FAIRsharing.wOcTaM", "name": "Genomic Observatories Meta-Database", "status": "ready", "contacts": [{"contact-name": "Eric Crandall", "contact-email": "ecrandall@psu.edu"}], "homepage": "https://geome-db.org/", "citations": [{"doi": "10.1371/journal.pbio.2002925", "pubmed-id": 28771471, "publication-id": 676}], "identifier": 3019, "description": "The Genomic Observatories Meta-Database (GEOME) is a web-based database that captures the who, what, where, and when of biological samples and associated genetic sequences. GEOME helps users with the following goals: ensure the metadata from your biological samples is findable, accessible, interoperable, and reusable; improve the quality of your data and comply with global data standards; and integrate with R, ease publication to NCBI's sequence read archive, and work with an associated LIMS. The initial use case for GEOME came from the Diversity of the Indo-Pacific Network (DIPnet) resource.", "abbreviation": "GEOME", "access-points": [{"url": "https://api.geome-db.org/apidocs/", "name": "Swagger API documentation", "type": "REST"}], "support-links": [{"url": "jdeck@berkeley.edu", "name": "John Deck", "type": "Support email"}, {"url": "https://docs.google.com/document/d/1tEFpclCyJ6aLnypmtdfdjLVhiWQ-rYhGqu5eGhq3s5s/edit", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://geome-db.org/docs/helpDocumentation.pdf", "name": "User Guide", "type": "Help documentation"}, {"url": "https://geome-db.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://geome-db.org/query", "name": "Query Data (Map View)", "type": "data access"}, {"url": "https://geome-db.org/workbench/dashboard", "name": "Workbench (Browse Data)", "type": "data access"}], "associated-tools": [{"url": "https://cran.r-project.org/web/packages/geomedb/index.html", "name": "GEOME R Package"}, {"url": "https://github.com/biocodellc/biocode-lims/releases", "name": "Biocode LIMS Plugin"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011707", "name": "re3data:r3d100011707", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001527", "bsg-d001527"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Ecology", "Biodiversity", "Evolutionary Biology", "Oceanography"], "domains": ["Biological sample annotation", "Centrally registered identifier", "Evolution", "Biological sample"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genomic Observatories Meta-Database", "abbreviation": "GEOME", "url": "https://fairsharing.org/10.25504/FAIRsharing.wOcTaM", "doi": "10.25504/FAIRsharing.wOcTaM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genomic Observatories Meta-Database (GEOME) is a web-based database that captures the who, what, where, and when of biological samples and associated genetic sequences. GEOME helps users with the following goals: ensure the metadata from your biological samples is findable, accessible, interoperable, and reusable; improve the quality of your data and comply with global data standards; and integrate with R, ease publication to NCBI's sequence read archive, and work with an associated LIMS. The initial use case for GEOME came from the Diversity of the Indo-Pacific Network (DIPnet) resource.", "publications": [{"id": 676, "pubmed_id": 28771471, "title": "The Genomic Observatories Metadatabase (GeOMe): A new repository for field and sampling event metadata associated with genetic samples.", "year": 2017, "url": "http://doi.org/10.1371/journal.pbio.2002925", "authors": "Deck J,Gaither MR,Ewing R,Bird CE,Davies N,Meyer C,Riginos C,Toonen RJ,Crandall ED", "journal": "PLoS Biol", "doi": "10.1371/journal.pbio.2002925", "created_at": "2021-09-30T08:23:34.544Z", "updated_at": "2021-09-30T08:23:34.544Z"}], "licence-links": [{"licence-name": "GEOME Data Usage Policy", "licence-id": 337, "link-id": 2300, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2301, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2892", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-03T11:20:20.000Z", "updated-at": "2022-02-08T10:31:24.604Z", "metadata": {"doi": "10.25504/FAIRsharing.8b493b", "name": "Food and Agriculture Microdata Catalogue", "status": "ready", "contacts": [{"contact-name": "FAM Helpdesk", "contact-email": "FAM-Catalogue@fao.org"}], "homepage": "https://microdata.fao.org/index.php/catalog", "identifier": 2892, "description": "The Food and Agriculture Microdata (FAM) Catalogue provides an inventory of datasets collected through farm and household surveys which contain information related to agriculture, food security, and nutrition. The FAM catalogue is populated by datasets which are collected directly by FAO and datasets whose collection are supported in some way by FAO. Our aim is to be a one-stop-shop containing metadata on all agricultural censuses and surveys which are publically available as well as provide direct access and/or links to the microdata. FAM is continuously updated as new datasets from FAO and member countries become available. Organizations which collect relevant data are also highly encouraged to submit datasets for dissemination through FAM.", "abbreviation": "FAM", "support-links": [{"url": "http://www.fao.org/food-agriculture-microdata/en/", "name": "About FAO Microdata", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://microdata.fao.org/index.php/catalog/central/about", "name": "Browse Collections", "type": "data access"}, {"url": "https://microdata.fao.org/index.php/catalog/central", "name": "Browse / Search Datasets", "type": "data access"}]}, "legacy-ids": ["biodbcore-001393", "bsg-d001393"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Food Security", "Agriculture", "Nutritional Science"], "domains": ["Food"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Food and Agriculture Microdata Catalogue", "abbreviation": "FAM", "url": "https://fairsharing.org/10.25504/FAIRsharing.8b493b", "doi": "10.25504/FAIRsharing.8b493b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Food and Agriculture Microdata (FAM) Catalogue provides an inventory of datasets collected through farm and household surveys which contain information related to agriculture, food security, and nutrition. The FAM catalogue is populated by datasets which are collected directly by FAO and datasets whose collection are supported in some way by FAO. Our aim is to be a one-stop-shop containing metadata on all agricultural censuses and surveys which are publically available as well as provide direct access and/or links to the microdata. FAM is continuously updated as new datasets from FAO and member countries become available. Organizations which collect relevant data are also highly encouraged to submit datasets for dissemination through FAM.", "publications": [], "licence-links": [{"licence-name": "FAO copyright", "licence-id": 311, "link-id": 417, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2893", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-04T13:13:45.000Z", "updated-at": "2022-02-08T10:31:26.190Z", "metadata": {"doi": "10.25504/FAIRsharing.05e1a4", "name": "Database of Somatic Mutations in Normal Cells", "status": "ready", "contacts": [{"contact-name": "Xuexia Miao", "contact-email": "miaoxx@big.ac.cn"}], "homepage": "http://dsmnc.big.ac.cn/", "citations": [{"doi": "10.1093/nar/gky1045", "pubmed-id": 30380071, "publication-id": 2355}], "identifier": 2893, "description": "The Database of Somatic Mutations in Normal Cells (DSMNC) provides a catalogue of somatic single nucleotide variations (SNVs) occurring in single cells from various human and mouse normal tissues.", "abbreviation": "DSMNC", "support-links": [{"url": "juncai@big.ac.cn", "name": "Jun Cai", "type": "Support email"}, {"url": "lixi2018m@big.ac.cn", "name": "Xi Li", "type": "Support email"}, {"url": "http://dsmnc.big.ac.cn/help.html", "name": "Help Pages", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://dsmnc.big.ac.cn/s.php", "name": "Browse SNV Table", "type": "data access"}, {"url": "http://dsmnc.big.ac.cn/JBrowse/?data=human", "name": "Browse on Chromosome (Human)", "type": "data access"}, {"url": "http://dsmnc.big.ac.cn/JBrowse/?data=mouse", "name": "Browse on Chromosome (Mouse)", "type": "data access"}, {"url": "http://dsmnc.big.ac.cn/sbr.html", "name": "Search", "type": "data access"}, {"url": "http://dsmnc.big.ac.cn/data.php", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001394", "bsg-d001394"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics"], "domains": ["Cell", "Somatic mutation", "Mutation", "Point mutation"], "taxonomies": ["Homo sapiens", "Mus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Database of Somatic Mutations in Normal Cells", "abbreviation": "DSMNC", "url": "https://fairsharing.org/10.25504/FAIRsharing.05e1a4", "doi": "10.25504/FAIRsharing.05e1a4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Somatic Mutations in Normal Cells (DSMNC) provides a catalogue of somatic single nucleotide variations (SNVs) occurring in single cells from various human and mouse normal tissues.", "publications": [{"id": 2355, "pubmed_id": 30380071, "title": "DSMNC: a database of somatic mutations in normal cells.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1045", "authors": "Miao X,Li X,Wang L,Zheng C,Cai J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1045", "created_at": "2021-09-30T08:26:49.489Z", "updated_at": "2021-09-30T11:29:34.012Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1597, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1629", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.638Z", "metadata": {"doi": "10.25504/FAIRsharing.rn1pxg", "name": "Plant Natural Antisense Transcripts Database", "status": "deprecated", "contacts": [{"contact-name": "Ling-Ling Chen", "contact-email": "llchen@mail.hzau.edu.cn"}], "homepage": "http://bis.zju.edu.cn/pnatdb/", "identifier": 1629, "description": "Natural Antisense Transcripts (NATs), a kind of regulatory RNAs, occur prevalently in plant genomes and play significant roles in physiological and/or pathological processes. PlantNATsDB (Plant Natural Antisense Transcripts DataBase) is a platform for annotating and discovering NATs by integrating various data sources. PlantNATsDB also provides an integrative, interactive and information-rich web graphical interface to display multidimensional data, and facilitate plant research community and the discovery of functional NATs.", "abbreviation": "PlantNATsDB", "support-links": [{"url": "http://bis.zju.edu.cn/pnatdb/document/", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "computational prediction", "type": "data curation"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://bis.zju.edu.cn/pnatdb/?species=ace", "name": "search", "type": "data access"}, {"url": "http://bis.zju.edu.cn/pnatdb/browse/?browser=name&species=ace", "name": "browse", "type": "data access"}, {"url": "http://bis.zju.edu.cn/pnatdb/download", "name": "file download (FASTA, txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000085", "bsg-d000085"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Gene name", "DNA sequence data", "Gene model annotation", "Molecular function", "Cellular component", "Biological process", "Untranslated RNA", "Transcript"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Plant Natural Antisense Transcripts Database", "abbreviation": "PlantNATsDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.rn1pxg", "doi": "10.25504/FAIRsharing.rn1pxg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Natural Antisense Transcripts (NATs), a kind of regulatory RNAs, occur prevalently in plant genomes and play significant roles in physiological and/or pathological processes. PlantNATsDB (Plant Natural Antisense Transcripts DataBase) is a platform for annotating and discovering NATs by integrating various data sources. PlantNATsDB also provides an integrative, interactive and information-rich web graphical interface to display multidimensional data, and facilitate plant research community and the discovery of functional NATs.", "publications": [{"id": 702, "pubmed_id": 22058132, "title": "PlantNATsDB: a comprehensive database of plant natural antisense transcripts", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr823", "authors": "Dijun Chen, Chunhui Yuan, Jian Zhang, Zhao Zhang, Lin Bai, Yijun Meng, Ling-Ling Chen, and Ming Chen", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr823", "created_at": "2021-09-30T08:23:37.386Z", "updated_at": "2021-09-30T08:23:37.386Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3114", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-10T12:04:34.000Z", "updated-at": "2022-02-08T10:32:57.385Z", "metadata": {"doi": "10.25504/FAIRsharing.44a554", "name": "Global Terrestrial Network for Permafrost - Database", "status": "ready", "contacts": [{"contact-name": "Arctic Portal General Contact", "contact-email": "info@arcticportal.org"}], "homepage": "http://gtnpdatabase.org/", "citations": [], "identifier": 3114, "description": "The Global Terrestrial Network for Permafrost (GTN-P) database stores information regarding essential climate variables (ECV) as part of the Global Terrestrial Network on Permafrost (GTN-P) programme. The database aims to provide information on the relationships between ground temperature, gas fluxes and the Earth\u2019s climate system. GTN-P contains time series for borehole temperatures and grids of active layer thickness (TSP, CALM) plus air and surface temperature and moisture (DUE Permafrost, MODIS) measured in the terrestrial Panarctic, Antarctic and Mountainous realms.", "abbreviation": "GTN-P", "support-links": [{"url": "boris.biskaborn@awi.de", "name": "Support Contact", "type": "Support email"}, {"url": "https://gtnp.arcticportal.org/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://gtnp.arcticportal.org/index.php/help", "name": "Help", "type": "Help documentation"}, {"url": "https://gtnp.arcticportal.org/data", "name": "About the Data", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://gtnpdatabase.org/boreholes", "name": "Search & Browse Boreholes", "type": "data access"}, {"url": "http://gtnpdatabase.org/activelayers", "name": "Search & Browse Annual Thaw Depths", "type": "data access"}, {"url": "https://gtnp.arcticportal.org/index.php/resources/maps", "name": "Dowload Maps", "type": "data release"}, {"url": "https://gtnp.arcticportal.org/index.php/data/data-handling/15-database/18-data-download", "name": "Download Data", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011065", "name": "re3data:r3d100011065", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001624", "bsg-d001624"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": ["permafrost"], "countries": ["Iceland", "Worldwide"], "name": "FAIRsharing record for: Global Terrestrial Network for Permafrost - Database", "abbreviation": "GTN-P", "url": "https://fairsharing.org/10.25504/FAIRsharing.44a554", "doi": "10.25504/FAIRsharing.44a554", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Terrestrial Network for Permafrost (GTN-P) database stores information regarding essential climate variables (ECV) as part of the Global Terrestrial Network on Permafrost (GTN-P) programme. The database aims to provide information on the relationships between ground temperature, gas fluxes and the Earth\u2019s climate system. GTN-P contains time series for borehole temperatures and grids of active layer thickness (TSP, CALM) plus air and surface temperature and moisture (DUE Permafrost, MODIS) measured in the terrestrial Panarctic, Antarctic and Mountainous realms.", "publications": [], "licence-links": [{"licence-name": "GTN-P Data Policies", "licence-id": 367, "link-id": 1997, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3115", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-10T14:26:56.000Z", "updated-at": "2022-02-08T10:33:09.685Z", "metadata": {"doi": "10.25504/FAIRsharing.893fc2", "name": "GERDA", "status": "ready", "contacts": [{"contact-name": "GEUS General Contact", "contact-email": "geus@geus.dk"}], "homepage": "https://eng.geus.dk/products-services-facilities/data-and-maps/national-geophysical-database-gerda/", "identifier": 3115, "description": "GERDA is the national geophysical database for Denmark. It contains geophysical data, primarily collected during the mapping of areas of special drinking water interests and the national groundwater mapping. It also contains the logging data collected by the Geological Survey of Denmark and Greenland (GEUS) and consulting engineering companies from exploration and water-supply wells.", "abbreviation": "GERDA", "access-points": [{"url": "http://data.geus.dk/geusmap/ows/help/?mapname=gerda&epsg=25832", "name": "GERDA / GEUS Web Services", "type": "Other"}], "support-links": [{"url": "mh@geus.dk", "name": "Martin Hansen", "type": "Support email"}], "year-creation": 1998, "data-processes": [{"url": "http://data.geus.dk/geusmap/?mapname=gerda&embed=false&tool=&lang=en#baslay=baseMapDa", "name": "Map Search", "type": "data access"}, {"url": "http://gerda.geus.dk/Gerda/Search", "name": "Text Search (Danish)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011484", "name": "re3data:r3d100011484", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001625", "bsg-d001625"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Geophysics", "Earth Science", "Water Research"], "domains": ["Geographical location"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: GERDA", "abbreviation": "GERDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.893fc2", "doi": "10.25504/FAIRsharing.893fc2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GERDA is the national geophysical database for Denmark. It contains geophysical data, primarily collected during the mapping of areas of special drinking water interests and the national groundwater mapping. It also contains the logging data collected by the Geological Survey of Denmark and Greenland (GEUS) and consulting engineering companies from exploration and water-supply wells.", "publications": [], "licence-links": [{"licence-name": "GEUS Terms of Use", "licence-id": 340, "link-id": 468, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3131", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T10:06:19.000Z", "updated-at": "2022-02-08T10:33:35.988Z", "metadata": {"doi": "10.25504/FAIRsharing.2877fa", "name": "Global Monitoring Laboratory Data Finder and Viewer", "status": "ready", "contacts": [{"contact-name": "GMD General Contact", "contact-email": "webmaster.gmd@noaa.gov"}], "homepage": "https://esrl.noaa.gov/gmd/dv/data/", "identifier": 3131, "description": "The Global Monitoring Laboratory (GML) performs reference measurements and research focused on the role of the atmosphere on global climate forcing, the ozone layer and background air quality. Its purpose is to acquire, evaluate, and make available accurate, long-term records of atmospheric gases, aerosol particles, clouds, and surface radiation in a manner that allows the causes and consequences of change to be understood. GML provides access to its data repository via searching with the Data Finder and map-based viewing with the Data Viewer. GML supports research and innovation in a number of areas, including atmospheric measurement development, calibration, and testing; measurement intercomparison; top-down emission quantification; satellite and model data evaluation; and renewable (solar and wind) energy production forecasting.", "abbreviation": "GML Data Finder and Viewer", "support-links": [{"url": "https://twitter.com/NOAA_ESRL", "name": "@NOAA_ESRL", "type": "Twitter"}], "data-processes": [{"url": "https://esrl.noaa.gov/gmd/dv/data/", "name": "Data Finder", "type": "data access"}, {"url": "https://esrl.noaa.gov/gmd/dv/iadv/", "name": "Data Viewer", "type": "data access"}, {"url": "ftp://aftp.cmdl.noaa.gov/", "name": "Download (FTP)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001642", "bsg-d001642"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Energy Engineering", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ozone", "Renewable Energy"], "countries": ["United States"], "name": "FAIRsharing record for: Global Monitoring Laboratory Data Finder and Viewer", "abbreviation": "GML Data Finder and Viewer", "url": "https://fairsharing.org/10.25504/FAIRsharing.2877fa", "doi": "10.25504/FAIRsharing.2877fa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Monitoring Laboratory (GML) performs reference measurements and research focused on the role of the atmosphere on global climate forcing, the ozone layer and background air quality. Its purpose is to acquire, evaluate, and make available accurate, long-term records of atmospheric gases, aerosol particles, clouds, and surface radiation in a manner that allows the causes and consequences of change to be understood. GML provides access to its data repository via searching with the Data Finder and map-based viewing with the Data Viewer. GML supports research and innovation in a number of areas, including atmospheric measurement development, calibration, and testing; measurement intercomparison; top-down emission quantification; satellite and model data evaluation; and renewable (solar and wind) energy production forecasting.", "publications": [], "licence-links": [{"licence-name": "NOAA Disclaimer", "licence-id": 595, "link-id": 1868, "relation": "undefined"}, {"licence-name": "NOAA Privacy", "licence-id": 596, "link-id": 1869, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3138", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T08:14:27.000Z", "updated-at": "2022-02-08T10:33:43.681Z", "metadata": {"doi": "10.25504/FAIRsharing.a00142", "name": "Climate Data Online", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ncei.orders@noaa.gov"}], "homepage": "https://www.ncdc.noaa.gov/cdo-web/", "identifier": 3138, "description": "Climate Data Online (CDO) provides free access to NCDC's archive of global historical weather and climate data in addition to station history information. These data include quality controlled daily, monthly, seasonal, and yearly measurements of temperature, precipitation, wind, and degree days as well as radar data and 30-year Climate Normals. The data available through CDO is available at no charge and can be viewed online or ordered and delivered via email.", "abbreviation": "CDO", "access-points": [{"url": "https://www.ncdc.noaa.gov/cdo-web/webservices/", "name": "CDO Web Services", "type": "REST"}], "support-links": [{"url": "https://www.ncdc.noaa.gov/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.ncdc.noaa.gov/cdo-web/orderhelp", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ncdc.noaa.gov/cdo-web/faq", "name": "CDO FAQs", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "https://www.ncdc.noaa.gov/cdo-web/search", "name": "Search", "type": "data access"}, {"url": "https://gis.ncdc.noaa.gov/maps/ncei/", "name": "Map Viewer", "type": "data access"}, {"url": "https://www.ncdc.noaa.gov/cdo-web/datatools", "name": "Additional Search Tools", "type": "data access"}, {"url": "https://www.ncdc.noaa.gov/cdo-web/datasets", "name": "Browse by Dataset Type", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011704", "name": "re3data:r3d100011704", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001649", "bsg-d001649"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Atmospheric Science", "Remote Sensing", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Climate Data Online", "abbreviation": "CDO", "url": "https://fairsharing.org/10.25504/FAIRsharing.a00142", "doi": "10.25504/FAIRsharing.a00142", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Climate Data Online (CDO) provides free access to NCDC's archive of global historical weather and climate data in addition to station history information. These data include quality controlled daily, monthly, seasonal, and yearly measurements of temperature, precipitation, wind, and degree days as well as radar data and 30-year Climate Normals. The data available through CDO is available at no charge and can be viewed online or ordered and delivered via email.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3140", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T09:15:03.000Z", "updated-at": "2022-02-08T10:33:55.069Z", "metadata": {"doi": "10.25504/FAIRsharing.ed5b45", "name": "Coral Reef Information System", "status": "ready", "contacts": [{"contact-name": "CoRIS General Contact", "contact-email": "coris@noaa.gov"}], "homepage": "https://www.coris.noaa.gov/", "identifier": 3140, "description": "CoRIS is the Coral Reef Conservation Program's (CRCP) information portal that provides access to NOAA coral reef information and data products with emphasis on the U.S. states, territories and remote island areas. NOAA Coral Reef activities include coral reef mapping, monitoring and assessment; natural and socioeconomic research and modeling; outreach and education; and management and stewardship.", "abbreviation": "CoRIS", "access-points": [{"url": "https://www.coris.noaa.gov/data/searchtips.html", "name": "CoRIS Web Service Information", "type": "REST"}], "support-links": [{"url": "https://www.coris.noaa.gov/data/searchtips.html", "name": "Search Tips", "type": "Help documentation"}, {"url": "https://www.coris.noaa.gov/rss/", "name": "RSS Feed Options", "type": "Blog/News"}, {"url": "https://twitter.com/NOAACoral", "name": "@NOAACoral", "type": "Twitter"}], "data-processes": [{"url": "https://www.coris.noaa.gov/search/catalog/main/home.page", "name": "Search", "type": "data access"}, {"url": "https://www.coris.noaa.gov/search/catalog/search/browse/browse.page", "name": "Browse", "type": "data access"}, {"url": "https://www.coris.noaa.gov/search/rest/find/document?searchText=group%3Apublication&max=25&f=searchPage", "name": "Publication Search", "type": "data access"}, {"url": "https://www.coris.noaa.gov/portals/welcome.html", "name": "Regional Data Portals", "type": "data access"}, {"url": "https://www.coris.noaa.gov/glossary/welcome.html#/", "name": "Browse & Search Glossary", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010056", "name": "re3data:r3d100010056", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001651", "bsg-d001651"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology"], "domains": ["Marine coral reef biome", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Coral Reef Information System", "abbreviation": "CoRIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.ed5b45", "doi": "10.25504/FAIRsharing.ed5b45", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CoRIS is the Coral Reef Conservation Program's (CRCP) information portal that provides access to NOAA coral reef information and data products with emphasis on the U.S. states, territories and remote island areas. NOAA Coral Reef activities include coral reef mapping, monitoring and assessment; natural and socioeconomic research and modeling; outreach and education; and management and stewardship.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1550", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:29.743Z", "metadata": {"doi": "10.25504/FAIRsharing.y2yct1", "name": "Allele frequency resource for research and teaching", "status": "ready", "contacts": [{"contact-name": "Kenneth K. Kidd", "contact-email": "kidd@biomed.med.yale.edu"}], "homepage": "https://alfred.med.yale.edu/alfred/index.asp", "citations": [], "identifier": 1550, "description": "ALFRED is designed to make allele frequency data on human population samples readily available for use by the scientific and educational communities.", "abbreviation": "ALFRED", "support-links": [{"url": "https://alfred.med.yale.edu/alfred/feedback.asp", "type": "Contact form"}, {"url": "alfred@yale.edu", "type": "Support email"}, {"url": "https://alfred.med.yale.edu/alfred/alfredFaq.asp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://alfred.med.yale.edu/alfred/ALFREDtour-overview.asp", "type": "Help documentation"}, {"url": "http://alfred.med.yale.edu/alfred/AboutALFRED.asp", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "weekly release of database dump", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"url": "https://alfred.med.yale.edu/alfred/keywordsearch.asp", "name": "search", "type": "data access"}, {"url": "http://alfred.med.yale.edu/alfred/alfredDataDownload.asp", "name": "file download(tab-delimited)", "type": "data access"}, {"url": "https://alfred.med.yale.edu/alfred/sitelist.asp", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012700", "name": "re3data:r3d100012700", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001730", "name": "SciCrunch:RRID:SCR_001730", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000004", "bsg-d000004"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genetic polymorphism", "Allele", "Allele frequency"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Allele frequency resource for research and teaching", "abbreviation": "ALFRED", "url": "https://fairsharing.org/10.25504/FAIRsharing.y2yct1", "doi": "10.25504/FAIRsharing.y2yct1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ALFRED is designed to make allele frequency data on human population samples readily available for use by the scientific and educational communities.", "publications": [{"id": 37, "pubmed_id": 10592274, "title": "ALFRED: an allele frequency database for diverse populations and DNA polymorphisms.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.361", "authors": "Cheung KH., Osier MV., Kidd JR., Pakstis AJ., Miller PL., Kidd KK.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.361", "created_at": "2021-09-30T08:22:24.354Z", "updated_at": "2021-09-30T08:22:24.354Z"}, {"id": 38, "pubmed_id": 12519999, "title": "ALFRED: the ALelle FREquency Database. Update.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg043", "authors": "Rajeevan H., Osier MV., Cheung KH., Deng H., Druskin L., Heinzen R., Kidd JR., Stein S., Pakstis AJ., Tosches NP., Yeh CC., Miller PL., Kidd KK.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg043", "created_at": "2021-09-30T08:22:24.446Z", "updated_at": "2021-09-30T08:22:24.446Z"}, {"id": 1554, "pubmed_id": 22039151, "title": "ALFRED: an allele frequency resource for research and teaching.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr924", "authors": "Rajeevan H,Soundararajan U,Kidd JR,Pakstis AJ,Kidd KK", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr924", "created_at": "2021-09-30T08:25:14.291Z", "updated_at": "2021-09-30T11:29:13.601Z"}], "licence-links": [{"licence-name": "Yale Medical School Copyright", "licence-id": 878, "link-id": 615, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2142", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:02.679Z", "metadata": {"doi": "10.25504/FAIRsharing.65yfxp", "name": "Protein Circular Dichroism Data Bank", "status": "ready", "contacts": [{"contact-name": "Bonnie A. Wallace", "contact-email": "b.wallace@mail.cryst.bbk.ac.uk", "contact-orcid": "0000-0003-1670-5796"}], "homepage": "http://pcddb.cryst.bbk.ac.uk", "identifier": 2142, "description": "The Protein Circular Dichroism Data Bank (PCDDB) is an open-access online repository for protein circular dichroism spectral- and meta-data. Users may freely extract and deposit validated data and the validation process is conveniently integrated into the deposition procedure. The PCDDB is a collaborative project between Birkbeck College, University of London and Queen Mary University of London and is funded by the U.K.'s Biotechnology and Biological Sciences Research Council.", "abbreviation": "PCDDB", "access-points": [{"url": "https://pcddb.cryst.bbk.ac.uk/api/", "name": "PCDDB API", "type": "Other"}], "support-links": [{"url": "https://pcddb.cryst.bbk.ac.uk/news.php", "name": "News", "type": "Blog/News"}, {"url": "pcddb@mail.cryst.bbk.ac.uk", "type": "Support email"}, {"url": "https://pcddb.cryst.bbk.ac.uk/help.php", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UC0ykpuE4phHXFJPSVQuN3kA", "name": "Youtube", "type": "Video"}, {"url": "https://pcddb.cryst.bbk.ac.uk/glossary.php", "name": "Glossary", "type": "Help documentation"}, {"url": "https://twitter.com/pcddb", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://pcddb.cryst.bbk.ac.uk/search.php?st1=IDNameAlts&q=", "name": "Browse & search", "type": "data access"}, {"url": "https://pcddb.cryst.bbk.ac.uk/download.php", "name": "Download", "type": "data access"}, {"url": "https://pcddb.cryst.bbk.ac.uk/", "name": "Deposit", "type": "data curation"}], "associated-tools": [{"url": "http://dichroweb.cryst.bbk.ac.uk/", "name": "DichroWeb"}, {"url": "http://valispec.cryst.bbk.ac.uk/circularDichroism/ValiDichro/upload.html", "name": "ValiDichro"}, {"url": "https://pcddb.cryst.bbk.ac.uk/dichromatch.php", "name": "DichroMatch"}, {"url": "http://2struc.cryst.bbk.ac.uk/", "name": "2StrucCompare"}, {"url": "http://cdtools.cryst.bbk.ac.uk/", "name": "CDTools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010890", "name": "re3data:r3d100010890", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_017428", "name": "SciCrunch:RRID:SCR_017428", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000613", "bsg-d000613"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science"], "domains": ["Molecular structure", "Protein circular dichroism spectroscopic data", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Protein Circular Dichroism Data Bank", "abbreviation": "PCDDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.65yfxp", "doi": "10.25504/FAIRsharing.65yfxp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Circular Dichroism Data Bank (PCDDB) is an open-access online repository for protein circular dichroism spectral- and meta-data. Users may freely extract and deposit validated data and the validation process is conveniently integrated into the deposition procedure. The PCDDB is a collaborative project between Birkbeck College, University of London and Queen Mary University of London and is funded by the U.K.'s Biotechnology and Biological Sciences Research Council.", "publications": [{"id": 599, "pubmed_id": 21071417, "title": "PCDDB: the Protein Circular Dichroism Data Bank, a repository for circular dichroism spectral and metadata.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1026", "authors": "Whitmore L, Woollett B, Miles AJ, Klose DP, Janes RW, Wallace BA.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1026", "created_at": "2021-09-30T08:23:25.685Z", "updated_at": "2021-09-30T08:23:25.685Z"}, {"id": 1669, "pubmed_id": 22674824, "title": "Circular dichroism spectral data and metadata in the Protein Circular Dichroism Data Bank (PCDDB): a tutorial guide to accession and deposition.", "year": 2012, "url": "http://doi.org/10.1002/chir.22050", "authors": "Janes RW, Miles AJ, Woollett B, Whitmore L, Klose D, Wallace BA.", "journal": "Chirality", "doi": "10.1002/chir.22050", "created_at": "2021-09-30T08:25:26.953Z", "updated_at": "2021-09-30T08:25:26.953Z"}, {"id": 2063, "pubmed_id": 27613420, "title": "PCDDB: new developments at the Protein Circular Dichroism Data Bank.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw796", "authors": "Whitmore L,Miles AJ,Mavridis L,Janes RW,Wallace BA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw796", "created_at": "2021-09-30T08:26:12.447Z", "updated_at": "2021-09-30T11:29:27.704Z"}], "licence-links": [{"licence-name": "PCDDB Terms and Conditions of use", "licence-id": 650, "link-id": 931, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3011", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-22T07:17:49.000Z", "updated-at": "2022-02-08T10:40:30.315Z", "metadata": {"doi": "10.25504/FAIRsharing.20f490", "name": "DDBJ Biosample", "status": "ready", "contacts": [{"contact-name": "Osamu Ogasawara", "contact-email": "oogasawa@nig.ac.jp"}], "homepage": "https://www.ddbj.nig.ac.jp/biosample/index-e.html", "citations": [], "identifier": 3011, "description": "The BioSample database was developed to serve as a central location in which to capture and store descriptive information about the biological source materials, or samples, used to generate experimental data in any of DDBJ\u2019s primary data archives. Typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism, or an environmental isolate.", "abbreviation": "DDBJ Biosample", "support-links": [{"url": "https://www.ddbj.nig.ac.jp/contact-e.html", "type": "Contact form"}, {"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html?tag=biosample", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ddbj.nig.ac.jp/biosample/submission-e.html", "name": "Handbook", "type": "Help documentation"}, {"url": "https://www.ddbj.nig.ac.jp/biosample/validation-e.html", "name": "Validation rules", "type": "Help documentation"}], "data-processes": [{"url": "https://ddbj.nig.ac.jp/BSSearch/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/ddbj/pub/tree/master/docs/biosample/xsd", "name": "Download xml", "type": "data access"}, {"url": "https://www.ddbj.nig.ac.jp/biosample/submission-e.html#biosample-submission", "name": "Submit", "type": "data curation"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001519", "bsg-d001519"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biology"], "domains": ["Model organism", "Cell line", "Biological sample", "Sample preparation for assay", "Material processing", "Whole mount tissue"], "taxonomies": ["All"], "user-defined-tags": ["Biopsy", "Experimental condition"], "countries": ["Japan"], "name": "FAIRsharing record for: DDBJ Biosample", "abbreviation": "DDBJ Biosample", "url": "https://fairsharing.org/10.25504/FAIRsharing.20f490", "doi": "10.25504/FAIRsharing.20f490", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BioSample database was developed to serve as a central location in which to capture and store descriptive information about the biological source materials, or samples, used to generate experimental data in any of DDBJ\u2019s primary data archives. Typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism, or an environmental isolate.", "publications": [], "licence-links": [{"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 1800, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3275", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-21T13:23:08.000Z", "updated-at": "2022-02-08T10:36:00.295Z", "metadata": {"doi": "10.25504/FAIRsharing.fc3431", "name": "Bitbucket", "status": "ready", "homepage": "https://bitbucket.org/", "identifier": 3275, "description": "Bitbucket is a Git-based source code repository hosting service owned by Atlassian. It provides a number of different access levels, from free through to premium paid services. Users can create public or private repositories, the latter of which is restricted to 5 users under the free plan.", "abbreviation": "Bitbucket", "support-links": [{"url": "https://support.atlassian.com/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://support.atlassian.com/bitbucket-cloud/resources/", "name": "Help", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Bitbucket", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2008, "data-processes": [{"url": "https://bitbucket.org/search", "name": "Search (login required)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013478", "name": "re3data:r3d100013478", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000502", "name": "SciCrunch:RRID:SCR_000502", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001790", "bsg-d001790"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Bitbucket", "abbreviation": "Bitbucket", "url": "https://fairsharing.org/10.25504/FAIRsharing.fc3431", "doi": "10.25504/FAIRsharing.fc3431", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bitbucket is a Git-based source code repository hosting service owned by Atlassian. It provides a number of different access levels, from free through to premium paid services. Users can create public or private repositories, the latter of which is restricted to 5 users under the free plan.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3258", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-12T14:04:15.000Z", "updated-at": "2022-02-08T10:35:41.154Z", "metadata": {"doi": "10.25504/FAIRsharing.2f66da", "name": "Atlas of Living Australia", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "support@ala.org.au"}], "homepage": "https://www.ala.org.au/", "citations": [], "identifier": 3258, "description": "The Atlas of Living Australia (ALA) is a collaborative, digital, open infrastructure that pulls together Australian biodiversity data from multiple sources, making it accessible and reusable. The ALA helps to create a more detailed picture of Australia\u2019s biodiversity for scientists, policy makers, environmental planners and land managers, industry and the general public.", "abbreviation": "ALA", "support-links": [{"url": "https://support.ala.org.au/blog/", "name": "News", "type": "Blog/News"}, {"url": "https://support.ala.org.au/support/home", "name": "Help", "type": "Help documentation"}, {"url": "https://dashboard.ala.org.au/", "name": "Dashboard (Statistics)", "type": "Help documentation"}, {"url": "https://www.ala.org.au/about-ala/", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://biocache.ala.org.au/explore/your-area", "name": "Map Search", "type": "data access"}, {"url": "https://biocache.ala.org.au/#tab_simpleSearch", "name": "Search", "type": "data access"}, {"url": "https://regions.ala.org.au/#rt=States%20and%20territories", "name": "Browse Regions", "type": "data access"}, {"url": "https://collections.ala.org.au/", "name": "Browse Natural History Collections", "type": "data access"}, {"url": "https://lists.ala.org.au/iconic-species?fq=kvp+group%3ABirds", "name": "Browse Iconic Species", "type": "data access"}, {"url": "https://specimens.ala.org.au/", "name": "Browse Specimen Images", "type": "data access"}, {"url": "https://collections.ala.org.au/datasets", "name": "Search Datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010918", "name": "re3data:r3d100010918", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006467", "name": "SciCrunch:RRID:SCR_006467", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001772", "bsg-d001772"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Biodiversity"], "domains": ["Image"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Atlas of Living Australia", "abbreviation": "ALA", "url": "https://fairsharing.org/10.25504/FAIRsharing.2f66da", "doi": "10.25504/FAIRsharing.2f66da", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atlas of Living Australia (ALA) is a collaborative, digital, open infrastructure that pulls together Australian biodiversity data from multiple sources, making it accessible and reusable. The ALA helps to create a more detailed picture of Australia\u2019s biodiversity for scientists, policy makers, environmental planners and land managers, industry and the general public.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)", "licence-id": 162, "link-id": 843, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3277", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-21T13:33:16.000Z", "updated-at": "2022-02-08T10:36:01.835Z", "metadata": {"doi": "10.25504/FAIRsharing.530e61", "name": "GitLab", "status": "ready", "contacts": [], "homepage": "https://about.gitlab.com/", "citations": [], "identifier": 3277, "description": "GitLab is a Git-based source code repository with wiki and issue tracker functionality. It provides a number of different access levels, from free through to a number of paid services.", "abbreviation": "GitLab", "support-links": [{"url": "https://forum.gitlab.com/", "name": "Community Forum", "type": "Forum"}, {"url": "https://about.gitlab.com/support/", "name": "Support", "type": "Help documentation"}, {"url": "https://twitter.com/gitlab", "name": "@gitlab", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/GitLab", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"url": "https://gitlab.com/explore", "name": "Explore Projects", "type": "data access"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001792", "bsg-d001792"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GitLab", "abbreviation": "GitLab", "url": "https://fairsharing.org/10.25504/FAIRsharing.530e61", "doi": "10.25504/FAIRsharing.530e61", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GitLab is a Git-based source code repository with wiki and issue tracker functionality. It provides a number of different access levels, from free through to a number of paid services.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3278", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-21T14:40:05.000Z", "updated-at": "2022-02-08T10:36:10.738Z", "metadata": {"doi": "10.25504/FAIRsharing.b138b5", "name": "SourceForge", "status": "ready", "homepage": "https://sourceforge.net/", "identifier": 3278, "description": "SourceForge is a free Open Source software repository providing services including version control, issue tracking and wiki pages.", "abbreviation": "SourceForge", "support-links": [{"url": "https://sourceforge.net/blog/", "name": "Blog", "type": "Blog/News"}, {"url": "https://sourceforge.net/support", "name": "Support", "type": "Contact form"}, {"url": "https://twitter.com/sourceforge", "name": "@sourceforge", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/SourceForge", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1999, "data-processes": [{"url": "https://sourceforge.net/directory/os:linux/", "name": "Browse Open Source Software", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010167", "name": "re3data:r3d100010167", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001793", "bsg-d001793"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SourceForge", "abbreviation": "SourceForge", "url": "https://fairsharing.org/10.25504/FAIRsharing.b138b5", "doi": "10.25504/FAIRsharing.b138b5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SourceForge is a free Open Source software repository providing services including version control, issue tracking and wiki pages.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3279", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-21T14:59:37.000Z", "updated-at": "2022-02-08T10:36:13.378Z", "metadata": {"doi": "10.25504/FAIRsharing.a2ba05", "name": "Launchpad", "status": "ready", "contacts": [{"contact-name": "General Help", "contact-email": "help@launchpad.net"}], "homepage": "https://launchpad.net", "identifier": 3279, "description": "Launchpad is a software and source code repository with a number of features including bug tracking, translations, new feature tracking and both Bazaar and Git version control.", "abbreviation": "Launchpad", "support-links": [{"url": "http://blog.launchpad.net/", "name": "Blog", "type": "Blog/News"}, {"url": "https://answers.launchpad.net/launchpad/+addquestion", "name": "Launchpad Answers", "type": "Contact form"}, {"url": "https://help.launchpad.net/Feedback", "name": "Support", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Launchpad_%28website%29", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2004, "data-processes": [{"url": "https://launchpad.net/projects", "name": "Search Projects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010373", "name": "re3data:r3d100010373", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006853", "name": "SciCrunch:RRID:SCR_006853", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001794", "bsg-d001794"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Launchpad", "abbreviation": "Launchpad", "url": "https://fairsharing.org/10.25504/FAIRsharing.a2ba05", "doi": "10.25504/FAIRsharing.a2ba05", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Launchpad is a software and source code repository with a number of features including bug tracking, translations, new feature tracking and both Bazaar and Git version control.", "publications": [], "licence-links": [{"licence-name": "Launchpad Terms of Use", "licence-id": 485, "link-id": 1784, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3687", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-15T09:41:47.448Z", "updated-at": "2022-02-08T10:38:15.872Z", "metadata": {"doi": "10.25504/FAIRsharing.618298", "name": "Allen Brain Map Data Catalog", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "publications@alleninstitute.org", "contact-orcid": null}], "homepage": "https://knowledge.brain-map.org/", "citations": [], "identifier": 3687, "description": "The Allen Brain Map Data Catalog provides a public index of neuroscience data and tools from the Allen Institute for Brain Science and NIH's BRAIN Initiative Cell Census Network, storing data from a variety of projects run from within the Institute.", "abbreviation": null, "access-points": [{"url": "http://api.brain-map.org/api/v2/data", "name": "Allen Brain Map API", "type": "REST", "example-url": "http://api.brain-map.org/api/v2/status/query.xml", "documentation-url": "https://help.brain-map.org/display/api/Allen+Brain+Atlas+API"}], "data-curation": {}, "support-links": [{"url": "https://secure2.convio.net/allins/site/SPageServer/?pagename=send_message_ai", "name": "General Contact Form", "type": "Contact form"}, {"url": "https://community.brain-map.org/", "name": "Community Forum", "type": "Forum"}, {"url": "https://twitter.com/AllenInstitute", "name": "@AllenInstitute", "type": "Twitter"}, {"url": "https://www.youtube.com/user/AllenInstitute", "name": "YouTube channel", "type": "Video"}, {"url": "https://alleninstitute.github.io/", "name": "Allen Institute GitHub Repository", "type": "Github"}], "year-creation": 2021, "data-processes": [{"url": "https://portal.brain-map.org/latest-data-release", "name": "Latest Data Releases", "type": "data release"}, {"url": "https://knowledge.brain-map.org", "name": "Search and Browse", "type": "data access"}], "associated-tools": [{"url": "https://allensdk.readthedocs.io/en/latest/", "name": "Allen SDK"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Neurobiology", "Neuroscience"], "domains": ["RNA sequencing", "In situ hybridization", "Brain"], "taxonomies": ["All"], "user-defined-tags": ["Neuroanatomy"], "countries": ["United States"], "name": "FAIRsharing record for: Allen Brain Map Data Catalog", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.618298", "doi": "10.25504/FAIRsharing.618298", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Allen Brain Map Data Catalog provides a public index of neuroscience data and tools from the Allen Institute for Brain Science and NIH's BRAIN Initiative Cell Census Network, storing data from a variety of projects run from within the Institute.", "publications": [{"id": 2427, "pubmed_id": 17151600, "title": "Genome-wide atlas of gene expression in the adult mouse brain.", "year": 2006, "url": "http://doi.org/10.1038/nature05453", "authors": "Lein ES,Hawrylycz MJ,Ao N,Ayres M,Bensinger A,Bernard A,Boe AF,Boguski MS,Brockway KS,Byrnes EJ,Chen L,Chen L,Chen TM,Chin MC,Chong J,Crook BE,Czaplinska A,Dang CN,Datta S,Dee NR,Desaki AL,Desta T,Diep E,Dolbeare TA,Donelan MJ,Dong HW,Dougherty JG,Duncan BJ,Ebbert AJ,Eichele G,Estin LK,Faber C,Facer BA,Fields R,Fischer SR,Fliss TP,Frensley C,Gates SN,Glattfelder KJ,Halverson KR,Hart MR,Hohmann JG,Howell MP,Jeung DP,Johnson RA,Karr PT,Kawal R,Kidney JM,Knapik RH,Kuan CL,Lake JH,Laramee AR,Larsen KD,Lau C,Lemon TA,Liang AJ,Liu Y,Luong LT,Michaels J,Morgan JJ,Morgan RJ,Mortrud MT,Mosqueda NF,Ng LL,Ng R,Orta GJ,Overly CC,Pak TH,Parry SE,Pathak SD,Pearson OC,Puchalski RB,Riley ZL,Rockett HR,Rowland SA,Royall JJ,Ruiz MJ,Sarno NR,Schaffnit K,Shapovalova NV,Sivisay T,Slaughterbeck CR,Smith SC,Smith KA,Smith BI,Sodt AJ,Stewart NN,Stumpf KR,Sunkin SM,Sutram M,Tam A,Teemer CD,Thaller C,Thompson CL,Varnam LR,Visel A,Whitlock RM,Wohnoutka PE,Wolkey CK,Wong VY,Wood M,Yaylaoglu MB,Young RC,Youngstrom BL,Yuan XF,Zhang B,Zwingman TA,Jones AR", "journal": "Nature", "doi": "10.1038/nature05453", "created_at": "2021-09-30T08:26:57.828Z", "updated_at": "2021-09-30T08:26:57.828Z"}, {"id": 3160, "pubmed_id": null, "title": "Neuropathological and transcriptomic characteristics of the aged brain", "year": 2017, "url": "http://dx.doi.org/10.7554/eLife.31126", "authors": "Miller, Jeremy A; Guillozet-Bongaarts, Angela; Gibbons, Laura E; Postupna, Nadia; Renz, Anne; Beller, Allison E; Sunkin, Susan M; Ng, Lydia; Rose, Shannon E; Smith, Kimberly A; Szafer, Aaron; Barber, Chris; Bertagnolli, Darren; Bickley, Kristopher; Brouner, Krissy; Caldejon, Shiella; Chapin, Mike; Chua, Mindy L; Coleman, Natalie M; Cudaback, Eiron; Cuhaciyan, Christine; Dalley, Rachel A; Dee, Nick; Desta, Tsega; Dolbeare, Tim A; Dotson, Nadezhda I; Fisher, Michael; Gaudreault, Nathalie; Gee, Garrett; Gilbert, Terri L; Goldy, Jeff; Griffin, Fiona; Habel, Caroline; Haradon, Zeb; Hejazinia, Nika; Hellstern, Leanne L; Horvath, Steve; Howard, Kim; Howard, Robert; Johal, Justin; Jorstad, Nikolas L; Josephsen, Samuel R; Kuan, Chihchau L; Lai, Florence; Lee, Eric; Lee, Felix; Lemon, Tracy; Li, Xianwu; Marshall, Desiree A; Melchor, Jose; Mukherjee, Shubhabrata; Nyhus, Julie; Pendergraft, Julie; Potekhina, Lydia; Rha, Elizabeth Y; Rice, Samantha; Rosen, David; Sapru, Abharika; Schantz, Aimee; Shen, Elaine; Sherfield, Emily; Shi, Shu; Sodt, Andy J; Thatra, Nivretta; Tieu, Michael; Wilson, Angela M; Montine, Thomas J; Larson, Eric B; Bernard, Amy; Crane, Paul K; Ellenbogen, Richard G; Keene, C Dirk; Lein, Ed; ", "journal": "Elife", "doi": "10.7554/elife.31126", "created_at": "2021-12-15T10:18:52.000Z", "updated_at": "2021-12-15T10:18:52.000Z"}, {"id": 3161, "pubmed_id": null, "title": "An anatomically comprehensive atlas of the adult human brain transcriptome", "year": 2012, "url": "http://dx.doi.org/10.1038/nature11405", "authors": "Hawrylycz, Michael J.; Lein, Ed S.; Guillozet-Bongaarts, Angela L.; Shen, Elaine H.; Ng, Lydia; Miller, Jeremy A.; van de Lagemaat, Louie N.; Smith, Kimberly A.; Ebbert, Amanda; Riley, Zackery L.; Abajian, Chris; Beckmann, Christian F.; Bernard, Amy; Bertagnolli, Darren; Boe, Andrew F.; Cartagena, Preston M.; Chakravarty, M. Mallar; Chapin, Mike; Chong, Jimmy; Dalley, Rachel A.; Daly, Barry David; Dang, Chinh; Datta, Suvro; Dee, Nick; Dolbeare, Tim A.; Faber, Vance; Feng, David; Fowler, David R.; Goldy, Jeff; Gregor, Benjamin W.; Haradon, Zeb; Haynor, David R.; Hohmann, John G.; Horvath, Steve; Howard, Robert E.; Jeromin, Andreas; Jochim, Jayson M.; Kinnunen, Marty; Lau, Christopher; Lazarz, Evan T.; Lee, Changkyu; Lemon, Tracy A.; Li, Ling; Li, Yang; Morris, John A.; Overly, Caroline C.; Parker, Patrick D.; Parry, Sheana E.; Reding, Melissa; Royall, Joshua J.; Schulkin, Jay; Sequeira, Pedro Adolfo; Slaughterbeck, Clifford R.; Smith, Simon C.; Sodt, Andy J.; Sunkin, Susan M.; Swanson, Beryl E.; Vawter, Marquis P.; Williams, Derric; Wohnoutka, Paul; Zielke, H. Ronald; Geschwind, Daniel H.; Hof, Patrick R.; Smith, Stephen M.; Koch, Christof; Grant, Seth G. N.; Jones, Allan R.; ", "journal": "Nature", "doi": "10.1038/nature11405", "created_at": "2021-12-15T10:19:04.661Z", "updated_at": "2021-12-15T10:19:04.661Z"}, {"id": 3162, "pubmed_id": null, "title": "A mesoscale connectome of the mouse brain", "year": 2014, "url": "http://dx.doi.org/10.1038/nature13186", "authors": "Oh, Seung Wook; Harris, Julie A.; Ng, Lydia; Winslow, Brent; Cain, Nicholas; Mihalas, Stefan; Wang, Quanxin; Lau, Chris; Kuan, Leonard; Henry, Alex M.; Mortrud, Marty T.; Ouellette, Benjamin; Nguyen, Thuc Nghi; Sorensen, Staci A.; Slaughterbeck, Clifford R.; Wakeman, Wayne; Li, Yang; Feng, David; Ho, Anh; Nicholas, Eric; Hirokawa, Karla E.; Bohn, Phillip; Joines, Kevin M.; Peng, Hanchuan; Hawrylycz, Michael J.; Phillips, John W.; Hohmann, John G.; Wohnoutka, Paul; Gerfen, Charles R.; Koch, Christof; Bernard, Amy; Dang, Chinh; Jones, Allan R.; Zeng, Hongkui; ", "journal": "Nature", "doi": "10.1038/nature13186", "created_at": "2021-12-15T10:19:37.944Z", "updated_at": "2021-12-15T10:19:37.944Z"}, {"id": 3163, "pubmed_id": null, "title": "A large-scale standardized physiological survey reveals functional organization of the mouse visual cortex", "year": 2019, "url": "http://dx.doi.org/10.1038/s41593-019-0550-9", "authors": "de Vries, Saskia E. J.; Lecoq, Jerome A.; Buice, Michael A.; Groblewski, Peter A.; Ocker, Gabriel K.; Oliver, Michael; Feng, David; Cain, Nicholas; Ledochowitsch, Peter; Millman, Daniel; Roll, Kate; Garrett, Marina; Keenan, Tom; Kuan, Leonard; Mihalas, Stefan; Olsen, Shawn; Thompson, Carol; Wakeman, Wayne; Waters, Jack; Williams, Derric; Barber, Chris; Berbesque, Nathan; Blanchard, Brandon; Bowles, Nicholas; Caldejon, Shiella D.; Casal, Linzy; Cho, Andrew; Cross, Sissy; Dang, Chinh; Dolbeare, Tim; Edwards, Melise; Galbraith, John; Gaudreault, Nathalie; Gilbert, Terri L.; Griffin, Fiona; Hargrave, Perry; Howard, Robert; Huang, Lawrence; Jewell, Sean; Keller, Nika; Knoblich, Ulf; Larkin, Josh D.; Larsen, Rachael; Lau, Chris; Lee, Eric; Lee, Felix; Leon, Arielle; Li, Lu; Long, Fuhui; Luviano, Jennifer; Mace, Kyla; Nguyen, Thuyanh; Perkins, Jed; Robertson, Miranda; Seid, Sam; Shea-Brown, Eric; Shi, Jianghong; Sjoquist, Nathan; Slaughterbeck, Cliff; Sullivan, David; Valenza, Ryan; White, Casey; Williford, Ali; Witten, Daniela M.; Zhuang, Jun; Zeng, Hongkui; Farrell, Colin; Ng, Lydia; Bernard, Amy; Phillips, John W.; Reid, R. Clay; Koch, Christof; ", "journal": "Nat Neurosci", "doi": "10.1038/s41593-019-0550-9", "created_at": "2021-12-15T10:22:39.122Z", "updated_at": "2021-12-15T10:22:39.122Z"}, {"id": 3164, "pubmed_id": null, "title": "Transcriptional landscape of the prenatal human brain", "year": 2014, "url": "http://dx.doi.org/10.1038/nature13185", "authors": "Miller, Jeremy A.; Ding, Song-Lin; Sunkin, Susan M.; Smith, Kimberly A.; Ng, Lydia; Szafer, Aaron; Ebbert, Amanda; Riley, Zackery L.; Royall, Joshua J.; Aiona, Kaylynn; Arnold, James M.; Bennet, Crissa; Bertagnolli, Darren; Brouner, Krissy; Butler, Stephanie; Caldejon, Shiella; Carey, Anita; Cuhaciyan, Christine; Dalley, Rachel A.; Dee, Nick; Dolbeare, Tim A.; Facer, Benjamin A. C.; Feng, David; Fliss, Tim P.; Gee, Garrett; Goldy, Jeff; Gourley, Lindsey; Gregor, Benjamin W.; Gu, Guangyu; Howard, Robert E.; Jochim, Jayson M.; Kuan, Chihchau L.; Lau, Christopher; Lee, Chang-Kyu; Lee, Felix; Lemon, Tracy A.; Lesnar, Phil; McMurray, Bergen; Mastan, Naveed; Mosqueda, Nerick; Naluai-Cecchini, Theresa; Ngo, Nhan-Kiet; Nyhus, Julie; Oldre, Aaron; Olson, Eric; Parente, Jody; Parker, Patrick D.; Parry, Sheana E.; Stevens, Allison; Pletikos, Mihovil; Reding, Melissa; Roll, Kate; Sandman, David; Sarreal, Melaine; Shapouri, Sheila; Shapovalova, Nadiya V.; Shen, Elaine H.; Sjoquist, Nathan; Slaughterbeck, Clifford R.; Smith, Michael; Sodt, Andy J.; Williams, Derric; Z\u00f6llei, Lilla; Fischl, Bruce; Gerstein, Mark B.; Geschwind, Daniel H.; Glass, Ian A.; Hawrylycz, Michael J.; Hevner, Robert F.; Huang, Hao; Jones, Allan R.; Knowles, James A.; Levitt, Pat; Phillips, John W.; \u0160estan, Nenad; Wohnoutka, Paul; Dang, Chinh; Bernard, Amy; Hohmann, John G.; Lein, Ed S.; ", "journal": "Nature", "doi": "10.1038/nature13185", "created_at": "2021-12-15T10:22:49.748Z", "updated_at": "2021-12-15T10:22:49.748Z"}, {"id": 3165, "pubmed_id": null, "title": "An anatomic transcriptional atlas of human glioblastoma", "year": 2018, "url": "http://dx.doi.org/10.1126/science.aaf2666", "authors": "Puchalski, Ralph B.; Shah, Nameeta; Miller, Jeremy; Dalley, Rachel; Nomura, Steve R.; Yoon, Jae-Guen; Smith, Kimberly A.; Lankerovich, Michael; Bertagnolli, Darren; Bickley, Kris; Boe, Andrew F.; Brouner, Krissy; Butler, Stephanie; Caldejon, Shiella; Chapin, Mike; Datta, Suvro; Dee, Nick; Desta, Tsega; Dolbeare, Tim; Dotson, Nadezhda; Ebbert, Amanda; Feng, David; Feng, Xu; Fisher, Michael; Gee, Garrett; Goldy, Jeff; Gourley, Lindsey; Gregor, Benjamin W.; Gu, Guangyu; Hejazinia, Nika; Hohmann, John; Hothi, Parvinder; Howard, Robert; Joines, Kevin; Kriedberg, Ali; Kuan, Leonard; Lau, Chris; Lee, Felix; Lee, Hwahyung; Lemon, Tracy; Long, Fuhui; Mastan, Naveed; Mott, Erika; Murthy, Chantal; Ngo, Kiet; Olson, Eric; Reding, Melissa; Riley, Zack; Rosen, David; Sandman, David; Shapovalova, Nadiya; Slaughterbeck, Clifford R.; Sodt, Andrew; Stockdale, Graham; Szafer, Aaron; Wakeman, Wayne; Wohnoutka, Paul E.; White, Steven J.; Marsh, Don; Rostomily, Robert C.; Ng, Lydia; Dang, Chinh; Jones, Allan; Keogh, Bart; Gittleman, Haley R.; Barnholtz-Sloan, Jill S.; Cimino, Patrick J.; Uppin, Megha S.; Keene, C. Dirk; Farrokhi, Farrokh R.; Lathia, Justin D.; Berens, Michael E.; Iavarone, Antonio; Bernard, Amy; Lein, Ed; Phillips, John W.; Rostad, Steven W.; Cobbs, Charles; Hawrylycz, Michael J.; Foltz, Greg D.; ", "journal": "Science", "doi": "10.1126/science.aaf2666", "created_at": "2021-12-15T10:23:02.159Z", "updated_at": "2021-12-15T10:23:02.159Z"}, {"id": 3166, "pubmed_id": null, "title": "Divergent and nonuniform gene expression patterns in mouse brain", "year": 2010, "url": "http://dx.doi.org/10.1073/pnas.1003732107", "authors": "Morris, J. A.; Royall, J. J.; Bertagnolli, D.; Boe, A. F.; Burnell, J. J.; Byrnes, E. J.; Copeland, C.; Desta, T.; Fischer, S. R.; Goldy, J.; Glattfelder, K. J.; Kidney, J. M.; Lemon, T.; Orta, G. J.; Parry, S. E.; Pathak, S. D.; Pearson, O. C.; Reding, M.; Shapouri, S.; Smith, K. A.; Soden, C.; Solan, B. M.; Weller, J.; Takahashi, J. S.; Overly, C. C.; Lein, E. S.; Hawrylycz, M. J.; Hohmann, J. G.; Jones, A. R.; ", "journal": "Proceedings of the National Academy of Sciences", "doi": "10.1073/pnas.1003732107", "created_at": "2021-12-15T10:23:17.908Z", "updated_at": "2021-12-15T10:23:17.908Z"}, {"id": 3167, "pubmed_id": null, "title": "Survey of spiking in the mouse visual system reveals functional hierarchy", "year": 2021, "url": "http://dx.doi.org/10.1038/s41586-020-03171-x", "authors": "Siegle, Joshua H.; Jia, Xiaoxuan; Durand, S\u00e9verine; Gale, Sam; Bennett, Corbett; Graddis, Nile; Heller, Greggory; Ramirez, Tamina K.; Choi, Hannah; Luviano, Jennifer A.; Groblewski, Peter A.; Ahmed, Ruweida; Arkhipov, Anton; Bernard, Amy; Billeh, Yazan N.; Brown, Dillan; Buice, Michael A.; Cain, Nicolas; Caldejon, Shiella; Casal, Linzy; Cho, Andrew; Chvilicek, Maggie; Cox, Timothy C.; Dai, Kael; Denman, Daniel J.; de Vries, Saskia E. J.; Dietzman, Roald; Esposito, Luke; Farrell, Colin; Feng, David; Galbraith, John; Garrett, Marina; Gelfand, Emily C.; Hancock, Nicole; Harris, Julie A.; Howard, Robert; Hu, Brian; Hytnen, Ross; Iyer, Ramakrishnan; Jessett, Erika; Johnson, Katelyn; Kato, India; Kiggins, Justin; Lambert, Sophie; Lecoq, Jerome; Ledochowitsch, Peter; Lee, Jung Hoon; Leon, Arielle; Li, Yang; Liang, Elizabeth; Long, Fuhui; Mace, Kyla; Melchior, Jose; Millman, Daniel; Mollenkopf, Tyler; Nayan, Chelsea; Ng, Lydia; Ngo, Kiet; Nguyen, Thuyahn; Nicovich, Philip R.; North, Kat; Ocker, Gabriel Koch; Ollerenshaw, Doug; Oliver, Michael; Pachitariu, Marius; Perkins, Jed; Reding, Melissa; Reid, David; Robertson, Miranda; Ronellenfitch, Kara; Seid, Sam; Slaughterbeck, Cliff; Stoecklin, Michelle; Sullivan, David; Sutton, Ben; Swapp, Jackie; Thompson, Carol; Turner, Kristen; Wakeman, Wayne; Whitesell, Jennifer D.; Williams, Derric; Williford, Ali; Young, Rob; Zeng, Hongkui; Naylor, Sarah; Phillips, John W.; Reid, R. Clay; Mihalas, Stefan; Olsen, Shawn R.; Koch, Christof; ", "journal": "Nature", "doi": "10.1038/s41586-020-03171-x", "created_at": "2021-12-15T10:23:29.849Z", "updated_at": "2021-12-15T10:23:29.849Z"}, {"id": 3168, "pubmed_id": null, "title": "Molecular and anatomical signatures of sleep deprivation in the mouse brain", "year": 2010, "url": "http://dx.doi.org/10.3389/fnins.2010.00165", "authors": "Thompson, Carol L.; ", "journal": "Front. Neurosci.", "doi": "10.3389/fnins.2010.00165", "created_at": "2021-12-15T10:23:42.449Z", "updated_at": "2021-12-15T10:23:42.449Z"}], "licence-links": [{"licence-name": "Allen Brain Map Terms of Use", "licence-id": 895, "link-id": 2539, "relation": "applies_to_content"}, {"licence-name": "Allen Brain Map Citation Policy", "licence-id": 896, "link-id": 2540, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2861", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-26T23:58:35.000Z", "updated-at": "2021-12-06T10:49:31.285Z", "metadata": {"doi": "10.25504/FAIRsharing.yOKiQs", "name": "Iowa State University's DataShare", "status": "ready", "contacts": [{"contact-name": "Megan O'Donnell", "contact-email": "datashare@iastate.edu", "contact-orcid": "0000-0002-4632-6642"}], "homepage": "https://iastate.figshare.com/", "citations": [], "identifier": 2861, "description": "Iowa State University\u2019s DataShare is an open access repository for sharing, publishing, and archiving research data created by Iowa State University scholars and researchers.", "abbreviation": "ISU DataShare", "support-links": [{"url": "datashare@iastate.edu", "name": "email", "type": "Support email"}, {"url": "https://instr.iastate.libguides.com/datashare/faqs", "name": "ISU's DataShare FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://instr.iastate.libguides.com/datashare/home", "name": "About ISU's DataShare", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://instr.iastate.libguides.com/datashare/stepbystep", "name": "Submission and review process", "type": "data curation"}, {"url": "https://iastate.figshare.com/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012696", "name": "re3data:r3d100012696", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001362", "bsg-d001362"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Engineering Science", "Humanities", "Social Science", "Chemistry", "Humanities and Social Science", "Art", "Ecology", "Biodiversity", "Agriculture", "Life Science", "Veterinary Medicine", "Subject Agnostic", "Physics", "Biology"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository", "Researcher data", "transportation data"], "countries": ["United States"], "name": "FAIRsharing record for: Iowa State University's DataShare", "abbreviation": "ISU DataShare", "url": "https://fairsharing.org/10.25504/FAIRsharing.yOKiQs", "doi": "10.25504/FAIRsharing.yOKiQs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Iowa State University\u2019s DataShare is an open access repository for sharing, publishing, and archiving research data created by Iowa State University scholars and researchers.", "publications": [], "licence-links": [{"licence-name": "ISU Data Share Terms of Use", "licence-id": 461, "link-id": 664, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3266", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-28T10:14:40.000Z", "updated-at": "2022-02-08T10:36:15.041Z", "metadata": {"doi": "10.25504/FAIRsharing.3f074b", "name": "Savannah", "status": "ready", "homepage": "http://savannah.gnu.org/", "identifier": 3266, "description": "Savannah aims to be a central point for development, maintenance and distribution of official GNU software. In addition, for projects that support free software but are not part of GNU, a separate area of the resource is available. Savannah hosts free projects that run on free operating systems and without any proprietary software dependencies. The version Control systems available on Savannah are GNU Arch, GNU Bazaar, CVS, Git, Mercurial, and Subversion.", "abbreviation": "Savannah", "support-links": [{"url": "http://savannah.gnu.org/news/", "name": "News", "type": "Blog/News"}, {"url": "http://savannah.gnu.org/contact.php", "name": "Contact Details", "type": "Contact form"}, {"url": "http://savannah.gnu.org/maintenance/FrontPage/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://savannah.nongnu.org/support/?group=administration", "name": "Support Forum", "type": "Forum"}, {"url": "http://lists.gnu.org/mailman/listinfo/savannah-announce", "name": "Mailing list: Issues and Changes", "type": "Mailing list"}, {"url": "http://savannah.gnu.org/userguide/", "name": "In-Depth Guide", "type": "Help documentation"}, {"url": "http://savannah.gnu.org/cookbook/?group=administration", "name": "User Documentation: Cookbook", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/GNU_Savannah", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2000, "data-processes": [{"url": "http://savannah.nongnu.org/", "name": "Search non-GNU Software", "type": "data access"}, {"url": "http://savannah.gnu.org/", "name": "Search GNU Software", "type": "data access"}, {"url": "http://savannah.gnu.org/search/", "name": "Browse & Search all Software", "type": "data access"}]}, "legacy-ids": ["biodbcore-001781", "bsg-d001781"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Savannah", "abbreviation": "Savannah", "url": "https://fairsharing.org/10.25504/FAIRsharing.3f074b", "doi": "10.25504/FAIRsharing.3f074b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Savannah aims to be a central point for development, maintenance and distribution of official GNU software. In addition, for projects that support free software but are not part of GNU, a separate area of the resource is available. Savannah hosts free projects that run on free operating systems and without any proprietary software dependencies. The version Control systems available on Savannah are GNU Arch, GNU Bazaar, CVS, Git, Mercurial, and Subversion.", "publications": [], "licence-links": [{"licence-name": "GNU Affero General Public License", "licence-id": 352, "link-id": 1531, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1532, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 1533, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3290", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-02T16:27:57.000Z", "updated-at": "2022-02-08T10:36:40.528Z", "metadata": {"doi": "10.25504/FAIRsharing.a9cfbf", "name": "Neuroimaging Informatics Tools and Resources Collaboratory Image Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nitrcinfo@nitrc.org"}], "homepage": "https://www.nitrc.org/xnat/index.php", "identifier": 3290, "description": "The Neuroimaging Informatics Tools and Resources Collaboratory Image Repository (NITRC-IR) provides searchable and downloadable publicly available data sets for neuroimaging research. This includes thousands of DICOM, NIfTI and BIDS normal subjects and those with diagnoses such as schizophrenia, ADHD, autism, and Parkinson's. NITRC\u2019s scientific focus includes: MR, PET/SPECT, CT, EEG/MEG, optical imaging, clinical neuroimaging, computational neuroscience, and imaging genomics software tools, data, and computational resources.", "abbreviation": "NITRC-IR", "data-processes": [{"url": "https://www.nitrc.org/ir/", "name": "Search", "type": "data access"}, {"url": "https://www.nitrc.org/ir/app/template/Search.vm/node/d.xnat:subjectData", "name": "Browse by Subject", "type": "data access"}, {"url": "https://www.nitrc.org/ir/app/template/Search.vm/node/d.xnat:mrSessionData", "name": "Browse by MR Sessions", "type": "data access"}, {"url": "https://www.nitrc.org/ir/app/template/Search.vm/node/d.xnat:petSessionData", "name": "Browse by PET Sessions", "type": "data access"}], "associated-tools": [{"url": "https://download.xnat.org/desktop-client/", "name": "XNAT Desktop Client"}, {"url": "https://wiki.xnat.org/xnat-tools/dicombrowser", "name": "DicomBrowser"}]}, "legacy-ids": ["biodbcore-001805", "bsg-d001805"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Computational Neuroscience", "Neuroscience"], "domains": ["Autistic disorder", "Parkinson's disease", "Positron emission tomography", "Disorder", "Brain", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Neuroinformatics"], "countries": ["United States"], "name": "FAIRsharing record for: Neuroimaging Informatics Tools and Resources Collaboratory Image Repository", "abbreviation": "NITRC-IR", "url": "https://fairsharing.org/10.25504/FAIRsharing.a9cfbf", "doi": "10.25504/FAIRsharing.a9cfbf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Neuroimaging Informatics Tools and Resources Collaboratory Image Repository (NITRC-IR) provides searchable and downloadable publicly available data sets for neuroimaging research. This includes thousands of DICOM, NIfTI and BIDS normal subjects and those with diagnoses such as schizophrenia, ADHD, autism, and Parkinson's. NITRC\u2019s scientific focus includes: MR, PET/SPECT, CT, EEG/MEG, optical imaging, clinical neuroimaging, computational neuroscience, and imaging genomics software tools, data, and computational resources.", "publications": [], "licence-links": [{"licence-name": "NITRC Copyright Statement", "licence-id": 590, "link-id": 2392, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1785", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:21.505Z", "metadata": {"doi": "10.25504/FAIRsharing.72qwj0", "name": "StellaBase", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "cnidteam@gmail.com"}], "homepage": "http://stellabase.org", "identifier": 1785, "description": "StellaBase is the Nematostella vectensis genomics database.", "abbreviation": "StellaBase", "data-processes": [{"url": "http://nematostella.bu.edu/stellabase/assembly/", "name": "Download", "type": "data access"}, {"url": "http://nematostella.bu.edu/stellabase/html/gene_search.html", "name": "search", "type": "data access"}, {"url": "http://nematostella.bu.edu/stellabase/html/dump_stock.html", "name": "submit", "type": "data access"}], "associated-tools": [{"url": "http://nematostella.bu.edu/stellabase/blast/blast_cs.html", "name": "BLAST"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000245", "bsg-d000245"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Life Science"], "domains": ["Expression data", "DNA sequence data", "Gene", "Genome"], "taxonomies": ["Nematostella vectensis"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: StellaBase", "abbreviation": "StellaBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.72qwj0", "doi": "10.25504/FAIRsharing.72qwj0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: StellaBase is the Nematostella vectensis genomics database.", "publications": [{"id": 836, "pubmed_id": 16381919, "title": "StellaBase: the Nematostella vectensis Genomics Database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj020", "authors": "Sullivan JC., Ryan JF., Watson JA., Webb J., Mullikin JC., Rokhsar D., Finnerty JR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj020", "created_at": "2021-09-30T08:23:52.271Z", "updated_at": "2021-09-30T08:23:52.271Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 229, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2321", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T15:51:43.000Z", "updated-at": "2021-11-24T13:19:32.519Z", "metadata": {"doi": "10.25504/FAIRsharing.erhnxs", "name": "LCI facility data repository", "status": "deprecated", "contacts": [{"contact-name": "Sylvie Le Guyader", "contact-email": "Sylvie.le.guyader@ki.se"}], "homepage": "http://ki.se/en/bionut/welcome-to-the-lci-facility", "identifier": 2321, "description": "This database is in development and as yet does not have a description available .", "year-creation": 2008, "deprecation-date": "2021-9-20", "deprecation-reason": "This resource's homepage no longer has any reference to a data repository, and as such this record has been deprecated"}, "legacy-ids": ["biodbcore-000797", "bsg-d000797"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "High-content screen"], "taxonomies": [], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: LCI facility data repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.erhnxs", "doi": "10.25504/FAIRsharing.erhnxs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database is in development and as yet does not have a description available .", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3617", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-09T11:02:41.154Z", "updated-at": "2022-02-02T09:15:56.221Z", "metadata": {"name": "FAIR4Health Metadata", "status": "deprecated", "contacts": [], "homepage": "https://www.fair4health.eu/", "citations": [], "identifier": 3617, "description": "Metadata generated upon FAIRifying health datasets in the FAIR4Health project demonstrators execution.", "abbreviation": "F4H-Metadata", "access-points": [{"url": "https://github.com/fair4health/metadata", "name": "FAIR4Health Metadata", "type": "Other", "example-url": null, "documentation-url": null}], "data-curation": {}, "support-links": [], "year-creation": 2021, "data-versioning": "no", "associated-tools": [{"url": "https://github.com/fair4health/data-curation-tool", "name": "Data Curation Tool"}, {"url": "https://github.com/fair4health/data-privacy-tool", "name": "Data Privacy Tool"}], "deprecation-date": "2022-01-19", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record.", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Security", "Medical Informatics"], "domains": ["Resource metadata", "FAIR"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Document metadata", "Metadata standardization"], "countries": ["Italy", "Portugal", "Spain", "Switzerland"], "name": "FAIRsharing record for: FAIR4Health Metadata", "abbreviation": "F4H-Metadata", "url": "https://fairsharing.org/fairsharing_records/3617", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Metadata generated upon FAIRifying health datasets in the FAIR4Health project demonstrators execution.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 2497, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3325", "type": "fairsharing-records", "attributes": {"created-at": "2021-04-28T15:03:15.000Z", "updated-at": "2021-11-24T13:18:15.475Z", "metadata": {"name": "CESSDA Data Catalogue", "status": "ready", "contacts": [{"contact-email": "cessda@cessda.eu"}], "homepage": "https://datacatalogue.cessda.eu/", "identifier": 3325, "description": "The Consortium of European Social Science Data Archives Data Catalogue contains descriptions (metadata) of the more than 30,000 data collections held by CESSDA\u2019s Service Providers (SP), representing 20 European countries. It is a one-stop shop for searching and finding data, enabling effective access to European social science data. The data described are varied. They may be quantitative, qualitative or mixed-modes data, cross-sectional or longitudinal, recently collected or historical data.", "abbreviation": "CESSDA DC", "support-links": [{"url": "https://datacatalogue.cessda.eu/documentation/", "name": "User guide", "type": "Help documentation"}], "data-processes": [{"url": "https://datacatalogue.cessda.eu/", "name": "Basic Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001842", "bsg-d001842"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: CESSDA Data Catalogue", "abbreviation": "CESSDA DC", "url": "https://fairsharing.org/fairsharing_records/3325", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Consortium of European Social Science Data Archives Data Catalogue contains descriptions (metadata) of the more than 30,000 data collections held by CESSDA\u2019s Service Providers (SP), representing 20 European countries. It is a one-stop shop for searching and finding data, enabling effective access to European social science data. The data described are varied. They may be quantitative, qualitative or mixed-modes data, cross-sectional or longitudinal, recently collected or historical data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3306", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-11T14:34:08.000Z", "updated-at": "2022-02-08T10:36:59.571Z", "metadata": {"doi": "10.25504/FAIRsharing.9289d4", "name": "Paired Omics Data Platform", "status": "ready", "contacts": [{"contact-name": "Justin J. J. van der Hooft", "contact-email": "justin.vanderhooft@wur.nl"}], "homepage": "https://pairedomicsdata.bioinformatics.nl/", "citations": [{"doi": "10.1038/s41589-020-00724-z", "pubmed-id": 33589842, "publication-id": 2046}], "identifier": 3306, "description": "Paired Omics Data Platform (PoDP) was created to streamline access to paired omics data so humans and computers can access and read paired datasets as well as record and exploit validated links between BGCs and metabolites. The aim of the PoDP is to connect public metabolomics datasets to their genomic origins. The PoDP does not store any metabolomics or genomics datasets, but captures metadata defining pairs of omics datasets in existing public databases and platforms already validated and utilized by the genomics and metabolomics communities.", "abbreviation": "PoDP", "access-points": [{"url": "https://github.com/iomega/paired-data-form/blob/master/manuals/developers.md#web-service", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "marnix.medema@wur.nl", "name": "Marnix H Medema", "type": "Support email"}, {"url": "https://pairedomicsdata.bioinformatics.nl/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://pairedomicsdata.bioinformatics.nl/methods", "name": "Methods and Implementation", "type": "Help documentation"}], "year-creation": 2021, "data-processes": [{"url": "https://pairedomicsdata.bioinformatics.nl/projects", "name": "Browse and Search", "type": "data access"}, {"url": "https://pairedomicsdata.bioinformatics.nl/add", "name": "Submit", "type": "data curation"}, {"url": "https://pairedomicsdata.bioinformatics.nl/download", "name": "Download (via Zenodo)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001821", "bsg-d001821"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Genomics", "Omics"], "domains": ["Data identity and mapping"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: Paired Omics Data Platform", "abbreviation": "PoDP", "url": "https://fairsharing.org/10.25504/FAIRsharing.9289d4", "doi": "10.25504/FAIRsharing.9289d4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Paired Omics Data Platform (PoDP) was created to streamline access to paired omics data so humans and computers can access and read paired datasets as well as record and exploit validated links between BGCs and metabolites. The aim of the PoDP is to connect public metabolomics datasets to their genomic origins. The PoDP does not store any metabolomics or genomics datasets, but captures metadata defining pairs of omics datasets in existing public databases and platforms already validated and utilized by the genomics and metabolomics communities.", "publications": [{"id": 2046, "pubmed_id": 33589842, "title": "A community resource for paired genomic and metabolomic data mining.", "year": 2021, "url": "http://doi.org/10.1038/s41589-020-00724-z", "authors": "Schorn MA,Verhoeven S,Ridder L et al.", "journal": "Nat Chem Biol", "doi": "10.1038/s41589-020-00724-z", "created_at": "2021-09-30T08:26:10.506Z", "updated_at": "2021-09-30T08:26:10.506Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 844, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2000", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.433Z", "metadata": {"doi": "10.25504/FAIRsharing.xz5m1a", "name": "Nematode Expression Pattern DataBase", "status": "ready", "contacts": [{"contact-name": "Tadasu Shin-i", "contact-email": "tshini@genes.nig.ac.jp"}], "homepage": "http://nematode.lab.nig.ac.jp/", "identifier": 2000, "description": "The Kohara lab has been constructing an expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans through EST analysis and systematic whole mount in situ hybridization. NEXTDB is the database to integrate all information from the expression pattern project.", "abbreviation": "NextDB", "support-links": [{"url": "http://nematode.lab.nig.ac.jp/doc/usageSrch.php", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://nematode.lab.nig.ac.jp/dbest/keysrch.html", "name": "Search", "type": "data access"}, {"url": "http://nematode.lab.nig.ac.jp/db2/KeysrchForm.php", "name": "Advance search", "type": "data access"}], "associated-tools": [{"url": "http://nematode.lab.nig.ac.jp/dbhomol/homolsrch.php", "name": "Blast"}]}, "legacy-ids": ["biodbcore-000466", "bsg-d000466"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Genome"], "taxonomies": ["Caenorhabditis elegans", "Nematoda"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Nematode Expression Pattern DataBase", "abbreviation": "NextDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.xz5m1a", "doi": "10.25504/FAIRsharing.xz5m1a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Kohara lab has been constructing an expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans through EST analysis and systematic whole mount in situ hybridization. NEXTDB is the database to integrate all information from the expression pattern project.", "publications": [], "licence-links": [{"licence-name": "NEXTDB Terms and Conditions of Use", "licence-id": 573, "link-id": 580, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 585, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3173", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-04T01:45:22.000Z", "updated-at": "2021-12-06T10:49:06.484Z", "metadata": {"doi": "10.25504/FAIRsharing.rafti9", "name": "University of Hong Kong DataHub", "status": "ready", "contacts": [{"contact-name": "Jesse Xiao", "contact-email": "szxiao@hku.hk", "contact-orcid": "0000-0003-3408-2852"}], "homepage": "https://datahub.hku.hk", "citations": [], "identifier": 3173, "description": "The University of Hong Kong (HKU) DataHub is a comprehensive repository for research data and other forms of scholarly outputs provided by the University of Hong Kong Libraries. DataHub, powered by Figshare, is the cloud platform for storing, citing, sharing, and discovering research data and all scholarly outputs. It collects, preserves, and provides stable, long-term global open access to a wide range of research data and scholarly outputs created by HKU researchers and postgraduate students.", "abbreviation": "HKU DataHub", "support-links": [{"url": "researchdata@hku.hk", "name": "HKU DataHub General Contact", "type": "Support email"}, {"url": "https://libguides.lib.hku.hk/researchdata/datahub", "name": "DataHub LibGuide", "type": "Help documentation"}, {"url": "https://datahub.hku.hk/institutions/hku/stats?27457", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://datahub.hku.hk/category", "name": "Browse by Category", "type": "data access"}, {"url": "https://datahub.hku.hk/search", "name": "Search", "type": "data access"}, {"url": "https://datahub.hku.hk/groups", "name": "Browse by Groups", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013385", "name": "re3data:r3d100013385", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001684", "bsg-d001684"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["China"], "name": "FAIRsharing record for: University of Hong Kong DataHub", "abbreviation": "HKU DataHub", "url": "https://fairsharing.org/10.25504/FAIRsharing.rafti9", "doi": "10.25504/FAIRsharing.rafti9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The University of Hong Kong (HKU) DataHub is a comprehensive repository for research data and other forms of scholarly outputs provided by the University of Hong Kong Libraries. DataHub, powered by Figshare, is the cloud platform for storing, citing, sharing, and discovering research data and all scholarly outputs. It collects, preserves, and provides stable, long-term global open access to a wide range of research data and scholarly outputs created by HKU researchers and postgraduate students.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1947, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 1948, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3311", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-09T08:18:17.000Z", "updated-at": "2022-02-08T10:37:16.061Z", "metadata": {"doi": "10.25504/FAIRsharing.095469", "name": "Data and Service Center for the Humanities", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@dasch.swiss"}], "homepage": "https://meta.dasch.swiss/", "citations": [], "identifier": 3311, "description": "The Data and Service Center for the Humanities (DaSCH) digital repository allows long-term access to qualitative data in the Humanities, and provides data deposition and discovery facilities. DaSCH has been created in accordance with the FAIR principles and various international standards for interoperability. The repository accepts \u201csimple\u201d datasets in form of flat files as well as a project-specific \u201ccomplex\u201d datasets with data based on project/user-specific data models. Multiple data types are allowed, including qualitative data such as text, images, digital facsimile, sound files, and videos.", "abbreviation": "DaSCH", "access-points": [{"url": "https://docs.dasch.swiss/DSP-API/03-apis/api-v2/introduction/", "name": "DaSCH Service Platform Documentation: Introduction: Using API v2", "type": "REST"}, {"url": "https://docs.dasch.swiss/DSP-API/03-apis/api-v2/query-language/", "name": "DaSCH Service Platform Documentation: Gravsearch: Virtual Graph Search Documentation", "type": "Other"}], "support-links": [{"url": "https://dasch.swiss/news/", "name": "News", "type": "Blog/News"}, {"url": "https://dasch.swiss/contact/", "name": "Contact Information", "type": "Contact form"}, {"url": "https://dasch.swiss/about/", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/dasch-swiss", "name": "GitHub Project", "type": "Github"}, {"url": "https://docs.dasch.swiss/", "name": "Developer Documentation", "type": "Help documentation"}, {"url": "https://dasch.swiss/services/", "name": "DaSCH and FAIR", "type": "Help documentation"}, {"url": "https://twitter.com/DaSCHSwiss", "name": "@DaSCHSwiss", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://data.dasch.swiss/", "name": "Search (old repository infrastructure)", "type": "data access"}, {"url": "https://admin.dasch.swiss/", "name": "Search (new repository infrastructure)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012374", "name": "re3data:r3d100012374", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001826", "bsg-d001826"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities"], "domains": ["Video", "Image", "Centrally registered identifier", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Data and Service Center for the Humanities", "abbreviation": "DaSCH", "url": "https://fairsharing.org/10.25504/FAIRsharing.095469", "doi": "10.25504/FAIRsharing.095469", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data and Service Center for the Humanities (DaSCH) digital repository allows long-term access to qualitative data in the Humanities, and provides data deposition and discovery facilities. DaSCH has been created in accordance with the FAIR principles and various international standards for interoperability. The repository accepts \u201csimple\u201d datasets in form of flat files as well as a project-specific \u201ccomplex\u201d datasets with data based on project/user-specific data models. Multiple data types are allowed, including qualitative data such as text, images, digital facsimile, sound files, and videos.", "publications": [{"id": 622, "pubmed_id": null, "title": "DASCH: Data and Service Center for the Humanities", "year": 2015, "url": "https://doi.org/10.1093/llc/fqv051", "authors": "Lukas Rosenthaler, Peter Fornaro, Claire Clivaz", "journal": "Digital Scholarship in the Humanities", "doi": null, "created_at": "2021-09-30T08:23:28.428Z", "updated_at": "2021-09-30T08:23:28.428Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2797", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-17T22:22:51.000Z", "updated-at": "2022-02-08T10:51:33.514Z", "metadata": {"doi": "10.25504/FAIRsharing.00dfd8", "name": "Advanced Spaceborne Thermal Emission and Reflection Radiometer", "status": "ready", "contacts": [{"contact-name": "Yasushi Yamaguchi", "contact-email": "yasushi@nagoya-u.jp", "contact-orcid": "0000-0002-2554-1060"}], "homepage": "https://asterweb.jpl.nasa.gov", "identifier": 2797, "description": "ASTER Data is generated as a result of the collaboration between US and Japan space program where thermal and sensing imaging technology used to create detailed maps of land surface temperature, reflectance, and elevation. Scientist can freely use this information to inform geological research or the Earth.", "abbreviation": "ASTER Data", "support-links": [{"url": "https://asterweb.jpl.nasa.gov/latest.asp", "name": "News", "type": "Blog/News"}, {"url": "https://science.jpl.nasa.gov/index.cfm?FuseAction=ShowFeedback&PersonID=236", "name": "contact", "type": "Contact form"}, {"url": "https://asterweb.jpl.nasa.gov/biblio.asp", "name": "Bibliography", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://search.earthdata.nasa.gov/search", "name": "Search", "type": "data access"}, {"url": "https://asterweb.jpl.nasa.gov/data.asp", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011708", "name": "re3data:r3d100011708", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_010478", "name": "SciCrunch:RRID:SCR_010478", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001296", "bsg-d001296"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Earth Science", "Hydrology"], "domains": ["Climate", "Imaging"], "taxonomies": ["Not applicable"], "user-defined-tags": ["earth observation", "Natural Resources, Earth and Environment", "Satellite Data"], "countries": ["United States", "Japan"], "name": "FAIRsharing record for: Advanced Spaceborne Thermal Emission and Reflection Radiometer", "abbreviation": "ASTER Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.00dfd8", "doi": "10.25504/FAIRsharing.00dfd8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ASTER Data is generated as a result of the collaboration between US and Japan space program where thermal and sensing imaging technology used to create detailed maps of land surface temperature, reflectance, and elevation. Scientist can freely use this information to inform geological research or the Earth.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2830", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-17T16:23:01.000Z", "updated-at": "2021-11-24T13:13:33.075Z", "metadata": {"doi": "10.25504/FAIRsharing.x38D2k", "name": "BioImage Archive", "status": "ready", "contacts": [{"contact-name": "Ugis Sarkans", "contact-email": "bioimage-archive@ebi.ac.uk", "contact-orcid": "0000-0001-9227-8488"}], "homepage": "https://www.ebi.ac.uk/bioimage-archive/", "citations": [{"doi": "10.1038/s41592-018-0195-8", "pubmed-id": 30377375, "publication-id": 2579}], "identifier": 2830, "description": "The BioImage Archive stores and distributes biological images that are useful to life-science researchers. Its development will provide data archiving services to the broader bioimaging database community. This includes added-value bioimaging data resources such as EMPIAR, Cell-IDR and Tissue-IDR.", "abbreviation": "BioImage Archive", "support-links": [{"url": "biostudies@ebi.ac.uk", "name": "BioStudies General Contact", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/bioimage-archive/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://listserver.ebi.ac.uk/mailman/listinfo/bioimage-archive-announce", "name": "BioImage Archive Announce mailing list", "type": "Mailing list"}, {"url": "https://www.ebi.ac.uk/bioimage-archive/about-us/", "name": "About", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/bioimage-archive/our-roadmap/", "name": "Roadmap", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/bioimage-archive/case-studies/", "name": "Case Studies", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.ebi.ac.uk/biostudies/BioImages/studies", "name": "Browse Data", "type": "data access"}, {"url": "https://www.ebi.ac.uk/bioimage-archive/", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001330", "bsg-d001330"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Clinical Studies", "Life Science", "Cell Biology", "Biomedical Science", "Preclinical Studies"], "domains": ["Bioimaging", "Cell", "Image", "Tissue"], "taxonomies": ["All"], "user-defined-tags": ["Pre-clinical imaging"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: BioImage Archive", "abbreviation": "BioImage Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.x38D2k", "doi": "10.25504/FAIRsharing.x38D2k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BioImage Archive stores and distributes biological images that are useful to life-science researchers. Its development will provide data archiving services to the broader bioimaging database community. This includes added-value bioimaging data resources such as EMPIAR, Cell-IDR and Tissue-IDR.", "publications": [{"id": 2579, "pubmed_id": 30377375, "title": "A call for public archives for biological image data.", "year": 2018, "url": "http://doi.org/10.1038/s41592-018-0195-8", "authors": "Ellenberg J,Swedlow JR,Barlow M,Cook CE,Sarkans U,Patwardhan A,Brazma A,Birney E", "journal": "Nat Methods", "doi": "10.1038/s41592-018-0195-8", "created_at": "2021-09-30T08:27:16.278Z", "updated_at": "2021-09-30T08:27:16.278Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1906, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2292", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-24T12:29:07.000Z", "updated-at": "2021-11-24T13:19:31.831Z", "metadata": {"doi": "10.25504/FAIRsharing.1v4zw7", "name": "OmicsDB", "status": "deprecated", "contacts": [{"contact-name": "Keiron O'Shea", "contact-email": "keo7@aber.ac.uk", "contact-orcid": "0000-0002-9043-3496"}], "homepage": "https://github.com/KeironO/omicsdb", "identifier": 2292, "description": "OmicsDB is a database for the storage and management of omics data and auxiliary information. The database contains cross-species, cross-technique and cross-types. It offers user-submission tools of which aim to reduce the work revolving adherence to standards. The resource homepage is currently unavailable. If you have any information on the current status of this resource, please contact us.", "abbreviation": "ODB", "year-creation": 2016, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000766", "bsg-d000766"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": [], "taxonomies": ["All", "Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: OmicsDB", "abbreviation": "ODB", "url": "https://fairsharing.org/10.25504/FAIRsharing.1v4zw7", "doi": "10.25504/FAIRsharing.1v4zw7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OmicsDB is a database for the storage and management of omics data and auxiliary information. The database contains cross-species, cross-technique and cross-types. It offers user-submission tools of which aim to reduce the work revolving adherence to standards. The resource homepage is currently unavailable. If you have any information on the current status of this resource, please contact us.", "publications": [], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1379, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3341", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-17T11:43:53.000Z", "updated-at": "2022-02-08T10:37:29.791Z", "metadata": {"doi": "10.25504/FAIRsharing.d14d9f", "name": "TARKI Data Archive", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "tarki@tarki.hu"}], "homepage": "https://adatbank.tarki.hu/en/", "identifier": 3341, "description": "TARKI is the Hungarian Social Science data archive. It is a member of CESSDA-ERIC and the European Association of Social Science Data Archives. There are more than 800 social science resources in the T\u00c1RKI archive, representing more than 35 years of survey research in Hungary.", "abbreviation": "TARKI", "support-links": [{"url": "https://adatbank.tarki.hu/en/hireink/", "name": "News", "type": "Blog/News"}, {"url": "adatbank@tarki.hu", "name": "Data Archive Contact", "type": "Support email"}, {"url": "https://adatbank.tarki.hu/en/about/", "name": "About", "type": "Help documentation"}], "year-creation": 1985, "data-processes": [{"url": "http://adatbanktest.tarki.hu/cgi-bin/katalogus/tarkiser_en.pl", "name": "Browse", "type": "data access"}, {"url": "https://adatbank.tarki.hu/en/covid-19-research-in-hungary/", "name": "Browse COVID-19 data", "type": "data access"}, {"url": "https://adatbank.tarki.hu/en/catalogue-search/", "name": "Search", "type": "data access"}, {"url": "https://adatbank.tarki.hu/en/data-deposition/", "name": "Deposit Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010496", "name": "re3data:r3d100010496", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001860", "bsg-d001860"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Hungary"], "name": "FAIRsharing record for: TARKI Data Archive", "abbreviation": "TARKI", "url": "https://fairsharing.org/10.25504/FAIRsharing.d14d9f", "doi": "10.25504/FAIRsharing.d14d9f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TARKI is the Hungarian Social Science data archive. It is a member of CESSDA-ERIC and the European Association of Social Science Data Archives. There are more than 800 social science resources in the T\u00c1RKI archive, representing more than 35 years of survey research in Hungary.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2855", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-13T12:41:18.000Z", "updated-at": "2022-02-08T10:30:21.011Z", "metadata": {"doi": "10.25504/FAIRsharing.1a283d", "name": "Comprehensive R Archive Network", "status": "ready", "contacts": [{"contact-name": "CRAN Administrator", "contact-email": "cran-sysadmin@r-project.org"}], "homepage": "https://cran.r-project.org/", "identifier": 2855, "description": "CRAN is a network of ftp and web servers around the world that store identical, up-to-date, versions of code and documentation for R.", "abbreviation": "CRAN", "support-links": [{"url": "https://cran.r-project.org/web/packages/policies.html", "name": "CRAN Repository Policy", "type": "Help documentation"}], "year-creation": 1997, "data-processes": [{"url": "https://cran.r-project.org/web/packages/available_packages_by_date.html", "name": "Browse Packages by Date", "type": "data access"}, {"url": "https://cran.r-project.org/web/packages/available_packages_by_name.html", "name": "Browse Packages by Name", "type": "data access"}, {"url": "https://cran.r-project.org/web/views/", "name": "Browse Packages by Topic", "type": "data access"}, {"url": "https://xmpalantir.wu.ac.at/cransubmit/", "name": "Submit Package", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010411", "name": "re3data:r3d100010411", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003005", "name": "SciCrunch:RRID:SCR_003005", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001356", "bsg-d001356"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Statistics", "Computer Science", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Comprehensive R Archive Network", "abbreviation": "CRAN", "url": "https://fairsharing.org/10.25504/FAIRsharing.1a283d", "doi": "10.25504/FAIRsharing.1a283d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CRAN is a network of ftp and web servers around the world that store identical, up-to-date, versions of code and documentation for R.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3342", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-18T11:14:50.000Z", "updated-at": "2022-02-08T10:37:31.327Z", "metadata": {"doi": "10.25504/FAIRsharing.be094e", "name": "Balearic Islands Coastal Observing and Forecasting System Data Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@socib.es"}], "homepage": "http://apps.socib.es/data-catalog/", "citations": [{"publication-id": 1182}], "identifier": 3342, "description": "The Balearic Islands Coastal Observing and Forecasting System Data Repository (SOCIB) Data Repository contains data collected for both coastal and open ocean regions. The collection includes data from, high frequency radar, gliders, drifters, research vessel instruments, profilers, and moorings, amongst others, and advanced numerical model simulations from the Forecasting System.", "abbreviation": "SOCIB Data Repository", "access-points": [{"url": "http://api.socib.es/home/", "name": "SOCIB API Home", "type": "REST"}], "support-links": [{"url": "https://repository.socib.es/repository/entry/get/PUM_DCF_data-products-catalog-user-manual.pdf?entryid=966c9ca1-9758-48c5-bfe8-387f6af1c58e", "name": "User Manual (PDF)", "type": "Help documentation"}, {"url": "https://twitter.com/socib_icts", "name": "@socib_icts", "type": "Twitter"}], "data-processes": [{"url": "https://thredds.socib.es/thredds/catalog.html", "name": "Download via THREDDS", "type": "data release"}, {"url": "http://apps.socib.es/data-catalog/", "name": "Browse and Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013237", "name": "re3data:r3d100013237", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001861", "bsg-d001861"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Oceanography"], "domains": ["Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Coast", "Forecasting"], "countries": ["Spain"], "name": "FAIRsharing record for: Balearic Islands Coastal Observing and Forecasting System Data Repository", "abbreviation": "SOCIB Data Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.be094e", "doi": "10.25504/FAIRsharing.be094e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Balearic Islands Coastal Observing and Forecasting System Data Repository (SOCIB) Data Repository contains data collected for both coastal and open ocean regions. The collection includes data from, high frequency radar, gliders, drifters, research vessel instruments, profilers, and moorings, amongst others, and advanced numerical model simulations from the Forecasting System.", "publications": [{"id": 1182, "pubmed_id": null, "title": "SOCIB: The Balearic Islands Coastal Ocean Observing and Forecasting System Responding to Science, Technology and Society Needs", "year": 2013, "url": "https://doi.org/10.4031/MTSJ.47.1.10", "authors": "Tintor\u00e9, Joaqu\u00edn; Vizoso, Guillermo; Casas, Benjam\u00edn et al.", "journal": "Marine Technology Society Journal", "doi": null, "created_at": "2021-09-30T08:24:31.400Z", "updated_at": "2021-09-30T08:24:31.400Z"}], "licence-links": [{"licence-name": "SOCIB Data Access Policy", "licence-id": 752, "link-id": 2213, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2643", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-06T10:34:36.000Z", "updated-at": "2021-11-24T13:19:37.575Z", "metadata": {"name": "Alternaria Genomes Database", "status": "ready", "contacts": [{"contact-name": "Dang HX", "contact-email": "hd@vt.edu"}], "homepage": "http://alternaria.vbi.vt.edu/index.html", "identifier": 2643, "description": "The Alternaria Genomes Database (AGD) contains genome sequences and associated annotation for Alternaria genomes.", "abbreviation": "AGD", "support-links": [{"url": "http://alternaria.vbi.vt.edu/info/index.html", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://alternaria.vbi.vt.edu/Multi/blastview", "name": "blast", "type": "data access"}, {"url": "ftp://alternaria.biol.vt.edu/Alternaria/", "name": "download", "type": "data access"}, {"url": "http://alternaria.vbi.vt.edu/index.html", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001134", "bsg-d001134"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome annotation", "Genome visualization"], "taxonomies": [], "user-defined-tags": ["Genome Context"], "countries": ["United States"], "name": "FAIRsharing record for: Alternaria Genomes Database", "abbreviation": "AGD", "url": "https://fairsharing.org/fairsharing_records/2643", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Alternaria Genomes Database (AGD) contains genome sequences and associated annotation for Alternaria genomes.", "publications": [{"id": 1679, "pubmed_id": 25887485, "title": "The Alternaria genomes database: a comprehensive resource for a fungal genus comprised of saprophytes, plant pathogens, and allergenic species.", "year": 2015, "url": "http://doi.org/10.1186/s12864-015-1430-7", "authors": "Dang HX,Pryor B,Peever T,Lawrence CB", "journal": "BMC Genomics", "doi": "10.1186/s12864-015-1430-7", "created_at": "2021-09-30T08:25:28.087Z", "updated_at": "2021-09-30T08:25:28.087Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3657", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-03T10:51:05.540Z", "updated-at": "2022-02-08T10:37:59.921Z", "metadata": {"doi": "10.25504/FAIRsharing.b1716a", "name": "Microbial Database for Activated Sludge", "status": "ready", "contacts": [], "homepage": "https://midasfieldguide.org/guide", "citations": [], "identifier": 3657, "description": "Microbial Database for Activated Sludge (MiDAS) is a central resource for information about the microbes in the engineered ecosystem of activated sludge, anaerobic digesters, and related wastewater treatment systems, such as biofilms, granules and membrane-bioreactors.", "abbreviation": "MiDAS", "data-curation": {}, "support-links": [{"url": "https://midasfieldguide.org/guide/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://midasfieldguide.org/guide/about", "name": "About ", "type": "Help documentation"}, {"url": "https://twitter.com/midasguide", "name": "@midasguide", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://midasfieldguide.org/guide/search", "name": "Search", "type": "data access"}, {"url": "https://midasfieldguide.org/guide/taxonomy", "name": "Browse Taxonomy", "type": "data access"}, {"url": "https://midasfieldguide.org/guide/downloads", "name": "Download Database and Taxonomy", "type": "data release"}], "associated-tools": [{"url": "https://midasfieldguide.org/guide/blast", "name": "BLAST"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Taxonomy", "Microbiology"], "domains": ["Taxonomic classification", "Protocol"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: Microbial Database for Activated Sludge", "abbreviation": "MiDAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.b1716a", "doi": "10.25504/FAIRsharing.b1716a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Microbial Database for Activated Sludge (MiDAS) is a central resource for information about the microbes in the engineered ecosystem of activated sludge, anaerobic digesters, and related wastewater treatment systems, such as biofilms, granules and membrane-bioreactors.", "publications": [{"id": 3146, "pubmed_id": null, "title": "MiDAS 4: A global catalogue of full-length 16S rRNA gene sequences and taxonomy for studies of bacterial communities in wastewater treatment plants", "year": 2021, "url": "http://dx.doi.org/10.1101/2021.07.06.451231", "authors": "Dueholm, Morten Simonsen; Nierychlo, Marta; Andersen, Kasper Skytte; Rudkj\u00f8bing, Vibeke; Knutsson, Simon; Albertsen, Mads; Nielsen, Per Halkj\u00e6r; undefined, undefined; ", "journal": "bioRxiv", "doi": "10.1101/2021.07.06.451231", "created_at": "2021-12-06T13:46:30.863Z", "updated_at": "2021-12-06T13:46:30.863Z"}, {"id": 3147, "pubmed_id": null, "title": "MiDAS 3: An ecosystem-specific reference database, taxonomy and knowledge platform for activated sludge and anaerobic digesters reveals species-level microbiome composition of activated sludge", "year": 2020, "url": "http://dx.doi.org/10.1016/j.watres.2020.115955", "authors": "Nierychlo, Marta; Andersen, Kasper Skytte; Xu, Yijuan; Green, Nicholas; Jiang, Chenjing; Albertsen, Mads; Dueholm, Morten Simonsen; Nielsen, Per Halkj\u00e6r; ", "journal": "Water Research", "doi": "10.1016/j.watres.2020.115955", "created_at": "2021-12-06T13:46:51.683Z", "updated_at": "2021-12-06T13:46:51.683Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2527, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2929", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-02T13:14:23.000Z", "updated-at": "2022-02-07T09:19:26.659Z", "metadata": {"doi": "10.25504/FAIRsharing.JGEjCW", "name": "The Troms\u00f8 Repository of Language and Linguistics", "status": "ready", "contacts": [{"contact-name": "UiT Research Data Support", "contact-email": "researchdata@hjelp.uit.no"}], "homepage": "https://trolling.uit.no/", "identifier": 2929, "description": "The Troms\u00f8 Repository of Language and Linguistics (TROLLing) is a repository of data, code, and other related materials used in linguistic research. The repository is open access, which means that all information is available to everyone. All postings are accompanied by searchable metadata that identify the researchers, the languages and linguistic phenomena involved, the statistical methods applied, and scholarly publications based on the data (where relevant). DataverseNO is aligned with the FAIR Guiding Principles for scientific data management and stewardship. Being part of DataverseNO, TROLLing is CoreTrustSeal certified.", "abbreviation": "TROLLing", "support-links": [{"url": "https://info.trolling.uit.no/", "name": "The TROLLing Blog", "type": "Blog/News"}, {"url": "researchdata@hjelp.uit.no", "name": "Support", "type": "Support email"}, {"url": "https://site.uit.no/trolling/getting-started/how-to-archive/", "name": "How to archive your data in TROLLing", "type": "Help documentation"}, {"url": "https://site.uit.no/dataverseno/deposit/prepare/", "name": "How to prepare your data for archiving in TROLLing", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://site.uit.no/dataverseno/about/policy-framework/access-and-use-policy/", "name": "Access and Use Policy", "type": "data access"}, {"url": "https://site.uit.no/dataverseno/about/#data-curation-and-preservation", "name": "Data curation and preservation", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011623", "name": "re3data:r3d100011623", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001432", "bsg-d001432"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Classical Philology", "Applied Linguistics", "Linguistics", "Historical Linguistics"], "domains": ["Language disorder", "Natural language processing", "Curated information", "Digital curation", "Data storage"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Language", "Open Science", "Researcher data"], "countries": ["Norway"], "name": "FAIRsharing record for: The Troms\u00f8 Repository of Language and Linguistics", "abbreviation": "TROLLing", "url": "https://fairsharing.org/10.25504/FAIRsharing.JGEjCW", "doi": "10.25504/FAIRsharing.JGEjCW", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Troms\u00f8 Repository of Language and Linguistics (TROLLing) is a repository of data, code, and other related materials used in linguistic research. The repository is open access, which means that all information is available to everyone. All postings are accompanied by searchable metadata that identify the researchers, the languages and linguistic phenomena involved, the statistical methods applied, and scholarly publications based on the data (where relevant). DataverseNO is aligned with the FAIR Guiding Principles for scientific data management and stewardship. Being part of DataverseNO, TROLLing is CoreTrustSeal certified.", "publications": [{"id": 2918, "pubmed_id": null, "title": "Disciplinary Case Study: The Troms\u00f8 Repository of Language and Linguistics (TROLLing)", "year": 2019, "url": "https://doi.org/10.5281/zenodo.2668775", "authors": "Philipp Conzett", "journal": "Association of European Research Libraries", "doi": null, "created_at": "2021-09-30T08:27:59.340Z", "updated_at": "2021-09-30T08:27:59.340Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 762, "relation": "undefined"}, {"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 777, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2934", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-23T07:22:28.000Z", "updated-at": "2022-02-08T10:32:24.349Z", "metadata": {"doi": "10.25504/FAIRsharing.f3b7a9", "name": "COVID-19 Data Portal", "status": "ready", "contacts": [{"contact-name": "European COVID-19 Data Platform", "contact-email": "ecovid19@ebi.ac.uk"}], "homepage": "https://www.covid19dataportal.org", "citations": [], "identifier": 2934, "description": "The COVID-19 Data Portal enables researchers to upload, access and analyse COVID-19 related reference data and specialist datasets. The aim of the COVID-19 Data Portal is to facilitate data sharing and analysis, and to accelerate coronavirus research. The portal includes relevant datasets submitted to EMBL-EBI as well as other major centres for biomedical data. The COVID-19 Data Portal is the primary entry point into the functions of a wider project, the European COVID-19 Data Platform.", "abbreviation": null, "access-points": [{"url": "https://www.covid19dataportal.org/api-documentation", "name": "COVID-19 Data Portal API Documentation", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://www.ebi.ac.uk/support/covid19dataportal", "name": "Contact Form", "type": "Contact form"}, {"url": "virus-dataflow@ebi.ac.uk", "name": "Data Curation Helpdesk", "type": "Support email"}, {"url": "https://www.covid19dataportal.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.covid19dataportal.org/partners", "name": "Partners", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.covid19dataportal.org/submit-data", "name": "Submit to Source Databases", "type": "data curation"}, {"url": "https://www.covid19dataportal.org/sequences?db=embl-covid19", "name": "Viral Sequence Search", "type": "data access"}, {"url": "https://www.covid19dataportal.org/expression?db=expression", "name": "Search Expression Data", "type": "data access"}, {"url": "https://www.covid19dataportal.org/proteins?db=uniprot-covid19", "name": "Protein Search", "type": "data access"}, {"url": "https://www.covid19dataportal.org/host-sequences", "name": "Host Sequence Search", "type": "data access"}, {"url": "https://www.covid19dataportal.org/imaging?db=imaging", "name": "Imaging Search", "type": "data access"}, {"url": "https://www.covid19dataportal.org/literature?db=literature", "name": "Literature Search", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/covid19dataportal/", "name": "Download (FTP)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013292", "name": "re3data:r3d100013292", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001437", "bsg-d001437"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Integration", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Expression data", "Bioimaging", "Gene expression", "Protein-containing complex", "Molecular interaction", "Protein expression", "Disease", "Protein", "Pathway model", "Sequence", "Amino acid sequence", "Viral sequence"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["European Union"], "name": "FAIRsharing record for: COVID-19 Data Portal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.f3b7a9", "doi": "10.25504/FAIRsharing.f3b7a9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The COVID-19 Data Portal enables researchers to upload, access and analyse COVID-19 related reference data and specialist datasets. The aim of the COVID-19 Data Portal is to facilitate data sharing and analysis, and to accelerate coronavirus research. The portal includes relevant datasets submitted to EMBL-EBI as well as other major centres for biomedical data. The COVID-19 Data Portal is the primary entry point into the functions of a wider project, the European COVID-19 Data Platform.", "publications": [], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2435, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2938", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-13T07:47:05.000Z", "updated-at": "2022-02-08T10:39:19.373Z", "metadata": {"doi": "10.25504/FAIRsharing.ba6a09", "name": "GISAID EpiCoV\u2122 Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "CNGBdb@cngb.org"}], "homepage": "https://db.cngb.org/gisaid/", "identifier": 2938, "description": "China National GeneBank DataBase (CNGBdb) is an official partner of the GISAID Initiative. It provides access to EpiCoV and features the most complete collection of hCoV-19 genome sequences along with related clinical and epidemiological data. With the data from this database scientific researchers can construct a virus phylogenetic tree to reveal the characteristics of the pathogen, and provide effective references for the study and analysis of the evolutionary source and pathological mechanism of the novel coronavirus.", "abbreviation": null, "support-links": [{"url": "https://db.cngb.org/news/", "name": "CNGBdb News", "type": "Blog/News"}, {"url": "https://db.cngb.org/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.gisaid.org/registration/register/", "name": "The signup process", "type": "Help documentation"}, {"url": "https://db.cngb.org/about/", "name": "About CNGBdb", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://db.cngb.org/gisaid/", "name": "Browse", "type": "data access"}, {"url": "https://www.gisaid.org/epiflu-applications/submitting-data-to-epiflutm/", "name": "Submit", "type": "data access"}, {"url": "https://db.cngb.org/account/signup?next=https%3A%2F%2Fdb.cngb.org%2Fgisaid%2F", "name": "Login to access data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001442", "bsg-d001442"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Phylogenetics", "Virology", "Life Science", "Epidemiology"], "domains": ["Genome"], "taxonomies": ["Coronaviridae"], "user-defined-tags": ["COVID-19"], "countries": ["China"], "name": "FAIRsharing record for: GISAID EpiCoV\u2122 Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ba6a09", "doi": "10.25504/FAIRsharing.ba6a09", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: China National GeneBank DataBase (CNGBdb) is an official partner of the GISAID Initiative. It provides access to EpiCoV and features the most complete collection of hCoV-19 genome sequences along with related clinical and epidemiological data. With the data from this database scientific researchers can construct a virus phylogenetic tree to reveal the characteristics of the pathogen, and provide effective references for the study and analysis of the evolutionary source and pathological mechanism of the novel coronavirus.", "publications": [], "licence-links": [{"licence-name": "GISAID Terms of Use", "licence-id": 346, "link-id": 2454, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2945", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T14:28:01.000Z", "updated-at": "2022-02-08T10:39:20.732Z", "metadata": {"doi": "10.25504/FAIRsharing.41737c", "name": "Stanford HIV Drug Resistance Database", "status": "ready", "contacts": [{"contact-name": "Robert W. Shafer", "contact-email": "rshafer@stanford.edu"}], "homepage": "https://hivdb.stanford.edu/", "identifier": 2945, "description": "The Stanford HIV Drug Resistance Database (HIVDB) is an essential resource for public health officials monitoring ADR and TDR, for scientists developing new ARV drugs, and for HIV care providers managing patients with HIVDR.", "abbreviation": "HIVDB", "support-links": [{"url": "hivdbteam@stanford.edu", "name": "General contact", "type": "Support email"}, {"url": "https://hivdb.stanford.edu/pages/FAQ/FAQ.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://hivdb.stanford.edu/cgi-bin/Summary.cgi", "name": "Database statistics", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "https://hivdb.stanford.edu/pages/genotype-rx.html", "name": "Browse Genotype-Treatment Correlations", "type": "data access"}, {"url": "https://hivdb.stanford.edu/pages/genotype-phenotype.html", "name": "Browse Genotype-Phenotype Correlations", "type": "data access"}, {"url": "https://hivdb.stanford.edu/pages/genotype-clinical.html", "name": "Browse Genotype-Clinical Outcome Correlations", "type": "data access"}, {"url": "https://hivdb.stanford.edu/hivdb/by-mutations/", "name": "Search HIVdb Program", "type": "data access"}]}, "legacy-ids": ["biodbcore-001449", "bsg-d001449"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Drug Development", "Virology", "Life Science", "Epidemiology"], "domains": ["Phenotype", "Treatment"], "taxonomies": ["Human immunodeficiency virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Stanford HIV Drug Resistance Database", "abbreviation": "HIVDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.41737c", "doi": "10.25504/FAIRsharing.41737c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Stanford HIV Drug Resistance Database (HIVDB) is an essential resource for public health officials monitoring ADR and TDR, for scientists developing new ARV drugs, and for HIV care providers managing patients with HIVDR.", "publications": [{"id": 2839, "pubmed_id": 12520007, "title": "Human immunodeficiency virus reverse transcriptase and protease sequence database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg100", "authors": "Rhee SY,Gonzales MJ,Kantor R,Betts BJ,Ravela J,Shafer RW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg100", "created_at": "2021-09-30T08:27:49.252Z", "updated_at": "2021-09-30T11:29:47.046Z"}, {"id": 2840, "pubmed_id": 16921473, "title": "Rationale and uses of a public HIV drug-resistance database.", "year": 2006, "url": "http://doi.org/10.1086/505356", "authors": "Shafer RW", "journal": "J Infect Dis", "doi": "10.1086/505356", "created_at": "2021-09-30T08:27:49.372Z", "updated_at": "2021-09-30T08:27:49.372Z"}], "licence-links": [{"licence-name": "HIV Drug Resistance Database Terms of Use", "licence-id": 395, "link-id": 919, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3199", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-27T16:19:26.000Z", "updated-at": "2021-11-24T13:18:15.615Z", "metadata": {"doi": "10.25504/FAIRsharing.aFsZlL", "name": "Civic Learning, Engagement, and Action Data Sharing\tC", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "civicleads@umich.edu"}], "homepage": "https://www.icpsr.umich.edu/web/pages/civicleads/index.html", "citations": [], "identifier": 3199, "description": "Civic Learning, Engagement, and Action Data Sharing (CivicLEADS) provides an infrastructure for researchers to share and access high-quality datasets which can be used to study civic education and involvement. CivicLEADS is Funded by a grant from the Spencer Foundation and part of ICPSR's Education and Child Care Data Archives at the University of Michigan.", "abbreviation": "CivicLEADS", "support-links": [{"url": "https://www.icpsr.umich.edu/web/civicleads/cms/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.icpsr.umich.edu/web/civicleads/cms/news", "type": "Training documentation"}], "data-processes": [{"url": "https://www.icpsr.umich.edu/web/pages/civicleads/data.html", "name": "Browse & search", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/civicleads/deposit.html", "name": "Submit", "type": "data curation"}, {"url": "https://www.icpsr.umich.edu/web/pages/civicleads/variables.html", "name": "Variable search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001711", "bsg-d001711"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Social and Behavioural Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Civic Education", "politics", "Social Media", "Survey", "voting"], "countries": ["United States"], "name": "FAIRsharing record for: Civic Learning, Engagement, and Action Data Sharing\tC", "abbreviation": "CivicLEADS", "url": "https://fairsharing.org/10.25504/FAIRsharing.aFsZlL", "doi": "10.25504/FAIRsharing.aFsZlL", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Civic Learning, Engagement, and Action Data Sharing (CivicLEADS) provides an infrastructure for researchers to share and access high-quality datasets which can be used to study civic education and involvement. CivicLEADS is Funded by a grant from the Spencer Foundation and part of ICPSR's Education and Child Care Data Archives at the University of Michigan.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2950", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-15T08:59:24.000Z", "updated-at": "2022-02-08T10:39:22.134Z", "metadata": {"doi": "10.25504/FAIRsharing.7ceb60", "name": "European Centre for Disease Prevention and Control", "status": "ready", "contacts": [{"contact-name": "Andrea Ammon", "contact-email": "Andrea.Ammon@ecdc.eu.int"}], "homepage": "https://www.ecdc.europa.eu/en", "citations": [], "identifier": 2950, "description": "ECDC's main role as an agency of the European Union is to strengthen Europe\u2019s defences against communicable diseases, worked together with all EU/EEA countries in response to public health threats and emerging diseases. Part of the ECDC mission is to provide search for, collect, collate, evaluate and disseminate relevant scientific and technical data.", "abbreviation": "ECDC", "support-links": [{"url": "https://www.linkedin.com/company/ecdc/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://www.ecdc.europa.eu/en/news-events", "name": "News & events", "type": "Blog/News"}, {"url": "https://www.facebook.com/ECDC.EU", "name": "Facebook", "type": "Facebook"}, {"url": "info@ecdc.europa.eu", "name": "General enquiries", "type": "Support email"}, {"url": "https://www.youtube.com/user/ECDCchannel", "name": "Youtube", "type": "Video"}, {"url": "https://vimeo.com/ecdcvideos", "name": "Vimeo", "type": "Help documentation"}, {"url": "https://www.slideshare.net/ecdc_eu", "name": "Slideshare", "type": "Help documentation"}, {"url": "https://eva.ecdc.europa.eu/", "name": "ECDC Virtual Academy (EVA), an online training platform", "type": "Training documentation"}, {"url": "https://twitter.com/ECDC_EU", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://www.ecdc.europa.eu/en/publications-data", "name": "Browse & search", "type": "data access"}], "associated-tools": [{"url": "http://atlas.ecdc.europa.eu/public/index.aspx", "name": "Surveillance Atlas for infectious diseases"}, {"url": "https://www.ecdc.europa.eu/en/publications-data/west-nile-virus-risk-assessment-tool-0", "name": "West Nile virus risk assessment tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013304", "name": "re3data:r3d100013304", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001454", "bsg-d001454"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Humanities and Social Science", "Virology", "Epidemiology"], "domains": ["Disease"], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["European Union"], "name": "FAIRsharing record for: European Centre for Disease Prevention and Control", "abbreviation": "ECDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.7ceb60", "doi": "10.25504/FAIRsharing.7ceb60", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ECDC's main role as an agency of the European Union is to strengthen Europe\u2019s defences against communicable diseases, worked together with all EU/EEA countries in response to public health threats and emerging diseases. Part of the ECDC mission is to provide search for, collect, collate, evaluate and disseminate relevant scientific and technical data.", "publications": [], "licence-links": [{"licence-name": "European Centre for Disease Prevention and Control Legal Notice", "licence-id": 300, "link-id": 674, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3655", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-02T17:48:59.046Z", "updated-at": "2022-02-08T10:45:36.439Z", "metadata": {"doi": "10.25504/FAIRsharing.de533c", "name": "Translational Data Catalog", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "data-catalog@elixir-luxembourg.org", "contact-orcid": null}], "homepage": "https://datacatalog.elixir-luxembourg.org/", "citations": [], "identifier": 3655, "description": "The Translational Data Catalog is a collection of project-level metadata from large research initiatives such as IMI and H2020 in a diverse range of fields, including clinical, molecular and observational studies. Its aim is to improve the findability of these projects following FAIR data principles. The Data Catalog uses a variety of web-based software to enable remote, interactive data-mining such that important metadata and summaries of curated studies can be displayed. ", "abbreviation": "IMI Data Catalog", "data-curation": {}, "support-links": [{"url": "https://datacatalog.elixir-luxembourg.org/about", "name": "About", "type": "Other"}, {"url": "https://datacatalog.elixir-luxembourg.org/help", "type": "Help documentation"}, {"url": "https://github.com/FAIRplus/imi-data-catalogue/issues", "name": "Issue Tracker", "type": "Contact form"}], "year-creation": 2016, "data-processes": [{"url": "https://datacatalog.elixir-luxembourg.org/datasets", "name": "Search & Browse Dataset", "type": "data access"}, {"url": "https://datacatalog.elixir-luxembourg.org/studys", "name": "Search & Browse Studies", "type": "data access"}, {"url": "https://datacatalog.elixir-luxembourg.org/projects", "name": "Search & Browse Projects", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Toxicogenomics", "Genomics", "Clinical Studies", "Proteomics"], "domains": ["Resource metadata", "Expression data", "Free text", "Annotation", "Analysis", "Bioimaging", "Biomarker", "Safety study", "RNA sequencing", "Sequencing", "Infectious disease"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19", "neurodegenerative diseases"], "countries": ["Luxembourg"], "name": "FAIRsharing record for: Translational Data Catalog", "abbreviation": "IMI Data Catalog", "url": "https://fairsharing.org/10.25504/FAIRsharing.de533c", "doi": "10.25504/FAIRsharing.de533c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Translational Data Catalog is a collection of project-level metadata from large research initiatives such as IMI and H2020 in a diverse range of fields, including clinical, molecular and observational studies. Its aim is to improve the findability of these projects following FAIR data principles. The Data Catalog uses a variety of web-based software to enable remote, interactive data-mining such that important metadata and summaries of curated studies can be displayed. ", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2524, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2970", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T08:39:22.000Z", "updated-at": "2022-02-08T10:39:51.522Z", "metadata": {"doi": "10.25504/FAIRsharing.f14e0b", "name": "National Pollutant Release Inventory", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ec.inrp-npri.ec@canada.ca"}], "homepage": "https://www.canada.ca/en/services/environment/pollution-waste-management/national-pollutant-release-inventory.html", "identifier": 2970, "description": "The National Pollutant Release Inventory (NPRI) is Canada\u2019s public inventory of releases, disposals and transfers. It tracks over 320 pollutants from over 7,000 facilities across Canada. Reporting facilities include factories that manufacture a variety of goods, mines, oil and gas operations, power plants and sewage treatment plants. The information that facility owners and operators must report to the inventory: helps Canadians understand pollutants releases in their communities, encourages actions to reduce pollution, helps track progress.", "abbreviation": "NPRI", "support-links": [{"url": "https://tinyurl.com/ybcpg68z", "name": "Instructional videos: National Pollutant Release Inventory", "type": "Help documentation"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/using-interpreting-data.html", "name": "Using and interpreting data from the National Pollutant Release Inventory", "type": "Help documentation"}], "year-creation": 1992, "data-processes": [{"url": "https://pollution-waste.canada.ca/national-release-inventory/archives/index.cfm?lang=en", "name": "NPRI Data Search", "type": "data access"}, {"url": "https://open.canada.ca/data/en/dataset/1fb7d8d4-7713-4ec6-b957-4a882a84fed3", "name": "Download NPRI data (single year tables)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/dataset/ea0dc8ae-d93c-4e24-9f61-946f1736a26f", "name": "Download NPRI data (five year summaries)", "type": "data access"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/tools-resources-data/exploredata.html", "name": "Download NPRI data (all years datasets)", "type": "data access"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/tools-resources-data/exploredata.html", "name": "Download NPRI data (complete reported datasets)", "type": "data access"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/tools-resources-data/exploredata.html", "name": "View NPRI maps (facility locations)", "type": "data access"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/tools-resources-data/exploredata.html", "name": "View NPRI maps (main air pollutants)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/fgpv_vpgf/22abff18-6f9d-4926-b7de-3a80c178bf95", "name": "View NPRI maps (other air pollutants)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/fgpv_vpgf/94a51051-ad11-499a-b5f1-8c97b29f695c", "name": "View NPRI maps (water pollutants)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/fgpv_vpgf/49deb8b2-10a6-4b4a-ad7c-9cbc2eda260b", "name": "View NPRI maps (land pollutants)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/fgpv_vpgf/6ab784be-1197-4820-8bc2-fd20da32632c", "name": "View NPRI maps (disposals and transfers of pollutants)", "type": "data access"}, {"url": "https://open.canada.ca/data/en/dataset/d9be6bec-47e5-4835-8d01-d2875a8d67ff", "name": "View NPRI maps (virtual globe maps)", "type": "data access"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/report.html", "name": "Report to the National Pollutant Release Inventory program", "type": "data curation"}, {"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/substances-list/threshold.html", "name": "Substance list by threshold", "type": "data access"}], "associated-tools": [{"url": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/report/sector-specific-tools-calculate-emissions.html", "name": "Tools to calculate emissions"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010623", "name": "re3data:r3d100010623", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001476", "bsg-d001476"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science", "Water Research"], "domains": ["Environmental contaminant", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Pollution", "Recycling"], "countries": ["Canada"], "name": "FAIRsharing record for: National Pollutant Release Inventory", "abbreviation": "NPRI", "url": "https://fairsharing.org/10.25504/FAIRsharing.f14e0b", "doi": "10.25504/FAIRsharing.f14e0b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Pollutant Release Inventory (NPRI) is Canada\u2019s public inventory of releases, disposals and transfers. It tracks over 320 pollutants from over 7,000 facilities across Canada. Reporting facilities include factories that manufacture a variety of goods, mines, oil and gas operations, power plants and sewage treatment plants. The information that facility owners and operators must report to the inventory: helps Canadians understand pollutants releases in their communities, encourages actions to reduce pollution, helps track progress.", "publications": [], "licence-links": [{"licence-name": "Government of Canada Terms and conditions", "licence-id": 361, "link-id": 1352, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2995", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-14T09:08:33.000Z", "updated-at": "2022-02-08T10:40:18.004Z", "metadata": {"doi": "10.25504/FAIRsharing.88b8d1", "name": "United States Department of Agriculture Economics, Statistics and Market Information System", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "usda-help@cornell.edu"}], "homepage": "https://usda.library.cornell.edu/", "identifier": 2995, "description": "The USDA Economics, Statistics and Market Information System (ESMIS) contains reports and datasets covering U.S. and international agriculture. This Includes materials on current and historical agricultural market topics such as field crops, livestock, dairy, poultry, weather, domestic and international trade. Mann Library at Cornell University developed and maintains this site.", "abbreviation": "USDA ESMIS", "access-points": [{"url": "https://usda.library.cornell.edu/apidoc/index.html", "name": "USDA ESMIS API", "type": "Other"}], "support-links": [{"url": "https://usda.library.cornell.edu/help?locale=en", "type": "Help documentation"}], "year-creation": 1990, "data-processes": [{"url": "https://usda.library.cornell.edu/catalog?locale=en", "name": "Browse all publications", "type": "data access"}, {"url": "https://usda.library.cornell.edu/?locale=en", "name": "Browse by category & agency", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011025", "name": "re3data:r3d100011025", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001501", "bsg-d001501"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Business Administration", "Earth Science", "Agriculture", "Agricultural Economics"], "domains": ["Cropping systems"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Livestock", "weather"], "countries": ["United States"], "name": "FAIRsharing record for: United States Department of Agriculture Economics, Statistics and Market Information System", "abbreviation": "USDA ESMIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.88b8d1", "doi": "10.25504/FAIRsharing.88b8d1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The USDA Economics, Statistics and Market Information System (ESMIS) contains reports and datasets covering U.S. and international agriculture. This Includes materials on current and historical agricultural market topics such as field crops, livestock, dairy, poultry, weather, domestic and international trade. Mann Library at Cornell University developed and maintains this site.", "publications": [], "licence-links": [{"licence-name": "Privacy notice for the Economics, Statistics and Market Information System (ESMIS) maintained at Cornell University, in partnership with the USDA.", "licence-id": 680, "link-id": 1687, "relation": "undefined"}, {"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1705, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3008", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-21T13:07:09.000Z", "updated-at": "2022-02-08T10:40:22.314Z", "metadata": {"doi": "10.25504/FAIRsharing.73ea53", "name": "World Ocean Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "OCL.help@noaa.gov"}], "homepage": "https://www.nodc.noaa.gov/OC5/WOD/pr_wod.html", "citations": [], "identifier": 3008, "description": "The World Ocean Database (WOD) is a collection of scientifically quality-controlled ocean profile and plankton data that includes measurements of temperature, salinity, oxygen, phosphate, nitrate, silicate, chlorophyll, alkalinity, pH, pCO2, TCO2, Tritium, \u039413Carbon, \u039414Carbon, \u039418Oxygen, Freon, Helium, \u03943Helium, Neon, and plankton.", "abbreviation": "WOD", "data-curation": {}, "support-links": [{"url": "https://www.nodc.noaa.gov/OC5/WOD/wod-woa-faqs.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.nodc.noaa.gov/OC5/WOD/docwod.html", "type": "Help documentation"}, {"url": "https://data.nodc.noaa.gov/woa/WOD/DOC/wod_intro.pdf", "name": "WORLD OCEAN DATABASE 2018", "type": "Help documentation"}, {"url": "http://www.nodc.noaa.gov/OC5/RSS/wod_updates.xml", "type": "Blog/News"}, {"url": "https://en.wikipedia.org/wiki/World_Ocean_Database_Project", "type": "Wikipedia"}], "data-processes": [{"url": "https://www.nodc.noaa.gov/OC5/SELECT/dbsearch/dbsearch.html", "name": "Search", "type": "data access"}, {"url": "https://www.nodc.noaa.gov/OC5/WOD/wod_updates.html", "name": "Updates", "type": "data release"}, {"url": "https://www.nodc.noaa.gov/OC5/WOD/datawodgeo.html", "name": "Download / Access World Ocean Database Geographically Sorted Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011580", "name": "re3data:r3d100011580", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001516", "bsg-d001516"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Meteorology", "Earth Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Salinity", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: World Ocean Database", "abbreviation": "WOD", "url": "https://fairsharing.org/10.25504/FAIRsharing.73ea53", "doi": "10.25504/FAIRsharing.73ea53", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Ocean Database (WOD) is a collection of scientifically quality-controlled ocean profile and plankton data that includes measurements of temperature, salinity, oxygen, phosphate, nitrate, silicate, chlorophyll, alkalinity, pH, pCO2, TCO2, Tritium, \u039413Carbon, \u039414Carbon, \u039418Oxygen, Freon, Helium, \u03943Helium, Neon, and plankton.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2032", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.364Z", "metadata": {"doi": "10.25504/FAIRsharing.33yggg", "name": "PAZAR", "status": "deprecated", "contacts": [{"contact-name": "Wyeth W. Wasserman", "contact-email": "wyeth@cmmt.ubc.ca", "contact-orcid": "0000-0001-6098-6412"}], "homepage": "http://www.pazar.info/", "identifier": 2032, "description": "PAZAR is a software framework for the construction and maintenance of regulatory sequence data annotations; a framework which allows multiple boutique databases to function independently within a larger system (or information mall). The goal of PAZAR is to be the public repository for regulatory data.", "abbreviation": "PAZAR", "access-points": [{"url": "http://www.pazar.info/apidocs/", "name": "PAZAR perl API", "type": "Other"}], "support-links": [{"url": "http://www.pazar.info/cgi-bin/help_FAQ.pl", "type": "Help documentation"}, {"url": "http://www.pazar.info/cgi-bin/overview.pl", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://www.pazar.info/cgi-bin/downloads.pl", "name": "Download", "type": "data access"}, {"url": "http://www.pazar.info/cgi-bin/index.pl", "name": "search", "type": "data access"}, {"url": "http://www.pazar.info/cgi-bin/sWI/entry.pl", "name": "submit", "type": "data curation"}, {"url": "http://www.pazar.info/cgi-bin/projects.pl", "name": "browse", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000499", "bsg-d000499"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Regulation of gene expression", "Biological regulation", "Transcription factor"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: PAZAR", "abbreviation": "PAZAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.33yggg", "doi": "10.25504/FAIRsharing.33yggg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PAZAR is a software framework for the construction and maintenance of regulatory sequence data annotations; a framework which allows multiple boutique databases to function independently within a larger system (or information mall). The goal of PAZAR is to be the public repository for regulatory data.", "publications": [{"id": 494, "pubmed_id": 18971253, "title": "The PAZAR database of gene regulatory information coupled to the ORCA toolkit for the study of regulatory sequences.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn783", "authors": "Portales-Casamar E., Arenillas D., Lim J., Swanson MI., Jiang S., McCallum A., Kirov S., Wasserman WW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn783", "created_at": "2021-09-30T08:23:13.677Z", "updated_at": "2021-09-30T08:23:13.677Z"}, {"id": 1617, "pubmed_id": 17916232, "title": "PAZAR: a framework for collection and dissemination of cis-regulatory sequence annotation.", "year": 2007, "url": "http://doi.org/10.1186/gb-2007-8-10-r207", "authors": "Portales-Casamar E,Kirov S,Lim J,Lithwick S,Swanson MI,Ticoll A,Snoddy J,Wasserman WW", "journal": "Genome Biol", "doi": "10.1186/gb-2007-8-10-r207", "created_at": "2021-09-30T08:25:21.195Z", "updated_at": "2021-09-30T08:25:21.195Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 710, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3758", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-19T11:08:51.840Z", "updated-at": "2022-01-28T16:45:50.407Z", "metadata": {"name": "protocols.io", "status": "ready", "contacts": [{"contact-name": "Emma Ganley", "contact-email": "emma@protocols.io", "contact-orcid": "0000-0002-2557-6204"}], "homepage": "https://protocols.io/welcome", "citations": [], "identifier": 3758, "description": "protocols.io is an open access repository for comprehensive research methods; the protocols.io platform enables researchers to record and share detailed up to date methods for research. It is open globally to users wherever they're located and free to use and publish. ", "abbreviation": null, "year-creation": 2014, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Protocol", "Study design"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Method descriptions"], "countries": [], "name": "FAIRsharing record for: protocols.io", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3758", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: protocols.io is an open access repository for comprehensive research methods; the protocols.io platform enables researchers to record and share detailed up to date methods for research. It is open globally to users wherever they're located and free to use and publish. ", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3033", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-19T07:17:01.000Z", "updated-at": "2022-02-08T10:41:05.514Z", "metadata": {"doi": "10.25504/FAIRsharing.86123d", "name": "Scholars' Bank", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "scholars@uoregon.edu"}], "homepage": "https://scholarsbank.uoregon.edu/xmlui/", "identifier": 3033, "description": "Scholars' Bank is the open access repository for the intellectual work of faculty, students, and staff at the University of Oregon. It also houses materials from certain partner institution collections. Open access journals, student projects, theses and dissertations, pre- and post-print articles, instructional resources, and university archival material are all candidates for deposit.", "abbreviation": "Scholar's Bank", "support-links": [{"url": "https://www.facebook.com/uolibraries", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.instagram.com/uolibraries/", "name": "Instagram", "type": "Blog/News"}, {"url": "https://library.uoregon.edu/digitalscholarship/irg/SB_FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://library.uoregon.edu/digitalscholarship/irg/SB_Overview", "name": "Scholars' Bank Overview", "type": "Help documentation"}, {"url": "https://www.youtube.com/c/uolibrarieseugene", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/uolibraries", "type": "Twitter"}], "data-processes": [{"url": "https://scholarsbank.uoregon.edu/xmlui/", "name": "Search & browse", "type": "data access"}, {"url": "https://library.uoregon.edu/digitalscholarship/irg/SB_Submit", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011682", "name": "re3data:r3d100011682", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001541", "bsg-d001541"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Bibliography", "Journal article", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["United States"], "name": "FAIRsharing record for: Scholars' Bank", "abbreviation": "Scholar's Bank", "url": "https://fairsharing.org/10.25504/FAIRsharing.86123d", "doi": "10.25504/FAIRsharing.86123d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scholars' Bank is the open access repository for the intellectual work of faculty, students, and staff at the University of Oregon. It also houses materials from certain partner institution collections. Open access journals, student projects, theses and dissertations, pre- and post-print articles, instructional resources, and university archival material are all candidates for deposit.", "publications": [], "licence-links": [{"licence-name": "Scholars' Bank Copyright & Scholars' Bank", "licence-id": 731, "link-id": 1952, "relation": "undefined"}, {"licence-name": "Scholars' Bank Policies & Guidelines", "licence-id": 732, "link-id": 1953, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3034", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-19T08:12:01.000Z", "updated-at": "2022-02-08T10:41:07.392Z", "metadata": {"doi": "10.25504/FAIRsharing.f384c3", "name": "SeaWiFS Bio-optical Archive and Storage System", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "seabass@seabass.gsfc.nasa.gov"}], "homepage": "https://seabass.gsfc.nasa.gov/", "identifier": 3034, "description": "SeaWiFS Bio-optical Archive and Storage System (SeaBASS) is a publicly shared archive of in situ oceanographic and atmospheric data maintained by the NASA Ocean Biology Processing Group (OBPG). Archived data include measurements of apparent and inherent optical properties, phytoplankton pigment concentrations, and other related oceanographic and atmospheric data, such as water temperature, salinity, stimulated fluorescence, and aerosol optical thickness. Data are collected using a number of different instrument packages, such as profilers, buoys, and hand-held instruments, and manufacturers on a variety of platforms, including ships and moorings.", "abbreviation": "SeaBASS", "support-links": [{"url": "https://seabass.gsfc.nasa.gov/", "name": "News", "type": "Blog/News"}, {"url": "https://oceancolor.gsfc.nasa.gov/forum/oceancolor/board_show.pl?bid=6", "name": "OceanColor Forum", "type": "Forum"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/", "name": "Wiki", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://seabass.gsfc.nasa.gov/search", "name": "File & Valisation search", "type": "data access"}, {"url": "https://seabass.gsfc.nasa.gov/search/sst", "name": "SST search", "type": "data access"}, {"url": "https://seabass.gsfc.nasa.gov/archive/", "name": "Browse archive", "type": "data access"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/NOMAD", "name": "NOMAD: NASA bio-Optical Marine Algorithm Dataset", "type": "data access"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/Data_Submission", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://seabass.gsfc.nasa.gov/timeseries/", "name": "Regional Time Series Tool BETA"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/seabass_tools", "name": "SeaBASS Software Tools"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/FCHECK", "name": "FCHECK"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011683", "name": "re3data:r3d100011683", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001542", "bsg-d001542"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Fluorescence"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Salinity", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: SeaWiFS Bio-optical Archive and Storage System", "abbreviation": "SeaBASS", "url": "https://fairsharing.org/10.25504/FAIRsharing.f384c3", "doi": "10.25504/FAIRsharing.f384c3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SeaWiFS Bio-optical Archive and Storage System (SeaBASS) is a publicly shared archive of in situ oceanographic and atmospheric data maintained by the NASA Ocean Biology Processing Group (OBPG). Archived data include measurements of apparent and inherent optical properties, phytoplankton pigment concentrations, and other related oceanographic and atmospheric data, such as water temperature, salinity, stimulated fluorescence, and aerosol optical thickness. Data are collected using a number of different instrument packages, such as profilers, buoys, and hand-held instruments, and manufacturers on a variety of platforms, including ships and moorings.", "publications": [], "licence-links": [{"licence-name": "SeaBASS Data Access Policy and Citation", "licence-id": 740, "link-id": 2281, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3049", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-24T12:51:27.000Z", "updated-at": "2022-02-08T10:41:19.762Z", "metadata": {"doi": "10.25504/FAIRsharing.d9d234", "name": "Atmospheric Science Data Center", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "support-asdc@earthdata.nasa.gov"}], "homepage": "https://asdc.larc.nasa.gov/", "identifier": 3049, "description": "The Atmospheric Science Data Center (ASDC) at NASA Langley Research Center is responsible for processing, archiving, and distribution of NASA Earth science data in the areas of radiation budget, clouds, aerosols, and tropospheric chemistry. The ASDC specializes in atmospheric data important to understanding the causes and processes of global climate change and the consequences of human activities on the climate. The ASDC\u00a0is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "ASDC", "support-links": [{"url": "https://asdc.larc.nasa.gov/frequently-asked-questions", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://forum.earthdata.nasa.gov/", "name": "Forum", "type": "Forum"}, {"url": "https://asdc.larc.nasa.gov/glossary", "name": "Glossary", "type": "Help documentation"}, {"url": "https://asdc.larc.nasa.gov/about", "name": "About", "type": "Help documentation"}, {"url": "https://asdc.larc.nasa.gov/rss", "name": "ASDC RSS", "type": "Blog/News"}], "year-creation": 1991, "data-processes": [{"url": "https://subset.larc.nasa.gov/calipso/login.php", "name": "CALIPSO Search and Subsetting", "type": "data access"}, {"url": "https://subset.larc.nasa.gov/ceres/login.php", "name": "CERES Search and Subsetting", "type": "data access"}, {"url": "https://l0dup05.larc.nasa.gov/MISR/cgi-bin/MISR/main.cgi", "name": "MISR", "type": "data access"}, {"url": "https://subset.larc.nasa.gov/mopitt/", "name": "MOPITT Search and Subsetting", "type": "data access"}, {"url": "https://subset.larc.nasa.gov/tes/login.php", "name": "TES Search and Subsetting", "type": "data access"}, {"url": "https://asdc.larc.nasa.gov/tools-and-services", "name": "Additional Search Tools", "type": "data access"}, {"url": "https://asdc.larc.nasa.gov/data/", "name": "Direct Data Dowload (Login Required)", "type": "data release"}, {"url": "https://search.earthdata.nasa.gov/search?fdc=Atmospheric%20Science%20Data%20Center%20(ASDC)", "name": "Search via Earthdata", "type": "data access"}, {"url": "https://asdc.larc.nasa.gov/browse-projects", "name": "Browse Projects", "type": "data access"}, {"url": "https://asdc.larc.nasa.gov/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010061", "name": "re3data:r3d100010061", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001557", "bsg-d001557"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science"], "domains": ["Climate", "Radiation effects"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Climate change", "Cloud", "institutional repository", "Troposphere"], "countries": ["United States"], "name": "FAIRsharing record for: Atmospheric Science Data Center", "abbreviation": "ASDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.d9d234", "doi": "10.25504/FAIRsharing.d9d234", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atmospheric Science Data Center (ASDC) at NASA Langley Research Center is responsible for processing, archiving, and distribution of NASA Earth science data in the areas of radiation budget, clouds, aerosols, and tropospheric chemistry. The ASDC specializes in atmospheric data important to understanding the causes and processes of global climate change and the consequences of human activities on the climate. The ASDC\u00a0is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "ASDC Citing Policies", "licence-id": 45, "link-id": 2114, "relation": "undefined"}, {"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2115, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2244", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-08T13:16:04.000Z", "updated-at": "2021-11-24T13:14:49.355Z", "metadata": {"doi": "10.25504/FAIRsharing.16v73e", "name": "Autism Brain Imaging Data Exchange", "status": "ready", "contacts": [{"contact-name": "Adriana Di Martino", "contact-email": "dimara01@nyumc.org"}], "homepage": "http://fcon_1000.projects.nitrc.org/indi/abide/", "identifier": 2244, "description": "Autism Brain Imaging Data Exchange (ABIDE) is a resource serving Autism spectrum disorders (ASD) data. The Autism Brain Imaging Data Exchange (ABIDE) provides previously-collected resting state functional magnetic resonance imaging (R-fMRI) datasets for the purpose of data sharing in the broader scientific community. ABIDE is intended to facilitate discovery science and comparisons across samples. In accordance with HIPAA guidelines and 1000 Functional Connectomes Project / INDI protocols, all datasets are anonymous, with no protected health information included. Data is available for download from the ABIDE website and for searching via partner websites.", "abbreviation": "ABIDE", "support-links": [{"url": "mostofsky@kennedykrieger.org", "name": "Contact", "type": "Support email"}, {"url": "http://fcon_1000.projects.nitrc.org/indi/abide/databases.html", "name": "Accessing Data", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://fcon_1000.projects.nitrc.org/indi/req_access.html", "name": "Registration required", "type": "data access"}, {"url": "http://fcon_1000.projects.nitrc.org/indi/abide/databases.html", "name": "LORIS (Data Access and Querying)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000718", "bsg-d000718"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Autistic disorder", "Magnetic resonance imaging", "Imaging", "Functional magnetic resonance imaging", "Disease", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Resting state functional magnetic resonance imaging (R-fMRI)"], "countries": ["Belgium", "United States", "Germany", "Ireland"], "name": "FAIRsharing record for: Autism Brain Imaging Data Exchange", "abbreviation": "ABIDE", "url": "https://fairsharing.org/10.25504/FAIRsharing.16v73e", "doi": "10.25504/FAIRsharing.16v73e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Autism Brain Imaging Data Exchange (ABIDE) is a resource serving Autism spectrum disorders (ASD) data. The Autism Brain Imaging Data Exchange (ABIDE) provides previously-collected resting state functional magnetic resonance imaging (R-fMRI) datasets for the purpose of data sharing in the broader scientific community. ABIDE is intended to facilitate discovery science and comparisons across samples. In accordance with HIPAA guidelines and 1000 Functional Connectomes Project / INDI protocols, all datasets are anonymous, with no protected health information included. Data is available for download from the ABIDE website and for searching via partner websites.", "publications": [{"id": 877, "pubmed_id": 23774715, "title": "The autism brain imaging data exchange: towards a large-scale evaluation of the intrinsic brain architecture in autism.", "year": 2013, "url": "http://doi.org/10.1038/mp.2013.78", "authors": "Di Martino A,Yan CG,Li Q et al.", "journal": "Mol Psychiatry", "doi": "10.1038/mp.2013.78", "created_at": "2021-09-30T08:23:56.822Z", "updated_at": "2021-09-30T08:23:56.822Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 2202, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3060", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-01T08:22:54.000Z", "updated-at": "2021-12-06T10:47:32.440Z", "metadata": {"name": "Crustal Dynamics Data Information System", "status": "ready", "contacts": [{"contact-name": "Patrick Michael", "contact-email": "benjamin.p.michael@nasa.gov"}], "homepage": "https://cddis.nasa.gov/", "citations": [{"publication-id": 2276}], "identifier": 3060, "description": "The Crustal Dynamics Data Information System (CDDIS) is NASA\u2019s data archive and information service supporting the international space geodesy community. The CDDIS was established in 1982 as a dedicated data bank to archive and distribute space geodesy related data sets. Today, the CDDIS archives and distributes mainly Global Navigation Satellite Systems (GNSS, currently Global Positioning System GPS and GLObal NAvigation Satellite System GLONASS), laser ranging (both to artificial satellites, SLR, and lunar, LLR), Very Long Baseline Interferometry (VLBI), and Doppler Orbitography and Radio-positioning Integrated by Satellite (DORIS) data for an ever increasing user community of geophysists. The CDDIS is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "CDDIS", "support-links": [{"url": "https://cddis.nasa.gov/News/Latest_News.html", "name": "News", "type": "Blog/News"}, {"url": "https://cddis.nasa.gov/About/Meetings.html", "name": "Meetings", "type": "Blog/News"}, {"url": "https://cddis.nasa.gov/About/FAQ.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cddis.nasa.gov/About/Acronyms.html", "name": "Acronyms", "type": "Help documentation"}, {"url": "https://cddis.nasa.gov/Publications/Papers.html", "name": "Related papers", "type": "Help documentation"}, {"url": "https://cddis.nasa.gov/Publications/Presentations.html", "name": "Related presentations", "type": "Help documentation"}], "year-creation": 1982, "data-processes": [{"url": "https://cddis.nasa.gov/Data_and_Derived_Products/CddisArchiveExplorer.html", "name": "CDDIS Archive Explorer", "type": "data access"}, {"url": "https://cddis.nasa.gov/Data_and_Derived_Products/CDDIS_Archive_Access.html", "name": "CDDIS Archive Access", "type": "data access"}, {"url": "https://www.data.gov/", "name": "Search in data.gov", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010501", "name": "re3data:r3d100010501", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001568", "bsg-d001568"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Geodesy", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Data"], "countries": ["United States"], "name": "FAIRsharing record for: Crustal Dynamics Data Information System", "abbreviation": "CDDIS", "url": "https://fairsharing.org/fairsharing_records/3060", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Crustal Dynamics Data Information System (CDDIS) is NASA\u2019s data archive and information service supporting the international space geodesy community. The CDDIS was established in 1982 as a dedicated data bank to archive and distribute space geodesy related data sets. Today, the CDDIS archives and distributes mainly Global Navigation Satellite Systems (GNSS, currently Global Positioning System GPS and GLObal NAvigation Satellite System GLONASS), laser ranging (both to artificial satellites, SLR, and lunar, LLR), Very Long Baseline Interferometry (VLBI), and Doppler Orbitography and Radio-positioning Integrated by Satellite (DORIS) data for an ever increasing user community of geophysists. The CDDIS is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [{"id": 2276, "pubmed_id": null, "title": "The Crustal Dynamics Data Information System: A resource to support scientific analysis using space geodesy", "year": 2010, "url": "https://doi.org/10.1016/j.asr.2010.01.018", "authors": "C. Noll", "journal": "Advances in Space Research", "doi": null, "created_at": "2021-09-30T08:26:37.227Z", "updated_at": "2021-09-30T08:26:37.227Z"}], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2094, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3086", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-24T09:15:53.000Z", "updated-at": "2022-02-08T10:41:51.093Z", "metadata": {"doi": "10.25504/FAIRsharing.809b50", "name": "Quinte West Open GIS Data Portal", "status": "ready", "contacts": [{"contact-name": "Steve Whitehead", "contact-email": "stevew@quintewest.ca"}], "homepage": "http://geodata-quintewest.opendata.arcgis.com/", "identifier": 3086, "description": "Quinte West Open GIS Data Portal is the Quinte West City's public platform for exploring and downloading open Geographic Information Systems (GIS) data.", "abbreviation": null, "data-processes": [{"url": "http://geodata-quintewest.opendata.arcgis.com/search?collection=Dataset", "name": "Browse & Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013023", "name": "re3data:r3d100013023", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001594", "bsg-d001594"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Urban Planning", "Earth Science"], "domains": ["Hospital"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Map", "Road", "School"], "countries": ["Canada"], "name": "FAIRsharing record for: Quinte West Open GIS Data Portal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.809b50", "doi": "10.25504/FAIRsharing.809b50", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Quinte West Open GIS Data Portal is the Quinte West City's public platform for exploring and downloading open Geographic Information Systems (GIS) data.", "publications": [], "licence-links": [{"licence-name": "City of Quinte West Disclaimer, Website Policies and Terms of Use", "licence-id": 132, "link-id": 568, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2589", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T11:01:59.000Z", "updated-at": "2021-12-06T10:48:30.048Z", "metadata": {"doi": "10.25504/FAIRsharing.ejofJI", "name": "Cassavabase", "status": "ready", "contacts": [{"contact-name": "Guillaume Bauchet", "contact-email": "gjb99@cornell.edu"}], "homepage": "https://cassavabase.org", "identifier": 2589, "description": "Cassavabase is a database containing breeding data for Cassava (Manihot esculenta). Cassava is a major staple crop and the main source of calories for 500 million people across the globe. No other continent depends on cassava to feed as many people as does Africa. Cassava is indispensable to food security in Africa. It is a widely preferred and consumed staple, as well as a hardy crop that can be stored in the ground as a fall-back source of food that can save lives in times of famine. Despite the importance of cassava for food security on the African continent, it has received relatively little research and development attention compared to other staples such as wheat, rice and maize. The key to unlocking the full potential of cassava lies largely in bringing cassava breeding into the 21st century.", "abbreviation": "Cassavabase", "support-links": [{"url": "https://www.facebook.com/cassavabase/", "name": "Facebook", "type": "Facebook"}, {"url": "https://cassavabase.org/contact/form", "name": "Cassavabase Contact Form", "type": "Contact form"}, {"url": "https://cassavabase.org/help/faq.pl", "name": "Cassavabase FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cassavabase.org/forum/topics.pl", "name": "Cassavabase Forum", "type": "Forum"}, {"url": "https://docs.google.com/document/d/1ZJjxsarGqGTv4HgJTt-EodOoaEmJ3lgSeV0Qq_YKJaY/edit", "name": "User Manual", "type": "Help documentation"}, {"url": "https://github.com/solgenomics/cassava", "name": "GitHub", "type": "Github"}, {"url": "https://fr.slideshare.net/solgenomics/1-introduction-to-cassavabase-57894179", "name": "SlideShare introduction to cassavabase", "type": "Help documentation"}, {"url": "https://fr.slideshare.net/solgenomics/cassavabase-general-presentation-pag-2016", "name": "SlideShare Cassavabase general presentation PAG 2016", "type": "Help documentation"}, {"url": "https://twitter.com/solgenomics", "name": "@solgenomics", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://cassavabase.org/breeders/search", "name": "Search Wizard", "type": "data access"}, {"url": "ftp://ftp.cassavabase.org/", "name": "FTP Download", "type": "data access"}, {"url": "https://cassavabase.org/search/images", "name": "Search Images", "type": "data access"}, {"url": "https://cassavabase.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://cassavabase.org/search/traits", "name": "Search Traits", "type": "data access"}, {"url": "https://cassavabase.org/search/cross", "name": "Search Progenies and Crosses", "type": "data access"}, {"url": "https://cassavabase.org/search/trials", "name": "Search Trials", "type": "data access"}, {"url": "https://cassavabase.org/search/stocks", "name": "Search Accessions and Plots", "type": "data access"}, {"url": "https://cassavabase.org/solgs/search", "name": "Genomic Selection", "type": "data access"}, {"url": "https://cassavabase.org/accession_usage", "name": "Browse", "type": "data access"}, {"url": "https://cassavabase.org/help/faq.pl", "name": "Submit", "type": "data access"}, {"url": "https://cassavabase.org/user/new", "name": "Register", "type": "data access"}], "associated-tools": [{"url": "https://cassavabase.org/pca/analysis", "name": "Population Structure Analysis"}, {"url": "https://cassavabase.org/jbrowse_cassavabase/?data=data/json/hapmap_variants", "name": "JBrowse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013440", "name": "re3data:r3d100013440", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001072", "bsg-d001072"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Plant Breeding", "Genomics", "Agriculture", "Life Science"], "domains": [], "taxonomies": ["Manihot esculenta"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cassavabase", "abbreviation": "Cassavabase", "url": "https://fairsharing.org/10.25504/FAIRsharing.ejofJI", "doi": "10.25504/FAIRsharing.ejofJI", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Cassavabase is a database containing breeding data for Cassava (Manihot esculenta). Cassava is a major staple crop and the main source of calories for 500 million people across the globe. No other continent depends on cassava to feed as many people as does Africa. Cassava is indispensable to food security in Africa. It is a widely preferred and consumed staple, as well as a hardy crop that can be stored in the ground as a fall-back source of food that can save lives in times of famine. Despite the importance of cassava for food security on the African continent, it has received relatively little research and development attention compared to other staples such as wheat, rice and maize. The key to unlocking the full potential of cassava lies largely in bringing cassava breeding into the 21st century.", "publications": [{"id": 1263, "pubmed_id": 25428362, "title": "The Sol Genomics Network (SGN)--from genotype to phenotype to breeding.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1195", "authors": "Fernandez-Pozo N,Menda N,Edwards JD,Saha S,Tecle IY,Strickler SR,Bombarely A,Fisher-York T,Pujar A,Foerster H,Yan A,Mueller LA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1195", "created_at": "2021-09-30T08:24:40.915Z", "updated_at": "2021-09-30T11:29:04.434Z"}], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 1620, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3093", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-28T10:07:05.000Z", "updated-at": "2022-02-08T10:41:55.043Z", "metadata": {"doi": "10.25504/FAIRsharing.f778c3", "name": "Open Government Data Platform India", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ndsap@gov.in"}], "homepage": "https://data.gov.in/", "identifier": 3093, "description": "The Open Government Data Platform India (OGD) is intended to be used as catalog of datasets published by ministries/ department/ organizations of Government of India for public use, in order to enhance transparency in the functioning of the Government as well as to make innovative visualization of dataset. This National Data Portal is being updated frequently to make it as accessible as possible and completely accessible to all irrespective of physical challenges or technology.", "abbreviation": "OGD", "access-points": [{"url": "https://data.gov.in/ogpl_apis", "type": "Other"}], "support-links": [{"url": "https://data.gov.in/newsletters", "name": "Newsletter", "type": "Blog/News"}, {"url": "https://community.data.gov.in/all-blogs/", "type": "Blog/News"}, {"url": "https://data.gov.in/connect-with-us", "name": "Give your feedback", "type": "Contact form"}, {"url": "https://data.gov.in/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://data.gov.in/help", "type": "Help documentation"}, {"url": "https://data.gov.in/sites/default/files/NDSAP_Implementation_Guidelines_2.2.pdf", "name": "Implementation Guidelines for National Data Sharing and Accessibility Policy (NDSAP)", "type": "Help documentation"}, {"url": "http://vocab.nic.in/index.php", "name": "Controlled Vocabulary Services", "type": "Help documentation"}, {"url": "https://data.gov.in/rss.xml", "type": "Blog/News"}], "year-creation": 2012, "data-processes": [{"url": "https://data.gov.in/catalog/udyog-aadhaar-memorandum-msme-registration?filters%5Bfield_catalog_reference%5D=6652032&format=json&offset=0&limit=6&sort%5Bcreated%5D=desc", "name": "Browse & Filter", "type": "data access"}, {"url": "https://data.gov.in/Suggest_Dataset", "name": "Suggest a dataset", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010956", "name": "re3data:r3d100010956", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001601", "bsg-d001601"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Forest Management", "Demographics", "Culture", "Energy Engineering", "Humanities and Social Science", "Urban Planning", "Telecommunication Engineering", "Global Health", "Art", "Biotechnology", "Agriculture", "Life Science", "Water Management"], "domains": ["Transport"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Commerce", "Education", "Employment", "institutional repository", "judiciary", "Sanitation", "tourism"], "countries": ["India"], "name": "FAIRsharing record for: Open Government Data Platform India", "abbreviation": "OGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.f778c3", "doi": "10.25504/FAIRsharing.f778c3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Government Data Platform India (OGD) is intended to be used as catalog of datasets published by ministries/ department/ organizations of Government of India for public use, in order to enhance transparency in the functioning of the Government as well as to make innovative visualization of dataset. This National Data Portal is being updated frequently to make it as accessible as possible and completely accessible to all irrespective of physical challenges or technology.", "publications": [], "licence-links": [{"licence-name": "OGD Policies", "licence-id": 613, "link-id": 349, "relation": "undefined"}, {"licence-name": "OGD Terms of Use", "licence-id": 614, "link-id": 465, "relation": "undefined"}, {"licence-name": "India National Data Sharing and Accessibility Policy Government of India", "licence-id": 435, "link-id": 466, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3105", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-07T10:05:21.000Z", "updated-at": "2022-02-08T10:42:00.216Z", "metadata": {"doi": "10.25504/FAIRsharing.c7bf1b", "name": "Reanalysis Tropopause Data Repository", "status": "ready", "contacts": [{"contact-name": "Lars Hoffmann", "contact-email": "l.hoffmann@fz-juelich.de"}], "homepage": "https://datapub.fz-juelich.de/slcs/tropopause/", "identifier": 3105, "description": "The Reanalysis Tropopause Data Repository provides access to tropopause parameters estimated from meteorological reanalyses. The tropopause data sets provided on the web site have been created using meteorological reanalyses distributed by the European Centre for Medium-Range Weather Forecasts (ECMWF), the National Aeronautics and Space Administration (NASA), the National Center for Atmospheric Research (NCAR), and the National Centers for Atmospheric Prediction (NCEP).", "abbreviation": null, "data-processes": [{"url": "https://datapub.fz-juelich.de/slcs/tropopause/html/cal_2009.html", "name": "Browse images", "type": "data access"}, {"url": "https://datapub.fz-juelich.de/slcs/tropopause/data/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013201", "name": "re3data:r3d100013201", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001613", "bsg-d001613"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Pressure", "Temperature", "Tropopause", "Water vapor"], "countries": ["Germany"], "name": "FAIRsharing record for: Reanalysis Tropopause Data Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.c7bf1b", "doi": "10.25504/FAIRsharing.c7bf1b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Reanalysis Tropopause Data Repository provides access to tropopause parameters estimated from meteorological reanalyses. The tropopause data sets provided on the web site have been created using meteorological reanalyses distributed by the European Centre for Medium-Range Weather Forecasts (ECMWF), the National Aeronautics and Space Administration (NASA), the National Center for Atmospheric Research (NCAR), and the National Centers for Atmospheric Prediction (NCEP).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 981, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3126", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-15T11:17:41.000Z", "updated-at": "2022-02-08T10:42:26.511Z", "metadata": {"doi": "10.25504/FAIRsharing.de9d18", "name": "Scripps Institute of Oceanography Explorer", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "gdc@ucsd.edu"}], "homepage": "http://siox.sdsc.edu/", "identifier": 3126, "description": "Scripps Institute of Oceanography (SIO) Explorer is a web portal to the discoveries of the Scripps Institution of Oceanography. Data, images and documents from 822 SIO cruises are being placed online, integrated with a growing seamount catalog, global databases, and historic archives. More than just a web site or online archive, SIOExplorer is a fully-searchable collection in the NSF-sponsored National Science Digital Library.", "abbreviation": "SIOExplorer", "support-links": [{"url": "http://siox.sdsc.edu/tech.php", "type": "Help documentation"}, {"url": "http://siox.sdsc.edu/collections.php", "name": "Collections", "type": "Help documentation"}, {"url": "http://siox.sdsc.edu/outreach.php", "name": "Outreach", "type": "Help documentation"}, {"url": "http://siox.sdsc.edu/dl.php", "name": "Digital Library Infrastructure", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://siox.sdsc.edu/search.php", "name": "Search and browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010843", "name": "re3data:r3d100010843", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001636", "bsg-d001636"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geophysics", "Earth Science", "Oceanography", "Digital Image Processing"], "domains": ["Image", "Biological sample", "Digital curation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Scripps Institute of Oceanography Explorer", "abbreviation": "SIOExplorer", "url": "https://fairsharing.org/10.25504/FAIRsharing.de9d18", "doi": "10.25504/FAIRsharing.de9d18", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scripps Institute of Oceanography (SIO) Explorer is a web portal to the discoveries of the Scripps Institution of Oceanography. Data, images and documents from 822 SIO cruises are being placed online, integrated with a growing seamount catalog, global databases, and historic archives. More than just a web site or online archive, SIOExplorer is a fully-searchable collection in the NSF-sponsored National Science Digital Library.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3136", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-18T10:55:08.000Z", "updated-at": "2022-02-08T10:42:29.931Z", "metadata": {"doi": "10.25504/FAIRsharing.b688ad", "name": "Data Basin", "status": "ready", "contacts": [{"contact-name": "James R. Strittholt", "contact-email": "stritt@consbio.org"}], "homepage": "https://databasin.org/", "identifier": 3136, "description": "Data Basin is a science-based mapping and analysis platform that supports learning, research, and sustainable environmental stewardship.", "abbreviation": "Data Basin", "support-links": [{"url": "https://databasin.org/services/contact", "type": "Contact form"}, {"url": "https://databasin.org/help", "type": "Help documentation"}, {"url": "https://databasin.org/services/services", "name": "Data Basin Support Services", "type": "Help documentation"}], "data-processes": [{"url": "https://databasin.org/datasets/", "name": "Browse & search datasets", "type": "data access"}, {"url": "https://databasin.org/galleries/", "name": "Browse & search galleries", "type": "data access"}, {"url": "https://databasin.org/maps/", "name": "Browse & search maps", "type": "data access"}, {"url": "https://databasin.org/maps/new", "name": "Create a map", "type": "data curation"}, {"url": "https://databasin.org/auth/create_account", "name": "Create an account", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000043", "name": "re3data:r3d100000043", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001647", "bsg-d001647"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geography", "Earth Science", "Water Management", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "fire", "precipitation", "Temperature", "Topography", "Topology"], "countries": ["United States"], "name": "FAIRsharing record for: Data Basin", "abbreviation": "Data Basin", "url": "https://fairsharing.org/10.25504/FAIRsharing.b688ad", "doi": "10.25504/FAIRsharing.b688ad", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data Basin is a science-based mapping and analysis platform that supports learning, research, and sustainable environmental stewardship.", "publications": [], "licence-links": [{"licence-name": "Data Basin Terms of Use", "licence-id": 217, "link-id": 1880, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1881, "relation": "undefined"}, {"licence-name": "CBI Terms and Conditions", "licence-id": 106, "link-id": 1882, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3089", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-27T13:38:00.000Z", "updated-at": "2021-12-06T10:47:34.006Z", "metadata": {"name": "IOW Data Portal", "status": "ready", "contacts": [{"contact-name": "Secretariat IOW Management", "contact-email": "nancy.thielbeer@io-warnemuende.de"}], "homepage": "https://www.io-warnemuende.de/data-portal.html", "identifier": 3089, "description": "The IOW Data Portal was designed for the particular requirements of the Leibniz Institute for Baltic Sea Research (IOW). It is aimed at the management of historical and recent measurement of the IOW (to some extend of other data, too) and to provide them in a user-friendly way via the research tool ODIN (Oceanographic Database research with Interactive Navigation).", "abbreviation": "IOW Data Portal", "support-links": [{"url": "https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf", "name": "IOW's Data Policy", "type": "Help documentation"}, {"url": "http://doi.io-warnemuende.de/", "name": "Available Publications", "type": "Help documentation"}], "data-processes": [{"url": "http://bio-50.io-warnemuende.de/iowbsa/", "name": "Access map data", "type": "data access"}, {"url": "https://www.io-warnemuende.de/data-portal.html", "name": "Search IOW metadata catalogue", "type": "data access"}, {"url": "https://iowmeta.io-warnemuende.de/geonetwork/srv/eng/catalog.search#/home", "name": "Search over data sets, services and maps", "type": "data access"}, {"url": "https://thredds-iow.io-warnemuende.de/thredds/catalog.html", "name": "FTP access", "type": "data access"}], "associated-tools": [{"url": "https://odin2.io-warnemuende.de/", "name": "ODIN 2 v2"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012937", "name": "re3data:r3d100012937", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001597", "bsg-d001597"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Geography", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Biota", "Oxygen", "Salinity", "Temperature"], "countries": ["Germany"], "name": "FAIRsharing record for: IOW Data Portal", "abbreviation": "IOW Data Portal", "url": "https://fairsharing.org/fairsharing_records/3089", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IOW Data Portal was designed for the particular requirements of the Leibniz Institute for Baltic Sea Research (IOW). It is aimed at the management of historical and recent measurement of the IOW (to some extend of other data, too) and to provide them in a user-friendly way via the research tool ODIN (Oceanographic Database research with Interactive Navigation).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2158, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1711", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:48.439Z", "metadata": {"doi": "10.25504/FAIRsharing.kkdpxe", "name": "MetaboLights", "status": "ready", "contacts": [{"contact-name": "Claire O'Donovan", "contact-email": "odonovan@ebi.ac.uk", "contact-orcid": "0000-0001-8051-7429"}], "homepage": "https://www.ebi.ac.uk/metabolights/", "citations": [{"doi": "10.1093/nar/gkz1019", "pubmed-id": 31691833, "publication-id": 2771}], "identifier": 1711, "description": "MetaboLights is a database for metabolomics studies, their raw experimental data and associated metadata. The database is cross-species and cross-technique and it covers metabolite structures and their reference spectra as well as their biological roles and locations. MetaboLights is the recommended metabolomics repository for a number of leading journals and ELIXIR, the European infrastructure for life science information.", "abbreviation": "MTBLS", "support-links": [{"url": "https://www.ebi.ac.uk/metabolights/contact", "name": "Feedback", "type": "Contact form"}, {"url": "metabolights-help@ebi.ac.uk", "name": "MetaboLights helpdesk", "type": "Support email"}, {"url": "http://www.ebi.ac.uk/metabolights/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/metabolights-quick-tour", "name": "MetaboLights: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/training/online/topic/metabolomics", "name": "Training", "type": "Training documentation"}, {"url": "https://twitter.com/MetaboLights", "name": "@MetaboLights", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://www.ebi.ac.uk/metabolights/studies", "name": "Browse studies", "type": "data access"}, {"url": "http://www.metabolomexchange.org/site/#/search/mtbls", "name": "Continuous release (metadata sharing)", "type": "data release"}, {"url": "https://www.omicsdi.org/search?q=(*:*%20AND%20(repository:%20(%22MetaboLights%22)))", "name": "Continuous release (metadata sharing)", "type": "data release"}, {"name": "internal versioning for curation", "type": "data versioning"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/metabolights/studies/public/", "name": "Download (FTP)", "type": "data release"}, {"url": "https://www.ebi.ac.uk/metabolights/download", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/metabolights/compounds", "name": "Browse compounds", "type": "data access"}, {"url": "https://www.ebi.ac.uk/metabolights/species", "name": "Browse species", "type": "data access"}, {"url": "https://www.ebi.ac.uk/metabolights/presubmit", "name": "Submit Study", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/metabolights/advancedsearch", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "ftp://ftp.ebi.ac.uk/pub/databases/metabolights/submissionTool/ISAcreatorMetaboLights.zip", "name": "ISAcreator-MetaboLights Bundle 1.7"}, {"url": "http://phenomenal-h2020.eu/home/", "name": "PhenoMeNal"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011556", "name": "re3data:r3d100011556", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014663", "name": "SciCrunch:RRID:SCR_014663", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000168", "bsg-d000168"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology", "Metabolomics"], "domains": ["Chemical formula", "Mass spectrum", "Chemical structure", "Biological sample annotation", "Computational biological predictions", "Validation", "Lipid", "Metabolite", "Nuclear Magnetic Resonance (NMR) spectroscopy", "Publication", "Biological sample", "Assay", "Protocol", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": ["Fluxomics"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: MetaboLights", "abbreviation": "MTBLS", "url": "https://fairsharing.org/10.25504/FAIRsharing.kkdpxe", "doi": "10.25504/FAIRsharing.kkdpxe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaboLights is a database for metabolomics studies, their raw experimental data and associated metadata. The database is cross-species and cross-technique and it covers metabolite structures and their reference spectra as well as their biological roles and locations. MetaboLights is the recommended metabolomics repository for a number of leading journals and ELIXIR, the European infrastructure for life science information.", "publications": [{"id": 509, "pubmed_id": 27010336, "title": "MetaboLights: An Open-Access Database Repository for Metabolomics Data.", "year": 2016, "url": "http://doi.org/10.1002/0471250953.bi1413s53", "authors": "Kale NS,Haug K,Conesa P,Jayseelan K,Moreno P,Rocca-Serra P,Nainala VC,Spicer RA,Williams M,Li X,Salek RM,Griffin JL,Steinbeck C", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi1413s53", "created_at": "2021-09-30T08:23:15.559Z", "updated_at": "2021-09-30T08:23:15.559Z"}, {"id": 652, "pubmed_id": null, "title": "Dissemination of metabolomics results: role of MetaboLights and COSMOS.", "year": 2013, "url": "http://doi.org/10.1186/2047-217X-2-8", "authors": "Salek RM, Haug K, Steinbeck C", "journal": "GigaScience", "doi": "10.1186/2047-217X-2-8", "created_at": "2021-09-30T08:23:31.935Z", "updated_at": "2021-09-30T08:23:31.935Z"}, {"id": 1973, "pubmed_id": 23109552, "title": "MetaboLights--an open-access general-purpose repository for metabolomics studies and associated meta-data.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1004", "authors": "Haug K, Salek RM, Conesa P, Hastings J, de Matos P, Rijnbeek M, Mahendraker T, Williams M, Neumann S, Rocca-Serra P, Maguire E, Gonz\u00e1lez-Beltr\u00e1n A, Sansone SA, Griffin JL, Steinbeck C.", "journal": "Nucleic Acid Research", "doi": "10.1093/nar/gks1004", "created_at": "2021-09-30T08:26:02.024Z", "updated_at": "2021-09-30T08:26:02.024Z"}, {"id": 2186, "pubmed_id": null, "title": "MetaboLights: towards a new COSMOS of metabolomics data management.", "year": 2013, "url": "http://doi.org/10.1007/s11306-012-0462-0", "authors": "Steinbeck C, Conesa P, Haug K, Mahendraker T, Williams M, Maguire E, Rocca-Serra P, Sansone SA, Salek RM, Griffin JL.", "journal": "Metabolomics", "doi": "10.1007/s11306-012-0462-0", "created_at": "2021-09-30T08:26:26.460Z", "updated_at": "2021-09-30T08:26:26.460Z"}, {"id": 2313, "pubmed_id": null, "title": "The MetaboLights repository: curation challenges in metabolomics", "year": 2013, "url": "http://doi.org/10.1093/database/bat029", "authors": "Reza M. Salek, Kenneth Haug, Pablo Conesa, Janna Hastings, Mark Williams, Tejasvi Mahendraker, Eamonn Maguire, Alejandra N. Gonz\u00e1lez-Beltr\u00e1n, Philippe Rocca-Serra, Susanna-Assunta Sansone and Christoph Steinbeck", "journal": "Database: The Journal of Biological Databases and Curation", "doi": "10.1093/database/bat029", "created_at": "2021-09-30T08:26:43.777Z", "updated_at": "2021-09-30T08:26:43.777Z"}, {"id": 2315, "pubmed_id": 28830114, "title": "Automated assembly of species metabolomes through data submission into a public repository.", "year": 2017, "url": "http://doi.org/10.1093/gigascience/gix062", "authors": "Salek RM,Conesa P,Cochrane K,Haug K,Williams M,Kale N,Moreno P,Jayaseelan KV,Macias JR,Nainala VC,Hall RD,Reed LK,Viant MR,O'Donovan C,Steinbeck C", "journal": "Gigascience", "doi": "10.1093/gigascience/gix062", "created_at": "2021-09-30T08:26:44.041Z", "updated_at": "2021-09-30T08:26:44.041Z"}, {"id": 2771, "pubmed_id": 31691833, "title": "MetaboLights: a resource evolving in response to the needs of its scientific community.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1019", "authors": "Haug K,Cochrane K,Nainala VC,Williams M,Chang J,Jayaseelan KV,O'Donovan C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1019", "created_at": "2021-09-30T08:27:40.603Z", "updated_at": "2021-09-30T11:29:43.678Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1688, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1689, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3336", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-04T11:11:06.000Z", "updated-at": "2022-02-08T10:42:55.279Z", "metadata": {"doi": "10.25504/FAIRsharing.f9a62c", "name": "WOVOdat", "status": "ready", "contacts": [{"contact-name": "Fidel Costa", "contact-email": "fcosta@ntu.edu.sg", "contact-orcid": "0000-0002-1409-5325"}], "homepage": "https://www.wovodat.org/", "identifier": 3336, "description": "WOVOdat is a comprehensive global database on volcanic unrest aimed at understanding pre-eruptive processes and improving eruption forecasts. WOVOdat is brought to you by WOVO (World Organization of Volcano Observatories) and presently hosted at the Earth Observatory of Singapore.", "abbreviation": "WOVOdat", "support-links": [{"url": "https://www.facebook.com/WOVOdat/", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.wovodat.org/populate/contact_us_form.php", "type": "Contact form"}, {"url": "https://www.wovodat.org/doc/index.php", "name": "WOVOdat Documentation", "type": "Help documentation"}, {"url": "https://wovodat.org/about/manual_gvmid.php", "name": "Tutorial - Visualization video", "type": "Help documentation"}, {"url": "https://www.wovodat.org/about/statistic.php", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/GVMID2", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://www.wovodat.org/populate/convertie/Volcano_zone/main.php?data_type=zone_index", "name": "Search by Volcano", "type": "data access"}, {"url": "https://wovodat.org/populate/login_required.php", "name": "Submit data", "type": "data curation"}, {"url": "https://wovodat.org/gvmid/index.php?type=single&vd_num=263250", "name": "Visualize", "type": "data access"}], "associated-tools": [{"url": "https://dome.wovodat.org/", "name": "Correlations analysis"}, {"url": "https://www.wovodat.org/boolean/booleanIndex.php", "name": "WOVOdat Boolean Search Form"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013649", "name": "re3data:r3d100013649", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001855", "bsg-d001855"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science"], "domains": ["Observation design"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Forecasting", "Volcano"], "countries": ["Singapore"], "name": "FAIRsharing record for: WOVOdat", "abbreviation": "WOVOdat", "url": "https://fairsharing.org/10.25504/FAIRsharing.f9a62c", "doi": "10.25504/FAIRsharing.f9a62c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WOVOdat is a comprehensive global database on volcanic unrest aimed at understanding pre-eruptive processes and improving eruption forecasts. WOVOdat is brought to you by WOVO (World Organization of Volcano Observatories) and presently hosted at the Earth Observatory of Singapore.", "publications": [], "licence-links": [{"licence-name": "WOVOdat Data Policy", "licence-id": 870, "link-id": 860, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2472", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-04T08:45:20.000Z", "updated-at": "2021-11-24T13:16:30.288Z", "metadata": {"doi": "10.25504/FAIRsharing.gncawv", "name": "Portugal IPT - GBIF Portugal", "status": "ready", "contacts": [{"contact-name": "GBIF Portugal", "contact-email": "node@gbif.pt"}], "homepage": "http://ipt.gbif.pt/ipt/", "identifier": 2472, "description": "GBIF Portugal promotes the free and open sharing of primary biodiversity data and enriches knowledge of Portuguese and World biodiversity. It promotes the integration of Portuguese data publishers and resources of biodiversity information on the GBIF network, and the availability of biodiversity data for the scientific research and societal needs.", "support-links": [{"url": "node@gbif.pt", "name": "Rui Figueira", "type": "Support email"}], "year-creation": 2013, "associated-tools": [{"url": "https://www.gbif.org/ipt", "name": "GBIF Integrated Publishing Toolkit (IPT) 2.3"}]}, "legacy-ids": ["biodbcore-000954", "bsg-d000954"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: Portugal IPT - GBIF Portugal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.gncawv", "doi": "10.25504/FAIRsharing.gncawv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF Portugal promotes the free and open sharing of primary biodiversity data and enriches knowledge of Portuguese and World biodiversity. It promotes the integration of Portuguese data publishers and resources of biodiversity information on the GBIF network, and the availability of biodiversity data for the scientific research and societal needs.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 367, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 368, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 375, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 378, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1836", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.522Z", "metadata": {"doi": "10.25504/FAIRsharing.xhpc3h", "name": "Insertion Sequence Finder", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "webadmin@ibcg.biotoul.fr"}], "homepage": "http://www-is.biotoul.fr", "identifier": 1836, "description": "This database provides a list of insertion sequences (IS) isolated from bacteria and archae. It is organized into individual files containing their general features (name, size, origin, family.....) as well as their DNA and potential protein sequences. Some of the entries have been identified as individual elements by their insertion activities but a growing number are included from their description in sequenced bacterial genomes. It also includes certain transposons, in particular, members of the Tn3 family of replicative transposons.", "abbreviation": "IS Finder", "support-links": [{"url": "https://www-isfinder.biotoul.fr/feedback.php", "type": "Contact form"}, {"url": "https://www-isfinder.biotoul.fr/general_information.php", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://www-isfinder.biotoul.fr/search.php", "name": "search", "type": "data access"}, {"url": "https://www-isfinder.biotoul.fr/submission.php", "name": "submit", "type": "data access"}], "associated-tools": [{"url": "https://www-isfinder.biotoul.fr/blast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000296", "bsg-d000296"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "Sequence", "Transposable element", "Gene", "Insertion sequence"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Insertion Sequence Finder", "abbreviation": "IS Finder", "url": "https://fairsharing.org/10.25504/FAIRsharing.xhpc3h", "doi": "10.25504/FAIRsharing.xhpc3h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database provides a list of insertion sequences (IS) isolated from bacteria and archae. It is organized into individual files containing their general features (name, size, origin, family.....) as well as their DNA and potential protein sequences. Some of the entries have been identified as individual elements by their insertion activities but a growing number are included from their description in sequenced bacterial genomes. It also includes certain transposons, in particular, members of the Tn3 family of replicative transposons.", "publications": [{"id": 1162, "pubmed_id": 16381877, "title": "ISfinder: the reference centre for bacterial insertion sequences", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj014", "authors": "Siguier P,Perochon J,Lestrade L,Mahillon J,Chandler M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj014", "created_at": "2021-09-30T08:24:29.205Z", "updated_at": "2021-09-30T11:29:01.344Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3576", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-12T02:21:22.892Z", "updated-at": "2022-02-08T10:45:45.878Z", "metadata": {"doi": "10.25504/FAIRsharing.58a42b", "name": "depositar", "status": "ready", "contacts": [{"contact-name": "depositar", "contact-email": "data.contact@depositar.io", "contact-orcid": null}], "homepage": "https://data.depositar.io/", "citations": [], "identifier": 3576, "description": "depositar \u2014 taking the term from the Portuguese/Spanish verb for to deposit \u2014 is an online repository for research data. The site is built by the researchers for the researchers. You are free to deposit, discover, and reuse datasets on depositar for all your research purposes.", "abbreviation": null, "access-points": [{"url": "https://data.depositar.io/api/3/action/", "name": "API", "type": "Other", "example-url": "https://data.depositar.io/api/3/action/status_show", "documentation-url": "https://docs.ckan.org/en/2.7/api/"}], "data-curation": {"type": "manual"}, "support-links": [{"url": "https://docs.depositar.io/en/stable/user-guide.html", "name": "User Guide", "type": "Help documentation"}, {"url": "https://github.com/depositar/", "type": "Github"}, {"url": "https://twitter.com/_depositar/", "type": "Twitter"}, {"url": "https://docs.depositar.io/en/stable/maintaining/index.html", "name": "Maintainer\u2019s Guide", "type": "Help documentation"}, {"url": "https://data.depositar.io/en/help", "name": "Help Pages", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://data.depositar.io/en/dataset", "name": "Search and Browse", "type": "data access"}, {"url": "https://data.depositar.io/en/group", "name": "Browse by Topic", "type": "data access"}, {"url": "https://data.depositar.io/en/organization", "name": "Browse by Projects", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013208", "name": "re3data:r3d100013208", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"url": "https://data.depositar.io/en/terms_of_use", "type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://data.depositar.io/en/terms_of_use", "type": "open"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["data sharing", "Open Science", "Researcher data"], "countries": ["Taiwan"], "name": "FAIRsharing record for: depositar", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.58a42b", "doi": "10.25504/FAIRsharing.58a42b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: depositar \u2014 taking the term from the Portuguese/Spanish verb for to deposit \u2014 is an online repository for research data. The site is built by the researchers for the researchers. You are free to deposit, discover, and reuse datasets on depositar for all your research purposes.", "publications": [], "licence-links": [{"licence-name": "Creative Commons (CC) Public Domain Mark (PDM)", "licence-id": 198, "link-id": 2463, "relation": "undefined"}, {"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 2464, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2465, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2466, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2467, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2468, "relation": "undefined"}, {"licence-name": "GNU Free Documentation License", "licence-id": 353, "link-id": 2469, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3329", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-04T11:08:26.000Z", "updated-at": "2022-02-08T10:46:15.936Z", "metadata": {"doi": "10.25504/FAIRsharing.e28856", "name": "JACQ - Virtual herbaria", "status": "ready", "contacts": [{"contact-name": "Heimo Rainer", "contact-email": "info@jacq.org", "contact-orcid": "0000-0002-5963-349X"}], "homepage": "https://www.jacq.org", "citations": [], "identifier": 3329, "description": "JACQ is the jointly administered herbarium management system and specimen database for a large number of herbaria from around the world. ", "abbreviation": "JACQ", "support-links": [{"url": "http://sweetgum.nybg.org/science/ih/ ", "name": "Abbreviations follow the Index Herbariorum hosted by the New York Botanical Garden", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://www.jacq.org/#database", "name": "Search", "type": "data access"}, {"url": "https://www.jacq.org/#collections", "name": "Participating Collections (Map Interface)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013564", "name": "re3data:r3d100013564", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001848", "bsg-d001848"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany"], "domains": ["Biological sample"], "taxonomies": ["Algae", "Bryophyta", "Fungi", "Lichens", "Plantae", "Pteridophyta"], "user-defined-tags": [], "countries": ["Austria", "Germany"], "name": "FAIRsharing record for: JACQ - Virtual herbaria", "abbreviation": "JACQ", "url": "https://fairsharing.org/10.25504/FAIRsharing.e28856", "doi": "10.25504/FAIRsharing.e28856", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: JACQ is the jointly administered herbarium management system and specimen database for a large number of herbaria from around the world. ", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1334, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1335, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2560", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T11:38:17.000Z", "updated-at": "2021-12-06T10:48:24.306Z", "metadata": {"doi": "10.25504/FAIRsharing.denvnv", "name": "DataverseNL", "status": "ready", "contacts": [{"contact-name": "DataverseNL Helpdesk", "contact-email": "info@dataverse.nl"}], "homepage": "https://dataverse.nl/", "identifier": 2560, "description": "DataverseNL provides online storage, sharing and registration of research data, during the research period and after its completion. DataverseNL is a shared service provided by participating institutions and DANS. DataverseNL uses the Dataverse software developed by Harvard University, which is used worldwide.", "abbreviation": "DataverseNL", "support-links": [{"url": "https://dans.knaw.nl/en/about/services/DataverseNL/support", "name": "Support Email Addresses", "type": "Contact form"}, {"url": "https://dans.knaw.nl/en/about/services/DataverseNL/dataversenl-faq?set_language=en", "name": "DataverseNL FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://dans.knaw.nl/en/about/organisation-and-policy/information-material/Dans_factsheetDataverseENGdef.pdf", "name": "DataverseNL Factsheet", "type": "Help documentation"}, {"url": "https://dans.knaw.nl/en/about/services/DataverseNL/about", "name": "About DataverseNL", "type": "Help documentation"}], "data-processes": [{"url": "https://dataverse.nl/dataverse/root/search", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011201", "name": "re3data:r3d100011201", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001043", "bsg-d001043"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Data Management", "Humanities and Social Science", "Earth Science", "Life Science", "Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["Netherlands"], "name": "FAIRsharing record for: DataverseNL", "abbreviation": "DataverseNL", "url": "https://fairsharing.org/10.25504/FAIRsharing.denvnv", "doi": "10.25504/FAIRsharing.denvnv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataverseNL provides online storage, sharing and registration of research data, during the research period and after its completion. DataverseNL is a shared service provided by participating institutions and DANS. DataverseNL uses the Dataverse software developed by Harvard University, which is used worldwide.", "publications": [], "licence-links": [{"licence-name": "DataverseNL General Terms of Use", "licence-id": 226, "link-id": 1045, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1066, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3324", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-17T20:36:34.000Z", "updated-at": "2022-02-08T10:46:41.449Z", "metadata": {"doi": "10.25504/FAIRsharing.910c39", "name": "GenitoUrinary Development Molecular Anatomy Project", "status": "ready", "contacts": [{"contact-name": "GUDMAP Hub", "contact-email": "help@gudmap.org"}], "homepage": "https://gudmap.org", "citations": [{"doi": "10.1242/dev.063594", "pubmed-id": 21652655, "publication-id": 2182}], "identifier": 3324, "description": "The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) provides data and tools to facilitate research on the GenitoUrinary (GU) tract for the scientific and medical community. In addition to current GUDMAP data, this resource incorporates data generated by previous phases of GUDMAP and by the (Re)Building a Kidney (RBK) consortium.", "abbreviation": "GUDMAP", "support-links": [{"url": "https://www.gudmap.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.gudmap.org/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.gudmap.org/using-gudmap/", "name": "Using GUDMAP", "type": "Help documentation"}, {"url": "https://www.gudmap.org/about/", "name": "About", "type": "Help documentation"}, {"url": "https://www.gudmap.org/reference/", "name": "Reference Documentation", "type": "Help documentation"}, {"url": "https://www.gudmap.org/tutorials/", "name": "Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/GUDMAP", "name": "@GUDMAP", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://www.gudmap.org/chaise/recordset/#2/Common:Gene", "name": "Search Genes", "type": "data access"}, {"name": "Download Available (Login Required)", "type": "data release"}, {"url": "https://www.gudmap.org/chaise/recordset/#2/Vocabulary:Anatomy@sort(RID)", "name": "Search by Anatomy", "type": "data access"}, {"url": "https://www.gudmap.org/chaise/recordset/#2/Common:Collection@sort(RID)", "name": "Search Collections", "type": "data access"}, {"url": "https://www.gudmap.org/chaise/recordset/#2/Protocol:Protocol@sort(RMT::desc::,RID)", "name": "Search Protocols", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012193", "name": "re3data:r3d100012193", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001554", "name": "SciCrunch:RRID:SCR_001554", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001841", "bsg-d001841"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Genomics", "Developmental Biology", "Cell Biology"], "domains": ["Expression data", "Differential gene expression analysis", "Animal organ development", "Cell culture"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GenitoUrinary Development Molecular Anatomy Project", "abbreviation": "GUDMAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.910c39", "doi": "10.25504/FAIRsharing.910c39", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) provides data and tools to facilitate research on the GenitoUrinary (GU) tract for the scientific and medical community. In addition to current GUDMAP data, this resource incorporates data generated by previous phases of GUDMAP and by the (Re)Building a Kidney (RBK) consortium.", "publications": [{"id": 2182, "pubmed_id": 21652655, "title": "The GUDMAP database--an online resource for genitourinary research.", "year": 2011, "url": "http://doi.org/10.1242/dev.063594", "authors": "Harding SD, et al", "journal": "Development", "doi": "10.1242/dev.063594", "created_at": "2021-09-30T08:26:25.999Z", "updated_at": "2021-09-30T08:26:25.999Z"}, {"id": 2183, "pubmed_id": 18287559, "title": "GUDMAP: the genitourinary developmental molecular anatomy project.", "year": 2008, "url": "http://doi.org/10.1681/ASN.2007101078", "authors": "McMahon AP,Aronow BJ,Davidson DR,Davies JA,Gaido KW,Grimmond S,Lessard JL,Little MH,Potter SS,Wilder EL,Zhang P", "journal": "J Am Soc Nephrol", "doi": "10.1681/ASN.2007101078", "created_at": "2021-09-30T08:26:26.109Z", "updated_at": "2021-09-30T08:26:26.109Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3579", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-14T15:32:12.381Z", "updated-at": "2022-02-08T10:46:48.737Z", "metadata": {"doi": "10.25504/FAIRsharing.780299", "name": "Proteome-pI 2.0 - Proteome Isoelectric Point Database", "status": "ready", "contacts": [{"contact-name": " Lukasz P. Kozlowski ", "contact-email": "lukasz.kozlowski.lpk@gmail.com", "contact-orcid": "0000-0001-8187-1980"}], "homepage": "http://www.isoelectricpointdb2.org", "citations": [{"doi": "10.1093/nar/gkab944", "pubmed-id": null, "publication-id": 3125}], "identifier": 3579, "description": "Proteome-pI 2.0 is an updated version of an online database (Proteome-pI [http://isoelectricpointdb.org/]) containing the information about predicted isoelectric points. The isoelectric point, the pH at which a particular molecule carries no net electrical charge, is an important parameter for many analytical biochemistry and proteomics techniques, especially for 2D gel electrophoresis (2D-PAGE), capillary isoelectric focusing, liquid chromatography-mass spectrometry, and X-ray protein crystallography.\n\nThe following changes have been introduced:\n- the number of proteomes included has been increased four-fold (from 5,029 to 20,115);\n- new algorithms for isoelectric point prediction have been added (21 algorithms in total);\n- the prediction of pKa dissociation constants for over 61 million proteins have been included (5.38 Billion predictions in total);\n- the prediction of isoelectric point for in silico digests of proteomes with the five most commonly used proteases (trypsin, chymotrypsin, trypsin+LysC, LysN, ArgC) have been added (9.58 Billion peptides).\n\nThe database allows the retrieval of virtual 2D-PAGE plots and the development of customized fractions of proteome based on isoelectric point and molecular weight. Moreover, Proteome-pI 2.0 facilitates statistical comparisons of the various prediction methods as well as biological investigation of protein isoelectric point space in all kingdoms of life (updated statistics available at http://isoelectricpointdb2.org/statistics.html). The database includes various statistics and tools for interactive browsing, searching, and sorting. It can be searched and browsed by organism name, average isoelectric point, molecular weight, or amino acid frequencies. Proteins with extreme pI values are also available. For individual proteomes, users can retrieve proteins of interest given the method, isoelectric point, and molecular weight ranges (this particular feature can be highly useful to limit potential targets in the analysis of 2DPAGE gels or before conducting mass spectrometry). Finally, some general statistics (total number of proteins, amino acids, average sequence length, amino acid, and di-amino acid frequencies) and datasets corresponding to major protein databases such as UniProtKB/TrEMBL and the NCBI non-redundant (nr) database have also been precalculated. ", "abbreviation": "Proteome-pI 2.0", "data-curation": {"type": "manual/automated"}, "support-links": [{"url": "http://isoelectricpointdb2.mimuw.edu.pl/contact.html", "name": "Contact to the database creator", "type": "Contact form"}, {"url": "http://isoelectricpointdb2.mimuw.edu.pl/statistics.html", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2021, "data-processes": [{"url": "http://isoelectricpointdb2.mimuw.edu.pl/browse.html", "name": "Browse", "type": "data access"}, {"url": "http://isoelectricpointdb2.mimuw.edu.pl/search.html", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://www.ipc2-isoelectric-point.org", "name": "IPC 2.0 - Isoelectric Point Calculator 2.0"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Molecular biology", "Proteomics", "Virology"], "domains": ["Peptide identification", "Proteolytic digest", "Protein identification", "Function analysis", "Omics data analysis", "Proteome", "Isoelectric point", "Protein Analysis", "Electrophoresis", "Protease cleavage", "Top-down proteomics", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["proteome annotation"], "countries": ["Poland"], "name": "FAIRsharing record for: Proteome-pI 2.0 - Proteome Isoelectric Point Database", "abbreviation": "Proteome-pI 2.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.780299", "doi": "10.25504/FAIRsharing.780299", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Proteome-pI 2.0 is an updated version of an online database (Proteome-pI [http://isoelectricpointdb.org/]) containing the information about predicted isoelectric points. The isoelectric point, the pH at which a particular molecule carries no net electrical charge, is an important parameter for many analytical biochemistry and proteomics techniques, especially for 2D gel electrophoresis (2D-PAGE), capillary isoelectric focusing, liquid chromatography-mass spectrometry, and X-ray protein crystallography.\n\nThe following changes have been introduced:\n- the number of proteomes included has been increased four-fold (from 5,029 to 20,115);\n- new algorithms for isoelectric point prediction have been added (21 algorithms in total);\n- the prediction of pKa dissociation constants for over 61 million proteins have been included (5.38 Billion predictions in total);\n- the prediction of isoelectric point for in silico digests of proteomes with the five most commonly used proteases (trypsin, chymotrypsin, trypsin+LysC, LysN, ArgC) have been added (9.58 Billion peptides).\n\nThe database allows the retrieval of virtual 2D-PAGE plots and the development of customized fractions of proteome based on isoelectric point and molecular weight. Moreover, Proteome-pI 2.0 facilitates statistical comparisons of the various prediction methods as well as biological investigation of protein isoelectric point space in all kingdoms of life (updated statistics available at http://isoelectricpointdb2.org/statistics.html). The database includes various statistics and tools for interactive browsing, searching, and sorting. It can be searched and browsed by organism name, average isoelectric point, molecular weight, or amino acid frequencies. Proteins with extreme pI values are also available. For individual proteomes, users can retrieve proteins of interest given the method, isoelectric point, and molecular weight ranges (this particular feature can be highly useful to limit potential targets in the analysis of 2DPAGE gels or before conducting mass spectrometry). Finally, some general statistics (total number of proteins, amino acids, average sequence length, amino acid, and di-amino acid frequencies) and datasets corresponding to major protein databases such as UniProtKB/TrEMBL and the NCBI non-redundant (nr) database have also been precalculated. ", "publications": [{"id": 3125, "pubmed_id": null, "title": "Proteome-pI 2.0: proteome isoelectric point database update", "year": 2021, "url": "http://dx.doi.org/10.1093/nar/gkab944", "authors": "Kozlowski, Lukasz Pawel", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkab944", "created_at": "2021-11-01T15:38:52.153Z", "updated_at": "2021-11-01T15:38:52.153Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 2470, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2163", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-11T11:04:16.361Z", "metadata": {"doi": "10.25504/FAIRsharing.zv11j3", "name": "Global Biodiversity Information Facility", "status": "ready", "contacts": [{"contact-name": "GBIF Secretariat", "contact-email": "communication@gbif.org"}], "homepage": "https://www.gbif.org", "citations": [], "identifier": 2163, "description": "GBIF\u2014the Global Biodiversity Information Facility\u2014is an international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.\n\nStrictly speaking, GBIF is not a data repository. Rather, GBIF indexes thousands of datasets through a distributed infrastructure involving more than 100 formal participants that supports hundreds of data-publishing institutions worldwide. GBIF.org makes the FAIR and open data discoverable and citable, assigning each download a DOI and storing it for an extended period of time. More than three peer-reviewed research articles make use of data from the GBIF network every day, in studies spanning the impacts of climate change, the spread of pests and diseases, priority areas for conservation and food security. \n\nTo share data with GBIF, follow this quick guide: http://www.gbif.org/publishing-data/quick-guide. To deposit or host data, we suggest using one of the trusted data hosting centres (DHC) listed in FAIRsharing.org that uses GBIF's IPT (Integrated Publishing Toolkit) software. The DHC provides data publishers with a hosted IPT account enabling them to manage and publish datasets through GBIF.org.", "abbreviation": "GBIF", "access-points": [{"url": "http://api.gbif.org/v1/", "name": "GBIF API http://www.gbif.org/developer/summary", "type": "REST"}], "data-curation": {"url": "https://www.gbif.org/tools/data-validator/about", "type": "manual/automated"}, "support-links": [{"url": "https://www.instagram.com/gbifs/", "name": "Instagram", "type": "Blog/News"}, {"url": "https://www.facebook.com/gbifnews", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.linkedin.com/company/gbif/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://data-blog.gbif.org/", "name": "GBIF data blog", "type": "Blog/News"}, {"url": "info@gbif.org", "type": "Support email"}, {"url": "helpdesk@gbif.org", "type": "Support email"}, {"url": "https://www.youtube.com/channel/UCgOi0tnCjmHPVNJZcxOF5Aw", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/GBIF", "type": "Twitter"}, {"url": "https://www.gbif.org/resource/search?contentType=news", "name": "GBIF news", "type": "Blog/News"}, {"url": "https://www.gbif.org/newsletters", "name": "Newsletters and lists", "type": "Blog/News"}, {"url": "https://vimeo.com/gbif", "name": "Vimeo", "type": "Video"}, {"url": "https://discourse.gbif.org/", "name": "GBIF community forum", "type": "Forum"}, {"url": "https://www.gbif.org/faq", "name": "GBIF FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/gbif/", "name": "GBIF on GitHub", "type": "Github"}], "year-creation": 2001, "data-processes": [{"url": "https://www.gbif.org/occurrence/search", "name": "Search occurrence", "type": "data access"}, {"url": "https://www.gbif.org/publishing-data", "name": "How to publish", "type": "data curation"}, {"url": "https://www.gbif.org/the-gbif-network", "name": "Browse by country", "type": "data access"}, {"url": "https://www.gbif.org/species/search", "name": "Search species", "type": "data access"}, {"url": "https://www.gbif.org/dataset/search", "name": "Search dataset", "type": "data access"}], "associated-tools": [{"url": "http://www.gbif.org/ipt", "name": "Integrated Publishing Toolkit"}, {"url": "https://cran.r-project.org/web/packages/rgbif/index.html", "name": "rgbif"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000039", "name": "re3data:r3d100000039", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005904", "name": "SciCrunch:RRID:SCR_005904", "portal": "SciCrunch"}, {"url": "https://ror.org/05fjyn938", "name": "ROR", "portal": "Other"}, {"url": "https://www.wikidata.org/wiki/Q1531570", "name": "Wikidata", "portal": "Other"}, {"url": "https://grid.ac/institutes/grid.434488.7", "name": "GRID", "portal": "Other"}], "deprecation-reason": "", "data-access-condition": {"url": "https://www.gbif.org/", "type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.gbif.org/become-a-publisher", "type": "controlled"}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000635", "bsg-d000635"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Citation", "Taxonomic classification", "Biobank", "Biological sample", "FAIR", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Global Biodiversity Information Facility", "abbreviation": "GBIF", "url": "https://fairsharing.org/10.25504/FAIRsharing.zv11j3", "doi": "10.25504/FAIRsharing.zv11j3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF\u2014the Global Biodiversity Information Facility\u2014is an international network and data infrastructure funded by the world's governments and aimed at providing anyone, anywhere, open access to data about all types of life on Earth.\n\nStrictly speaking, GBIF is not a data repository. Rather, GBIF indexes thousands of datasets through a distributed infrastructure involving more than 100 formal participants that supports hundreds of data-publishing institutions worldwide. GBIF.org makes the FAIR and open data discoverable and citable, assigning each download a DOI and storing it for an extended period of time. More than three peer-reviewed research articles make use of data from the GBIF network every day, in studies spanning the impacts of climate change, the spread of pests and diseases, priority areas for conservation and food security. \n\nTo share data with GBIF, follow this quick guide: http://www.gbif.org/publishing-data/quick-guide. To deposit or host data, we suggest using one of the trusted data hosting centres (DHC) listed in FAIRsharing.org that uses GBIF's IPT (Integrated Publishing Toolkit) software. The DHC provides data publishers with a hosted IPT account enabling them to manage and publish datasets through GBIF.org.", "publications": [{"id": 3080, "pubmed_id": 25099149, "title": "The GBIF integrated publishing toolkit: facilitating the efficient publishing of biodiversity data on the internet.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0102623", "authors": "Robertson T,Doring M,Guralnick R,Bloom D,Wieczorek J,Braak K,Otegui J,Russell L,Desmet P", "journal": "PLoS One", "doi": "10.1371/journal.pone.0102623", "created_at": "2021-09-30T08:28:19.468Z", "updated_at": "2021-09-30T08:28:19.468Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 30, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 31, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 32, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 34, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFUT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--c383e2b6ee45c526853fd5a5fea2b8f658171c75/GBIF-2015.jpg?disposition=inline"}} +{"id": "2649", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-07T20:23:32.000Z", "updated-at": "2022-02-08T10:46:57.366Z", "metadata": {"doi": "10.25504/FAIRsharing.dff3ef", "name": "Electron Microscopy Public Image Archive", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "empdep-help@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/pdbe/emdb/empiar/", "citations": [{"doi": "10.1038/nmeth.3806", "pubmed-id": 27067018, "publication-id": 2232}], "identifier": 2649, "description": "EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw electron microscopy images. Here, you can browse, upload and download the raw images used to build a 3D structure. The purpose of EMPIAR is to provide easy access to state-of-the-art raw data to facilitate methods development and validation, which will lead to better 3D structures. It complements the Electron Microscopy Data Bank (EMDB), where 3D volumes are stored.", "abbreviation": "EMPIAR", "access-points": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/api/documentation/", "name": "EMPIAR API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/support/EMPIAR", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/statistics_empiar_entry_releases.html/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/reuse", "name": "Data re-use case study", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/empiar-quick-tour", "name": "EMPIAR Quick Tour", "type": "Training documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/deposition/", "name": "Deposit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/faq#question_Download", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/empiar/faq#question_Download", "name": "ASPERA"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012356", "name": "re3data:r3d100012356", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001140", "bsg-d001140"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Biology"], "domains": ["Protein image", "Microscopy", "Electron microscopy", "Imaging", "Whole mount tissue"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Electron Microscopy Public Image Archive", "abbreviation": "EMPIAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.dff3ef", "doi": "10.25504/FAIRsharing.dff3ef", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw electron microscopy images. Here, you can browse, upload and download the raw images used to build a 3D structure. The purpose of EMPIAR is to provide easy access to state-of-the-art raw data to facilitate methods development and validation, which will lead to better 3D structures. It complements the Electron Microscopy Data Bank (EMDB), where 3D volumes are stored.", "publications": [{"id": 2232, "pubmed_id": 27067018, "title": "EMPIAR: a public archive for raw electron microscopy image data.", "year": 2016, "url": "http://doi.org/10.1038/nmeth.3806", "authors": "Iudin A,Korir PK,Salavert-Torres J,Kleywegt GJ,Patwardhan A", "journal": "Nat Methods", "doi": "10.1038/nmeth.3806", "created_at": "2021-09-30T08:26:31.532Z", "updated_at": "2021-09-30T08:26:31.532Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1540, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2656", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-11T13:39:35.000Z", "updated-at": "2022-02-08T10:47:09.899Z", "metadata": {"doi": "10.25504/FAIRsharing.a58029", "name": "PsychData", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "psychdata@leibniz-psychology.org"}], "homepage": "https://www.psychdata.de/index.php?main=none&sub=none&lang=eng", "identifier": 2656, "description": "A collection of pyschological research data available to the research community.", "abbreviation": "PsychData", "support-links": [{"url": "psychdata@zpid.de", "type": "Support email"}, {"url": "https://www.ratswd.de/en/en/researchdata/fdz-zpid", "name": "documentation", "type": "Help documentation"}], "data-processes": [{"url": "https://www.psychdata.de/index.php?main=search&sub=browse&lang=eng", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010328", "name": "re3data:r3d100010328", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001148", "bsg-d001148"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Psychology", "Social and Behavioural Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Cognition", "Mental health"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Researcher data"], "countries": ["Germany"], "name": "FAIRsharing record for: PsychData", "abbreviation": "PsychData", "url": "https://fairsharing.org/10.25504/FAIRsharing.a58029", "doi": "10.25504/FAIRsharing.a58029", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of pyschological research data available to the research community.", "publications": [], "licence-links": [{"licence-name": "PsychData Data use agreement", "licence-id": 687, "link-id": 1910, "relation": "undefined"}, {"licence-name": "PsychData Terms of Use", "licence-id": 688, "link-id": 1914, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3247", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-23T12:03:31.000Z", "updated-at": "2021-11-24T13:13:03.504Z", "metadata": {"doi": "10.25504/FAIRsharing.3xdroz", "name": "PITEC_DATABASE", "status": "ready", "contacts": [{"contact-name": "Sergio Moises Afcha Chavez", "contact-email": "serafcha@uv.es"}], "homepage": "https://www.ine.es/dyngs/INEbase/en/operacion.htm?c=Estadistica_C&cid=1254736176755&menu=resultados&secc=1254736195616&idp=1254735576669#!tabs-1254736194796", "identifier": 3247, "description": "Technological Innovation Panel (PITEC) is a database covering an extensive sample of Spanish firms from the Community Innovation Survey (CIS) for the period 2006 to 2015. The main objective of the Community Innovation Survey in Enterprises is to provide direct information on the innovation process in enterprises, developing indicators that allow to ascertain the different aspects of this process (economical impact, innovative activities, cost...).", "abbreviation": "PITEC", "support-links": [{"url": "https://www.ine.es/dyngs/INEbase/en/operacion.htm?c=Estadistica_C&cid=1254736176755&menu=metodologia&idp=1254735576669", "name": "Methodology", "type": "Help documentation"}, {"url": "https://www.ine.es/dyngs/INEbase/en/operacion.htm?c=Estadistica_C&cid=1254736176755&menu=publi&idp=1254735576669", "name": "Publications", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.ine.es/dyngs/INEbase/en/operacion.htm?c=Estadistica_C&cid=1254736176755&menu=ultiDatos&idp=1254735576669", "name": "Latest data", "type": "data access"}, {"url": "https://www.ine.es/dyngs/INEbase/en/operacion.htm?c=Estadistica_C&cid=1254736176755&menu=resultados&idp=1254735576669#!tabs-1254736194796", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001761", "bsg-d001761"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Social Science", "Statistics", "Subject Agnostic"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["enterprise activity", "Survey", "technological innovation"], "countries": ["Spain"], "name": "FAIRsharing record for: PITEC_DATABASE", "abbreviation": "PITEC", "url": "https://fairsharing.org/10.25504/FAIRsharing.3xdroz", "doi": "10.25504/FAIRsharing.3xdroz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Technological Innovation Panel (PITEC) is a database covering an extensive sample of Spanish firms from the Community Innovation Survey (CIS) for the period 2006 to 2015. The main objective of the Community Innovation Survey in Enterprises is to provide direct information on the innovation process in enterprises, developing indicators that allow to ascertain the different aspects of this process (economical impact, innovative activities, cost...).", "publications": [], "licence-links": [{"licence-name": "INE Legal Notice", "licence-id": 437, "link-id": 2216, "relation": "undefined"}, {"licence-name": "INE Privacy Policy", "licence-id": 438, "link-id": 2217, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3169", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-30T14:05:00.000Z", "updated-at": "2022-02-08T10:42:32.131Z", "metadata": {"doi": "10.25504/FAIRsharing.4f120c", "name": "NC OneMap", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "nconemap@its.nc.gov"}], "homepage": "https://www.nconemap.gov/", "identifier": 3169, "description": "NC OneMap is a resource providing a collection of authoritative data and web services. It is an organized effort of numerous partners throughout North Carolina, involving local, state, and federal government agencies, the private sector and academia.", "abbreviation": "NC OneMap", "support-links": [{"url": "https://www.nconemap.gov/pages/feedback", "name": "Questions and comments", "type": "Contact form"}, {"url": "https://www.nconemap.gov/pages/help", "name": "Help Center", "type": "Help documentation"}, {"url": "https://www.nconemap.gov/pages/metadata", "name": "Metadata", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.nconemap.gov/search", "name": "Browse & filter", "type": "data access"}, {"url": "https://www.nconemap.gov/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010287", "name": "re3data:r3d100010287", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001680", "bsg-d001680"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Demographics", "Social Science", "Energy Engineering", "Public Health", "Global Health", "Earth Science", "Agriculture"], "domains": ["Transport"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Education", "Map"], "countries": ["United States"], "name": "FAIRsharing record for: NC OneMap", "abbreviation": "NC OneMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.4f120c", "doi": "10.25504/FAIRsharing.4f120c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NC OneMap is a resource providing a collection of authoritative data and web services. It is an organized effort of numerous partners throughout North Carolina, involving local, state, and federal government agencies, the private sector and academia.", "publications": [], "licence-links": [{"licence-name": "NC OneMap Terms & Conditions", "licence-id": 563, "link-id": 2070, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1860", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-20T11:43:24.771Z", "metadata": {"doi": "10.25504/FAIRsharing.26ek1v", "name": "Protein Data Bank in Europe", "status": "ready", "contacts": [{"contact-name": "PDBe Helpdesk", "contact-email": "pdbehelp@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/pdbe/", "citations": [], "identifier": 1860, "description": "The Protein Data Bank in Europe (PDBe) is the European resource for the collection, organisation and dissemination of data on biological macromolecular structures. It is a founding member of the worldwide Protein Data Bank which collects, organises and disseminates data on biological macromolecular structures.", "abbreviation": "PDBe", "access-points": [{"url": "https://www.ebi.ac.uk/pdbe/pdbe-rest-api", "name": "REST calls based on PDB entry data", "type": "REST"}], "support-links": [{"url": "http://www.ebi.ac.uk/support/pdbe", "name": "PDBe Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/pdbe/about/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/pdbe/documentation", "name": "PDBe Documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/about/news", "name": "News", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/pdbe-quick-tour", "name": "PDBe: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pdbe-searching-for-biological-macromolecular-structures", "name": "PDBe: Searching for biological macromolecular structures", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pdbe-exploring-a-protein-data-bank-pdb-entry", "name": "PDBe: Exploring a Protein Data Bank (PDB) entry", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pdbe-an-introduction-to-search-and-entry-pages-webinar", "name": "PDBe: An introduction to search and entry pages: webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pdbe-searching-the-protein-data-bank", "name": "PDBe: Searching the Protein Data Bank", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/pdbe/training", "name": "PDBe Training", "type": "Training documentation"}, {"url": "https://twitter.com/PDBeurope", "name": "@PDBeurope", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"url": "ftp://ftp.ebi.ac.uk/pub/databases/rcsb/pdb/data/structures/all", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pdbe/deposition", "name": "Deposit", "type": "data curation"}, {"url": "http://www.ebi.ac.uk/pdbe-srv/PDBeXplore/sequence/", "name": "search by sequence", "type": "data access"}, {"url": "http://www.ebi.ac.uk/msd-srv/ssm/", "name": "PDBeFold- Search by structure", "type": "data access"}], "associated-tools": [{"url": "http://www.ebi.ac.uk/pdbe/emdb", "name": "EMDB"}, {"url": "http://validate.wwpdb.org", "name": "wwPDB Validation Service"}, {"url": "https://www.ebi.ac.uk/pdbe/services", "name": "Full PDBe Tools List"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010538", "name": "re3data:r3d100010538", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004312", "name": "SciCrunch:RRID:SCR_004312", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000322", "bsg-d000322"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Structural Biology"], "domains": ["Protein structure", "Drug structure", "Deoxyribonucleic acid", "Ribonucleic acid", "X-ray diffraction", "Nuclear Magnetic Resonance (NMR) spectroscopy", "Electron density map", "Electron microscopy", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Protein Data Bank in Europe", "abbreviation": "PDBe", "url": "https://fairsharing.org/10.25504/FAIRsharing.26ek1v", "doi": "10.25504/FAIRsharing.26ek1v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Data Bank in Europe (PDBe) is the European resource for the collection, organisation and dissemination of data on biological macromolecular structures. It is a founding member of the worldwide Protein Data Bank which collects, organises and disseminates data on biological macromolecular structures.", "publications": [{"id": 1275, "pubmed_id": 29126160, "title": "PDBe: towards reusable data delivery infrastructure at protein data bank in Europe.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1070", "authors": "Mir S,Alhroub Y,Anyango S,Armstrong DR,Berrisford JM,Clark AR,Conroy MJ,Dana JM,Deshpande M,Gupta D,Gutmanas A,Haslam P,Mak L,Mukhopadhyay A,Nadzirin N,Paysan-Lafosse T,Sehnal D,Sen S,Smart OS,Varadi M,Kleywegt GJ,Velankar S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1070", "created_at": "2021-09-30T08:24:42.347Z", "updated_at": "2021-09-30T11:29:05.076Z"}, {"id": 2010, "pubmed_id": 27450113, "title": "The archiving and dissemination of biological structure data", "year": 2016, "url": "http://doi.org/S0959-440X(16)30077-X", "authors": "Helen M Berman, Stephen K Burley, Gerard J Kleywegt, John L Markley, Haruki Nakamura, Sameer Velankar", "journal": "Current Opinion in Structural Biology", "doi": "10.1016/j.sbi.2016.06.018", "created_at": "2021-09-30T08:26:06.466Z", "updated_at": "2021-09-30T08:26:06.466Z"}, {"id": 2089, "pubmed_id": 22110033, "title": "PDBe: Protein Data Bank in Europe.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr998", "authors": "Velankar S., Alhroub Y., Best C., Caboche S., Conroy MJ., Dana JM., Fernandez Montecelo MA., van Ginkel G., Golovin A., Gore SP., Gutmanas A., Haslam P., Hendrickx PM., Heuson E., Hirshberg M., John M., Lagerstedt I., Mir S., Newman LE., Oldfield TJ., Patwardhan A., Rinaldi L., Sahni G., Sanz-Garc\u00eda E., Sen S., Slowley R., Suarez-Uruena A., Swaminathan GJ., Symmons MF., Vranken WF., Wainwright M., Kleywegt GJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr998", "created_at": "2021-09-30T08:26:15.465Z", "updated_at": "2021-09-30T08:26:15.465Z"}, {"id": 2164, "pubmed_id": 26476444, "title": "PDBe: improved accessibility of macromolecular structure data from PDB and EMDB.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1047", "authors": "Velankar S, van Ginkel G, Alhroub Y, Battle GM, Berrisford JM, Conroy MJ, Dana JM, Gore SP, Gutmanas A, Haslam P, Hendrickx PM, Lagerstedt I, Mir S, Fernandez Montecelo MA, Mukhopadhyay A, Oldfield TJ, Patwardhan A, Sanz-Garc\u00eda E, Sen S, Slowley RA, Wainwright ME, Deshpande MS, Iudin A, Sahni G, Salavert Torres J, Hirshberg M, Mak L, Nadzirin N, Armstrong DR, Clark AR, Smart OS, Korir PK, Kleywegt GJ.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkv1047", "created_at": "2021-09-30T08:26:23.933Z", "updated_at": "2021-09-30T08:26:23.933Z"}, {"id": 2759, "pubmed_id": 31691821, "title": "PDBe: improved findability of macromolecular structure data in the PDB.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz990", "authors": "Armstrong DR,Berrisford JM,Conroy MJ,Gutmanas A,Anyango S,Choudhary P,Clark AR,Dana JM,Deshpande M,Dunlop R,Gane P,Gaborova R,Gupta D,Haslam P,Koca J,Mak L,Mir S,Mukhopadhyay A,Nadzirin N,Nair S,Paysan-Lafosse T,Pravda L,Sehnal D,Salih O,Smart O,Tolchard J,Varadi M,Svobodova-Varekova R,Zaki H,Kleywegt GJ,Velankar S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz990", "created_at": "2021-09-30T08:27:39.086Z", "updated_at": "2021-09-30T11:29:42.828Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 632, "relation": "undefined"}, {"licence-name": "wwPDB Charter", "licence-id": 875, "link-id": 638, "relation": "undefined"}, {"licence-name": "PDBe Data Access Statement", "licence-id": 651, "link-id": 639, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2546", "type": "fairsharing-records", "attributes": {"created-at": "2017-12-01T20:20:10.000Z", "updated-at": "2021-12-06T10:49:21.936Z", "metadata": {"doi": "10.25504/FAIRsharing.wb0txg", "name": "Astrophysics Source Code Library", "status": "ready", "contacts": [{"contact-name": "Alice Allen", "contact-email": "aallen@ascl.net"}], "homepage": "http://ascl.net/", "identifier": 2546, "description": "The Astrophysics Source Code Library (ASCL) is a free online registry for source code of interest to astronomers and astrophysicists. It provides code that has been used in research that has appeared in, or been submitted to, peer-reviewed publications.Peer-reviewed papers that describe methods or experiments involving the development or use of source code are added by the ASCL team.", "abbreviation": "ASCL", "support-links": [{"url": "http://ascl.net/wordpress/", "name": "Blog", "type": "Blog/News"}, {"url": "http://ascl.net/home/getwp/898", "name": "Q & A", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://ascl.net/phpBB3/", "name": "ASCL Forum", "type": "Forum"}, {"url": "http://ascl.net/about", "name": "About ASCL.net", "type": "Help documentation"}, {"url": "http://ascl.net/dashboard", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/asclnet", "name": "@asclnet", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "http://ascl.net/code/all", "name": "Browse Code", "type": "data access"}, {"url": "http://ascl.net/code/submit", "name": "Data Submission", "type": "data curation"}, {"url": "http://ascl.net/code/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011865", "name": "re3data:r3d100011865", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001029", "bsg-d001029"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Germany", "Australia"], "name": "FAIRsharing record for: Astrophysics Source Code Library", "abbreviation": "ASCL", "url": "https://fairsharing.org/10.25504/FAIRsharing.wb0txg", "doi": "10.25504/FAIRsharing.wb0txg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Astrophysics Source Code Library (ASCL) is a free online registry for source code of interest to astronomers and astrophysicists. It provides code that has been used in research that has appeared in, or been submitted to, peer-reviewed publications.Peer-reviewed papers that describe methods or experiments involving the development or use of source code are added by the ASCL team.", "publications": [{"id": 1967, "pubmed_id": null, "title": "Looking before Leaping: Creating a Software Registry", "year": 2015, "url": "http://doi.org/10.5334/jors.bv", "authors": "Allen, A. & Schmidt, J.", "journal": "Journal of Open Research Software. 3(1), p.e15.", "doi": "10.5334/jors.bv", "created_at": "2021-09-30T08:26:01.399Z", "updated_at": "2021-09-30T08:26:01.399Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3098", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-30T13:54:13.000Z", "updated-at": "2022-01-11T13:00:09.564Z", "metadata": {"doi": "10.25504/FAIRsharing.CjHLQw", "name": "Marine Data Archive", "status": "ready", "contacts": [{"contact-name": "MDA helpdesk", "contact-email": "data@vliz.be"}], "homepage": "http://www.marinedataarchive.eu", "citations": [], "identifier": 3098, "description": "Scientific data are unique and need to be prevented from being lost. For this reason VLIZ developed the Marine Data Archive: a secure, online system where researchers can archive their data files in a well-documented manner. The MDA holds data from a wide range of international, European, and Flemish projects. It is free for anyone to use: to archive and manage their data, as a personal, project, or institutional archive, and as an open repository for data publication. Data of any type -- raw, processed, structured, data products, documents, images, etc -- can be archived in the MDA. Data in the MDA are made public by linking them to the Integrated Marine Information System, or to any other catalogue.", "abbreviation": "MDA", "support-links": [{"url": "mda@vliz.be", "name": "For questions on the use of MDA", "type": "Support email"}, {"url": "https://www.marinedataarchive.eu/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.marinedataarchive.eu/mdamanual.pdf", "name": "Manual", "type": "Help documentation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013188", "name": "re3data:r3d100013188", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001606", "bsg-d001606"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: Marine Data Archive", "abbreviation": "MDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.CjHLQw", "doi": "10.25504/FAIRsharing.CjHLQw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scientific data are unique and need to be prevented from being lost. For this reason VLIZ developed the Marine Data Archive: a secure, online system where researchers can archive their data files in a well-documented manner. The MDA holds data from a wide range of international, European, and Flemish projects. It is free for anyone to use: to archive and manage their data, as a personal, project, or institutional archive, and as an open repository for data publication. Data of any type -- raw, processed, structured, data products, documents, images, etc -- can be archived in the MDA. Data in the MDA are made public by linking them to the Integrated Marine Information System, or to any other catalogue.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2921", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-19T10:00:33.000Z", "updated-at": "2021-11-24T13:20:03.957Z", "metadata": {"name": "WikiCell", "status": "deprecated", "contacts": [{"contact-name": "WikiCell General Contact", "contact-email": "wikicell@big.ac.cn"}], "homepage": "http://wikicell.big.ac.cn/index.php/Human", "citations": [{"doi": "10.1089/omi.2011.0139", "pubmed-id": 22702248, "publication-id": 2537}], "identifier": 2921, "description": "WikiCell provides a wiki interface to information about the human transcriptome and stores information on Expressed Sequenced Tags (ESTs). Users can access, curate, and submit database data as well as browse, query, and up- and download sequences. Gene information is provided, including housekeeping genes, taxonomy location, and gene ontology (GO) description.", "abbreviation": "WikiCell", "support-links": [{"url": "http://wikicell.big.ac.cn/index.php/Help:Contents", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://wikicell.big.ac.cn/index.php/Documents-url", "name": "About", "type": "Help documentation"}, {"url": "http://wikicell.big.ac.cn/index.php/Special:Statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://wikicell.big.ac.cn/index.php/Browser-url", "name": "Browse", "type": "data access"}, {"url": "http://wikicell.big.ac.cn/index.php/Download-url", "name": "Download", "type": "data release"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001424", "bsg-d001424"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Transcriptomics"], "domains": ["Expression data"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: WikiCell", "abbreviation": "WikiCell", "url": "https://fairsharing.org/fairsharing_records/2921", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WikiCell provides a wiki interface to information about the human transcriptome and stores information on Expressed Sequenced Tags (ESTs). Users can access, curate, and submit database data as well as browse, query, and up- and download sequences. Gene information is provided, including housekeeping genes, taxonomy location, and gene ontology (GO) description.", "publications": [{"id": 2537, "pubmed_id": 22702248, "title": "WikiCell: a unified resource platform for human transcriptomics research.", "year": 2012, "url": "http://doi.org/10.1089/omi.2011.0139", "authors": "Zhao D,Wu J,Zhou Y,Gong W,Xiao J,Yu J", "journal": "OMICS", "doi": "10.1089/omi.2011.0139", "created_at": "2021-09-30T08:27:11.183Z", "updated_at": "2021-09-30T08:27:11.183Z"}], "licence-links": [{"licence-name": "GNU Free Documentation License 1.2", "licence-id": 354, "link-id": 1858, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2680", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-11T21:11:56.000Z", "updated-at": "2022-02-08T10:50:44.737Z", "metadata": {"doi": "10.25504/FAIRsharing.a78919", "name": "European Directory of Marine Environmental Data", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "enquiries@bodc.ac.uk"}], "homepage": "https://www.bodc.ac.uk/resources/inventories/edmed/search/", "identifier": 2680, "description": "A collection of datasets on the marine environment.", "abbreviation": "EDMED", "year-creation": 1991}, "legacy-ids": ["biodbcore-001174", "bsg-d001174"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Data Management", "Oceanography"], "domains": ["Marine coral reef biome", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: European Directory of Marine Environmental Data", "abbreviation": "EDMED", "url": "https://fairsharing.org/10.25504/FAIRsharing.a78919", "doi": "10.25504/FAIRsharing.a78919", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of datasets on the marine environment.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2091", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T14:44:37.613Z", "metadata": {"doi": "10.25504/FAIRsharing.an4drj", "name": "Knockout Mouse Project", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "mmrrc@ucdavis.edu"}], "homepage": "https://www.mmrrc.org/catalog/StrainCatalogSearchForm.php?search_query=KOMP%20Repository", "citations": [], "identifier": 2091, "description": "Knockout mutant mice strains. The KOMP repository is a resource of mouse embryonic stem (ES) cells containing a null mutation in every gene in the mouse genome. The KOMP collection of mice, ES Cells, and vectors are now distributed through the Mutant Mouse Resource and Research Center at UC Davis.", "abbreviation": "KOMP", "support-links": [{"url": "https://www.mmrrc.org/catalog/overview_Major_Collection.php#108", "name": "About the KOMP Collection at the MMRRC", "type": "Help documentation"}, {"url": "https://mmrrc.ucdavis.edu/es-cell-protocols/", "name": "ES Cell Protocols", "type": "Help documentation"}, {"url": "https://mmrrc.ucdavis.edu/genotyping-protocols/", "name": "Genotyping Protocols", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.mmrrc.org/submission/strain_submission_terms.php", "name": "Strain Submission", "type": "data curation"}, {"url": "https://www.mmrrc.org/catalog/StrainCatalogSearchForm.php?jboEvent=Search&SourceCollection=KOMP", "name": "Find KOMP Models at the MMRRC", "type": "data access"}], "deprecation-date": "2021-12-06", "deprecation-reason": "KOMP Repository mice and ES cells are available from the MMRRC at UC Davis. You can find the KOMP Repository collection of lines in the MMRRC catalog, whose URL is now provided as the homepage for this record.. "}, "legacy-ids": ["biodbcore-000560", "bsg-d000560"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Gene knockout", "Gene", "Genetic strain"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Knockout Mouse Project", "abbreviation": "KOMP", "url": "https://fairsharing.org/10.25504/FAIRsharing.an4drj", "doi": "10.25504/FAIRsharing.an4drj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Knockout mutant mice strains. The KOMP repository is a resource of mouse embryonic stem (ES) cells containing a null mutation in every gene in the mouse genome. The KOMP collection of mice, ES Cells, and vectors are now distributed through the Mutant Mouse Resource and Research Center at UC Davis.", "publications": [{"id": 543, "pubmed_id": 15340423, "title": "The knockout mouse project.", "year": 2004, "url": "http://doi.org/10.1038/ng0904-921", "authors": "Austin CP., et al.", "journal": "Nat. Genet.", "doi": "10.1038/ng0904-921", "created_at": "2021-09-30T08:23:19.286Z", "updated_at": "2021-09-30T08:23:19.286Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2702", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-04T22:39:38.000Z", "updated-at": "2022-02-08T10:51:23.669Z", "metadata": {"doi": "10.25504/FAIRsharing.6bfdfc", "name": "American Mineralogist Crystal Structure Database", "status": "ready", "contacts": [{"contact-name": "Robert T Downs", "contact-email": "rdowns@u.arizona.edu"}], "homepage": "http://rruff.geo.arizona.edu/AMS/amcsd.php", "citations": [{"publication-id": 2725}], "identifier": 2702, "description": "This crystal structure database includes every structure published in the American Mineralogist, The Canadian Mineralogist, European Journal of Mineralogy and Physics and Chemistry of Minerals, as well as selected datasets from other journals.", "abbreviation": null, "support-links": [{"url": "http://rruff.geo.arizona.edu/AMS/tips.php", "name": "Search Tips", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://rruff.geo.arizona.edu/AMS/amcsd.php", "name": "Search", "type": "data access"}, {"url": "http://rruff.geo.arizona.edu/AMS/index_min.php", "name": "Browse mineral", "type": "data access"}, {"url": "http://rruff.geo.arizona.edu/AMS/index_auth.php", "name": "Browse authors", "type": "data access"}, {"url": "http://rruff.geo.arizona.edu/AMS/CellParamSg.php", "name": "Search for crystal structures", "type": "data access"}, {"url": "http://rruff.geo.arizona.edu/AMS/diffpatt.php", "name": "Diffraction pattern search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010765", "name": "re3data:r3d100010765", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001200", "bsg-d001200"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Earth Science", "Mineralogy", "Physics"], "domains": ["Chemical structure", "Structure"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: American Mineralogist Crystal Structure Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.6bfdfc", "doi": "10.25504/FAIRsharing.6bfdfc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This crystal structure database includes every structure published in the American Mineralogist, The Canadian Mineralogist, European Journal of Mineralogy and Physics and Chemistry of Minerals, as well as selected datasets from other journals.", "publications": [{"id": 2725, "pubmed_id": null, "title": "The American Mineralogist crystal structure database", "year": 2003, "url": "https://www.geo.arizona.edu/xtal/group/pdf/am88_247.pdf", "authors": "Robert T. Downs, Michelle Hall-Wallace", "journal": "American Mineralogist (2003) 88 (1): 247\u2013250.", "doi": null, "created_at": "2021-09-30T08:27:34.728Z", "updated_at": "2021-09-30T08:27:34.728Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2703", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-04T22:52:49.000Z", "updated-at": "2022-02-08T10:51:25.012Z", "metadata": {"doi": "10.25504/FAIRsharing.924f0a", "name": "EURO-VO Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "esavo.registry@sciops.esa.int"}], "homepage": "http://registry.euro-vo.org/eurovo/#landing_page", "citations": [], "identifier": 2703, "description": "EURO-VO is a registry database in the field of Astronomy and is maintained by ESA Space and Technology Hubble .", "abbreviation": "EURO-VO", "data-curation": {}, "support-links": [{"url": "http://registry.euro-vo.org/eurovo/#information_page", "type": "Help documentation"}], "data-processes": [{"url": "http://registry.euro-vo.org/eurovo/#search_page", "name": "Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001201", "bsg-d001201"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy", "Subject Agnostic"], "domains": ["Resource metadata"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: EURO-VO Registry", "abbreviation": "EURO-VO", "url": "https://fairsharing.org/10.25504/FAIRsharing.924f0a", "doi": "10.25504/FAIRsharing.924f0a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EURO-VO is a registry database in the field of Astronomy and is maintained by ESA Space and Technology Hubble .", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2658", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-14T08:27:01.000Z", "updated-at": "2022-01-05T12:37:21.558Z", "metadata": {"doi": "10.25504/FAIRsharing.EivZJw", "name": "National Omics Data Encyclopedia", "status": "ready", "contacts": [{"contact-name": "Guoqing Zhang", "contact-email": "gqzhang@picb.ac.cn", "contact-orcid": "0000000188277546"}], "homepage": "https://www.biosino.org/node", "citations": [], "identifier": 2658, "description": "NODE (The National Omics Data Encyclopedia) provides an integrated, compatible, comparable, and scalable multi-omics resource platform that supports flexible data management and effective data release. NODE uses a hierarchical data architecture to support storage of muti-omics data including sequencing data, MS based proteomics data, MS or NMR based metabolomics data, and fluorescence imaging data.\nLaunched in early 2017, NODE has collected and published over 900 terabytes of omics data for researchers from China and all over the world in last three years, 22% of which contains multiple omics data. NODE provides functions around the whole life cycle of omics data, from data archive, data requests/responses to data sharing, data analysis, data review and publish.", "abbreviation": "NODE", "support-links": [{"url": "node-support@picb.ac.cn", "name": "node-support@picb.ac.cn", "type": "Support email"}, {"url": "http://www.biosino.org/node/help", "name": "Help", "type": "Help documentation"}, {"url": "http://www.biosino.org/node/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.biosino.org/node/aboutUs", "name": "About Node", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://www.biosino.org/node/data/upload", "name": "Submit", "type": "data curation"}, {"url": "http://www.biosino.org/node/project/list", "name": "Browse by Project", "type": "data access"}, {"url": "http://www.biosino.org/node/experiment/list", "name": "Browse by Experiment", "type": "data access"}, {"url": "http://www.biosino.org/node/sample/list", "name": "Browse by Sample", "type": "data access"}, {"url": "http://www.biosino.org/node/run/list", "name": "Browse by Run", "type": "data access"}, {"url": "http://www.biosino.org/node/analysis/list", "name": "Browse by Analysis Type", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001151", "bsg-d001151"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Genomics", "Proteomics", "Life Science", "Metabolomics"], "domains": ["Electron microscopy", "Next generation DNA sequencing"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: National Omics Data Encyclopedia", "abbreviation": "NODE", "url": "https://fairsharing.org/10.25504/FAIRsharing.EivZJw", "doi": "10.25504/FAIRsharing.EivZJw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NODE (The National Omics Data Encyclopedia) provides an integrated, compatible, comparable, and scalable multi-omics resource platform that supports flexible data management and effective data release. NODE uses a hierarchical data architecture to support storage of muti-omics data including sequencing data, MS based proteomics data, MS or NMR based metabolomics data, and fluorescence imaging data.\nLaunched in early 2017, NODE has collected and published over 900 terabytes of omics data for researchers from China and all over the world in last three years, 22% of which contains multiple omics data. NODE provides functions around the whole life cycle of omics data, from data archive, data requests/responses to data sharing, data analysis, data review and publish.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 525, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2808", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-29T21:54:01.000Z", "updated-at": "2022-02-08T10:51:53.279Z", "metadata": {"doi": "10.25504/FAIRsharing.bece4c", "name": "MISTRALS", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "mistrals-database@sedoo.fr"}], "homepage": "https://mistrals.sedoo.fr/", "citations": [], "identifier": 2808, "description": "The MISTRALS database is a collection of information from satellite, geological and modelling data derived from a number of different data sources both within and without the MISTRALS community. The MISTRALS initiative has 6 programmes - BioDivMex, ChArMEx, HyMex, MERMex, PaleoMex, and SICMED. Registration is required.", "abbreviation": "MISTRALS", "support-links": [{"url": "charmex-database@sedoo.fr", "name": "ChArMEx Contact", "type": "Support email"}, {"url": "databasecontact@hymex.org", "name": "HyMeX Contact", "type": "Support email"}], "year-creation": 2010, "data-processes": [{"url": "https://mistrals.sedoo.fr/ChArMEx/", "name": "Search & Browse ChArMEx", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/BioDivMex/", "name": "Search & Browse BioDivMex", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/HyMeX/", "name": "Search & Browse HyMeX", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/MERMeX/", "name": "Search & Browse MERMeX", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/PaleoMeX/", "name": "Search & Browse PaleoMeX", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/SICMED/", "name": "Search & Browse SICMED", "type": "data access"}, {"url": "https://mistrals.sedoo.fr/", "name": "Search & Browse All Categories", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011673", "name": "re3data:r3d100011673", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001307", "bsg-d001307"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Geophysics", "Biodiversity", "Earth Science", "Bathymetry", "Atmospheric Science", "Remote Sensing", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Bathymetry", "Cryosphere"], "countries": ["France"], "name": "FAIRsharing record for: MISTRALS", "abbreviation": "MISTRALS", "url": "https://fairsharing.org/10.25504/FAIRsharing.bece4c", "doi": "10.25504/FAIRsharing.bece4c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MISTRALS database is a collection of information from satellite, geological and modelling data derived from a number of different data sources both within and without the MISTRALS community. The MISTRALS initiative has 6 programmes - BioDivMex, ChArMEx, HyMex, MERMex, PaleoMex, and SICMED. Registration is required.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2366", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-23T00:12:38.000Z", "updated-at": "2021-11-24T13:19:33.823Z", "metadata": {"doi": "10.25504/FAIRsharing.pj6a0t", "name": "Hepatitis C Virus Ires Variation Database", "status": "ready", "contacts": [{"contact-email": "info@hcvivdb.org"}], "homepage": "http://www.hcvivdb.org/", "identifier": 2366, "description": "HCVIVdb is a database of published variations observed within the internal ribosome entry site (IRES) of the hepatitis C Virus.", "abbreviation": "HCVIVdb", "year-creation": 2016, "data-processes": [{"url": "http://www.hcvivdb.org/download.php", "name": "Download Data", "type": "data access"}], "associated-tools": [{"url": "http://www.hcvivdb.org/search.php", "name": "Search"}, {"url": "http://www.hcvivdb.org/browse.php", "name": "Browse"}, {"url": "http://www.hcvivdb.org/submit.php", "name": "Submit Data"}]}, "legacy-ids": ["biodbcore-000845", "bsg-d000845"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Computational biological predictions", "Promoter", "Internal ribosome entry site"], "taxonomies": ["Hepatitis C virus"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Hepatitis C Virus Ires Variation Database", "abbreviation": "HCVIVdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.pj6a0t", "doi": "10.25504/FAIRsharing.pj6a0t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HCVIVdb is a database of published variations observed within the internal ribosome entry site (IRES) of the hepatitis C Virus.", "publications": [{"id": 1855, "pubmed_id": 27527702, "title": "HCVIVdb: The hepatitis-C IRES variation database", "year": 2016, "url": "http://doi.org/10.1186/s12866-016-0804-6", "authors": "Floden E.W., Khavaja A., Vop\u00e1lensk\u00fd V., Posp\u00ed\u0161ek M.", "journal": "BMC Microbiology", "doi": "10.1186/s12866-016-0804-6", "created_at": "2021-09-30T08:25:48.398Z", "updated_at": "2021-09-30T08:25:48.398Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3326", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-24T16:50:09.000Z", "updated-at": "2022-02-08T10:52:30.241Z", "metadata": {"doi": "10.25504/FAIRsharing.6a3ef8", "name": "DesignSafe Data Depot Repository", "status": "ready", "contacts": [{"contact-name": "Maria Esteva", "contact-email": "maria@tacc.utexas.edu"}], "homepage": "https://www.designsafe-ci.org/data/browser/public/", "citations": [{"doi": "doi:10.1061/(ASCE)NH.1527-6996.0000246", "publication-id": 2637}], "identifier": 3326, "description": "The Data Depot Repository (DDR) is the platform for curation and publication of datasets generated in the course of natural hazards research. The DDR is an open access data repository that enables data producers to safely store, share, organize, and describe research data, towards permanent publication, distribution and impact evaluation. The DDR allows data consumers to discover, search for, access, and reuse published data in an effort to accelerate research discovery. The DDR is one component of the DesignSafe cyberinfrastructure, which represents a comprehensive research environment that provides cloud-based tools to manage, analyze, understand, and publish critical data for research to understand the impacts of natural hazards. DesignSafe is part of the NSF-supported Natural Hazards Engineering Research Infrastructure (NHERI), and aligns with its mission to provide the natural hazards research community with open access, shared-use scholarship, education, and community resources aimed at supporting civil infrastructure prior to, during, and following natural disasters. However, DesignSafe also supports the broader natural hazards research community that extends beyond the NHERI network.", "abbreviation": null, "access-points": [{"url": "https://www.designsafe-ci.org/media/filer_public/90/d5/90d5ff98-3ca1-40a5-a2cb-2ead8f51ecb9/tapis-cli-how-to-guide-readthedocs-io-en-latest.pdf", "name": "API Documentation", "type": "Other"}], "support-links": [{"url": "https://www.designsafe-ci.org/facilities/virtual-office-hours/", "name": "DesignSafe Data Depot Repository Virtual Office Hours", "type": "Help documentation"}, {"url": "https://www.designsafe-ci.org/rw/user-guides/", "name": "DesignSafe User Guides", "type": "Help documentation"}, {"url": "https://www.designsafe-ci.org/rw/user-guide/data-depot/", "name": "DDR User Guide", "type": "Help documentation"}, {"url": "https://twitter.com/NHERIDesignSafe", "name": "@NHERIDesignSafe", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://www.designsafe-ci.org/rw/user-guides/data-curation-publication/", "name": "Data Curation and Publication User Guide", "type": "data curation"}, {"url": "https://www.designsafe-ci.org/data/browser/public/", "name": "Search", "type": "data access"}, {"url": "https://www.designsafe-ci.org/rw/user-guides/curating-publishing-projects/policies/publication/", "name": "Amends and Version Control - Policies", "type": "data versioning"}], "associated-tools": [{"url": "https://www.designsafe-ci.org/rw/user-guides/", "name": "Tool Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012308", "name": "re3data:r3d100012308", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001845", "bsg-d001845"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Civil Engineering", "Geotechnics", "Structural Engineering"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Data Curation", "Disaster Risk Management", "Earthquake", "Experimental Data", "Field Research", "Hybrid Simulation", "Natural Disaster", "natural hazards", "Natural Hazards Engineering", "Natural Hazards Events", "Simulation Data and Models", "Social and Behavioural Science", "Storm", "Wind"], "countries": ["United States"], "name": "FAIRsharing record for: DesignSafe Data Depot Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.6a3ef8", "doi": "10.25504/FAIRsharing.6a3ef8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data Depot Repository (DDR) is the platform for curation and publication of datasets generated in the course of natural hazards research. The DDR is an open access data repository that enables data producers to safely store, share, organize, and describe research data, towards permanent publication, distribution and impact evaluation. The DDR allows data consumers to discover, search for, access, and reuse published data in an effort to accelerate research discovery. The DDR is one component of the DesignSafe cyberinfrastructure, which represents a comprehensive research environment that provides cloud-based tools to manage, analyze, understand, and publish critical data for research to understand the impacts of natural hazards. DesignSafe is part of the NSF-supported Natural Hazards Engineering Research Infrastructure (NHERI), and aligns with its mission to provide the natural hazards research community with open access, shared-use scholarship, education, and community resources aimed at supporting civil infrastructure prior to, during, and following natural disasters. However, DesignSafe also supports the broader natural hazards research community that extends beyond the NHERI network.", "publications": [{"id": 2637, "pubmed_id": null, "title": "DesignSafe: A New Cyberinfrastructure for Natural Hazards Engineering", "year": 2017, "url": "http://doi.org/doi:10.1061/(ASCE)NH.1527-6996.0000246", "authors": "Rathje, E., Dawson, C. Padgett, J.E., Pinelli, J.-P., Stanzione, D., Adair, A., Arduino, P., Brandenberg, S.J., Cockerill, T., Dey, C., Esteva, M., Haan, Jr., F.L., Hanlon, M., Kareem, A., Lowes, L., Mock, S., and Mosqueda, G.", "journal": "ASCE Natural Hazards Review,", "doi": "doi:10.1061/(ASCE)NH.1527-6996.0000246", "created_at": "2021-09-30T08:27:23.871Z", "updated_at": "2021-09-30T08:27:23.871Z"}], "licence-links": [{"licence-name": "Design Safe Licensing Policies and Best Practices", "licence-id": 235, "link-id": 1090, "relation": "undefined"}, {"licence-name": "Design Safe Data Usage and Publication Policy", "licence-id": 234, "link-id": 1091, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1106, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 1107, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1126, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1127, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1192, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2927", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-03T14:34:24.000Z", "updated-at": "2022-02-08T10:53:46.738Z", "metadata": {"doi": "10.25504/FAIRsharing.7f07dd", "name": "Australian New Zealand Clinical Trials Registry", "status": "ready", "contacts": [], "homepage": "http://www.anzctr.org.au/", "citations": [], "identifier": 2927, "description": "The Australian New Zealand Clinical Trials Registry (ANZCTR) is an online register of clinical trials being undertaken in Australia, New Zealand and elsewhere. The ANZCTR includes trials from the full spectrum of therapeutic areas of pharmaceuticals, surgical procedures, preventive measures, lifestyle, devices, treatment and rehabilitation strategies and complementary therapies. The ANZCTR mandatory data items comply with the minimum dataset requirements of the International Committee of Medical Journal Editors (ICMJE) and the World Health Organization (WHO).", "abbreviation": "ANZCTR", "support-links": [{"url": "http://www.anzctr.org.au/Faq.aspx", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.anzctr.org.au/HowToSearch.aspx", "name": "How to search", "type": "Help documentation"}, {"url": "https://www.anzctr.org.au/News.aspx", "type": "Blog/News"}], "data-processes": [{"url": "http://www.anzctr.org.au/TrialSearch.aspx", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011164", "name": "re3data:r3d100011164", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001430", "bsg-d001430"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Public Health", "Health Science", "Virology", "Biomedical Science", "Epidemiology", "Preclinical Studies", "Medical Informatics"], "domains": ["Electronic health record"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["New Zealand", "Australia"], "name": "FAIRsharing record for: Australian New Zealand Clinical Trials Registry", "abbreviation": "ANZCTR", "url": "https://fairsharing.org/10.25504/FAIRsharing.7f07dd", "doi": "10.25504/FAIRsharing.7f07dd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Australian New Zealand Clinical Trials Registry (ANZCTR) is an online register of clinical trials being undertaken in Australia, New Zealand and elsewhere. The ANZCTR includes trials from the full spectrum of therapeutic areas of pharmaceuticals, surgical procedures, preventive measures, lifestyle, devices, treatment and rehabilitation strategies and complementary therapies. The ANZCTR mandatory data items comply with the minimum dataset requirements of the International Committee of Medical Journal Editors (ICMJE) and the World Health Organization (WHO).", "publications": [], "licence-links": [{"licence-name": "ANZCTR Terms and Conditions", "licence-id": 34, "link-id": 1153, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3312", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-20T13:00:24.000Z", "updated-at": "2022-02-08T10:55:17.537Z", "metadata": {"doi": "10.25504/FAIRsharing.e43c2d", "name": "Cardiac complicAtions in Patients With SARS Corona vIrus 2 regisTrY", "status": "ready", "homepage": "https://capacity-covid.eu/", "identifier": 3312, "description": "CAPACITY-COVID is a registry of patients with COVID-19, their history of cardiovascular disease and the occurrence of cardiovascular complications in COVID-19 patients. CAPACITY uses an extension of the CRF released by the ISARIC and WHO in response to the emerging outbreak of COVID-19.", "abbreviation": "CAPACITY-COVID", "support-links": [{"url": "https://capacity-covid.eu/capacity-news/", "name": "News", "type": "Blog/News"}, {"url": "https://capacity-covid.eu/contact/", "type": "Contact form"}], "year-creation": 2020}, "legacy-ids": ["biodbcore-001827", "bsg-d001827"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Public Health", "Health Science", "Medical Informatics"], "domains": ["Patient care"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": [], "name": "FAIRsharing record for: Cardiac complicAtions in Patients With SARS Corona vIrus 2 regisTrY", "abbreviation": "CAPACITY-COVID", "url": "https://fairsharing.org/10.25504/FAIRsharing.e43c2d", "doi": "10.25504/FAIRsharing.e43c2d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CAPACITY-COVID is a registry of patients with COVID-19, their history of cardiovascular disease and the occurrence of cardiovascular complications in COVID-19 patients. CAPACITY uses an extension of the CRF released by the ISARIC and WHO in response to the emerging outbreak of COVID-19.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3195", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-15T20:07:26.000Z", "updated-at": "2021-11-24T13:15:47.069Z", "metadata": {"doi": "10.25504/FAIRsharing.Ql6K87", "name": "ModelSEED Biochemistry Database", "status": "ready", "contacts": [{"contact-name": "Samuel Seaver", "contact-email": "samseaver@gmail.com", "contact-orcid": "0000-0002-7674-5194"}], "homepage": "https://modelseed.org/biochem", "identifier": 3195, "description": "For over 10 years, ModelSEED has been a primary resource for the construction of draft genome-scale metabolic models based on annotated microbial or plant genomes. The ModelSEED biochemistry database is the foundation of the biochemical data underlying ModelSEED and KBase. The The ModelSEED biochemistry database (i) includes compartmentalization, transport reactions, charged molecules and proton balancing on reactions; (ii) is extensible by the user community, with all data stored in GitHub; and (iii) designed as a biochemical \u2018Rosetta Stone\u2019 to facilitate comparison and integration of annotations from many different tools and databases. The database was constructed by combining chemical data from many resources, applying standard transformations, identifying redundancies and computing thermodynamic properties. The ModelSEED biochemistry is continually tested using flux balance analysis to ensure the biochemical network is modeling-ready and capable of simulating diverse phenotypes.", "access-points": [{"url": "https://modelseed.org/solr", "name": "Apache SOLR instance serving the biochemistry data", "type": "REST"}], "support-links": [{"url": "https://github.com/ModelSEED/ModelSEEDDatabase/issues", "name": "ModelSEED Biochemistry GitHub Issues", "type": "Github"}, {"url": "https://modelseed.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/ModelSEED/ModelSEEDDatabase", "name": "GitHub Project", "type": "Github"}], "year-creation": 2020, "data-processes": [{"url": "https://modelseed.org/biochem/reactions", "name": "Browse & search reactions", "type": "data access"}, {"url": "https://modelseed.org/biochem/compounds", "name": "Browse & search compounds", "type": "data access"}, {"url": "https://github.com/ModelSEED/ModelSEEDDatabase/releases", "name": "Data Versions", "type": "data versioning"}]}, "legacy-ids": ["biodbcore-001706", "bsg-d001706"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Integration", "Biochemistry", "Life Science"], "domains": ["Mathematical model", "Reaction data", "Data retrieval", "Computational biological predictions", "Network model", "Modeling and simulation", "Genome"], "taxonomies": ["Bacteria", "Fungi", "Plantae"], "user-defined-tags": ["Genome Scale Metabolic Model"], "countries": ["Denmark", "United States", "Switzerland"], "name": "FAIRsharing record for: ModelSEED Biochemistry Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.Ql6K87", "doi": "10.25504/FAIRsharing.Ql6K87", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: For over 10 years, ModelSEED has been a primary resource for the construction of draft genome-scale metabolic models based on annotated microbial or plant genomes. The ModelSEED biochemistry database is the foundation of the biochemical data underlying ModelSEED and KBase. The The ModelSEED biochemistry database (i) includes compartmentalization, transport reactions, charged molecules and proton balancing on reactions; (ii) is extensible by the user community, with all data stored in GitHub; and (iii) designed as a biochemical \u2018Rosetta Stone\u2019 to facilitate comparison and integration of annotations from many different tools and databases. The database was constructed by combining chemical data from many resources, applying standard transformations, identifying redundancies and computing thermodynamic properties. The ModelSEED biochemistry is continually tested using flux balance analysis to ensure the biochemical network is modeling-ready and capable of simulating diverse phenotypes.", "publications": [{"id": 3050, "pubmed_id": 32986834, "title": "The ModelSEED Biochemistry Database for the integration of metabolic annotations and the reconstruction, comparison and analysis of metabolic models for plants, fungi and microbes", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa746", "authors": "Samuel M D Seaver, Filipe Liu, Qizhi Zhang et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa746", "created_at": "2021-09-30T08:28:15.840Z", "updated_at": "2021-09-30T08:28:15.840Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 485, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3598", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-26T15:15:26.880Z", "updated-at": "2022-02-08T10:55:35.129Z", "metadata": {"doi": "10.25504/FAIRsharing.e12844", "name": "Marine and Hydrokinetic Data Repository", "status": "ready", "contacts": [{"contact-name": "MHKDR Help", "contact-email": "MHKDRHelp@nrel.gov", "contact-orcid": null}, {"contact-name": "OpenEI Webmaster", "contact-email": "OpenEI.Webmaster@nrel.gov", "contact-orcid": null}], "homepage": "https://mhkdr.openei.org/", "citations": [], "identifier": 3598, "description": "The MHKDR is the repository for all data collected using funds from the Water Power Technologies Office (WPTO) of the U.S. Department of Energy (DOE). It was established to receive, manage, and make available all water power relevant data generated from projects funded by the DOE Water Power Technologies Office. This includes data from WPTO-funded projects associated with any portion of the water power project life-cycle (exploration, development, operation), as well as data produced by WPTO-funded research.", "abbreviation": "MHKDR", "data-curation": {"type": "manual"}, "support-links": [{"url": "https://mhkdr.openei.org/faq", "name": "MHKDR Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "MHKDRHelp@nrel.gov", "name": "MHKDR Support", "type": "Support email"}, {"url": "https://www.youtube.com/playlist?list=PL4lfI7kmtVfqNwb7uQsSpfGI9dibufWG8", "name": "MHKDR Submission Micro-Tutorial Playlist", "type": "Video"}], "year-creation": 2015, "data-processes": [{"url": "https://mhkdr.openei.org/search?q=", "name": "Browse & Search", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013623", "name": "re3data:r3d100013623", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "open"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Energy Engineering", "Earth Science", "Power Engineering"], "domains": ["Resource metadata", "Marine environment", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Renewable Energy", "marine energy", "hydrokinetic energy"], "countries": ["United States"], "name": "FAIRsharing record for: Marine and Hydrokinetic Data Repository", "abbreviation": "MHKDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.e12844", "doi": "10.25504/FAIRsharing.e12844", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MHKDR is the repository for all data collected using funds from the Water Power Technologies Office (WPTO) of the U.S. Department of Energy (DOE). It was established to receive, manage, and make available all water power relevant data generated from projects funded by the DOE Water Power Technologies Office. This includes data from WPTO-funded projects associated with any portion of the water power project life-cycle (exploration, development, operation), as well as data produced by WPTO-funded research.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2488, "relation": "applies_to_content"}, {"licence-name": "OpenEI Disclaimer", "licence-id": 885, "link-id": 2489, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2261", "type": "fairsharing-records", "attributes": {"created-at": "2016-01-22T03:31:01.000Z", "updated-at": "2021-11-24T13:14:50.142Z", "metadata": {"doi": "10.25504/FAIRsharing.bcjrnq", "name": "Physiome Model Repository", "status": "ready", "contacts": [{"contact-name": "Repository Help", "contact-email": "help@physiomeproject.org"}], "homepage": "https://models.physiomeproject.org", "identifier": 2261, "description": "The Physiome Model Repository (PMR) is the main online repository for the IUPS Physiome Project, providing version and access controlled repositories, called workspaces, for users to store their data. PMR also provides a mechanism to create persistent access to specific revisions of a workspace, termed exposures. Exposure plugins are available for specific types of data (e.g., CellML or FieldML documents) which enable customizable views of the data when browsing the repository via a web browser, or an application accessing the repository\u2019s content via web services.", "abbreviation": "PMR", "access-points": [{"url": "https://models.physiomeproject.org", "name": "See https://aucklandphysiomerepository.readthedocs.io/en/latest/ for documentation.", "type": "REST"}], "support-links": [{"url": "https://models.physiomeproject.org/about/contact", "name": "General Contact", "type": "Contact form"}, {"url": "https://aucklandphysiomerepository.readthedocs.io/en/latest/", "name": "User Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/physiomeproject", "name": "@physiomeproject", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "https://models.physiomeproject.org/e/listing/full-list", "name": "Browse All", "type": "data access"}, {"url": "https://models.physiomeproject.org/pmr2_ricordo/query", "name": "Ontology Search", "type": "data access"}, {"url": "https://models.physiomeproject.org/morre_pmr2_search", "name": "Morre CellML search engine", "type": "data access"}, {"url": "https://models.physiomeproject.org/welcome", "name": "General Search", "type": "data access"}], "associated-tools": [{"url": "http://opencor.ws", "name": "OpenCOR"}, {"url": "https://github.com/pmr2", "name": "PMR2"}]}, "legacy-ids": ["biodbcore-000735", "bsg-d000735"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Mathematics", "Life Science", "Physiology", "Biomedical Science", "Systems Biology"], "domains": ["Mathematical model", "Modeling and simulation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "New Zealand"], "name": "FAIRsharing record for: Physiome Model Repository", "abbreviation": "PMR", "url": "https://fairsharing.org/10.25504/FAIRsharing.bcjrnq", "doi": "10.25504/FAIRsharing.bcjrnq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Physiome Model Repository (PMR) is the main online repository for the IUPS Physiome Project, providing version and access controlled repositories, called workspaces, for users to store their data. PMR also provides a mechanism to create persistent access to specific revisions of a workspace, termed exposures. Exposure plugins are available for specific types of data (e.g., CellML or FieldML documents) which enable customizable views of the data when browsing the repository via a web browser, or an application accessing the repository\u2019s content via web services.", "publications": [{"id": 932, "pubmed_id": 21216774, "title": "The Physiome Model Repository 2.", "year": 2011, "url": "http://doi.org/10.1093/bioinformatics/btq723", "authors": "Yu T,Lloyd CM,Nickerson DP,Cooling MT,Miller AK,Garny A,Terkildsen JR,Lawson J,Britten RD,Hunter PJ,Nielsen PM", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq723", "created_at": "2021-09-30T08:24:03.080Z", "updated_at": "2021-09-30T08:24:03.080Z"}, {"id": 935, "pubmed_id": 18658182, "title": "The CellML Model Repository.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn390", "authors": "Lloyd CM,Lawson JR,Hunter PJ,Nielsen PF", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn390", "created_at": "2021-09-30T08:24:03.454Z", "updated_at": "2021-09-30T08:24:03.454Z"}, {"id": 1405, "pubmed_id": 19380315, "title": "CellML metadata standards, associated tools and repositories.", "year": 2009, "url": "http://doi.org/10.1098/rsta.2008.0310", "authors": "Beard DA,Britten R,Cooling MT,Garny A,Halstead MD,Hunter PJ,Lawson J,Lloyd CM,Marsh J,Miller A,Nickerson DP,Nielsen PM,Nomura T,Subramanium S,Wimalaratne SM,Yu T", "journal": "Philos Trans A Math Phys Eng Sci", "doi": "10.1098/rsta.2008.0310", "created_at": "2021-09-30T08:24:57.083Z", "updated_at": "2021-09-30T08:24:57.083Z"}, {"id": 2143, "pubmed_id": 21235804, "title": "Revision history aware repositories of computational models of biological systems.", "year": 2011, "url": "http://doi.org/10.1186/1471-2105-12-22", "authors": "Miller AK,Yu T,Britten R,Cooling MT,Lawson J,Cowan D,Garny A,Halstead MD,Hunter PJ,Nickerson DP,Nunns G,Wimalaratne SM,Nielsen PM", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-12-22", "created_at": "2021-09-30T08:26:21.558Z", "updated_at": "2021-09-30T08:26:21.558Z"}, {"id": 2679, "pubmed_id": 17947072, "title": "Toward a curated CellML model repository.", "year": 2007, "url": "http://doi.org/10.1109/IEMBS.2006.260202", "authors": "Nickerson D,Stevens C,Halstead M,Hunter P,Nielsen P", "journal": "Conf Proc IEEE Eng Med Biol Soc", "doi": "10.1109/IEMBS.2006.260202", "created_at": "2021-09-30T08:27:28.980Z", "updated_at": "2021-09-30T08:27:28.980Z"}, {"id": 2686, "pubmed_id": 27051515, "title": "The Human Physiome: how standards, software and innovative service infrastructures are providing the building blocks to make it achievable.", "year": 2016, "url": "http://doi.org/10.1098/rsfs.2015.0103", "authors": "Nickerson D,Atalag K,de Bono B,Geiger J,Goble C,Hollmann S,Lonien J,Muller W,Regierer B,Stanford NJ,Golebiewski M,Hunter P", "journal": "Interface Focus", "doi": "10.1098/rsfs.2015.0103", "created_at": "2021-09-30T08:27:29.972Z", "updated_at": "2021-09-30T08:27:29.972Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1980", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.451Z", "metadata": {"doi": "10.25504/FAIRsharing.sgqf4n", "name": "MapViewer", "status": "deprecated", "contacts": [{"contact-name": "David L. Wheeler", "contact-email": "wheeler@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/mapview/", "identifier": 1980, "description": "The Map Viewer is a tool of Entrez Genomes that provides special browsing capabilities for eukaryotic chromosomes. It allows the user to view and search an organisms complete genome, display chromosome maps, and zoom into progressively greater levels of detail, down to the sequence data for a region of interest.", "abbreviation": "MapViewer", "support-links": [{"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/mapview/static/MapViewerHelp.html#ExercisesTutorials", "type": "Training documentation"}], "year-creation": 2000, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/mapview/", "name": "browse", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/mapview/", "name": "search", "type": "data access"}], "deprecation-date": "2021-06-25", "deprecation-reason": "As of 2017, this resource has been superceded by the NCBI Genome Data Viewer. For more information, please see https://ncbiinsights.ncbi.nlm.nih.gov/2018/04/25/ncbi-retires-map-viewer-web-interface/"}, "legacy-ids": ["biodbcore-000446", "bsg-d000446"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["DNA sequence data", "Genome visualization", "Chromosome", "Genome"], "taxonomies": ["All", "Eukaryota"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MapViewer", "abbreviation": "MapViewer", "url": "https://fairsharing.org/10.25504/FAIRsharing.sgqf4n", "doi": "10.25504/FAIRsharing.sgqf4n", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Map Viewer is a tool of Entrez Genomes that provides special browsing capabilities for eukaryotic chromosomes. It allows the user to view and search an organisms complete genome, display chromosome maps, and zoom into progressively greater levels of detail, down to the sequence data for a region of interest.", "publications": [{"id": 2461, "pubmed_id": 11125038, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.11", "authors": "Wheeler DL., Church DM., Lash AE., Leipe DD., Madden TL., Pontius JU., Schuler GD., Schriml LM., Tatusova TA., Wagner L., Rapp BA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.11", "created_at": "2021-09-30T08:27:01.844Z", "updated_at": "2021-09-30T08:27:01.844Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1185, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3599", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-26T16:31:39.777Z", "updated-at": "2022-02-08T10:55:43.629Z", "metadata": {"doi": "10.25504/FAIRsharing.6b644d", "name": "National Alliance for Water Innovation Water Data Analysis and Management System", "status": "ready", "contacts": [{"contact-name": "Water DAMS Help", "contact-email": "WaterDAMSHelp@nrel.gov", "contact-orcid": null}, {"contact-name": "OpenEI Webmaster", "contact-email": "OpenEI.Webmaster@nrel.gov", "contact-orcid": null}], "homepage": "https://nawi.openei.org/home", "citations": [], "identifier": 3599, "description": "Water DAMS (Water Data Analysis and Management System) provides access to foundational water treatment technology data that enable researchers and decision-makers to identify and quantify opportunities for technology innovations to reduce the cost and energy intensity of desalination. It is the submission point for all data generated by research conducted by the National Alliance for Water Innovation (NAWI) and is designed to be used by the broader water research community. With publicly accessible contributions from a variety of academic and industrial partners, Water DAMS seeks to enable data discoverability, improve accessibility, and accelerate collaboration that contributes to pipe parity and innovation in water treatment technologies.", "abbreviation": "NAWI Water DAMS", "data-curation": {"type": "manual"}, "support-links": [{"url": "https://www.youtube.com/playlist?list=PL4lfI7kmtVfpURKIfpW0vFPVvaX6S-R_q", "name": "Water DAMS Submission Video Tutorials", "type": "Video"}, {"url": "https://nawi.openei.org/faq", "name": "Water DAMS Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://waterdams.nawihub.org/submissions/11", "name": "Water DAMS Best Practices", "type": "Training documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://nawi.openei.org/search", "name": "Browse & Search", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013624", "name": "re3data:r3d100013624", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "open"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Energy Engineering", "Earth Science", "Water Management", "Water Research"], "domains": ["Resource metadata", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Renewable Energy"], "countries": ["United States"], "name": "FAIRsharing record for: National Alliance for Water Innovation Water Data Analysis and Management System", "abbreviation": "NAWI Water DAMS", "url": "https://fairsharing.org/10.25504/FAIRsharing.6b644d", "doi": "10.25504/FAIRsharing.6b644d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Water DAMS (Water Data Analysis and Management System) provides access to foundational water treatment technology data that enable researchers and decision-makers to identify and quantify opportunities for technology innovations to reduce the cost and energy intensity of desalination. It is the submission point for all data generated by research conducted by the National Alliance for Water Innovation (NAWI) and is designed to be used by the broader water research community. With publicly accessible contributions from a variety of academic and industrial partners, Water DAMS seeks to enable data discoverability, improve accessibility, and accelerate collaboration that contributes to pipe parity and innovation in water treatment technologies.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2490, "relation": "applies_to_content"}, {"licence-name": "OpenEI Disclaimer", "licence-id": 885, "link-id": 2491, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2900", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-05T13:46:58.000Z", "updated-at": "2022-02-08T10:31:28.163Z", "metadata": {"doi": "10.25504/FAIRsharing.cd9b23", "name": "BioCode", "status": "ready", "contacts": [{"contact-name": "Yiming Bao", "contact-email": "baoym@big.ac.cn", "contact-orcid": "0000-0002-9922-9723"}], "homepage": "https://bigd.big.ac.cn/biocode", "identifier": 2900, "description": "BioCode is a repository for bioinformatics software.", "abbreviation": "BioCode", "support-links": [{"url": "https://bigd.big.ac.cn/biocode/home/stats", "name": "Statistics", "type": "Help documentation"}], "data-processes": [{"url": "https://bigd.big.ac.cn/gsub/", "name": "Submit", "type": "data curation"}, {"url": "https://bigd.big.ac.cn/biocode/categories", "name": "Browse Categories", "type": "data access"}, {"url": "https://bigd.big.ac.cn/biocode/tools/search", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001401", "bsg-d001401"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: BioCode", "abbreviation": "BioCode", "url": "https://fairsharing.org/10.25504/FAIRsharing.cd9b23", "doi": "10.25504/FAIRsharing.cd9b23", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioCode is a repository for bioinformatics software.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1355, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3073", "type": "fairsharing-records", "attributes": {"created-at": "2020-08-04T14:16:07.000Z", "updated-at": "2022-02-08T10:56:44.956Z", "metadata": {"doi": "10.25504/FAIRsharing.07cf72", "name": "WorkflowHub", "status": "ready", "contacts": [], "homepage": "https://workflowhub.eu", "citations": [], "identifier": 3073, "description": "The WorkflowHub is a registry of scientific workflows.", "abbreviation": "WorkflowHub", "access-points": [{"url": "https://workflowhub.eu/", "name": "Open API conformant JSON REST", "type": "REST"}], "support-links": [{"url": "https://workflowhub.eu/home/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://github.com/seek4science/seek/issues/new?labels=workflowhub", "name": "Report Issues", "type": "Github"}, {"url": "https://about.workflowhub.eu/", "name": "About and Help", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://workflowhub.eu/workflows", "name": "Browse", "type": "data access"}, {"url": "https://workflowhub.eu/login?return_to=%2Fworkflows%2Fnew", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://docs.seek4science.org/", "name": "SEEK 1.10.3"}, {"url": "https://github.com/common-workflow-language/cwlviewer", "name": "CWL Viewer 1.3.0"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001581", "bsg-d001581"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Subject Agnostic"], "domains": ["Workflow"], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "Belgium"], "name": "FAIRsharing record for: WorkflowHub", "abbreviation": "WorkflowHub", "url": "https://fairsharing.org/10.25504/FAIRsharing.07cf72", "doi": "10.25504/FAIRsharing.07cf72", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The WorkflowHub is a registry of scientific workflows.", "publications": [], "licence-links": [{"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 1655, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2465", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T14:13:12.000Z", "updated-at": "2022-02-08T14:43:05.685Z", "metadata": {"doi": "10.25504/FAIRsharing.58bd67", "name": "Finnish Biodiversity Information Facility Digitarium IPT - GBIF Finland", "status": "ready", "contacts": [{"contact-name": "Hannu Saarenmaa", "contact-email": "hannu.saarenmaa@uef.fi", "contact-orcid": "0000-0003-3716-575X"}, {"contact-name": "Aino Kaisa Juslen", "contact-email": "aino.juslen@helsinki.fi", "contact-orcid": "0000-0001-9434-5250"}], "homepage": "https://ipt.laji.fi/ipt/", "citations": [], "identifier": 2465, "description": "Finnish Biodiversity Information Facility (FinBIF) maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). FinBIF compiles Finnish biodiversity information to one single service for open access sharing and contains information on species, their occurrences, distribution and scientific collections.", "abbreviation": "FinBIF Digitarium IPT - GBIF Finland", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "data-processes": [{"url": "http://ipt.digitarium.fi/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request a new feature", "type": "data curation"}], "deprecation-date": null, "deprecation-reason": null}, "legacy-ids": ["biodbcore-000947", "bsg-d000947"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Citation", "Taxonomic classification", "Biobank", "Resource collection", "Biological sample", "FAIR", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: Finnish Biodiversity Information Facility Digitarium IPT - GBIF Finland", "abbreviation": "FinBIF Digitarium IPT - GBIF Finland", "url": "https://fairsharing.org/10.25504/FAIRsharing.58bd67", "doi": "10.25504/FAIRsharing.58bd67", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Finnish Biodiversity Information Facility (FinBIF) maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). FinBIF compiles Finnish biodiversity information to one single service for open access sharing and contains information on species, their occurrences, distribution and scientific collections.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1545, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1548, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1551, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1552, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBLUT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--2b7555d037f5150b4f36a789c7eee0c5db39d9d4/LAJI_FI_valk.png?disposition=inline"}} +{"id": "2857", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-14T16:19:31.000Z", "updated-at": "2022-02-09T09:57:36.369Z", "metadata": {"doi": "10.25504/FAIRsharing.q9VUYM", "name": "BBMRI-ERIC Directory", "status": "ready", "contacts": [{"contact-name": "Petr Holub", "contact-email": "petr.holub@bbmri-eric.eu", "contact-orcid": "0000-0002-5358-616X"}], "homepage": "https://directory.bbmri-eric.eu/", "citations": [{"doi": "10.1089/bio.2016.0088", "pubmed-id": 27936342, "publication-id": 2635}], "identifier": 2857, "description": "The BBMRI-ERIC Directory is a tool to share aggregate information about biobanks across Europe. The Directory welcomes new biobanks to join and publish information about themselves, including their contact information in the directory. The BBMRI-ERIC Directory can help researchers find relevant biobanks, get their contact information and identify appropriate infrastructure for the storage of samples for research purposes.", "abbreviation": null, "access-points": [{"url": "https://directory.bbmri-eric.eu/api/v2/", "name": "Directory v2 API", "type": "REST"}, {"url": "https://directory.bbmri-eric.eu/api/v1/", "name": "Directory v1 API", "type": "REST"}], "year-creation": 2015, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013028", "name": "re3data:r3d100013028", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001358", "bsg-d001358"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Life Science", "Human Biology"], "domains": ["Biobank", "Biological sample", "Tissue"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Poland", "Estonia", "Norway", "Belgium", "European Union", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Bulgaria", "Switzerland", "Latvia"], "name": "FAIRsharing record for: BBMRI-ERIC Directory", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.q9VUYM", "doi": "10.25504/FAIRsharing.q9VUYM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BBMRI-ERIC Directory is a tool to share aggregate information about biobanks across Europe. The Directory welcomes new biobanks to join and publish information about themselves, including their contact information in the directory. The BBMRI-ERIC Directory can help researchers find relevant biobanks, get their contact information and identify appropriate infrastructure for the storage of samples for research purposes.", "publications": [{"id": 2635, "pubmed_id": 27936342, "title": "BBMRI-ERIC Directory: 515 Biobanks with Over 60 Million Biological Samples", "year": 2016, "url": "http://doi.org/10.1089/bio.2016.0088", "authors": "Petr Holub, Morris Swertz, Robert Reihs, David van Enckevort, Heimo M\u00fcller, and Jan-Eric Litton", "journal": "Biopreservation and Biobanking", "doi": "10.1089/bio.2016.0088", "created_at": "2021-09-30T08:27:23.638Z", "updated_at": "2021-09-30T08:27:23.638Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2467", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T15:01:46.000Z", "updated-at": "2021-11-24T13:16:29.844Z", "metadata": {"doi": "10.25504/FAIRsharing.ptp5tb", "name": "GBIF Benin IPT - GBIF France", "status": "ready", "contacts": [{"contact-name": "Jean C. Ganglo", "contact-email": "gangloc@gmail.com"}], "homepage": "http://ipt-benin.gbif.fr/", "identifier": 2467, "description": "GBIF France hosts this data repository on behalf of GBIF Benin in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT).", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://ipt.gbifbenin.org/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request a new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000949", "bsg-d000949"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Benin", "France"], "name": "FAIRsharing record for: GBIF Benin IPT - GBIF France", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ptp5tb", "doi": "10.25504/FAIRsharing.ptp5tb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF France hosts this data repository on behalf of GBIF Benin in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 999, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1002, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1003, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1005, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2699", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-03T20:35:43.000Z", "updated-at": "2022-02-08T10:51:14.159Z", "metadata": {"doi": "10.25504/FAIRsharing.1e2ced", "name": "Ocean Network Canada", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nfo@oceannetworks.ca"}], "homepage": "https://data.oceannetworks.ca/home?TREETYPE=1&LOCATION=11&TIMECONFIG=0", "identifier": 2699, "description": "Ocean Networks Canada is a database on data pertaining to the ocean and marine environment.", "abbreviation": null, "support-links": [{"url": "http://www.oceannetworks.ca/about-us/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://twitter.com/Ocean_Networks", "name": "Twitter", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://data.oceannetworks.ca/DataSearch", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011094", "name": "re3data:r3d100011094", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001197", "bsg-d001197"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": [], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Ocean Network Canada", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.1e2ced", "doi": "10.25504/FAIRsharing.1e2ced", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ocean Networks Canada is a database on data pertaining to the ocean and marine environment.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3096", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-03T09:14:11.000Z", "updated-at": "2021-12-06T10:49:32.267Z", "metadata": {"doi": "10.25504/FAIRsharing.YzTIE8", "name": "National Tibetan Plateau/Third Pole Environment Data Center", "status": "ready", "contacts": [{"contact-name": "Xiaolei Niu", "contact-email": "xniu@itpcas.ac.cn", "contact-orcid": "0000-0001-8857-6044G"}], "homepage": "https://data.tpdc.ac.cn/en/", "identifier": 3096, "description": "The National Tibetan Plateau/Third Pole Environment Data Center (TPDC) stores research data concerning the Tibetan Plateau and surrounding regions. TPDC provides online and offline sharing protocols for data users with bilingual data sharing in Chinese and English. There are more than 2400 datasets shared by TPDC, covering geography, atmospheric science, cryospheric science, hydrology, ecology, geology, geophysics, natural resource science, social economy, and other fields. TPDC aims to provide data according to the FAIR ( findable, accessible, interoperable, and reusable) data sharing principles. Digital Object Identifiers (DOI) are used for scientific data access, tracking, and citation.", "abbreviation": "TPDC", "support-links": [{"url": "https://data.tpdc.ac.cn/en/news", "name": "News", "type": "Blog/News"}, {"url": "https://data.tpdc.ac.cn/en/about/contact", "name": "Contact Support", "type": "Help documentation"}, {"url": "https://data.tpdc.ac.cn/en/about/us/", "name": "About", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://data.tpdc.ac.cn/en/about/citation/", "name": "Data Curation", "type": "data curation"}, {"url": "https://data.tpdc.ac.cn/en/data", "name": "Browse Data", "type": "data access"}, {"url": "https://data.tpdc.ac.cn/en/data/map", "name": "Search on Map", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013285", "name": "re3data:r3d100013285", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001604", "bsg-d001604"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geography", "Geophysics", "Ecology", "Earth Science", "Atmospheric Science", "Water Research", "Hydrology"], "domains": ["Modeling and simulation"], "taxonomies": ["All"], "user-defined-tags": ["Cryosphere"], "countries": ["China"], "name": "FAIRsharing record for: National Tibetan Plateau/Third Pole Environment Data Center", "abbreviation": "TPDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.YzTIE8", "doi": "10.25504/FAIRsharing.YzTIE8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Tibetan Plateau/Third Pole Environment Data Center (TPDC) stores research data concerning the Tibetan Plateau and surrounding regions. TPDC provides online and offline sharing protocols for data users with bilingual data sharing in Chinese and English. There are more than 2400 datasets shared by TPDC, covering geography, atmospheric science, cryospheric science, hydrology, ecology, geology, geophysics, natural resource science, social economy, and other fields. TPDC aims to provide data according to the FAIR ( findable, accessible, interoperable, and reusable) data sharing principles. Digital Object Identifiers (DOI) are used for scientific data access, tracking, and citation.", "publications": [{"id": 3040, "pubmed_id": null, "title": "National Tibetan Plateau Data Center Established to Promote Third-Pole Earth System Sciences", "year": 2020, "url": "https://ui.adsabs.harvard.edu/abs/2020EGUGA..22.1710L/abstract", "authors": "Xin Li, Xiaolei Niu, Xiaoduo Pan, and Xuejun Guo", "journal": "GEWEX Quarterly", "doi": null, "created_at": "2021-09-30T08:28:14.691Z", "updated_at": "2021-09-30T08:28:14.691Z"}], "licence-links": [{"licence-name": "National Tibetan Plateau Data Center (NTPDC) Terms of Use", "licence-id": 547, "link-id": 621, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 622, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2820", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-10T21:10:05.000Z", "updated-at": "2021-12-06T10:47:52.490Z", "metadata": {"doi": "10.25504/FAIRsharing.2VADoR", "name": "The Data Platform for Plasma Technology", "status": "ready", "contacts": [{"contact-name": "Markus Becker", "contact-email": "markus.becker@inp-greifswald.de", "contact-orcid": "0000-0001-9324-3236"}], "homepage": "https://www.inptdat.de", "citations": [], "identifier": 2820, "description": "The interdisciplinary data platform INPTDAT provides easy access to research data and information from all fields of applied plasma physics and plasma medicine. It aims to support the findability, accessibility, interoperability and re-use of data for the low-temperature plasma physics community.", "abbreviation": "INPTDAT", "support-links": [{"url": "https://inptdat.de/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.inptdat.de/about", "name": "About", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.inptdat.de/search/type/dataset", "name": "Search", "type": "data access"}, {"url": "https://www.inptdat.de/search/type/data_dashboard", "name": "Search Plasma Sources", "type": "data access"}, {"url": "https://www.inptdat.de/groups", "name": "Browse by Groups", "type": "data access"}], "associated-tools": [{"url": "https://getdkan.org", "name": "dkan"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013120", "name": "re3data:r3d100013120", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001319", "bsg-d001319"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Atomic, Molecular, Optical and Plasma Physics", "Physical Chemistry", "Materials Science", "Medical Physics"], "domains": ["Bioactivity", "FAIR"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: The Data Platform for Plasma Technology", "abbreviation": "INPTDAT", "url": "https://fairsharing.org/10.25504/FAIRsharing.2VADoR", "doi": "10.25504/FAIRsharing.2VADoR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The interdisciplinary data platform INPTDAT provides easy access to research data and information from all fields of applied plasma physics and plasma medicine. It aims to support the findability, accessibility, interoperability and re-use of data for the low-temperature plasma physics community.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1123, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1124, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1125, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2682", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-16T15:27:17.000Z", "updated-at": "2021-11-24T13:15:39.758Z", "metadata": {"doi": "10.25504/FAIRsharing.SFORSe", "name": "Sex-Associated Gene Database", "status": "ready", "contacts": [{"contact-name": "Zhen-Xia Chen", "contact-email": "zhen-xia.chen@mail.hzau.edu.cn", "contact-orcid": "0000-0003-0474-902X"}], "homepage": "http://bioinfo.life.hust.edu.cn/SAGD", "citations": [{"doi": "10.1093/nar/gky1040", "publication-id": 138}], "identifier": 2682, "description": "Many animal species present sex differences. Sex-associated genes (SAGs), which have female-biased or male-biased expression, have major influences on the remarkable sex differences in important traits such as growth, reproduction, disease resistance and behaviors. However, the SAGs resulting in the vast majority of phenotypic sex differences are still unknown. To provide a useful resource for the functional study of SAGs, we manually curated public RNA-seq datasets with paired female and male biological replicates from the same condition and systematically re-analyzed the datasets using standardized methods. We identified 27,793 female-biased SAGs and 64,043 male-biased SAGs from 2,828 samples of 21 species, including human, chimpanzee, macaque, mouse, rat, cow, horse, chicken, zebrafish, seven fly species and five worm species. All these data were cataloged into SAGD, a user-friendly database of SAGs where users can browse SAGs by gene, species, drug, and dataset. In SAGD, the expression, annotation, targeting drugs, homologs, ontology and related RNA-seq datasets of SAGs are provided to help researchers to explore their functions and potential applications in agriculture and human health.", "abbreviation": "SAGD", "support-links": [{"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/help", "name": "SAGD Help Pages", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/browse_species", "name": "Browse by Species", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/#!/browse_gene", "name": "Browse by Gene", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/drug", "name": "Browse by Drug", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/dataset", "name": "Browse by Dataset", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/download", "name": "Data Download", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/SAGD#!/submission", "name": "Submit Data", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001177", "bsg-d001177"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Animal Genetics", "Life Science"], "domains": ["Differential gene expression analysis", "Animal organ development", "RNA sequencing"], "taxonomies": ["Bos taurus", "Caenorhabditis", "Danio rerio", "Drosophila", "Equus caballus", "Gallus gallus", "Homo sapiens", "Macaca mulatta", "Mus musculus", "Pan troglodytes", "Pristionchus pacificus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Sex-Associated Gene Database", "abbreviation": "SAGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.SFORSe", "doi": "10.25504/FAIRsharing.SFORSe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Many animal species present sex differences. Sex-associated genes (SAGs), which have female-biased or male-biased expression, have major influences on the remarkable sex differences in important traits such as growth, reproduction, disease resistance and behaviors. However, the SAGs resulting in the vast majority of phenotypic sex differences are still unknown. To provide a useful resource for the functional study of SAGs, we manually curated public RNA-seq datasets with paired female and male biological replicates from the same condition and systematically re-analyzed the datasets using standardized methods. We identified 27,793 female-biased SAGs and 64,043 male-biased SAGs from 2,828 samples of 21 species, including human, chimpanzee, macaque, mouse, rat, cow, horse, chicken, zebrafish, seven fly species and five worm species. All these data were cataloged into SAGD, a user-friendly database of SAGs where users can browse SAGs by gene, species, drug, and dataset. In SAGD, the expression, annotation, targeting drugs, homologs, ontology and related RNA-seq datasets of SAGs are provided to help researchers to explore their functions and potential applications in agriculture and human health.", "publications": [{"id": 138, "pubmed_id": null, "title": "SAGD: a Comprehensive Sex-Associated Gene Database from Transcriptomes", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1040", "authors": "Meng-Wei Shi1, Na-An Zhang1, Chuan-Ping Shi1, Chun-Jie Liu2, Zhi-Hui Luo1, Dan-Yang Wang1, An-Yuan Guo2*, Zhen-Xia Chen1*", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1040", "created_at": "2021-09-30T08:22:35.106Z", "updated_at": "2021-09-30T08:22:35.106Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2807", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-24T20:32:29.000Z", "updated-at": "2021-12-06T10:47:24.537Z", "metadata": {"name": "CHAllenging Minisatellite Payload", "status": "ready", "contacts": [{"contact-name": "Claudia Stolle", "contact-email": "claudia.stolle@gfz-potsdam.de", "contact-orcid": "0000-0002-5717-1623"}], "homepage": "https://www.gfz-potsdam.de/champ/", "identifier": 2807, "description": "Data collected by a German mini satellite that was in orbit for over 10 years.", "abbreviation": "CHAMP", "support-links": [{"url": "http://dataservices.gfz-potsdam.de/panmetaworks/metaedit/resources/pdf/GFZ-Metadata-Editor_functionality_20161002.pdf", "name": "GFZ Metadata Editor", "type": "Help documentation"}, {"url": "http://dataservices.gfz-potsdam.de/panmetaworks/metaedit/resources/pdf/Metadata-Form-Documentation_20161002.pdf", "name": "Explanation for Metadata Fields used by GFZ Data Services", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "http://dataservices.gfz-potsdam.de/portal/?q=champ*", "name": "GFZ Data Services", "type": "data access"}, {"url": "http://dataservices.gfz-potsdam.de/panmetaworks/metaedit/", "name": "Submit", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011110", "name": "re3data:r3d100011110", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001306", "bsg-d001306"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Electromagnetism", "Astrophysics and Astronomy", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Electromagnetism", "Gravity", "Satellite Data"], "countries": ["Germany"], "name": "FAIRsharing record for: CHAllenging Minisatellite Payload", "abbreviation": "CHAMP", "url": "https://fairsharing.org/fairsharing_records/2807", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data collected by a German mini satellite that was in orbit for over 10 years.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3165", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-29T12:39:13.000Z", "updated-at": "2022-02-02T09:48:53.689Z", "metadata": {"name": "Data and Sample Research System for Whole Cruise Information", "status": "deprecated", "contacts": [{"contact-name": "Data Management Group Contact", "contact-email": "dmo@jamstec.go.jp"}], "homepage": "http://www.godac.jamstec.go.jp/darwin/e", "citations": [], "identifier": 3165, "description": "The Data and Sample Research System for Whole Cruise Information (DARWIN) resource provides information for data, rock samples, and sediment core samples obtained by its research vessels and submersibles. Most data is publicly available, with some extra features available after registration.", "abbreviation": "DARWIN", "support-links": [{"url": "http://www.godac.jamstec.go.jp/darwin/explain/2/e", "name": "DARWIN Manual", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://www.godac.jamstec.go.jp/darwin/mapsearch/e", "name": "Map Search", "type": "data access"}, {"url": "http://www.godac.jamstec.go.jp/darwin/datatree/e", "name": "Browse Data Tree", "type": "data access"}, {"url": "http://www.godac.jamstec.go.jp/darwin/datasearch/e", "name": "Detailed Search", "type": "data access"}], "deprecation-date": "2022-01-31", "deprecation-reason": "This resource is currently unavailable, but will be re-published in the future."}, "legacy-ids": ["biodbcore-001676", "bsg-d001676"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology", "Geodesy", "Earth Science", "Bathymetry", "Atmospheric Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Bathymetry"], "countries": ["Japan"], "name": "FAIRsharing record for: Data and Sample Research System for Whole Cruise Information", "abbreviation": "DARWIN", "url": "https://fairsharing.org/fairsharing_records/3165", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data and Sample Research System for Whole Cruise Information (DARWIN) resource provides information for data, rock samples, and sediment core samples obtained by its research vessels and submersibles. Most data is publicly available, with some extra features available after registration.", "publications": [], "licence-links": [{"licence-name": "JAMSTEC Data Policy", "licence-id": 467, "link-id": 2049, "relation": "undefined"}, {"licence-name": "DARWIN JAMSTEC Data Policy", "licence-id": 210, "link-id": 2050, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2504", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-07T13:56:30.000Z", "updated-at": "2021-12-06T10:48:40.530Z", "metadata": {"doi": "10.25504/FAIRsharing.hm1mfg", "name": "Archaeology Data Service", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "help@archaeologydataservice.ac.uk"}], "homepage": "http://archaeologydataservice.ac.uk/about.xhtml", "identifier": 2504, "description": "The Archaeology Data Service (ADS) supports research, learning and teaching with freely available, high quality and dependable digital resources. The ADS promotes good practice in the use of digital data in archaeology, it provides technical advice to the research community, and supports the deployment of digital technologies.", "abbreviation": "ADS", "support-links": [{"url": "https://archaeologydataservice.ac.uk/about/help.xhtml", "name": "ADS FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/ADS_Update", "name": "Twitter", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"url": "https://archaeologydataservice.ac.uk/advice/PolicyDocuments.xhtml#PresPol", "name": "ADS Archives", "type": "data curation"}], "associated-tools": [{"url": "http://archaeologydataservice.ac.uk/archsearch/basic.xhtml", "name": "ArchSearch"}, {"url": "https://archaeologydataservice.ac.uk/archive/", "name": "ADS Archives"}, {"url": "https://archaeologydataservice.ac.uk/library/", "name": "ADS LIbrary"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000006", "name": "re3data:r3d100000006", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000986", "bsg-d000986"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Archaeology", "Humanities", "Prehistory", "Natural Science", "History"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Archaeology Data Service", "abbreviation": "ADS", "url": "https://fairsharing.org/10.25504/FAIRsharing.hm1mfg", "doi": "10.25504/FAIRsharing.hm1mfg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Archaeology Data Service (ADS) supports research, learning and teaching with freely available, high quality and dependable digital resources. The ADS promotes good practice in the use of digital data in archaeology, it provides technical advice to the research community, and supports the deployment of digital technologies.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 979, "relation": "undefined"}, {"licence-name": "ADS Terms of Use and Access", "licence-id": 12, "link-id": 982, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1907", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:37.503Z", "metadata": {"doi": "10.25504/FAIRsharing.h5epxm", "name": "Daphnia Water Flea Genome Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "daphnia@iubio.bio.indiana.edu"}], "homepage": "http://wfleabase.org/", "identifier": 1907, "description": "wFleaBase includes data from all species of the genus, yet the primary species are Daphnia pulex and Daphnia magna, because of the broad set of genomic tools that have already been developed for these animals.", "abbreviation": "wFleaBase", "support-links": [{"url": "http://wfleabase.org/docs/", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "ftp://iubio.bio.indiana.edu/daphnia/", "name": "Download", "type": "data access"}, {"url": "http://wfleabase.org/gbrowse/", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://wfleabase.org/blast/", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000372", "bsg-d000372"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Ecology", "Computational Biology", "Life Science"], "domains": ["Genome visualization", "Genome"], "taxonomies": ["Daphnia", "Daphnia magna", "Daphnia pulex"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Daphnia Water Flea Genome Database", "abbreviation": "wFleaBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.h5epxm", "doi": "10.25504/FAIRsharing.h5epxm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: wFleaBase includes data from all species of the genus, yet the primary species are Daphnia pulex and Daphnia magna, because of the broad set of genomic tools that have already been developed for these animals.", "publications": [{"id": 412, "pubmed_id": 15752432, "title": "wFleaBase: the Daphnia genome database.", "year": 2005, "url": "http://doi.org/10.1186/1471-2105-6-45", "authors": "Colbourne JK., Singan VR., Gilbert DG.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-6-45", "created_at": "2021-09-30T08:23:04.766Z", "updated_at": "2021-09-30T08:23:04.766Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 516, "relation": "undefined"}, {"licence-name": "wFleaBase Academic use", "licence-id": 859, "link-id": 517, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3346", "type": "fairsharing-records", "attributes": {"created-at": "2021-07-08T12:52:38.000Z", "updated-at": "2022-02-08T10:37:50.976Z", "metadata": {"doi": "10.25504/FAIRsharing.d1602f", "name": "Knowledge Repository of the Central University of Punjab Library", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "library@cup.edu.in"}], "homepage": "http://kr.cup.edu.in/", "citations": [], "identifier": 3346, "description": "Knowledge Repository is a service initiated by the Central University of Punjab Library that provides long-term access to the scholarly resources generated by the University. The primary objective of this service is to collect, organize, preserve and provide access and dissemination of scholarly resources produced by the faculty members, student, staff and other members of the University Community. Submissions include (but are not limited to) journal articles, conference papers, book chapters, working papers, report, theses and dissertations.", "abbreviation": "Knowledge Repository", "support-links": [{"url": "http://kr.cup.edu.in/feed/rss_2.0/site", "name": "RSS 2.0 Feed", "type": "Blog/News"}], "data-processes": [{"url": "http://kr.cup.edu.in/browse?type=subject", "name": "Browse by Subject", "type": "data access"}, {"url": "http://kr.cup.edu.in/", "name": "Search", "type": "data access"}, {"url": "http://kr.cup.edu.in/community-list", "name": "Browse by School/Collection", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001884", "bsg-d001884"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["India"], "name": "FAIRsharing record for: Knowledge Repository of the Central University of Punjab Library", "abbreviation": "Knowledge Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.d1602f", "doi": "10.25504/FAIRsharing.d1602f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Knowledge Repository is a service initiated by the Central University of Punjab Library that provides long-term access to the scholarly resources generated by the University. The primary objective of this service is to collect, organize, preserve and provide access and dissemination of scholarly resources produced by the faculty members, student, staff and other members of the University Community. Submissions include (but are not limited to) journal articles, conference papers, book chapters, working papers, report, theses and dissertations.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2536", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-20T20:06:12.000Z", "updated-at": "2021-12-06T10:49:06.231Z", "metadata": {"doi": "10.25504/FAIRsharing.r3fzzc", "name": "Woods Hole Open Access Server", "status": "ready", "contacts": [{"contact-name": "Deborah Roth", "contact-email": "whoas@whoi.edu", "contact-orcid": "0000-0003-2901-9517"}], "homepage": "https://darchive.mblwhoilibrary.org/", "identifier": 2536, "description": "The mission of the Woods Hole Open Access Server, WHOAS is to capture, store, preserve, and redistribute the intellectual output of the Woods Hole scientific community in digital form. WHOAS, an institutional repository, is managed by the MBLWHOI Library as a service to the Woods Hole scientific community.", "abbreviation": "WHOAS", "support-links": [{"url": "https://darchive.mblwhoilibrary.org/contact", "name": "WHOAS Contact Form", "type": "Contact form"}], "year-creation": 2004, "data-processes": [{"url": "https://darchive.mblwhoilibrary.org/browse?type=dateissued", "name": "Browse by Issue Date", "type": "data access"}, {"url": "https://darchive.mblwhoilibrary.org/browse?type=author", "name": "Browse by Authors", "type": "data access"}, {"url": "https://darchive.mblwhoilibrary.org/browse?type=title", "name": "Browse by Title", "type": "data access"}, {"url": "https://darchive.mblwhoilibrary.org/browse?type=subject", "name": "Browse by Keyword", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010423", "name": "re3data:r3d100010423", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001019", "bsg-d001019"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Geology", "Life Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Woods Hole Open Access Server", "abbreviation": "WHOAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.r3fzzc", "doi": "10.25504/FAIRsharing.r3fzzc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The mission of the Woods Hole Open Access Server, WHOAS is to capture, store, preserve, and redistribute the intellectual output of the Woods Hole scientific community in digital form. WHOAS, an institutional repository, is managed by the MBLWHOI Library as a service to the Woods Hole scientific community.", "publications": [], "licence-links": [{"licence-name": "WHOAS Copyright and Licensing", "licence-id": 860, "link-id": 1644, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1592", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.663Z", "metadata": {"doi": "10.25504/FAIRsharing.2by003", "name": "Human Gene and Protein Database", "status": "ready", "contacts": [{"contact-name": "HGDP Helpmail", "contact-email": "HGPD@m.aist.go.jp"}], "homepage": "http://hgpd.lifesciencedb.jp/cgi/", "citations": [], "identifier": 1592, "description": "Human Gene and Protein Database (HGPD) presents SDS-PAGE patterns and other informations of human genes and proteins.", "abbreviation": "HGPD", "data-curation": {}, "support-links": [{"url": "http://hgpd.lifesciencedb.jp/sys_info/q_a.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://hgpd.lifesciencedb.jp/sys_info/help.html", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"name": "biannual release (as in twice a year)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://hgpd.lifesciencedb.jp/cgi/pg_ad_srch.cgi", "name": "advanced search", "type": "data access"}, {"url": "http://hgpd.lifesciencedb.jp/cgi/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://hgpd.lifesciencedb.jp/cgi/pg_ad_srch.cgi", "name": "BLAST"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000047", "bsg-d000047"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Gene Ontology enrichment", "Gene model annotation", "Image", "Protein Analysis", "Phenotype", "Protein", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Human Gene and Protein Database", "abbreviation": "HGPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.2by003", "doi": "10.25504/FAIRsharing.2by003", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Human Gene and Protein Database (HGPD) presents SDS-PAGE patterns and other informations of human genes and proteins.", "publications": [{"id": 70, "pubmed_id": 19054851, "title": "Human protein factory for converting the transcriptome into an in vitro-expressed proteome,.", "year": 2008, "url": "http://doi.org/10.1038/nmeth.1273", "authors": "Goshima N., Kawamura Y., Fukumoto A., Miura A., Honma R., Satoh R., Wakamatsu A., Yamamoto J., Kimura K., Nishikawa T., Andoh T., Iida Y., Ishikawa K., Ito E., Kagawa N., Kaminaga C., Kanehori K., Kawakami B., Kenmochi K., Kimura R., Kobayashi M., Kuroita T., Kuwayama H., Maruyama Y., Matsuo K., Minami K., Mitsubori M., Mori M., Morishita R., Murase A., Nishikawa A., Nishikawa S., Okamoto T., Sakagami N., Sakamoto Y., Sasaki Y., Seki T., Sono S., Sugiyama A., Sumiya T., Takayama T., Takayama Y., Takeda H., Togashi T., Yahata K., Yamada H., Yanagisawa Y., Endo Y., Imamoto F., Kisu Y., Tanaka S., Isogai T., Imai J., Watanabe S., Nomura N.,", "journal": "Nat. Methods", "doi": "doi:10.1038/nmeth.1273", "created_at": "2021-09-30T08:22:27.755Z", "updated_at": "2021-09-30T08:22:27.755Z"}, {"id": 71, "pubmed_id": 19073703, "title": "Human Gene and Protein Database (HGPD): a novel database presenting a large quantity of experiment-based results in human proteomics.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn872", "authors": "Maruyama Y., Wakamatsu A., Kawamura Y., Kimura K., Yamamoto J., Nishikawa T., Kisu Y., Sugano S., Goshima N., Isogai T., Nomura N.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn872", "created_at": "2021-09-30T08:22:27.856Z", "updated_at": "2021-09-30T08:22:27.856Z"}, {"id": 1247, "pubmed_id": 22140100, "title": "HGPD: Human Gene and Protein Database, 2012 update.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1188", "authors": "Maruyama Y,Kawamura Y,Nishikawa T,Isogai T,Nomura N,Goshima N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1188", "created_at": "2021-09-30T08:24:39.071Z", "updated_at": "2021-09-30T11:29:04.001Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1611", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:54.229Z", "metadata": {"doi": "10.25504/FAIRsharing.q3b39v", "name": "mirEX", "status": "ready", "contacts": [{"contact-name": "Zofia Szweykowska-Kulinska", "contact-email": "zofszwey@amu.edu.pl"}], "homepage": "http://www.comgen.pl/mirex/", "identifier": 1611, "description": "mirEX2 is a comprehensive platform for comparative analysis of primary microRNA expression data. RT\u2013qPCR-based gene expression profiles are stored in a universal and expandable database scheme and wrapped by an intuitive user-friendly interface.", "abbreviation": "mirEX", "support-links": [{"url": "http://www.combio.pl/mirex2/contact/", "type": "Contact form"}, {"url": "https://en.wikipedia.org/wiki/Mirex", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available upon request", "type": "data versioning"}, {"url": "http://www.combio.pl/mirex2/browse/", "name": "browse", "type": "data access"}, {"name": "file download(CSV,tab-delimited,SVG,PNG,PDF)", "type": "data access"}, {"url": "http://www.combio.pl/mirex2.download/", "name": "FTP download", "type": "data access"}, {"url": "http://www.combio.pl/mirex2/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000067", "bsg-d000067"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "RNA sequence", "Primer", "Micro RNA", "Pre-miRNA (pre-microRNA)"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["Poland"], "name": "FAIRsharing record for: mirEX", "abbreviation": "mirEX", "url": "https://fairsharing.org/10.25504/FAIRsharing.q3b39v", "doi": "10.25504/FAIRsharing.q3b39v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: mirEX2 is a comprehensive platform for comparative analysis of primary microRNA expression data. RT\u2013qPCR-based gene expression profiles are stored in a universal and expandable database scheme and wrapped by an intuitive user-friendly interface.", "publications": [{"id": 1555, "pubmed_id": 22013167, "title": "mirEX: a platform for comparative exploration of plant pri-miRNA expression data.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr878", "authors": "Bielewicz D,Dolata J,Zielezinski A,Alaba S,Szarzynska B,Szczesniak MW,Jarmolowski A,Szweykowska-Kulinska Z,Karlowski WM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr878", "created_at": "2021-09-30T08:25:14.392Z", "updated_at": "2021-09-30T11:29:13.701Z"}, {"id": 1575, "pubmed_id": 26141515, "title": "mirEX 2.0 - an integrated environment for expression profiling of plant microRNAs.", "year": 2015, "url": "http://doi.org/10.1186/s12870-015-0533-2", "authors": "Zielezinski A,Dolata J,Alaba S,Kruszka K,Pacak A,Swida-Barteczka A,Knop K,Stepien A,Bielewicz D,Pietrykowska H,Sierocka I,Sobkowiak L,Lakomiak A,Jarmolowski A,Szweykowska-Kulinska Z,Karlowski WM", "journal": "BMC Plant Biol", "doi": "10.1186/s12870-015-0533-2", "created_at": "2021-09-30T08:25:16.569Z", "updated_at": "2021-09-30T08:25:16.569Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2219", "type": "fairsharing-records", "attributes": {"created-at": "2015-09-07T12:42:54.000Z", "updated-at": "2021-11-24T13:14:48.920Z", "metadata": {"doi": "10.25504/FAIRsharing.7v8q4h", "name": "ProteoRed", "status": "deprecated", "contacts": [{"contact-name": "ProteoRed coordination unit", "contact-email": "coordinacion@proteored.org"}], "homepage": "http://www.proteored.org", "identifier": 2219, "description": "Carlos III Networked Proteomics Platform, ProteoRed-ISCIII is a National Network for the coordination, integration and development of the Spanish Proteomics Facilities providing proteomics services for supporting Spanish researchers in the field of proteomics.", "abbreviation": "ProteoRed", "access-points": [{"url": "http://proteo.cnb.csic.es:9999/miape-api-webservice/MiapeAPIWebservicePort?WSDL", "name": "MIAPE Webservices for ProtoRed", "type": "SOAP"}, {"url": "http://proteo.cnb.csic.es/trac/wiki/webserviceMIAPEAPIFunctions", "name": "Webservice functions list", "type": "SOAP"}, {"url": "http://proteo.cnb.csic.es/trac#ProteoRedJavaMIAPEAPI", "name": "ProteoRed Java MIAPE API - Webservices", "type": "SOAP"}], "support-links": [{"url": "http://www.proteored.org/web/guest/news", "type": "Blog/News"}, {"url": "http://www.proteored.org/web/guest/contact-us", "type": "Contact form"}, {"url": "http://proteo.cnb.csic.es/trac/wiki/MiapeAPIWebserviceFunctions", "type": "Help documentation"}], "year-creation": 2005, "associated-tools": [{"url": "http://proteo.cnb.csic.es:8080/pike/", "name": "PIKE: Protein Information and Knowledge Extractor"}, {"url": "http://estrellapolar.cnb.csic.es/proteored/miape/Miape_Intro.asp?pmPrimera=1", "name": "MIAPE Extractor tool"}], "deprecation-date": "2021-9-18", "deprecation-reason": "Although the project is active, this database is no longer available at the stated homepage, and updated database URLs cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000693", "bsg-d000693"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Biomedical Science"], "domains": ["Target"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: ProteoRed", "abbreviation": "ProteoRed", "url": "https://fairsharing.org/10.25504/FAIRsharing.7v8q4h", "doi": "10.25504/FAIRsharing.7v8q4h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Carlos III Networked Proteomics Platform, ProteoRed-ISCIII is a National Network for the coordination, integration and development of the Spanish Proteomics Facilities providing proteomics services for supporting Spanish researchers in the field of proteomics.", "publications": [{"id": 1288, "pubmed_id": 17031803, "title": "Geographical focus. Proteomics initiatives in Spain: ProteoRed.", "year": 2006, "url": "http://doi.org/10.1002/pmic.200600487", "authors": "Paradela A,Escuredo PR,Albar JP", "journal": "Proteomics", "doi": "10.1002/pmic.200600487", "created_at": "2021-09-30T08:24:43.758Z", "updated_at": "2021-09-30T08:24:43.758Z"}, {"id": 1289, "pubmed_id": 21983993, "title": "The ProteoRed MIAPE web toolkit: a user-friendly framework to connect and share proteomics standards.", "year": 2011, "url": "http://doi.org/10.1074/mcp.M111.008334", "authors": "Medina-Aunon JA,Martinez-Bartolome S,Lopez-Garcia MA,Salazar E,Navajas R,Jones AR,Paradela A,Albar JP", "journal": "Mol Cell Proteomics", "doi": "10.1074/mcp.M111.008334", "created_at": "2021-09-30T08:24:43.869Z", "updated_at": "2021-09-30T08:24:43.869Z"}, {"id": 1290, "pubmed_id": 20097317, "title": "Relevance of proteomics standards for the ProteoRed Spanish organization.", "year": 2010, "url": "http://doi.org/10.1016/j.jprot.2010.01.006", "authors": "Martinez-Bartolome S,Blanco F,Albar JP", "journal": "J Proteomics", "doi": "10.1016/j.jprot.2010.01.006", "created_at": "2021-09-30T08:24:43.983Z", "updated_at": "2021-09-30T08:24:43.983Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2606", "type": "fairsharing-records", "attributes": {"created-at": "2018-06-21T21:00:16.000Z", "updated-at": "2021-12-06T10:49:16.877Z", "metadata": {"doi": "10.25504/FAIRsharing.tlbUpj", "name": "Materials Cloud", "status": "ready", "contacts": [{"contact-name": "Giovanni Pizzi", "contact-email": "archive@materialscloud.org", "contact-orcid": "0000-0002-3583-4377"}], "homepage": "https://archive.materialscloud.org/", "citations": [], "identifier": 2606, "description": "The Materials Cloud Archive provides FAIR & long-term storage of research data from computational materials science, with particular focus on sharing the full provenance of calculations.", "abbreviation": "Materials Cloud", "access-points": [{"url": "https://archive.materialscloud.org/xml", "name": "OAI-PMH endpoint, used e.g. for DOI harvesting", "type": "Other"}], "support-links": [{"url": "archive@materialscloud.org", "name": "Contact", "type": "Support email"}, {"url": "https://www.materialscloud.org/home#contribute", "name": "Submission info", "type": "Help documentation"}, {"url": "https://www.materialscloud.org/policies#archive", "name": "Data policies", "type": "Help documentation"}, {"url": "https://www.materialscloud.org/learn/sections", "name": "Tutorials and Videos", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://archive.materialscloud.org/", "name": "Web interface", "type": "data access"}, {"url": "https://www.materialscloud.org/discover/menu", "name": "Browse curated data sets", "type": "data access"}], "associated-tools": [{"url": "http://www.aiida.net/", "name": "AiiDA 0.12.1"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012611", "name": "re3data:r3d100012611", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001089", "bsg-d001089"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Materials Informatics", "Materials Science", "Physics"], "domains": ["FAIR"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Computational Materials Science"], "countries": ["Switzerland"], "name": "FAIRsharing record for: Materials Cloud", "abbreviation": "Materials Cloud", "url": "https://fairsharing.org/10.25504/FAIRsharing.tlbUpj", "doi": "10.25504/FAIRsharing.tlbUpj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Materials Cloud Archive provides FAIR & long-term storage of research data from computational materials science, with particular focus on sharing the full provenance of calculations.", "publications": [{"id": 2192, "pubmed_id": null, "title": "AiiDA: automated interactive infrastructure and database for computational science", "year": 2015, "url": "https://arxiv.org/abs/1504.01163", "authors": "Giovanni Pizzi, Andrea Cepellotti, Riccardo Sabatini, Nicola Marzari, Boris Kozinsky", "journal": "arXiv", "doi": null, "created_at": "2021-09-30T08:26:27.073Z", "updated_at": "2021-09-30T08:26:27.073Z"}, {"id": 2216, "pubmed_id": null, "title": "AiiDA: automated interactive infrastructure and database for computational science", "year": 2016, "url": "http://doi.org/10.1016/j.commatsci.2015.09.013", "authors": "Giovanni Pizzi, Andrea Cepellotti, Riccardo Sabatini, Nicola Marzari, Boris Kozinsky", "journal": "Computational Materials Science", "doi": "10.1016/j.commatsci.2015.09.013", "created_at": "2021-09-30T08:26:29.749Z", "updated_at": "2021-09-30T08:26:29.749Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 328, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 330, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2377", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-14T20:27:28.000Z", "updated-at": "2021-12-02T17:07:19.061Z", "metadata": {"doi": "10.25504/FAIRsharing.t80940", "name": "SiB Colombia IPT - GBIF Colombia Repository", "status": "ready", "contacts": [{"contact-name": "SiB Colombia Secretariat", "contact-email": "sib@humboldt.org.co"}], "homepage": "http://ipt.biodiversidad.co/sib/", "citations": [], "identifier": 2377, "description": "The Colombian Biodiversity Information System (SiB Colombia) maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. SiB Colombia supports researchers in Colombia by providing them helpdesk assistance and by hosting their data for free in this repository.", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/FAQ.wiki", "type": "Github"}, {"url": "https://github.com/SIB-Colombia/ipt/issues/new", "type": "Github"}, {"url": "https://sites.google.com/humboldt.org.co/wikisib/contacto", "type": "Help documentation"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes_ES.wiki", "type": "Github"}, {"url": "http://www.gbif.org/disclaimer/datasharing", "type": "Help documentation"}, {"url": "http://ipt.biodiversidad.co/sib/rss.do", "type": "Blog/News"}, {"url": "https://twitter.com/sibcolombia", "type": "Twitter"}, {"url": "https://sites.google.com/humboldt.org.co/wikisib/inicio", "type": "Wikipedia"}], "year-creation": 2003, "associated-tools": [{"url": "http://www.gbif.org/ipt", "name": "Integrated Publishing Toolkit (IPT) 2.3.3"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000856", "bsg-d000856"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Colombia"], "name": "FAIRsharing record for: SiB Colombia IPT - GBIF Colombia Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.t80940", "doi": "10.25504/FAIRsharing.t80940", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Colombian Biodiversity Information System (SiB Colombia) maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. SiB Colombia supports researchers in Colombia by providing them helpdesk assistance and by hosting their data for free in this repository.", "publications": [], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 250, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 382, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1024, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1031, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2933", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-06T15:14:50.000Z", "updated-at": "2022-02-08T10:39:12.008Z", "metadata": {"doi": "10.25504/FAIRsharing.329809", "name": "Database of publications on coronavirus disease (COVID-19)", "status": "ready", "contacts": [], "homepage": "https://www.who.int/emergencies/diseases/novel-coronavirus-2019/global-research-on-novel-coronavirus-2019-ncov", "citations": [], "identifier": 2933, "description": "The WHO is gathering the latest scientific findings and knowledge on coronavirus disease (COVID-19) and compiling it in a database. The database is updated daily from searches of bibliographic databases, manual searches of the table of contents of relevant journals, and the addition of other relevant scientific articles that come to our attention. Note - the entries in the database may not be exhaustive and new research will be added regularly.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://www.who.int/publications/m/item/quick-search-guide-who-covid-19-database", "name": "Quick Search Guide for WHO COVID-19 Database", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://search.bvsalud.org/global-literature-on-novel-coronavirus-2019-ncov/", "name": "Search and browse", "type": "data access"}, {"url": "https://tinyurl.com/swzj6h6", "name": "Download", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001436", "bsg-d001436"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Literature curation"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Database of publications on coronavirus disease (COVID-19)", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.329809", "doi": "10.25504/FAIRsharing.329809", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The WHO is gathering the latest scientific findings and knowledge on coronavirus disease (COVID-19) and compiling it in a database. The database is updated daily from searches of bibliographic databases, manual searches of the table of contents of relevant journals, and the addition of other relevant scientific articles that come to our attention. Note - the entries in the database may not be exhaustive and new research will be added regularly.", "publications": [], "licence-links": [{"licence-name": "WHO Privacy Legal Notice", "licence-id": 909, "link-id": 2585, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2707", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-16T12:20:52.000Z", "updated-at": "2021-12-06T10:48:49.846Z", "metadata": {"doi": "10.25504/FAIRsharing.LEtKjT", "name": "Imperial College Research Computing Service Data Repository", "status": "ready", "contacts": [{"contact-name": "M. J. Harvey", "contact-email": "m.j.harvey@imperial.ac.uk", "contact-orcid": "0000-0003-1797-3186"}], "homepage": "https://data.hpc.imperial.ac.uk", "citations": [{"doi": "10.1186/s13321-017-0190-6", "publication-id": 2131}], "identifier": 2707, "description": "A lightweight digital repository for data based on the concepts of collections of filesets. Both the collection and the fileset are assigned a DOI by the DataCite organisation which can be quoted in articles. Browsing and data deposition are available only when logged in. ", "data-curation": {}, "support-links": [{"url": "https://wiki.ch.ic.ac.uk/wiki/index.php?title=Rdm:data", "name": "Help", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://data.hpc.imperial.ac.uk/publish/tools/", "name": "Submit via command line", "type": "data curation"}, {"url": "https://data.hpc.imperial.ac.uk/publish/", "name": "Web Submission (login required)", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011965", "name": "re3data:r3d100011965", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://wiki.ch.ic.ac.uk/wiki/index.php?title=Rdm:data", "type": "controlled"}}, "legacy-ids": ["biodbcore-001205", "bsg-d001205"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry"], "domains": ["Molecular structure", "Molecular entity", "Chemical descriptor"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Imperial College Research Computing Service Data Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.LEtKjT", "doi": "10.25504/FAIRsharing.LEtKjT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A lightweight digital repository for data based on the concepts of collections of filesets. Both the collection and the fileset are assigned a DOI by the DataCite organisation which can be quoted in articles. Browsing and data deposition are available only when logged in. ", "publications": [{"id": 2131, "pubmed_id": null, "title": "A metadata-driven approach to data repository design,", "year": 2017, "url": "http://doi.org/10.1186/s13321-017-0190-6", "authors": "M. J. Harvey, A. McLean, H. S. Rzepa", "journal": "J. Cheminformatics", "doi": "10.1186/s13321-017-0190-6", "created_at": "2021-09-30T08:26:20.316Z", "updated_at": "2021-09-30T08:26:20.316Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 59, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3209", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-25T12:16:54.000Z", "updated-at": "2021-12-06T10:48:49.380Z", "metadata": {"doi": "10.25504/FAIRsharing.L13TT5", "name": "National Institute of Mental Health Data Archive", "status": "ready", "contacts": [{"contact-name": "NDA Helpdesk", "contact-email": "ndahelp@mail.nih.gov"}], "homepage": "https://nda.nih.gov", "identifier": 3209, "description": "The National Institute of Mental Health Data Archive (NDA), originally established to support autism research, is an informatics platform and data repository that facilitates data sharing across all of mental health and other research communities, combining data from each of these repositories into a single resource with a single process for gaining access to all shared data. While querying and browsing data is publicly available, all subject-level data is available behind a login.", "abbreviation": "NDA", "access-points": [{"url": "https://nda.nih.gov/api/datadictionary/v2/", "name": "Data Dictionary API", "type": "REST"}, {"url": "https://nda.nih.gov/tools/apis.html", "name": "NDA Query API", "type": "REST"}], "support-links": [{"url": "https://nda.nih.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://nda.nih.gov/about/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nda.nih.gov/get/access-data.html", "name": "How to Access Data", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ndarpublicweb/Documents/NDA+Submission+Request.pdf", "name": "Data Submission Information", "type": "Help documentation"}, {"url": "https://nda.nih.gov/about/about-us.html", "name": "About NDA", "type": "Help documentation"}, {"url": "https://nda.nih.gov/about/standard-operating-procedures.html", "name": "Standard Operating Procedures", "type": "Help documentation"}, {"url": "https://nda.nih.gov/about/forms.html", "name": "NDA Forms and Documents", "type": "Help documentation"}, {"url": "https://nda.nih.gov/webinars-and-tutorials", "name": "Webinars and Tutorials", "type": "Training documentation"}], "data-processes": [{"url": "https://nda.nih.gov/data_dictionary.html?submission=ALL&source=NDA", "name": "Browse Data Dictionary", "type": "data access"}, {"url": "https://nda.nih.gov/contribute/contribute-data.html", "name": "Submit Data", "type": "data curation"}, {"url": "https://nda.nih.gov/general-query.html?q=query=studies%20~and~%20orderBy=id%20~and~%20orderDirection=Ascending", "name": "Search Data from Papers", "type": "data access"}, {"url": "https://nda.nih.gov/general-query.html?q=query=collections%20~and~%20orderBy=id%20~and~%20orderDirection=Ascendingg", "name": "Search Data from Labs", "type": "data access"}, {"url": "https://nda.nih.gov/", "name": "General Search", "type": "data access"}], "associated-tools": [{"url": "https://nda.nih.gov/tools/nda-tools.html", "name": "Tool List"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012653", "name": "re3data:r3d100012653", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001722", "bsg-d001722"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Institute of Mental Health Data Archive", "abbreviation": "NDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.L13TT5", "doi": "10.25504/FAIRsharing.L13TT5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Institute of Mental Health Data Archive (NDA), originally established to support autism research, is an informatics platform and data repository that facilitates data sharing across all of mental health and other research communities, combining data from each of these repositories into a single resource with a single process for gaining access to all shared data. While querying and browsing data is publicly available, all subject-level data is available behind a login.", "publications": [], "licence-links": [{"licence-name": "NDA Data Policy", "licence-id": 565, "link-id": 2147, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2474", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-04T09:14:23.000Z", "updated-at": "2021-11-24T13:16:30.431Z", "metadata": {"doi": "10.25504/FAIRsharing.7tx9zj", "name": "Sweden IPT - GBIF Sweden", "status": "ready", "contacts": [{"contact-name": "Anders Telenius", "contact-email": "anders.telenius@nrm.se", "contact-orcid": "0000-0003-4477-1117"}], "homepage": "http://www.gbif.se/ipt", "identifier": 2474, "description": "GBIF-Sweden serves researchers, public authorities and others interested in biodiversity as the Swedish hub for information and international exchange of data on the biological diversity of the world. The ambition of GBIF-Sweden is to continuously harvest and publicly present up-to-date biodiversity data hosted by Swedish institutions and government authorities to stakeholders around the world through the international GBIF portal, in accordance with Swedish commitments under the international GBIF agreement. Where appropriate, GBIF-Sweden also aims to accumulate information about Swedish biodiversity kept elsewhere in the world and provide it to Swedish stakeholders in an appropriate form. Finally, GBIF-Sweden aims to play a leading role in stimulating digitization efforts aimed at increasing the quantity and quality of content provided to GBIF from Swedish institutions.", "support-links": [{"url": "gbif@nrm.se", "name": "GBIF Sweden", "type": "Support email"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}, {"url": "https://twitter.com/gbifsweden", "name": "@gbifsweden", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "http://www.gbif.se/ipt/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data access"}]}, "legacy-ids": ["biodbcore-000956", "bsg-d000956"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: Sweden IPT - GBIF Sweden", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.7tx9zj", "doi": "10.25504/FAIRsharing.7tx9zj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF-Sweden serves researchers, public authorities and others interested in biodiversity as the Swedish hub for information and international exchange of data on the biological diversity of the world. The ambition of GBIF-Sweden is to continuously harvest and publicly present up-to-date biodiversity data hosted by Swedish institutions and government authorities to stakeholders around the world through the international GBIF portal, in accordance with Swedish commitments under the international GBIF agreement. Where appropriate, GBIF-Sweden also aims to accumulate information about Swedish biodiversity kept elsewhere in the world and provide it to Swedish stakeholders in an appropriate form. Finally, GBIF-Sweden aims to play a leading role in stimulating digitization efforts aimed at increasing the quantity and quality of content provided to GBIF from Swedish institutions.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1238, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1553, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1554, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1556, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3616", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-08T19:03:09.865Z", "updated-at": "2022-02-08T10:55:52.542Z", "metadata": {"doi": "10.25504/FAIRsharing.adbb53", "name": "Open Energy Data Initiative", "status": "ready", "contacts": [{"contact-name": "OpenEI Webmaster", "contact-email": "OpenEI.Webmaster@nrel.gov", "contact-orcid": null}], "homepage": "https://data.openei.org/", "citations": [], "identifier": 3616, "description": "OEDI is a centralized repository of high-value energy research datasets aggregated from the U.S. Department of Energy\u2019s Programs, Offices, and National Laboratories. Built to enable data discoverability, OEDI facilitates access to a broad network of findings, including the data available in technology-specific catalogs like the Geothermal Data Repository and Marine Hydrokinetic Data Repository.", "abbreviation": "OEDI", "data-curation": {"type": "manual/automated"}, "support-links": [{"url": "https://data.openei.org/faq", "name": "OEDI FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.youtube.com/playlist?list=PL4lfI7kmtVfoYHJJfHA68ybf8iLsDsoiX", "name": "OEDI Video Tutorials", "type": "Training documentation"}, {"url": "OpenEI.Webmaster@nrel.gov", "name": "OEDI Support Contact Email", "type": "Support email"}], "year-creation": 2020, "data-processes": [{"url": "https://data.openei.org/submissions/all", "name": "Browse", "type": "data access"}, {"url": "https://data.openei.org/submissions/all", "name": "Submit", "type": "data curation"}, {"url": "https://data.openei.org/search", "name": "Search", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013625", "name": "re3data:r3d100013625", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Materials Research", "Thermodynamics", "Energy Engineering", "Chemistry", "Thermal Technology", "Physics", "Power Engineering"], "domains": ["Resource metadata", "Experimental measurement"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Renewable Energy", "transportation", "transportation data", "wind energy", "geothermal energy", "marine energy", "hydrokinetic energy", "advanced manufacturing", "agrivoltaics", "hydrogen fuel cells", "fuel cells", "building energy", "energy systems integration", "solar power", "water power"], "countries": ["United States"], "name": "FAIRsharing record for: Open Energy Data Initiative", "abbreviation": "OEDI", "url": "https://fairsharing.org/10.25504/FAIRsharing.adbb53", "doi": "10.25504/FAIRsharing.adbb53", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OEDI is a centralized repository of high-value energy research datasets aggregated from the U.S. Department of Energy\u2019s Programs, Offices, and National Laboratories. Built to enable data discoverability, OEDI facilitates access to a broad network of findings, including the data available in technology-specific catalogs like the Geothermal Data Repository and Marine Hydrokinetic Data Repository.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3782", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-31T16:04:59.632Z", "updated-at": "2022-02-01T16:51:41.640Z", "metadata": {"name": "2022_RPIE_CPD_Covid_19_Data", "status": "ready", "homepage": "https://orcid.org/my-orcid?orcid=0000-0003-1064-7468", "identifier": 3782, "description": "Data for online training_CPD_Covid_19 (Vietnam)", "abbreviation": null, "year-creation": 2022, "deprecation-reason": ""}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["Viet Nam"], "name": "FAIRsharing record for: 2022_RPIE_CPD_Covid_19_Data", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3782", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data for online training_CPD_Covid_19 (Vietnam)", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2262", "type": "fairsharing-records", "attributes": {"created-at": "2016-02-18T13:28:40.000Z", "updated-at": "2022-02-03T09:19:53.531Z", "metadata": {"doi": "10.25504/FAIRsharing.nnvcr9", "name": "FAIRDOMHub", "status": "ready", "contacts": [{"contact-name": "FAIRDOM support", "contact-email": "support@fair-dom.org"}], "homepage": "https://fairdomhub.org/", "identifier": 2262, "description": "The FAIRDOMHub is a publicly available resource build using the SEEK software, which enables collaborations within the scientific community. FAIRDOM will establish a support and service network for European Systems Biology. It will serve projects in standardizing, managing and disseminating data and models in a FAIR manner: Findable, Accessible, Interoperable and Reusable. FAIRDOM is an initiative to develop a community, and establish an internationally sustained Data and Model Management service to the European Systems Biology community. FAIRDOM is a joint action of ERA-Net EraSysAPP and European Research Infrastructure ISBE.", "abbreviation": "FAIRDOMHub", "access-points": [{"url": "https://app.swaggerhub.com/apis/FAIRDOM/SEEK/0.1", "name": "Open API conformant JSON REST", "type": "REST"}], "support-links": [{"url": "support@fair-dom.org", "type": "Support email"}, {"url": "http://docs.seek4science.org/help/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://biostar.fair-dom.org/", "type": "Forum"}, {"url": "http://docs.seek4science.org/help/", "type": "Help documentation"}], "year-creation": 2015, "associated-tools": [{"url": "http://docs.seek4science.org/", "name": "SEEK 1.10.1"}, {"url": "http://www.rightfield.org.uk/", "name": "RightField 0.25"}, {"url": "http://fair-dom.org/platform/openbis/", "name": "openBIS 16.05"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011928", "name": "re3data:r3d100011928", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000736", "bsg-d000736"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Bioinformatics", "Data Management", "Proteomics", "Biotechnology", "Life Science", "Metabolomics", "Transcriptomics", "Microbiology", "Systems Biology"], "domains": ["FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "Netherlands", "Germany", "Switzerland"], "name": "FAIRsharing record for: FAIRDOMHub", "abbreviation": "FAIRDOMHub", "url": "https://fairsharing.org/10.25504/FAIRsharing.nnvcr9", "doi": "10.25504/FAIRsharing.nnvcr9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The FAIRDOMHub is a publicly available resource build using the SEEK software, which enables collaborations within the scientific community. FAIRDOM will establish a support and service network for European Systems Biology. It will serve projects in standardizing, managing and disseminating data and models in a FAIR manner: Findable, Accessible, Interoperable and Reusable. FAIRDOM is an initiative to develop a community, and establish an internationally sustained Data and Model Management service to the European Systems Biology community. FAIRDOM is a joint action of ERA-Net EraSysAPP and European Research Infrastructure ISBE.", "publications": [{"id": 1234, "pubmed_id": 26978244, "title": "The FAIR Guiding Principles for scientific data management and stewardship.", "year": 2016, "url": "http://doi.org/10.1038/sdata.2016.18", "authors": "Wilkinson MD,Dumontier M,Aalbersberg IJ,Appleton G,Axton M,Baak A,Blomberg N,Boiten JW,da Silva Santos LB,Bourne PE,Bouwman J,Brookes AJ,Clark T,Crosas M,Dillo I,Dumon O,Edmunds S,Evelo CT,Finkers R,Gonzalez-Beltran A,Gray AJ,Groth P,Goble C,Grethe JS,Heringa J,'t Hoen PA,Hooft R,Kuhn T,Kok R,Kok J,Lusher SJ,Martone ME,Mons A,Packer AL,Persson B,Rocca-Serra P,Roos M,van Schaik R,Sansone SA,Schultes E,Sengstag T,Slater T,Strawn G,Swertz MA,Thompson M,van der Lei J,van Mulligen E,Velterop J,Waagmeester A,Wittenburg P,Wolstencroft K,Zhao J,Mons B", "journal": "Sci Data", "doi": "10.1038/sdata.2016.18", "created_at": "2021-09-30T08:24:37.674Z", "updated_at": "2021-09-30T08:24:37.674Z"}, {"id": 1962, "pubmed_id": 26160520, "title": "SEEK: a systems biology data and model management platform.", "year": 2015, "url": "http://doi.org/10.1186/s12918-015-0174-y", "authors": "Wolstencroft K,Owen S,Krebs O,Nguyen Q,Stanford NJ,Golebiewski M,Weidemann A,Bittkowski M,An L,Shockley D,Snoep JL,Mueller W,Goble C", "journal": "BMC Syst Biol", "doi": "10.1186/s12918-015-0174-y", "created_at": "2021-09-30T08:26:00.793Z", "updated_at": "2021-09-30T08:26:00.793Z"}, {"id": 1979, "pubmed_id": 26508761, "title": "openBIS ELN-LIMS: an open-source database for academic laboratories.", "year": 2015, "url": "http://doi.org/10.1093/bioinformatics/btv606", "authors": "Barillari C,Ottoz DS,Fuentes-Serna JM,Ramakrishnan C,Rinn B,Rudolf F", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btv606", "created_at": "2021-09-30T08:26:02.682Z", "updated_at": "2021-09-30T08:26:02.682Z"}, {"id": 2591, "pubmed_id": 27899646, "title": "FAIRDOMHub: a repository and collaboration environment for sharing systems biology research.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1032", "authors": "Wolstencroft K,Krebs O,Snoep JL,Stanford NJ,Bacall F,Golebiewski M,Kuzyakiv R,Nguyen Q,Owen S,Soiland-Reyes S,Straszewski J,van Niekerk DD,Williams AR,Malmstrom L,Rinn B,Muller W,Goble C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1032", "created_at": "2021-09-30T08:27:17.926Z", "updated_at": "2021-09-30T11:29:40.210Z"}, {"id": 2592, "pubmed_id": 21943917, "title": "The SEEK: a platform for sharing data and models in systems biology.", "year": 2011, "url": "http://doi.org/10.1016/B978-0-12-385118-5.00029-3", "authors": "Wolstencroft K,Owen S,du Preez F,Krebs O,Mueller W,Goble C,Snoep JL", "journal": "Methods Enzymol", "doi": "10.1016/B978-0-12-385118-5.00029-3", "created_at": "2021-09-30T08:27:18.070Z", "updated_at": "2021-09-30T08:27:18.070Z"}], "licence-links": [{"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 647, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2004", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:52.787Z", "metadata": {"doi": "10.25504/FAIRsharing.mewhad", "name": "ClinicalTrials.gov", "status": "ready", "homepage": "http://clinicaltrials.gov/", "identifier": 2004, "description": "ClinicalTrials.gov is a registry and results database of publicly and privately supported clinical studies of human participants conducted around the world.", "abbreviation": "ClinicalTrials.gov", "support-links": [{"url": "http://clinicaltrials.gov/ct2/helpdesk?hd_url=http%3A%2F%2Fclinicaltrials.gov%2Fct2%2Fhome", "type": "Contact form"}, {"url": "http://clinicaltrials.gov/ct2/manage-recs/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://clinicaltrials.gov/ct2/help/how-find/index", "type": "Help documentation"}, {"url": "http://clinicaltrials.gov/ct2/manage-recs/present", "type": "Training documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://clinicaltrials.gov/ct2/resources/download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://clinicaltrials.gov/ct2/manage-recs", "name": "submit"}, {"url": "http://clinicaltrials.gov/ct2/search", "name": "search"}, {"url": "http://clinicaltrials.gov/ct2/search/advanced", "name": "advanced search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010211", "name": "re3data:r3d100010211", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002309", "name": "SciCrunch:RRID:SCR_002309", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000470", "bsg-d000470"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Drug", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ClinicalTrials.gov", "abbreviation": "ClinicalTrials.gov", "url": "https://fairsharing.org/10.25504/FAIRsharing.mewhad", "doi": "10.25504/FAIRsharing.mewhad", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ClinicalTrials.gov is a registry and results database of publicly and privately supported clinical studies of human participants conducted around the world.", "publications": [{"id": 468, "pubmed_id": 15361058, "title": "Design, implementation and management of a web-based data entry system for ClinicalTrials.gov.", "year": 2004, "url": "https://www.ncbi.nlm.nih.gov/pubmed/15361058", "authors": "Gillen JE., Tse T., Ide NC., McCray AT.,", "journal": "Stud Health Technol Inform", "doi": null, "created_at": "2021-09-30T08:23:10.860Z", "updated_at": "2021-09-30T08:23:10.860Z"}, {"id": 1209, "pubmed_id": 27294570, "title": "ClinicalTrials.gov and Drugs@FDA: A Comparison of Results Reporting for New Drug Approval Trials.", "year": 2016, "url": "http://doi.org/10.7326/M15-2658", "authors": "Schwartz LM,Woloshin S,Zheng E,Tse T,Zarin DA", "journal": "Ann Intern Med", "doi": "10.7326/M15-2658", "created_at": "2021-09-30T08:24:34.749Z", "updated_at": "2021-09-30T08:24:34.749Z"}], "licence-links": [{"licence-name": "NLM NIH Copyright", "licence-id": 593, "link-id": 1865, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1866, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2817", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-14T09:54:55.000Z", "updated-at": "2021-12-06T10:47:25.138Z", "metadata": {"name": "OpenML", "status": "ready", "homepage": "https://www.openml.org/", "identifier": 2817, "description": "The Open Machine Learning project is an inclusive movement to build an open, organized, online ecosystem for machine learning. We build open source tools to discover (and share) open data from any domain, easily draw them into your favourite machine learning environments, quickly build models alongside (and together with) thousands of other data scientists, analyse your results against the state of the art, and even get automatic advice on how to build better models", "abbreviation": "OpenML", "support-links": [{"url": "https://docs.openml.org/", "name": "Help documentation", "type": "Help documentation"}], "year-creation": 2013, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011098", "name": "re3data:r3d100011098", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001316", "bsg-d001316"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Machine learning"], "taxonomies": [], "user-defined-tags": [], "countries": ["Netherlands", "Germany", "Portugal"], "name": "FAIRsharing record for: OpenML", "abbreviation": "OpenML", "url": "https://fairsharing.org/fairsharing_records/2817", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Machine Learning project is an inclusive movement to build an open, organized, online ecosystem for machine learning. We build open source tools to discover (and share) open data from any domain, easily draw them into your favourite machine learning environments, quickly build models alongside (and together with) thousands of other data scientists, analyse your results against the state of the art, and even get automatic advice on how to build better models", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2969", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T07:39:40.000Z", "updated-at": "2021-11-24T13:13:33.465Z", "metadata": {"doi": "10.25504/FAIRsharing.Z8OKi5", "name": "ABCD database", "status": "ready", "contacts": [{"contact-name": "Wanessa du Fresne von Hohenesche", "contact-email": "antibodies-order@unige.ch"}], "homepage": "https://web.expasy.org/abcd/", "citations": [{"doi": "10.1093/nar/gkz714", "pubmed-id": 31410491, "publication-id": 2923}], "identifier": 2969, "description": "The ABCD (AntiBodies Chemically Defined) database is a manually curated depository of sequenced antibodies.", "abbreviation": "ABCD", "year-creation": 2018}, "legacy-ids": ["biodbcore-001475", "bsg-d001475"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Immunology"], "domains": ["Antibody", "Recombinant DNA", "Amino acid sequence"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: ABCD database", "abbreviation": "ABCD", "url": "https://fairsharing.org/10.25504/FAIRsharing.Z8OKi5", "doi": "10.25504/FAIRsharing.Z8OKi5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ABCD (AntiBodies Chemically Defined) database is a manually curated depository of sequenced antibodies.", "publications": [{"id": 2923, "pubmed_id": 31410491, "title": "The ABCD database: a repository for chemically defined antibodies.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz714", "authors": "Lima WC,Gasteiger E,Marcatili P,Duek P,Bairoch A,Cosson P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz714", "created_at": "2021-09-30T08:27:59.946Z", "updated_at": "2021-09-30T11:29:48.962Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2291", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-21T19:43:20.000Z", "updated-at": "2021-12-17T15:59:07.298Z", "metadata": {"doi": "10.25504/FAIRsharing.exc0vp", "name": "iDog", "status": "ready", "contacts": [{"contact-name": "Wang Yanqing", "contact-email": "wangyanqing@big.ac.cn"}], "homepage": "https://ngdc.cncb.ac.cn/idog/", "citations": [{"doi": "10.1093/nar/gku1174", "pubmed-id": 25404132, "publication-id": 1122}], "identifier": 2291, "description": "iDog is an integrated resource for domestic dog (Canis lupus familiaris) and wild canids that provides the worldwide dog research community a variety of data services. This includes Genes, Genomes, SNPs, Breed/Disease Traits, Gene Expressions, Single Cell, Dog-Human Homolog Diseases and Literatures. In addition, iDog provides Online tools for performing genomic data visualization and analyses.", "abbreviation": "iDog", "data-curation": {}, "support-links": [{"url": "http://bigd.big.ac.cn/idog/pages/help/dogsd_help.jsp", "name": "How to use Dog Genome Database (DogGD) ?", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/dogsdv2/pages/modules/help/individual_stat.jsp", "name": "Sample Information", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/tutorial.jsp", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/idog_breeds_nomenclature.jsp", "name": "iDog Breeds Nomenclature ", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/gene_query.jsp", "name": "Gene Query Help", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/dogpd_help.jsp", "name": "How to use Dog Phenotype Database (DogPD) ?", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/doged_help.jsp", "name": "How to use Dog Expression Database (DogED) ?", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/dogonline_help.jsp", "name": "How to use DogOnline ?", "type": "Help documentation"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/help/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2014, "data-processes": [{"url": "https://ngdc.cncb.ac.cn/dogsdv3/pages/modules/indsnp/indsnp_search.jsp", "name": "Search for RefSNPs/individual SNPs", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/dogsdv3/pages/modules/download/download.jsp", "name": "Data Download", "type": "data release"}, {"url": "https://ngdc.cncb.ac.cn/dogsdv3/pages/modules/refsnp/refsnp_stat.jsp", "name": "Browse non-redundant SNPs", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/dogsdv3/pages/modules/indsnp/indsnp_stat.jsp", "name": "Browse for individual SNPs", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/browse.jsp", "name": "Browse", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/gene/gene_search.jsp", "name": "Gene Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/doggd/pages/modules/search/search.jsp", "name": "Genome Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/phenotype/breed/breed_search.jsp", "name": "Breed Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/phenotype/disease/disease_browser.jsp", "name": "Diseases Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/phenotype/gwas/gwas_browser.jsp", "name": "GWAS Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/doged/pages/expression/gene_search.jsp", "name": "Gene Expression", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/go/geneontology.action?goacc=GO:0003674&type=Molecular%20Function", "name": "Gene Ontology Browser", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/doghdc/search.jsp", "name": "Dog-Human Disease Connection Search", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/idog/pages/reference/reference_search.jsp", "name": "Dog Literature Query Focus on Disease", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/doggd/pages/modules/blast/blastn_search.jsp", "name": "Blast", "type": "data access"}], "associated-tools": [{"url": "https://ngdc.cncb.ac.cn/egpscloud/data/app/egpscloud@big.ac.cn/bwa/conf/page.jsp?appId=270&appCreateBy=egpscloud@big.ac.cn&appName=bwa&fromidog=1", "name": "BWA"}, {"url": "https://ngdc.cncb.ac.cn/dogvc/upload", "name": "Dog Visual Classification"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012176", "name": "re3data:r3d100012176", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000765", "bsg-d000765"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["Genome visualization", "Single nucleotide polymorphism", "Genome"], "taxonomies": ["Canis familiaris", "Canis lupus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: iDog", "abbreviation": "iDog", "url": "https://fairsharing.org/10.25504/FAIRsharing.exc0vp", "doi": "10.25504/FAIRsharing.exc0vp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iDog is an integrated resource for domestic dog (Canis lupus familiaris) and wild canids that provides the worldwide dog research community a variety of data services. This includes Genes, Genomes, SNPs, Breed/Disease Traits, Gene Expressions, Single Cell, Dog-Human Homolog Diseases and Literatures. In addition, iDog provides Online tools for performing genomic data visualization and analyses.", "publications": [{"id": 1122, "pubmed_id": 25404132, "title": "DoGSD: the dog and wolf genome SNP database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1174", "authors": "Bai B,Zhao WM,Tang BX,Wang YQ,Wang L,Zhang Z,Yang HC,Liu YH,Zhu JW,Irwin DM,Wang GD,Zhang YP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1174", "created_at": "2021-09-30T08:24:24.279Z", "updated_at": "2021-09-30T11:28:59.560Z"}, {"id": 2807, "pubmed_id": 30371881, "title": "iDog: an integrated resource for domestic dogs and wild canids.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1041", "authors": "Tang B,Zhou Q,Dong L,Li W,Zhang X,Lan L,Zhai S,Xiao J,Zhang Z,Bao Y,Zhang YP,Wang GD,Zhao W", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1041", "created_at": "2021-09-30T08:27:45.170Z", "updated_at": "2021-09-30T11:29:45.354Z"}, {"id": 3144, "pubmed_id": 33175170, "title": "Database\u00a0Resources of the National Genomics Data Center, China National Center for Bioinformation in 2021.", "year": 2021, "url": "https://doi.org/10.1093/nar/gkaa1022", "authors": "CNCB-NGDC Members and Partners.", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkaa1022", "created_at": "2021-12-02T14:55:04.738Z", "updated_at": "2021-12-02T14:55:04.738Z"}], "licence-links": [{"licence-name": "NGDC Data Usage Policy", "licence-id": 575, "link-id": 80, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3234", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T10:08:16.000Z", "updated-at": "2021-12-06T10:48:29.851Z", "metadata": {"doi": "10.25504/FAIRsharing.EEDgWH", "name": "DataStream", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "datastream@gordonfn.org", "contact-orcid": "0000-0001-8680-0268"}], "homepage": "https://gordonfoundation.ca/initiatives/datastream/", "citations": [], "identifier": 3234, "description": "DataStream is an open data platform for sharing information about freshwater health. It allows users to access, visualize and download full water and sediment quality datasets published by communities, governments and researchers.", "abbreviation": "DataStream", "support-links": [{"url": "https://lakewinnipegdatastream.ca/en/news", "name": "News", "type": "Blog/News"}, {"url": "https://mackenziedatastream.ca/en/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://lakewinnipegdatastream.ca/en/resources", "name": "DataStream Resources", "type": "Help documentation"}, {"url": "https://lakewinnipegdatastream.ca/en/become-a-data-steward", "name": "Become a data steward", "type": "Help documentation"}, {"url": "https://mackenziedatastream.ca/en/webinars", "name": "Webinar", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCjHhbFrfFVFzZIAziOLHOUg", "name": "Youtube channel", "type": "Video"}], "year-creation": 2016, "data-processes": [{"url": "https://mackenziedatastream.ca/", "name": "Mackenzie DataStream", "type": "data access"}, {"url": "https://atlanticdatastream.ca/", "name": "Atlantic DataStream", "type": "data access"}, {"url": "https://lakewinnipegdatastream.ca/", "name": "Winnipeg DataStream", "type": "data access"}, {"url": "https://greatlakesdatastream.ca/", "name": "Great Lakes DataStream", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013080", "name": "re3data:r3d100013080", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001748", "bsg-d001748"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Water Management", "Freshwater Science", "Water Research"], "domains": ["Monitoring"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: DataStream", "abbreviation": "DataStream", "url": "https://fairsharing.org/10.25504/FAIRsharing.EEDgWH", "doi": "10.25504/FAIRsharing.EEDgWH", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataStream is an open data platform for sharing information about freshwater health. It allows users to access, visualize and download full water and sediment quality datasets published by communities, governments and researchers.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 547, "relation": "undefined"}, {"licence-name": "Datastream Terms of Use", "licence-id": 224, "link-id": 548, "relation": "undefined"}, {"licence-name": "Open Government Licence - Canada", "licence-id": 627, "link-id": 550, "relation": "undefined"}, {"licence-name": "Datastream Data Policy", "licence-id": 223, "link-id": 556, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 557, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2770", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-06T12:50:23.000Z", "updated-at": "2021-12-06T10:48:30.637Z", "metadata": {"doi": "10.25504/FAIRsharing.EnRBIa", "name": "Federated Research Data Repository", "status": "ready", "contacts": [{"contact-name": "Lee Wilson", "contact-email": "lee.wilson@engagedri.ca", "contact-orcid": "0000-0003-2878-8349"}], "homepage": "https://www.frdr-dfdr.ca/", "citations": [], "identifier": 2770, "description": "The Federated Research Data Repository (FRDR) is a place for Canadian researchers to deposit and share research data and to facilitate discovery of research data in Canadian repositories.", "abbreviation": "FRDR", "support-links": [{"url": "support@frdr-dfdr.ca", "name": "FRDR Support", "type": "Support email"}, {"url": "https://www.frdr-dfdr.ca/docs/en/documentation/", "name": "FRDR Documentation", "type": "Help documentation"}, {"url": "https://youtube.com/playlist?list=PLX9EpizS4A0suoSV2N0nn9parl96xHPkz", "name": "FRDR Tutorial Videos", "type": "Video"}], "year-creation": 2017, "data-processes": [{"url": "https://www.frdr-dfdr.ca/repo/", "name": "Text Search", "type": "data access"}, {"url": "https://www.frdr-dfdr.ca/discover/html/adv-search.html?lang=en", "name": "Advanced search", "type": "data access"}, {"url": "https://www.frdr-dfdr.ca/repo/PublishDashboard?locale=en", "name": "Submit", "type": "data access"}, {"url": "https://geo.frdr-dfdr.ca/?lang=en", "name": "Map Search", "type": "data access"}], "associated-tools": [{"url": "https://www.globus.org/data-transfer", "name": "Globus Transfer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012646", "name": "re3data:r3d100012646", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001269", "bsg-d001269"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Health Science", "Earth Science", "Agriculture", "Subject Agnostic"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Federated Research Data Repository", "abbreviation": "FRDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.EnRBIa", "doi": "10.25504/FAIRsharing.EnRBIa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Federated Research Data Repository (FRDR) is a place for Canadian researchers to deposit and share research data and to facilitate discovery of research data in Canadian repositories.", "publications": [{"id": 2621, "pubmed_id": null, "title": "Exploring the Canadian Federated Research Data Repository Service", "year": 2017, "url": "https://doi.org/10.3897/tdwgproceedings.1.20185", "authors": "Lee Wilson", "journal": "Proceedings of TDWG 1", "doi": null, "created_at": "2021-09-30T08:27:21.763Z", "updated_at": "2021-09-30T08:27:21.763Z"}, {"id": 2636, "pubmed_id": null, "title": "Checksums on Modern Filesystems, or: On the virtuous consumption of CPU cycles", "year": 2018, "url": "https://doi.org/10.17605/OSF.IO/Y4Z3E", "authors": "Alex Garnett, Justin Simpson, Mike Winter", "journal": "Proceedings of iPres2018 Conference", "doi": null, "created_at": "2021-09-30T08:27:23.754Z", "updated_at": "2021-09-30T08:27:23.754Z"}, {"id": 2638, "pubmed_id": null, "title": "Open Metadata for Research Data Discovery in Canada", "year": 2017, "url": "https://doi.org/10.1080/19386389.2018.1443698", "authors": "Alex Garnett, Amber Leahey, Dany Savard, Barbara Towell, Lee Wilson", "journal": "Journal of Library Metadata", "doi": null, "created_at": "2021-09-30T08:27:23.988Z", "updated_at": "2021-09-30T08:27:23.988Z"}], "licence-links": [{"licence-name": "FRDR Terms of Service", "licence-id": 323, "link-id": 1656, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2092", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-10T11:22:08.053Z", "metadata": {"doi": "10.25504/FAIRsharing.r1k8kz", "name": "Paleobiology Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@paleobiodb.org"}], "homepage": "https://paleobiodb.org/#/", "identifier": 2092, "description": "The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data. It is maintained by an international non-governmental group of paleontologists.", "abbreviation": "PaleoBioDB", "access-points": [{"url": "https://paleobiodb.org/data1.2/", "name": "Web Services", "type": "REST"}], "support-links": [{"url": "https://paleobiodb.org/#/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/paleobiodb", "name": "GitHub Project", "type": "Github"}, {"url": "https://paleobiodb.org/#/resources", "name": "Video Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/paleodb", "name": "@paleodb", "type": "Twitter"}], "year-creation": 1998, "data-processes": [{"url": "https://paleobiodb.org/classic?a=displayDownloadGenerator", "name": "Download", "type": "data release"}, {"url": "https://paleobiodb.org/classic/displaySearchColls?type=view", "name": "Search for Collections", "type": "data access"}, {"url": "https://paleobiodb.org/classic?page=OSA", "name": "Download Data Archives", "type": "data release"}, {"url": "https://paleobiodb.org/classic/app/resource-sub", "name": "Submit Data", "type": "data curation"}, {"url": "https://paleobiodb.org/classic/displaySearchRefs?type=view", "name": "Search References", "type": "data access"}, {"url": "https://paleobiodb.org/classic/nexusFileSearch", "name": "Search Nexus Files", "type": "data access"}, {"url": "https://paleobiodb.org/classic/displaySearchStrataForm?type=view", "name": "Search Stratigraphic Units", "type": "data access"}, {"url": "https://paleobiodb.org/classic/beginTaxonInfo", "name": "Search Taxons", "type": "data access"}, {"url": "https://paleobiodb.org/navigator/", "name": "Explore Data", "type": "data access"}, {"url": "https://paleobiodb.org/classic/displayDownloadGenerator", "name": "Download Generator", "type": "data release"}], "associated-tools": [{"url": "https://paleobiodb.org/#/resources", "name": "Tools and Resources"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010760", "name": "re3data:r3d100010760", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000561", "bsg-d000561"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Paleontology", "Ecology"], "domains": ["Taxonomic classification", "Marine environment"], "taxonomies": ["Animalia", "Plantae"], "user-defined-tags": ["Paleobiology"], "countries": ["United States"], "name": "FAIRsharing record for: Paleobiology Database", "abbreviation": "PaleoBioDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.r1k8kz", "doi": "10.25504/FAIRsharing.r1k8kz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data. It is maintained by an international non-governmental group of paleontologists.", "publications": [{"id": 303, "pubmed_id": 18599780, "title": "Phanerozoic trends in the global diversity of marine invertebrates.", "year": 2008, "url": "http://doi.org/10.1126/science.1156963", "authors": "Alroy J., Aberhan M., Bottjer DJ., et al.", "journal": "Science", "doi": "10.1126/science.1156963", "created_at": "2021-09-30T08:22:52.642Z", "updated_at": "2021-09-30T08:22:52.642Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1517, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1975", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-18T14:39:27.575Z", "metadata": {"doi": "10.25504/FAIRsharing.5hc8vt", "name": "Gene Expression Omnibus", "status": "ready", "contacts": [{"contact-email": "geo@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/geo/", "identifier": 1975, "description": "The Gene Expression Omnibus (GEO) is a public repository that archives and freely distributes microarray, next-generation sequencing, and other forms of high-throughput functional genomic data submitted by the scientific community. In addition to data storage, a collection of web-based interfaces and applications are available to help users query and download the studies and gene expression patterns stored in GEO.", "abbreviation": "GEO", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/geo/info/faq.html#prog", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/info/qqtutorial.html", "name": "How to Construct a Query", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/info/download.html", "name": "How to Download Data", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/info/datasets.html", "name": "About GEO datasets", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/geo/info/", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/info/profiles.html", "name": "About GEO Profiles", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/geo/info/submission.html", "name": "Submission web interface", "type": "data curation"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/geo/", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/gds/advanced/", "name": "Search", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/sites/GDSbrowser/", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/geo/info/geo_paccess.html", "name": "Entrez Programming Utilities (e-Utils)"}, {"url": "http://www.ncbi.nlm.nih.gov/geo/info/geo2r.html", "name": "GEO2R"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010283", "name": "re3data:r3d100010283", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007303", "name": "SciCrunch:RRID:SCR_007303", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000441", "bsg-d000441"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Expression data", "DNA microarray", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Gene Expression Omnibus", "abbreviation": "GEO", "url": "https://fairsharing.org/10.25504/FAIRsharing.5hc8vt", "doi": "10.25504/FAIRsharing.5hc8vt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Gene Expression Omnibus (GEO) is a public repository that archives and freely distributes microarray, next-generation sequencing, and other forms of high-throughput functional genomic data submitted by the scientific community. In addition to data storage, a collection of web-based interfaces and applications are available to help users query and download the studies and gene expression patterns stored in GEO.", "publications": [{"id": 430, "pubmed_id": 11752295, "title": "Gene Expression Omnibus: NCBI gene expression and hybridization array data repository.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.207", "authors": "Edgar R., Domrachev M., Lash AE.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.207", "created_at": "2021-09-30T08:23:06.766Z", "updated_at": "2021-09-30T08:23:06.766Z"}, {"id": 940, "pubmed_id": 23193258, "title": "NCBI GEO: archive for functional genomics data sets--update.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1193", "authors": "Barrett T,Wilhite SE,Ledoux P,Evangelista C,Kim IF,Tomashevsky M,Marshall KA,Phillippy KH,Sherman PM,Holko M,Yefanov A,Lee H,Zhang N,Robertson CL,Serova N,Davis S,Soboleva A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1193", "created_at": "2021-09-30T08:24:04.035Z", "updated_at": "2021-09-30T11:28:55.692Z"}], "licence-links": [{"licence-name": "GEO Attribution required", "licence-id": 335, "link-id": 1832, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1833, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2422", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T21:05:11.000Z", "updated-at": "2021-11-24T13:16:36.859Z", "metadata": {"doi": "10.25504/FAIRsharing.57xcaw", "name": "International Ocean Discovery Program Laboratory Information Management System", "status": "ready", "contacts": [{"contact-name": "Lorri Peters", "contact-email": "information@iodp.tamu.edu", "contact-orcid": "0000-0003-4951-0223"}], "homepage": "http://web.iodp.tamu.edu/LORE/", "identifier": 2422, "description": "The International Ocean Discovery Program (IODP) is an international research collaboration that coordinates seagoing expeditions to study the history of the Earth recorded in sediments and rocks beneath the ocean floor. This resource contains Phase II of the Integrated Ocean Drilling Program and all of the International Ocean Discovery Program data in the new system.", "abbreviation": "IODP LIMS Database", "support-links": [{"url": "http://web.iodp.tamu.edu/labs/documentation/LORE_User_Guide.pdf", "name": "LIMS Reports User Guide", "type": "Help documentation"}, {"url": "https://twitter.com/TheJR", "name": "@TheJR", "type": "Twitter"}, {"url": "https://twitter.com/JRSO_IODP", "name": "@JRSO_IODP", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://qf.iodp.tamu.edu/qfsearch/search", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "http://web.iodp.tamu.edu/apps/", "name": "Available Applications"}]}, "legacy-ids": ["biodbcore-000904", "bsg-d000904"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Geology", "Geophysics", "Earth Science"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Igneous Petrology", "Micropaleontology", "Paleomagnetism", "Sedimentology", "Tectonics"], "countries": ["United States"], "name": "FAIRsharing record for: International Ocean Discovery Program Laboratory Information Management System", "abbreviation": "IODP LIMS Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.57xcaw", "doi": "10.25504/FAIRsharing.57xcaw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Ocean Discovery Program (IODP) is an international research collaboration that coordinates seagoing expeditions to study the history of the Earth recorded in sediments and rocks beneath the ocean floor. This resource contains Phase II of the Integrated Ocean Drilling Program and all of the International Ocean Discovery Program data in the new system.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 797, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3818", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T11:15:28.484Z", "updated-at": "2022-02-10T11:24:12.952Z", "metadata": {"name": "The Open Biodiversity Knowledge Management System", "status": "ready", "contacts": [{"contact-name": "Boris Barov", "contact-email": "datascience@pensoft.net", "contact-orcid": null}], "homepage": "http://openbiodiv.net/", "citations": [], "identifier": 3818, "description": "OpenBiodiv utilizes semantic publishing workflows, text mining, common standards, ontology modelling and graph database technologies to establish a robust infrastructure for creating and managing a Biodiversity Knowledge Graph.\n\nOpenBiodiv encompasses data extracted from full-text article XMLs published by Pensoft and taxonomic treatments extracted by Plazi from journals of other publishers. The data from both sources are converted to RDF and are integrated in a graph database which contains the OpenBiodiv-O ontology and a RDF version of the GBIF taxonomic backbone. OpenBiodiv provides the following services: \n\nXML-to-RDF conversion workflow and software for JATS TaxPub XML versions of journal articles\nRDF conversion of taxonomic hierarchies in CSV (example: GBIF taxonomic backbone)\nA triple store of close to one billion triples of facts and metadata extracted from literature\nSPARQL endpoint, accessible for regular queries and federated queries with other domain-specific or generic endpoints\nPredefined SPARQL queries reflecting different research questions. \nWithin BiCIKL, OpenBiodiv will be developed to provide a LOD version of data liberated from the literature to make them interoperable with other data infrastructures throughout the biodiversity data life cycle. ", "abbreviation": "OpenBioDiv", "year-creation": null, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity"], "domains": ["Citation", "Journal article", "Publication", "Software", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Bulgaria"], "name": "FAIRsharing record for: The Open Biodiversity Knowledge Management System", "abbreviation": "OpenBioDiv", "url": "https://fairsharing.org/fairsharing_records/3818", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OpenBiodiv utilizes semantic publishing workflows, text mining, common standards, ontology modelling and graph database technologies to establish a robust infrastructure for creating and managing a Biodiversity Knowledge Graph.\n\nOpenBiodiv encompasses data extracted from full-text article XMLs published by Pensoft and taxonomic treatments extracted by Plazi from journals of other publishers. The data from both sources are converted to RDF and are integrated in a graph database which contains the OpenBiodiv-O ontology and a RDF version of the GBIF taxonomic backbone. OpenBiodiv provides the following services: \n\nXML-to-RDF conversion workflow and software for JATS TaxPub XML versions of journal articles\nRDF conversion of taxonomic hierarchies in CSV (example: GBIF taxonomic backbone)\nA triple store of close to one billion triples of facts and metadata extracted from literature\nSPARQL endpoint, accessible for regular queries and federated queries with other domain-specific or generic endpoints\nPredefined SPARQL queries reflecting different research questions. \nWithin BiCIKL, OpenBiodiv will be developed to provide a LOD version of data liberated from the literature to make them interoperable with other data infrastructures throughout the biodiversity data life cycle. ", "publications": [], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBOUT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--3b91fce967e31ac44be4b674272e434b25195edf/Screenshot%202022-02-10%20at%2012.13.58%20PM.png?disposition=inline"}} +{"id": "3227", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-05T09:46:24.000Z", "updated-at": "2021-11-24T13:14:08.292Z", "metadata": {"name": "Biodiversity Network of the Humboldt-Ring", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@zfmk.de"}], "homepage": "https://www.binhum.net", "identifier": 3227, "description": "BiNHum is a joint project of five natural history museums and research collections representing the Humboldt-Ring. BiNHum is a data portal for the consolidation of collection data from the Humboldt-Ring institutes and their associate. It provides querying of the biodiversity data, data mining, data standardisation, and digitized data. Collection objects from herbaria, zoological and palaeontological collections of the participating institutions and partners can be searched.", "abbreviation": "BiNHum", "support-links": [{"url": "https://wiki.binhum.net/web/Hauptseite", "name": "About BiNHum", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.binhum.net/", "name": "Search, Filter and Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001741", "bsg-d001741"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Zoology", "Paleontology", "Biodiversity", "Natural History"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Biodiversity Network of the Humboldt-Ring", "abbreviation": "BiNHum", "url": "https://fairsharing.org/fairsharing_records/3227", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BiNHum is a joint project of five natural history museums and research collections representing the Humboldt-Ring. BiNHum is a data portal for the consolidation of collection data from the Humboldt-Ring institutes and their associate. It provides querying of the biodiversity data, data mining, data standardisation, and digitized data. Collection objects from herbaria, zoological and palaeontological collections of the participating institutions and partners can be searched.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2266", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-16T09:56:03.000Z", "updated-at": "2021-11-24T13:19:51.816Z", "metadata": {"doi": "10.25504/FAIRsharing.r09jt6", "name": "JWS Online", "status": "ready", "contacts": [{"contact-name": "Jacky Snoep", "contact-email": "jls@sun.ac.za", "contact-orcid": "0000-0002-0405-8854"}], "homepage": "https://jws2.sysmo-db.org/", "identifier": 2266, "description": "JWS Online is a Systems Biology tool for the construction, modification and simulation of kinetic models and for the storage of curated models.", "abbreviation": "JWS Online", "access-points": [{"url": "https://jws-docs.readthedocs.io/8_rest.html", "name": "RESTful API functions", "type": "REST"}], "support-links": [{"url": "https://jws-docs.readthedocs.io/", "name": "Help", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "https://jws2.sysmo-db.org/models/", "name": "Search and Browse Models", "type": "data access"}, {"url": "https://jws2.sysmo-db.org/models/experiments/", "name": "Search and Browse Simulations", "type": "data access"}, {"url": "https://jws2.sysmo-db.org/models/manuscripts/", "name": "Search and Browse Manuscripts", "type": "data access"}], "associated-tools": [{"url": "https://jws2.sysmo-db.org/models/upload/", "name": "SBML/JWS Model Upload"}, {"url": "https://jws2.sysmo-db.org/models/experiments/upload", "name": "Upload Simulation Experiment"}, {"url": "https://jws2.sysmo-db.org/models/merge/", "name": "Merge Models"}]}, "legacy-ids": ["biodbcore-000740", "bsg-d000740"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Systems Biology"], "domains": ["Mathematical model", "Kinetic model", "Modeling and simulation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "South Africa", "Netherlands"], "name": "FAIRsharing record for: JWS Online", "abbreviation": "JWS Online", "url": "https://fairsharing.org/10.25504/FAIRsharing.r09jt6", "doi": "10.25504/FAIRsharing.r09jt6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: JWS Online is a Systems Biology tool for the construction, modification and simulation of kinetic models and for the storage of curated models.", "publications": [{"id": 974, "pubmed_id": 15072998, "title": "Web-based kinetic modelling using JWS Online.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth200", "authors": "Olivier BG,Snoep JL", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth200", "created_at": "2021-09-30T08:24:07.756Z", "updated_at": "2021-09-30T08:24:07.756Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1824", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.839Z", "metadata": {"doi": "10.25504/FAIRsharing.e4937j", "name": "Shanghai Rapeseed Database", "status": "deprecated", "contacts": [{"contact-email": "rapeseed@sibs.ac.cn"}], "homepage": "http://rapeseed.plantsignal.cn", "identifier": 1824, "description": "Shanghai RAPESEED Database: a resource for functional genomics studies of seed development and fatty acid metabolism of Brassica.", "abbreviation": "SRD", "associated-tools": [{"url": "http://rapeseed.plantsignal.cn/search.do", "name": "search"}, {"url": "http://rapeseed.plantsignal.cn/newBlastTask.do", "name": "BLAST"}, {"url": "http://rapeseed.plantsignal.cn/search.do", "name": "search"}, {"url": "http://rapeseed.plantsignal.cn/newBlastTask.do", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000284", "bsg-d000284"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Genome"], "taxonomies": ["Brassica napus"], "user-defined-tags": [], "countries": ["China", "United States"], "name": "FAIRsharing record for: Shanghai Rapeseed Database", "abbreviation": "SRD", "url": "https://fairsharing.org/10.25504/FAIRsharing.e4937j", "doi": "10.25504/FAIRsharing.e4937j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Shanghai RAPESEED Database: a resource for functional genomics studies of seed development and fatty acid metabolism of Brassica.", "publications": [{"id": 326, "pubmed_id": 17916574, "title": "Shanghai RAPESEED Database: a resource for functional genomics studies of seed development and fatty acid metabolism of Brassica.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm780", "authors": "Wu GZ., Shi QM., Niu Y., Xing MQ., Xue HW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm780", "created_at": "2021-09-30T08:22:54.990Z", "updated_at": "2021-09-30T08:22:54.990Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3051", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-24T15:03:34.000Z", "updated-at": "2022-02-08T10:41:27.674Z", "metadata": {"doi": "10.25504/FAIRsharing.3fe18b", "name": "Alaska Satellite Facility", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "uso@asf.alaska.edu"}], "homepage": "https://asf.alaska.edu/", "identifier": 3051, "description": "The Alaska Satellite Facility is a data processing facility and satellite-tracking ground station within the Geophysical Institute at the University of Alaska Fairbanks. The facility\u2019s mission is to make remote-sensing data accessible. Its work is central to polar processes research including wetlands, glaciers, sea ice, climate change, permafrost, flooding and land cover such as changes in the Amazon rainforest. The ASF DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "ASF DAAC", "access-points": [{"url": "https://asf.alaska.edu/api/", "name": "API Basics", "type": "Other"}], "support-links": [{"url": "https://asf.alaska.edu/asf-news-and-notes/", "name": "ASF News and Notes", "type": "Blog/News"}, {"url": "https://www.facebook.com/AKSatellite", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.unavco.org/education/professional-development/short-courses/2020/insar-theory-processing/insar-theory-processing.html", "name": "Online course", "type": "Help documentation"}, {"url": "https://nisar.jpl.nasa.gov/system/documents/files/26_NISAR_FINAL_9-6-19.pdf", "name": "NASA-ISRO SAR (NISAR) Mission Science Users Handbook", "type": "Help documentation"}, {"url": "https://asf.alaska.edu/wp-content/uploads/2019/10/rtc_product_guide_v1.2.pdf", "name": "ASF Radiometrically Terrain Corrected ALOS PALSAR products", "type": "Help documentation"}, {"url": "https://twitter.com/Ak_Satellite", "type": "Twitter"}], "data-processes": [{"url": "https://search.asf.alaska.edu/#/", "name": "Search Data", "type": "data access"}, {"url": "https://asf.alaska.edu/information/general/custom-processing/", "name": "Custom Processing", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010506", "name": "re3data:r3d100010506", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003610", "name": "SciCrunch:RRID:SCR_003610", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001559", "bsg-d001559"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change"], "countries": ["United States"], "name": "FAIRsharing record for: Alaska Satellite Facility", "abbreviation": "ASF DAAC", "url": "https://fairsharing.org/10.25504/FAIRsharing.3fe18b", "doi": "10.25504/FAIRsharing.3fe18b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Alaska Satellite Facility is a data processing facility and satellite-tracking ground station within the Geophysical Institute at the University of Alaska Fairbanks. The facility\u2019s mission is to make remote-sensing data accessible. Its work is central to polar processes research including wetlands, glaciers, sea ice, climate change, permafrost, flooding and land cover such as changes in the Amazon rainforest. The ASF DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "Citation Policy for Data and Imagery Accessed Through ASF", "licence-id": 125, "link-id": 2032, "relation": "undefined"}, {"licence-name": "University of Alaska Notice of Nondiscrimination", "licence-id": 822, "link-id": 2033, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2479", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-05T12:52:14.000Z", "updated-at": "2021-11-24T13:16:30.830Z", "metadata": {"doi": "10.25504/FAIRsharing.x4zrrg", "name": "VertNet IPT", "status": "ready", "contacts": [{"contact-name": "Laura Russell", "contact-email": "larussell@vertnet.org"}], "homepage": "http://ipt.vertnet.org:8080/ipt/", "identifier": 2479, "description": "VertNet uses the Integrated Publishing Toolkit (IPT) to host published biodiversity data on the VertNet IPT for its participating institutions. The IPT is a free, open source web application designed to publish primary occurrence data, species checklists and taxonomies, and associated dataset metadata available for use on the Internet. Data are published as web-based Darwin Core Archives (simple ZIP files that contain tab-delimited or comma-separated text files organized using the Darwin Core Standard).", "abbreviation": "VertNet IPT", "support-links": [{"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "data-processes": [{"url": "http://ipt.vertnet.org:8080/ipt/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000961", "bsg-d000961"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: VertNet IPT", "abbreviation": "VertNet IPT", "url": "https://fairsharing.org/10.25504/FAIRsharing.x4zrrg", "doi": "10.25504/FAIRsharing.x4zrrg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VertNet uses the Integrated Publishing Toolkit (IPT) to host published biodiversity data on the VertNet IPT for its participating institutions. The IPT is a free, open source web application designed to publish primary occurrence data, species checklists and taxonomies, and associated dataset metadata available for use on the Internet. Data are published as web-based Darwin Core Archives (simple ZIP files that contain tab-delimited or comma-separated text files organized using the Darwin Core Standard).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1015, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1017, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1019, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1020, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2801", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-19T20:03:12.000Z", "updated-at": "2022-02-08T10:51:35.580Z", "metadata": {"doi": "10.25504/FAIRsharing.140c57", "name": "NOAA's Atlantic Oceanographic and Meterological Laboratory Data", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "aoml.communications@noaa.gov"}], "homepage": "https://www.aoml.noaa.gov/data-products/", "citations": [], "identifier": 2801, "description": "AOML data on the climate, environment and meteorological patterns and changes.", "abbreviation": "AOML Data", "support-links": [{"url": "https://twitter.com/NOAA_AMOL", "name": "Twitter", "type": "Twitter"}], "data-processes": [{"url": "https://www.aoml.noaa.gov/phod/gdp/data.php", "name": "Access to Drifter Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#satdata", "name": "Access to Satellite Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/phod/argo/", "name": "Access to Argo Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#mooringdata", "name": "Access to Mooring Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#carboncycle", "name": "The Global Carbon Cycle", "type": "data access"}, {"url": "https://cwcgom.aoml.noaa.gov/cgom/OceanViewer/index_hrd.html#", "name": "Hurricane Ocean Viewer", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/phod/soto/index.php", "name": "State of the Ocean Observing System", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/phod/hdenxbt/index.php", "name": "High Density XBT Transect Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#oadata", "name": "Ocean Acidification Product Suite", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#ecodata", "name": "South Florida Ecosystem Restoration Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#coraldata", "name": "Coral Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#omicsdata", "name": "Omics Data", "type": "data access"}, {"url": "https://www.aoml.noaa.gov/data-products/#hurricanedata", "name": "Hurricane Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010773", "name": "re3data:r3d100010773", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001300", "bsg-d001300"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment"], "countries": ["United States"], "name": "FAIRsharing record for: NOAA's Atlantic Oceanographic and Meterological Laboratory Data", "abbreviation": "AOML Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.140c57", "doi": "10.25504/FAIRsharing.140c57", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AOML data on the climate, environment and meteorological patterns and changes.", "publications": [], "licence-links": [{"licence-name": "NOAA Privacy", "licence-id": 596, "link-id": 1785, "relation": "undefined"}, {"licence-name": "NOAA Disclaimer", "licence-id": 595, "link-id": 1786, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3128", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-15T12:13:13.000Z", "updated-at": "2022-02-08T10:33:25.240Z", "metadata": {"doi": "10.25504/FAIRsharing.7be14b", "name": "Surface Radiation Budget Network Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "webmaster.gmd@noaa.gov"}], "homepage": "https://www.esrl.noaa.gov/gmd/grad/surfrad/index.html", "identifier": 3128, "description": "Surface Radiation Budget Network Database (SURFRAD) supports climate research with accurate, continuous, long-term measurements of the surface radiation budget over the United States. Data are downloaded, quality controlled, and processed into daily files that are distributed in near real time. Observations from SURFRAD have been used for evaluating satellite-based estimates of surface radiation, and for validating hydrologic, weather prediction, and climate models.", "abbreviation": "SURFRAD", "support-links": [{"url": "https://www.esrl.noaa.gov/gmd/about/contacts.html", "name": "ESRL Contacts", "type": "Contact form"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/problems.html", "name": "Problems Listing", "type": "Help documentation"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/overview.html", "name": "Overview of SURFRAD", "type": "Help documentation"}], "year-creation": 1993, "data-processes": [{"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/dataplot.html", "name": "Search & Download Radiation Plots", "type": "data access"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/metplot.html", "name": "Search & Download Meteorology Plots", "type": "data access"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/aod/aodpick.html", "name": "Search & Download Aerosol Optical Depth Plots", "type": "data access"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/aveform.html", "name": "Create Monthly Mean Plots", "type": "data access"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/sndform.html", "name": "Creating Sounding Plots", "type": "data access"}, {"url": "https://www.esrl.noaa.gov/gmd/grad/surfrad/tsipics.html", "name": "Browse Total Sky Images", "type": "data access"}, {"url": "ftp://aftp.cmdl.noaa.gov/data/radiation/surfrad/", "name": "Data Download (FTP)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011781", "name": "re3data:r3d100011781", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001638", "bsg-d001638"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Hydrology"], "domains": ["Radiation", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Surface Radiation Budget Network Database", "abbreviation": "SURFRAD", "url": "https://fairsharing.org/10.25504/FAIRsharing.7be14b", "doi": "10.25504/FAIRsharing.7be14b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Surface Radiation Budget Network Database (SURFRAD) supports climate research with accurate, continuous, long-term measurements of the surface radiation budget over the United States. Data are downloaded, quality controlled, and processed into daily files that are distributed in near real time. Observations from SURFRAD have been used for evaluating satellite-based estimates of surface radiation, and for validating hydrologic, weather prediction, and climate models.", "publications": [], "licence-links": [{"licence-name": "ESRL GML Disclaimer and Data Use Policy", "licence-id": 291, "link-id": 1907, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2542", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-23T21:04:57.000Z", "updated-at": "2021-12-06T10:48:49.135Z", "metadata": {"doi": "10.25504/FAIRsharing.kwzydf", "name": "Scholars Portal Dataverse", "status": "ready", "contacts": [{"contact-name": "Kaitlin Newson", "contact-email": "dataverse@scholarsportal.info", "contact-orcid": "0000-0001-8739-5823"}], "homepage": "https://dataverse.scholarsportal.info/", "citations": [], "identifier": 2542, "description": "Scholars Portal Dataverse is a repository of research data in all fields of research. Researchers can share, publish, archive, find and cite data across all research fields. Researchers from subscribing institutions can use Dataverse to directly deposit data, create metadata, release and share data openly or privately, visualize and explore data, and search for data.", "support-links": [{"url": "https://spotdocs.scholarsportal.info/pages/viewrecentblogposts.action?key=DAT", "name": "Scholars Portal Dataverse blog", "type": "Blog/News"}, {"url": "https://dataverse.scholarsportal.info/#contact", "name": "Contact form", "type": "Contact form"}, {"url": "https://dataverse.scholarsportal.info/#faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://learn.scholarsportal.info/all-guides/dataverse/", "name": "Scholars Portal Dataverse User Guide", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://dataverse.scholarsportal.info/dataverse/sp/search", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "https://github.com/scholarsportal/Dataverse-Data-Curation-Tool", "name": "Data Curation Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010691", "name": "re3data:r3d100010691", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001025", "bsg-d001025"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Scholars Portal Dataverse", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.kwzydf", "doi": "10.25504/FAIRsharing.kwzydf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scholars Portal Dataverse is a repository of research data in all fields of research. Researchers can share, publish, archive, find and cite data across all research fields. Researchers from subscribing institutions can use Dataverse to directly deposit data, create metadata, release and share data openly or privately, visualize and explore data, and search for data.", "publications": [], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1305, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1715", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-02T16:14:09.688Z", "metadata": {"doi": "10.25504/FAIRsharing.c3v6e6", "name": "IPD-NHKIR - Non-Human Killer-cell Immunoglobulin-like Receptors", "status": "ready", "contacts": [{"contact-name": "Jesse Bruijnesteijn", "contact-email": "bruijnesteijn@bprc.nl"}], "homepage": "https://www.ebi.ac.uk/ipd/nhkir/", "citations": [{"doi": "10.1093/nar/gkz950", "pubmed-id": 31667505, "publication-id": 2534}], "identifier": 1715, "description": "The IPD-NHKIR database provides a centralised repository for non-human KIR (NHKIR) sequences. Killer-cell Immunoglobulin-like Receptors (KIR) have been shown to be highly polymorphic at the allelic and haplotypic level. KIRs are members of the immunoglobulin superfamily (IgSF) formerly called Killer-cell Inhibitory Receptors. They are composed of two or three Ig-domains, a transmembrane region and cytoplasmic tail which can in turn be short (activatory) or long (inhibitory). The Leukocyte Receptor Complex (LRC) which encodes KIR genes has been shown to be polymorphic, polygenic and complex like the MHC.", "abbreviation": "IPD-NHKIR", "support-links": [{"url": "https://www.ebi.ac.uk/support/ipd.php", "name": "IPD Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/ipd/nhkir/version/v1200/", "name": "Version Reports", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/nhkir/statistics/", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/submission/", "name": "Submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/ipd/nhkir/alignment/", "name": "Multiple Sequence Alignment", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/nhkir/download/", "name": "Download", "type": "data release"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000172", "bsg-d000172"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Genetics", "Immunology"], "domains": ["Nucleic acid sequence alignment", "Multiple sequence alignment", "Deoxyribonucleic acid", "Genetic polymorphism", "Sequence alignment", "Killer-cell Immunoglobulin-like Receptors", "Gene", "Amino acid sequence", "Immune system"], "taxonomies": ["Bos", "Macaca fascicularis", "Macaca mulatta", "Macaca nemestrina", "Pan troglodytes", "Pongo abelii", "Pongo pygmaeus"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: IPD-NHKIR - Non-Human Killer-cell Immunoglobulin-like Receptors", "abbreviation": "IPD-NHKIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.c3v6e6", "doi": "10.25504/FAIRsharing.c3v6e6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IPD-NHKIR database provides a centralised repository for non-human KIR (NHKIR) sequences. Killer-cell Immunoglobulin-like Receptors (KIR) have been shown to be highly polymorphic at the allelic and haplotypic level. KIRs are members of the immunoglobulin superfamily (IgSF) formerly called Killer-cell Inhibitory Receptors. They are composed of two or three Ig-domains, a transmembrane region and cytoplasmic tail which can in turn be short (activatory) or long (inhibitory). The Leukocyte Receptor Complex (LRC) which encodes KIR genes has been shown to be polymorphic, polygenic and complex like the MHC.", "publications": [{"id": 2524, "pubmed_id": 31641782, "title": "The IPD Project: a centralised resource for the study of polymorphism in genes of the immune system.", "year": 2019, "url": "http://doi.org/10.1007/s00251-019-01133-w", "authors": "Maccari G,Robinson J,Hammond JA,Marsh SGE", "journal": "Immunogenetics", "doi": "10.1007/s00251-019-01133-w", "created_at": "2021-09-30T08:27:09.626Z", "updated_at": "2021-09-30T08:27:09.626Z"}, {"id": 2801, "pubmed_id": 31781789, "title": "Nomenclature report for killer-cell immunoglobulin-like receptors (KIR) in macaque species: new genes/alleles, renaming recombinant entities and IPD-NHKIR updates.", "year": 2019, "url": "http://doi.org/10.1007/s00251-019-01135-8", "authors": "Bruijnesteijn J,de Groot NG,Otting N,Maccari G,Guethlein LA,Robinson J,Marsh SGE,Walter L,O'Connor DH,Hammond JA,Parham P,Bontrop RE", "journal": "Immunogenetics", "doi": "10.1007/s00251-019-01135-8", "created_at": "2021-09-30T08:27:44.448Z", "updated_at": "2021-09-30T08:27:44.448Z"}], "licence-links": [{"licence-name": "IPD Licence", "licence-id": 450, "link-id": 1590, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 1591, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2570", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-27T14:54:05.000Z", "updated-at": "2021-11-24T13:17:15.105Z", "metadata": {"name": "Citrus Genome Database", "status": "ready", "contacts": [], "homepage": "https://www.citrusgenomedb.org/", "citations": [], "identifier": 2570, "description": "The Citrus Genome Database, known as CGD, is a USDA and NSF funded resource to enable basic, translational and applied research in citrus. It houses genomics, genetics and breeding data for citrus species and organisms associated with HLB. It is built by the Mainlab at Washington State University using the open-source, generic database platform Tripal.", "abbreviation": "CGD", "data-curation": {}, "support-links": [{"url": "https://www.citrusgenomedb.org/contact", "name": "CGD Contact Form", "type": "Contact form"}, {"url": "https://www.citrusgenomedb.org/userManual", "name": "CGD User Manual", "type": "Help documentation"}, {"url": "https://www.citrusgenomedb.org/mailing_lists", "name": "CGD Mailing List", "type": "Mailing list"}, {"url": "https://www.citrusgenomedb.org/about", "name": "About CGD", "type": "Help documentation"}, {"url": "https://www.citrusgenomedb.org/data_overview/1", "name": "Data Overview", "type": "Help documentation"}, {"url": "https://twitter.com/CGD_news", "name": "@CGD_news", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://www.citrusgenomedb.org/search/genes", "name": "Search Genes and Transcripts", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/download", "name": "Data Download", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/tgg/data_submission", "name": "Submit Data", "type": "data curation"}, {"url": "https://www.citrusgenomedb.org/search/germplasm", "name": "Germplasm Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/featuremap/list", "name": "Search Maps", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/markers", "name": "Marker Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/find/publications", "name": "Publication Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/qtl", "name": "QTL Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/features", "name": "Sequence Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/content/cross-sites", "name": "Cross-Site Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/tripal_megasearch", "name": "MegaSearch", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/trait_descriptor", "name": "Trait Descriptor Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/search/trait", "name": "Trait Search", "type": "data access"}, {"url": "https://www.citrusgenomedb.org/trait_listing", "name": "Trait Abbreviations", "type": "data curation"}], "associated-tools": [{"url": "https://www.citrusgenomedb.org/blast", "name": "BLAST+"}, {"url": "http://ptools.citrusgenomedb.org/", "name": "CitrusCyc"}, {"url": "https://www.citrusgenomedb.org/jbrowses", "name": "JBrowse"}, {"url": "https://www.citrusgenomedb.org/MapViewer", "name": "MapViewer"}], "cross-references": [{"url": "https://www.rosaceae.org/", "name": "Genome Database for Rosaceae", "portal": "Other"}, {"url": "https://www.vaccinium.org/", "name": "Genome Database for Vaccinium", "portal": "Other"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001053", "bsg-d001053"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Plant Breeding", "Genomics", "Genetics", "Life Science", "Plant Genetics"], "domains": [], "taxonomies": ["Candidatus Liberibacter asiaticus", "Citrus", "Citrus clementina", "Citrus sinensis", "Poncirus", "Citrus ichangensis", "Citrus reticulata", "Citrus maxima", "Citrus medica", "Poncirus trifoliata", "Fortunella hindsii"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Citrus Genome Database", "abbreviation": "CGD", "url": "https://fairsharing.org/fairsharing_records/2570", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Citrus Genome Database, known as CGD, is a USDA and NSF funded resource to enable basic, translational and applied research in citrus. It houses genomics, genetics and breeding data for citrus species and organisms associated with HLB. It is built by the Mainlab at Washington State University using the open-source, generic database platform Tripal.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2668", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-27T10:57:50.000Z", "updated-at": "2021-11-24T13:13:49.540Z", "metadata": {"name": "International information system for the agricultural science and technology", "status": "ready", "contacts": [{"contact-name": "Thembani Malapela", "contact-email": "thembani.malapela@fao.org", "contact-orcid": "0000-0001-9792-4581"}], "homepage": "http://agris.fao.org/agris-search/index.do", "citations": [], "identifier": 2668, "description": "The International System for Agricultural Science and Technology (AGRIS) is a multilingual bibliographic database that connects users directly to a rich collection of research and worldwide technical information on food and agriculture. Maintained by the Food and Agriculture Organization of the United Nations (FAO), AGRIS has been serving users from developed and developing countries through facilitating access to knowledge in agriculture, science and technology since 1975.", "abbreviation": "AGRIS", "support-links": [{"url": "agris@fao.org", "type": "Support email"}, {"url": "http://agris.fao.org/agris-search/info.action", "type": "Help documentation"}], "year-creation": 1975, "data-processes": [{"url": "http://agris.fao.org/agris-search/index.do", "name": "search", "type": "data access"}, {"url": "http://agris.fao.org/agris-search/info.action", "name": "submit", "type": "data curation"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001161", "bsg-d001161"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Agronomy", "Biotechnology", "Agriculture"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: International information system for the agricultural science and technology", "abbreviation": "AGRIS", "url": "https://fairsharing.org/fairsharing_records/2668", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International System for Agricultural Science and Technology (AGRIS) is a multilingual bibliographic database that connects users directly to a rich collection of research and worldwide technical information on food and agriculture. Maintained by the Food and Agriculture Organization of the United Nations (FAO), AGRIS has been serving users from developed and developing countries through facilitating access to knowledge in agriculture, science and technology since 1975.", "publications": [{"id": 2361, "pubmed_id": 26339471, "title": "AGRIS: providing access to agricultural research data exploiting open data on the web.", "year": 2015, "url": "http://doi.org/10.12688/f1000research.6354.1", "authors": "Celli F,Malapela T,Wegner K,Subirats I,Kokoliou E,Keizer J", "journal": "F1000Res", "doi": "10.12688/f1000research.6354.1", "created_at": "2021-09-30T08:26:50.269Z", "updated_at": "2021-09-30T08:26:50.269Z"}, {"id": 2362, "pubmed_id": 17838776, "title": "Agris.", "year": 1975, "url": "http://doi.org/10.1126/science.187.4173.233", "authors": "Caponio JF,Moran L", "journal": "Science", "doi": "10.1126/science.187.4173.233", "created_at": "2021-09-30T08:26:50.376Z", "updated_at": "2021-09-30T08:26:50.376Z"}, {"id": 2363, "pubmed_id": 17818151, "title": "Agris.", "year": 1975, "url": "http://doi.org/10.1126/science.188.4194.1166", "authors": "East H", "journal": "Science", "doi": "10.1126/science.188.4194.1166", "created_at": "2021-09-30T08:26:50.527Z", "updated_at": "2021-09-30T08:26:50.527Z"}], "licence-links": [{"licence-name": "AGRIS Acceptable use policy", "licence-id": 19, "link-id": 1726, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3009", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-21T14:19:17.000Z", "updated-at": "2021-12-06T10:49:22.952Z", "metadata": {"doi": "10.25504/FAIRsharing.wL29nJ", "name": "Digital Repository of Ireland", "status": "ready", "contacts": [{"contact-name": "Timea Biro", "contact-email": "t.biro@ria.ie", "contact-orcid": "0000-0002-8900-8978"}], "homepage": "https://repository.dri.ie/", "identifier": 3009, "description": "The Digital Repository of Ireland (DRI) is a national trusted digital repository (TDR) for Ireland\u2019s social and cultural data. We preserve, curate, and provide sustained access to a wealth of Ireland\u2019s humanities and social sciences data through a single online portal. The repository houses unique and important collections from a variety of organisations including higher education institutions, cultural institutions, government agencies, and specialist archives. DRI has staff members from a wide variety of backgrounds, including software engineers, designers, digital archivists and librarians, data curators, policy and requirements specialists, educators, project managers, social scientists and humanities scholars. DRI is certified by the CoreTrustSeal, the current TDR standard widely recommended for best practice in Open Science. In addition to providing trusted digital repository services, the DRI is also Ireland\u2019s research centre for best practices in digital archiving, repository infrastructures, preservation policy, research data management and advocacy at the national and European levels. DRI contributes to policy making nationally (e.g. via the National Open Research Forum and the IRC), and internationally, including European Commission expert groups, the Digital Preservation Coalition, DARIAH, and the OECD.", "abbreviation": "DRI", "support-links": [{"url": "https://www.dri.ie/blog", "name": "DRI Blog", "type": "Blog/News"}, {"url": "dri@ria.ie", "name": "Contact email", "type": "Support email"}, {"url": "https://repository.dri.ie/pages/about_faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.dri.ie/about/guide-to-deposit", "name": "How to Deposit Data", "type": "Help documentation"}, {"url": "https://guides.dri.ie/user-guide/index.html", "name": "User manual", "type": "Help documentation"}, {"url": "https://github.com/Digital-Repository-of-Ireland", "name": "Github Digital Repository of Ireland", "type": "Github"}, {"url": "https://www.dri.ie/research-data-and-dri", "name": "Research Data and DRI", "type": "Help documentation"}, {"url": "https://www.dri.ie/about-dri", "name": "About DRI", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://repository.dri.ie/", "name": "Data access", "type": "data access"}, {"url": "https://repository.dri.ie/catalog?mode=collections&search_field=all_fields", "name": "Browse Collections", "type": "data access"}, {"url": "https://repository.dri.ie/catalog?mode=collections&search_field=all_fields&show_subs=true", "name": "Browse Sub-Collections", "type": "data access"}, {"url": "https://repository.dri.ie/catalog?mode=objects&search_field=all_fields&show_subs=false", "name": "Browse Objects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011805", "name": "re3data:r3d100011805", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001517", "bsg-d001517"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Governance", "Humanities and Social Science"], "domains": ["Resource metadata", "Data retrieval", "Digital curation", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["data long-term preservation", "Open Access"], "countries": ["Ireland"], "name": "FAIRsharing record for: Digital Repository of Ireland", "abbreviation": "DRI", "url": "https://fairsharing.org/10.25504/FAIRsharing.wL29nJ", "doi": "10.25504/FAIRsharing.wL29nJ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Digital Repository of Ireland (DRI) is a national trusted digital repository (TDR) for Ireland\u2019s social and cultural data. We preserve, curate, and provide sustained access to a wealth of Ireland\u2019s humanities and social sciences data through a single online portal. The repository houses unique and important collections from a variety of organisations including higher education institutions, cultural institutions, government agencies, and specialist archives. DRI has staff members from a wide variety of backgrounds, including software engineers, designers, digital archivists and librarians, data curators, policy and requirements specialists, educators, project managers, social scientists and humanities scholars. DRI is certified by the CoreTrustSeal, the current TDR standard widely recommended for best practice in Open Science. In addition to providing trusted digital repository services, the DRI is also Ireland\u2019s research centre for best practices in digital archiving, repository infrastructures, preservation policy, research data management and advocacy at the national and European levels. DRI contributes to policy making nationally (e.g. via the National Open Research Forum and the IRC), and internationally, including European Commission expert groups, the Digital Preservation Coalition, DARIAH, and the OECD.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1430, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2392", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:21:32.000Z", "updated-at": "2021-11-24T13:16:29.053Z", "metadata": {"doi": "10.25504/FAIRsharing.1z88ee", "name": "BCCM/ULC Cyanobacteria Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/ULC", "contact-email": "BCCM.ULC@ulg.ac.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-ulc", "identifier": 2392, "description": "BCCM/ULC is a small and dedicated public collection, currently containing one of the largest collections of documented (sub)polar cyanobacteria worldwide. The BCCM/ULC collection is hosted by the Centre for Protein Engineering (the Unit) of the University of Li\u00e8ge. The host Unit is very active in research projects concerning the cyanobacterial diversity and biogeography, with a focus on polar biotopes. The approach used is polyphasic, including the isolation of strains and culture-independent methods (DGGE, clone libraries, pyrosequencing based on the ribosomal operon sequences). The participation to field expeditions in the Antarctic and Arctic has enabled to collect samples in many locations. Moreover, taxonomic research is carried out by the host Unit to improve the classification of the cyanobacterial phylum. It is based on a polyphasic approach combining the morphological and molecular characterizations of the strains.", "abbreviation": "BCCM/ULC", "support-links": [{"url": "http://bccm.belspo.be/news", "name": "News", "type": "Blog/News"}, {"url": "http://bccm.belspo.be/webform/contact-us", "type": "Contact form"}, {"url": "http://bccm.belspo.be/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://bccm.belspo.be/webform/subscribe-bccm-newsletter", "name": "Newsletter", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/didyouknow", "name": "Videos", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/labinstructions", "name": "Lab instruction videos", "type": "Help documentation"}], "data-processes": [{"url": "http://bccm.belspo.be/catalogues/ulc-catalogue-search", "name": "Cyanobacteria catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "Public deposit of cyanobacteria", "type": "data curation"}, {"url": "http://bccm.belspo.be/search/node", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000873", "bsg-d000873"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Classification", "Morphology", "16S rRNA"], "taxonomies": ["Chroococcales", "Cyanobacteria", "Nostocales", "Oscillatoriales"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/ULC Cyanobacteria Collection", "abbreviation": "BCCM/ULC", "url": "https://fairsharing.org/10.25504/FAIRsharing.1z88ee", "doi": "10.25504/FAIRsharing.1z88ee", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCCM/ULC is a small and dedicated public collection, currently containing one of the largest collections of documented (sub)polar cyanobacteria worldwide. The BCCM/ULC collection is hosted by the Centre for Protein Engineering (the Unit) of the University of Li\u00e8ge. The host Unit is very active in research projects concerning the cyanobacterial diversity and biogeography, with a focus on polar biotopes. The approach used is polyphasic, including the isolation of strains and culture-independent methods (DGGE, clone libraries, pyrosequencing based on the ribosomal operon sequences). The participation to field expeditions in the Antarctic and Arctic has enabled to collect samples in many locations. Moreover, taxonomic research is carried out by the host Unit to improve the classification of the cyanobacterial phylum. It is based on a polyphasic approach combining the morphological and molecular characterizations of the strains.", "publications": [{"id": 1060, "pubmed_id": null, "title": "Plectolyngbya hodgsonii: a novel filamentous cyanobacterium from Antarctic lakes", "year": 2011, "url": "https://link.springer.com/article/10.1007/s00300-010-0868-y", "authors": "Taton, A, Wilmotte, A, Smarda, J, Elster, J, & Komarek, J.", "journal": "Polar Biology", "doi": null, "created_at": "2021-09-30T08:24:17.389Z", "updated_at": "2021-09-30T11:28:31.612Z"}, {"id": 1061, "pubmed_id": null, "title": "The limnology and biology of the Dufek Massif, Transantarctic Mountains 82\u00b0 South", "year": 2010, "url": "https://doi.org/10.1016/j.polar.2010.04.003", "authors": "Hodgson, D. A, Convey, P, Verleyen, E, Vyverman, W, McInnes, S. J, Sands, C. J, Fernandez, R, Wilmotte, A, De Wever, A, Peeters, K, & Willems, A", "journal": "Polar Science", "doi": null, "created_at": "2021-09-30T08:24:17.489Z", "updated_at": "2021-09-30T11:28:31.717Z"}, {"id": 2036, "pubmed_id": 21592144, "title": "Low cyanobacterial diversity in biotopes of the Transantarctic Mountains and Shackleton Range (80-82 degrees S), Antarctica.", "year": 2011, "url": "http://doi.org/10.1111/j.1574-6941.2011.01132.x", "authors": "Fernandez-Carazo R,Hodgson DA,Convey P,Wilmotte A", "journal": "FEMS Microbiol Ecol", "doi": "10.1111/j.1574-6941.2011.01132.x", "created_at": "2021-09-30T08:26:09.256Z", "updated_at": "2021-09-30T08:26:09.256Z"}, {"id": 2059, "pubmed_id": null, "title": "Late Holocene changes in cyanobacterial community structure in maritime Antarctic lakes", "year": 2013, "url": "https://link.springer.com/article/10.1007/s10933-013-9700-3", "authors": "Fernandez-Carazo, R, Verleyen, E, Hodgson, D. A, Roberts, S. J, Waleron, K, Vyverman, W, & Wilmotte, A", "journal": "Journal of Paleolimnology", "doi": null, "created_at": "2021-09-30T08:26:12.032Z", "updated_at": "2021-09-30T11:28:34.063Z"}, {"id": 2060, "pubmed_id": null, "title": "Cyanobacterial diversity for an anthropogenic impact assessment in the Sor Rondane Mountains area, Antarctica", "year": 2012, "url": "https://www.cambridge.org/core/journals/antarctic-science/article/abs/cyanobacterial-diversity-for-an-anthropogenic-impact-assessment-in-the-sor-rondane-mountains-area-antarctica/FBBAD63E961078C7251C30766F73ABAF", "authors": "Fernandez-Carazo, R, Namsaraev, Z, Mano, M.-J, Ertz, D, & Wilmotte, A.", "journal": "Antarctic Science", "doi": null, "created_at": "2021-09-30T08:26:12.132Z", "updated_at": "2021-09-30T11:28:34.163Z"}, {"id": 2670, "pubmed_id": null, "title": "Evidence for widespread endemism among Antarctic micro-organisms", "year": 2010, "url": "https://doi.org/10.1016/j.polar.2010.03.006", "authors": "Vyverman, W, Verleyen, E, Wilmotte, A, Hodgson, D. A, Willems, A, Peeters, K, Van De Vijver, B, De Wever, A, Leliaert, F, & Sabbe, K", "journal": "Polar Science", "doi": null, "created_at": "2021-09-30T08:27:27.845Z", "updated_at": "2021-09-30T11:28:37.129Z"}, {"id": 2671, "pubmed_id": null, "title": "Biogeography of terrestrial cyanobacteria from Antarctic ice-free areas", "year": 2010, "url": "https://doi.org/10.3189/172756411795931930", "authors": "Namsaraev, Z, Mano, M.-J, Fernandez Carazo, R, & Wilmotte, A", "journal": "Annals of Glaciology", "doi": null, "created_at": "2021-09-30T08:27:27.954Z", "updated_at": "2021-09-30T11:28:37.278Z"}, {"id": 2674, "pubmed_id": null, "title": "Structuring effects of climate-related environmental factors on Antarctic microbial mat communities", "year": 2010, "url": "http://hdl.handle.net/2268/33815", "authors": "Verleyen, E, Sabbe, K, Hodgson, D. A, Grubisic, S, Taton, A, Cousin, S, Wilmotte, A, De Wever, A, Van Der Gucht, K, & Vyverman, W", "journal": "Aquatic Microbial Ecology", "doi": null, "created_at": "2021-09-30T08:27:28.320Z", "updated_at": "2021-09-30T11:28:37.378Z"}], "licence-links": [{"licence-name": "BCCM website legal notice", "licence-id": 63, "link-id": 864, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 898, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2201", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T19:33:25.000Z", "updated-at": "2021-12-06T10:47:46.781Z", "metadata": {"doi": "10.25504/FAIRsharing.1mapgk", "name": "NIDDK Information Network", "status": "ready", "contacts": [{"contact-name": "General contact email", "contact-email": "info@dknet.org"}], "homepage": "http://www.dknet.org", "identifier": 2201, "description": "The NIDDK Information Network provides access to large pools of data relevant to the mission of NIDDK. The dkNET portal contains information about research resources such as antibodies, vectors and mouse strains, data, protocols, and literature.", "abbreviation": "dkNET", "support-links": [{"url": "https://dknet.org/about/blog", "name": "dkNET Blog", "type": "Blog/News"}, {"url": "https://dknet.org/about/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://dknet.org/page/scicrunch", "name": "SciCrunch and dkNET", "type": "Help documentation"}, {"url": "https://twitter.com/dkNET_Info", "name": "@dkNET_Info", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://dknet.org/rin/rrids", "name": "Browse Resource Reports", "type": "data access"}, {"url": "https://dknet.org/data/search#category-filter=Output%20Type:dknet%20Community%20Resources", "name": "Discovery Portal (Search)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012845", "name": "re3data:r3d100012845", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001606", "name": "SciCrunch:RRID:SCR_001606", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000675", "bsg-d000675"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Biomedical Science"], "domains": ["Expression data", "Model organism", "Publication", "Nuclear receptor", "Receptor", "Literature curation"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIDDK Information Network", "abbreviation": "dkNET", "url": "https://fairsharing.org/10.25504/FAIRsharing.1mapgk", "doi": "10.25504/FAIRsharing.1mapgk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NIDDK Information Network provides access to large pools of data relevant to the mission of NIDDK. The dkNET portal contains information about research resources such as antibodies, vectors and mouse strains, data, protocols, and literature.", "publications": [{"id": 1234, "pubmed_id": 26978244, "title": "The FAIR Guiding Principles for scientific data management and stewardship.", "year": 2016, "url": "http://doi.org/10.1038/sdata.2016.18", "authors": "Wilkinson MD,Dumontier M,Aalbersberg IJ,Appleton G,Axton M,Baak A,Blomberg N,Boiten JW,da Silva Santos LB,Bourne PE,Bouwman J,Brookes AJ,Clark T,Crosas M,Dillo I,Dumon O,Edmunds S,Evelo CT,Finkers R,Gonzalez-Beltran A,Gray AJ,Groth P,Goble C,Grethe JS,Heringa J,'t Hoen PA,Hooft R,Kuhn T,Kok R,Kok J,Lusher SJ,Martone ME,Mons A,Packer AL,Persson B,Rocca-Serra P,Roos M,van Schaik R,Sansone SA,Schultes E,Sengstag T,Slater T,Strawn G,Swertz MA,Thompson M,van der Lei J,van Mulligen E,Velterop J,Waagmeester A,Wittenburg P,Wolstencroft K,Zhao J,Mons B", "journal": "Sci Data", "doi": "10.1038/sdata.2016.18", "created_at": "2021-09-30T08:24:37.674Z", "updated_at": "2021-09-30T08:24:37.674Z"}, {"id": 1235, "pubmed_id": 26730820, "title": "Resource Disambiguator for the Web: Extracting Biomedical Resources and Their Citations from the Scientific Literature.", "year": 2016, "url": "http://doi.org/10.1371/journal.pone.0146300", "authors": "Ozyurt IB,Grethe JS,Martone ME,Bandrowski AE", "journal": "PLoS One", "doi": "10.1371/journal.pone.0146300", "created_at": "2021-09-30T08:24:37.783Z", "updated_at": "2021-09-30T08:24:37.783Z"}, {"id": 2626, "pubmed_id": 26393351, "title": "The NIDDK Information Network: A Community Portal for Finding Data, Materials, and Tools for Researchers Studying Diabetes, Digestive, and Kidney Diseases.", "year": 2015, "url": "http://doi.org/10.1371/journal.pone.0136206", "authors": "Whetzel PL,Grethe JS,Banks DE,Martone ME", "journal": "PLoS One", "doi": "10.1371/journal.pone.0136206", "created_at": "2021-09-30T08:27:22.428Z", "updated_at": "2021-09-30T08:27:22.428Z"}], "licence-links": [{"licence-name": "dkNET - SciCrunch Privacy Policy", "licence-id": 247, "link-id": 1711, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1712, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2763", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-29T09:04:44.000Z", "updated-at": "2022-02-08T10:38:59.151Z", "metadata": {"doi": "10.25504/FAIRsharing.52da68", "name": "BIG Data Center", "status": "ready", "contacts": [{"contact-name": "Yiming Bao", "contact-email": "baoym@big.ac.cn", "contact-orcid": "0000-0002-9922-9723"}], "homepage": "http://bigd.big.ac.cn/", "citations": [], "identifier": 2763, "description": "The BIG Data Center at Beijing Institute of Genomics (BIG) of the Chinese Academy of Sciences provides a suite of database resources in support of worldwide research activities in both academia and industry. With the vast amounts of multi-omics data generated at unprecedented scales and rates, the BIG Data Center is continually expanding, updating and enriching its core database resources through big data integration and value-added curation. Resources with significant updates in the past year include BioProject (a biological project library), BioSample (a biological sample library), Genome Sequence Archive (GSA, a data repository for archiving raw sequence reads), Genome Warehouse (GWH, a centralized resource housing genome-scale data), Genome Variation Map (GVM, a public repository of genome variations), Science Wikis (a catalog of biological knowledge wikis for community annotations) and IC4R (Information Commons for Rice). Newly released resources include EWAS Atlas (a knowledgebase of epigenome-wide association studies), iDog (an integrated omics data resource for dog) and RNA editing resources (for editome-disease associations and plant RNA editosome, respectively). To promote biodiversity and health big data sharing around the world, the Open Biodiversity and Health Big Data (BHBD) initiative is introduced. All of these resources are publicly accessible.", "abbreviation": "BIGD", "data-curation": {}, "support-links": [{"url": "http://bigd.big.ac.cn/conference", "name": "Conference", "type": "Blog/News"}, {"url": "http://bigd.big.ac.cn/training/gbt", "name": "Genomics & Bioinformatics Training", "type": "Training documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://bigd.big.ac.cn/databases", "name": "Browse databases", "type": "data access"}, {"url": "http://sso.big.ac.cn/login", "name": "Login", "type": "data curation"}, {"url": "http://bigd.big.ac.cn/", "name": "Search", "type": "data access"}, {"url": "http://bigd.big.ac.cn/standards/", "name": "Standards", "type": "data curation"}], "associated-tools": [{"url": "http://bigd.big.ac.cn/tools/gaap", "name": "GAAP 1.0"}, {"url": "http://bigd.big.ac.cn/tools/kaks", "name": "KaKs_Calculator 1.2"}, {"url": "http://www.evolgenius.info/evolview/#login", "name": "Evolview 2.0"}, {"url": "http://bigd.big.ac.cn/tools/bs-rna", "name": "BS-RNA 1.0"}, {"url": "http://bigd.big.ac.cn/tools/cat", "name": "CAT"}, {"url": "http://bigd.big.ac.cn/tools/paraat", "name": "ParaAT 2.0"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001261", "bsg-d001261"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenomics", "Knowledge and Information Systems", "Metagenomics", "Genomics", "Bioinformatics", "Genetics", "Life Science", "Transcriptomics", "Omics"], "domains": ["Taxonomic classification", "Resource metadata", "Expression data", "Biological sample annotation", "RNA sequence", "Computational biological predictions", "Real time polymerase chain reaction", "DNA methylation", "Gene expression", "Biological sample", "Disease", "Single nucleotide polymorphism", "Genome", "Long non-coding RNA", "Gene-disease association", "Literature curation", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: BIG Data Center", "abbreviation": "BIGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.52da68", "doi": "10.25504/FAIRsharing.52da68", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BIG Data Center at Beijing Institute of Genomics (BIG) of the Chinese Academy of Sciences provides a suite of database resources in support of worldwide research activities in both academia and industry. With the vast amounts of multi-omics data generated at unprecedented scales and rates, the BIG Data Center is continually expanding, updating and enriching its core database resources through big data integration and value-added curation. Resources with significant updates in the past year include BioProject (a biological project library), BioSample (a biological sample library), Genome Sequence Archive (GSA, a data repository for archiving raw sequence reads), Genome Warehouse (GWH, a centralized resource housing genome-scale data), Genome Variation Map (GVM, a public repository of genome variations), Science Wikis (a catalog of biological knowledge wikis for community annotations) and IC4R (Information Commons for Rice). Newly released resources include EWAS Atlas (a knowledgebase of epigenome-wide association studies), iDog (an integrated omics data resource for dog) and RNA editing resources (for editome-disease associations and plant RNA editosome, respectively). To promote biodiversity and health big data sharing around the world, the Open Biodiversity and Health Big Data (BHBD) initiative is introduced. All of these resources are publicly accessible.", "publications": [{"id": 507, "pubmed_id": 29036542, "title": "Database Resources of the BIG Data Center in 2018.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx897", "authors": "BIG Data Center Members ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx897", "created_at": "2021-09-30T08:23:15.298Z", "updated_at": "2021-09-30T11:29:51.279Z"}, {"id": 513, "pubmed_id": 30365034, "title": "Database Resources of the BIG Data Center in 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky993", "authors": "BIG Data Center Members.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky993", "created_at": "2021-09-30T08:23:15.990Z", "updated_at": "2021-09-30T11:28:46.885Z"}, {"id": 632, "pubmed_id": 27899658, "title": "The BIG Data Center: from deposition to integration to translation.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1060", "authors": "BIG Data Center Members", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1060", "created_at": "2021-09-30T08:23:29.482Z", "updated_at": "2021-09-30T11:28:48.618Z"}, {"id": 722, "pubmed_id": 30716410, "title": "Database Resources in BIG Data Center: Submission, Archiving, and Integration of Big Data in Plant Science.", "year": 2019, "url": "http://doi.org/S1674-2052(19)30051-6", "authors": "Song S,Zhang Z", "journal": "Mol Plant", "doi": "S1674-2052(19)30051-6", "created_at": "2021-09-30T08:23:39.570Z", "updated_at": "2021-09-30T08:23:39.570Z"}, {"id": 723, "pubmed_id": 29069473, "title": "Genome Variation Map: a data repository of genome variations in BIG Data Center.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx986", "authors": "Song S,Tian D,Li C,Tang B,Dong L,Xiao J,Bao Y,Zhao W,He H,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx986", "created_at": "2021-09-30T08:23:39.676Z", "updated_at": "2021-09-30T11:28:49.325Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 2110, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3293", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-16T11:09:08.000Z", "updated-at": "2021-11-24T13:13:59.418Z", "metadata": {"doi": "10.25504/FAIRsharing.8F5DRF", "name": "MS Global Data-Sharing Initiative", "status": "ready", "contacts": [{"contact-name": "Ariadna Torrens", "contact-email": "ariadna.torrens@qmenta.com"}], "homepage": "https://www.qmenta.com/covid19-patients_ms/", "identifier": 3293, "description": "The Multiple Sclerosis International Federation (MSIF) and the Multiple Sclerosis Data Alliance (MSDA) have teamed up to form a Global Data Sharing Initiative to achieve insights on the effect of COVID-19 in people with MS as fast as possible, with the intent to steer clinical decision-making during the pandemic.", "support-links": [{"url": "https://www.qmenta.com/covid19-patients_ms/", "type": "Contact form"}, {"url": "angela.hooper@qmenta.com", "name": "Angela Hooper", "type": "Support email"}, {"url": "https://msdataalliance.com/covid-19/covid-19-and-ms-global-data-sharing-initiative/", "name": "MS Data Alliance Online Documentation", "type": "Help documentation"}, {"url": "https://platform.qmenta.com/covid19_ms_patient", "name": "Report a case (for patients)", "type": "Help documentation"}, {"url": "https://www.qmenta.com/covid19-patients_ms/", "name": "Report a case (for clinicians)", "type": "Help documentation"}, {"url": "https://www.msif.org/covid-19-ms-global-data-sharing-initiative/", "name": "MS International Federation Online Documentation", "type": "Help documentation"}, {"url": "https://www.qmenta.com/global-data-sharing-initiative-launched-to-help-people-with-ms-during-covid-19-pandemic/", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.qmenta.com/covid19-patients_ms/", "name": "Weekly results update", "type": "data access"}]}, "legacy-ids": ["biodbcore-001808", "bsg-d001808"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Image", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Multiple Sclerosis", "Observations", "registry", "Survey"], "countries": ["Worldwide"], "name": "FAIRsharing record for: MS Global Data-Sharing Initiative", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.8F5DRF", "doi": "10.25504/FAIRsharing.8F5DRF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Multiple Sclerosis International Federation (MSIF) and the Multiple Sclerosis Data Alliance (MSDA) have teamed up to form a Global Data Sharing Initiative to achieve insights on the effect of COVID-19 in people with MS as fast as possible, with the intent to steer clinical decision-making during the pandemic.", "publications": [], "licence-links": [{"licence-name": "QMENTA Terms of Service", "licence-id": 694, "link-id": 1198, "relation": "undefined"}, {"licence-name": "QMENTA Data Policy", "licence-id": 692, "link-id": 1199, "relation": "undefined"}, {"licence-name": "QMENTA Privacy Policy", "licence-id": 693, "link-id": 1201, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1909", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.921Z", "metadata": {"doi": "10.25504/FAIRsharing.cb05hf", "name": "Aphid Genomics Database", "status": "ready", "contacts": [{"contact-name": "Fabrice Legeai", "contact-email": "fabrice.legeai@rennes.inra.fr"}], "homepage": "http://www.aphidbase.com/", "identifier": 1909, "description": "The Aphid Genome Database's aim is to improve the current pea aphid genome assembly and annotation, and to provide new aphid genome sequences as well as tools for analysis of these genomes.", "abbreviation": "AphidBase", "support-links": [{"url": "aphidgenomics@listes.inra.fr", "type": "Mailing list"}], "year-creation": 2006, "data-processes": [{"url": "http://bipaa.genouest.org/is/aphidbase/", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://tools.genouest.org/tools/genouestsf/aphidblast.php/en/", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000374", "bsg-d000374"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome annotation", "Genomic assembly", "Genome"], "taxonomies": ["Aphididae"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Aphid Genomics Database", "abbreviation": "AphidBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.cb05hf", "doi": "10.25504/FAIRsharing.cb05hf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Aphid Genome Database's aim is to improve the current pea aphid genome assembly and annotation, and to provide new aphid genome sequences as well as tools for analysis of these genomes.", "publications": [{"id": 406, "pubmed_id": 20482635, "title": "AphidBase: a centralized bioinformatic resource for annotation of the pea aphid genome.", "year": 2010, "url": "http://doi.org/10.1111/j.1365-2583.2009.00930.x", "authors": "Legeai F., Shigenobu S., Gauthier JP., Colbourne J., Rispe C., Collin O., Richards S., Wilson AC., Murphy T., Tagu D.,", "journal": "Insect Mol. Biol.", "doi": "10.1111/j.1365-2583.2009.00930.x", "created_at": "2021-09-30T08:23:04.108Z", "updated_at": "2021-09-30T08:23:04.108Z"}, {"id": 1496, "pubmed_id": 17237053, "title": "AphidBase: a database for aphid genomic resources.", "year": 2007, "url": "http://doi.org/10.1093/bioinformatics/btl682", "authors": "Gauthier JP,Legeai F,Zasadzinski A,Rispe C,Tagu D", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btl682", "created_at": "2021-09-30T08:25:07.577Z", "updated_at": "2021-09-30T08:25:07.577Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2558", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T11:04:04.000Z", "updated-at": "2021-12-06T10:49:23.458Z", "metadata": {"doi": "10.25504/FAIRsharing.wqsxtg", "name": "Texas Data Repository", "status": "ready", "contacts": [{"contact-name": "TDL Helpdesk", "contact-email": "support@tdl.org"}], "homepage": "https://dataverse.tdl.org", "identifier": 2558, "description": "The Texas Data Repository is a platform for publishing and archiving datasets (and other data products) created by faculty, staff, and students at Texas higher education institutions. The repository is built in an open-source application called Dataverse, developed and used by Harvard University. The repository is hosted by the Texas Digital Library, a consortium of academic libraries in Texas with a proven history of providing shared technology services that support secure, reliable access to digital collections of research and scholarship. Researchers deposit data within the TDR to, for example, comply with funding requirements and ensure reliable, managed access for data.", "abbreviation": "TDR", "support-links": [{"url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/289079303/Frequently+Asked+Questions", "name": "TDR FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/287965260/User+Guide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/288063559/Licensing+and+Permissions", "name": "Documentation for Licensing and Permissions", "type": "Help documentation"}, {"url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/overview?homepageId=48070750", "name": "Documentation", "type": "Help documentation"}, {"url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/289144946/About", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://dataverse.tdl.org/dataverse/root/search", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012385", "name": "re3data:r3d100012385", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001041", "bsg-d001041"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Experimental measurement", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United States"], "name": "FAIRsharing record for: Texas Data Repository", "abbreviation": "TDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.wqsxtg", "doi": "10.25504/FAIRsharing.wqsxtg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Texas Data Repository is a platform for publishing and archiving datasets (and other data products) created by faculty, staff, and students at Texas higher education institutions. The repository is built in an open-source application called Dataverse, developed and used by Harvard University. The repository is hosted by the Texas Digital Library, a consortium of academic libraries in Texas with a proven history of providing shared technology services that support secure, reliable access to digital collections of research and scholarship. Researchers deposit data within the TDR to, for example, comply with funding requirements and ensure reliable, managed access for data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2254, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1848", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-10T14:58:32.208Z", "metadata": {"doi": "10.25504/FAIRsharing.cmw6mm", "name": "Europe PubMed Central", "status": "ready", "contacts": [{"contact-name": "Europe PMC Helpdesk", "contact-email": "helpdesk@europepmc.org"}], "homepage": "https://europepmc.org", "identifier": 1848, "description": "Europe PubMed Central (Europe PMC) is an on-line database that offers free access to a large and growing collection of biomedical research literature.", "abbreviation": "Europe PMC", "access-points": [{"url": "https://europepmc.org/RestfulWebService", "name": "Our RESTful Web Service gives you access to all of the publications and related information we hold in the Europe PMC database.", "type": "REST"}, {"url": "https://europepmc.org/SoapWebServices", "name": "A SOAP based service to retrieve data from our publication database. You can search for metadata and full text articles in Europe PMC.", "type": "SOAP"}], "support-links": [{"url": "https://blog.europepmc.org", "name": "Europe PMC: blog", "type": "Blog/News"}, {"url": "https://europepmc.org/feedback", "type": "Contact form"}, {"url": "helpdesk@europepmc.org", "name": "Europe PMC Helpdesk", "type": "Support email"}, {"url": "https://europepmc.org/Help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://europepmc.org/Roadmap", "name": "Roadmap", "type": "Help documentation"}, {"url": "https://europepmc.org/Funders/", "name": "Funders", "type": "Help documentation"}, {"url": "https://europepmc.org/Governance", "name": "Governance", "type": "Help documentation"}, {"url": "https://europepmc.org/About", "name": "About", "type": "Help documentation"}, {"url": "https://europepmc.org/RssFeeds", "name": "All RSS Feeds", "type": "Blog/News"}, {"url": "https://tess.elixir-europe.org/materials/europe-pmc-quick-tour", "name": "Europe PMC: quick tour", "type": "TeSS links to training materials"}, {"url": "https://europepmc.org/Outreach", "name": "Outreach", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/europe-pmc-get-most-literature-searches", "name": "Europe PMC: get the most from literature searches", "type": "Training documentation"}, {"url": "https://twitter.com/EuropePMC_news", "name": "@EuropePMC_news", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Europe_PubMed_Central", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2012, "data-processes": [{"url": "https://europepmc.org/downloads", "name": "Download", "type": "data access"}, {"url": "https://europepmc.org/advancesearch", "name": "Advanced search", "type": "data access"}, {"url": "https://europepmc.org/journalList", "name": "Browse and Search: Journal list", "type": "data access"}, {"url": "https://europepmc.org/grantfinder", "name": "Grant search", "type": "data access"}], "associated-tools": [{"url": "https://europepmc.org/orcid/import", "name": "ORCID Article Claiming Tool"}, {"url": "https://europepmc.org/LabsLink", "name": "External Links Service"}]}, "legacy-ids": ["biodbcore-000308", "bsg-d000308"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Citation", "Abstract", "Bibliography", "Annotation", "Text mining", "Patent"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Europe PubMed Central", "abbreviation": "Europe PMC", "url": "https://fairsharing.org/10.25504/FAIRsharing.cmw6mm", "doi": "10.25504/FAIRsharing.cmw6mm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Europe PubMed Central (Europe PMC) is an on-line database that offers free access to a large and growing collection of biomedical research literature.", "publications": [{"id": 546, "pubmed_id": 33180112, "title": "Europe PMC in 2020.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa994", "authors": "Ferguson C, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa994", "created_at": "2021-09-30T08:23:19.582Z", "updated_at": "2021-09-30T11:28:47.250Z"}, {"id": 1362, "pubmed_id": 25378340, "title": "Europe PMC: a full-text literature database for the life sciences and platform for innovation.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1061", "authors": "Europe PMC Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1061", "created_at": "2021-09-30T08:24:52.307Z", "updated_at": "2021-09-30T11:29:06.876Z"}, {"id": 1409, "pubmed_id": 29161421, "title": "Europe PMC in 2017.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1005", "authors": "Levchenko M, Gou Y ,Graef F, Hamelers A, Huang Z, Ide-Smith M, Iyer A, Kilian O, Katuri J, Kim JH, Marinos N, Nambiar R, Parkin M, Pi X, Rogers F, Talo F, Vartak V, Venkatesan A, McEntyre J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1005", "created_at": "2021-09-30T08:24:57.514Z", "updated_at": "2021-09-30T11:29:08.059Z"}, {"id": 2067, "pubmed_id": 21062818, "title": "UKPMC: a full text article resource for the life sciences.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1063", "authors": "McEntyre JR, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1063", "created_at": "2021-09-30T08:26:12.980Z", "updated_at": "2021-09-30T11:29:27.794Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2273, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2153", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:16.611Z", "metadata": {"doi": "10.25504/FAIRsharing.ajpk6x", "name": "International Neuroimaging Data-Sharing Initiative", "status": "ready", "contacts": [{"contact-name": "Michael Milham", "contact-email": "michael.milham@childmind.org", "contact-orcid": "0000-0003-3532-1210"}], "homepage": "http://fcon_1000.projects.nitrc.org/", "identifier": 2153, "description": "Database for open data sharing of resting-state fMRI and DTI images collected from over 50 sites around the world. These data collections now contain comprehensive phentoypic information, openly available via data usage agreements.", "abbreviation": "INDI", "support-links": [{"url": "http://www.nitrc.org/forum/?group_id=296", "type": "Forum"}, {"url": "https://www.nitrc.org/plugins/mwiki/index.php/fcon_1000:MainPage", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://fcon_1000.projects.nitrc.org/indi/req_access.html", "name": "Instructions for gaining access", "type": "data access"}, {"url": "https://www.nitrc.org/frs/?group_id=296", "name": "Download release", "type": "data release"}], "associated-tools": [{"url": "http://fcp-indi.github.io/", "name": "C-PAC 0.33"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011555", "name": "re3data:r3d100011555", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_015771", "name": "SciCrunch:RRID:SCR_015771", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000625", "bsg-d000625"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Functional magnetic resonance imaging", "Diffusion tensor imaging", "Phenotype", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China", "Canada", "United States", "Netherlands", "Germany"], "name": "FAIRsharing record for: International Neuroimaging Data-Sharing Initiative", "abbreviation": "INDI", "url": "https://fairsharing.org/10.25504/FAIRsharing.ajpk6x", "doi": "10.25504/FAIRsharing.ajpk6x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database for open data sharing of resting-state fMRI and DTI images collected from over 50 sites around the world. These data collections now contain comprehensive phentoypic information, openly available via data usage agreements.", "publications": [{"id": 625, "pubmed_id": 23123682, "title": "Making data sharing work: the FCP/INDI experience.", "year": 2012, "url": "http://doi.org/10.1016/j.neuroimage.2012.10.064", "authors": "Mennes M, Biswal BB, Castellanos FX, Milham MP", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2012.10.064", "created_at": "2021-09-30T08:23:28.726Z", "updated_at": "2021-09-30T08:23:28.726Z"}, {"id": 1843, "pubmed_id": 22284177, "title": "Open neuroscience solutions for the connectome-wide association era.", "year": 2012, "url": "http://doi.org/10.1016/j.neuron.2011.11.004", "authors": "Milham MP", "journal": "Neuron", "doi": "10.1016/j.neuron.2011.11.004.", "created_at": "2021-09-30T08:25:46.981Z", "updated_at": "2021-09-30T08:25:46.981Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 2436, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2966", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T22:22:02.000Z", "updated-at": "2022-02-08T10:54:18.353Z", "metadata": {"doi": "10.25504/FAIRsharing.a971f7", "name": "myExperiment", "status": "ready", "contacts": [], "homepage": "https://www.myexperiment.org/", "citations": [{"doi": "10.1093/nar/gkq429", "pubmed-id": 20501605, "publication-id": 2897}], "identifier": 2966, "description": "myExperiment is a collaborative environment where scientists can safely publish their workflows and in silico experiments, share them with groups and find those of others. Workflows, other digital objects and bundles (called Packs) can now be swapped, sorted and searched like photos and videos on the Web.", "abbreviation": "myExperiment", "data-curation": {}, "support-links": [{"url": "https://www.myexperiment.org/feedback", "type": "Contact form"}, {"url": "https://lists.nongnu.org/mailman/listinfo/myexperiment-discuss", "name": "Mailing list", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://www.myexperiment.org/workflows", "name": "Browse workflows", "type": "data access"}, {"url": "https://www.myexperiment.org/files", "name": "Browse files", "type": "data access"}, {"url": "https://www.myexperiment.org/packs", "name": "Browse packs", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010473", "name": "re3data:r3d100010473", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001795", "name": "SciCrunch:RRID:SCR_001795", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001470", "bsg-d001470"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics"], "domains": ["Workflow"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: myExperiment", "abbreviation": "myExperiment", "url": "https://fairsharing.org/10.25504/FAIRsharing.a971f7", "doi": "10.25504/FAIRsharing.a971f7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: myExperiment is a collaborative environment where scientists can safely publish their workflows and in silico experiments, share them with groups and find those of others. Workflows, other digital objects and bundles (called Packs) can now be swapped, sorted and searched like photos and videos on the Web.", "publications": [{"id": 2897, "pubmed_id": 20501605, "title": "myExperiment: a repository and social network for the sharing of bioinformatics workflows.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq429", "authors": "Goble CA,Bhagat J,Aleksejevs S,Cruickshank D,Michaelides D,Newman D,Borkum M,Bechhofer S,Roos M,Li P,De Roure D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq429", "created_at": "2021-09-30T08:27:56.688Z", "updated_at": "2021-09-30T11:29:48.338Z"}], "licence-links": [{"licence-name": "myExperiment Privacy Policy", "licence-id": 903, "link-id": 2574, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3317", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-10T12:15:30.000Z", "updated-at": "2022-01-10T14:30:03.481Z", "metadata": {"name": "Software Heritage", "status": "ready", "contacts": [{"contact-name": "Software Heritage General Contact", "contact-email": "info@softwareheritage.org"}], "homepage": "https://www.softwareheritage.org/", "citations": [], "identifier": 3317, "description": "The Software Heritage database stores source code with the goal of preserving software. Various metadata, including software origin and development history are retained. Software Heritage aims to ensure the availability, traceability and uniformity of the software it collects.", "abbreviation": "Software Heritage", "access-points": [{"url": "https://archive.softwareheritage.org/api/", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "https://www.softwareheritage.org/newsletter/", "name": "Newsletter", "type": "Blog/News"}, {"url": "https://www.softwareheritage.org/blog", "name": "Software Heritage Blog", "type": "Blog/News"}, {"url": "https://www.softwareheritage.org/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.softwareheritage.org/save-and-reference-research-software/", "name": "Submission Help", "type": "Help documentation"}, {"url": "https://archive.softwareheritage.org/browse/help/", "name": "User Help", "type": "Help documentation"}, {"url": "https://forge.softwareheritage.org/", "name": "Project Development Tracker", "type": "Help documentation"}, {"url": "https://docs.softwareheritage.org/devel/index.html", "name": "Development Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/SwHeritage", "name": "@SwHeritage", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://archive.softwareheritage.org/", "name": "Search", "type": "data access"}, {"url": "https://archive.softwareheritage.org/browse/vault/", "name": "Download", "type": "data release"}, {"url": "https://archive.softwareheritage.org/save/", "name": "Submit Source Code", "type": "data curation"}, {"url": "https://archive.softwareheritage.org/browse/search/", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013328", "name": "re3data:r3d100013328", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001832", "bsg-d001832"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computer Science"], "domains": ["Software", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Software Heritage", "abbreviation": "Software Heritage", "url": "https://fairsharing.org/fairsharing_records/3317", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Software Heritage database stores source code with the goal of preserving software. Various metadata, including software origin and development history are retained. Software Heritage aims to ensure the availability, traceability and uniformity of the software it collects.", "publications": [], "licence-links": [{"licence-name": "Software Heritage Bulk Terms of Use", "licence-id": 753, "link-id": 2234, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2395", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:59:02.000Z", "updated-at": "2021-11-24T13:19:34.823Z", "metadata": {"doi": "10.25504/FAIRsharing.yxs0d0", "name": "BCCM/DCG Diatoms Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/DCG", "contact-email": "Olga.Chepurnova@UGent.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-dcg", "identifier": 2395, "description": "The BCCM/DCG public collection is the only culture collection worldwide specialized in diatoms, the most species-rich and ecologically important algal group. Other microalgae interesting from an applied perspective are included in the collection as well. Strains are kept as safe deposits or are publicly available for the scientific community. These are distributed worldwide as research or reference material to scientific institutions and companies.", "abbreviation": "BCCM/DCG", "support-links": [{"url": "http://bccm.belspo.be/services/mta", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "http://bccm.belspo.be/catalogues/dcg-catalogue-search", "name": "Diatoms Catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "Public deposit of Diatoms", "type": "data curation"}], "associated-tools": [{"url": "http://bccm.belspo.be/catalogues/dcg-catalogue-search", "name": "BCCM/DCG Catalogue Search"}]}, "legacy-ids": ["biodbcore-000876", "bsg-d000876"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": [], "taxonomies": ["Algae"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/DCG Diatoms Collection", "abbreviation": "BCCM/DCG", "url": "https://fairsharing.org/10.25504/FAIRsharing.yxs0d0", "doi": "10.25504/FAIRsharing.yxs0d0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BCCM/DCG public collection is the only culture collection worldwide specialized in diatoms, the most species-rich and ecologically important algal group. Other microalgae interesting from an applied perspective are included in the collection as well. Strains are kept as safe deposits or are publicly available for the scientific community. These are distributed worldwide as research or reference material to scientific institutions and companies.", "publications": [], "licence-links": [{"licence-name": "BCCM Material Accession Agreement (MAA) F475A", "licence-id": 61, "link-id": 419, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 420, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2604", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-10T12:28:02.000Z", "updated-at": "2021-11-24T13:14:54.408Z", "metadata": {"name": "Open Toxicogenomics Project-Genomics Assisted Toxicity Evaluation system", "status": "deprecated", "contacts": [{"contact-name": "Hiroshi Yamada", "contact-email": "h-yamada@nibio.go.jp"}], "homepage": "http://toxico.nibiohn.go.jp/english/", "identifier": 2604, "description": "Open TG-GATEs is a public toxicogenomics database developed so that a wider community of researchers could utilize the fruits of TGP and TGP2 research. This database provides public access to data on 170 of the compounds catalogued in TG-GATEs. Data searching can be refined using either the name of a compound or the pathological findings by organ as the starting point. Gene expression data linked to phenotype data in pathology findings can also be downloaded as a CEL(*)file.", "abbreviation": "Open TG-GATEs", "support-links": [{"url": "http://toxico.nibiohn.go.jp/english/news.html", "name": "News", "type": "Blog/News"}, {"url": "opentggates@nibiohn.jp", "type": "Support email"}, {"url": "http://toxico.nibiohn.go.jp/english/seika.html", "name": "List of Toxicogenomics Project Documents", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://toxico.nibiohn.go.jp/english/datalist.html", "name": "List of Public Data", "type": "data access"}, {"url": "http://toxico.nibiohn.go.jp/open-tggates/english/search.html", "name": "Data Search", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001087", "bsg-d001087"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Toxicogenomics", "Biomedical Science", "Pathology"], "domains": ["Expression data", "Histology", "Liver"], "taxonomies": ["Homo sapiens", "Rattus norvegicus"], "user-defined-tags": ["Digital pathology"], "countries": ["Japan"], "name": "FAIRsharing record for: Open Toxicogenomics Project-Genomics Assisted Toxicity Evaluation system", "abbreviation": "Open TG-GATEs", "url": "https://fairsharing.org/fairsharing_records/2604", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open TG-GATEs is a public toxicogenomics database developed so that a wider community of researchers could utilize the fruits of TGP and TGP2 research. This database provides public access to data on 170 of the compounds catalogued in TG-GATEs. Data searching can be refined using either the name of a compound or the pathological findings by organ as the starting point. Gene expression data linked to phenotype data in pathology findings can also be downloaded as a CEL(*)file.", "publications": [{"id": 2689, "pubmed_id": 25313160, "title": "Open TG-GATEs: a large-scale toxicogenomics database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku955", "authors": "Igarashi Y,Nakatsu N,Yamashita T,Ono A,Ohno Y,Urushidani T,Yamada H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku955", "created_at": "2021-09-30T08:27:30.319Z", "updated_at": "2021-09-30T11:29:41.370Z"}], "licence-links": [{"licence-name": "Open TG-GATEs Database License", "licence-id": 633, "link-id": 1671, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2269", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-30T01:25:31.000Z", "updated-at": "2021-11-24T13:18:16.373Z", "metadata": {"doi": "10.25504/FAIRsharing.rbba3x", "name": "Genetic Epidemiology Simulation Database", "status": "deprecated", "contacts": [{"contact-name": "Ren-Hua Chung", "contact-email": "rchung@nhri.org.tw", "contact-orcid": "0000-0002-9835-6333"}], "homepage": "http://gesdb.nhri.org.tw/", "identifier": 2269, "description": "GESDB is a platform for sharing simulation data and discussion of simulation techniques for human genetic studies. The database contains simulation scripts, simulated data, and documentations from published manuscripts. The forum provides a platform for Q&A for the simulated data and exchanging simulation ideas. GESDB aims to promote transparency and efficiency in simulation studies for human genetic studies.", "abbreviation": "GESDB", "support-links": [{"url": "http://gesdb.nhri.org.tw/f", "type": "Forum"}, {"url": "http://gesdb.nhri.org.tw/user/list", "type": "Mailing list"}], "year-creation": 2015, "data-processes": [{"url": "http://gesdb.nhri.org.tw/d", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://seqsimla.sourceforge.net", "name": "SeqSIMLA 2"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000743", "bsg-d000743"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Statistics", "Life Science", "Epidemiology"], "domains": ["Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: Genetic Epidemiology Simulation Database", "abbreviation": "GESDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.rbba3x", "doi": "10.25504/FAIRsharing.rbba3x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GESDB is a platform for sharing simulation data and discussion of simulation techniques for human genetic studies. The database contains simulation scripts, simulated data, and documentations from published manuscripts. The forum provides a platform for Q&A for the simulated data and exchanging simulation ideas. GESDB aims to promote transparency and efficiency in simulation studies for human genetic studies.", "publications": [{"id": 330, "pubmed_id": 27242038, "title": "GESDB: a platform of simulation resources for genetic epidemiology studies.", "year": 2016, "url": "http://doi.org/10.1093/database/baw082", "authors": "Yao PJ, Chung RH", "journal": "Database (Oxford)", "doi": "10.1093/database/baw082", "created_at": "2021-09-30T08:22:55.407Z", "updated_at": "2021-09-30T08:22:55.407Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1958", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:15.956Z", "metadata": {"doi": "10.25504/FAIRsharing.831m3y", "name": "Comprehensive Yeast Genome Database", "status": "deprecated", "contacts": [{"contact-email": "mips-fungi-adm@mips.gsf.de"}], "homepage": "http://mips.gsf.de/genre/proj/yeast/index.jsp", "identifier": 1958, "description": "A major part of this information gets extracted by manual annotation from the yeast literature, and results of the systematic functional analysis projects as well as cross-references to other in-house or external databases (NCBI, PIR, PEDANT, EMBL) provide complementary material. In addition information and links to related ascomycetous species are added as far as genomic information is available. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "CYGD", "data-processes": [{"url": "http://mips.helmholtz-muenchen.de/genre/proj/yeast/About/FTP_sites.html", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://mips.helmholtz-muenchen.de/genre/proj/yeast/Search/pedantSearch.html", "name": "advanced search"}, {"url": "http://mips.helmholtz-muenchen.de/genre/proj/yeast/Search/Gise/index.html", "name": "browse"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000424", "bsg-d000424"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Comprehensive Yeast Genome Database", "abbreviation": "CYGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.831m3y", "doi": "10.25504/FAIRsharing.831m3y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A major part of this information gets extracted by manual annotation from the yeast literature, and results of the systematic functional analysis projects as well as cross-references to other in-house or external databases (NCBI, PIR, PEDANT, EMBL) provide complementary material. In addition information and links to related ascomycetous species are added as far as genomic information is available. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 438, "pubmed_id": 15608217, "title": "CYGD: the Comprehensive Yeast Genome Database.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki053", "authors": "G\u00fcldener U., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki053", "created_at": "2021-09-30T08:23:07.585Z", "updated_at": "2021-09-30T08:23:07.585Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1065, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2126", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-20T11:43:45.249Z", "metadata": {"doi": "10.25504/FAIRsharing.651n9j", "name": "Electron Microscopy Data Bank", "status": "ready", "contacts": [{"contact-name": "Ardan Patwardhan", "contact-email": "help@emdatabank.org", "contact-orcid": "0000-0001-7663-9028"}], "homepage": "https://www.ebi.ac.uk/pdbe/emdb/", "identifier": 2126, "description": "Cryo-electron microscopy reconstruction methods are uniquely able to reveal structures of many important macromolecules and macromolecular complexes. The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB was founded at EBI in 2002, under the leadership of Kim Henrick. Since 2007 it has been operated jointly by the PDBe, and the Research Collaboratory for Structural Bioinformatics (RCSB PDB) as a part of EMDataBank which is funded by a joint NIH grant to PDBe, the RCSB and the National Center for Macromolecular Imaging (NCMI).", "abbreviation": "EMDB", "support-links": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/genealogy.html", "name": "3DEM History and Genealogy", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/emschema.html/", "name": "EMDB Data Model", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/statistics_main.html", "name": "EMDB Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/policies.html", "name": "Policies", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/release/map/", "name": "Browse Latest Maps", "type": "data access"}, {"url": "https://deposit-pdbe.wwpdb.org/deposition/", "name": "Data submission", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/searchForm.html/", "name": "Advanced search", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/emdb", "name": "Download (FTP)", "type": "data release"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/browse.html/", "name": "Browse", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/release/header/", "name": "Browse Latest Header Releases", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/release/update/", "name": "Browse Latest Updates", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/pdbe/emdb/validators.html/", "name": "EM Validation Services"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/test_data.html", "name": "Test data"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/validation/fsc/", "name": "Fourier shell correlation server"}, {"url": "https://www.ebi.ac.uk/pdbe/emdb/validation/tiltpair/", "name": "Tilt pair validation server"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010562", "name": "re3data:r3d100010562", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006506", "name": "SciCrunch:RRID:SCR_006506", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000596", "bsg-d000596"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Biology", "Epidemiology"], "domains": ["Bioimaging", "X-ray diffraction", "Electron density map", "Microscopy", "Electron microscopy", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Electron Microscopy Data Bank", "abbreviation": "EMDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.651n9j", "doi": "10.25504/FAIRsharing.651n9j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Cryo-electron microscopy reconstruction methods are uniquely able to reveal structures of many important macromolecules and macromolecular complexes. The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB was founded at EBI in 2002, under the leadership of Kim Henrick. Since 2007 it has been operated jointly by the PDBe, and the Research Collaboratory for Structural Bioinformatics (RCSB PDB) as a part of EMDataBank which is funded by a joint NIH grant to PDBe, the RCSB and the National Center for Macromolecular Imaging (NCMI).", "publications": [{"id": 567, "pubmed_id": 20935055, "title": "EMDataBank.org: unified data resource for CryoEM", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq880", "authors": "Lawson CL, Baker ML, Best C, Bi C, Dougherty M, Feng P, van Ginkel G, Devkota B, Lagerstedt I, Ludtke SJ, Newman RH, Oldfield TJ, Rees I, Sahni G, Sala R, Velankar S, Warren J, Westbrook JD, Henrick K, Kleywegt GJ, Berman HM, Chiu W.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq880", "created_at": "2021-09-30T08:23:22.001Z", "updated_at": "2021-09-30T08:23:22.001Z"}, {"id": 670, "pubmed_id": 12417136, "title": "New electron microscopy database and deposition system", "year": 2002, "url": "http://doi.org/10.1016/s0968-0004(02)02176-x", "authors": "Tagari, M. Newman, R. Chagoyen, M. Carazo, J. M. Henrick, K.", "journal": "Trends in Biochemical Sciences", "doi": "10.1016/S0968-0004(02)02176-X", "created_at": "2021-09-30T08:23:33.935Z", "updated_at": "2021-09-30T08:23:33.935Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1861, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2213", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-09T12:06:07.000Z", "updated-at": "2021-11-24T13:14:48.391Z", "metadata": {"doi": "10.25504/FAIRsharing.af3j4h", "name": "Research Domain Criteria Database", "status": "deprecated", "contacts": [{"contact-email": "rdocdbhelp@mail.nih.gov"}], "homepage": "http://rdocdb.nimh.nih.gov", "identifier": 2213, "description": "RDoCdb is an informatics platform for the sharing of human subjects data related to Mental Health research. This database may be used to plan for data submission, share your data, query data that is already shared, or to share your results related to a publication or finding. RDoCdb is is a part of the NIMH Data Archive (NDA), powered by the National Database for Autism Research (NDAR) infrastructure.", "abbreviation": "RDoCdb", "support-links": [{"url": "http://rdocdb.nimh.nih.gov/contact-us/", "type": "Contact form"}], "data-processes": [{"url": "http://rdocdb.nimh.nih.gov/querying/", "name": "Request Access", "type": "data access"}, {"url": "http://rdocdb.nimh.nih.gov/querying/#tab-1", "name": "Browse Shared Data", "type": "data access"}], "deprecation-date": "2020-10-25", "deprecation-reason": "This resource has been merged with the NIMH Data Archive."}, "legacy-ids": ["biodbcore-000687", "bsg-d000687"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Mental health"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Research Domain Criteria Database", "abbreviation": "RDoCdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.af3j4h", "doi": "10.25504/FAIRsharing.af3j4h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RDoCdb is an informatics platform for the sharing of human subjects data related to Mental Health research. This database may be used to plan for data submission, share your data, query data that is already shared, or to share your results related to a publication or finding. RDoCdb is is a part of the NIMH Data Archive (NDA), powered by the National Database for Autism Research (NDAR) infrastructure.", "publications": [], "licence-links": [{"licence-name": "RDoCdb Privacy Policy", "licence-id": 700, "link-id": 869, "relation": "undefined"}, {"licence-name": "RDoCdb Disclaimer", "licence-id": 699, "link-id": 870, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2340", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T10:06:22.000Z", "updated-at": "2021-11-24T13:17:51.480Z", "metadata": {"doi": "10.25504/FAIRsharing.d1cs3q", "name": "BenthGenome", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "ctcbenquiries@qut.edu.au"}], "homepage": "http://benthgenome.qut.edu.au/", "identifier": 2340, "description": "Nicotiana benthamiana originates from the remote regions of northern Australia. It is used extensively in laboratories around the world for many types of research including metabolic engineering, plant-microbe interactions, RNAi, vaccine production and functional genomics. This site aims to provide easy access to our latest genome and transcriptome assemblies of both laboratory and wild strains of Nicotiana benthamiana.", "abbreviation": "BenthGenome", "support-links": [{"url": "http://sefapps02.qut.edu.au/helppage/helppage.php", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://sefapps02.qut.edu.au/benWeb/subpages/strategy.php", "name": "Information Pages", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://sefapps02.qut.edu.au/fgb2/gbrowse/benthv05/?name=Nbv0.5scaffold1133:255596..260827", "name": "GBrowse the Genome", "type": "data access"}, {"url": "http://sefapps02.qut.edu.au/jaybrowse/?loc=Nbv0.5scaffold1133:255596..260827", "name": "JBrowse the Genome", "type": "data access"}], "associated-tools": [{"url": "http://sefapps02.qut.edu.au/blast/blast_link.cgi", "name": "BLAST Version 5"}, {"url": "http://sefapps02.qut.edu.au/blast/blast_link2.cgi", "name": "BLAST Version 6"}, {"url": "http://sefapps02.qut.edu.au/atlas/tREX6.php", "name": "Gene Expression Atlas 6"}, {"url": "http://sefapps02.qut.edu.au/babelfish/babelfish_gI.php", "name": "Benth Babelfish"}, {"url": "http://benthgenome.qut.edu.au/tools/toolpage.php", "name": "Benth Toolkit"}]}, "legacy-ids": ["biodbcore-000818", "bsg-d000818"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Genomics", "Life Science", "Transcriptomics"], "domains": ["RNA interference", "Vaccine"], "taxonomies": ["Nicotiana benthamiana"], "user-defined-tags": ["Plant-microbe interactions"], "countries": ["New Zealand", "Australia"], "name": "FAIRsharing record for: BenthGenome", "abbreviation": "BenthGenome", "url": "https://fairsharing.org/10.25504/FAIRsharing.d1cs3q", "doi": "10.25504/FAIRsharing.d1cs3q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Nicotiana benthamiana originates from the remote regions of northern Australia. It is used extensively in laboratories around the world for many types of research including metabolic engineering, plant-microbe interactions, RNAi, vaccine production and functional genomics. This site aims to provide easy access to our latest genome and transcriptome assemblies of both laboratory and wild strains of Nicotiana benthamiana.", "publications": [{"id": 1653, "pubmed_id": 23555698, "title": "De novo transcriptome sequence assembly and analysis of RNA silencing genes of Nicotiana benthamiana.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0059534", "authors": "Nakasugi K,Crowhurst RN,Bally J,Wood CC,Hellens RP,Waterhouse PM", "journal": "PLoS One", "doi": "10.1371/journal.pone.0059534", "created_at": "2021-09-30T08:25:25.195Z", "updated_at": "2021-09-30T08:25:25.195Z"}, {"id": 1963, "pubmed_id": 28231340, "title": "The widely used Nicotiana benthamiana 16c line has an unusual T-DNA integration pattern including a transposon sequence.", "year": 2017, "url": "http://doi.org/10.1371/journal.pone.0171311", "authors": "Philips JG,Naim F,Lorenc MT,Dudley KJ,Hellens RP,Waterhouse PM", "journal": "PLoS One", "doi": "10.1371/journal.pone.0171311", "created_at": "2021-09-30T08:26:00.907Z", "updated_at": "2021-09-30T08:26:00.907Z"}], "licence-links": [{"licence-name": "Copyright Queensland University of Technology", "licence-id": 149, "link-id": 1365, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1556", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:01.642Z", "metadata": {"doi": "10.25504/FAIRsharing.17r4y2", "name": "BuG@Sbase", "status": "deprecated", "contacts": [{"contact-name": "Adam A. Witney", "contact-email": "awitney@sgul.ac.uk", "contact-orcid": "0000-0003-4561-7170"}], "homepage": "http://bugs.sgul.ac.uk/bugsbase/", "identifier": 1556, "description": "BuG@Sbase is a microbial gene expression and comparative genomic database containing microarray datasets.", "abbreviation": "BuG@Sbase", "support-links": [{"url": "bugs@sgul.ac.uk", "type": "Support email"}, {"url": "http://bugs.sgul.ac.uk/bugsbase/tabs/help.php", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "no versioning policy", "type": "data versioning"}, {"url": "http://bugs.sgul.ac.uk/bugsbase/tabs/search.php", "name": "search", "type": "data access"}, {"url": "http://bugs.sgul.ac.uk/bugsbase/tabs/browser.php", "name": "browse", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000010", "bsg-d000010"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Expression data"], "taxonomies": ["Campylobacter", "Clostridium", "Haemophilus", "Listeria", "Mycobacterium", "Neisseria", "Staphylococcus", "Streptococcus", "Yersinia"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: BuG@Sbase", "abbreviation": "BuG@Sbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.17r4y2", "doi": "10.25504/FAIRsharing.17r4y2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BuG@Sbase is a microbial gene expression and comparative genomic database containing microarray datasets.", "publications": [{"id": 1144, "pubmed_id": 21948792, "title": "BmuG@Sbase--a microbial gene expression and comparative genomic database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr796", "authors": "Witney AA,Waldron DE,Brooks LA,Tyler RH,Withers M,Stoker NG,Wren BW,Butcher PD,Hinds J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr796", "created_at": "2021-09-30T08:24:27.139Z", "updated_at": "2021-09-30T11:29:00.627Z"}, {"id": 1388, "pubmed_id": 18629280, "title": "BmuG@Sbase--a microarray database and analysis tool.", "year": 2008, "url": "http://doi.org/10.1002/cfg.197", "authors": "Witney AA,Hinds J", "journal": "Comp Funct Genomics", "doi": "10.1002/cfg.197", "created_at": "2021-09-30T08:24:55.176Z", "updated_at": "2021-09-30T08:24:55.176Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2157", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:44.393Z", "metadata": {"doi": "10.25504/FAIRsharing.jjka8c", "name": "Knowledge Network for Biocomplexity", "status": "ready", "contacts": [{"contact-name": "KNB Help", "contact-email": "knb-help@nceas.ucsb.edu", "contact-orcid": "0000-0003-0077-4738"}], "homepage": "https://knb.ecoinformatics.org", "identifier": 2157, "description": "The Knowledge Network for Biocomplexity (KNB) is an international repository intended to facilitate ecological and environmental research. KNB was created to share, discover, access and interpret complex ecological data. Contextual information provided with KNB data allows scientists to integrate and analyze data. The data originate from a highly-distributed set of field stations, laboratories, research sites, and individual researchers. The foundation of the KNB is the detailed metadata provided by researchers, which promotes both automated and manual integration of data into new projects. As part of the KNB effort, data management software is developed in a free and open source manner, so other groups can build upon the tools. The KNB is powered by the Metacat data management system, and is optimized for handling data sets described using the Ecological Metadata Language, but can store any XML-based metadata document.", "abbreviation": "KNB", "access-points": [{"url": "https://knb.ecoinformatics.org/api", "name": "KNB DataONE REST API", "type": "REST"}], "support-links": [{"url": "https://knb.ecoinformatics.org/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://knb.ecoinformatics.org/profile", "name": "Summary Statistics", "type": "Help documentation"}, {"url": "https://knb.ecoinformatics.org/knb/docs/", "name": "Metacat Administrator's Guide", "type": "Help documentation"}, {"url": "https://knb.ecoinformatics.org/about", "name": "About KNB", "type": "Help documentation"}, {"url": "https://twitter.com/nceas", "name": "@nceas", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "https://knb.ecoinformatics.org/data", "name": "Browse & Search", "type": "data access"}, {"url": "https://knb.ecoinformatics.org/submit", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://knb.ecoinformatics.org/knb/docs", "name": "Metacat"}, {"url": "https://knb.ecoinformatics.org/tools", "name": "Morpho"}, {"url": "https://knb.ecoinformatics.org/tools", "name": "DataONE R Client"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010092", "name": "re3data:r3d100010092", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000629", "bsg-d000629"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Earth Science"], "domains": ["Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Knowledge Network for Biocomplexity", "abbreviation": "KNB", "url": "https://fairsharing.org/10.25504/FAIRsharing.jjka8c", "doi": "10.25504/FAIRsharing.jjka8c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Knowledge Network for Biocomplexity (KNB) is an international repository intended to facilitate ecological and environmental research. KNB was created to share, discover, access and interpret complex ecological data. Contextual information provided with KNB data allows scientists to integrate and analyze data. The data originate from a highly-distributed set of field stations, laboratories, research sites, and individual researchers. The foundation of the KNB is the detailed metadata provided by researchers, which promotes both automated and manual integration of data into new projects. As part of the KNB effort, data management software is developed in a free and open source manner, so other groups can build upon the tools. The KNB is powered by the Metacat data management system, and is optimized for handling data sets described using the Ecological Metadata Language, but can store any XML-based metadata document.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1908, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3063", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-20T12:45:02.000Z", "updated-at": "2021-12-06T10:47:32.625Z", "metadata": {"name": "R\u00e9sif Seismological Data Portal", "status": "ready", "contacts": [{"contact-name": "Christophe Maron", "contact-email": "christophe.maron@geoazur.unice.fr"}], "homepage": "https://seismology.resif.fr/", "citations": [], "identifier": 3063, "description": "The RESIF Seismic data portal offers access to seismological and other associated geophysical data from permanent and temporary seismic networks operated all over the world by French research institutions and international partners, to support research on source processes and imaging of the Earth's interior at all scales. RESIF (French seismologic and geodetic network) is a French national equipment for the observation and understanding of the solid Earth.", "access-points": [{"url": "http://seismology.resif.fr/#CMSConsultPlace:WEBSERVICES", "name": "RESIF webservices", "type": "Other"}], "data-curation": {}, "support-links": [{"url": "resif-dc@univ-grenoble-alpes.fr", "name": "Helpdesk system", "type": "Support email"}, {"url": "datacenter@resif.fr", "name": "Datacentre manager", "type": "Support email"}, {"url": "http://seismology.resif.fr/#SiteSearchPlace:", "name": "Site search", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://seismology.resif.fr/#RestrictedDataAccessPlace:", "name": "Ask for access to restricted data", "type": "data access"}, {"url": "http://seismology.resif.fr/#ByEventDataAccessPlace:", "name": "By event data access wizard", "type": "data access"}, {"url": "http://seismology.resif.fr/#StoredEventDataAccessPlace:", "name": "Preassembled event based datasets", "type": "data access"}, {"url": "http://seismology.resif.fr/#ByPeriodDataAccessPlace:", "name": "By period data access wizard", "type": "data access"}, {"url": "http://seismology.resif.fr/#NetworkConsultPlace:", "name": "Browse by networks", "type": "data access"}, {"url": "http://seismology.resif.fr/#StationSearchPlace:", "name": "Browse by stations", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012222", "name": "re3data:r3d100012222", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001571", "bsg-d001571"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Geodesy", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake", "Seismology", "Volcano"], "countries": ["France"], "name": "FAIRsharing record for: R\u00e9sif Seismological Data Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3063", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The RESIF Seismic data portal offers access to seismological and other associated geophysical data from permanent and temporary seismic networks operated all over the world by French research institutions and international partners, to support research on source processes and imaging of the Earth's interior at all scales. RESIF (French seismologic and geodetic network) is a French national equipment for the observation and understanding of the solid Earth.", "publications": [], "licence-links": [{"licence-name": "RESIF Legal Notice", "licence-id": 710, "link-id": 1067, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3236", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T14:07:10.000Z", "updated-at": "2021-11-24T13:17:38.700Z", "metadata": {"name": "Global Ocean Acidification Observing Network Data Explorer", "status": "ready", "homepage": "http://portal.goa-on.org/Home", "identifier": 3236, "description": "Through the Global Ocean Acidification Observing Network (GOA-ON) Data Explorer, GOA-ON works to improve understanding of global ocean acidification conditions and ecosystem responses by making ocean acidification data accessible. The GOA-ON Data Explorer provides access and visualization to ocean acidification data and data synthesis products being collected around the world from a wide range of sources, including moorings, research cruises, and fixed time series stations. Layers contain contoured world-wide data; Platforms include icons for various observing assets, some of which display real-time data and many of which include links to data and metadata. For a given asset measuring carbonate chemistry, metadata includes information on which parameters are measured, links to data providers, and other useful details. The inventory of GOA-ON assets can be searched interactively by region, platform type, and variables by using the Filters tool.", "abbreviation": "GOA-ON Data Explorer", "support-links": [{"url": "https://www.facebook.com/GOAON/", "name": "Facebook Page", "type": "Facebook"}, {"url": "https://www.youtube.com/channel/UCWZnXpGzQWwWfT3LEMkxXgg", "name": "YouTube Channel", "type": "Video"}, {"url": "http://www.goa-on.org/news/news.php", "name": "News", "type": "Blog/News"}, {"url": "http://portal.goa-on.org/ContactUs", "name": "Contact Form", "type": "Contact form"}, {"url": "https://twitter.com/goa_on", "name": "@goa_on", "type": "Twitter"}], "data-processes": [{"url": "http://portal.goa-on.org/Explorer", "name": "Map and Tabular Interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-001750", "bsg-d001750"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ocean Acidification"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Global Ocean Acidification Observing Network Data Explorer", "abbreviation": "GOA-ON Data Explorer", "url": "https://fairsharing.org/fairsharing_records/3236", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Through the Global Ocean Acidification Observing Network (GOA-ON) Data Explorer, GOA-ON works to improve understanding of global ocean acidification conditions and ecosystem responses by making ocean acidification data accessible. The GOA-ON Data Explorer provides access and visualization to ocean acidification data and data synthesis products being collected around the world from a wide range of sources, including moorings, research cruises, and fixed time series stations. Layers contain contoured world-wide data; Platforms include icons for various observing assets, some of which display real-time data and many of which include links to data and metadata. For a given asset measuring carbonate chemistry, metadata includes information on which parameters are measured, links to data providers, and other useful details. The inventory of GOA-ON assets can be searched interactively by region, platform type, and variables by using the Filters tool.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3095", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-29T18:24:17.000Z", "updated-at": "2021-12-06T10:49:36.568Z", "metadata": {"doi": "10.25504/FAIRsharing.ZvHsiN", "name": "HydroShare", "status": "ready", "contacts": [{"contact-name": "CUAHSI Help", "contact-email": "help@cuahsi.org"}], "homepage": "http://www.hydroshare.org", "identifier": 3095, "description": "HydroShare is a system operated by The Consortium of Universities for the Advancement of Hydrologic Science Inc. (CUAHSI) that enables users to share and publish water-related data and models in a variety of flexible formats, and to make this information available in a citable, shareable and discoverable manner. HydroShare includes a repository for data and models, and tools (web apps) that can act on content in HydroShare providing users with a gateway to high performance computing and computing in the cloud. With HydroShare you can: share data and models with colleagues; manage access to shared content; share, access, visualize, and manipulate a broad set of hydrologic data types and models; publish data and models and obtain a citable digital object identifier (DOI); aggregate resources into collections; discover and access data and models published by others; use the web services application programming interface (API) to programmatically access resources; and use integrated web applications to visualize, analyze and run models with data in HydroShare.", "abbreviation": "HydroShare", "access-points": [{"url": "https://www.hydroshare.org/hsapi/", "name": "HydroShare REST API to upload and retrieve datasets.", "type": "REST"}], "support-links": [{"url": "https://help.hydroshare.org/", "name": "HydroShare Support Documentation", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://www.hydroshare.org/search/", "name": "Data Discovery", "type": "data access"}, {"url": "https://help.hydroshare.org/creating-and-managing-resources/", "name": "Instructions for Uploading to HydroShare (link to upload is behind authentication)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012625", "name": "re3data:r3d100012625", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001603", "bsg-d001603"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Water Management", "Freshwater Science", "Water Research", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: HydroShare", "abbreviation": "HydroShare", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZvHsiN", "doi": "10.25504/FAIRsharing.ZvHsiN", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HydroShare is a system operated by The Consortium of Universities for the Advancement of Hydrologic Science Inc. (CUAHSI) that enables users to share and publish water-related data and models in a variety of flexible formats, and to make this information available in a citable, shareable and discoverable manner. HydroShare includes a repository for data and models, and tools (web apps) that can act on content in HydroShare providing users with a gateway to high performance computing and computing in the cloud. With HydroShare you can: share data and models with colleagues; manage access to shared content; share, access, visualize, and manipulate a broad set of hydrologic data types and models; publish data and models and obtain a citable digital object identifier (DOI); aggregate resources into collections; discover and access data and models published by others; use the web services application programming interface (API) to programmatically access resources; and use integrated web applications to visualize, analyze and run models with data in HydroShare.", "publications": [{"id": 3023, "pubmed_id": null, "title": "HydroShare: Sharing Diverse Environmental Data Types and Models as Social Objects with Application to the Hydrology Domain", "year": 2015, "url": "https://doi.org/10.1111/1752-1688.12363", "authors": "Jeffery S. Horsburgh, Mohamed M. Morsy, Anthony M. Castronova, Jonathan L. Goodall, Tian Gan, Hong Yi, Michael J. Stealey, David G. Tarboton", "journal": "Journal of the American Water Resources Association", "doi": null, "created_at": "2021-09-30T08:28:12.649Z", "updated_at": "2021-09-30T11:28:39.429Z"}, {"id": 3024, "pubmed_id": null, "title": "A Resource Centric Approach For Advancing Collaboration Through Hydrologic Data And Model Sharing", "year": 2014, "url": "https://www.semanticscholar.org/paper/A-Resource-Centric-Approach-for-Advancing-Through-Tarboton-Idaszak/4b8604dc6a1482359ba39cf28fa5fe9708eb35ef", "authors": "David G. Tarboton, Ray Idaszak, Jeffery S. Horsburgh, Jefferson Heard, Dan Ames, Jonathan L. Goodall, Lawrence E. Band, Venkatesh Merwade", "journal": "Informatics and the Environment: Data and Model Integration in a Heterogeneous Hydro World (11th, New York, 17-21 August 2014)", "doi": null, "created_at": "2021-09-30T08:28:12.758Z", "updated_at": "2021-09-30T11:28:39.538Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 950, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 955, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3029", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-17T15:47:18.000Z", "updated-at": "2021-12-06T10:47:30.776Z", "metadata": {"name": "NARSTO", "status": "deprecated", "contacts": [{"contact-name": "NASA Support", "contact-email": "support-asdc@earthdata.nasa.gov"}], "homepage": "https://www.narsto.org/data_archive", "identifier": 3029, "description": "NARSTO is dedicated to improving management of air quality in North America. NARSTO is working to improve collaboration between the air-quality and health-sciences research communities, to advance understanding of the scientific issues involved in effecting a multi-pollutant/multi-media approach to air quality management, and to increase understanding of the linkages between air quality and climate change. NARSTO is represented by private and public organizations in Canada, Mexico, and the United States. NARSTO was terminated as of December 31, 2010. While data remain available via the original NARSTO Data Archive, the permanent data archive is maintained by the NASA Langley Research Center Atmospheric Science Data Center at https://eosweb.larc.nasa.gov/project/narsto/narsto_table", "abbreviation": "NARSTO", "support-links": [{"url": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/DM_develop_guide.pdf", "name": "Data Management Policy and Guidance Documents for your NARSTO Program or Project", "type": "Help documentation"}], "year-creation": 1995, "data-processes": [{"url": "https://eosweb.larc.nasa.gov/project/narsto/narsto_table", "name": "Permanent data archive maintained by the NASA Langley Research Center Atmospheric Science Data Center at", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011018", "name": "re3data:r3d100011018", "portal": "re3data"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and the alternative repository listed is also unavailable. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001537", "bsg-d001537"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Health Science", "Meteorology", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Climate change", "Pollution"], "countries": ["Canada", "United States", "Mexico"], "name": "FAIRsharing record for: NARSTO", "abbreviation": "NARSTO", "url": "https://fairsharing.org/fairsharing_records/3029", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NARSTO is dedicated to improving management of air quality in North America. NARSTO is working to improve collaboration between the air-quality and health-sciences research communities, to advance understanding of the scientific issues involved in effecting a multi-pollutant/multi-media approach to air quality management, and to increase understanding of the linkages between air quality and climate change. NARSTO is represented by private and public organizations in Canada, Mexico, and the United States. NARSTO was terminated as of December 31, 2010. While data remain available via the original NARSTO Data Archive, the permanent data archive is maintained by the NASA Langley Research Center Atmospheric Science Data Center at https://eosweb.larc.nasa.gov/project/narsto/narsto_table", "publications": [], "licence-links": [{"licence-name": "NARSTO Data Usage Acknowledgement Policy", "licence-id": 532, "link-id": 421, "relation": "undefined"}, {"licence-name": "NASA Copyright & Reproduction Guidelines", "licence-id": 533, "link-id": 431, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1727", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:20.040Z", "metadata": {"doi": "10.25504/FAIRsharing.veg2d6", "name": "FlowRepository", "status": "ready", "contacts": [{"contact-name": "Ryan Brinkman", "contact-email": "rbrinkman@bccrc.ca", "contact-orcid": "0000-0002-9765-2990"}], "homepage": "http://www.flowrepository.org", "citations": [{"doi": "10.1002/cyto.a.22106", "pubmed-id": 22887982, "publication-id": 1205}], "identifier": 1727, "description": "FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. Data are generally associated with peer reviewed manuscripts.", "abbreviation": "FlowRepository", "access-points": [{"url": "http://flowrepository.org/images/pdf/FlowRepositoryAPI.pdf", "name": "FlowRepository API", "type": "REST"}], "support-links": [{"url": "http://flowrepository.org/support_ticket", "name": "Contact Support", "type": "Contact form"}, {"url": "http://flowrepository.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://flowrepository.org/quick_start_guide", "name": "Quick Start Guide", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://flowrepository.org/public_experiment_representations?project=1", "name": "Browse Community Datasets", "type": "data access"}, {"url": "http://flowrepository.org/experiments/new", "name": "Submit", "type": "data curation"}, {"url": "http://flowrepository.org/public_experiment_representations", "name": "Browse Public Datasets", "type": "data access"}, {"url": "http://flowrepository.org/public_experiment_representations?top=10", "name": "Browse Most Popular Datasets", "type": "data access"}, {"url": "http://flowrepository.org/public_experiment_representations?project=5", "name": "Browse OMIP Datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011280", "name": "re3data:r3d100011280", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013779", "name": "SciCrunch:RRID:SCR_013779", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000184", "bsg-d000184"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Cell Biology", "Biology"], "domains": ["Cell", "Cellular assay", "Flow cytometry assay"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: FlowRepository", "abbreviation": "FlowRepository", "url": "https://fairsharing.org/10.25504/FAIRsharing.veg2d6", "doi": "10.25504/FAIRsharing.veg2d6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. Data are generally associated with peer reviewed manuscripts.", "publications": [{"id": 1205, "pubmed_id": 22887982, "title": "FlowRepository: a resource of annotated flow cytometry datasets associated with peer-reviewed publications", "year": 2012, "url": "http://doi.org/10.1002/cyto.a.22106", "authors": "Spidlen J, Breuer K, Rosenberg C, Kotecha N, Brinkman RR", "journal": "Cytometry A", "doi": "10.1002/cyto.a.22106", "created_at": "2021-09-30T08:24:34.317Z", "updated_at": "2021-09-30T08:24:34.317Z"}, {"id": 1230, "pubmed_id": 22752950, "title": "Preparing a Minimum Information about a Flow Cytometry Experiment (MIFlowCyt) compliant manuscript using the International Society for Advancement of Cytometry (ISAC) FCS file repository (FlowRepository.org).", "year": 2012, "url": "http://doi.org/10.1002/0471142956.cy1018s61", "authors": "Spidlen J,Breuer K,Brinkman R", "journal": "Curr Protoc Cytom", "doi": "10.1002/0471142956.cy1018s61", "created_at": "2021-09-30T08:24:37.200Z", "updated_at": "2021-09-30T08:24:37.200Z"}], "licence-links": [{"licence-name": "FLOW Repository Terms of Use", "licence-id": 318, "link-id": 1582, "relation": "undefined"}, {"licence-name": "FlowRepository Privacy Policy", "licence-id": 317, "link-id": 1583, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3204", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-21T09:31:38.000Z", "updated-at": "2021-12-02T09:45:20.020Z", "metadata": {"doi": "10.25504/FAIRsharing.V9QrV3", "name": "Earth Observing Laboratory Data Archive", "status": "ready", "contacts": [{"contact-name": "EOL Data Help", "contact-email": "eol-datahelp@ucar.edu"}], "homepage": "https://data.eol.ucar.edu/", "citations": [], "identifier": 3204, "description": "The Earth Observing Laboratory (EOL) Data Archive contains atmospheric, meteorological, and other geophysical datasets from operational sources and the scientific research programs and projects for which NCAR/EOL has provided data management support.", "abbreviation": "EOL Data Archive", "support-links": [{"url": "https://twitter.com/ncareol", "name": "@ncareol", "type": "Twitter"}], "data-processes": [{"url": "https://data.eol.ucar.edu/", "name": "Browse", "type": "data access"}, {"url": "https://data.eol.ucar.edu/dataset/search/advanced", "name": "Advanced Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001717", "bsg-d001717"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Geophysics", "Meteorology", "Atmospheric Science", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["biogeochemistry", "Paleoclimatology"], "countries": ["United States"], "name": "FAIRsharing record for: Earth Observing Laboratory Data Archive", "abbreviation": "EOL Data Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.V9QrV3", "doi": "10.25504/FAIRsharing.V9QrV3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Earth Observing Laboratory (EOL) Data Archive contains atmospheric, meteorological, and other geophysical datasets from operational sources and the scientific research programs and projects for which NCAR/EOL has provided data management support.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2940", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-13T13:10:18.000Z", "updated-at": "2021-12-06T10:47:27.165Z", "metadata": {"name": "European Data Portal", "status": "ready", "homepage": "https://www.europeandataportal.eu/en", "identifier": 2940, "description": "The European Data Portal harvests the metadata of Public Sector Information available on public data portals across European countries. Information regarding the provision of data and the benefits of re-using data is also included.", "abbreviation": "EDP", "access-points": [{"url": "https://www.europeandataportal.eu/sparql-manager/en/", "name": "SPARQL-Query", "type": "Other"}], "support-links": [{"url": "https://www.linkedin.com/groups/8428984/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://www.facebook.com/EuropeanDataPortal", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.europeandataportal.eu/en/feedback/form", "type": "Contact form"}, {"url": "https://www.europeandataportal.eu/en/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.europeandataportal.eu/en/newsletter", "name": "Newsletter", "type": "Mailing list"}, {"url": "https://www.youtube.com/channel/UCWRxmFRYBSQyUe6GFOOrxFA", "name": "Webinar", "type": "Video"}, {"url": "https://www.europeandataportal.eu/en/about/documentation", "type": "Help documentation"}, {"url": "https://twitter.com/EU_DataPortal", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://www.europeandataportal.eu/data/datasets?locale=fr", "name": "Browse dataset", "type": "data access"}, {"url": "https://www.europeandataportal.eu/fr/about/be-harvested-us", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012199", "name": "re3data:r3d100012199", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001444", "bsg-d001444"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economic and Social History", "Health Science", "Humanities and Social Science", "Virology", "Subject Agnostic", "Epidemiology"], "domains": [], "taxonomies": [], "user-defined-tags": ["COVID-19"], "countries": ["European Union"], "name": "FAIRsharing record for: European Data Portal", "abbreviation": "EDP", "url": "https://fairsharing.org/fairsharing_records/2940", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Data Portal harvests the metadata of Public Sector Information available on public data portals across European countries. Information regarding the provision of data and the benefits of re-using data is also included.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3720", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-06T14:40:39.922Z", "updated-at": "2022-01-28T17:14:53.541Z", "metadata": {"name": "Yeast-ID", "status": "ready", "contacts": [{"contact-name": "jmlopez@cect.org", "contact-email": "jmlopez@cect.org", "contact-orcid": null}], "homepage": "https://www.yeast-id.org/", "citations": [], "identifier": 3720, "description": "Yeast-ID is a database for rapid identification of yeasts based on restriction analysis of the region that includes the gene codifying 5,8S rRNA and the transcribed intergenic regions ITS (5,8S-ITS).", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://www.yeast-id.org/contact-us/", "name": "Contact Form", "type": "Contact form"}], "year-creation": 2015, "data-processes": [{"url": "https://www.yeast-id.org/browse-by-species-name/?lt=C", "name": "Browse by Species", "type": "data access"}, {"url": "https://www.yeast-id.org/searchdb/", "name": "Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "https://www.yeast-id.org/yeasts-database/", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.yeast-id.org/yeast-id-org/", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Microbiology"], "domains": [], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Yeast-ID", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3720", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Yeast-ID is a database for rapid identification of yeasts based on restriction analysis of the region that includes the gene codifying 5,8S rRNA and the transcribed intergenic regions ITS (5,8S-ITS).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2227", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-20T15:33:34.000Z", "updated-at": "2022-01-13T14:15:21.418Z", "metadata": {"doi": "10.25504/FAIRsharing.62p8w", "name": "Scratchpads", "status": "ready", "contacts": [{"contact-name": "Dimitris Koureas", "contact-email": "support@scratchpads.eu", "contact-orcid": "0000-0002-4842-6487"}], "homepage": "http://scratchpads.org/", "citations": [], "identifier": 2227, "description": "Scratchpads are an online virtual research environment for biodiversity for the sharing of data and the creation of specific research networks. Sites can focus on specific taxonomic groups, the biodiversity of a biogeographic region, or any aspect of natural history. Scratchpads are also suitable for societies or for managing and presenting projects.", "abbreviation": "Scratchpads", "support-links": [{"url": "http://scratchpads.org/news/", "name": "News", "type": "Help documentation"}, {"url": "https://github.com/NaturalHistoryMuseum/scratchpads2", "name": "Github Repository", "type": "Github"}, {"url": "https://twitter.com/scratchpads", "name": "@scratchpads", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "http://scratchpads.org/explore/sites-list", "name": "Browse", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000701", "bsg-d000701"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Natural History"], "domains": ["Taxonomic classification", "Bibliography", "Phenotype"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Scratchpads", "abbreviation": "Scratchpads", "url": "https://fairsharing.org/10.25504/FAIRsharing.62p8w", "doi": "10.25504/FAIRsharing.62p8w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scratchpads are an online virtual research environment for biodiversity for the sharing of data and the creation of specific research networks. Sites can focus on specific taxonomic groups, the biodiversity of a biogeographic region, or any aspect of natural history. Scratchpads are also suitable for societies or for managing and presenting projects.", "publications": [{"id": 1036, "pubmed_id": 22207806, "title": "Scratchpads 2.0: a Virtual Research Environment supporting scholarly collaboration, communication and data publication in biodiversity science.", "year": 2011, "url": "http://doi.org/10.3897/zookeys.150.2193", "authors": "Smith VS,Rycroft SD,Brake I,Scott B,Baker E,Livermore L,Blagoderov V,Roberts D", "journal": "Zookeys", "doi": "10.3897/zookeys.150.2193", "created_at": "2021-09-30T08:24:14.739Z", "updated_at": "2021-09-30T08:24:14.739Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 570, "relation": "undefined"}, {"licence-name": "Scratchpads Terms and Conditions", "licence-id": 739, "link-id": 574, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3653", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-02T09:51:25.026Z", "updated-at": "2022-02-08T10:45:27.749Z", "metadata": {"doi": "10.25504/FAIRsharing.7ad252", "name": "NCBI Genome", "status": "ready", "contacts": [], "homepage": "https://www.ncbi.nlm.nih.gov/genome", "citations": [], "identifier": 3653, "description": "The Genome database contains annotations and analysis of eukaryotic and prokaryotic genomes, as well as tools that allow users to compare genomes and gene sequences from humans, microbes, plants, viruses and organelles. Users can browse by organism, and view genome maps and protein clusters.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/genome/doc/ftpfaq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK3837/", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/home/about/contact/", "name": "NCBI Contact", "type": "Other"}, {"url": "https://support.nlm.nih.gov/", "name": "NLM Support Center", "type": "Help documentation"}], "year-creation": null, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/genome/advanced", "name": "Advanced Search", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/genome/browse#!/overview/", "name": "Browse by Organism", "type": "data access"}, {"url": "https://ftp.ncbi.nlm.nih.gov/genomes/", "name": "FTP Download", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/genbank/submit/", "name": "Submit a Genome", "type": "data curation"}, {"url": "https://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE_TYPE=BlastSearch&PROG_DEF=blastn&BLAST_PROG_DEF=megaBlast&BLAST_SPEC=OGP__9606__9558", "name": "BLAST the Human Genome", "type": "data access"}, {"url": "https://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE_TYPE=BlastSearch&BLAST_SPEC=MicrobialGenomes", "name": "Microbial Nucleotide BLAST", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010785", "name": "re3data:r3d100010785", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002474", "name": "SciCrunch:RRID:SCR_002474", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["Genome annotation", "Genomic assembly", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Genome", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.7ad252", "doi": "10.25504/FAIRsharing.7ad252", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genome database contains annotations and analysis of eukaryotic and prokaryotic genomes, as well as tools that allow users to compare genomes and gene sequences from humans, microbes, plants, viruses and organelles. Users can browse by organism, and view genome maps and protein clusters.", "publications": [], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2521, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2039", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:43.482Z", "metadata": {"doi": "10.25504/FAIRsharing.tn11nn", "name": "RIKEN Bioresource Research Center", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "brcqa@brc.riken.jp"}], "homepage": "https://web.brc.riken.jp/en/", "identifier": 2039, "description": "RIKEN BRC collects, preserves and distributes five important bioresources: experimental mouse strains, Arabidopsis thaliana and other laboratory plants, cultured cell lines of human and animal origin, microorganisms, genetic materials of human, animal and microbe origin.", "abbreviation": "RIKEN BRC", "support-links": [{"url": "https://web.brc.riken.jp/en/archives/news", "name": "News", "type": "Blog/News"}, {"url": "http://mus.brc.riken.jp/en/faq", "name": "Mouse Strain FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://web.brc.riken.jp/en/bioresource/search", "name": "How to search bioresources in BRC Website", "type": "Help documentation"}, {"url": "https://web.brc.riken.jp/en/bioresource/order", "name": "How to find and obtain bioresources", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://mus.brc.riken.jp/en/", "name": "Search for mouse strain", "type": "data access"}, {"url": "https://epd.brc.riken.jp/en/", "name": "Stock Searching", "type": "data access"}, {"url": "https://cell.brc.riken.jp/en/", "name": "Cell Search", "type": "data access"}, {"url": "https://dna.brc.riken.jp/en/", "name": "Clone Search", "type": "data access"}, {"url": "https://jcm.brc.riken.jp/en/", "name": "Japan Collection of Microorganisms On-line Catalogue of Strains", "type": "data access"}]}, "legacy-ids": ["biodbcore-000506", "bsg-d000506"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Clone library", "Deoxyribonucleic acid", "Cell line", "Stem cell", "Disease process modeling", "Gene knockout", "Biological sample", "Genetic strain", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: RIKEN Bioresource Research Center", "abbreviation": "RIKEN BRC", "url": "https://fairsharing.org/10.25504/FAIRsharing.tn11nn", "doi": "10.25504/FAIRsharing.tn11nn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RIKEN BRC collects, preserves and distributes five important bioresources: experimental mouse strains, Arabidopsis thaliana and other laboratory plants, cultured cell lines of human and animal origin, microorganisms, genetic materials of human, animal and microbe origin.", "publications": [], "licence-links": [{"licence-name": "RIKEN Copyright", "licence-id": 713, "link-id": 2394, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2384", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T11:49:42.000Z", "updated-at": "2021-11-24T13:19:34.381Z", "metadata": {"doi": "10.25504/FAIRsharing.7sfedh", "name": "CRISPRdb", "status": "deprecated", "contacts": [{"contact-name": "Christine Pourcel", "contact-email": "Christine.Pourcel@u-psud.fr", "contact-orcid": "0000-0002-8951-466 X"}], "homepage": "http://crispr.i2bc.paris-saclay.fr/", "identifier": 2384, "description": "CRISPRdb acts as a gateway to a publicly accessible database and software. It enables the easy detection of CRISPR sequences in locally-produced data and the consultation of CRISPR sequence data present in the database. It also gives information on the presence of CRISPR-associated (cas) genes when they have been annotated as such.", "abbreviation": "CRISPRdb", "support-links": [{"url": "http://crispr.i2bc.paris-saclay.fr/index.php?page=FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://crispr.i2bc.paris-saclay.fr/crispr/HelpTopics/help_CRISPRdatabase.html", "type": "Help documentation"}, {"url": "http://crispr.i2bc.paris-saclay.fr/crispr/HelpTopics/examples_CRISPRdatabase.html", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://crispr.i2bc.paris-saclay.fr/crispr/", "name": "browse", "type": "data access"}, {"url": "http://crispr.i2bc.paris-saclay.fr/Server/", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://crispr.i2bc.paris-saclay.fr/crispr/BLAST/CRISPRsBlast.php", "name": "blast"}, {"url": "http://crispr.i2bc.paris-saclay.fr/CRISPRcompar/", "name": "CRISPRcompar"}, {"url": "http://crispr.i2bc.paris-saclay.fr/Server/", "name": "CRISPRfinder"}], "deprecation-date": "2020-09-10", "deprecation-reason": "Deprecated after correspondence with Christine Pourcel (maintainer)"}, "legacy-ids": ["biodbcore-000864", "bsg-d000864"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Annotation", "Sequence", "CRISPR"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: CRISPRdb", "abbreviation": "CRISPRdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.7sfedh", "doi": "10.25504/FAIRsharing.7sfedh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CRISPRdb acts as a gateway to a publicly accessible database and software. It enables the easy detection of CRISPR sequences in locally-produced data and the consultation of CRISPR sequence data present in the database. It also gives information on the presence of CRISPR-associated (cas) genes when they have been annotated as such.", "publications": [{"id": 2040, "pubmed_id": 17521438, "title": "The CRISPRdb database and tools to display CRISPRs and to generate dictionaries of spacers and repeats.", "year": 2007, "url": "http://doi.org/10.1186/1471-2105-8-172", "authors": "Grissa I,Vergnaud G,Pourcel C", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-8-172", "created_at": "2021-09-30T08:26:09.757Z", "updated_at": "2021-09-30T08:26:09.757Z"}, {"id": 2044, "pubmed_id": 17537822, "title": "CRISPRFinder: a web tool to identify clustered regularly interspaced short palindromic repeats.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm360", "authors": "Grissa I,Vergnaud G,Pourcel C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm360", "created_at": "2021-09-30T08:26:10.297Z", "updated_at": "2021-09-30T11:29:27.245Z"}, {"id": 2045, "pubmed_id": 18442988, "title": "CRISPRcompar: a website to compare clustered regularly interspaced short palindromic repeats.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn228", "authors": "Grissa I,Vergnaud G,Pourcel C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn228", "created_at": "2021-09-30T08:26:10.396Z", "updated_at": "2021-09-30T11:29:27.335Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2464", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T13:51:46.000Z", "updated-at": "2021-11-24T13:16:29.611Z", "metadata": {"doi": "10.25504/FAIRsharing.p56z5r", "name": "Danish Biodiversity Information Facility IPT - GBIF Denmark", "status": "ready", "contacts": [{"contact-name": "Isabel Calabuig", "contact-email": "ICalabuig@snm.ku.dk"}], "homepage": "http://danbif.au.dk/ipt/", "identifier": 2464, "description": "DanBIF maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). DanBIF carries out the work on making accessible the Danish, Faroese and Greenlandic resources of biodiversity data. DanBIF maintains the consensus checklist of all species known to occur in Denmark.", "abbreviation": "DanBIF IPT - GBIF Denmark", "year-creation": 2001}, "legacy-ids": ["biodbcore-000946", "bsg-d000946"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Denmark", "Greenland", "Faroe Islands"], "name": "FAIRsharing record for: Danish Biodiversity Information Facility IPT - GBIF Denmark", "abbreviation": "DanBIF IPT - GBIF Denmark", "url": "https://fairsharing.org/10.25504/FAIRsharing.p56z5r", "doi": "10.25504/FAIRsharing.p56z5r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DanBIF maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). DanBIF carries out the work on making accessible the Danish, Faroese and Greenlandic resources of biodiversity data. DanBIF maintains the consensus checklist of all species known to occur in Denmark.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 277, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 392, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1103, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1167, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3592", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-21T17:19:20.414Z", "updated-at": "2021-11-24T13:15:48.278Z", "metadata": {"name": "IBISBA", "status": "ready", "contacts": [], "homepage": "https://hub.ibisba.eu", "citations": [], "identifier": 3592, "description": "IBISBA is a European infrastructure that uniquely produces translational R&D&I services to an international community of industrial biotechnology stakeholders. IBISBA simplifies access to advanced multidisciplinary services that accelerate end-to-end bioprocess development and contributes to the delivery of low carbon, low environmental footprint technologies for a wide variety of market sectors.\n\nIBISBAHub is the repository of IBISBA-related projects and data", "abbreviation": "IBISBA", "access-points": [{"url": "https://hub.ibisba.eu/api", "name": "JSON API to FAIRDOM SEEK (0.3)", "type": "Other", "example-url": null, "documentation-url": ""}], "data-curation": {}, "support-links": [{"url": "https://ibisba.github.io/handbook/", "name": "IBISBA Handbook", "type": "Help documentation"}, {"url": "https://fair-dom.org/issues", "name": "Report an issue", "type": "Contact form"}], "year-creation": 2019, "data-processes": [{"url": "https://ibisba.github.io./handbook/contribute.html", "name": "Contribute to the Handbook", "type": "data curation"}, {"url": "https://hub.ibisba.eu/", "name": "Browse & search", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Microbiology", "Synthetic Biology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Greece", "United Kingdom", "Belgium", "European Union", "Italy", "Finland", "France", "Netherlands", "Germany", "Spain"], "name": "FAIRsharing record for: IBISBA", "abbreviation": "IBISBA", "url": "https://fairsharing.org/fairsharing_records/3592", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IBISBA is a European infrastructure that uniquely produces translational R&D&I services to an international community of industrial biotechnology stakeholders. IBISBA simplifies access to advanced multidisciplinary services that accelerate end-to-end bioprocess development and contributes to the delivery of low carbon, low environmental footprint technologies for a wide variety of market sectors.\n\nIBISBAHub is the repository of IBISBA-related projects and data", "publications": [], "licence-links": [{"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 2483, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2155", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:02.954Z", "metadata": {"doi": "10.25504/FAIRsharing.6824pv", "name": "European Variation Archive", "status": "ready", "contacts": [{"contact-name": "Baron Koylass", "contact-email": "eva-helpdesk@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/eva/", "identifier": 2155, "description": "The European Variation Archive is an open-access archive that accepts submission of, and provides access to, all types of genetic variation data from all species. All users are able to download any dataset, or query our study catalogue via our variation table. Access to EVA data is also provided by RESTful web services for a variety of applications, such as annotation pipelines.", "abbreviation": "EVA", "access-points": [{"url": "https://www.ebi.ac.uk/eva/?API", "name": "EVA REST API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/eva/?Feedback", "name": "Feedback / Survey", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/eva/?Help", "name": "EVA Help Pages", "type": "Help documentation"}, {"url": "https://twitter.com/evarchive", "name": "@evarchive", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://www.ebi.ac.uk/eva/?Submit-Data", "name": "Submit Data", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/eva/?Study-Browser&browserType=sgv", "name": "Study Browser", "type": "data access"}, {"url": "https://www.ebi.ac.uk/eva/?Variant-Browser", "name": "Variant Browser", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/eva/rs_releases/", "name": "Download via FTP", "type": "data release"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/eva/?GA4GH", "name": "EBI GA4GH Beacon"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011553", "name": "re3data:r3d100011553", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000627", "bsg-d000627"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Genetics", "Biomedical Science"], "domains": ["DNA structural variation", "Genetic polymorphism", "Sequencing", "Sequence variant", "Genotype"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "New Zealand", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Australia", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: European Variation Archive", "abbreviation": "EVA", "url": "https://fairsharing.org/10.25504/FAIRsharing.6824pv", "doi": "10.25504/FAIRsharing.6824pv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Variation Archive is an open-access archive that accepts submission of, and provides access to, all types of genetic variation data from all species. All users are able to download any dataset, or query our study catalogue via our variation table. Access to EVA data is also provided by RESTful web services for a variety of applications, such as annotation pipelines.", "publications": [{"id": 1907, "pubmed_id": 24037378, "title": "Transcriptome and genome sequencing uncovers functional variation in humans.", "year": 2013, "url": "http://doi.org/10.1038/nature12531", "authors": "Lappalainen T,Sammeth M,Friedlander MR,'t Hoen PA,Monlong J,Rivas MA,Gonzalez-Porta M,Kurbatova N,Griebel T,Ferreira PG,Barann M,Wieland T,Greger L,van Iterson M,Almlof J,Ribeca P,Pulyakhina I,Esser D,Giger T,Tikhonov A,Sultan M,Bertier G,MacArthur DG,Lek M,Lizano E,Buermans HP,Padioleau I,Schwarzmayr T,Karlberg O,Ongen H,Kilpinen H,Beltran S,Gut M,Kahlem K,Amstislavskiy V,Stegle O,Pirinen M,Montgomery SB,Donnelly P,McCarthy MI,Flicek P,Strom TM,Lehrach H,Schreiber S,Sudbrak R,Carracedo A,Antonarakis SE,Hasler R,Syvanen AC,van Ommen GJ,Brazma A,Meitinger T,Rosenstiel P,Guigo R,Gut IG,Estivill X,Dermitzakis ET", "journal": "Nature", "doi": "10.1038/nature12531", "created_at": "2021-09-30T08:25:54.447Z", "updated_at": "2021-09-30T08:25:54.447Z"}, {"id": 2286, "pubmed_id": 26673705, "title": "The European Bioinformatics Institute in 2016: Data growth and integration.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1352", "authors": "Cook CE,Bergman MT,Finn RD,Cochrane G,Birney E,Apweiler R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1352", "created_at": "2021-09-30T08:26:38.555Z", "updated_at": "2021-09-30T11:29:32.379Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 198, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3112", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T15:43:46.000Z", "updated-at": "2021-11-24T13:16:53.427Z", "metadata": {"doi": "10.25504/FAIRsharing.ACANXg", "name": "Research Vocabularies Australia", "status": "ready", "contacts": [{"contact-name": "Cel Pilapil", "contact-email": "services@ardc.edu.au"}], "homepage": "https://vocabs.ardc.edu.au", "citations": [], "identifier": 3112, "description": "Research Vocabularies Australia (RVA) helps users access and reuse vocabularies for all areas of research. Some vocabularies are hosted by the Australian Research Data Commons (ARDC) and can be accessed directly through the RVA, otherwise links are provided to the vocabulary owner\u2019s web page. Research Vocabularies Australia also allows you to create and/or publish a vocabulary as well as integrate an existing vocabulary into your own system.", "abbreviation": "RVA", "access-points": [{"url": "https://documentation.ardc.edu.au/display/DOC/SPARQL+endpoint", "name": "SPARQL Endpoint", "type": "Other"}, {"url": "https://documentation.ardc.edu.au/display/DOC/Linked+Data+API", "name": "Linked Data API", "type": "Other"}, {"url": "https://documentation.ardc.edu.au/display/DOC/Vocabulary+Registry+API", "name": "Vocabulary Registry API", "type": "REST"}], "support-links": [{"url": "https://documentation.ardc.edu.au/display/DOC/Research+Vocabularies", "name": "Documentation Home", "type": "Help documentation"}, {"url": "https://vocabs.ardc.edu.au/vocabs/page/contribute", "name": "Publishing a Vocabulary", "type": "Help documentation"}, {"url": "https://vocabs.ardc.edu.au/vocabs/page/use", "name": "Using RVA", "type": "Help documentation"}, {"url": "https://documentation.ardc.edu.au/display/DOC/Vocabulary+search", "name": "How to Search", "type": "Help documentation"}, {"url": "https://vocabs.ardc.edu.au/vocabs/page/about", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://vocabs.ardc.edu.au/search", "name": "Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001621", "bsg-d001621"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Ontology and Terminology"], "domains": ["Knowledge representation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Research Vocabularies Australia", "abbreviation": "RVA", "url": "https://fairsharing.org/10.25504/FAIRsharing.ACANXg", "doi": "10.25504/FAIRsharing.ACANXg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Research Vocabularies Australia (RVA) helps users access and reuse vocabularies for all areas of research. Some vocabularies are hosted by the Australian Research Data Commons (ARDC) and can be accessed directly through the RVA, otherwise links are provided to the vocabulary owner\u2019s web page. Research Vocabularies Australia also allows you to create and/or publish a vocabulary as well as integrate an existing vocabulary into your own system.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2417", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-07T19:50:47.000Z", "updated-at": "2021-12-06T10:49:28.319Z", "metadata": {"doi": "10.25504/FAIRsharing.xj7m8y", "name": "Natural Environmental Research Council Data Catalogue Service", "status": "ready", "contacts": [{"contact-name": "Mark Thorley", "contact-email": "mrt@nerc.ac.uk"}], "homepage": "https://data-search.nerc.ac.uk/geonetwork/srv/ger/catalog.search#/home", "citations": [], "identifier": 2417, "description": "A compendium of the United Kingdom's largest repository of Environmental and Earth Science data.", "abbreviation": "NERC Data Catalogue Service", "data-curation": {}, "support-links": [{"url": "https://twitter.com/NERCscience", "name": "@NERCscience", "type": "Twitter"}], "data-processes": [{"url": "https://data-search.nerc.ac.uk/geonetwork/srv/eng/catalog.search#/search", "name": "Search", "type": "data access"}, {"url": "https://data-search.nerc.ac.uk/geonetwork/srv/eng/catalog.search#/map", "name": "Map Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010558", "name": "re3data:r3d100010558", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000899", "bsg-d000899"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Natural Environmental Research Council Data Catalogue Service", "abbreviation": "NERC Data Catalogue Service", "url": "https://fairsharing.org/10.25504/FAIRsharing.xj7m8y", "doi": "10.25504/FAIRsharing.xj7m8y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A compendium of the United Kingdom's largest repository of Environmental and Earth Science data.", "publications": [], "licence-links": [{"licence-name": "NERC Terms and Conditions", "licence-id": 571, "link-id": 1502, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2498", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T15:59:19.000Z", "updated-at": "2021-12-06T10:49:06.977Z", "metadata": {"doi": "10.25504/FAIRsharing.rd6gxr", "name": "SIMBAD Astronomical Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "cds-question@unistra.fr"}], "homepage": "http://simbad.u-strasbg.fr/simbad/", "identifier": 2498, "description": "SIMBAD provides information on astronomical objects of interest which have been studied in scientific articles. It provides a bibliography as well as basic information such as the nature of the object, its coordinates, magnitudes, proper motions and parallax, velocity/redshift, size, spectral or morphological type, and the multitude of names (identifiers) given in the literature.", "abbreviation": "SIMBAD", "year-creation": 1950, "associated-tools": [{"url": "https://aladin.u-strasbg.fr/java/nph-aladin.pl?frame=downloading", "name": "Aladin Desktop v10.076"}, {"url": "https://aladin.u-strasbg.fr/AladinLite/", "name": "Aladin Lite"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010163", "name": "re3data:r3d100010163", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000980", "bsg-d000980"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy", "Natural Science", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: SIMBAD Astronomical Database", "abbreviation": "SIMBAD", "url": "https://fairsharing.org/10.25504/FAIRsharing.rd6gxr", "doi": "10.25504/FAIRsharing.rd6gxr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SIMBAD provides information on astronomical objects of interest which have been studied in scientific articles. It provides a bibliography as well as basic information such as the nature of the object, its coordinates, magnitudes, proper motions and parallax, velocity/redshift, size, spectral or morphological type, and the multitude of names (identifiers) given in the literature.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2029", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.270Z", "metadata": {"doi": "10.25504/FAIRsharing.hcr23j", "name": "Biospecimens/Biorepositories: Rare Disease Hub", "status": "deprecated", "contacts": [{"contact-email": "ordr@nih.gov"}], "homepage": "http://biospecimens.ordr.info.nih.gov/default.aspx", "identifier": 2029, "description": "The Biospecimens/Biorepositories Website: Rare Disease-HUB (RD-HUB) contains a searchable database of biospecimens collected, stored, and distributed by biorepositories in the United States and around the globe. RD-HUB is designed to help and assist interested parties and investigators search, locate, and identify desired biospecimens needed for the research and to facilitate collaboration and sharing of material and data among investigators across the globe.", "abbreviation": "RD-HUB", "support-links": [{"url": "http://biospecimens.ordr.info.nih.gov/Contact.aspx", "type": "Contact form"}, {"url": "http://biospecimens.ordr.info.nih.gov/FAQs.aspx", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://rarediseases.info.nih.gov/files/Permitted_Field_Values.xlsx", "type": "Help documentation"}, {"url": "http://rarediseases.info.nih.gov/files/User_Manual_Database_Search.pdf", "type": "Training documentation"}, {"url": "http://rarediseases.info.nih.gov/files/User_Manual_Data_Entry.pdf", "type": "Training documentation"}, {"url": "https://twitter.com/Biospecimens", "type": "Twitter"}], "associated-tools": [{"url": "http://biospecimens.ordr.info.nih.gov/Contributingrepository.aspx", "name": "submit"}, {"url": "http://biospecimens.ordr.info.nih.gov/Locator.aspx", "name": "search"}], "deprecation-date": "2016-06-30", "deprecation-reason": "Discussion with Henrietta Hyatt-Knorr from NIH NCATS reveals that this database is no longer available and has been replaced by a list of resources, at http://www.ncats.nih.gov/grdr/rdhub"}, "legacy-ids": ["biodbcore-000496", "bsg-d000496"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Biological sample annotation", "Biological sample", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Biospecimens/Biorepositories: Rare Disease Hub", "abbreviation": "RD-HUB", "url": "https://fairsharing.org/10.25504/FAIRsharing.hcr23j", "doi": "10.25504/FAIRsharing.hcr23j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Biospecimens/Biorepositories Website: Rare Disease-HUB (RD-HUB) contains a searchable database of biospecimens collected, stored, and distributed by biorepositories in the United States and around the globe. RD-HUB is designed to help and assist interested parties and investigators search, locate, and identify desired biospecimens needed for the research and to facilitate collaboration and sharing of material and data among investigators across the globe.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2572", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-28T12:40:10.000Z", "updated-at": "2021-11-24T13:17:23.449Z", "metadata": {"name": "Pulse Crop Database", "status": "ready", "contacts": [], "homepage": "https://www.pulsedb.org/", "citations": [], "identifier": 2572, "description": "Although there is wealth of legume genetic research information in North America and throughout the world, there is still a need for a system that can organize, filter and provide analysis on the available research to be directly applied in breeding programs. The Pulse Crop Database (formerly the Cool Season Food Legume Crop Database) is being developed to serve as a resource for Genomics-Assisted Breeding (GAB). GAB offers tools to identify genes related to traits of interest among other methods to optimize plant breeding efficiency and research, by providing relevant genomic, genetic and breeding information and analysis.", "abbreviation": "PCD", "data-curation": {}, "support-links": [{"url": "https://pulsedb.org/UserManual", "name": "User Manual", "type": "Help documentation"}, {"url": "pulsedb-list@pulsedb.org", "name": "Mailing List", "type": "Mailing list"}, {"url": "https://pulsedb.org/data_overview/1", "name": "Data Overview", "type": "Help documentation"}, {"url": "https://twitter.com/PulseDB_news", "name": "@PulseDB_news", "type": "Twitter"}, {"url": "https://pulsedb.org/pulsedb_contact", "name": "Contact", "type": "Contact form"}, {"url": "https://www.youtube.com/channel/UC0S8SqxuMpfScejyE-VCtxA", "name": "MainLab YouTube Channel", "type": "Video"}], "year-creation": 2010, "data-processes": [{"url": "https://pulsedb.org/find/features", "name": "Sequence Search", "type": "data access"}, {"url": "https://pulsedb.org/find/genes", "name": "Gene and Transcript Search", "type": "data access"}, {"url": "https://pulsedb.org/find/germplasms", "name": "Germplasm Search", "type": "data access"}, {"url": "https://pulsedb.org/search/featuremap/list", "name": "Map Search", "type": "data access"}, {"url": "https://pulsedb.org/find/markers", "name": "Marker Search", "type": "data access"}, {"url": "https://pulsedb.org/find/publications", "name": "Publication search", "type": "data access"}, {"url": "https://pulsedb.org/find/qtl", "name": "QTL Search", "type": "data access"}, {"url": "https://pulsedb.org/data_submission", "name": "Submit Data", "type": "data curation"}, {"url": "https://pulsedb.org/node/303648", "name": "Download Data", "type": "data access"}, {"url": "https://pulsedb.org/tripal_megasearch", "name": "MegaSearch", "type": "data access"}, {"url": "https://pulsedb.org/search/trait_descriptor", "name": "Trait Descriptor Search", "type": "data access"}, {"url": "https://pulsedb.org/search/trait", "name": "Trait Search", "type": "data access"}, {"url": "https://pulsedb.org/trait_listing", "name": "Trait Abbreviations", "type": "data curation"}], "associated-tools": [{"url": "https://pulsedb.org/jbrowses", "name": "JBrowse"}, {"url": "https://pulsedb.org/blast", "name": "BLAST+"}, {"url": "https://pulsedb.org/MapViewer", "name": "MapViewer"}, {"url": "http://ptools.pulsedb.org/", "name": "PathwayCyc"}, {"url": "https://pulsedb.org/synview/search", "name": "Synteny Viewer"}, {"url": "https://www.pulsedb.org/bims", "name": "Breeding Information Management System (BIMS)"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001055", "bsg-d001055"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Plant Breeding", "Genomics", "Genetics", "Agriculture", "Life Science", "Plant Genetics"], "domains": [], "taxonomies": ["Cajanus cajan", "Cicer arietinum", "Lens culinaris", "Lupinus angustifolius", "Phaseolus vulgaris", "Pisum sativum", "Vicia faba", "Vigna angularis", "Vigna unguiculata", "Vigna subterranea", "Vicia sativa"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pulse Crop Database", "abbreviation": "PCD", "url": "https://fairsharing.org/fairsharing_records/2572", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Although there is wealth of legume genetic research information in North America and throughout the world, there is still a need for a system that can organize, filter and provide analysis on the available research to be directly applied in breeding programs. The Pulse Crop Database (formerly the Cool Season Food Legume Crop Database) is being developed to serve as a resource for Genomics-Assisted Breeding (GAB). GAB offers tools to identify genes related to traits of interest among other methods to optimize plant breeding efficiency and research, by providing relevant genomic, genetic and breeding information and analysis.", "publications": [{"id": 2518, "pubmed_id": null, "title": "Cool Season Food Legume Genome Database: A resource for pea, lentil, faba bean and chickpea genetics, genomics and breeding", "year": 2017, "url": "https://www.pulsedb.org/sites/default/files/files/CSFL_poster-PAG2019.pdf", "authors": "Humann JL, Jung S, Cheng C-H, Lee T, Zheng P, Frank M, McGaughey D, Scott K, Buble K, Yu J, Hough H. Coyne C, McGee R, Main D", "journal": "Proceedings of the International Plant and Animal Genome Conference, San Diego, CA, USA.", "doi": null, "created_at": "2021-09-30T08:27:08.945Z", "updated_at": "2021-09-30T08:27:08.945Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2164", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:16.049Z", "metadata": {"doi": "10.25504/FAIRsharing.abwvhp", "name": "NCBI Trace Archive", "status": "ready", "contacts": [], "homepage": "http://www.ncbi.nlm.nih.gov/Traces/home/", "citations": [], "identifier": 2164, "description": "The Trace Archives includes the following archives: The Sequence Read Archive (SRA) stores raw sequence data from \"next-generation\" sequencing technologies including 454, IonTorrent, Illumina, SOLiD, Helicos and Complete Genomics. In addition to raw sequence data, SRA now stores alignment information in the form of read placements on a reference sequence. The Trace Archive serves as the repository of sequencing data from gel/capillary platforms such as Applied Biosystems ABI 3730\u00ae. The Trace Assembly Archive stores pairwise alignment and multiple alignment of sequencing reads, linking basic trace data with finished genomic sequence as found in GenBank.", "data-curation": {}, "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_goals", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_goals", "type": "Contact form"}, {"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=list_arrivals", "type": "Blog/News"}], "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_submitting_tips", "name": "Submit", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010905", "name": "re3data:r3d100010905", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013788", "name": "SciCrunch:RRID:SCR_013788", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000636", "bsg-d000636"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Multiple sequence alignment", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Trace Archive", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.abwvhp", "doi": "10.25504/FAIRsharing.abwvhp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Trace Archives includes the following archives: The Sequence Read Archive (SRA) stores raw sequence data from \"next-generation\" sequencing technologies including 454, IonTorrent, Illumina, SOLiD, Helicos and Complete Genomics. In addition to raw sequence data, SRA now stores alignment information in the form of read placements on a reference sequence. The Trace Archive serves as the repository of sequencing data from gel/capillary platforms such as Applied Biosystems ABI 3730\u00ae. The Trace Assembly Archive stores pairwise alignment and multiple alignment of sequencing reads, linking basic trace data with finished genomic sequence as found in GenBank.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3101", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T08:49:13.000Z", "updated-at": "2021-12-06T10:47:34.542Z", "metadata": {"name": "WHOI Ship Data-Grabber System", "status": "ready", "homepage": "http://4dgeo.whoi.edu/shipdata/SDG_shipdata.html", "identifier": 3101, "description": "The WHOI Ship DataGrabber system provides the oceanographic community on-line access to underway ship data collected on the R/V Atlantis, Knorr, Oceanus, and Tioga (TBD). All the shipboard data is co-registered with the ship's GPS time and navigation systems. The system is built upon the methodology and technology developed for the Alvin Frame-Grabber and the JasonII Virtual Control Van system. A beta-version was deployed on the R/V Atlantis AT11-16 cruise in the summer of 2004 and the system has subsequently been installed on the R/V Knorr and Oceanus.", "support-links": [{"url": "http://4dgeo.whoi.edu/shipdata/SDG_overview.html", "name": "About", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://4dgeo.whoi.edu/sdg-bin/dv_main.pl?ship=Atlantis", "name": "R/V Atlantis Data", "type": "data access"}, {"url": "http://4dgeo.whoi.edu/sdg-bin/dv_main.pl?ship=Knorr", "name": "R/V Knorr Data", "type": "data access"}, {"url": "http://4dgeo.whoi.edu/sdg-bin/dv_main.pl?ship=Oceanus", "name": "R/V Oceanus Data", "type": "data access"}, {"url": "http://4dgeo.whoi.edu/sdg-bin/dv_main.pl?ship=Tioga", "name": "R/V Tioga Data", "type": "data access"}, {"url": "ftp://ftp.whoi.edu/pub/", "name": "FTP", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010511", "name": "re3data:r3d100010511", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001609", "bsg-d001609"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Oceanography", "Water Research"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["subseafloor environments"], "countries": ["United States"], "name": "FAIRsharing record for: WHOI Ship Data-Grabber System", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3101", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The WHOI Ship DataGrabber system provides the oceanographic community on-line access to underway ship data collected on the R/V Atlantis, Knorr, Oceanus, and Tioga (TBD). All the shipboard data is co-registered with the ship's GPS time and navigation systems. The system is built upon the methodology and technology developed for the Alvin Frame-Grabber and the JasonII Virtual Control Van system. A beta-version was deployed on the R/V Atlantis AT11-16 cruise in the summer of 2004 and the system has subsequently been installed on the R/V Knorr and Oceanus.", "publications": [], "licence-links": [{"licence-name": "NDSF Data Archive Policy", "licence-id": 567, "link-id": 994, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3122", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-14T09:46:21.000Z", "updated-at": "2022-02-08T10:42:08.505Z", "metadata": {"doi": "10.25504/FAIRsharing.54e74f", "name": "Air Information Resource", "status": "ready", "contacts": [{"contact-name": "Feedback", "contact-email": "aqinfo@ricardo.com"}], "homepage": "https://uk-air.defra.gov.uk/data/", "citations": [], "identifier": 3122, "description": "Data Archive on UK-AIR (Air Information Resource) provides information on air quality and air pollution in the UK. A range of information is available, from the latest pollution levels, pollution forecast information, a data archive, and details of the various monitoring networks.", "abbreviation": "UK-AIR", "data-curation": {}, "support-links": [{"url": "https://uk-air.defra.gov.uk/interactive-map", "name": "Interactive monitoring networks map", "type": "Help documentation"}, {"url": "https://uk-air.defra.gov.uk/library/", "name": "Air Quality Library", "type": "Help documentation"}, {"url": "https://twitter.com/DefraUKAir", "type": "Twitter"}], "data-processes": [{"url": "https://uk-air.defra.gov.uk/networks/find-sites?action=region", "name": "Search for monitoring sites", "type": "data access"}, {"url": "https://uk-air.defra.gov.uk/data/data_selector", "name": "Data Selector", "type": "data access"}, {"url": "https://uk-air.defra.gov.uk/data/exceedance", "name": "Annual and Exceedence Statistics", "type": "data access"}, {"url": "https://uk-air.defra.gov.uk/data/data-availability", "name": "Data availability", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010183", "name": "re3data:r3d100010183", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001632", "bsg-d001632"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Earth Science", "Atmospheric Science"], "domains": ["Radiation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Air", "Ozone", "Pollution", "Stratosphere"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Air Information Resource", "abbreviation": "UK-AIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.54e74f", "doi": "10.25504/FAIRsharing.54e74f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data Archive on UK-AIR (Air Information Resource) provides information on air quality and air pollution in the UK. A range of information is available, from the latest pollution levels, pollution forecast information, a data archive, and details of the various monitoring networks.", "publications": [], "licence-links": [{"licence-name": "Open Government Licence, version 2", "licence-id": 629, "link-id": 2005, "relation": "undefined"}, {"licence-name": "Crown copyright", "licence-id": 202, "link-id": 2009, "relation": "undefined"}, {"licence-name": "GOV.UK Terms and conditions", "licence-id": 362, "link-id": 2010, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2406", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-18T16:27:43.000Z", "updated-at": "2021-12-06T10:48:20.639Z", "metadata": {"doi": "10.25504/FAIRsharing.c23cqq", "name": "Ensembl Metazoa", "status": "ready", "contacts": [{"contact-name": "Paul Flicek", "contact-email": "flicek@ebi.ac.uk"}], "homepage": "https://metazoa.ensembl.org/index.html", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2406, "description": "Ensembl Metazoa provides access to genomes of metazoans of interest in disease, environmental sciences, agriculture and economic concern. Extensive coverage exists of diptera, nematodes, lepidoptera and hymenoptera.", "abbreviation": "Ensembl Metazoa", "access-points": [{"url": "https://github.com/Ensembl", "name": "Ensembl Perl API", "type": "Other"}, {"url": "https://rest.ensembl.org/", "name": "Ensembl Genomes REST API Endpoints", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "General Contact", "type": "Support email"}, {"url": "https://metazoa.ensembl.org/info/", "name": "Help", "type": "Help documentation"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "Ensembl Dev Mailing List", "type": "Mailing list"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://metazoa.ensembl.org/Aedes_aegypti_lvpagwg/Tools/VEP", "name": "Variant Effect Predictor", "type": "data access"}, {"url": "https://metazoa.ensembl.org/info/data/ftp/index.html", "name": "Download", "type": "data access"}, {"url": "https://metazoa.ensembl.org/index.html", "name": "Search", "type": "data access"}, {"url": "https://metazoa.ensembl.org/species.html", "name": "Browse", "type": "data access"}, {"url": "https://metazoa.ensembl.org/hmmer", "name": "HMMER", "type": "data access"}, {"url": "https://metazoa.ensembl.org/Aedes_aegypti_lvpagwg/Tools/Blast", "name": "BLAST/BLAT", "type": "data access"}, {"url": "https://metazoa.ensembl.org/Aedes_aegypti_lvpagwg/Tools/AssemblyConverter", "name": "Assembly Converter", "type": "data access"}, {"url": "https://metazoa.ensembl.org/Aedes_aegypti_lvpagwg/Tools/IDMapper", "name": "ID History Converter", "type": "data access"}, {"url": "https://metazoa.ensembl.org/biomart/martview", "name": "BioMart", "type": "data access"}], "associated-tools": [{"url": "https://github.com/Ensembl/ensembl-tools/archive/release/103.zip", "name": "Variant Effect Predictor (Download Script)"}, {"url": "https://github.com/Ensembl/ensembl-tools/tree/release/103/scripts/id_history_converter", "name": "ID History Converter (Download Script)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011198", "name": "re3data:r3d100011198", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000800", "name": "SciCrunch:RRID:SCR_000800", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000888", "bsg-d000888"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation", "Genome"], "taxonomies": ["Metazoa"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: Ensembl Metazoa", "abbreviation": "Ensembl Metazoa", "url": "https://fairsharing.org/10.25504/FAIRsharing.c23cqq", "doi": "10.25504/FAIRsharing.c23cqq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl Metazoa provides access to genomes of metazoans of interest in disease, environmental sciences, agriculture and economic concern. Extensive coverage exists of diptera, nematodes, lepidoptera and hymenoptera.", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1640, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1641, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3309", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-16T13:29:06.000Z", "updated-at": "2021-12-06T10:49:27.262Z", "metadata": {"doi": "10.25504/FAIRsharing.xFI5ob", "name": "Propylaeum@heiDATA", "status": "ready", "contacts": [{"contact-name": "Katrin Bemmann", "contact-email": "bemmann@ub.uni-heidelberg.de"}], "homepage": "https://heidata.uni-heidelberg.de/dataverse/propylaeum", "identifier": 3309, "description": "Propylaeum@heiDATA is the research data repository of Propylaeum (Specialized Information Service Classics). It provides classical scholars with the opportunity to archive their research data permanently in connection with an open access online publication (e.g. article, ejournal, ebook) hosted by Heidelberg University Library. All research data e.g. images, videos, audio files, tables, graphics receive a DOI (Digital Object Identifier). The data publications can be cited, viewed and permanently linked to as distinct academic output.", "abbreviation": "Propylaeum@heiDATA", "access-points": [{"url": "https://heidata.uni-heidelberg.de/oai", "name": "OAI-PMH", "type": "Other"}], "year-creation": 2021, "data-processes": [{"url": "https://heidata.uni-heidelberg.de/dataverse/propylaeum/search", "name": "Advanced Search", "type": "data access"}, {"url": "https://data.uni-heidelberg.de/submission.html", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013507", "name": "re3data:r3d100013507", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001824", "bsg-d001824"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Archaeology", "Classical Philology", "Ancient History", "Database Management", "Egyptology"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Propylaeum@heiDATA", "abbreviation": "Propylaeum@heiDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.xFI5ob", "doi": "10.25504/FAIRsharing.xFI5ob", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Propylaeum@heiDATA is the research data repository of Propylaeum (Specialized Information Service Classics). It provides classical scholars with the opportunity to archive their research data permanently in connection with an open access online publication (e.g. article, ejournal, ebook) hosted by Heidelberg University Library. All research data e.g. images, videos, audio files, tables, graphics receive a DOI (Digital Object Identifier). The data publications can be cited, viewed and permanently linked to as distinct academic output.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3692", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-18T00:36:03.255Z", "updated-at": "2022-02-11T10:38:42.511Z", "metadata": {"name": "Pacific Northwest National Laboratory DataHub: Scientific Data Repository", "status": "in_development", "contacts": [{"contact-name": "PNNL RC Support", "contact-email": "rc-support@pnnl.gov", "contact-orcid": null}], "homepage": "https://data.pnnl.gov/", "citations": [], "identifier": 3692, "description": "Sharing and preserving data are central to protecting the integrity of science. DataHub, a Research Computing endeavor, provides tools and services to meet scientific data challenges at Pacific Northwest National Laboratory (PNNL). DataHub helps researchers address the full data life cycle for their institutional projects and provides a path to creating findable, accessible, interoperable, and reusable (FAIR) data products. Although open science data is a crucial focus of DataHub\u2019s core services, we are interested in working with evidence-based data throughout the PNNL research community. ", "abbreviation": "PNNL2", "data-curation": {"type": "none"}, "support-links": [{"url": "https://doi.org/10.25584/PNNL.DataHub/1812943", "name": "DOI for DataHub OSTI.GOV", "type": "Other"}, {"url": "https://data.pnnl.gov/about", "name": "About", "type": "Help documentation"}, {"url": "https://data.pnnl.gov/?f[0]=content_type:book", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://data.pnnl.gov/categories", "name": "Browse and Filter", "type": "data access"}], "associated-tools": [{"url": "https://www.osti.gov/search-tools", "name": "OSTI Search Tools"}], "deprecation-reason": "", "data-access-condition": {"type": "controlled"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Functional Genomics", "Environmental Science", "Metaproteomics", "Metagenomics", "Genomics", "Occupational Medicine", "Toxicology", "Health Science", "Proteomics", "Geoinformatics", "Metatranscriptomics", "Applied Mathematics", "Hydrography", "Proteogenomics", "Earth Science", "Atmospheric Science", "Phylogenomics", "Life Science", "Materials Science", "Metabolomics", "Computer Science", "Transcriptomics", "Phenomics", "Biomedical Science", "Comparative Genomics", "Omics", "Bioengineering", "Systems Biology", "Surface Science", "Ecosystem Science"], "domains": ["Citation", "Resource metadata", "Experimental measurement", "Data retrieval", "Analysis", "Data acquisition", "Device", "Study design", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United States"], "name": "FAIRsharing record for: Pacific Northwest National Laboratory DataHub: Scientific Data Repository", "abbreviation": "PNNL2", "url": "https://fairsharing.org/fairsharing_records/3692", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Sharing and preserving data are central to protecting the integrity of science. DataHub, a Research Computing endeavor, provides tools and services to meet scientific data challenges at Pacific Northwest National Laboratory (PNNL). DataHub helps researchers address the full data life cycle for their institutional projects and provides a path to creating findable, accessible, interoperable, and reusable (FAIR) data products. Although open science data is a crucial focus of DataHub\u2019s core services, we are interested in working with evidence-based data throughout the PNNL research community. ", "publications": [], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBJdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--8802fd232d76851c646653e3cacaacc820d7cb85/Web%20Size-PNNL%20Vertical%20Logo.jpg?disposition=inline"}} +{"id": "2469", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T18:13:49.000Z", "updated-at": "2021-11-24T13:16:29.989Z", "metadata": {"doi": "10.25504/FAIRsharing.gdj215", "name": "Madagascar Biodiversity Information Facility IPT - GBIF France", "status": "ready", "contacts": [{"contact-name": "Andry Rakotomanjaka", "contact-email": "andry@madbif.mg"}], "homepage": "http://ipt.madbif.mg/", "identifier": 2469, "description": "GBIF France hosts this data repository on behalf of Madagascar Biodiversity Information Facility (MadBIF) in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Most data collected within Madagascar is not documented and is only accessible to the person/team involved in the project for which the data has been collected. Moreover, there is a lack of data policy within the institutions of Madagascar. As a consequence, data knowledge is linked to individuals and disappears with them. The only public information that can be found is the information located in herbaria, museums, and various literature. MadBIF aims to promote and support publication of biodiversity data by data holders.", "abbreviation": "MadBIF IPT - GBIF France", "support-links": [{"url": "http://www.madbif.mg", "name": "MadBIF", "type": "Help documentation"}], "year-creation": 2003}, "legacy-ids": ["biodbcore-000951", "bsg-d000951"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France", "Madagascar"], "name": "FAIRsharing record for: Madagascar Biodiversity Information Facility IPT - GBIF France", "abbreviation": "MadBIF IPT - GBIF France", "url": "https://fairsharing.org/10.25504/FAIRsharing.gdj215", "doi": "10.25504/FAIRsharing.gdj215", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF France hosts this data repository on behalf of Madagascar Biodiversity Information Facility (MadBIF) in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Most data collected within Madagascar is not documented and is only accessible to the person/team involved in the project for which the data has been collected. Moreover, there is a lack of data policy within the institutions of Madagascar. As a consequence, data knowledge is linked to individuals and disappears with them. The only public information that can be found is the information located in herbaria, museums, and various literature. MadBIF aims to promote and support publication of biodiversity data by data holders.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 399, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1150, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1164, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1170, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2451", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-28T19:30:55.000Z", "updated-at": "2021-12-06T10:47:51.102Z", "metadata": {"doi": "10.25504/FAIRsharing.2g5kcb", "name": "Research Data Australia", "status": "ready", "contacts": [{"contact-name": "Cel Pilapil", "contact-email": "services@ardc.edu.au"}], "homepage": "https://researchdata.edu.au/", "identifier": 2451, "description": "Research Data Australia is the data discovery service of the Australian Research Data Commons (ARDC). Research Data Australia helps you find, access, and reuse data for research from over one hundred Australian research organisations, government agencies, and cultural institutions. This services indexes metadata about the data stored by their data publishing partners, providing links out to the primary data.", "abbreviation": "RDA", "support-links": [{"url": "https://researchdata.edu.au/page/about", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/ARDC_AU", "name": "@ARDC_AU", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "http://www.ands.org.au/online-services/rif-cs-schema", "name": "RIF-CS Schema", "type": "data release"}, {"url": "https://researchdata.edu.au/subjects", "name": "Browse by Subject", "type": "data access"}, {"url": "https://researchdata.edu.au/themes", "name": "Browse by Theme", "type": "data access"}, {"url": "https://researchdata.edu.au/grants", "name": "Browse Grants and Projects", "type": "data access"}, {"url": "https://researchdata.edu.au/theme/open-data", "name": "Browse Open Data", "type": "data access"}], "associated-tools": [{"url": "https://researchdata.edu.au/theme/services", "name": "Tool List"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010464", "name": "re3data:r3d100010464", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000933", "bsg-d000933"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Marine Biology", "Humanities and Social Science", "Urban Planning", "Astrophysics and Astronomy", "Materials Science", "Subject Agnostic", "Biology", "Tropical Medicine", "Ecosystem Science"], "domains": ["Resource metadata", "Tropical", "Climate", "Ecosystem"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Research Data Australia", "abbreviation": "RDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.2g5kcb", "doi": "10.25504/FAIRsharing.2g5kcb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Research Data Australia is the data discovery service of the Australian Research Data Commons (ARDC). Research Data Australia helps you find, access, and reuse data for research from over one hundred Australian research organisations, government agencies, and cultural institutions. This services indexes metadata about the data stored by their data publishing partners, providing links out to the primary data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1723", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-03T09:20:05.203Z", "metadata": {"doi": "10.25504/FAIRsharing.8t18te", "name": "Cell Image Library", "status": "ready", "contacts": [{"contact-name": "David Orloff", "contact-email": "dorloff@ncmir.ucsd.edu"}], "homepage": "http://www.cellimagelibrary.org", "identifier": 1723, "description": "This library is a public and easily accessible resource database of images, videos, and animations of cells, capturing a wide diversity of organisms, cell types, and cellular processes. The purpose of this database is to advance research on cellular activity, with the ultimate goal of improving human health. It is a repository for images, movies, and animations of cells from a variety of organisms that demonstrate cellular architecture and functions. This comprehensive library is designed as a public resource first and foremost for research, and secondarily as a tool for education. The long-term goal is the construction of a library of images that will serve as primary data for research.", "abbreviation": null, "support-links": [{"url": "http://www.cellimagelibrary.org/pages/help#faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.cellimagelibrary.org/pages/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://www.cellimagelibrary.org/pages/about", "name": "http://www.cellimagelibrary.org/pages/about", "type": "Help documentation"}, {"url": "https://twitter.com/CellImageLibrar", "name": "@CellImageLibrar", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"name": "live update", "type": "data release"}, {"url": "http://www.cellimagelibrary.org/pages/contribute", "name": "submit", "type": "data curation"}, {"url": "http://www.cellimagelibrary.org/browse/cellcomponent", "name": "Browse Cell Components", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/browse/cellprocess", "name": "Browse Cell Processes", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/browse/celltype", "name": "Browse Cell Type", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/browse/organism", "name": "Browse Organisms", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/browse/microbial", "name": "Browse Microbial", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/pages/alzheimers", "name": "Browse Alzheimer's Images", "type": "data access"}, {"url": "http://www.cellimagelibrary.org/pages/datasets", "name": "Browse Datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000023", "name": "re3data:r3d100000023", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003510", "name": "SciCrunch:RRID:SCR_003510", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000180", "bsg-d000180"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Cell Biology"], "domains": ["Cell", "Microscopy", "Light microscopy", "Electron microscopy", "Video", "Super-resolution microscopy", "Animation", "Image"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cell Image Library", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.8t18te", "doi": "10.25504/FAIRsharing.8t18te", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This library is a public and easily accessible resource database of images, videos, and animations of cells, capturing a wide diversity of organisms, cell types, and cellular processes. The purpose of this database is to advance research on cellular activity, with the ultimate goal of improving human health. It is a repository for images, movies, and animations of cells from a variety of organisms that demonstrate cellular architecture and functions. This comprehensive library is designed as a public resource first and foremost for research, and secondarily as a tool for education. The long-term goal is the construction of a library of images that will serve as primary data for research.", "publications": [{"id": 232, "pubmed_id": 23203874, "title": "The cell: an image library-CCDB: a curated repository of microscopy data.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1257", "authors": "Orloff DN, Iwasa JH, Martone ME, Ellisman MH, Kane CM.", "journal": "Nucleic Acids Res (Database issue)", "doi": "10.1093/nar/gks1257", "created_at": "2021-09-30T08:22:45.040Z", "updated_at": "2021-09-30T08:22:45.040Z"}], "licence-links": [{"licence-name": "Cell Image Library Data Policies and disclaimer", "licence-id": 117, "link-id": 970, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3664", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-06T18:04:29.990Z", "updated-at": "2022-02-08T10:38:07.169Z", "metadata": {"doi": "10.25504/FAIRsharing.51c536", "name": "Minimum Information about a Biosynthetic Gene Cluster Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "mibig@secondarymetabolites.org", "contact-orcid": null}], "homepage": "https://mibig.secondarymetabolites.org/repository", "citations": [], "identifier": 3664, "description": "The MIBiG (Minimum Information about a Biosynthetic Gene Cluster) Repository stores Biosynthetic Gene Clusters (BGC) that are manually curated through community efforts. It is a central reference database for BGCs of known function, and provides the basis for comparative analyses for a number of tools. It has enabled many computational analyses of BGC function and novelty central to both small and large-scale studies of microbes and microbial communities.", "abbreviation": "MIBiG Repository", "data-curation": {}, "support-links": [], "year-creation": 2015, "data-processes": [{"url": "https://mibig.secondarymetabolites.org/query", "name": "Search", "type": "data access"}, {"url": "https://mibig.secondarymetabolites.org/repository", "name": "Browse", "type": "data access"}, {"url": "https://mibig.secondarymetabolites.org/submit", "name": "Submit", "type": "data curation"}, {"url": "https://mibig.secondarymetabolites.org/download", "name": "Download", "type": "data release"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"type": "open"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Microbiology"], "domains": ["Genome"], "taxonomies": ["Bacteria"], "user-defined-tags": ["biosynthetic gene clusters"], "countries": ["United Kingdom", "United States", "Netherlands", "Mexico"], "name": "FAIRsharing record for: Minimum Information about a Biosynthetic Gene Cluster Repository", "abbreviation": "MIBiG Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.51c536", "doi": "10.25504/FAIRsharing.51c536", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MIBiG (Minimum Information about a Biosynthetic Gene Cluster) Repository stores Biosynthetic Gene Clusters (BGC) that are manually curated through community efforts. It is a central reference database for BGCs of known function, and provides the basis for comparative analyses for a number of tools. It has enabled many computational analyses of BGC function and novelty central to both small and large-scale studies of microbes and microbial communities.", "publications": [{"id": 3149, "pubmed_id": null, "title": "MIBiG 2.0: a repository for biosynthetic gene clusters of known function", "year": 2019, "url": "http://dx.doi.org/10.1093/nar/gkz882", "authors": "Kautsar, Satria A; Blin, Kai; Shaw, Simon; Navarro-Mu\u00f1oz, Jorge C; Terlouw, Barbara R; van\u00a0der\u00a0Hooft, Justin J J; van\u00a0Santen, Jeffrey A; Tracanna, Vittorio; Suarez\u00a0Duran, Hernando G; Pascal\u00a0Andreu, Vict\u00f2ria; Selem-Mojica, Nelly; Alanjary, Mohammad; Robinson, Serina L; Lund, George; Epstein, Samuel C; Sisto, Ashley C; Charkoudian, Louise K; Collemare, J\u00e9r\u00f4me; Linington, Roger G; Weber, Tilmann; Medema, Marnix H; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz882", "created_at": "2021-12-06T18:19:57.913Z", "updated_at": "2021-12-06T18:19:57.913Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2528, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1829", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.025Z", "metadata": {"doi": "10.25504/FAIRsharing.61c2x6", "name": "Oryza Tag Line", "status": "ready", "contacts": [{"contact-email": "oryzatagline@cirad.fr"}], "homepage": "http://oryzatagline.cirad.fr/", "identifier": 1829, "description": "Oryza Tag Line consists in a searchable database developed under the Oracle management system integrating phenotypic data resulting from the evaluation of the Genoplante rice insertion line library.", "abbreviation": "OTL", "support-links": [{"url": "oryzatagline@cirad.fr", "type": "Support email"}, {"url": "http://oryzatagline.cirad.fr/help.htm", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://oryzatagline.cirad.fr/cgi-bin/advanced_search.pl", "name": "advanced search", "type": "data access"}, {"url": "http://oryzatagline.cirad.fr/cgi-bin/keyword_search.pl", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000289", "bsg-d000289"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "DNA sequence data", "Deoxyribonucleic acid", "Phenotype", "Messenger RNA", "Complementary DNA"], "taxonomies": ["Oryza"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Oryza Tag Line", "abbreviation": "OTL", "url": "https://fairsharing.org/10.25504/FAIRsharing.61c2x6", "doi": "10.25504/FAIRsharing.61c2x6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Oryza Tag Line consists in a searchable database developed under the Oracle management system integrating phenotypic data resulting from the evaluation of the Genoplante rice insertion line library.", "publications": [{"id": 331, "pubmed_id": 17947330, "title": "Oryza Tag Line, a phenotypic mutant database for the Genoplante rice insertion line library.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm762", "authors": "Larmande P., Gay C., Lorieux M., P\u00e9rin C., Bouniol M., Droc G., Sallaud C., Perez P., Barnola I., Biderre-Petit C., Martin J., Morel JB., Johnson AA., Bourgis F., Ghesqui\u00e8re A., Ruiz M., Courtois B., Guiderdoni E.,", "journal": "Nucleic Acids Res.", "doi": "17947330", "created_at": "2021-09-30T08:22:55.657Z", "updated_at": "2021-09-30T08:22:55.657Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2127", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-10T13:22:42.658Z", "metadata": {"doi": "10.25504/FAIRsharing.t19hpa", "name": "Integrated Taxonomic Information System", "status": "ready", "contacts": [{"contact-name": "Gerald Guala", "contact-email": "itiswebmaster@itis.gov", "contact-orcid": "0000-0002-4972-3782"}], "homepage": "https://www.itis.gov/", "citations": [], "identifier": 2127, "description": "The Integrated Taxonomic Information System (ITIS) provides taxonomic information on plants, animals, fungi, and microbes of North America and the world. The goal is to create an easily accessible database with reliable information on species names and their hierarchical classification. The database will be reviewed periodically to ensure high quality with valid classifications, revisions, and additions of newly described species. The ITIS includes documented taxonomic information of flora and fauna from both aquatic and terrestrial habitats.", "abbreviation": "ITIS", "access-points": [{"url": "https://www.itis.gov/web_service.html", "name": "Basic, JSON and JSON-P Web Services", "type": "Other"}, {"url": "https://www.itis.gov/solr_documentation.html", "name": "ITIS Solr Web Services", "type": "Other"}], "support-links": [{"url": "http://www.itis.gov/pdf/faq_itis_tsn.pdf", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "https://www.itis.gov/downloads/index.html", "name": "Full Database Download", "type": "data access"}, {"url": "http://www.itis.gov/advanced_search.html", "name": "Advanced search", "type": "data access"}, {"url": "https://www.itis.gov/submit.html", "name": "Submit", "type": "data access"}, {"url": "http://www.itis.gov/twb.html", "name": "ITIS Taxonomic Workbench", "type": "data access"}, {"url": "http://www.itis.gov/taxmatch_compare_guide.html", "name": "TAXON Compare", "type": "data access"}, {"url": "https://www.itis.gov/download.html", "name": "Download a Specific Taxonomic Group's Data in TWB format", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011213", "name": "re3data:r3d100011213", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000597", "bsg-d000597"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Taxonomy", "Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada", "United States", "Mexico"], "name": "FAIRsharing record for: Integrated Taxonomic Information System", "abbreviation": "ITIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.t19hpa", "doi": "10.25504/FAIRsharing.t19hpa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Taxonomic Information System (ITIS) provides taxonomic information on plants, animals, fungi, and microbes of North America and the world. The goal is to create an easily accessible database with reliable information on species names and their hierarchical classification. The database will be reviewed periodically to ensure high quality with valid classifications, revisions, and additions of newly described species. The ITIS includes documented taxonomic information of flora and fauna from both aquatic and terrestrial habitats.", "publications": [], "licence-links": [{"licence-name": "ITIS Privacy Statement and Disclaimer", "licence-id": 462, "link-id": 2415, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2692", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-31T07:56:38.000Z", "updated-at": "2021-11-24T13:13:07.031Z", "metadata": {"doi": "10.25504/FAIRsharing.ltyo8e", "name": "Visual Media Service", "status": "ready", "contacts": [{"contact-name": "Roberto Scopigno", "contact-email": "r.scopigno@isti.cnr.it", "contact-orcid": "0000-0002-7457-7473"}], "homepage": "http://visual.ariadne-infrastructure.eu/", "identifier": 2692, "description": "The aim of the Visual Media Service is to provide CH researchers with an automatic system to publish on the web, search, visualize and analyze images and 3D models in a common workspace, enabling sharing, interoperability and reuse of visual data. Visual Media Service enables the easy publication and visualization on the web of high-resolution 2D images, RTI (Reflection Transformation Images) and 3D models.", "abbreviation": "VisMS", "support-links": [{"url": "ponchio@isti.cnr.it", "name": "Federico Ponchio, CNR-ISTI", "type": "Support email"}, {"url": "http://visual.ariadne-infrastructure.eu/help", "name": "Help on line", "type": "Help documentation"}], "year-creation": 2016}, "legacy-ids": ["biodbcore-001189", "bsg-d001189"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Culture", "Humanities", "Natural Science", "History", "Data Visualization"], "domains": ["Imaging"], "taxonomies": [], "user-defined-tags": ["image processing"], "countries": ["Italy"], "name": "FAIRsharing record for: Visual Media Service", "abbreviation": "VisMS", "url": "https://fairsharing.org/10.25504/FAIRsharing.ltyo8e", "doi": "10.25504/FAIRsharing.ltyo8e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The aim of the Visual Media Service is to provide CH researchers with an automatic system to publish on the web, search, visualize and analyze images and 3D models in a common workspace, enabling sharing, interoperability and reuse of visual data. Visual Media Service enables the easy publication and visualization on the web of high-resolution 2D images, RTI (Reflection Transformation Images) and 3D models.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2982", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-09T08:31:34.000Z", "updated-at": "2021-12-06T10:47:28.677Z", "metadata": {"name": "Atlantic Canada Conservation Data Centre", "status": "ready", "contacts": [{"contact-name": "Sean Blaney", "contact-email": "Sean.Blaney@accdc.ca"}], "homepage": "http://www.accdc.com/", "identifier": 2982, "description": "The Atlantic Canada Conservation Data Centre (AC CDC) compiles and provides objective data about biological diversity in Atlantic Canada, and we undertake fieldwork to further knowledge of the distribution and status of species and ecological communities of conservation concern. All our efforts are in support of conservation-related decision making, research and education.", "abbreviation": "AC CDC", "support-links": [{"url": "http://accdc.com/en/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://accdc.com/en/publications.html", "type": "Help documentation"}, {"url": "http://accdc.com/en/contact-us.html", "name": "Contact", "type": "Help documentation"}, {"url": "http://accdc.com/en/data-request-about.html", "name": "About AC CDC Data", "type": "Help documentation"}], "year-creation": 1997, "data-processes": [{"url": "http://accdc.com/en/data-request.html", "name": "Data Requests", "type": "data access"}, {"url": "http://accdc.com/en/contribute.html", "name": "Contributing Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010908", "name": "re3data:r3d100010908", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006061", "name": "SciCrunch:RRID:SCR_006061", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001488", "bsg-d001488"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Cartography", "Environmental Science", "Zoology", "Geoinformatics", "Ecology", "Biodiversity", "Earth Science", "Life Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Atlantic Canada Conservation Data Centre", "abbreviation": "AC CDC", "url": "https://fairsharing.org/fairsharing_records/2982", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atlantic Canada Conservation Data Centre (AC CDC) compiles and provides objective data about biological diversity in Atlantic Canada, and we undertake fieldwork to further knowledge of the distribution and status of species and ecological communities of conservation concern. All our efforts are in support of conservation-related decision making, research and education.", "publications": [], "licence-links": [{"licence-name": "AC CDC Fees and Usage", "licence-id": 5, "link-id": 889, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3216", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-12T12:59:32.000Z", "updated-at": "2021-12-06T10:47:39.718Z", "metadata": {"name": "Polar Geospatial Center Data Archives", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "pgc@umn.edu"}], "homepage": "https://www.pgc.umn.edu/data/", "identifier": 3216, "description": "The Polar Geospatial Center (PGC) Data Archive makes research data regarding both poles available by working with researchers on mapping and remote sensing projects in the most remote locations on Earth. The archive of many open data products such as digital elevation models, historic and contemporary polar maps, and historic aerial photography. Open data is available at no cost. Licensed data, namely commercial satellite imagery, is available to PGC core users only.", "abbreviation": "PGC Data Archives", "support-links": [{"url": "https://www.pgc.umn.edu/events/", "name": "Events", "type": "Blog/News"}, {"url": "https://www.pgc.umn.edu/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.pgc.umn.edu/about/findus/", "name": "Contact Details", "type": "Contact form"}, {"url": "https://www.pgc.umn.edu/data/request/", "name": "Data Request Form", "type": "Contact form"}, {"url": "https://www.pgc.umn.edu/about/findus/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://umn.maps.arcgis.com/home/group.html?id=07549b20141348c49d8837d5fa3f915c#overview", "name": "Archive Overview", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/about/", "name": "About", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/topic/arcticdem/", "name": "Guides to ArcticDEM", "type": "Help documentation"}, {"url": "https://github.com/PolarGeospatialCenter", "name": "GitHub Project", "type": "Github"}, {"url": "https://www.pgc.umn.edu/data/maps/", "name": "About Maps", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/data/arcticdem/", "name": "About ArcticDEM", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/data/rema/", "name": "About REMA", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/guides/user-services/acknowledgement-policy/", "name": "Acknowledging PGC and Funders", "type": "Help documentation"}, {"url": "https://www.pgc.umn.edu/topic/stereo-derived-elevation-models/", "name": "Guides: Stereo Elevation Models", "type": "Help documentation"}, {"url": "https://twitter.com/polargeospatial", "name": "@polargeospatial", "type": "Twitter"}], "data-processes": [{"url": "https://maps.apps.pgc.umn.edu/", "name": "Search & Browse Maps", "type": "data access"}, {"url": "https://livingatlas2.arcgis.com/arcticdemexplorer/", "name": "ArcticDEM Explorer", "type": "data access"}, {"url": "https://livingatlas2.arcgis.com/antarcticdemexplorer/", "name": "Reference Elevation Model of Antarctica (REMA) Viewer", "type": "data access"}, {"url": "https://www.pgc.umn.edu/apps/convert/", "name": "Coordinate Converter", "type": "data access"}, {"url": "http://umn.maps.arcgis.com/home/group.html?id=07549b20141348c49d8837d5fa3f915c", "name": "PGC ArcGIS Online", "type": "data access"}, {"url": "http://www.arcgis.com/home/webmap/viewer.html?webmap=c435036b150843428d5413ffb7260ef2", "name": "Antarctic TMA Viewer", "type": "data access"}, {"url": "http://hess.ess.washington.edu/iced/map/", "name": "ICE-D Antarctica", "type": "data access"}, {"url": "https://rapidice.org/viewer/rapid.html", "name": "RISCO RapidICE", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011643", "name": "re3data:r3d100011643", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000402", "name": "SciCrunch:RRID:SCR_000402", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001729", "bsg-d001729"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cartography", "Environmental Science", "Photogrammetry", "Earth Science", "Remote Sensing", "Physical Geography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Antarctic", "Arctic", "Geographic Information System (GIS)", "Geospatial Data"], "countries": ["United States"], "name": "FAIRsharing record for: Polar Geospatial Center Data Archives", "abbreviation": "PGC Data Archives", "url": "https://fairsharing.org/fairsharing_records/3216", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Polar Geospatial Center (PGC) Data Archive makes research data regarding both poles available by working with researchers on mapping and remote sensing projects in the most remote locations on Earth. The archive of many open data products such as digital elevation models, historic and contemporary polar maps, and historic aerial photography. Open data is available at no cost. Licensed data, namely commercial satellite imagery, is available to PGC core users only.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2203", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T20:24:45.000Z", "updated-at": "2021-11-24T13:14:48.121Z", "metadata": {"doi": "10.25504/FAIRsharing.tamp4p", "name": "Parkinson's Progression Markers Initiative", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "webmaster@loni.usc.edu"}], "homepage": "http://www.ppmi-info.org", "identifier": 2203, "description": "PPMI is an observational clinical study to verify progression markers in Parkinson\u2019s disease. The study is designed to establish a comprehensive set of clinical, imaging and biosample data that will be used to define biomarkers of PD progression. Once these biomarkers are defined, they can be used in therapeutic studies. The clinical, imaging and biologic data are accessible to researchers in real time through the website.", "abbreviation": "PPMI", "support-links": [{"url": "http://www.ppmi-info.org/contact-us/", "type": "Contact form"}, {"url": "http://www.ppmi-info.org/access-data-specimens/data-faq/", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://www.ppmi-info.org/access-data-specimens/download-data/", "name": "Data download options", "type": "data access"}]}, "legacy-ids": ["biodbcore-000677", "bsg-d000677"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Medical imaging", "Biomarker", "Parkinson's disease", "Imaging", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Parkinson's Progression Markers Initiative", "abbreviation": "PPMI", "url": "https://fairsharing.org/10.25504/FAIRsharing.tamp4p", "doi": "10.25504/FAIRsharing.tamp4p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PPMI is an observational clinical study to verify progression markers in Parkinson\u2019s disease. The study is designed to establish a comprehensive set of clinical, imaging and biosample data that will be used to define biomarkers of PD progression. Once these biomarkers are defined, they can be used in therapeutic studies. The clinical, imaging and biologic data are accessible to researchers in real time through the website.", "publications": [{"id": 11, "pubmed_id": null, "title": "The Parkinson Progression Marker Initiative (PPMI).", "year": 2011, "url": "http://doi.org/10.1016/j.pneurobio.2011.09.005", "authors": "Parkinson Progression Marker Initiative", "journal": "Prog Neurobiol.", "doi": "10.1016/j.pneurobio.2011.09.005", "created_at": "2021-09-30T08:22:21.698Z", "updated_at": "2021-09-30T08:22:21.698Z"}, {"id": 64, "pubmed_id": 26268663, "title": "Baseline genetic associations in the Parkinson's Progression Markers Initiative (PPMI).", "year": 2015, "url": "http://doi.org/10.1002/mds.26374", "authors": "Nalls MA,Keller MF,Hernandez DG,Chen L,Stone DJ,Singleton AB", "journal": "Mov Disord", "doi": "10.1002/mds.26374", "created_at": "2021-09-30T08:22:27.190Z", "updated_at": "2021-09-30T08:22:27.190Z"}], "licence-links": [{"licence-name": "PPMI Data Use Agreement", "licence-id": 677, "link-id": 866, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2471", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-04T08:31:09.000Z", "updated-at": "2021-11-24T13:16:30.198Z", "metadata": {"doi": "10.25504/FAIRsharing.1gx1wq", "name": "Norway IPT - GBIF Norway", "status": "ready", "contacts": [{"contact-name": "GBIF Norway", "contact-email": "helpdesk@gbif.no", "contact-orcid": "0000-0002-2352-5497"}], "homepage": "https://data.gbif.no/ipt/", "identifier": 2471, "description": "GBIF Norway is the Norwegian participant node in the Global Biodiversity Information Facility, GBIF. They make primary data on biological diversity from the Norwegian collections and observation databases freely available and coordinate and support GBIF-related activities and data use in Norway.", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "https://ipt.gbif.no/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000953", "bsg-d000953"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: Norway IPT - GBIF Norway", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.1gx1wq", "doi": "10.25504/FAIRsharing.1gx1wq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF Norway is the Norwegian participant node in the Global Biodiversity Information Facility, GBIF. They make primary data on biological diversity from the Norwegian collections and observation databases freely available and coordinate and support GBIF-related activities and data use in Norway.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 957, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 958, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1086, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1087, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2024", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:43.249Z", "metadata": {"doi": "10.25504/FAIRsharing.hsyjka", "name": "National Database for Autism Research", "status": "deprecated", "contacts": [{"contact-email": "ndarhelp@mail.nih.gov"}], "homepage": "http://ndar.nih.gov/", "identifier": 2024, "description": "National Database for Autism Research (NDAR) is an extensible, scalable informatics platform for austism spectrum disorder-relevant data at all levels of biological and behavioral organization (molecules, genes, neural tissue, behavioral, social and environmental interactions) and for all data types (text, numeric, image, time series, etc.). NDAR was developed to share data across the entire ASD field and to facilitate collaboration across laboratories, as well as interconnectivity with other informatics platforms.", "abbreviation": "NDAR", "support-links": [{"url": "NDARHelp@mail.nih.gov", "type": "Support email"}, {"url": "https://ndar.nih.gov/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ndar.nih.gov/training.html", "type": "Training documentation"}, {"url": "https://twitter.com/NDAR_NIH", "type": "Twitter"}], "year-creation": 2007, "associated-tools": [{"url": "https://ndar.nih.gov/contribute.html", "name": "Submission Process"}, {"url": "http://ndar.nih.gov/query_data.html", "name": "Query"}, {"url": "http://ndar.nih.gov/data_from_labs.html", "name": "Browse"}, {"url": "http://ndar.nih.gov/cloud_overview.html", "name": "Cloud User Access"}], "deprecation-date": "2020-10-25", "deprecation-reason": "This resource has been merged with the NIMH Data Archive."}, "legacy-ids": ["biodbcore-000491", "bsg-d000491"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Autistic disorder", "Behavior", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Database for Autism Research", "abbreviation": "NDAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.hsyjka", "doi": "10.25504/FAIRsharing.hsyjka", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: National Database for Autism Research (NDAR) is an extensible, scalable informatics platform for austism spectrum disorder-relevant data at all levels of biological and behavioral organization (molecules, genes, neural tissue, behavioral, social and environmental interactions) and for all data types (text, numeric, image, time series, etc.). NDAR was developed to share data across the entire ASD field and to facilitate collaboration across laboratories, as well as interconnectivity with other informatics platforms.", "publications": [{"id": 480, "pubmed_id": 22622767, "title": "Sharing heterogeneous data: the national database for autism research.", "year": 2012, "url": "http://doi.org/10.1007/s12021-012-9151-4", "authors": "Hall D., Huerta MF., McAuliffe MJ., Farber GK.,", "journal": "Neuroinformatics", "doi": "10.1007/s12021-012-9151-4", "created_at": "2021-09-30T08:23:12.159Z", "updated_at": "2021-09-30T08:23:12.159Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 134, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1905", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.576Z", "metadata": {"doi": "10.25504/FAIRsharing.me577e", "name": "Drosophila Species Genomes", "status": "ready", "contacts": [{"contact-name": "Don Gilbert", "contact-email": "gilbertd@indiana.edu", "contact-orcid": "0000-0002-6646-7274"}], "homepage": "http://insects.eugenes.org/DroSpeGe/", "identifier": 1905, "description": "The D. melanogaster and eight other eukaryote model genomes, and gene predictions from several groups. Summaries of essential genome statistics include sizes, genes found and predicted, homology among genomes, phylogenetic trees of species, and comparisons of several gene predictions for sensitivity and specificity in finding new and known genes.", "abbreviation": "DroSpeGe", "support-links": [{"url": "drospege@eugenes.org", "type": "Support email"}], "year-creation": 2004, "data-processes": [{"url": "http://insects.eugenes.org/species/data/", "name": "Download", "type": "data access"}, {"url": "http://arthropods.eugenes.org/arthropods/orthologs/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://insects.eugenes.org/species/blast/", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000370", "bsg-d000370"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Gene prediction", "Gene", "Homologous", "Orthologous", "Genome"], "taxonomies": ["Drosophila"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Drosophila Species Genomes", "abbreviation": "DroSpeGe", "url": "https://fairsharing.org/10.25504/FAIRsharing.me577e", "doi": "10.25504/FAIRsharing.me577e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The D. melanogaster and eight other eukaryote model genomes, and gene predictions from several groups. Summaries of essential genome statistics include sizes, genes found and predicted, homology among genomes, phylogenetic trees of species, and comparisons of several gene predictions for sensitivity and specificity in finding new and known genes.", "publications": [{"id": 399, "pubmed_id": 17202166, "title": "DroSpeGe: rapid access database for new Drosophila species genomes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkl997", "authors": "Gilbert DG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl997", "created_at": "2021-09-30T08:23:03.377Z", "updated_at": "2021-09-30T08:23:03.377Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3235", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T11:13:00.000Z", "updated-at": "2021-12-06T10:47:40.888Z", "metadata": {"name": "GLUES Geoportal", "status": "ready", "contacts": [{"contact-name": "Lars Bernard", "contact-email": "lars.bernard@tu-dresden.de", "contact-orcid": "0000-0002-3085-7457"}], "homepage": "http://geoportal-glues.ufz.de/", "identifier": 3235, "description": "The GLUES Geoportal provides access to the GLUES Geodata Infrastructure. The infrastructure is the common data and service platform for the international research program 'Sustainable Land Management'. The provided data pool can be freely used within the program but also by other interested scientists or stakeholders. Researchers of the Sustainable Land Management projects can use the Geodata Infrastructure to disseminate and share their project results.", "abbreviation": "GLUES Geoportal", "support-links": [{"url": "http://geoportal-glues.ufz.de/inform/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://geoportal-glues.ufz.de/discover/documents.html", "type": "Help documentation"}, {"url": "http://geoportal-glues.ufz.de/use/sourcecode.html", "name": "Source code", "type": "Help documentation"}, {"url": "http://geoportal-glues.ufz.de/use/media.html", "name": "Movies", "type": "Help documentation"}, {"url": "http://geoportal-glues.ufz.de/applications/sdifacets.html", "name": "Scientific infrastructures", "type": "Help documentation"}, {"url": "http://geoportal-glues.ufz.de/inform/statistics.html", "name": "Statistics", "type": "Help documentation"}], "data-processes": [{"url": "https://geonetwork.ufz.de/geonetwork/srv/eng/catalog.search#/home", "name": "Search data", "type": "data access"}, {"url": "http://geoportal-glues.ufz.de/discover/publish.php", "name": "Publish data", "type": "data curation"}], "associated-tools": [{"url": "http://geoportal-glues.ufz.de/use/applications.html", "name": "List of applications used"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011100", "name": "re3data:r3d100011100", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001749", "bsg-d001749"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Environmental Science", "Meteorology", "Biodiversity", "Earth Science", "Agriculture", "Water Management"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Land use"], "countries": ["Germany"], "name": "FAIRsharing record for: GLUES Geoportal", "abbreviation": "GLUES Geoportal", "url": "https://fairsharing.org/fairsharing_records/3235", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GLUES Geoportal provides access to the GLUES Geodata Infrastructure. The infrastructure is the common data and service platform for the international research program 'Sustainable Land Management'. The provided data pool can be freely used within the program but also by other interested scientists or stakeholders. Researchers of the Sustainable Land Management projects can use the Geodata Infrastructure to disseminate and share their project results.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Leitfaden", "licence-id": 199, "link-id": 510, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2016", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-06T20:01:24.916Z", "metadata": {"doi": "10.25504/FAIRsharing.k34tv5", "name": "National Addiction & HIV Data Archive Program", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nahdap@icpsr.umich.edu"}], "homepage": "https://www.icpsr.umich.edu/web/pages/NAHDAP/index.html", "citations": [], "identifier": 2016, "description": "NAHDAP acquires, preserves and disseminates data relevant to drug addiction and HIV research. The scope of the data housed at NAHDAP covers a wide range of legal and illicit drugs (alcohol, tobacco, marijuana, cocaine, synthetic drugs, and others) and the trajectories, patterns, and consequences of drug use as well as related predictors and outcomes.", "abbreviation": "NAHDAP", "support-links": [{"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/announcements.html", "name": "News", "type": "Blog/News"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/contact.html", "name": "General Contact Information and Form", "type": "Contact form"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/help/index.html", "name": "Help and FAQ", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/icpsrweb?feature=results_main", "name": "YouTube Tutorials", "type": "Video"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/training.html", "name": "Training and Support", "type": "Training documentation"}, {"url": "https://twitter.com/NAHDAP1", "name": "@NAHDAP1", "type": "Twitter"}], "data-processes": [{"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/deposit/index.html", "name": "Deposit Data", "type": "data curation"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/data/index.html", "name": "Search and Browse Data", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/NAHDAP/search/series", "name": "Search Series", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/publications.html", "name": "Search Publications", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/data/variables.html", "name": "Find and Compare Variables", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/NAHDAP/analyze-online.html", "name": "Data Analysis", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010261", "name": "re3data:r3d100010261", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000636", "name": "SciCrunch:RRID:SCR_000636", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000482", "bsg-d000482"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Biomedical Science"], "domains": ["Drug", "Addiction", "Disease"], "taxonomies": ["Homo sapiens", "Human immunodeficiency virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Addiction & HIV Data Archive Program", "abbreviation": "NAHDAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.k34tv5", "doi": "10.25504/FAIRsharing.k34tv5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NAHDAP acquires, preserves and disseminates data relevant to drug addiction and HIV research. The scope of the data housed at NAHDAP covers a wide range of legal and illicit drugs (alcohol, tobacco, marijuana, cocaine, synthetic drugs, and others) and the trajectories, patterns, and consequences of drug use as well as related predictors and outcomes.", "publications": [], "licence-links": [{"licence-name": "NAHDAP Data Sharing Policies", "licence-id": 531, "link-id": 2390, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2309", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T10:55:34.000Z", "updated-at": "2021-11-24T13:19:31.981Z", "metadata": {"doi": "10.25504/FAIRsharing.b050yp", "name": "BioEmergences", "status": "ready", "contacts": [{"contact-name": "Nadine Peyrieras", "contact-email": "nadine.peyrieras@cnrs.fr"}], "homepage": "http://www.bioemergences.eu", "identifier": 2309, "description": "Webservice for 3D+time in vivo, in toto imaging data storage and annotation. Direct access to image processing workflows on EGI and local computer clusters for cell detection, shape segmentation and kinematics analysis with custom designed algorithms. Registration required.", "abbreviation": "BioEmergences", "year-creation": 2006, "associated-tools": [{"url": "http://bioemergences.eu/bioemergences/index.php", "name": "Image processing"}, {"url": "http://bioemergences.eu/bioemergences/index.php", "name": "Interactive visualisation software (Mov-IT)"}]}, "legacy-ids": ["biodbcore-000785", "bsg-d000785"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Developmental Biology", "Life Science"], "domains": ["Bioimaging"], "taxonomies": ["Branchiostoma lanceolatum", "Danio rerio", "Oryctolagus cuniculus", "Paracentrotus lividus", "Phallusia mammillata", "Sphaerechinus granularis"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: BioEmergences", "abbreviation": "BioEmergences", "url": "https://fairsharing.org/10.25504/FAIRsharing.b050yp", "doi": "10.25504/FAIRsharing.b050yp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Webservice for 3D+time in vivo, in toto imaging data storage and annotation. Direct access to image processing workflows on EGI and local computer clusters for cell detection, shape segmentation and kinematics analysis with custom designed algorithms. Registration required.", "publications": [{"id": 1243, "pubmed_id": 27088892, "title": "Repulsive cues combined with physical barriers and cell-cell adhesion determine progenitor cell positioning during organogenesis.", "year": 2016, "url": "http://doi.org/10.1038/ncomms11288", "authors": "Paksa A,Bandemer J,Hoeckendorf B,Razin N,Tarbashevich K,Minina S,Meyen D,Biundo A,Leidel SA,Peyrieras N,Gov NS,Keller PJ,Raz E", "journal": "Nat Commun", "doi": "10.1038/ncomms11288", "created_at": "2021-09-30T08:24:38.658Z", "updated_at": "2021-09-30T08:24:38.658Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 339, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2583", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-04T18:25:41.000Z", "updated-at": "2021-12-08T16:55:00.724Z", "metadata": {"doi": "10.25504/FAIRsharing.Ff6HHc", "name": "VTechData", "status": "ready", "contacts": [{"contact-name": "Virginia Tech University Libraries", "contact-email": "vtechdata@vt.edu"}], "homepage": "https://data.lib.vt.edu", "identifier": 2583, "description": "Virginia Tech\u2019s Data Repository TechData is a platform for openly publishing datasets or other research products created by Virginia Tech faculty, staff, and students. VTechData highlights, preserves, and provides access to research products (e.g. datasets) of the Virginia Tech community, and in doing so help to disseminate the intellectual output of the university in its land-grant mission.", "abbreviation": "VTechData", "support-links": [{"url": "https://data.lib.vt.edu/help", "name": "VTechData Contact Form", "type": "Contact form"}, {"url": "https://data.lib.vt.edu/about", "name": "About VTechData", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://data.lib.vt.edu/user_guides", "name": "User Guide", "type": "data curation"}, {"url": "https://data.lib.vt.edu/catalog", "name": "Search Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012601", "name": "re3data:r3d100012601", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001066", "bsg-d001066"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Open Science"], "countries": ["United States"], "name": "FAIRsharing record for: VTechData", "abbreviation": "VTechData", "url": "https://fairsharing.org/10.25504/FAIRsharing.Ff6HHc", "doi": "10.25504/FAIRsharing.Ff6HHc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Virginia Tech\u2019s Data Repository TechData is a platform for openly publishing datasets or other research products created by Virginia Tech faculty, staff, and students. VTechData highlights, preserves, and provides access to research products (e.g. datasets) of the Virginia Tech community, and in doing so help to disseminate the intellectual output of the university in its land-grant mission.", "publications": [], "licence-links": [{"licence-name": "VTech Data: Policies and Agreements", "licence-id": 847, "link-id": 148, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2622", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-19T20:45:27.000Z", "updated-at": "2021-11-24T13:13:13.923Z", "metadata": {"name": "Kinetic Database for Astrochemistry", "status": "ready", "contacts": [{"contact-name": "Valentine Wakelam", "contact-email": "valentine.wakelam@u-bordeaux.fr", "contact-orcid": "0000-0001-9676-2605"}], "homepage": "http://kida.obs.u-bordeaux1.fr/", "identifier": 2622, "description": "KIDA (KInetic Database for Astrochemistry) is a database of kinetic data of interest for astrochemical (interstellar medium and planetary atmospheres) studies. KIDA is a project initiated by different communities in order to 1) improve the interaction between astrochemists and physico-chemists and 2) simplify the work of modeling the chemistry of astrophysical environments. Here astrophysical environments stand for the interstellar medium and planetary atmospheres. Both types of environments use similar chemical networks and the physico-chemists who work on the determination of reaction rate coefficients for both types of environment are the same.", "abbreviation": "KIDA", "support-links": [{"url": "kida-obs@u-bordeaux.fr", "name": "General contact", "type": "Support email"}, {"url": "http://kida.astrophy.u-bordeaux.fr/help.html", "name": "KIDA FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://kida.obs.u-bordeaux1.fr/check-species.html", "name": "List of Missing Data", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://kida.astrophy.u-bordeaux.fr/species.html", "name": "Browse species", "type": "data access"}, {"url": "http://kida.astrophy.u-bordeaux.fr/networks.html", "name": "Download Networks", "type": "data access"}, {"url": "http://kida.astrophy.u-bordeaux.fr/codes.html", "name": "Download Astrochemical Codes", "type": "data access"}, {"url": "http://kida.astrophy.u-bordeaux.fr/export.html", "name": "Download Reaction Networks", "type": "data access"}, {"url": "http://kida.astrophy.u-bordeaux.fr/how-to-add-data.html", "name": "Data Submission Templates", "type": "data curation"}, {"url": "http://kida.astrophy.u-bordeaux.fr/publications.html", "name": "Browse publications", "type": "data access"}, {"url": "http://kida.astrophy.u-bordeaux.fr/check-species.html", "name": "Missing data", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001109", "bsg-d001109"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Astrophysics and Astronomy", "Atmospheric Science"], "domains": ["Kinetic model"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Kinetic Database for Astrochemistry", "abbreviation": "KIDA", "url": "https://fairsharing.org/fairsharing_records/2622", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KIDA (KInetic Database for Astrochemistry) is a database of kinetic data of interest for astrochemical (interstellar medium and planetary atmospheres) studies. KIDA is a project initiated by different communities in order to 1) improve the interaction between astrochemists and physico-chemists and 2) simplify the work of modeling the chemistry of astrophysical environments. Here astrophysical environments stand for the interstellar medium and planetary atmospheres. Both types of environments use similar chemical networks and the physico-chemists who work on the determination of reaction rate coefficients for both types of environment are the same.", "publications": [{"id": 2404, "pubmed_id": null, "title": "A KInetic Database for Astrochemistry (KIDA)", "year": 2012, "url": "http://doi.org/10.1088/0067-0049/199/1/21", "authors": "V. Wakelam, E. Herbst, J.-C. Loison, I. W. M. Smith, V. Chandrasekaran, B. Pavone, N. G. Adams, M.-C. Bacchus-Montabonel, A. Bergeat, K. B\u00e9roff, V. M. Bierbaum, M. Chabot, A. Dalgarno, E. F. van Dishoeck, A. Faure, W. D. Geppert, D. Gerlich, D. Galli, E. H\u00e9brard, F. Hersant, K. M. Hickson, P. Honvault, S. J. Klippenstein, S. Le Picard, G. Nyman, P. Pernot, S. Schlemmer, F. Selsis, I. R. Sims, D. Talbi, J. Tennyson, J. Troe, R. Wester, L. Wiesenfeld", "journal": "arXiv", "doi": "10.1088/0067-0049/199/1/21", "created_at": "2021-09-30T08:26:55.083Z", "updated_at": "2021-09-30T11:29:51.743Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1773", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-10T13:35:46.563Z", "metadata": {"doi": "10.25504/FAIRsharing.en9npn", "name": "The Barcode of Life Data Systems", "status": "ready", "contacts": [{"contact-name": "Paul D N Hebert", "contact-email": "phebert@uoguelph.ca", "contact-orcid": "0000-0002-3081-6700"}], "homepage": "http://www.barcodinglife.com", "citations": [], "identifier": 1773, "description": "The Barcode of Life Data Systems (BOLD) is an online workbench that aids collection, management, analysis, and use of DNA barcodes. It consists of 3 components (MAS, IDS, and ECS) that each address the needs of various groups in the barcoding community.", "abbreviation": "BOLD", "support-links": [{"url": "info@boldsystems.org", "type": "Support email"}, {"url": "http://www.barcodinglife.com/index.php/resources/boldfaq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.boldsystems.org/index.php/resources/handbook?chapter=1_gettingstarted.html", "type": "Help documentation"}, {"url": "https://twitter.com/BOLDteam", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "http://www.barcodinglife.com/index.php/datarelease", "name": "Download", "type": "data access"}, {"url": "http://www.boldsystems.org/index.php/Login/page?destination=MAS_Management_UserConsole", "name": "submit", "type": "data access"}, {"url": "http://www.barcodinglife.com/index.php/databases", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://www.barcodinglife.com/index.php/IDS_OpenIdEngine", "name": "analyze"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010927", "name": "re3data:r3d100010927", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004278", "name": "SciCrunch:RRID:SCR_004278", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000231", "bsg-d000231"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Taxonomy", "Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Nucleic acid sequence", "Annotation", "Sequence annotation", "Deoxyribonucleic acid", "Software", "FAIR", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: The Barcode of Life Data Systems", "abbreviation": "BOLD", "url": "https://fairsharing.org/10.25504/FAIRsharing.en9npn", "doi": "10.25504/FAIRsharing.en9npn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Barcode of Life Data Systems (BOLD) is an online workbench that aids collection, management, analysis, and use of DNA barcodes. It consists of 3 components (MAS, IDS, and ECS) that each address the needs of various groups in the barcoding community.", "publications": [{"id": 297, "pubmed_id": 18784790, "title": "bold: The Barcode of Life Data System (http://www.barcodinglife.org).", "year": 2008, "url": "http://doi.org/10.1111/j.1471-8286.2007.01678.x", "authors": "Ratnasingham S., Hebert PD.,", "journal": "Mol. Ecol. Notes", "doi": "10.1111/j.1471-8286.2007.01678.x", "created_at": "2021-09-30T08:22:52.015Z", "updated_at": "2021-09-30T08:22:52.015Z"}], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBNZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--bf702cc5ed8831ae1b1d2da078afc2c047a5daa8/BOLDlogo.png?disposition=inline"}} +{"id": "1994", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:17.737Z", "metadata": {"doi": "10.25504/FAIRsharing.81dw2c", "name": "NCBI UniSTS", "status": "deprecated", "contacts": [{"contact-email": "probe-admin@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/unists", "identifier": 1994, "description": "UniSTS was a database of sequence tagged sites (STSs), derived from STS-based maps and other experiments. All data from this resource have been moved to the Probe database. You can retrieve all UniSTS records by searching the probe database using the search term \"unists[properties]\". Additionally, legacy data remain on the NCBI FTP Site in the UniSTS Repository (ftp://ftp.ncbi.nih.gov/pub/ProbeDB/legacy_unists). If you have any specific questions, please feel free to contact us at info@ncbi.nlm.nih.gov", "abbreviation": "NCBI UniSTS", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/genome/sts/help.html", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/repository/UniSTS/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/dbSTS/how_to_submit.html", "name": "submit"}, {"url": "http://www.ncbi.nlm.nih.gov/unists", "name": "search"}], "deprecation-date": "2015-07-07", "deprecation-reason": "This resource is obsolete. Please see the BioSharing record for the Probe database (https://www.biosharing.org/biodbcore-000437) instead."}, "legacy-ids": ["biodbcore-000460", "bsg-d000460"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Protein", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI UniSTS", "abbreviation": "NCBI UniSTS", "url": "https://fairsharing.org/10.25504/FAIRsharing.81dw2c", "doi": "10.25504/FAIRsharing.81dw2c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UniSTS was a database of sequence tagged sites (STSs), derived from STS-based maps and other experiments. All data from this resource have been moved to the Probe database. You can retrieve all UniSTS records by searching the probe database using the search term \"unists[properties]\". Additionally, legacy data remain on the NCBI FTP Site in the UniSTS Repository (ftp://ftp.ncbi.nih.gov/pub/ProbeDB/legacy_unists). If you have any specific questions, please feel free to contact us at info@ncbi.nlm.nih.gov", "publications": [{"id": 460, "pubmed_id": 12519941, "title": "Database resources of the National Center for Biotechnology.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg033", "authors": "Wheeler DL., Church DM., Federhen S., Lash AE., Madden TL., Pontius JU., Schuler GD., Schriml LM., Sequeira E., Tatusova TA., Wagner L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg033", "created_at": "2021-09-30T08:23:09.975Z", "updated_at": "2021-09-30T08:23:09.975Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1697, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2068", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-08T11:18:43.242Z", "metadata": {"doi": "10.25504/FAIRsharing.9dpd18", "name": "Mutant Mouse Resource and Research Centers", "status": "ready", "contacts": [{"contact-name": "MMRRC Support", "contact-email": "support@mmrrc.org"}, {"contact-name": "MMRRC Service", "contact-email": "service@mmrrc.org", "contact-orcid": null}], "homepage": "https://www.mmrrc.org/", "citations": [], "identifier": 2068, "description": "The MMRRC distributes and cryopreserves scientifically valuable, genetically engineered mouse strains and mouse ES cell lines with potential value for the genetics and biomedical research community. The Catalog provides information on the strains available from the MMRRC.", "abbreviation": "MMRRC", "access-points": [{"url": "https://www.mmrrc.org/about/mmrrc_api.php", "name": "MMRRC API", "type": "REST"}], "support-links": [{"url": "https://www.mmrrc.org/about/faq.php", "name": "MMRRC FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.mmrrc.org/catalog/searchGeneAllele.php", "name": "Gene and Allele Search Help", "type": "Help documentation"}, {"url": "https://twitter.com/mmrc", "name": "@mmrc", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"url": "http://www.mmrrc.org/submission/submIntro.php", "name": "Submit", "type": "data curation"}, {"url": "https://www.mmrrc.org/catalog/StrainCatalogSearchForm.php", "name": "Search", "type": "data access"}, {"url": "https://www.mmrrc.org/about/data_download.php", "name": "Download", "type": "data release"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000535", "bsg-d000535"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biology"], "domains": ["Genetic polymorphism", "Gene", "Genetic strain"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Mutant Mouse Resource and Research Centers", "abbreviation": "MMRRC", "url": "https://fairsharing.org/10.25504/FAIRsharing.9dpd18", "doi": "10.25504/FAIRsharing.9dpd18", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MMRRC distributes and cryopreserves scientifically valuable, genetically engineered mouse strains and mouse ES cell lines with potential value for the genetics and biomedical research community. The Catalog provides information on the strains available from the MMRRC.", "publications": [{"id": 527, "pubmed_id": 12102564, "title": "Mutant Mouse Regional Resource Center Program: a resource for distribution of mouse models for biomedical research.", "year": 2002, "url": "https://www.ncbi.nlm.nih.gov/pubmed/12102564", "authors": "Grieder FB.,", "journal": "Comp. Med.", "doi": null, "created_at": "2021-09-30T08:23:17.492Z", "updated_at": "2021-09-30T08:23:17.492Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 685, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3181", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-22T13:13:59.000Z", "updated-at": "2022-02-08T10:34:42.618Z", "metadata": {"doi": "10.25504/FAIRsharing.a2e209", "name": "European Organisation for the Exploitation of Meteorological Satellites Product Navigator", "status": "ready", "contacts": [{"contact-name": "EUMETSAT General Contact", "contact-email": "ops@eumetsat.int"}], "homepage": "https://navigator.eumetsat.int/", "citations": [], "identifier": 3181, "description": "The EUMETSAT Product Navigator is the catalogue for all EUMETSAT data and products, including third-party products disseminated via EUMETCast. EUMETSAT supplies weather and climate-related satellite data, images and products to the National Meteorological Services of their Member States in Europe and other users worldwide. With this resource, users may discover data collections from EUMETSAT and partner agencies, and find related resources and user documentation.", "abbreviation": "EUMETSAT Product Navigator", "data-curation": {}, "support-links": [{"url": "https://twitter.com/eumetsat_users", "name": "@eumetsat_users", "type": "Twitter"}, {"url": "https://www.eumetsat.int/contact-us", "type": "Contact form"}], "data-processes": [{"url": "https://navigator.eumetsat.int/search?query=", "name": "Browse and search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010232", "name": "re3data:r3d100010232", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001692", "bsg-d001692"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Atmospheric Science", "Remote Sensing", "Oceanography"], "domains": ["Monitoring"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: European Organisation for the Exploitation of Meteorological Satellites Product Navigator", "abbreviation": "EUMETSAT Product Navigator", "url": "https://fairsharing.org/10.25504/FAIRsharing.a2e209", "doi": "10.25504/FAIRsharing.a2e209", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EUMETSAT Product Navigator is the catalogue for all EUMETSAT data and products, including third-party products disseminated via EUMETCast. EUMETSAT supplies weather and climate-related satellite data, images and products to the National Meteorological Services of their Member States in Europe and other users worldwide. With this resource, users may discover data collections from EUMETSAT and partner agencies, and find related resources and user documentation.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 IGO (CC BY-NC-SA 3.0 IGO)", "licence-id": 184, "link-id": 2136, "relation": "undefined"}, {"licence-name": "EUMETSAT Terms of use", "licence-id": 908, "link-id": 2584, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2066", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:35.226Z", "metadata": {"doi": "10.25504/FAIRsharing.zmhqcq", "name": "European Mouse Mutant Cell Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@eummcr.org"}], "homepage": "https://www.eummcr.org/", "identifier": 2066, "description": "The EuMMCR (European Mouse Mutant cell Repository) is the mouse ES cell distribution unit in Europe. The EuMMCR has been founded as distribution unit of EUCOMM (European Mouse Mutagenesis Program). The EuMMCR provides an online database to help users discover and choose targeting vectors and mutant ES cell lines produced in the EUCOMM and EUCOMMTOOLS consortia.", "abbreviation": "EuMMCR", "support-links": [{"url": "https://www.eummcr.org/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.eummcr.org/faq#nomenclature_eucomm", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.eummcr.org/eummcr", "name": "About", "type": "Help documentation"}, {"url": "https://www.eummcr.org/products/es-cells", "name": "About Mutant ES Cells", "type": "Help documentation"}, {"url": "https://www.eummcr.org/products/vectors", "name": "About Vectors", "type": "Help documentation"}, {"url": "https://www.eummcr.org/protocols/tissue-culture", "name": "Protocols", "type": "Help documentation"}], "data-processes": [{"url": "https://www.eummcr.org/", "name": "Search Genes and Products", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012644", "name": "re3data:r3d100012644", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001506", "name": "SciCrunch:RRID:SCR_001506", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000533", "bsg-d000533"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Biology"], "domains": ["Model organism", "Cell line", "Embryonic stem cell", "Gene", "Genetic strain"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["European Union", "Germany"], "name": "FAIRsharing record for: European Mouse Mutant Cell Repository", "abbreviation": "EuMMCR", "url": "https://fairsharing.org/10.25504/FAIRsharing.zmhqcq", "doi": "10.25504/FAIRsharing.zmhqcq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EuMMCR (European Mouse Mutant cell Repository) is the mouse ES cell distribution unit in Europe. The EuMMCR has been founded as distribution unit of EUCOMM (European Mouse Mutagenesis Program). The EuMMCR provides an online database to help users discover and choose targeting vectors and mutant ES cell lines produced in the EUCOMM and EUCOMMTOOLS consortia.", "publications": [], "licence-links": [{"licence-name": "EuMMCR Imprint: Disclaimer and Copyright", "licence-id": 296, "link-id": 2453, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2819", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-20T16:04:48.000Z", "updated-at": "2021-11-24T13:13:39.142Z", "metadata": {"doi": "10.25504/FAIRsharing.EGn1ut", "name": "WALTZ-DB 2.0", "status": "ready", "contacts": [{"contact-name": "Nikolaos Louros", "contact-email": "nikolaos.louros@kuleuven.vib.be", "contact-orcid": "0000-0002-4030-1022"}], "homepage": "http://waltzdb.switchlab.org", "citations": [{"publication-id": 2546}], "identifier": 2819, "description": "WALTZ-DB 2.0 is a database for characterizing short peptides for their amyloid fiber-forming capacities. The majority of the data comes from electron microscopy, FTIR and Thioflavin-T experiments done by the Switch lab. Apart from that class of data we also provide the amyloid annotation for several other short peptides found in current scientific research papers. Structural models of the potential amyloid cores are provided for every peptide entry.", "abbreviation": "WALTZ-DB 2.0", "support-links": [{"url": "http://waltzdb.switchlab.org/contact", "name": "Contact form", "type": "Contact form"}, {"url": "http://waltzdb.switchlab.org/help", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2019}, "legacy-ids": ["biodbcore-001318", "bsg-d001318"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomaterials", "Biochemistry", "Bioinformatics", "Structural Biology", "Biophysics", "Computational Biology", "Biology"], "domains": ["Molecular structure", "Peptide identification", "Protein structure", "Peptide library", "Electron microscopy", "Protein Analysis", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": ["Amyloid", "Protein aggregation", "Steric zippers"], "countries": ["Belgium"], "name": "FAIRsharing record for: WALTZ-DB 2.0", "abbreviation": "WALTZ-DB 2.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.EGn1ut", "doi": "10.25504/FAIRsharing.EGn1ut", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WALTZ-DB 2.0 is a database for characterizing short peptides for their amyloid fiber-forming capacities. The majority of the data comes from electron microscopy, FTIR and Thioflavin-T experiments done by the Switch lab. Apart from that class of data we also provide the amyloid annotation for several other short peptides found in current scientific research papers. Structural models of the potential amyloid cores are provided for every peptide entry.", "publications": [{"id": 2546, "pubmed_id": null, "title": "WALTZ-DB 2.0: An updated database containing structural information of experimentally determined amyloid-forming peptides", "year": 2019, "url": "https://doi.org/10.1093/nar/gkz758", "authors": "Nikolaos Louros, Katerina Konstantoulea, Matthias De Vleeschouwer, Meine Ramakers, Joost Schymkowitz and Frederic Rousseau", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:27:12.195Z", "updated_at": "2021-09-30T11:28:36.587Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3575", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-11T17:02:34.135Z", "updated-at": "2021-12-13T15:22:10.455Z", "metadata": {"name": "SciELO Data", "status": "in_development", "contacts": [{"contact-name": "SciELO Team", "contact-email": "data@scielo.org", "contact-orcid": null}], "homepage": "https://data.scielo.org/", "citations": [], "identifier": 3575, "description": "SciELO Data is a multidisciplinary repository for deposition, preservation and dissemination of research data from articles submitted and approved for publication, already published in SciELO Network journals or deposited in SciELO Preprints.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://www.scielo.org/en/about-scielo/scielo-data-en/faq-en/", "name": "FAQ SciELO Data", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_preparacao_en.pdf", "name": "Research data preparation guidelines (English)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_preparacao_pt.pdf", "name": "Research data preparation guidelines (Portuguese)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_preparacao_es.pdf", "name": "Research data preparation guidelines (Spanish)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_deposito_en.pdf", "name": "Research data deposit guidelines (English)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_deposito_pt.pdf", "name": "Research data deposit guidelines (Portuguese)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia_deposito_es.pdf", "name": "Research data deposit guidelines (Spanish)", "type": "Help documentation"}, {"url": "https://wp.scielo.org/wp-content/uploads/Guia-curadoria_pt.pdf", "name": "Research data curation guide for editorial teams (Portuguese)", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://data.scielo.org/dataverse/scielodata?q=", "name": "Browse and Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013658", "name": "re3data:r3d100013658", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Engineering Science", "Humanities", "Social Science", "Health Science", "Fine Arts", "Earth Science", "Agriculture", "Subject Agnostic", "Linguistics", "Biology"], "domains": ["Curated information", "Digital curation", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Open Science", "Researcher data"], "countries": ["Brazil"], "name": "FAIRsharing record for: SciELO Data", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3575", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SciELO Data is a multidisciplinary repository for deposition, preservation and dissemination of research data from articles submitted and approved for publication, already published in SciELO Network journals or deposited in SciELO Preprints.", "publications": [], "licence-links": [{"licence-name": "SciELO Terms and Conditions of Use", "licence-id": 884, "link-id": 2471, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2136", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:45.615Z", "metadata": {"doi": "10.25504/FAIRsharing.qmygaa", "name": "GeneProf", "status": "deprecated", "contacts": [{"contact-name": "Florian Halbritter", "contact-email": "florian.halbritter@ed.ac.uk", "contact-orcid": "0000-0003-2452-4784"}], "homepage": "http://www.geneprof.org", "identifier": 2136, "description": "GeneProf Data is an open web resource for analysed functional genomics experiments. We have built up a large collection of completely processed RNA-seq and ChIP-seq studies by carefully and transparently reanalysing and annotating high-profile public data sets. GeneProf makes these data instantly accessible in an easily interpretable, searchable and reusable manner and thus opens up the path to the advantages and insights gained from genome-scale experiments to a broader scientific audience. Moreover, GeneProf supports programmatic access to these data via web services to further facilitate the reuse of experimental data across tools and laboratories.", "abbreviation": "GeneProf", "access-points": [{"url": "http://www.geneprof.org/api/application.wadl", "name": "REST", "type": "REST"}, {"url": "http://www.geneprof.org/webapi.jsp", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://www.geneprof.org/bugsandfeatures.jsp", "type": "Contact form"}, {"url": "http://www.geneprof.org/GeneProf/help_frequentlyaskedquestions(faq).jsp#chapter:FrequentlyAskedQuestions(FAQ)", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.geneprof.org/GeneProf/help_and_tutorials.jsp", "type": "Help documentation"}, {"url": "http://www.geneprof.org/help_and_tutorials.jsp", "type": "Help documentation"}, {"url": "http://www.geneprof.org/GeneProf/help_tutorials.jsp#chapter:Tutorials", "type": "Training documentation"}], "year-creation": 2009, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000606", "bsg-d000606"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Epigenetics", "Life Science", "Biomedical Science"], "domains": ["Expression data", "Computational biological predictions", "Ribonucleic acid", "Gene model annotation", "Chromatin immunoprecipitation - DNA sequencing", "Chromatin immunoprecipitation - DNA microarray", "RNA sequencing", "Binding site"], "taxonomies": ["All", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: GeneProf", "abbreviation": "GeneProf", "url": "https://fairsharing.org/10.25504/FAIRsharing.qmygaa", "doi": "10.25504/FAIRsharing.qmygaa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneProf Data is an open web resource for analysed functional genomics experiments. We have built up a large collection of completely processed RNA-seq and ChIP-seq studies by carefully and transparently reanalysing and annotating high-profile public data sets. GeneProf makes these data instantly accessible in an easily interpretable, searchable and reusable manner and thus opens up the path to the advantages and insights gained from genome-scale experiments to a broader scientific audience. Moreover, GeneProf supports programmatic access to these data via web services to further facilitate the reuse of experimental data across tools and laboratories.", "publications": [{"id": 602, "pubmed_id": 22205509, "title": "GeneProf: analysis of high-throughput sequencing experiments", "year": 2011, "url": "http://doi.org/10.1038/nmeth.1809", "authors": "Halbritter F, Vaidya HJ and Tomlinson SR", "journal": "Nature Methods", "doi": "10.1038/nmeth.1809", "created_at": "2021-09-30T08:23:26.002Z", "updated_at": "2021-09-30T08:23:26.002Z"}, {"id": 605, "pubmed_id": null, "title": "GeneProf data: a resource of curated, integrated and reusable high-throughput genomics experiments", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt966", "authors": "Halbritter F, Kousa AI and Tomlinson SR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt966", "created_at": "2021-09-30T08:23:26.302Z", "updated_at": "2021-09-30T08:23:26.302Z"}], "licence-links": [{"licence-name": "GeneProf Terms and Conditions and Academic License", "licence-id": 331, "link-id": 819, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2381", "type": "fairsharing-records", "attributes": {"created-at": "2017-02-23T11:05:05.000Z", "updated-at": "2021-12-06T10:48:45.373Z", "metadata": {"doi": "10.25504/FAIRsharing.jsxqrk", "name": "US Department of Energy Systems Biology Knowledgebase", "status": "ready", "contacts": [{"contact-name": "Adam Arkin", "contact-email": "aparkin@lbl.gov", "contact-orcid": "0000-0002-4999-2931"}], "homepage": "https://www.kbase.us", "citations": [{"doi": "doi.org/10.1101/096354", "pubmed-id": 29979655, "publication-id": 2021}], "identifier": 2381, "description": "KBase is the first large-scale bioinformatics system that enables users to upload their own data, analyze it (along with collaborator and public data), build increasingly realistic models, and share and publish their workflows and conclusions. KBase aims to provide a knowledgebase: an integrated environment where knowledge and insights are created and multiplied.", "abbreviation": "KBase", "support-links": [{"url": "https://docs.kbase.us/getting-started/faq", "name": "Getting started and FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.kbase.us/support/", "name": "Support", "type": "Forum"}, {"url": "https://docs.kbase.us/", "name": "KBase Documentation", "type": "Help documentation"}, {"url": "https://www.kbase.us/learn/", "name": "Learn how to use KBase", "type": "Training documentation"}, {"url": "https://twitter.com/DOEKbase", "name": "KBase", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://narrative.kbase.us/#login", "name": "Search & Submit (Free Login Required)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012864", "name": "re3data:r3d100012864", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000861", "bsg-d000861"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Systems Biology"], "domains": ["Workflow"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: US Department of Energy Systems Biology Knowledgebase", "abbreviation": "KBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.jsxqrk", "doi": "10.25504/FAIRsharing.jsxqrk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KBase is the first large-scale bioinformatics system that enables users to upload their own data, analyze it (along with collaborator and public data), build increasingly realistic models, and share and publish their workflows and conclusions. KBase aims to provide a knowledgebase: an integrated environment where knowledge and insights are created and multiplied.", "publications": [{"id": 2021, "pubmed_id": 29979655, "title": "The DOE Systems Biology Knowledgebase (KBase)", "year": 2018, "url": "http://doi.org/10.1038/nbt.4163", "authors": "View ORCID ProfileAdam P. Arkin, Rick L Stevens, Robert W Cottingham, Sergei Maslov, Christopher S Henry, Paramvir Dehal, Doreen Ware, Fernando Perez, Nomi L Harris et.al...", "journal": "BioRxiv", "doi": "doi.org/10.1101/096354", "created_at": "2021-09-30T08:26:07.671Z", "updated_at": "2021-09-30T11:28:39.893Z"}], "licence-links": [{"licence-name": "KBase Terms and Condition", "licence-id": 477, "link-id": 2075, "relation": "undefined"}, {"licence-name": "KBasePrivacy Policy", "licence-id": 476, "link-id": 2076, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2067", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:21.998Z", "metadata": {"doi": "10.25504/FAIRsharing.5701h1", "name": "JAX Mice Database", "status": "ready", "contacts": [{"contact-email": "concierge@jax.org"}], "homepage": "http://jaxmice.jax.org/", "identifier": 2067, "description": "JAX\u00ae Mice are the industry standard for animal model research, using precise genome solutions to better understand human disease. Our rigorous Animal Health Programs and stringent genetic quality standards ensure the reproducibility and validity of your experimental data.", "abbreviation": "JAX", "support-links": [{"url": "https://www.jax.org/jax-mice-and-services/customer-support", "type": "Help documentation"}], "data-processes": [{"url": "http://www.jax.org/grc/strain-donation.php", "name": "submit", "type": "data curation"}, {"url": "http://jaxmice.jax.org/query/f?p=205:1:3337808771737198::::P1_ADV:0", "name": "search", "type": "data access"}, {"url": "http://jaxmice.jax.org/query/f?p=205:1:3337808771737198::::P1_ADV:1", "name": "advanced search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000534", "bsg-d000534"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genetic polymorphism", "Gene", "Genetic strain"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: JAX Mice Database", "abbreviation": "JAX", "url": "https://fairsharing.org/10.25504/FAIRsharing.5701h1", "doi": "10.25504/FAIRsharing.5701h1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: JAX\u00ae Mice are the industry standard for animal model research, using precise genome solutions to better understand human disease. Our rigorous Animal Health Programs and stringent genetic quality standards ensure the reproducibility and validity of your experimental data.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 657, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2129", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-11T11:32:45.031Z", "metadata": {"doi": "10.25504/FAIRsharing.dxj07r", "name": "MGnify", "status": "ready", "contacts": [{"contact-name": "Robert D Finn", "contact-email": "rdf@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/metagenomics/", "citations": [{"doi": "10.1093/nar/gkz1035", "pubmed-id": 31696235, "publication-id": 2769}], "identifier": 2129, "description": "EBI Metagenomics has changed its name to MGnify to reflect a change in scope. This is a free-to-use resource aiming at supporting all metagenomics researchers. The service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. You can freely browse all the public data in the repository.", "abbreviation": "MGnify", "access-points": [{"url": "https://www.ebi.ac.uk/metagenomics/api/v1/", "name": "MGnify API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/support/metagenomics", "name": "Metagenomics Contact Form", "type": "Contact form"}, {"url": "metagenomics-help@ebi.ac.uk", "name": "General contact", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/metagenomics/help", "name": "Help", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/metagenomics/about", "name": "About MGnify", "type": "Help documentation"}, {"url": "https://emg-docs.readthedocs.io/en/latest/", "name": "MGnify documentation", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/ebi-metagenomics-portal-submitting-metagenomics-data-to-the-european-nucleotide-archive", "name": "Ebi metagenomics portal submitting metagenomics data to the european nucleotide archive", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/ebi-metagenomics-portal-quick-tour", "name": "Ebi metagenomics portal quick tour", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/training/online/course/ebi-metagenomics-portal-submitting-metagenomics-da", "name": "Submitting metagenomics data to ENA", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ebi-metagenomics-portal-quick-tour", "name": "MGnify Quick tour", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ebi-metagenomics-analysing-and-exploring-metagenomics-data", "name": "Analysing and exploring metagenomics data", "type": "Training documentation"}, {"url": "https://twitter.com/MGnifyDB", "name": "@MGnifyDB", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://www.ebi.ac.uk/metagenomics/pipelines", "name": "Pipeline v.5.0", "type": "data release"}, {"url": "https://www.ebi.ac.uk/metagenomics/submit", "name": "Submit data", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/metagenomics/search", "name": "Text Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/metagenomics/sequence-search/search/phmmer", "name": "Sequence Search With HMMER", "type": "data access"}, {"url": "https://www.ebi.ac.uk/metagenomics/browse", "name": "Browse Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011192", "name": "re3data:r3d100011192", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000599", "bsg-d000599"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Taxonomy", "Phylogeny", "Biodiversity", "Phylogenomics", "Life Science", "Biomedical Science"], "domains": ["DNA sequence data", "Annotation", "Sequence annotation", "Gene prediction", "Metagenome", "Non-coding RNA", "Gene", "16S rRNA", "Genome", "Microbiome"], "taxonomies": ["All", "Anopheles gambiae", "Arabidopsis thaliana", "Bos indicus", "Bos taurus", "Bubalus bubalis", "Clostridium Difficile", "Escherichia coli", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Metatranscriptome"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: MGnify", "abbreviation": "MGnify", "url": "https://fairsharing.org/10.25504/FAIRsharing.dxj07r", "doi": "10.25504/FAIRsharing.dxj07r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EBI Metagenomics has changed its name to MGnify to reflect a change in scope. This is a free-to-use resource aiming at supporting all metagenomics researchers. The service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. You can freely browse all the public data in the repository.", "publications": [{"id": 749, "pubmed_id": 24165880, "title": "EBI metagenomics--a new resource for the analysis and archiving of metagenomic data.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt961", "authors": "Hunter S,Corbett M,Denise H,Fraser M,Gonzalez-Beltran A,Hunter C,Jones P,Leinonen R,McAnulla C,Maguire E,Maslen J,Mitchell A,Nuka G,Oisel A,Pesseat S,Radhakrishnan R,Rocca-Serra P,Scheremetjew M,Sterk P,Vaughan D,Cochrane G,Field D,Sansone SA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt961", "created_at": "2021-09-30T08:23:42.475Z", "updated_at": "2021-09-30T11:28:49.600Z"}, {"id": 2760, "pubmed_id": 29069476, "title": "EBI Metagenomics in 2017: enriching the analysis of microbial communities, from sequence reads to assemblies.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx967", "authors": "Mitchell AL,Scheremetjew M,Denise H,Potter S,Tarkowska A,Qureshi M,Salazar GA,Pesseat S,Boland MA,Hunter FMI,Ten Hoopen P,Alako B,Amid C,Wilkinson DJ,Curtis TP,Cochrane G,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx967", "created_at": "2021-09-30T08:27:39.196Z", "updated_at": "2021-09-30T11:29:42.928Z"}, {"id": 2769, "pubmed_id": 31696235, "title": "MGnify: the microbiome analysis resource in 2020.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1035", "authors": "Mitchell AL,Almeida A,Beracochea M,Boland M,Burgin J,Cochrane G,Crusoe MR,Kale V,Potter SC,Richardson LJ,Sakharova E,Scheremetjew M,Korobeynikov A,Shlemov A,Kunyavskaya O,Lapidus A,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1035", "created_at": "2021-09-30T08:27:40.312Z", "updated_at": "2021-09-30T11:29:43.587Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1706, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2217", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-27T08:03:11.000Z", "updated-at": "2021-11-24T13:19:29.409Z", "metadata": {"doi": "10.25504/FAIRsharing.wjhf24", "name": "openSNP", "status": "ready", "contacts": [{"contact-name": "Bastian Greshake", "contact-email": "bgreshake@googlemail.com", "contact-orcid": "0000-0002-9925-9623"}], "homepage": "https://www.opensnp.org", "identifier": 2217, "description": "A crowdsourced collection of personal genomics data. Includes SNP genotyping, exome sequencing data, phenotypic annotation and quantified self tracking data.", "abbreviation": "openSNP", "support-links": [{"url": "https://opensnp.wordpress.com", "type": "Blog/News"}, {"url": "info@opensnp.org", "type": "Support email"}, {"url": "https://opensnp.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/opensnporg", "type": "Twitter"}], "year-creation": 2011}, "legacy-ids": ["biodbcore-000691", "bsg-d000691"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genetic polymorphism", "Phenotype", "Single nucleotide polymorphism", "Genome", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: openSNP", "abbreviation": "openSNP", "url": "https://fairsharing.org/10.25504/FAIRsharing.wjhf24", "doi": "10.25504/FAIRsharing.wjhf24", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A crowdsourced collection of personal genomics data. Includes SNP genotyping, exome sequencing data, phenotypic annotation and quantified self tracking data.", "publications": [{"id": 808, "pubmed_id": 24647222, "title": "openSNP--a crowdsourced web resource for personal genomics.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0089204", "authors": "Greshake B,Bayer PE,Rausch H,Reda J", "journal": "PLoS One", "doi": "10.1371/journal.pone.0089204", "created_at": "2021-09-30T08:23:49.154Z", "updated_at": "2021-09-30T08:23:49.154Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 262, "relation": "undefined"}, {"licence-name": "Wholecells DB MIT Licence", "licence-id": 861, "link-id": 872, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 907, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2400", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-15T13:10:18.000Z", "updated-at": "2021-11-24T13:19:34.999Z", "metadata": {"doi": "10.25504/FAIRsharing.etwpd5", "name": "BCCM/IHEM Fungi Collection: Human & Animal Health", "status": "ready", "contacts": [{"contact-name": "BCCM/IHEM", "contact-email": "bccm.ihem@wiv-isp.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-ihem", "identifier": 2400, "description": "BCCM/IHEM is a fungal culture collection specialized in medical and veterinary isolates. About 15.000 strains are available from all over the world: yeasts and filamentous fungi, pathogens, allergenic species, strains producing mycotoxins, reference strains, teaching material, etc. It also comprises the Raymond Vanbreuseghem collection. The BCCM/IHEM collection makes strains publicly available for medical, pharmaceutical and biological research, as well as for method validation, testing or educational purposes. Deposits of strains for public access are without costs for the depositor. The collection also offers a range of services including trainings in mycology and identifications of strains.", "abbreviation": "BCCM/IHEM", "support-links": [{"url": "http://bccm.belspo.be/services/mta", "type": "Help documentation"}], "year-creation": 1980, "data-processes": [{"url": "http://bccm.belspo.be/services/deposit#patent-deposit", "name": "Patent deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/catalogues/ihem-catalogue-search", "name": "Biomedical fungi and yeast catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#safe-deposit", "name": "Safe deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "Public deposit of biomedical fungi and yeast", "type": "data curation"}], "associated-tools": [{"url": "http://bccm.belspo.be/catalogues/ihem-catalogue-search", "name": "BCCM/IHEM Catalogue Search"}]}, "legacy-ids": ["biodbcore-000881", "bsg-d000881"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Mycotoxin", "Environmental contaminant", "Pathogen", "Allergen", "Disease"], "taxonomies": ["Ascomycota", "Basidiomycetes", "Zygomycetes"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/IHEM Fungi Collection: Human & Animal Health", "abbreviation": "BCCM/IHEM", "url": "https://fairsharing.org/10.25504/FAIRsharing.etwpd5", "doi": "10.25504/FAIRsharing.etwpd5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCCM/IHEM is a fungal culture collection specialized in medical and veterinary isolates. About 15.000 strains are available from all over the world: yeasts and filamentous fungi, pathogens, allergenic species, strains producing mycotoxins, reference strains, teaching material, etc. It also comprises the Raymond Vanbreuseghem collection. The BCCM/IHEM collection makes strains publicly available for medical, pharmaceutical and biological research, as well as for method validation, testing or educational purposes. Deposits of strains for public access are without costs for the depositor. The collection also offers a range of services including trainings in mycology and identifications of strains.", "publications": [], "licence-links": [{"licence-name": "BCCM Material Accession Agreement (MAA) F475A", "licence-id": 61, "link-id": 1129, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 1130, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2925", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-30T21:47:38.000Z", "updated-at": "2022-02-11T11:07:11.001Z", "metadata": {"doi": "10.25504/FAIRsharing.2f7f9f", "name": "Global Initiative on Sharing Avian Influenza Data", "status": "ready", "contacts": [], "homepage": "https://www.gisaid.org/", "citations": [], "identifier": 2925, "description": "The GISAID Initiative promotes the international sharing of all influenza virus sequences, related clinical and epidemiological data associated with human viruses, and geographical as well as species-specific data associated with avian and other animal viruses, to help researchers understand how the viruses evolve, spread and potentially become pandemics.", "abbreviation": "GISAID", "data-curation": {}, "support-links": [{"url": "https://www.gisaid.org/help/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.gisaid.org/help/faq/", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2008, "data-processes": [{"url": "https://www.gisaid.org/epiflu-applications/covsurver-mutations-app/", "name": "Access Mutation Analysis of hCoV-19", "type": "data access"}, {"url": "https://www.gisaid.org/epiflu-applications/influenza-genomic-epidemiology/", "name": "Real-time tracking of influenza A/H3N2 evolution", "type": "data access"}, {"url": "https://www.gisaid.org/epiflu-applications/submitting-data-to-epiflutm/", "name": "Submitting Data to the EpiFlu\u2122 Database", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010126", "name": "re3data:r3d100010126", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_018279", "name": "SciCrunch:RRID:SCR_018279", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.gisaid.org/epiflu-applications/submitting-data-to-epiflutm/", "type": "open"}}, "legacy-ids": ["biodbcore-001428", "bsg-d001428"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Epidemiology"], "domains": ["DNA sequence data", "Protein sequence identification", "Patient care", "Sequence"], "taxonomies": ["Influenza virus", "Viruses"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Global Initiative on Sharing Avian Influenza Data", "abbreviation": "GISAID", "url": "https://fairsharing.org/10.25504/FAIRsharing.2f7f9f", "doi": "10.25504/FAIRsharing.2f7f9f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GISAID Initiative promotes the international sharing of all influenza virus sequences, related clinical and epidemiological data associated with human viruses, and geographical as well as species-specific data associated with avian and other animal viruses, to help researchers understand how the viruses evolve, spread and potentially become pandemics.", "publications": [{"id": 2615, "pubmed_id": null, "title": "Competition in biology: It's a scoop!", "year": 2003, "url": "https://doi.org/10.1038/news031124-9", "authors": "Pearson H.", "journal": "Nature", "doi": null, "created_at": "2021-09-30T08:27:21.030Z", "updated_at": "2021-09-30T08:27:21.030Z"}], "licence-links": [{"licence-name": "GISAID Terms of Use", "licence-id": 346, "link-id": 1862, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1972", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:29.662Z", "metadata": {"doi": "10.25504/FAIRsharing.edxb58", "name": "Database of Single Nucleotide Polymorphism", "status": "ready", "contacts": [{"contact-name": "dbSNP Admin", "contact-email": "snp-admin@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/snp/", "citations": [], "identifier": 1972, "description": "dbSNP contains human single nucleotide variations, microsatellites, and small-scale insertions and deletions along with publication, population frequency, molecular consequence, and genomic and RefSeq mapping information for both common variations and clinical mutations.", "abbreviation": "dbSNP", "support-links": [{"url": "https://ncbiinsights.ncbi.nlm.nih.gov/tag/dbsnp/", "name": "NCBI Insights", "type": "Blog/News"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK3848/", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/mailman/listinfo/dbsnp-announce", "name": "dbsnp-announce", "type": "Mailing list"}, {"url": "https://github.com/ncbi/dbsnp/tree/master/tutorials", "name": "Online tutorials", "type": "Github"}], "year-creation": 1998, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/snp/", "name": "FTP Download", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/snp/docs/entrez_help/", "name": "Web Search", "type": "data access"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/snp/docs/submission/hts_launch_and_introductory_material", "name": "Submission"}, {"url": "https://api.ncbi.nlm.nih.gov/variation/v0/", "name": "Variation Service"}, {"url": "https://www.ncbi.nlm.nih.gov/variation/view", "name": "Variation Viewer"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/snp/", "name": "FTP"}, {"url": "http://www.ncbi.nlm.nih.gov/snp", "name": "Search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010652", "name": "re3data:r3d100010652", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002338", "name": "SciCrunch:RRID:SCR_002338", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000438", "bsg-d000438"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genetic polymorphism", "Single nucleotide polymorphism", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Database of Single Nucleotide Polymorphism", "abbreviation": "dbSNP", "url": "https://fairsharing.org/10.25504/FAIRsharing.edxb58", "doi": "10.25504/FAIRsharing.edxb58", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: dbSNP contains human single nucleotide variations, microsatellites, and small-scale insertions and deletions along with publication, population frequency, molecular consequence, and genomic and RefSeq mapping information for both common variations and clinical mutations.", "publications": [{"id": 435, "pubmed_id": 11125122, "title": "dbSNP: the NCBI database of genetic variation.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.308", "authors": "Sherry ST., Ward MH., Kholodov M., Baker J., Phan L., Smigielski EM., Sirotkin K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.308", "created_at": "2021-09-30T08:23:07.283Z", "updated_at": "2021-09-30T08:23:07.283Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 217, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 218, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2762", "type": "fairsharing-records", "attributes": {"created-at": "2019-04-15T12:08:51.000Z", "updated-at": "2021-11-24T13:18:25.071Z", "metadata": {"doi": "10.25504/FAIRsharing.84Gh9z", "name": "AHCODA-DB", "status": "ready", "contacts": [{"contact-name": "Bastijn Koopmans", "contact-email": "bastijn.koopmans@sylics.com", "contact-orcid": "0000-0001-8638-9798"}], "homepage": "https://public.sylics.com/", "citations": [{"doi": "10.1186/s12859-017-1612-1", "pubmed-id": 28376796, "publication-id": 2330}], "identifier": 2762, "description": "AHCODA-DB is a data repository with web-based mining tools for the analysis of automated high-content mouse phenomics data. It provides users with tools to systematically explore mouse behavioural data, both with positive and negative outcome, published and unpublished, across time and experiments with single mouse resolution.", "abbreviation": "AHCODA-DB", "support-links": [{"url": "https://mousedata.sylics.com/support/", "name": "Support", "type": "Contact form"}, {"url": "https://public.sylics.com/?page=about", "name": "About AHCODA-DB", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://public.sylics.com/?page=downloaddata", "name": "Download Data (raw)", "type": "data release"}, {"url": "https://public.sylics.com/?page=pdfdownloaddata", "name": "Download data (PDF)", "type": "data release"}], "associated-tools": [{"url": "https://public.sylics.com/?page=zscores", "name": "Retrieve Z-Scores / Effect Sizes"}]}, "legacy-ids": ["biodbcore-001260", "bsg-d001260"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social and Behavioural Science", "Phenomics", "Neuroscience"], "domains": ["Behavior", "Cognition"], "taxonomies": ["Mus musculus", "Rattus rattus"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: AHCODA-DB", "abbreviation": "AHCODA-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.84Gh9z", "doi": "10.25504/FAIRsharing.84Gh9z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AHCODA-DB is a data repository with web-based mining tools for the analysis of automated high-content mouse phenomics data. It provides users with tools to systematically explore mouse behavioural data, both with positive and negative outcome, published and unpublished, across time and experiments with single mouse resolution.", "publications": [{"id": 2330, "pubmed_id": 28376796, "title": "AHCODA-DB: a data repository with web-based mining tools for the analysis of automated high-content mouse phenomics data.", "year": 2017, "url": "http://doi.org/10.1186/s12859-017-1612-1", "authors": "Koopmans B, Smit AB, Verhage M, Loos M", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-017-1612-1", "created_at": "2021-09-30T08:26:46.101Z", "updated_at": "2021-09-30T08:26:46.101Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1704, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2222", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-02T15:25:17.000Z", "updated-at": "2021-12-06T10:48:23.499Z", "metadata": {"doi": "10.25504/FAIRsharing.d21jc4", "name": "Integrated Digitized Biocollections", "status": "ready", "contacts": [{"contact-name": "Joanna McCaffrey", "contact-email": "jmccaffrey@flmnh.ufl.edu"}], "homepage": "https://www.idigbio.org/", "identifier": 2222, "description": "iDigBio is the US national resource for digitized information about vouchered natural history collections within the context established by the NIBA community strategic plan and is supported through funds from the NSF's ADBC (Advancing Digitization of Biodiversity Collections) program. Through ADBC, data and images for millions of biological specimens are being made available in electronic format for the research community, government agencies, students, educators, and the general public.", "abbreviation": "iDigBio", "access-points": [{"url": "https://www.idigbio.org/wiki/index.php/IDigBio_API", "name": "iDigBio Data API", "type": "Other"}], "support-links": [{"url": "https://www.idigbio.org/contact/Portal_feedback", "type": "Contact form"}, {"url": "https://www.idigbio.org/portal/tutorial", "type": "Help documentation"}, {"url": "https://www.idigbio.org/wiki/index.php/Wiki_Home", "type": "Help documentation"}, {"url": "https://twitter.com/iDigBio", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://www.idigbio.org/portal/search", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011126", "name": "re3data:r3d100011126", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014336", "name": "SciCrunch:RRID:SCR_014336", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000696", "bsg-d000696"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science", "Natural History"], "domains": ["Image"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Digitized Biocollections", "abbreviation": "iDigBio", "url": "https://fairsharing.org/10.25504/FAIRsharing.d21jc4", "doi": "10.25504/FAIRsharing.d21jc4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iDigBio is the US national resource for digitized information about vouchered natural history collections within the context established by the NIBA community strategic plan and is supported through funds from the NSF's ADBC (Advancing Digitization of Biodiversity Collections) program. Through ADBC, data and images for millions of biological specimens are being made available in electronic format for the research community, government agencies, students, educators, and the general public.", "publications": [], "licence-links": [{"licence-name": "iDigBio Terms of Use Policy", "licence-id": 423, "link-id": 874, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2226", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-20T12:52:34.000Z", "updated-at": "2021-11-24T13:14:49.109Z", "metadata": {"doi": "10.25504/FAIRsharing.v1dcm3", "name": "Digenic diseases database", "status": "ready", "contacts": [{"contact-name": "Tom Lenaerts", "contact-email": "tlenaert@ulb.ac.be"}], "homepage": "http://dida.ibsquare.be", "identifier": 2226, "description": "DIDA (DIgenic diseases DAtabase) is a novel database that provides for the first time detailed information on genes and associated genetic variants involved in digenic diseases, the simplest form of oligogenic inheritance.", "abbreviation": "DIDA", "support-links": [{"url": "dida@ibsquare.be", "type": "Support email"}, {"url": "http://dida.ibsquare.be/help/", "type": "Help documentation"}, {"url": "http://dida.ibsquare.be/documentation/", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://dida.ibsquare.be/browse/", "name": "browse", "type": "data access"}, {"url": "http://dida.ibsquare.be/submit/", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000700", "bsg-d000700"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Digenic inheritance", "Genetic polymorphism"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Digenic disease"], "countries": ["Belgium"], "name": "FAIRsharing record for: Digenic diseases database", "abbreviation": "DIDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.v1dcm3", "doi": "10.25504/FAIRsharing.v1dcm3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DIDA (DIgenic diseases DAtabase) is a novel database that provides for the first time detailed information on genes and associated genetic variants involved in digenic diseases, the simplest form of oligogenic inheritance.", "publications": [{"id": 1127, "pubmed_id": 26481352, "title": "DIDA: A curated and annotated digenic diseases database.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1068", "authors": "Gazzo AM,Daneels D,Cilia E,Bonduelle M,Abramowicz M,Van Dooren S,Smits G,Lenaerts T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1068", "created_at": "2021-09-30T08:24:25.072Z", "updated_at": "2021-09-30T11:28:59.755Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2426", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-15T11:14:00.000Z", "updated-at": "2021-12-06T10:49:26.638Z", "metadata": {"doi": "10.25504/FAIRsharing.x9rqf7", "name": "Incorporated Research Institutions for Seismology Data", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "webmaster@iris.edu"}], "homepage": "http://ds.iris.edu/ds/nodes/dmc/data/#", "citations": [], "identifier": 2426, "description": "IRIS provides management of, and access to, observed and derived data for the global earth science community. IRIS membership comprises virtually all US universities with research programs in seismology, and is dedicated to the operation of science facilities for the acquisition, management, and distribution of seismological data. IRIS programs contribute to scholarly research, education, earthquake hazard mitigation, and verification of the Comprehensive Nuclear-Test-Ban Treaty.", "abbreviation": "IRIS Data", "access-points": [{"url": "http://service.iris.edu/", "name": "IRIS Web Services Full List", "type": "Other"}], "support-links": [{"url": "http://www.iris.edu/hq/about_iris/faqs", "name": "IRIS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ds.iris.edu/ds/nodes/dmc/quality-assurance/", "name": "Quality Assurance at IRIS", "type": "Help documentation"}, {"url": "https://www.iris.edu/hq/programs/epo/about", "name": "Education and Outreach", "type": "Training documentation"}, {"url": "https://twitter.com/IRIS_quakes", "name": "@IRIS_quakes", "type": "Twitter"}, {"url": "https://twitter.com/IRIS_EPO", "name": "@IRIS_EPO", "type": "Twitter"}, {"url": "https://twitter.com/IRIS_temblor", "name": "@IRIS_temblor", "type": "Twitter"}], "year-creation": 1994, "data-processes": [{"url": "http://ds.iris.edu/ds/nodes/dmc/data/#submitting", "name": "Submit", "type": "data curation"}, {"url": "http://ds.iris.edu/ds/nodes/dmc/data/#", "name": "access", "type": "data access"}, {"url": "http://ds.iris.edu/SeismiQuery/", "name": "Search via SesmiQuery", "type": "data access"}, {"url": "http://www.iris.washington.edu/bud_stuff/bud/bud_start.pl?BUDDIR=/budnas/virtualnets/ALL", "name": "Search Recent Data", "type": "data access"}, {"url": "https://ds.iris.edu/ieb", "name": "Earthquake Browser", "type": "data access"}, {"url": "http://ds.iris.edu/mda/", "name": "Metadata Aggregator", "type": "data access"}, {"url": "http://ds.iris.edu/gmap/", "name": "Map Viewer (Gmap)", "type": "data access"}, {"url": "http://ds.iris.edu/ds/nodes/dmc/tools", "name": "Choose a Data Access Tool", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010268", "name": "re3data:r3d100010268", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002201", "name": "SciCrunch:RRID:SCR_002201", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000908", "bsg-d000908"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Seismology"], "countries": ["United States"], "name": "FAIRsharing record for: Incorporated Research Institutions for Seismology Data", "abbreviation": "IRIS Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.x9rqf7", "doi": "10.25504/FAIRsharing.x9rqf7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IRIS provides management of, and access to, observed and derived data for the global earth science community. IRIS membership comprises virtually all US universities with research programs in seismology, and is dedicated to the operation of science facilities for the acquisition, management, and distribution of seismological data. IRIS programs contribute to scholarly research, education, earthquake hazard mitigation, and verification of the Comprehensive Nuclear-Test-Ban Treaty.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2758", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-06T15:41:09.000Z", "updated-at": "2022-01-06T10:06:39.620Z", "metadata": {"doi": "10.25504/FAIRsharing.6AmTXC", "name": "Biodiversity Exploratories Information System", "status": "ready", "contacts": [{"contact-name": "Andreas Ostrowski", "contact-email": "bexis@listserv.uni-jena.de", "contact-orcid": "0000-0002-2033-779X"}], "homepage": "https://www.bexis.uni-jena.de/", "citations": [], "identifier": 2758, "description": "BExIS is the online data repository and information system of the Biodiversity Exploratories Project (BE). The BE is a German network of biodiversity related working groups from areas such as vegetation and soil science, zoology and forestry. Up to three years after data acquisition, the data use is restricted to members of the BE. Thereafter, the data is usually publicly available.", "abbreviation": "BExIS", "access-points": [{"url": "https://www.bexis.uni-jena.de/api/Data", "name": "Web Services", "type": "SOAP", "example-url": "https://www.bexis.uni-jena.de/api/Data", "documentation-url": "https://www.bexis.uni-jena.de/apihelp/index"}], "data-curation": {"type": "manual/automated"}, "support-links": [{"url": "bexis@listserv.uni-jena.de", "name": "contact mail", "type": "Mailing list"}, {"url": "https://github.com/bexis/Documents/blob/master/HowTo/HowToRegister.md", "name": "How to Register", "type": "Help documentation"}, {"url": "https://twitter.com/BExplo_research", "name": "@BExplo_research", "type": "Twitter"}, {"url": "https://github.com/bexis/Documents/blob/master/HowTo/HowToUpload.md", "name": "How to Upload", "type": "Help documentation"}, {"url": "https://github.com/bexis/Documents/blob/master/HowTo/HowToSearch.md", "name": "How to Search", "type": "Help documentation"}, {"url": "https://github.com/bexis/Documents/blob/master/HowTo/HowToCreditData.md", "name": "How to Credit Data", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://www.bexis.uni-jena.de/ddm/publicsearch/index", "name": "Browse and Search Public Data", "type": "data access"}], "data-versioning": "yes", "associated-tools": [], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012058", "name": "re3data:r3d100012058", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001256", "bsg-d001256"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Botany", "Zoology", "Ecology", "Biodiversity"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Biodiversity Exploratories Information System", "abbreviation": "BExIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.6AmTXC", "doi": "10.25504/FAIRsharing.6AmTXC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BExIS is the online data repository and information system of the Biodiversity Exploratories Project (BE). The BE is a German network of biodiversity related working groups from areas such as vegetation and soil science, zoology and forestry. Up to three years after data acquisition, the data use is restricted to members of the BE. Thereafter, the data is usually publicly available.", "publications": [{"id": 113, "pubmed_id": null, "title": "Diverse or uniform? \u2014 Intercomparison of two major German project databases for interdisciplinary collaborative functional biodiversity research", "year": 2012, "url": "http://doi.org/https://doi.org/10.1016/j.ecoinf.2011.11.004", "authors": "Lotz T., Nieschulze J., Bendix J., Dobbermann M., K\u00f6nig-Ries B.", "journal": "Ecological Informatics", "doi": "https://doi.org/10.1016/j.ecoinf.2011.11.004", "created_at": "2021-09-30T08:22:32.580Z", "updated_at": "2021-09-30T08:22:32.580Z"}, {"id": 3171, "pubmed_id": null, "title": "BEXIS2: A FAIR-aligned data management system for biodiversity, ecology and environmental data", "year": 2021, "url": "http://dx.doi.org/10.3897/BDJ.9.e72901", "authors": "Chamanara, Javad; Gaikwad, Jitendra; Gerlach, Roman; Algergawy, Alsayed; Ostrowski, Andreas; K\u00f6nig-Ries, Birgitta; ", "journal": "BDJ", "doi": "10.3897/bdj.9.e72901", "created_at": "2022-01-05T11:19:27.769Z", "updated_at": "2022-01-05T11:19:27.769Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2545, "relation": "applies_to_content"}, {"licence-name": "BExIS Terms and Conditions", "licence-id": 898, "link-id": 2546, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3345", "type": "fairsharing-records", "attributes": {"created-at": "2021-07-07T13:25:02.000Z", "updated-at": "2021-12-06T10:47:45.068Z", "metadata": {"name": "Data Archive for Social Sciences & The Humanities in Bosnia & Herzegovina", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "dass@credi.ba"}], "homepage": "https://dass.credi.ba", "identifier": 3345, "description": "DASS-BiH (Data Archive for Social Sciences in Bosnia and Herzegovina) is a national service whose role is to ensure long-term preservation and dissemination of social science research data. The purpose of the data archive is to provide a research data resource for researchers, teachers, students, and all other interested users. economy, education, employment and labour, political science, psychology, sociology, society and culture, social welfare policy and systems.", "abbreviation": "DASS-BiH", "support-links": [{"url": "https://dass.credi.ba/policies-and-procedures/", "name": "Policies and Procedures", "type": "Help documentation"}, {"url": "https://dass.credi.ba/general-procedure-for-data-users/", "name": "Information for Data Users", "type": "Help documentation"}, {"url": "https://dass.credi.ba/general-procedure-for-data-depositors/", "name": "Information for Data Depositors", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://dass.credi.ba/category/collection/", "name": "Browse", "type": "data access"}, {"url": "https://dass.credi.ba/data-catalogue/", "name": "Filtered Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013508", "name": "re3data:r3d100013508", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001881", "bsg-d001881"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Culture", "Social Science", "Psychology", "Political Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Education", "Employment", "Social Welfare Policy"], "countries": ["Bosnia and Herzegovina"], "name": "FAIRsharing record for: Data Archive for Social Sciences & The Humanities in Bosnia & Herzegovina", "abbreviation": "DASS-BiH", "url": "https://fairsharing.org/fairsharing_records/3345", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DASS-BiH (Data Archive for Social Sciences in Bosnia and Herzegovina) is a national service whose role is to ensure long-term preservation and dissemination of social science research data. The purpose of the data archive is to provide a research data resource for researchers, teachers, students, and all other interested users. economy, education, employment and labour, political science, psychology, sociology, society and culture, social welfare policy and systems.", "publications": [], "licence-links": [{"licence-name": "DASS-BIH Data Preservation Policy", "licence-id": 211, "link-id": 1847, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2407", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-19T08:52:53.000Z", "updated-at": "2021-11-24T13:14:53.005Z", "metadata": {"doi": "10.25504/FAIRsharing.eyktqz", "name": "ICLAC Database of Cross-Contaminated or Misidentified Cell Lines", "status": "ready", "contacts": [{"contact-name": "Amanda Capes-Davis", "contact-email": "acapdav@gmail.com", "contact-orcid": "0000-0003-4184-6339"}], "homepage": "http://iclac.org/databases/cross-contaminations/", "identifier": 2407, "description": "This database lists cell lines that are currently known to be cross-contaminated or otherwise misidentified.", "support-links": [{"url": "http://iclac.org/contact-us/", "type": "Contact form"}, {"url": "http://iclac.org/databases/cross-contaminations/archive/", "name": "Archive", "type": "Help documentation"}, {"url": "http://iclac.org/wp-content/uploads/Cross-Contaminations-v8_0.pdf", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://iclac.org/databases/", "name": "browse databases", "type": "data access"}]}, "legacy-ids": ["biodbcore-000889", "bsg-d000889"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Cell line", "Cell culture"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Australia", "Japan"], "name": "FAIRsharing record for: ICLAC Database of Cross-Contaminated or Misidentified Cell Lines", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.eyktqz", "doi": "10.25504/FAIRsharing.eyktqz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database lists cell lines that are currently known to be cross-contaminated or otherwise misidentified.", "publications": [{"id": 2195, "pubmed_id": 20143388, "title": "Check your cultures! A list of cross-contaminated or misidentified cell lines.", "year": 2010, "url": "http://doi.org/10.1002/ijc.25242", "authors": "Capes-Davis A,Theodosopoulos G,Atkin I,Drexler HG,Kohara A,MacLeod RA,Masters JR,Nakamura Y,Reid YA,Reddel RR,Freshney RI", "journal": "Int J Cancer", "doi": "10.1002/ijc.25242", "created_at": "2021-09-30T08:26:27.442Z", "updated_at": "2021-09-30T08:26:27.442Z"}], "licence-links": [{"licence-name": "ICLAC Terms of Use", "licence-id": 412, "link-id": 1331, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1673", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.840Z", "metadata": {"doi": "10.25504/FAIRsharing.kq47fy", "name": "SpliceDisease", "status": "deprecated", "homepage": "http://cmbi.bjmu.edu.cn/Sdisease", "identifier": 1673, "description": "The SpliceDisease database provides information linking RNA splicing to human disease, including the change of the nucleotide in the sequence, the location of the mutation on the gene, the reference Pubmed ID and detailed description for the relationship among gene mutations, splicing defects and diseases.", "abbreviation": "SpliceDisease", "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"name": "file download(csv)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000129", "bsg-d000129"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["RNA splicing", "Mutation analysis", "Disease"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: SpliceDisease", "abbreviation": "SpliceDisease", "url": "https://fairsharing.org/10.25504/FAIRsharing.kq47fy", "doi": "10.25504/FAIRsharing.kq47fy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SpliceDisease database provides information linking RNA splicing to human disease, including the change of the nucleotide in the sequence, the location of the mutation on the gene, the reference Pubmed ID and detailed description for the relationship among gene mutations, splicing defects and diseases.", "publications": [{"id": 173, "pubmed_id": 22139928, "title": "SpliceDisease database: linking RNA splicing and disease.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1171", "authors": "Wang J., Zhang J., Li K., Zhao W., Cui Q.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1171", "created_at": "2021-09-30T08:22:38.922Z", "updated_at": "2021-09-30T08:22:38.922Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2315", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T13:56:30.000Z", "updated-at": "2021-12-06T10:48:25.700Z", "metadata": {"doi": "10.25504/FAIRsharing.dnxzmk", "name": "Synapse", "status": "ready", "contacts": [{"contact-name": "Meredith Slota", "contact-email": "meredith.slota@sagebionetworks.org", "contact-orcid": "0000-0001-8492-6705"}], "homepage": "https://www.synapse.org/", "identifier": 2315, "description": "Synapse is a collaborative research platform that allows individuals and teams to share, track, and discuss their data and analysis in projects. Synapse allows researchers to share and describe data, analyses, and other content. Data and analyses can be stored in many types of locations, including private servers, local hard drives, or cloud storage. Synapse provides a common interface to describe these data or analyses, where they come from, and how to use them. Synapse also provides mechanisms for adding and retrieving data, analyses, and their respective descriptions.", "abbreviation": "Synapse", "access-points": [{"url": "http://rest-docs.synapse.org/rest/", "name": "Synapse REST APIs", "type": "REST"}], "support-links": [{"url": "SynapseInfo@sagebase.org", "name": "Synapse Information Email", "type": "Support email"}, {"url": "https://docs.synapse.org/articles/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.synapse.org/#!SynapseForum:default", "name": "Forum", "type": "Forum"}, {"url": "https://docs.synapse.org/", "name": "Synapse Documentation", "type": "Help documentation"}, {"url": "https://docs.synapse.org/articles/accounts_certified_users_and_profile_validation.html", "name": "About Accounts, Certification and Profile Validation", "type": "Help documentation"}, {"url": "https://www.synapse.org/#!StandaloneWiki:ResearchCommunities", "name": "Synapse Research Communities", "type": "Help documentation"}, {"url": "https://www.synapse.org/#!StandaloneWiki:OpenResearchProjects", "name": "Synapse Open Research Projects", "type": "Help documentation"}, {"url": "https://docs.synapse.org/articles/governance.html", "name": "Synapse Commons Governance Overview", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://www.synapse.org/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://sage-bionetworks.github.io/ran/", "name": "Synapse R Client"}, {"url": "https://pypi.org/project/synapseclient/", "name": "Synapse Python Client"}, {"url": "http://docs.synapse.org/python/build/html/CommandLineClient.html", "name": "Synapse Command-Line Client"}, {"url": "https://github.com/Sage-Bionetworks/Synapse-Repository-Services/blob/develop/client/synapseJavaClient/src/main/java/org/sagebionetworks/client/SynapseClient.java", "name": "Synapse Java Client"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011894", "name": "re3data:r3d100011894", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006307", "name": "SciCrunch:RRID:SCR_006307", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000791", "bsg-d000791"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Integration", "Data Management", "Biomedical Science"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Synapse", "abbreviation": "Synapse", "url": "https://fairsharing.org/10.25504/FAIRsharing.dnxzmk", "doi": "10.25504/FAIRsharing.dnxzmk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Synapse is a collaborative research platform that allows individuals and teams to share, track, and discuss their data and analysis in projects. Synapse allows researchers to share and describe data, analyses, and other content. Data and analyses can be stored in many types of locations, including private servers, local hard drives, or cloud storage. Synapse provides a common interface to describe these data or analyses, where they come from, and how to use them. Synapse also provides mechanisms for adding and retrieving data, analyses, and their respective descriptions.", "publications": [{"id": 2450, "pubmed_id": 24071850, "title": "Enabling transparent and collaborative computational analysis of 12 tumor types within The Cancer Genome Atlas.", "year": 2013, "url": "http://doi.org/10.1038/ng.2761", "authors": "Omberg L,Ellrott K,Yuan Y,Kandoth C,Wong C,Kellen MR,Friend SH,Stuart J,Liang H,Margolin AA", "journal": "Nat Genet", "doi": "10.1038/ng.2761", "created_at": "2021-09-30T08:27:00.469Z", "updated_at": "2021-09-30T08:27:00.469Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2243, "relation": "undefined"}, {"licence-name": "Synapse Apache 2.0", "licence-id": 766, "link-id": 2245, "relation": "undefined"}, {"licence-name": "Synapse Terms of Use", "licence-id": 767, "link-id": 2246, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1736", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.189Z", "metadata": {"doi": "10.25504/FAIRsharing.jm8fzm", "name": "Human Endogenous Retrovirus database", "status": "ready", "contacts": [{"contact-name": "Jan Pa\u010des", "contact-email": "hpaces@img.cas.cz", "contact-orcid": "0000-0003-3059-6127"}], "homepage": "https://herv.img.cas.cz", "identifier": 1736, "description": "This database is compiled from the human genome nucleotide sequences obtained mostly in the Human Genome Projects. The database makes it possible to continuously improve classification and characterization of retroviral families. The HERV database now contains retroviruses from more than 90 % of the human genome.", "abbreviation": "HERVd", "access-points": [{"url": "https://herv.img.cas.cz/api/entities", "name": "All entities", "type": "REST"}, {"url": "https://herv.img.cas.cz/api/repeats", "name": "All repeats", "type": "REST"}, {"url": "https://herv.img.cas.cz/api/elements", "name": "All elements", "type": "REST"}, {"url": "https://herv.img.cas.cz/api/swagger", "name": "Swagger definition", "type": "REST"}], "support-links": [{"url": "https://herv.img.cas.cz/about", "name": "Contact", "type": "Contact form"}, {"url": "https://herv.img.cas.cz/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://herv.img.cas.cz/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://herv.img.cas.cz/about", "name": "About the database", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://herv.img.cas.cz/entities.tar.gz", "name": "Download Entities", "type": "data release"}, {"url": "https://herv.img.cas.cz/repeats", "name": "Browse repeats", "type": "data access"}, {"url": "https://herv.img.cas.cz/elements", "name": "Browse Elements", "type": "data access"}, {"url": "https://herv.img.cas.cz/entities", "name": "Browse Entities", "type": "data access"}], "associated-tools": [{"url": "https://herv.img.cas.cz/selection_pressures", "name": "Selection pressures"}]}, "legacy-ids": ["biodbcore-000193", "bsg-d000193"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Classification", "Retrotransposon", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Human Endogenous Retrovirus database", "abbreviation": "HERVd", "url": "https://fairsharing.org/10.25504/FAIRsharing.jm8fzm", "doi": "10.25504/FAIRsharing.jm8fzm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database is compiled from the human genome nucleotide sequences obtained mostly in the Human Genome Projects. The database makes it possible to continuously improve classification and characterization of retroviral families. The HERV database now contains retroviruses from more than 90 % of the human genome.", "publications": [{"id": 248, "pubmed_id": 11752294, "title": "HERVd: database of human endogenous retroviruses.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.205", "authors": "Paces J., Pavl\u00edcek A., Paces V.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.205", "created_at": "2021-09-30T08:22:46.822Z", "updated_at": "2021-09-30T08:22:46.822Z"}, {"id": 270, "pubmed_id": 14681356, "title": "HERVd: the Human Endogenous RetroViruses Database: update.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh075", "authors": "Paces J., Pavl\u00edcek A., Zika R., Kapitonov VV., Jurka J., Paces V.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh075", "created_at": "2021-09-30T08:22:49.165Z", "updated_at": "2021-09-30T08:22:49.165Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1394, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3176", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-05T11:25:02.000Z", "updated-at": "2021-11-24T13:15:36.436Z", "metadata": {"doi": "10.25504/FAIRsharing.EsY1WF", "name": "Scipion Workflow Repository", "status": "ready", "contacts": [{"contact-name": "Carlos Oscar S. Sorzano", "contact-email": "coss@cnb.csic.es", "contact-orcid": "0000-0002-9473-283X"}], "homepage": "http://workflows.scipion.i2pc.es/", "identifier": 3176, "description": "Repository of workflows for image processing in cryo-electron microscopy using Scipion.", "abbreviation": "ScipionWorkflows", "support-links": [{"url": "scipion@cnb.csic.es", "name": "scipion@cnb.csic.es", "type": "Support email"}, {"url": "https://github.com/I2PC/scipionWorkflowRepository/wiki/Scipion-Workflow-Repository-Help-Page", "name": "Help", "type": "Github"}, {"url": "scipion-users@lists.sourceforge.net", "name": "scipion-users@lists.sourceforge.net", "type": "Mailing list"}, {"url": "https://scipion-em.github.io/docs/", "name": "https://scipion-em.github.io/docs/", "type": "Github"}, {"url": "https://scipion-em.github.io/docs/docs/user/user-documentation.html#tutorials", "name": "https://scipion-em.github.io/docs/docs/user/user-documentation.html#tutorials", "type": "Github"}], "year-creation": 2016, "data-processes": [{"url": "http://workflows.scipion.i2pc.es/workflow_add_manually/", "name": "Upload Workflow", "type": "data curation"}, {"url": "http://workflows.scipion.i2pc.es/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://scipion.i2pc.es", "name": "Scipion 3"}]}, "legacy-ids": ["biodbcore-001687", "bsg-d001687"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Electron microscopy"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Scipion Workflow Repository", "abbreviation": "ScipionWorkflows", "url": "https://fairsharing.org/10.25504/FAIRsharing.EsY1WF", "doi": "10.25504/FAIRsharing.EsY1WF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Repository of workflows for image processing in cryo-electron microscopy using Scipion.", "publications": [], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 2298, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1850", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-11T11:04:08.228Z", "metadata": {"doi": "10.25504/FAIRsharing.dj8nt8", "name": "European Nucleotide Archive", "status": "ready", "contacts": [{"contact-name": "Guy Cochrane", "contact-email": "datasubs@ebi.ac.uk", "contact-orcid": "0000-0001-7954-7057"}], "homepage": "http://www.ebi.ac.uk/ena", "citations": [{"doi": "10.1093/nar/gkw1106", "pubmed-id": 27899630, "publication-id": 2401}], "identifier": 1850, "description": "The European Nucleotide Archive (ENA) is a globally comprehensive data resource for nucleotide sequence, spanning raw data, alignments and assemblies, functional and taxonomic annotation and rich contextual data relating to sequenced samples and experimental design. Serving both as the database of record for the output of the world's sequencing activity and as a platform for the management, sharing and publication of sequence data, the ENA provides a portfolio of services for submission, data management, search and retrieval across web and programmatic interfaces. The ENA is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "abbreviation": "ENA", "access-points": [{"url": "https://www.ebi.ac.uk/ena/browse/data-retrieval-rest", "name": "Data Retrieval", "type": "REST"}, {"url": "https://www.ebi.ac.uk/ena/browse/search-rest", "name": "Search", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/ena/browser/support", "name": "Support / Feedback Form", "type": "Contact form"}, {"url": "http://listserver.ebi.ac.uk/mailman/listinfo/ena-announce", "name": "ENA Announce", "type": "Mailing list"}, {"url": "https://www.ebi.ac.uk/ena/about", "name": "About ENA", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/european-nucleotide-archive-quick-tour", "name": "European nucleotide archive quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/european-nucleotide-archive-ena-an-introduction-webinar", "name": "European nucleotide archive ena an introduction webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/european-nucleotide-archive-using-the-primary-nucleotide-sequence-resource", "name": "European nucleotide archive using the primary nucleotide sequence resource", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/ebi-metagenomics-portal-submitting-metagenomics-data-to-the-european-nucleotide-archive", "name": "Ebi metagenomics portal submitting metagenomics data to the european nucleotide archive", "type": "TeSS links to training materials"}, {"url": "https://ena-docs.readthedocs.io/en/latest/", "name": "Tutorials and Guidelines", "type": "Training documentation"}, {"url": "https://twitter.com/enasequence", "name": "@enasequence", "type": "Twitter"}], "year-creation": 1980, "data-processes": [{"url": "https://www.ebi.ac.uk/ena/browser/rulespace", "name": "Saved Searches (Rulespace)", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ena/browser/submit", "name": "Submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/ena/browser/search", "name": "Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ena/browser/home", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/ena/software/cram-toolkit", "name": "CRAM"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010527", "name": "re3data:r3d100010527", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006515", "name": "SciCrunch:RRID:SCR_006515", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000310", "bsg-d000310"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Metagenomics", "Genomics", "Bioinformatics", "Data Management", "Biodiversity", "Transcriptomics"], "domains": ["DNA sequence data", "Annotation", "Sequence annotation", "Genomic assembly", "Histone", "Deoxyribonucleic acid", "Ribonucleic acid", "Nucleotide", "Sequencing", "Amino acid sequence", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Data coordination"], "countries": ["United States", "European Union", "Japan"], "name": "FAIRsharing record for: European Nucleotide Archive", "abbreviation": "ENA", "url": "https://fairsharing.org/10.25504/FAIRsharing.dj8nt8", "doi": "10.25504/FAIRsharing.dj8nt8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Nucleotide Archive (ENA) is a globally comprehensive data resource for nucleotide sequence, spanning raw data, alignments and assemblies, functional and taxonomic annotation and rich contextual data relating to sequenced samples and experimental design. Serving both as the database of record for the output of the world's sequencing activity and as a platform for the management, sharing and publication of sequence data, the ENA provides a portfolio of services for submission, data management, search and retrieval across web and programmatic interfaces. The ENA is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "publications": [{"id": 227, "pubmed_id": 26615190, "title": "Biocuration of functional annotation at the European nucleotide archive.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1311", "authors": "Gibson R,Alako B,Amid C,Cerdeno-Tarraga A,Cleland I,Goodgame N,Ten Hoopen P,Jayathilaka S,Kay S,Leinonen R,Liu X,Pallreddy S,Pakseresht N,Rajan J,Rossello M,Silvester N,Smirnov D,Toribio AL,Vaughan D,Zalunin V,Cochrane G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1311", "created_at": "2021-09-30T08:22:44.521Z", "updated_at": "2021-09-30T11:28:44.125Z"}, {"id": 274, "pubmed_id": 25404130, "title": "Content discovery and retrieval services at the European Nucleotide Archive.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1129", "authors": "Silvester N,Alako B,Amid C,Cerdeno-Tarraga A,Cleland I,Gibson R,Goodgame N,Ten Hoopen P,Kay S,Leinonen R,Li W,Liu X,Lopez R,Pakseresht N,Pallreddy S,Plaister S,Radhakrishnan R,Rossello M,Senf A,Smirnov D,Toribio AL,Vaughan D,Zalunin V,Cochrane G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1129", "created_at": "2021-09-30T08:22:49.623Z", "updated_at": "2021-09-30T11:28:44.591Z"}, {"id": 822, "pubmed_id": 23203883, "title": "Facing growth in the European Nucleotide Archive.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1175", "authors": "Cochrane G.,Alako B., et al.,", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1175", "created_at": "2021-09-30T08:23:50.618Z", "updated_at": "2021-09-30T11:28:53.175Z"}, {"id": 1175, "pubmed_id": 26657633, "title": "The International Nucleotide Sequence Database Collaboration.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1323", "authors": "Cochrane G,Karsch-Mizrachi I,Takagi T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1323", "created_at": "2021-09-30T08:24:30.606Z", "updated_at": "2021-09-30T11:29:02.034Z"}, {"id": 2401, "pubmed_id": 27899630, "title": "European Nucleotide Archive in 2016.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1106", "authors": "Toribio AL.,Alako B., et al.,", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1106", "created_at": "2021-09-30T08:26:54.759Z", "updated_at": "2021-09-30T11:29:34.986Z"}, {"id": 2468, "pubmed_id": 14681351, "title": "The EMBL Nucleotide Sequence Database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh120", "authors": "Kulikova T,Aldebert P., et al.,", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh120", "created_at": "2021-09-30T08:27:02.652Z", "updated_at": "2021-09-30T11:29:37.053Z"}], "licence-links": [{"licence-name": "ENA Open Access Statement", "licence-id": 278, "link-id": 2338, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2339, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBPdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--a27bdd64a97653816e34b91e1cda921c3ea4fa2e/ENA_logo_2021.png?disposition=inline"}} +{"id": "2391", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:05:27.000Z", "updated-at": "2021-11-24T13:17:39.378Z", "metadata": {"doi": "10.25504/FAIRsharing.zfdxet", "name": "BCCM/LMG Bacteria Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/LMG", "contact-email": "bccm.lmg@UGent.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-lmg", "citations": [], "identifier": 2391, "description": "BCCM/LMG is a bacterial culture collection currently comprising over 25.000 well-characterized strains. The biological origin of our collection is very broad, including bacterial isolates from food, clinical, veterinary, agricultural, aquatic and other environmental sources. This way, the biological resources of BCCM/LMG may serve the needs of various R&D sectors, including green, red, blue and white biotechnology.", "abbreviation": "BCCM/LMG", "support-links": [{"url": "http://bccm.belspo.be/webform/contact-us", "type": "Contact form"}, {"url": "http://bccm.belspo.be/services/order-material-step1", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/services/mta", "type": "Help documentation"}], "year-creation": 1983, "data-processes": [{"url": "http://bccm.belspo.be/catalogues/lmg-bacterial-genomic-dna", "name": "Bacterial gDNA catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/catalogues/test-control-strains", "name": "Catalogue of test and control strains", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#patent-deposit", "name": "Patent deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#safe-deposit", "name": "Safe deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "Public deposit of bacteria", "type": "data curation"}, {"url": "http://bccm.belspo.be/catalogues/lmg-catalogue-search", "name": "BCCM/LMG Catalogue Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000872", "bsg-d000872"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biotechnology", "Agriculture", "Life Science", "Nutritional Science"], "domains": ["Food"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/LMG Bacteria Collection", "abbreviation": "BCCM/LMG", "url": "https://fairsharing.org/10.25504/FAIRsharing.zfdxet", "doi": "10.25504/FAIRsharing.zfdxet", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCCM/LMG is a bacterial culture collection currently comprising over 25.000 well-characterized strains. The biological origin of our collection is very broad, including bacterial isolates from food, clinical, veterinary, agricultural, aquatic and other environmental sources. This way, the biological resources of BCCM/LMG may serve the needs of various R&D sectors, including green, red, blue and white biotechnology.", "publications": [], "licence-links": [{"licence-name": "BCCM Material Accession Agreement (MAA) F475A", "licence-id": 61, "link-id": 1276, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 1282, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1684", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:00.160Z", "metadata": {"doi": "10.25504/FAIRsharing.znvzhj", "name": "Predictive Networks", "status": "deprecated", "contacts": [{"contact-name": "John Quackenbush", "contact-email": "johng@jimmy.harvard.edu"}], "homepage": "http://predictivenetworks.org/", "identifier": 1684, "description": "Integration, navigation, visualization, and analysis of gene interaction networks. This record has been marked as \"Uncertain\" because its homepage no longer exists. If you have any information on the current status of this resource, please contact us via the \"Ask Question\" button at the top of this page, or contact us through any of the methods described in the footer.", "support-links": [{"url": "predictivenetworks@jimmy.harvard.edu", "type": "Support email"}], "year-creation": 2011, "data-processes": [{"name": "annual release", "type": "data release"}, {"name": "web interface", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000140", "bsg-d000140"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genetic interaction", "Gene", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Predictive Networks", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.znvzhj", "doi": "10.25504/FAIRsharing.znvzhj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Integration, navigation, visualization, and analysis of gene interaction networks. This record has been marked as \"Uncertain\" because its homepage no longer exists. If you have any information on the current status of this resource, please contact us via the \"Ask Question\" button at the top of this page, or contact us through any of the methods described in the footer.", "publications": [{"id": 189, "pubmed_id": 22096235, "title": "Predictive networks: a flexible, open source, web application for integration and analysis of human gene networks.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1050", "authors": "Haibe-Kains B., Olsen C., Djebbari A., Bontempi G., Correll M., Bouton C., Quackenbush J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1050", "created_at": "2021-09-30T08:22:40.715Z", "updated_at": "2021-09-30T08:22:40.715Z"}], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 244, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2863", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-18T13:40:17.000Z", "updated-at": "2021-12-21T11:35:29.734Z", "metadata": {"doi": "10.25504/FAIRsharing.Mkl9RR", "name": "Ontology Lookup Service", "status": "ready", "contacts": [{"contact-name": "OLS Support", "contact-email": "ols-support@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/ols/index", "citations": [], "identifier": 2863, "description": "The Ontology Lookup Service (OLS) is a repository for biomedical ontologies that aims to provide a single point of access to the latest ontology versions. You can browse the ontologies through the website as well as programmatically via the OLS API.", "abbreviation": "OLS", "access-points": [{"url": "https://www.ebi.ac.uk/ols/docs/api", "name": "API", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://www.ebi.ac.uk/ols/docs/docs", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://listserver.ebi.ac.uk/mailman/listinfo/ols-announce", "name": "OLS Mailing list", "type": "Mailing list"}, {"url": "https://www.ebi.ac.uk/ols/docs/website", "name": "Website documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ols/docs/developer", "name": "Developer documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ols/docs/about", "name": "About OLS", "type": "Help documentation"}, {"url": "https://github.com/EBISPOT/OLS", "name": "Github Repository", "type": "Github"}], "year-creation": 2015, "data-processes": [{"url": "https://www.ebi.ac.uk/ols/ontologies", "name": "Browse Ontologies", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ols/index", "name": "Search Ontologies", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/spot/oxo/", "name": "OxO Ontology Mapping Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010413", "name": "re3data:r3d100010413", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006596", "name": "SciCrunch:RRID:SCR_006596", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001364", "bsg-d001364"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology", "Data Visualization"], "domains": ["Classification", "Knowledge representation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Ontology Lookup Service", "abbreviation": "OLS", "url": "https://fairsharing.org/10.25504/FAIRsharing.Mkl9RR", "doi": "10.25504/FAIRsharing.Mkl9RR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ontology Lookup Service (OLS) is a repository for biomedical ontologies that aims to provide a single point of access to the latest ontology versions. You can browse the ontologies through the website as well as programmatically via the OLS API.", "publications": [], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 613, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 614, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3113", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-10T11:01:14.000Z", "updated-at": "2021-12-06T10:48:41.676Z", "metadata": {"doi": "10.25504/FAIRsharing.hrM7RP", "name": "Arctic Permafrost Geospatial Centre", "status": "ready", "contacts": [{"contact-name": "APGC Helpdesk", "contact-email": "apgc@awi.de"}], "homepage": "https://apgc.awi.de/", "identifier": 3113, "description": "The Arctic Permafrost Geospatial Centre (APGC) provides open access to geospatial permafrost data from the Arctic. APGC contains metadata descriptions and visualizations, and links out to the data stored by the publishing data repository. APGC also invites submissions from both individual users as well as project consortiums.", "abbreviation": "APGC", "access-points": [{"url": "https://apgc.awi.de/api/3", "name": "https://docs.ckan.org/en/latest/api/", "type": "Other"}], "support-links": [{"url": "https://apgc.awi.de/uploads/images/APGC_Help_Documentation_v1_1.pdf", "name": "Help (PDF)", "type": "Help documentation"}, {"url": "https://apgc.awi.de/about", "name": "About", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://apgc.awi.de/dataset", "name": "Browse Datasets", "type": "data access"}, {"url": "https://apgc.awi.de/group", "name": "Browse Dataset Groups", "type": "data access"}], "associated-tools": [{"url": "https://ckan.org/", "name": "CKAN 2.8.6"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013276", "name": "re3data:r3d100013276", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001623", "bsg-d001623"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Earth Science"], "domains": ["Geographical location"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Arctic", "Geospatial Data", "permafrost"], "countries": ["Germany"], "name": "FAIRsharing record for: Arctic Permafrost Geospatial Centre", "abbreviation": "APGC", "url": "https://fairsharing.org/10.25504/FAIRsharing.hrM7RP", "doi": "10.25504/FAIRsharing.hrM7RP", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arctic Permafrost Geospatial Centre (APGC) provides open access to geospatial permafrost data from the Arctic. APGC contains metadata descriptions and visualizations, and links out to the data stored by the publishing data repository. APGC also invites submissions from both individual users as well as project consortiums.", "publications": [], "licence-links": [{"licence-name": "APGC Copyright and Legal Information", "licence-id": 36, "link-id": 2077, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2078, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 2079, "relation": "undefined"}, {"licence-name": "Affero GNU GPL v3.0", "licence-id": 15, "link-id": 2080, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2313", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T13:39:45.000Z", "updated-at": "2021-11-24T13:14:51.527Z", "metadata": {"doi": "10.25504/FAIRsharing.qky19z", "name": "Mammography Image Analysis Society Database", "status": "ready", "contacts": [{"contact-name": "John Suckling", "contact-email": "js369@cam.ac.uk"}], "homepage": "https://www.repository.cam.ac.uk/handle/1810/250394", "tombstone": true, "identifier": 2313, "description": "Record does not exist anymore: Mammography Image Analysis Society Database. The record with identifier content https://doi.org/10.25504/FAIRsharing.qky19z was invalid.", "year-creation": 1994}, "legacy-ids": ["biodbcore-000789", "bsg-d000789"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Medical imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Mammography Image Analysis Society Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qky19z", "doi": "10.25504/FAIRsharing.qky19z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Record does not exist anymore: Mammography Image Analysis Society Database. The record with identifier content https://doi.org/10.25504/FAIRsharing.qky19z was invalid.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 2.0 UK: England & Wales (CC BY 2.0 UK)", "licence-id": 158, "link-id": 847, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3121", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-14T08:38:06.000Z", "updated-at": "2021-12-06T10:49:05.911Z", "metadata": {"doi": "10.25504/FAIRsharing.qwzEsc", "name": "Institute for Marine and Antarctic Studies Data Portal", "status": "ready", "contacts": [{"contact-name": "IMAS Data Manager", "contact-email": "IMAS.DataManager@utas.edu.au"}], "homepage": "https://data.imas.utas.edu.au/static/landing.html", "identifier": 3121, "description": "The Institute for Marine and Antarctic Studies (IMAS) Data Portal is a repository used by IMAS and its partners to store multidisciplinary and interdisciplinary research related to temperate marine, Southern Ocean, and Antarctic environments. The portal aims to make IMAS data freely and openly available for the benefit of Australian marine and environmental science as a whole.", "abbreviation": "IMAS Data Portal", "support-links": [{"url": "https://data.imas.utas.edu.au/static/help.html", "name": "Help", "type": "Help documentation"}], "data-processes": [{"url": "https://data.imas.utas.edu.au/portal/search", "name": "Search", "type": "data access"}, {"url": "http://data.imas.utas.edu.au/submit", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011633", "name": "re3data:r3d100011633", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001631", "bsg-d001631"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Institute for Marine and Antarctic Studies Data Portal", "abbreviation": "IMAS Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.qwzEsc", "doi": "10.25504/FAIRsharing.qwzEsc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Institute for Marine and Antarctic Studies (IMAS) Data Portal is a repository used by IMAS and its partners to store multidisciplinary and interdisciplinary research related to temperate marine, Southern Ocean, and Antarctic environments. The portal aims to make IMAS data freely and openly available for the benefit of Australian marine and environmental science as a whole.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3337", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-25T11:28:37.000Z", "updated-at": "2022-02-08T10:37:45.463Z", "metadata": {"doi": "10.25504/FAIRsharing.b05f99", "name": "NCBI Genome Data Viewer", "status": "ready", "contacts": [], "homepage": "https://www.ncbi.nlm.nih.gov/genome/gdv/", "citations": [{"doi": "10.1101/gr.266932.120", "pubmed-id": 33239395, "publication-id": 2484}], "identifier": 3337, "description": "The NCBI Genome Data Viewer (GDV) is a genome browser supporting the exploration and analysis of annotated eukaryotic genome assemblies. The GDV browser can visualize different types of molecular data in a whole genome context, including gene annotation, BLAST alignments, and experimental study data from the NCBI GEO and dbGaP databases. GDV release notes describe new features relating to this browser. The core component of the GDV browser is the NCBI Sequence Viewer, which supports analysis of genomic assemblies at multiple levels, from the whole chromosome or scaffold to the sequence base bair. Please refer to Sequence Viewer documentation and release notes for more information.", "abbreviation": "GDV", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/home/about/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ncbi.nlm.nih.gov/genome/gdv/browser/help/", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.youtube.com/playlist?list=PL7dF9e2qSW0b2vuZpBzu236O42_MVs49A", "name": "YouTube Tutorials", "type": "Video"}, {"url": "https://support.nlm.nih.gov/", "name": "NCBI Support Center", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/genome/gdv/", "name": "Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001856", "bsg-d001856"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics"], "domains": ["Genome map", "Genome visualization", "Genome"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Genome Data Viewer", "abbreviation": "GDV", "url": "https://fairsharing.org/10.25504/FAIRsharing.b05f99", "doi": "10.25504/FAIRsharing.b05f99", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCBI Genome Data Viewer (GDV) is a genome browser supporting the exploration and analysis of annotated eukaryotic genome assemblies. The GDV browser can visualize different types of molecular data in a whole genome context, including gene annotation, BLAST alignments, and experimental study data from the NCBI GEO and dbGaP databases. GDV release notes describe new features relating to this browser. The core component of the GDV browser is the NCBI Sequence Viewer, which supports analysis of genomic assemblies at multiple levels, from the whole chromosome or scaffold to the sequence base bair. Please refer to Sequence Viewer documentation and release notes for more information.", "publications": [{"id": 2484, "pubmed_id": 33239395, "title": "Accessing NCBI data using the NCBI Sequence Viewer and Genome Data Viewer (GDV).", "year": 2020, "url": "http://doi.org/10.1101/gr.266932.120", "authors": "Rangwala SH,Kuznetsov A,Ananiev V,Asztalos A,Borodin E,Evgeniev V,Joukov V,Lotov V,Pannu R,Rudnev D,Shkeda A,Weitz EM,Schneider VA", "journal": "Genome Res", "doi": "10.1101/gr.266932.120", "created_at": "2021-09-30T08:27:04.601Z", "updated_at": "2021-09-30T08:27:04.601Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1902, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1830", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:21.631Z", "metadata": {"doi": "10.25504/FAIRsharing.bsawmk", "name": "TropGENE DB", "status": "ready", "contacts": [{"contact-name": "Chantal Hamelin", "contact-email": "chantal.hamelin@cirad.fr"}], "homepage": "http://tropgenedb.cirad.fr/", "identifier": 1830, "description": "TropGENE DB is a database that manages genetic and genomic information about tropical crops studied by Cirad. The database is organised into crop specific modules.", "abbreviation": "TropGENE DB", "support-links": [{"url": "http://tropgenedb.cirad.fr/tropgene/JSP/gui_doc.jsp", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://tropgenedb.cirad.fr/tropgene/JSP/index.jsp", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000290", "bsg-d000290"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Life Science"], "domains": ["Gene", "Genome", "Genotype"], "taxonomies": ["Coffea", "Elaeis", "Gossypium", "Hevea", "Musa", "Oryza", "Saccharum officinarum", "Theobroma cacao"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: TropGENE DB", "abbreviation": "TropGENE DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bsawmk", "doi": "10.25504/FAIRsharing.bsawmk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TropGENE DB is a database that manages genetic and genomic information about tropical crops studied by Cirad. The database is organised into crop specific modules.", "publications": [{"id": 336, "pubmed_id": 23161680, "title": "TropGeneDB, the multi-tropical crop information system updated and extended.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1105", "authors": "Hamelin C., Sempere G., Jouffe V., Ruiz M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1105", "created_at": "2021-09-30T08:22:56.133Z", "updated_at": "2021-09-30T08:22:56.133Z"}, {"id": 1492, "pubmed_id": 14681435, "title": "TropGENE-DB, a multi-tropical crop information system.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh105", "authors": "Ruiz M,Rouard M,Raboin LM,Lartaud M,Lagoda P,Courtois B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh105", "created_at": "2021-09-30T08:25:07.040Z", "updated_at": "2021-09-30T11:29:10.777Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2416", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-07T19:24:16.000Z", "updated-at": "2021-12-06T10:48:48.034Z", "metadata": {"doi": "10.25504/FAIRsharing.kjncvg", "name": "NOAA National Centers for Environmental Information Data Access Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ncei.info@noaa.gov"}], "homepage": "https://www.ncei.noaa.gov/access/search/index", "identifier": 2416, "description": "The National Oceanic and Atmospheric Administration National Centers for Environmental Information (NOAA NCEI) Data Access Portal offers download and subsetting options for a growing collection of environmental data. While current offerings are primarily limited to weather and climate information, the application has a data-agnostic infrastructure designed to accommodate a broad spectrum of observation formats from across science disciplines.", "abbreviation": "NOAA NCEI Data Access", "access-points": [{"url": "https://www.ncei.noaa.gov/support/access-data-service-api-user-documentation", "name": "Data Access Data API", "type": "REST"}, {"url": "https://www.ncei.noaa.gov/support/access-search-service-api-user-documentation", "name": "Data Access Search API", "type": "REST"}], "support-links": [{"url": "https://www.ncei.noaa.gov/access-search", "name": "Data Access Search Help", "type": "Help documentation"}, {"url": "https://www.ncei.noaa.gov/news.xml", "name": "News Feed", "type": "Blog/News"}, {"url": "https://twitter.com/NOAANCEIclimate", "name": "@NOAANCEIclimate", "type": "Twitter"}, {"url": "https://twitter.com/NOAANCEIocngeo", "name": "@NOAANCEIocngeo", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://www.ncei.noaa.gov/access/search/dataset-search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011801", "name": "re3data:r3d100011801", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000898", "bsg-d000898"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geophysics", "Meteorology", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NOAA National Centers for Environmental Information Data Access Portal", "abbreviation": "NOAA NCEI Data Access", "url": "https://fairsharing.org/10.25504/FAIRsharing.kjncvg", "doi": "10.25504/FAIRsharing.kjncvg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Oceanic and Atmospheric Administration National Centers for Environmental Information (NOAA NCEI) Data Access Portal offers download and subsetting options for a growing collection of environmental data. While current offerings are primarily limited to weather and climate information, the application has a data-agnostic infrastructure designed to accommodate a broad spectrum of observation formats from across science disciplines.", "publications": [], "licence-links": [{"licence-name": "NOAA Privacy", "licence-id": 596, "link-id": 2019, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2660", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-17T21:16:03.000Z", "updated-at": "2021-11-24T13:17:43.869Z", "metadata": {"doi": "10.25504/FAIRsharing.ynxB7A", "name": "Algorithm Selection Library", "status": "ready", "contacts": [{"contact-name": "Lars Kotthoff", "contact-email": "larsko@uwyo.edu"}], "homepage": "http://aslib.net", "citations": [{"publication-id": 2365}], "identifier": 2660, "description": "A benchmark library for algorithm selection problems in AI, with a standard data format and tools to work with the format. This record describes the project repository, which contains data sets retrieved from literature. However, new algorithm selection scenarios can be submitted by opening a pull request in the repository. A very simple starter script is also provided to generate a ASlib scenarios from two csv files with runtime data and instance features.", "abbreviation": "ASlib", "year-creation": 2014, "data-processes": [{"url": "https://github.com/coseal/aslib_data", "name": "Browse Repository", "type": "data access"}, {"url": "https://github.com/coseal/aslib_data/pulls", "name": "Data submission via pull request", "type": "data curation"}], "associated-tools": [{"url": "https://github.com/coseal/aslib-spec/tree/master/data_check_tool_python", "name": "Scenario Check Tool (Python)"}]}, "legacy-ids": ["biodbcore-001153", "bsg-d001153"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computer Science"], "domains": ["Algorithm"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada", "United States", "Netherlands", "Germany", "Ireland"], "name": "FAIRsharing record for: Algorithm Selection Library", "abbreviation": "ASlib", "url": "https://fairsharing.org/10.25504/FAIRsharing.ynxB7A", "doi": "10.25504/FAIRsharing.ynxB7A", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A benchmark library for algorithm selection problems in AI, with a standard data format and tools to work with the format. This record describes the project repository, which contains data sets retrieved from literature. However, new algorithm selection scenarios can be submitted by opening a pull request in the repository. A very simple starter script is also provided to generate a ASlib scenarios from two csv files with runtime data and instance features.", "publications": [{"id": 2365, "pubmed_id": null, "title": "ASlib: A Benchmark Library for Algorithm Selection", "year": 2016, "url": "https://doi.org/10.1016/j.artint.2016.04.003", "authors": "Bernd Bischl, Pascal Kerschke, Lars Kotthoff, Marius Lindauer, Yuri Malitsky, Alexandre Frechette, Holger Hoos, Frank Hutter, Kevin Leyton-Brown, Kevin Tierney, Joaquin Vanschoren", "journal": "Artificial Intelligence Journal", "doi": null, "created_at": "2021-09-30T08:26:50.794Z", "updated_at": "2021-09-30T11:28:35.245Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 377, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3815", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T09:30:46.150Z", "updated-at": "2022-02-11T15:38:52.292Z", "metadata": {"name": "Adatt\u00e1r", "status": "in_development", "contacts": [{"contact-name": "Adam Szaldobagyi", "contact-email": "adattar@lib.unideb.hu", "contact-orcid": null}], "homepage": "https://adattar.unideb.hu/", "citations": [], "identifier": 3815, "description": "Adatt\u00e1r stores research data associated with the University of Debrecen, and provides services such as data transfer, storage and sharing. As a result, research data is easily accessible and more visible to the scientific community in each field, following disciplinary standards. Adatta\u0301r aims to foster best practices of findability and accessibility of research data, and will provide guidance regarding issues of access, privacy, and copyright. Adatta\u0301r aims to be a widely used, inter-disciplinary, trusted platform for managing, sharing, and archiving research data created by the researchers associated with the university.", "abbreviation": null, "data-curation": {}, "support-links": [], "year-creation": 2021, "data-processes": [{"url": "https://adattar.unideb.hu/dataverse/university-of-debrecen/search", "name": "Advanced Search", "type": "data access"}, {"url": "https://adattar.unideb.hu/", "name": "General Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage", "FAIR"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Hungary"], "name": "FAIRsharing record for: Adatt\u00e1r", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3815", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Adatt\u00e1r stores research data associated with the University of Debrecen, and provides services such as data transfer, storage and sharing. As a result, research data is easily accessible and more visible to the scientific community in each field, following disciplinary standards. Adatta\u0301r aims to foster best practices of findability and accessibility of research data, and will provide guidance regarding issues of access, privacy, and copyright. Adatta\u0301r aims to be a widely used, inter-disciplinary, trusted platform for managing, sharing, and archiving research data created by the researchers associated with the university.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 2609, "relation": "applies_to_content"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBMZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--ec377b68f2d0442b155db1242e8f47cd507bd501/ud-eng-vilagoshatterre-1200x396.png?disposition=inline"}} +{"id": "2069", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:56.050Z", "metadata": {"doi": "10.25504/FAIRsharing.ntv8pe", "name": "Chemical Effects in Biological Systems", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "CEBS-support@mail.nih.gov"}], "homepage": "https://cebs.niehs.nih.gov/cebs/", "identifier": 2069, "description": "The Chemical Effects in Biological Systems (CEBS) database houses data of interest to environmental health scientists. CEBS is a public resource, and has received depositions of data from academic, industrial, and governmental laboratories.", "abbreviation": "CEBS", "access-points": [{"url": "https://cebs.niehs.nih.gov/cebs/support/view/CEBS_API-User-Help.pdf", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "https://cebs.niehs.nih.gov/cebs/support", "name": "General Documentation", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://cebs.niehs.nih.gov/ftp/", "name": "Download", "type": "data release"}, {"url": "https://cebs.niehs.nih.gov/cebs/", "name": "Search", "type": "data access"}, {"url": "https://cebs.niehs.nih.gov/cebs/support/view/Depositing-Data-in-CEBS.pdf", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010314", "name": "re3data:r3d100010314", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006778", "name": "SciCrunch:RRID:SCR_006778", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000536", "bsg-d000536"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Proteomics", "Biomedical Science", "Preclinical Studies"], "domains": ["Expression data", "Bioactivity", "Histology", "Disease", "Toxicity"], "taxonomies": ["All"], "user-defined-tags": ["Environmental Health"], "countries": ["United States"], "name": "FAIRsharing record for: Chemical Effects in Biological Systems", "abbreviation": "CEBS", "url": "https://fairsharing.org/10.25504/FAIRsharing.ntv8pe", "doi": "10.25504/FAIRsharing.ntv8pe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chemical Effects in Biological Systems (CEBS) database houses data of interest to environmental health scientists. CEBS is a public resource, and has received depositions of data from academic, industrial, and governmental laboratories.", "publications": [{"id": 523, "pubmed_id": 17962311, "title": "CEBS--Chemical Effects in Biological Systems: a public data repository integrating study design and toxicity data with microarray and proteomics data.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm755", "authors": "Waters M., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm755", "created_at": "2021-09-30T08:23:17.059Z", "updated_at": "2021-09-30T08:23:17.059Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3023", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-15T13:19:12.000Z", "updated-at": "2021-11-24T13:16:24.113Z", "metadata": {"doi": "10.25504/FAIRsharing.9ATgeT", "name": "NORMAN Substance Database", "status": "ready", "contacts": [{"contact-name": "NORMAN Support", "contact-email": "suspects@normandata.eu"}], "homepage": "https://www.norman-network.com/nds/susdat/", "identifier": 3023, "description": "NORMAN SusDat is a compilation of information provided by NORMAN network members and has merged many chemical lists provided to the NORMAN Suspect List Exchange (NORMAN-SLE) into a common format and includes selected identifiers and predicted values as a service for NORMAN members. NORMAN-SLE, established in 2015 as a central access point for NORMAN members (and others) to find suspect lists relevant for their environmental monitoring question, is a part of this resource.", "abbreviation": "NORMAN SusDat", "support-links": [{"url": "https://www.norman-network.com/nds/SLE/", "name": "Information about data sources", "type": "Help documentation"}, {"url": "https://twitter.com/NORMAN_network", "name": "@NORMAN_network", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://doi.org/10.5281/zenodo.3695732", "name": "S0 | Merged NORMAN Suspect List: SusDat (Zenodo)", "type": "data release"}, {"url": "https://www.norman-network.com/nds/SLE/", "name": "NORMAN Suspect List Exchange NORMAN SLE", "type": "data release"}, {"url": "https://www.norman-network.com/nds/susdat/susdatSearchShow.php", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001531", "bsg-d001531"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Drug Metabolism", "Metabolomics", "Analytical Chemistry"], "domains": ["Environmental contaminant"], "taxonomies": ["Not applicable"], "user-defined-tags": ["exposomics"], "countries": ["Greece", "China", "Canada", "Norway", "United States", "Austria", "Sweden", "France", "Netherlands", "Germany", "Australia", "Bulgaria", "Luxembourg", "Slovakia", "Spain", "Switzerland"], "name": "FAIRsharing record for: NORMAN Substance Database", "abbreviation": "NORMAN SusDat", "url": "https://fairsharing.org/10.25504/FAIRsharing.9ATgeT", "doi": "10.25504/FAIRsharing.9ATgeT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NORMAN SusDat is a compilation of information provided by NORMAN network members and has merged many chemical lists provided to the NORMAN Suspect List Exchange (NORMAN-SLE) into a common format and includes selected identifiers and predicted values as a service for NORMAN members. NORMAN-SLE, established in 2015 as a central access point for NORMAN members (and others) to find suspect lists relevant for their environmental monitoring question, is a part of this resource.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1894, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2524", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-30T22:31:08.000Z", "updated-at": "2021-12-06T10:48:20.438Z", "metadata": {"doi": "10.25504/FAIRsharing.by3p8p", "name": "brainlife", "status": "ready", "contacts": [{"contact-name": "Franco Pestilli", "contact-email": "pestilli@utexas.edu", "contact-orcid": "0000-0002-2469-0494"}], "homepage": "https://brainlife.io", "identifier": 2524, "description": "Brainlife is an open, online platform that provides seamless access to cloud computing infrastructure and brain data and data derivatives. It aims to address challenges to neuroscience open sharing and reproducibility by providing integrative mechanisms for publishing data, and algorithms while embedding them with computing resources to impact multiple scientific communities. Brainlife is intended for neuroscientists, computer scientists, statisticians, and engineers interested in brain data to use the data or develop and publish their analysis methods.", "abbreviation": "brainlife", "access-points": [{"url": "https://brainlife.io/docs/technical/api/", "name": "brainlife APIs", "type": "REST"}], "support-links": [{"url": "brlife@iu.edu", "name": "General Contact", "type": "Support email"}, {"url": "https://brainlife.slack.com/", "name": "Brain Life Slack Channel", "type": "Help documentation"}, {"url": "https://github.com/brainlife/brainlife", "name": "GitHub Project", "type": "Github"}, {"url": "https://brainlife.io/docs/", "name": "Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/brainlifeio", "name": "@brainlifeio", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "https://brainlife.io/datasets#%7B%22query%22%3A%22%22%2C%22datatypes%22%3A%5B%5D%7D", "name": "Search Datasets", "type": "data access"}, {"url": "https://brainlife.io/datatypes", "name": "Search Datatypes", "type": "data access"}, {"url": "https://brainlife.io/pubs", "name": "Search Publications", "type": "data access"}, {"url": "https://brainlife.io/projects", "name": "Search Projects", "type": "data access"}, {"url": "https://brainlife.io/apps", "name": "Search Apps", "type": "data access"}, {"url": "https://brainlife.io/ui/tractview/demo.html#where=-34.042;0;197.082/0;0;0", "name": "Track Viewer Demo", "type": "data access"}, {"url": "https://brainlife.io/ui/surfaces/", "name": "3D Surfaces Demo", "type": "data access"}, {"url": "https://brainlife.io/ui/nnview/", "name": "Network Neuro Demo", "type": "data access"}, {"url": "https://brainlife.io/ui/prfview/", "name": "pRF Viewer Demo", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012397", "name": "re3data:r3d100012397", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_020940", "name": "SciCrunch:RRID:SCR_020940", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001007", "bsg-d001007"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Computational Neuroscience", "Computational Biology", "Computer Science", "Biomedical Science", "Bioengineering", "Neuroscience"], "domains": ["Brain", "Brain imaging", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Neuroinformatics"], "countries": ["United States"], "name": "FAIRsharing record for: brainlife", "abbreviation": "brainlife", "url": "https://fairsharing.org/10.25504/FAIRsharing.by3p8p", "doi": "10.25504/FAIRsharing.by3p8p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Brainlife is an open, online platform that provides seamless access to cloud computing infrastructure and brain data and data derivatives. It aims to address challenges to neuroscience open sharing and reproducibility by providing integrative mechanisms for publishing data, and algorithms while embedding them with computing resources to impact multiple scientific communities. Brainlife is intended for neuroscientists, computer scientists, statisticians, and engineers interested in brain data to use the data or develop and publish their analysis methods.", "publications": [{"id": 830, "pubmed_id": 31123325, "title": "The open diffusion data derivatives, brain data upcycling via integrated publishing of derivatives and reproducible open cloud services.", "year": 2019, "url": "http://doi.org/10.1038/s41597-019-0073-y", "authors": "Avesani P,McPherson B,Hayashi S,Caiafa CF,Henschel R,Garyfallidis E,Kitchell L,Bullock D,Patterson A,Olivetti E,Sporns O,Saykin AJ,Wang L,Dinov I,Hancock D,Caron B,Qian Y,Pestilli F", "journal": "Sci Data", "doi": "10.1038/s41597-019-0073-y", "created_at": "2021-09-30T08:23:51.539Z", "updated_at": "2021-09-30T08:23:51.539Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2103", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.241Z", "metadata": {"doi": "10.25504/FAIRsharing.cm6j6r", "name": "YEASTNET: A consensus reconstruction of yeast metabolism", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "network.reconstruction@manchester.ac.uk"}], "homepage": "http://yeast.sourceforge.net/", "identifier": 2103, "description": "This is a portal to the consensus yeast metabolic network as reconstructed from the genome sequence and literature. It is a highly annotated metabolic map of Saccharomyces cerevisiae S288c that is periodically updated by a team of collaborators from various research groups.", "abbreviation": "YEASTNET", "support-links": [{"url": "http://sourceforge.net/projects/yeast/forums/", "name": "Forum", "type": "Forum"}], "year-creation": 2007, "data-processes": [{"url": "http://sourceforge.net/projects/yeast/files", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000572", "bsg-d000572"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Metabolomics", "Systems Biology"], "domains": ["Network model"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: YEASTNET: A consensus reconstruction of yeast metabolism", "abbreviation": "YEASTNET", "url": "https://fairsharing.org/10.25504/FAIRsharing.cm6j6r", "doi": "10.25504/FAIRsharing.cm6j6r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This is a portal to the consensus yeast metabolic network as reconstructed from the genome sequence and literature. It is a highly annotated metabolic map of Saccharomyces cerevisiae S288c that is periodically updated by a team of collaborators from various research groups.", "publications": [{"id": 1419, "pubmed_id": 18846089, "title": "A consensus yeast metabolic network reconstruction obtained from a community approach to systems biology.", "year": 2008, "url": "http://doi.org/10.1038/nbt1492", "authors": "Herrg\u00e5rd MJ., Swainston N., Dobson P., Dunn WB., Arga KY., Arvas M., Bl\u00fcthgen N., Borger S., Costenoble R., Heinemann M., Hucka M., Le Nov\u00e8re N., Li P., Liebermeister W., Mo ML., Oliveira AP., Petranovic D., Pettifer S., Simeonidis E., Smallbone K., Spasi\u0107 I., Weichart D., Brent R., Broomhead DS., Westerhoff HV., Kirdar B., Penttil\u00e4 M., Klipp E., Palsson B\u00d8., Sauer U., Oliver SG., Mendes P., Nielsen J., Kell DB.,", "journal": "Nat. Biotechnol.", "doi": "10.1038/nbt1492", "created_at": "2021-09-30T08:24:58.603Z", "updated_at": "2021-09-30T08:24:58.603Z"}, {"id": 2184, "pubmed_id": 24678285, "title": "Revising the Representation of Fatty Acid, Glycerolipid, and Glycerophospholipid Metabolism in the Consensus Model of Yeast Metabolism.", "year": 2014, "url": "http://doi.org/10.1089/ind.2013.0013", "authors": "Aung HW,Henry SA,Walker LP", "journal": "Ind Biotechnol (New Rochelle N Y)", "doi": "10.1089/ind.2013.0013", "created_at": "2021-09-30T08:26:26.223Z", "updated_at": "2021-09-30T08:26:26.223Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 1257, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3774", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-27T11:31:59.740Z", "updated-at": "2022-01-31T15:17:57.246Z", "metadata": {"name": "SURF Data Repository", "status": "ready", "contacts": [{"contact-name": "SURF helpdesk", "contact-email": "helpdesk@surfsara.nl", "contact-orcid": null}], "homepage": "https://repository.surfsara.nl", "citations": [], "identifier": 3774, "description": "The SURF Data Repository is a user-friendly web-based data publication platform that allows researchers to store, annotate and publish research datasets of any size to ensure long-term preservation and availability of their data. The service allows any data set to be stored, independent of volume, number of files and structure. A published data set is enriched with complex metadata, unique identifiers are added and the data is preserved for an agreed-upon period of time. The service is domain-agnostic and supports multiple communities with different policy and metadata requirements. ", "abbreviation": "SDR", "data-curation": {}, "support-links": [{"url": "https://servicedesk.surfsara.nl/wiki/display/WIKI/Data+Repository+FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://sdrdocs.readthedocs.io/en/latest/", "name": "User guide", "type": "Help documentation"}, {"url": "https://repository.surfsara.nl/contact", "type": "Contact form"}], "year-creation": 2021, "data-processes": [{"url": "https://repository.surfsara.nl/collections", "name": "Browse collections", "type": "data access"}, {"url": "https://repository.surfsara.nl/communities", "name": "Browse communities", "type": "data access"}, {"url": "https://repository.surfsara.nl/search", "name": "Browse and search dataset", "type": "data access"}, {"url": "https://repository.surfsara.nl/contact", "name": "Contact to deposit data", "type": "data curation"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Astrophysics and Astronomy", "Cosmology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": [], "name": "FAIRsharing record for: SURF Data Repository", "abbreviation": "SDR", "url": "https://fairsharing.org/fairsharing_records/3774", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SURF Data Repository is a user-friendly web-based data publication platform that allows researchers to store, annotate and publish research datasets of any size to ensure long-term preservation and availability of their data. The service allows any data set to be stored, independent of volume, number of files and structure. A published data set is enriched with complex metadata, unique identifiers are added and the data is preserved for an agreed-upon period of time. The service is domain-agnostic and supports multiple communities with different policy and metadata requirements. ", "publications": [], "licence-links": [{"licence-name": "SURF Data Repository Terms of Use", "licence-id": 910, "link-id": 2586, "relation": "applies_to_content"}, {"licence-name": "SURF Disclaimer", "licence-id": 911, "link-id": 2587, "relation": "applies_to_content"}, {"licence-name": "SURF Privacy Policy ", "licence-id": 912, "link-id": 2588, "relation": "applies_to_content"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBEQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--e1a0132afa82db8eae1b85f874500b4750fcd0ff/surf_repository_logo.png?disposition=inline"}} +{"id": "3224", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-20T15:15:08.000Z", "updated-at": "2021-12-06T10:47:40.196Z", "metadata": {"name": "Modular Observation Solutions for Earth Systems Data Discovery Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "moses-dmp@gfz-potsdam.de"}], "homepage": "https://moses-data.gfz-potsdam.de/onestop/#/", "identifier": 3224, "description": "The Modular Observation Solutions for Earth Systems (MOSES) Data Discovery Portal was created to facilitate access to data and information obtained in MOSES campaigns. MOSES is an Earth and Environment observing system comprising highly flexible and mobile observation modules specifically designed to investigate the interactions of short-term events and long-term trends across Earth compartments. Heat waves, hydrological extremes, ocean eddies and permafrost thaw are the main focuses of this resource.", "abbreviation": "MOSES", "support-links": [{"url": "https://moses-data.gfz-potsdam.de/onestop/#/help", "name": "Help", "type": "Help documentation"}], "data-processes": [{"url": "https://moses-data.gfz-potsdam.de/onestop/#/collections?m=metadataTypes:Campaign", "name": "Browse Campaigns", "type": "data access"}, {"url": "https://moses-data.gfz-potsdam.de/onestop/#/collections?m=topics:Hydrological%20Extremes", "name": "Browse Hydrological Extremes Topic", "type": "data access"}, {"url": "https://moses-data.gfz-potsdam.de/onestop/#/collections?m=topics:Heatwaves", "name": "Browse Heatwaves Topic", "type": "data access"}, {"url": "https://moses-data.gfz-potsdam.de/onestop/#/collections?m=topics:Permafrost%20Thaw", "name": "Browse Permafrost Thaw Topic", "type": "data access"}, {"url": "https://moses-data.gfz-potsdam.de/onestop/#/collections?m=topics:Ocean%20Eddies", "name": "Browse Ocean Eddies Topic", "type": "data access"}, {"url": "https://moses-data.gfz-potsdam.de/onestop/#/", "name": "Search and Filter", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013291", "name": "re3data:r3d100013291", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001738", "bsg-d001738"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Oceanography", "Hydrology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["earth observation", "permafrost"], "countries": ["Germany"], "name": "FAIRsharing record for: Modular Observation Solutions for Earth Systems Data Discovery Portal", "abbreviation": "MOSES", "url": "https://fairsharing.org/fairsharing_records/3224", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Modular Observation Solutions for Earth Systems (MOSES) Data Discovery Portal was created to facilitate access to data and information obtained in MOSES campaigns. MOSES is an Earth and Environment observing system comprising highly flexible and mobile observation modules specifically designed to investigate the interactions of short-term events and long-term trends across Earth compartments. Heat waves, hydrological extremes, ocean eddies and permafrost thaw are the main focuses of this resource.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1985", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:07.185Z", "metadata": {"doi": "10.25504/FAIRsharing.99sey6", "name": "Organelle Genome Resource", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/genomes/GenomesHome.cgi?taxid=2759&hopt=html", "identifier": 1985, "description": "The organelle genomes are part of the NCBI Reference Sequence (RefSeq) project that provides curated sequence data and related information for the community to use as a standard.", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/genomes/GenomesHome.cgi?taxid=2759&hopt=faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1986, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/genomes/MITOCHONDRIA/Metazoa", "name": "Download", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/genome/browse/?report=5", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000451", "bsg-d000451"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Ribonucleic acid", "Structure", "Genome"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Organelle Genome Resource", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.99sey6", "doi": "10.25504/FAIRsharing.99sey6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The organelle genomes are part of the NCBI Reference Sequence (RefSeq) project that provides curated sequence data and related information for the community to use as a standard.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 805, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 806, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2509", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-11T13:30:39.000Z", "updated-at": "2021-12-06T10:49:01.364Z", "metadata": {"doi": "10.25504/FAIRsharing.pn7yxf", "name": "Swedish National Data Service", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "snd@gu.se"}], "homepage": "https://snd.gu.se/en", "identifier": 2509, "description": "Swedish National Data Service (SND) is a research data infrastructure that supports accessibility, preservation, and reuse of research data. The SND Search function makes it easy to find, use, and cite research data from a variety of scientific disciplines. SND is present throughout the Swedish research ecology, through an extensive network across closer to 40 higher education institutions and other research organisations. Together, SND and this network form a distributed system of certified research data repositories with the SND main office as a central node. The certification means that SND ensures that research data are managed, stored, and made accessible in a secure and sustainable manner, today and for the future. SND collaborates with various international stakeholders in order to advance global access to research data.", "abbreviation": "SND", "support-links": [{"url": "https://snd.gu.se/en/news-and-events", "name": "News & events", "type": "Blog/News"}, {"url": "https://www.linkedin.com/company/svensk-nationell-datatj%C3%A4nst/?originalSubdomain=se", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://snd.gu.se/en/describe-and-deposit-data/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://snd.gu.se/en/manage-data/guides", "name": "Guides", "type": "Help documentation"}, {"url": "https://snd.gu.se/en/rss-news.xml", "type": "Blog/News"}, {"url": "https://twitter.com/sndSweden", "type": "Twitter"}], "data-processes": [{"url": "https://snd.gu.se/en/catalogue/search", "name": "SND Search function", "type": "data access"}, {"url": "https://snd.gu.se/en/catalogue/order-data", "name": "Order data", "type": "data access"}, {"url": "https://snd.gu.se/en/find-and-order-data/collections", "name": "Browse collections", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010146", "name": "re3data:r3d100010146", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000991", "bsg-d000991"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities", "Social Science", "Health Science", "Life Science", "Social and Behavioural Science", "Biomedical Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: Swedish National Data Service", "abbreviation": "SND", "url": "https://fairsharing.org/10.25504/FAIRsharing.pn7yxf", "doi": "10.25504/FAIRsharing.pn7yxf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Swedish National Data Service (SND) is a research data infrastructure that supports accessibility, preservation, and reuse of research data. The SND Search function makes it easy to find, use, and cite research data from a variety of scientific disciplines. SND is present throughout the Swedish research ecology, through an extensive network across closer to 40 higher education institutions and other research organisations. Together, SND and this network form a distributed system of certified research data repositories with the SND main office as a central node. The certification means that SND ensures that research data are managed, stored, and made accessible in a secure and sustainable manner, today and for the future. SND collaborates with various international stakeholders in order to advance global access to research data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1973", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:22.296Z", "metadata": {"doi": "10.25504/FAIRsharing.wk5azf", "name": "Database of Sequence Tagged Sites", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/dbSTS/index.html", "identifier": 1973, "description": "dbSTS is an NCBI resource that contains sequence data for short genomic landmark sequences or Sequence Tagged Sites.", "abbreviation": "dbSTS", "year-creation": 1988, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010649", "name": "re3data:r3d100010649", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000400", "name": "SciCrunch:RRID:SCR_000400", "portal": "SciCrunch"}], "deprecation-date": "2021-9-23", "deprecation-reason": "This resource has been incorporated into Genbank, and all data can be searched and submitted via that resource."}, "legacy-ids": ["biodbcore-000439", "bsg-d000439"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "DNA sequence data", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Database of Sequence Tagged Sites", "abbreviation": "dbSTS", "url": "https://fairsharing.org/10.25504/FAIRsharing.wk5azf", "doi": "10.25504/FAIRsharing.wk5azf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: dbSTS is an NCBI resource that contains sequence data for short genomic landmark sequences or Sequence Tagged Sites.", "publications": [{"id": 1, "pubmed_id": 2781285, "title": "A common language for physical mapping of the human genome.", "year": 1989, "url": "http://doi.org/10.1126/science.2781285", "authors": "Olson M,Hood L,Cantor C,Botstein D", "journal": "Science", "doi": "10.1126/science.2781285", "created_at": "2021-09-30T08:22:20.699Z", "updated_at": "2021-09-30T08:22:20.699Z"}, {"id": 1022, "pubmed_id": 16381840, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj158", "authors": "Barrett T., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj158", "created_at": "2021-09-30T08:24:13.181Z", "updated_at": "2021-09-30T08:24:13.181Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1270, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1274, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1843", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:26.580Z", "metadata": {"doi": "10.25504/FAIRsharing.drtwnh", "name": "figshare", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@figshare.com"}], "homepage": "http://figshare.com/", "identifier": 1843, "description": "figshare is a data publishing platform that is free for all researchers. Some of figshare\u2019s core beliefs are: academic research outputs should be as open as possible, as closed as necessary; academic research outputs should never be behind a paywall; academic research outputs should be human and machine readable/query-able; academic infrastructure should be interchangeable; academic researchers should never have to put the same information into multiple systems at the same institution; identifiers for everything; and the impact of research is independent of where it is published and what type of output it is. figshare supports embargoing and managed access, and will embargo data while undergoing peer review. Metadata in figshare is licenced under is CC0. All files and metadata can be accessed from docs.figshare.com. figshare has also partnered with DuraSpace and Chronopolis to offer further assurances that public data will be archived under the stewardship of Chronopolis. In the highly unlikely event of multiple AWS S3 failures, figshare can restore public user content from Chronopolis. figshare is supported through Institutional, Funder, and Governmental service subscriptions.", "abbreviation": "figshare", "support-links": [{"url": "https://www.facebook.com/FigShare", "name": "https://facebook.com/FigShare", "type": "Facebook"}, {"url": "https://figshare.com/blog", "name": "figshare's blog", "type": "Blog/News"}, {"url": "https://figshare.com/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://knowledge.figshare.com", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://support.figshare.com/support/home", "name": "figshare Support", "type": "Help documentation"}, {"url": "https://vimeo.com/figshare", "name": "figshare on Vimeo", "type": "Help documentation"}, {"url": "https://twitter.com/figshare", "name": "@figshare", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"name": "Submit", "type": "data curation"}, {"url": "https://figshare.com/search", "name": "Search", "type": "data access"}, {"url": "https://figshare.com/browse", "name": "Browse", "type": "data access"}, {"name": "Soft limit of 20GB for free accounts", "type": "data curation"}, {"name": "System limit of 5000GB/file", "type": "data curation"}, {"name": "Upload limits may be lifted on request", "type": "data curation"}, {"name": "Per-researcher storage: unlimited", "type": "data curation"}, {"name": "Versioning supported", "type": "data versioning"}, {"name": "No support for individual-level human data", "type": "data curation"}], "associated-tools": [{"url": "https://figshare.com/tools", "name": "Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010066", "name": "re3data:r3d100010066", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004328", "name": "SciCrunch:RRID:SCR_004328", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000303", "bsg-d000303"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic", "Data Visualization"], "domains": ["Image", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "South Africa", "United States", "European Union", "New Zealand", "Australia"], "name": "FAIRsharing record for: figshare", "abbreviation": "figshare", "url": "https://fairsharing.org/10.25504/FAIRsharing.drtwnh", "doi": "10.25504/FAIRsharing.drtwnh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: figshare is a data publishing platform that is free for all researchers. Some of figshare\u2019s core beliefs are: academic research outputs should be as open as possible, as closed as necessary; academic research outputs should never be behind a paywall; academic research outputs should be human and machine readable/query-able; academic infrastructure should be interchangeable; academic researchers should never have to put the same information into multiple systems at the same institution; identifiers for everything; and the impact of research is independent of where it is published and what type of output it is. figshare supports embargoing and managed access, and will embargo data while undergoing peer review. Metadata in figshare is licenced under is CC0. All files and metadata can be accessed from docs.figshare.com. figshare has also partnered with DuraSpace and Chronopolis to offer further assurances that public data will be archived under the stewardship of Chronopolis. In the highly unlikely event of multiple AWS S3 failures, figshare can restore public user content from Chronopolis. figshare is supported through Institutional, Funder, and Governmental service subscriptions.", "publications": [{"id": 1223, "pubmed_id": 21772785, "title": "FigShare.", "year": 2011, "url": "http://doi.org/10.4103/0976-500X.81919", "authors": "Singh J", "journal": "J Pharmacol Pharmacother", "doi": "10.4103/0976-500X.81919", "created_at": "2021-09-30T08:24:36.333Z", "updated_at": "2021-09-30T08:24:36.333Z"}], "licence-links": [{"licence-name": "Figshare Copyright and Licensing", "licence-id": 315, "link-id": 1922, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1923, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1924, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1925, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1926, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1927, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1928, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2667", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-27T09:20:33.000Z", "updated-at": "2022-02-08T10:38:57.740Z", "metadata": {"doi": "10.25504/FAIRsharing.c55d5e", "name": "GitHub", "status": "ready", "homepage": "https://github.com/", "identifier": 2667, "description": "GitHub Inc. is a Git-based software repository that provides version control. It offers all of the distributed version control and source code management (SCM) functionality of Git as well as adding its own features. It provides access control and several collaboration features such as bug tracking, feature requests, task management, and wikis for each project. It provides a number of different access levels, from free through to paid services.", "abbreviation": "GitHub", "support-links": [{"url": "https://support.github.com/contact", "name": "Contact Form and Help Pages", "type": "Github"}, {"url": "https://github.community/", "name": "GitHub Support Community", "type": "Github"}, {"url": "https://help.github.com/", "name": "Help", "type": "Github"}, {"url": "https://services.github.com/", "name": "Services Listing", "type": "Github"}], "year-creation": 2007, "data-processes": [{"url": "https://github.com/explore", "name": "browse", "type": "data access"}, {"url": "https://github.com/login?return_to=%2Fmarketplace", "name": "login", "type": "data access"}, {"url": "https://github.com/", "name": "search", "type": "data access"}], "associated-tools": [{"url": "https://github.com/features/code-review/", "name": "Code review"}, {"url": "https://github.com/features/project-management/", "name": "Project management"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010375", "name": "re3data:r3d100010375", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002630", "name": "SciCrunch:RRID:SCR_002630", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001160", "bsg-d001160"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GitHub", "abbreviation": "GitHub", "url": "https://fairsharing.org/10.25504/FAIRsharing.c55d5e", "doi": "10.25504/FAIRsharing.c55d5e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GitHub Inc. is a Git-based software repository that provides version control. It offers all of the distributed version control and source code management (SCM) functionality of Git as well as adding its own features. It provides access control and several collaboration features such as bug tracking, feature requests, task management, and wikis for each project. It provides a number of different access levels, from free through to paid services.", "publications": [], "licence-links": [{"licence-name": "GitHub Terms of Service", "licence-id": 348, "link-id": 1663, "relation": "undefined"}, {"licence-name": "GitHub Privacy Statement", "licence-id": 347, "link-id": 1677, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3307", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-13T00:09:51.000Z", "updated-at": "2021-11-24T13:14:59.285Z", "metadata": {"doi": "10.25504/FAIRsharing.M6Ruz3", "name": "Open Data Commons for Spinal Cord Injury", "status": "ready", "contacts": [{"contact-name": "Jeffrey Grethe", "contact-email": "jgrethe@ucsd.edu", "contact-orcid": "0000-0001-5212-7052"}], "homepage": "https://odc-sci.org", "identifier": 3307, "description": "The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data. There are several challenges for scientific reproducibility and bench-to-bedside translation. For example, only research and data that are published actually get disseminated, a phenomenon known as publication bias. Published research reflects to only a small fraction of all data collected, and data that do not lead to publication are largely ignored, hidden away in filing cabinets and hard drives. This results in an abundance of inaccessible scientific data known as \u201cdark data\u201d. Even when research is disseminated, it is usually in the form of summary reports of aggregated data (e.g. averages across individual subjects) such as scientific articles. The fact that the individual subject-level data are inaccessible further contributes to dark data. The spinal cord injury (SCI) community created the ODC-SCI to mitigate dark data in SCI research. The ODC-SCI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-SCI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs\u2019 datasets with the registered members of the ODC-SCI community and make their datasets public and citable. The ODC-SCI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international SCI research community.", "abbreviation": "ODC-SCI", "access-points": [{"url": "https://github.com/SciCrunch/python-datasets-interface", "name": "Python interface to upload and download data from the Open Data Commons", "type": "Other"}], "support-links": [{"url": "info@odc-sci.org", "name": "ODC Help Email", "type": "Support email"}, {"url": "https://odc-sci.org/about/help", "name": "Help and FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://odc-sci.org/about/tutorials", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://odc-sci.org/about/tutorials#signup", "name": "Registration Levels", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://odc-sci.org/data/public", "name": "Download (Registration required)", "type": "data release"}, {"url": "https://odc-sci.org/data/public", "name": "Browse and Search", "type": "data access"}, {"url": "https://odc-sci.org/upload/community-components/ODC_SCI_Version_Control_Policy.pdf", "name": "ODC Version Control Policy", "type": "data versioning"}, {"url": "https://odc-sci.org/about/tutorials#upload", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001822", "bsg-d001822"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Neurology", "Biomedical Science", "Neuroscience"], "domains": ["Data storage"], "taxonomies": ["Homo sapiens", "Mus", "Rattus"], "user-defined-tags": ["Spinal Cord", "Spinal Cord Injury"], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: Open Data Commons for Spinal Cord Injury", "abbreviation": "ODC-SCI", "url": "https://fairsharing.org/10.25504/FAIRsharing.M6Ruz3", "doi": "10.25504/FAIRsharing.M6Ruz3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data. There are several challenges for scientific reproducibility and bench-to-bedside translation. For example, only research and data that are published actually get disseminated, a phenomenon known as publication bias. Published research reflects to only a small fraction of all data collected, and data that do not lead to publication are largely ignored, hidden away in filing cabinets and hard drives. This results in an abundance of inaccessible scientific data known as \u201cdark data\u201d. Even when research is disseminated, it is usually in the form of summary reports of aggregated data (e.g. averages across individual subjects) such as scientific articles. The fact that the individual subject-level data are inaccessible further contributes to dark data. The spinal cord injury (SCI) community created the ODC-SCI to mitigate dark data in SCI research. The ODC-SCI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-SCI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs\u2019 datasets with the registered members of the ODC-SCI community and make their datasets public and citable. The ODC-SCI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international SCI research community.", "publications": [{"id": 1150, "pubmed_id": 26466022, "title": "Topological data analysis for discovery in preclinical spinal cord injury and traumatic brain injury.", "year": 2015, "url": "http://doi.org/10.1038/ncomms9581", "authors": "Nielson JL,Paquette J,Liu AW,Guandique CF,Tovar CA,Inoue T,Irvine KA,Gensel JC,Kloke J,Petrossian TC,Lum PY,Carlsson GE,Manley GT,Young W,Beattie MS,Bresnahan JC,Ferguson AR", "journal": "Nat Commun", "doi": "10.1038/ncomms9581", "created_at": "2021-09-30T08:24:27.859Z", "updated_at": "2021-09-30T08:24:27.859Z"}, {"id": 1166, "pubmed_id": 22207883, "title": "Syndromics: a bioinformatics approach for neurotrauma research.", "year": 2011, "url": "http://doi.org/10.1007/s12975-011-0121-1", "authors": "Ferguson AR,Stuck ED,Nielson JL", "journal": "Transl Stroke Res", "doi": "10.1007/s12975-011-0121-1", "created_at": "2021-09-30T08:24:29.606Z", "updated_at": "2021-09-30T08:24:29.606Z"}, {"id": 2047, "pubmed_id": 25077610, "title": "Development of a database for translational spinal cord injury research.", "year": 2014, "url": "http://doi.org/10.1089/neu.2014.3399", "authors": "Nielson JL, et al", "journal": "J Neurotrauma", "doi": "10.1089/neu.2014.3399", "created_at": "2021-09-30T08:26:10.607Z", "updated_at": "2021-09-30T08:26:10.607Z"}, {"id": 2049, "pubmed_id": 23544088, "title": "Derivation of multivariate syndromic outcome metrics for consistent testing across multiple models of cervical spinal cord injury in rats.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0059712", "authors": "Ferguson AR,Irvine KA,Gensel JC,Nielson JL,Lin A,Ly J,Segal MR,Ratan RR,Bresnahan JC,Beattie MS", "journal": "PLoS One", "doi": "10.1371/journal.pone.0059712", "created_at": "2021-09-30T08:26:10.816Z", "updated_at": "2021-09-30T08:26:10.816Z"}, {"id": 2062, "pubmed_id": 31608767, "title": "FAIR SCI Ahead: The Evolution of the Open Data Commons for Pre-Clinical Spinal Cord Injury Research.", "year": 2019, "url": "http://doi.org/10.1089/neu.2019.6674", "authors": "Fouad K,Bixby JL,Callahan A,Grethe JS,Jakeman LB,Lemmon VP,Magnuson DSK,Martone ME,Nielson JL,Schwab JM,Taylor-Burds C,Tetzlaff W,Torres-Espin A,Ferguson AR", "journal": "J Neurotrauma", "doi": "10.1089/neu.2019.6674", "created_at": "2021-09-30T08:26:12.349Z", "updated_at": "2021-09-30T08:26:12.349Z"}, {"id": 2081, "pubmed_id": 28576567, "title": "Developing a data sharing community for spinal cord injury research.", "year": 2017, "url": "http://doi.org/S0014-4886(17)30137-1", "authors": "Callahan A,Anderson KD,Beattie MS,Bixby JL,Ferguson AR,Fouad K,Jakeman LB,Nielson JL,Popovich PG,Schwab JM,Lemmon VP", "journal": "Exp Neurol", "doi": "S0014-4886(17)30137-1", "created_at": "2021-09-30T08:26:14.641Z", "updated_at": "2021-09-30T08:26:14.641Z"}, {"id": 2083, "pubmed_id": 25349910, "title": "Big data from small data: data-sharing in the 'long tail' of neuroscience.", "year": 2014, "url": "http://doi.org/10.1038/nn.3838", "authors": "Ferguson AR,Nielson JL,Cragin MH,Bandrowski AE,Martone ME", "journal": "Nat Neurosci", "doi": "10.1038/nn.3838", "created_at": "2021-09-30T08:26:14.856Z", "updated_at": "2021-09-30T08:26:14.856Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 49, "relation": "undefined"}, {"licence-name": "ODC-SCI Policies", "licence-id": 609, "link-id": 50, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1598", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:01.980Z", "metadata": {"doi": "10.25504/FAIRsharing.ae956n", "name": "Integrated Microbial Genomes And Microbiomes", "status": "ready", "contacts": [{"contact-name": "Victor M. Markowitz", "contact-email": "VMMarkowitz@lbl.gov"}], "homepage": "http://img.jgi.doe.gov/cgi-bin/m/main.cgi", "citations": [{"doi": "10.1093/nar/gky901", "pubmed-id": 30289528, "publication-id": 3049}], "identifier": 1598, "description": "The Integrated Microbial Genomes (IMG/M) aims to support the annotation, analysis and distribution of microbial genome and microbiome datasets sequenced at DOE's Joint Genome Institute (JGI). It also serves as a community resource for analysis and annotation of genome and metagenome datasets in a comprehensive comparative context. The IMG data warehouse integrates genome and metagenome datasets provided by IMG users with a set of publicly available genome and metagenome datasets. IMG/M is also open to scientists worldwide for the annotation, analysis, and distribution of their own genome and microbiome datasets, as long as they agree with the IMG/M data release policy and follow the metadata requirements for integrating data into IMG/M.", "abbreviation": "IMG/M", "support-links": [{"url": "https://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=Questions", "name": "Contact Form", "type": "Contact form"}, {"url": "https://img.jgi.doe.gov/docs/submission/", "name": "Submission FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://img.jgi.doe.gov/docs/faq", "name": "General FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/a/lbl.gov/g/img-user-forum", "name": "IMG User Forum", "type": "Forum"}, {"url": "https://img.jgi.doe.gov/help.html", "name": "Help", "type": "Help documentation"}, {"url": "https://img.jgi.doe.gov/docs/DownloadingIMGSequenceAndAnnotationData.pdf", "name": "Download IMG Sequence & Annotation Data (PDF)", "type": "Help documentation"}, {"url": "https://img.jgi.doe.gov/docs/DownloadIMGgenesAnnotated.pdf", "name": "Download IMG Genes Annotated with Specific Function (PDF)", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "Downloads Available", "type": "data release"}, {"url": "https://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=CompareGenomes&page=compareGenomes", "name": "Compare Genomes", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=FindFunctions&page=findFunctions", "name": "Find Functions", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=GeneSearch&page=searchForm", "name": "Find Genes", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/m/main.cgi?section=GenomeSearch&page=searchForm", "name": "Find Genomes", "type": "data access"}]}, "legacy-ids": ["biodbcore-000053", "bsg-d000053"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Genomics", "Comparative Genomics"], "domains": ["Citation", "Protein domain", "DNA sequence data", "Gene Ontology enrichment", "Transmembrane protein prediction", "Genome annotation", "Protein cleavage site prediction", "Computational biological predictions", "Protein identification", "Ribonucleic acid", "Gene model annotation", "Transport", "Molecular interaction", "Enzyme", "Plasmid", "Protein expression profiling", "RNA sequencing", "Phenotype", "Pseudogene", "Orthologous", "Genome", "Microbiome"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota", "Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Microbial Genomes And Microbiomes", "abbreviation": "IMG/M", "url": "https://fairsharing.org/10.25504/FAIRsharing.ae956n", "doi": "10.25504/FAIRsharing.ae956n", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Microbial Genomes (IMG/M) aims to support the annotation, analysis and distribution of microbial genome and microbiome datasets sequenced at DOE's Joint Genome Institute (JGI). It also serves as a community resource for analysis and annotation of genome and metagenome datasets in a comprehensive comparative context. The IMG data warehouse integrates genome and metagenome datasets provided by IMG users with a set of publicly available genome and metagenome datasets. IMG/M is also open to scientists worldwide for the annotation, analysis, and distribution of their own genome and microbiome datasets, as long as they agree with the IMG/M data release policy and follow the metadata requirements for integrating data into IMG/M.", "publications": [{"id": 1944, "pubmed_id": 16873494, "title": "An experimental metagenome data management and analysis system.", "year": 2006, "url": "http://doi.org/10.1093/bioinformatics/btl217", "authors": "Markowitz VM., Ivanova N., Palaniappan K., Szeto E., Korzeniewski F., Lykidis A., Anderson I., Mavromatis K., Mavrommatis K., Kunin V., Garcia Martin H., Dubchak I., Hugenholtz P., Kyrpides NC.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btl217", "created_at": "2021-09-30T08:25:58.757Z", "updated_at": "2021-09-30T08:25:58.757Z"}, {"id": 3049, "pubmed_id": 30289528, "title": "IMG/M v.5.0: an integrated data management and comparative analysis system for microbial genomes and microbiomes.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky901", "authors": "Chen IA,Chu K,Palaniappan K,Pillay M,Ratner A,Huang J,Huntemann M,Varghese N,White JR,Seshadri R,Smirnova T,Kirton E,Jungbluth SP,Woyke T,Eloe-Fadrosh EA,Ivanova NN,Kyrpides NC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky901", "created_at": "2021-09-30T08:28:15.729Z", "updated_at": "2021-09-30T11:29:50.129Z"}, {"id": 3053, "pubmed_id": 17932063, "title": "IMG/M: a data management and analysis system for metagenomes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm869", "authors": "Markowitz VM., Ivanova NN., Szeto E., Palaniappan K., Chu K., Dalevi D., Chen IM., Grechkin Y., Dubchak I., Anderson I., Lykidis A., Mavromatis K., Hugenholtz P., Kyrpides NC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm869", "created_at": "2021-09-30T08:28:16.199Z", "updated_at": "2021-09-30T08:28:16.199Z"}, {"id": 3054, "pubmed_id": 24165883, "title": "IMG 4 version of the integrated microbial genomes comparative analysis system.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt963", "authors": "Markowitz VM,Chen IM,Palaniappan K,Chu K,Szeto E,Pillay M,Ratner A,Huang J,Woyke T,Huntemann M,Anderson I,Billis K,Varghese N,Mavromatis K,Pati A,Ivanova NN,Kyrpides NC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt963", "created_at": "2021-09-30T08:28:16.347Z", "updated_at": "2021-09-30T11:29:50.312Z"}], "licence-links": [{"licence-name": "JGI Data Management Policy, Practices & Resources", "licence-id": 469, "link-id": 1970, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 1971, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2169", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:21.166Z", "metadata": {"doi": "10.25504/FAIRsharing.vszknv", "name": "Nuclear Receptor Signaling Atlas", "status": "deprecated", "contacts": [{"contact-name": "Neil McKenna", "contact-email": "nmckenna@bcm.edu", "contact-orcid": "0000-0001-6689-0104"}], "homepage": "http://www.nursa.org", "identifier": 2169, "description": "The mission of NURSA is to accrue, develop, and communicate information that advances our understanding of the roles of nuclear receptors (NRs) and coregulators in human physiology and disease.", "abbreviation": "NURSA", "support-links": [{"url": "https://twitter.com/NURSATweets", "type": "Twitter"}], "year-creation": 2003, "associated-tools": [{"url": "http://www.nursa.org/transcriptomine", "name": "Transcriptomine 1.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011298", "name": "re3data:r3d100011298", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003287", "name": "SciCrunch:RRID:SCR_003287", "portal": "SciCrunch"}], "deprecation-date": "2019-11-01", "deprecation-reason": "This resource has been retired."}, "legacy-ids": ["biodbcore-000641", "bsg-d000641"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Transcriptomics", "Cell Biology", "Biomedical Science"], "domains": ["Expression data", "Nuclear receptor", "Disease"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Nuclear Receptor Signaling Atlas", "abbreviation": "NURSA", "url": "https://fairsharing.org/10.25504/FAIRsharing.vszknv", "doi": "10.25504/FAIRsharing.vszknv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The mission of NURSA is to accrue, develop, and communicate information that advances our understanding of the roles of nuclear receptors (NRs) and coregulators in human physiology and disease.", "publications": [{"id": 653, "pubmed_id": 19423650, "title": "Minireview: Evolution of NURSA, the Nuclear Receptor Signaling Atlas.", "year": 2009, "url": "http://doi.org/10.1210/me.2009-0135", "authors": "McKenna NJ, Cooney AJ, DeMayo FJ, Downes M, Glass CK, Lanz RB, Lazar MA, Mangelsdorf DJ, Moore DD, Qin J, Steffen DL, Tsai MJ, Tsai SY, Yu R, Margolis RN, Evans RM, O'Malley BW.", "journal": "Molecular Endocrinology", "doi": "10.1210/me.2009-0135", "created_at": "2021-09-30T08:23:32.035Z", "updated_at": "2021-09-30T08:23:32.035Z"}, {"id": 697, "pubmed_id": 16381851, "title": "Nuclear Receptor Signaling Atlas (www.nursa.org): hyperlinking the nuclear receptor signaling community.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj029", "authors": "Lanz RB., Jericevic Z., Zuercher WJ., Watkins C., Steffen DL., Margolis R., McKenna NJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj029", "created_at": "2021-09-30T08:23:36.870Z", "updated_at": "2021-09-30T08:23:36.870Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2300", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-30T01:32:13.000Z", "updated-at": "2021-12-06T10:49:02.280Z", "metadata": {"doi": "10.25504/FAIRsharing.pwgf4p", "name": "Japanese Genotype-phenotype Archive", "status": "ready", "homepage": "https://www.ddbj.nig.ac.jp/jga", "identifier": 2300, "description": "The Japanese Genotype-phenotype Archive (JGA) is a service for permanent archiving and sharing of all types of individual-level genetic and de-identified phenotypic data resulting from biomedical research projects. The JGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the JGA. Once processed, all data are encrypted.", "abbreviation": "JGA", "access-points": [{"url": "https://www.ddbj.nig.ac.jp/services/wabi-e.html", "name": "General DDBJ API", "type": "REST"}], "support-links": [{"url": "https://www.ddbj.nig.ac.jp/contact-ddbj-e.html", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html?keyword%5B%5D=jga", "name": "JGA FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2013, "data-processes": [{"url": "https://ddbj.nig.ac.jp/public/ddbj_database/dra/fastq", "name": "Download (FTP)", "type": "data release"}, {"url": "https://www.ddbj.nig.ac.jp/jga/submission-step-e.html", "name": "Submit", "type": "data curation"}, {"url": "https://humandbs.biosciencedbc.jp/en/data-use/all-researches", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012689", "name": "re3data:r3d100012689", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003118", "name": "SciCrunch:RRID:SCR_003118", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000774", "bsg-d000774"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenetics", "Human Genetics", "Biomedical Science"], "domains": ["Expression data", "Genetic polymorphism", "Phenotype", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Japanese Genotype-phenotype Archive", "abbreviation": "JGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.pwgf4p", "doi": "10.25504/FAIRsharing.pwgf4p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Japanese Genotype-phenotype Archive (JGA) is a service for permanent archiving and sharing of all types of individual-level genetic and de-identified phenotypic data resulting from biomedical research projects. The JGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the JGA. Once processed, all data are encrypted.", "publications": [{"id": 1188, "pubmed_id": 25477381, "title": "The DDBJ Japanese Genotype-phenotype Archive for genetic and phenotypic human data", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1120", "authors": "Yuichi Kodama, Jun Mashima, Takehide Kosuge, Toshiaki Katayama, Takatomo Fujisawa, Eli Kaminuma, Osamu Ogasawara, Kousaku Okubo, Toshihisa Takagi and Yasukazu Nakamura", "journal": "Nucl. Acids Res.", "doi": "10.1093/nar/gku1120", "created_at": "2021-09-30T08:24:32.103Z", "updated_at": "2021-09-30T08:24:32.103Z"}], "licence-links": [{"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 604, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2677", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-13T10:10:00.000Z", "updated-at": "2021-11-24T13:17:43.969Z", "metadata": {"doi": "10.25504/FAIRsharing.0apk2r", "name": "smartAPI repository", "status": "ready", "contacts": [{"contact-name": "Chunlei Wu", "contact-email": "cwu@scripps.edu", "contact-orcid": "0000-0002-2629-6124"}], "homepage": "http://smart-api.info/registry", "citations": [{"publication-id": 2435}], "identifier": 2677, "description": "The smartAPI repository is a human and machine accessible database of web-based application programming interfaces that are described using the smartAPI specification (based on the OpenAPI initiative).", "access-points": [{"url": "http://smart-api.info/ui/27a5b60716c3a401f2c021a5b718c5b1", "name": "The API to access the smartAPI registry", "type": "REST"}], "support-links": [{"url": "https://smart-api.info/guide", "name": "SmartAPI Guide", "type": "Help documentation"}, {"url": "https://smart-api.info/documentation", "name": "SmartAPI Documentation", "type": "Help documentation"}, {"url": "https://smart-api.info/about", "name": "About SmartAPI", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://smart-api.info/login?next=/add_api", "name": "Add an API (Data Submission)", "type": "data curation"}], "associated-tools": [{"url": "https://smart-api.info/editor", "name": "API Editor"}]}, "legacy-ids": ["biodbcore-001171", "bsg-d001171"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computer Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States", "Netherlands"], "name": "FAIRsharing record for: smartAPI repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.0apk2r", "doi": "10.25504/FAIRsharing.0apk2r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The smartAPI repository is a human and machine accessible database of web-based application programming interfaces that are described using the smartAPI specification (based on the OpenAPI initiative).", "publications": [{"id": 2435, "pubmed_id": null, "title": "smartAPI: Towards a More Intelligent Network of Web APIs", "year": 2017, "url": "https://link.springer.com/chapter/10.1007/978-3-319-58451-5_11", "authors": "M. Dumontier, S. Dastgheib, T. Whetzel, P. Assis, P. Avillach, K. Jagodnik, G. Korodi, M. Pilarczyk, S. Sch\u00fcrer, R. Terryn, R. Verborgh, and C. Wu", "journal": "Proceedings of the 25th conference on Intelligent Systems for Molecular Biology and the 16th European Conference on Computational Biology", "doi": null, "created_at": "2021-09-30T08:26:58.786Z", "updated_at": "2021-09-30T11:28:35.880Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 526, "relation": "undefined"}, {"licence-name": "SmartAPI Branding Conditions", "licence-id": 749, "link-id": 527, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2119", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:17.885Z", "metadata": {"doi": "10.25504/FAIRsharing.nvmk6r", "name": "Phosphorylation Site Database", "status": "deprecated", "contacts": [{"contact-email": "psite@vt.edu"}], "homepage": "http://www.phosphorylation.biochem.vt.edu/", "identifier": 2119, "description": "The Phosphorylation Site Database provides ready access to information from the primary scientific literature concerning proteins in prokaryotic organisms (i.e. members of the domains Archaea and Bacteria) that undergo covalent phosphorylation on the hydroxyl side chains of serine, threonine, and/or tyrosine residues", "abbreviation": "PSD", "deprecation-date": "2015-07-15", "deprecation-reason": "This resource has been retired and is no longer maintained."}, "legacy-ids": ["biodbcore-000589", "bsg-d000589"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Protein"], "taxonomies": [], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Phosphorylation Site Database", "abbreviation": "PSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.nvmk6r", "doi": "10.25504/FAIRsharing.nvmk6r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Phosphorylation Site Database provides ready access to information from the primary scientific literature concerning proteins in prokaryotic organisms (i.e. members of the domains Archaea and Bacteria) that undergo covalent phosphorylation on the hydroxyl side chains of serine, threonine, and/or tyrosine residues", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2211", "type": "fairsharing-records", "attributes": {"created-at": "2015-06-25T15:28:36.000Z", "updated-at": "2021-12-06T10:49:04.777Z", "metadata": {"doi": "10.25504/FAIRsharing.qr6pqk", "name": "NCBI BioSample", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "biosamplehelp@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/biosample", "identifier": 2211, "description": "The NCBI BioSample database stores submitter-supplied descriptive information, or metadata, about the biological materials from which data stored in NCBI\u2019s primary data archives are derived. NCBI\u2019s archives host data from diverse types of samples from any species, so the BioSample database is similarly diverse; typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism or an environmental isolate. The BioSample database promotes the use of structured and consistent attribute names and values that describe what the samples are as well as information about their provenance, where appropriate.", "abbreviation": "BioSample", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/biosample/docs/submission/faq/", "name": "Submission FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK3837/", "name": "Search Help", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/biosample/docs/", "name": "All Documentation", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK169436/", "name": "BioSample Handbook", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/data-clearinghouse-validation-and-curation-of-biosamples-ena-breeding-api-endpoints-mar-databases", "name": "Data clearinghouse, validation and curation of BioSamples/ENA/Breeding API endpoints/MAR databases", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/biosamples-quick-tour", "name": "BioSamples: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/biosamples-database-rdf-webinar", "name": "BioSamples Database RDF: webinar", "type": "TeSS links to training materials"}], "year-creation": 2011, "data-processes": [{"url": "https://submit.ncbi.nlm.nih.gov/subs/biosample/", "name": "Submit", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/biosample/docs/authenticate/", "name": "Search Authenticated Cell Lines", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/biosample/advanced", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012828", "name": "re3data:r3d100012828", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004854", "name": "SciCrunch:RRID:SCR_004854", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000685", "bsg-d000685"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biology"], "domains": ["Expression data", "Biological sample annotation", "DNA structural variation", "Cell line", "Biological sample", "Assay", "Sample preparation for assay", "Material processing", "Phenotype", "Sequence", "Genotype"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI BioSample", "abbreviation": "BioSample", "url": "https://fairsharing.org/10.25504/FAIRsharing.qr6pqk", "doi": "10.25504/FAIRsharing.qr6pqk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCBI BioSample database stores submitter-supplied descriptive information, or metadata, about the biological materials from which data stored in NCBI\u2019s primary data archives are derived. NCBI\u2019s archives host data from diverse types of samples from any species, so the BioSample database is similarly diverse; typical examples of a BioSample include a cell line, a primary tissue biopsy, an individual organism or an environmental isolate. The BioSample database promotes the use of structured and consistent attribute names and values that describe what the samples are as well as information about their provenance, where appropriate.", "publications": [{"id": 514, "pubmed_id": 22139929, "title": "BioProject and BioSample databases at NCBI: facilitating capture and organization of metadata.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1163", "authors": "Barrett T,Clark K,Gevorgyan R,Gorelenkov V,Gribov E,Karsch-Mizrachi I,Kimelman M,Pruitt KD,Resenchuk S,Tatusova T,Yaschenko E,Ostell J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1163", "created_at": "2021-09-30T08:23:16.098Z", "updated_at": "2021-09-30T11:28:46.975Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 549, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2749", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-19T12:59:50.000Z", "updated-at": "2021-11-24T13:16:21.011Z", "metadata": {"name": "Collaborative Open Plant Omics", "status": "in_development", "contacts": [{"contact-name": "Felix Shaw", "contact-email": "felix.shaw@earlham.ac.uk", "contact-orcid": "0000-0001-9649-5906"}], "homepage": "https://copo-project.org/", "citations": [{"publication-id": 536}], "identifier": 2749, "description": "COPO is a portal for plant scientists to describe, store and retrieve data more easily, using community standards and public repositories that enable the open sharing of results. COPO can link your outputs to your ORCiD profile. By tracking unique identifiers and DOIs, COPO can provide a way to monitor usage and get credit for your work, such as source code or research data, which still are not typically cited in the majority of scientific papers. COPO Wizards allow metadata to be added to your research objects with guided help and natural workflows. COPO can suggest metadata that might be appropriate for your data based on past submissions and similar workflows.", "abbreviation": "COPO", "support-links": [{"url": "https://copo-project.readthedocs.io/en/latest/", "name": "User Guide", "type": "Help documentation"}], "data-processes": [{"url": "https://copo-project.org/copo/login/?next=/copo/", "name": "ORCID login to access data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001247", "bsg-d001247"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Data Management"], "domains": ["Experimental measurement", "Publication", "Workflow", "Protocol", "Study design"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Collaborative Open Plant Omics", "abbreviation": "COPO", "url": "https://fairsharing.org/fairsharing_records/2749", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COPO is a portal for plant scientists to describe, store and retrieve data more easily, using community standards and public repositories that enable the open sharing of results. COPO can link your outputs to your ORCiD profile. By tracking unique identifiers and DOIs, COPO can provide a way to monitor usage and get credit for your work, such as source code or research data, which still are not typically cited in the majority of scientific papers. COPO Wizards allow metadata to be added to your research objects with guided help and natural workflows. COPO can suggest metadata that might be appropriate for your data based on past submissions and similar workflows.", "publications": [{"id": 536, "pubmed_id": null, "title": "COPO: a metadata platform for brokering FAIR data in the life sciences", "year": 2020, "url": "https://doi.org/10.12688/f1000research.23889.1", "authors": "Shaw F, Etuk A, Minotto A et al.", "journal": "F1000 Research", "doi": null, "created_at": "2021-09-30T08:23:18.568Z", "updated_at": "2021-09-30T08:23:18.568Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2347", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-18T09:17:58.000Z", "updated-at": "2021-11-24T13:19:33.085Z", "metadata": {"doi": "10.25504/FAIRsharing.yzagph", "name": "Common Data Index", "status": "ready", "contacts": [{"contact-email": "sdn-userdesk@seadatanet.org"}], "homepage": "https://www.seadatanet.org/Metadata/CDI-Common-Data-Index", "identifier": 2347, "description": "The Common Data Index (CDI) service gives users a highly detailed insight in the availability and geographical spreading of marine data sets that are managed by the SeaDataNet data centres. Moreover it provides a unique interface for requesting access, and if granted, for downloading data sets from the distributed data centres across Europe.", "abbreviation": "CDI", "support-links": [{"url": "http://www.seadatanet.org/Overview/FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.seadatanet.org/Data-Access/Data-policy", "type": "Help documentation"}, {"url": "http://www.seadatanet.org/Data-Access/How-to-contribute", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://www.seadatanet.org/Data-Access/User-registration", "name": "Registration required for data download", "type": "data access"}, {"url": "http://seadatanet.maris2.nl/v_cdi_v3/browse_step.asp", "name": "Quick Search", "type": "data access"}, {"url": "http://seadatanet.maris2.nl/v_cdi_v3/search.asp", "name": "Extended Search", "type": "data access"}, {"url": "http://www.seadatanet.org/Data-Access/Request-Status-Manager-RSM", "name": "Request Status Manager", "type": "data access"}], "associated-tools": [{"url": "http://www.seadatanet.org/Standards-Software/Software/MIKADO", "name": "MIKADO 3.3.4"}]}, "legacy-ids": ["biodbcore-000825", "bsg-d000825"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: Common Data Index", "abbreviation": "CDI", "url": "https://fairsharing.org/10.25504/FAIRsharing.yzagph", "doi": "10.25504/FAIRsharing.yzagph", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Common Data Index (CDI) service gives users a highly detailed insight in the availability and geographical spreading of marine data sets that are managed by the SeaDataNet data centres. Moreover it provides a unique interface for requesting access, and if granted, for downloading data sets from the distributed data centres across Europe.", "publications": [], "licence-links": [{"licence-name": "SeaDataNet Data Access License 1.0", "licence-id": 741, "link-id": 1283, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2018", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:42.827Z", "metadata": {"doi": "10.25504/FAIRsharing.hn4mwm", "name": "NIDA Center on Genetics Studies", "status": "ready", "contacts": [{"contact-name": "John Rice", "contact-email": "john@zork.wustl.edu"}], "homepage": "https://nidagenetics.org/", "identifier": 2018, "description": "This resource stores and distributes clinical data and biomaterials (DNA samples and cell lines) available in the NIDA Genetics Initiative. This includes blood and other biospecimens along with phenotypic data.", "abbreviation": "NIDA CGS", "support-links": [{"url": "winkeles@psychiatry.wustl.edu", "type": "Support email"}, {"url": "https://nidagenetics.org/instructions-access-data-and-biomaterials", "type": "Help documentation"}], "data-processes": [{"url": "https://nidagenetics.org/available-data", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000484", "bsg-d000484"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Biomedical Science", "Preclinical Studies"], "domains": ["Deoxyribonucleic acid", "Substance abuse", "Addiction", "Biological sample", "Phenotype", "Disease", "Blood", "Drug dependence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIDA Center on Genetics Studies", "abbreviation": "NIDA CGS", "url": "https://fairsharing.org/10.25504/FAIRsharing.hn4mwm", "doi": "10.25504/FAIRsharing.hn4mwm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource stores and distributes clinical data and biomaterials (DNA samples and cell lines) available in the NIDA Genetics Initiative. This includes blood and other biospecimens along with phenotypic data.", "publications": [], "licence-links": [{"licence-name": "Access Policy for the NIDA Center for Genetic Studies", "licence-id": 6, "link-id": 780, "relation": "undefined"}, {"licence-name": "NIDA Distribution Agreement", "licence-id": 578, "link-id": 783, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1689", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:55.728Z", "metadata": {"doi": "10.25504/FAIRsharing.29zsb8", "name": "SNPedia", "status": "ready", "contacts": [{"contact-name": "Support email", "contact-email": "info@snpedia.com"}], "homepage": "http://SNPedia.com", "identifier": 1689, "description": "SNPedia is a wiki resource of the functional consequences of human genetic variation as published in peer-reviewed studies. Entries are formatted to allow associations to be assigned to single genotypes as well as sets of genotypes (genosets). Curation occurs through editorial, community/user, and semi-automated processes.", "abbreviation": "SNPedia", "support-links": [{"url": "http://snpedia.com/index.php/SNPedia:FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://snpedia.com/index.php/SNPedia:About", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/SNPedia", "type": "Wikipedia"}], "year-creation": 2006, "data-processes": [{"name": "file download (tab-delimited)", "type": "data access"}, {"name": "continuous release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "community curation", "type": "data curation"}, {"url": "http://snpedia.com/", "name": "browse", "type": "data access"}, {"name": "web service (JSON,XML)", "type": "data access"}, {"name": "semantic media wiki API", "type": "data access"}]}, "legacy-ids": ["biodbcore-000145", "bsg-d000145"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Genetics", "Life Science", "Biomedical Science"], "domains": ["Genetic polymorphism", "Curated information", "Single nucleotide polymorphism", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SNPedia", "abbreviation": "SNPedia", "url": "https://fairsharing.org/10.25504/FAIRsharing.29zsb8", "doi": "10.25504/FAIRsharing.29zsb8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SNPedia is a wiki resource of the functional consequences of human genetic variation as published in peer-reviewed studies. Entries are formatted to allow associations to be assigned to single genotypes as well as sets of genotypes (genosets). Curation occurs through editorial, community/user, and semi-automated processes.", "publications": [{"id": 1140, "pubmed_id": 22140107, "title": "SNPedia: a wiki supporting personal genome annotation, interpretation and analysis.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr798", "authors": "Cariaso M,Lennon G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr798", "created_at": "2021-09-30T08:24:26.705Z", "updated_at": "2021-09-30T11:29:00.485Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States (CC BY-NC-SA 3.0 US)", "licence-id": 185, "link-id": 155, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2297", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-17T16:08:13.000Z", "updated-at": "2021-11-24T13:13:56.428Z", "metadata": {"doi": "10.25504/FAIRsharing.wnk2eq", "name": "Medical Data Models", "status": "ready", "contacts": [{"contact-name": "Martin Dugas", "contact-email": "dugas@uni-muenster.de", "contact-orcid": "0000-0001-9740-0788"}], "homepage": "https://medical-data-models.org", "identifier": 2297, "description": "MDM-Portal (Medical Data-Models) is a meta-data registry for creating, analysing, sharing and reusing medical forms, developed by the Institute of Medical Informatics, University of Muenster in Germany. see also http://www.ncbi.nlm.nih.gov/pubmed/26868052 Electronic forms for documentation of patient data are an integral part within the workflow of physicians. A huge amount of data is collected either through routine documentation forms (EHRs) for electronic health records or as case report forms (CRFs) for clinical trials. This raises major scientific challenges for health care, since different health information systems are not necessarily compatible with each other and thus information exchange of structured data is hampered. Software vendors provide a variety of individual documentation forms according to their standard contracts, which function as isolated applications. Furthermore, free availability of those forms is rarely the case. Currently less than 5 % of medical forms are freely accessible. Based on this lack of transparency harmonization of data models in health care is extremely cumbersome, thus work and know-how of completed clinical trials and routine documentation in hospitals are hard to be re-used. The MDM-Portal serves as an infrastructure for academic (non-commercial) medical research to contribute a solution to this problem. It already contains more than 6,000 system-independent forms (CDISC ODM Format, www.cdisc.org, Operational Data Model) with more than 470,000 data-elements. This enables researchers to view, discuss, download and export forms in most common technical formats such as PDF, CSV, Excel, SQL, SPSS, R, etc. A growing user community will lead to a growing database of medical forms. In this matter, we would like to encourage all medical researchers to register and add forms and discuss existing forms.", "abbreviation": "MDM", "year-creation": 2011}, "legacy-ids": ["biodbcore-000771", "bsg-d000771"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Biomedical Science", "Translational Medicine"], "domains": ["Patient care", "Data model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Medical Data Models", "abbreviation": "MDM", "url": "https://fairsharing.org/10.25504/FAIRsharing.wnk2eq", "doi": "10.25504/FAIRsharing.wnk2eq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MDM-Portal (Medical Data-Models) is a meta-data registry for creating, analysing, sharing and reusing medical forms, developed by the Institute of Medical Informatics, University of Muenster in Germany. see also http://www.ncbi.nlm.nih.gov/pubmed/26868052 Electronic forms for documentation of patient data are an integral part within the workflow of physicians. A huge amount of data is collected either through routine documentation forms (EHRs) for electronic health records or as case report forms (CRFs) for clinical trials. This raises major scientific challenges for health care, since different health information systems are not necessarily compatible with each other and thus information exchange of structured data is hampered. Software vendors provide a variety of individual documentation forms according to their standard contracts, which function as isolated applications. Furthermore, free availability of those forms is rarely the case. Currently less than 5 % of medical forms are freely accessible. Based on this lack of transparency harmonization of data models in health care is extremely cumbersome, thus work and know-how of completed clinical trials and routine documentation in hospitals are hard to be re-used. The MDM-Portal serves as an infrastructure for academic (non-commercial) medical research to contribute a solution to this problem. It already contains more than 6,000 system-independent forms (CDISC ODM Format, www.cdisc.org, Operational Data Model) with more than 470,000 data-elements. This enables researchers to view, discuss, download and export forms in most common technical formats such as PDF, CSV, Excel, SQL, SPSS, R, etc. A growing user community will lead to a growing database of medical forms. In this matter, we would like to encourage all medical researchers to register and add forms and discuss existing forms.", "publications": [{"id": 1159, "pubmed_id": 26868052, "title": "Portal of medical data models: information infrastructure for medical research and healthcare", "year": 2016, "url": "http://doi.org/10.1093/database/bav121", "authors": "Dugas M, Neuhaus P, Meidt A, Doods J, Storck M, Bruland P, Varghese J", "journal": "Database", "doi": "10.1093/database/bav121", "created_at": "2021-09-30T08:24:28.885Z", "updated_at": "2021-09-30T08:24:28.885Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 912, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2477", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-05T12:52:05.000Z", "updated-at": "2021-11-24T13:16:30.680Z", "metadata": {"doi": "10.25504/FAIRsharing.7tz5g8", "name": "Nonindigenous Aquatic Species NAS IPT - USGS", "status": "ready", "contacts": [{"contact-email": "bison@usgs.gov"}], "homepage": "https://nas.er.usgs.gov/ipt/", "identifier": 2477, "description": "The Nonindigenous Aquatic Species (NAS) information resource for the United States Geological Survey has been established as a central repository for spatially referenced biogeographic accounts of introduced aquatic species. The program provides scientific reports, online/realtime queries, spatial data sets, distribution maps, and general information. The data are made available for use by biologists, interagency groups, and the general public. The geographical coverage is the United States.", "abbreviation": "NAS IPT - USGS", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://nas.er.usgs.gov/", "name": "Nonindigenous Aquatic Species Information Resource", "type": "Help documentation"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "data-processes": [{"url": "https://nas.er.usgs.gov/ipt/", "name": "Browse & search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000959", "bsg-d000959"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Nonindigenous Aquatic Species NAS IPT - USGS", "abbreviation": "NAS IPT - USGS", "url": "https://fairsharing.org/10.25504/FAIRsharing.7tz5g8", "doi": "10.25504/FAIRsharing.7tz5g8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Nonindigenous Aquatic Species (NAS) information resource for the United States Geological Survey has been established as a central repository for spatially referenced biogeographic accounts of introduced aquatic species. The program provides scientific reports, online/realtime queries, spatial data sets, distribution maps, and general information. The data are made available for use by biologists, interagency groups, and the general public. The geographical coverage is the United States.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 316, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 318, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 908, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 909, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2199", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T18:55:14.000Z", "updated-at": "2021-11-24T13:18:14.841Z", "metadata": {"doi": "10.25504/FAIRsharing.an0y9t", "name": "NanoMaterial Registry", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "nanoregistry@rti.org"}], "homepage": "https://nanohub.org/groups/nanomaterialregistry", "identifier": 2199, "description": "The Nanomaterial Registry is a central registry and growing repository of publicly-available nanomaterial data which are fully curated based upon a set of Minimal Information about Nanomaterials (MIAN). Each nanomaterial curated into the Registry provides the following information: Physico-characteristics \u2013 values, protocols, metadata; Information on the related biological and/or environmental studies; Instance of Characterization information \u2013 preparation, synthesis, and time frame leading up to the nanomaterial characterization; and Validation back to the Data Source, such as scholarly article, manufacturer\u2019s website. As both the original homepage (http://www.nanomaterialregistry.org/) and data browser are not functional, we have marked this record as Uncertain. Please get in touch with us if you have any information on this resource.", "abbreviation": "Nano Registry", "support-links": [{"url": "https://twitter.com/NanoRegistry", "name": "@NanoRegistry", "type": "Twitter"}], "year-creation": 2012, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000673", "bsg-d000673"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Nanotechnology", "Materials Science"], "domains": ["Curated information"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NanoMaterial Registry", "abbreviation": "Nano Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.an0y9t", "doi": "10.25504/FAIRsharing.an0y9t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Nanomaterial Registry is a central registry and growing repository of publicly-available nanomaterial data which are fully curated based upon a set of Minimal Information about Nanomaterials (MIAN). Each nanomaterial curated into the Registry provides the following information: Physico-characteristics \u2013 values, protocols, metadata; Information on the related biological and/or environmental studies; Instance of Characterization information \u2013 preparation, synthesis, and time frame leading up to the nanomaterial characterization; and Validation back to the Data Source, such as scholarly article, manufacturer\u2019s website. As both the original homepage (http://www.nanomaterialregistry.org/) and data browser are not functional, we have marked this record as Uncertain. Please get in touch with us if you have any information on this resource.", "publications": [{"id": 730, "pubmed_id": null, "title": "Nanomaterial registry: database that captures the minimal information about nanomaterial physico-chemical characteristics", "year": 2014, "url": "http://doi.org/10.1007/s11051-013-2219-8", "authors": "Mills, Karmann C. and Murry, Damaris and Guzan, Kimberly A. and Ostraat, Michele L.", "journal": "Journal of Nanoparticle Research", "doi": "10.1007/s11051-013-2219-8", "created_at": "2021-09-30T08:23:40.446Z", "updated_at": "2021-09-30T08:23:40.446Z"}, {"id": 731, "pubmed_id": 24098075, "title": "The Nanomaterial Registry: facilitating the sharing and analysis of data in the diverse nanomaterial community", "year": 2013, "url": "http://doi.org/10.2147/IJN.S40722", "authors": "Michele L Ostraat, Karmann C Mills, Kimberly A Guzan, and Damaris Murry", "journal": "Int J Nanomedicine", "doi": "10.2147/IJN.S40722", "created_at": "2021-09-30T08:23:40.545Z", "updated_at": "2021-09-30T08:23:40.545Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3178", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-20T11:41:32.000Z", "updated-at": "2021-12-06T10:47:37.987Z", "metadata": {"name": "Open Research Data Online", "status": "ready", "contacts": [], "homepage": "https://ordo.open.ac.uk/", "citations": [], "identifier": 3178, "description": "Open Research Data Online (ORDO) is The Open University's research data repository. Based upon the Figshare platform, ORDO can be used for the storage of live research data, but is particularly useful for archiving and publishing research data supporting a publication or once a project is completed.", "abbreviation": "ORDO", "support-links": [{"url": "https://www.open.ac.uk/libraryservices/forms/research-support-contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.open.ac.uk/library-research-support/research-data-management/ordo-uploading-your-data", "name": "How to Upload Data", "type": "Help documentation"}, {"url": "https://doi.org/10.21954/ou.rd.c.5077655.v3", "name": "Support Videos", "type": "Help documentation"}, {"url": "http://www.open.ac.uk/library-research-support/research-data-management/open-research-data-online-ordo-archival-research-data-management-policies", "name": "ORDO Research Data Management Policy", "type": "Help documentation"}, {"url": "http://www.open.ac.uk/library-research-support/research-data-management/open-research-data-online", "name": "About ORDO", "type": "Help documentation"}, {"url": "https://ordo.open.ac.uk/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.open.ac.uk/library-research-support/research-data-management/ordo-preparing-your-data-deposit", "name": "Preparing for Data Deposition", "type": "Help documentation"}, {"url": "http://www.open.ac.uk/library-research-support/research-data-management/ordo-looking-after-your-data", "name": "Data Submission Information", "type": "Help documentation"}], "data-processes": [{"url": "https://ordo.open.ac.uk/search", "name": "Search", "type": "data access"}, {"url": "https://ordo.open.ac.uk/category", "name": "Browse Categories", "type": "data access"}, {"url": "https://ordo.open.ac.uk/groups", "name": "Browse Groups", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012156", "name": "re3data:r3d100012156", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001689", "bsg-d001689"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Open Research Data Online", "abbreviation": "ORDO", "url": "https://fairsharing.org/fairsharing_records/3178", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open Research Data Online (ORDO) is The Open University's research data repository. Based upon the Figshare platform, ORDO can be used for the storage of live research data, but is particularly useful for archiving and publishing research data supporting a publication or once a project is completed.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2104, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2403", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-18T15:32:34.000Z", "updated-at": "2021-12-06T10:48:16.428Z", "metadata": {"doi": "10.25504/FAIRsharing.ad1zae", "name": "Ensembl Protists", "status": "ready", "contacts": [{"contact-name": "Paul Flicek", "contact-email": "flicek@ebi.ac.uk"}], "homepage": "http://protists.ensembl.org/index.html", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2403, "description": "Ensembl Protists stores protist genomes of interest, covering those involved in disease and of scientific interest. This includes genomes such as Plasmodium falciparum, Dictyostelium discoideum, Phytophthora infestans and Leishmania major. A majority of these genomes are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at EMBL-EBI, GenBank at the NCBI, and the DNA Database of Japan); in some cases, the annotation has been taken directly from the websites of the data generators", "abbreviation": "Ensembl Protists", "access-points": [{"url": "https://github.com/Ensembl", "name": "Ensembl Perl API", "type": "Other"}, {"url": "https://rest.ensembl.org", "name": "Ensembl REST API", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "Helpdesk", "type": "Support email"}, {"url": "https://protists.ensembl.org/info/", "name": "Help", "type": "Help documentation"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "Mailing List", "type": "Mailing list"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://protists.ensembl.org/Plasmodium_falciparum/Tools/VEP", "name": "Variant Effect Predictor", "type": "data access"}, {"url": "https://protists.ensembl.org/info/data/ftp/index.html", "name": "Download", "type": "data access"}, {"url": "https://protists.ensembl.org/species.html", "name": "Browse", "type": "data access"}, {"url": "https://protists.ensembl.org/index.html", "name": "Search", "type": "data access"}, {"url": "https://protists.ensembl.org/hmmer", "name": "HMMER", "type": "data access"}, {"url": "https://protists.ensembl.org/Plasmodium_falciparum/Tools/Blast", "name": "BLAST/BLAT", "type": "data access"}, {"url": "https://protists.ensembl.org/Plasmodium_falciparum/Tools/AssemblyConverter", "name": "Assembly Converter", "type": "data access"}, {"url": "https://protists.ensembl.org/Plasmodium_falciparum/Tools/IDMapper", "name": "ID History Converter", "type": "data access"}, {"url": "https://protists.ensembl.org/biomart/martview", "name": "BioMart", "type": "data access"}], "associated-tools": [{"url": "https://github.com/Ensembl/ensembl-tools/archive/release/103.zip", "name": "Variant Effect Predictor (Download Script)"}, {"url": "https://github.com/Ensembl/ensembl-tools/tree/release/103/scripts/id_history_converter", "name": "ID History Converter"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011200", "name": "re3data:r3d100011200", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013154", "name": "SciCrunch:RRID:SCR_013154", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000885", "bsg-d000885"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation"], "taxonomies": ["Protozoa"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: Ensembl Protists", "abbreviation": "Ensembl Protists", "url": "https://fairsharing.org/10.25504/FAIRsharing.ad1zae", "doi": "10.25504/FAIRsharing.ad1zae", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl Protists stores protist genomes of interest, covering those involved in disease and of scientific interest. This includes genomes such as Plasmodium falciparum, Dictyostelium discoideum, Phytophthora infestans and Leishmania major. A majority of these genomes are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at EMBL-EBI, GenBank at the NCBI, and the DNA Database of Japan); in some cases, the annotation has been taken directly from the websites of the data generators", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1099, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1114, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1960", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.506Z", "metadata": {"doi": "10.25504/FAIRsharing.gdqqm0", "name": "caArray", "status": "deprecated", "homepage": "https://array.nci.nih.gov/caarray/home.action", "identifier": 1960, "description": "The Cancer gene expression and microarray data of the National Cancer Institute", "abbreviation": "caArray", "deprecation-date": "2015-07-07", "deprecation-reason": "This resource is obsolete and no longer maintained. Data available via GEO (https://www.biosharing.org/biodbcore-000441). See https://wiki.nci.nih.gov/display/caArray2/caArray+Retirement+Announcement for more information."}, "legacy-ids": ["biodbcore-000426", "bsg-d000426"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Expression data"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: caArray", "abbreviation": "caArray", "url": "https://fairsharing.org/10.25504/FAIRsharing.gdqqm0", "doi": "10.25504/FAIRsharing.gdqqm0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cancer gene expression and microarray data of the National Cancer Institute", "publications": [], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 506, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1915", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:39.648Z", "metadata": {"doi": "10.25504/FAIRsharing.ek15yj", "name": "Integrated Tumor Transcriptome Array and Clinical data Analysis database", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "ittaca@curie.fr"}], "homepage": "http://bioinfo.curie.fr/ittaca", "identifier": 1915, "description": "ITTACA is a database created for Integrated Tumor Transcriptome Array and Clinical data Analysis. ITTACA centralizes public datasets containing both gene expression and clinical data and currently focuses on the types of cancer that are of particular interest to the Institut Curie: breast carcinoma, bladder carcinoma, and uveal melanoma.", "abbreviation": "ITTACA", "support-links": [{"url": "http://bioinfo-out.curie.fr/ittaca/documentation/documentation.html", "type": "Help documentation"}], "deprecation-date": "2021-06-24", "deprecation-reason": "Message on the homepage \"ITTACA website is closed\"."}, "legacy-ids": ["biodbcore-000380", "bsg-d000380"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Expression data", "Cancer", "Gene expression", "Tumor", "Diagnosis"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Integrated Tumor Transcriptome Array and Clinical data Analysis database", "abbreviation": "ITTACA", "url": "https://fairsharing.org/10.25504/FAIRsharing.ek15yj", "doi": "10.25504/FAIRsharing.ek15yj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ITTACA is a database created for Integrated Tumor Transcriptome Array and Clinical data Analysis. ITTACA centralizes public datasets containing both gene expression and clinical data and currently focuses on the types of cancer that are of particular interest to the Institut Curie: breast carcinoma, bladder carcinoma, and uveal melanoma.", "publications": [{"id": 1541, "pubmed_id": 16381943, "title": "ITTACA: a new database for integrated tumor transcriptome array and clinical data analysis.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj022", "authors": "Elfilali A,Lair S,Verbeke C,La Rosa P,Radvanyi F,Barillot E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj022", "created_at": "2021-09-30T08:25:12.590Z", "updated_at": "2021-09-30T11:29:13.103Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2525", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-13T14:30:03.000Z", "updated-at": "2021-12-06T10:48:56.337Z", "metadata": {"doi": "10.25504/FAIRsharing.nv6mrg", "name": "G-Node Data Infrastructure Services", "status": "ready", "contacts": [{"contact-name": "Thomas Wachtler", "contact-email": "info@g-node.org", "contact-orcid": "0000-0003-2015-6590"}], "homepage": "https://gin.g-node.org/", "citations": [], "identifier": 2525, "description": "The German Neuroinformatics Node's data infrastructure (GIN) services provide a platform for comprehensive and reproducible management and sharing of neuroscience data. Building on well established versioning technology, GIN offers the power of a web based repository management service combined with a distributed file storage. The service addresses the range of research data workflows starting from data analysis on the local workstation to remote collaboration and data publication.", "abbreviation": "GIN", "access-points": [{"url": "https://web.gin.g-node.org/api/v1/repos/", "name": "GIN REST API", "type": "REST"}], "support-links": [{"url": "https://gin.g-node.org/G-Node/Info/wiki/News", "name": "News", "type": "Blog/News"}, {"url": "https://web.gin.g-node.org/G-Node/Info/wiki", "name": "GIN FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2016, "data-processes": [{"url": "https://gin.g-node.org/explore/repos", "name": "Search & Browse", "type": "data access"}], "associated-tools": [{"url": "https://github.com/G-Node/gin-cli/releases/latest", "name": "GIN client latest"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012439", "name": "re3data:r3d100012439", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_015864", "name": "SciCrunch:RRID:SCR_015864", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001008", "bsg-d001008"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurophysiology", "Neuroscience"], "domains": ["Workflow"], "taxonomies": ["All"], "user-defined-tags": ["Neuroinformatics"], "countries": ["Germany"], "name": "FAIRsharing record for: G-Node Data Infrastructure Services", "abbreviation": "GIN", "url": "https://fairsharing.org/10.25504/FAIRsharing.nv6mrg", "doi": "10.25504/FAIRsharing.nv6mrg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The German Neuroinformatics Node's data infrastructure (GIN) services provide a platform for comprehensive and reproducible management and sharing of neuroscience data. Building on well established versioning technology, GIN offers the power of a web based repository management service combined with a distributed file storage. The service addresses the range of research data workflows starting from data analysis on the local workstation to remote collaboration and data publication.", "publications": [], "licence-links": [{"licence-name": "GIN Terms of Use", "licence-id": 345, "link-id": 1969, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2901", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-10T13:33:20.000Z", "updated-at": "2022-02-08T10:31:47.970Z", "metadata": {"doi": "10.25504/FAIRsharing.3254c6", "name": "eLibrary of Microbial Systematics and Genomics", "status": "ready", "contacts": [{"contact-name": "Xiao-Yang Zhi", "contact-email": "xyzhi@ynu.edu.cn"}], "homepage": "https://www.biosino.org/elmsg/index", "identifier": 2901, "description": "The eLibrary of Microbial Systematics and Genomics (eLMSG) database provides a platform for microbial systematics, genomics and phenomics (polyphasic taxonomy related phenotypes). It includes information in areas such as microbial taxonomy, ecology, morphology, physiology, and molecular biology. It is intended as a reference for research in microbial systematics, comparative genomics, evolutionary biology, and microbiomes.", "abbreviation": "eLMSG", "support-links": [{"url": "https://www.biosino.org/elmsg/help", "name": "eLMSG Help", "type": "Help documentation"}, {"url": "https://www.biosino.org/elmsg/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.biosino.org/elmsg/about", "name": "About eLMSG", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://www.biosino.org/elmsg/browseTree", "name": "Browse Taxonomy Tree", "type": "data access"}, {"url": "https://www.biosino.org/elmsg/blast", "name": "Sequence Identification (BLAST)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001402", "bsg-d001402"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Microbial Ecology", "Genomics", "Taxonomy", "Microbial Genetics", "Phenomics", "Comparative Genomics"], "domains": ["Taxonomic classification", "Cell morphology", "Microbiome"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: eLibrary of Microbial Systematics and Genomics", "abbreviation": "eLMSG", "url": "https://fairsharing.org/10.25504/FAIRsharing.3254c6", "doi": "10.25504/FAIRsharing.3254c6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The eLibrary of Microbial Systematics and Genomics (eLMSG) database provides a platform for microbial systematics, genomics and phenomics (polyphasic taxonomy related phenotypes). It includes information in areas such as microbial taxonomy, ecology, morphology, physiology, and molecular biology. It is intended as a reference for research in microbial systematics, comparative genomics, evolutionary biology, and microbiomes.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2418", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-12T20:03:25.000Z", "updated-at": "2021-11-24T13:16:36.611Z", "metadata": {"doi": "10.25504/FAIRsharing.6cdn9x", "name": "Earthref.org", "status": "ready", "contacts": [{"contact-name": "Hubert Staudigel", "contact-email": "hstaudigel@ucsd.edu"}], "homepage": "https://earthref.org", "identifier": 2418, "description": "Earthref.org is a compilation of of databases, networks and repositories for data and models on Earth science. This internet resource supports the quantitative understanding of the Earth as a chemical, physical and biological system.", "abbreviation": "Earthref.org"}, "legacy-ids": ["biodbcore-000900", "bsg-d000900"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Earthref.org", "abbreviation": "Earthref.org", "url": "https://fairsharing.org/10.25504/FAIRsharing.6cdn9x", "doi": "10.25504/FAIRsharing.6cdn9x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Earthref.org is a compilation of of databases, networks and repositories for data and models on Earth science. This internet resource supports the quantitative understanding of the Earth as a chemical, physical and biological system.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 384, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2783", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-29T17:01:36.000Z", "updated-at": "2021-12-06T10:48:56.496Z", "metadata": {"doi": "10.25504/FAIRsharing.nYaZ1N", "name": "nmrshiftdb2", "status": "ready", "contacts": [{"contact-name": "Stefan Kuhn", "contact-email": "stefan.kuhn@dmu.ac.uk", "contact-orcid": "0000-0002-5990-4157"}], "homepage": "https://nmrshiftdb.nmr.uni-koeln.de/", "citations": [{"doi": "10.1002/mrc.4263", "pubmed-id": 25998807, "publication-id": 2187}], "identifier": 2783, "description": "nmrshiftdb2 is an NMR database for organic structures and their nuclear magnetic resonance (NMR) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. It also features peer-reviewed submission of datasets by its users. The nmrshiftdb2 software is open source, the data is published under an open content license.", "abbreviation": "nmrshiftdb2", "access-points": [{"url": "http://www.nmrshiftdb.org/axis/NMRShiftDB.wsdl", "name": "nmrshiftdb2 WSDL", "type": "SOAP"}], "support-links": [{"url": "nmrshiftdb2-admin@uni-koeln.de", "name": "nmrshiftdb2 support", "type": "Support email"}, {"url": "https://nmrshiftdb.nmr.uni-koeln.de/portal/media-type/html/user/anon/page/default.psml/template/ShowWebpage", "name": "nmrshiftdb2 FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/P-Help", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://sourceforge.net/p/nmrshiftdb2/wiki/Main_Page/", "name": "nmrshiftdb2 Wiki", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/P-Search", "name": "Search", "type": "data access"}, {"url": "https://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/P-Submit", "name": "Submit Data", "type": "data curation"}], "associated-tools": [{"url": "https://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/P-Quickcheck", "name": "Quick Check"}, {"url": "https://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/P-Predict", "name": "Predict an NMR Spectrum"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010316", "name": "re3data:r3d100010316", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001282", "bsg-d001282"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Analytical Chemistry"], "domains": ["Nuclear Magnetic Resonance (NMR) spectroscopy", "Small molecule"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "Germany"], "name": "FAIRsharing record for: nmrshiftdb2", "abbreviation": "nmrshiftdb2", "url": "https://fairsharing.org/10.25504/FAIRsharing.nYaZ1N", "doi": "10.25504/FAIRsharing.nYaZ1N", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: nmrshiftdb2 is an NMR database for organic structures and their nuclear magnetic resonance (NMR) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. It also features peer-reviewed submission of datasets by its users. The nmrshiftdb2 software is open source, the data is published under an open content license.", "publications": [{"id": 1674, "pubmed_id": 14632418, "title": "NMRShiftDB-constructing a free chemical information system with open-source components.", "year": 2003, "url": "http://doi.org/10.1021/ci0341363", "authors": "Steinbeck C,Krause S,Kuhn S", "journal": "J Chem Inf Comput Sci", "doi": "10.1021/ci0341363", "created_at": "2021-09-30T08:25:27.546Z", "updated_at": "2021-09-30T08:25:27.546Z"}, {"id": 2187, "pubmed_id": 25998807, "title": "Facilitating quality control for spectra assignments of small organic molecules: nmrshiftdb2--a free in-house NMR database with integrated LIMS for academic service laboratories.", "year": 2015, "url": "http://doi.org/10.1002/mrc.4263", "authors": "Kuhn S,Schlorer NE", "journal": "Magn Reson Chem", "doi": "10.1002/mrc.4263", "created_at": "2021-09-30T08:26:26.573Z", "updated_at": "2021-09-30T08:26:26.573Z"}, {"id": 2319, "pubmed_id": 15464159, "title": "NMRShiftDB -- compound identification and structure elucidation support through a free community-built web database.", "year": 2004, "url": "http://doi.org/10.1016/j.phytochem.2004.08.027", "authors": "Steinbeck C,Kuhn S", "journal": "Phytochemistry", "doi": "10.1016/j.phytochem.2004.08.027", "created_at": "2021-09-30T08:26:44.558Z", "updated_at": "2021-09-30T08:26:44.558Z"}], "licence-links": [{"licence-name": "nmrshiftdb2 data license", "licence-id": 594, "link-id": 480, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2184", "type": "fairsharing-records", "attributes": {"created-at": "2015-01-07T10:43:25.000Z", "updated-at": "2021-12-06T10:49:19.750Z", "metadata": {"doi": "10.25504/FAIRsharing.vcmz9h", "name": "SICAS Medical Image Repository", "status": "ready", "contacts": [{"contact-name": "Michael Kistler", "contact-email": "michael.kistler@si-cas.com", "contact-orcid": "0000-0002-1273-9473"}], "homepage": "https://www.smir.ch", "identifier": 2184, "description": "The Sicas Medical Image Repository is a medical database for academic, scientific, technical and clinical biomedical research and collaboration. Registration is required for data download and usage, although browsing and searching is available without registration.", "abbreviation": "SMIR", "access-points": [{"url": "https://www.smir.ch/api", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "https://blog.smir.ch", "name": "SMIR Blog", "type": "Blog/News"}, {"url": "support@smir.ch", "name": "support@smir.ch", "type": "Support email"}, {"url": "https://docs.smir.ch", "name": "Documentation", "type": "Help documentation"}, {"url": "https://github.com/SICASFoundation", "name": "GitHub Project", "type": "Github"}, {"url": "https://twitter.com/sicas_ch", "name": "@sicas_ch", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://demo.smir.ch/Home/Browse", "name": "Browse and Search Demo Version", "type": "data access"}, {"url": "https://www.smir.ch/objects/214315", "name": "Browse CT Data", "type": "data access"}, {"url": "https://www.smir.ch/objects/204388", "name": "Browse and Search HEAR-EU Data", "type": "data access"}, {"name": "Registration required for data upload and download", "type": "data access"}], "associated-tools": [{"url": "https://github.com/SICASFoundation/vsdConnect", "name": "vsdConnect - Python library to connect to the SMIR API 0.8.1"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011560", "name": "re3data:r3d100011560", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000658", "bsg-d000658"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Biomedical Science"], "domains": ["Image", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: SICAS Medical Image Repository", "abbreviation": "SMIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.vcmz9h", "doi": "10.25504/FAIRsharing.vcmz9h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Sicas Medical Image Repository is a medical database for academic, scientific, technical and clinical biomedical research and collaboration. Registration is required for data download and usage, although browsing and searching is available without registration.", "publications": [{"id": 709, "pubmed_id": 24220210, "title": "The Virtual Skeleton Database: An Open Access Repository for Biomedical Research and Collaboration", "year": 2013, "url": "http://doi.org/10.2196/jmir.2930", "authors": "Kistler, Michael; Bonaretti, Serena; Pfahrer, Marcel; Niklaus, Roman; B\u00fcchler, Philippe", "journal": "Journal of Medical Internet Research", "doi": "10.2196/jmir.2930", "created_at": "2021-09-30T08:23:38.185Z", "updated_at": "2021-09-30T08:23:38.185Z"}], "licence-links": [{"licence-name": "SMIR Terms and Conditions", "licence-id": 750, "link-id": 620, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3229", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-09T10:06:38.000Z", "updated-at": "2021-12-06T10:47:40.471Z", "metadata": {"name": "Taiwan Forestry Research Institute Data Catalog", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "data@tfri.gov.tw"}], "homepage": "http://metacat.tfri.gov.tw/tfri", "citations": [], "identifier": 3229, "description": "The TFRI focuses its work on conserving forest resources, restoring rare animals and plants, improving silvicultural techniques, managing natural forests and providing nature education among other activities. The TRFI\u2019s data catalog contains research data from the various divisions and projects spanning forests, plants, ecology and herbariums throughout the country.", "abbreviation": "TFRI Data Catalog", "data-curation": {}, "support-links": [{"url": "http://metacat.tfri.gov.tw/tfri/profile", "name": "Data information", "type": "Help documentation"}], "data-processes": [{"url": "http://metacat.tfri.gov.tw/tfri/data", "name": "Search & Browse", "type": "data access"}, {"url": "http://metacat.tfri.gov.tw/tfri/apply", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011311", "name": "re3data:r3d100011311", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001743", "bsg-d001743"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Botany", "Plant Ecology", "Forest Management", "Meteorology", "Ecology", "Biodiversity", "Earth Science", "Life Science", "Water Management"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Bioacoustic", "CO2 emission", "Lithology"], "countries": ["Taiwan"], "name": "FAIRsharing record for: Taiwan Forestry Research Institute Data Catalog", "abbreviation": "TFRI Data Catalog", "url": "https://fairsharing.org/fairsharing_records/3229", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The TFRI focuses its work on conserving forest resources, restoring rare animals and plants, improving silvicultural techniques, managing natural forests and providing nature education among other activities. The TRFI\u2019s data catalog contains research data from the various divisions and projects spanning forests, plants, ecology and herbariums throughout the country.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2221", "type": "fairsharing-records", "attributes": {"created-at": "2015-09-29T07:48:35.000Z", "updated-at": "2021-11-24T13:17:23.095Z", "metadata": {"doi": "10.25504/FAIRsharing.gbrmh4", "name": "Medaka Expression Pattern Database", "status": "ready", "contacts": [{"contact-name": "Juan L. Mateo", "contact-email": "juan.mateo@cos.uni-heidelberg.de", "contact-orcid": "0000-0001-9902-6048"}], "homepage": "http://mepd.cos.uni-heidelberg.de/", "identifier": 2221, "description": "MEPD contains expression data of genes and regulatory elements assayed in the Japanese killifish Medaka (Oryzias latipes).", "abbreviation": "MEPD", "year-creation": 2002, "data-processes": [{"url": "http://mepd.cos.uni-heidelberg.de/mepd/user/login.jsf", "name": "submit", "type": "data access"}, {"url": "http://mepd.cos.uni-heidelberg.de/mepd/forms/anatomy2.jsf", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000695", "bsg-d000695"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Endocrinology", "Genetics", "Life Science"], "domains": ["Expression data", "Sequence annotation", "Enhancer", "Promoter", "Gene"], "taxonomies": ["Oryzias latipes"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Medaka Expression Pattern Database", "abbreviation": "MEPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.gbrmh4", "doi": "10.25504/FAIRsharing.gbrmh4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MEPD contains expression data of genes and regulatory elements assayed in the Japanese killifish Medaka (Oryzias latipes).", "publications": [{"id": 751, "pubmed_id": 15879458, "title": "MEPD: a resource for medaka gene expression patterns.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti478", "authors": "Henrich T,Ramialison M,Wittbrodt B,Assouline B,Bourrat F,Berger A,Himmelbauer H,Sasaki T,Shimizu N,Westerfield M,Kondoh H,Wittbrodt J", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti478", "created_at": "2021-09-30T08:23:42.695Z", "updated_at": "2021-09-30T08:23:42.695Z"}, {"id": 781, "pubmed_id": 12519950, "title": "MEPD: a Medaka gene expression pattern database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg017", "authors": "Henrich T,Ramialison M,Quiring R,Wittbrodt B,Furutani-Seiki M,Wittbrodt J,Kondoh H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg017", "created_at": "2021-09-30T08:23:46.051Z", "updated_at": "2021-09-30T11:28:51.068Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3106", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-07T10:59:55.000Z", "updated-at": "2021-12-06T10:48:19.121Z", "metadata": {"doi": "10.25504/FAIRsharing.bLMnnR", "name": "ISRIC Soil Data Hub", "status": "ready", "contacts": [{"contact-name": "Niels H. Batjes", "contact-email": "niels.batjes@isric.org", "contact-orcid": "0000-0003-2367-3067"}], "homepage": "https://data.isric.org/geonetwork/srv/fre/catalog.search#/home", "citations": [{"publication-id": 528}], "identifier": 3106, "description": "The ISRIC Soil Data Hub is a central location for searching and downloading soil data layers from around the world. It provides access to a wide range of geo-referenced soil data, including soil profiles and individual soil attributes (WoSIS) as well as derived soil property maps for the world (SoilGrids250m). Many datasets are the result of international collaboration. ISRIC is the World Data Centre for Soils, a regular member of the International Science Council (ISC) World Data System.", "access-points": [{"url": "https://data.isric.org/", "name": "Website providing access to soil holdings (metadata catalogue)", "type": "Other"}, {"url": "https://soilgrids.org/", "name": "Platform for visualising/accessing soil property estimates for the world (SoilGrids250m), as well as soil point data (WoSIS)", "type": "Other"}], "support-links": [{"url": "https://www.isric.org/form/contact", "type": "Contact form"}, {"url": "https://www.isric.org/explore/soilgrids/faq-soilgrids", "name": "FAQ - SoilGrids250m (ver. 2020)", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.isric.org/explore/wosis/faq-wosis", "name": "FAQ - World Soil Information Service (WoSIS)", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2017, "data-processes": [{"url": "https://data.isric.org/geonetwork/srv/fre/catalog.search#/home", "name": "Browse soil data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013079", "name": "re3data:r3d100013079", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001614", "bsg-d001614"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Environmental Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["soil carbon", "Soil pH", "Soil texture"], "countries": ["Netherlands"], "name": "FAIRsharing record for: ISRIC Soil Data Hub", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bLMnnR", "doi": "10.25504/FAIRsharing.bLMnnR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ISRIC Soil Data Hub is a central location for searching and downloading soil data layers from around the world. It provides access to a wide range of geo-referenced soil data, including soil profiles and individual soil attributes (WoSIS) as well as derived soil property maps for the world (SoilGrids250m). Many datasets are the result of international collaboration. ISRIC is the World Data Centre for Soils, a regular member of the International Science Council (ISC) World Data System.", "publications": [{"id": 528, "pubmed_id": null, "title": "SoilGrids 2.0: producing soil information for the globe withquantified spatial uncertainty.", "year": 2020, "url": "https://soil.copernicus.org/preprints/soil-2020-65/", "authors": "de Sousa Ld, Poggio L, Batjes NH, Heuvelink GBM, Kempen B, Riberio E and Rossiter D", "journal": "Soil", "doi": null, "created_at": "2021-09-30T08:23:17.600Z", "updated_at": "2021-09-30T11:28:29.745Z"}, {"id": 530, "pubmed_id": null, "title": "Standardised soil profile data to support global mapping and modelling (WoSIS snapshot 2019)", "year": 2020, "url": "http://doi.org/https://doi.org/10.5194/essd-12-299-2020", "authors": "Batjes NH, Ribeiro E and van Oostrum A", "journal": "Earth Syst. Sci. Data", "doi": "https://doi.org/10.5194/essd-12-299-2020", "created_at": "2021-09-30T08:23:17.867Z", "updated_at": "2021-09-30T08:23:17.867Z"}], "licence-links": [{"licence-name": "ISRIC Data and Software Policy", "licence-id": 460, "link-id": 2084, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2248, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2250, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2251, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2322", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-03T11:02:04.000Z", "updated-at": "2021-11-24T13:14:51.720Z", "metadata": {"doi": "10.25504/FAIRsharing.yvhq61", "name": "Educational and Research Picture Archiving and Communication System", "status": "ready", "contacts": [{"contact-name": "Michal Javornik", "contact-email": "javor@ics.muni.cz"}], "homepage": "http://www.medimed.cz", "identifier": 2322, "description": "The core of the system is tailored PACS (Picture Archiving and Communication System). It forms the basis for educational and research applications such as the development of databases of case studies describing the treatment of real patients. Images appropriate for teaching or research purposes are made anonymous. This database is in Czech and has restricted access."}, "legacy-ids": ["biodbcore-000798", "bsg-d000798"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Medical imaging", "Imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Educational and Research Picture Archiving and Communication System", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.yvhq61", "doi": "10.25504/FAIRsharing.yvhq61", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The core of the system is tailored PACS (Picture Archiving and Communication System). It forms the basis for educational and research applications such as the development of databases of case studies describing the treatment of real patients. Images appropriate for teaching or research purposes are made anonymous. This database is in Czech and has restricted access.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2013", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:22.388Z", "metadata": {"doi": "10.25504/FAIRsharing.dt71b7", "name": "GeneNetwork", "status": "ready", "contacts": [{"contact-name": "Robert W Williams", "contact-email": "rwilliams@uthsc.edu"}], "homepage": "http://www.genenetwork.org/", "citations": [{"publication-id": 2973}], "identifier": 2013, "description": "GeneNetwork is a group of linked data sets and tools used to study complex networks of genes, molecules, and higher order gene function and phenotypes. GeneNetwork combines more than 25 years of legacy data generated by hundreds of scientists together with sequence data (SNPs) and massive transcriptome data sets (expression or eQTL data sets). GeneNetwork was created in 1994 as The Portable Dictionary of the Mouse Genome, and became WebQTL in 2001. In 2005 it was renamed GeneNetwork.", "abbreviation": "GeneNetwork", "access-points": [{"url": "https://github.com/genenetwork/genenetwork2/blob/testing/doc/API_readme.md", "name": "GN2 API", "type": "REST"}], "support-links": [{"url": "http://www.genenetwork.org/news", "name": "News", "type": "Blog/News"}, {"url": "http://gn1.genenetwork.org/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://gn1.genenetwork.org/glossary.html", "name": "Glossary", "type": "Help documentation"}, {"url": "http://www.genenetwork.org/policies", "name": "GeneNetwork Policies", "type": "Help documentation"}, {"url": "https://github.com/genenetwork/genenetwork2", "name": "GitHub GN2 Project", "type": "Github"}, {"url": "https://github.com/genenetwork/genenetwork1", "name": "GitHub GN1 Project", "type": "Github"}, {"url": "http://www.genenetwork.org/tutorials", "name": "Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/GeneNetwork2", "name": "@GeneNetwork2", "type": "Twitter"}], "year-creation": 1994, "data-processes": [{"url": "http://gn1.genenetwork.org/webqtl/main.py?FormID=batSubmit", "name": "Batch Submission", "type": "data curation"}, {"url": "http://www.genenetwork.org/submit_trait", "name": "Submit Trait", "type": "data curation"}, {"url": "http://ipfs.genenetwork.org/ipfs/", "name": "Download", "type": "data release"}, {"url": "http://gn2.genenetwork.org/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://www.genenetwork.org/dbResults.html", "name": "Genome Graph (visualization)"}, {"url": "http://www.genenetwork.org/webqtl/main.py?FormID=batSubmit", "name": "Batch Submission Tool"}, {"url": "http://www.genenetwork.org/snp_browser", "name": "Variant (SNP) Browser"}, {"url": "http://www.genenetwork.org/webqtl/main.py?FormID=qtlminer", "name": "QTLminer (analysis)"}, {"url": "http://power.genenetwork.org/", "name": "BDX Power Calculator"}]}, "legacy-ids": ["biodbcore-000479", "bsg-d000479"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Genetics", "Transcriptomics"], "domains": ["Expression data", "Network model", "Gene expression", "Phenotype", "Single nucleotide polymorphism", "Quantitative trait loci", "Genotype"], "taxonomies": ["Arabidopsis thaliana", "Drosophila melanogaster", "Glycine max", "Homo sapiens", "Hordeum vulgare L.", "Mus musculus", "Rhesus macaques", "Solanum lycopersicum"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Singapore", "Germany", "Australia", "Israel"], "name": "FAIRsharing record for: GeneNetwork", "abbreviation": "GeneNetwork", "url": "https://fairsharing.org/10.25504/FAIRsharing.dt71b7", "doi": "10.25504/FAIRsharing.dt71b7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneNetwork is a group of linked data sets and tools used to study complex networks of genes, molecules, and higher order gene function and phenotypes. GeneNetwork combines more than 25 years of legacy data generated by hundreds of scientists together with sequence data (SNPs) and massive transcriptome data sets (expression or eQTL data sets). GeneNetwork was created in 1994 as The Portable Dictionary of the Mouse Genome, and became WebQTL in 2001. In 2005 it was renamed GeneNetwork.", "publications": [{"id": 471, "pubmed_id": 15114364, "title": "WebQTL: rapid exploratory analysis of gene expression and genetic networks for brain and behavior.", "year": 2004, "url": "http://doi.org/10.1038/nn0504-485", "authors": "Chesler EJ., Lu L., Wang J., Williams RW., Manly KF.,", "journal": "Nat. Neurosci.", "doi": "10.1038/nn0504-485", "created_at": "2021-09-30T08:23:11.209Z", "updated_at": "2021-09-30T08:23:11.209Z"}, {"id": 2973, "pubmed_id": null, "title": "GeneNetwork: framework for web-based genetics", "year": 2016, "url": "https://doi.org/10.21105/joss.00025", "authors": "Zachary Sloan, Danny Arends, Karl W. Broman, Arthur Centeno, Nicholas Furlotte, Harm Nijveen, Lei Yan, Xiang Zhou, Robert W.Williams, and Pjotr Prins", "journal": "Journal of Open-Source Software", "doi": null, "created_at": "2021-09-30T08:28:06.358Z", "updated_at": "2021-09-30T08:28:06.358Z"}], "licence-links": [{"licence-name": "GNU Affero General Public License", "licence-id": 352, "link-id": 1424, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2624", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-24T09:24:29.000Z", "updated-at": "2022-01-27T15:46:03.163Z", "metadata": {"name": "BarleyBase", "status": "deprecated", "contacts": [{"contact-name": "Julie Dickerson", "contact-email": "julied@iastate.edu"}], "homepage": "http://barleybase.org", "citations": [], "identifier": 2624, "description": "BarleyBase is a public data resource of Affymetrix GeneChip data for plants.", "abbreviation": "BarleyBase", "support-links": [{"url": "http://www.plexdb.org/modules/PD_general/feedback.php", "type": "Contact form"}], "year-creation": 2001, "deprecation-date": "2022-01-27", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001111", "bsg-d001111"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Chromatin immunoprecipitation - DNA microarray", "DNA microarray"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BarleyBase", "abbreviation": "BarleyBase", "url": "https://fairsharing.org/fairsharing_records/2624", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BarleyBase is a public data resource of Affymetrix GeneChip data for plants.", "publications": [{"id": 2223, "pubmed_id": 15608273, "title": "BarleyBase--an expression profiling database for plant genomics.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki123", "authors": "Shen L,Gong J,Caldo RA,Nettleton D,Cook D,Wise RP,Dickerson JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki123", "created_at": "2021-09-30T08:26:30.496Z", "updated_at": "2021-09-30T11:29:31.236Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2547", "type": "fairsharing-records", "attributes": {"created-at": "2017-12-12T09:55:43.000Z", "updated-at": "2021-12-06T10:47:50.966Z", "metadata": {"doi": "10.25504/FAIRsharing.2dam97", "name": "Institut Laue-Langevin Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "epn-accueil@ill.fr"}], "homepage": "https://www.ill.eu/users/user-guide/after-your-experiment/data-management#c8867", "citations": [], "identifier": 2547, "description": "The Institut Laue-Langevin (ILL) Data Portal is a repository for storage and access to experimental data obtained at the ILL. While individual DOIs for data are accessible, full access to the database, including searching and browsing, requires a login.", "abbreviation": "ILL Data Portal", "data-curation": {}, "support-links": [{"url": "https://www.ill.eu/users/user-guide/after-your-experiment/data-management", "name": "Data Management User Guide", "type": "Help documentation"}, {"url": "https://data.ill.eu/doc", "name": "Help", "type": "Help documentation"}, {"url": "https://www.ill.eu/fileadmin/user_upload/ILL/3_Users/User_Guide/After_your_experiment/Data_management/ILL_data_management_policy_July_2017.pdf", "name": "ILL Data Policy", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://data.ill.eu/", "name": "Login", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012072", "name": "re3data:r3d100012072", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001030", "bsg-d001030"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Materials Science", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository", "Neutron Science"], "countries": ["France"], "name": "FAIRsharing record for: Institut Laue-Langevin Data Portal", "abbreviation": "ILL Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.2dam97", "doi": "10.25504/FAIRsharing.2dam97", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Institut Laue-Langevin (ILL) Data Portal is a repository for storage and access to experimental data obtained at the ILL. While individual DOIs for data are accessible, full access to the database, including searching and browsing, requires a login.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2196", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-19T13:35:31.000Z", "updated-at": "2021-11-24T13:19:28.729Z", "metadata": {"doi": "10.25504/FAIRsharing.ce8nsj", "name": "EuroPhenome", "status": "deprecated", "contacts": [{"contact-name": "Ann-Marie Mallon", "contact-email": "a.mallon@har.mrc.ac.uk"}], "homepage": "http://www.EuroPhenome.org", "identifier": 2196, "description": "The EuroPhenome project provides access to raw and annotated mouse phenotyping data generated from primary pipelines such as EMPReSSlim and secondary procedures from specialist centres. Mutants of interest can be identified by searching the gene or the predicted phenotype.", "abbreviation": "EuroPhenome", "support-links": [{"url": "helpdesk@europhenome.org", "type": "Support email"}, {"url": "http://www.europhenome.org/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.europhenome.org/using.html", "type": "Help documentation"}], "data-processes": [{"url": "http://www.europhenome.org/rawdata.html", "name": "Data download", "type": "data access"}, {"url": "http://www.europhenome.org/databrowser/viewer.jsp?baselineSearch=on", "name": "Baseline Data Mapper", "type": "data access"}, {"url": "http://www.europhenome.org/databrowser/mouseStages.jsp", "name": "browse", "type": "data access"}, {"url": "http://www.europhenome.org/databrowser/viewer.jsp?advancedSearch=on&phenotype=on", "name": "phenotype advanced search", "type": "data access"}, {"url": "http://www.europhenome.org/databrowser/viewer.jsp?advancedSearch=on", "name": "gene advanced search", "type": "data access"}], "associated-tools": [{"url": "http://www.europhenome.org/databrowser/heatmap.jsp?pipeline=1", "name": "View Phenomap"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000670", "bsg-d000670"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Computational biological predictions", "Mutation", "Phenotype"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: EuroPhenome", "abbreviation": "EuroPhenome", "url": "https://fairsharing.org/10.25504/FAIRsharing.ce8nsj", "doi": "10.25504/FAIRsharing.ce8nsj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EuroPhenome project provides access to raw and annotated mouse phenotyping data generated from primary pipelines such as EMPReSSlim and secondary procedures from specialist centres. Mutants of interest can be identified by searching the gene or the predicted phenotype.", "publications": [{"id": 1641, "pubmed_id": 19933761, "title": "EuroPhenome: a repository for high-throughput mouse phenotyping data", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1007", "authors": "Morgan H, Beck T, Blake A, Gates H, Adams N, Debouzy G, Leblanc S, Lengger C, Maier H, Melvin D, Meziane H, Richardson D, Wells S, White J, Wood J; EUMODIC Consortium, de Angelis MH, Brown SD, Hancock JM, Mallon AM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp1007", "created_at": "2021-09-30T08:25:23.813Z", "updated_at": "2021-09-30T08:25:23.813Z"}, {"id": 1642, "pubmed_id": 17905814, "title": "EuroPhenome and EMPReSS: online mouse phenotyping resource.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm728", "authors": "Mallon AM,Blake A,Hancock JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm728", "created_at": "2021-09-30T08:25:23.918Z", "updated_at": "2021-09-30T11:29:17.552Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2193", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-08T20:34:17.000Z", "updated-at": "2021-11-24T13:16:27.837Z", "metadata": {"doi": "10.25504/FAIRsharing.pjmdrp", "name": "speciesLink", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "splink@cria.org.br"}], "homepage": "http://www.splink.org.br/index?lang=en", "identifier": 2193, "description": "speciesLink (also known as the Distributed Information System for Biological Collections: Integrating Species Analyst and SinBiota (FAPESP)) implements a distributed information system to retrieve primary biodiversity data from collections within the state of S\u00e3o Paulo (Brazil) as well as data integrated from other networks and observation data registered in the SinBiota database.", "abbreviation": "speciesLink", "support-links": [{"url": "http://splink.cria.org.br/project?criaLANG=en", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://www.splink.org.br/index?lang=en", "name": "search", "type": "data access"}, {"url": "http://splink.cria.org.br/dc/?criaLANG=en", "name": "data cleaning", "type": "data access"}]}, "legacy-ids": ["biodbcore-000667", "bsg-d000667"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Brazil"], "name": "FAIRsharing record for: speciesLink", "abbreviation": "speciesLink", "url": "https://fairsharing.org/10.25504/FAIRsharing.pjmdrp", "doi": "10.25504/FAIRsharing.pjmdrp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: speciesLink (also known as the Distributed Information System for Biological Collections: Integrating Species Analyst and SinBiota (FAPESP)) implements a distributed information system to retrieve primary biodiversity data from collections within the state of S\u00e3o Paulo (Brazil) as well as data integrated from other networks and observation data registered in the SinBiota database.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2767", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-12T10:47:32.000Z", "updated-at": "2021-12-06T10:48:23.966Z", "metadata": {"doi": "10.25504/FAIRsharing.dbsEaD", "name": "Centre for Environmental Data Analysis Archive", "status": "ready", "contacts": [{"contact-name": "CEDA Support", "contact-email": "support@ceda.ac.uk"}], "homepage": "http://archive.ceda.ac.uk/", "citations": [], "identifier": 2767, "description": "The CEDA Archive operates the atmospheric and earth observation data centre functions on behalf of NERC for the UK atmospheric science and earth observation communities. It covers climate, composition, observations and NWP data as well as various earth observation datasets, including airborne and satellite data and imagery.", "abbreviation": "CEDA Archive", "support-links": [{"url": "http://www.ceda.ac.uk/blog/", "name": "CEDA Blog", "type": "Blog/News"}, {"url": "support@ceda.ac.uk", "name": "CEDA Support", "type": "Support email"}, {"url": "http://help.ceda.ac.uk/", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://twitter.com/cedanews", "name": "CEDA News", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "http://catalogue.ceda.ac.uk/", "name": "Search", "type": "data access"}, {"url": "http://data.ceda.ac.uk/", "name": "Browse", "type": "data access"}, {"url": "https://arrivals.ceda.ac.uk/intro/", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://archive.ceda.ac.uk/tools/", "name": "All Tools"}, {"url": "https://catalogue.ceda.ac.uk", "name": "CEDA Data Catalogue"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012305", "name": "re3data:r3d100012305", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001266", "bsg-d001266"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["earth observation"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Centre for Environmental Data Analysis Archive", "abbreviation": "CEDA Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.dbsEaD", "doi": "10.25504/FAIRsharing.dbsEaD", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CEDA Archive operates the atmospheric and earth observation data centre functions on behalf of NERC for the UK atmospheric science and earth observation communities. It covers climate, composition, observations and NWP data as well as various earth observation datasets, including airborne and satellite data and imagery.", "publications": [], "licence-links": [{"licence-name": "Open Government Licence (OGL)", "licence-id": 628, "link-id": 1294, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1301, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1303, "relation": "undefined"}, {"licence-name": "CEDA Closed Use General Licence, v1.0", "licence-id": 113, "link-id": 1308, "relation": "undefined"}, {"licence-name": "CEDA Closed Use Non-Commercial General Licence, v1.0", "licence-id": 114, "link-id": 1320, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3718", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-06T13:56:32.802Z", "updated-at": "2022-01-18T19:51:54.570Z", "metadata": {"name": "Fungal Diversity in Culture collections", "status": "ready", "contacts": [{"contact-name": "Alexander Vasilenko", "contact-email": "vanvkm@gmail.com", "contact-orcid": null}], "homepage": "http://www.vkm.ru/fungalDC.htm", "citations": [], "identifier": 3718, "description": "FungalDC (Fungal Diversity in Culture Collections) connects tree blocks of information on each fungal species presented: 1. genetic information for this species from GenBank, 2. taxonomic information from Index Fungorum and MycoBank, 3. contact information of each microbial culture collection (in WDCM/CCINFO) that keeps this species' strains. ", "abbreviation": "FungalDC", "data-curation": {}, "year-creation": 2009, "data-processes": [{"url": "http://www.vkm.ru/fungalDC.htm", "name": "Search", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Microbiology"], "domains": [], "taxonomies": ["Fungi"], "user-defined-tags": ["Mycology"], "countries": ["Russia"], "name": "FAIRsharing record for: Fungal Diversity in Culture collections", "abbreviation": "FungalDC", "url": "https://fairsharing.org/fairsharing_records/3718", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FungalDC (Fungal Diversity in Culture Collections) connects tree blocks of information on each fungal species presented: 1. genetic information for this species from GenBank, 2. taxonomic information from Index Fungorum and MycoBank, 3. contact information of each microbial culture collection (in WDCM/CCINFO) that keeps this species' strains. ", "publications": [{"id": 3176, "pubmed_id": null, "title": "FungalDC: a database on fungal diversity in culture collections of the world", "year": 2010, "url": "https://www.researchgate.net/publication/271193010_FungalDC_a_database_on_fungal_diversity_in_culture_collections_of_the_world", "authors": "Ozerskaya S.M., Vasilenko A.N, Verslyppe B., Dawyndt P.", "journal": "Inoculum. Supplement to Mycologia (Newsletter of the Mycological Society of America)", "doi": "", "created_at": "2022-01-06T14:03:53.757Z", "updated_at": "2022-01-06T14:04:13.268Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2462", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-27T13:30:19.000Z", "updated-at": "2021-12-02T18:05:26.741Z", "metadata": {"doi": "10.25504/FAIRsharing.ewyejx", "name": "Antabif IPT - AntOBIS IPT - GBIF Belgium", "status": "ready", "contacts": [{"contact-name": "Anton Van de Putte", "contact-email": "antonarctica@gmail.com"}], "homepage": "http://ipt.biodiversity.aq/", "citations": [], "identifier": 2462, "description": "The Belgium Biodiversity Platform hosts this data repository on behalf of the SCAR Antarctic Biodiversity Portal biodiversity.aq in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). This IPT publisher serves terrestrial and marine Biodiversity data to the relevant global networks. The marine component of AntOBIS is part of an international data sharing network (Ocean Biogeographic Information System, OBIS) coordinated by the Intergovernmental Oceanographic Commission of UNESCO (United Nations Educational, Science and Cultural Organization) International Oceanographic Data and Information Exchange.", "support-links": [{"url": "a.heughebaert@biodiversity.be", "name": "Andre Heughebaert", "type": "Support email"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000944", "bsg-d000944"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium", "Antarctica"], "name": "FAIRsharing record for: Antabif IPT - AntOBIS IPT - GBIF Belgium", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ewyejx", "doi": "10.25504/FAIRsharing.ewyejx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Belgium Biodiversity Platform hosts this data repository on behalf of the SCAR Antarctic Biodiversity Portal biodiversity.aq in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). This IPT publisher serves terrestrial and marine Biodiversity data to the relevant global networks. The marine component of AntOBIS is part of an international data sharing network (Ocean Biogeographic Information System, OBIS) coordinated by the Intergovernmental Oceanographic Commission of UNESCO (United Nations Educational, Science and Cultural Organization) International Oceanographic Data and Information Exchange.", "publications": [], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 97, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 104, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 172, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 199, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3154", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T13:06:48.000Z", "updated-at": "2022-02-08T10:34:27.251Z", "metadata": {"doi": "10.25504/FAIRsharing.e8e24f", "name": "Hustedt Diatom Collection Database", "status": "ready", "contacts": [{"contact-name": "Lena Eggers", "contact-email": "lena.eggers@awi.de"}], "homepage": "http://hustedt.awi.de/default.aspx#ViewID=Home", "identifier": 3154, "description": "The Hustedt Diatom Collection Database stores information on a large collection of diatom specimens that began with the private collection of Friedrich Hustedt which, in 1968 was housed at the Institut f\u00fcr Meeresforschung in Bremerhaven (now the Alfred Wegener Institute). The collection now comprises many thousands of slides, samples and publications and includes those named by Hustedt as well as those deposited later by other workers, along with literature-, material- and slide-information, as well as light and electron microscopic images when available.", "abbreviation": null, "support-links": [{"url": "https://www.awi.de/fileadmin/user_upload/AWI/Forschung/Biowissenschaft/Polare_biologische_Ozeanographie/AGs/Bank_Beszteri/Hustedt_web_database_short_usage_instructions_v.2..pdf", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.awi.de/en/science/biosciences/polar-biological-oceanography/main-research-focus/hustedt-diatom-study-centre/database.html", "name": "About", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://hustedt.awi.de/default.aspx#ViewID=Unit_ListView_Specimens_Web_Locality&ObjectClassName=EarthCape.Module.Core.Unit", "name": "Browse & Search Specimens", "type": "data access"}, {"url": "http://hustedt.awi.de/default.aspx#ViewID=Unit_ListView_Specimens_Web_Map&ObjectClassName=EarthCape.Module.Core.Unit", "name": "Specimens Map", "type": "data access"}, {"url": "http://hustedt.awi.de/default.aspx#ViewID=Unit_ListView_AWI_Slides_Web&ObjectClassName=EarthCape.Module.Core.Unit", "name": "Browse & Search Slides and Materials", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011122", "name": "re3data:r3d100011122", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001665", "bsg-d001665"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology", "Freshwater Science"], "domains": ["Bioimaging", "Light microscopy", "Electron microscopy", "Resource collection", "Image"], "taxonomies": ["Bacillariophyta"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Hustedt Diatom Collection Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.e8e24f", "doi": "10.25504/FAIRsharing.e8e24f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Hustedt Diatom Collection Database stores information on a large collection of diatom specimens that began with the private collection of Friedrich Hustedt which, in 1968 was housed at the Institut f\u00fcr Meeresforschung in Bremerhaven (now the Alfred Wegener Institute). The collection now comprises many thousands of slides, samples and publications and includes those named by Hustedt as well as those deposited later by other workers, along with literature-, material- and slide-information, as well as light and electron microscopic images when available.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3192", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-15T12:53:15.000Z", "updated-at": "2021-12-06T10:47:38.500Z", "metadata": {"name": "India Environment Portal", "status": "ready", "contacts": [{"contact-name": "CSE General Contact", "contact-email": "cse@cseindia.org"}], "homepage": "http://www.indiaenvironmentportal.org.in/", "identifier": 3192, "description": "The India Environment Portal makes environment and development documents from within India publicly available. It contains information from newspapers, journals, magazines, books and other documents.", "support-links": [{"url": "http://www.indiaenvironmentportal.org.in/news/top/", "name": "News", "type": "Blog/News"}, {"url": "http://www.indiaenvironmentportal.org.in/content/contact-us/", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.indiaenvironmentportal.org.in/rss.xml", "name": "RSS Feed", "type": "Blog/News"}, {"url": "https://twitter.com/indiaenvportal", "name": "@indiaenvportal", "type": "Twitter"}], "data-processes": [{"url": "http://www.indiaenvironmentportal.org.in/search", "name": "Search", "type": "data access"}, {"url": "http://www.indiaenvironmentportal.org.in/topic-tree/", "name": "Browse by Topic", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011012", "name": "re3data:r3d100011012", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001703", "bsg-d001703"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Environmental Science", "Forest Management", "Energy Engineering", "Health Science", "Animal Husbandry", "Biodiversity", "Earth Science", "Agriculture", "Water Research"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Sanitation"], "countries": ["India"], "name": "FAIRsharing record for: India Environment Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3192", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The India Environment Portal makes environment and development documents from within India publicly available. It contains information from newspapers, journals, magazines, books and other documents.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 2.5 India (CC BY-SA 2.5 IN)", "licence-id": 191, "link-id": 2089, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2971", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T09:35:28.000Z", "updated-at": "2021-12-06T10:48:21.277Z", "metadata": {"doi": "10.25504/FAIRsharing.cc3QN9", "name": "World Data Centre for Space Weather", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "SWS_WDC@bom.gov.au"}], "homepage": "http://www.sws.bom.gov.au/World_Data_Centre", "identifier": 2971, "description": "The World Data Centre section provides software and data catalogue information and data produced by the Bureau of Meteorology - Space Weather Services (SWS) over the past decades. Thousands of gigabytes of Ionospheric, Magnetometer, Spectrograph, Cosmic Ray data and Solar images are available for download. These areas are continually growing, with the addition of new data types, downloadable tools and data from new locations.", "abbreviation": "SWS - WDC", "support-links": [{"url": "http://www.sws.bom.gov.au/World_Data_Centre/5/1", "name": "Latest News", "type": "Blog/News"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/5/2", "type": "Help documentation"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/1/1", "name": "SWS Data Policy", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/1", "name": "FTP Download", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/2", "name": "Magnetometer", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/3", "name": "Ionospheric Data - Hourly", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/4", "name": "Ionospheric_Medians: Monthly Ionospheric Data", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/5", "name": "FEDSAT", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/6", "name": "Imaging Riometer", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/7", "name": "Cosmic Ray", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/8", "name": "Riometer", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/9", "name": "Spectrograph", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/10", "name": "Solar Radio", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/11", "name": "Ionospheric Scintillation", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/12", "name": "Ionospheric Autoscaled", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/1/13", "name": "Ionospheric Monthly Medians Autoscaled: foF2", "type": "data access"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/2/8", "name": "Data Format Information", "type": "data curation"}, {"url": "http://www.sws.bom.gov.au/World_Data_Centre/3/1", "name": "Metadata SWS", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010635", "name": "re3data:r3d100010635", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001477", "bsg-d001477"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Electromagnetism", "Meteorology", "Cosmology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cosmology", "Electromagnetism", "ionosphere", "Magnetometer", "Optical spectrometer", "Riometer", "Solar activity"], "countries": ["Australia"], "name": "FAIRsharing record for: World Data Centre for Space Weather", "abbreviation": "SWS - WDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.cc3QN9", "doi": "10.25504/FAIRsharing.cc3QN9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Data Centre section provides software and data catalogue information and data produced by the Bureau of Meteorology - Space Weather Services (SWS) over the past decades. Thousands of gigabytes of Ionospheric, Magnetometer, Spectrograph, Cosmic Ray data and Solar images are available for download. These areas are continually growing, with the addition of new data types, downloadable tools and data from new locations.", "publications": [], "licence-links": [{"licence-name": "WDS Conditions for Use of Data", "licence-id": 854, "link-id": 2268, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1630", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:48.506Z", "metadata": {"doi": "10.25504/FAIRsharing.8pjgwx", "name": "PLEXdb", "status": "deprecated", "contacts": [{"contact-name": "Julie A Dickerson", "contact-email": "julied@iastate.edu"}], "homepage": "http://www.plexdb.org/", "identifier": 1630, "description": "PLEXdb (Plant Expression Database) is a unified gene expression resource for plants and plant pathogens. PLEXdb is a genotype to phenotype, hypothesis building information warehouse, leveraging highly parallel expression data with seamless portals to related genetic, physical, and pathway data.", "abbreviation": "PLEXdb", "support-links": [{"url": "http://www.plexdb.org/modules/PD_general/feedback.php", "type": "Contact form"}, {"url": "http://www.plexdb.org/modules/documentation/FAQs.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2005, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "no access to historical files", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt,CSV,images)", "type": "data access"}], "associated-tools": [{"url": "http://www.plexdb.org/modules/glSuite/gl_main.php", "name": "Gene List Suite"}, {"url": "http://www.plexdb.org/modules/tools/genoscope/genoscope.php", "name": "Gene OscilloScope"}, {"url": "http://www.plexdb.org/modules/tools/plexdb_blast.php", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000086", "bsg-d000086"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Gene"], "taxonomies": ["Fungi", "Nematoda", "Oomycetes", "Sinorhizobium meliloti", "Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PLEXdb", "abbreviation": "PLEXdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.8pjgwx", "doi": "10.25504/FAIRsharing.8pjgwx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PLEXdb (Plant Expression Database) is a unified gene expression resource for plants and plant pathogens. PLEXdb is a genotype to phenotype, hypothesis building information warehouse, leveraging highly parallel expression data with seamless portals to related genetic, physical, and pathway data.", "publications": [{"id": 1848, "pubmed_id": 18287702, "title": "BarleyBase/PLEXdb.", "year": 2008, "url": "http://doi.org/10.1007/978-1-59745-535-0_17", "authors": "Wise RP., Caldo RA., Hong L., Shen L., Cannon E., Dickerson JA.,", "journal": "Methods Mol. Biol.", "doi": "10.1007/978-1-59745-535-0_17", "created_at": "2021-09-30T08:25:47.581Z", "updated_at": "2021-09-30T08:25:47.581Z"}, {"id": 1849, "pubmed_id": 22084198, "title": "PLEXdb: gene expression resources for plants and plant pathogens.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr938", "authors": "Dash S,Van Hemert J,Hong L,Wise RP,Dickerson JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr938", "created_at": "2021-09-30T08:25:47.732Z", "updated_at": "2021-09-30T11:29:21.460Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2768", "type": "fairsharing-records", "attributes": {"created-at": "2019-04-09T09:31:03.000Z", "updated-at": "2022-01-07T13:01:54.394Z", "metadata": {"doi": "10.25504/FAIRsharing.Tb0BKn", "name": "Science Data Bank", "status": "ready", "contacts": [{"contact-name": "Jiang Lulu", "contact-email": "sciencedb@cnic.cn"}], "homepage": "https://www.scidb.cn/en", "citations": [], "identifier": 2768, "description": "ScienceDB (Science Data Bank) is an open generalist data repository developed and maintained by the CNIC. It promotes the publication and reuse of scientific data. Researchers and journal publishers can use it to store, manage and share science data.", "abbreviation": "ScienceDB", "access-points": [{"url": "https://www.scidb.cn/api/sdb-openapi-service/", "name": "ScienceDB Open API", "type": "REST", "example-url": "https://www.scidb.cn/api/sdb-openapi-service/search", "documentation-url": "https://www.scidb.cn/open-api/swagger-ui.html"}, {"url": "https://www.scidb.cn/oai", "name": "ScienceDB OAI-PMH Interface", "type": "OAI-PMH", "example-url": "https://www.scidb.cn/oai?verb=ListRecords&metadataPrefix=oai_dc", "documentation-url": "https://www.scidb.cn/oai"}], "data-curation": {}, "support-links": [{"url": "https://www.scidb.cn/en/English/ours/faq", "name": "ScienceDB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.sciencedb.cn/static/submit", "name": "Guide for Researchers", "type": "Help documentation"}, {"url": "https://www.sciencedb.cn/static/use", "name": "Guide for Journal Publishers", "type": "Help documentation"}, {"url": "https://www.scidb.cn/en/English/ours/use", "name": "Introduction", "type": "Help documentation"}, {"url": "https://www.sciencedb.cn/news/listPage", "name": "News", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://www.scidb.cn/en/list?searchList=", "name": "Data Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013177", "name": "re3data:r3d100013177", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"url": "https://www.scidb.cn/en/data_policy#item4", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.scidb.cn/en/publishing_process", "type": "open"}}, "legacy-ids": ["biodbcore-001267", "bsg-d001267"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Aerospace Engineering", "Data Management", "Earth Science", "Life Science", "Subject Agnostic", "Chemical Engineering", "Biology", "Mechanics"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Sociology"], "countries": ["China"], "name": "FAIRsharing record for: Science Data Bank", "abbreviation": "ScienceDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.Tb0BKn", "doi": "10.25504/FAIRsharing.Tb0BKn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ScienceDB (Science Data Bank) is an open generalist data repository developed and maintained by the CNIC. It promotes the publication and reuse of scientific data. Researchers and journal publishers can use it to store, manage and share science data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1814, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1819, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2557, "relation": "applies_to_content"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2558, "relation": "applies_to_content"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 2559, "relation": "applies_to_content"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 2560, "relation": "applies_to_content"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2561, "relation": "applies_to_content"}, {"licence-name": "ScienceDB Terms and Conditions", "licence-id": 736, "link-id": 1808, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1728", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.114Z", "metadata": {"doi": "10.25504/FAIRsharing.ncr75x", "name": "wiki-pain", "status": "deprecated", "contacts": [{"contact-name": "Daniel Jamieson", "contact-email": "dan.jamieson@manchester.ac.uk", "contact-orcid": "0000-0002-7121-0406"}], "homepage": "http://wiki-pain.org/vhosts/wikipaints/mediawiki-1.19.1/index.php/Main_Page", "identifier": 1728, "description": "wiki-pain.org is a wiki containing molecular interactions that are relevant to pain. Each molecular interaction is shown in relation to pain, disease, mutations, anatomy and a summary of its mentions throughout the literature is provided.", "abbreviation": "wiki-pain", "year-creation": 2013, "data-processes": [{"name": "download", "type": "data access"}], "associated-tools": [{"url": "http://www.biocontext.org", "name": "biocontext 1"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000185", "bsg-d000185"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Text mining", "Molecular interaction", "Pain"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: wiki-pain", "abbreviation": "wiki-pain", "url": "https://fairsharing.org/10.25504/FAIRsharing.ncr75x", "doi": "10.25504/FAIRsharing.ncr75x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: wiki-pain.org is a wiki containing molecular interactions that are relevant to pain. Each molecular interaction is shown in relation to pain, disease, mutations, anatomy and a summary of its mentions throughout the literature is provided.", "publications": [{"id": 260, "pubmed_id": 23707966, "title": "Cataloging the biomedical world of pain through semi-automated curation of molecular interactions", "year": 2013, "url": "http://doi.org/10.1093/database/bat033", "authors": "Daniel G. Jamieson, Phoebe M. Roberts, David L. Robertson, Ben Sidders and Goran Nenadic", "journal": "Database", "doi": "10.1093/database/bat033", "created_at": "2021-09-30T08:22:48.091Z", "updated_at": "2021-09-30T08:22:48.091Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2072", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:33.706Z", "metadata": {"doi": "10.25504/FAIRsharing.zcn4w4", "name": "TreeBase", "status": "ready", "contacts": [{"contact-name": "Rutger Vos", "contact-email": "rutger.vos@naturalis.nl"}], "homepage": "https://www.treebase.org", "identifier": 2072, "description": "TreeBASE is a repository of phylogenetic information, specifically user-submitted phylogenetic trees and the data used to generate them. TreeBASE accepts all types of phylogenetic data (e.g., trees of species, trees of populations, trees of genes) representing all biotic taxa.", "abbreviation": "TreeBase", "access-points": [{"url": "https://www.treebase.org/treebase-web/urlAPI.html", "name": "Web Services Documentation", "type": "REST"}], "support-links": [{"url": "help@treebase.org", "name": "General Contact", "type": "Support email"}, {"url": "https://github.com/TreeBASE/treebase/issues", "name": "GitHub Issues", "type": "Github"}, {"url": "https://en.wikipedia.org/wiki/TreeBASE", "name": "Wikipedia", "type": "Wikipedia"}, {"url": "https://sourceforge.net/p/treebase/mailman/attachment/7D0BFEBA-1F7E-4F7A-A0EE-5949564900C6@yale.edu/1/", "name": "TreeBASE v2: A Database of Phylogenetic Knowledge", "type": "Help documentation"}, {"url": "http://treebase.org/treebase-web/technology.html", "name": "TreeBASE Infrastructure", "type": "Help documentation"}, {"url": "http://phylodiversity.net/donoghue/publications/MJD_papers/2002/124_Piel_Shimura02.pdf", "name": "TreeBASE: A database of phylogenetic information.", "type": "Help documentation"}, {"url": "http://treebase.org/treebase-web/submitTutorial.html", "name": "Submission Documentation", "type": "Training documentation"}, {"url": "https://twitter.com/treebase", "name": "@treebase", "type": "Twitter"}], "year-creation": 1994, "data-processes": [{"url": "https://www.treebase.org/treebase-web/user/processUser.html", "name": "Submit", "type": "data curation"}, {"url": "https://www.treebase.org/treebase-web/search/studySearch.html", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010170", "name": "re3data:r3d100010170", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005688", "name": "SciCrunch:RRID:SCR_005688", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000539", "bsg-d000539"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Phylogenetics", "Phylogenomics"], "domains": ["Taxonomic classification", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "Netherlands"], "name": "FAIRsharing record for: TreeBase", "abbreviation": "TreeBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.zcn4w4", "doi": "10.25504/FAIRsharing.zcn4w4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TreeBASE is a repository of phylogenetic information, specifically user-submitted phylogenetic trees and the data used to generate them. TreeBASE accepts all types of phylogenetic data (e.g., trees of species, trees of populations, trees of genes) representing all biotic taxa.", "publications": [{"id": 1468, "pubmed_id": 19426482, "title": "Improved data retrieval from TreeBASE via taxonomic and linguistic data enrichment.", "year": 2009, "url": "http://doi.org/10.1186/1471-2148-9-93", "authors": "Anwar N., Hunt E.,", "journal": "BMC Evol. Biol.", "doi": "10.1186/1471-2148-9-93", "created_at": "2021-09-30T08:25:04.360Z", "updated_at": "2021-09-30T08:25:04.360Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3331", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-11T10:43:52.000Z", "updated-at": "2021-12-06T10:47:43.892Z", "metadata": {"name": "LSHTM Data Compass", "status": "ready", "contacts": [{"contact-name": "LSHTM Research Data Manager", "contact-email": "researchdatamanagement@lshtm.ac.uk"}], "homepage": "https://datacompass.lshtm.ac.uk/", "identifier": 3331, "description": "LSHTM Data Compass is a curated digital repository of research outputs produced with involvement by staff and students at the London School of Hygiene & Tropical Medicine, MRC Unit The Gambia, and/or the MRC/UVRI & LSHTM Uganda Research Unit. It hosts digital resources that are useful to verify and reproduce research findings, including: qualitative data, quantitative data, software code, processing scripts, search strategies, research instruments, and other outputs", "support-links": [{"url": "https://datacompass.lshtm.ac.uk/information.html", "name": "LSHTM Data Compass - Frequency Asked Questions", "type": "Help documentation"}, {"url": "https://datacompass.lshtm.ac.uk/id/eprint/670/", "name": "LSHTM Data Compass Deposit Guides", "type": "Help documentation"}, {"url": "https://doi.org/10.17037/DATA.00000002", "name": "LSHTM Data Compass Procedures", "type": "Help documentation"}], "year-creation": 2015, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011800", "name": "re3data:r3d100011800", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001850", "bsg-d001850"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Humanities and Social Science", "Microbiology", "Tropical Medicine", "Epidemiology"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: LSHTM Data Compass", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3331", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LSHTM Data Compass is a curated digital repository of research outputs produced with involvement by staff and students at the London School of Hygiene & Tropical Medicine, MRC Unit The Gambia, and/or the MRC/UVRI & LSHTM Uganda Research Unit. It hosts digital resources that are useful to verify and reproduce research findings, including: qualitative data, quantitative data, software code, processing scripts, search strategies, research instruments, and other outputs", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 840, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2778", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-22T13:31:44.000Z", "updated-at": "2021-12-06T10:49:33.495Z", "metadata": {"doi": "10.25504/FAIRsharing.zABkyi", "name": "heiDATA", "status": "ready", "contacts": [{"contact-name": "Jochen Apel", "contact-email": "data@uni-heidelberg.de", "contact-orcid": "0000-0002-0395-4120"}], "homepage": "https://heidata.uni-heidelberg.de/", "identifier": 2778, "description": "heiDATA is Heidelberg University\u2019s research data repository. It is managed by the Competence Centre for Research Data, a joint institution of the University Library and the Computing Centre. All researchers affiliated with Heidelberg University can use this service for archiving and publishing their data. heiDATA runs on software from the Dataverse Project.", "abbreviation": "heiDATA", "access-points": [{"url": "https://heidata.uni-heidelberg.de/oai", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://data.uni-heidelberg.de/contact.html", "name": "Contact", "type": "Contact form"}, {"url": "https://data.uni-heidelberg.de/submission.html", "name": "How to Submit Data", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://heidata.uni-heidelberg.de/dataverse/root/search", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011108", "name": "re3data:r3d100011108", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001277", "bsg-d001277"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic", "Database Management"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Germany"], "name": "FAIRsharing record for: heiDATA", "abbreviation": "heiDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.zABkyi", "doi": "10.25504/FAIRsharing.zABkyi", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: heiDATA is Heidelberg University\u2019s research data repository. It is managed by the Competence Centre for Research Data, a joint institution of the University Library and the Computing Centre. All researchers affiliated with Heidelberg University can use this service for archiving and publishing their data. heiDATA runs on software from the Dataverse Project.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2461", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-27T13:30:17.000Z", "updated-at": "2021-11-24T13:16:29.403Z", "metadata": {"doi": "10.25504/FAIRsharing.h2v2ye", "name": "GBIF Mauritania IPT - GBIF Belgium", "status": "ready", "contacts": [{"contact-name": "Moulaye Mohamed Baba Ainina", "contact-email": "ainina_3@hotmail.com"}], "homepage": "http://ipt-mrbif.bebif.be/", "identifier": 2461, "description": "The Belgium Biodiversity Platform hosts this data repository on behalf of GBIF Mauritania (MrBIF) in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). More specifically, MrBIF aims to promote, coordinate and facilitate data sharing and dissemination; undertake surveys of potential biodiversity data publishers and data users; promote publication and use of biodiversity data; formulate and implement policies on biodiversity conservation; train young scientists and decisions makers; and acquire IT materials, stable Internet access and reliable power supply.", "abbreviation": "MrBIF IPT - GBIF Belgium", "support-links": [{"url": "a.heughebaert@biodiversity.be", "name": "Andr Heughebaert", "type": "Support email"}], "year-creation": 2009}, "legacy-ids": ["biodbcore-000943", "bsg-d000943"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium", "Mauritania"], "name": "FAIRsharing record for: GBIF Mauritania IPT - GBIF Belgium", "abbreviation": "MrBIF IPT - GBIF Belgium", "url": "https://fairsharing.org/10.25504/FAIRsharing.h2v2ye", "doi": "10.25504/FAIRsharing.h2v2ye", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Belgium Biodiversity Platform hosts this data repository on behalf of GBIF Mauritania (MrBIF) in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). More specifically, MrBIF aims to promote, coordinate and facilitate data sharing and dissemination; undertake surveys of potential biodiversity data publishers and data users; promote publication and use of biodiversity data; formulate and implement policies on biodiversity conservation; train young scientists and decisions makers; and acquire IT materials, stable Internet access and reliable power supply.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 264, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 388, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1033, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1097, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3148", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T15:15:04.000Z", "updated-at": "2021-12-06T10:48:12.297Z", "metadata": {"doi": "10.25504/FAIRsharing.9BlNcl", "name": "Climate Change Centre Austria Data Server", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "datenzentrum@ccca.ac.at", "contact-orcid": "0000-0002-4971-2493"}], "homepage": "https://data.ccca.ac.at/", "citations": [{"publication-id": 2471}], "identifier": 3148, "description": "The Climate Change Centre Austria (CCCA) Data Server provides the central Austrian archive for climate data and information. The data includes observation and measurement data, scenario data, quantitative and qualitative data, as well as measurement data and findings of research projects. CCCA aims to support interoperability and promote collaboration between different climate science and research communities in Austria, reducing data redundancy and loss of data.", "abbreviation": "CCCA Data Server", "access-points": [{"url": "https://data.ccca.ac.at/about/download", "name": "CCCA API", "type": "REST"}], "support-links": [{"url": "https://data.ccca.ac.at/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://data.ccca.ac.at/about", "name": "About CCCA Data Server", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://data.ccca.ac.at/group/meteorology", "name": "Search Meteorology Subset", "type": "data access"}, {"url": "https://data.ccca.ac.at/group/health", "name": "Search Health Subset", "type": "data access"}, {"url": "https://data.ccca.ac.at/group/agriculture", "name": "Search Agriculture Subset", "type": "data access"}, {"url": "https://data.ccca.ac.at/dataset", "name": "Browse & Search Datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012288", "name": "re3data:r3d100012288", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001659", "bsg-d001659"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Forest Management", "Health Services Research", "Health Science", "Meteorology", "Agriculture"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Austria"], "name": "FAIRsharing record for: Climate Change Centre Austria Data Server", "abbreviation": "CCCA Data Server", "url": "https://fairsharing.org/10.25504/FAIRsharing.9BlNcl", "doi": "10.25504/FAIRsharing.9BlNcl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Climate Change Centre Austria (CCCA) Data Server provides the central Austrian archive for climate data and information. The data includes observation and measurement data, scenario data, quantitative and qualitative data, as well as measurement data and findings of research projects. CCCA aims to support interoperability and promote collaboration between different climate science and research communities in Austria, reducing data redundancy and loss of data.", "publications": [{"id": 2409, "pubmed_id": null, "title": "Handling Continuous Streams for Meteorological Mapping", "year": 2019, "url": "https://doi.org/10.1007/978-3-319-72434-8_13", "authors": "Schubert, Chris", "journal": "Springer Book", "doi": null, "created_at": "2021-09-30T08:26:55.627Z", "updated_at": "2021-09-30T08:26:55.627Z"}, {"id": 2471, "pubmed_id": null, "title": "Dynamic Data Citation Service\u2014Subset Tool for Operational Data Management", "year": 2020, "url": "https://doi.org/10.3390/data4030115", "authors": "Schubert et al.", "journal": "MDPI Data", "doi": null, "created_at": "2021-09-30T08:27:03.011Z", "updated_at": "2021-09-30T08:27:03.011Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 960, "relation": "undefined"}, {"licence-name": "Affero GNU GPL v3.0", "licence-id": 15, "link-id": 961, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3025", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-23T12:33:14.000Z", "updated-at": "2021-12-06T10:47:30.649Z", "metadata": {"name": "Tropospheric Emission Spectrometer", "status": "deprecated", "contacts": [{"contact-name": "Scott Gluck", "contact-email": "Scott.Gluck@jpl.nasa.gov"}], "homepage": "https://tes.jpl.nasa.gov/data", "identifier": 3025, "description": "Launched in July 2004 on NASA's Aura spacecraft, The Tropospheric Emission Spectrometer (TES) was a satellite instrument designed to measure the state of the earth's troposphere. The satellite provided data for studying tropospheric chemistry, troposphere-biosphere interaction, and troposphere-stratosphere exchanges. Due to mechanical and data collection issues, NASA ended the Tropospheric Emission Spectrometer's mission after nearly a 14-year career of discovery, in January 2018.", "abbreviation": "TES", "support-links": [{"url": "https://www.instagram.com/nasajpl/", "name": "Instagram", "type": "Blog/News"}, {"url": "https://www.facebook.com/NASAJPL", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.jpl.nasa.gov/contact_JPL.php", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.jpl.nasa.gov/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.youtube.com/user/JPLnews?sub_confirmation=1", "name": "Youtube", "type": "Video"}, {"url": "https://tes.jpl.nasa.gov/data/documents/validation", "name": "Documents", "type": "Help documentation"}, {"url": "https://twitter.com/NASAJPL", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://search.earthdata.nasa.gov/search", "name": "Browse & Search", "type": "data access"}], "associated-tools": [{"url": "http://hdfeos.org/", "name": "HDFView"}, {"url": "https://www.harrisgeospatial.com/Software-Technology/IDL", "name": "IDL (Interactive Data Language)"}, {"url": "https://support.hdfgroup.org/products/java/hdfview/", "name": "HDFView"}, {"url": "https://tes.jpl.nasa.gov/data/tools", "name": "TES Read Software"}, {"url": "https://subset.larc.nasa.gov/tes/login.php", "name": "ASDC"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012494", "name": "re3data:r3d100012494", "portal": "re3data"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001533", "bsg-d001533"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["earth observation", "Satellite Data", "Troposphere"], "countries": ["United States"], "name": "FAIRsharing record for: Tropospheric Emission Spectrometer", "abbreviation": "TES", "url": "https://fairsharing.org/fairsharing_records/3025", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Launched in July 2004 on NASA's Aura spacecraft, The Tropospheric Emission Spectrometer (TES) was a satellite instrument designed to measure the state of the earth's troposphere. The satellite provided data for studying tropospheric chemistry, troposphere-biosphere interaction, and troposphere-stratosphere exchanges. Due to mechanical and data collection issues, NASA ended the Tropospheric Emission Spectrometer's mission after nearly a 14-year career of discovery, in January 2018.", "publications": [], "licence-links": [{"licence-name": "NASA Copyright & Reproduction Guidelines", "licence-id": 533, "link-id": 1336, "relation": "undefined"}, {"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 1337, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3206", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-21T13:25:28.000Z", "updated-at": "2021-12-06T10:47:39.260Z", "metadata": {"name": "Southern California Earthquake Data Center", "status": "ready", "contacts": [{"contact-email": "scedc@gps.caltech.edu"}], "homepage": "https://scedc.caltech.edu/", "identifier": 3206, "description": "The Southern California Earthquake Data Center (SCEDC) operates at the Seismological Laboratory at Caltech and is the primary archive of seismological data for southern California. The 1932-to-present Caltech/USGS catalog maintained by the SCEDC is believed to be the most complete archive of seismic data for any region in the United States.", "abbreviation": "SCEDC", "access-points": [{"url": "https://service.scedc.caltech.edu/", "name": "SCEDC Web Services", "type": "Other"}], "support-links": [{"url": "https://scedc.caltech.edu/about/faq.html", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1932, "data-processes": [{"url": "https://scedc.caltech.edu/eq-catalogs/index.html", "name": "Web browse", "type": "data access"}, {"url": "https://scedc.caltech.edu/research-tools/index.html", "name": "Data download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011575", "name": "re3data:r3d100011575", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000663", "name": "SciCrunch:RRID:SCR_000663", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001719", "bsg-d001719"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake", "Geological mapping", "Seismology"], "countries": ["United States"], "name": "FAIRsharing record for: Southern California Earthquake Data Center", "abbreviation": "SCEDC", "url": "https://fairsharing.org/fairsharing_records/3206", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Southern California Earthquake Data Center (SCEDC) operates at the Seismological Laboratory at Caltech and is the primary archive of seismological data for southern California. The 1932-to-present Caltech/USGS catalog maintained by the SCEDC is believed to be the most complete archive of seismic data for any region in the United States.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1791", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:02.827Z", "metadata": {"doi": "10.25504/FAIRsharing.fj1d4d", "name": "Magnaporthe grisea Database", "status": "deprecated", "contacts": [{"contact-name": "Ralph A. Dean", "contact-email": "radean2@ncsu.edu"}], "homepage": "http://www.broad.mit.edu/annotation/genome/magnaporthe_grisea/Home.html", "identifier": 1791, "description": "The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. The project is a partnership between the International Rice Blast Genome Consortium, and the Broad Institute. The project is facilitated by an Advisory Board made up of members of the rice blast research community.", "abbreviation": "MGG", "support-links": [{"url": "annotation-webmaster@broadinstitute.org", "type": "Support email"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/Info.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"name": "automated annotation", "type": "data curation"}, {"url": "http://archive.broadinstitute.org/ftp/pub/annotation/fungi/magnaporthe/genomes/", "name": "Download", "type": "data access"}, {"url": "http://genome.jgi.doe.gov/programs/fungi/index.jsf", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/FeatureSearch.html", "name": "search"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/Regions.html", "name": "browse"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/Blast.html", "name": "BLAST"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/FeatureSearch.html", "name": "search"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/Regions.html", "name": "browse"}, {"url": "http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/Blast.html", "name": "BLAST"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource contains data accessible via both ftp and through GenBank and JGI (http://genome.jgi.doe.gov/programs/fungi/index.jsf), but does not host their own database, therefore this record has been deprecated."}, "legacy-ids": ["biodbcore-000251", "bsg-d000251"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Genome"], "taxonomies": ["Magnaporthe grisea"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Magnaporthe grisea Database", "abbreviation": "MGG", "url": "https://fairsharing.org/10.25504/FAIRsharing.fj1d4d", "doi": "10.25504/FAIRsharing.fj1d4d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. The project is a partnership between the International Rice Blast Genome Consortium, and the Broad Institute. The project is facilitated by an Advisory Board made up of members of the rice blast research community.", "publications": [{"id": 1595, "pubmed_id": 26416668, "title": "Genome Sequences of Three Phytopathogenic Species of the Magnaporthaceae Family of Fungi.", "year": 2015, "url": "http://doi.org/10.1534/g3.115.020057", "authors": "Okagaki LH,Nunes CC,Sailsbery J,Clay B,Brown D,John T,Oh Y,Young N,Fitzgerald M,Haas BJ,Zeng Q,Young S,Adiconis X,Fan L,Levin JZ,Mitchell TK,Okubara PA,Farman ML,Kohn LM,Birren B,Ma LJ,Dean RA", "journal": "G3 (Bethesda)", "doi": "10.1534/g3.115.020057", "created_at": "2021-09-30T08:25:18.803Z", "updated_at": "2021-09-30T08:25:18.803Z"}, {"id": 1596, "pubmed_id": 15846337, "title": "The genome sequence of the rice blast fungus Magnaporthe grisea.", "year": 2005, "url": "http://doi.org/10.1038/nature03449", "authors": "Dean RA,Talbot NJ,Ebbole DJ,Farman ML,Mitchell TK,Orbach MJ,Thon M,Kulkarni R,Xu JR,Pan H,Read ND,Lee YH,Carbone I,Brown D,Oh YY,Donofrio N,Jeong JS,Soanes DM,Djonovic S,Kolomiets E,Rehmeyer C,Li W,Harding M,Kim S,Lebrun MH,Bohnert H,Coughlan S,Butler J,Calvo S,Ma LJ,Nicol R,Purcell S,Nusbaum C,Galagan JE,Birren BW", "journal": "Nature", "doi": "10.1038/nature03449", "created_at": "2021-09-30T08:25:18.961Z", "updated_at": "2021-09-30T08:25:18.961Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3100", "type": "fairsharing-records", "attributes": {"created-at": "2020-08-17T06:44:38.000Z", "updated-at": "2021-11-24T13:13:15.282Z", "metadata": {"doi": "10.25504/FAIRsharing.Tk7tqj", "name": "ChemTHEATRE", "status": "ready", "contacts": [{"contact-name": "Nakayama", "contact-email": "info@chem-theatre.com", "contact-orcid": "0000-0002-0247-757X"}], "homepage": "https://chem-theatre.com", "identifier": 3100, "description": "ChemTHEATRE is an online resource for browsing and analyzing curated and user-contributed data sets of environmental contaminants. ChemTHEATRE also stores metadata of the samples and of the experimental methods.", "abbreviation": "ChemTHEATRE", "support-links": [{"url": "https://chem-theatre.com/about", "name": "About ChemTHEATRE", "type": "Help documentation"}, {"url": "https://chem-theatre.com/pukiwiki/", "name": "ChemTHEATRE Wiki", "type": "Help documentation"}, {"url": "https://twitter.com/Chem_THEATRE", "name": "ChemTHEATRE tweets", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://chem-theatre.com/project", "name": "Project Search", "type": "data access"}, {"url": "https://chem-theatre.com/sample", "name": "Sample Search", "type": "data access"}, {"url": "https://chem-theatre.com/chemical", "name": "Chemical Search", "type": "data access"}, {"url": "https://chem-theatre.com/pukiwiki/index.php?FrontPage#vf99df61", "name": "Registering Data", "type": "data curation"}], "associated-tools": [{"url": "https://chem-theatre.com/fov/adapter.wsgi/", "name": "FATE Visualizer"}]}, "legacy-ids": ["biodbcore-001608", "bsg-d001608"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Chemistry"], "domains": ["Experimental measurement", "Biological sample annotation", "Chemical entity", "Environmental contaminant", "Protocol", "Exposure"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: ChemTHEATRE", "abbreviation": "ChemTHEATRE", "url": "https://fairsharing.org/10.25504/FAIRsharing.Tk7tqj", "doi": "10.25504/FAIRsharing.Tk7tqj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChemTHEATRE is an online resource for browsing and analyzing curated and user-contributed data sets of environmental contaminants. ChemTHEATRE also stores metadata of the samples and of the experimental methods.", "publications": [], "licence-links": [{"licence-name": "ChemTHEATRE Site Policy", "licence-id": 123, "link-id": 1347, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1349, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3076", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-20T06:34:27.000Z", "updated-at": "2022-02-08T10:41:46.626Z", "metadata": {"doi": "10.25504/FAIRsharing.e2cbef", "name": "Continuous Plankton Recorder Survey", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "cprsurvey@mba.ac.uk"}], "homepage": "https://www.cprsurvey.org/", "identifier": 3076, "description": "The Continuous Plankton Recorder (CPR) Survey has been monitoring the pulse of the oceans through the plankton since 1931. The CPR is a robust and reliable instrument designed to capture plankton samples over huge areas of ocean. The CPR is usually towed from the stern of volunteer merchant ships such as RoRo and Container Ships. However this versatile recorder has also been deployed from large sailing vessels, fishing boats and super tankers. The methodology has been used across the world's oceans, as well as in the North Sea, the Mediterranean, the Baltic, and in freshwater lakes.", "abbreviation": "CPR Survey", "support-links": [{"url": "https://www.cprsurvey.org/about-us/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.facebook.com/CPRSurvey", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.cprsurvey.org/contact-us", "type": "Contact form"}, {"url": "https://www.cprsurvey.org/data/data-policy/", "name": "Data Policy", "type": "Help documentation"}, {"url": "https://www.cprsurvey.org/data/data-charts/", "name": "Data Charts", "type": "Help documentation"}, {"url": "https://twitter.com/CPRSurvey", "type": "Twitter"}], "year-creation": 1931, "data-processes": [{"url": "https://www.cprsurvey.org/data/data-request-form/", "name": "Data Request Form", "type": "data access"}, {"url": "https://www.cprsurvey.org/data/map-data/", "name": "Map Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001584", "bsg-d001584"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Geospatial Data", "Plankton"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Continuous Plankton Recorder Survey", "abbreviation": "CPR Survey", "url": "https://fairsharing.org/10.25504/FAIRsharing.e2cbef", "doi": "10.25504/FAIRsharing.e2cbef", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Continuous Plankton Recorder (CPR) Survey has been monitoring the pulse of the oceans through the plankton since 1931. The CPR is a robust and reliable instrument designed to capture plankton samples over huge areas of ocean. The CPR is usually towed from the stern of volunteer merchant ships such as RoRo and Container Ships. However this versatile recorder has also been deployed from large sailing vessels, fishing boats and super tankers. The methodology has been used across the world's oceans, as well as in the North Sea, the Mediterranean, the Baltic, and in freshwater lakes.", "publications": [], "licence-links": [{"licence-name": "SAHFOS Data Licence Agreement", "licence-id": 724, "link-id": 440, "relation": "undefined"}, {"licence-name": "CPR Survey Terms and Conditions", "licence-id": 155, "link-id": 443, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2383", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T11:22:52.000Z", "updated-at": "2021-11-24T13:13:56.569Z", "metadata": {"doi": "10.25504/FAIRsharing.t1a232", "name": "Sequencing Initiative Suomi", "status": "ready", "contacts": [{"contact-name": "Hannele Laivuori", "contact-email": "hannele.laivuori@helsinki.fi", "contact-orcid": "0000-0003-3212-7826"}], "homepage": "http://www.sisuproject.fi/", "identifier": 2383, "description": "The Sequencing Initiative Suomi (SISu) search engine offers a way to search for data on sequence variants in the Finnish population. It provides valuable summary data for researchers and clinicians as well as other researchers with an interest in genetics in Finland. With SISu, you can examine the attributes and appearance of different variants in Finnish cohorts and see their aggregate distribution in Finland visualized on a map. The SISu project is an international collaboration between multiple research groups aiming to build tools for genomic medicine.", "abbreviation": "SISu", "support-links": [{"url": "http://www.sisuproject.fi/contact", "type": "Contact form"}, {"url": "http://www.sisuproject.fi/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.sisuproject.fi/how-to-use", "type": "Help documentation"}, {"url": "http://www.sisuproject.fi/about", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://www.sisuproject.fi/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000863", "bsg-d000863"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Genomics", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Genetic polymorphism", "Sequencing", "Disease", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: Sequencing Initiative Suomi", "abbreviation": "SISu", "url": "https://fairsharing.org/10.25504/FAIRsharing.t1a232", "doi": "10.25504/FAIRsharing.t1a232", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Sequencing Initiative Suomi (SISu) search engine offers a way to search for data on sequence variants in the Finnish population. It provides valuable summary data for researchers and clinicians as well as other researchers with an interest in genetics in Finland. With SISu, you can examine the attributes and appearance of different variants in Finnish cohorts and see their aggregate distribution in Finland visualized on a map. The SISu project is an international collaboration between multiple research groups aiming to build tools for genomic medicine.", "publications": [{"id": 2011, "pubmed_id": 26030606, "title": "Targeted resequencing of the pericentromere of chromosome 2 linked to constitutional delay of growth and puberty.", "year": 2015, "url": "http://doi.org/10.1371/journal.pone.0128524", "authors": "Cousminer DL,Leinonen JT,Sarin AP,Chheda H,Surakka I,Wehkalampi K,Ellonen P,Ripatti S,Dunkel L,Palotie A,Widen E", "journal": "PLoS One", "doi": "10.1371/journal.pone.0128524", "created_at": "2021-09-30T08:26:06.574Z", "updated_at": "2021-09-30T08:26:06.574Z"}, {"id": 2029, "pubmed_id": 25078778, "title": "Distribution and medical impact of loss-of-function variants in the Finnish founder population.", "year": 2014, "url": "http://doi.org/10.1371/journal.pgen.1004494", "authors": "Lim ET,Wurtz P,Havulinna AS,Palta P,Tukiainen T,Rehnstrom K,Esko T,Magi R,Inouye M,Lappalainen T,Chan Y,Salem RM,Lek M,Flannick J,Sim X,Manning A,Ladenvall C,Bumpstead S,Hamalainen E,Aalto K,Maksimow M,Salmi M,Blankenberg S,Ardissino D,Shah S,Horne B,McPherson R,Hovingh GK,Reilly MP,Watkins H,Goel A,Farrall M,Girelli D,Reiner AP,Stitziel NO,Kathiresan S,Gabriel S,Barrett JC,Lehtimaki T,Laakso M,Groop L,Kaprio J,Perola M,McCarthy MI,Boehnke M,Altshuler DM,Lindgren CM,Hirschhorn JN,Metspalu A,Freimer NB,Zeller T,Jalkanen S,Koskinen S,Raitakari O,Durbin R,MacArthur DG,Salomaa V,Ripatti S,Daly MJ,Palotie A", "journal": "PLoS Genet", "doi": "10.1371/journal.pgen.1004494", "created_at": "2021-09-30T08:26:08.490Z", "updated_at": "2021-09-30T08:26:08.490Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2186", "type": "fairsharing-records", "attributes": {"created-at": "2015-02-11T10:46:48.000Z", "updated-at": "2021-12-06T10:48:19.839Z", "metadata": {"doi": "10.25504/FAIRsharing.bpkzqp", "name": "Immunology Database and Analysis Portal", "status": "ready", "contacts": [{"contact-name": "Jeff Wiser", "contact-email": "jeff.wiser@ngc.com"}], "homepage": "https://immport.org", "citations": [{"doi": "10.1038/sdata.2018.15", "pubmed-id": 29485622, "publication-id": 2220}], "identifier": 2186, "description": "The Immunology Database and Analysis Portal (ImmPort) data repository was created for the exploration of clinical and basic research data on immunology and associated findings. ImmPort intends to promote effective data sharing across the basic, clinical and translational research communities. It collects data both from clinical and mechanistic studies on human subjects and from immunology studies on model organisms. The ImmPort ecosystem consists of four components: private data, shared data, data analysis, and resources-for data archiving, dissemination, analyses, and reuse.", "abbreviation": "ImmPort", "access-points": [{"url": "https://docs.immport.org/#API/DataQueryAPI/dataqueryapi/", "name": "Data Query API", "type": "REST"}, {"url": "https://docs.immport.org/#API/DataUploadAPI/datauploadapi/", "name": "Data Upload API", "type": "REST"}, {"url": "https://docs.immport.org/#API/DataBatchUpdaterAPI/batchupdaterapi/", "name": "Batch Updater API", "type": "REST"}, {"url": "https://docs.immport.org/#API/FileDownloadAPI/filedownloadapi/", "name": "Download API", "type": "REST"}], "support-links": [{"url": "https://www.immport.org/shared/news", "name": "News", "type": "Blog/News"}, {"url": "ImmPort_Helpdesk@immport.org", "name": "General Contact", "type": "Support email"}, {"url": "https://www.immport.org/resources/tutorials", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://www.immport.org/resources/documentation", "name": "All Documentation", "type": "Help documentation"}, {"url": "https://www.immport.org/resources/dataTemplates", "name": "Data Upload Templates", "type": "Help documentation"}, {"url": "https://www.immport.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://www.immport.org/shared/search?filters=", "name": "Search", "type": "data access"}, {"url": "https://docs.immport.org/#API/DataUploadAPI/datauploadapi/", "name": "Submit (API)", "type": "data curation"}, {"url": "https://docs.immport.org/#API/DataBatchUpdaterAPI/batchupdaterapi/", "name": "Batch Update (API)", "type": "data curation"}, {"url": "https://docs.immport.org/#API/FileDownloadAPI/filedownloadapi/", "name": "Download (API)", "type": "data release"}, {"url": "https://www.immport.org/shared/publications", "name": "Browse Publications", "type": "data access"}, {"url": "https://browser.immport.org/browser?path=", "name": "Download (Login required)", "type": "data release"}, {"url": "https://immport.niaid.nih.gov/upload/data/uploadDataMain", "name": "Upload (Login required)", "type": "data curation"}], "associated-tools": [{"url": "http://immportgalaxy.org", "name": "ImmPortGalaxy"}, {"url": "https://docs.immport.org/#Tool/FileDownloadTool/filedownloadtool/", "name": "File Download Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012529", "name": "re3data:r3d100012529", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012804", "name": "SciCrunch:RRID:SCR_012804", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000660", "bsg-d000660"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Immunology", "Biomedical Science", "Translational Medicine", "Preclinical Studies"], "domains": ["Model organism"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Immunology Database and Analysis Portal", "abbreviation": "ImmPort", "url": "https://fairsharing.org/10.25504/FAIRsharing.bpkzqp", "doi": "10.25504/FAIRsharing.bpkzqp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Immunology Database and Analysis Portal (ImmPort) data repository was created for the exploration of clinical and basic research data on immunology and associated findings. ImmPort intends to promote effective data sharing across the basic, clinical and translational research communities. It collects data both from clinical and mechanistic studies on human subjects and from immunology studies on model organisms. The ImmPort ecosystem consists of four components: private data, shared data, data analysis, and resources-for data archiving, dissemination, analyses, and reuse.", "publications": [{"id": 920, "pubmed_id": 24791905, "title": "ImmPort: disseminating data to the public for the future of immunology", "year": 2014, "url": "http://doi.org/10.1007/s12026-014-8516-1", "authors": "Bhattacharya S, Andorf S, Gomes L, Dunn P, Schaefer H, Pontius J, Berger P, Desborough V, Smith T, Campbell J, Thomson E, Monteiro R, Guimaraes P, Walters B, Wiser J, Butte AJ", "journal": "Immunologic Research", "doi": "10.1007/s12026-014-8516-1", "created_at": "2021-09-30T08:24:01.588Z", "updated_at": "2021-09-30T08:24:01.588Z"}, {"id": 922, "pubmed_id": 22431383, "title": "FCSTrans: An open source software system for FCS file conversion and data transformation", "year": 2012, "url": "http://doi.org/10.1002/cyto.a.22037", "authors": "Qian Y, Liu Y, Campbell J, Thomson E, Kong YM, Scheuermann RH", "journal": "Cytometry Part A", "doi": "10.1002/cyto.a.22037", "created_at": "2021-09-30T08:24:01.805Z", "updated_at": "2021-09-30T08:24:01.805Z"}, {"id": 2209, "pubmed_id": 20839340, "title": "Elucidation of seventeen human peripheral blood B-cell subsets and quantification of the tetanus response using a density-based method for the automated identification of cell populations in multidimensional flow cytometry data", "year": 2010, "url": "http://doi.org/10.1002/cyto.b.20554", "authors": "Qian Y, Wei C, Eun-Hyung Lee F, Campbell J, Halliley J, Lee JA, Cai J, Kong YM, Sadat E, Thomson E, Dunn P, Seegmiller AC, Karandikar NJ, Tipton CM, Mosmann T, Sanz I, Scheuermann RH", "journal": "Cytometry B Clinical Cytometry", "doi": "10.1002/cyto.b.20554", "created_at": "2021-09-30T08:26:28.963Z", "updated_at": "2021-09-30T08:26:28.963Z"}, {"id": 2220, "pubmed_id": 29485622, "title": "ImmPort, toward repurposing of open access immunological assay data for translational and clinical research.", "year": 2018, "url": "http://doi.org/10.1038/sdata.2018.15", "authors": "Bhattacharya S,Dunn P,Thomas CG,Smith B,Schaefer H,Chen J,Hu Z,Zalocusky KA,Shankar RD,Shen-Orr SS,Thomson E,Wiser J,Butte AJ", "journal": "Sci Data", "doi": "10.1038/sdata.2018.15", "created_at": "2021-09-30T08:26:30.198Z", "updated_at": "2021-09-30T08:26:30.198Z"}], "licence-links": [{"licence-name": "ImmPort Data Sharing", "licence-id": 432, "link-id": 362, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2676", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-17T14:04:09.000Z", "updated-at": "2021-12-06T10:49:16.972Z", "metadata": {"doi": "10.25504/FAIRsharing.toIDed", "name": "BioDare2 - Biological Data Repository", "status": "ready", "contacts": [{"contact-name": "Tomasz Zielinski", "contact-email": "biodare@ed.ac.uk"}], "homepage": "https://biodare2.ed.ac.uk", "citations": [{"doi": "10.1371/journal.pone.0096462", "pubmed-id": 24809473, "publication-id": 145}], "identifier": 2676, "description": "BioDare2 is a repository for circadian, biological data, providing a platform for data sharing and period analysis. The main features of BioDare2 are: fast period analysis, timeseries processing, attractive visualizations, simple data description and modern UI, all of it to assure the best user experience.", "abbreviation": "BioDare2", "support-links": [{"url": "https://www.youtube.com/channel/UC1_kTC0PFOkoKueJGo4h7dA", "name": "Tutorial videos", "type": "Video"}, {"url": "https://biodare2.ed.ac.uk/documents/all", "name": "BioDare documentation", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://biodare2.ed.ac.uk/experiments", "name": "Browse Experiments", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011817", "name": "re3data:r3d100011817", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001170", "bsg-d001170"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Systems Biology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["biological rhythms", "circadian biology"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: BioDare2 - Biological Data Repository", "abbreviation": "BioDare2", "url": "https://fairsharing.org/10.25504/FAIRsharing.toIDed", "doi": "10.25504/FAIRsharing.toIDed", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioDare2 is a repository for circadian, biological data, providing a platform for data sharing and period analysis. The main features of BioDare2 are: fast period analysis, timeseries processing, attractive visualizations, simple data description and modern UI, all of it to assure the best user experience.", "publications": [{"id": 145, "pubmed_id": 24809473, "title": "Strengths and limitations of period estimation methods for circadian data.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0096462", "authors": "Zielinski T,Moore AM,Troup E,Halliday KJ,Millar AJ", "journal": "PLoS One", "doi": "10.1371/journal.pone.0096462", "created_at": "2021-09-30T08:22:35.814Z", "updated_at": "2021-09-30T08:22:35.814Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 283, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2696", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-01T21:34:54.000Z", "updated-at": "2022-02-08T10:56:18.981Z", "metadata": {"doi": "10.25504/FAIRsharing.5a929e", "name": "International Microvillus Inclusion Disease Patient Registry", "status": "ready", "contacts": [{"contact-name": "Sven C. D. van IJzendoorn", "contact-email": "s.c.d.van.ijzendoorn@umcg.nl", "contact-orcid": "0000-0002-3664-1382"}], "homepage": "https://mvid-central.org/", "citations": [], "identifier": 2696, "description": "The International Microvillus Inclusion Disease Patient Registry contains anonymised data on both published and unpublished MVID patients, as well as their associated MYO5B, STX3 and STXBP2 mutations and genotypes, and clinical and molecular phenotypes.", "abbreviation": "MVID", "data-curation": {}, "support-links": [{"url": "https://mvid-central.org/menu/main/references", "name": "Background", "type": "Help documentation"}, {"url": "https://molgenis.gitbook.io/molgenis/", "name": "General Molgenis Help (Gitbook)", "type": "Help documentation"}], "data-processes": [{"url": "https://mvid-central.org/menu/searchsystem/dataexplorer", "name": "Search", "type": "data access"}, {"url": "https://mvid-central.org/menu/genes/dataexplorer?entity=mvid_myo5b&hideselect=true", "name": "Browse and Search MYO5B", "type": "data access"}, {"url": "https://mvid-central.org/menu/genes/dataexplorer?entity=mvid_stx3&hideselect=true", "name": "Browse and Search STX3", "type": "data access"}, {"url": "https://mvid-central.org/menu/genes/dataexplorer?entity=mvid_stxbp2&hideselect=true", "name": "Browse and Search STXBP2", "type": "data access"}, {"url": "https://mvid-central.org/menu/genes/dataexplorer?entity=mvid_all&hideselect=true", "name": "Browse and Search All Datasets", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001193", "bsg-d001193"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Pediatrics", "Cell Biology", "Biomedical Science"], "domains": ["Mutation", "Disease", "Gene-disease association", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Researcher data"], "countries": ["Netherlands"], "name": "FAIRsharing record for: International Microvillus Inclusion Disease Patient Registry", "abbreviation": "MVID", "url": "https://fairsharing.org/10.25504/FAIRsharing.5a929e", "doi": "10.25504/FAIRsharing.5a929e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Microvillus Inclusion Disease Patient Registry contains anonymised data on both published and unpublished MVID patients, as well as their associated MYO5B, STX3 and STXBP2 mutations and genotypes, and clinical and molecular phenotypes.", "publications": [{"id": 2711, "pubmed_id": 24014347, "title": "An overview and online registry of microvillus inclusion disease patients and their MYO5B mutations.", "year": 2013, "url": "http://doi.org/10.1002/humu.22440", "authors": "van der Velde KJ,Dhekne HS,Swertz MA,Sirigu S,Ropars V,Vinke PC,Rengaw T,van den Akker PC,Rings EH,Houdusse A,van Ijzendoorn SC", "journal": "Hum Mutat", "doi": "10.1002/humu.22440", "created_at": "2021-09-30T08:27:32.930Z", "updated_at": "2021-09-30T08:27:32.930Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2678", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-07T14:46:51.000Z", "updated-at": "2021-11-24T13:19:38.259Z", "metadata": {"doi": "10.25504/FAIRsharing.EJFNZn", "name": "ViBrism DB", "status": "ready", "contacts": [{"contact-name": "Yuko Okamura-Oho", "contact-email": "yoho-tky@umin.ac.jp", "contact-orcid": "0000-0002-2066-407X"}], "homepage": "http://vibrism.neuroinf.jp/", "identifier": 2678, "description": "ViBrism DB is a database for anatomical gene expression maps and topological co-expression network graphs created with original techniques of microtomy-based gene expression measurements, Transcriptome Tomography. The DB is equipped with a WebGL-based 2D/3D visualization platform, BAH viewer, and a network viewer. Users can access a total of 172,022 datasets of coding/non-coding transcripts and lncRNAs, present in the mouse brains at four post-natal stages. Expression maps are seen in the whole anatomical context of 3D MR images of the brains. In situ hybridization images and anatomical area maps are browsable in the same space of 3D expression maps. Created images are shareable using URLs, including scene-setting parameters. The DB is expandable by community activity.", "abbreviation": "ViBrism DB", "support-links": [{"url": "site-editor@brent-research.org", "name": "ViBrism DB Committee", "type": "Support email"}, {"url": "http://vibrism.neuroinf.jp/instruction.html", "name": "ViBrism Instructions", "type": "Help documentation"}, {"url": "http://vibrism.neuroinf.jp/about.html", "name": "About ViBrism", "type": "Help documentation"}, {"url": "http://vibrism.neuroinf.jp/examples.html", "name": "Video Tutorials", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE118176", "name": "GEO Series accession numbers GSE118176", "type": "data release"}, {"url": "http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE118177", "name": "GEO Series accession numbers GSE118177", "type": "data release"}, {"url": "http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE118178", "name": "GEO Series accession numbers GSE118178", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE36408", "name": "GEO Series accession numbers GSE36408", "type": "data release"}, {"url": "http://vibrism.neuroinf.jp/setsearch/search", "name": "Expression Similarity Search and Network Viewer", "type": "data access"}, {"url": "http://vibrism.neuroinf.jp/setsearch/anatomical", "name": "Expression Density Search in Anatomical Areas", "type": "data access"}, {"url": "http://vibrism.neuroinf.jp/bahviewer.html", "name": "BAH Viewer", "type": "data access"}, {"url": "http://vibrism.neuroinf.jp/search.html", "name": "3D Expression Map (Search by Gene ID)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001172", "bsg-d001172"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Magnetic resonance imaging", "Gene expression"], "taxonomies": ["Mus musculus"], "user-defined-tags": ["Neuroinformatics"], "countries": ["Japan"], "name": "FAIRsharing record for: ViBrism DB", "abbreviation": "ViBrism DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.EJFNZn", "doi": "10.25504/FAIRsharing.EJFNZn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ViBrism DB is a database for anatomical gene expression maps and topological co-expression network graphs created with original techniques of microtomy-based gene expression measurements, Transcriptome Tomography. The DB is equipped with a WebGL-based 2D/3D visualization platform, BAH viewer, and a network viewer. Users can access a total of 172,022 datasets of coding/non-coding transcripts and lncRNAs, present in the mouse brains at four post-natal stages. Expression maps are seen in the whole anatomical context of 3D MR images of the brains. In situ hybridization images and anatomical area maps are browsable in the same space of 3D expression maps. Created images are shareable using URLs, including scene-setting parameters. The DB is expandable by community activity.", "publications": [{"id": 662, "pubmed_id": 23028969, "title": "Transcriptome tomography for brain analysis in the web-accessible anatomical space.", "year": 2012, "url": "http://doi.org/10.1371/journal.pone.0045373", "authors": "Okamura-Oho Y,Shimokawa K,Takemoto S,Hirakiyama A,Nakamura S,Tsujimura Y,Nishimura M,Kasukawa T,Masumoto KH,Nikaido I,Shigeyoshi Y,Ueda HR,Song G,Gee J,Himeno R,Yokota H", "journal": "PLoS One", "doi": "10.1371/journal.pone.0045373", "created_at": "2021-09-30T08:23:33.077Z", "updated_at": "2021-09-30T08:23:33.077Z"}, {"id": 1217, "pubmed_id": 30371824, "title": "ViBrism DB: an interactive search and viewer platform for 2D/3D anatomical images of gene expression and co-expression networks.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky951", "authors": "Morita M,Shimokawa K,Nishimura M,Nakamura S,Tsujimura Y,Takemoto S,Tawara T,Yokota H,Wemler S,Miyamoto D,Ikeno H,Sato A,Furuichi T,Kobayashi N,Okumura Y,Yamaguchi Y,Okamura-Oho Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky951", "created_at": "2021-09-30T08:24:35.664Z", "updated_at": "2021-09-30T11:29:03.026Z"}, {"id": 1218, "pubmed_id": 25382412, "title": "Broad integration of expression maps and co-expression networks compassing novel gene functions in the brain.", "year": 2014, "url": "http://doi.org/10.1038/srep06969", "authors": "Okamura-Oho Y,Shimokawa K,Nishimura M,Takemoto S,Sato A,Furuichi T,Yokota H", "journal": "Sci Rep", "doi": "10.1038/srep06969", "created_at": "2021-09-30T08:24:35.774Z", "updated_at": "2021-09-30T08:24:35.774Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2362, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2326", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-14T11:37:16.000Z", "updated-at": "2021-12-06T10:49:07.748Z", "metadata": {"doi": "10.25504/FAIRsharing.rkwr6y", "name": "Oxford University Research Archive", "status": "ready", "contacts": [{"contact-email": "ora@bodleian.ox.ac.uk"}], "homepage": "https://ora.ox.ac.uk/", "citations": [], "identifier": 2326, "description": "The Oxford University Research Archive (ORA) serves as an institutional repository for the University of Oxford and is home to the scholarly research output of its members. ORA-Data is an extra function of ORA which is aimed at University of Oxford researchers who have either deposited data at external archives and want a centralised record of this, or who need a repository to deposit research data. Using the service will prevent loss of data and increase the impact of your research. It provides permanent links between publications and underlying data, and can be used as a repository for secure, long-term preservation of raw data and associated documentation. It helps Oxford researchers fulfil funding bodies' requirements to take active steps in preserving data and documentation. Digital object identifiers (DOIs) are assigned to each item in the resource for citation and attribution. Even though only Oxford researchers can upload their data in ORA, the search facility is publicly accessible.", "abbreviation": "ORA", "support-links": [{"url": "http://www.bodleian.ox.ac.uk/ora/about/key-facts", "name": "Key Facts", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.bodleian.ox.ac.uk/ora/about/search-tips", "name": "Search Tips", "type": "Help documentation"}, {"url": "http://www.bodleian.ox.ac.uk/ora/about", "name": "About", "type": "Help documentation"}, {"url": "https://ora.ox.ac.uk/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/oxforduni_repo", "name": "@oxforduni_repo", "type": "Twitter"}], "data-processes": [{"url": "https://ora.ox.ac.uk/deposit", "name": "Deposit", "type": "data curation"}, {"url": "https://ora.ox.ac.uk/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011230", "name": "re3data:r3d100011230", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000802", "bsg-d000802"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository", "Open Access"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Oxford University Research Archive", "abbreviation": "ORA", "url": "https://fairsharing.org/10.25504/FAIRsharing.rkwr6y", "doi": "10.25504/FAIRsharing.rkwr6y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Oxford University Research Archive (ORA) serves as an institutional repository for the University of Oxford and is home to the scholarly research output of its members. ORA-Data is an extra function of ORA which is aimed at University of Oxford researchers who have either deposited data at external archives and want a centralised record of this, or who need a repository to deposit research data. Using the service will prevent loss of data and increase the impact of your research. It provides permanent links between publications and underlying data, and can be used as a repository for secure, long-term preservation of raw data and associated documentation. It helps Oxford researchers fulfil funding bodies' requirements to take active steps in preserving data and documentation. Digital object identifiers (DOIs) are assigned to each item in the resource for citation and attribution. Even though only Oxford researchers can upload their data in ORA, the search facility is publicly accessible.", "publications": [], "licence-links": [{"licence-name": "ORA Open Access Policy", "licence-id": 636, "link-id": 511, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3012", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-22T08:50:45.000Z", "updated-at": "2021-12-06T10:47:30.232Z", "metadata": {"name": "ACTRIS Data Centre", "status": "ready", "contacts": [{"contact-name": "Cathrine Lund Myhre", "contact-email": "clm@nilu.no", "contact-orcid": "0000-0003-3587-5926"}], "homepage": "https://actris.nilu.no/", "identifier": 3012, "description": "The ACTRIS DC is designed to assist scientists with discovering and accessing atmospheric data and contains an up-to-date catalogue of available datasets in a number of databases distributed throughout the world. The focus of the web portal is validated data, but it is also possible to browse the ACTRIS data server for preliminary data (rapid delivery data) through this site.", "abbreviation": "ACTRIS DC", "support-links": [{"url": "kt@nilu.no", "name": "Kjetil Trseth", "type": "Support email"}, {"url": "mf@nilu.no", "name": "Markus Fiebig", "type": "Support email"}, {"url": "https://actris.nilu.no/Content/?pageid=0258adaf1c0c4af697b2cca704280b5d", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://actris.nilu.no/Content/?pageid=4e016300b2ea4590a2b2800dc89160ed", "name": "User manual", "type": "Help documentation"}, {"url": "https://actris.nilu.no/Content/?pageid=37df0131f7384f70a668e48f4e593278", "name": "Standard Operating Procedures and Measurement Guidelines for ACTRIS Aerosol column and profile variables", "type": "Help documentation"}, {"url": "https://actris.nilu.no/Content/?pageid=13d5615569b04814a6483f13bea96986", "name": "Standard Operating Procedures and Measurement Guidelines for ACTRIS in situ aerosol particle variables", "type": "Help documentation"}, {"url": "http://www.actris.eu/Portals/46/Publications/DataCentre/ACTRIS_Data_Management_Plan.pdf", "name": "ACTRIS Data Management Plan", "type": "Help documentation"}, {"url": "https://actris.nilu.no/Content/?pageid=68159644c2c04d648ce41536297f5b93", "name": "Standard Operating Procedures and Measurement Guidelines for ACTRIS in situ trace gases", "type": "Help documentation"}, {"url": "https://actris.nilu.no/Content/Documents/DataPolicy.pdf", "name": "ACTRIS Data Policy", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://actris.nilu.no/", "name": "Search", "type": "data access"}, {"url": "https://actris.nilu.no/Content/?pageid=594ab06f0f324a32aa39e1c68d3250b6", "name": "Visualization of aerosol trends", "type": "data access"}, {"url": "https://actris.nilu.no/Content/?pageid=844fe06802f04a83a2d6b0e8b2a59fe2", "name": "Latest Near-Real-Time Data", "type": "data access"}, {"url": "https://actris.nilu.no/Content/?pageid=ae1bf05f1fa54ba8bae735a2420e6c8d", "name": "Quicklooks of aerosol profiles", "type": "data access"}, {"url": "https://actris.nilu.no/Content/?pageid=e02eafd4aa184995b9341289c1982c0f", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://actris.nilu.no/Content/?pageid=66e93238896c43faa258025495a78c02", "name": "ICARE Extract Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011691", "name": "re3data:r3d100011691", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001520", "bsg-d001520"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Cloud", "earth observation", "Gas"], "countries": ["Italy", "Finland", "France"], "name": "FAIRsharing record for: ACTRIS Data Centre", "abbreviation": "ACTRIS DC", "url": "https://fairsharing.org/fairsharing_records/3012", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ACTRIS DC is designed to assist scientists with discovering and accessing atmospheric data and contains an up-to-date catalogue of available datasets in a number of databases distributed throughout the world. The focus of the web portal is validated data, but it is also possible to browse the ACTRIS data server for preliminary data (rapid delivery data) through this site.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2803", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-19T14:55:27.000Z", "updated-at": "2021-12-06T10:47:24.320Z", "metadata": {"name": "Natural History Museum Data Portal", "status": "ready", "contacts": [{"contact-name": "Ben Scott", "contact-email": "b.scott@nhm.ac.uk", "contact-orcid": "0000-0002-5590-7174"}], "homepage": "https://data.nhm.ac.uk/", "identifier": 2803, "description": "The British natural history collection is one of the most important in the world, documenting 4.5 billion years of life, the Earth and the solar system. Almost all animal, plant, mineral and fossil groups are represented. The portal's main dataset consists of specimens from the Museum's collection database, with over 4 million records from the Museum\u2019s Palaeontology, Mineralogy, Botany, Entomology and Zoology collections.", "abbreviation": "NHM Data Portal", "access-points": [{"url": "https://docs.ckan.org/en/latest/api/index.html", "name": "CKAN API", "type": "REST"}], "support-links": [{"url": "https://data.nhm.ac.uk/contact", "name": "Contact form", "type": "Contact form"}, {"url": "data@nhm.ac.uk", "name": "Data Portal contact", "type": "Support email"}, {"url": "https://github.com/NaturalHistoryMuseum/ckanext-nhm", "name": "Github of source code", "type": "Github"}], "data-processes": [{"url": "https://data.nhm.ac.uk/dataset", "name": "Search filter tool", "type": "data access"}, {"url": "https://data.nhm.ac.uk/about/download", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011675", "name": "re3data:r3d100011675", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001302", "bsg-d001302"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Geochemistry", "Zoology", "Paleontology", "Entomology", "Life Science", "Natural History"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Natural History Museum Data Portal", "abbreviation": "NHM Data Portal", "url": "https://fairsharing.org/fairsharing_records/2803", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The British natural history collection is one of the most important in the world, documenting 4.5 billion years of life, the Earth and the solar system. Almost all animal, plant, mineral and fossil groups are represented. The portal's main dataset consists of specimens from the Museum's collection database, with over 4 million records from the Museum\u2019s Palaeontology, Mineralogy, Botany, Entomology and Zoology collections.", "publications": [{"id": 2720, "pubmed_id": 30985890, "title": "The Natural History Museum Data Portal.", "year": 2019, "url": "http://doi.org/baz038", "authors": "Scott B,Baker E,Woodburn M,Vincent S,Hardy H,Smith VS", "journal": "Database (Oxford)", "doi": "baz038", "created_at": "2021-09-30T08:27:34.062Z", "updated_at": "2021-09-30T08:27:34.062Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1787, "relation": "undefined"}, {"licence-name": "Natural History Museum Privacy notice", "licence-id": 552, "link-id": 1788, "relation": "undefined"}, {"licence-name": "Natural History Museum Data Portal Terms and conditions", "licence-id": 551, "link-id": 1789, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3102", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-04T07:55:24.000Z", "updated-at": "2021-12-06T10:49:12.013Z", "metadata": {"doi": "10.25504/FAIRsharing.SfXDoZ", "name": "French Biodiversity (meta)data repository", "status": "ready", "contacts": [{"contact-name": "Yvan Le Bras", "contact-email": "yvan.le-bras@mnhn.fr", "contact-orcid": "0000-0002-8504-068X"}], "homepage": "https://data.pndb.fr/", "identifier": 3102, "description": "Based on Metacat / Metacatui https://github.com/NCEAS/metacatui and Geoserver technology, This new born repository will act as a national hub for all biodiversity data produced notably by French researchers. Related to the French national Research infrastructure \"P\u00f4le national de donn\u00e9es de Biodiversit\u00e9\" (PNDB)", "abbreviation": "PNDB", "access-points": [{"url": "https://pndb.fr/metacat/d1/mn/v2", "name": "Metacat API acess point", "type": "REST"}], "year-creation": 2020, "data-processes": [{"url": "https://data.pndb.fr/", "name": "web interface", "type": "data access"}], "associated-tools": [{"url": "https://data.pndb.fr/", "name": "Metacatui based (Meta)Data Portal 2.12.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013606", "name": "re3data:r3d100013606", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001610", "bsg-d001610"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Agroecology", "Microbial Ecology", "Metagenomics", "Genomics", "Ecology", "Biodiversity", "Phylogenomics"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Natural Resources, Earth and Environment", "Species-environment interaction"], "countries": ["France"], "name": "FAIRsharing record for: French Biodiversity (meta)data repository", "abbreviation": "PNDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.SfXDoZ", "doi": "10.25504/FAIRsharing.SfXDoZ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Based on Metacat / Metacatui https://github.com/NCEAS/metacatui and Geoserver technology, This new born repository will act as a national hub for all biodiversity data produced notably by French researchers. Related to the French national Research infrastructure \"P\u00f4le national de donn\u00e9es de Biodiversit\u00e9\" (PNDB)", "publications": [], "licence-links": [{"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1217, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1218, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2011", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:06.962Z", "metadata": {"doi": "10.25504/FAIRsharing.k81521", "name": "Integrating Data for Analysis, Anonymization, and Sharing", "status": "deprecated", "contacts": [{"contact-email": "idash@ucsd.edu"}], "homepage": "http://idash.ucsd.edu/", "identifier": 2011, "description": "Integrating Data for Analysis, Anonymization and SHaring (iDASH) is one of the National Centers for Biomedical Computing (NCBC) under the NIH Roadmap for Bioinformatics and Computational Biology. Founded in 2010, the iDASH center is hosted on the campus of the University of California, San Diego and addresses fundamental challenges to research progress and enables global collaborations anywhere and anytime. Driving biological projects motivate, inform, and support tool development in iDASH. iDASH collaborates with other NCBCs and disseminates tools via annual workshops, presentations at major conferences, and scientific publications. iDASH offers a secure cyberinfrastructure and tools to support a privacy-preserving data repository and open source software. iDASH also is active in research and training in its mission area.", "abbreviation": "iDASH", "support-links": [{"url": "http://idash.ucsd.edu/idash-softwaretools", "type": "Help documentation"}, {"url": "http://idash.ucsd.edu/cyberinfrastructure", "type": "Help documentation"}, {"url": "http://idash.ucsd.edu/events/webinars", "type": "Training documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://idash.ucsd.edu/data-collections", "name": "Browse Data", "type": "data access"}], "associated-tools": [{"url": "https://idash.ucsd.edu/dbp-tools", "name": "Microrna Analysis in GPU Infrastructure"}, {"url": "https://idash.ucsd.edu/dbp-tools", "name": "Genome Query Language"}, {"url": "https://idash.ucsd.edu/dbp-tools", "name": "Observational Cohort Event Analysis and Notification System"}, {"url": "https://idash.ucsd.edu/dbp-tools", "name": "Sensing Sedentary (and physical activity behavior)"}, {"url": "https://idash.ucsd.edu/dbp-tools", "name": "WebGLORE 2.0"}], "deprecation-date": "2018-01-30", "deprecation-reason": "This resource has been deprecated as funding has ended. As of 07/30/2017, all data within any of the communities in iDASH were no longer accessible. Please contact idash@ucsd.edu with any questions."}, "legacy-ids": ["biodbcore-000477", "bsg-d000477"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Security", "Biomedical Science"], "domains": ["Analysis"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Integrating Data for Analysis, Anonymization, and Sharing", "abbreviation": "iDASH", "url": "https://fairsharing.org/10.25504/FAIRsharing.k81521", "doi": "10.25504/FAIRsharing.k81521", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Integrating Data for Analysis, Anonymization and SHaring (iDASH) is one of the National Centers for Biomedical Computing (NCBC) under the NIH Roadmap for Bioinformatics and Computational Biology. Founded in 2010, the iDASH center is hosted on the campus of the University of California, San Diego and addresses fundamental challenges to research progress and enables global collaborations anywhere and anytime. Driving biological projects motivate, inform, and support tool development in iDASH. iDASH collaborates with other NCBCs and disseminates tools via annual workshops, presentations at major conferences, and scientific publications. iDASH offers a secure cyberinfrastructure and tools to support a privacy-preserving data repository and open source software. iDASH also is active in research and training in its mission area.", "publications": [{"id": 458, "pubmed_id": null, "title": "iDASH: integrating data for analysis, anonymization, and sharing", "year": 2012, "url": "http://doi.org/10.1136/amiajnl-2011-000538", "authors": "Lucila Ohno-Machado et al.", "journal": "Journal of the American Medical Informatics Association", "doi": "10.1136/amiajnl-2011-000538", "created_at": "2021-09-30T08:23:09.760Z", "updated_at": "2021-09-30T08:23:09.760Z"}], "licence-links": [{"licence-name": "UCSD Data Usage Procedures", "licence-id": 802, "link-id": 2315, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2231", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-05T13:43:45.000Z", "updated-at": "2021-12-06T10:48:18.224Z", "metadata": {"doi": "10.25504/FAIRsharing.bb5rna", "name": "Sea scientific open data publication", "status": "ready", "contacts": [{"contact-name": "Fred Merceur", "contact-email": "frederic.merceur@ifremer.fr", "contact-orcid": "0000-0003-2154-7622"}], "homepage": "https://www.seanoe.org/", "citations": [], "identifier": 2231, "description": "Seanoe (SEA scieNtific Open data Edition) is a publisher of scientific data in the field of marine sciences. It is operated by Sismer within the framework of the P\u00f4le Oc\u00e9an. Data published by SEANOE are available free. They can be used in accordance with the terms of the Creative Commons license selected by the author of data. Seance contributes to Open Access / Open Science movement for a free access for everyone to all scientific data financed by public funds for the benefit of research. An embargo limited to 2 years on a set of data is possible; for example to restrict access to data of a publication under scientific review. Each data set published by SEANOE has a DOI which enables it to be cited in a publication in a reliable and sustainable way. The long-term preservation of data filed in SEANOE is ensured by Ifremer infrastructure.", "abbreviation": "Seanoe", "support-links": [{"url": "sismer@ifremer.fr", "type": "Support email"}, {"url": "http://www.seanoe.org/html/about.htm", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://www.seanoe.org/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011867", "name": "re3data:r3d100011867", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000705", "bsg-d000705"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Oceanography"], "domains": ["Marine environment", "Marine metagenome", "Literature curation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Sea scientific open data publication", "abbreviation": "Seanoe", "url": "https://fairsharing.org/10.25504/FAIRsharing.bb5rna", "doi": "10.25504/FAIRsharing.bb5rna", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Seanoe (SEA scieNtific Open data Edition) is a publisher of scientific data in the field of marine sciences. It is operated by Sismer within the framework of the P\u00f4le Oc\u00e9an. Data published by SEANOE are available free. They can be used in accordance with the terms of the Creative Commons license selected by the author of data. Seance contributes to Open Access / Open Science movement for a free access for everyone to all scientific data financed by public funds for the benefit of research. An embargo limited to 2 years on a set of data is possible; for example to restrict access to data of a publication under scientific review. Each data set published by SEANOE has a DOI which enables it to be cited in a publication in a reliable and sustainable way. The long-term preservation of data filed in SEANOE is ensured by Ifremer infrastructure.", "publications": [{"id": 2597, "pubmed_id": null, "title": "SEANOE, a publisher of scientific data in the field of marine sciences", "year": 2018, "url": "https://archimer.ifremer.fr/doc/00464/57589/", "authors": "Merceur Frederic, Fichaut Michele", "journal": "IMDIS 2018 - International Conference on Marine Data and Information Systems.5-7 November 2018, Barcelona", "doi": null, "created_at": "2021-09-30T08:27:18.677Z", "updated_at": "2021-09-30T08:27:18.677Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 370, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 372, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2883", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-15T16:14:59.000Z", "updated-at": "2021-12-06T10:47:57.942Z", "metadata": {"doi": "10.25504/FAIRsharing.4wjhCf", "name": "National Archive of Criminal Justice Data", "status": "ready", "contacts": [{"contact-name": "A.J. Million", "contact-email": "millioaj@umich.edu", "contact-orcid": "0000-0002-8909-153X"}], "homepage": "https://www.icpsr.umich.edu/icpsrweb/nacjd/", "identifier": 2883, "description": "Established in 1978, the National Archive of Criminal Justice Data (NACJD) archives and disseminates data on crime and justice for secondary analysis. The archive contains data from over 2,700 curated studies or statistical data series. NACJD is home to several large-scale and well known datasets, including the National Crime Victimization Survey (NCVS), the FBI's Uniform Crime Reports (UCR), the FBI's National Incident-Based Reporting System (NIBRS), and the Project on Human Development in Chicago Neighborhoods (PHDCN). In addition to making data available, NACJD curates and preserves data to ensure that they are accessible now and in the future. Located within the Inter-University Consortium for Political and Social Research (ICPSR), a research center of the Institute for Social Research (ISR) at the University of Michigan, NACJD is sponsored by the Bureau of Justice Statistics (BJS), the National Institute of Justice (NIJ), and the Office of Juvenile Justice and Delinquency Prevention (OJJDP) of the United States Department of Justice.", "abbreviation": "NACJD", "support-links": [{"url": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/help/", "name": "ICPSR Help", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/help.html", "name": "NACJD Help", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/contact.html", "name": "NACJD Contact", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/resources.html", "name": "Resources Citing NACJD", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/about.html", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/nackjaydee", "name": "@nackjaydee", "type": "Twitter"}], "year-creation": 1978, "data-processes": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/index.html", "name": "Data Curation", "type": "data curation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/NACJD/discover-data.jsp", "name": "Data Access", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/share-data.html", "name": "Submitting Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010260", "name": "re3data:r3d100010260", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001384", "bsg-d001384"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Criminology", "Criminal Law", "Social and Behavioural Science"], "domains": ["Curated information"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Archive of Criminal Justice Data", "abbreviation": "NACJD", "url": "https://fairsharing.org/10.25504/FAIRsharing.4wjhCf", "doi": "10.25504/FAIRsharing.4wjhCf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Established in 1978, the National Archive of Criminal Justice Data (NACJD) archives and disseminates data on crime and justice for secondary analysis. The archive contains data from over 2,700 curated studies or statistical data series. NACJD is home to several large-scale and well known datasets, including the National Crime Victimization Survey (NCVS), the FBI's Uniform Crime Reports (UCR), the FBI's National Incident-Based Reporting System (NIBRS), and the Project on Human Development in Chicago Neighborhoods (PHDCN). In addition to making data available, NACJD curates and preserves data to ensure that they are accessible now and in the future. Located within the Inter-University Consortium for Political and Social Research (ICPSR), a research center of the Institute for Social Research (ISR) at the University of Michigan, NACJD is sponsored by the Bureau of Justice Statistics (BJS), the National Institute of Justice (NIJ), and the Office of Juvenile Justice and Delinquency Prevention (OJJDP) of the United States Department of Justice.", "publications": [], "licence-links": [{"licence-name": "ICPSR Privacy Policy", "licence-id": 417, "link-id": 2062, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3207", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-21T17:02:12.000Z", "updated-at": "2021-12-06T10:49:02.095Z", "metadata": {"doi": "10.25504/FAIRsharing.pwEima", "name": "BioSimulators", "status": "ready", "contacts": [{"contact-name": "Jonathan Karr", "contact-email": "karr@mssm.edu", "contact-orcid": "0000-0002-2605-5080"}], "homepage": "https://biosimulators.org", "identifier": 3207, "description": "BioSimulators is a registry of containerized biosimulation tools that provide consistent command-line interfaces. The BioSimulations web application helps investigators browse this registry to find simulation tools that have the capabilities (supported modeling frameworks, simulation algorithms, and modeling formats) needed for specific modeling projects.", "abbreviation": "BioSimulators", "access-points": [{"url": "https://api.biosimulators.org", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://github.com/biosimulators/Biosimulators/issues/new/choose", "name": "Issue tracker", "type": "Github"}, {"url": "info@biosimulators.org", "name": "Email", "type": "Support email"}, {"url": "https://biosimulators.org/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://biosimulators.org/help", "name": "Tutorial and help", "type": "Help documentation"}, {"url": "https://api.biosimulators.org", "name": "API documentation", "type": "Help documentation"}], "year-creation": 2020, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013432", "name": "re3data:r3d100013432", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001720", "bsg-d001720"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Biology", "Systems Biology"], "domains": ["Mathematical model", "Kinetic model", "Biological network analysis"], "taxonomies": ["Not applicable"], "user-defined-tags": ["container", "Genome Scale Metabolic Model", "Multi-scale model"], "countries": ["United States"], "name": "FAIRsharing record for: BioSimulators", "abbreviation": "BioSimulators", "url": "https://fairsharing.org/10.25504/FAIRsharing.pwEima", "doi": "10.25504/FAIRsharing.pwEima", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioSimulators is a registry of containerized biosimulation tools that provide consistent command-line interfaces. The BioSimulations web application helps investigators browse this registry to find simulation tools that have the capabilities (supported modeling frameworks, simulation algorithms, and modeling formats) needed for specific modeling projects.", "publications": [], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 2237, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2984", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-10T07:41:46.000Z", "updated-at": "2021-12-06T10:47:28.844Z", "metadata": {"name": "Global Hydrology Resource Center", "status": "ready", "contacts": [{"contact-name": "Manil Maskey", "contact-email": "manil.maskey@nasa.gov"}], "homepage": "https://ghrc.nsstc.nasa.gov/home/", "identifier": 2984, "description": "The Global Hydrology Resource Center (GHRC) collects and distributes both historical and current earth science data, information, and products from satellite, airborne, and surface-based instruments, primarily in the fields of lightning detection, microwave imaging, and convective moisture. GHRC acquires basic data streams and produces derived products from many instruments spread across a variety of instrument platforms. The GHRC DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "GHRC DAAC", "access-points": [{"url": "https://urs.earthdata.nasa.gov/urs4_faqs", "name": "REST API", "type": "REST"}, {"url": "https://ghrc.nsstc.nasa.gov/opendap/", "name": "OpenDAP", "type": "Other"}, {"url": "https://ghrc.nsstc.nasa.gov/home/news/ghrc-staff-working-hs3-science-team-data-and-metadata-formats-and-structures", "name": "NetCDF", "type": "Other"}], "support-links": [{"url": "https://www.facebook.com/ghrc.nsstc/", "name": "Facebook", "type": "Facebook"}, {"url": "https://ghrc.nsstc.nasa.gov/home/news", "name": "GHRC News & Features", "type": "Blog/News"}, {"url": "support-ghrc@earthdata.nasa.gov", "name": "General contact", "type": "Support email"}, {"url": "https://ghrc.nsstc.nasa.gov/home/about-ghrc/frequently-asked-questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.flickr.com/photos/ghrcdaac/sets", "name": "Flickr", "type": "Help documentation"}, {"url": "https://ghrc.nsstc.nasa.gov/home/ghrc-docs", "type": "Help documentation"}, {"url": "https://ghrc.nsstc.nasa.gov/home/ghrc-preservation-documents", "name": "GHRC Preservation Documents", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCl7i78WYVFJWsqmHon3Ch9g/featured", "name": "Youtube", "type": "Video"}, {"url": "https://ghrc.nsstc.nasa.gov/home/about-ghrc/glossary-terms-and-acronyms", "name": "Glossary of Terms and Acronyms", "type": "Help documentation"}, {"url": "https://ghrc.nsstc.nasa.gov/home/posters", "name": "Posters", "type": "Help documentation"}, {"url": "https://twitter.com/GHRCDAAC", "type": "Twitter"}], "year-creation": 1991, "data-processes": [{"url": "ftp://ghrc.nsstc.nasa.gov/", "name": "FTP Download", "type": "data access"}, {"url": "https://ghrc.nsstc.nasa.gov/hydro/", "name": "HyDRO data search tool", "type": "data access"}, {"url": "https://search.earthdata.nasa.gov/", "name": "NASA Earthdata Search", "type": "data access"}, {"url": "https://ghrcdrive.nsstc.nasa.gov/", "name": "Earthdata Drive", "type": "data access"}, {"url": "https://ghrc.nsstc.nasa.gov/tcpf/", "name": "TCPF", "type": "data access"}, {"url": "https://ghrc.nsstc.nasa.gov/data-publication/", "name": "Publish Your Data at GHRC", "type": "data curation"}, {"url": "https://ghrc.nsstc.nasa.gov/rasi/", "name": "RASI", "type": "data access"}, {"url": "https://ghrc.nsstc.nasa.gov/home/content/retired-datasets", "name": "Retired Datasets", "type": "data versioning"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010502", "name": "re3data:r3d100010502", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001490", "bsg-d001490"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Geography", "Meteorology", "Earth Science", "Atmospheric Science", "Water Management", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cyclonic Storm", "Forecasting", "Lightning", "Microwave", "Moisture", "Satellite Data", "Storm", "weather"], "countries": ["United States"], "name": "FAIRsharing record for: Global Hydrology Resource Center", "abbreviation": "GHRC DAAC", "url": "https://fairsharing.org/fairsharing_records/2984", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Hydrology Resource Center (GHRC) collects and distributes both historical and current earth science data, information, and products from satellite, airborne, and surface-based instruments, primarily in the fields of lightning detection, microwave imaging, and convective moisture. GHRC acquires basic data streams and produces derived products from many instruments spread across a variety of instrument platforms. The GHRC DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2035, "relation": "undefined"}, {"licence-name": "NASA Policy on the Release of Information to News and Information Media", "licence-id": 538, "link-id": 2036, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1863", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:28.514Z", "metadata": {"doi": "10.25504/FAIRsharing.e1byny", "name": "PRoteomics IDEntifications database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "pride-support@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/pride/", "citations": [{"doi": "10.1093/nar/gky1106", "pubmed-id": 30395289, "publication-id": 2753}], "identifier": 1863, "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence.", "abbreviation": "PRIDE", "access-points": [{"url": "http://www.ebi.ac.uk/pride/ws/archive/", "name": "PRIDE Archive RESTful web service API", "type": "REST"}], "support-links": [{"url": "http://www.ebi.ac.uk/pride/help/archive/faq", "name": "PRIDE FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ebi.ac.uk/pride/help/archive", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pride/markdownpage/documentationpage", "name": "Documentation", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/pride-and-proteomexchange-webinar", "name": "Pride and proteomexchange webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pride-and-proteomexchange-webinar", "name": "PRIDE and ProteomeXchange: webinar", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/training/online/course/proteomexchange-submissions-pride", "name": "PRIDE Training", "type": "Training documentation"}, {"url": "https://twitter.com/pride_ebi", "name": "@pride_ebi", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://www.ebi.ac.uk/pride/", "name": "Search Archive", "type": "data access"}, {"url": "http://www.ebi.ac.uk/pride/help/archive/submission", "name": "Submit", "type": "data curation"}, {"url": "ftp://ftp.pride.ebi.ac.uk/pride/data/archive", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/pride/archive/spectra", "name": "Search Spectra", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pride/peptidome", "name": "Peptidome", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pride/spectrumlibrary", "name": "Search Spectral Libraries", "type": "data access"}], "associated-tools": [{"url": "https://github.com/PRIDE-Toolsuite/pride-inspector", "name": "PRIDE Inspector"}, {"url": "https://www.ebi.ac.uk/pride/markdownpage/prideutilities", "name": "PRIDE Utilities"}, {"url": "https://www.ebi.ac.uk/pride/markdownpage/pridesubmissiontool", "name": "PRIDE Submission Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010137", "name": "re3data:r3d100010137", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003411", "name": "SciCrunch:RRID:SCR_003411", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000325", "bsg-d000325"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science"], "domains": ["Peptide identification", "Protein identification", "Peptide", "Curated information", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: PRoteomics IDEntifications database", "abbreviation": "PRIDE", "url": "https://fairsharing.org/10.25504/FAIRsharing.e1byny", "doi": "10.25504/FAIRsharing.e1byny", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence.", "publications": [{"id": 99, "pubmed_id": 24727771, "title": "ProteomeXchange provides globally coordinated proteomics data submission and dissemination.", "year": 2014, "url": "http://doi.org/10.1038/nbt.2839", "authors": "Vizca\u00edno JA, Deutsch EW, Wang R, et al.", "journal": "Nat Biotechnol.", "doi": "10.1038/nbt.2839", "created_at": "2021-09-30T08:22:31.122Z", "updated_at": "2021-09-30T08:22:31.122Z"}, {"id": 556, "pubmed_id": 25047258, "title": "How to submit MS proteomics data to ProteomeXchange via the PRIDE database.", "year": 2014, "url": "http://doi.org/10.1002/pmic.201400120", "authors": "Ternent T,Csordas A,Qi D,Gomez-Baena G,Beynon RJ,Jones AR,Hermjakob H,Vizcaino JA", "journal": "Proteomics", "doi": "10.1002/pmic.201400120", "created_at": "2021-09-30T08:23:20.710Z", "updated_at": "2021-09-30T08:23:20.710Z"}, {"id": 1221, "pubmed_id": 16041671, "title": "PRIDE: the proteomics identifications database.", "year": 2005, "url": "http://doi.org/10.1002/pmic.200401303", "authors": "Martens L,Hermjakob H,Jones P,Adamski M,Taylor C,States D,Gevaert K,Vandekerckhove J,Apweiler R", "journal": "Proteomics", "doi": "10.1002/pmic.200401303", "created_at": "2021-09-30T08:24:36.081Z", "updated_at": "2021-09-30T08:24:36.081Z"}, {"id": 1277, "pubmed_id": 26527722, "title": "2016 update of the PRIDE database and its related tools.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1145", "authors": "Vizcaino JA,Csordas A,del-Toro N,Dianes JA,Griss J,Lavidas I,Mayer G,Perez-Riverol Y,Reisinger F,Ternent T,Xu QW,Wang R,Hermjakob H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1145", "created_at": "2021-09-30T08:24:42.539Z", "updated_at": "2021-09-30T11:29:05.176Z"}, {"id": 1295, "pubmed_id": 18428683, "title": "Using the Proteomics Identifications Database (PRIDE).", "year": 2008, "url": "http://doi.org/10.1002/0471250953.bi1308s21", "authors": "Martens L,Jones P,Cote R", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi1308s21", "created_at": "2021-09-30T08:24:44.526Z", "updated_at": "2021-09-30T08:24:44.526Z"}, {"id": 2179, "pubmed_id": 16381953, "title": "PRIDE: a public repository of protein and peptide identifications for the proteomics community.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj138", "authors": "Jones P., C\u00f4t\u00e9 RG., Martens L., Quinn AF., Taylor CF., Derache W., Hermjakob H., Apweiler R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj138", "created_at": "2021-09-30T08:26:25.675Z", "updated_at": "2021-09-30T08:26:25.675Z"}, {"id": 2302, "pubmed_id": 23203882, "title": "The PRoteomics IDEntifications (PRIDE) database and associated tools: status in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1262", "authors": "Vizca\u00edno JA., C\u00f4t\u00e9 RG., Csordas A., Dianes JA., Fabregat A., Foster JM., Griss J., Alpi E., Birim M., Contell J., O'Kelly G., Schoenegger A., Ovelleiro D., P\u00e9rez-Riverol Y., Reisinger F., R\u00edos D., Wang R., Hermjakob H.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1262", "created_at": "2021-09-30T08:26:42.052Z", "updated_at": "2021-09-30T08:26:42.052Z"}, {"id": 2748, "pubmed_id": 18033805, "title": "PRIDE: new developments and new datasets.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1021", "authors": "Jones P,Cote RG,Cho SY,Klie S,Martens L,Quinn AF,Thorneycroft D,Hermjakob H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm1021", "created_at": "2021-09-30T08:27:37.719Z", "updated_at": "2021-09-30T11:29:42.528Z"}, {"id": 2753, "pubmed_id": 30395289, "title": "The PRIDE database and related tools and resources in 2019: improving support for quantification data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1106", "authors": "Perez-Riverol Y,Csordas A,Bai J,Bernal-Llinares M,Hewapathirana S,Kundu DJ,Inuganti A,Griss J,Mayer G,Eisenacher M,Perez E,Uszkoreit J,Pfeuffer J,Sachsenberg T,Yilmaz S,Tiwary S,Cox J,Audain E,Walzer M,Jarnuczak AF,Ternent T,Brazma A,Vizcaino JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1106", "created_at": "2021-09-30T08:27:38.428Z", "updated_at": "2021-09-30T11:29:42.728Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1278, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1685", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:00.252Z", "metadata": {"doi": "10.25504/FAIRsharing.8bwhme", "name": "PCR Primer Database for Gene Expression Detection and Quantification", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "bioinformatics@ccib.mgh.harvard.edu"}], "homepage": "http://pga.mgh.harvard.edu/primerbank/", "identifier": 1685, "description": "PrimerBank is a public resource for PCR primers. These primers are designed for gene expression detection or quantification (real-time PCR). PrimerBank contains over 306,800 primers covering most known human and mouse genes. There are several ways to search for primers: GenBank Accession, NCBI protein accession, NCBI Gene ID, Gene Symbol, PrimerBank ID or Keyword (gene description) or you can blast your gene sequence against the primerbank Sequence DB.", "abbreviation": "PrimerBank", "support-links": [{"url": "https://pga.mgh.harvard.edu/primerbank/comments.html", "type": "Contact form"}, {"url": "https://pga.mgh.harvard.edu/primerbank/help.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"name": "automated curation", "type": "data curation"}, {"name": "manual curation", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000141", "bsg-d000141"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Polymerase chain reaction primers", "DNA sequence data", "Real time polymerase chain reaction", "Centrally registered identifier"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PCR Primer Database for Gene Expression Detection and Quantification", "abbreviation": "PrimerBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.8bwhme", "doi": "10.25504/FAIRsharing.8bwhme", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PrimerBank is a public resource for PCR primers. These primers are designed for gene expression detection or quantification (real-time PCR). PrimerBank contains over 306,800 primers covering most known human and mouse genes. There are several ways to search for primers: GenBank Accession, NCBI protein accession, NCBI Gene ID, Gene Symbol, PrimerBank ID or Keyword (gene description) or you can blast your gene sequence against the primerbank Sequence DB.", "publications": [{"id": 1899, "pubmed_id": 14654707, "title": "A PCR primer bank for quantitative gene expression analysis.", "year": 2003, "url": "http://doi.org/10.1093/nar/gng154", "authors": "Wang X., Seed B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gng154", "created_at": "2021-09-30T08:25:53.588Z", "updated_at": "2021-09-30T08:25:53.588Z"}, {"id": 1921, "pubmed_id": 22086960, "title": "PrimerBank: a PCR primer database for quantitative gene expression analysis, 2012 update.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1013", "authors": "Wang X., Spandidos A., Wang H., Seed B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1013", "created_at": "2021-09-30T08:25:56.197Z", "updated_at": "2021-09-30T08:25:56.197Z"}, {"id": 1922, "pubmed_id": 19906719, "title": "PrimerBank: a resource of human and mouse PCR primer pairs for gene expression detection and quantification.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1005", "authors": "Spandidos A., Wang X., Wang H., Seed B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp1005", "created_at": "2021-09-30T08:25:56.306Z", "updated_at": "2021-09-30T08:25:56.306Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1890", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:17.663Z", "metadata": {"doi": "10.25504/FAIRsharing.tyyn81", "name": "Health Canada Drug Product Database", "status": "ready", "contacts": [{"contact-email": "Info@hc-sc.gc.ca"}], "homepage": "https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/drug-product-database.html", "citations": [], "identifier": 1890, "description": "The Health Canada Drug Product Database contains product specific information on drugs approved for use in Canada. The database is managed by Health Canada and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. It contains approximately 15,000 products which companies have notified Health Canada as being marketed.", "abbreviation": "HC DPD", "support-links": [{"url": "http://www.hc-sc.gc.ca/dhp-mps/prodpharma/applic-demande/guide-ld/monograph/pm_qa_mp_qr-eng.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.hc-sc.gc.ca/dhp-mps/prodpharma/databasdon/search_tips_conseils_recherche-eng.php", "type": "Help documentation"}, {"url": "http://www.hc-sc.gc.ca/dhp-mps/prodpharma/databasdon/terminolog-eng.php", "type": "Help documentation"}, {"url": "https://twitter.com/HealthCanada", "type": "Twitter"}], "data-processes": [{"url": "http://www.hc-sc.gc.ca/dhp-mps/prodpharma/databasdon/dpd_bdpp_data_extract-eng.php", "name": "Data download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012754", "name": "re3data:r3d100012754", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000355", "bsg-d000355"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Drug"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Health Canada Drug Product Database", "abbreviation": "HC DPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.tyyn81", "doi": "10.25504/FAIRsharing.tyyn81", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Health Canada Drug Product Database contains product specific information on drugs approved for use in Canada. The database is managed by Health Canada and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. It contains approximately 15,000 products which companies have notified Health Canada as being marketed.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3044", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-22T13:23:17.000Z", "updated-at": "2021-12-06T10:47:31.525Z", "metadata": {"name": "South African Environmental Observation Network Data Portal", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "enquiries@saeon.ac.za"}], "homepage": "http://www.saeon.ac.za/data-portal-access", "identifier": 3044, "description": "The SAEON Data Portal provides meta-data-driven search and discovery facilities, and also serves as a repository for data contributed by stakeholders and providers.", "abbreviation": "SAEON Data Portal", "year-creation": 2009, "data-processes": [{"url": "http://www.sasdi.net/search.aspx?guid=5bb81c7b-15e1-1be1-df7a-0eb437683c76&noframe=true&tab=Analysis", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012487", "name": "re3data:r3d100012487", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001552", "bsg-d001552"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geospatial Data"], "countries": ["South Africa"], "name": "FAIRsharing record for: South African Environmental Observation Network Data Portal", "abbreviation": "SAEON Data Portal", "url": "https://fairsharing.org/fairsharing_records/3044", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SAEON Data Portal provides meta-data-driven search and discovery facilities, and also serves as a repository for data contributed by stakeholders and providers.", "publications": [], "licence-links": [{"licence-name": "SAEON Terms and Conditions & Disclaimer", "licence-id": 723, "link-id": 1954, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2623", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-23T15:26:20.000Z", "updated-at": "2021-11-24T13:19:36.699Z", "metadata": {"name": "Longhorn Array Database", "status": "deprecated", "contacts": [{"contact-name": "Yan Song", "contact-email": "yan.song@okstate.edu"}], "homepage": "http://darwin.biochem.okstate.edu/lad/ilat/", "identifier": 2623, "description": "The Longhorn Array Database (LAD) is a MIAME\u2010compliant microarray database that operates on PostgreSQL and Linux. It is a free, completely open\u2010source, and provides a systematic and proven environment in which vast experiment sets can be safely archived, securely accessed, biologically annotated, quantitatively analyzed, and visually explored. This unit provides the complete set of information needed to successfully deploy, configure, and use LAD for the purposes of two\u2010color DNA microarray analysis and visualization.", "abbreviation": "LAD", "support-links": [{"url": "http://darwin.biochem.okstate.edu/lad/ilat/help.shtml", "name": "Online Help", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://darwin.biochem.okstate.edu/cgi-bin/SMD/login.pl", "name": "Login", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001110", "bsg-d001110"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Microarray experiment", "DNA microarray"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Longhorn Array Database", "abbreviation": "LAD", "url": "https://fairsharing.org/fairsharing_records/2623", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Longhorn Array Database (LAD) is a MIAME\u2010compliant microarray database that operates on PostgreSQL and Linux. It is a free, completely open\u2010source, and provides a systematic and proven environment in which vast experiment sets can be safely archived, securely accessed, biologically annotated, quantitatively analyzed, and visually explored. This unit provides the complete set of information needed to successfully deploy, configure, and use LAD for the purposes of two\u2010color DNA microarray analysis and visualization.", "publications": [{"id": 2222, "pubmed_id": 18428730, "title": "Microarray data visualization and analysis with the Longhorn Array Database (LAD).", "year": 2008, "url": "http://doi.org/10.1002/0471250953.bi0710s08", "authors": "Killion PJ,Iyer VR", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0710s08", "created_at": "2021-09-30T08:26:30.397Z", "updated_at": "2021-09-30T08:26:30.397Z"}, {"id": 2287, "pubmed_id": 12930545, "title": "The Longhorn Array Database (LAD): an open-source, MIAME compliant implementation of the Stanford Microarray Database (SMD).", "year": 2003, "url": "http://doi.org/10.1186/1471-2105-4-32", "authors": "Killion PJ,Sherlock G,Iyer VR", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-4-32", "created_at": "2021-09-30T08:26:38.725Z", "updated_at": "2021-09-30T08:26:38.725Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2719", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-30T19:49:45.000Z", "updated-at": "2021-12-06T10:49:18.073Z", "metadata": {"doi": "10.25504/FAIRsharing.uovQrT", "name": "Vivli", "status": "ready", "contacts": [{"contact-name": "Julie Wood", "contact-email": "jwood@vivli.org"}], "homepage": "https://vivli.org/", "citations": [], "identifier": 2719, "description": "The Vivli data repository provides a global data-sharing and analytics platform serving all elements of the international research community. It is focused on sharing individual participant-level data from completed clinical trials to serve the international research community. Vivli acts as a neutral broker between data contributor and data user and the wider data sharing community. Vivli is a non-profit organization focused on data sharing and analysis. Vivli provides managed access for human subject clinical research data. At a minimum, Vivli will make data available for researchers for 10 years, unless they are contractually unable to do so. On an ongoing basis, Vivli evaluates its data holdings with regard to maintaining access and reserves the right to discontinue the distribution of a data collections when deemed appropriate.When materials are deaccessioned, the data are no longer publicly accessible at Vivli, although they may still be preserved in Vivli\u2019s storage vault. Because digital files are assigned a persistent digital object identifier (DOI), the study description is still available to view, but is not searchable through Vivli. Web crawlers are instructed to ignore the descriptions (via the robots exclusion protocol).\nFor more information about Vivli\u2019s policy, please contact Vivli at support@vivli.org\nIt provides a no-charge period for data only available within their secure research environment. There are costs after the no-charge time period ends. Vivli supports managed access as well as embargoing generally and during peer review. Vivli is funded via grants and member fees.", "abbreviation": "Vivli", "data-curation": {"url": "https://vivli.org/how-to-share-your-data-on-the-vivli-platform/", "type": "manual"}, "support-links": [{"url": "https://www.linkedin.com/company/vivli/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://vivli.org/news/", "name": "News & Events", "type": "Blog/News"}, {"url": "support@vivli.org", "name": "Support Email", "type": "Support email"}, {"url": "https://vivli.org/resources/faqs/", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://vivli.org/resources/", "name": "How-To Guide", "type": "Help documentation"}, {"url": "https://vivli.org/how-to-share-your-data-on-the-vivli-platform/", "name": "Researcher Costs", "type": "Help documentation"}, {"url": "https://vivli.org/resources/vivli-secure-research-environment/", "name": "About Secure Research Environments", "type": "Help documentation"}, {"url": "https://twitter.com/VivliCenter", "name": "@VivliCenter", "type": "Twitter"}, {"url": "https://vivli.org/about/overview/", "name": "Vivli Overview", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCxbUyLsTVHwh6Dy7_NNVUcw", "name": "Vivli Youtube channel", "type": "Video"}], "year-creation": 2018, "data-processes": [{"url": "https://search.vivli.org/", "name": "Search Vivli", "type": "data access"}, {"name": "Size Limit: 1T", "type": "data access"}, {"name": "Per-researcher storage: unlimited", "type": "data curation"}, {"name": "Version support coming soon", "type": "data versioning"}, {"name": "Anonymized individual-level patient data available", "type": "data access"}], "associated-tools": [{"url": "https://vivli.org/resources/vivli-secure-research-environment/", "name": "See webpage for latest PDF list of tools available as standard in the research environment"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012823", "name": "re3data:r3d100012823", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_018080", "name": "SciCrunch:RRID:SCR_018080", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {"url": "https://vivli.org/about/data-request-review-process/", "type": "controlled"}, "resource-sustainability": {}, "data-preservation-policy": {"url": "https://vivli.org/resources/faqs/", "name": "See FAQ How long will Vivli store my research in the Vivli platform?"}, "data-deposition-condition": {"url": "https://vivli.org/how-to-share-your-data-on-the-vivli-platform/", "type": "controlled"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": ["biodbcore-001217", "bsg-d001217"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies", "Health Science", "Virology", "Biomedical Science", "Preclinical Studies"], "domains": ["Data storage"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Vivli", "abbreviation": "Vivli", "url": "https://fairsharing.org/10.25504/FAIRsharing.uovQrT", "doi": "10.25504/FAIRsharing.uovQrT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Vivli data repository provides a global data-sharing and analytics platform serving all elements of the international research community. It is focused on sharing individual participant-level data from completed clinical trials to serve the international research community. Vivli acts as a neutral broker between data contributor and data user and the wider data sharing community. Vivli is a non-profit organization focused on data sharing and analysis. Vivli provides managed access for human subject clinical research data. At a minimum, Vivli will make data available for researchers for 10 years, unless they are contractually unable to do so. On an ongoing basis, Vivli evaluates its data holdings with regard to maintaining access and reserves the right to discontinue the distribution of a data collections when deemed appropriate.When materials are deaccessioned, the data are no longer publicly accessible at Vivli, although they may still be preserved in Vivli\u2019s storage vault. Because digital files are assigned a persistent digital object identifier (DOI), the study description is still available to view, but is not searchable through Vivli. Web crawlers are instructed to ignore the descriptions (via the robots exclusion protocol).\nFor more information about Vivli\u2019s policy, please contact Vivli at support@vivli.org\nIt provides a no-charge period for data only available within their secure research environment. There are costs after the no-charge time period ends. Vivli supports managed access as well as embargoing generally and during peer review. Vivli is funded via grants and member fees.", "publications": [], "licence-links": [{"licence-name": "Vivli Privacy Statement", "licence-id": 845, "link-id": 1912, "relation": "undefined"}, {"licence-name": "Vivli Data Use Agreement", "licence-id": 844, "link-id": 1913, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1826", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.580Z", "metadata": {"doi": "10.25504/FAIRsharing.c1rep3", "name": "PolyDoms", "status": "deprecated", "contacts": [{"contact-name": "Anil Jegga", "contact-email": "anil.jegga@cchmc.org"}], "homepage": "http://polydoms.cchmc.org", "identifier": 1826, "description": "An integrated database of human coding single nucleotide polymorphisms (SNPs) and their annotations.", "abbreviation": "PolyDoms", "support-links": [{"url": "http://info.chmcc.org/help/polydoms/index.html", "type": "Help documentation"}], "year-creation": 2006, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000286", "bsg-d000286"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Annotation", "Deoxyribonucleic acid", "Single nucleotide polymorphism"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PolyDoms", "abbreviation": "PolyDoms", "url": "https://fairsharing.org/10.25504/FAIRsharing.c1rep3", "doi": "10.25504/FAIRsharing.c1rep3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: An integrated database of human coding single nucleotide polymorphisms (SNPs) and their annotations.", "publications": [{"id": 3103, "pubmed_id": 17142238, "title": "PolyDoms: a whole genome database for the identification of non-synonymous coding SNPs with the potential to impact disease.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl826", "authors": "Jegga AG,Gowrisankar S,Chen J,Aronow BJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl826", "created_at": "2021-09-30T08:28:22.225Z", "updated_at": "2021-09-30T11:29:51.179Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1891", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:22.535Z", "metadata": {"doi": "10.25504/FAIRsharing.cwx04e", "name": "SABIO-RK Biochemical Reaction Kinetics Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "sabiork@h-its.org"}], "homepage": "http://sabiork.h-its.org/", "identifier": 1891, "description": "SABIO-RK is a database for biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured.", "abbreviation": "SABIO-RK", "access-points": [{"url": "http://sabiork.h-its.org/sabioRestWebServices/kineticLaws/123", "name": "Get a single kinetic law entry by SABIO entry ID", "type": "REST"}], "support-links": [{"url": "http://sabiork.h-its.org/contactFormSabio", "type": "Contact form"}, {"url": "http://sabiork.h-its.org/layouts/content/webservices.gsp", "type": "Help documentation"}, {"url": "http://sabiork.h-its.org/layouts/content/documentation.gsp", "type": "Help documentation"}], "year-creation": 2006, "associated-tools": [{"url": "http://sabiork.h-its.org/contactFormSabio", "name": "User Request"}, {"url": "http://sabiork.h-its.org/newSearch/index", "name": "search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011052", "name": "re3data:r3d100011052", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002122", "name": "SciCrunch:RRID:SCR_002122", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000356", "bsg-d000356"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biochemistry", "Life Science"], "domains": ["Reaction data", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: SABIO-RK Biochemical Reaction Kinetics Database", "abbreviation": "SABIO-RK", "url": "https://fairsharing.org/10.25504/FAIRsharing.cwx04e", "doi": "10.25504/FAIRsharing.cwx04e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SABIO-RK is a database for biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured.", "publications": [{"id": 384, "pubmed_id": 22102587, "title": "SABIO-RK--database for biochemical reaction kinetics.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1046", "authors": "Wittig U., Kania R., Golebiewski M., Rey M., Shi L., Jong L., Algaa E., Weidemann A., Sauer-Danzwith H., Mir S., Krebs O., Bittkowski M., Wetsch E., Rojas I., M\u00fcller W.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1046", "created_at": "2021-09-30T08:23:01.591Z", "updated_at": "2021-09-30T08:23:01.591Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 363, "relation": "undefined"}, {"licence-name": "Sabio-RK Non-Commercial Purpose License", "licence-id": 722, "link-id": 379, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1845", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:04.308Z", "metadata": {"doi": "10.25504/FAIRsharing.6k0kwd", "name": "ArrayExpress", "status": "ready", "contacts": [{"contact-name": "ArrayExpress Team", "contact-email": "arrayexpress@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/arrayexpress/", "citations": [{"doi": "10.1093/nar/gky964", "pubmed-id": 30357387, "publication-id": 2603}], "identifier": 1845, "description": "ArrayExpress is a database of functional genomics experiments that can be queried and the data downloaded. It includes gene expression data from microarray and high throughput sequencing studies. Data is collected to MIAME and MINSEQE standards. Experiments are submitted directly to ArrayExpress or are imported from the NCBI GEO database.", "abbreviation": "ArrayExpress", "access-points": [{"url": "https://www.ebi.ac.uk/arrayexpress/help/programmatic_access.html", "name": "ArrayExpress Web Services", "type": "REST"}], "support-links": [{"url": "annotare@ebi.ac.uk", "name": "Annotare Helpdesk", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/arrayexpress/help/FAQ.html", "name": "ArrayExpress FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/arrayexpress/help/index.html", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/arrayexpress/help/contact_us.html", "name": "Contact Page", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/arrayexpress/about.html", "name": "About", "type": "Help documentation"}, {"url": "http://www.ebi.ac.uk/arrayexpress/rss/v2/experiments", "name": "RSS Feed", "type": "Blog/News"}, {"url": "https://tess.elixir-europe.org/materials/arrayexpress-quick-tour", "name": "Arrayexpress quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/arrayexpress-discover-functional-genomics-data-quickly-and-easily", "name": "ArrayExpress: Discover functional genomics data quickly and easily", "type": "TeSS links to training materials"}, {"url": "http://www.ebi.ac.uk/training/online/course/functional-genomics-introduction-embl-ebi-resource-1", "name": "Functional genomics at the EBI", "type": "Training documentation"}, {"url": "https://twitter.com/ArrayExpressEBI", "name": "@ArrayExpressEBI", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "ftp://ftp.ebi.ac.uk/pub/databases/arrayexpress/data/", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/arrayexpress/browse.html", "name": "Browse", "type": "data access"}, {"url": "https://www.ebi.ac.uk/arrayexpress/submit/overview.html", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/fg/annotare/", "name": "Annotare"}, {"url": "http://www.bioconductor.org/packages/release/bioc/html/ArrayExpress.html", "name": "ArrayExpress Bioconductor Package"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010222", "name": "re3data:r3d100010222", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002964", "name": "SciCrunch:RRID:SCR_002964", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000305", "bsg-d000305"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics"], "domains": ["Expression data", "Experimental measurement", "Genotyping", "Nucleotide", "Gene expression", "Methylation", "Protocol", "Chromatin immunoprecipitation - DNA sequencing", "Chromatin immunoprecipitation - DNA microarray", "RNA sequencing", "DNA microarray", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: ArrayExpress", "abbreviation": "ArrayExpress", "url": "https://fairsharing.org/10.25504/FAIRsharing.6k0kwd", "doi": "10.25504/FAIRsharing.6k0kwd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ArrayExpress is a database of functional genomics experiments that can be queried and the data downloaded. It includes gene expression data from microarray and high throughput sequencing studies. Data is collected to MIAME and MINSEQE standards. Experiments are submitted directly to ArrayExpress or are imported from the NCBI GEO database.", "publications": [{"id": 353, "pubmed_id": 12519949, "title": "ArrayExpress--a public repository for microarray gene expression data at the EBI.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg091", "authors": "Brazma A., Parkinson H., Sarkans U., Shojatalab M., Vilo J., Abeygunawardena N., Holloway E., Kapushesky M., Kemmeren P., Lara GG., Oezcimen A., Rocca-Serra P., Sansone SA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg091", "created_at": "2021-09-30T08:22:57.984Z", "updated_at": "2021-09-30T08:22:57.984Z"}, {"id": 678, "pubmed_id": 25361974, "title": "ArrayExpress update-simplifying data submissions.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1057", "authors": "Kolesnikov N, Hastings E, Keays M, Melnichuk O, Tang YA, Williams E, Dylag M, Kurbatova N, Brandizi M, Burdett T, Megy K, Pilicheva E, Rustici G, Tikhonov A, Parkinson H, Petryszak R, Sarkans U, Brazma A.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1057", "created_at": "2021-09-30T08:23:34.741Z", "updated_at": "2021-09-30T11:28:48.959Z"}, {"id": 2603, "pubmed_id": 30357387, "title": "ArrayExpress update \u2013 from bulk to single-cell expression data", "year": 2018, "url": "http://doi.org/10.1093/nar/gky964", "authors": "Awais Athar, Anja F\u00fcllgrabe, Nancy George, Haider Iqbal, Laura Huerta, Ahmed Ali, Catherine Snow, Nuno A Fonseca, Robert Petryszak, Irene Papatheodorou, Ugis Sarkans, Alvis Brazma", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky964", "created_at": "2021-09-30T08:27:19.479Z", "updated_at": "2021-09-30T08:27:19.479Z"}], "licence-links": [{"licence-name": "ArrayExpress Data Access Policy", "licence-id": 41, "link-id": 1608, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1709, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2784", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-15T15:35:14.000Z", "updated-at": "2021-11-24T13:15:47.677Z", "metadata": {"doi": "10.25504/FAIRsharing.7CVoS6", "name": "SynBioHub", "status": "ready", "contacts": [{"contact-name": "Chris Myers", "contact-email": "myers@ece.utah.edu", "contact-orcid": "0000-0002-8762-8444"}], "homepage": "https://synbiohub.org", "citations": [{"doi": "10.1021/acssynbio.7b00403", "pubmed-id": 29316788, "publication-id": 1184}], "identifier": 2784, "description": "SynBioHub is a design repository for people designing biological constructs. It enables DNA and protein designs to be uploaded, then provides a shareable link to allow others to view them. SynBioHub also facilitates searching for information about existing useful parts and designs by combining data from a variety of sources.", "abbreviation": "SBH", "access-points": [{"url": "https://wiki.synbiohub.org/api-docs/#user-endpoints", "name": "SynBioHub API", "type": "REST"}], "support-links": [{"url": "https://groups.google.com/forum/#!forum/synbiohub-users", "name": "SynBioHub Users Forum", "type": "Forum"}, {"url": "https://wiki.synbiohub.org/aboutsynbiohub/", "name": "About SynBioHub", "type": "Help documentation"}, {"url": "https://wiki.synbiohub.org/", "name": "Wiki Pages", "type": "Help documentation"}, {"url": "https://github.com/SynBioHub/synbiohub", "name": "GitHub repository", "type": "Github"}], "year-creation": 2017, "data-processes": [{"url": "https://synbiohub.org/browse", "name": "Browse Design Collections", "type": "data access"}, {"url": "https://synbiohub.org/submit", "name": "Submit a Design", "type": "data curation"}, {"url": "https://synbiohub.org/manage", "name": "Manage Submissions", "type": "data curation"}, {"url": "https://synbiohub.org/search?q=", "name": "Search", "type": "data access"}, {"url": "https://synbiohub.org/advancedSearch", "name": "Advanced Search", "type": "data access"}, {"url": "https://synbiohub.org/sbsearch", "name": "Sequence Search", "type": "data access"}, {"url": "https://synbiohub.org/sparql", "name": "SPARQL Query", "type": "data access"}]}, "legacy-ids": ["biodbcore-001283", "bsg-d001283"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioengineering", "Synthetic Biology"], "domains": ["Deoxyribonucleic acid", "Protein"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: SynBioHub", "abbreviation": "SBH", "url": "https://fairsharing.org/10.25504/FAIRsharing.7CVoS6", "doi": "10.25504/FAIRsharing.7CVoS6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SynBioHub is a design repository for people designing biological constructs. It enables DNA and protein designs to be uploaded, then provides a shareable link to allow others to view them. SynBioHub also facilitates searching for information about existing useful parts and designs by combining data from a variety of sources.", "publications": [{"id": 1184, "pubmed_id": 29316788, "title": "SynBioHub: A Standards-Enabled Design Repository for Synthetic Biology.", "year": 2018, "url": "http://doi.org/10.1021/acssynbio.7b00403", "authors": "McLaughlin JA,Myers CJ,Zundel Z,Misirli G,Zhang M,Ofiteru ID,Goni-Moreno A,Wipat A", "journal": "ACS Synth Biol", "doi": "10.1021/acssynbio.7b00403", "created_at": "2021-09-30T08:24:31.616Z", "updated_at": "2021-09-30T08:24:31.616Z"}], "licence-links": [{"licence-name": "2-Clause BSD License (BSD-2-Clause) (Simplified BSD License) (FreeBSD License)", "licence-id": 2, "link-id": 2414, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2198", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T13:44:46.000Z", "updated-at": "2021-11-24T13:13:56.081Z", "metadata": {"doi": "10.25504/FAIRsharing.pqnhpj", "name": "Medical Information Mart for Intensive Care III", "status": "ready", "contacts": [{"contact-email": "mimic-support@physionet.org"}], "homepage": "http://mimic.physionet.org/", "citations": [{"doi": "10.1038/sdata.2016.35", "pubmed-id": 27219127, "publication-id": 1213}], "identifier": 2198, "description": "MIMIC-III (Medical Information Mart for Intensive Care III) is a large, freely-available database comprising deidentified health-related data associated with over forty thousand patients who stayed in critical care units of the Beth Israel Deaconess Medical Center between 2001 and 2012. The database includes information such as demographics, vital sign measurements made at the bedside (~1 data point per hour), laboratory test results, procedures, medications, caregiver notes, imaging reports, and mortality (both in and out of hospital). MIMIC supports a diverse range of analytic studies spanning epidemiology, clinical decision-rule improvement, and electronic tool development. I", "abbreviation": "MIMIC-III", "support-links": [{"url": "http://mimic.physionet.org/help/", "name": "Help and Support", "type": "Help documentation"}, {"url": "http://mimic.physionet.org/gettingstarted/access/", "name": "Requesting Access", "type": "Help documentation"}, {"url": "http://mimic.physionet.org/about/mimic/", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/MIT-LCP/mimic-website", "name": "Github Repository", "type": "Github"}], "year-creation": 2001, "data-processes": [{"url": "http://physionet.org/mimic2/", "name": "Web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000672", "bsg-d000672"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Medicine", "Clinical Studies", "Health Science", "Data Security", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Hospital"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Medical Information Mart for Intensive Care III", "abbreviation": "MIMIC-III", "url": "https://fairsharing.org/10.25504/FAIRsharing.pqnhpj", "doi": "10.25504/FAIRsharing.pqnhpj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MIMIC-III (Medical Information Mart for Intensive Care III) is a large, freely-available database comprising deidentified health-related data associated with over forty thousand patients who stayed in critical care units of the Beth Israel Deaconess Medical Center between 2001 and 2012. The database includes information such as demographics, vital sign measurements made at the bedside (~1 data point per hour), laboratory test results, procedures, medications, caregiver notes, imaging reports, and mortality (both in and out of hospital). MIMIC supports a diverse range of analytic studies spanning epidemiology, clinical decision-rule improvement, and electronic tool development. I", "publications": [{"id": 1213, "pubmed_id": 27219127, "title": "MIMIC-III, a freely accessible critical care database.", "year": 2016, "url": "http://doi.org/10.1038/sdata.2016.35", "authors": "Johnson AE,Pollard TJ,Shen L,Lehman LW,Feng M,Ghassemi M,Moody B,Szolovits P,Celi LA,Mark RG", "journal": "Sci Data", "doi": "10.1038/sdata.2016.35", "created_at": "2021-09-30T08:24:35.183Z", "updated_at": "2021-09-30T08:24:35.183Z"}, {"id": 2572, "pubmed_id": 21283005, "title": "Multiparameter Intelligent Monitoring in Intensive Care II (MIMIC-II): A public-access intensive care unit database", "year": 1987, "url": "https://www.ncbi.nlm.nih.gov/pubmed/21283005", "authors": "Saeed, Mohammed and Villarroel, Mauricio and Reisner, Andrew T. and Clifford, Gari and Lehman, Li-Wei and Moody, George and Heldt, Thomas and Kyaw, Tin H. and Moody, Benjamin and Mark, Roger G.", "journal": "Critical Care Medicine", "doi": "10.1097/CCM.0b013e31820a92c6", "created_at": "2021-09-30T08:27:15.420Z", "updated_at": "2021-09-30T08:27:15.420Z"}], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1191, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1946", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:34.450Z", "metadata": {"doi": "10.25504/FAIRsharing.wkaakq", "name": "Protein Model Database", "status": "ready", "contacts": [{"contact-name": "Anna Tramontano", "contact-email": "anna.tramontano@uniroma1.it"}], "homepage": "http://srv00.recas.ba.infn.it/PMDB/main.php", "citations": [{"doi": "10.1093/nar/gkj105", "pubmed-id": 16381873, "publication-id": 439}], "identifier": 1946, "description": "The Protein Model DataBase (PMDB) is a database that stores three dimensional protein models obtained by structure prediction techniques.", "abbreviation": "PMDB", "support-links": [{"url": "http://srv00.recas.ba.infn.it/PMDB/my_news.php", "name": "News", "type": "Blog/News"}, {"url": "hpc-service-bio@cineca.it", "name": "hpc-service-bio@cineca.it", "type": "Support email"}, {"url": "info@biocomputing.it", "name": "info@biocomputing.it", "type": "Support email"}, {"url": "http://srv00.recas.ba.infn.it/PMDB/help.php", "name": "Help Page", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://srv00.recas.ba.infn.it/PMDB/user/user.php?search_choose=Model&align=noalign", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000412", "bsg-d000412"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Molecular structure", "Protein structure", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Protein Model Database", "abbreviation": "PMDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.wkaakq", "doi": "10.25504/FAIRsharing.wkaakq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Model DataBase (PMDB) is a database that stores three dimensional protein models obtained by structure prediction techniques.", "publications": [{"id": 439, "pubmed_id": 16381873, "title": "The PMDB Protein Model Database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj105", "authors": "Castrignan\u00f2 T., De Meo PD., Cozzetto D., Talamo IG., Tramontano A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj105", "created_at": "2021-09-30T08:23:07.684Z", "updated_at": "2021-09-30T08:23:07.684Z"}], "licence-links": [{"licence-name": "PMDB Attribution required", "licence-id": 673, "link-id": 1311, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3188", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-14T10:21:55.000Z", "updated-at": "2022-02-08T10:54:43.549Z", "metadata": {"doi": "10.25504/FAIRsharing.b67925", "name": "DDBJ Trace Archive", "status": "ready", "contacts": [], "homepage": "https://www.ddbj.nig.ac.jp/dta/index-e.html", "citations": [], "identifier": 3188, "description": "DDBJ Trace Archive (DTA) is a permanent repository of DNA sequence chromatograms (traces), base calls, and quality estimates for single-pass reads from various large-scale sequencing projects. DTA is a member of the International Nucleotide Sequence Database Collaboration (INSDC) and collects the data in a collaboration with NCBI Trace Archive and EBI Trace Archive. Released data can be searched and retrieved at the NCBI Trace Archive.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://docs.google.com/forms/d/e/1FAIpQLSeNrBMkr9lV6IaWCJCXeGBddDF3tJXcv6SQCQ5lYWETmiuRAg/viewform", "name": "Contact form", "type": "Contact form"}, {"url": "ddbjsub@ddbj.nig.ac.jp", "name": "Support email", "type": "Support email"}, {"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html", "name": "DDBJ Trace Archives FAQs", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "https://ddbj.nig.ac.jp/public/ddbj_database/dta/", "name": "Download", "type": "data access"}, {"url": "https://www.ddbj.nig.ac.jp/dta/submission-e.html", "name": "Submit", "type": "data curation"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001699", "bsg-d001699"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Sequence similarity", "Sequence annotation", "Multiple sequence alignment", "Sequence alignment", "Sequence", "Sequence motif"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: DDBJ Trace Archive", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.b67925", "doi": "10.25504/FAIRsharing.b67925", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DDBJ Trace Archive (DTA) is a permanent repository of DNA sequence chromatograms (traces), base calls, and quality estimates for single-pass reads from various large-scale sequencing projects. DTA is a member of the International Nucleotide Sequence Database Collaboration (INSDC) and collects the data in a collaboration with NCBI Trace Archive and EBI Trace Archive. Released data can be searched and retrieved at the NCBI Trace Archive.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 651, "relation": "undefined"}, {"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 653, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1815", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-27T09:24:44.559Z", "metadata": {"doi": "10.25504/FAIRsharing.qx2rvz", "name": "Common Access to Biological Resources and Information", "status": "ready", "contacts": [{"contact-name": "Paolo Romano", "contact-email": "paolo.romano@hsanmartino.it", "contact-orcid": "0000-0003-4694-3883"}], "homepage": "http://www.cabri.org", "citations": [], "identifier": 1815, "description": "CABRI provides an integrated resource including catalogues of strains of different organism types, genetic materials and other biologicals resources of European culture collections so that the user world-wide can access these relevant data during one searching session through a common entry point and get in touch with collections for ordering products to be delivered to their place of work.", "abbreviation": "CABRI", "data-curation": {}, "support-links": [{"url": "http://www.cabri.org/FAQ/faq.html", "name": "FAQ page", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1999, "data-processes": [{"url": "http://www.cabri.org/CABRI/srs-doc/index.html", "name": "Simple Search", "type": "data access"}, {"url": "http://www.cabri.org/HyperCat/index.html", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://www.cabri.org/CABRI/srs-doc/index.html", "name": "Simple search"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000275", "bsg-d000275"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Medical Microbiology", "Applied Microbiology", "Virology", "Molecular Microbiology", "Microbiology"], "domains": ["Cell line", "Plasmid"], "taxonomies": ["Bacteria", "Bacteriophage sp.", "Fungi", "Saccharomyces"], "user-defined-tags": [], "countries": ["United Kingdom", "Belgium", "Italy", "France", "Netherlands", "Germany"], "name": "FAIRsharing record for: Common Access to Biological Resources and Information", "abbreviation": "CABRI", "url": "https://fairsharing.org/10.25504/FAIRsharing.qx2rvz", "doi": "10.25504/FAIRsharing.qx2rvz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CABRI provides an integrated resource including catalogues of strains of different organism types, genetic materials and other biologicals resources of European culture collections so that the user world-wide can access these relevant data during one searching session through a common entry point and get in touch with collections for ordering products to be delivered to their place of work.", "publications": [{"id": 324, "pubmed_id": 18629057, "title": "Interoperability of CABRI Services and Biochemical Pathways Databases.", "year": 2008, "url": "http://doi.org/10.1002/cfg.376", "authors": "Romano P., Aresu O., Assunta Manniello M., Parodi B.,", "journal": "Comp. Funct. Genomics", "doi": "10.1002/cfg.376", "created_at": "2021-09-30T08:22:54.776Z", "updated_at": "2021-09-30T08:22:54.776Z"}, {"id": 3112, "pubmed_id": 16231959, "title": "The role of informatics in the coordinated management of biological resources collections.", "year": 2005, "url": "https://pubmed.ncbi.nlm.nih.gov/16231959", "authors": "Romano P, Kracht M, Manniello MA, Stegehuis G, Fritze D", "journal": "Applied bioinformatics", "doi": null, "created_at": "2021-10-05T08:19:59.142Z", "updated_at": "2021-10-05T08:19:59.142Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1761", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.295Z", "metadata": {"doi": "10.25504/FAIRsharing.efwq12", "name": "UK Stem Cell Bank", "status": "ready", "contacts": [{"contact-name": "Lyn Healy", "contact-email": "lhealy@nibsc.ac.uk"}], "homepage": "https://www.nibsc.org/ukstemcellbank", "identifier": 1761, "description": "The UK Stem Cell Bank (UKSCB) facilitates the use and sharing of quality-controlled stem cell lines to support scientific research and clinical development of stem cell therapies. The work of the UK Stem Cell Bank covers three main areas: banking for all UK-derived human embryonic stem cell lines, research in the standardisation, quality and safety of human pluripotent stem cell (hPSC)-based products, and regulation regarding international best practice, policies and guidelines relating to stem cell use and regulation around the world.", "abbreviation": "UKSCB", "support-links": [{"url": "enquiries@ukstemcellbank.org.uk", "name": "General Enquiries", "type": "Support email"}, {"url": "http://www.nibsc.org/science_and_research/advanced_therapies/uk_stem_cell_bank/policies_guidelines_and_due_diligence.aspx", "name": "Policies, Guidelines and Due Diligence", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.nibsc.org/science_and_research/advanced_therapies/uk_stem_cell_bank/cell_lines.aspx", "name": "browse", "type": "data access"}, {"url": "http://www.nibsc.org/science_and_research/advanced_therapies/uk_stem_cell_bank/application_forms.aspx", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000219", "bsg-d000219"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Preclinical Studies"], "domains": ["Stem cell", "Study design"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UK Stem Cell Bank", "abbreviation": "UKSCB", "url": "https://fairsharing.org/10.25504/FAIRsharing.efwq12", "doi": "10.25504/FAIRsharing.efwq12", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UK Stem Cell Bank (UKSCB) facilitates the use and sharing of quality-controlled stem cell lines to support scientific research and clinical development of stem cell therapies. The work of the UK Stem Cell Bank covers three main areas: banking for all UK-derived human embryonic stem cell lines, research in the standardisation, quality and safety of human pluripotent stem cell (hPSC)-based products, and regulation regarding international best practice, policies and guidelines relating to stem cell use and regulation around the world.", "publications": [{"id": 441, "pubmed_id": 16290151, "title": "The UK Stem Cell Bank: its role as a public research resource centre providing access to well-characterised seed stocks of human stem cell lines.", "year": 2005, "url": "http://doi.org/10.1016/j.addr.2005.07.019", "authors": "Healy L., Hunt C., Young L., Stacey G.,", "journal": "Adv. Drug Deliv. Rev.", "doi": "10.1016/j.addr.2005.07.019", "created_at": "2021-09-30T08:23:07.883Z", "updated_at": "2021-09-30T08:23:07.883Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2331, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3183", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-09T03:47:37.000Z", "updated-at": "2021-12-06T10:48:49.491Z", "metadata": {"doi": "10.25504/FAIRsharing.l3u60T", "name": "University of Tasmania Research Data Portal", "status": "ready", "contacts": [{"contact-name": "Regina Magierowski", "contact-email": "reginam@utas.edu.au", "contact-orcid": "0000-0002-7547-8549"}], "homepage": "https://rdp.utas.edu.au", "citations": [], "identifier": 3183, "description": "The University of Tasmania Research Data Portal (RDP) enables UTAS researchers to securely store and publish their datasets. Datasets published in RDP are publicly available through the Research Data Australia Search Portal (https://researchdata.edu.au/).", "abbreviation": "UTAS RDP", "access-points": [{"url": "https://rdp.utas.edu.au/api/harvest/rifcs", "name": "RIF-CS harvesting end point", "type": "Other"}], "support-links": [{"url": "research.data@utas.edu.au", "name": "UTAS Research Data Team", "type": "Support email"}, {"url": "https://www.ands.org.au/online-services/rif-cs-schema", "name": "RIF-CS Schema", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://researchdata.edu.au/search/#!/rows=15/sort=list_title_sort%20asc/class=collection/q=/group=University%20of%20Tasmania%2C%20Australia/p=1/advanced=true/", "name": "Search UTAS RDP (via RDA)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013602", "name": "re3data:r3d100013602", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001694", "bsg-d001694"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Australia"], "name": "FAIRsharing record for: University of Tasmania Research Data Portal", "abbreviation": "UTAS RDP", "url": "https://fairsharing.org/10.25504/FAIRsharing.l3u60T", "doi": "10.25504/FAIRsharing.l3u60T", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The University of Tasmania Research Data Portal (RDP) enables UTAS researchers to securely store and publish their datasets. Datasets published in RDP are publicly available through the Research Data Australia Search Portal (https://researchdata.edu.au/).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)", "licence-id": 162, "link-id": 2180, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2805", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-20T15:26:27.000Z", "updated-at": "2021-12-06T10:49:32.657Z", "metadata": {"doi": "10.25504/FAIRsharing.Z1Y4J2", "name": "ZBW Journal Data Archive", "status": "ready", "contacts": [{"contact-name": "S. Vlaeminck", "contact-email": "journaldata@zbw.eu"}], "homepage": "http://journaldata.zbw.eu/info", "identifier": 2805, "description": "The ZBW Journal Data Archive is a service for editors of journals in economics and management. The aim of this newly established web service is to offer scholarly journals an easy to handle infrastructure for managing and storing data sets of published articles and to link the data sets to their corresponding publication. The service is free of charge for academic journals.", "abbreviation": "JDA", "support-links": [{"url": "http://journaldata.zbw.eu/info", "name": "Information", "type": "Help documentation"}], "year-creation": 2016, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012190", "name": "re3data:r3d100012190", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001304", "bsg-d001304"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economic and Social History", "Agricultural Economics", "Social Policy", "Economic Theory"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Management"], "countries": ["Germany"], "name": "FAIRsharing record for: ZBW Journal Data Archive", "abbreviation": "JDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.Z1Y4J2", "doi": "10.25504/FAIRsharing.Z1Y4J2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ZBW Journal Data Archive is a service for editors of journals in economics and management. The aim of this newly established web service is to offer scholarly journals an easy to handle infrastructure for managing and storing data sets of published articles and to link the data sets to their corresponding publication. The service is free of charge for academic journals.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 91, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2562", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T12:46:22.000Z", "updated-at": "2021-12-06T10:48:52.930Z", "metadata": {"doi": "10.25504/FAIRsharing.mjq9vj", "name": "Kaggle Datasets", "status": "ready", "contacts": [{"contact-name": "Rachael Tatman", "contact-email": "racheal@kaggle.com", "contact-orcid": "0000-0002-2590-8483"}], "homepage": "https://www.kaggle.com/datasets", "identifier": 2562, "description": "Kaggle Datasets is a public open data platform which combines data, users, discussions, and software. Datasets can be searched, bookmarked and explored via Kernels and discussions. All types of data are allowed. Individual users and organizations can register. Datasets can be published either privately or shared publicly.", "abbreviation": "Kaggle Datasets", "access-points": [{"url": "https://www.kaggle.com/docs/api", "name": "Kaggle API", "type": "Other"}], "support-links": [{"url": "https://medium.com/kaggle-blog", "name": "Kaggle Blog", "type": "Blog/News"}, {"url": "https://www.kaggle.com/contact", "name": "Kaggle Contact and Support", "type": "Contact form"}, {"url": "https://www.kaggle.com/host", "name": "Host a Competition", "type": "Help documentation"}, {"url": "https://www.kaggle.com/docs/datasets", "name": "Datasets Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/kaggle", "name": "@kaggle", "type": "Twitter"}], "data-processes": [{"url": "https://www.kaggle.com/datasets?modal=true", "name": "Submit Data", "type": "data curation"}], "associated-tools": [{"url": "https://github.com/Kaggle/kaggle-api/wiki/Dataset-Metadata", "name": "Frictionless Data Package"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012705", "name": "re3data:r3d100012705", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001045", "bsg-d001045"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Kaggle Datasets", "abbreviation": "Kaggle Datasets", "url": "https://fairsharing.org/10.25504/FAIRsharing.mjq9vj", "doi": "10.25504/FAIRsharing.mjq9vj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Kaggle Datasets is a public open data platform which combines data, users, discussions, and software. Datasets can be searched, bookmarked and explored via Kernels and discussions. All types of data are allowed. Individual users and organizations can register. Datasets can be published either privately or shared publicly.", "publications": [], "licence-links": [{"licence-name": "Kaggle Privacy Policy", "licence-id": 473, "link-id": 824, "relation": "undefined"}, {"licence-name": "Kaggle Terms of Use", "licence-id": 474, "link-id": 834, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2515", "type": "fairsharing-records", "attributes": {"created-at": "2017-09-08T15:55:31.000Z", "updated-at": "2022-01-21T14:39:41.145Z", "metadata": {"doi": "10.25504/FAIRsharing.sym4ne", "name": "The Encyclopedia of Proteome Dynamics", "status": "deprecated", "contacts": [{"contact-name": "Alejandro Brenes", "contact-email": "ajbrenesmurillo@dundee.ac.uk", "contact-orcid": "ajbrenesmurillo@dundee.ac.uk"}], "homepage": "https://peptracker.com/epd", "citations": [], "identifier": 2515, "description": "The EPD has been created and is maintained by the Lamond group in the University of Dundee. It combines a polyglot persistent database and web-application that provides open access to integrated proteomics data for >30 000 proteins from published studies on human cells and model organisms. It is designed to provide a user-friendly interface, featuring graphical navigation with interactive visualizations that facilitate powerful data exploration in an intuitive manner. The EPD offers a flexible and scalable ecosystem to integrate proteomics data with genomics information, RNA expression and other related, large-scale datasets.", "abbreviation": "EPD", "access-points": [{"url": "https://peptracker.com/epd/rest/peptide_aggregates/", "name": "Aggregate list of peptides", "type": "REST"}], "support-links": [{"url": "peptracker@dundee.ac.uk", "name": "EPD Contact", "type": "Support email"}, {"url": "https://peptracker.com/epd/details/", "name": "Details", "type": "Help documentation"}, {"url": "https://peptracker.com/epd/about/", "name": "About", "type": "Help documentation"}, {"url": "https://peptracker.com/epd/publications/", "name": "Publications", "type": "Help documentation"}], "year-creation": 2013, "deprecation-date": "2022-01-19", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000997", "bsg-d000997"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Data Visualization"], "domains": ["Peptide identification", "Peptide library", "Post-translational protein modification"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: The Encyclopedia of Proteome Dynamics", "abbreviation": "EPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.sym4ne", "doi": "10.25504/FAIRsharing.sym4ne", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EPD has been created and is maintained by the Lamond group in the University of Dundee. It combines a polyglot persistent database and web-application that provides open access to integrated proteomics data for >30 000 proteins from published studies on human cells and model organisms. It is designed to provide a user-friendly interface, featuring graphical navigation with interactive visualizations that facilitate powerful data exploration in an intuitive manner. The EPD offers a flexible and scalable ecosystem to integrate proteomics data with genomics information, RNA expression and other related, large-scale datasets.", "publications": [{"id": 2256, "pubmed_id": null, "title": "The Encyclopedia of Proteome Dynamics: a big data ecosystem for (prote)omics", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx807", "authors": "Brenes A, Afzal V, Kent R, Lamond A.I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx807", "created_at": "2021-09-30T08:26:34.374Z", "updated_at": "2021-09-30T08:26:34.374Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2135", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:45.995Z", "metadata": {"doi": "10.25504/FAIRsharing.1fbc5y", "name": "arrayMap - Genomic Array Data for Cancer CNV Profiles", "status": "ready", "contacts": [{"contact-name": "Michael Baudis", "contact-email": "mbaudis@me.com", "contact-orcid": "0000-0002-9903-4248"}], "homepage": "http://arraymap.org", "identifier": 2135, "description": "Part of the Progenetix project, the arrayMap database facilitates the study of the genetics of human cancer. The Progenetix project provides the data customisation and visualization tools to mine the available data. The arrayMap database is developed by the group \"Theoretical Cytogenetics and Oncogenomics\" at the Department of Molecular Life Sciences of the University of Zurich.", "abbreviation": "arrayMap", "support-links": [{"url": "http://info.progenetix.org", "name": "Progenetix Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/progenetix", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://arraymap.org/Wiki/ProgenetixGuide/ProgenetixAPI", "name": "arrayMap Web API documentation", "type": "data access"}, {"url": "http://arraymap.org/score/", "name": "Query (Gene CNA Frequencies)", "type": "data access"}, {"url": "http://arraymap.org/select/", "name": "Sample Search", "type": "data access"}], "associated-tools": [{"url": "http://arraymap.org/score/", "name": "CNA frequency in Cancer"}, {"url": "http://arraymap.org/upload/", "name": "Copy Number Segment Plotter"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012630", "name": "re3data:r3d100012630", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000605", "bsg-d000605"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Bioinformatics", "Life Science", "Biomedical Science"], "domains": ["Expression data", "Cancer", "DNA microarray", "Chromosomal aberration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: arrayMap - Genomic Array Data for Cancer CNV Profiles", "abbreviation": "arrayMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.1fbc5y", "doi": "10.25504/FAIRsharing.1fbc5y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Part of the Progenetix project, the arrayMap database facilitates the study of the genetics of human cancer. The Progenetix project provides the data customisation and visualization tools to mine the available data. The arrayMap database is developed by the group \"Theoretical Cytogenetics and Oncogenomics\" at the Department of Molecular Life Sciences of the University of Zurich.", "publications": [{"id": 595, "pubmed_id": 22629346, "title": "arrayMap: a reference resource for genomic copy number imbalances in human malignancies.", "year": 2012, "url": "http://doi.org/10.1371/journal.pone.0036944", "authors": "Cai H, Kumar N, Baudis M.", "journal": "PLoS One. 2012;7(5):e36944.", "doi": "10.1371/journal.pone.0036944", "created_at": "2021-09-30T08:23:25.276Z", "updated_at": "2021-09-30T08:23:25.276Z"}, {"id": 1259, "pubmed_id": 25428357, "title": "arrayMap 2014: an updated cancer genome resource.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1123", "authors": "Cai H,Gupta S,Rath P,Ai N,Baudis M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1123", "created_at": "2021-09-30T08:24:40.464Z", "updated_at": "2021-09-30T11:29:04.243Z"}, {"id": 1260, "pubmed_id": 24476156, "title": "Chromothripsis-like patterns are recurring but heterogeneously distributed features in a survey of 22,347 cancer genome screens.", "year": 2014, "url": "http://doi.org/10.1186/1471-2164-15-82", "authors": "Cai H,Kumar N,Bagheri HC,von Mering C,Robinson MD,Baudis M", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-15-82", "created_at": "2021-09-30T08:24:40.592Z", "updated_at": "2021-09-30T08:24:40.592Z"}, {"id": 1279, "pubmed_id": 26615188, "title": "The SIB Swiss Institute of Bioinformatics' resources: focus on curated databases.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1310", "authors": "SIB Swiss Institute of Bioinformatics Members", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1310", "created_at": "2021-09-30T08:24:42.741Z", "updated_at": "2021-09-30T11:29:05.268Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 2.5 Switzerland (CC BY-NC-ND 2.5 CH)", "licence-id": 176, "link-id": 640, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3334", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-11T20:04:58.000Z", "updated-at": "2022-02-08T10:37:28.428Z", "metadata": {"doi": "10.25504/FAIRsharing.692301", "name": "Permanent Hosting, Archiving and Indexing of Digital Resources and Assets", "status": "ready", "homepage": "https://phaidra.cab.unipd.it/", "identifier": 3334, "description": "The Permanent Hosting, Archiving and Indexing of Digital Resources and Assets (Phaidra) is the University of Padova Library System\u2019s platform for long-term archiving of digital collections. The platform is multidisciplinary and hosts digital objects of various kinds, such as images, text documents, books and videos, mostly resulting from digitization of analogue originals.", "abbreviation": "Phaidra", "support-links": [{"url": "http://bibliotecadigitale.cab.unipd.it/en/helpline", "name": "Contact Form (Requires Registration)", "type": "Contact form"}, {"url": "https://phaidra.cab.unipd.it/help_long", "name": "Help", "type": "Help documentation"}, {"url": "https://phaidra.cab.unipd.it/info/impressum", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/phaidra", "name": "GitHub Project", "type": "Github"}], "data-processes": [{"url": "https://phaidra.cab.unipd.it/collections/featured", "name": "Browse by Collection", "type": "data access"}, {"url": "https://phaidra.cab.unipd.it/browse", "name": "Search and Browse by Type", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012962", "name": "re3data:r3d100012962", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001853", "bsg-d001853"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities and Social Science"], "domains": ["Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Italy"], "name": "FAIRsharing record for: Permanent Hosting, Archiving and Indexing of Digital Resources and Assets", "abbreviation": "Phaidra", "url": "https://fairsharing.org/10.25504/FAIRsharing.692301", "doi": "10.25504/FAIRsharing.692301", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Permanent Hosting, Archiving and Indexing of Digital Resources and Assets (Phaidra) is the University of Padova Library System\u2019s platform for long-term archiving of digital collections. The platform is multidisciplinary and hosts digital objects of various kinds, such as images, text documents, books and videos, mostly resulting from digitization of analogue originals.", "publications": [], "licence-links": [{"licence-name": "Phaidra Terms of Use", "licence-id": 660, "link-id": 2127, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1849", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:11.247Z", "metadata": {"doi": "10.25504/FAIRsharing.2ajtcf", "name": "Catalytic Site Atlas", "status": "deprecated", "contacts": [{"contact-name": "Nicholas Furnham", "contact-email": "nickf@ebi.ac.uk", "contact-orcid": "0000-0002-7532-1269"}], "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/CSA/", "identifier": 1849, "description": "The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", "abbreviation": "CSA", "support-links": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/CSA_NEW/help.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/CSA_NEW/downloads/CSA_TABLES.sql)", "name": "Download", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/CSA_NEW/", "name": "search", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/CSA_NEW/BrowseByLit.php", "name": "Browse", "type": "data access"}], "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now obsolete and, together with MACiE (https://fairsharing.org/FAIRsharing.7xkx69), has formed the basis of the M-CSA resource."}, "legacy-ids": ["biodbcore-000309", "bsg-d000309"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Enzyme", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Catalytic Site Atlas", "abbreviation": "CSA", "url": "https://fairsharing.org/10.25504/FAIRsharing.2ajtcf", "doi": "10.25504/FAIRsharing.2ajtcf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", "publications": [{"id": 361, "pubmed_id": 14681376, "title": "The Catalytic Site Atlas: a resource of catalytic sites and residues identified in enzymes using structural data.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh028", "authors": "Porter CT., Bartlett GJ., Thornton JM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh028", "created_at": "2021-09-30T08:22:58.800Z", "updated_at": "2021-09-30T08:22:58.800Z"}, {"id": 1610, "pubmed_id": 24319146, "title": "The Catalytic Site Atlas 2.0: cataloging catalytic sites and residues identified in enzymes.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1243", "authors": "Furnham N,Holliday GL,de Beer TA,Jacobsen JO,Pearson WR,Thornton JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1243", "created_at": "2021-09-30T08:25:20.458Z", "updated_at": "2021-09-30T11:29:15.745Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1632, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1840", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.749Z", "metadata": {"doi": "10.25504/FAIRsharing.391trx", "name": "Plant Genome Network", "status": "deprecated", "contacts": [{"contact-name": "General Information", "contact-email": "sgn-feedback@sgn.cornell.edu"}], "homepage": "http://pgn.cornell.edu/", "identifier": 1840, "description": "PGN is a repository for plant EST sequence data located at Cornell. It comprises an analysis pipeline and a website, and presently contains mainly data from the Floral Genome Project.", "abbreviation": "PGN", "support-links": [{"url": "http://pgn.cornell.edu/help/", "type": "Help documentation"}], "data-processes": [{"url": "http://pgn.cornell.edu/submit", "name": "submit", "type": "data access"}, {"url": "http://pgn.cornell.edu/search/seq_search.pl", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://pgn.cornell.edu/blast/blast_search.pl", "name": "BLAST"}], "deprecation-date": "2015-11-17", "deprecation-reason": "This resource is no longer actively maintained. Please see the BioSharing record for the Sol Genomics Network (https://biosharing.org/biodbcore-000301) instead."}, "legacy-ids": ["biodbcore-000300", "bsg-d000300"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Plant Genome Network", "abbreviation": "PGN", "url": "https://fairsharing.org/10.25504/FAIRsharing.391trx", "doi": "10.25504/FAIRsharing.391trx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PGN is a repository for plant EST sequence data located at Cornell. It comprises an analysis pipeline and a website, and presently contains mainly data from the Floral Genome Project.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1714", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:28.882Z", "metadata": {"doi": "10.25504/FAIRsharing.e28v7g", "name": "IPD-IMGT/HLA - Human Leukocyte Antigen Sequence Database", "status": "ready", "contacts": [{"contact-name": "Steven G. E. Marsh", "contact-email": "steven.marsh@ucl.ac.uk", "contact-orcid": "0000-0003-2855-4120"}], "homepage": "https://www.ebi.ac.uk/ipd/imgt/hla/", "citations": [{"doi": "10.1093/nar/gku1161", "pubmed-id": 25414341, "publication-id": 115}], "identifier": 1714, "description": "The IPD-IMGT/HLA Database provides a specialist database for sequences of the human major histocompatibility complex (MHC) and includes the official sequences named by the WHO Nomenclature Committee For Factors of the HLA System. The IMGT/HLA Database was established to provide a locus-specific database (LSDB) for the allelic sequences of the genes in the HLA system, also known as the human MHC. The IMGT/HLA Database was first released in 1998 and subsequently incorporated as a module of IPD in 2012.", "abbreviation": "IPD-IMGT/HLA", "support-links": [{"url": "http://www.ebi.ac.uk/support/hla.php", "name": "IMGT/HLA Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/help/faq.html", "name": "IMGT/HLA FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/access.html", "name": "Accessing the Database", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/citations.html", "name": "Publications", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/stats.html", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/nomenclature/index.html", "name": "HLA Nomenclature", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/intro.html", "name": "About IMGT/HLA", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/imgt/hla/download.html", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/cell_query.html", "name": "Cell Queries", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/allele.html", "name": "Search Alleles", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/subs/submit.html", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/ipd/imgt/hla/blast.html", "name": "BLAST"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/access.html", "name": "All Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010804", "name": "re3data:r3d100010804", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002971", "name": "SciCrunch:RRID:SCR_002971", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000171", "bsg-d000171"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Immunology", "Biomedical Science"], "domains": ["Human leukocyte antigen complex", "Major histocompatibility complex", "Allele"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: IPD-IMGT/HLA - Human Leukocyte Antigen Sequence Database", "abbreviation": "IPD-IMGT/HLA", "url": "https://fairsharing.org/10.25504/FAIRsharing.e28v7g", "doi": "10.25504/FAIRsharing.e28v7g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IPD-IMGT/HLA Database provides a specialist database for sequences of the human major histocompatibility complex (MHC) and includes the official sequences named by the WHO Nomenclature Committee For Factors of the HLA System. The IMGT/HLA Database was established to provide a locus-specific database (LSDB) for the allelic sequences of the genes in the HLA system, also known as the human MHC. The IMGT/HLA Database was first released in 1998 and subsequently incorporated as a module of IPD in 2012.", "publications": [{"id": 115, "pubmed_id": 25414341, "title": "The IPD and IMGT/HLA database: allele variant databases.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1161", "authors": "Robinson J,Halliwell JA,Hayhurst JD,Flicek P,Parham P,Marsh SG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1161", "created_at": "2021-09-30T08:22:32.761Z", "updated_at": "2021-09-30T11:28:42.825Z"}, {"id": 126, "pubmed_id": 10777106, "title": "IMGT/HLA database--a sequence database for the human major histocompatibility complex.", "year": 2000, "url": "https://onlinelibrary.wiley.com/doi/abs/10.1034/j.1399-0039.2000.550314.x", "authors": "Robinson J., Malik A., Parham P., Bodmer JG., Marsh SG.,", "journal": "Tissue Antigens", "doi": "10.1034/j.1399-0039.2000.550314.x", "created_at": "2021-09-30T08:22:33.814Z", "updated_at": "2021-09-30T08:22:33.814Z"}, {"id": 133, "pubmed_id": 11125094, "title": "IMGT/HLA Database--a sequence database for the human major histocompatibility complex.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.210", "authors": "Robinson J., Waller MJ., Parham P., Bodmer JG., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.210", "created_at": "2021-09-30T08:22:34.573Z", "updated_at": "2021-09-30T08:22:34.573Z"}, {"id": 1385, "pubmed_id": 18838392, "title": "The IMGT/HLA database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn662", "authors": "Robinson J., Waller MJ., Fail SC., McWilliam H., Lopez R., Parham P., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn662", "created_at": "2021-09-30T08:24:54.868Z", "updated_at": "2021-09-30T08:24:54.868Z"}, {"id": 1386, "pubmed_id": 18449991, "title": "The IMGT/HLA database.", "year": 2008, "url": "http://doi.org/10.1007/978-1-60327-118-9_3", "authors": "Robinson J., Marsh SG.,", "journal": "Methods Mol. Biol.", "doi": "10.1007/978-1-60327-118-9_3", "created_at": "2021-09-30T08:24:54.976Z", "updated_at": "2021-09-30T08:24:54.976Z"}, {"id": 1399, "pubmed_id": 16944494, "title": "The IMGT/HLA and IPD databases.", "year": 2006, "url": "http://doi.org/10.1002/humu.20406", "authors": "Robinson J., Waller MJ., Fail SC., Marsh SG.,", "journal": "Hum. Mutat.", "doi": "10.1002/humu.20406", "created_at": "2021-09-30T08:24:56.392Z", "updated_at": "2021-09-30T08:24:56.392Z"}, {"id": 2766, "pubmed_id": 12520010, "title": "IMGT/HLA and IMGT/MHC: sequence databases for the study of the major histocompatibility complex.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg070", "authors": "Robinson J., Waller MJ., Parham P., de Groot N., Bontrop R., Kennedy LJ., Stoehr P., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg070", "created_at": "2021-09-30T08:27:39.954Z", "updated_at": "2021-09-30T08:27:39.954Z"}], "licence-links": [{"licence-name": "IPD-IMGT/HLA Licence and Disclaimer", "licence-id": 449, "link-id": 212, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 214, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3595", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-22T08:18:31.596Z", "updated-at": "2022-01-06T13:01:32.224Z", "metadata": {"name": "Protein Ensemble Database", "status": "ready", "contacts": [{"contact-name": "Silvio Tosatto", "contact-email": "silvio.tosatto@unipd.it", "contact-orcid": "0000-0003-4525-7793"}, {"contact-name": "Peter Tompa", "contact-email": "peter.tompa@vub.be", "contact-orcid": "0000-0001-8042-9939"}], "homepage": "https://proteinensemble.org/", "citations": [], "identifier": 3595, "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins (IDPs). Manually curated data of structural ensembles measured with nuclear magnetic resonance spectroscopy, small-angle X-ray scattering, fluorescence resonance energy transfer are annotated in PED. ", "abbreviation": "PED", "access-points": [{"url": "https://proteinensemble.org/api", "name": "PED API", "type": "REST", "example-url": "https://proteinensemble.org/api/report/PED00001", "documentation-url": "https://proteinensemble.org/help#api"}], "data-curation": {}, "support-links": [{"url": "https://proteinensemble.org/help", "type": "Help documentation"}, {"url": "https://proteinensemble.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://proteinensemble.org/feedback", "name": "Feedback", "type": "Contact form"}, {"url": "https://twitter.com/proteinensemble", "name": "@proteinEnsemble", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://proteinensemble.org/deposition", "name": "Data Deposition", "type": "data curation"}, {"url": "https://proteinensemble.org/browse?sort_field=entry_id&sort_value=asc&page_size=20&page=0&release=public", "name": "Browse", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "https://proteinensemble.org/about", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://proteinensemble.org/deposition", "type": "open"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology", "Proteomics"], "domains": ["Protein structure", "Curated information", "Intrinsically disordered proteins"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Protein Ensemble Database", "abbreviation": "PED", "url": "https://fairsharing.org/fairsharing_records/3595", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins (IDPs). Manually curated data of structural ensembles measured with nuclear magnetic resonance spectroscopy, small-angle X-ray scattering, fluorescence resonance energy transfer are annotated in PED. ", "publications": [{"id": 3118, "pubmed_id": 33305318, "title": "PED in 2021: a major update of the protein ensemble database for intrinsically disordered proteins.", "year": 2021, "url": "https://doi.org/10.1093/nar/gkaa1021", "authors": "Lazar T, Mart\u00ednez-P\u00e9rez E, Quaglia F, Hatos A, Chemes LB, Iserte JA, M\u00e9ndez NA, Garrone NA, Salda\u00f1o TE, Marchetti J, Rueda AJV, Bernad\u00f3 P, Blackledge M, Cordeiro TN, Fagerberg E, Forman-Kay JD, Fornasari MS, Gibson TJ, Gomes GW, Gradinaru CC, Head-Gordon T, Jensen MR, Lemke EA, Longhi S, Marino-Buslje C, Minervini G, Mittag T, Monzon AM, Pappu RV, Parisi G, Ricard-Blum S, Ruff KM, Salladini E, Skep\u00f6 M, Svergun D, Vallet SD, Varadi M, Tompa P, Tosatto SCE, Piovesan D", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkaa1021", "created_at": "2021-10-22T08:31:57.861Z", "updated_at": "2021-10-22T08:31:57.861Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2484, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2905", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-11T13:52:50.000Z", "updated-at": "2021-12-06T10:48:06.732Z", "metadata": {"doi": "10.25504/FAIRsharing.7qBaJ0", "name": "Genome Warehouse", "status": "ready", "contacts": [{"contact-name": "GWH Helpdesk", "contact-email": "gwh@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/gwh/", "identifier": 2905, "description": "The Genome Warehouse (GWH) is a public archival resource housing genome-scale data for a wide range of species. GWH accepts a variety of data types, including whole genome, chloroplast, mitochondrion and plasmid. For each collected genome assembly, GWH incorporates descriptive information including biological sample metadata, genome assembly metadata, sequence data and genome annotation, and offers standardized quality control for genome sequence and annotation.", "abbreviation": "GWH", "access-points": [{"url": "https://bigd.big.ac.cn/gwh/api_documents", "name": "GWH API", "type": "Other"}], "support-links": [{"url": "https://bigd.big.ac.cn/gwh/documents", "name": "Documentation for GWH Submission", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/gwh/statistics/index", "name": "Statistics", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/gwh/tool_documents", "name": "Documentation for GWH Tools", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://bigd.big.ac.cn/gwh/submit/submission", "name": "Submit", "type": "data curation"}, {"url": "ftp://download.big.ac.cn/gwh/", "name": "Download", "type": "data release"}, {"url": "https://bigd.big.ac.cn/gwh/browse/index", "name": "Browse", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwh/jbrowse/index", "name": "JBrowse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013428", "name": "re3data:r3d100013428", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001406", "bsg-d001406"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Virology", "Microbiology"], "domains": ["DNA sequence data", "Genome annotation", "Genomic assembly", "Plasmid", "Mitochondrial sequence", "Chloroplast sequence", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["China"], "name": "FAIRsharing record for: Genome Warehouse", "abbreviation": "GWH", "url": "https://fairsharing.org/10.25504/FAIRsharing.7qBaJ0", "doi": "10.25504/FAIRsharing.7qBaJ0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genome Warehouse (GWH) is a public archival resource housing genome-scale data for a wide range of species. GWH accepts a variety of data types, including whole genome, chloroplast, mitochondrion and plasmid. For each collected genome assembly, GWH incorporates descriptive information including biological sample metadata, genome assembly metadata, sequence data and genome annotation, and offers standardized quality control for genome sequence and annotation.", "publications": [{"id": 513, "pubmed_id": 30365034, "title": "Database Resources of the BIG Data Center in 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky993", "authors": "BIG Data Center Members.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky993", "created_at": "2021-09-30T08:23:15.990Z", "updated_at": "2021-09-30T11:28:46.885Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 445, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2965", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T14:33:28.000Z", "updated-at": "2021-11-24T13:17:00.549Z", "metadata": {"name": "eHealth Ireland Open Data Portal", "status": "ready", "contacts": [{"contact-email": "questions@ehealthireland.ie"}], "homepage": "https://data.ehealthireland.ie/", "identifier": 2965, "description": "The eHealth Ireland Open Data Portal makes it easy to find and access data from across the Irish Health Sector. This includes information on available health services, statistics on hospital cases and national waiting lists, and performance of new digital initiatives, such as eReferrals.", "support-links": [{"url": "https://data.ehealthireland.ie/about", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/ehealthireland", "name": "eHealthIreland", "type": "Twitter"}]}, "legacy-ids": ["biodbcore-001469", "bsg-d001469"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Public Health", "Primary Health Care"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Ireland"], "name": "FAIRsharing record for: eHealth Ireland Open Data Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2965", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The eHealth Ireland Open Data Portal makes it easy to find and access data from across the Irish Health Sector. This includes information on available health services, statistics on hospital cases and national waiting lists, and performance of new digital initiatives, such as eReferrals.", "publications": [], "licence-links": [{"licence-name": "Creative Commons (CC) Copyright-Only Dedication (based on United States law) or Public Domain Certification", "licence-id": 197, "link-id": 1384, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2799", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-18T15:37:17.000Z", "updated-at": "2021-11-24T13:13:14.482Z", "metadata": {"doi": "10.25504/FAIRsharing.pp1Jtx", "name": "EMODnet Biology", "status": "ready", "contacts": [{"contact-name": "EMODnet Biology team", "contact-email": "bio@emodnet.eu"}], "homepage": "http://www.emodnet-biology.eu/", "identifier": 2799, "description": "The EMODnet biology data portal provides free access to data on temporal and spatial distribution of marine species and species traits from all European regional seas. EMODnet Biology is part of the EU funded European Marine Observation and Data Network.", "abbreviation": "EMODnet Biology", "access-points": [{"url": "http://geo.vliz.be/geoserver/wfs/ows?service=WFS", "name": "OGC Web Feature Service", "type": "Other"}], "support-links": [{"url": "http://www.emodnet-biology.eu/contribute", "name": "Contribute data form", "type": "Contact form"}, {"url": "bio@emodnet.eu", "name": "EMODnet Biology email", "type": "Support email"}, {"url": "https://classroom.oceanteacher.org/enrol/index.php?id=430", "name": "Contributing datasets to EMODnet Biology", "type": "Training documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://www.emodnet-biology.eu/toolbox/en/download/occurrence/explore", "name": "Data download toolbox", "type": "data access"}, {"url": "http://www.emodnet-biology.eu/emodnet-biology-api", "name": "Web service based data access documentation", "type": "data access"}], "associated-tools": [{"url": "http://www.emodnet-biology.eu/toolbox/en/download/occurrence/explore", "name": "Data download toolbox"}, {"url": "http://rshiny.lifewatch.be/BioCheck/", "name": "EMODnet Biology & LifeWatch QC tool"}]}, "legacy-ids": ["biodbcore-001298", "bsg-d001298"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geography", "Geophysics", "Taxonomy", "Chemistry", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Biology", "abbreviation": "EMODnet Biology", "url": "https://fairsharing.org/10.25504/FAIRsharing.pp1Jtx", "doi": "10.25504/FAIRsharing.pp1Jtx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EMODnet biology data portal provides free access to data on temporal and spatial distribution of marine species and species traits from all European regional seas. EMODnet Biology is part of the EU funded European Marine Observation and Data Network.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2118", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:54.545Z", "metadata": {"doi": "10.25504/FAIRsharing.3etvdn", "name": "VectorBase", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@vectorbase.org"}], "homepage": "https://vectorbase.org/vectorbase/app", "identifier": 2118, "description": "VectorBase is a web-accessible data repository for information about invertebrate vectors of human pathogens. VectorBase annotates and maintains vector genomes (as well as a number of non-vector genomes for comparative analysis) providing an integrated resource for the research community. VectorBase contains genome information for organisms such as Anopheles gambiae, a vector for the Plasmodium protozoan agent causing malaria, and Aedes aegypti, a vector for the flaviviral agents causing Yellow fever and Dengue fever. Hosted data range from genome assemblies with annotated gene features, transcript and protein expression data to population genetics including variation and insecticide-resistance phenotypes.", "abbreviation": "VectorBase", "access-points": [{"url": "https://vectorbase.org/vectorbase/app/static-content/content/VectorBase/webServices.html", "name": "Web Services Documentation", "type": "REST"}], "support-links": [{"url": "info@vectorbase.org", "name": "info@vectorbase.org", "type": "Support email"}, {"url": "https://vectorbase.org/vectorbase/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://twitter.com/VectorBase", "name": "@VectorBase", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://vectorbase.org/vectorbase/app/downloads/", "name": "Download", "type": "data release"}, {"url": "https://vectorbase.org/vectorbase/app/jbrowse?data=/a/service/jbrowse/tracks/default", "name": "Genome browser (JBrowse)", "type": "data access"}, {"url": "https://vectorbase.org/vectorbase/app/search/transcript/GeneByLocusTag", "name": "Search by Gene ID", "type": "data access"}, {"url": "https://vectorbase.org/vectorbase/app/static-content/dataSubmission.html", "name": "Submit Data", "type": "data curation"}, {"url": "https://vectorbase.org/vectorbase/app/galaxy-orientation", "name": "Galaxy", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010880", "name": "re3data:r3d100010880", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000588", "bsg-d000588"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Population Dynamics", "Genomics", "Comparative Genomics", "Population Genetics"], "domains": ["Molecular structure", "Expression data", "DNA sequence data", "Gene Ontology enrichment", "Annotation", "DNA structural variation", "Insecticide resistance", "Pathogen", "Phenotype", "Structure", "Protein", "Gene", "Genome", "Genotype", "Karyotype"], "taxonomies": ["Aedes aegypti", "Anopheles gambiae", "Chelicerata", "Culicidae", "Diptera", "Gastropoda", "Hemiptera", "Ixodida", "Phthiraptera"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "European Union"], "name": "FAIRsharing record for: VectorBase", "abbreviation": "VectorBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.3etvdn", "doi": "10.25504/FAIRsharing.3etvdn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VectorBase is a web-accessible data repository for information about invertebrate vectors of human pathogens. VectorBase annotates and maintains vector genomes (as well as a number of non-vector genomes for comparative analysis) providing an integrated resource for the research community. VectorBase contains genome information for organisms such as Anopheles gambiae, a vector for the Plasmodium protozoan agent causing malaria, and Aedes aegypti, a vector for the flaviviral agents causing Yellow fever and Dengue fever. Hosted data range from genome assemblies with annotated gene features, transcript and protein expression data to population genetics including variation and insecticide-resistance phenotypes.", "publications": [{"id": 680, "pubmed_id": 19028744, "title": "VectorBase: a data resource for invertebrate vector genomics.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn857", "authors": "Lawson D., Arensburger P., Atkinson P. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn857", "created_at": "2021-09-30T08:23:34.944Z", "updated_at": "2021-09-30T08:23:34.944Z"}, {"id": 1308, "pubmed_id": 25510499, "title": "VectorBase: an updated bioinformatics resource for invertebrate vectors and other organisms related with human diseases.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1117", "authors": "Giraldo-Calderon GI,Emrich SJ,MacCallum RM,Maslen G,Dialynas E,Topalis P,Ho N,Gesing S,Madey G,Collins FH,Lawson D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1117", "created_at": "2021-09-30T08:24:46.064Z", "updated_at": "2021-09-30T11:29:05.859Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2385, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2332", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-22T09:56:36.000Z", "updated-at": "2021-11-24T13:20:09.975Z", "metadata": {"doi": "10.25504/FAIRsharing.qwd1nx", "name": "Brain Imaging Network Data Repository", "status": "deprecated", "contacts": [{"contact-name": "Miguel Castelo-Branco", "contact-email": "mcbranco@fmed.uc.pt"}], "homepage": "http://www.brainimaging.pt", "identifier": 2332, "description": "We are a leading national institution in brain MR imaging and molecular imaging (given cyclotron and radiopharmacy facilities). These pillars create the core medical imaging equipment infrastructure in Portugal with relevant scientific productivity now expanding to all levels of multimodal imaging. We have unique expertise and equipment for development of imaging markers and studies in brain imaging and respective repositories. This resource has restricted access. Please use the contact details provided to request access.", "support-links": [{"url": "http://www.brainimaging.pt/index.php?option=com_contact&view=contact&id=7&Itemid=67&lang=en", "type": "Contact form"}, {"url": "http://www.brainimaging.pt/index.php?option=com_content&view=category&id=72&Itemid=98&lang=en", "type": "Help documentation"}], "year-creation": 2009, "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000808", "bsg-d000808"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Bioimaging", "Medical imaging"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Pre-clinical imaging"], "countries": ["Portugal"], "name": "FAIRsharing record for: Brain Imaging Network Data Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qwd1nx", "doi": "10.25504/FAIRsharing.qwd1nx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: We are a leading national institution in brain MR imaging and molecular imaging (given cyclotron and radiopharmacy facilities). These pillars create the core medical imaging equipment infrastructure in Portugal with relevant scientific productivity now expanding to all levels of multimodal imaging. We have unique expertise and equipment for development of imaging markers and studies in brain imaging and respective repositories. This resource has restricted access. Please use the contact details provided to request access.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1709", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:34.895Z", "metadata": {"doi": "10.25504/FAIRsharing.ab8f4d", "name": "Nordic Control Allele Frequency and Genotype Database", "status": "deprecated", "contacts": [{"contact-name": "Samuli Ripatti", "contact-email": "samuli.ripatti@thl.fi", "contact-orcid": "0000-0002-0504-1202"}], "homepage": "http://nordicdb.org/", "identifier": 1709, "description": "Database of SNP genotype control data. The current version of NordicDB pools together high-density genome-wide SNP information from \u223c5000 controls originating from Finnish, Swedish and Danish studies and shows country-specific allele frequencies for SNP markers.", "year-creation": 2008, "deprecation-date": "2015-09-01", "deprecation-reason": "This resource is no longer active."}, "legacy-ids": ["biodbcore-000166", "bsg-d000166"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Life Science", "Biomedical Science"], "domains": ["DNA structural variation", "Single nucleotide polymorphism", "Allele", "Genome-wide association study", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Denmark", "European Union", "Finland", "Sweden"], "name": "FAIRsharing record for: Nordic Control Allele Frequency and Genotype Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ab8f4d", "doi": "10.25504/FAIRsharing.ab8f4d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database of SNP genotype control data. The current version of NordicDB pools together high-density genome-wide SNP information from \u223c5000 controls originating from Finnish, Swedish and Danish studies and shows country-specific allele frequencies for SNP markers.", "publications": [{"id": 1927, "pubmed_id": 20664631, "title": "NordicDB: a Nordic pool and portal for genome-wide control data.", "year": 2010, "url": "http://doi.org/10.1038/ejhg.2010.112", "authors": "Leu M., Humphreys K., Surakka I., Rehnberg E., Muilu J., Rosenstr\u00f6m P., Almgren P., J\u00e4\u00e4skel\u00e4inen J., Lifton RP., Kyvik KO., Kaprio J., Pedersen NL., Palotie A., Hall P., Gr\u00f6nberg H., Groop L., Peltonen L., Palmgren J., Ripatti S.,", "journal": "Eur. J. Hum. Genet.", "doi": "10.1038/ejhg.2010.112", "created_at": "2021-09-30T08:25:56.848Z", "updated_at": "2021-09-30T08:25:56.848Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1617", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.171Z", "metadata": {"doi": "10.25504/FAIRsharing.vr52p3", "name": "Nucleic Acid Phylogenetic Profile", "status": "ready", "contacts": [{"contact-name": "Daniel Gautheret", "contact-email": "daniel.gautheret@u-psud.fr", "contact-orcid": "0000-0002-1508-8469"}], "homepage": "http://napp.u-psud.fr", "identifier": 1617, "description": "NAPP (Nucleic Acids Phylogenetic Profile) enables users to retrieve RNA-rich clusters from any genome in a list of 1000+ sequenced bacterial genomes. RNA-rich clusters can be viewed separately or, alternatively, all tiles from RNA-rich clusters can be contiged into larger elements and retrieved at once as a CSV or GFF file for use in a genome browser or comparison with other predictions/RNA-seq experiments.", "abbreviation": "NAPP", "support-links": [{"url": "napp.biologie@u-psud.fr", "type": "Support email"}, {"url": "https://en.wikipedia.org/wiki/NAPP_(Database)", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "manual curation", "type": "data release"}, {"name": "versioning by date", "type": "data curation"}, {"url": "http://rna.igmors.u-psud.fr/download/", "name": "file download(CSV)", "type": "data versioning"}, {"url": "http://rna.igmors.u-psud.fr/download/NAPP/", "name": "MySQL database dump", "type": "data versioning"}, {"name": "access to historical files available upon request", "type": "data access"}, {"url": "http://napp.u-psud.fr/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000073", "bsg-d000073"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["RNA sequence", "Clustering", "Non-coding RNA"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Nucleic Acid Phylogenetic Profile", "abbreviation": "NAPP", "url": "https://fairsharing.org/10.25504/FAIRsharing.vr52p3", "doi": "10.25504/FAIRsharing.vr52p3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NAPP (Nucleic Acids Phylogenetic Profile) enables users to retrieve RNA-rich clusters from any genome in a list of 1000+ sequenced bacterial genomes. RNA-rich clusters can be viewed separately or, alternatively, all tiles from RNA-rich clusters can be contiged into larger elements and retrieved at once as a CSV or GFF file for use in a genome browser or comparison with other predictions/RNA-seq experiments.", "publications": [{"id": 118, "pubmed_id": 19237465, "title": "Single-pass classification of all noncoding sequences in a bacterial genome using phylogenetic profiles.", "year": 2009, "url": "http://doi.org/10.1101/gr.089714.108", "authors": "Marchais A., Naville M., Bohn C., Bouloc P., Gautheret D.,", "journal": "Genome Res.", "doi": "10.1101/gr.089714.108", "created_at": "2021-09-30T08:22:33.063Z", "updated_at": "2021-09-30T08:22:33.063Z"}, {"id": 1147, "pubmed_id": 21984475, "title": "NAPP: the Nucleic Acid Phylogenetic Profile Database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr807", "authors": "Ott A,Idali A,Marchais A,Gautheret D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr807", "created_at": "2021-09-30T08:24:27.520Z", "updated_at": "2021-09-30T11:29:00.917Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 141, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3021", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-28T21:50:17.000Z", "updated-at": "2021-12-06T10:48:04.638Z", "metadata": {"doi": "10.25504/FAIRsharing.6QPjtA", "name": "NSF Arctic Data Center", "status": "ready", "contacts": [{"contact-name": "Erin McLean", "contact-email": "support@arcticdata.io", "contact-orcid": "0000-0001-8613-8956"}], "homepage": "https://arcticdata.io/", "identifier": 3021, "description": "The Arctic Data Center is the primary data and software repository for the Arctic section of NSF Polar Programs. The Center helps the research community to reproducibly preserve and discover all products of NSF-funded research in the Arctic, including data, metadata, software, documents, and provenance that links these together. The repository is open to contributions from NSF Arctic investigators, and data are released under an open license (CC-BY, CC0, depending on the choice of the contributor). All science, engineering, and education research supported by the NSF Arctic research program are included, such as Natural Sciences (Geoscience, Earth Science, Oceanography, Ecology, Atmospheric Science, Biology, etc.) and Social Sciences (Archeology, Anthropology, Social Science, etc.).", "abbreviation": "Arctic Data Center", "access-points": [{"url": "https://arcticdata.io/metacat/d1/mn/v2/", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://arcticdata.io/category/blog/", "name": "Blog", "type": "Blog/News"}, {"url": "https://arcticdata.io/category/news/", "name": "News", "type": "Blog/News"}, {"url": "support@arcticdata.io", "name": "Support team email", "type": "Support email"}, {"url": "https://arcticdata.io/q-and-a/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://arcticdata.io/working-with-data/", "name": "Working with Data", "type": "Help documentation"}, {"url": "https://arcticdata.io/support/", "name": "Support Page", "type": "Help documentation"}, {"url": "https://arcticdata.io/catalog/profile", "name": "Data Summary", "type": "Help documentation"}, {"url": "https://arcticdata.io/about/", "name": "About the Center", "type": "Help documentation"}, {"url": "https://arcticdata.io/training/", "name": "Training Opportunities", "type": "Training documentation"}, {"url": "https://twitter.com/arcticdatactr", "name": "Arctic Data Center Twitter", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://arcticdata.io/catalog/data", "name": "Data Catalog", "type": "data access"}, {"url": "https://arcticdata.io/submit/", "name": "Who Must Submit and How", "type": "data curation"}, {"url": "https://arcticdata.io/submit/#publication", "name": "How data is versioned", "type": "data versioning"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011973", "name": "re3data:r3d100011973", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001529", "bsg-d001529"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Botany", "Geochemistry", "Hydrogeology", "Environmental Science", "Zoology", "Humanities", "Geography", "Chemistry", "Humanities and Social Science", "Natural Science", "Earth Science", "Atmospheric Science", "Agriculture", "Mineralogy", "Life Science", "Physics", "Oceanography", "Biology"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Arctic"], "countries": ["United States"], "name": "FAIRsharing record for: NSF Arctic Data Center", "abbreviation": "Arctic Data Center", "url": "https://fairsharing.org/10.25504/FAIRsharing.6QPjtA", "doi": "10.25504/FAIRsharing.6QPjtA", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arctic Data Center is the primary data and software repository for the Arctic section of NSF Polar Programs. The Center helps the research community to reproducibly preserve and discover all products of NSF-funded research in the Arctic, including data, metadata, software, documents, and provenance that links these together. The repository is open to contributions from NSF Arctic investigators, and data are released under an open license (CC-BY, CC0, depending on the choice of the contributor). All science, engineering, and education research supported by the NSF Arctic research program are included, such as Natural Sciences (Geoscience, Earth Science, Oceanography, Ecology, Atmospheric Science, Biology, etc.) and Social Sciences (Archeology, Anthropology, Social Science, etc.).", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2165, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 2166, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2985", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T08:24:07.000Z", "updated-at": "2021-12-06T10:47:28.912Z", "metadata": {"name": "Jason Virtual Van", "status": "ready", "contacts": [{"contact-name": "Danielle Fino", "contact-email": "dfino@whoi.edu"}], "homepage": "http://4dgeo.whoi.edu/jason", "identifier": 2985, "description": "Jason is a remotely operated vehicle (ROV) deep-diving vessel that gives shipboard scientists immediate, real-time access to the sea floor. Jason is connected by a long fiberoptic tether to its research ship. The 10-km (6 mile) tether delivers power and instructions to Jason and fetches data from it. As part of the Jason ROV project, the Virtual Van data acquisition system was developed to automatically captures the information in the control-van during ROV operations including up to four simultaneous video sources, vehicle data, scientific instrument data, and event data. All this information is accessible via a web-browser in real-time and is also available to the scientists after the cruise for post-cruise data access and analysis.", "abbreviation": "Jason Virtual Van", "year-creation": 2000, "data-processes": [{"url": "ftp://ftp.whoi.edu/pub/", "name": "FTP download", "type": "data access"}, {"url": "http://4dgeo.whoi.edu/jason", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010510", "name": "re3data:r3d100010510", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001491", "bsg-d001491"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Oceanography", "Water Research"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Jason Virtual Van", "abbreviation": "Jason Virtual Van", "url": "https://fairsharing.org/fairsharing_records/2985", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Jason is a remotely operated vehicle (ROV) deep-diving vessel that gives shipboard scientists immediate, real-time access to the sea floor. Jason is connected by a long fiberoptic tether to its research ship. The 10-km (6 mile) tether delivers power and instructions to Jason and fetches data from it. As part of the Jason ROV project, the Virtual Van data acquisition system was developed to automatically captures the information in the control-van during ROV operations including up to four simultaneous video sources, vehicle data, scientific instrument data, and event data. All this information is accessible via a web-browser in real-time and is also available to the scientists after the cruise for post-cruise data access and analysis.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2661", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-21T09:07:32.000Z", "updated-at": "2021-11-24T13:16:39.690Z", "metadata": {"name": "Geochemical Earth Reference Model", "status": "ready", "contacts": [{"contact-name": "Anthony A.P. Koppers", "contact-email": "akoppers@coas.oregonstate.edu", "contact-orcid": "0000-0002-8136-5372"}], "homepage": "https://earthref.org/GERM/", "identifier": 2661, "description": "Geochemical Earth Reference Model contains summary data on the geochemistry of all reservoirs in the Earth. All search results are customizable, allowing the user to sort and convert units and to download the data in a format of your choice with one click. This relational database only includes peer-reviewed data.", "abbreviation": "GERM", "support-links": [{"url": "https://earthref.org/newsletter/", "name": "Newsletter", "type": "Help documentation"}, {"url": "https://earthref.org/GERM/subduction/approach.htm", "type": "Help documentation"}, {"url": "https://earthref.org/GERM/metadata/main.htm", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "https://earthref.org/GERMRD/", "name": "GERM Partition Coefficient (Kd) Database search", "type": "data access"}, {"url": "https://earthref.org/ERR/", "name": "EarthRef.org Reference Database (ERR) search", "type": "data access"}, {"url": "https://earthref.org/GERMRD/index/reservoir/", "name": "browse GERM Reservoir Database by Reservoir", "type": "data access"}, {"url": "https://earthref.org/GERMRD/index/reference/", "name": "browse GERM Reservoir Database by Reference", "type": "data access"}, {"url": "https://earthref.org/GERMRD/index/element/", "name": "browse GERM Reservoir Database by Element", "type": "data access"}, {"url": "https://earthref.org/KDD/index/element/", "name": "browse GERM Kd's Database by Element", "type": "data access"}, {"url": "https://earthref.org/KDD/index/reference/", "name": "browse GERM Kd's Database by Reference", "type": "data access"}, {"url": "https://earthref.org/KDD/index/rock/", "name": "browse GERM Kd's Database by Mineral and Rock Type", "type": "data access"}], "associated-tools": [{"url": "https://earthref.org/ArArCALC/", "name": "ArArCALC v2.5.2"}, {"url": "https://earthref.org/ERDA/10/", "name": "BIGD, software for calculation of mineral-melt partition coefficients"}, {"url": "https://earthref.org/EC-RAFC/", "name": "EC-RAFC v1.0"}, {"url": "https://earthref.org/TnT2000/", "name": "TnT2000"}, {"url": "https://earthref.org/GERM/tools/oceanic.htm", "name": "Oceanic Modeling Tools"}, {"url": "https://earthref.org/GERM/tools/petrology.htm", "name": "Petrologic Tools"}, {"url": "https://earthref.org/GERM/tools/wr.htm", "name": "Water Rock Interaction Tools"}]}, "legacy-ids": ["biodbcore-001154", "bsg-d001154"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Earth Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Geochemical Earth Reference Model", "abbreviation": "GERM", "url": "https://fairsharing.org/fairsharing_records/2661", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Geochemical Earth Reference Model contains summary data on the geochemistry of all reservoirs in the Earth. All search results are customizable, allowing the user to sort and convert units and to download the data in a format of your choice with one click. This relational database only includes peer-reviewed data.", "publications": [{"id": 1334, "pubmed_id": null, "title": "Scalable models of data sharing in Earth sciences.", "year": 2003, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2002GC000318", "authors": "Helly, J., Staudigel, H. and Koppers, A.", "journal": "Geochemistry, Geophysics, Geosystems 4", "doi": null, "created_at": "2021-09-30T08:24:49.301Z", "updated_at": "2021-09-30T08:24:49.301Z"}, {"id": 2360, "pubmed_id": null, "title": "Electronic data publication in geochemistry", "year": 2003, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2002GC000314", "authors": "Staudigel, H., Helly, J., Koppers, A.A.P., Shaw, H.F., McDonough, W.F., Hofmann, A.W., Langmuir, C.H., Lehnert, K., Sarbas, B., Derry, L.A. and Zindler, A.", "journal": "Geochemistry, Geophysics, Geosystems 4.", "doi": null, "created_at": "2021-09-30T08:26:50.117Z", "updated_at": "2021-09-30T08:26:50.117Z"}, {"id": 2366, "pubmed_id": null, "title": "Electronic data publication in geochemistry: A plea for 'full disclosure'.", "year": 2001, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2001GC000234", "authors": "Staudigel, H., Albarede, F., Anderson, D.L., Derry, L., McDonough, B., Shaw, H.F., White, W. and Zindler, A.", "journal": "Geochemistry, Geophysics, Geosystems 2.", "doi": null, "created_at": "2021-09-30T08:26:50.901Z", "updated_at": "2021-09-30T08:26:50.901Z"}], "licence-links": [{"licence-name": "EarthRef.org Disclaimer", "licence-id": 256, "link-id": 114, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2358", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-15T07:56:55.000Z", "updated-at": "2022-02-10T14:43:03.287Z", "metadata": {"doi": "10.25504/FAIRsharing.wy4egf", "name": "Zenodo", "status": "ready", "contacts": [{"contact-name": "Lars Holm Nielsen", "contact-email": "lars.holm.nielsen@cern.ch", "contact-orcid": "0000-0001-8135-3489"}], "homepage": "https://www.zenodo.org", "citations": [], "identifier": 2358, "description": "Zenodo is a generalist research data repository built and developed by OpenAIRE and CERN. It was developed to aid Open Science and is built on open source code. Zenodo helps researchers receive credit by making the research results citable and through OpenAIRE integrates them into existing reporting lines to funding agencies like the European Commission. Citation information is also passed to DataCite and onto the scholarly aggregators. Content is available publicly under any one of 400 open licences (from opendefinition.org and spdx.org). Restricted and Closed content is also supported. Free for researchers below 50 GB/dataset. Content is both online on disk and offline on tape as part of a long-term preservation policy. Zenodo supports managed access (with an access request workflow) as well as embargoing generally and during peer review. The base infrastructure of Zenodo is provided by CERN, a non-profit IGO. Projects are funded through grants.", "abbreviation": "Zenodo", "access-points": [{"url": "https://www.zenodo.org/api/", "name": "REST API for all of Zenodo including search and upload.", "type": "REST", "example-url": "https://www.zenodo.org/api/", "documentation-url": "https://developers.zenodo.org/"}, {"url": "https://zenodo.org/oai2d", "name": "Zenodo OAI-PMH", "type": "OAI-PMH", "example-url": null, "documentation-url": "https://developers.zenodo.org/#oai-pmh"}], "data-curation": {}, "support-links": [{"url": "http://blog.zenodo.org", "name": "Blog", "type": "Blog/News"}, {"url": "https://zenodo.org/support", "name": "Support form", "type": "Contact form"}, {"url": "info@zenodo.org", "name": "Email", "type": "Support email"}, {"url": "https://help.zenodo.org/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://help.zenodo.org/", "name": "Help", "type": "Help documentation"}, {"url": "https://www.zenodo.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.zenodo.org/features", "name": "Features", "type": "Help documentation"}, {"url": "https://twitter.com/zenodo_org", "name": "@zenodo_org", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "https://www.zenodo.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.zenodo.org/deposit", "name": "Upload", "type": "data access"}, {"name": "Size Limit: 50GB/dataset (contact if >50GB)", "type": "data curation"}, {"name": "Per-researcher storage: unlimited", "type": "data curation"}, {"name": "Versioning with \"Concept\" DOI to represent \"all versions\"", "type": "data versioning"}, {"name": "Anonymized individual-level patient data available", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010468", "name": "re3data:r3d100010468", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004129", "name": "SciCrunch:RRID:SCR_004129", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000837", "bsg-d000837"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Open Science"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Zenodo", "abbreviation": "Zenodo", "url": "https://fairsharing.org/10.25504/FAIRsharing.wy4egf", "doi": "10.25504/FAIRsharing.wy4egf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Zenodo is a generalist research data repository built and developed by OpenAIRE and CERN. It was developed to aid Open Science and is built on open source code. Zenodo helps researchers receive credit by making the research results citable and through OpenAIRE integrates them into existing reporting lines to funding agencies like the European Commission. Citation information is also passed to DataCite and onto the scholarly aggregators. Content is available publicly under any one of 400 open licences (from opendefinition.org and spdx.org). Restricted and Closed content is also supported. Free for researchers below 50 GB/dataset. Content is both online on disk and offline on tape as part of a long-term preservation policy. Zenodo supports managed access (with an access request workflow) as well as embargoing generally and during peer review. The base infrastructure of Zenodo is provided by CERN, a non-profit IGO. Projects are funded through grants.", "publications": [], "licence-links": [{"licence-name": "Zenodo Terms of Use", "licence-id": 881, "link-id": 1939, "relation": "undefined"}, {"licence-name": "Zenodo Policies", "licence-id": 880, "link-id": 1940, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1941, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2688", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-27T17:10:11.000Z", "updated-at": "2021-11-24T13:19:38.495Z", "metadata": {"doi": "10.25504/FAIRsharing.02xjaW", "name": "CyVerse Data Common Repository", "status": "ready", "contacts": [{"contact-name": "Ramona Walls", "contact-email": "rwalls@cyverse.org", "contact-orcid": "0000-0001-8815-0078"}], "homepage": "http://datacommons.cyverse.org/", "identifier": 2688, "description": "The Data Commons provides services to manage, organize, preserve, publish, discover, and reuse data. Using our pipelines, you can easily publish data to the NCBI or directly to the CyVerse Data Commons. CyVerse Curated Data are stable and have DOIs. Community Released Data are maintained by community members and may not be permanent.", "support-links": [{"url": "https://cyverse.atlassian.net/wiki/spaces/DC/overview", "name": "Data Commons Wiki Pages", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/embl-abr-elixir-cyverse-workshop-registries-in-bioinformatics", "name": "EMBL-ABR/ELIXIR/CyVerse workshop: Registries in Bioinformatics", "type": "TeSS links to training materials"}], "year-creation": 2015, "data-processes": [{"url": "https://datacommons.cyverse.org/browse/iplant/home/shared", "name": "Browse Community-Released Data", "type": "data access"}, {"url": "https://datacommons.cyverse.org/browse/iplant/home/shared/commons_repo/curated", "name": "Browse Cyverse-Curated Data", "type": "data access"}, {"url": "https://wiki.cyverse.org/wiki/display/DC/Publishing+Data+through+the+Data+Commons", "name": "Submit Data to Cyverse", "type": "data curation"}], "associated-tools": [{"url": "http://www.cyverse.org/discovery-environment", "name": "CyVerse Discovery Environment"}]}, "legacy-ids": ["biodbcore-001185", "bsg-d001185"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Subject Agnostic"], "domains": ["Experimental measurement", "Centrally registered identifier", "Protocol", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": ["Open Science"], "countries": ["United States"], "name": "FAIRsharing record for: CyVerse Data Common Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.02xjaW", "doi": "10.25504/FAIRsharing.02xjaW", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data Commons provides services to manage, organize, preserve, publish, discover, and reuse data. Using our pipelines, you can easily publish data to the NCBI or directly to the CyVerse Data Commons. CyVerse Curated Data are stable and have DOIs. Community Released Data are maintained by community members and may not be permanent.", "publications": [], "licence-links": [{"licence-name": "Cyverse Data Commons User Agreement", "licence-id": 208, "link-id": 2356, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2949", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-15T08:37:18.000Z", "updated-at": "2021-11-24T13:16:11.039Z", "metadata": {"doi": "10.25504/FAIRsharing.pFZBRP", "name": "EMODnet Bathymetry", "status": "ready", "homepage": "https://www.emodnet-bathymetry.eu/", "identifier": 2949, "description": "EMODnet Bathymetry provides a service for viewing and downloading a harmonised Digital Terrain Model (DTM) for the European sea regions that is generated by the EMODnet Bathymetry partnership on the basis of an increasing number of bathymetric data sets. These are managed as survey data sets and composite DTMs by data providers from government and research. Services for discovery and requesting access to these data sets are provided as well.", "access-points": [{"url": "https://rest.emodnet-bathymetry.eu/", "name": "REST - depth info", "type": "REST"}, {"url": "http://ows.emodnet-bathymetry.eu", "name": "WMS-WFS-WCS", "type": "Other"}, {"url": "http://tiles.emodnet-bathymetry.eu", "name": "WMTS", "type": "Other"}], "support-links": [{"url": "https://www.emodnet-bathymetry.eu/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.emodnet-bathymetry.eu/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.emodnet-bathymetry.eu/helpdesk", "name": "Helpdesk", "type": "Help documentation"}, {"url": "https://www.emodnet-bathymetry.eu/metadata-data", "name": "Metadata & Data", "type": "Help documentation"}, {"url": "https://www.emodnet-bathymetry.eu/data-products", "name": "Data Products", "type": "Help documentation"}, {"url": "https://www.emodnet-bathymetry.eu/approach", "name": "Approach", "type": "Help documentation"}, {"url": "https://www.emodnet-bathymetry.eu/promotion", "name": "Promotional Material", "type": "Help documentation"}, {"url": "https://www.emodnet-bathymetry.eu/partners", "name": "Bathymetry Partners", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://www.emodnet-bathymetry.eu/data-products/how-can-i-contribute", "name": "Submit", "type": "data curation"}, {"url": "https://portal.emodnet-bathymetry.eu/?menu=19", "name": "Browse & Search", "type": "data access"}, {"url": "https://www.emodnet-bathymetry.eu/metadata-amp-data/user-registration", "name": "User Registration", "type": "data access"}]}, "legacy-ids": ["biodbcore-001453", "bsg-d001453"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geography", "Earth Science", "Oceanography", "Physical Geography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Bathymetry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.pFZBRP", "doi": "10.25504/FAIRsharing.pFZBRP", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EMODnet Bathymetry provides a service for viewing and downloading a harmonised Digital Terrain Model (DTM) for the European sea regions that is generated by the EMODnet Bathymetry partnership on the basis of an increasing number of bathymetric data sets. These are managed as survey data sets and composite DTMs by data providers from government and research. Services for discovery and requesting access to these data sets are provided as well.", "publications": [{"id": 2616, "pubmed_id": null, "title": "EMODnet Bathymetry Consortium (2018): EMODnet Digital Bathymetry (DTM)", "year": 2018, "url": "http://doi.org/10.12770/18ff0d48-b203-4a65-94a9-5fd8b0ec35f6", "authors": "EMODnet Bathymetry Consortium", "journal": "EMODnet Bathymetry Consortium", "doi": "10.12770/18ff0d48-b203-4a65-94a9-5fd8b0ec35f6", "created_at": "2021-09-30T08:27:21.146Z", "updated_at": "2021-09-30T08:27:21.146Z"}, {"id": 2859, "pubmed_id": null, "title": "EMODnet Bathymetry Consortium (2016): EMODnet Digital Bathymetry (DTM).", "year": 2016, "url": "http://doi.org/10.12770/c7b53704-999d-4721-b1a3-04ec60c87238", "authors": "EMODnet Bathymetry Consortium", "journal": "EMODnet Bathymetry Consortium", "doi": "10.12770/c7b53704-999d-4721-b1a3-04ec60c87238", "created_at": "2021-09-30T08:27:51.731Z", "updated_at": "2021-09-30T08:27:51.731Z"}], "licence-links": [{"licence-name": "SeaDataNet Data Policy", "licence-id": 742, "link-id": 683, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2488", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-19T18:07:55.000Z", "updated-at": "2021-11-24T13:18:15.245Z", "metadata": {"doi": "10.25504/FAIRsharing.6bvac4", "name": "China Data Center", "status": "deprecated", "contacts": [{"contact-name": "Ling Ling Zhang", "contact-email": "llzhang@umich.edu"}], "homepage": "http://chinadatacenter.org/", "identifier": 2488, "description": "Founded in 1997, the China Data Center was designed to serve as an international center for advancing the study and understanding of China. A primary goal of the Center was the integration of historical, social and natural science data in a geographic information system. Its missions were: to support research in the human and natural components of local, regional and global change; to promote quantitative research on China; to promote collaborative research in spatial studies; and to promote the use and sharing of China data in teaching and research. The center was partnered with several Chinese government agencies and companies in distributing China statistical data and publications and providing data services outside of China. Building upon other efforts, including the China in Time and Space project, the Center brought together data inaccessible to many scholars because of format and language difficulty. A fundamental role of the Center was the development of cooperative endeavors with China, with other universities, and institutions around the world.", "abbreviation": "CDC", "year-creation": 1997, "deprecation-date": "2018-10-11", "deprecation-reason": "As stated in an announcement on the CDC homepage, the CDC website and associated CDC websites are no longer available. Following a comprehensive internal review, the ICPSR and the University of Michigan have determined that they will no longer host the CDC and its related websites and tools. CDC customers with subscription periods running beyond September 2018 will be contacted in the coming weeks to begin the process of refunding prepaid (prorated) amounts. Please accept our apologies for any inconvenience."}, "legacy-ids": ["biodbcore-000970", "bsg-d000970"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science"], "domains": ["Geographical location"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["China", "United States"], "name": "FAIRsharing record for: China Data Center", "abbreviation": "CDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.6bvac4", "doi": "10.25504/FAIRsharing.6bvac4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Founded in 1997, the China Data Center was designed to serve as an international center for advancing the study and understanding of China. A primary goal of the Center was the integration of historical, social and natural science data in a geographic information system. Its missions were: to support research in the human and natural components of local, regional and global change; to promote quantitative research on China; to promote collaborative research in spatial studies; and to promote the use and sharing of China data in teaching and research. The center was partnered with several Chinese government agencies and companies in distributing China statistical data and publications and providing data services outside of China. Building upon other efforts, including the China in Time and Space project, the Center brought together data inaccessible to many scholars because of format and language difficulty. A fundamental role of the Center was the development of cooperative endeavors with China, with other universities, and institutions around the world.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1676", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:34.015Z", "metadata": {"doi": "10.25504/FAIRsharing.w8wbyj", "name": "BRCA Share", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "BRCAShare@QuestDiagnostics.com"}], "homepage": "http://www.umd.be/BRCA1/", "identifier": 1676, "description": "BRCA Share is a novel gene datashare initiative that provides scientists and commercial laboratory organizations around the world with open access to BRCA Share (formerly UMD-BRCA1) contains BRCA1 and BRCA2 genetic data. The program\u2019s goal is to accelerate research on BRCA gene mutations, particularly variants of uncertain significance, to improve the ability of clinical laboratory diagnostics to predict which individuals are at risk of developing these cancers.", "abbreviation": "BRCA Share", "year-creation": 1995, "data-processes": [{"name": "no versioning but access to historical files is possible", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "quarterly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000132", "bsg-d000132"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Genetics", "Life Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Cancer", "Mutation analysis", "Co-expression", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Belgium", "France"], "name": "FAIRsharing record for: BRCA Share", "abbreviation": "BRCA Share", "url": "https://fairsharing.org/10.25504/FAIRsharing.w8wbyj", "doi": "10.25504/FAIRsharing.w8wbyj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BRCA Share is a novel gene datashare initiative that provides scientists and commercial laboratory organizations around the world with open access to BRCA Share (formerly UMD-BRCA1) contains BRCA1 and BRCA2 genetic data. The program\u2019s goal is to accelerate research on BRCA gene mutations, particularly variants of uncertain significance, to improve the ability of clinical laboratory diagnostics to predict which individuals are at risk of developing these cancers.", "publications": [{"id": 1914, "pubmed_id": 19339519, "title": "Human Splicing Finder: an online bioinformatics tool to predict splicing signals.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp215", "authors": "Desmet FO., Hamroun D., Lalande M., Collod-B\u00e9roud G., Claustres M., B\u00e9roud C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp215", "created_at": "2021-09-30T08:25:55.188Z", "updated_at": "2021-09-30T08:25:55.188Z"}, {"id": 1915, "pubmed_id": 10612827, "title": "UMD (Universal mutation database): a generic software to build and analyze locus-specific databases.", "year": 1999, "url": "http://doi.org/10.1002/(SICI)1098-1004(200001)15:1<86::AID-HUMU16>3.0.CO;2-4", "authors": "B\u00e9roud C., Collod-B\u00e9roud G., Boileau C., Soussi T., Junien C.,", "journal": "Hum. Mutat.", "doi": "10.1002/(SICI)1098-1004(200001)15:1<86::AID-HUMU16>3.0.CO;2-4", "created_at": "2021-09-30T08:25:55.289Z", "updated_at": "2021-09-30T08:25:55.289Z"}, {"id": 1916, "pubmed_id": 16086365, "title": "UMD (Universal Mutation Database): 2005 update.", "year": 2005, "url": "http://doi.org/10.1002/humu.20210", "authors": "B\u00e9roud C., Hamroun D., Collod-B\u00e9roud G., Boileau C., Soussi T., Claustres M.,", "journal": "Hum. Mutat.", "doi": "10.1002/humu.20210", "created_at": "2021-09-30T08:25:55.397Z", "updated_at": "2021-09-30T08:25:55.397Z"}, {"id": 1917, "pubmed_id": 22144684, "title": "Description and analysis of genetic variants in French hereditary breast and ovarian cancer families recorded in the UMD-BRCA1/BRCA2 databases.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1160", "authors": "Caputo S,Benboudjema L,Sinilnikova O,Rouleau E,Beroud C,Lidereau R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1160", "created_at": "2021-09-30T08:25:55.504Z", "updated_at": "2021-09-30T11:29:23.887Z"}, {"id": 1918, "pubmed_id": 19370756, "title": "UMD-predictor, a new prediction tool for nucleotide substitution pathogenicity -- application to four genes: FBN1, FBN2, TGFBR1, and TGFBR2.", "year": 2009, "url": "http://doi.org/10.1002/humu.20970", "authors": "Fr\u00e9d\u00e9ric MY., Lalande M., Boileau C., Hamroun D., Claustres M., B\u00e9roud C., Collod-B\u00e9roud G.,", "journal": "Hum. Mutat.", "doi": "10.1002/humu.20970", "created_at": "2021-09-30T08:25:55.663Z", "updated_at": "2021-09-30T08:25:55.663Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1867", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:36.909Z", "metadata": {"doi": "10.25504/FAIRsharing.fx0mw7", "name": "Ensembl", "status": "ready", "contacts": [{"contact-name": "Help Desk", "contact-email": "helpdesk@ensembl.org"}], "homepage": "http://www.ensembl.org/", "citations": [{"doi": "10.1093/nar/gkz966", "pubmed-id": 31691826, "publication-id": 2838}], "identifier": 1867, "description": "Ensembl creates, integrates and distributes reference datasets and analysis tools that enable genomics. Ensembl is a genome browser that supports research in comparative genomics, evolution, sequence variation and transcriptional regulation. Ensembl annotate genes, computes multiple alignments, predicts regulatory function and collects disease data.", "abbreviation": "Ensembl", "access-points": [{"url": "http://rest.ensembl.org/", "name": "Ensembl REST API", "type": "REST"}], "support-links": [{"url": "http://www.ensembl.info/", "name": "Blog", "type": "Blog/News"}, {"url": "https://www.ensembl.org/info/about/contact/", "type": "Contact form"}, {"url": "helpdesk@ensembl.org", "name": "Helpdesk", "type": "Support email"}, {"url": "https://www.ensembl.org/Help/Faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ensembl.org/info/", "name": "Help", "type": "Help documentation"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "API Developers Mailing List", "type": "Mailing list"}, {"url": "https://www.ensembl.org/info/website/tutorials/sequence.html", "name": "Retrieving Sequences", "type": "Help documentation"}, {"url": "https://www.ensembl.org/info/website/tutorials/userdata.html", "name": "Use Your Own Data in Ensembl", "type": "Help documentation"}, {"url": "https://www.ensembl.org/info/website/tutorials/gene_snps.html", "name": "Variants for my Gene", "type": "Help documentation"}, {"url": "https://www.ensembl.org/info/website/tutorials/compara.html", "name": "Compare Genes Across Species", "type": "Help documentation"}, {"url": "https://www.ensembl.org/info/website/tutorials/expression.html", "name": "Gene Expression in Ensembl", "type": "Help documentation"}, {"url": "https://www.ensembl.org/info/website/gallery.html", "name": "Find a Data Display", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-browsing-chordate-genomes", "name": "Browsing Chordate Genomes", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-browser-webinar-series-2016", "name": "Webinar Series", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-filmed-api-workshop", "name": "Filmed API workshop", "type": "Training documentation"}, {"url": "https://www.ensembl.org/info/website/tutorials/index.html", "name": "Tutorials Index", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-genomes-non-chordates-quick-tour", "name": "Ensembl Genomes (non-chordates): Quick tour", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-tools-webinar", "name": "Ensembl Tools Webinar", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/ensembl-variant-effect-predictor-vep-webinar", "name": "Ensembl Variant Effect Predictor (VEP): webinar", "type": "Training documentation"}, {"url": "https://twitter.com/ensembl", "name": "@ensembl", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "https://www.ensembl.org/downloads.html", "name": "Download", "type": "data release"}, {"url": "https://www.ensembl.org/info/about/species.html", "name": "Browse Species", "type": "data access"}, {"url": "https://www.ensembl.org", "name": "Search", "type": "data access"}, {"url": "https://www.ensembl.org/biomart/martview/", "name": "Ensembl BioMart", "type": "data access"}, {"url": "https://www.ensembl.org/Multi/Tools/Blast", "name": "BLAST / BLAT", "type": "data access"}], "associated-tools": [{"url": "https://www.ensembl.org/info/docs/tools/vep/index.html", "name": "VEP"}, {"url": "https://www.ensembl.org/info/docs/tools/index.html", "name": "Tools: Complete List"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010228", "name": "re3data:r3d100010228", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002344", "name": "SciCrunch:RRID:SCR_002344", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000330", "bsg-d000330"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Biomedical Science", "Comparative Genomics"], "domains": ["Genetic map", "Genome annotation", "Genomic assembly", "Gene prediction", "Genome alignment", "Genome visualization", "Gene", "Genome", "Reference genome"], "taxonomies": ["Caenorhabditis elegans", "Chordata", "Drosophila melanogaster", "Saccharomyces cerevisiae"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Ensembl", "abbreviation": "Ensembl", "url": "https://fairsharing.org/10.25504/FAIRsharing.fx0mw7", "doi": "10.25504/FAIRsharing.fx0mw7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl creates, integrates and distributes reference datasets and analysis tools that enable genomics. Ensembl is a genome browser that supports research in comparative genomics, evolution, sequence variation and transcriptional regulation. Ensembl annotate genes, computes multiple alignments, predicts regulatory function and collects disease data.", "publications": [{"id": 182, "pubmed_id": 25236461, "title": "The Ensembl REST API: Ensembl Data for Any Language.", "year": 2014, "url": "http://doi.org/10.1093/bioinformatics/btu613", "authors": "Yates A,Beal K,Keenan S,McLaren W,Pignatelli M,Ritchie GR,Ruffier M,Taylor K,Vullo A,Flicek P", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btu613", "created_at": "2021-09-30T08:22:39.882Z", "updated_at": "2021-09-30T08:22:39.882Z"}, {"id": 197, "pubmed_id": 27268795, "title": "The Ensembl Variant Effect Predictor.", "year": 2016, "url": "http://doi.org/10.1186/s13059-016-0974-4", "authors": "McLaren W,Gil L,Hunt SE,Riat HS,Ritchie GR,Thormann A,Flicek P,Cunningham F", "journal": "Genome Biol", "doi": "10.1186/s13059-016-0974-4", "created_at": "2021-09-30T08:22:41.589Z", "updated_at": "2021-09-30T08:22:41.589Z"}, {"id": 198, "pubmed_id": 22798491, "title": "Incorporating RNA-seq data into the zebrafish Ensembl genebuild.", "year": 2012, "url": "http://doi.org/10.1101/gr.137901.112", "authors": "Collins JE,White S,Searle SM,Stemple DL", "journal": "Genome Res", "doi": "10.1101/gr.137901.112", "created_at": "2021-09-30T08:22:41.681Z", "updated_at": "2021-09-30T08:22:41.681Z"}, {"id": 221, "pubmed_id": 15123591, "title": "The Ensembl Web site: mechanics of a genome browser.", "year": 2004, "url": "http://doi.org/10.1101/gr.1863004", "authors": "Stalker J,Gibbins B,Meidl P,Smith J,Spooner W,Hotz HR,Cox AV", "journal": "Genome Res", "doi": "10.1101/gr.1863004", "created_at": "2021-09-30T08:22:43.915Z", "updated_at": "2021-09-30T08:22:43.915Z"}, {"id": 222, "pubmed_id": 15123588, "title": "The Ensembl core software libraries.", "year": 2004, "url": "http://doi.org/10.1101/gr.1857204", "authors": "Stabenau A,McVicker G,Melsopp C,Proctor G,Clamp M,Birney E", "journal": "Genome Res", "doi": "10.1101/gr.1857204", "created_at": "2021-09-30T08:22:44.057Z", "updated_at": "2021-09-30T08:22:44.057Z"}, {"id": 237, "pubmed_id": 22955987, "title": "GENCODE: the reference human genome annotation for The ENCODE Project.", "year": 2012, "url": "http://doi.org/10.1101/gr.135350.111", "authors": "Harrow J, et al.", "journal": "Genome Res", "doi": "10.1101/gr.135350.111", "created_at": "2021-09-30T08:22:45.582Z", "updated_at": "2021-09-30T08:22:45.582Z"}, {"id": 239, "pubmed_id": 21400687, "title": "Disease and phenotype data at Ensembl.", "year": 2011, "url": "http://doi.org/10.1002/0471142905.hg0611s69", "authors": "Spudich GM,Fernandez-Suarez XM", "journal": "Curr Protoc Hum Genet", "doi": "10.1002/0471142905.hg0611s69", "created_at": "2021-09-30T08:22:45.781Z", "updated_at": "2021-09-30T08:22:45.781Z"}, {"id": 245, "pubmed_id": 15145580, "title": "Genome information resources - developments at Ensembl.", "year": 2004, "url": "http://doi.org/10.1016/j.tig.2004.04.002", "authors": "Hammond MP,Birney E", "journal": "Trends Genet", "doi": "10.1016/j.tig.2004.04.002", "created_at": "2021-09-30T08:22:46.498Z", "updated_at": "2021-09-30T08:22:46.498Z"}, {"id": 268, "pubmed_id": 21785142, "title": "Ensembl BioMarts: a hub for data retrieval across taxonomic space.", "year": 2011, "url": "http://doi.org/10.1093/database/bar030", "authors": "Kinsella RJ,Kahari A,Haider S,Zamora J,Proctor G,Spudich G,Almeida-King J,Staines D,Derwent P,Kerhornou A,Kersey P,Flicek P", "journal": "Database (Oxford)", "doi": "10.1093/database/bar030", "created_at": "2021-09-30T08:22:48.965Z", "updated_at": "2021-09-30T08:22:48.965Z"}, {"id": 396, "pubmed_id": 25352552, "title": "Ensembl 2015", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1010", "authors": "Cunningham F et al.", "journal": "Nucleic Acids Res.", "doi": "doi:10.1093/nar/gku1010", "created_at": "2021-09-30T08:23:03.063Z", "updated_at": "2021-09-30T08:23:03.063Z"}, {"id": 627, "pubmed_id": 16381931, "title": "Ensembl 2006.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj133", "authors": "Birney E et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj133", "created_at": "2021-09-30T08:23:28.924Z", "updated_at": "2021-09-30T11:28:48.417Z"}, {"id": 1467, "pubmed_id": 24316576, "title": "Ensembl 2014.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1196", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1196", "created_at": "2021-09-30T08:25:04.201Z", "updated_at": "2021-09-30T11:29:09.359Z"}, {"id": 1857, "pubmed_id": 26888907, "title": "Ensembl regulation resources.", "year": 2016, "url": "http://doi.org/10.1093/database/bav119", "authors": "Zerbino DR,Johnson N,Juetteman T,Sheppard D,Wilder SP,Lavidas I,Nuhn M,Perry E,Raffaillac-Desfosses Q,Sobral D,Keefe D,Graf S,Ahmed I,Kinsella R,Pritchard B,Brent S,Amode R,Parker A,Trevanion S,Birney E,Dunham I,Flicek P", "journal": "Database (Oxford)", "doi": "10.1093/database/bav119", "created_at": "2021-09-30T08:25:48.615Z", "updated_at": "2021-09-30T08:25:48.615Z"}, {"id": 1859, "pubmed_id": 27337980, "title": "The Ensembl gene annotation system.", "year": 2016, "url": "http://doi.org/10.1093/database/baw093", "authors": "Aken BL,Ayling S,Barrell D,Clarke L,Curwen V,Fairley S,Fernandez Banet J,Billis K,Garcia Giron C,Hourlier T,Howe K,Kahari A,Kokocinski F,Martin FJ,Murphy DN,Nag R,Ruffier M,Schuster M,Tang YA,Vogel JH,White S,Zadissa A,Flicek P,Searle SM", "journal": "Database (Oxford)", "doi": "10.1093/database/baw093", "created_at": "2021-09-30T08:25:48.840Z", "updated_at": "2021-09-30T08:25:48.840Z"}, {"id": 1884, "pubmed_id": 20459808, "title": "Touring Ensembl: a practical guide to genome browsing.", "year": 2010, "url": "http://doi.org/10.1186/1471-2164-11-295", "authors": "Spudich GM,Fernandez-Suarez XM", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-11-295", "created_at": "2021-09-30T08:25:51.940Z", "updated_at": "2021-09-30T08:25:51.940Z"}, {"id": 1885, "pubmed_id": 17967807, "title": "Genome browsing with Ensembl: a practical overview.", "year": 2007, "url": "http://doi.org/10.1093/bfgp/elm025", "authors": "Spudich G,Fernandez-Suarez XM,Birney E", "journal": "Brief Funct Genomic Proteomic", "doi": "10.1093/bfgp/elm025", "created_at": "2021-09-30T08:25:52.048Z", "updated_at": "2021-09-30T08:25:52.048Z"}, {"id": 1911, "pubmed_id": 21045057, "title": "Ensembl 2011.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1064", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1064", "created_at": "2021-09-30T08:25:54.869Z", "updated_at": "2021-09-30T11:29:23.560Z"}, {"id": 1912, "pubmed_id": 22086963, "title": "Ensembl 2012.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr991", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr991", "created_at": "2021-09-30T08:25:54.985Z", "updated_at": "2021-09-30T11:29:23.703Z"}, {"id": 1913, "pubmed_id": 23203987, "title": "Ensembl 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1236", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1236", "created_at": "2021-09-30T08:25:55.085Z", "updated_at": "2021-09-30T11:29:23.795Z"}, {"id": 2153, "pubmed_id": 26980512, "title": "ncRNA orthologies in the vertebrate lineage.", "year": 2016, "url": "http://doi.org/10.1093/database/bav127", "authors": "Pignatelli M,Vilella AJ,Muffato M,Gordon L,White S,Flicek P,Herrero J", "journal": "Database (Oxford)", "doi": "10.1093/database/bav127", "created_at": "2021-09-30T08:26:22.657Z", "updated_at": "2021-09-30T08:26:22.657Z"}, {"id": 2158, "pubmed_id": 27141089, "title": "Ensembl comparative genomics resources (Erratum)", "year": 2016, "url": "http://doi.org/10.1093/database/baw053", "authors": "Herrero J,Muffato M,Beal K,Fitzgerald S,Gordon L,Pignatelli M,Vilella AJ,Searle SM,Amode R,Brent S,Spooner W,Kulesha E,Yates A,Flicek P", "journal": "Database (Oxford)", "doi": "10.1093/database/baw053", "created_at": "2021-09-30T08:26:23.301Z", "updated_at": "2021-09-30T08:26:23.301Z"}, {"id": 2196, "pubmed_id": 15123594, "title": "The Ensembl computing architecture.", "year": 2004, "url": "http://doi.org/10.1101/gr.1866304", "authors": "Cuff JA,Coates GM,Cutts TJ,Rae M", "journal": "Genome Res", "doi": "10.1101/gr.1866304", "created_at": "2021-09-30T08:26:27.548Z", "updated_at": "2021-09-30T08:26:27.548Z"}, {"id": 2257, "pubmed_id": 15608235, "title": "Ensembl 2005.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki138", "authors": "Hubbard T et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki138", "created_at": "2021-09-30T08:26:34.482Z", "updated_at": "2021-09-30T11:29:31.869Z"}, {"id": 2258, "pubmed_id": 15123595, "title": "ESTGenes: alternative splicing from ESTs in Ensembl.", "year": 2004, "url": "http://doi.org/10.1101/gr.1862204", "authors": "Eyras E,Caccamo M,Curwen V,Clamp M", "journal": "Genome Res", "doi": "10.1101/gr.1862204", "created_at": "2021-09-30T08:26:34.641Z", "updated_at": "2021-09-30T08:26:34.641Z"}, {"id": 2268, "pubmed_id": 25887522, "title": "The ensembl regulatory build.", "year": 2015, "url": "http://doi.org/10.1186/s13059-015-0621-5", "authors": "Zerbino DR,Wilder SP,Johnson N,Juettemann T,Flicek PR", "journal": "Genome Biol", "doi": "10.1186/s13059-015-0621-5", "created_at": "2021-09-30T08:26:36.205Z", "updated_at": "2021-09-30T08:26:36.205Z"}, {"id": 2270, "pubmed_id": 24363377, "title": "WiggleTools: parallel processing of large collections of genome-wide datasets for visualization and statistical analysis.", "year": 2013, "url": "http://doi.org/10.1093/bioinformatics/btt737", "authors": "Zerbino DR,Johnson N,Juettemann T,Wilder SP,Flicek P", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btt737", "created_at": "2021-09-30T08:26:36.457Z", "updated_at": "2021-09-30T08:26:36.457Z"}, {"id": 2293, "pubmed_id": 27899575, "title": "Ensembl 2017.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1104", "authors": "Aken BL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1104", "created_at": "2021-09-30T08:26:39.783Z", "updated_at": "2021-09-30T11:29:32.469Z"}, {"id": 2473, "pubmed_id": 16874317, "title": "TranscriptSNPView: a genome-wide catalog of mouse coding variation.", "year": 2006, "url": "http://doi.org/10.1038/ng0806-853a", "authors": "Cunningham F,Rios D,Griffiths M,Smith J,Ning Z,Cox T,Flicek P,Marin-Garcin P,Herrero J,Rogers J,van der Weyden L,Bradley A,Birney E,Adams DJ", "journal": "Nat Genet", "doi": "10.1038/ng0806-853a", "created_at": "2021-09-30T08:27:03.236Z", "updated_at": "2021-09-30T08:27:03.236Z"}, {"id": 2474, "pubmed_id": 26687719, "title": "Ensembl 2016.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1157", "authors": "Yates A et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1157", "created_at": "2021-09-30T08:27:03.350Z", "updated_at": "2021-09-30T11:29:37.246Z"}, {"id": 2476, "pubmed_id": 18849525, "title": "Genome-wide nucleotide-level mammalian ancestor reconstruction.", "year": 2008, "url": "http://doi.org/10.1101/gr.076521.108", "authors": "Paten B,Herrero J,Fitzgerald S,Beal K,Flicek P,Holmes I,Birney E", "journal": "Genome Res", "doi": "10.1101/gr.076521.108", "created_at": "2021-09-30T08:27:03.585Z", "updated_at": "2021-09-30T08:27:03.585Z"}, {"id": 2490, "pubmed_id": 18000006, "title": "Ensembl 2008.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm988", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm988", "created_at": "2021-09-30T08:27:05.316Z", "updated_at": "2021-09-30T11:29:37.978Z"}, {"id": 2499, "pubmed_id": 20459805, "title": "Ensembl variation resources.", "year": 2010, "url": "http://doi.org/10.1186/1471-2164-11-293", "authors": "Chen Y,Cunningham F,Rios D,McLaren WM,Smith J,Pritchard B,Spudich GM,Brent S,Kulesha E,Marin-Garcia P,Smedley D,Birney E,Flicek P", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-11-293", "created_at": "2021-09-30T08:27:06.403Z", "updated_at": "2021-09-30T08:27:06.403Z"}, {"id": 2507, "pubmed_id": 12519943, "title": "Ensembl 2002: accommodating comparative genomics.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg083", "authors": "Clamp M et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg083", "created_at": "2021-09-30T08:27:07.689Z", "updated_at": "2021-09-30T11:29:38.395Z"}, {"id": 2508, "pubmed_id": 19029536, "title": "EnsemblCompara GeneTrees: Complete, duplication-aware phylogenetic trees in vertebrates.", "year": 2008, "url": "http://doi.org/10.1101/gr.073585.107", "authors": "Vilella AJ,Severin J,Ureta-Vidal A,Heng L,Durbin R,Birney E", "journal": "Genome Res", "doi": "10.1101/gr.073585.107", "created_at": "2021-09-30T08:27:07.790Z", "updated_at": "2021-09-30T08:27:07.790Z"}, {"id": 2719, "pubmed_id": 20459810, "title": "A database and API for variation, dense genotyping and resequencing data.", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-238", "authors": "Rios D,McLaren WM,Chen Y,Birney E,Stabenau A,Flicek P,Cunningham F", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-238", "created_at": "2021-09-30T08:27:33.947Z", "updated_at": "2021-09-30T08:27:33.947Z"}, {"id": 2780, "pubmed_id": 11752248, "title": "The Ensembl genome database project.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.38", "authors": "Hubbard T et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.38", "created_at": "2021-09-30T08:27:41.776Z", "updated_at": "2021-09-30T11:29:44.328Z"}, {"id": 2781, "pubmed_id": 17148474, "title": "Ensembl 2007.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl996", "authors": "Hubbard TJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl996", "created_at": "2021-09-30T08:27:41.885Z", "updated_at": "2021-09-30T11:29:44.420Z"}, {"id": 2783, "pubmed_id": 20562413, "title": "Deriving the consequences of genomic variants with the Ensembl API and SNP Effect Predictor.", "year": 2010, "url": "http://doi.org/10.1093/bioinformatics/btq330", "authors": "McLaren W,Pritchard B,Rios D,Chen Y,Flicek P,Cunningham F", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq330", "created_at": "2021-09-30T08:27:42.106Z", "updated_at": "2021-09-30T08:27:42.106Z"}, {"id": 2784, "pubmed_id": 19033362, "title": "Ensembl 2009.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn828", "authors": "Hubbard TJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn828", "created_at": "2021-09-30T08:27:42.211Z", "updated_at": "2021-09-30T11:29:44.511Z"}, {"id": 2785, "pubmed_id": 19906699, "title": "Ensembl's 10th year.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp972", "authors": "Flicek P et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp972", "created_at": "2021-09-30T08:27:42.321Z", "updated_at": "2021-09-30T11:29:44.603Z"}, {"id": 2832, "pubmed_id": 26896847, "title": "Ensembl comparative genomics resources.", "year": 2016, "url": "http://doi.org/10.1093/database/bav096", "authors": "Herrero J,Muffato M,Beal K,Fitzgerald S,Gordon L,Pignatelli M,Vilella AJ,Searle SM,Amode R,Brent S,Spooner W,Kulesha E,Yates A,Flicek P", "journal": "Database (Oxford)", "doi": "10.1093/database/bav096", "created_at": "2021-09-30T08:27:48.390Z", "updated_at": "2021-09-30T08:27:48.390Z"}, {"id": 2834, "pubmed_id": 15123589, "title": "The Ensembl analysis pipeline.", "year": 2004, "url": "http://doi.org/10.1101/gr.1859804", "authors": "Potter SC,Clarke L,Curwen V,Keenan S,Mongin E,Searle SM,Stabenau A,Storey R,Clamp M", "journal": "Genome Res", "doi": "10.1101/gr.1859804", "created_at": "2021-09-30T08:27:48.621Z", "updated_at": "2021-09-30T08:27:48.621Z"}, {"id": 2835, "pubmed_id": 15123590, "title": "The Ensembl automatic gene annotation system.", "year": 2004, "url": "http://doi.org/10.1101/gr.1858004", "authors": "Curwen V,Eyras E,Andrews TD,Clarke L,Mongin E,Searle SM,Clamp M", "journal": "Genome Res", "doi": "10.1101/gr.1858004", "created_at": "2021-09-30T08:27:48.792Z", "updated_at": "2021-09-30T08:27:48.792Z"}, {"id": 2837, "pubmed_id": 30407521, "title": "Ensembl 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1113", "authors": "Cunningham F et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1113", "created_at": "2021-09-30T08:27:49.020Z", "updated_at": "2021-09-30T11:29:44.853Z"}, {"id": 2838, "pubmed_id": 31691826, "title": "Ensembl 2020.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz966", "authors": "Yates AD, et al", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz966", "created_at": "2021-09-30T08:27:49.136Z", "updated_at": "2021-09-30T11:29:45.920Z"}, {"id": 3007, "pubmed_id": 20459813, "title": "eHive: an artificial intelligence workflow system for genomic analysis.", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-240", "authors": "Severin J,Beal K,Vilella AJ,Fitzgerald S,Schuster M,Gordon L,Ureta-Vidal A,Flicek P,Herrero J", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-240", "created_at": "2021-09-30T08:28:10.750Z", "updated_at": "2021-09-30T08:28:10.750Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2205, "relation": "undefined"}, {"licence-name": "Ensembl Legal Disclaimer", "licence-id": 281, "link-id": 2207, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2209, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2344", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T15:13:46.000Z", "updated-at": "2021-11-24T13:17:51.720Z", "metadata": {"doi": "10.25504/FAIRsharing.mzk12n", "name": "Brassica Genome", "status": "ready", "contacts": [{"contact-name": "Dave Andrews", "contact-email": "dave.edwards@uq.edu.au"}], "homepage": "http://www.brassicagenome.net/details.php", "identifier": 2344, "description": "This site hosts Brassica genome databases.", "abbreviation": "Brassica Genome", "year-creation": 2010}, "legacy-ids": ["biodbcore-000822", "bsg-d000822"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics"], "domains": ["Genome"], "taxonomies": ["Brassica"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Brassica Genome", "abbreviation": "Brassica Genome", "url": "https://fairsharing.org/10.25504/FAIRsharing.mzk12n", "doi": "10.25504/FAIRsharing.mzk12n", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This site hosts Brassica genome databases.", "publications": [{"id": 1659, "pubmed_id": 21873998, "title": "The genome of the mesopolyploid crop species Brassica rapa.", "year": 2011, "url": "http://doi.org/10.1038/ng.919", "authors": "Wang X,Wang H,Wang J,Sun R,Wu J,Liu S,Bai Y,Mun JH,Bancroft I,Cheng F,Huang S,Li X,Hua W,Wang J,Wang X,Freeling M,Pires JC,Paterson AH,Chalhoub B,Wang B,Hayward A,Sharpe AG,Park BS,Weisshaar B,Liu B,Li B,Liu B,Tong C,Song C,Duran C,Peng C,Geng C,Koh C,Lin C,Edwards D,Mu D,Shen D,Soumpourou E,Li F,Fraser F,Conant G,Lassalle G,King GJ,Bonnema G,Tang H,Wang H,Belcram H,Zhou H,Hirakawa H,Abe H,Guo H,Wang H,Jin H,Parkin IA,Batley J,Kim JS,Just J,Li J,Xu J,Deng J,Kim JA,Li J,Yu J,Meng J,Wang J,Min J,Poulain J,Wang J,Hatakeyama K,Wu K,Wang L,Fang L,Trick M,Links MG,Zhao M,Jin M,Ramchiary N,Drou N,Berkman PJ,Cai Q,Huang Q,Li R,Tabata S,Cheng S,Zhang S,Zhang S,Huang S,Sato S,Sun S,Kwon SJ,Choi SR,Lee TH,Fan W,Zhao X,Tan X,Xu X,Wang Y,Qiu Y,Yin Y,Li Y,Du Y,Liao Y,Lim Y,Narusaka Y,Wang Y,Wang Z,Li Z,Wang Z,Xiong Z,Zhang Z", "journal": "Nat Genet", "doi": "10.1038/ng.919", "created_at": "2021-09-30T08:25:25.829Z", "updated_at": "2021-09-30T08:25:25.829Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2425", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-15T10:41:28.000Z", "updated-at": "2021-12-06T10:48:13.263Z", "metadata": {"doi": "10.25504/FAIRsharing.9enwm8", "name": "Marine Geoscience Data System", "status": "ready", "contacts": [{"contact-name": "General information", "contact-email": "info@marine-geo.org"}], "homepage": "http://www.marine-geo.org/index.php", "identifier": 2425, "description": "Marine Geoscience Data System is a freely available suite of tools and resources to access data on the global oceans for marine research.", "abbreviation": "MGDS", "access-points": [{"url": "http://www.marine-geo.org/tools/web_services.php", "name": "Web services", "type": "Other"}, {"url": "https://www.gmrt.org/services/index.php", "name": "GMRT REST-type Services", "type": "REST"}], "support-links": [{"url": "http://www.marine-geo.org/help/index.php", "type": "Help documentation"}, {"url": "http://www.marine-geo.org/education/modules.php", "type": "Training documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.marine-geo.org/tools/new_search/search_map.php", "name": "search", "type": "data access"}, {"url": "http://app.iedadata.org/databrowser/", "name": "Browse", "type": "data access"}, {"url": "http://www.marine-geo.org/data_portals.php", "name": "access", "type": "data access"}, {"url": "http://www.marine-geo.org/submit/", "name": "submit", "type": "data curation"}, {"url": "http://www.marine-geo.org/references/#!/references", "name": "Reference search", "type": "data access"}], "associated-tools": [{"url": "http://www.geomapapp.org/", "name": "GeoMapApp 3.6.10"}, {"url": "http://www.virtualocean.org/", "name": "Virtual Ocean 2.6.0"}, {"url": "http://www.earth-observer.org/", "name": "EarthObserver 2.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010273", "name": "re3data:r3d100010273", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000907", "bsg-d000907"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Natural Science", "Earth Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Marine Geoscience Data System", "abbreviation": "MGDS", "url": "https://fairsharing.org/10.25504/FAIRsharing.9enwm8", "doi": "10.25504/FAIRsharing.9enwm8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Marine Geoscience Data System is a freely available suite of tools and resources to access data on the global oceans for marine research.", "publications": [], "licence-links": [{"licence-name": "MGDS Terms of Use", "licence-id": 509, "link-id": 53, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States (CC BY-NC-SA 3.0 US)", "licence-id": 185, "link-id": 55, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1986", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:17.991Z", "metadata": {"doi": "10.25504/FAIRsharing.b5ann2", "name": "Plant Genome Central", "status": "deprecated", "contacts": [{"contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/genomes/PLANTS/PlantList.html", "identifier": 1986, "description": "The list of plant sequencing projects in this page includes those that have reached the stage where active sequence determination is currently producing, or is expected to produce in the near future, GenBank accessions toward the goal of determining the sequence of that plant genome.", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/genomes/PLANTS/PGC-word.pdf", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/genbank/genomes/Eukaryotes/plants/", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/genomes/PLANTS/PlantList.html", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/blast/Blast.cgi?PAGE_TYPE=BlastSearch&PROG_DEF=blastn&BLAST_PROG_DEF=megaBlast&BLAST_SPEC=Plants_MV&DATABASE=Plants/Mapped_DNA_sequences_from_all_listed_plants", "name": "BLAST"}], "deprecation-date": "2015-07-14", "deprecation-reason": "This resource is now obsolete. Information on annotated plant genomes can be found at http://www.ncbi.nlm.nih.gov/genome/annotation_euk/all/"}, "legacy-ids": ["biodbcore-000452", "bsg-d000452"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genome"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Plant Genome Central", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.b5ann2", "doi": "10.25504/FAIRsharing.b5ann2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The list of plant sequencing projects in this page includes those that have reached the stage where active sequence determination is currently producing, or is expected to produce in the near future, GenBank accessions toward the goal of determining the sequence of that plant genome.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1300, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3185", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-12T07:04:24.000Z", "updated-at": "2021-11-24T13:17:18.263Z", "metadata": {"doi": "10.25504/FAIRsharing.2y1KMt", "name": "GlycoPOST", "status": "ready", "contacts": [{"contact-name": "GlycoPOST", "contact-email": "glycosmosup@gmail.com"}], "homepage": "https://glycopost.glycosmos.org", "identifier": 3185, "description": "GlycoPOST is a mass spectrometry data repository for glycomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", "abbreviation": "GlycoPOST", "support-links": [{"url": "https://glycopost.glycosmos.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://glycopost.glycosmos.org/help", "name": "Help", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://glycopost.glycosmos.org/submit", "name": "Submit", "type": "data curation"}, {"url": "https://glycopost.glycosmos.org/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001696", "bsg-d001696"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Glycomics"], "domains": ["Mass spectrum"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: GlycoPOST", "abbreviation": "GlycoPOST", "url": "https://fairsharing.org/10.25504/FAIRsharing.2y1KMt", "doi": "10.25504/FAIRsharing.2y1KMt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlycoPOST is a mass spectrometry data repository for glycomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1967, "relation": "undefined"}, {"licence-name": "GlycoPOST Terms of Use", "licence-id": 350, "link-id": 1968, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1947", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:21.731Z", "metadata": {"doi": "10.25504/FAIRsharing.bpxgb6", "name": "Greengenes", "status": "ready", "contacts": [{"contact-name": "Gary L Andersen", "contact-email": "GLAndersen@lbl.gov", "contact-orcid": "0000-0002-1618-9827"}], "homepage": "http://greengenes.lbl.gov", "identifier": 1947, "description": "A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", "abbreviation": "Greengenes", "support-links": [{"url": "http://greengenes.lbl.gov/Download/Tutorial/FAQ.htm", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://greengenes.lbl.gov/cgi-bin/JD_Tutorial/nph-Tutorial_2Main2.cgi", "type": "Training documentation"}], "year-creation": 2005, "data-processes": [{"name": "http://greengenes.lbl.gov/cgi-bin/nph-curation_tools.cgi", "type": "data curation"}, {"url": "http://greengenes.lbl.gov/cgi-bin/nph-tools_in_development.cgi", "name": "search", "type": "data access"}, {"url": "http://greengenes.lbl.gov/cgi-bin/nph-browse.cgi", "name": "Browse", "type": "data access"}, {"url": "http://greengenes.lbl.gov/Download/", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000413", "bsg-d000413"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Life Science"], "domains": ["Ribonucleic acid", "Recombinant DNA", "Sequence alignment", "16S rRNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Greengenes", "abbreviation": "Greengenes", "url": "https://fairsharing.org/10.25504/FAIRsharing.bpxgb6", "doi": "10.25504/FAIRsharing.bpxgb6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", "publications": [{"id": 442, "pubmed_id": 16820507, "title": "Greengenes, a chimera-checked 16S rRNA gene database and workbench compatible with ARB.", "year": 2006, "url": "http://doi.org/10.1128/AEM.03006-05", "authors": "DeSantis TZ., Hugenholtz P., Larsen N., Rojas M., Brodie EL., Keller K., Huber T., Dalevi D., Hu P., Andersen GL.,", "journal": "Appl. Environ. Microbiol.", "doi": "10.1128/AEM.03006-05", "created_at": "2021-09-30T08:23:07.983Z", "updated_at": "2021-09-30T08:23:07.983Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1865", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:54.370Z", "metadata": {"doi": "10.25504/FAIRsharing.mya1ff", "name": "The European Genome-phenome Archive", "status": "ready", "contacts": [{"contact-name": "EGA Helpdesk", "contact-email": "helpdesk@ega-archive.org"}], "homepage": "https://ega-archive.org/", "citations": [{"doi": "10.1038/ng.3312", "pubmed-id": 26111507, "publication-id": 2373}], "identifier": 1865, "description": "The European Genome-phenome Archive (EGA) allows you to explore datasets from genomic studies, provided by a range of data providers. Access to datasets must be approved by the specified Data Access Committee (DAC).", "abbreviation": "EGA", "access-points": [{"url": "https://ega-archive.org/metadata/how-to-use-the-api", "name": "Metadata REST API", "type": "REST"}, {"url": "https://ega-archive.org/submission/programmatic-submissions", "name": "Submission REST API", "type": "REST"}], "support-links": [{"url": "https://ega-archive.org/blog/", "name": "EGA Blog", "type": "Blog/News"}, {"url": "https://ega-archive.org/access/faq", "name": "Access FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ega-archive.org/submission/FAQ", "name": "Submission FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ega-archive.org/howtosearch", "name": "How to Search", "type": "Help documentation"}, {"url": "https://ega-archive.org/about", "name": "About EGA", "type": "Help documentation"}, {"url": "https://ega-archive.org/submission/quickguide", "name": "Submission Quick Guide", "type": "Help documentation"}, {"url": "https://ega-archive.org/access/data-access", "name": "Data Access Guide", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/ega-quick-tour", "name": "EGA: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/EGAarchive", "name": "@EGAarchive", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://ega-archive.org/dacs", "name": "DAC Browser", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ena/submit/sra/#ega", "name": "Submission", "type": "data curation"}, {"url": "https://ega-archive.org/studies", "name": "Browse Studies", "type": "data access"}, {"url": "https://ega-archive.org/datasets", "name": "Browse Datasets", "type": "data access"}, {"url": "https://ega-archive.org/download/downloading-data-from-ega", "name": "Download (via API)", "type": "data release"}], "associated-tools": [{"url": "https://ega-archive.org/submission/tools/egacryptor", "name": "EgaCryptor"}, {"url": "https://ega-archive.org/submission/tools/ftp-aspera", "name": "Aspera and FTP Upload"}, {"url": "https://ega-archive.org/download/downloader-quickguide-APIv3", "name": "pyEGA3 - Secure Download Client"}, {"url": "https://github.com/EbiEga/ega-metadata-schema/tree/main/Star2xml", "name": "Star2XML"}, {"url": "https://github.com/EGA-archive/ega-fuse-client", "name": "EGA FUSE client"}, {"url": "https://ega-archive.org/submitter-portal", "name": "Submitter Portal"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011242", "name": "re3data:r3d100011242", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004944", "name": "SciCrunch:RRID:SCR_004944", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000328", "bsg-d000328"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Phenomics", "Biomedical Science", "Biology"], "domains": ["DNA sequence data", "Cancer", "Genetic polymorphism", "Rare disease", "RNA sequencing", "Microarray experiment", "Whole genome sequencing", "Phenotype", "Genome", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19", "Single cell gene expression"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: The European Genome-phenome Archive", "abbreviation": "EGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.mya1ff", "doi": "10.25504/FAIRsharing.mya1ff", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Genome-phenome Archive (EGA) allows you to explore datasets from genomic studies, provided by a range of data providers. Access to datasets must be approved by the specified Data Access Committee (DAC).", "publications": [{"id": 2373, "pubmed_id": 26111507, "title": "The European Genome-phenome Archive of human data consented for biomedical research.", "year": 2015, "url": "http://doi.org/10.1038/ng.3312", "authors": "Lappalainen I,Almeida-King J,Kumanduri V et al.", "journal": "Nat Genet", "doi": "10.1038/ng.3312", "created_at": "2021-09-30T08:26:51.694Z", "updated_at": "2021-09-30T08:26:51.694Z"}, {"id": 2375, "pubmed_id": 20972220, "title": "The European Nucleotide Archive.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq967", "authors": "Leinonen R,Akhtar R,Birney E,Bower L,Cerdeno-Tarraga A,Cheng Y,Cleland I,Faruque N,Goodgame N,Gibson R,Hoad G,Jang M,Pakseresht N,Plaister S,Radhakrishnan R,Reddy K,Sobhany S,Ten Hoopen P,Vaughan R,Zalunin V,Cochrane G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq967", "created_at": "2021-09-30T08:26:51.907Z", "updated_at": "2021-09-30T11:29:34.312Z"}], "licence-links": [{"licence-name": "EGA Legal Notice and Terms of Data Use", "licence-id": 263, "link-id": 1322, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1749", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:07.104Z", "metadata": {"doi": "10.25504/FAIRsharing.yk38tw", "name": "AntWeb", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "antweb@calacademy.org"}], "homepage": "http://www.antweb.org", "identifier": 1749, "description": "AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", "abbreviation": "AntWeb", "support-links": [{"url": "http://www.antweb.org/antblog/", "type": "Blog/News"}, {"url": "http://www.antweb.org/user_guide.jsp", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.antweb.org/advSearch.do", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000207", "bsg-d000207"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Life Science"], "domains": ["Image", "Classification"], "taxonomies": ["Formicidae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: AntWeb", "abbreviation": "AntWeb", "url": "https://fairsharing.org/10.25504/FAIRsharing.yk38tw", "doi": "10.25504/FAIRsharing.yk38tw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", "publications": [{"id": 294, "pubmed_id": 12867945, "title": "Ants join online colony to boost conservation efforts.", "year": 2003, "url": "http://doi.org/10.1038/424242b", "authors": "Dalton R.,", "journal": "Nature", "doi": "10.1038/424242b", "created_at": "2021-09-30T08:22:51.642Z", "updated_at": "2021-09-30T08:22:51.642Z"}], "licence-links": [{"licence-name": "California Academy of Sciences Terms and Conditions of Use", "licence-id": 90, "link-id": 184, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 336, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2544", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-02T16:32:17.000Z", "updated-at": "2021-12-06T10:48:43.033Z", "metadata": {"doi": "10.25504/FAIRsharing.j3y6a0", "name": "Patient-Derived tumor Xenograft Finder", "status": "ready", "contacts": [{"contact-name": "Zinaida Perova", "contact-email": "zina@ebi.ac.uk"}], "homepage": "http://www.pdxfinder.org", "citations": [{"doi": "10.1093/nar/gky984", "pubmed-id": 30535239, "publication-id": 2773}], "identifier": 2544, "description": "PDX Finder is an open repository for the upload and storage of clinical, genomic and functional Patient-Derived Xenograph (PDX) data which provides a comprehensive global catalogue of PDX models available for researchers across distributed repository databases. Integrated views are provided for histopathological image data, molecular classification of tumors, host mouse strain metadata, tumor genomic data and metrics on tumor response to chemotherapeutics. The data model for PDX Finder is based on the minimal information standard for PDX models developed in collaboration with a broad range of stakeholders who create and/or use PDX models in basic and pre-clinical cancer research.", "abbreviation": "PDX Finder", "support-links": [{"url": "helpdesk@pdxfinder.org", "name": "Helpdesk contact", "type": "Support email"}, {"url": "http://www.pdxfinder.org/about/", "name": "Objectives", "type": "Help documentation"}, {"url": "http://www.pdxfinder.org/about/data-available-dashboard/", "name": "Data Summary", "type": "Help documentation"}, {"url": "http://www.pdxfinder.org/pdx-data-submission-integration-and-distribution/", "name": "Data Flow", "type": "Help documentation"}, {"url": "https://twitter.com/PDXFinder", "name": "@PDXFinder", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "http://www.pdxfinder.org/get-in-touch-with-us/", "name": "Submit", "type": "data curation"}, {"url": "http://www.pdxfinder.org/data/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012961", "name": "re3data:r3d100012961", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001027", "bsg-d001027"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Translational Medicine", "Preclinical Studies"], "domains": ["Model organism", "Cancer", "Tumor", "Patient care", "Histology", "Disease"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Patient derived xenograft PDX"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Patient-Derived tumor Xenograft Finder", "abbreviation": "PDX Finder", "url": "https://fairsharing.org/10.25504/FAIRsharing.j3y6a0", "doi": "10.25504/FAIRsharing.j3y6a0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDX Finder is an open repository for the upload and storage of clinical, genomic and functional Patient-Derived Xenograph (PDX) data which provides a comprehensive global catalogue of PDX models available for researchers across distributed repository databases. Integrated views are provided for histopathological image data, molecular classification of tumors, host mouse strain metadata, tumor genomic data and metrics on tumor response to chemotherapeutics. The data model for PDX Finder is based on the minimal information standard for PDX models developed in collaboration with a broad range of stakeholders who create and/or use PDX models in basic and pre-clinical cancer research.", "publications": [{"id": 2773, "pubmed_id": 30535239, "title": "PDX Finder: A portal for patient-derived tumor xenograft model discovery.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky984", "authors": "Conte N,Mason JC,Halmagyi C,Neuhauser S,Mosaku A,Yordanova G,Chatzipli A,Begley DA,Krupke DM,Parkinson H,Meehan TF,Bult CC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky984", "created_at": "2021-09-30T08:27:40.878Z", "updated_at": "2021-09-30T11:29:43.770Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2302, "relation": "undefined"}, {"licence-name": "The Jackson Laboratory Terms of Use", "licence-id": 785, "link-id": 2303, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2304, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2575", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-28T13:55:14.000Z", "updated-at": "2021-11-24T13:14:54.329Z", "metadata": {"doi": "10.25504/FAIRsharing.Aa2ryS", "name": "Shanoir", "status": "ready", "contacts": [{"contact-name": "Shanoir Helpdesk", "contact-email": "shanoir-contact@lists.gforge.inria.fr"}], "homepage": "https://shanoir.irisa.fr/", "identifier": 2575, "description": "Shanoir (Sharing NeurOImaging Resources) is an open source neuroinformatics platform designed to share, archive, search and visualize neuroimaging data. It provides a user-friendly secure web access and offers an intuitive workflow to facilitate the collecting and retrieving of neuroimaging data from multiple sources and a wizzard to make the completion of metadata easy. Shanoir comes along many features such as anonymization of data, support for multi-centres clinical studies on subjects or group of subjects.", "abbreviation": "Shanoir", "support-links": [{"url": "https://project.inria.fr/shanoir/", "name": "Project Codebase", "type": "Help documentation"}, {"url": "http://shanoir.gforge.inria.fr/doku.php?id=wiki:navigation", "name": "Shanoir documentation", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"name": "Login required", "type": "data access"}, {"name": "Data usage agreement required for data access", "type": "data access"}]}, "legacy-ids": ["biodbcore-001058", "bsg-d001058"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Magnetic resonance imaging", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Neuroinformatics"], "countries": ["France"], "name": "FAIRsharing record for: Shanoir", "abbreviation": "Shanoir", "url": "https://fairsharing.org/10.25504/FAIRsharing.Aa2ryS", "doi": "10.25504/FAIRsharing.Aa2ryS", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Shanoir (Sharing NeurOImaging Resources) is an open source neuroinformatics platform designed to share, archive, search and visualize neuroimaging data. It provides a user-friendly secure web access and offers an intuitive workflow to facilitate the collecting and retrieving of neuroimaging data from multiple sources and a wizzard to make the completion of metadata easy. Shanoir comes along many features such as anonymization of data, support for multi-centres clinical studies on subjects or group of subjects.", "publications": [{"id": 937, "pubmed_id": null, "title": "Shanoir: Applying the Software as a Service Distribution Model to Manage Brain Imaging Research Repositories", "year": 2016, "url": "http://doi.org/10.3389/fict.2016.00025", "authors": "Christian Barillot, Elise Bannier, Olivier Commowick, Isabelle Corouge, Anthony Baire, Ines Fakhfakh, Justine Guillaumont, Yao Yao, Michael Kain", "journal": "Frontiers in ICT", "doi": "10.3389/fict.2016.00025", "created_at": "2021-09-30T08:24:03.662Z", "updated_at": "2021-09-30T08:24:03.662Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3067", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-07T11:45:27.000Z", "updated-at": "2022-01-06T13:01:06.140Z", "metadata": {"name": "ECRIN Clinical Research Metadata Repository", "status": "in_development", "contacts": [{"contact-name": "Steve Canham", "contact-email": "steve.canham@ecrin.org", "contact-orcid": "0000-0002-4409-8834"}], "homepage": "http://crmdr.org/", "identifier": 3067, "description": "The ECRIN Clinical Research Metadata Repository is a portal allowing users to search for studies using a variety of criteria and identify the data objects (trial registrations, results summaries, journal articles, protocols etc.) associated with them. The repository is intended to support researchers and reviewers locate available data objects of all types, from a wide variety of sources. Where the data is publicly available, links are provided to directly access the data object. For controlled data, links to information about data access are available.", "abbreviation": "CR MDR", "support-links": [{"url": "https://ecrin-mdr.online/index.php/Project_Overview", "name": "MDR Project Wiki", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "http://crmdr.org/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013663", "name": "re3data:r3d100013663", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001575", "bsg-d001575"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies", "Biomedical Science", "Medical Informatics"], "domains": ["Data retrieval"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: ECRIN Clinical Research Metadata Repository", "abbreviation": "CR MDR", "url": "https://fairsharing.org/fairsharing_records/3067", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ECRIN Clinical Research Metadata Repository is a portal allowing users to search for studies using a variety of criteria and identify the data objects (trial registrations, results summaries, journal articles, protocols etc.) associated with them. The repository is intended to support researchers and reviewers locate available data objects of all types, from a wide variety of sources. Where the data is publicly available, links are provided to directly access the data object. For controlled data, links to information about data access are available.", "publications": [], "licence-links": [{"licence-name": "CR MDR Public domain, Restrictions on use for some data", "licence-id": 201, "link-id": 260, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3127", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-15T11:42:21.000Z", "updated-at": "2022-02-08T10:33:18.574Z", "metadata": {"doi": "10.25504/FAIRsharing.566048", "name": "World Ocean Atlas", "status": "ready", "contacts": [{"contact-name": "NCEI General Contact", "contact-email": "ncei.info@noaa.gov"}], "homepage": "https://www.ncei.noaa.gov/products/world-ocean-atlas", "identifier": 3127, "description": "The World Ocean Atlas (WOA) is a collection of objectively analyzed, quality controlled temperature, salinity, oxygen, phosphate, silicate, and nitrate means based on profile data from the World Ocean Database (WOD). It can be used to create boundary and/or initial conditions for a variety of ocean models, verify numerical simulations of the ocean, and corroborate satellite data.", "abbreviation": "WOA", "support-links": [{"url": "https://www.ncei.noaa.gov/sites/default/files/2020-09/WOA%201994%20Data%20Download%20Instructions.pdf", "name": "Download Instructions", "type": "Help documentation"}, {"url": "https://www.ncei.noaa.gov/sites/default/files/2020-04/wodreadme.pdf", "name": "User Manual", "type": "Help documentation"}], "year-creation": 1994, "data-processes": [{"url": "https://www.nodc.noaa.gov/OC5/SELECT/woaselect/woaselect.html", "name": "Search and Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012890", "name": "re3data:r3d100012890", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001637", "bsg-d001637"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["biogeochemistry"], "countries": ["United States"], "name": "FAIRsharing record for: World Ocean Atlas", "abbreviation": "WOA", "url": "https://fairsharing.org/10.25504/FAIRsharing.566048", "doi": "10.25504/FAIRsharing.566048", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Ocean Atlas (WOA) is a collection of objectively analyzed, quality controlled temperature, salinity, oxygen, phosphate, silicate, and nitrate means based on profile data from the World Ocean Database (WOD). It can be used to create boundary and/or initial conditions for a variety of ocean models, verify numerical simulations of the ocean, and corroborate satellite data.", "publications": [], "licence-links": [{"licence-name": "NOAA Disclaimer", "licence-id": 595, "link-id": 298, "relation": "undefined"}, {"licence-name": "NOAA Privacy", "licence-id": 596, "link-id": 486, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3717", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-06T13:17:59.902Z", "updated-at": "2022-01-06T13:46:33.408Z", "metadata": {"name": "European Chemical Biology Database", "status": "ready", "contacts": [{"contact-name": "Ctibor \u0160kuta", "contact-email": "ctibor.skuta@img.cas.cz", "contact-orcid": null}], "homepage": "https://ecbd.eu/", "citations": [], "identifier": 3717, "description": "The European Chemical Biology Database (ECBD) collects experimental results from biological screening programs performed within the EU-OPENSCREEN platform. There are 3 chemical libraries in ECBD: bioactive, diverse, and academic. The bioactive library contains compounds selected with a strong emphasis on target coverage and selectivity. The diverse library contains compounds with unbiased chemical diversity, designed by five academic computational chemistry groups. In the academic library, compounds are collected from European chemists.", "abbreviation": "ECBD", "data-curation": {}, "support-links": [{"url": "https://ecbd.atlassian.net/servicedesk/customer/portal/1", "name": "Feedback", "type": "Contact form"}, {"url": "https://ecbd.eu/faq", "name": "ECBD FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ecbd.eu/compound/?guide=on#", "name": "Guided Tour", "type": "Help documentation"}, {"url": "https://ecbd.eu/news/", "name": "News", "type": "Blog/News"}], "year-creation": null, "data-processes": [{"url": "https://ecbd.eu/assays/#", "name": "Browse and Search Assays", "type": "data access"}, {"url": "https://ecbd.eu/compound/#", "name": "Browse and Search Compounds", "type": "data access"}, {"url": "https://ecbd.eu/targets/#", "name": "Browse and Search Targets", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "https://ecbd.eu/download", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://ecbd.eu/faq", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemical Biology"], "domains": ["Drug", "High Throughput Screening", "Assay", "Phenotype"], "taxonomies": ["All"], "user-defined-tags": ["Drug Target"], "countries": ["Czech Republic"], "name": "FAIRsharing record for: European Chemical Biology Database", "abbreviation": "ECBD", "url": "https://fairsharing.org/fairsharing_records/3717", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Chemical Biology Database (ECBD) collects experimental results from biological screening programs performed within the EU-OPENSCREEN platform. There are 3 chemical libraries in ECBD: bioactive, diverse, and academic. The bioactive library contains compounds selected with a strong emphasis on target coverage and selectivity. The diverse library contains compounds with unbiased chemical diversity, designed by five academic computational chemistry groups. In the academic library, compounds are collected from European chemists.", "publications": [{"id": 3175, "pubmed_id": null, "title": "EU-OPENSCREEN: A Novel Collaborative Approach to Facilitate Chemical Biology", "year": 2019, "url": "http://dx.doi.org/10.1177/2472555218816276", "authors": "Brennecke, Philip; Rasina, Dace; Aubi, Oscar; Herzog, Katja; Landskron, Johannes; Cautain, Bastien; Vicente, Francisca; Quintana, Jordi; Mestres, Jordi; Stechmann, Bahne; Ellinger, Bernhard; Brea, Jose; Kolanowski, Jacek L.; Pilarski, Rados\u0142aw; Orzaez, Mar; Pineda-Lucena, Antonio; Laraia, Luca; Nami, Faranak; Zielenkiewicz, Piotr; Paruch, Kamil; Hansen, Espen; von Kries, Jens P.; Neuenschwander, Martin; Specker, Edgar; Bartunek, Petr; Simova, Sarka; Le\u015bnikowski, Zbigniew; Krauss, Stefan; Lehti\u00f6, Lari; Bilitewski, Ursula; Br\u00f6nstrup, Mark; Task\u00e9n, Kjetil; Jirgensons, Aigars; Lickert, Heiko; Clausen, Mads H.; Andersen, Jeanette H.; Vicent, Maria J.; Genilloud, Olga; Martinez, Aurora; Nazar\u00e9, Marc; Fecke, Wolfgang; Gribbon, Philip; ", "journal": "SLAS DISCOVERY: Advancing the Science of Drug Discovery", "doi": "10.1177/2472555218816276", "created_at": "2022-01-06T13:44:36.137Z", "updated_at": "2022-01-06T13:44:36.137Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2553, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2212", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-05T22:26:53.000Z", "updated-at": "2021-11-24T13:19:29.249Z", "metadata": {"doi": "10.25504/FAIRsharing.73reht", "name": "Bio-Mirror", "status": "deprecated", "contacts": [{"contact-name": "Don Gilbert", "contact-email": "gilbertd@indiana.edu", "contact-orcid": "0000-0002-6646-7274"}], "homepage": "http://www.bio-mirror.net/", "identifier": 2212, "description": "A world bioinformatic public service for high-speed access to up-to-date DNA & protein biological sequence databanks.", "abbreviation": "Bio-Mirror", "year-creation": 1998, "data-processes": [{"url": "ftp://bio-mirror.net/biomirror/", "name": "USA Bio-Mirror.net", "type": "data access"}, {"url": "ftp://bio-mirror.jp.apan.net/pub/biomirror/", "name": "Japan Bio-Mirror", "type": "data access"}, {"url": "http://biomirror.aarnet.edu.au/biomirror/", "name": "Australia Bio-Mirror", "type": "data access"}], "deprecation-date": "2021-7-21", "deprecation-reason": "This resource is no longer in active development."}, "legacy-ids": ["biodbcore-000686", "bsg-d000686"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Bio-Mirror", "abbreviation": "Bio-Mirror", "url": "https://fairsharing.org/10.25504/FAIRsharing.73reht", "doi": "10.25504/FAIRsharing.73reht", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A world bioinformatic public service for high-speed access to up-to-date DNA & protein biological sequence databanks.", "publications": [{"id": 786, "pubmed_id": 15059839, "title": "Bio-Mirror project for public bio-data distribution", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth219", "authors": "Gilbert DG, Ugawa Y, Buchhorn M, Wee TT, Mizushima A, Kim H, Chon K, Weon S, Ma J, Ichiyanagi Y, Liou DM, Keretho S, Napis S.", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth219", "created_at": "2021-09-30T08:23:46.645Z", "updated_at": "2021-09-30T08:23:46.645Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1992", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.063Z", "metadata": {"doi": "10.25504/FAIRsharing.9sef2s", "name": "SKY/M-FISH and CGH", "status": "deprecated", "contacts": [{"contact-name": "Turid Knutsen", "contact-email": "knutsent@mail.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/sky/", "identifier": 1992, "description": "The goal of the SKY/M-FISH and CGH database is to provide a public platform for investigators to share and compare their molecular cytogenetic data.", "support-links": [{"url": "pubmedcentral@ncbi.nlm.nih.gov", "type": "Support email"}], "year-creation": 2004, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/sky-cgh/", "name": "Download", "type": "data access"}], "deprecation-date": "2016-12-16", "deprecation-reason": "This resource has been retired and the data therein will be made available from the dbVar database (https://biosharing.org/biodbcore-000463)."}, "legacy-ids": ["biodbcore-000458", "bsg-d000458"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Molecular structure", "Cytogenetic map", "Chromosome", "Structure"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SKY/M-FISH and CGH", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.9sef2s", "doi": "10.25504/FAIRsharing.9sef2s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of the SKY/M-FISH and CGH database is to provide a public platform for investigators to share and compare their molecular cytogenetic data.", "publications": [{"id": 61, "pubmed_id": 15934046, "title": "The interactive online SKY/M-FISH & CGH database and the Entrez cancer chromosomes search database: linkage of chromosomal aberrations with the genome sequence.", "year": 2005, "url": "http://doi.org/10.1002/gcc.20224", "authors": "Knutsen T., Gobu V., Knaus R., Padilla-Nash H., Augustus M., Strausberg RL., Kirsch IR., Sirotkin K., Ried T.,", "journal": "Genes Chromosomes Cancer", "doi": "10.1002/gcc.20224", "created_at": "2021-09-30T08:22:26.863Z", "updated_at": "2021-09-30T08:22:26.863Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1446, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2162", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:26.820Z", "metadata": {"doi": "10.25504/FAIRsharing.xd3wmy", "name": "Environmental Data Initiative Data Portal", "status": "ready", "contacts": [{"contact-name": "Mark Servilla", "contact-email": "mark.servilla@gmail.com", "contact-orcid": "0000-0002-3192-7306"}], "homepage": "https://portal.edirepository.org/", "citations": [], "identifier": 2162, "description": "The Environmental Data Initiative is an NSF-funded project meant to accelerate curation and archive of environmental data. With mature repository functionality and data curators on staff it supports the large and varied community of environmental researchers. The repository is open to all environmental research data and hosts data that provide a context to evaluate the nature and pace of ecological change, to interpret its effects, and to forecast the range of future biological responses to change. DOIs are assigned making all datasets first class, citable research objects and strict version control allows for immutability while also supporting updates to long-term datasets.", "abbreviation": "EDI Data Portal", "access-points": [{"url": "http://pastaplus-core.readthedocs.io/en/latest/", "name": "PASTAplus REST API", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://environmentaldatainitiative.org/contact/", "type": "Contact form"}, {"url": "info@environmentaldatainitiative.org", "type": "Support email"}, {"url": "cgries@wisc.edu", "name": "Corinna Gries", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "https://portal.edirepository.org/nis/advancedSearch.jsp", "name": "Advanced search", "type": "data access"}, {"url": "https://portal.edirepository.org/nis/browse.jsp", "name": "Browse Data by Package Identifier", "type": "data access"}, {"url": "https://portal.edirepository.org/nis/scopebrowse", "name": "Browse Data by Keyword or Research Site", "type": "data access"}, {"url": "https://portal.edirepository.org/nis/login.jsp", "name": "Suscribe", "type": "data access"}, {"url": "https://pasta.lternet.edu/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://portal.edirepository.org/nis/metadataPreviewer.jsp", "name": "Metadata Previewer"}, {"url": "https://github.com/EDIorg/EMLassemblyline", "name": "Metadata editor EMLassemblyline in R 2.5.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010272", "name": "re3data:r3d100010272", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000634", "bsg-d000634"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Plant Ecology", "Environmental Science", "Microbial Ecology", "Zoology", "Geophysics", "Ecology", "Natural Science", "Earth Science", "Atmospheric Science", "Agriculture", "Life Science", "Microbiology", "Oceanography", "Biology", "Ecosystem Science"], "domains": ["Ecosystem"], "taxonomies": ["All"], "user-defined-tags": ["Climate change"], "countries": ["United States"], "name": "FAIRsharing record for: Environmental Data Initiative Data Portal", "abbreviation": "EDI Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.xd3wmy", "doi": "10.25504/FAIRsharing.xd3wmy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Environmental Data Initiative is an NSF-funded project meant to accelerate curation and archive of environmental data. With mature repository functionality and data curators on staff it supports the large and varied community of environmental researchers. The repository is open to all environmental research data and hosts data that provide a context to evaluate the nature and pace of ecological change, to interpret its effects, and to forecast the range of future biological responses to change. DOIs are assigned making all datasets first class, citable research objects and strict version control allows for immutability while also supporting updates to long-term datasets.", "publications": [{"id": 2237, "pubmed_id": null, "title": "The contribution and reuse of LTER data in the Provenance Aware Synthesis Tracking Architecture (PASTA) data repository", "year": 2016, "url": "http://doi.org/https://doi.org/10.1016/j.ecoinf.2016.07.003", "authors": "Mark Servilla. James Brunt. Duane Costa. Jeanine McGann. Robert Waide", "journal": "Ecological Informatics", "doi": "https://doi.org/10.1016/j.ecoinf.2016.07.003", "created_at": "2021-09-30T08:26:32.088Z", "updated_at": "2021-09-30T08:26:32.088Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 571, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 572, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1725", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-20T16:43:54.303Z", "metadata": {"doi": "10.25504/FAIRsharing.3wdd17", "name": "Antibody Registry", "status": "ready", "contacts": [{"contact-name": "Anita Bandrowski", "contact-email": "abandrowski@ucsd.edu", "contact-orcid": "0000-0002-5497-0243"}], "homepage": "https://antibodyregistry.org/", "citations": [], "identifier": 1725, "description": "The Antibody Registry exists to give researchers a way to universally identify antibodies used in publications. The registry lists many commercial antibodies from about 200 vendors which have each been assigned a unique identifier. If the antibody that you are using does not appear in the list, an entry can be made by filling in as little as 2 pieces of information: the catalog number and the url of the vendor where our curators can find information and material data sheets. Many optional fields can also be filled in that will help curators identify the reagent. After submitting an antibody, you are given a permanent identifier that can be used in publications. This identifier even if it is later found to be a duplicate, can be quickly traced back in the antibody registry. We never delete records, but we collapse duplicate entries on a regular basis (the old identifiers are kept to help with search).", "abbreviation": null, "access-points": [{"url": "http://nif-services.neuinfo.org/servicesv1/v1/federation/data/nif-0000-07730-1?q=MAB377", "name": "REST", "type": "REST"}], "support-links": [{"url": "abr-help@scicrunch.org", "name": "Helpdesk", "type": "Support email"}, {"url": "https://antibodyregistry.org/about", "name": "About the Antibody Registry", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://antibodyregistry.org/add", "name": "Add an Antibody", "type": "data curation"}, {"url": "https://antibodyregistry.org/search", "name": "Search & Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010408", "name": "re3data:r3d100010408", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006397", "name": "SciCrunch:RRID:SCR_006397", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000182", "bsg-d000182"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Antibody", "Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Antibody Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.3wdd17", "doi": "10.25504/FAIRsharing.3wdd17", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Antibody Registry exists to give researchers a way to universally identify antibodies used in publications. The registry lists many commercial antibodies from about 200 vendors which have each been assigned a unique identifier. If the antibody that you are using does not appear in the list, an entry can be made by filling in as little as 2 pieces of information: the catalog number and the url of the vendor where our curators can find information and material data sheets. Many optional fields can also be filled in that will help curators identify the reagent. After submitting an antibody, you are given a permanent identifier that can be used in publications. This identifier even if it is later found to be a duplicate, can be quickly traced back in the antibody registry. We never delete records, but we collapse duplicate entries on a regular basis (the old identifiers are kept to help with search).", "publications": [{"id": 157, "pubmed_id": 23900250, "title": "Finding the right antibody for the job.", "year": 2013, "url": "http://doi.org/10.1038/nmeth.2570", "authors": "Marx V", "journal": "Nat Methods", "doi": "10.1038/nmeth.2570", "created_at": "2021-09-30T08:22:37.290Z", "updated_at": "2021-09-30T08:22:37.290Z"}], "licence-links": [{"licence-name": "Antibody Registry Terms of Use", "licence-id": 33, "link-id": 2328, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 2329, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3054", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-25T14:15:55.000Z", "updated-at": "2021-11-24T13:16:23.056Z", "metadata": {"name": "ScholeXplorer", "status": "ready", "contacts": [{"contact-name": "ScholeXplorer Contact", "contact-email": "sandro.labruzzo@isti.cnr.it"}], "homepage": "https://scholexplorer.openaire.eu/#/", "identifier": 3054, "description": "ScholeXplorer stores a graph of links among datasets and literature objects. These objects, and the links between them, are provided by data sources managed by publishers, data centers, or other organizations providing data set / publication linking services such as CrossRef, DataCite, and OpenAIRE. ScholeXplorer aggregates, harmonizes and de-duplicates link metadata harvested from these data sources. The graph is openly accessible via search APIs that return links in Scholix format.", "abbreviation": "ScholeXplorer", "access-points": [{"url": "http://api.scholexplorer.openaire.eu/v2/ui/#/", "name": "ScholeXplorer API", "type": "REST"}], "support-links": [{"url": "https://scholexplorer.openaire.eu/#statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://scholexplorer.openaire.eu/#about", "name": "About", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://scholexplorer.openaire.eu/#/query/q=*", "name": "Search ScholeXplorer", "type": "data access"}]}, "legacy-ids": ["biodbcore-001562", "bsg-d001562"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management"], "domains": ["Resource metadata", "Data identity and mapping", "Graph"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: ScholeXplorer", "abbreviation": "ScholeXplorer", "url": "https://fairsharing.org/fairsharing_records/3054", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ScholeXplorer stores a graph of links among datasets and literature objects. These objects, and the links between them, are provided by data sources managed by publishers, data centers, or other organizations providing data set / publication linking services such as CrossRef, DataCite, and OpenAIRE. ScholeXplorer aggregates, harmonizes and de-duplicates link metadata harvested from these data sources. The graph is openly accessible via search APIs that return links in Scholix format.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1974, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2459", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-08T07:06:02.000Z", "updated-at": "2021-12-06T10:48:58.084Z", "metadata": {"doi": "10.25504/FAIRsharing.p899f7", "name": "Japan Proteome Standard Repository", "status": "ready", "contacts": [{"contact-name": "jPOST", "contact-email": "jpostdb@gmail.com"}], "homepage": "https://repository.jpostdb.org/", "identifier": 2459, "description": "jPOSTrepo (Japan ProteOme STandard Repository) is a data repository of sharing MS raw/processed data.", "abbreviation": "jPOSTrepo", "support-links": [{"url": "https://repository.jpostdb.org/contact", "name": "https://repository.jpostdb.org/contact", "type": "Contact form"}, {"url": "https://repository.jpostdb.org/help", "name": "https://repository.jpostdb.org/help", "type": "Help documentation"}, {"url": "https://twitter.com/jpostdb", "name": "https://twitter.com/jpostdb", "type": "Twitter"}], "year-creation": 2016, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012349", "name": "re3data:r3d100012349", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000941", "bsg-d000941"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science"], "domains": ["Mass spectrum"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Japan Proteome Standard Repository", "abbreviation": "jPOSTrepo", "url": "https://fairsharing.org/10.25504/FAIRsharing.p899f7", "doi": "10.25504/FAIRsharing.p899f7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: jPOSTrepo (Japan ProteOme STandard Repository) is a data repository of sharing MS raw/processed data.", "publications": [{"id": 1630, "pubmed_id": 27924013, "title": "The ProteomeXchange consortium in 2017: supporting the cultural change in proteomics public data deposition.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw936", "authors": "Deutsch EW,Csordas A,Sun Z,Jarnuczak A,Perez-Riverol Y,Ternent T,Campbell DS,Bernal-Llinares M,Okuda S,Kawano S,Moritz RL,Carver JJ,Wang M,Ishihama Y,Bandeira N,Hermjakob H,Vizcaino JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw936", "created_at": "2021-09-30T08:25:22.650Z", "updated_at": "2021-09-30T11:29:17.127Z"}, {"id": 2127, "pubmed_id": 27899654, "title": "jPOSTrepo: an international standard data repository for proteomes.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1080", "authors": "Okuda S,Watanabe Y,Moriya Y,Kawano S,Yamamoto T,Matsumoto M,Takami T,Kobayashi D,Araki N,Yoshizawa AC,Tabata T,Sugiyama N,Goto S,Ishihama Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1080", "created_at": "2021-09-30T08:26:19.839Z", "updated_at": "2021-09-30T11:29:29.671Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 386, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3621", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-14T09:39:48.447Z", "updated-at": "2021-12-02T08:56:26.843Z", "metadata": {"name": "Bacterial and Fungal FASTQ File", "status": "ready", "contacts": [], "homepage": "http://dx.doi.org/10.17632/4ykyr6g8j9.1 ", "citations": [], "identifier": 3621, "description": "The bacterial and fungal communities of Ethiopian honey wine samples collected from three locations of Ethiopia were analyzed via culture independent amplicon sequencing. This amplicon sequencing dataset provides a useful collection of data for modernizing this spontaneous fermentation into a directed inoculated fermentation. The raw sequencing data was then subjected to a bioinformatics analysis to gain a better understanding of microbial community variance and similarity across samples from the same location and samples from other locations. ", "abbreviation": null, "year-creation": 2021, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Applied Microbiology"], "domains": ["Experimental measurement", "Next generation DNA sequencing"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Bacterial and Fungal FASTQ File", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3621", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The bacterial and fungal communities of Ethiopian honey wine samples collected from three locations of Ethiopia were analyzed via culture independent amplicon sequencing. This amplicon sequencing dataset provides a useful collection of data for modernizing this spontaneous fermentation into a directed inoculated fermentation. The raw sequencing data was then subjected to a bioinformatics analysis to gain a better understanding of microbial community variance and similarity across samples from the same location and samples from other locations. ", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2134", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-10T10:39:28.423Z", "metadata": {"doi": "10.25504/FAIRsharing.65tdnz", "name": "Progenetix", "status": "ready", "contacts": [{"contact-name": "Michael Baudis", "contact-email": "mbaudis@me.com", "contact-orcid": "0000-0002-9903-4248"}], "homepage": "https://progenetix.org/", "citations": [{"doi": "10.1093/bioinformatics/17.12.1228", "pubmed-id": 11751233, "publication-id": 2667}], "identifier": 2134, "description": "The Progenetix database provides an overview of copy number abnormalities in human cancer from Comparative Genomic Hybridization (CGH) experiments. Progenetix is the largest curated database for whole genome copy number profiles in cancer. The current dataset contains more than 130'000 profiles from genomic CNV screening experiments. This data covers 700 diagnostic entities according to the NCIt Neoplasm Core and the International Classification of Disease in Oncology (ICD-O 3). Additionally, the website attempts to lists all publications referring to cancer genome profiling experiments.", "abbreviation": "Progenetix", "access-points": [{"url": "https://info.progenetix.org/doc/+generated-doc-API-api/", "name": "API::api.cgi Perl Code", "type": "Other"}], "data-curation": {"type": "manual"}, "support-links": [{"url": "https://info.progenetix.org/categories/news.html", "name": "News", "type": "Blog/News"}, {"url": "https://info.progenetix.org/categories/howto.html", "type": "Help documentation"}, {"url": "https://info.progenetix.org/categories/about.html", "type": "Help documentation"}, {"url": "https://twitter.com/progenetix", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "https://beacon.progenetix.org/beaconplus-ui/", "name": "Query", "type": "data access"}, {"url": "https://progenetix.org/service-collection/uploader/", "name": "User Data Visualization", "type": "data access"}, {"url": "https://progenetix.org/publications/", "name": "browse publications", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012820", "name": "re3data:r3d100012820", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": ["biodbcore-000604", "bsg-d000604"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Biomedical Science"], "domains": ["Expression data", "Cancer", "Curated information", "DNA microarray", "Literature curation", "Chromosomal aberration", "Comparative genomic hybridization", "Biocuration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Progenetix", "abbreviation": "Progenetix", "url": "https://fairsharing.org/10.25504/FAIRsharing.65tdnz", "doi": "10.25504/FAIRsharing.65tdnz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Progenetix database provides an overview of copy number abnormalities in human cancer from Comparative Genomic Hybridization (CGH) experiments. Progenetix is the largest curated database for whole genome copy number profiles in cancer. The current dataset contains more than 130'000 profiles from genomic CNV screening experiments. This data covers 700 diagnostic entities according to the NCIt Neoplasm Core and the International Classification of Disease in Oncology (ICD-O 3). Additionally, the website attempts to lists all publications referring to cancer genome profiling experiments.", "publications": [{"id": 595, "pubmed_id": 22629346, "title": "arrayMap: a reference resource for genomic copy number imbalances in human malignancies.", "year": 2012, "url": "http://doi.org/10.1371/journal.pone.0036944", "authors": "Cai H, Kumar N, Baudis M.", "journal": "PLoS One. 2012;7(5):e36944.", "doi": "10.1371/journal.pone.0036944", "created_at": "2021-09-30T08:23:25.276Z", "updated_at": "2021-09-30T08:23:25.276Z"}, {"id": 603, "pubmed_id": 18088415, "title": "Genomic imbalances in 5918 malignant epithelial tumors: an explorative meta-analysis of chromosomal CGH data", "year": 2007, "url": "http://doi.org/10.1186/1471-2407-7-226", "authors": "Baudis M", "journal": "BMC Cancer. 2007 Dec 18;7:226.", "doi": "10.1186/1471-2407-7-226", "created_at": "2021-09-30T08:23:26.102Z", "updated_at": "2021-09-30T08:23:26.102Z"}, {"id": 610, "pubmed_id": 16568815, "title": "Online database and bioinformatics toolbox to support data mining in cancer cytogenetics.", "year": 2006, "url": "http://doi.org/10.2144/000112102", "authors": "Baudis M", "journal": "Biotechniques. 2006 Mar;40(3):269-70, 272.", "doi": "10.2144/000112102", "created_at": "2021-09-30T08:23:27.028Z", "updated_at": "2021-09-30T08:23:27.028Z"}, {"id": 941, "pubmed_id": 24225322, "title": "Progenetix: 12 years of oncogenomic data curation.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1108", "authors": "Cai H,Kumar N,Ai N,Gupta S,Rath P,Baudis M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1108", "created_at": "2021-09-30T08:24:04.135Z", "updated_at": "2021-09-30T11:28:55.792Z"}, {"id": 1259, "pubmed_id": 25428357, "title": "arrayMap 2014: an updated cancer genome resource.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1123", "authors": "Cai H,Gupta S,Rath P,Ai N,Baudis M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1123", "created_at": "2021-09-30T08:24:40.464Z", "updated_at": "2021-09-30T11:29:04.243Z"}, {"id": 1260, "pubmed_id": 24476156, "title": "Chromothripsis-like patterns are recurring but heterogeneously distributed features in a survey of 22,347 cancer genome screens.", "year": 2014, "url": "http://doi.org/10.1186/1471-2164-15-82", "authors": "Cai H,Kumar N,Bagheri HC,von Mering C,Robinson MD,Baudis M", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-15-82", "created_at": "2021-09-30T08:24:40.592Z", "updated_at": "2021-09-30T08:24:40.592Z"}, {"id": 2667, "pubmed_id": 11751233, "title": "Progenetix.net: an online repository for molecular cytogenetic aberration data.", "year": 2001, "url": "http://doi.org/10.1093/bioinformatics/17.12.1228", "authors": "Baudis M, Cleary ML.", "journal": "Bioinformatics. 2001 Dec;17(12):1228-9.", "doi": "10.1093/bioinformatics/17.12.1228", "created_at": "2021-09-30T08:27:27.439Z", "updated_at": "2021-09-30T08:27:27.439Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2532, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1800", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.408Z", "metadata": {"doi": "10.25504/FAIRsharing.n8pxvx", "name": "Cell Signaling Technology Pathway Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "webmaster@cellsignal.com"}], "homepage": "http://www.cellsignal.com/", "identifier": 1800, "description": "A small pathway portal for showcasing Cell Signaling Technology phospho-antibody products. Contains pathway diagrams that are clickable and link to more information about each protein and the commercial products that are available for that protein.", "abbreviation": "CST", "data-processes": [{"url": "http://www.cellsignal.com/index.jsp", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000260", "bsg-d000260"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Expression data", "Signaling", "Antibody", "Protein", "Pathway model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cell Signaling Technology Pathway Database", "abbreviation": "CST", "url": "https://fairsharing.org/10.25504/FAIRsharing.n8pxvx", "doi": "10.25504/FAIRsharing.n8pxvx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A small pathway portal for showcasing Cell Signaling Technology phospho-antibody products. Contains pathway diagrams that are clickable and link to more information about each protein and the commercial products that are available for that protein.", "publications": [], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 246, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2001", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-25T13:36:12.897Z", "metadata": {"doi": "10.25504/FAIRsharing.ftamrc", "name": "NITE Biological Research Center Catalogue", "status": "ready", "contacts": [{"contact-email": "nbrc@nite.go.jp"}], "homepage": "https://www.nite.go.jp/nbrc/catalogue/", "citations": [], "identifier": 2001, "description": "To provide attractive biological resources with useful information attached, the NITE Biological Resource Center (NBRC) actively collects potentially useful biological resources (microorganisms and cloned genes) and distributes them to promote basic researches as well as industrial applications.", "abbreviation": "NBRC", "data-curation": {}, "support-links": [{"url": "https://www.nite.go.jp/en/nbrc/index.html", "name": "About", "type": "Help documentation"}, {"url": "https://www.nite.go.jp/en/nbrc/cultures/index.html", "name": "Distribution and Deposit of Biological Resources", "type": "Help documentation"}], "data-processes": [{"url": "https://www.nite.go.jp/nbrc/catalogue/", "name": "NBRC Culture Catalogue Search", "type": "data access"}, {"url": "https://www.nite.go.jp/nbrc/catalogue/HomologyDispSearchServlet", "name": "Homology Search (by BLAST)", "type": "data access"}, {"url": "https://www.nite.go.jp/nbrc/catalogue/SequenceDispSearchServlet", "name": "Sequence Search", "type": "data access"}, {"url": "https://www.nite.go.jp/en/nbrc/cultures/deposit/index.html", "name": "Deposit", "type": "data curation"}], "associated-tools": [], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000467", "bsg-d000467"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Taxonomic classification"], "taxonomies": ["Actinomycetales", "Algae", "Archaea", "Bacteria", "Fungi", "Viruses"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: NITE Biological Research Center Catalogue", "abbreviation": "NBRC", "url": "https://fairsharing.org/10.25504/FAIRsharing.ftamrc", "doi": "10.25504/FAIRsharing.ftamrc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: To provide attractive biological resources with useful information attached, the NITE Biological Resource Center (NBRC) actively collects potentially useful biological resources (microorganisms and cloned genes) and distributes them to promote basic researches as well as industrial applications.", "publications": [], "licence-links": [{"licence-name": "NITE Terms of use", "licence-id": 589, "link-id": 237, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1858", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:58.431Z", "metadata": {"doi": "10.25504/FAIRsharing.32hxxa", "name": "IPD-MHC - Major Histocompatibility Complex Database", "status": "ready", "contacts": [{"contact-name": "Steven G. E. Marsh", "contact-email": "steven.marsh@ucl.ac.uk", "contact-orcid": "0000-0003-2855-4120"}], "homepage": "http://www.ebi.ac.uk/ipd/mhc", "citations": [{"doi": "10.1093/nar/gkw1050", "pubmed-id": 27899604, "publication-id": 1464}], "identifier": 1858, "description": "The IPD-MHC Database provides a centralised repository for sequences of the Major Histocompatibility Complex (MHC) from a number of different species. Through a number of international collaborations IPD is able to provide the MHC sequences of different species. The sequences provided by each group are curated by experts in the field and then submitted to the central database.", "abbreviation": "IPD-MHC", "support-links": [{"url": "https://www.ebi.ac.uk/support/ipd.php", "name": "IPD Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/ipd/mhc/statistics/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/mhc/about", "name": "About IPD-MHC", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/mhc/news", "name": "Press Releases", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/mhc/download/", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/ipd/submission", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/ipd/mhc/blast/", "name": "BLAST"}, {"url": "https://www.ebi.ac.uk/ipd/mhc/alignment/", "name": "Multiple Sequence Alignment"}]}, "legacy-ids": ["biodbcore-000319", "bsg-d000319"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Immunology"], "domains": ["Nucleic acid sequence", "Major histocompatibility complex", "Protein", "Allele", "Allele frequency"], "taxonomies": ["Aotus azarae", "Aotus nancymaae", "Aotus nigriceps", "Aotus trivirgatus", "Aotus vociferans", "Ateles belzebuth", "Ateles fusciceps", "Bison bison", "Bos taurus", "Callicebus moloch", "Callithrix jacchus", "Canis", "Cebuella pygmaea", "Cebus apella", "Cercopithecus mitis", "Cercopithicus neglectus", "Chlorocebus aethiops", "Colobus guereza", "Equus caballus", "Felis catus", "Gallus gallus", "Gorilla gorilla", "Hylobates lar", "Lemur catta", "Leontopithecus rosalia", "Lophocebus aterrimus", "Macaca arctoides", "Macaca fascicularis", "Macaca fuscata", "Macaca mulatta", "Macaca nemestrina", "Macaca silenus", "Mandrillus leucophaeus", "Mandrillus sphinx", "Oncorhynchus mykiss", "Ovis aries", "Pan paniscus", "Pan troglodytes", "Papio anubis", "Papio cynocephalus", "Papio hamadryas", "Papio papio", "Papio ursinus", "Pithecia pithecia", "Pongo pygmaeus abelii", "Presbytis entellus", "Rattus norvegicus", "Rattus rattus", "Saguinus fuscicollis", "Saguinus geoffroyi", "Saguinus mystax", "Saguinus oedipus", "Saimiri sciureus", "Salmo salar", "Sus scrofa", "Theropithecus gelada"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: IPD-MHC - Major Histocompatibility Complex Database", "abbreviation": "IPD-MHC", "url": "https://fairsharing.org/10.25504/FAIRsharing.32hxxa", "doi": "10.25504/FAIRsharing.32hxxa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IPD-MHC Database provides a centralised repository for sequences of the Major Histocompatibility Complex (MHC) from a number of different species. Through a number of international collaborations IPD is able to provide the MHC sequences of different species. The sequences provided by each group are curated by experts in the field and then submitted to the central database.", "publications": [{"id": 368, "pubmed_id": 23180793, "title": "IPD--the Immuno Polymorphism Database.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1140", "authors": "Robinson J., Halliwell JA., McWilliam H., Lopez R., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1140", "created_at": "2021-09-30T08:22:59.558Z", "updated_at": "2021-09-30T08:22:59.558Z"}, {"id": 1464, "pubmed_id": 27899604, "title": "IPD-MHC 2.0: an improved inter-species database for the study of the major histocompatibility complex.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1050", "authors": "Maccari G,Robinson J,Ballingall K,Guethlein LA,Grimholt U,Kaufman J,Ho CS,de Groot NG,Flicek P,Bontrop RE,Hammond JA,Marsh SG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1050", "created_at": "2021-09-30T08:25:03.573Z", "updated_at": "2021-09-30T11:29:09.268Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 2455, "relation": "undefined"}, {"licence-name": "IPD-MHC License Details", "licence-id": 451, "link-id": 2456, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3248", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-10T17:59:12.000Z", "updated-at": "2021-11-24T13:13:58.650Z", "metadata": {"doi": "10.25504/FAIRsharing.Qyq85j", "name": "COVID-19 Dermatology registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "covidregistry@aad.org"}], "homepage": "https://www.aad.org/member/practice/coronavirus/registry", "identifier": 3248, "description": "COVID-19 Dermatology registry aims at collect cases of COVID-19 cutaneous manifestations. The registry is open to medical professionals only, from any specialty.", "support-links": [{"url": "https://assets.ctfassets.net/1ny4yoiyrqia/1kPU07pTmgxeg3WT9LwDS9/7c71bce01a4601f33670855f09b36dcc/COVID-19_Registry_FAQs.pdf", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://assets.ctfassets.net/1ny4yoiyrqia/5CPv8kDhxloD8dlhwS7y13/319859597f09b7eab4fe132bc6771a6d/COVID_Registry_Participants.pdf", "name": "COVID Registry Leadership", "type": "Help documentation"}, {"url": "https://redcap.partners.org/redcap/surveys/index.php?s=YJWAJCX7TY", "name": "Report a case (REDCap)", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://redcap.partners.org/redcap/surveys/index.php?s=YJWAJCX7TY", "name": "Access upon request", "type": "data access"}]}, "legacy-ids": ["biodbcore-001762", "bsg-d001762"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Dermatology", "Medical Virology", "Epidemiology"], "domains": ["Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Observations", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: COVID-19 Dermatology registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.Qyq85j", "doi": "10.25504/FAIRsharing.Qyq85j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COVID-19 Dermatology registry aims at collect cases of COVID-19 cutaneous manifestations. The registry is open to medical professionals only, from any specialty.", "publications": [{"id": 186, "pubmed_id": 32562840, "title": "International collaboration and rapid harmonization across dermatologic COVID-19 registries.", "year": 2020, "url": "http://doi.org/S0190-9622(20)31148-8", "authors": "Freeman EE,McMahon DE,HruzaGJ,IrvineAD,SpulsPI,SmithCH,MahilSK,Castelo-SoccioL,CordoroKM,Lara-CorralesI,NaikHB,AlhusayenR,IngramJR,FeldmanSR,Balogh EA,Kappelman MD,Wall D,Meah N,Sinclair R,Beylot-Barry M,Fitzgerald M,French LE,Lim HW,Griffiths CEM,Flohr C", "journal": "J Am Acad Dermatol", "doi": "S0190-9622(20)31148-8", "created_at": "2021-09-30T08:22:40.431Z", "updated_at": "2021-09-30T08:22:40.431Z"}, {"id": 3091, "pubmed_id": 32622888, "title": "The spectrum of COVID-19-associated dermatologic manifestations: An international registry of 716 patients from 31 countries.", "year": 2020, "url": "http://doi.org/S0190-9622(20)32126-5", "authors": "Freeman EE,McMahon DE,Lipoff JB,Rosenbach M,Kovarik C,Desai SR,Harp J,Takeshita J,French LE,Lim HW,Thiers BH,Hruza GJ,Fox LP", "journal": "J Am Acad Dermatol", "doi": "S0190-9622(20)32126-5", "created_at": "2021-09-30T08:28:20.825Z", "updated_at": "2021-09-30T08:28:20.825Z"}, {"id": 3101, "pubmed_id": 32479979, "title": "Pernio-like skin lesions associated with COVID-19: A case series of 318 patients from 8 countries.", "year": 2020, "url": "http://doi.org/S0190-9622(20)30984-1", "authors": "Freeman EE,McMahon DE,Lipoff JB,Rosenbach M,Kovarik C,Takeshita J,French LE,Thiers BH,Hruza GJ,Fox LP", "journal": "J Am Acad Dermatol", "doi": "S0190-9622(20)30984-1", "created_at": "2021-09-30T08:28:22.025Z", "updated_at": "2021-09-30T08:28:22.025Z"}, {"id": 3102, "pubmed_id": 32305438, "title": "The American Academy of Dermatology COVID-19 registry: Crowdsourcing dermatology in the age of COVID-19.", "year": 2020, "url": "http://doi.org/S0190-9622(20)30658-7", "authors": "Freeman EE,McMahon DE,Fitzgerald ME,Fox LP,Rosenbach M,Takeshita J,French LE,Thiers BH,Hruza GJ", "journal": "J Am Acad Dermatol", "doi": "S0190-9622(20)30658-7", "created_at": "2021-09-30T08:28:22.129Z", "updated_at": "2021-09-30T08:28:22.129Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2290", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-21T19:30:56.000Z", "updated-at": "2021-12-06T10:47:57.043Z", "metadata": {"doi": "10.25504/FAIRsharing.4m97ah", "name": "BioPortal", "status": "ready", "contacts": [{"contact-name": "John Graybeal", "contact-email": "support@bioontology.org", "contact-orcid": "0000-0001-6875-5360"}], "homepage": "http://bioportal.bioontology.org/", "citations": [{"doi": "10.1093/nar/gkr469", "pubmed-id": 21672956, "publication-id": 1120}], "identifier": 2290, "description": "BioPortal is a library of biomedical ontologies and terminologies developed in Web Ontology Language (OWL), Resource Description Framework (RDF)(S), Open Biological and Biomedical Ontologies (OBO) format, and Prot\u00e9g\u00e9 frames and Rich Release Format. BioPortal groups ontologies by domain to aid discoverability and allows users to browse, search and visualize the content of ontologies. BioPortal also provides ontology recommendation, text annotation, ontology mapping, and a reference index to resources like PubMed.", "abbreviation": "BioPortal", "access-points": [{"url": "http://data.bioontology.org/documentation", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "https://bioportal.bioontology.org/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.bioontology.org/wiki/BioPortal_FAQ", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.bioontology.org/wiki/BioPortal_Help", "name": "BioPortal Help", "type": "Help documentation"}, {"url": "https://www.bioontology.org/wiki/BioPortal_Release_Notes", "name": "Release Notes", "type": "Help documentation"}, {"url": "http://github.com/ncbo", "name": "Github Repository", "type": "Github"}, {"url": "https://tess.elixir-europe.org/materials/browsing-the-enanomapper-ontology-with-bioportal-aberowl-and-protege", "name": "Browsing the eNanoMapper ontology with BioPortal, AberOWL and Protg", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/bioontology", "name": "@bioontology", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "http://bioportal.bioontology.org/search?opt=advanced", "name": "Advanced Search", "type": "data access"}, {"url": "http://bioportal.bioontology.org/ontologies", "name": "Browse Ontologies", "type": "data access"}, {"url": "http://bioportal.bioontology.org/search", "name": "Search Classes", "type": "data access"}, {"url": "http://bioportal.bioontology.org/annotator", "name": "Annotate Text", "type": "data access"}, {"url": "http://bioportal.bioontology.org/recommender", "name": "Ontology Recommender", "type": "data access"}, {"url": "http://bioportal.bioontology.org/mappings", "name": "Browse Ontology Mappings", "type": "data access"}], "associated-tools": [{"url": "https://ontoportal.github.io/administration/", "name": "OntoPortal Virtual Appliance 3.0"}, {"url": "https://www.bioontology.org/wiki/NCBO_Widgets", "name": "NCBO Widgets"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012344", "name": "re3data:r3d100012344", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002713", "name": "SciCrunch:RRID:SCR_002713", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000764", "bsg-d000764"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BioPortal", "abbreviation": "BioPortal", "url": "https://fairsharing.org/10.25504/FAIRsharing.4m97ah", "doi": "10.25504/FAIRsharing.4m97ah", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioPortal is a library of biomedical ontologies and terminologies developed in Web Ontology Language (OWL), Resource Description Framework (RDF)(S), Open Biological and Biomedical Ontologies (OBO) format, and Prot\u00e9g\u00e9 frames and Rich Release Format. BioPortal groups ontologies by domain to aid discoverability and allows users to browse, search and visualize the content of ontologies. BioPortal also provides ontology recommendation, text annotation, ontology mapping, and a reference index to resources like PubMed.", "publications": [{"id": 1120, "pubmed_id": 21672956, "title": "BioPortal: enhanced functionality via new Web services from the National Center for Biomedical Ontology to access and use ontologies in software applications.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr469", "authors": "Whetzel PL,Noy NF,Shah NH,Alexander PR,Nyulas C,Tudorache T,Musen MA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr469", "created_at": "2021-09-30T08:24:24.070Z", "updated_at": "2021-09-30T11:28:59.460Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3048", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-24T10:09:55.000Z", "updated-at": "2022-02-08T10:41:11.118Z", "metadata": {"doi": "10.25504/FAIRsharing.f43996", "name": "Atmospheric Infrared Sounder", "status": "ready", "contacts": [{"contact-name": "Joao Teixeira", "contact-email": "Joao.Teixeira@jpl.nasa.gov"}], "homepage": "https://airs.jpl.nasa.gov/data/about-the-data/processing/", "citations": [], "identifier": 3048, "description": "AIRS, the Atmospheric Infrared Sounder on NASA's Aqua satellite, gathers infrared energy emitted from Earth's surface and atmosphere globally, every day. Its data provides 3D measurements of temperature and water vapor through the atmospheric column along with a host of trace gases, surface and cloud properties. AIRS data are used by weather prediction centers around the world to improve their forecasts. They are also used to assess the skill of climate models and in applications ranging from volcanic plume detection to drought forecasting.", "abbreviation": "AIRS", "data-curation": {}, "support-links": [{"url": "https://airs.jpl.nasa.gov/feedback/", "name": "Feedback", "type": "Contact form"}, {"url": "https://airs.jpl.nasa.gov/data/support/ask-airs/?order=is_featured+desc%2C+question+asc&per_page=50&page=0&search=&fs=&fc=&ft=&dp=&category=", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://airs.jpl.nasa.gov/data/support/mailing-list/", "type": "Mailing list"}], "year-creation": 2002, "data-processes": [{"url": "https://disc.gsfc.nasa.gov/datasets?page=1&source=AQUA%20AIRS&keywords=airs%20version%206", "name": "Get data", "type": "data access"}, {"url": "https://airs.jpl.nasa.gov/data/view-data/", "name": "View data", "type": "data access"}, {"url": "https://airs.jpl.nasa.gov/data/about-the-data/processing/", "name": "AIRS Version 7", "type": "data versioning"}], "associated-tools": [{"url": "https://disc.gsfc.nasa.gov/information/tools?title=OPeNDAP%20and%20GDS", "name": "OPeNDAP and GDS"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012431", "name": "re3data:r3d100012431", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001556", "bsg-d001556"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Forecasting", "Greenhouse gases", "Satellite Data", "Temperature", "weather"], "countries": ["United States"], "name": "FAIRsharing record for: Atmospheric Infrared Sounder", "abbreviation": "AIRS", "url": "https://fairsharing.org/10.25504/FAIRsharing.f43996", "doi": "10.25504/FAIRsharing.f43996", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AIRS, the Atmospheric Infrared Sounder on NASA's Aqua satellite, gathers infrared energy emitted from Earth's surface and atmosphere globally, every day. Its data provides 3D measurements of temperature and water vapor through the atmospheric column along with a host of trace gases, surface and cloud properties. AIRS data are used by weather prediction centers around the world to improve their forecasts. They are also used to assess the skill of climate models and in applications ranging from volcanic plume detection to drought forecasting.", "publications": [], "licence-links": [{"licence-name": "Caltech/JPL Privacy Policies and Important Notices", "licence-id": 94, "link-id": 1964, "relation": "undefined"}, {"licence-name": "JPL Image Use Policy", "licence-id": 472, "link-id": 1965, "relation": "undefined"}, {"licence-name": "GES DISC Data Policy", "licence-id": 339, "link-id": 1966, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2233", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-11T10:39:36.000Z", "updated-at": "2021-11-24T13:19:29.949Z", "metadata": {"doi": "10.25504/FAIRsharing.mtkc4", "name": "EffectiveDB", "status": "ready", "contacts": [{"contact-name": "Thomas Rattei", "contact-email": "thomas.rattei@univie.ac.at", "contact-orcid": "0000-0002-0592-7791"}], "homepage": "http://effectivedb.org", "identifier": 2233, "description": "The Effective database contains pre-calculated predictions of bacterial secreted proteins and of functional secretion systems. Effective bundles various tools to recognize Type III secretion signals, conserved binding sites of Type III chaperones, eukaryotic-like domains and subcellular targeting signals in the host. Beyond the analysis of arbitrary protein sequence collections, the new release of Effective also provides a \"genome-mode\", in which protein sequences from nearly complete genomes or metagenomic bins can be screened for the presence of three important secretion systems (type III, IV, VI).", "abbreviation": "EffectiveDB", "support-links": [{"url": "http://effectivedb.org/news", "type": "Blog/News"}, {"url": "contact.cube@univie.ac.at", "type": "Support email"}, {"url": "http://effectivedb.org/help", "type": "Help documentation"}, {"url": "http://effectivedb.org/methods", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"name": "annual data releases", "type": "data release"}, {"url": "http://effectivedb.org/download", "name": "Data download", "type": "data access"}, {"url": "http://effectivedb.org/effective/browse", "name": "browse", "type": "data access"}, {"url": "http://effectivedb.org/effective/submit", "name": "submit", "type": "data access"}]}, "legacy-ids": ["biodbcore-000707", "bsg-d000707"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Computational biological predictions", "Protein secretion"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["Canada", "Austria"], "name": "FAIRsharing record for: EffectiveDB", "abbreviation": "EffectiveDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.mtkc4", "doi": "10.25504/FAIRsharing.mtkc4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Effective database contains pre-calculated predictions of bacterial secreted proteins and of functional secretion systems. Effective bundles various tools to recognize Type III secretion signals, conserved binding sites of Type III chaperones, eukaryotic-like domains and subcellular targeting signals in the host. Beyond the analysis of arbitrary protein sequence collections, the new release of Effective also provides a \"genome-mode\", in which protein sequences from nearly complete genomes or metagenomic bins can be screened for the presence of three important secretion systems (type III, IV, VI).", "publications": [{"id": 834, "pubmed_id": 21071416, "title": "Effective--a database of predicted secreted bacterial proteins.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1154", "authors": "Jehl MA,Arnold R,Rattei T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1154", "created_at": "2021-09-30T08:23:52.051Z", "updated_at": "2021-09-30T11:28:53.684Z"}, {"id": 1138, "pubmed_id": 26590402, "title": "EffectiveDB--updates and novel features for a better annotation of bacterial secreted proteins and Type III, IV, VI secretion systems.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1269", "authors": "Eichinger V,Nussbaumer T,Platzer A,Jehl MA,Arnold R,Rattei T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1269", "created_at": "2021-09-30T08:24:26.447Z", "updated_at": "2021-09-30T11:29:00.386Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2620", "type": "fairsharing-records", "attributes": {"created-at": "2018-06-18T21:13:27.000Z", "updated-at": "2021-12-06T10:49:01.461Z", "metadata": {"doi": "10.25504/FAIRsharing.pP4ALT", "name": "data.world", "status": "ready", "contacts": [{"contact-name": "Carolee Mitchell", "contact-email": "carolee@data.world"}], "homepage": "https://data.world", "identifier": 2620, "description": "data.world is a repository for open-access data sets. Their goal is to build the most meaningful, collaborative, and abundant data resource in the world.", "abbreviation": "data.world", "access-points": [{"url": "https://apidocs.data.world/", "name": "data.world API", "type": "REST"}], "support-links": [{"url": "help@data.world", "name": "Help Email", "type": "Support email"}, {"url": "https://help.data.world/hc/en-us", "name": "data.world Help Center", "type": "Help documentation"}, {"url": "https://apidocs.data.world/faq", "name": "API FAQ", "type": "Help documentation"}, {"url": "https://data.world/about", "name": "About data.world", "type": "Help documentation"}, {"url": "https://twitter.com/datadotworld", "name": "@datadotworld", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"name": "Login required for data download", "type": "data access"}, {"url": "https://data.world/pricing", "name": "Limited number of free private projects", "type": "data access"}, {"url": "https://data.world/search", "name": "Search Public Data (no login required)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012471", "name": "re3data:r3d100012471", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001107", "bsg-d001107"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: data.world", "abbreviation": "data.world", "url": "https://fairsharing.org/10.25504/FAIRsharing.pP4ALT", "doi": "10.25504/FAIRsharing.pP4ALT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: data.world is a repository for open-access data sets. Their goal is to build the most meaningful, collaborative, and abundant data resource in the world.", "publications": [], "licence-links": [{"licence-name": "Community Data License Agreement - Permissive, Version 1.0 (CDLA-Permissive-1.0)", "licence-id": 143, "link-id": 1209, "relation": "undefined"}, {"licence-name": "Community Data License Agreement - Sharing, Version 1.0 (CDLA-Sharing-1.0)", "licence-id": 144, "link-id": 1212, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1221, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 1222, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1223, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 1224, "relation": "undefined"}, {"licence-name": "data.world Terms and Conditions", "licence-id": 228, "link-id": 1225, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1752", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-29T18:22:20.689Z", "metadata": {"doi": "10.25504/FAIRsharing.j0ezpm", "name": "American Type Culture Collection database", "status": "ready", "contacts": [{"contact-name": "Maryellen de Mars", "contact-email": "mdemars@atcc.org"}], "homepage": "http://www.atcc.org/", "identifier": 1752, "description": "ATCC authenticates microorganisms and cell lines and manages logistics of long-term preservation and distribution of cultures for the scientific community. ATCC supports the cultures it acquires and authenticates with expert technical support, intellectual property management and characterization data.", "abbreviation": "ATCC", "support-links": [{"url": "atcc@lgcstandards.com", "type": "Support email"}, {"url": "http://www.lgcstandards-atcc.org/en/Support/FAQs.aspx", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.lgcstandards-atcc.org/Documents/Learning_Center/ATCC_Webinars.aspx", "type": "Training documentation"}], "year-creation": 1925, "data-processes": [{"url": "http://www.lgcstandards-atcc.org/en/Services/Deposit_Services.aspx", "name": "submit", "type": "data curation"}, {"url": "https://www.atcc.org/Support/How_to_Order.aspx", "name": "Order", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010637", "name": "re3data:r3d100010637", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001672", "name": "SciCrunch:RRID:SCR_001672", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000210", "bsg-d000210"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Cell line", "Cell", "Cell culture"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: American Type Culture Collection database", "abbreviation": "ATCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.j0ezpm", "doi": "10.25504/FAIRsharing.j0ezpm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ATCC authenticates microorganisms and cell lines and manages logistics of long-term preservation and distribution of cultures for the scientific community. ATCC supports the cultures it acquires and authenticates with expert technical support, intellectual property management and characterization data.", "publications": [], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 1369, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2684", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-13T10:23:22.000Z", "updated-at": "2021-12-06T10:48:06.444Z", "metadata": {"doi": "10.25504/FAIRsharing.7mFpMg", "name": "MorphoSource", "status": "ready", "contacts": [{"contact-email": "doug.boyer@duke.edu"}], "homepage": "https://www.morphosource.org/", "identifier": 2684, "description": "MorphoSource is a digital repository where researchers, museum curators, and the general public can find, download, and upload 3D media representing physical objects, most commonly biological specimens. If you are a researcher, you can use MorphoSource to locate and download 3D media for analysis, and archive and share 3D media you have generated or are currently working on with collaborators, the community, and/or the public. If you are a museum curator, you can use MorphoSource to make digital media representing your collections available to scientific and lay communities. If you are a member of the general public, MorphoSource allows you to virtually explore the \"raw data\" of evolutionary biology and other sciences through digitally interacting with the biological specimens and other physical objects that underpin cutting-edge scientific thought.", "abbreviation": "MorphoSource", "access-points": [{"url": "https://www.morphosource.org/About/API", "name": "MorphoSource API", "type": "REST"}], "support-links": [{"url": "https://www.morphosource.org/About/userGuide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.morphosource.org/About/home", "name": "About MorphoSource", "type": "Help documentation"}, {"url": "https://www.morphosource.org/About/userInfo", "name": "Information for Users", "type": "Help documentation"}, {"url": "https://www.morphosource.org/About/contributorInfo", "name": "Information for Contributors", "type": "Help documentation"}, {"url": "https://www.morphosource.org/About/report", "name": "Data reporting for MorphoSource Media", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.morphosource.org/Browse/Index", "name": "Browse Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012224", "name": "re3data:r3d100012224", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001180", "bsg-d001180"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Life Science"], "domains": ["Bioimaging", "Imaging"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MorphoSource", "abbreviation": "MorphoSource", "url": "https://fairsharing.org/10.25504/FAIRsharing.7mFpMg", "doi": "10.25504/FAIRsharing.7mFpMg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MorphoSource is a digital repository where researchers, museum curators, and the general public can find, download, and upload 3D media representing physical objects, most commonly biological specimens. If you are a researcher, you can use MorphoSource to locate and download 3D media for analysis, and archive and share 3D media you have generated or are currently working on with collaborators, the community, and/or the public. If you are a museum curator, you can use MorphoSource to make digital media representing your collections available to scientific and lay communities. If you are a member of the general public, MorphoSource allows you to virtually explore the \"raw data\" of evolutionary biology and other sciences through digitally interacting with the biological specimens and other physical objects that underpin cutting-edge scientific thought.", "publications": [], "licence-links": [{"licence-name": "MorphSource Terms and Conditions", "licence-id": 522, "link-id": 369, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3155", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-12T16:00:48.000Z", "updated-at": "2021-11-24T13:16:11.819Z", "metadata": {"doi": "10.25504/FAIRsharing.3UMg9d", "name": "European Ocean Biodiversity Information System", "status": "ready", "contacts": [{"contact-name": "EurOBIS team", "contact-email": "info@eurobis.org"}], "homepage": "https://www.eurobis.org", "identifier": 3155, "description": "The European Ocean Biodiversity Information System \u2013 EurOBIS \u2013 is an online marine biogeographic database compiling data on all living marine creatures. The principle aims are to centralize the largely scattered biogeographic data on marine species collected by European institutions and to make these data freely available and easily accessible. The data are either collected within European marine waters or by European researchers and institutes outside Europe. The database focuses on taxonomy and occurrence records in space and time; all data can be searched and visualised through a set of online mapping tools.", "abbreviation": "EurOBIS", "support-links": [{"url": "http://www.eurobis.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.eurobis.org/dataset_list", "name": "EurOBIS Providers", "type": "Help documentation"}, {"url": "https://www.eurobis.org/data_formats", "name": "Data & file formats", "type": "Help documentation"}, {"url": "https://www.eurobis.org/standards", "name": "Data standardisation", "type": "Help documentation"}, {"url": "https://twitter.com/EurOBIS_VLIZ", "name": "EurOBIS twitter", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://www.eurobis.org/how_to_contribute", "name": "Contribute", "type": "data curation"}, {"url": "http://www.eurobis.org/data_access_services", "name": "Data access", "type": "data access"}]}, "legacy-ids": ["biodbcore-001666", "bsg-d001666"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geography", "Taxonomy", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["Belgium"], "name": "FAIRsharing record for: European Ocean Biodiversity Information System", "abbreviation": "EurOBIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.3UMg9d", "doi": "10.25504/FAIRsharing.3UMg9d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Ocean Biodiversity Information System \u2013 EurOBIS \u2013 is an online marine biogeographic database compiling data on all living marine creatures. The principle aims are to centralize the largely scattered biogeographic data on marine species collected by European institutions and to make these data freely available and easily accessible. The data are either collected within European marine waters or by European researchers and institutes outside Europe. The database focuses on taxonomy and occurrence records in space and time; all data can be searched and visualised through a set of online mapping tools.", "publications": [], "licence-links": [{"licence-name": "EurOBIS Terms of Use", "licence-id": 298, "link-id": 641, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1804", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.470Z", "metadata": {"doi": "10.25504/FAIRsharing.a5zy4g", "name": "Database of Arabidopsis Transcription Factors", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "datf@mail.cbi.pku.edu.cn"}], "homepage": "http://datf.cbi.pku.edu.cn", "identifier": 1804, "description": "The Database of Arabidopsis Transcription Factors (DATF) collects all Arabidopsis transcription factors (totally 1922 Loci; 2290 Gene Models) and classifies them into 64 families.The Version 2 of DATF was updated at July 2006. It is based on the Arabidopsis Sequence of TAIR, predicted Nuclear Location Signals, UniGene information, as well as links to literature reference.", "abbreviation": "DATF", "year-creation": 2014, "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000264", "bsg-d000264"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Gene model annotation", "Biological regulation"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Database of Arabidopsis Transcription Factors", "abbreviation": "DATF", "url": "https://fairsharing.org/10.25504/FAIRsharing.a5zy4g", "doi": "10.25504/FAIRsharing.a5zy4g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Arabidopsis Transcription Factors (DATF) collects all Arabidopsis transcription factors (totally 1922 Loci; 2290 Gene Models) and classifies them into 64 families.The Version 2 of DATF was updated at July 2006. It is based on the Arabidopsis Sequence of TAIR, predicted Nuclear Location Signals, UniGene information, as well as links to literature reference.", "publications": [{"id": 1117, "pubmed_id": 15731212, "title": "DATF: a database of Arabidopsis transcription factors.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti334", "authors": "Guo A., He K., Liu D., Bai S., Gu X., Wei L., Luo J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti334", "created_at": "2021-09-30T08:24:23.766Z", "updated_at": "2021-09-30T08:24:23.766Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 251, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2236", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-19T15:15:30.000Z", "updated-at": "2021-12-06T10:47:47.945Z", "metadata": {"doi": "10.25504/FAIRsharing.1y79y9", "name": "GeneWeaver", "status": "ready", "contacts": [{"contact-name": "Erich Baker", "contact-email": "Erich_Baker@Baylor.edu", "contact-orcid": "0000-0002-7798-5704"}], "homepage": "http://www.geneweaver.org", "identifier": 2236, "description": "The GeneWeaver data and analytics website is a publically available resource for storing, curating and analyzing sets of genes from heterogeneous data sources. The system enables discovery of relationships among genes, variants, traits, drugs, environments, anatomical structures and diseases implicitly found through gene set intersections. By enumerating the common and distinct biological molecules associated with all subsets of curated or user submitted groups of gene sets and gene networks, GeneWeaver empowers users with the ability to construct data driven descriptions of shared and unique biological processes, diseases and traits within and across species.", "abbreviation": "GeneWeaver", "support-links": [{"url": "https://www.geneweaver.org/help/", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://www.geneweaver.org/", "name": "search", "type": "data access"}, {"url": "https://www.geneweaver.org/register_or_login", "name": "register / login", "type": "data curation"}, {"name": "upload Genesets", "type": "data curation"}], "associated-tools": [{"url": "https://www.geneweaver.org/register_or_login", "name": "Analysis tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012464", "name": "re3data:r3d100012464", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003009", "name": "SciCrunch:RRID:SCR_003009", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000710", "bsg-d000710"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Anatomy", "Life Science", "Comparative Genomics"], "domains": ["Drug", "Phenotype", "Disease"], "taxonomies": ["Caenorhabditis elegans", "Canis familiaris", "Danio rerio", "Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Macaca mulatta", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GeneWeaver", "abbreviation": "GeneWeaver", "url": "https://fairsharing.org/10.25504/FAIRsharing.1y79y9", "doi": "10.25504/FAIRsharing.1y79y9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GeneWeaver data and analytics website is a publically available resource for storing, curating and analyzing sets of genes from heterogeneous data sources. The system enables discovery of relationships among genes, variants, traits, drugs, environments, anatomical structures and diseases implicitly found through gene set intersections. By enumerating the common and distinct biological molecules associated with all subsets of curated or user submitted groups of gene sets and gene networks, GeneWeaver empowers users with the ability to construct data driven descriptions of shared and unique biological processes, diseases and traits within and across species.", "publications": [{"id": 864, "pubmed_id": 22080549, "title": "GeneWeaver: a web-based system for integrative functional genomics.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr968", "authors": "Baker EJ,Jay JJ,Bubier JA,Langston MA,Chesler EJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr968", "created_at": "2021-09-30T08:23:55.443Z", "updated_at": "2021-09-30T11:28:54.359Z"}, {"id": 1634, "pubmed_id": 26092690, "title": "GeneWeaver: finding consilience in heterogeneous cross-species functional genomics data.", "year": 2015, "url": "http://doi.org/10.1007/s00335-015-9575-x", "authors": "Bubier JA,Phillips CA,Langston MA,Baker EJ,Chesler EJ", "journal": "Mamm Genome", "doi": "10.1007/s00335-015-9575-x", "created_at": "2021-09-30T08:25:23.061Z", "updated_at": "2021-09-30T08:25:23.061Z"}, {"id": 1635, "pubmed_id": 19733230, "title": "Ontological Discovery Environment: a system for integrating gene-phenotype associations.", "year": 2009, "url": "http://doi.org/10.1016/j.ygeno.2009.08.016", "authors": "Baker EJ,Jay JJ,Philip VM,Zhang Y,Li Z,Kirova R,Langston MA,Chesler EJ", "journal": "Genomics", "doi": "10.1016/j.ygeno.2009.08.016", "created_at": "2021-09-30T08:25:23.170Z", "updated_at": "2021-09-30T08:25:23.170Z"}], "licence-links": [{"licence-name": "GeneWeaver Data Sharing", "licence-id": 332, "link-id": 2232, "relation": "undefined"}, {"licence-name": "GeneWeaver Privacy", "licence-id": 333, "link-id": 2233, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2608", "type": "fairsharing-records", "attributes": {"created-at": "2018-06-12T15:13:37.000Z", "updated-at": "2021-12-06T10:47:45.884Z", "metadata": {"doi": "10.25504/FAIRsharing.178BmT", "name": "Portail Data INRAE", "status": "ready", "contacts": [{"contact-name": "Esther Dzal\u00e9 Yeumo", "contact-email": "esther.dzale-yeumo@inrae.fr", "contact-orcid": "0000-0001-5954-8415"}], "homepage": "https://data.inrae.fr/", "identifier": 2608, "description": "Portail Data INRAE is offered by INRAE as part of its mission to open the results of its research. INRAE is Europe\u2019s top agricultural research institute and the world\u2019s number two centre for the agricultural sciences. Data INRAE will share research data in relation to food, nutrition, agriculture and environment. It includes experimental, simulation and observation data, omics data, survey and text data. Only data produced by or in collaboration with INRAE will be hosted in the repository, but anyone can access the metadata and the open data. Data INRAE is built on software from the Dataverse Project.", "abbreviation": "Data INRAE", "access-points": [{"url": "https://data.inrae.fr/oai", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "datainrae@inrae.fr", "name": "Data INRAE support team", "type": "Support email"}, {"url": "https://docs.google.com/document/d/1YjBvWlgN_52wiggvOVOG5kGy8NMZ7EMobgnUu-GRiok/edit", "name": "Data INRAE - Guide de lutilisateur (in french)", "type": "Help documentation"}], "year-creation": 2018, "associated-tools": [{"url": "https://dataverse.org/", "name": "Dataverse 4.20"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012673", "name": "re3data:r3d100012673", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001091", "bsg-d001091"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Botany", "Economics", "Forest Management", "Animal Genetics", "Genomics", "Animal Physiology", "Horticulture", "Animal Husbandry", "Food Security", "Aquaculture", "Agriculture", "Life Science", "Nutritional Science", "Veterinary Medicine", "Biomedical Science", "Biology", "Plant Genetics"], "domains": ["Animal organ development"], "taxonomies": ["Animalia", "Cellular organisms", "Plantae"], "user-defined-tags": ["Applied Forest Research"], "countries": ["France"], "name": "FAIRsharing record for: Portail Data INRAE", "abbreviation": "Data INRAE", "url": "https://fairsharing.org/10.25504/FAIRsharing.178BmT", "doi": "10.25504/FAIRsharing.178BmT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Portail Data INRAE is offered by INRAE as part of its mission to open the results of its research. INRAE is Europe\u2019s top agricultural research institute and the world\u2019s number two centre for the agricultural sciences. Data INRAE will share research data in relation to food, nutrition, agriculture and environment. It includes experimental, simulation and observation data, omics data, survey and text data. Only data produced by or in collaboration with INRAE will be hosted in the repository, but anyone can access the metadata and the open data. Data INRAE is built on software from the Dataverse Project.", "publications": [], "licence-links": [{"licence-name": "Licence Ouverte / Open Licence Version 2.0 compatible CC BY 4.0", "licence-id": 488, "link-id": 965, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2675", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-02T09:04:36.000Z", "updated-at": "2021-12-06T10:49:12.182Z", "metadata": {"doi": "10.25504/FAIRsharing.sN8d9i", "name": "Australian Data Archive", "status": "ready", "contacts": [{"contact-name": "Steven McEachern", "contact-email": "ada@anu.edu.au", "contact-orcid": "0000-0001-7848-4912"}], "homepage": "https://ada.edu.au", "identifier": 2675, "description": "The Australian Data Archive (ADA) provides a national service for the collection and preservation of digital research data. ADA disseminates this data for secondary analysis by academic researchers and other users. The archive is based in the ANU Centre for Social Research and Methods (CSRM) at the Australian National University (ANU).", "abbreviation": "ADA", "support-links": [{"url": "ada@anu.edu.au", "name": "ADA email help system", "type": "Support email"}], "year-creation": 1981, "data-processes": [{"url": "https://dataverse.ada.edu.au/", "name": "ADA Dataverse system", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010138", "name": "re3data:r3d100010138", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014706", "name": "SciCrunch:RRID:SCR_014706", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001169", "bsg-d001169"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Epidemiology"], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Australian Data Archive", "abbreviation": "ADA", "url": "https://fairsharing.org/10.25504/FAIRsharing.sN8d9i", "doi": "10.25504/FAIRsharing.sN8d9i", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Australian Data Archive (ADA) provides a national service for the collection and preservation of digital research data. ADA disseminates this data for secondary analysis by academic researchers and other users. The archive is based in the ANU Centre for Social Research and Methods (CSRM) at the Australian National University (ANU).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2443", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-21T11:16:10.000Z", "updated-at": "2021-12-06T10:48:07.800Z", "metadata": {"doi": "10.25504/FAIRsharing.86302v", "name": "British Geological Survey GeoScenic", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "enquiries@bgs.ac.uk"}], "homepage": "http://geoscenic.bgs.ac.uk/asset-bank/action/viewHome", "citations": [], "identifier": 2443, "description": "A national archive of geological photographs freely available to the public.", "abbreviation": "BGS GeoScenic", "support-links": [{"url": "https://support.assetbank.co.uk/hc/en-gb", "name": "Support", "type": "Help documentation"}], "data-processes": [{"url": "http://geoscenic.bgs.ac.uk/asset-bank/action/viewLastSearch?newSearch=true", "name": "Advanced search", "type": "data access"}, {"url": "http://geoscenic.bgs.ac.uk/asset-bank/action/browseItems?categoryId=-1&categoryTypeId=1", "name": "Browse", "type": "data access"}, {"url": "http://mapapps2.bgs.ac.uk/geoindex/home.html?layer=BGSPhotos", "name": "Map-Based search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010410", "name": "re3data:r3d100010410", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000925", "bsg-d000925"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: British Geological Survey GeoScenic", "abbreviation": "BGS GeoScenic", "url": "https://fairsharing.org/10.25504/FAIRsharing.86302v", "doi": "10.25504/FAIRsharing.86302v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A national archive of geological photographs freely available to the public.", "publications": [], "licence-links": [{"licence-name": "BGS Privacy Policy", "licence-id": 72, "link-id": 1401, "relation": "undefined"}, {"licence-name": "Geoscenic Terms and Conditions", "licence-id": 338, "link-id": 1416, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3313", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-31T07:19:09.000Z", "updated-at": "2021-12-06T10:48:17.603Z", "metadata": {"doi": "10.25504/FAIRsharing.av9fsp", "name": "CORA. Repositori de dades de Recerca", "status": "ready", "contacts": [{"contact-name": "CSUC. Open Science Area", "contact-email": "aco@csuc.cat"}], "homepage": "https://dataverse.csuc.cat/", "identifier": 3313, "description": "The CORA. Repositori de dades de Recerca is a repository of open, curated and FAIR data that covers all academic disciplines. CORA. Repositori de dades de Recerca is a shared service provided by participating Catalan institutions (Universities and CERCA Research Centers). The repository is managed by the CSUC and technical infrastructure is based on the Dataverse application, developed by international developers and users led by Harvard University (https://dataverse.org).", "year-creation": 2020, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013559", "name": "re3data:r3d100013559", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001828", "bsg-d001828"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: CORA. Repositori de dades de Recerca", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.av9fsp", "doi": "10.25504/FAIRsharing.av9fsp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CORA. Repositori de dades de Recerca is a repository of open, curated and FAIR data that covers all academic disciplines. CORA. Repositori de dades de Recerca is a shared service provided by participating Catalan institutions (Universities and CERCA Research Centers). The repository is managed by the CSUC and technical infrastructure is based on the Dataverse application, developed by international developers and users led by Harvard University (https://dataverse.org).", "publications": [], "licence-links": [{"licence-name": "Dataverse", "licence-id": 225, "link-id": 74, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2557", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T10:44:18.000Z", "updated-at": "2021-12-06T10:49:26.002Z", "metadata": {"doi": "10.25504/FAIRsharing.x68mjp", "name": "Publications at Bielefeld University", "status": "ready", "contacts": [{"contact-email": "publikationsdienste.ub@uni-bielefeld.de"}], "homepage": "https://pub.uni-bielefeld.de/", "identifier": 2557, "description": "Publications at Bielefeld University (PUB) is the institutional repository of Bielefeld University and preserves the scholarly output of its members. Operated by Bielefeld University Library, PUB provides open access to Bielefeld's scholarly publications and research data in accordance with Bielefeld University's open access and research data resolutions. PUB also collects digital theses. With more than 50,000 publications, PUB is the most comprehensive bibliography on scholarly activities at Bielefeld University. Faculty and researchers self-archive full texts when possible. As a plus, PUB cross-references leading indexing services and disciplinary archives such as the Web of Science, CrossRef, PubMed, Europe PubMed Central, arXiv or INSPIRE HEP.", "abbreviation": "PUB", "access-points": [{"url": "https://pub.uni-bielefeld.de/docs/api", "name": "PUB API", "type": "REST"}], "support-links": [{"url": "https://pub.uni-bielefeld.de/docs/howto/contact", "name": "Contact Details", "type": "Contact form"}, {"url": "https://pub.uni-bielefeld.de/docs/howto/start", "name": "About PUB", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://pub.uni-bielefeld.de/publication", "name": "Browse Publications", "type": "data access"}, {"url": "https://pub.uni-bielefeld.de/person", "name": "Browse Authors", "type": "data access"}, {"url": "https://pub.uni-bielefeld.de/data", "name": "Browse Publications with Associated Data", "type": "data access"}, {"url": "https://pub.uni-bielefeld.de/publication?q=fulltext=1", "name": "Browse Open Access Publications", "type": "data access"}, {"url": "https://pub.uni-bielefeld.de/publication?q=type=bi*", "name": "Browse Theses", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010750", "name": "re3data:r3d100010750", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001040", "bsg-d001040"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Open Science"], "countries": ["Germany"], "name": "FAIRsharing record for: Publications at Bielefeld University", "abbreviation": "PUB", "url": "https://fairsharing.org/10.25504/FAIRsharing.x68mjp", "doi": "10.25504/FAIRsharing.x68mjp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Publications at Bielefeld University (PUB) is the institutional repository of Bielefeld University and preserves the scholarly output of its members. Operated by Bielefeld University Library, PUB provides open access to Bielefeld's scholarly publications and research data in accordance with Bielefeld University's open access and research data resolutions. PUB also collects digital theses. With more than 50,000 publications, PUB is the most comprehensive bibliography on scholarly activities at Bielefeld University. Faculty and researchers self-archive full texts when possible. As a plus, PUB cross-references leading indexing services and disciplinary archives such as the Web of Science, CrossRef, PubMed, Europe PubMed Central, arXiv or INSPIRE HEP.", "publications": [], "licence-links": [{"licence-name": "Perl 5 License", "licence-id": 656, "link-id": 236, "relation": "undefined"}, {"licence-name": "Horizon 2020 Open Access and Data Management Requirements", "licence-id": 401, "link-id": 239, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3058", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-30T09:41:28.000Z", "updated-at": "2021-12-06T10:47:32.279Z", "metadata": {"name": "NASA OceanColor", "status": "ready", "contacts": [{"contact-name": "Gene Carl Feldman", "contact-email": "Gene.C.Feldman@nasa.gov"}], "homepage": "https://oceancolor.gsfc.nasa.gov/", "identifier": 3058, "description": "NASA's OceanColor Web is in charge of the collection, processing, calibration, validation, archive and distribution of ocean-related products from a large number of operational, satellite-based remote-sensing missions providing ocean color, sea surface temperature and sea surface salinity data to the international research community since 1996. The OB.DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "OB.DAAC", "support-links": [{"url": "webadmin@oceancolor.gsfc.nasa.gov", "name": "Webmaster", "type": "Support email"}, {"url": "https://oceancolor.gsfc.nasa.gov/forum/oceancolor/forum_show.pl", "type": "Forum"}, {"url": "https://oceancolor.gsfc.nasa.gov/docs/technical/", "name": "Technical Documents", "type": "Help documentation"}, {"url": "https://oceancolor.gsfc.nasa.gov/docs/format/", "name": "Data Format Specifications", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/nasaoceancolor", "name": "Youtube", "type": "Video"}, {"url": "https://oceancolor.gsfc.nasa.gov/outreach/", "name": "Outreach & Education", "type": "Help documentation"}, {"url": "https://oceancolor.gsfc.nasa.gov/meetings/", "name": "Meeting & Workshops", "type": "Help documentation"}, {"url": "https://twitter.com/NASAOcean", "type": "Twitter"}, {"url": "https://www.facebook.com/NASAOcean", "name": "Facebook", "type": "Facebook"}], "year-creation": 1996, "data-processes": [{"url": "https://oceandata.sci.gsfc.nasa.gov/", "name": "Access Data", "type": "data access"}, {"url": "https://oceandata.sci.gsfc.nasa.gov/api/file_search/", "name": "Search Data", "type": "data access"}, {"url": "https://oceandata.sci.gsfc.nasa.gov/opendap/", "name": "Download Data", "type": "data access"}, {"url": "https://oceancolor.gsfc.nasa.gov/cgi/browse.pl?sen=amod", "name": "Level 1&2 Browser", "type": "data access"}, {"url": "https://oceancolor.gsfc.nasa.gov/l3/", "name": "Level-3 Browser", "type": "data access"}, {"url": "https://seabass.gsfc.nasa.gov/wiki/Data_Submission/", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://seadas.gsfc.nasa.gov/", "name": "SeaDAS 7.5.3"}, {"url": "https://oceancolor.gsfc.nasa.gov/cgi/idllibrary.cgi", "name": "Ocean Color IDL Library"}, {"url": "https://oceandata.sci.gsfc.nasa.gov/overpass_pred/", "name": "OverPass Predictions"}, {"url": "https://oceancolor.gsfc.nasa.gov/cgi/l3bts", "name": "Level-3 Time Series Plotter"}, {"url": "https://giovanni.gsfc.nasa.gov/giovanni/", "name": "Giovanni 4.34"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010504", "name": "re3data:r3d100010504", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001566", "bsg-d001566"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Salinity", "Satellite Data", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: NASA OceanColor", "abbreviation": "OB.DAAC", "url": "https://fairsharing.org/fairsharing_records/3058", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NASA's OceanColor Web is in charge of the collection, processing, calibration, validation, archive and distribution of ocean-related products from a large number of operational, satellite-based remote-sensing missions providing ocean color, sea surface temperature and sea surface salinity data to the international research community since 1996. The OB.DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NASA Policy on the Release of Information to News and Information Media", "licence-id": 538, "link-id": 771, "relation": "undefined"}, {"licence-name": "NASA's Earth Science program Data & Information Policy", "licence-id": 540, "link-id": 772, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3153", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T12:58:03.000Z", "updated-at": "2021-12-06T10:47:36.966Z", "metadata": {"name": "Canadian Biodiversity Information Facility", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "aafc.cbif-scib.aac@canada.ca"}], "homepage": "https://www.cbif.gc.ca/eng/home/?id=1370403266262", "identifier": 3153, "description": "The Canadian Biodiversity Information Facility (CBIF) provides primary data on biological species of interest to Canadians. CBIF supports a wide range of social and economic decisions including efforts to conserve our biodiversity in healthy ecosystems, use our biological resources in sustainable ways, and monitor and control pests and diseases. Tools provided by the CBIF include the Integrated Taxonomic Information System (ITIS), Species Access Network, Online Mapping, and the SpeciesBank, including Butterflies of Canada. The CBIF is a member of the Global Biodiversity Information Facility (GBIF).", "abbreviation": "CBIF", "support-links": [{"url": "https://www.cbif.gc.ca/eng/help/?id=1370403266261", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://www.cbif.gc.ca/acp/eng/itis/search", "name": "Search Integrated Taxonomic Information System (ITIS)", "type": "data access"}, {"url": "https://www.cbif.gc.ca/eng/integrated-taxonomic-information-system-itis/data-quality/?id=1396624778379", "name": "Data quality", "type": "data access"}, {"url": "https://www.cbif.gc.ca/eng/species-access-network/?id=1381348141137", "name": "Search & Browse Species", "type": "data access"}, {"url": "https://www.cbif.gc.ca/eng/species-bank/?id=1370403266204", "name": "Browse Species Bank", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010909", "name": "re3data:r3d100010909", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001664", "bsg-d001664"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Agroecology", "Botany", "Taxonomy", "Biodiversity", "Agriculture", "Life Science", "Biology", "Ecosystem Science"], "domains": [], "taxonomies": ["Aves", "Bombus terrestris", "Culicidae", "Lepidoptera", "Plantae"], "user-defined-tags": ["Observations"], "countries": ["Canada"], "name": "FAIRsharing record for: Canadian Biodiversity Information Facility", "abbreviation": "CBIF", "url": "https://fairsharing.org/fairsharing_records/3153", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canadian Biodiversity Information Facility (CBIF) provides primary data on biological species of interest to Canadians. CBIF supports a wide range of social and economic decisions including efforts to conserve our biodiversity in healthy ecosystems, use our biological resources in sustainable ways, and monitor and control pests and diseases. Tools provided by the CBIF include the Integrated Taxonomic Information System (ITIS), Species Access Network, Online Mapping, and the SpeciesBank, including Butterflies of Canada. The CBIF is a member of the Global Biodiversity Information Facility (GBIF).", "publications": [], "licence-links": [{"licence-name": "Canadian Biodiversity Information Facility Terms and Conditions", "licence-id": 96, "link-id": 1874, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1763", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.460Z", "metadata": {"doi": "10.25504/FAIRsharing.gk7nfn", "name": "Beijing Genomics Institute Rice Information System", "status": "deprecated", "contacts": [{"contact-name": "Jun Wang", "contact-email": "wangj@genomics.org.cn"}], "homepage": "http://rise.genomics.org.cn/", "identifier": 1763, "description": "In BGI-RIS, sequence contigs of Beijing indica and Syngenta japonica have been further assembled and anchored onto the rice chromosomes. The database has annotated the rice genomes for gene content, repetitive elements, and SNPs. Sequence polymorphisms between different rice subspecies have also been identified.", "abbreviation": "BGI-RIS", "support-links": [{"url": "rise@genomics.org.cn", "type": "Support email"}, {"url": "http://rice.genomics.org.cn/rice/doc/help/help.jsp", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://rice.genomics.org.cn/rice/link/download.jsp", "name": "Download", "type": "data access"}, {"url": "http://rice.genomics.org.cn/rice/index2.jsp", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://rice.genomics.org.cn/rice2/jsp/blast/blast.jsp", "name": "BLAST"}, {"url": "http://rice.genomics.org.cn/rice/link/ts.jsp", "name": "analyze"}, {"url": "http://rice.genomics.org.cn/rice/link/mv.jsp", "name": "visualize"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000221", "bsg-d000221"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Biological regulation", "Single nucleotide polymorphism"], "taxonomies": ["Oryza sativa L. ssp. Indica", "Oryza sativa L. ssp. japonica"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Beijing Genomics Institute Rice Information System", "abbreviation": "BGI-RIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.gk7nfn", "doi": "10.25504/FAIRsharing.gk7nfn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In BGI-RIS, sequence contigs of Beijing indica and Syngenta japonica have been further assembled and anchored onto the rice chromosomes. The database has annotated the rice genomes for gene content, repetitive elements, and SNPs. Sequence polymorphisms between different rice subspecies have also been identified.", "publications": [{"id": 290, "pubmed_id": 14681438, "title": "BGI-RIS: an integrated information resource and comparative analysis workbench for rice genomics.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh085", "authors": "Zhao W., Wang J., He X., Huang X., Jiao Y., Dai M., Wei S., Fu J., Chen Y., Ren X., Zhang Y., Ni P., Zhang J., Li S., Wang J., Wong GK., Zhao H., Yu J., Yang H., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh085", "created_at": "2021-09-30T08:22:51.232Z", "updated_at": "2021-09-30T08:22:51.232Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2421", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T17:13:33.000Z", "updated-at": "2021-12-06T10:49:31.144Z", "metadata": {"doi": "10.25504/FAIRsharing.yfk79s", "name": "Fluxdata", "status": "ready", "contacts": [{"contact-name": "General Support", "contact-email": "fluxdata-support@fluxdata.org"}], "homepage": "https://fluxnet.org/", "citations": [], "identifier": 2421, "description": "A data portal for the Fluxnet community across the globe which supports the access to and sharing of data on the eddy covariance flux measurements of carbon, water vapor and energy exchange.", "abbreviation": "Fluxdata", "support-links": [{"url": "http://fluxnet.fluxdata.org/community/blog/", "type": "Blog/News"}], "year-creation": 1997, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011506", "name": "re3data:r3d100011506", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000903", "bsg-d000903"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["China", "Canada", "United States", "European Union", "Australia", "Brazil"], "name": "FAIRsharing record for: Fluxdata", "abbreviation": "Fluxdata", "url": "https://fairsharing.org/10.25504/FAIRsharing.yfk79s", "doi": "10.25504/FAIRsharing.yfk79s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A data portal for the Fluxnet community across the globe which supports the access to and sharing of data on the eddy covariance flux measurements of carbon, water vapor and energy exchange.", "publications": [{"id": 1520, "pubmed_id": 28066093, "title": "On the energy balance closure and net radiation in complex terrain.", "year": 2017, "url": "http://doi.org/10.1016/j.agrformet.2016.05.012", "authors": "Wohlfahrt G,Hammerle A,Niedrist G,Scholz K,Tomelleri E,Zhao P", "journal": "Agric For Meteorol", "doi": "10.1016/j.agrformet.2016.05.012", "created_at": "2021-09-30T08:25:10.168Z", "updated_at": "2021-09-30T08:25:10.168Z"}], "licence-links": [{"licence-name": "FLUXNET2015 Data Policy", "licence-id": 319, "link-id": 975, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2337", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T08:54:10.000Z", "updated-at": "2021-11-24T13:19:51.898Z", "metadata": {"doi": "10.25504/FAIRsharing.q70amd", "name": "DyNet", "status": "ready", "contacts": [{"contact-name": "David Lynn", "contact-email": "David.Lynn@sahmri.com"}], "homepage": "http://apps.cytoscape.org/apps/dynet", "identifier": 2337, "description": "DyNet is a Cytoscape application that provides a range of functionalities for the visualization, realtime synchronization, and analysis of large multi-state dynamic molecular interaction networks enabling users to quickly identify and analyze the most 'rewired' nodes across many network states.", "abbreviation": "DyNet"}, "legacy-ids": ["biodbcore-000815", "bsg-d000815"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Systems Biology"], "domains": ["Biological network analysis", "Network model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: DyNet", "abbreviation": "DyNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.q70amd", "doi": "10.25504/FAIRsharing.q70amd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DyNet is a Cytoscape application that provides a range of functionalities for the visualization, realtime synchronization, and analysis of large multi-state dynamic molecular interaction networks enabling users to quickly identify and analyze the most 'rewired' nodes across many network states.", "publications": [{"id": 1645, "pubmed_id": 27153624, "title": "DyNet: visualization and analysis of dynamic molecular interaction networks.", "year": 2016, "url": "http://doi.org/10.1093/bioinformatics/btw187", "authors": "Goenawan IH,Bryan K,Lynn DJ", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btw187", "created_at": "2021-09-30T08:25:24.220Z", "updated_at": "2021-09-30T08:25:24.220Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1793", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:10.285Z", "metadata": {"doi": "10.25504/FAIRsharing.8zf3ny", "name": "Universal PBM Resource for Oligonucleotide Binding Evaluation", "status": "ready", "contacts": [{"contact-name": "Maxwell Hume", "contact-email": "uniprobe@genetics.med.harvard.edu", "contact-orcid": "0000-0003-2877-8079"}], "homepage": "http://thebrain.bwh.harvard.edu/uniprobe/", "citations": [], "identifier": 1793, "description": "The UniPROBE (Universal PBM Resource for Oligonucleotide Binding Evaluation) database hosts data generated by universal protein binding microarray (PBM) technology on the in vitro DNA binding specificities of proteins.", "abbreviation": "UniPROBE", "year-creation": 2008, "data-processes": [{"url": "http://the_brain.bwh.harvard.edu/uniprobe/downloads.php", "name": "Download", "type": "data access"}, {"url": "http://the_brain.bwh.harvard.edu/uniprobe/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://the_brain.bwh.harvard.edu/uniprobe/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010557", "name": "re3data:r3d100010557", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005803", "name": "SciCrunch:RRID:SCR_005803", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000253", "bsg-d000253"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Sequence annotation", "Protein interaction", "Deoxyribonucleic acid", "Molecular interaction", "Protein"], "taxonomies": ["Ashbya gossypii", "Burkholderia pseudomallei K96243", "Burkholderia thailandensis E264", "Caenorhabditis elegans", "Cryptosporidium parvum", "Drosophila melanogaster", "Emericella nidulans", "Homo sapiens", "Kluyveromyces lactis", "Monosiga brevicollis", "Mus musculus", "Nematostella vectensis", "Patiria miniata", "Plasmodium falciparum", "Saccharomyces cerevisiae", "Strongylocentrotus purpuratus", "Trichoplax adhaerens", "Tuber melanosporum", "Vibrio harveyi", "Zymoseptoria tritici"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Universal PBM Resource for Oligonucleotide Binding Evaluation", "abbreviation": "UniPROBE", "url": "https://fairsharing.org/10.25504/FAIRsharing.8zf3ny", "doi": "10.25504/FAIRsharing.8zf3ny", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UniPROBE (Universal PBM Resource for Oligonucleotide Binding Evaluation) database hosts data generated by universal protein binding microarray (PBM) technology on the in vitro DNA binding specificities of proteins.", "publications": [{"id": 812, "pubmed_id": 18842628, "title": "UniPROBE: an online database of protein binding microarray data on protein-DNA interactions.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn660", "authors": "Newburger DE., Bulyk ML.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn660", "created_at": "2021-09-30T08:23:49.589Z", "updated_at": "2021-09-30T08:23:49.589Z"}, {"id": 862, "pubmed_id": 21037262, "title": "UniPROBE, update 2011: expanded content and search tools in the online database of protein-binding microarray data on protein-DNA interactions.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq992", "authors": "Robasky K., Bulyk ML.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq992", "created_at": "2021-09-30T08:23:55.230Z", "updated_at": "2021-09-30T08:23:55.230Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 215, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2335", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-28T16:21:12.000Z", "updated-at": "2021-11-24T13:14:10.614Z", "metadata": {"doi": "10.25504/FAIRsharing.ppdbrz", "name": "C. elegans Natural Diversity Resource", "status": "ready", "contacts": [{"contact-name": "Erik C. Andersen", "contact-email": "Erik.Andersen@northwestern.edu", "contact-orcid": "0000-0003-0229-9651"}], "homepage": "http://www.elegansvariation.org", "identifier": 2335, "description": "Whole-genome sequence data, variant calls, and annotations of natural genetic variation in C. elegans species.", "abbreviation": "CeNDR", "access-points": [{"url": "https://elegansvariation.org/api", "name": "Application Programming Interface", "type": "REST"}], "support-links": [{"url": "https://elegansvariation.org/help/", "type": "Help documentation"}], "year-creation": 2016}, "legacy-ids": ["biodbcore-000812", "bsg-d000812"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Population Dynamics", "Genetics", "Life Science", "Population Genetics"], "domains": ["Genetic polymorphism", "Genome-wide association study"], "taxonomies": ["Caenorhabditis elegans"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: C. elegans Natural Diversity Resource", "abbreviation": "CeNDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.ppdbrz", "doi": "10.25504/FAIRsharing.ppdbrz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Whole-genome sequence data, variant calls, and annotations of natural genetic variation in C. elegans species.", "publications": [], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 915, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3174", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-19T13:02:30.000Z", "updated-at": "2021-12-06T10:47:37.846Z", "metadata": {"name": "Global Carbon Atlas", "status": "ready", "contacts": [{"contact-name": "Global Carbon Atlas Contact", "contact-email": "contact@globalcarbonatlas.org"}], "homepage": "http://www.globalcarbonatlas.org", "identifier": 3174, "description": "The Global Carbon Atlas is an online platform to explore, visualize and interpret global and regional carbon data arising from both human activities and natural processes. The Atlas has three components with objectives and information relevant to different users: OUTREACH providing educational material, EMISSIONS providing browsing, visualization and download of carbon dioxide emissions data, and RESEARCH providing filtering and map visualisation for carbon fluxes from research models and datasets.", "support-links": [{"url": "info@globalcarbonproject.org", "name": "GCP General Contact", "type": "Support email"}, {"url": "http://www.globalcarbonatlas.org/en/content/project-overview", "name": "Project Overview", "type": "Help documentation"}, {"url": "http://cms2018a.globalcarbonatlas.org/en/content/global-carbon-budget", "name": "Global Carbon Budget", "type": "Help documentation"}, {"url": "http://www.globalcarbonatlas.org/en/CH4-emissions", "name": "Global Methane Budget", "type": "Help documentation"}, {"url": "https://twitter.com/gcarbonproject", "name": "@gcarbonproject", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "http://www.globalcarbonatlas.org/en/CO2-emissions", "name": "Search, View and Download Data", "type": "data access"}, {"url": "http://www.globalcarbonatlas.org/en/flux-maps", "name": "View and Browse Carbon Fluxes", "type": "data access"}, {"url": "http://www.globalcarbonatlas.org/global-carbon-cities", "name": "View City Carbon Emissions", "type": "data access"}, {"url": "http://www.globalcarbonatlas.org/carbon-cascades", "name": "View Lakes and Rivers Carbon Budget", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011741", "name": "re3data:r3d100011741", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001685", "bsg-d001685"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Carbon", "CO2 emission"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Global Carbon Atlas", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3174", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Carbon Atlas is an online platform to explore, visualize and interpret global and regional carbon data arising from both human activities and natural processes. The Atlas has three components with objectives and information relevant to different users: OUTREACH providing educational material, EMISSIONS providing browsing, visualization and download of carbon dioxide emissions data, and RESEARCH providing filtering and map visualisation for carbon fluxes from research models and datasets.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2108", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:18.765Z", "metadata": {"doi": "10.25504/FAIRsharing.v448pt", "name": "eCrystals", "status": "ready", "homepage": "http://ecrystals.chem.soton.ac.uk/", "identifier": 2108, "description": "eCrystals is the archive for Crystal Structures generated by the Southampton Chemical Crystallography Group and the EPSRC UK National Crystallography Service. It contains all the fundamental and derived data resulting from a single crystal X-ray structure determination, but excluding the raw images.", "abbreviation": "eCrystals", "year-creation": 2003, "data-processes": [{"url": "http://ecrystals.chem.soton.ac.uk", "name": "search", "type": "data access"}, {"url": "http://ecrystals.chem.soton.ac.uk/view/year/", "name": "browse", "type": "data access"}, {"url": "http://ecrystals.chem.soton.ac.uk/view/people/", "name": "browse", "type": "data access"}, {"url": "http://ecrystals.chem.soton.ac.uk/cgi/register", "name": "register", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010057", "name": "re3data:r3d100010057", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000578", "bsg-d000578"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Materials Science"], "domains": ["X-ray diffraction", "X-ray crystallography assay"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: eCrystals", "abbreviation": "eCrystals", "url": "https://fairsharing.org/10.25504/FAIRsharing.v448pt", "doi": "10.25504/FAIRsharing.v448pt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: eCrystals is the archive for Crystal Structures generated by the Southampton Chemical Crystallography Group and the EPSRC UK National Crystallography Service. It contains all the fundamental and derived data resulting from a single crystal X-ray structure determination, but excluding the raw images.", "publications": [], "licence-links": [{"licence-name": "Database Contents License (DbCL) v1.0", "licence-id": 216, "link-id": 2319, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 2320, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3160", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T12:38:44.000Z", "updated-at": "2021-11-24T13:16:11.936Z", "metadata": {"name": "Global Visualization Viewer", "status": "ready", "contacts": [{"contact-name": "USGS Customer Service", "contact-email": "custserv@usgs.gov"}], "homepage": "https://glovis.usgs.gov", "identifier": 3160, "description": "The Global Visualization Viewer (GloVis) was created to easily view, order, and download remotely sensed data in the public domain. In GloVis, users may narrow down results, view multiple scenes at once, step through time points, view metadata and download the full-band source imagery.", "abbreviation": "GloVis", "support-links": [{"url": "https://answers.usgs.gov/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://lta.cr.usgs.gov/GloVisHelp/GloVis_FAQs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://lta.cr.usgs.gov/GloVisHelp/glovis_help", "name": "Help", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://glovis.usgs.gov/app?fullscreen=0", "name": "Search & Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001671", "bsg-d001671"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geography", "Earth Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Global Visualization Viewer", "abbreviation": "GloVis", "url": "https://fairsharing.org/fairsharing_records/3160", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Visualization Viewer (GloVis) was created to easily view, order, and download remotely sensed data in the public domain. In GloVis, users may narrow down results, view multiple scenes at once, step through time points, view metadata and download the full-band source imagery.", "publications": [], "licence-links": [{"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1878, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1772", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:53.862Z", "metadata": {"doi": "10.25504/FAIRsharing.3b36hk", "name": "BindingDB database of measured binding affinities", "status": "ready", "contacts": [{"contact-name": "Michael K. Gilson", "contact-email": "mgilson@health.ucsd.edu", "contact-orcid": "0000-0002-3375-1738"}], "homepage": "http://www.bindingdb.org", "identifier": 1772, "description": "BindingDB enables research by making a growing collection of high-quality, quantitative, protein-ligand binding data findable and usable. Funded by NIGMS/NIH.", "abbreviation": "BindingDB", "access-points": [{"url": "http://bindingdb.org/bind/BindingDBRESTfulAPI.jsp", "name": "RESTful API", "type": "REST"}], "support-links": [{"url": "http://www.bindingdb.org/bind/sendmail.jsp", "type": "Contact form"}, {"url": "http://www.bindingdb.org/bind/info.jsp", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "http://www.bindingdb.org/bind/chemsearch/marvin/PolicyNotice.jsp?all_download=yes", "name": "Download", "type": "data access"}, {"url": "http://www.bindingdb.org/bind/contributedata.jsp", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.bindingdb.org/bind/BySequence.jsp", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012074", "name": "re3data:r3d100012074", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000390", "name": "SciCrunch:RRID:SCR_000390", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000230", "bsg-d000230"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Drug Discovery", "Chemistry", "Life Science", "Computational Chemistry", "Medicinal Chemistry"], "domains": ["Protein interaction", "Drug binding", "Drug interaction", "Affinity", "Protein", "Binding site"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Drug-like compound", "Drug Target"], "countries": ["United States"], "name": "FAIRsharing record for: BindingDB database of measured binding affinities", "abbreviation": "BindingDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.3b36hk", "doi": "10.25504/FAIRsharing.3b36hk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BindingDB enables research by making a growing collection of high-quality, quantitative, protein-ligand binding data findable and usable. Funded by NIGMS/NIH.", "publications": [{"id": 474, "pubmed_id": 17145705, "title": "BindingDB: a web-accessible database of experimentally determined protein-ligand binding affinities.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl999", "authors": "Liu T., Lin Y., Wen X., Jorissen RN., Gilson MK.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl999", "created_at": "2021-09-30T08:23:11.509Z", "updated_at": "2021-09-30T08:23:11.509Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 2.5 Generic (CC BY-NC-ND 2.5)", "licence-id": 175, "link-id": 230, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1787", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T14:57:35.009Z", "metadata": {"doi": "10.25504/FAIRsharing.bgm0mm", "name": "Database of Liver Expression Profile", "status": "deprecated", "contacts": [{"contact-email": "zhuyp@hupo.org.cn"}], "homepage": "http://dblep.hupo.org.cn", "citations": [], "identifier": 1787, "description": "With the rapid progress of the HLPP (Human Liver Proteome Project), a massive quantity of liver proteome expression profile data has been generated. To manage the valuable resource effectively and present it for researchers, a web-based database of liver proteome expression profile named dbLEP has been developed. Currently dbLEP holds two datasets of human fetal liver and HLPP French liver with approximately 17247 proteins and 36990 peptides. Other datasets, such as HLPP Chinese liver and subcellula, C57 mouse liver subcellula will be online soon. Both non-redundant proteins and all possible proteins are presented so that users could understand each dataset comprehensively. Besides the complete identification, dbLEP provides related information like mass spectrums for users to verify the confidence.", "abbreviation": "dbLEP", "support-links": [{"url": "http://hlpic.hupo.org.cn/dblep/faq.jsf", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.oxfordjournals.org/our_journals/nar/database/summary/1170", "type": "Help documentation"}], "data-processes": [{"url": "ftp://61.50.138.119/", "name": "Download", "type": "data access"}, {"url": "http://hlpic.hupo.org.cn/dblep/proteinSearch.jsf", "name": "search", "type": "data access"}], "deprecation-date": "2021-12-06", "deprecation-reason": "This homepage for this resource is no longer valid, and an updated homepage cannot be found. Please let us know if you have any information regarding this resource."}, "legacy-ids": ["biodbcore-000247", "bsg-d000247"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Biomedical Science"], "domains": ["Mass spectrum", "Protein expression profiling", "Protein", "Liver"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Database of Liver Expression Profile", "abbreviation": "dbLEP", "url": "https://fairsharing.org/10.25504/FAIRsharing.bgm0mm", "doi": "10.25504/FAIRsharing.bgm0mm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: With the rapid progress of the HLPP (Human Liver Proteome Project), a massive quantity of liver proteome expression profile data has been generated. To manage the valuable resource effectively and present it for researchers, a web-based database of liver proteome expression profile named dbLEP has been developed. Currently dbLEP holds two datasets of human fetal liver and HLPP French liver with approximately 17247 proteins and 36990 peptides. Other datasets, such as HLPP Chinese liver and subcellula, C57 mouse liver subcellula will be online soon. Both non-redundant proteins and all possible proteins are presented so that users could understand each dataset comprehensively. Besides the complete identification, dbLEP provides related information like mass spectrums for users to verify the confidence.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2243", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-03T01:39:53.000Z", "updated-at": "2021-12-06T10:48:13.443Z", "metadata": {"doi": "10.25504/FAIRsharing.9fmyc7", "name": "The Pain and Interoception Imaging Network", "status": "ready", "homepage": "https://www.painrepository.org/repositories/", "identifier": 2243, "description": "The PAIN Repository is a brain imaging archive for structural and functional magnetic resonance scans (MRI, fMRI and DTI) hosted at UCLA and open to all pain investigators.", "abbreviation": "PAIN", "support-links": [{"url": "https://www.painrepository.org/repositories/news/newsletter/", "type": "Blog/News"}, {"url": "https://www.painrepository.org/repositories/about/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.painrepository.org/repositories/join-pain/membership-information/", "type": "Help documentation"}, {"url": "https://twitter.com/PainRepository", "type": "Twitter"}], "year-creation": 2014, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011913", "name": "re3data:r3d100011913", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000717", "bsg-d000717"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Life Science", "Biomedical Science"], "domains": ["Magnetic resonance imaging", "Imaging", "Functional magnetic resonance imaging", "Diffusion tensor imaging", "Pain"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States", "European Union"], "name": "FAIRsharing record for: The Pain and Interoception Imaging Network", "abbreviation": "PAIN", "url": "https://fairsharing.org/10.25504/FAIRsharing.9fmyc7", "doi": "10.25504/FAIRsharing.9fmyc7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PAIN Repository is a brain imaging archive for structural and functional magnetic resonance scans (MRI, fMRI and DTI) hosted at UCLA and open to all pain investigators.", "publications": [{"id": 1943, "pubmed_id": 25902408, "title": "Pain and Interoception Imaging Network (PAIN): A multimodal, multisite, brain-imaging repository for chronic somatic and visceral pain disorders.", "year": 2015, "url": "http://doi.org/S1053-8119(15)00308-0", "authors": "Jennifer S. Labus, Bruce Naliboff, Lisa Kilpatrick, Cathy Liu, Cody Ashe-McNalley, Ivani R. dos Santos, Mher Alaverdyan, Davis Woodwortha, Arpana Gupta, Benjamin M. Ellingsona, Kirsten Tillisch, Emeran A. Mayer", "journal": "NeuroImage", "doi": "10.1016/j.neuroimage.2015.04.018", "created_at": "2021-09-30T08:25:58.653Z", "updated_at": "2021-09-30T08:25:58.653Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2380", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-25T09:22:52.000Z", "updated-at": "2021-12-06T10:48:46.737Z", "metadata": {"doi": "10.25504/FAIRsharing.k4yzh", "name": "BCCM/GeneCorner Plasmid Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/GeneCorner", "contact-email": "bccm.genecorner@UGent.be"}], "homepage": "http://www.genecorner.ugent.be/", "identifier": 2380, "description": "The BCCM/GeneCorner Plasmid Collection warrants the long-term storage and distribution of plasmids, microbial host strains and DNA libraries of fundamental, biotechnological, educational or general scientific importance. The focus is on the collection of recombinant plasmids that can replicate in a microbial host strain. BCCM/GeneCorner also accepts natural and genetically modified animal or human cell lines, including hybridomas, as well as other genetic material, in the safe deposit and patent deposit collections.", "abbreviation": "BCCM/GeneCorner", "year-creation": 1977, "data-processes": [{"url": "http://www.genecorner.ugent.be/Supply.html", "name": "Search hub for plasmids, host strains, DNA libraries,...", "type": "data access"}, {"url": "http://bccm.belspo.be/catalogues/genecorner-plasmids-catalogue-search", "name": "Plasmid catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/catalogues/genecorner-dna-libraries", "name": "DNA libraries catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/catalogues/genecorner-orfeome-entry-plasmids", "name": "Human ORFeome catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/catalogues/shrna-libraries", "name": "shRNA catalogue", "type": "data access"}, {"url": "http://www.genecorner.ugent.be/Deposit_external.html", "name": "Plasmid and host strain public deposit", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#patent-deposit", "name": "Patent deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#safe-deposit", "name": "Safe deposits of biological materials", "type": "data curation"}], "associated-tools": [{"url": "http://www.genecorner.ugent.be/sms.html", "name": "Sequence Manipulation Suite"}, {"url": "http://www.genomecompiler.com/", "name": "Genome Compiler"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013667", "name": "re3data:r3d100013667", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007193", "name": "SciCrunch:RRID:SCR_007193", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000859", "bsg-d000859"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Cell line", "Hybridoma", "Plasmid", "Host"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/GeneCorner Plasmid Collection", "abbreviation": "BCCM/GeneCorner", "url": "https://fairsharing.org/10.25504/FAIRsharing.k4yzh", "doi": "10.25504/FAIRsharing.k4yzh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BCCM/GeneCorner Plasmid Collection warrants the long-term storage and distribution of plasmids, microbial host strains and DNA libraries of fundamental, biotechnological, educational or general scientific importance. The focus is on the collection of recombinant plasmids that can replicate in a microbial host strain. BCCM/GeneCorner also accepts natural and genetically modified animal or human cell lines, including hybridomas, as well as other genetic material, in the safe deposit and patent deposit collections.", "publications": [{"id": 1986, "pubmed_id": 27177818, "title": "Generation of a new Gateway-compatible inducible lentiviral vector platform allowing easy derivation of co-transduced cells.", "year": 2016, "url": "http://doi.org/10.2144/000114417", "authors": "De Groote P,Grootjans S,Lippens S,Eichperger C,Leurs K,Kahr I,Tanghe G,Bruggeman I,De Schamphelaire W,Urwyler C,Vandenabeele P,Haustraete J,Declercq W", "journal": "Biotechniques", "doi": "10.2144/000114417", "created_at": "2021-09-30T08:26:03.549Z", "updated_at": "2021-09-30T08:26:03.549Z"}, {"id": 2730, "pubmed_id": 25882545, "title": "Role of the Bacterial Type VI Secretion System in the Modulation of Mammalian Host Cell Immunity.", "year": 2015, "url": "http://doi.org/10.2174/0929867322666150417123744", "authors": "De Ceuleneer M,Vanhoucke M,Beyaert R", "journal": "Curr Med Chem", "doi": "10.2174/0929867322666150417123744", "created_at": "2021-09-30T08:27:35.297Z", "updated_at": "2021-09-30T08:27:35.297Z"}], "licence-links": [{"licence-name": "BCCM Material Accession Agreement (MAA) F475A", "licence-id": 61, "link-id": 209, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 211, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3171", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-19T09:26:49.000Z", "updated-at": "2021-12-06T10:49:16.616Z", "metadata": {"doi": "10.25504/FAIRsharing.tIqykQ", "name": "Global Collaboration Engine", "status": "ready", "contacts": [{"contact-name": "Erle C. Ellis", "contact-email": "ece@umbc.edu"}], "homepage": "http://globe.umbc.edu/", "identifier": 3171, "description": "GLOBE (Global Collaboration Engine) is an online collaborative environment that enables land change researchers to share, compare and integrate local and regional studies with global data to assess the global relevance of their work.", "abbreviation": "GLOBE", "support-links": [{"url": "http://globe.umbc.edu/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "http://globe.umbc.edu/faqs/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://globe.umbc.edu/forum/", "name": "GLOBE Forum", "type": "Forum"}, {"url": "http://globe.umbc.edu/tutorials/tutorial-enhanced-case-search-page/", "name": "Search Help", "type": "Help documentation"}, {"url": "http://globe.umbc.edu/documentation/land-change-meta-studies-in-globe-v1/", "name": "Selected Case Studies", "type": "Help documentation"}, {"url": "http://globe.umbc.edu/documentation-overview/", "name": "Documentation Overview", "type": "Help documentation"}, {"url": "http://globe.umbc.edu/about-globe/", "name": "About", "type": "Help documentation"}, {"url": "http://globe.umbc.edu/about-globe/benefits-of-globe/", "name": "Benefits of GLOBE", "type": "Help documentation"}, {"url": "https://twitter.com/globalyzer", "name": "@globalyzer", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://globe.umbc.edu/tutorials/bulkupload/", "name": "Bulk Upload", "type": "data curation"}, {"url": "http://globe.umbc.edu/app//#/manager/cases/search", "name": "Search", "type": "data access"}, {"url": "http://globe.umbc.edu/app//#/analysis/similarity/saved/sample", "name": "Similarity Analysis", "type": "data access"}, {"url": "http://globe.umbc.edu/app//#/analysis/rep/saved/sample", "name": "Representativeness Analysis", "type": "data access"}, {"url": "http://globe.umbc.edu/app//#/analysis/global-variables", "name": "Global Variable Explorer", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011665", "name": "re3data:r3d100011665", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001682", "bsg-d001682"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Population Dynamics", "Ecology", "Agriculture", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Land Change Science"], "countries": ["United States", "Switzerland"], "name": "FAIRsharing record for: Global Collaboration Engine", "abbreviation": "GLOBE", "url": "https://fairsharing.org/10.25504/FAIRsharing.tIqykQ", "doi": "10.25504/FAIRsharing.tIqykQ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GLOBE (Global Collaboration Engine) is an online collaborative environment that enables land change researchers to share, compare and integrate local and regional studies with global data to assess the global relevance of their work.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2983", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-27T10:20:08.000Z", "updated-at": "2022-02-08T10:41:02.683Z", "metadata": {"doi": "10.25504/FAIRsharing.6029a3", "name": "World Radiation Monitoring Center - Baseline Surface Radiation Network", "status": "ready", "contacts": [{"contact-name": "Amelie Driemel", "contact-email": "Amelie.Driemel@awi.de", "contact-orcid": "0000-0001-8667-5217"}], "homepage": "https://bsrn.awi.de/", "identifier": 2983, "description": "The World Radiation Monitoring Center (WRMC) is the central archive of the Baseline Surface Radiation Network (BSRN). The BSRN is aimed detecting important changes in the earth's radiation field at the earth's surface which may be related to climate changes. All radiation measurements are stored together with their collocated surface and upper-air meteorological observations and station metadata in an integrated database. In 2004 the BSRN was designated as the global baseline network for surface radiation for the Global Climate Observing System (GCOS). The BSRN stations also contribute to the Global Atmospheric Watch (GAW). Since 2011 the BSRN and the Network for the Detection of Atmospheric Composition Change (NDACC) have reached a formal agreement to become cooperative networks.", "abbreviation": "WRMC-BSRN", "support-links": [{"url": "https://bsrn.awi.de/news/", "name": "News", "type": "Blog/News"}, {"url": "https://bsrn.awi.de/metanavi/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://bsrn.awi.de/other/frequently-asked-questions/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.listserv.dfn.de/sympa/info/bsrn-user", "name": "Communication between the BSRN/WRMC administration and all BSRN user", "type": "Mailing list"}, {"url": "https://en.wikipedia.org/wiki/Baseline_Surface_Radiation_Network", "name": "Wikipedia Entry", "type": "Wikipedia"}, {"url": "https://bsrn.awi.de/meetings/2020/", "name": "Meetings", "type": "Help documentation"}, {"url": "https://bsrn.awi.de/other/manuals/", "name": "Manuals", "type": "Help documentation"}, {"url": "https://bsrn.awi.de/other/movies/", "name": "Movies", "type": "Help documentation"}], "year-creation": 1992, "data-processes": [{"url": "https://bsrn.awi.de/data/data-retrieval-via-pangaea/", "name": "Data retrieval", "type": "data access"}, {"url": "https://bsrn.awi.de/data/data-retrieval-via-ftp/", "name": "FTP Download", "type": "data access"}, {"url": "https://bsrn.awi.de/data/station-to-archive-file-format/", "name": "File format", "type": "data curation"}, {"url": "https://bsrn.awi.de/data/data-input/", "name": "Data input", "type": "data curation"}, {"url": "https://bsrn.awi.de/data/quality-checks/", "name": "Quality checks", "type": "data curation"}, {"url": "https://bsrn.awi.de/data/errata-and-updates/", "name": "Errata and Updates", "type": "data release"}], "associated-tools": [{"url": "https://bsrn.awi.de/software/panplot2/", "name": "PanPlot2"}, {"url": "https://bsrn.awi.de/software/ocean-data-view/", "name": "Ocean Data View"}, {"url": "https://bsrn.awi.de/software/bsrn-toolbox/", "name": "BSRN-ToolBox"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011700", "name": "re3data:r3d100011700", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001489", "bsg-d001489"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Radiation", "Climate", "Radiation effects"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Data"], "countries": ["Germany", "Switzerland"], "name": "FAIRsharing record for: World Radiation Monitoring Center - Baseline Surface Radiation Network", "abbreviation": "WRMC-BSRN", "url": "https://fairsharing.org/10.25504/FAIRsharing.6029a3", "doi": "10.25504/FAIRsharing.6029a3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Radiation Monitoring Center (WRMC) is the central archive of the Baseline Surface Radiation Network (BSRN). The BSRN is aimed detecting important changes in the earth's radiation field at the earth's surface which may be related to climate changes. All radiation measurements are stored together with their collocated surface and upper-air meteorological observations and station metadata in an integrated database. In 2004 the BSRN was designated as the global baseline network for surface radiation for the Global Climate Observing System (GCOS). The BSRN stations also contribute to the Global Atmospheric Watch (GAW). Since 2011 the BSRN and the Network for the Detection of Atmospheric Composition Change (NDACC) have reached a formal agreement to become cooperative networks.", "publications": [], "licence-links": [{"licence-name": "WRMC Data Privacy Policy", "licence-id": 873, "link-id": 2024, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3184", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-26T20:32:39.000Z", "updated-at": "2021-12-06T10:48:58.248Z", "metadata": {"doi": "10.25504/FAIRsharing.p9SgT0", "name": "Integrated Carbon Observation System Data Portal", "status": "ready", "contacts": [{"contact-name": "ICOS ERIC General Contact", "contact-email": "info@icos-ri.eu"}], "homepage": "https://data.icos-cp.eu/portal/", "identifier": 3184, "description": "ICOS Data Portal provides observational data and elaborated products on greenhouse gases. Data sets can be visualised and downloaded fully and/or partially. ICOS data meets the global standards for atmospheric, ecosystem flux and marine observations of greenhouse gases. All information on observations and the metadata is stored in persistent long-term repositories.", "abbreviation": "ICOS Carbon Portal", "access-points": [{"url": "https://meta.icos-cp.eu/sparqlclient/?type=CSV", "name": "SPARQL Endpoint", "type": "Other"}], "support-links": [{"url": "info@icos-cp.eu", "name": "info@icos-cp.eu", "type": "Support email"}, {"url": "https://www.icos-cp.eu/data-services/about-data-portal/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.icos-cp.eu/data-services/about-data-portal/how-to-use", "name": "How to Use the Data Portal", "type": "Help documentation"}, {"url": "https://data.icos-cp.eu/stats/", "name": "Data Usage Statistics", "type": "Help documentation"}, {"url": "https://www.icos-cp.eu/data-services/data-collection/data-flow", "name": "Data Flow at ICS", "type": "Help documentation"}, {"url": "https://github.com/ICOS-Carbon-Portal", "name": "Github Repository", "type": "Github"}, {"url": "https://www.icos-cp.eu/data-services/tools/upload-data", "name": "How to Deposit Data", "type": "Help documentation"}, {"url": "https://twitter.com/icos_ri", "name": "@icos_ri", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://data.icos-cp.eu/portal/", "name": "Search & Download", "type": "data access"}], "associated-tools": [{"url": "https://www.icos-cp.eu/data-services", "name": "Tool Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012203", "name": "re3data:r3d100012203", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001695", "bsg-d001695"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Atmospheric Science", "Ecosystem Science"], "domains": ["Marine environment", "Ecosystem"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Carbon cycle", "Greenhouse gases", "Marine Chemistry"], "countries": ["European Union"], "name": "FAIRsharing record for: Integrated Carbon Observation System Data Portal", "abbreviation": "ICOS Carbon Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.p9SgT0", "doi": "10.25504/FAIRsharing.p9SgT0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ICOS Data Portal provides observational data and elaborated products on greenhouse gases. Data sets can be visualised and downloaded fully and/or partially. ICOS data meets the global standards for atmospheric, ecosystem flux and marine observations of greenhouse gases. All information on observations and the metadata is stored in persistent long-term repositories.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2274, "relation": "undefined"}, {"licence-name": "ICOS Data Licence", "licence-id": 414, "link-id": 2275, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2931", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-06T14:28:24.000Z", "updated-at": "2021-12-06T10:47:26.580Z", "metadata": {"name": "UMIN Clinical Trials Registry", "status": "ready", "homepage": "https://www.umin.ac.jp/ctr/index.htm", "identifier": 2931, "description": "UMIN-CTR is a Clinical Trials Registry hosted by the japanese University Hospital Medical Information Network (UMIN). UMIN-CTR has been recognized by the ICMJE as an \"acceptable registry\". At a minimum, a paper should be received for consideration by an ICMJE-affiliated journal, if the corresponding trial is registered by the appropriate deadline with UMIN-CTR. The WHO is developing the International Clinical Trials Registry Platform (ICTRP) project in order to collect various clinical trial registry systems throughout the world under fixed standards as \"member registries\" and \"associate registries. \"", "abbreviation": "UMIN-CTR", "support-links": [{"url": "https://www.umin.ac.jp/ctr/UMIN-CTR_e_FAQ.htm", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.umin.ac.jp/ctr/UMIN-CTR_ManagementEng.htm", "name": "Registry Management", "type": "Help documentation"}], "year-creation": 1989, "data-processes": [{"url": "https://upload.umin.ac.jp/cgi-open-bin/ctr_e/index.cgi?function=02", "name": "Search Clinical Trials", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012003", "name": "re3data:r3d100012003", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001434", "bsg-d001434"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Epidemiology", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: UMIN Clinical Trials Registry", "abbreviation": "UMIN-CTR", "url": "https://fairsharing.org/fairsharing_records/2931", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UMIN-CTR is a Clinical Trials Registry hosted by the japanese University Hospital Medical Information Network (UMIN). UMIN-CTR has been recognized by the ICMJE as an \"acceptable registry\". At a minimum, a paper should be received for consideration by an ICMJE-affiliated journal, if the corresponding trial is registered by the appropriate deadline with UMIN-CTR. The WHO is developing the International Clinical Trials Registry Platform (ICTRP) project in order to collect various clinical trial registry systems throughout the world under fixed standards as \"member registries\" and \"associate registries. \"", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1734", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:17.745Z", "metadata": {"doi": "10.25504/FAIRsharing.bc23s", "name": "GlycoProtDB", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "jcggdb-ml@aist.go.jp"}], "homepage": "https://acgg.asia/db/gpdb/", "citations": [], "identifier": 1734, "description": "GlycoProtDB is a glycoprotein database providing information of Asn (N)-glycosylated proteins and their glycosylated site(s), which were constructed by employing a bottom-up strategy using actual glycopeptide sequences identified by LC/MS-based glycoproteomic technologies. The database is searchable using gene ID, gene name, and its description (protein name) as query. Each data sheet of glycproteins is based on a single amino acid sequence in Wormpep database for C.elegans and NCBI Refseq database for mouse. The sheet presents actually detected N-glycosylation site(s) which are displayed each capturing methods of glycopeptide subset, e.g., lectins Concanavalin A, wheat germ agglutinin (WGA), or HILIC (hydrophilic interaction chromatography), as well as potential N-glycosylation sites (NX[STC], X\u2260P). Protein sequences, which have common glycopeptide sequence(s), are linked each other.", "abbreviation": "GPDB", "data-curation": {}, "support-links": [{"url": "https://acgg.asia/db/gpdb/index?doc_no=7", "name": "Data Information", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://acgg.asia/db/gpdb/search", "name": "search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000191", "bsg-d000191"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Glycomics"], "domains": ["Mass spectrum", "Chromatography", "Protein"], "taxonomies": ["Caenorhabditis elegans", "Mus musculus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: GlycoProtDB", "abbreviation": "GPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bc23s", "doi": "10.25504/FAIRsharing.bc23s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlycoProtDB is a glycoprotein database providing information of Asn (N)-glycosylated proteins and their glycosylated site(s), which were constructed by employing a bottom-up strategy using actual glycopeptide sequences identified by LC/MS-based glycoproteomic technologies. The database is searchable using gene ID, gene name, and its description (protein name) as query. Each data sheet of glycproteins is based on a single amino acid sequence in Wormpep database for C.elegans and NCBI Refseq database for mouse. The sheet presents actually detected N-glycosylation site(s) which are displayed each capturing methods of glycopeptide subset, e.g., lectins Concanavalin A, wheat germ agglutinin (WGA), or HILIC (hydrophilic interaction chromatography), as well as potential N-glycosylation sites (NX[STC], X\u2260P). Protein sequences, which have common glycopeptide sequence(s), are linked each other.", "publications": [{"id": 199, "pubmed_id": 22823882, "title": "Large-scale Identification of N-Glycosylated Proteins of Mouse Tissues and Construction of a Glycoprotein Database, GlycoProtDB", "year": 2012, "url": "http://doi.org/10.1021/pr300346c", "authors": "Kaji H. et al", "journal": "Journal of Proteome", "doi": "10.1021/pr300346c", "created_at": "2021-09-30T08:22:41.772Z", "updated_at": "2021-09-30T08:22:41.772Z"}], "licence-links": [{"licence-name": "Attribution-NonCommercial-ShareAlike 2.1 Japan (CC BY-NC-SA 2.1 JP)", "licence-id": 887, "link-id": 2493, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2722", "type": "fairsharing-records", "attributes": {"created-at": "2019-01-09T09:45:09.000Z", "updated-at": "2022-02-10T13:57:59.818Z", "metadata": {"doi": "10.25504/FAIRsharing.9vT2Wg", "name": "BioCatalogue", "status": "deprecated", "contacts": [{"contact-name": "BioCatalogue Helpdesk", "contact-email": "contact@biocatalogue.org"}], "homepage": "https://esciencelab.org.uk/products/biocatalogue/", "citations": [{"doi": "10.1093/nar/gkq394", "pubmed-id": 20484378, "publication-id": 483}], "identifier": 2722, "description": "The BioCatalogue provided a common interface for registering, browsing and annotating Web Services to the Life Science community. Services in the BioCatalogue could be described and searched in multiple ways based upon their technical types, bioinformatics categories, user tags, service providers or data inputs and outputs. They were also subject to constant monitoring, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. The system was accessible via a human-readable \u2018Web 2.0\u2019-style interface and a programmatic Web Service interface. The BioCatalogue followed a community approach in which all services can be registered, browsed and incrementally documented with annotations by any member of the scientific community.", "abbreviation": "BioCatalogue", "access-points": [{"url": "https://www.biocatalogue.org/wiki/doku.php?id=public:api", "name": "BioCatalogue REST API", "type": "REST"}], "support-links": [{"url": "https://www.biocatalogue.org/contact", "name": "BioCatalogue Contact Form", "type": "Contact form"}, {"url": "https://www.biocatalogue.org/stats", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://www.biocatalogue.org/services", "name": "Browse Services", "type": "data access"}, {"url": "https://www.biocatalogue.org/services/new", "name": "Register a Service", "type": "data curation"}, {"url": "https://www.biocatalogue.org/service_providers", "name": "Browse Service Providers", "type": "data access"}, {"url": "https://www.biocatalogue.org/search/by_data", "name": "Search by Data", "type": "data access"}, {"url": "https://www.biocatalogue.org/latest", "name": "Browse Most Recently Added", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "BioCatalogue was retired in September 2021"}, "legacy-ids": ["biodbcore-001220", "bsg-d001220"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics"], "domains": ["Web service"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: BioCatalogue", "abbreviation": "BioCatalogue", "url": "https://fairsharing.org/10.25504/FAIRsharing.9vT2Wg", "doi": "10.25504/FAIRsharing.9vT2Wg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BioCatalogue provided a common interface for registering, browsing and annotating Web Services to the Life Science community. Services in the BioCatalogue could be described and searched in multiple ways based upon their technical types, bioinformatics categories, user tags, service providers or data inputs and outputs. They were also subject to constant monitoring, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. The system was accessible via a human-readable \u2018Web 2.0\u2019-style interface and a programmatic Web Service interface. The BioCatalogue followed a community approach in which all services can be registered, browsed and incrementally documented with annotations by any member of the scientific community.", "publications": [{"id": 483, "pubmed_id": 20484378, "title": "BioCatalogue: a universal catalogue of web services for the life sciences.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq394", "authors": "Bhagat J,Tanoh F,Nzuobontane E,Laurent T,Orlowski J,Roos M,Wolstencroft K,Aleksejevs S,Stevens R,Pettifer S,Lopez R,Goble CA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq394", "created_at": "2021-09-30T08:23:12.531Z", "updated_at": "2021-09-30T11:28:46.700Z"}], "licence-links": [{"licence-name": "BioCatalogue Terms of Use", "licence-id": 77, "link-id": 2350, "relation": "undefined"}, {"licence-name": "Creative Commons (CC) Copyright-Only Dedication (based on United States law) or Public Domain Certification", "licence-id": 197, "link-id": 2351, "relation": "undefined"}, {"licence-name": "BioCatalogue BSD License", "licence-id": 76, "link-id": 2352, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3719", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-06T14:17:27.085Z", "updated-at": "2022-01-06T14:27:53.276Z", "metadata": {"name": "MIRRI Information System Catalog", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@mirri.org", "contact-orcid": null}, {"contact-name": "Vincent Robert", "contact-email": "v.robert@wi.knaw.nl", "contact-orcid": null}], "homepage": "https://catalog.mirri.org/page/Strains_catalog_query", "citations": [], "identifier": 3719, "description": "The MIRRI Information System (MIRRI-IS) provides access to high-quality microbial resources made available by its 50+ partner biorepositories, covering all types of microorganisms, such as bacteria (and their cognate bacteriophages), archaea, fungi (including yeasts), eukaryotic viruses, micro-algae and other microbiological material such as cell lines, natural or constructs carrying plasmids, DNA libraries, and genomic DNA. It also provide users with all relevant information and associated contextual data (metadata) about the microbial resources, as available \u2013 e.g. taxonomy, ecology, pathogenicity, morphology, physiology, chemical characterization, DNA barcoding or genomics.", "abbreviation": "MIRRI-IS", "data-curation": {}, "support-links": [{"url": "https://catalog.mirri.org/page/Help", "name": "Help Videos", "type": "Video"}], "year-creation": null, "data-processes": [{"url": "https://catalog.mirri.org/page/Strains_catalog_query", "name": "Search and Browse Strains", "type": "data access"}, {"url": "https://catalog.mirri.org/page/Taxonomy%20query", "name": "Search and Browse Taxonomy", "type": "data access"}, {"url": "https://catalog.mirri.org/search", "name": "General Search", "type": "data access"}, {"url": "https://catalog.mirri.org/page/PairwiseDNAID", "name": "Compute Pairwise Alignments", "type": "data access"}, {"url": "https://catalog.mirri.org/page/Index%201", "name": "Browse All", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "https://www.mirri.org/about/legal-regulatory/", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.mirri.org/mirri-microbial-resources/", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Microbiology"], "domains": ["Plasmid"], "taxonomies": ["Archaea", "Bacteria", "Fungi", "Viruses"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: MIRRI Information System Catalog", "abbreviation": "MIRRI-IS", "url": "https://fairsharing.org/fairsharing_records/3719", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MIRRI Information System (MIRRI-IS) provides access to high-quality microbial resources made available by its 50+ partner biorepositories, covering all types of microorganisms, such as bacteria (and their cognate bacteriophages), archaea, fungi (including yeasts), eukaryotic viruses, micro-algae and other microbiological material such as cell lines, natural or constructs carrying plasmids, DNA libraries, and genomic DNA. It also provide users with all relevant information and associated contextual data (metadata) about the microbial resources, as available \u2013 e.g. taxonomy, ecology, pathogenicity, morphology, physiology, chemical characterization, DNA barcoding or genomics.", "publications": [], "licence-links": [{"licence-name": "MIRRI-IS Legal & Regulatory Information", "licence-id": 901, "link-id": 2554, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3322", "type": "fairsharing-records", "attributes": {"created-at": "2021-04-26T13:36:25.000Z", "updated-at": "2021-12-06T10:47:43.010Z", "metadata": {"name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "status": "ready", "contacts": [{"contact-name": "Yaroslav Halchenko", "contact-email": "yoh@dartmouth.edu", "contact-orcid": "0000-0003-3456-2493"}], "homepage": "https://www.dandiarchive.org", "identifier": 3322, "description": "The BRAIN Initiative archive for publishing and sharing cellular neurophysiology data including electrophysiology, optophysiology, and behavioral time-series, and images from immunostaining experiments.", "abbreviation": "DANDI", "access-points": [{"url": "https://api.dandiarchive.org/api/", "name": "Full featured interface for interacting with the archive. https://api.dandiarchive.org/swagger/ provides an overview and interface for interaction with the API ATM.", "type": "REST"}], "support-links": [{"url": "https://app.slack.com/client/TMAFYPS0H/", "name": "Slack", "type": "Forum"}, {"url": "https://www.dandiarchive.org/handbook/", "name": "DANDI Handbook", "type": "Help documentation"}, {"url": "https://github.com/dandi/schema", "name": "Repository with releases of DANDI metadata schema", "type": "Github"}, {"url": "https://twitter.com/dandiarchive", "name": "Twitter", "type": "Twitter"}], "year-creation": 2019, "data-processes": [{"url": "https://dandiarchive.org/", "name": "Web interface", "type": "data access"}, {"url": "https://dandiarchive.org/", "name": "Web interface", "type": "data release"}, {"url": "https://dandiarchive.org/", "name": "Web interface", "type": "data versioning"}, {"name": "DANDI client", "type": "data access"}, {"name": "DANDI client", "type": "data curation"}, {"url": "https://github.com/dandi/dandisets", "name": "DataLad datasets", "type": "data access"}, {"url": "https://github.com/dandi/dandisets", "name": "DataLad datasets", "type": "data versioning"}], "associated-tools": [{"url": "https://pypi.org/project/dandi", "name": "DANDI Client 0.14.2"}, {"url": "http://datalad.org", "name": "DataLad 0.14.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013638", "name": "re3data:r3d100013638", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_017571", "name": "SciCrunch:RRID:SCR_017571", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001838", "bsg-d001838"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: DANDI: Distributed Archives for Neurophysiology Data Integration", "abbreviation": "DANDI", "url": "https://fairsharing.org/fairsharing_records/3322", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BRAIN Initiative archive for publishing and sharing cellular neurophysiology data including electrophysiology, optophysiology, and behavioral time-series, and images from immunostaining experiments.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 176, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 178, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 179, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 188, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2423", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T21:29:13.000Z", "updated-at": "2021-12-06T10:48:18.349Z", "metadata": {"doi": "10.25504/FAIRsharing.be9dj8", "name": "Interdisciplinary Earth Data Alliance", "status": "ready", "contacts": [{"contact-name": "Kerstin Lehnert", "contact-email": "lehnert@ldeo.columbia.edu", "contact-orcid": "0000-0001-7036-1977"}], "homepage": "https://www.iedadata.org/", "citations": [], "identifier": 2423, "description": "IEDA systems serve as primary community data collections for global geochemistry and marine Geoscience research to support the preservation, discovery, retrieval, and analysis of a wide range of observational field and analytical data types, enabling these data to be discovered and reused by a diverse community now and in the future. IEDA provides free and open access to all data holdings.", "abbreviation": "IEDA", "access-points": [{"url": "https://www.iedadata.org/help/web-services/", "name": "Web Services", "type": "Other"}], "support-links": [{"url": "https://www.iedadata.org/news/", "name": "News", "type": "Blog/News"}, {"url": "info@iedadata.org", "type": "Support email"}, {"url": "https://www.iedadata.org/frequently-asked-questions/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.iedadata.org/help/", "type": "Help documentation"}, {"url": "https://www.iedadata.org/help/data-management-overview/", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://www.iedadata.org/contribute", "name": "Submit", "type": "data curation"}, {"url": "http://app.iedadata.org/databrowser/", "name": "Browse", "type": "data access"}, {"url": "http://www.iedadata.org/collections", "name": "Access", "type": "data access"}, {"url": "http://www.iedadata.org/analysis", "name": "Analyse", "type": "data access"}], "associated-tools": [{"url": "http://www.geomapapp.org/", "name": "GeoMapApp 3.6.10"}, {"url": "https://www.gmrt.org/GMRTMapTool/", "name": "GMRT MapTool"}, {"url": "https://www.iedadata.org/dmp/", "name": "Data Management Plan (DMP) Tool"}, {"url": "http://app.iedadata.org/dcr/report.php", "name": "Data Compliance Reporting Tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010578", "name": "re3data:r3d100010578", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000905", "bsg-d000905"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Interdisciplinary Earth Data Alliance", "abbreviation": "IEDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.be9dj8", "doi": "10.25504/FAIRsharing.be9dj8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IEDA systems serve as primary community data collections for global geochemistry and marine Geoscience research to support the preservation, discovery, retrieval, and analysis of a wide range of observational field and analytical data types, enabling these data to be discovered and reused by a diverse community now and in the future. IEDA provides free and open access to all data holdings.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2806", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-24T19:07:28.000Z", "updated-at": "2021-12-06T10:47:24.440Z", "metadata": {"name": "Civil Aircraft for the Regular Investigation of the atmosphere Based on an Instrument Container", "status": "ready", "contacts": [{"contact-name": "Andreas Zahn", "contact-email": "andreas.zahn@kit.edu"}], "homepage": "http://www.caribic-atmospheric.com/Home.php", "identifier": 2806, "description": "This resource collects data on the composition of the atmosphere using passenger jet airliners. This information supports scientific research on changes in the atmosphere and particle composition. Data is available after registration.", "abbreviation": "CARIBIC", "year-creation": 2006, "data-processes": [{"url": "http://www.caribic-atmospheric.com/Data.php", "name": "Access", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011956", "name": "re3data:r3d100011956", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001305", "bsg-d001305"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": [], "user-defined-tags": ["Natural Resources, Earth and Environment"], "countries": ["European Union", "Germany"], "name": "FAIRsharing record for: Civil Aircraft for the Regular Investigation of the atmosphere Based on an Instrument Container", "abbreviation": "CARIBIC", "url": "https://fairsharing.org/fairsharing_records/2806", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource collects data on the composition of the atmosphere using passenger jet airliners. This information supports scientific research on changes in the atmosphere and particle composition. Data is available after registration.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2415", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-07T01:29:08.000Z", "updated-at": "2021-12-06T10:49:15.715Z", "metadata": {"doi": "10.25504/FAIRsharing.tdhkc6", "name": "Genome Sequence Archive", "status": "ready", "contacts": [{"contact-name": "GSA General Contact", "contact-email": "gsa@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/gsa/", "citations": [{"doi": "10.1016/j.gpb.2017.01.001", "pubmed-id": 28387199, "publication-id": 2806}], "identifier": 2415, "description": "GSA is a data repository specialized for archiving raw sequence reads. It supports data generated from a variety of sequencing platforms ranging from Sanger sequencing machines to single-cell sequencing machines and provides data storing and sharing services free of charge for worldwide scientific communities. In addition to raw sequencing data, GSA also accommodates secondary analyzed files in acceptable formats (like BAM, VCF). Its user-friendly web interfaces simplify data entry and submitted data are roughly organized as two parts, viz., Metadata and File, where the former can be further assorted into BioProject, BioSample, Experiment and Run, and the latter contains raw sequence reads.", "abbreviation": "GSA", "support-links": [{"url": "https://bigd.big.ac.cn/gsa/document/Handbook-GSA_2.1.us.pdf", "name": "Handbook", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/gsa/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://bigd.big.ac.cn/search?dbId=gsa", "name": "Search", "type": "data access"}, {"url": "http://bigd.big.ac.cn/gsub/submit/gsa/list", "name": "Submit", "type": "data curation"}, {"url": "ftp://download.big.ac.cn/gsa/", "name": "Download", "type": "data release"}, {"url": "https://bigd.big.ac.cn/gsa/browse", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012342", "name": "re3data:r3d100012342", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000897", "bsg-d000897"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics"], "domains": ["Nucleic acid sequence", "Sequencing read"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Genome Sequence Archive", "abbreviation": "GSA", "url": "https://fairsharing.org/10.25504/FAIRsharing.tdhkc6", "doi": "10.25504/FAIRsharing.tdhkc6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GSA is a data repository specialized for archiving raw sequence reads. It supports data generated from a variety of sequencing platforms ranging from Sanger sequencing machines to single-cell sequencing machines and provides data storing and sharing services free of charge for worldwide scientific communities. In addition to raw sequencing data, GSA also accommodates secondary analyzed files in acceptable formats (like BAM, VCF). Its user-friendly web interfaces simplify data entry and submitted data are roughly organized as two parts, viz., Metadata and File, where the former can be further assorted into BioProject, BioSample, Experiment and Run, and the latter contains raw sequence reads.", "publications": [{"id": 632, "pubmed_id": 27899658, "title": "The BIG Data Center: from deposition to integration to translation.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1060", "authors": "BIG Data Center Members", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1060", "created_at": "2021-09-30T08:23:29.482Z", "updated_at": "2021-09-30T11:28:48.618Z"}, {"id": 2806, "pubmed_id": 28387199, "title": "GSA: Genome Sequence Archive", "year": 2017, "url": "http://doi.org/S1672-0229(17)30002-5", "authors": "Wang Y,Song F,Zhu J,Zhang S,Yang Y,Chen T,Tang B,Dong L,Ding N,Zhang Q,Bai Z,Dong X,Chen H,Sun M,Zhai S,Sun Y,Yu L,Lan L,Xiao J,Fang X,Lei H,Zhang Z,Zhao W", "journal": "Genomics Proteomics Bioinformatics", "doi": "10.1016/j.gpb.2017.01.001", "created_at": "2021-09-30T08:27:45.063Z", "updated_at": "2021-09-30T08:27:45.063Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1360, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2289", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-21T11:04:55.000Z", "updated-at": "2021-11-24T13:19:31.766Z", "metadata": {"doi": "10.25504/FAIRsharing.4vthvs", "name": "Coral Trait Database", "status": "ready", "contacts": [{"contact-name": "Joshua Madin", "contact-email": "coraltraits@gmail.com"}], "homepage": "https://coraltraits.org/", "identifier": 2289, "description": "The Coral Trait Database is a growing compilation of scleractinian coral life history trait, phylogenetic and biogeographic data. As of today, there are 68247 coral observations with 105243 trait entries of 147 traits for 1548 coral species in the database. Most of these entries are for shallow-water, reef-building species.", "support-links": [{"url": "https://coraltraits.org/procedures", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://coraltraits.org/releases", "name": "Data download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000763", "bsg-d000763"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Geographical location", "Marine coral reef biome", "Marine environment"], "taxonomies": ["Scleractinia"], "user-defined-tags": [], "countries": ["United Kingdom", "Denmark", "United States", "New Zealand", "Singapore", "Australia"], "name": "FAIRsharing record for: Coral Trait Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.4vthvs", "doi": "10.25504/FAIRsharing.4vthvs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Coral Trait Database is a growing compilation of scleractinian coral life history trait, phylogenetic and biogeographic data. As of today, there are 68247 coral observations with 105243 trait entries of 147 traits for 1548 coral species in the database. Most of these entries are for shallow-water, reef-building species.", "publications": [{"id": 1112, "pubmed_id": 27023900, "title": "The Coral Trait Database, a curated database of trait information for coral species from the global oceans.", "year": 2016, "url": "http://doi.org/10.1038/sdata.2016.17", "authors": "Madin JS,Anderson KD,Andreasen MH,Bridge TC,Cairns SD,Connolly SR,Darling ES,Diaz M,Falster DS,Franklin EC,Gates RD,Hoogenboom MO,Huang D,Keith SA,Kosnik MA,Kuo CY,Lough JM,Lovelock CE,Luiz O,Martinelli J,Mizerek T,Pandolfi JM,Pochon X,Pratchett MS,Putnam HM,Roberts TE,Stat M,Wallace CC,Widman E,Baird AH", "journal": "Sci Data", "doi": "10.1038/sdata.2016.17", "created_at": "2021-09-30T08:24:23.199Z", "updated_at": "2021-09-30T08:24:23.199Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 261, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2481", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-13T18:46:37.000Z", "updated-at": "2021-12-06T10:48:35.652Z", "metadata": {"doi": "10.25504/FAIRsharing.fwg0qf", "name": "BenchSci", "status": "ready", "contacts": [{"contact-name": "Maurice Shen", "contact-email": "maurice@benchsci.com"}], "homepage": "https://www.benchsci.com/", "identifier": 2481, "description": "BenchSci is a free platform designed to help biomedical research scientists quickly and easily identify validated antibodies from publications. Using various filters including techniques, tissue, cell lines, and more, scientists can find out published data along with the antibody that match specific experimental contexts within seconds. Free registration & access for academic research scientists.", "abbreviation": "BenchSci", "support-links": [{"url": "https://blog.benchsci.com/", "type": "Blog/News"}, {"url": "https://www.benchsci.com/news", "name": "Latest news", "type": "Blog/News"}, {"url": "https://www.linkedin.com/company/benchsci", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://www.facebook.com/BenchSci/", "name": "Facebook", "type": "Facebook"}, {"url": "https://knowledge.benchsci.com/", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCLWLNk6VrkHZvyO42AKZtSw", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/BenchSci", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"name": "registration required", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012752", "name": "re3data:r3d100012752", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000963", "bsg-d000963"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunology", "Biomedical Science"], "domains": ["Antibody", "Assay"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: BenchSci", "abbreviation": "BenchSci", "url": "https://fairsharing.org/10.25504/FAIRsharing.fwg0qf", "doi": "10.25504/FAIRsharing.fwg0qf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BenchSci is a free platform designed to help biomedical research scientists quickly and easily identify validated antibodies from publications. Using various filters including techniques, tissue, cell lines, and more, scientists can find out published data along with the antibody that match specific experimental contexts within seconds. Free registration & access for academic research scientists.", "publications": [], "licence-links": [{"licence-name": "BenchSci Terms of Use", "licence-id": 70, "link-id": 778, "relation": "undefined"}, {"licence-name": "BenchSci Privacy Notice", "licence-id": 69, "link-id": 782, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1587", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.230Z", "metadata": {"doi": "10.25504/FAIRsharing.hg2xzw", "name": "GABI-Kat SimpleSearch", "status": "deprecated", "contacts": [{"contact-name": "Bernd Weisshaar", "contact-email": "bernd.weisshaar@uni-bielefeld.de", "contact-orcid": "0000-0002-7635-3473"}], "homepage": "http://www.gabi-kat.de/", "identifier": 1587, "description": "T-DNA insertions in Arabidopsis and their flanking sequence tags.", "abbreviation": "GABI-Kat", "support-links": [{"url": "info@gabi-kat.de", "type": "Support email"}, {"url": "https://www.gabi-kat.de/faq.html", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2001, "data-processes": [{"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "file download(images,tab-delimited)", "type": "data access"}, {"url": "https://www.gabi-kat.de/download.html", "name": "download", "type": "data access"}, {"url": "https://www.gabi-kat.de/db/genehits.php", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available as mentioned on the homepage: 'The GABI-Kat confirmation service closed 2019-12-31.'"}, "legacy-ids": ["biodbcore-000042", "bsg-d000042"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome annotation", "Classification", "T-DNA insert exposure", "Primer", "Flanking region", "Sequence tag", "Insertion"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": ["Flanking Sequence Tags (FST)", "Insertion allele"], "countries": ["Germany"], "name": "FAIRsharing record for: GABI-Kat SimpleSearch", "abbreviation": "GABI-Kat", "url": "https://fairsharing.org/10.25504/FAIRsharing.hg2xzw", "doi": "10.25504/FAIRsharing.hg2xzw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: T-DNA insertions in Arabidopsis and their flanking sequence tags.", "publications": [{"id": 74, "pubmed_id": 18758448, "title": "T-DNA-mediated transfer of Agrobacterium tumefaciens chromosomal DNA into plants.", "year": 2008, "url": "http://doi.org/10.1038/nbt.1491", "authors": "Ulker B., Li Y., Rosso MG., Logemann E., Somssich IE., Weisshaar B.,", "journal": "Nat. Biotechnol.", "doi": "10.1038/nbt.1491", "created_at": "2021-09-30T08:22:28.147Z", "updated_at": "2021-09-30T08:22:28.147Z"}, {"id": 75, "pubmed_id": 17062622, "title": "GABI-Kat SimpleSearch: an Arabidopsis thaliana T-DNA mutant database with detailed information for confirmed insertions.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl753", "authors": "Li Y., Rosso MG., Viehoever P., Weisshaar B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl753", "created_at": "2021-09-30T08:22:28.238Z", "updated_at": "2021-09-30T08:22:28.238Z"}, {"id": 76, "pubmed_id": 14756321, "title": "An Arabidopsis thaliana T-DNA mutagenized population (GABI-Kat) for flanking sequence tag-based reverse genetics.", "year": 2004, "url": "http://doi.org/10.1023/B:PLAN.0000009297.37235.4a", "authors": "Rosso MG., Li Y., Strizhov N., Reiss B., Dekker K., Weisshaar B.,", "journal": "Plant Mol. Biol.", "doi": "10.1023/B:PLAN.0000009297.37235.4a", "created_at": "2021-09-30T08:22:28.380Z", "updated_at": "2021-09-30T08:22:28.380Z"}, {"id": 78, "pubmed_id": 16488113, "title": "Analysis of T-DNA insertion site distribution patterns in Arabidopsis thaliana reveals special features of genes without insertions.", "year": 2006, "url": "http://doi.org/10.1016/j.ygeno.2005.12.010", "authors": "Li Y., Rosso MG., Ulker B., Weisshaar B.,", "journal": "Genomics", "doi": "10.1016/j.ygeno.2005.12.010", "created_at": "2021-09-30T08:22:28.554Z", "updated_at": "2021-09-30T08:22:28.554Z"}, {"id": 79, "pubmed_id": 14682050, "title": "High-throughput generation of sequence indexes from T-DNA mutagenized Arabidopsis thaliana lines.", "year": 2003, "url": "http://doi.org/10.2144/03356st01", "authors": "Strizhov N., Li Y., Rosso MG., Viehoever P., Dekker KA., Weisshaar B.,", "journal": "BioTechniques", "doi": "10.2144/03356st01", "created_at": "2021-09-30T08:22:28.638Z", "updated_at": "2021-09-30T08:22:28.638Z"}, {"id": 80, "pubmed_id": 12874060, "title": "GABI-Kat SimpleSearch: a flanking sequence tag (FST) database for the identification of T-DNA insertion mutants in Arabidopsis thaliana.", "year": 2003, "url": "http://doi.org/10.1093/bioinformatics/btg170", "authors": "Li Y., Rosso MG., Strizhov N., Viehoever P., Weisshaar B.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btg170", "created_at": "2021-09-30T08:22:28.721Z", "updated_at": "2021-09-30T08:22:28.721Z"}, {"id": 1451, "pubmed_id": 22080561, "title": "GABI-Kat SimpleSearch: new features of the Arabidopsis thaliana T-DNA mutant database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1047", "authors": "Kleinboelting N,Huep G,Kloetgen A,Viehoever P,Weisshaar B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1047", "created_at": "2021-09-30T08:25:02.190Z", "updated_at": "2021-09-30T11:29:08.693Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3210", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-25T14:40:24.000Z", "updated-at": "2021-12-06T10:48:14.936Z", "metadata": {"doi": "10.25504/FAIRsharing.9LtMwv", "name": "Adolescent Brain Cognitive Development Data Repository", "status": "ready", "contacts": [{"contact-name": "NDA Helpdesk", "contact-email": "ndahelp@mail.nih.gov"}], "homepage": "https://nda.nih.gov/abcd", "identifier": 3210, "description": "The ABCD Data Repository houses all data generated by the Adolescent Brain Cognitive Development (ABCD) Study. The ABCD Study is a landmark, longitudinal study of brain development and child health. Investigators at 21 sites around the country will measure brain maturation in the context of social, emotional and cognitive development, as well as a variety of health and environmental outcomes. This repository stores data generated by ABCD investigators, serves as a collaborative platform for harmonizing these data, and shares those data with qualified researchers. Please note that, while querying and browsing data is publicly available, all subject-level data is available behind a login.", "abbreviation": "ABCD Data Repository", "access-points": [{"url": "https://nda.nih.gov/tools/apis.html", "name": "ABCD Query API", "type": "REST"}], "support-links": [{"url": "https://nda.nih.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://nda.nih.gov/abcd/query/abcd-release-faqs.html", "name": "ABCD FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nda.nih.gov/training/module?trainingModuleId=training.access&slideId=slide.access.intro", "name": "How to Access Shared Data", "type": "Help documentation"}, {"url": "https://nda.nih.gov/abcd/results", "name": "Using and Acknowledging ABCD", "type": "Help documentation"}, {"url": "https://nda.nih.gov/abcd/request-access", "name": "Requesting Download Access", "type": "Help documentation"}], "data-processes": [{"url": "https://nda.nih.gov/general-query.html?q=query=collections%20~and~%20orderBy=id%20~and~%20orderDirection=Ascending%20~and~%20dataRepositories=Adolescent%20Brain%20Cognitive%20Development", "name": "Search & Query ABCD", "type": "data access"}, {"url": "https://nda.nih.gov/general-query.html?q=query=data-structure%20~and~%20dataSources=ABCD%20Release%203.0%20~and~%20orderBy=shortName%20~and~%20orderDirection=Ascending%20~and~%20resultsView=table-view", "name": "Browse ABCD Data Dictionary", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012656", "name": "re3data:r3d100012656", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001723", "bsg-d001723"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Developmental Neurobiology", "Cognitive Neuroscience", "Pediatrics"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Adolescent Brain Cognitive Development Data Repository", "abbreviation": "ABCD Data Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.9LtMwv", "doi": "10.25504/FAIRsharing.9LtMwv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ABCD Data Repository houses all data generated by the Adolescent Brain Cognitive Development (ABCD) Study. The ABCD Study is a landmark, longitudinal study of brain development and child health. Investigators at 21 sites around the country will measure brain maturation in the context of social, emotional and cognitive development, as well as a variety of health and environmental outcomes. This repository stores data generated by ABCD investigators, serves as a collaborative platform for harmonizing these data, and shares those data with qualified researchers. Please note that, while querying and browsing data is publicly available, all subject-level data is available behind a login.", "publications": [], "licence-links": [{"licence-name": "NDA Data Policy", "licence-id": 565, "link-id": 2148, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3020", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-27T13:06:24.000Z", "updated-at": "2021-12-06T10:47:30.493Z", "metadata": {"name": "Northern California Earthquake Data Center", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ncedcinfo@ncedc.org"}], "homepage": "http://ncedc.org/", "identifier": 3020, "description": "The Northern California Earthquake Data Center (NCEDC) is an archive and distribution center for geophysical data relating to earthquakes in northern and central California.", "abbreviation": "NCEDC", "access-points": [{"url": "http://ncedc.org/web-services-home.html", "name": "NCEDC web services", "type": "Other"}], "support-links": [{"url": "http://ncedc.org/blog/", "type": "Blog/News"}, {"url": "http://ncedc.org/comments.html", "type": "Contact form"}], "year-creation": 1995, "data-processes": [{"url": "http://ncedc.org/SeismiQuery/", "name": "SeismiQuery", "type": "data access"}, {"url": "http://ncedc.org/ncedc/about-the-dart.html", "name": "Data Available in Real Time", "type": "data access"}, {"url": "http://ncedc.org/bard.overview.html", "name": "Bay Area Regional Deformation Network", "type": "data access"}, {"url": "http://ncedc.org/usgs-gps/", "name": "USGS GPS Data", "type": "data access"}, {"url": "http://ncedc.org/ncedc/other-geophysical-datasets.html", "name": "Other Geophysical Datasets", "type": "data access"}], "associated-tools": [{"url": "http://ncedc.org/ncedc/download-software.html", "name": "Download Software"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011679", "name": "re3data:r3d100011679", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001528", "bsg-d001528"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake", "GPS", "Seismology"], "countries": ["United States"], "name": "FAIRsharing record for: Northern California Earthquake Data Center", "abbreviation": "NCEDC", "url": "https://fairsharing.org/fairsharing_records/3020", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Northern California Earthquake Data Center (NCEDC) is an archive and distribution center for geophysical data relating to earthquakes in northern and central California.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3202", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-20T12:12:33.000Z", "updated-at": "2021-12-06T10:47:38.941Z", "metadata": {"name": "Data Integration and Analysis System", "status": "ready", "contacts": [{"contact-name": "DIAS General Contact", "contact-email": "dias-office@diasjp.net"}], "homepage": "https://www.diasjp.net/en/", "identifier": 3202, "description": "The Data Integration and Analysis System (DIAS) was created to collect and store earth observation data; to analyze such data in combination with socio-economic data, and convert data into information useful for crisis management with respect to global-scale environmental disasters, and other threats; and to make this information available within Japan and overseas.", "abbreviation": "DIAS", "support-links": [{"url": "http://search.diasjp.net/en/about.html", "name": "Contact Form", "type": "Contact form"}, {"url": "https://diasjp.net/en/guide/", "name": "User Guide", "type": "Help documentation"}, {"url": "http://search.diasjp.net/en/manual.html", "name": "Search Help", "type": "Help documentation"}, {"url": "https://diasjp.net/en/about/", "name": "About", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://search.diasjp.net/en", "name": "Search", "type": "data access"}, {"url": "http://data.diasjp.net/dl/index_en.html", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://diasjp.net/en/apps_search/", "name": "Data and Apps"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012419", "name": "re3data:r3d100012419", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001715", "bsg-d001715"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geography", "Earth Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Disaster"], "countries": ["Japan"], "name": "FAIRsharing record for: Data Integration and Analysis System", "abbreviation": "DIAS", "url": "https://fairsharing.org/fairsharing_records/3202", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data Integration and Analysis System (DIAS) was created to collect and store earth observation data; to analyze such data in combination with socio-economic data, and convert data into information useful for crisis management with respect to global-scale environmental disasters, and other threats; and to make this information available within Japan and overseas.", "publications": [], "licence-links": [{"licence-name": "DIAS Terms of Service", "licence-id": 239, "link-id": 2105, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2240", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-27T10:02:47.000Z", "updated-at": "2021-11-24T13:19:30.199Z", "metadata": {"doi": "10.25504/FAIRsharing.k5a3yt", "name": "Big Data Nucleic Acid Simulations Database", "status": "ready", "contacts": [{"contact-name": "Adam Hospital Gasch", "contact-email": "adam.hospital@irbbarcelona.org", "contact-orcid": "0000-0002-8291-8071"}], "homepage": "http://mmb.irbbarcelona.org/BIGNASim", "identifier": 2240, "description": "Atomistic Molecular Dynamics Simulation Trajectories and Analyses of Nucleic Acid Structures. BIGNASim is a complete platform to hold and analyse nucleic acids simulation data, based on two noSQL database engines: Cassandra to hold trajectory data and MongoDB for analyses and metadata. Most common analyses (helical parameters, NMR observables, sitffness, hydrogen bonding and stacking energies and geometries) are pre-calculated for the trajectories available and shown using the interactive visualization offered by NAFlex interface. Additionaly, whole trajectories, fragments or meta-trajectories can be analysed or downloaded for further in-house processing.", "abbreviation": "BIGNASim", "support-links": [{"url": "http://mmb.irbbarcelona.org/BigNASim/help.php", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://mmb.irbbarcelona.org/BigNASim/browse.php", "name": "browse", "type": "data access"}, {"url": "http://mmb.irbbarcelona.org/BigNASim/newSearch.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://mmb.irbbarcelona.org/NAFlex", "name": "NAFlex 1"}]}, "legacy-ids": ["biodbcore-000714", "bsg-d000714"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "Modeling and simulation", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Big Data Nucleic Acid Simulations Database", "abbreviation": "BIGNASim", "url": "https://fairsharing.org/10.25504/FAIRsharing.k5a3yt", "doi": "10.25504/FAIRsharing.k5a3yt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Atomistic Molecular Dynamics Simulation Trajectories and Analyses of Nucleic Acid Structures. BIGNASim is a complete platform to hold and analyse nucleic acids simulation data, based on two noSQL database engines: Cassandra to hold trajectory data and MongoDB for analyses and metadata. Most common analyses (helical parameters, NMR observables, sitffness, hydrogen bonding and stacking energies and geometries) are pre-calculated for the trajectories available and shown using the interactive visualization offered by NAFlex interface. Additionaly, whole trajectories, fragments or meta-trajectories can be analysed or downloaded for further in-house processing.", "publications": [{"id": 876, "pubmed_id": null, "title": "BIGNASim: a NoSQL database structure and analysis portal for nucleic acids simulation data", "year": 2015, "url": "http://mmb.irbbarcelona.org/BigNASim/dat/SupplMat.pdf", "authors": "Adam Hospital, Pau Andrio, Cesare Cugnasco, Laia Codo, Yolanda Becerra, Pablo D. Dans, Federica Battistini, Jordi Torres, Ramon Go\u00f1\u00ed, Modesto Orozco and Josep Llu\u00eds Gelp\u00ed", "journal": "Nucleic Acids Research, Database Issue", "doi": "10.1093/nar/gkv1301", "created_at": "2021-09-30T08:23:56.721Z", "updated_at": "2021-09-30T08:23:56.721Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2999", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-15T14:03:58.000Z", "updated-at": "2021-12-06T10:47:29.420Z", "metadata": {"name": "Cornell University Geospatial Information Repository", "status": "ready", "contacts": [{"contact-name": "Darcy A. Branchini", "contact-email": "dad284@cornell.edu"}], "homepage": "https://cugir.library.cornell.edu/", "identifier": 2999, "description": "CUGIR, the Cornell University Geospatial Information Repository, provides free and open access to geospatial data for New York State, as well as worldwide geospatial data created by researchers at Cornell. Subjects such as landforms and topography, soils, hydrology, environmental hazards, agricultural activities, wildlife and natural resource management are appropriate for inclusion in the CUGIR catalogue. All data files are catalogued in accordance with Federal Geographic Data Committee (FGDC) standards and made available in widely used geospatial data formats.", "abbreviation": "CUGIR", "support-links": [{"url": "mann-gis-l@cornell.edu", "name": "General contact", "type": "Support email"}, {"url": "https://cul-it.github.io/cugir-help/", "type": "Github"}], "year-creation": 1996, "data-processes": [{"url": "https://cugir.library.cornell.edu/", "name": "Browse & Filter", "type": "data access"}, {"url": "https://cul-it.github.io/cugir-help/help/download", "name": "Download", "type": "data access"}, {"url": "https://cul-it.github.io/cugir-help/help/contribute", "name": "Contribute", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000034", "name": "re3data:r3d100000034", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001506", "bsg-d001506"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Earth Science", "Agriculture", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geospatial Data", "Natural Resources, Earth and Environment", "Topographical Relief", "Topography", "Wildlife Ecology"], "countries": ["United States"], "name": "FAIRsharing record for: Cornell University Geospatial Information Repository", "abbreviation": "CUGIR", "url": "https://fairsharing.org/fairsharing_records/2999", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CUGIR, the Cornell University Geospatial Information Repository, provides free and open access to geospatial data for New York State, as well as worldwide geospatial data created by researchers at Cornell. Subjects such as landforms and topography, soils, hydrology, environmental hazards, agricultural activities, wildlife and natural resource management are appropriate for inclusion in the CUGIR catalogue. All data files are catalogued in accordance with Federal Geographic Data Committee (FGDC) standards and made available in widely used geospatial data formats.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3088", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-27T10:19:36.000Z", "updated-at": "2021-12-06T10:47:33.933Z", "metadata": {"name": "New Mexico Bureau of Geology & Mineral Resources Data Repository", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "NMBG-webmaster@nmt.edu"}], "homepage": "https://geoinfo.nmt.edu/repository/index.cfml", "identifier": 3088, "description": "The New Mexico Bureau of Geology & Mineral Resources Data Repository archives data and houses geological collections, so as to improve the understanding of the geology of New Mexico.", "support-links": [{"url": "https://geoinfo.nmt.edu/repository/help.cfml", "type": "Help documentation"}], "data-processes": [{"url": "https://geoinfo.nmt.edu/repository/index.cfml", "name": "Recent dataset", "type": "data access"}, {"url": "https://geoinfo.nmt.edu/repository/index.cfml?ListBy=Year", "name": "Datasets Ordered by Year/Number", "type": "data access"}, {"url": "https://geoinfo.nmt.edu/repository/index.cfml?ListBy=Author", "name": "Datasets Ordered by Author(s)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012841", "name": "re3data:r3d100012841", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001596", "bsg-d001596"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Geology", "Earth Science", "Mineralogy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository", "Topography"], "countries": ["United States"], "name": "FAIRsharing record for: New Mexico Bureau of Geology & Mineral Resources Data Repository", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3088", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The New Mexico Bureau of Geology & Mineral Resources Data Repository archives data and houses geological collections, so as to improve the understanding of the geology of New Mexico.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2851", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-08T21:48:50.000Z", "updated-at": "2021-12-06T10:49:11.593Z", "metadata": {"doi": "10.25504/FAIRsharing.sbikSF", "name": "Duke Research Data Repository", "status": "ready", "contacts": [{"contact-email": "datamanagement@duke.edu"}], "homepage": "https://research.repository.duke.edu/", "identifier": 2851, "description": "The Research Data Repository is a service of the Duke University Libraries that provides curation, access, and preservation of research data produced by the Duke community. All data go through a curation process to help ensure data are well described, in a structure and format that supports long-term preservation, and generally meet the FAIR Guiding Principles for data (i.e., Findable, Accessible, Interoperable, and Reusable). All data and documentation are openly accessible for download unless under embargo.", "abbreviation": "Duke RDR", "support-links": [{"url": "https://research.repository.duke.edu/about?locale=en", "name": "Duke Research Data Repository Policies", "type": "Help documentation"}, {"url": "https://research.repository.duke.edu/help?locale=en", "name": "Duke Research Data Repository Submission Guidelines", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://research.repository.duke.edu/catalog?f%5Bhas_model_ssim%5D%5B%5D=Dataset&f%5Btop_level_bsi%5D%5B%5D=True&latest_version=true&locale=en", "name": "Browse Data", "type": "data access"}, {"url": "https://research.repository.duke.edu/submissions/new?locale=en", "name": "Submit Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013154", "name": "re3data:r3d100013154", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001352", "bsg-d001352"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Data Quality"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["multidisciplinary", "Open Access", "Open Science"], "countries": ["United States"], "name": "FAIRsharing record for: Duke Research Data Repository", "abbreviation": "Duke RDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.sbikSF", "doi": "10.25504/FAIRsharing.sbikSF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Research Data Repository is a service of the Duke University Libraries that provides curation, access, and preservation of research data produced by the Duke community. All data go through a curation process to help ensure data are well described, in a structure and format that supports long-term preservation, and generally meet the FAIR Guiding Principles for data (i.e., Findable, Accessible, Interoperable, and Reusable). All data and documentation are openly accessible for download unless under embargo.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1138, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1139, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 1140, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1141, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 1142, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1143, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1144, "relation": "undefined"}, {"licence-name": "Creative Commons (CC) Public Domain Mark (PDM)", "licence-id": 198, "link-id": 1145, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2829", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-09T13:25:20.000Z", "updated-at": "2021-11-24T13:15:46.970Z", "metadata": {"doi": "10.25504/FAIRsharing.ANR6qz", "name": "BIOchemical PathwaY DataBase", "status": "deprecated", "contacts": [{"contact-name": "Ram Rup Sarkar", "contact-email": "rr.sarkar@ncl.res.in", "contact-orcid": "0000-0001-7115-163X"}], "homepage": "http://biopydb.ncl.res.in/biopydb/index.php", "citations": [{"doi": "10.1515/jib-2017-0072", "pubmed-id": 29547394, "publication-id": 2560}], "identifier": 2829, "description": "BIOPYDB is a manually-curated database of human cell specific biochemical pathway data. The information within BIOPYDB is primarily extracted from published scientific literature and a selection of databases. The reconstructed pathways contain information about proteins, protein complexes, inorganic molecules, mutated and onco-proteins of signalling, disease and immunological pathways. Every molecule and interaction listed in the database contains at least one reference in a peer reviewed journal.", "abbreviation": "BIOPYDB", "access-points": [{"url": "http://biopydb.ncl.res.in/biopydb/HomePathwayList.php", "name": "BIOPYDB RESTful API", "type": "REST"}], "support-links": [{"url": "http://biopydb.ncl.res.in/biopydb/contactform.html", "name": "Feedback Form", "type": "Contact form"}, {"url": "biopydb@gmail.com", "name": "General contact", "type": "Support email"}, {"url": "http://biopydb.ncl.res.in/biopydb/FAQ.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2017, "data-processes": [{"url": "http://biopydb.ncl.res.in/biopydb/browse_pathway_tab.html", "name": "Browse Pathways", "type": "data access"}, {"url": "http://biopydb.ncl.res.in/biopydb/pathway_drawing.php", "name": "Pathway Visualization", "type": "data access"}, {"url": "http://biopydb.ncl.res.in/biopydb/graph_drawing.php", "name": "Network Analysis", "type": "data access"}, {"url": "http://biopydb.ncl.res.in/biopydb/Find_Disease.php", "name": "Find a Disease", "type": "data access"}, {"url": "http://biopydb.ncl.res.in/biopydb/HomePathwayList.php", "name": "Download", "type": "data release"}, {"url": "http://biopydb.ncl.res.in/biopydb/Find_Interaction.php", "name": "Find an Interaction", "type": "data access"}, {"url": "http://biopydb.ncl.res.in/insert_upload/browse_pathway_tab.php", "name": "Upload Pathway", "type": "data curation"}, {"url": "http://biopydb.ncl.res.in/biopydb/AdvanceSearchPHP.php", "name": "Advanced search", "type": "data access"}], "associated-tools": [{"url": "http://biopydb.ncl.res.in/biopydb/ode_analysis.php", "name": "Dynamic Analysis using ODEs"}, {"url": "http://biopydb.ncl.res.in/boolean_app/index.php", "name": "Logical Analysis"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001329", "bsg-d001329"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biochemistry", "Proteomics", "Life Science"], "domains": ["Computational biological predictions", "Signaling", "Protein-containing complex", "Mutation", "High-throughput screening", "Curated information", "Disease", "Biocuration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: BIOchemical PathwaY DataBase", "abbreviation": "BIOPYDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ANR6qz", "doi": "10.25504/FAIRsharing.ANR6qz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BIOPYDB is a manually-curated database of human cell specific biochemical pathway data. The information within BIOPYDB is primarily extracted from published scientific literature and a selection of databases. The reconstructed pathways contain information about proteins, protein complexes, inorganic molecules, mutated and onco-proteins of signalling, disease and immunological pathways. Every molecule and interaction listed in the database contains at least one reference in a peer reviewed journal.", "publications": [{"id": 2560, "pubmed_id": 29547394, "title": "BIOPYDB: A Dynamic Human Cell Specific Biochemical Pathway Database with Advanced Computational Analyses Platform.", "year": 2018, "url": "http://doi.org/10.1515/jib-2017-0072", "authors": "Chowdhury S,Sinha N,Ganguli P,Bhowmick R,Singh V,Nandi S,Sarkar RR", "journal": "J Integr Bioinform", "doi": "10.1515/jib-2017-0072", "created_at": "2021-09-30T08:27:14.003Z", "updated_at": "2021-09-30T08:27:14.003Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1554", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-09T11:03:49.452Z", "metadata": {"doi": "10.25504/FAIRsharing.ewjdq6", "name": "BioSamples at the European Bioinformatics Institute", "status": "ready", "contacts": [{"contact-name": "Support email", "contact-email": "biosamples@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/biosamples/", "citations": [{"doi": "10.1093/nar/gkab1046", "pubmed-id": 0, "publication-id": 3215}], "identifier": 1554, "description": "BioSamples stores and supplies descriptions and metadata about biological samples used in research and development by academia and industry. Samples are either 'reference' samples (e.g. from 1000 Genomes, HipSci, FAANG) or have been used in an assay database such as the European Nucleotide Archive (ENA) or ArrayExpress. It provides links to assays and specific samples, and accepts direct submissions of sample information.", "abbreviation": "BioSD", "access-points": [{"url": "https://www.ebi.ac.uk/biosamples/docs/references/api/overview", "name": "BioSamples API", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://www.ebi.ac.uk/biosamples/docs/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://listserver.ebi.ac.uk/mailman/listinfo/biosamples-announce", "name": "BioSamples Announce", "type": "Mailing list"}, {"url": "https://www.ebi.ac.uk/biosamples/docs", "name": "Documentation", "type": "Help documentation"}, {"url": "https://github.com/EBIBioSamples/biosamples-v4", "name": "GitHub Project", "type": "Github"}, {"url": "https://www.ebi.ac.uk/biosamples/about", "name": "About", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/biosamples-database-rdf-webinar", "name": "BioSamples Database RDF: webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/biosamples-quick-tour", "name": "BioSamples: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://en.wikipedia.org/wiki/BioSD", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2010, "data-processes": [{"url": "https://www.ebi.ac.uk/biosamples/docs/releasenotes", "name": "Updated continuously", "type": "data release"}, {"url": "https://submission.ebi.ac.uk/api/docs/guide_overview.html", "name": "submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/biosamples/samples", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012628", "name": "re3data:r3d100012628", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004856", "name": "SciCrunch:RRID:SCR_004856", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000008", "bsg-d000008"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biology"], "domains": ["Biological sample annotation", "Biological sample", "Assay", "Protocol", "Phenotype", "Disease", "Genotype"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: BioSamples at the European Bioinformatics Institute", "abbreviation": "BioSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ewjdq6", "doi": "10.25504/FAIRsharing.ewjdq6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioSamples stores and supplies descriptions and metadata about biological samples used in research and development by academia and industry. Samples are either 'reference' samples (e.g. from 1000 Genomes, HipSci, FAANG) or have been used in an assay database such as the European Nucleotide Archive (ENA) or ArrayExpress. It provides links to assays and specific samples, and accepts direct submissions of sample information.", "publications": [{"id": 821, "pubmed_id": 24265224, "title": "Updates to BioSamples database at European Bioinformatics Institute.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1081", "authors": "Faulconbridge A,Burdett T,Brandizi M,Gostev M,Pereira R,Vasant D,Sarkans U,Brazma A,Parkinson H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1081", "created_at": "2021-09-30T08:23:50.519Z", "updated_at": "2021-09-30T11:28:53.084Z"}, {"id": 1265, "pubmed_id": 22096232, "title": "The BioSample Database (BioSD) at the European Bioinformatics Institute.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr937", "authors": "Gostev M,Faulconbridge A,Brandizi M,Fernandez-Banet J,Sarkans U,Brazma A,Parkinson H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr937", "created_at": "2021-09-30T08:24:41.123Z", "updated_at": "2021-09-30T11:29:04.535Z"}, {"id": 2764, "pubmed_id": 30407529, "title": "BioSamples database: an updated sample metadata hub.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1061", "authors": "Courtot M,Cherubin L,Faulconbridge A,Vaughan D,Green M,Richardson D,Harrison P,Whetzel PL,Parkinson H,Burdett T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1061", "created_at": "2021-09-30T08:27:39.720Z", "updated_at": "2021-09-30T11:29:43.220Z"}, {"id": 3215, "pubmed_id": 0, "title": "BioSamples database: FAIRer samples metadata to accelerate research data management", "year": 2022, "url": "https://academic.oup.com/nar/article/50/D1/D1500/6423179", "authors": "M\u00e9lanie Courtot, Dipayan Gupta, Isuru Liyanage, Fuqi Xu, Tony Burdett", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkab1046", "created_at": "2022-02-08T12:16:26.427Z", "updated_at": "2022-02-08T12:16:26.427Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2059, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2063, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2485", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-18T21:03:56.000Z", "updated-at": "2021-12-06T10:49:13.356Z", "metadata": {"doi": "10.25504/FAIRsharing.szj2xw", "name": "Health and Medical Care Archive", "status": "ready", "contacts": [{"contact-name": "Sara Britt", "contact-email": "hmca@icpsr.umich.edu"}], "homepage": "https://www.icpsr.umich.edu/web/pages/HMCA/index.html", "identifier": 2485, "description": "The Health and Medical Care Archive (HMCA) is the data archive of the Robert Wood Johnson Foundation (RWJF), the largest philanthropy devoted exclusively to health and health care in the United States. Operated by the Inter-university Consortium for Political and Social Research (ICPSR) at the University of Michigan with funding from RWJF, HMCA preserves and disseminates data collected by selected research projects funded by RWJF and facilitates secondary analyses of the data. The data collections in HMCA primarily includes large-scale surveys of the American public about public health, attitudes towards health reform, and access to medical care; surveys of health care professionals and organizations, public health professionals, and nurses; evaluations of innovative programs for the delivery of health care, and many other topics and populations of interest. Our goal is to build a culture of health by increasing the understanding of health and health care and the factors that contribute to health in the United States through secondary analysis of RWJF-supported data collections.", "abbreviation": "HMCA", "support-links": [{"url": "https://www.icpsr.umich.edu/web/pages/HMCA/faq.html", "name": "Get Help", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/web/pages/HMCA/deposit-tips.html", "name": "Tips for Preparing Data for Deposit", "type": "Help documentation"}], "year-creation": 1985, "data-processes": [{"url": "https://www.icpsr.umich.edu/web/pages/HMCA/archive.html", "name": "Find Data", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/HMCA/deposit.html", "name": "Deposit Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010257", "name": "re3data:r3d100010257", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000967", "bsg-d000967"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Public Health", "Health Science", "Primary Health Care", "Community Care"], "domains": ["Substance abuse", "Resource collection", "Behavior", "Curated information", "Nurse", "Mental health"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Health and Medical Care Archive", "abbreviation": "HMCA", "url": "https://fairsharing.org/10.25504/FAIRsharing.szj2xw", "doi": "10.25504/FAIRsharing.szj2xw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Health and Medical Care Archive (HMCA) is the data archive of the Robert Wood Johnson Foundation (RWJF), the largest philanthropy devoted exclusively to health and health care in the United States. Operated by the Inter-university Consortium for Political and Social Research (ICPSR) at the University of Michigan with funding from RWJF, HMCA preserves and disseminates data collected by selected research projects funded by RWJF and facilitates secondary analyses of the data. The data collections in HMCA primarily includes large-scale surveys of the American public about public health, attitudes towards health reform, and access to medical care; surveys of health care professionals and organizations, public health professionals, and nurses; evaluations of innovative programs for the delivery of health care, and many other topics and populations of interest. Our goal is to build a culture of health by increasing the understanding of health and health care and the factors that contribute to health in the United States through secondary analysis of RWJF-supported data collections.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1931", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:38.153Z", "metadata": {"doi": "10.25504/FAIRsharing.g6kz6h", "name": "Infevers", "status": "ready", "contacts": [{"contact-name": "Cyril Sarrauste", "contact-email": "cyril.sarrauste@igh.cnrs.fr"}], "homepage": "https://infevers.umai-montpellier.fr/web/", "identifier": 1931, "description": "A registry of Hereditary Auto-inflammatory Disorder Mutations.", "abbreviation": "Infevers", "support-links": [{"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/contact.php?n=18", "type": "Contact form"}, {"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/instructions_for_use.php", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/download.php?n=18", "name": "Download", "type": "data access"}, {"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/page6.php?n=18", "name": "submit", "type": "data curation"}, {"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/search.php", "name": "search", "type": "data access"}, {"url": "http://fmf.igh.cnrs.fr/ISSAID/Classification_AID/page1.html", "name": "browse", "type": "data access"}, {"url": "http://fmf.igh.cnrs.fr/ISSAID/infevers/search.php?n=18", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010548", "name": "re3data:r3d100010548", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007738", "name": "SciCrunch:RRID:SCR_007738", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000396", "bsg-d000396"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Inflammatory response", "Mutation analysis", "Mutation", "Genetic polymorphism", "Genetic disorder", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Infevers", "abbreviation": "Infevers", "url": "https://fairsharing.org/10.25504/FAIRsharing.g6kz6h", "doi": "10.25504/FAIRsharing.g6kz6h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A registry of Hereditary Auto-inflammatory Disorder Mutations.", "publications": [{"id": 251, "pubmed_id": 12520003, "title": "INFEVERS: the Registry for FMF and hereditary inflammatory disorders mutations.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg031", "authors": "Sarrauste de Menthi\u00e8re C., Terri\u00e8re S., Pugn\u00e8re D., Ruiz M., Demaille J., Touitou I.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg031", "created_at": "2021-09-30T08:22:47.098Z", "updated_at": "2021-09-30T08:22:47.098Z"}, {"id": 408, "pubmed_id": 18409191, "title": "The infevers autoinflammatory mutation online registry: update with new genes and functions.", "year": 2008, "url": "http://doi.org/10.1002/humu.20720", "authors": "Milhavet F., Cuisset L., Hoffman HM., Slim R., El-Shanti H., Aksentijevich I., Lesage S., Waterham H., Wise C., Sarrauste de Menthiere C., Touitou I.,", "journal": "Hum. Mutat.", "doi": "10.1002/humu.20720", "created_at": "2021-09-30T08:23:04.325Z", "updated_at": "2021-09-30T08:23:04.325Z"}], "licence-links": [{"licence-name": "Infevers Instructions for use", "licence-id": 440, "link-id": 583, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 584, "relation": "undefined"}, {"licence-name": "Infevers General conditions of use", "licence-id": 439, "link-id": 587, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3270", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-13T11:56:44.000Z", "updated-at": "2021-11-24T13:17:39.061Z", "metadata": {"name": "Canadian Integrated Ocean Observing System Atlantic Data Catalogue", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@cioosatlantic.ca"}], "homepage": "https://cioosatlantic.ca/ckan", "identifier": 3270, "description": "The Canadian Integrated Ocean Observing System (CIOOS) Atlantic Data Catalogue was created to share information about the state of the ocean in the Canadian Atlantic region, to access raw ocean data from different sectors, and to provide regionally-tailored data products. CIOOS Atlantic is a consortium of partners formed to aid in the development of a data management and dissemination approach for the Atlantic Seaboard.", "abbreviation": "CIOOS Atlantic", "support-links": [{"url": "https://cioosatlantic.ca/data-management-overview/", "name": "Data Management Information", "type": "Help documentation"}, {"url": "https://cioosatlantic.ca/about/", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/cioos_siooc", "name": "@cioos_siooc", "type": "Twitter"}], "data-processes": [{"url": "https://cioosatlantic.ca/ckan", "name": "Search", "type": "data access"}, {"url": "https://cioosatlantic.ca/ckan/en/dataset", "name": "Search Datasets", "type": "data access"}, {"url": "https://cioosatlantic.ca/erddap/index.html", "name": "CIOOS Atlantic ERDDAP Server", "type": "data access"}]}, "legacy-ids": ["biodbcore-001785", "bsg-d001785"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Salinity", "Temperature"], "countries": ["Canada"], "name": "FAIRsharing record for: Canadian Integrated Ocean Observing System Atlantic Data Catalogue", "abbreviation": "CIOOS Atlantic", "url": "https://fairsharing.org/fairsharing_records/3270", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canadian Integrated Ocean Observing System (CIOOS) Atlantic Data Catalogue was created to share information about the state of the ocean in the Canadian Atlantic region, to access raw ocean data from different sectors, and to provide regionally-tailored data products. CIOOS Atlantic is a consortium of partners formed to aid in the development of a data management and dissemination approach for the Atlantic Seaboard.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 628, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2517", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-04T18:19:05.000Z", "updated-at": "2021-11-24T13:14:53.821Z", "metadata": {"doi": "10.25504/FAIRsharing.ccwcz6", "name": "NCI Center for Strategic Scientific Initiatives Data Coordinating Center", "status": "ready", "contacts": [{"contact-name": "Paul Aiyetan, MD", "contact-email": "paul.aiyetan@nih.gov", "contact-orcid": "0000-0001-9031-000X"}], "homepage": "https://cssi-dcc.nci.nih.gov/cssiportal/", "identifier": 2517, "description": "The CSSI Data Coordinating Center (DCC) provides the greater Cancer Research and Biomedical Research communities access to the data from a myriad of projects that have been supported by CSSI -- serving as a permanent repository for these and related investigations. The DCC allows users in the community to download the metadata and data from these investigations in the ISA-TAB format. The DCC also allows any user to upload and download the metadata and data associated with investigations. The DCC has a graphical user interface allowing users to easily visualize the content within the data archives", "abbreviation": "CSSI DCC", "support-links": [{"url": "https://cssi-dcc.nci.nih.gov/cssiportal/contactus/", "name": "CSSI DCC Portal Contact Form", "type": "Contact form"}, {"url": "https://wiki.nci.nih.gov/display/DSE/CSSI+DCC+Portal+User%27s+Guide", "name": "CSSI DCC Portal User Guide", "type": "Help documentation"}, {"url": "https://cssi-dcc.nci.nih.gov/cssiportal/news/", "name": "News", "type": "Help documentation"}], "year-creation": 2015, "associated-tools": [{"url": "https://cssi-dcc.nci.nih.gov/cssiportal/search/", "name": "Search"}, {"url": "https://cssi-dcc.nci.nih.gov/cssiportal/browse", "name": "Browse"}]}, "legacy-ids": ["biodbcore-001000", "bsg-d001000"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Cancer"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCI Center for Strategic Scientific Initiatives Data Coordinating Center", "abbreviation": "CSSI DCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.ccwcz6", "doi": "10.25504/FAIRsharing.ccwcz6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CSSI Data Coordinating Center (DCC) provides the greater Cancer Research and Biomedical Research communities access to the data from a myriad of projects that have been supported by CSSI -- serving as a permanent repository for these and related investigations. The DCC allows users in the community to download the metadata and data from these investigations in the ISA-TAB format. The DCC also allows any user to upload and download the metadata and data associated with investigations. The DCC has a graphical user interface allowing users to easily visualize the content within the data archives", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2657", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-13T15:12:11.000Z", "updated-at": "2021-11-24T13:14:55.571Z", "metadata": {"doi": "10.25504/FAIRsharing.tnByoG", "name": "ClinicalStudyDataRequest.com", "status": "ready", "contacts": [{"contact-email": "support@clinicalstudydatarequest.com"}], "homepage": "https://clinicalstudydatarequest.com/", "identifier": 2657, "description": "ClinicalStudyDataRequest.com (CSDR) is a consortium of clinical study Sponsors/Funders. It is a leader in the data sharing community inspired to drive scientific innovation and improve medical care by facilitating access to patient-level data from clinical studies. CSDR seeks to be the researcher-preferred and trusted platform for responsible sharing of high quality patient-level data for the purpose of facilitating innovative data-driven research leading to improvements in patient care. This will be accomplished through the facilitation of the responsible sharing of patient-level data from a range of clinical study Sponsors/Funders through a researcher-friendly platform, utilizing industry leading practices, including an independent review of proposals and protection of patient privacy and confidentiality.", "abbreviation": "CSDR", "support-links": [{"url": "https://clinicalstudydatarequest.com/Help/Help-FAQS.aspx", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://clinicalstudydatarequest.com/About/Contact.aspx", "name": "Contact Site Support", "type": "Help documentation"}, {"url": "https://clinicalstudydatarequest.com/Help/News.aspx", "name": "News", "type": "Help documentation"}, {"url": "https://clinicalstudydatarequest.com/Metrics.aspx", "name": "Metrics", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://clinicalstudydatarequest.com/SearchAllPostings.aspx", "name": "Browse Data", "type": "data access"}, {"url": "https://clinicalstudydatarequest.com/Help/Help-Access-to-Data.aspx", "name": "Accessing Data", "type": "data access"}, {"url": "https://clinicalstudydatarequest.com/Help/Help-Review-of-Requests.aspx", "name": "Reviewing Requests", "type": "data access"}, {"url": "https://clinicalstudydatarequest.com/Help/Help-How-to-Request-Data.aspx", "name": "Requesting Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001149", "bsg-d001149"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: ClinicalStudyDataRequest.com", "abbreviation": "CSDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.tnByoG", "doi": "10.25504/FAIRsharing.tnByoG", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ClinicalStudyDataRequest.com (CSDR) is a consortium of clinical study Sponsors/Funders. It is a leader in the data sharing community inspired to drive scientific innovation and improve medical care by facilitating access to patient-level data from clinical studies. CSDR seeks to be the researcher-preferred and trusted platform for responsible sharing of high quality patient-level data for the purpose of facilitating innovative data-driven research leading to improvements in patient care. This will be accomplished through the facilitation of the responsible sharing of patient-level data from a range of clinical study Sponsors/Funders through a researcher-friendly platform, utilizing industry leading practices, including an independent review of proposals and protection of patient privacy and confidentiality.", "publications": [], "licence-links": [{"licence-name": "CSDR Data Sharing Agreement", "licence-id": 204, "link-id": 523, "relation": "undefined"}, {"licence-name": "CSDR Privacy Policy", "licence-id": 205, "link-id": 524, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1819", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.207Z", "metadata": {"doi": "10.25504/FAIRsharing.p2brza", "name": "Human siRNA database", "status": "deprecated", "contacts": [{"contact-name": "Matthias Truss", "contact-email": "Matthias.Truss@Charite.de"}], "homepage": "http://itb.biologie.hu-berlin.de/~nebulus/sirna/index.htm", "identifier": 1819, "description": "HuSiDa is a public database that serves as a depository for both, sequences of published functional siRNA molecules targeting human genes and important technical details of the corresponding gene silencing experiments. It aims at supporting the setup and actual procedure of specific RNAi experiments in human cells.", "abbreviation": "HuSiDa", "support-links": [{"url": "http://itb.biologie.hu-berlin.de/~nebulus/sirna/instruct.htm", "type": "Help documentation"}], "data-processes": [{"url": "http://itb.biologie.hu-berlin.de/~nebulus/sirna/index.htm", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000279", "bsg-d000279"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Ribonucleic acid", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Human siRNA database", "abbreviation": "HuSiDa", "url": "https://fairsharing.org/10.25504/FAIRsharing.p2brza", "doi": "10.25504/FAIRsharing.p2brza", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HuSiDa is a public database that serves as a depository for both, sequences of published functional siRNA molecules targeting human genes and important technical details of the corresponding gene silencing experiments. It aims at supporting the setup and actual procedure of specific RNAi experiments in human cells.", "publications": [{"id": 345, "pubmed_id": 15608157, "title": "HuSiDa--the human siRNA database: an open-access database for published functional siRNA sequences and technical details of efficient transfer into recipient cells.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki131", "authors": "Truss M., Swat M., Kielbasa SM., Sch\u00e4fer R., Herzel H., Hagemeier C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki131", "created_at": "2021-09-30T08:22:57.174Z", "updated_at": "2021-09-30T08:22:57.174Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3246", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-19T10:11:25.000Z", "updated-at": "2021-12-06T10:48:21.189Z", "metadata": {"doi": "10.25504/FAIRsharing.caOJPM", "name": "In-service Aircraft for a Global Observing System Data Portal", "status": "ready", "contacts": [{"contact-name": "Damien Boulanger", "contact-email": "damien.boulanger@obs-mip.fr", "contact-orcid": "0000-0001-6935-1106"}], "homepage": "http://iagos-data.fr/", "identifier": 3246, "description": "The IAGOS Data Portal provides observational data and added-value products produced by the European Research Infrastructure IAGOS. Datasets can be discovered and downloaded through the portal. Data and metadata follow the standards for Atmospheric community.", "abbreviation": "IAGOS Data Portal", "support-links": [{"url": "info@iagos.org", "type": "Support email"}, {"url": "http://iagos-data.fr/#DataQualityPlace:", "name": "Data quality", "type": "Help documentation"}, {"url": "http://iagos-data.fr/#DataFormatPlace:", "name": "Data format", "type": "Help documentation"}, {"url": "http://iagos-data.fr/#ParametersPlace:", "name": "Measured parameters", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://iagos-data.fr/#CMSConsultPlace:DATA_VERSIONS", "name": "Data versions", "type": "data versioning"}, {"url": "http://iagos-data.fr/#CMSConsultPlace:DOWNLOAD_INSTRUCTIONS", "name": "Download", "type": "data access"}, {"url": "http://iagos-data.fr/#TimeseriesPlace:", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013365", "name": "re3data:r3d100013365", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001760", "bsg-d001760"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: In-service Aircraft for a Global Observing System Data Portal", "abbreviation": "IAGOS Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.caOJPM", "doi": "10.25504/FAIRsharing.caOJPM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IAGOS Data Portal provides observational data and added-value products produced by the European Research Infrastructure IAGOS. Datasets can be discovered and downloaded through the portal. Data and metadata follow the standards for Atmospheric community.", "publications": [], "licence-links": [{"licence-name": "IAGOS Data Policy", "licence-id": 408, "link-id": 1613, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3220", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-15T13:31:40.000Z", "updated-at": "2021-12-06T10:48:55.579Z", "metadata": {"doi": "10.25504/FAIRsharing.NKUobC", "name": "Sciflection", "status": "ready", "contacts": [{"contact-name": "Felix Rudolphi", "contact-email": "fr@sciformation.com", "contact-orcid": "0000-0002-8241-8915"}], "homepage": "https://sciflection.com", "citations": [{"publication-id": 3016}], "identifier": 3220, "description": "Sciflection is a chemical database which allows researchers to publish and share their experiments as well as analytical data. Sciflection accepts structured data directly uploaded from Electronic Laboratory Notebooks (open enventory, Sciformation ELN, open for others) in JSON format. The repository is searchable by chemical structure, text parts, numeric parameters, etc.", "abbreviation": "Sciflection", "support-links": [{"url": "https://sciflection.com/main", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://sciflection.com/main", "name": "Browse & search", "type": "data access"}, {"url": "https://sciflection.com/userDocs/shareElnPublication.html?lang=en#/", "name": "Sharing data publications using Sciformation ELN", "type": "data curation"}, {"url": "https://sciflection.com/userDocs/sharePublicationOE.html?lang=en#/", "name": "Sharing data publications using open enventory", "type": "data access"}], "associated-tools": [{"url": "https://sourceforge.net/projects/enventory/", "name": "open enventory"}, {"url": "http://sciformation.com/sciformation_eln.html", "name": "Sciformation ELN"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013413", "name": "re3data:r3d100013413", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001733", "bsg-d001733"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Engineering Science", "Synthetic Chemistry", "Chemistry", "Life Science", "Analytical Chemistry", "Physics", "Biology"], "domains": ["Chemical formula", "Mass spectrum", "Reaction data", "X-ray diffraction", "Raman spectroscopy", "X-ray crystallography assay"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Catalysis", "multidisciplinary", "Structured data"], "countries": ["Germany"], "name": "FAIRsharing record for: Sciflection", "abbreviation": "Sciflection", "url": "https://fairsharing.org/10.25504/FAIRsharing.NKUobC", "doi": "10.25504/FAIRsharing.NKUobC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Sciflection is a chemical database which allows researchers to publish and share their experiments as well as analytical data. Sciflection accepts structured data directly uploaded from Electronic Laboratory Notebooks (open enventory, Sciformation ELN, open for others) in JSON format. The repository is searchable by chemical structure, text parts, numeric parameters, etc.", "publications": [{"id": 3016, "pubmed_id": null, "title": "FAIR teilen", "year": 2020, "url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/nadc.20204102204", "authors": "Marco Dyga Felix Rudolphi Lukas J. Goo\u00dfen", "journal": "Nachrichten aus der Chemie", "doi": null, "created_at": "2021-09-30T08:28:11.857Z", "updated_at": "2021-09-30T08:28:11.857Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2183, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3211", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-26T20:53:13.000Z", "updated-at": "2021-12-06T10:47:39.565Z", "metadata": {"name": "MORPHYLL", "status": "ready", "contacts": [{"contact-name": "Dr. Anita Roth-Nebelsick", "contact-email": "anita.rothnebelsick@smns-bw.de"}], "homepage": "https://www.morphyll.naturkundemuseum-bw.de/index.php", "identifier": 3211, "description": "MORPHYLL is a database for acquisition of ecophysiologically-relevant morphometric data of fossil leaves, mainly from the Paleogene geologic period. It contains digitized fossil leaves from various collections and supports searches for specific taxa, locations, and morphometry. Queries and images are publicly available, while full access to the complete set of data including morphometry and high resolution images is available upon request.", "abbreviation": "MORPHYLL", "support-links": [{"url": "https://www.morphyll.naturkundemuseum-bw.de/how.php", "name": "How to Search", "type": "Help documentation"}, {"url": "https://www.morphyll.naturkundemuseum-bw.de/goals.php", "name": "About", "type": "Help documentation"}, {"url": "https://www.morphyll.naturkundemuseum-bw.de/material_collections.php", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://www.morphyll.naturkundemuseum-bw.de/synopsisStats.php", "name": "Summary of Data", "type": "Help documentation"}, {"url": "https://www.morphyll.naturkundemuseum-bw.de/methods.php", "name": "Methodology", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://www.morphyll.naturkundemuseum-bw.de/queryForm.php", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012278", "name": "re3data:r3d100012278", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001724", "bsg-d001724"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Paleontology", "Plant Anatomy"], "domains": [], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: MORPHYLL", "abbreviation": "MORPHYLL", "url": "https://fairsharing.org/fairsharing_records/3211", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MORPHYLL is a database for acquisition of ecophysiologically-relevant morphometric data of fossil leaves, mainly from the Paleogene geologic period. It contains digitized fossil leaves from various collections and supports searches for specific taxa, locations, and morphometry. Queries and images are publicly available, while full access to the complete set of data including morphometry and high resolution images is available upon request.", "publications": [], "licence-links": [{"licence-name": "MORPHYLL Terms of Use", "licence-id": 523, "link-id": 2145, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2146, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2862", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-02T08:53:05.000Z", "updated-at": "2021-11-24T13:16:21.631Z", "metadata": {"doi": "10.25504/FAIRsharing.Ckg0bl", "name": "NERC Vocabulary Server", "status": "ready", "contacts": [{"contact-name": "NVS Vocabulary Management team", "contact-email": "vocab.services@bodc.ac.uk"}], "homepage": "https://www.bodc.ac.uk/resources/vocabularies/", "identifier": 2862, "description": "The NERC Vocabulary Server provides access to standardised lists of terms and taxonomies related to a wide range of concepts which are used to facilitate data markup, interoperability and discovery in the marine and associated earth science domains. Some of these vocabularies are totally managed by BODC, others are managed by BODC on behalf of other organisations, while some are owned and, when relevant, managed by external governance authorities.", "abbreviation": "NVS", "access-points": [{"url": "http://vocab.nerc.ac.uk/collection/P01/current/ALATGP01/", "name": "Provides access to a specified concept", "type": "REST"}, {"url": "https://vocab.nerc.ac.uk/sparql/", "name": "SPARQL Endpoint", "type": "Other"}, {"url": "http://vocab.nerc.ac.uk/collection/P06/current/", "name": "Provides access to a specified concept collection: replace the example 3 character code with one found in the collection list", "type": "REST"}, {"url": "http://vocab.nerc.ac.uk/scheme/EMODNET_PEST/current/", "name": "Provides access to a specified concept scheme", "type": "REST"}, {"url": "http://vocab.nerc.ac.uk/vocab2.wsdl", "name": "SOAP consumers should generate their client implementation from the WSDL", "type": "SOAP"}, {"url": "http://vocab.nerc.ac.uk/scheme", "name": "Provides a catalogue of the available concept schemes", "type": "REST"}, {"url": "http://vocab.nerc.ac.uk/collection", "name": "Provides a catalogue of the available concept collections", "type": "REST"}], "support-links": [{"url": "https://github.com/nvs-vocabs", "name": "NERC Vocabulary Server Github repositories", "type": "Github"}, {"url": "http://vocab.nerc.ac.uk/", "name": "Technical documentation for the NERC Vocabulary Server", "type": "Help documentation"}], "year-creation": 2005, "associated-tools": [{"url": "https://www.bodc.ac.uk/resources/vocabularies/vocabulary_search/", "name": "NVS Search"}, {"url": "http://seadatanet.maris2.nl/v_bodc_vocab_v2/welcome.asp", "name": "SeaDataNet Common Vocabulary Search Interface"}, {"url": "https://www.bodc.ac.uk/resources/vocabularies/vocabulary_editor/", "name": "Vocabulary editor"}, {"url": "http://seadatanet.maris2.nl/bandit/browse_step.php", "name": "P01 Vocabulary - Facet search on semantic components"}, {"url": "https://www.bodc.ac.uk/resources/vocabularies/vocabulary_builder/", "name": "Vocabulary Builder"}]}, "legacy-ids": ["biodbcore-001363", "bsg-d001363"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Data Management", "Marine Biology", "Earth Science", "Ontology and Terminology", "Oceanography"], "domains": ["Environmental contaminant", "Marine environment", "Climate", "Device"], "taxonomies": ["All"], "user-defined-tags": ["Chemical oceanography", "Natural Resources, Earth and Environment"], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: NERC Vocabulary Server", "abbreviation": "NVS", "url": "https://fairsharing.org/10.25504/FAIRsharing.Ckg0bl", "doi": "10.25504/FAIRsharing.Ckg0bl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NERC Vocabulary Server provides access to standardised lists of terms and taxonomies related to a wide range of concepts which are used to facilitate data markup, interoperability and discovery in the marine and associated earth science domains. Some of these vocabularies are totally managed by BODC, others are managed by BODC on behalf of other organisations, while some are owned and, when relevant, managed by external governance authorities.", "publications": [{"id": 2648, "pubmed_id": null, "title": "Ocean Data Standards Volume 4: Technology for SeaDataNet Controlled Vocabularies for describing Marine and Oceanographic Datasets \u2013 A joint Proposal by SeaDataNet and ODIP projects", "year": 2019, "url": "https://www.iode.org/index.php?option=com_oe&task=viewDocumentRecord&docID=25099", "authors": "A. Leadbetter, R. Lowry, O. Clements, Vocabulary Management Group", "journal": "IOC Manual and Guides No. 54 Volume 4", "doi": null, "created_at": "2021-09-30T08:27:25.155Z", "updated_at": "2021-09-30T08:27:25.155Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2219, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1878", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:14.665Z", "metadata": {"doi": "10.25504/FAIRsharing.t3nprm", "name": "CryptoDB", "status": "ready", "contacts": [{"contact-name": "Jessica Kissinger", "contact-email": "jkissing@uga.edu", "contact-orcid": "0000-0003-4446-6200"}], "homepage": "https://cryptodb.org/cryptodb/app", "identifier": 1878, "description": "CryptoDB serves as the functional genomics database for Cryptosporidium and related species. CryptoDB is a free, online resource for accessing and exploring genome sequence and annotation, functional genomics data, isolate sequences, and orthology profiles across organisms. It also includes supplemental bioinformatics analyses and a web interface for data-mining.", "abbreviation": "CryptoDB", "access-points": [{"url": "https://cryptodb.org/cryptodb/app/static-content/content/CryptoDB/webServices.html", "name": "Web Services", "type": "REST"}], "support-links": [{"url": "https://cryptodb.org/cryptodb/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://cryptodb.org/cryptodb/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://cryptodb.org/cryptodb/app/search/organism/GenomeDataTypes/result", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/VEuPathDB", "name": "@VEuPathDB", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://cryptodb.org/cryptodb/app/downloads/", "name": "Download", "type": "data release"}, {"url": "https://cryptodb.org/cryptodb/app/static-content/dataSubmission.html", "name": "Submit Data", "type": "data curation"}, {"url": "https://cryptodb.org/cryptodb/app/search/transcript/GeneByLocusTag", "name": "Search by Gene ID", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012265", "name": "re3data:r3d100012265", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013455", "name": "SciCrunch:RRID:SCR_013455", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000343", "bsg-d000343"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Genomics", "Parasitology"], "domains": ["Genome annotation", "Gene functional annotation", "Parasite", "Genome"], "taxonomies": ["Cryptosporidium"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CryptoDB", "abbreviation": "CryptoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.t3nprm", "doi": "10.25504/FAIRsharing.t3nprm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CryptoDB serves as the functional genomics database for Cryptosporidium and related species. CryptoDB is a free, online resource for accessing and exploring genome sequence and annotation, functional genomics data, isolate sequences, and orthology profiles across organisms. It also includes supplemental bioinformatics analyses and a web interface for data-mining.", "publications": [{"id": 379, "pubmed_id": 16381902, "title": "CryptoDB: a Cryptosporidium bioinformatics resource update.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj078", "authors": "Heiges M., Wang H., Robinson E., Aurrecoechea C., Gao X., Kaluskar N., Rhodes P., Wang S., He CZ., Su Y., Miller J., Kraemer E., Kissinger JC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj078", "created_at": "2021-09-30T08:23:00.710Z", "updated_at": "2021-09-30T08:23:00.710Z"}, {"id": 1268, "pubmed_id": 31452162, "title": "Accessing Cryptosporidium Omic and Isolate Data via CryptoDB.org.", "year": 2019, "url": "http://doi.org/10.1007/978-1-4939-9748-0_10", "authors": "Warrenfeltz S,Kissinger JC", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-9748-0_10", "created_at": "2021-09-30T08:24:41.542Z", "updated_at": "2021-09-30T08:24:41.542Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2386, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2168", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:18.664Z", "metadata": {"doi": "10.25504/FAIRsharing.1nshwd", "name": "Open Source Brain", "status": "ready", "contacts": [{"contact-name": "Padraig Gleeson", "contact-email": "p.gleeson@ucl.ac.uk", "contact-orcid": "0000-0001-5963-8576"}], "homepage": "http://www.opensourcebrain.org", "identifier": 2168, "description": "Open Source Brain is a resource for sharing and collaboratively developing computational models of neural systems.", "abbreviation": "OSB", "access-points": [{"url": "http://www.opensourcebrain.org/projects.xml", "name": "REST", "type": "REST"}], "support-links": [{"url": "https://groups.google.com/forum/#!forum/osb-discuss", "type": "Mailing list"}, {"url": "https://twitter.com/osbteam", "type": "Twitter"}], "year-creation": 2011}, "legacy-ids": ["biodbcore-000640", "bsg-d000640"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Life Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Open Source Brain", "abbreviation": "OSB", "url": "https://fairsharing.org/10.25504/FAIRsharing.1nshwd", "doi": "10.25504/FAIRsharing.1nshwd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open Source Brain is a resource for sharing and collaboratively developing computational models of neural systems.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1750", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:04.459Z", "metadata": {"doi": "10.25504/FAIRsharing.qqc7zw", "name": "DNASU Plasmid Repository", "status": "ready", "contacts": [{"contact-name": "Joshua LaBaer", "contact-email": "jlabaer@asu.edu", "contact-orcid": "0000-0001-5788-9697"}], "homepage": "http://dnasu.org/DNASU/Home.do", "identifier": 1750, "description": "DNASU is a central repository for plasmid clones and collections. Currently we store and distribute over 197,000 plasmids including 75,000 human and mouse plasmids, full genome collections, the protein expression plasmids from the Protein Structure Initiative as the PSI: Biology Material Repository (PSI : Biology-MR), and both small and large collections from individual researchers. We are also a founding member and distributor of the ORFeome Collaboration plasmid collection.", "support-links": [{"url": "dnasuhelp@asu.edu", "type": "Support email"}, {"url": "http://dnasu.org/DNASU/FAQ.jsp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/DNASUPlasmids", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "http://dnasu.org/DNASU/Submission.jsp", "name": "submit", "type": "data curation"}, {"url": "http://dnasu.org/DNASU/SearchOptions.do?tab=1", "name": "search", "type": "data access"}, {"url": "http://dnasu.org/DNASU/Browse.do?tab=0", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://dnasu.org/DNASU/SearchOptions.do?tab=4", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012354", "name": "re3data:r3d100012354", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012185", "name": "SciCrunch:RRID:SCR_012185", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000208", "bsg-d000208"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Clone library", "Deoxyribonucleic acid", "Plasmid", "Genome"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota", "Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: DNASU Plasmid Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qqc7zw", "doi": "10.25504/FAIRsharing.qqc7zw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DNASU is a central repository for plasmid clones and collections. Currently we store and distribute over 197,000 plasmids including 75,000 human and mouse plasmids, full genome collections, the protein expression plasmids from the Protein Structure Initiative as the PSI: Biology Material Repository (PSI : Biology-MR), and both small and large collections from individual researchers. We are also a founding member and distributor of the ORFeome Collaboration plasmid collection.", "publications": [{"id": 277, "pubmed_id": 21360289, "title": "PSI:Biology-materials repository: a biologist's resource for protein expression plasmids.", "year": 2011, "url": "http://doi.org/10.1007/s10969-011-9100-8", "authors": "Cormier CY., Park JG., Fiacco M., Steel J., Hunter P., Kramer J., Singla R., LaBaer J.,", "journal": "J. Struct. Funct. Genomics", "doi": "10.1007/s10969-011-9100-8", "created_at": "2021-09-30T08:22:49.898Z", "updated_at": "2021-09-30T08:22:49.898Z"}, {"id": 598, "pubmed_id": 19906724, "title": "Protein Structure Initiative Material Repository: an open shared public resource of structural genomics plasmids for the biological community.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp999", "authors": "Cormier CY, Mohr SE, Zuo D, Hu Y, Rolfs A, Kramer J, Taycher E, Kelley F, Fiacco M, Turnbull G, LaBaer J.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp999", "created_at": "2021-09-30T08:23:25.582Z", "updated_at": "2021-09-30T11:28:47.973Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2303", "type": "fairsharing-records", "attributes": {"created-at": "2016-07-11T08:08:07.000Z", "updated-at": "2021-12-06T10:48:05.375Z", "metadata": {"doi": "10.25504/FAIRsharing.6wf1zw", "name": "Image Data Resource", "status": "ready", "contacts": [{"contact-name": "Josh Moore", "contact-email": "j.a.moore@dundee.ac.uk", "contact-orcid": "0000-0003-4028-811X"}], "homepage": "https://idr.openmicroscopy.org", "citations": [{"doi": "10.1038/nmeth.4326", "pubmed-id": 28775673, "publication-id": 2515}], "identifier": 2303, "description": "IDR is a prototype platform for publishing, mining and integrating bioimaging data at scale, following the Euro-BioImaging/ELIXIR imaging strategy using the OMERO and Bio-Formats open source software built by the Open Microscopy Environment. Deployed on an OpenStack cloud running on the EMBL-EBI\u2019s Embassy resource, it includes image data linked to independent studies from genetic, RNAi, chemical, localisation and geographic high content screens, super-resolution microscopy, and digital pathology.", "abbreviation": "IDR", "access-points": [{"url": "https://idr.openmicroscopy.org/webclient/", "name": "Web client", "type": "REST"}], "support-links": [{"url": "idr@openmicroscopy.org", "name": "Helpdesk", "type": "Support email"}, {"url": "http://www.openmicroscopy.org/community/", "name": "Community Forum", "type": "Forum"}, {"url": "http://help.openmicroscopy.org", "name": "OMERO User Help", "type": "Help documentation"}, {"url": "http://www.openmicroscopy.org/site/community/mailing-lists", "name": "Mailing Lists", "type": "Mailing list"}, {"url": "http://help.openmicroscopy.org/resources.html", "name": "Training Course Material", "type": "Training documentation"}, {"url": "https://twitter.com/openmicroscopy", "name": "@openmicroscopy", "type": "Twitter"}], "year-creation": 2015, "associated-tools": [{"url": "http://www.openmicroscopy.org/info/omero", "name": "OMERO client-server software"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012435", "name": "re3data:r3d100012435", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_017421", "name": "SciCrunch:RRID:SCR_017421", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000778", "bsg-d000778"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Biomedical Science"], "domains": ["Bioimaging", "Super-resolution microscopy", "High-content screen"], "taxonomies": ["Apis mellifera", "Arabidopsis thaliana", "Danio rerio", "Drosophila", "Drosophila melanogaster", "Escherichia coli", "Gallus gallus", "Homo sapiens", "Mus musculus", "plankton", "Saccharomyces cerevisiae", "SARS-CoV-2", "Schizosaccharomyces pombe", "Tribolium castaneum"], "user-defined-tags": ["Digital pathology"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Image Data Resource", "abbreviation": "IDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.6wf1zw", "doi": "10.25504/FAIRsharing.6wf1zw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IDR is a prototype platform for publishing, mining and integrating bioimaging data at scale, following the Euro-BioImaging/ELIXIR imaging strategy using the OMERO and Bio-Formats open source software built by the Open Microscopy Environment. Deployed on an OpenStack cloud running on the EMBL-EBI\u2019s Embassy resource, it includes image data linked to independent studies from genetic, RNAi, chemical, localisation and geographic high content screens, super-resolution microscopy, and digital pathology.", "publications": [{"id": 2515, "pubmed_id": 28775673, "title": "The Image Data Resource: A Bioimage Data Integration and Publication Platform.", "year": 2017, "url": "http://doi.org/10.1038/nmeth.4326", "authors": "Williams E,Moore J,Li SW,Rustici G,Tarkowska A,Chessel A,Leo S,Antal B,Ferguson RK,Sarkans U,Brazma A,Salas REC,Swedlow JR", "journal": "Nat Methods", "doi": "10.1038/nmeth.4326", "created_at": "2021-09-30T08:27:08.592Z", "updated_at": "2021-09-30T08:27:08.592Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3164", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-29T10:26:48.000Z", "updated-at": "2021-12-06T10:47:37.291Z", "metadata": {"name": "Geochemistry of Rocks of the Oceans and Continents", "status": "ready", "contacts": [{"contact-name": "B\u00e4rbel Sarbas", "contact-email": "b.sarbas@mpic.de"}, {"contact-name": "Marthe Kl\u00f6cking", "contact-email": "digis-info@uni-goettingen.de", "contact-orcid": "0000-0002-6592-9270"}], "homepage": "http://georoc.mpch-mainz.gwdg.de/georoc/", "citations": [{"doi": null, "pubmed-id": null, "publication-id": 2695}], "identifier": 3164, "description": "The Geochemistry of Rocks of the Oceans and Continents (GEOROC) database is a collection of published analyses of igneous rocks and mantle xenoliths. It contains major and trace element concentrations, radiogenic and nonradiogenic isotope ratios as well as analytical ages for whole rocks, glasses, minerals and inclusions. Samples come from 11 different geological settings. Metadata include, among others, geographic location with latitude and longitude, rock class and rock type, alteration grade, analytical method, laboratory, reference materials and references.", "abbreviation": "GEOROC", "data-curation": {}, "support-links": [{"url": "http://georoc.mpch-mainz.gwdg.de/georoc/discussions/georoc_discussions.aspx", "name": "GEOROC Forum", "type": "Forum"}, {"url": "http://georoc.mpch-mainz.gwdg.de/georoc/", "name": "About", "type": "Help documentation"}, {"url": "http://digis.geo.uni-goettingen.de", "name": "DIGIS for GEOROC 2.0", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "http://georoc.mpch-mainz.gwdg.de/georoc/Authors.asp", "name": "Search by Bibliography", "type": "data access"}, {"url": "http://georoc.mpch-mainz.gwdg.de/georoc/QueryLoc.asp", "name": "Search by Geological Setting", "type": "data access"}, {"url": "http://georoc.mpch-mainz.gwdg.de/georoc/GeographCoord.asp", "name": "Search by Geography", "type": "data access"}, {"url": "http://georoc.mpch-mainz.gwdg.de/georoc/QueryChem.asp", "name": "Search by Chemistry", "type": "data access"}, {"url": "http://georoc.mpch-mainz.gwdg.de/georoc/QuerySamp.asp", "name": "Search by Petrography and Samples", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011206", "name": "re3data:r3d100011206", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "no", "data-access-for-pre-publication-review": "no"}, "legacy-ids": ["biodbcore-001675", "bsg-d001675"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Geology", "Natural Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Geochemistry of Rocks of the Oceans and Continents", "abbreviation": "GEOROC", "url": "https://fairsharing.org/fairsharing_records/3164", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Geochemistry of Rocks of the Oceans and Continents (GEOROC) database is a collection of published analyses of igneous rocks and mantle xenoliths. It contains major and trace element concentrations, radiogenic and nonradiogenic isotope ratios as well as analytical ages for whole rocks, glasses, minerals and inclusions. Samples come from 11 different geological settings. Metadata include, among others, geographic location with latitude and longitude, rock class and rock type, alteration grade, analytical method, laboratory, reference materials and references.", "publications": [{"id": 2695, "pubmed_id": null, "title": "A global geochemical database structure for rocks", "year": 2000, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/1999GC000026", "authors": "K. Lehnert Y. Su C. H. Langmuir B. Sarbas U. Nohl", "journal": "Geochemistry, Geophysics, Geosystems", "doi": null, "created_at": "2021-09-30T08:27:30.971Z", "updated_at": "2021-09-30T08:27:30.971Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3017", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-26T10:45:06.000Z", "updated-at": "2021-11-24T13:14:58.388Z", "metadata": {"name": "GHDDI Info Sharing Portal", "status": "ready", "homepage": "https://ghddi-ailab.github.io/Targeting2019-nCoV/", "identifier": 3017, "description": "GHDDI Info Sharing Portal is the public information sharing portal and data repository for the drug discovery community, initiated by GHDDI. We are making our drug discovery capabilities and resources available at no cost to all researchers who are developing new treatments for COVID-19.", "support-links": [{"url": "https://ghddi-ailab.github.io/Targeting2019-nCoV/ghddi_news/", "name": "News", "type": "Github"}, {"url": "https://ghddi-ailab.github.io/Targeting2019-nCoV/contact_us/", "name": "Support", "type": "Github"}], "year-creation": 2020, "data-processes": [{"url": "https://ghddi-ailab.github.io/Targeting2019-nCoV/CoV_Experiment_Data/", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001525", "bsg-d001525"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Drug Discovery", "Clinical Studies", "Virology", "Biomedical Science", "Epidemiology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["China"], "name": "FAIRsharing record for: GHDDI Info Sharing Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3017", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GHDDI Info Sharing Portal is the public information sharing portal and data repository for the drug discovery community, initiated by GHDDI. We are making our drug discovery capabilities and resources available at no cost to all researchers who are developing new treatments for COVID-19.", "publications": [], "licence-links": [{"licence-name": "GHDDI Info Sharing Portal Disclaimer", "licence-id": 342, "link-id": 586, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3166", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-29T19:07:05.000Z", "updated-at": "2022-02-08T10:34:40.521Z", "metadata": {"doi": "10.25504/FAIRsharing.e775fd", "name": "eAtlas", "status": "ready", "contacts": [{"contact-name": "eAtlas General Contact", "contact-email": "eAtlas@aims.gov.au"}], "homepage": "https://eatlas.org.au", "identifier": 3166, "description": "The eAtlas provides access to environmental research data and is focused on preserving and encouraging reuse of this data. The eAtlas is the primary data and knowledge repository for the National Environmental Science Programme Tropical Water Quality Hub and historically for the 38 NERP Tropical Ecosystems Hub projects, 6 Reef Rescue Marine Monitoring Program projects and the Marine and Tropical Science Research Facility. This research covers a wide range of topics including seagrass, coral reefs, turtles, dugongs, seabirds, rainforest revegetation, and wet tropics species distributions.", "abbreviation": "eAtlas", "support-links": [{"url": "https://eatlas.org.au/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://eatlas.org.au/resources/faqs", "name": "Submitting and Using FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://eatlas.org.au/video/how-to-use-the-eatlas-maps", "name": "How to Use eAtlas Maps", "type": "Help documentation"}, {"url": "https://eatlas.org.au/resources/image-submission-form", "name": "How to Submit Images", "type": "Help documentation"}, {"url": "https://eatlas.org.au/resources/data-submission-form", "name": "How to Submit Data", "type": "Help documentation"}, {"url": "https://eatlas.org.au/content/about-e-atlas", "name": "About", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://eatlas.org.au/data/faces/list.xhtml", "name": "Browse Data Catalog Listings", "type": "data access"}, {"url": "https://eatlas.org.au/data/faces/search.xhtml", "name": "Search Datasets", "type": "data access"}, {"url": "https://eatlas.org.au/search/all/", "name": "Search", "type": "data access"}, {"url": "https://maps.eatlas.org.au/", "name": "Map Viewer", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011551", "name": "re3data:r3d100011551", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001677", "bsg-d001677"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology"], "domains": ["Marine coral reef biome", "Tropical", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: eAtlas", "abbreviation": "eAtlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.e775fd", "doi": "10.25504/FAIRsharing.e775fd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The eAtlas provides access to environmental research data and is focused on preserving and encouraging reuse of this data. The eAtlas is the primary data and knowledge repository for the National Environmental Science Programme Tropical Water Quality Hub and historically for the 38 NERP Tropical Ecosystems Hub projects, 6 Reef Rescue Marine Monitoring Program projects and the Marine and Tropical Science Research Facility. This research covers a wide range of topics including seagrass, coral reefs, turtles, dugongs, seabirds, rainforest revegetation, and wet tropics species distributions.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)", "licence-id": 162, "link-id": 2069, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3080", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-21T13:51:26.000Z", "updated-at": "2021-12-06T10:47:33.377Z", "metadata": {"name": "UWA Profiles and Research Repository", "status": "ready", "contacts": [{"contact-name": "Katina Toufexis", "contact-email": "katina.toufexis@uwa.edu.au", "contact-orcid": "0000-0002-6514-2988"}], "homepage": "https://research-repository.uwa.edu.au/", "identifier": 3080, "description": "The UWA Profiles and Research Repository is an open platform where you can discover University of Western Australia (UWA) staff, find information about their research, teaching, grants, and activities, and access their research outputs.", "support-links": [{"url": "help-repository@uwa.edu.au", "name": "General contact", "type": "Support email"}, {"url": "https://tinyurl.com/y6o57lvz", "name": "Help & FAQ", "type": "Help documentation"}], "data-processes": [{"url": "https://research-repository.uwa.edu.au/en/searchAll/advanced/", "name": "Advanced search", "type": "data access"}, {"url": "https://research-repository.uwa.edu.au/en/datasets/", "name": "Find Research Data", "type": "data access"}, {"url": "https://research-repository.uwa.edu.au/en/persons/", "name": "Find Profiles", "type": "data access"}, {"url": "https://research-repository.uwa.edu.au/en/organisations/", "name": "Find Research Units", "type": "data access"}, {"url": "https://research-repository.uwa.edu.au/en/publications/", "name": "Find Research Outputs", "type": "data access"}, {"url": "https://research-repository.uwa.edu.au/en/projects/", "name": "Find Research Projects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011898", "name": "re3data:r3d100011898", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001588", "bsg-d001588"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies", "Health Science", "Life Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["Australia"], "name": "FAIRsharing record for: UWA Profiles and Research Repository", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3080", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UWA Profiles and Research Repository is an open platform where you can discover University of Western Australia (UWA) staff, find information about their research, teaching, grants, and activities, and access their research outputs.", "publications": [], "licence-links": [{"licence-name": "UWA Profiles and Research Repository Copyright and Take-down Requests", "licence-id": 836, "link-id": 830, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3332", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-11T19:38:13.000Z", "updated-at": "2022-01-11T12:59:56.091Z", "metadata": {"name": "EUDAT B2SHARE", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@eudat.eu"}], "homepage": "https://b2share.eudat.eu/", "citations": [], "identifier": 3332, "description": "B2SHARE is a repository for storing small-scale research data from diverse contexts. It guarantees long-term persistence of data (with permanent identifiers) and allows that data to be shared with other users. B2SHARE is integrated within the EUDAT collaborative data infrastructure. B2SHARE is open to all researchers and scientists who are affiliated with research institutions, universities as well as to individual researchers (citizen scientists).", "abbreviation": "B2SHARE", "access-points": [{"url": "https://eudat.eu/services/userdoc/b2share-http-rest-api", "name": "B2SHARE API Documentation", "type": "REST"}], "support-links": [{"url": "https://eudat.eu/support-request", "name": "Contact Form", "type": "Contact form"}, {"url": "https://eudat.eu/services/userdoc/b2share-usage", "name": "User Guide", "type": "Help documentation"}, {"url": "https://eudat.eu/services/userdoc/b2share-advanced-search", "name": "Advanced Search Help", "type": "Help documentation"}, {"url": "https://b2note.eudat.eu/", "name": "About B2NOTE Annotation", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://b2share.eudat.eu/records/new", "name": "Registration required for data deposition", "type": "data curation"}, {"url": "https://b2share.eudat.eu/communities", "name": "Browse by Community", "type": "data access"}, {"url": "https://b2share.eudat.eu", "name": "Search", "type": "data access"}, {"url": "https://b2share.eudat.eu/records", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011394", "name": "re3data:r3d100011394", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001851", "bsg-d001851"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: EUDAT B2SHARE", "abbreviation": "B2SHARE", "url": "https://fairsharing.org/fairsharing_records/3332", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: B2SHARE is a repository for storing small-scale research data from diverse contexts. It guarantees long-term persistence of data (with permanent identifiers) and allows that data to be shared with other users. B2SHARE is integrated within the EUDAT collaborative data infrastructure. B2SHARE is open to all researchers and scientists who are affiliated with research institutions, universities as well as to individual researchers (citizen scientists).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2188", "type": "fairsharing-records", "attributes": {"created-at": "2015-02-11T17:09:58.000Z", "updated-at": "2021-12-06T10:49:06.365Z", "metadata": {"doi": "10.25504/FAIRsharing.r4ph5f", "name": "Image Data Archive", "status": "ready", "contacts": [{"contact-name": "LONI Contact", "contact-email": "dba@loni.usc.edu"}], "homepage": "https://ida.loni.usc.edu/", "citations": [], "identifier": 2188, "description": "The LONI Image Data Archive (IDA) is a user-friendly environment for archiving, searching, sharing, tracking and disseminating neuroimaging and related clinical data. The IDA is utilized for dozens of neuroimaging research projects across North America and Europe and accommodates MRI, PET, MRA, DTI and other imaging modalities. The Image & Data Archive (IDA) provides tools and resources for de-identifying, integrating, searching, visualizing and sharing a diverse range of neuroscience data, helping facilitate collaborations between scientists worldwide.", "abbreviation": "IDA", "support-links": [{"url": "ida@loni.usc.edu", "type": "Support email"}, {"url": "https://ida.loni.usc.edu/services/Menu/DocFaq.jsp?page=DOCUMENTATION&subPage=FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ida.loni.usc.edu/services/Menu/PDF/IDA_User_Manual.pdf", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://ida.loni.usc.edu/services/Menu/IdaData.jsp?project=", "name": "Web Access", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012840", "name": "re3data:r3d100012840", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001922", "name": "SciCrunch:RRID:SCR_001922", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000662", "bsg-d000662"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Developmental Biology", "Biomedical Science"], "domains": ["Imaging", "Aging", "Disease course", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Image Data Archive", "abbreviation": "IDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.r4ph5f", "doi": "10.25504/FAIRsharing.r4ph5f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LONI Image Data Archive (IDA) is a user-friendly environment for archiving, searching, sharing, tracking and disseminating neuroimaging and related clinical data. The IDA is utilized for dozens of neuroimaging research projects across North America and Europe and accommodates MRI, PET, MRA, DTI and other imaging modalities. The Image & Data Archive (IDA) provides tools and resources for de-identifying, integrating, searching, visualizing and sharing a diverse range of neuroscience data, helping facilitate collaborations between scientists worldwide.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3158", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T11:25:18.000Z", "updated-at": "2021-12-06T10:48:01.586Z", "metadata": {"doi": "10.25504/FAIRsharing.63pjQU", "name": "National River Flow Archive", "status": "ready", "contacts": [{"contact-name": "NRFA General Contact", "contact-email": "nrfa@ceh.ac.uk"}], "homepage": "https://nrfa.ceh.ac.uk/", "identifier": 3158, "description": "The National River Flow Archive (NRFA) is the primary archive of daily and peak river flows for the United Kingdom. The archive incorporates daily, monthly and flood peak data from over 1500 gauging stations. The NRFA holds a wide range of hydrological information to assist in the understanding and interpretation of measured river flows. In addition to time series of gauged river flow, the data centre maintains hydrometric information relating to the gauging stations and the catchments they command and data quantifying other parts of the hydrological cycle.", "abbreviation": "NRFA", "access-points": [{"url": "http://nrfaapps.ceh.ac.uk/nrfa/nrfa-api.html", "name": "This API provides direct access to river flow data from the NRFA. It is designed primarily for programmers, to enable rapid access to large numbers of datasets.", "type": "REST"}], "support-links": [{"url": "https://nrfa.ceh.ac.uk/nrfa-contact", "name": "Contact Details", "type": "Contact form"}, {"url": "https://nrfa.ceh.ac.uk/faq-page", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nrfa.ceh.ac.uk/content/help", "name": "Help", "type": "Help documentation"}, {"url": "https://nrfa.ceh.ac.uk/about-data", "name": "About", "type": "Help documentation"}, {"url": "https://nrfa.ceh.ac.uk/use-nrfa-data", "name": "How to Access the Data", "type": "Help documentation"}, {"url": "https://twitter.com/UK_NRFA", "name": "@UK_NRFA", "type": "Twitter"}], "year-creation": 1983, "data-processes": [{"url": "https://nrfa.ceh.ac.uk/data/search", "name": "Search", "type": "data access"}, {"url": "https://nrfa.ceh.ac.uk/peak-flow-dataset", "name": "Download Peak Flow Dataset", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012554", "name": "re3data:r3d100012554", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001669", "bsg-d001669"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Limnology", "Hydrology"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: National River Flow Archive", "abbreviation": "NRFA", "url": "https://fairsharing.org/10.25504/FAIRsharing.63pjQU", "doi": "10.25504/FAIRsharing.63pjQU", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National River Flow Archive (NRFA) is the primary archive of daily and peak river flows for the United Kingdom. The archive incorporates daily, monthly and flood peak data from over 1500 gauging stations. The NRFA holds a wide range of hydrological information to assist in the understanding and interpretation of measured river flows. In addition to time series of gauged river flow, the data centre maintains hydrometric information relating to the gauging stations and the catchments they command and data quantifying other parts of the hydrological cycle.", "publications": [], "licence-links": [{"licence-name": "NRFA Data Licence", "licence-id": 600, "link-id": 2247, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1643", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:56.376Z", "metadata": {"doi": "10.25504/FAIRsharing.6648ht", "name": "The SEQanswers wiki", "status": "in_development", "contacts": [{"contact-name": "Dan Bolser", "contact-email": "dan.bolser@gmail.com", "contact-orcid": "0000-0002-3991-0859"}], "homepage": "http://seqanswers.com", "identifier": 1643, "description": "Wiki on all aspects of next-generation genomics. The SEQanswers wiki is a Semantic MediWiki (SMW) site that is edited and updated by the members of the SEQanswers community. The wiki provides an extensive catalogue of manually categorized analysis tools, technologies and information about service providers.", "access-points": [{"url": "http://seqanswers.com/w/api.php", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://seqanswers.com/forums/forumdisplay.php?f=36", "type": "Forum"}, {"url": "http://seqanswers.com/wiki/Help:Contents", "type": "Help documentation"}, {"url": "http://seqanswers.com/wiki/SEQwiki:About", "type": "Help documentation"}, {"url": "https://twitter.com/SEQanswers", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "crowd-sourcing curation", "type": "data curation"}, {"name": "community curation", "type": "data curation"}, {"url": "http://seqanswers.com/wiki/SEQanswers", "name": "web interface", "type": "data access"}, {"url": "http://seqanswers.com/wiki/Special:ExportRDF", "name": "export to XML and RDF", "type": "data access"}]}, "legacy-ids": ["biodbcore-000099", "bsg-d000099"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Citation", "Free text", "Next generation DNA sequencing", "Software"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "Germany", "Australia", "Hong Kong", "Ireland"], "name": "FAIRsharing record for: The SEQanswers wiki", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.6648ht", "doi": "10.25504/FAIRsharing.6648ht", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Wiki on all aspects of next-generation genomics. The SEQanswers wiki is a Semantic MediWiki (SMW) site that is edited and updated by the members of the SEQanswers community. The wiki provides an extensive catalogue of manually categorized analysis tools, technologies and information about service providers.", "publications": [{"id": 752, "pubmed_id": 22086956, "title": "The SEQanswers wiki: a wiki database of tools for high-throughput sequencing analysis.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1058", "authors": "Li JW,Robison K,Martin M,Sjodin A,Usadel B,Young M,Olivares EC,Bolser DM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1058", "created_at": "2021-09-30T08:23:42.801Z", "updated_at": "2021-09-30T11:28:49.784Z"}, {"id": 788, "pubmed_id": 22419780, "title": "SEQanswers: an open access community for collaboratively decoding genomes.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts128", "authors": "Li JW,Schmieder R,Ward RM,Delenick J,Olivares EC,Mittelman D", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts128", "created_at": "2021-09-30T08:23:46.862Z", "updated_at": "2021-09-30T08:23:46.862Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 1251, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2785", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-25T09:37:44.000Z", "updated-at": "2021-11-24T13:16:40.005Z", "metadata": {"doi": "10.25504/FAIRsharing.QrPuK3", "name": "International Ocean Discovery Program Publications Registry", "status": "ready", "contacts": [{"contact-name": "Lorri Peters", "contact-email": "information@iodp.tamu.edu", "contact-orcid": "0000-0003-4951-0223"}], "homepage": "http://publications.iodp.org/", "citations": [], "identifier": 2785, "description": "IODP Publications stores the scientific report and publication series that summarizes the scientific and technical accomplishments of each IODP expedition. These publications are linked to IODP data repositories.", "abbreviation": "IODP Publications", "data-curation": {}, "support-links": [{"url": "http://www.iodp.org/resources/about-publications", "name": "About IODP Publications", "type": "Help documentation"}], "data-processes": [{"url": "http://iodp.tamu.edu/search.html", "name": "Advanced Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001284", "bsg-d001284"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geophysics", "Earth Science"], "domains": ["Marine environment", "Publication"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: International Ocean Discovery Program Publications Registry", "abbreviation": "IODP Publications", "url": "https://fairsharing.org/10.25504/FAIRsharing.QrPuK3", "doi": "10.25504/FAIRsharing.QrPuK3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IODP Publications stores the scientific report and publication series that summarizes the scientific and technical accomplishments of each IODP expedition. These publications are linked to IODP data repositories.", "publications": [], "licence-links": [{"licence-name": "IODP Publication Policies", "licence-id": 447, "link-id": 127, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2251", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T11:15:53.000Z", "updated-at": "2021-12-06T10:48:54.919Z", "metadata": {"doi": "10.25504/FAIRsharing.n8qft8", "name": "Mexican Health and Aging Study", "status": "ready", "contacts": [{"contact-name": "Rebeca Wong", "contact-email": "rewong@utmb.edu", "contact-orcid": "0000-0001-7287-0660"}], "homepage": "http://www.mhasweb.org/", "identifier": 2251, "description": "The MHAS study is a series of questionnaires distributed in waves, the fourth of which was fielded in the Fall of 2015. Research goals include, but are not limited to the following: examination of the aging processes and its disease and disability burden in a large representative panel of older Mexicans; evaluation of the effects of individual behaviors, early life circumstances, migration and economic history, community characteristics, and family transfer systems on multiple health outcomes; and comparison of the health dynamics of older Mexicans with comparably aged Mexican-born migrants in the U.S. and second generation Mexican-American using similar data from the U.S. population (for example the biennial Health and Retirement Study HRS) to assess the durability of the migrant health advantage.", "abbreviation": "MHAS", "support-links": [{"url": "info@mhasweb.com", "type": "Support email"}, {"url": "http://www.mhasweb.org/DocumentationQuestionnaire.aspx", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://www.mhasweb.org/Data.aspx#", "name": "Download (Registration required)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011840", "name": "re3data:r3d100011840", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000818", "name": "SciCrunch:RRID:SCR_000818", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000725", "bsg-d000725"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Biomedical Science"], "domains": ["Aging", "Questionnaire", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States", "Mexico"], "name": "FAIRsharing record for: Mexican Health and Aging Study", "abbreviation": "MHAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.n8qft8", "doi": "10.25504/FAIRsharing.n8qft8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MHAS study is a series of questionnaires distributed in waves, the fourth of which was fielded in the Fall of 2015. Research goals include, but are not limited to the following: examination of the aging processes and its disease and disability burden in a large representative panel of older Mexicans; evaluation of the effects of individual behaviors, early life circumstances, migration and economic history, community characteristics, and family transfer systems on multiple health outcomes; and comparison of the health dynamics of older Mexicans with comparably aged Mexican-born migrants in the U.S. and second generation Mexican-American using similar data from the U.S. population (for example the biennial Health and Retirement Study HRS) to assess the durability of the migrant health advantage.", "publications": [{"id": 890, "pubmed_id": 26172238, "title": "Progression of aging in Mexico: the Mexican Health and Aging Study (MHAS) 2012.", "year": 2015, "url": "http://doi.org/10.21149/spm.v57s1.7593", "authors": "Wong R,Michaels-Obregon A,Palloni A,Gutierrez-Robledo LM,Gonzalez-Gonzalez C,Lopez-Ortega M,Tellez-Rojo MM,Mendoza-Alvarado LR", "journal": "Salud Publica Mex", "doi": "10.21149/spm.v57s1.7593", "created_at": "2021-09-30T08:23:58.321Z", "updated_at": "2021-09-30T08:23:58.321Z"}], "licence-links": [{"licence-name": "Mexican Health and Aging Study - Unrestricted after Registration (Majority)", "licence-id": 507, "link-id": 1204, "relation": "undefined"}, {"licence-name": "MHAS - Usage Restricted (Subset of Data only)", "licence-id": 512, "link-id": 1205, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3092", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-28T08:52:34.000Z", "updated-at": "2021-12-06T10:47:34.306Z", "metadata": {"name": "SUNScholarData", "status": "ready", "contacts": [{"contact-name": "Samuel Simango", "contact-email": "rdm@sun.ac.za"}], "homepage": "https://scholardata.sun.ac.za/", "citations": [], "identifier": 3092, "description": "SUNScholarData is an institutional research data repository which can be used for the registration, archival storage, sharing and dissemination of research data produced or collected in relation to research conducted under the auspices of Stellenbosch University. The repository has a public interface which can be used for finding content. It also has private user accounts which can be used by Stellenbosch University users in order to upload, share or publish their research data. In addition to this Stellenbosch University researchers can also use SUNScholarData in order to collaborate with researchers from other institutions whilst working on their research projects. The repository creates a medium through which Stellenbosch University\u2019s research data can be made findable and accessible. It also facilitates the interoperability and re-usability of the university\u2019s research data.", "abbreviation": "SUNScholarData", "data-curation": {}, "support-links": [{"url": "https://scholardata.sun.ac.za/rss/portal/sun", "type": "Blog/News"}, {"url": "https://libguides.sun.ac.za/SUNScholarData", "name": "SUNScholarData libguide", "type": "Other"}], "data-processes": [{"url": "https://scholardata.sun.ac.za/", "name": "Browse", "type": "data access"}, {"url": "https://scholardata.sun.ac.za/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013165", "name": "re3data:r3d100013165", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001600", "bsg-d001600"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Engineering Science", "Social Science", "Health Science", "Chemistry", "Earth Science", "Life Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["South Africa"], "name": "FAIRsharing record for: SUNScholarData", "abbreviation": "SUNScholarData", "url": "https://fairsharing.org/fairsharing_records/3092", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SUNScholarData is an institutional research data repository which can be used for the registration, archival storage, sharing and dissemination of research data produced or collected in relation to research conducted under the auspices of Stellenbosch University. The repository has a public interface which can be used for finding content. It also has private user accounts which can be used by Stellenbosch University users in order to upload, share or publish their research data. In addition to this Stellenbosch University researchers can also use SUNScholarData in order to collaborate with researchers from other institutions whilst working on their research projects. The repository creates a medium through which Stellenbosch University\u2019s research data can be made findable and accessible. It also facilitates the interoperability and re-usability of the university\u2019s research data.", "publications": [], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 2513, "relation": "applies_to_content"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 2514, "relation": "applies_to_content"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2515, "relation": "applies_to_content"}, {"licence-name": "Affero GNU GPL v3.0", "licence-id": 15, "link-id": 2516, "relation": "applies_to_content"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2517, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2569", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-27T10:59:31.000Z", "updated-at": "2021-11-24T13:16:39.446Z", "metadata": {"name": "UCAR Digital Asset Services Hub", "status": "in_development", "contacts": [{"contact-name": "UCAR DASH Helpdesk", "contact-email": "datahelp@ucar.edu"}], "homepage": "https://data.ucar.edu/", "identifier": 2569, "description": "A beta version of the UCAR data asset search. Metadata is compiled from a number of data repositories managed by UCAR into the DASH Search to support cross-organizational data searches.", "abbreviation": "DASH Search", "access-points": [{"url": "https://docs.ckan.org/en/2.8/api/", "name": "API guide", "type": "Other"}], "year-creation": 2018, "data-processes": [{"url": "https://data.ucar.edu/dataset", "name": "Browse & Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001052", "bsg-d001052"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: UCAR Digital Asset Services Hub", "abbreviation": "DASH Search", "url": "https://fairsharing.org/fairsharing_records/2569", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A beta version of the UCAR data asset search. Metadata is compiled from a number of data repositories managed by UCAR into the DASH Search to support cross-organizational data searches.", "publications": [], "licence-links": [{"licence-name": "UCAR Privacy Policy", "licence-id": 799, "link-id": 1116, "relation": "undefined"}, {"licence-name": "UCAR Terms of Use", "licence-id": 800, "link-id": 1122, "relation": "undefined"}, {"licence-name": "UCAR Notification Copyright Infringement Digital Millenium Copyright Act", "licence-id": 798, "link-id": 1208, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1562", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:06.643Z", "metadata": {"doi": "10.25504/FAIRsharing.7mm5g5", "name": "Crystallography Open Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "cod-bugs@ibt.lt"}], "homepage": "http://www.crystallography.net/cod/", "identifier": 1562, "description": "The Crystallography Open Database (COD) is a project that aims to gather all available inorganic, metal-organic and small organic molecule structural data in one database.", "abbreviation": "COD", "access-points": [{"url": "https://wiki.crystallography.net/RESTful_API/", "name": "API Description", "type": "REST"}], "support-links": [{"url": "https://wiki.crystallography.net/howtoquerycod/", "name": "How to query COD", "type": "Help documentation"}, {"url": "http://www.crystallography.net/cod/new.html", "name": "News", "type": "Help documentation"}, {"url": "http://wiki.crystallography.net/", "name": "COD Wiki", "type": "Help documentation"}, {"url": "http://www.crystallography.net/cod/structures.rss", "name": "COD RSS", "type": "Blog/News"}, {"url": "https://en.wikipedia.org/wiki/Crystallography_Open_Database", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2003, "data-processes": [{"url": "https://www.crystallography.net/cod/initiate_deposition.php", "name": "Deposit Data", "type": "data curation"}, {"url": "http://www.crystallography.net/cod/browse.html", "name": "Browse by Journal / Year", "type": "data access"}, {"url": "http://www.crystallography.net/cod/search.html", "name": "Search", "type": "data access"}, {"url": "http://www.crystallography.net/cod/jsme_search.html", "name": "Search by Structure", "type": "data access"}, {"url": "https://wiki.crystallography.net/howtoobtaincod/", "name": "Download", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010213", "name": "re3data:r3d100010213", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005874", "name": "SciCrunch:RRID:SCR_005874", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000016", "bsg-d000016"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Organic Chemistry", "Inorganic Molecular Chemistry", "Chemistry"], "domains": ["Molecular structure", "X-ray diffraction", "X-ray crystallography assay"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Crystallography Open Database", "abbreviation": "COD", "url": "https://fairsharing.org/10.25504/FAIRsharing.7mm5g5", "doi": "10.25504/FAIRsharing.7mm5g5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Crystallography Open Database (COD) is a project that aims to gather all available inorganic, metal-organic and small organic molecule structural data in one database.", "publications": [{"id": 760, "pubmed_id": 22070882, "title": "Crystallography Open Database (COD): an open-access collection of crystal structures and platform for world-wide collaboration.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr900", "authors": "Gra\u017eulis S., Da\u0161kevi\u010d A., Merkys A., Chateigner D., Lutterotti L., Quir\u00f3s M., Serebryanaya NR., Moeck P., Downs RT., Le Bail A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr900", "created_at": "2021-09-30T08:23:43.712Z", "updated_at": "2021-09-30T08:23:43.712Z"}, {"id": 789, "pubmed_id": null, "title": "Validation of the Crystallography Open Database using the Crystallographic Information Framework.", "year": 2021, "url": "https://doi.org/10.1107/S1600576720016532", "authors": "Vaitkus, A., Merkys, A. & Gra\u017eulis, S.", "journal": "Journal of Applied Crystallography", "doi": null, "created_at": "2021-09-30T08:23:46.970Z", "updated_at": "2021-09-30T08:23:46.970Z"}, {"id": 1229, "pubmed_id": 26937241, "title": "COD::CIF::Parser: an error-correcting CIF parser for the Perl language.", "year": 2016, "url": "http://doi.org/10.1107/S1600576715022396", "authors": "Merkys A,Vaitkus A,Butkus J,Okulic-Kazarinas M,Kairys V,Grazulis S", "journal": "J Appl Crystallogr", "doi": "10.1107/S1600576715022396", "created_at": "2021-09-30T08:24:37.091Z", "updated_at": "2021-09-30T08:24:37.091Z"}, {"id": 1232, "pubmed_id": 26089747, "title": "Computing stoichiometric molecular composition from crystal structures.", "year": 2015, "url": "http://doi.org/10.1107/S1600576714025904", "authors": "Grazulis S,Merkys A,Vaitkus A,Okulic-Kazarinas M", "journal": "J Appl Crystallogr", "doi": "10.1107/S1600576714025904", "created_at": "2021-09-30T08:24:37.406Z", "updated_at": "2021-09-30T08:24:37.406Z"}, {"id": 2472, "pubmed_id": 22477773, "title": "Crystallography Open Database - an open-access collection of crystal structures.", "year": 2009, "url": "http://doi.org/10.1107/S0021889809016690", "authors": "Grazulis S,Chateigner D,Downs RT,Yokochi AF,Quiros M,Lutterotti L,Manakova E,Butkus J,Moeck P,Le Bail A", "journal": "J Appl Crystallogr", "doi": "10.1107/S0021889809016690", "created_at": "2021-09-30T08:27:03.119Z", "updated_at": "2021-09-30T08:27:03.119Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1926", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.985Z", "metadata": {"doi": "10.25504/FAIRsharing.fh5zm7", "name": "Signaling Pathway Information System", "status": "deprecated", "contacts": [{"contact-email": "fac2003@med.cornell.edu"}], "homepage": "http://icb.med.cornell.edu/crt/SigPath/index.xml", "identifier": 1926, "description": "SigPath is an information system designed to support quantitative studies on the signaling pathways and networks of the cell.A primary emphasis of SigPath is that biochemical information is stored with the details required to make possible quantitative modeling of specific aspects of the cellular machinery. A second emphasis of the system is that SigPath provides user-friendly ways to submit information.", "abbreviation": "SigPath", "support-links": [{"url": "http://icb.med.cornell.edu/crt/SigPath/index.xml", "type": "Help documentation"}], "data-processes": [{"url": "http://icb.med.cornell.edu/crt/SigPath/download.xml", "name": "Download", "type": "data access"}], "deprecation-date": "2015-07-28", "deprecation-reason": "This resource is no longer maintained."}, "legacy-ids": ["biodbcore-000391", "bsg-d000391"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Network model", "Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Signaling Pathway Information System", "abbreviation": "SigPath", "url": "https://fairsharing.org/10.25504/FAIRsharing.fh5zm7", "doi": "10.25504/FAIRsharing.fh5zm7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SigPath is an information system designed to support quantitative studies on the signaling pathways and networks of the cell.A primary emphasis of SigPath is that biochemical information is stored with the details required to make possible quantitative modeling of specific aspects of the cellular machinery. A second emphasis of the system is that SigPath provides user-friendly ways to submit information.", "publications": [], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1254, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3118", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-11T13:09:14.000Z", "updated-at": "2021-12-06T10:47:35.179Z", "metadata": {"name": "Data Center for Aurora in NIPR", "status": "ready", "contacts": [{"contact-name": "Akira Kadokura", "contact-email": "kadokura@nipr.ac.jp", "contact-orcid": "0000-0002-6105-9562"}], "homepage": "http://polaris.nipr.ac.jp/~aurora/", "identifier": 3118, "description": "The Data Center for Aurora in NIPR is responsible for data archiving and dissemination of all-sky camera observations, visual observations, other optical observations (such as TV and photometric observations), auroral image and particle observations from satellites, geomagnetic observations, and observations of upper atmosphere phenomena associated with aurora.", "year-creation": 1981, "data-processes": [{"url": "http://polaris.nipr.ac.jp/~aurora/datacatalog/datacatalog.html", "name": "Data Catalogue", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010454", "name": "re3data:r3d100010454", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001628", "bsg-d001628"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["aurora", "Geomagnetism", "Satellite Data"], "countries": ["Japan"], "name": "FAIRsharing record for: Data Center for Aurora in NIPR", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3118", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data Center for Aurora in NIPR is responsible for data archiving and dissemination of all-sky camera observations, visual observations, other optical observations (such as TV and photometric observations), auroral image and particle observations from satellites, geomagnetic observations, and observations of upper atmosphere phenomena associated with aurora.", "publications": [], "licence-links": [{"licence-name": "Guidelines for data management, Polar Data Center", "licence-id": 369, "link-id": 293, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2545", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-30T12:59:46.000Z", "updated-at": "2021-11-24T13:13:13.398Z", "metadata": {"doi": "10.25504/FAIRsharing.khqejc", "name": "ThermoML Archive", "status": "ready", "contacts": [{"contact-name": "Kenneth Kroenlein", "contact-email": "kenneth.kroenlein@nist.gov"}], "homepage": "https://www.nist.gov/mml/acmd/trc/thermoml/thermoml-archive", "identifier": 2545, "description": "The ThermoML Archive is a storage facility of experimental thermophysical and thermochemical property data. The repository was created through the cooperation between the Thermodynamics Research Center (TRC), NIST and: Journal of Chemical and Engineering Data (JCED), Journal of Chemical Thermodynamics, Fluid Phase Equilibria, Thermochimica Acta, and the International Journal of Thermophysics. The ThermoML files corresponding to articles in the journals are available with permission of the journal publishers.", "abbreviation": "ThermoML Archive", "support-links": [{"url": "https://trc.nist.gov/RSS/", "name": "RSS Feeds by Journal", "type": "Blog/News"}], "year-creation": 2006, "data-processes": [{"url": "https://trc.nist.gov/journals/ijt/2017/ijt2017v38i5.html", "name": "Browse International Journal of Thermophysics Data", "type": "data access"}, {"url": "https://trc.nist.gov/journals/jced/2017/jced2017v62i9.html", "name": "Browse Journal of Chemical & Engineering Data", "type": "data access"}, {"url": "https://trc.nist.gov/journals/tca/2017/tca2017v653i0.html", "name": "Browse Thermochimica Acta Data", "type": "data access"}, {"url": "https://trc.nist.gov/journals/fpe/2017/fpe2017v446i0.html", "name": "Browse Fluid Phase Equilibria Data", "type": "data access"}, {"url": "https://trc.nist.gov/journals/jct/2017/jct2017v107i0.html", "name": "Browse The Journal of Chemical Thermodynamics Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001028", "bsg-d001028"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Thermodynamics", "Chemistry", "Chemical Engineering"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ThermoML Archive", "abbreviation": "ThermoML Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.khqejc", "doi": "10.25504/FAIRsharing.khqejc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ThermoML Archive is a storage facility of experimental thermophysical and thermochemical property data. The repository was created through the cooperation between the Thermodynamics Research Center (TRC), NIST and: Journal of Chemical and Engineering Data (JCED), Journal of Chemical Thermodynamics, Fluid Phase Equilibria, Thermochimica Acta, and the International Journal of Thermophysics. The ThermoML files corresponding to articles in the journals are available with permission of the journal publishers.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1929", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:28.589Z", "metadata": {"doi": "10.25504/FAIRsharing.xxdxtv", "name": "Human Proteinpedia", "status": "ready", "contacts": [{"contact-name": "Akhilesh Pandey", "contact-email": "pandey@jhmi.edu"}], "homepage": "http://www.humanproteinpedia.org/", "identifier": 1929, "description": "Human Proteinpedia is a community portal for sharing and integration of human protein data. It allows research laboratories to contribute and maintain protein annotations.", "support-links": [{"url": "http://pdas.hprd.org/help", "type": "Contact form"}, {"url": "http://www.humanproteinpedia.org/FAQs", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2007, "data-processes": [{"url": "http://www.humanproteinpedia.org/download", "name": "Download", "type": "data access"}, {"url": "http://www.humanproteinpedia.org/query", "name": "search", "type": "data access"}, {"url": "http://pdas.hprd.org", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010985", "name": "re3data:r3d100010985", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000394", "bsg-d000394"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Human Proteinpedia", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.xxdxtv", "doi": "10.25504/FAIRsharing.xxdxtv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Human Proteinpedia is a community portal for sharing and integration of human protein data. It allows research laboratories to contribute and maintain protein annotations.", "publications": [{"id": 418, "pubmed_id": 18948298, "title": "Human Proteinpedia: a unified discovery resource for proteomics research.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn701", "authors": "Kandasamy K., Keerthikumar S., Goel R., Mathivanan S., Patankar N., Shafreen B., Renuse S., Pawar H., Ramachandra YL., Acharya PK., Ranganathan P., Chaerkady R., Keshava Prasad TS., Pandey A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn701", "created_at": "2021-09-30T08:23:05.452Z", "updated_at": "2021-09-30T08:23:05.452Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2249", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-09T15:29:05.000Z", "updated-at": "2021-11-24T13:15:35.488Z", "metadata": {"doi": "10.25504/FAIRsharing.tpqndj", "name": "Model Archive", "status": "ready", "contacts": [{"contact-name": "Torsten Schwede", "contact-email": "torsten.schwede@unibas.ch", "contact-orcid": "0000-0003-2715-335X"}], "homepage": "https://www.modelarchive.org/", "identifier": 2249, "description": "The Model Archive provides a stable archive for computational macro-molecular models published in the scientific literature. The model archive provides a unique stable accession code (DOI) for each deposited model, which can be directly referenced in the corresponding manuscripts.", "abbreviation": "Model Archive", "support-links": [{"url": "help-modelarchive@unibas.ch", "name": "General Contact", "type": "Support email"}, {"url": "https://www.modelarchive.org/help", "name": "Help Diagram", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://www.modelarchive.org/projects/new/basic", "name": "Model Deposition", "type": "data curation"}, {"url": "https://www.modelarchive.org/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000723", "bsg-d000723"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Molecular structure", "Mathematical model", "Protein structure", "Computational biological predictions", "Modeling and simulation", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "Switzerland"], "name": "FAIRsharing record for: Model Archive", "abbreviation": "Model Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.tpqndj", "doi": "10.25504/FAIRsharing.tpqndj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Model Archive provides a stable archive for computational macro-molecular models published in the scientific literature. The model archive provides a unique stable accession code (DOI) for each deposited model, which can be directly referenced in the corresponding manuscripts.", "publications": [{"id": 1369, "pubmed_id": 23624946, "title": "The Protein Model Portal--a comprehensive resource for protein structure and model information.", "year": 2013, "url": "http://doi.org/10.1093/database/bat031", "authors": "Haas J,Roth S,Arnold K,Kiefer F,Schmidt T,Bordoli L,Schwede T", "journal": "Database (Oxford)", "doi": "10.1093/database/bat031", "created_at": "2021-09-30T08:24:53.093Z", "updated_at": "2021-09-30T08:24:53.093Z"}, {"id": 2988, "pubmed_id": 19217386, "title": "Outcome of a workshop on applications of protein models in biomedical research.", "year": 2009, "url": "http://doi.org/10.1016/j.str.2008.12.014", "authors": "Schwede T,Sali A,Honig B,Levitt M,Berman HM et al.", "journal": "Structure", "doi": "10.1016/j.str.2008.12.014", "created_at": "2021-09-30T08:28:08.333Z", "updated_at": "2021-09-30T08:28:08.333Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 535, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2372", "type": "fairsharing-records", "attributes": {"created-at": "2016-12-07T22:02:32.000Z", "updated-at": "2021-12-06T10:47:47.738Z", "metadata": {"doi": "10.25504/FAIRsharing.1y63n8", "name": "MorphoBank", "status": "ready", "contacts": [{"contact-name": "Tanya Berardini", "contact-email": "tberardini@phoenixbioinformatics.org", "contact-orcid": "0000-0002-3837-8864"}], "homepage": "https://morphobank.org/", "identifier": 2372, "description": "MorphoBank provides a digital archive of biodiversity and evolutionary research data, specifically systematics (the science of determining the evolutionary relationships among species). MorphoBank aids development of the Tree of Life - the genealogy of all living and extinct species. Heritable features - both genotypes (e.g., DNA sequences) and phenotypes (e.g., anatomy, behavior, physiology) are stored as part of the Tree of Life project. While the genomic part of this work is archived at the National Center for Biotechnology Information (NCBI), MorphoBank is part of the infrastructure for storing and sharing phenotype data, including information on anatomy, physiology, behavior and other features of species. One can think of MorphoBank as two databases in one: one that permits researchers to upload images and affiliate data with those images (labels, species names, etc.) and a second database that allows researchers to upload morphological data and affiliate it with phylogenetic matrices. In both cases, MorphoBank is project-based, meaning a team of researchers can create a project and share the images and associated data exclusively with each other. When a paper associated with the project is published, the research team can make their data permanently available for view on MorphoBank where it is now archived. The phylogenetic matrix aspect of MorphoBank is designed to aid systematists working alone or in teams to build large phylogenetic trees using morphology (anatomy, histology, neurology, or any aspect of phenotypes) or a combination of morphology and molecular data.", "abbreviation": "MorphoBank", "access-points": [{"url": "https://morphobank.org/index.php/About/api", "name": "MorphoBank API", "type": "REST"}], "support-links": [{"url": "https://morphobank.org/index.php/Press/Index", "name": "In The News", "type": "Blog/News"}, {"url": "https://morphobank.org/index.php/Contact/Index", "name": "Contact Form", "type": "Contact form"}, {"url": "https://morphobank.org/index.php/FAQ/Index", "name": "MorphoBank FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://morphobank.org/index.php/Documentation/Index", "name": "Documentation", "type": "Help documentation"}, {"url": "https://morphobank.org/index.php/About/Index", "name": "About MorphoBank", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Morphobank", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2001, "data-processes": [{"url": "https://morphobank.org/index.php/Projects/Index", "name": "Browse Projects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010101", "name": "re3data:r3d100010101", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003213", "name": "SciCrunch:RRID:SCR_003213", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000851", "bsg-d000851"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Paleontology", "Phylogeny", "Phylogenetics", "Behavioural Biology", "Biodiversity", "Evolutionary Biology", "Biology"], "domains": ["Bioimaging", "Evolution"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MorphoBank", "abbreviation": "MorphoBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.1y63n8", "doi": "10.25504/FAIRsharing.1y63n8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MorphoBank provides a digital archive of biodiversity and evolutionary research data, specifically systematics (the science of determining the evolutionary relationships among species). MorphoBank aids development of the Tree of Life - the genealogy of all living and extinct species. Heritable features - both genotypes (e.g., DNA sequences) and phenotypes (e.g., anatomy, behavior, physiology) are stored as part of the Tree of Life project. While the genomic part of this work is archived at the National Center for Biotechnology Information (NCBI), MorphoBank is part of the infrastructure for storing and sharing phenotype data, including information on anatomy, physiology, behavior and other features of species. One can think of MorphoBank as two databases in one: one that permits researchers to upload images and affiliate data with those images (labels, species names, etc.) and a second database that allows researchers to upload morphological data and affiliate it with phylogenetic matrices. In both cases, MorphoBank is project-based, meaning a team of researchers can create a project and share the images and associated data exclusively with each other. When a paper associated with the project is published, the research team can make their data permanently available for view on MorphoBank where it is now archived. The phylogenetic matrix aspect of MorphoBank is designed to aid systematists working alone or in teams to build large phylogenetic trees using morphology (anatomy, histology, neurology, or any aspect of phenotypes) or a combination of morphology and molecular data.", "publications": [{"id": 2203, "pubmed_id": 24987572, "title": "Best practices for data sharing in phylogenetic research.", "year": 2014, "url": "http://doi.org/10.1371/currents.tol.bf01eff4a6b60ca4825c69293dc59645", "authors": "Cranston K,Harmon LJ,O'Leary MA,Lisle C", "journal": "PLoS Curr", "doi": "10.1371/currents.tol.bf01eff4a6b60ca4825c69293dc59645", "created_at": "2021-09-30T08:26:28.248Z", "updated_at": "2021-09-30T08:26:28.248Z"}, {"id": 2204, "pubmed_id": 25861210, "title": "A RESTful API for Access to Phylogenetic Tools via the CIPRES Science Gateway.", "year": 2015, "url": "http://doi.org/10.4137/EBO.S21501", "authors": "Miller MA,Schwartz T,Pickett BE,He S,Klem EB,Scheuermann RH,Passarotti M,Kaufman S,O'Leary MA", "journal": "Evol Bioinform Online", "doi": "10.4137/EBO.S21501", "created_at": "2021-09-30T08:26:28.401Z", "updated_at": "2021-09-30T08:26:28.401Z"}, {"id": 2205, "pubmed_id": null, "title": "From card catalogs to computers: databases in vertebrate paleontology", "year": 2013, "url": "http://doi.org/10.1080/02724634.2012.716114", "authors": "Mark D. Uhen, Anthony D. Barnosky, Brian Bills, et al.", "journal": "Journal of Vertebrate Paleontology, 33:1, 13-28", "doi": "10.1080/02724634.2012.716114", "created_at": "2021-09-30T08:26:28.523Z", "updated_at": "2021-09-30T08:26:28.523Z"}, {"id": 2224, "pubmed_id": null, "title": "Editorial", "year": 2011, "url": "http://doi.org/10.1080/02724634.2011.546742", "authors": "Annalisa Berta, Paul M. Barrett", "journal": "Journal of Vertebrate Paleontology, 31:1, 1", "doi": "10.1080/02724634.2011.546742", "created_at": "2021-09-30T08:26:30.599Z", "updated_at": "2021-09-30T08:26:30.599Z"}, {"id": 2225, "pubmed_id": null, "title": "The encyclopedia of life", "year": 2003, "url": "http://doi.org/10.1016/S0169-5347(02)00040-X", "authors": "Wilson, Edward O", "journal": "Trends in Ecology and Evolution , Volume 18 , Issue 2 , 77 - 80", "doi": "10.1016/S0169-5347(02)00040-X", "created_at": "2021-09-30T08:26:30.699Z", "updated_at": "2021-09-30T08:26:30.699Z"}, {"id": 2226, "pubmed_id": null, "title": "Strategies and guidelines for scholarly publishing of biodiversity data", "year": 2017, "url": "http://doi.org/10.3897/rio.3.e12431", "authors": "Penev L, Mietchen D, Chavan V, Hagedorn G, Smith V, Shotton D, O Tuama E, Senderov V, Georgiev T, Stoev P, Groom Q, Remsen D, Edmunds S", "journal": "Research Ideas and Outcomes 3: e12431", "doi": "10.3897/rio.3.e12431", "created_at": "2021-09-30T08:26:30.810Z", "updated_at": "2021-09-30T08:26:30.810Z"}, {"id": 3072, "pubmed_id": null, "title": "MorphoBank: phylophenomics in the \u201ccloud\u201d", "year": 2011, "url": "http://doi.org/10.1111/j.1096-0031.2011.00355.x", "authors": "O'Leary, M. A. and Kaufman, S.", "journal": "Cladistics, 27: 529\u2013537", "doi": "10.1111/j.1096-0031.2011.00355.x", "created_at": "2021-09-30T08:28:18.549Z", "updated_at": "2021-09-30T08:28:18.549Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2160, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2161, "relation": "undefined"}, {"licence-name": "MorphoBank Terms of Use", "licence-id": 521, "link-id": 2162, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2070", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:22.068Z", "metadata": {"doi": "10.25504/FAIRsharing.pdx9yt", "name": "Aspergillus Genomes", "status": "deprecated", "contacts": [{"contact-name": "Jane E. Mabey Gilsenan", "contact-email": "jane.gilsenan@manchester.ac.uk"}], "homepage": "http://www.aspergillus-genomes.org.uk/", "identifier": 2070, "description": "Aspergillus Genomes is a resource for viewing annotated genes arising from various Aspergillus sequencing and annotation projects.", "support-links": [{"url": "http://www.aspergillusblog.blogspot.co.uk", "type": "Blog/News"}, {"url": "admin@aspergillus.org.uk", "type": "Support email"}, {"url": "http://www.aspergillus.org.uk/content/proposal-naming-genes-aspergillus-species", "type": "Help documentation"}, {"url": "http://www.aspergillus.org.uk/content/aspergillus-genomics-research-policy-committee-meeting-minutes", "type": "Help documentation"}], "data-processes": [{"url": "http://www.aspergillus.org.uk/content/aspergillus-genomes", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://www.cadre-genomes.org.uk/Aspergillus_fumigatus/blastview", "name": "blast"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource has been deprecated because the homepage no longer exists and the project has been obsoleted. Please see https://www.aspergillus.org.uk/genomes/aspergillus-genomes/ for more information"}, "legacy-ids": ["biodbcore-000537", "bsg-d000537"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Gene", "Genome"], "taxonomies": ["Aspergillus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Aspergillus Genomes", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.pdx9yt", "doi": "10.25504/FAIRsharing.pdx9yt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Aspergillus Genomes is a resource for viewing annotated genes arising from various Aspergillus sequencing and annotation projects.", "publications": [{"id": 128, "pubmed_id": 19039001, "title": "Aspergillus genomes and the Aspergillus cloud.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn876", "authors": "Mabey Gilsenan JE., Atherton G., Bartholomew J., Giles PF., Attwood TK., Denning DW., Bowyer P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn876", "created_at": "2021-09-30T08:22:34.064Z", "updated_at": "2021-09-30T08:22:34.064Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1186, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2161", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:05.756Z", "metadata": {"doi": "10.25504/FAIRsharing.6yw6cp", "name": "PANGAEA - Data Publisher for Earth and Environmental Science", "status": "ready", "contacts": [{"contact-name": "Prof. Dr. Frank Oliver Gl\u00f6ckner", "contact-email": "info@pangaea.de"}], "homepage": "https://www.pangaea.de", "identifier": 2161, "description": "The information system PANGAEA is operated as an Open Access library aimed at archiving, publishing and distributing georeferenced data from earth system research. PANGAEA is a member of the ICSU World Data System (WDS).", "abbreviation": "PANGAEA", "access-points": [{"url": "https://ws.pangaea.de/oai/", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://secure.pangaea.de/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "info@pangaea.de", "name": "General Contact", "type": "Support email"}, {"url": "https://www.pangaea.de/about/", "name": "About", "type": "Help documentation"}, {"url": "http://www.pangaea.de/tools/latest-datasets.rss", "name": "RSS Feed", "type": "Blog/News"}], "year-creation": 2002, "data-processes": [{"url": "https://www.pangaea.de/submit/", "name": "Submit", "type": "data access"}, {"url": "https://www.pangaea.de/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://www.elastic.co/products/elasticsearch", "name": "Elastic"}, {"url": "http://www.panfmp.org", "name": "PanFMP"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010134", "name": "re3data:r3d100010134", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000633", "bsg-d000633"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Fisheries Science", "Environmental Science", "Paleontology", "Geophysics", "Chemistry", "Ecology", "Biodiversity", "Earth Science", "Atmospheric Science", "Agriculture", "Life Science", "Freshwater Science", "Oceanography", "Biology"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": ["Paleoceanography"], "countries": ["Germany"], "name": "FAIRsharing record for: PANGAEA - Data Publisher for Earth and Environmental Science", "abbreviation": "PANGAEA", "url": "https://fairsharing.org/10.25504/FAIRsharing.6yw6cp", "doi": "10.25504/FAIRsharing.6yw6cp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The information system PANGAEA is operated as an Open Access library aimed at archiving, publishing and distributing georeferenced data from earth system research. PANGAEA is a member of the ICSU World Data System (WDS).", "publications": [{"id": 640, "pubmed_id": null, "title": "PANGAEA - an information system for environmental sciences", "year": 2002, "url": "http://doi.org/10.1016/S0098-3004(02)00039-0", "authors": "Diepenbroek, M., Grobe, H., Reinke, M., Schindler, U., Schlitzer, R., Sieger, R., Wefer, G.", "journal": "Computers & Geosciences", "doi": "10.1016/S0098-3004(02)00039-0", "created_at": "2021-09-30T08:23:30.451Z", "updated_at": "2021-09-30T08:23:30.451Z"}], "licence-links": [{"licence-name": "Pangaea Terms of Use", "licence-id": 647, "link-id": 1312, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1314, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2506", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-10T15:37:58.000Z", "updated-at": "2021-12-06T10:48:19.255Z", "metadata": {"doi": "10.25504/FAIRsharing.bmz5ap", "name": "Qualitative Data Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "qdr@syr.edu"}], "homepage": "https://qdr.syr.edu", "identifier": 2506, "description": "The Qualitative Data Repository (QDR) is a dedicated archive for storing and sharing digital data (and accompanying documentation) generated or collected through qualitative and multi-method research in the social sciences. QDR provides search tools to facilitate the discovery of data, and also serves as a portal to material beyond its own holdings, with links to U.S. and international archives. The repository\u2019s initial emphasis is on political science. Four beliefs underpin the repository's mission: data that can be shared and reused should be; evidence-based claims should be made transparently; teaching is enriched by the use of well-documented data; and rigorous social science requires common understandings of its research methods.", "abbreviation": "QDR", "access-points": [{"url": "https://data.qdr.syr.edu/api/", "name": "API following the standard Dataverse API schema: https://guides.dataverse.org/en/latest/api/", "type": "REST"}], "support-links": [{"url": "https://qdr.syr.edu/qdr-blog", "name": "QDR's Blog", "type": "Blog/News"}, {"url": "qdr@syr.edu", "name": "QDR support", "type": "Support email"}, {"url": "https://twitter.com/qdrepository", "name": "Twitter account", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://data.qdr.syr.edu", "name": "QDR Main Catalog", "type": "data access"}, {"url": "https://qdr.syr.edu/policies/curation", "name": "QDR curation process", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011038", "name": "re3data:r3d100011038", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000988", "bsg-d000988"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Humanities", "Social Science", "Political Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Qualitative Data Repository", "abbreviation": "QDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.bmz5ap", "doi": "10.25504/FAIRsharing.bmz5ap", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Qualitative Data Repository (QDR) is a dedicated archive for storing and sharing digital data (and accompanying documentation) generated or collected through qualitative and multi-method research in the social sciences. QDR provides search tools to facilitate the discovery of data, and also serves as a portal to material beyond its own holdings, with links to U.S. and international archives. The repository\u2019s initial emphasis is on political science. Four beliefs underpin the repository's mission: data that can be shared and reused should be; evidence-based claims should be made transparently; teaching is enriched by the use of well-documented data; and rigorous social science requires common understandings of its research methods.", "publications": [{"id": 846, "pubmed_id": null, "title": "Beyond the Matrix: Repository Services for Qualitative Data", "year": 2016, "url": "http://doi.org/10.1177/0340035216672870", "authors": "Karcher, Sebastian, Dessislava Kirilova, and Nicholas Weber", "journal": "IFLA Journal", "doi": "10.1177/0340035216672870", "created_at": "2021-09-30T08:23:53.345Z", "updated_at": "2021-09-30T08:23:53.345Z"}, {"id": 929, "pubmed_id": null, "title": "Data Access and Research Transparency in the Qualitative Tradition", "year": 2014, "url": "http://doi.org/10.1017/S1049096513001777", "authors": "Elman, Colin, and Diana Kapiszewski", "journal": "PS: Political Science & Politics", "doi": "10.1017/S1049096513001777", "created_at": "2021-09-30T08:24:02.770Z", "updated_at": "2021-09-30T08:24:02.770Z"}], "licence-links": [{"licence-name": "QDR Standard Download Agreement", "licence-id": 691, "link-id": 1280, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1284, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1287, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2511", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-16T07:31:15.000Z", "updated-at": "2021-12-06T10:47:46.896Z", "metadata": {"doi": "10.25504/FAIRsharing.1sfhp3", "name": "Donders Repository", "status": "ready", "contacts": [{"contact-name": "Robert Oostenveld", "contact-email": "r.oostenveld@donders.ru.nl", "contact-orcid": "0000-0002-1974-1293"}], "homepage": "http://data.donders.ru.nl", "identifier": 2511, "description": "The Donders Institute for Brain, Cognition and Behavior at the Radboud University created the Donders Repository for archiving, preserving and sharing the research data generated and processed at the institute.", "abbreviation": "DR", "support-links": [{"url": "datasupport@donders.ru.nl", "name": "Data support team", "type": "Support email"}, {"url": "https://data.donders.ru.nl/doc/help/", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://data.donders.ru.nl/collections/published/", "name": "Browse & search", "type": "data access"}, {"url": "https://public.data.donders.ru.nl/", "name": "Download public access data", "type": "data access"}, {"url": "https://webdav.data.donders.ru.nl", "name": "Download restricted access data", "type": "data access"}], "associated-tools": [{"url": "https://irods.org", "name": "iRODS"}, {"url": "https://cyberduck.io", "name": "CyberDuck"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012701", "name": "re3data:r3d100012701", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000993", "bsg-d000993"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurophysiology", "Computational Neuroscience", "Life Science", "Social and Behavioural Science"], "domains": ["Behavior", "Cognition", "Brain", "Brain imaging"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: Donders Repository", "abbreviation": "DR", "url": "https://fairsharing.org/10.25504/FAIRsharing.1sfhp3", "doi": "10.25504/FAIRsharing.1sfhp3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Donders Institute for Brain, Cognition and Behavior at the Radboud University created the Donders Repository for archiving, preserving and sharing the research data generated and processed at the institute.", "publications": [], "licence-links": [{"licence-name": "Donders Repository Privacy Policy", "licence-id": 251, "link-id": 1432, "relation": "undefined"}, {"licence-name": "RU-DI-HD-1.0 - License for potentially identifying human data", "licence-id": 717, "link-id": 1433, "relation": "undefined"}, {"licence-name": "RU-DI-NH-1.0 - License for non-identifiable or non-human data", "licence-id": 718, "link-id": 1434, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3330", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-10T19:44:31.000Z", "updated-at": "2021-12-06T10:47:43.795Z", "metadata": {"name": "European Synchrotron Radiation Facility Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "webgroup@esrf.fr"}], "homepage": "https://data.esrf.fr", "identifier": 3330, "description": "The European Synchrotron Radiation Facility (ESRF) Data Portal stores all experimental data and corresponding metadata produced at the facility. An anonymous login is available to search public data.", "abbreviation": "ESRF Data Portal", "support-links": [{"url": "https://www.esrf.fr/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.esrf.fr/DOI", "name": "About ESRF DOIs", "type": "Help documentation"}, {"url": "https://www.esrf.fr/ICAT", "name": "About ICAT Metadata", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/European_Synchrotron_Radiation_Facility", "name": "ESRF Wikipedia Entry", "type": "Wikipedia"}], "data-processes": [{"url": "https://data.esrf.fr/public", "name": "Search Public Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013217", "name": "re3data:r3d100013217", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001849", "bsg-d001849"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["High Energy Physics"], "countries": ["European Union"], "name": "FAIRsharing record for: European Synchrotron Radiation Facility Data Portal", "abbreviation": "ESRF Data Portal", "url": "https://fairsharing.org/fairsharing_records/3330", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Synchrotron Radiation Facility (ESRF) Data Portal stores all experimental data and corresponding metadata produced at the facility. An anonymous login is available to search public data.", "publications": [], "licence-links": [{"licence-name": "ESRF Data Policies, Storage and Services", "licence-id": 289, "link-id": 748, "relation": "undefined"}, {"licence-name": "ESRF Data Policy", "licence-id": 290, "link-id": 750, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3082", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-23T10:32:06.000Z", "updated-at": "2021-12-08T09:32:39.786Z", "metadata": {"name": "Portal de Datos del Mar", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "sndm@mincyt.gob.ar"}], "homepage": "http://portal.mincyt.gob.ar/portal/portal/sndm/home", "citations": [], "identifier": 3082, "description": "The portal is an initiative of the National Data System of the Sea (SNDM) of the Ministry of Science, Technology and Productive Innovation of Argentina. It allows easy discovery and Open Access to marine and coastal data generated as a result of research funded by the National State, in addition to favoring the standardization of data produced by the different institutions related to the SNDM.", "abbreviation": "PDM-SNDM", "data-processes": [{"url": "http://portal.mincyt.gob.ar/portal/portal/sndm/data/nodcs", "name": "Browse", "type": "data access"}, {"url": "http://portal.mincyt.gob.ar/portal/portal/sndm/data/adhoc", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012717", "name": "re3data:r3d100012717", "portal": "re3data"}], "deprecation-date": "2021-12-08", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001590", "bsg-d001590"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Coast", "Zooplankton"], "countries": ["Argentina"], "name": "FAIRsharing record for: Portal de Datos del Mar", "abbreviation": "PDM-SNDM", "url": "https://fairsharing.org/fairsharing_records/3082", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The portal is an initiative of the National Data System of the Sea (SNDM) of the Ministry of Science, Technology and Productive Innovation of Argentina. It allows easy discovery and Open Access to marine and coastal data generated as a result of research funded by the National State, in addition to favoring the standardization of data produced by the different institutions related to the SNDM.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3046", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-23T13:04:02.000Z", "updated-at": "2021-12-06T10:47:31.605Z", "metadata": {"name": "DART Data", "status": "uncertain", "contacts": [], "homepage": "http://dartportal.leeds.ac.uk/", "citations": [], "identifier": 3046, "description": "The Detection of Archaeological Residues using Remote-sensing Techniques (DART) project was initiated in 2010 in order to investigate the ability of various sensors to detect archaeological features in \u2018difficult\u2019 circumstances. Concluding in September 2013, DART had the overall aim of developing analytical methods for identifying and quantifying gradual changes and dynamics in sensor responses associated with surface and near-surface archaeological features under different environmental and land-management conditions.", "abbreviation": "DART Data", "year-creation": 2010, "data-processes": [{"url": "http://dartportal.leeds.ac.uk/dataset", "name": "Browse dataset", "type": "data access"}, {"url": "http://dartportal.leeds.ac.uk/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012418", "name": "re3data:r3d100012418", "portal": "re3data"}], "deprecation-date": null, "deprecation-reason": null}, "legacy-ids": ["biodbcore-001554", "bsg-d001554"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cartography", "Humanities", "Geoinformatics", "Ancient Cultures", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Archaeology"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: DART Data", "abbreviation": "DART Data", "url": "https://fairsharing.org/fairsharing_records/3046", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Detection of Archaeological Residues using Remote-sensing Techniques (DART) project was initiated in 2010 in order to investigate the ability of various sensors to detect archaeological features in \u2018difficult\u2019 circumstances. Concluding in September 2013, DART had the overall aim of developing analytical methods for identifying and quantifying gradual changes and dynamics in sensor responses associated with surface and near-surface archaeological features under different environmental and land-management conditions.", "publications": [], "licence-links": [{"licence-name": "Open Definition 2.1", "licence-id": 622, "link-id": 1960, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1987", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.552Z", "metadata": {"doi": "10.25504/FAIRsharing.wpt5mp", "name": "PubMed Central", "status": "ready", "contacts": [{"contact-email": "pubmedcentral@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/pmc/", "identifier": 1987, "description": "PubMed Central (PMC) is the U.S. National Institutes of Health (NIH) digital archive of biomedical and life sciences journal literature.", "abbreviation": "PMC", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/pmc/about/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK3825/", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/pmc/about/intro/", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/europe-pmc-quick-tour", "name": "Europe pmc quick tour", "type": "TeSS links to training materials"}], "year-creation": 1996, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/pub/pmc", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/pmc/pmctopmid/", "name": "converter"}]}, "legacy-ids": ["biodbcore-000453", "bsg-d000453"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Bibliography", "Publication"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: PubMed Central", "abbreviation": "PMC", "url": "https://fairsharing.org/10.25504/FAIRsharing.wpt5mp", "doi": "10.25504/FAIRsharing.wpt5mp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PubMed Central (PMC) is the U.S. National Institutes of Health (NIH) digital archive of biomedical and life sciences journal literature.", "publications": [{"id": 2200, "pubmed_id": 21097890, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1172", "authors": "Sayers EW., Barrett T., Benson DA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1172", "created_at": "2021-09-30T08:26:27.948Z", "updated_at": "2021-09-30T08:26:27.948Z"}, {"id": 2901, "pubmed_id": 22140104, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1184", "authors": "Sayers EW., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1184", "created_at": "2021-09-30T08:27:57.248Z", "updated_at": "2021-09-30T08:27:57.248Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 937, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 946, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3103", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-04T10:01:42.000Z", "updated-at": "2021-12-06T10:47:34.618Z", "metadata": {"name": "Site Survey Data Bank", "status": "ready", "contacts": [{"contact-name": "Holly Given", "contact-email": "hgiven@ucsd.edu"}], "homepage": "http://ssdb.iodp.org/", "identifier": 3103, "description": "The Site Survey Data Bank (SSDB) is a repository for site survey data submitted in support of International Ocean Discovery Program (IODP) proposals and expeditions. The IODP Program is an international marine research collaboration that explores Earth's history and dynamics using ocean-going research platforms to recover data recorded in seafloor sediments and rocks and to monitor subseafloor environments. SSDB resource allows the science community to access and upload drilling-related data.", "abbreviation": "SSDB", "support-links": [{"url": "http://ssdb.iodp.org/support.php", "type": "Help documentation"}, {"url": "https://www.iodp.org/top-resources/program-documents/policies-and-guidelines/496-iodp-guidelines-for-site-characterization-data-july-2019/file", "name": "Site Characterization Data Guidelines", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.iodp.org/top-resources/program-documents/policies-and-guidelines/696-iodp-proposal-submission-guidelines-july-2020/file", "name": "IODP Proposal Submission Guidelines", "type": "data access"}, {"url": "http://ssdb.iodp.org/SSDBquery/SSDBquery.php", "name": "SSDB query", "type": "data access"}, {"url": "http://ssdb.iodp.org/SSDBquery/SSDBlegacy.php?xml=legacy.xml", "name": "SSDB legacy data search", "type": "data access"}, {"url": "http://ssdb.iodp.org/userregister.php", "name": "Register", "type": "data curation"}, {"url": "http://ssdb.iodp.org/documents/howtosubmit.php", "name": "How to submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011543", "name": "re3data:r3d100011543", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001611", "bsg-d001611"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Drilling", "Sedimentology", "subseafloor environments", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Site Survey Data Bank", "abbreviation": "SSDB", "url": "https://fairsharing.org/fairsharing_records/3103", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Site Survey Data Bank (SSDB) is a repository for site survey data submitted in support of International Ocean Discovery Program (IODP) proposals and expeditions. The IODP Program is an international marine research collaboration that explores Earth's history and dynamics using ocean-going research platforms to recover data recorded in seafloor sediments and rocks and to monitor subseafloor environments. SSDB resource allows the science community to access and upload drilling-related data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2989", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T14:30:54.000Z", "updated-at": "2021-11-24T13:17:10.471Z", "metadata": {"doi": "10.25504/FAIRsharing.kXzfjt", "name": "National Cancer Institute\u2019s Proteomic Data Commons", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nci.pdc.help@esacinc.com"}], "homepage": "https://pdc.cancer.gov/", "identifier": 2989, "description": "The NCI's Proteomic Data Commons has been created to make cancer-related proteomic datasets easily accessible to the public, and to facilitate multi-omic integration in support of precision medicine through interoperability with other resources. The PDC is one of several repositories within the NCI Cancer Research Data Commons (CRDC), a secure cloud-based infrastructure featuring diverse data sets and innovative analytic tools \u2013 all designed to advance data-driven scientific discovery. The CRDC enables researchers to link proteomic data with other data sets (e.g., genomic and imaging data) and to submit, collect, analyze, store, and share data throughout the cancer data ecosystem.", "abbreviation": "NCI PDC", "access-points": [{"url": "https://pdc.cancer.gov/data-dictionary/apidocumentation.html", "name": "PDC GraphQL API", "type": "Other"}], "support-links": [{"url": "https://pdc.cancer.gov/pdc/faq", "name": "PDC FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/a/esacinc.com/forum/#!forum/pdc-mvp-feedback", "name": "Google Group", "type": "Forum"}, {"url": "https://list.nih.gov/cgi-bin/wa.exe?SUBED1=PDC-ANNOUNCE-L&A=1", "name": "PDC-ANNOUNCE-L List", "type": "Mailing list"}, {"url": "https://pdc.cancer.gov/pdc/about", "name": "About", "type": "Help documentation"}, {"url": "https://pdc.cancer.gov/data-dictionary/dictionary.html", "name": "About the Data Dictionary", "type": "Help documentation"}, {"url": "https://drive.google.com/file/d/1k_sPoPuhusZPRDJWkVecWEnyCqvQm8nA/view?ths=true", "name": "Release Notes", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://pdc.cancer.gov/pdc/browse", "name": "Browse", "type": "data access"}, {"url": "https://pdc.cancer.gov/jbrowse/?loc=chr1%3A99714847..149564971&tracks=DNA&highlight=", "name": "Peptide Genome Mapping (JBrowse)", "type": "data access"}, {"url": "https://pdc.cancer.gov/pdc/submit-data", "name": "Submit Data", "type": "data curation"}, {"url": "https://pdc.cancer.gov/pdc/faq/Files_Download", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://pepquery.esacinc.com/pepquery/", "name": "PepQuery"}]}, "legacy-ids": ["biodbcore-001495", "bsg-d001495"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Proteomics", "Proteogenomics"], "domains": ["Cancer"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Cancer Institute\u2019s Proteomic Data Commons", "abbreviation": "NCI PDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.kXzfjt", "doi": "10.25504/FAIRsharing.kXzfjt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCI's Proteomic Data Commons has been created to make cancer-related proteomic datasets easily accessible to the public, and to facilitate multi-omic integration in support of precision medicine through interoperability with other resources. The PDC is one of several repositories within the NCI Cancer Research Data Commons (CRDC), a secure cloud-based infrastructure featuring diverse data sets and innovative analytic tools \u2013 all designed to advance data-driven scientific discovery. The CRDC enables researchers to link proteomic data with other data sets (e.g., genomic and imaging data) and to submit, collect, analyze, store, and share data throughout the cancer data ecosystem.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1772, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2952", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-15T13:51:23.000Z", "updated-at": "2021-11-24T13:17:37.759Z", "metadata": {"doi": "10.25504/FAIRsharing.XrXzcm", "name": "EMODnet Physics", "status": "ready", "homepage": "https://www.emodnet-physics.eu/Portal/", "identifier": 2952, "description": "EMODnet-Physics map portal (www.emodnet-physics.eu/map) provides a single point of access to validated in situ datasets, products and their physical parameter metadata of European Seas and global oceans.", "abbreviation": "EMODnet Physics", "access-points": [{"url": "http://www.emodnet-physics.eu/map/service/WSEmodnet2.asmx", "name": "API", "type": "SOAP"}], "support-links": [{"url": "contacts@emodnet-physics.eu", "name": "Helpdesk", "type": "Support email"}, {"url": "https://www.emodnet-physics.eu/portal/user-s-guide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.emodnet-physics.eu/portal/background", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/EMODnet-Physics/EMODnet-Physics-Documentation", "name": "Github Repository", "type": "Github"}, {"url": "https://www.emodnet-physics.eu/portal/Videos-Physics", "name": "Videos", "type": "Help documentation"}, {"url": "https://www.emodnet-physics.eu/portal/documents-and-services", "name": "Documents and Services", "type": "Help documentation"}, {"url": "https://www.emodnet-physics.eu/portal/bibliography", "name": "QA/QC Protocols", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.emodnet-physics.eu/portal/Submit-Data/How-to-contribute", "name": "Data Submission", "type": "data curation"}, {"url": "http://www.emodnet-physics.eu/Map/", "name": "Map Viewer", "type": "data access"}, {"url": "http://catalog.emodnet-physics.eu/geonetwork/srv/eng/catalog.search", "name": "Catalog Search", "type": "data access"}, {"url": "http://thredds.emodnet-physics.eu/thredds/catalog.html", "name": "View & Download THREDDS Data", "type": "data access"}, {"url": "https://erddap.emodnet-physics.eu/erddap/index.html", "name": "EMODnet Physics ERDDAP", "type": "data access"}], "associated-tools": [{"url": "https://geoserver.emodnet-physics.eu/geoserver/web/", "name": "GeoServer 2.16.2"}]}, "legacy-ids": ["biodbcore-001456", "bsg-d001456"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geophysics", "Oceanography", "Physical Geography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Physics", "abbreviation": "EMODnet Physics", "url": "https://fairsharing.org/10.25504/FAIRsharing.XrXzcm", "doi": "10.25504/FAIRsharing.XrXzcm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EMODnet-Physics map portal (www.emodnet-physics.eu/map) provides a single point of access to validated in situ datasets, products and their physical parameter metadata of European Seas and global oceans.", "publications": [{"id": 2873, "pubmed_id": null, "title": "European Marine Observation and DataNetwork (EMODNET)\u2013 physical parameters: A support to marine science and operational oceanography", "year": 2013, "url": "https://ui.adsabs.harvard.edu/abs/2013EGUGA..15.3126D/abstract", "authors": "Hans Dahlin, Tobias Gies, Marco Giordano, Patrick Gorringe, Giuseppe Manzella, Gilbert Maudire, Antonio Novellino, Maureen Pagnani, Sian Petersson, Sylvie Pouliquen, Lesley Rickards, Dick Schaap, Peter Tijsse, and Serge van der Horste", "journal": "EGU General Assembly 2013", "doi": null, "created_at": "2021-09-30T08:27:53.687Z", "updated_at": "2021-09-30T11:28:38.928Z"}, {"id": 2874, "pubmed_id": null, "title": "Knowledge base for growth and innovation in ocean economy: assembly and dissemination of marine data for seabed mapping \u2013 European Marine Observation Data Network - EMODnet Physics", "year": 2014, "url": "https://webgate.ec.europa.eu/maritimeforum/system/files/6.%20Physics.pdf", "authors": "Antonio Novellino, Patrick Gorringe, Dick Schaap, Sylvie Pouliquen, Lesley Rickards, and Giuseppe Manzella", "journal": "EGU General Assembly 2013", "doi": null, "created_at": "2021-09-30T08:27:53.795Z", "updated_at": "2021-09-30T11:28:38.617Z"}], "licence-links": [{"licence-name": "EMODnet Physics Terms of Use", "licence-id": 276, "link-id": 267, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2197", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-21T12:40:45.000Z", "updated-at": "2021-11-24T13:19:28.825Z", "metadata": {"doi": "10.25504/FAIRsharing.84ebcy", "name": "Stem Cell Commons", "status": "ready", "contacts": [{"contact-name": "Shannan Ho Sui", "contact-email": "shosui@hsph.harvard.edu"}], "homepage": "http://stemcellcommons.org/", "identifier": 2197, "description": "The Stem Cell Commons were initiated by the Harvard Stem Cell Institute to develop a community for stem cell bioinformatics. This open source environment for sharing, processing and analyzing stem cell data brings together stem cell data sets with tools for curation, dissemination and analysis. Standardization of the analytical approaches will enable researchers to directly compare and integrate their results with experiments and disease models in the Commons.", "abbreviation": "SCC", "support-links": [{"url": "http://stemcellcommons.org/contact", "type": "Contact form"}], "year-creation": 2012, "data-processes": [{"url": "http://stemcellcommons.org/search/all-experiments", "name": "Browse data", "type": "data access"}, {"url": "http://stemcellcommons.org/search", "name": "search", "type": "data access"}, {"url": "http://stemcellcommons.org/tools/analyze", "name": "Analyze", "type": "data curation"}, {"url": "http://stemcellcommons.org/tools/visualize", "name": "visualize", "type": "data access"}], "associated-tools": [{"url": "https://github.com/parklab/Refinery", "name": "Refinery: web-based data visualization and analysis system powered by an ISA-Tab-compatible data repository Beta"}, {"url": "https://bitbucket.org/mindinformatics/exframe7", "name": "eXframe: structured annotation of experiments"}, {"url": "https://bitbucket.org/hbc/galaxy-central-hbc", "name": "Galaxy: web-based platform for accessible, reproducible, and transparent computational biomedical research"}]}, "legacy-ids": ["biodbcore-000671", "bsg-d000671"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Stem cell", "Next generation DNA sequencing"], "taxonomies": ["Danio rerio", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Stem Cell Commons", "abbreviation": "SCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.84ebcy", "doi": "10.25504/FAIRsharing.84ebcy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Stem Cell Commons were initiated by the Harvard Stem Cell Institute to develop a community for stem cell bioinformatics. This open source environment for sharing, processing and analyzing stem cell data brings together stem cell data sets with tools for curation, dissemination and analysis. Standardization of the analytical approaches will enable researchers to directly compare and integrate their results with experiments and disease models in the Commons.", "publications": [{"id": 729, "pubmed_id": 24303302, "title": "The Stem Cell Commons: an exemplar for data integration in the biomedical domain driven by the ISA framework.", "year": 2013, "url": "https://www.ncbi.nlm.nih.gov/pubmed/24303302", "authors": "Ho Sui S1, Merrill E, Gehlenborg N, Haseley P, Sytchev I, Park R, Rocca-Serra P, Corlosquet S, Gonzalez-Beltran A, Maguire E, Hofmann O, Park P, Das S, Sansone SA, Hide W.", "journal": "AMIA Jt Summits Transl Sci Proc.", "doi": null, "created_at": "2021-09-30T08:23:40.337Z", "updated_at": "2021-09-30T08:23:40.337Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 326, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1604", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.405Z", "metadata": {"doi": "10.25504/FAIRsharing.a1rp4c", "name": "MetaBase - The wiki-database of biological databases", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@metabase.net"}], "homepage": "http://www.Metabase.net", "identifier": 1604, "description": "MetaBase is the community-curated collection of all biological databases for use by the research community as a source of reliable information.", "abbreviation": "MB", "year-creation": 2007, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "crowd-sourcing curation", "type": "data curation"}, {"name": "community curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "RDF", "type": "data access"}, {"name": "RSS", "type": "data access"}, {"name": "web service (JSON,XML)", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000059", "bsg-d000059"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Resource metadata"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Costa Rica", "Nicaragua", "El Salvador", "Panama", "Mexico", "Honduras"], "name": "FAIRsharing record for: MetaBase - The wiki-database of biological databases", "abbreviation": "MB", "url": "https://fairsharing.org/10.25504/FAIRsharing.a1rp4c", "doi": "10.25504/FAIRsharing.a1rp4c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaBase is the community-curated collection of all biological databases for use by the research community as a source of reliable information.", "publications": [{"id": 2533, "pubmed_id": 22139927, "title": "MetaBase--the wiki-database of biological databases.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1099", "authors": "Bolser DM,Chibon PY,Palopoli N,Gong S,Jacob D,Del Angel VD,Swan D,Bassi S,Gonzalez V,Suravajhala P,Hwang S,Romano P,Edwards R,Bishop B,Eargle J,Shtatland T,Provart NJ,Clements D,Renfro DP,Bhak D,Bhak J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1099", "created_at": "2021-09-30T08:27:10.749Z", "updated_at": "2021-09-30T11:29:38.763Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2008", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.691Z", "metadata": {"doi": "10.25504/FAIRsharing.anxkvb", "name": "SpliceInfo", "status": "deprecated", "contacts": [{"contact-name": "Jorng-Tzong Horng", "contact-email": "horng@db.csie.ncu.edu.tw"}], "homepage": "http://spliceinfo.mbc.nctu.edu.tw/", "identifier": 2008, "description": "The database provides a means of investigating alternative splicing and can be used for identifying alternative splicing - related motifs, such as the exonic splicing enhancer (ESE), the exonic splicing silencer (ESS) and other intronic splicing motifs. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "SpliceInfo", "support-links": [{"url": "bryan@mail.NCTU.edu.tw", "type": "Support email"}, {"url": "http://spliceinfo.mbc.nctu.edu.tw/docs/SpliceInfo_NAR_03.pdf", "type": "Help documentation"}], "data-processes": [{"url": "http://spliceinfo.mbc.nctu.edu.tw/index.php", "name": "search", "type": "data access"}, {"url": "http://spliceinfo.mbc.nctu.edu.tw/download.php", "name": "download", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000474", "bsg-d000474"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Enhancer", "Alternative splicing", "Gene regulatory element", "Gene", "Sequence motif", "Regulatory region"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus", "Viruses"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: SpliceInfo", "abbreviation": "SpliceInfo", "url": "https://fairsharing.org/10.25504/FAIRsharing.anxkvb", "doi": "10.25504/FAIRsharing.anxkvb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database provides a means of investigating alternative splicing and can be used for identifying alternative splicing - related motifs, such as the exonic splicing enhancer (ESE), the exonic splicing silencer (ESS) and other intronic splicing motifs. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 838, "pubmed_id": 15608290, "title": "SpliceInfo: an information repository for mRNA alternative splicing in human genome.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki129", "authors": "Huang HD., Horng JT., Lin FM., Chang YC., Huang CC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki129", "created_at": "2021-09-30T08:23:52.488Z", "updated_at": "2021-09-30T08:23:52.488Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2441", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-20T14:22:19.000Z", "updated-at": "2021-11-24T13:20:07.111Z", "metadata": {"doi": "10.25504/FAIRsharing.paxq07", "name": "University of East Anglia Climatic Research Unit Datasets", "status": "ready", "contacts": [{"contact-name": "CRU Team", "contact-email": "cru@uea.ac.uk"}], "homepage": "http://www.cru.uea.ac.uk/data", "identifier": 2441, "description": "Climatic datasets available for use by the research community", "abbreviation": "CRU Datasets"}, "legacy-ids": ["biodbcore-000923", "bsg-d000923"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: University of East Anglia Climatic Research Unit Datasets", "abbreviation": "CRU Datasets", "url": "https://fairsharing.org/10.25504/FAIRsharing.paxq07", "doi": "10.25504/FAIRsharing.paxq07", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Climatic datasets available for use by the research community", "publications": [], "licence-links": [{"licence-name": "UEA Disclaimer, Credits and Copyright", "licence-id": 806, "link-id": 648, "relation": "undefined"}, {"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 660, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2700", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-03T21:34:56.000Z", "updated-at": "2022-01-21T13:08:05.351Z", "metadata": {"name": "WormQTL", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@panaceaproject.eu"}], "homepage": "https://www.wormqtl.org/xqtl_panacea/molgenis.do?select=Home", "citations": [], "identifier": 2700, "description": "WormQTL is an online scalable system for QTL exploration to service the worm community. WormQTL provides many publicly available datasets and welcomes submissions from other worm researchers.", "abbreviation": "", "data-curation": {}, "support-links": [{"url": "https://www.wormqtl.org/xqtl_panacea/molgenis.do?select=Help", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.wormqtl.org/xqtl_panacea/molgenis.do?__target=main&select=Investigations", "name": "Browse", "type": "data access"}, {"url": "https://www.wormqtl.org/xqtl_panacea/molgenis.do?__target=main&select=GenomeBrowser", "name": "Genome Browser", "type": "data access"}, {"url": "https://www.wormqtl.org/xqtl_panacea/molgenis.do?__target=main&select=QtlFinderPublic2", "name": "Find QTLs", "type": "data access"}], "deprecation-date": null, "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001198", "bsg-d001198"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biology"], "domains": ["Genome visualization", "Model organism", "Gene regulatory element", "Quantitative trait loci"], "taxonomies": ["Caenorhabditis"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: WormQTL", "abbreviation": "", "url": "https://fairsharing.org/fairsharing_records/2700", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WormQTL is an online scalable system for QTL exploration to service the worm community. WormQTL provides many publicly available datasets and welcomes submissions from other worm researchers.", "publications": [{"id": 276, "pubmed_id": 23180786, "title": "WormQTL--public archive and analysis web portal for natural variation data in Caenorhabditis spp.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1124", "authors": "Snoek LB,Van der Velde KJ,Arends D,Li Y,Beyer A,Elvin M,Fisher J,Hajnal A,Hengartner MO,Poulin GB,Rodriguez M,Schmid T,Schrimpf S,Xue F,Jansen RC,Kammenga JE,Swertz MA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1124", "created_at": "2021-09-30T08:22:49.804Z", "updated_at": "2021-09-30T11:28:44.733Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3124", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-14T11:43:35.000Z", "updated-at": "2021-11-24T13:17:37.986Z", "metadata": {"name": "National Oceanic and Atmospheric Administration OneStop", "status": "ready", "contacts": [{"contact-name": "NCEI General Contact", "contact-email": "ncei.info@noaa.gov"}], "homepage": "https://data.noaa.gov/onestop/", "identifier": 3124, "description": "National Oceanic and Atmospheric Administration (NOAA) OneStop can be used to search for any NOAA data with a metadata record. It is an interoperable tool designed to explore data from across scientific disciplines, formats, time periods, and locations. OneStop\u2019s wide range of filtering options can pinpoint specific collections or granules that may not be discoverable in other mediums.", "abbreviation": "NOAA OneStop", "access-points": [{"url": "https://github.com/cedardevs/onestop/blob/master/docs/public-user/api/requests.md", "name": "Search API", "type": "REST"}, {"url": "https://app.swaggerhub.com/apis/cedarbot/OneStop/2.4.0", "name": "Swagger", "type": "REST"}], "support-links": [{"url": "https://data.noaa.gov/onestop/help", "name": "Help", "type": "Help documentation"}, {"url": "https://data.noaa.gov/onestop/about", "name": "About NOAA OneStop", "type": "Help documentation"}, {"url": "https://github.com/cedardevs/onestop/tree/master/docs", "name": "GitHub Documentation", "type": "Github"}], "data-processes": [{"url": "https://data.noaa.gov/onestop/collections?q=weather", "name": "Browse Weather Topic", "type": "data access"}, {"url": "https://data.noaa.gov/onestop/collections?q=climate", "name": "Browse Climate Topic", "type": "data access"}, {"url": "https://data.noaa.gov/onestop/collections?q=satellite", "name": "Browse Satellites Topic", "type": "data access"}, {"url": "https://data.noaa.gov/onestop/collections?q=fisheries", "name": "Browse Fisheries Topic", "type": "data access"}, {"url": "https://data.noaa.gov/onestop/collections?q=coasts", "name": "Browse Coast Topic", "type": "data access"}, {"url": "https://data.noaa.gov/onestop/collections?q=oceans", "name": "Browse Ocean Topic", "type": "data access"}]}, "legacy-ids": ["biodbcore-001634", "bsg-d001634"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geophysics", "Meteorology", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Oceanic and Atmospheric Administration OneStop", "abbreviation": "NOAA OneStop", "url": "https://fairsharing.org/fairsharing_records/3124", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: National Oceanic and Atmospheric Administration (NOAA) OneStop can be used to search for any NOAA data with a metadata record. It is an interoperable tool designed to explore data from across scientific disciplines, formats, time periods, and locations. OneStop\u2019s wide range of filtering options can pinpoint specific collections or granules that may not be discoverable in other mediums.", "publications": [], "licence-links": [{"licence-name": "NOAA Disclaimer", "licence-id": 595, "link-id": 991, "relation": "undefined"}, {"licence-name": "NOAA Privacy", "licence-id": 596, "link-id": 992, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2187", "type": "fairsharing-records", "attributes": {"created-at": "2015-02-11T16:59:37.000Z", "updated-at": "2021-11-24T13:14:47.567Z", "metadata": {"doi": "10.25504/FAIRsharing.xw1wj5", "name": "Immune Tolerance Network TrialShare", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "trialsharesupport@immunetolerance.org"}], "homepage": "https://www.itntrialshare.org/", "identifier": 2187, "description": "The immune tolerance data management and visualization portal for studies sponsored by the Immune Tolerance Network (ITN) and collaborating investigators. Data from published studies are accessible to any user; data from current in-progress studies are accessible to study investigators and collaborators. Includes links to published figures, tools for visualization and analysis of data, and ability to query study data by subject, group, or any other study parameter.", "abbreviation": "TrialShare", "support-links": [{"url": "https://www.itntrialshare.org/project/home/support/begin.view", "type": "Help documentation"}, {"url": "https://www.itntrialshare.org/project/home/support/begin.view", "type": "Help documentation"}, {"url": "https://www.itntrialshare.org/guides/quickstart/index.html", "type": "Help documentation"}, {"url": "https://www.itntrialshare.org/guides/UserGuide.pdf", "type": "Help documentation"}, {"url": "https://twitter.com/itntrialshare", "type": "Twitter"}], "year-creation": 2010}, "legacy-ids": ["biodbcore-000661", "bsg-d000661"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Expression data", "Antibody", "Immunity", "Flow cytometry assay", "Sequencing", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Immune Tolerance Network TrialShare", "abbreviation": "TrialShare", "url": "https://fairsharing.org/10.25504/FAIRsharing.xw1wj5", "doi": "10.25504/FAIRsharing.xw1wj5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The immune tolerance data management and visualization portal for studies sponsored by the Immune Tolerance Network (ITN) and collaborating investigators. Data from published studies are accessible to any user; data from current in-progress studies are accessible to study investigators and collaborators. Includes links to published figures, tools for visualization and analysis of data, and ability to query study data by subject, group, or any other study parameter.", "publications": [], "licence-links": [{"licence-name": "ITN TrialShare Privacy Policy", "licence-id": 463, "link-id": 1361, "relation": "undefined"}, {"licence-name": "Terms of Use for ITN TrialShare", "licence-id": 779, "link-id": 1362, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2549", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-05T15:13:50.000Z", "updated-at": "2021-12-06T10:49:05.815Z", "metadata": {"doi": "10.25504/FAIRsharing.qtm44s", "name": "UK Data Archive", "status": "ready", "contacts": [{"contact-name": "Contact email", "contact-email": "info@data-archive.ac.uk"}], "homepage": "http://www.data-archive.ac.uk", "identifier": 2549, "description": "The UK Data Archive is an internationally acknowledged centre of expertise in acquiring, curating and providing access to social science and humanities data. We were founded in 1967, at the University of Essex, with the support of the then Social Science Research Council, with the aim of curating high-quality research data for analysis and reuse. The Economic and Social Research Council (ESRC) has continued to provide long-term commitment to the Data Archive and we are now a significant part of their UK data infrastructure. Since 2005 we have been designated a Place of Deposit by the National Archives, allowing us to curate public records. The UK Data Archive is the lead organisation of the UK Data Service, which provides unified access to the UK's largest collection of social, economic and population data. Funded by the ESRC, the UK Data Service provides access to regional, national and international social and economic data, support for policy-relevant research and guidance and training for the development of skills in data use.", "abbreviation": "UKDA", "support-links": [{"url": "http://www.data-archive.ac.uk/curate", "name": "Curation guide", "type": "Help documentation"}], "year-creation": 1967, "data-processes": [{"url": "http://www.data-archive.ac.uk/find", "name": "Data access", "type": "data access"}, {"url": "http://www.data-archive.ac.uk/deposit", "name": "Data submission", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010215", "name": "re3data:r3d100010215", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014708", "name": "SciCrunch:RRID:SCR_014708", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001032", "bsg-d001032"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Humanities", "Social Science"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UK Data Archive", "abbreviation": "UKDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.qtm44s", "doi": "10.25504/FAIRsharing.qtm44s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UK Data Archive is an internationally acknowledged centre of expertise in acquiring, curating and providing access to social science and humanities data. We were founded in 1967, at the University of Essex, with the support of the then Social Science Research Council, with the aim of curating high-quality research data for analysis and reuse. The Economic and Social Research Council (ESRC) has continued to provide long-term commitment to the Data Archive and we are now a significant part of their UK data infrastructure. Since 2005 we have been designated a Place of Deposit by the National Archives, allowing us to curate public records. The UK Data Archive is the lead organisation of the UK Data Service, which provides unified access to the UK's largest collection of social, economic and population data. Funded by the ESRC, the UK Data Service provides access to regional, national and international social and economic data, support for policy-relevant research and guidance and training for the development of skills in data use.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3143", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T10:22:23.000Z", "updated-at": "2021-12-06T10:47:36.538Z", "metadata": {"name": "Deep Carbon Observatory Digital Object Registry", "status": "deprecated", "contacts": [{"contact-name": "DCO General Contact", "contact-email": "web@deepcarbon.net"}], "homepage": "https://info.deepcarbon.net/vivo/", "citations": [], "identifier": 3143, "description": "Deep Carbon Observatory Digital Object Registry (DCO-VIVO), is a centrally-managed digital object identification, object registration and metadata management service for the Deep Carbon Observatory. DCO-VIVO contains data, metadata, DCO-related publications, and provides information about members of the science network and details about ongoing projects and fields sites.", "abbreviation": "DCO-VIVO", "support-links": [{"url": "https://deepcarbon.net/index.php/data-portal", "name": "About the Data Portal", "type": "Help documentation"}, {"url": "https://twitter.com/deepcarb", "name": "@deepcarb", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://info.deepcarbon.net/vivo/datasets", "name": "Browse Datasets", "type": "data access"}, {"url": "https://info.deepcarbon.net/vivo/publications", "name": "Browse Publications", "type": "data access"}, {"url": "https://info.deepcarbon.net/vivo/projects", "name": "Browse Projects", "type": "data access"}, {"url": "https://info.deepcarbon.net/vivo/field-studies", "name": "Browse Field Sites", "type": "data access"}, {"url": "https://info.deepcarbon.net/vivo/scientific-collections", "name": "Browse Scientific Collections", "type": "data access"}, {"url": "https://info.deepcarbon.net/vivo/people", "name": "Browse People", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012834", "name": "re3data:r3d100012834", "portal": "re3data"}], "deprecation-date": "2021-11-15", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001654", "bsg-d001654"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Microbial Ecology", "Thermodynamics", "Mineralogy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Astrobiology", "biogeochemistry", "Carbon cycle", "Geomicrobiology"], "countries": ["United States"], "name": "FAIRsharing record for: Deep Carbon Observatory Digital Object Registry", "abbreviation": "DCO-VIVO", "url": "https://fairsharing.org/fairsharing_records/3143", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Deep Carbon Observatory Digital Object Registry (DCO-VIVO), is a centrally-managed digital object identification, object registration and metadata management service for the Deep Carbon Observatory. DCO-VIVO contains data, metadata, DCO-related publications, and provides information about members of the science network and details about ongoing projects and fields sites.", "publications": [], "licence-links": [{"licence-name": "DCO Open Access and Data Policies", "licence-id": 229, "link-id": 1000, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3172", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-19T10:03:35.000Z", "updated-at": "2021-12-06T10:47:37.786Z", "metadata": {"name": "Permanent Service for Mean Sea Level", "status": "ready", "contacts": [{"contact-name": "PSMSL General Contact", "contact-email": "psmsl@noc.ac.uk"}], "homepage": "https://www.psmsl.org/", "identifier": 3172, "description": "PSMSL is the global data bank for long term sea level change information from tide gauges and bottom pressure recorders. It is responsible for the collection, publication, analysis and interpretation of sea level data from a global network of tide gauges.", "abbreviation": "PSMSL", "support-links": [{"url": "https://www.psmsl.org/about_us/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.psmsl.org/about_us/", "name": "About", "type": "Help documentation"}, {"url": "https://www.psmsl.org/train_and_info/geo_signals/", "name": "Geophysical Signals in Tide Gauge Data", "type": "Help documentation"}, {"url": "https://www.psmsl.org/train_and_info/", "name": "Training and Information", "type": "Training documentation"}], "year-creation": 1933, "data-processes": [{"url": "https://www.psmsl.org/data/bottom_pressure/map.php", "name": "Map Viewer - Bottom Pressure", "type": "data access"}, {"url": "https://www.psmsl.org/data/bottom_pressure/table.php", "name": "Table View - Bottom Pressure", "type": "data access"}, {"url": "https://www.psmsl.org/products/anomalies/", "name": "Mean Sea Level Anomalies", "type": "data access"}, {"url": "https://www.psmsl.org/products/trends/", "name": "Relative Sea Level Trends", "type": "data access"}, {"url": "https://www.psmsl.org/data/obtaining/map.html", "name": "Map Viewer - Tide Gauge Data", "type": "data access"}, {"url": "https://www.psmsl.org/data/obtaining/", "name": "Table View - Tide Gauge Data", "type": "data access"}, {"url": "https://www.psmsl.org/data/obtaining/complete.php", "name": "Download Tide Gauge Data", "type": "data release"}, {"url": "https://www.psmsl.org/data/bottom_pressure/complete.php", "name": "Download Bottom Pressure Data", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011869", "name": "re3data:r3d100011869", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001683", "bsg-d001683"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geodesy", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Permanent Service for Mean Sea Level", "abbreviation": "PSMSL", "url": "https://fairsharing.org/fairsharing_records/3172", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PSMSL is the global data bank for long term sea level change information from tide gauges and bottom pressure recorders. It is responsible for the collection, publication, analysis and interpretation of sea level data from a global network of tide gauges.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2666", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-24T13:47:13.000Z", "updated-at": "2021-11-24T13:16:52.871Z", "metadata": {"name": "The CIARD Ring", "status": "deprecated", "homepage": "http://ring.ciard.net/", "identifier": 2666, "description": "The CIARD RING is a global directory of datasets and data services for the agri-food sector. It is the principal tool created from the CIARD initiative to allow information providers to register their services and datasets in various categories and so facilitate the discovery of sources of agriculture-related information across the world. The RING aims to provide an infrastructure to improve the accessibility of the outputs of agricultural research and of information relevant to ARD management.", "abbreviation": "CIARD Ring", "access-points": [{"url": "http://ring.ciard.net/web-apis/aginfra-rest-api", "name": "agINFRA REST API", "type": "REST"}], "support-links": [{"url": "http://ring.ciard.net/contact", "name": "Contact form", "type": "Contact form"}, {"url": "http://ring.ciard.net/about-ring", "name": "Documentation", "type": "Help documentation"}], "data-processes": [{"url": "http://ring.ciard.net/software-all", "name": "Software Browse", "type": "data access"}, {"url": "http://ring.ciard.net/services-datasets", "name": "Data Browse", "type": "data access"}, {"url": "http://ring.ciard.net/rdf-store", "name": "RDF Store", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001159", "bsg-d001159"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Agriculture", "Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: The CIARD Ring", "abbreviation": "CIARD Ring", "url": "https://fairsharing.org/fairsharing_records/2666", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CIARD RING is a global directory of datasets and data services for the agri-food sector. It is the principal tool created from the CIARD initiative to allow information providers to register their services and datasets in various categories and so facilitate the discovery of sources of agriculture-related information across the world. The RING aims to provide an infrastructure to improve the accessibility of the outputs of agricultural research and of information relevant to ARD management.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1725, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2939", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-13T09:04:26.000Z", "updated-at": "2021-12-06T10:47:27.090Z", "metadata": {"name": "WFCC Global Catalogue of Microorganisms", "status": "ready", "contacts": [{"contact-name": "Juncai Ma", "contact-email": "ma@im.ac.cn", "contact-orcid": "0000-0002-2405-2484"}], "homepage": "http://gcm.wdcm.org/", "identifier": 2939, "description": "The WFCC Global Catalogue of Microorganisms (GCM) system is designed to help microorganism culture collections to manage, disseminate and share the information related to their holdings. It also provides a uniform interface for the scientific and industrial communities to access the comprehensive microbial resource information.", "abbreviation": "GCM", "support-links": [{"url": "wulh@im.ac.cn", "name": "Linhuan Wu", "type": "Support email"}, {"url": "philippe.desmeth@belspo.be", "name": "Philippe Desmeth", "type": "Support email"}], "year-creation": 2012, "data-processes": [{"url": "http://gcm.wdcm.org/datastandards/", "name": "Browse the catalogue of microorganisms", "type": "data access"}, {"url": "http://gcm.wdcm.org/joinus/", "name": "Submit", "type": "data curation"}, {"url": "http://gcm.wdcm.org/", "name": "Search", "type": "data access"}, {"url": "http://gcm.wdcm.org/advanced.jsp", "name": "Advanced search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010696", "name": "re3data:r3d100010696", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_016460", "name": "SciCrunch:RRID:SCR_016460", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001443", "bsg-d001443"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Molecular Microbiology", "Life Science", "Microbiology"], "domains": [], "taxonomies": ["Algae", "Archaea", "Bacteria", "Fungi", "Protozoa", "Viruses"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: WFCC Global Catalogue of Microorganisms", "abbreviation": "GCM", "url": "https://fairsharing.org/fairsharing_records/2939", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The WFCC Global Catalogue of Microorganisms (GCM) system is designed to help microorganism culture collections to manage, disseminate and share the information related to their holdings. It also provides a uniform interface for the scientific and industrial communities to access the comprehensive microbial resource information.", "publications": [{"id": 2843, "pubmed_id": 24377417, "title": "Global catalogue of microorganisms (gcm): a comprehensive database and information retrieval, analysis, and visualization system for microbial resources.", "year": 2014, "url": "http://doi.org/10.1186/1471-2164-14-933", "authors": "Wu L,Sun Q,Sugawara H,Yang S,Zhou Y,McCluskey K,Vasilenko A,Suzuki K,Ohkuma M,Lee Y,Robert V,Ingsriswang S,Guissart F,Philippe D,Ma J", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-14-933", "created_at": "2021-09-30T08:27:49.723Z", "updated_at": "2021-09-30T08:27:49.723Z"}, {"id": 2844, "pubmed_id": 29718202, "title": "The global catalogue of microorganisms 10K type strain sequencing project: closing the genomic gaps for the validly published prokaryotic and fungi species.", "year": 2018, "url": "http://doi.org/10.1093/gigascience/giy026", "authors": "Wu L,McCluskey K,Desmeth P,Liu S,Hideaki S,Yin Y,Moriya O,Itoh T,Kim CY,Lee JS,Zhou Y,Kawasaki H,Hazbon MH,Robert V,Boekhout T,Lima N,Evtushenko L,Boundy-Mills K,Bunk B,Moore ERB,Eurwilaichitr L,Ingsriswang S,Shah H,Yao S,Jin T,Huang J,Shi W,Sun Q,Fan G,Li W,Li X,Kurtboke I,Ma J", "journal": "Gigascience", "doi": "10.1093/gigascience/giy026", "created_at": "2021-09-30T08:27:49.891Z", "updated_at": "2021-09-30T08:27:49.891Z"}, {"id": 2845, "pubmed_id": 30832757, "title": "The Global Catalogue of Microorganisms (GCM) 10K type strain sequencing project: providing services to taxonomists for standard genome sequencing and annotation.", "year": 2019, "url": "http://doi.org/10.1099/ijsem.0.003276", "authors": "Wu L,Ma J", "journal": "Int J Syst Evol Microbiol", "doi": "10.1099/ijsem.0.003276", "created_at": "2021-09-30T08:27:50.048Z", "updated_at": "2021-09-30T08:27:50.048Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2304", "type": "fairsharing-records", "attributes": {"created-at": "2016-07-19T09:50:21.000Z", "updated-at": "2021-11-24T13:15:47.544Z", "metadata": {"doi": "10.25504/FAIRsharing.tf3mhc", "name": "Virtual Parts Repository", "status": "ready", "contacts": [{"contact-email": "anil.wipat@ncl.ac.uk", "contact-orcid": "0000-0002-2454-7188"}], "homepage": "http://www.virtualparts.org", "citations": [{"publication-id": 1253}], "identifier": 2304, "description": "The Virtual Parts Repository (VPR) is a repository of reusable, modular and composable models of biological parts.", "abbreviation": "VPR", "access-points": [{"url": "https://dissys.github.io/vprwiki/", "name": "VPR API", "type": "REST"}], "support-links": [{"url": "https://dissys.github.io/vprwiki", "name": "Documentation", "type": "Github"}], "year-creation": 2010, "data-processes": [{"url": "http://www.virtualparts.org/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000780", "bsg-d000780"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Synthetic Biology", "Systems Biology"], "domains": ["Modeling and simulation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Virtual Parts Repository", "abbreviation": "VPR", "url": "https://fairsharing.org/10.25504/FAIRsharing.tf3mhc", "doi": "10.25504/FAIRsharing.tf3mhc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Virtual Parts Repository (VPR) is a repository of reusable, modular and composable models of biological parts.", "publications": [{"id": 1253, "pubmed_id": null, "title": "Composable Modular Models for Synthetic Biology", "year": 2014, "url": "https://doi.org/10.1145/2631921", "authors": "Goksel Misirli, Jennifer Hallinan, Anil Wipat", "journal": "ACM Journal on Emerging Technologies in Computing Systems", "doi": null, "created_at": "2021-09-30T08:24:39.758Z", "updated_at": "2021-09-30T08:24:39.758Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2273", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-08T15:42:45.000Z", "updated-at": "2021-11-24T13:14:50.664Z", "metadata": {"doi": "10.25504/FAIRsharing.ja871b", "name": "EORTC clinical trials", "status": "ready", "homepage": "http://www.eortc.org/clinical-trials/", "identifier": 2273, "description": "European Organisation for Research and Treatment of Cancer database of clinical trials.", "abbreviation": "EORTC", "support-links": [{"url": "http://www.eortc.org/contact/", "type": "Contact form"}]}, "legacy-ids": ["biodbcore-000747", "bsg-d000747"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Cancer", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: EORTC clinical trials", "abbreviation": "EORTC", "url": "https://fairsharing.org/10.25504/FAIRsharing.ja871b", "doi": "10.25504/FAIRsharing.ja871b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: European Organisation for Research and Treatment of Cancer database of clinical trials.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3315", "type": "fairsharing-records", "attributes": {"created-at": "2021-04-14T13:10:34.000Z", "updated-at": "2021-11-24T13:13:59.499Z", "metadata": {"doi": "10.25504/FAIRsharing.esBStc", "name": "European Renal Association COVID-19 Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "COVID.19.KRT@umcg.nl"}], "homepage": "https://www.eracoda.org/", "identifier": 3315, "description": "The European Renal Association COVID-19 Database is a European database collecting clinical information of patients on kidney replacement therapy with COVID-19.", "abbreviation": "ERACODA", "support-links": [{"url": "R.T.Gansevoort@umcg.nl", "name": "Ron T. Gansevoort", "type": "Support email"}, {"url": "https://www.eracoda.org/publications", "name": "Presentations, reports and publications", "type": "Help documentation"}, {"url": "https://www.eracoda.org/collaborators", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://www.eracoda.org/join-eracoda", "name": "Collect / Access data", "type": "Help documentation"}], "year-creation": 2021, "data-processes": [{"url": "https://www.eracoda.org/kopie-van-publications", "name": "Research proposals to access data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001830", "bsg-d001830"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Kidney disease", "Report", "Image", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "kidney transplantation", "Observations", "registry", "Survey"], "countries": ["Netherlands"], "name": "FAIRsharing record for: European Renal Association COVID-19 Database", "abbreviation": "ERACODA", "url": "https://fairsharing.org/10.25504/FAIRsharing.esBStc", "doi": "10.25504/FAIRsharing.esBStc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Renal Association COVID-19 Database is a European database collecting clinical information of patients on kidney replacement therapy with COVID-19.", "publications": [{"id": 2541, "pubmed_id": 33796283, "title": "Pitfalls when comparing COVID-19-related outcomes across studies-lessons learnt from the ERACODA collaboration.", "year": 2021, "url": "http://doi.org/10.1093/ckj/sfab027", "authors": "Noordzij M,Vart P,Duivenvoorden R,Franssen CFM,Hemmelder MH,Jager KJ,Hilbrands LB,Gansevoort RT", "journal": "Clin Kidney J", "doi": "10.1093/ckj/sfab027", "created_at": "2021-09-30T08:27:11.616Z", "updated_at": "2021-09-30T08:27:11.616Z"}, {"id": 2542, "pubmed_id": 33340043, "title": "Chronic kidney disease is a key risk factor for severe COVID-19: a call to action by the ERA-EDTA.", "year": 2020, "url": "http://doi.org/10.1093/ndt/gfaa314", "authors": "ERA-EDTA Council; ERACODA Working Group", "journal": "Nephrol Dial Transplant", "doi": "10.1093/ndt/gfaa314", "created_at": "2021-09-30T08:27:11.734Z", "updated_at": "2021-09-30T08:27:11.734Z"}, {"id": 2543, "pubmed_id": 33151337, "title": "COVID-19-related mortality in kidney transplant and dialysis patients: results of the ERACODA collaboration.", "year": 2020, "url": "http://doi.org/10.1093/ndt/gfaa261", "authors": "Hilbrands LB,Duivenvoorden R,Vart P,Franssen CFM,Hemmelder MH,Jager KJ,Kieneker LM,Noordzij M,Pena MJ,Vries H,Arroyo D,Covic A,Crespo M,Goffin E,Islam M,Massy ZA,Montero N,Oliveira JP,Roca Munoz A,Sanchez JE,Sridharan S,Winzeler R,Gansevoort RT", "journal": "Nephrol Dial Transplant", "doi": "10.1093/ndt/gfaa261", "created_at": "2021-09-30T08:27:11.843Z", "updated_at": "2021-09-30T08:27:11.843Z"}, {"id": 2544, "pubmed_id": 32785669, "title": "ERACODA: the European database collecting clinical information of patients on kidney replacement therapy with COVID-19.", "year": 2020, "url": "http://doi.org/10.1093/ndt/gfaa179", "authors": "Noordzij M,Duivenvoorden R,Pena MJ,de Vries H,Kieneker LM", "journal": "Nephrol Dial Transplant", "doi": "10.1093/ndt/gfaa179", "created_at": "2021-09-30T08:27:11.958Z", "updated_at": "2021-09-30T08:27:11.958Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2523", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-12T14:48:13.000Z", "updated-at": "2021-11-24T13:20:09.128Z", "metadata": {"doi": "10.25504/FAIRsharing.9997ek", "name": "The MGA Data Repository", "status": "ready", "contacts": [{"contact-name": "Philipp Bucher", "contact-email": "philipp.bucher@epfl.ch"}], "homepage": "https://ccg.epfl.ch/mga/", "identifier": 2523, "description": "The Mass Genome Annotation (MGA) Data Repository stores published next generation sequencing data and other genome annotation data (such as gene start sites, SNPs, etc.) that, in conjunction with the ChIP-Seq and SSA servers, can be accessed and studied by scientists. The main characteristic of the MGA database is to store mapped data (in the form of genomic coordinates of mapped reads) and not sequence files. In this way, each sample present in the database has been pre-processed (for example sequence reads have been mapped to a genome) and presented in a standardized text format.", "abbreviation": "MGA", "year-creation": 2017, "data-processes": [{"url": "ftp://ccg.epfl.ch/mga/", "name": "FTP", "type": "data access"}], "associated-tools": [{"url": "https://ccg.epfl.ch/chipseq/", "name": "ChIP-Seq 1.5.4"}, {"url": "https://ccg.epfl.ch/ssa/", "name": "SSA 2.0"}]}, "legacy-ids": ["biodbcore-001006", "bsg-d001006"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Annotation", "Chromatin immunoprecipitation - DNA sequencing", "Single nucleotide polymorphism"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: The MGA Data Repository", "abbreviation": "MGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.9997ek", "doi": "10.25504/FAIRsharing.9997ek", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Mass Genome Annotation (MGA) Data Repository stores published next generation sequencing data and other genome annotation data (such as gene start sites, SNPs, etc.) that, in conjunction with the ChIP-Seq and SSA servers, can be accessed and studied by scientists. The main characteristic of the MGA database is to store mapped data (in the form of genomic coordinates of mapped reads) and not sequence files. In this way, each sample present in the database has been pre-processed (for example sequence reads have been mapped to a genome) and presented in a standardized text format.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1813", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.549Z", "metadata": {"doi": "10.25504/FAIRsharing.etp65g", "name": "Catalogue of Transmission Genetics in Arabs", "status": "ready", "contacts": [{"contact-name": "Ghazi O. Tadmouri", "contact-email": "tadmouri@hotmail.com", "contact-orcid": "0000-0002-3895-5609"}], "homepage": "http://www.cags.org.ae/ctga/", "identifier": 1813, "description": "The Centre for Arab Genomic Studies (CAGS) initiated the ambitious project to establish the CTGA (Catalogue of Transmission Genetics in Arabs) database for genetic disorders in Arabs with the aim to enlighten the scientific community and the public on the occurrence of inherited disorders in Arabs and to suggest future investigation strategies.", "abbreviation": "CTGA", "support-links": [{"url": "cags@emirates.net.ae", "type": "Support email"}, {"url": "http://cags.org.ae/faqs/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cags.org.ae/ctga/submit/CTGA_Database_Information_Submission_Help_Topics.pdf", "type": "Help documentation"}], "data-processes": [{"url": "http://cags.org.ae/ctga/", "name": "search", "type": "data access"}, {"url": "http://cags.org.ae/ctga/submit/", "name": "submit", "type": "data access"}]}, "legacy-ids": ["biodbcore-000273", "bsg-d000273"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Genome", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Arab Emirates"], "name": "FAIRsharing record for: Catalogue of Transmission Genetics in Arabs", "abbreviation": "CTGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.etp65g", "doi": "10.25504/FAIRsharing.etp65g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Centre for Arab Genomic Studies (CAGS) initiated the ambitious project to establish the CTGA (Catalogue of Transmission Genetics in Arabs) database for genetic disorders in Arabs with the aim to enlighten the scientific community and the public on the occurrence of inherited disorders in Arabs and to suggest future investigation strategies.", "publications": [{"id": 1123, "pubmed_id": 16381941, "title": "CTGA: the database for genetic disorders in Arab populations.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj015", "authors": "Tadmouri GO., Al Ali MT., Al-Haj Ali S., Al Khaja N.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj015", "created_at": "2021-09-30T08:24:24.381Z", "updated_at": "2021-09-30T08:24:24.381Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3201", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-19T13:24:09.000Z", "updated-at": "2021-12-06T10:47:38.832Z", "metadata": {"name": "The National Map", "status": "ready", "contacts": [{"contact-name": "David Saghy (Chief, NGP User Engagement)", "contact-email": "dsaghy@usgs.gov"}], "homepage": "https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map", "identifier": 3201, "description": "The National Map provides access to base geospatial information to describe the landscape of the United States and its territories. The National Map supports data download, digital and print versions of topographic maps, geospatial data services, and online viewing. The geographic information available from The National Map includes boundaries, elevation, geographic names, hydrography, land cover, orthoimagery, structures, and transportation. The majority of The National Map effort is devoted to acquiring and integrating medium-scale (nominally 1:24,000 scale) geospatial data for the eight base layers from a variety of sources and providing access to the resulting seamless coverages of geospatial data. The National Map also serves as the source of base mapping information for derived cartographic products, including 1:24,000 scale US Topo maps and georeferenced digital files of scanned historic topographic maps.", "abbreviation": "The National Map", "access-points": [{"url": "https://viewer.nationalmap.gov/services/", "name": "National Map Web Services", "type": "REST"}], "support-links": [{"url": "https://answers.usgs.gov/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.usgs.gov/faq/mapping-remote-sensing-and-geospatial-data", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.usgs.gov/core-science-systems/ngp/tnm-delivery", "name": "Data Download Information", "type": "Help documentation"}, {"url": "https://www.usgs.gov/core-science-systems/national-geospatial-program/supporting-themes", "name": "National Map Themes", "type": "Help documentation"}], "data-processes": [{"url": "https://viewer.nationalmap.gov/advanced-viewer/", "name": "The National Map Viewer", "type": "data access"}, {"url": "https://viewer.nationalmap.gov/basic/", "name": "Download Data (via Map)", "type": "data release"}], "associated-tools": [{"url": "https://www.usgs.gov/core-science-systems/national-geospatial-program/data-tools", "name": "National Map Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011782", "name": "re3data:r3d100011782", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001713", "bsg-d001713"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Transportation Planning", "Geography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["United States"], "name": "FAIRsharing record for: The National Map", "abbreviation": "The National Map", "url": "https://fairsharing.org/fairsharing_records/3201", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Map provides access to base geospatial information to describe the landscape of the United States and its territories. The National Map supports data download, digital and print versions of topographic maps, geospatial data services, and online viewing. The geographic information available from The National Map includes boundaries, elevation, geographic names, hydrography, land cover, orthoimagery, structures, and transportation. The majority of The National Map effort is devoted to acquiring and integrating medium-scale (nominally 1:24,000 scale) geospatial data for the eight base layers from a variety of sources and providing access to the resulting seamless coverages of geospatial data. The National Map also serves as the source of base mapping information for derived cartographic products, including 1:24,000 scale US Topo maps and georeferenced digital files of scanned historic topographic maps.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3213", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-12T10:08:57.000Z", "updated-at": "2021-12-06T10:48:43.168Z", "metadata": {"doi": "10.25504/FAIRsharing.J3YyP9", "name": "GEOFON", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "geofon@gfz-potsdam.de"}], "homepage": "https://geofon.gfz-potsdam.de/", "citations": [{"doi": "10.1785/0220200415", "publication-id": 1670}], "identifier": 3213, "description": "GEOFON seeks to facilitate cooperation in seismological research and earthquake and tsunami risk mitigation by providing rapid open transnational access to seismological data and source parameters of large earthquakes, and keeping these data accessible in the long term. It pursues these aims by operating and maintaining its own global network of permanent seismic stations in cooperation with local partners, facilitating real-time access to data from this network and those of many partner networks and plate boundary observatories, and providing a FAIR archive for seismological data. It also serves as the permanent archive for the Geophysical Instrument Pool at Potsdam (GIPP). Using real-time data streams, GEOFON provides rapid automatic earthquake parametric information to the scientific community, tsunami warning centres worldwide, organizations involved in rescue operations, news media and the general public. GEOFON is one of the nodes of the European Integrated Data Archive (EIDA) and a key nodal member of the European-Mediterranean Seismological Centre (EMSC).", "abbreviation": "GEOFON", "access-points": [{"url": "https://geofon.gfz-potsdam.de/waveform/webservices/", "name": "Available Web Services", "type": "REST"}], "support-links": [{"url": "https://geofon.gfz-potsdam.de/contact/", "name": "Contact Information", "type": "Contact form"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://geofon.gfz-potsdam.de/citation.php", "name": "How to Cite", "type": "Help documentation"}, {"url": "https://geofon.gfz-potsdam.de/contribute.php", "name": "Contributing Data", "type": "Help documentation"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/eqinfo.php", "name": "About the Earthquake Information Service", "type": "Help documentation"}, {"url": "https://geofon.gfz-potsdam.de/mission/", "name": "GEFON's Mission", "type": "Help documentation"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/list.php?fmt=rss", "name": "RSS Feed", "type": "Blog/News"}], "year-creation": 1993, "data-processes": [{"url": "http://eida.gfz-potsdam.de/webdc3/", "name": "Access via WebDC3", "type": "data access"}, {"url": "https://geofon.gfz-potsdam.de/waveform/archive/", "name": "Waveform Access", "type": "data access"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/form.php?lang=en", "name": "Earthquake Search", "type": "data access"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/seismon/globmon.php", "name": "Automatic GEOFON Global Seismic Monitor", "type": "data access"}, {"url": "https://geofon.gfz-potsdam.de/eqinfo/list.php", "name": "Search & Browse Earthquake Information", "type": "data access"}], "associated-tools": [{"url": "https://geofon.gfz-potsdam.de/software/", "name": "Associated Software"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011326", "name": "re3data:r3d100011326", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001726", "bsg-d001726"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Seismology"], "countries": ["Germany"], "name": "FAIRsharing record for: GEOFON", "abbreviation": "GEOFON", "url": "https://fairsharing.org/10.25504/FAIRsharing.J3YyP9", "doi": "10.25504/FAIRsharing.J3YyP9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GEOFON seeks to facilitate cooperation in seismological research and earthquake and tsunami risk mitigation by providing rapid open transnational access to seismological data and source parameters of large earthquakes, and keeping these data accessible in the long term. It pursues these aims by operating and maintaining its own global network of permanent seismic stations in cooperation with local partners, facilitating real-time access to data from this network and those of many partner networks and plate boundary observatories, and providing a FAIR archive for seismological data. It also serves as the permanent archive for the Geophysical Instrument Pool at Potsdam (GIPP). Using real-time data streams, GEOFON provides rapid automatic earthquake parametric information to the scientific community, tsunami warning centres worldwide, organizations involved in rescue operations, news media and the general public. GEOFON is one of the nodes of the European Integrated Data Archive (EIDA) and a key nodal member of the European-Mediterranean Seismological Centre (EMSC).", "publications": [{"id": 1670, "pubmed_id": null, "title": "The GEOFON Program in 2020", "year": 2021, "url": "http://doi.org/10.1785/0220200415", "authors": "Javier Quinteros, Angelo Strollo, Peter L. Evans, Winfried Hanka, Andres Heinloo, Susanne Hemmleb, Laura Hillmann, Karl\u2010Heinz Jaeckel, Rainer Kind, Joachim Saul, Thomas Zieke, Frederik Tilmann", "journal": "Seismological Research Letters", "doi": "10.1785/0220200415", "created_at": "2021-09-30T08:25:27.111Z", "updated_at": "2021-09-30T08:25:27.111Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2432", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T09:50:39.000Z", "updated-at": "2021-11-24T13:16:37.891Z", "metadata": {"doi": "10.25504/FAIRsharing.56399h", "name": "NCAR Community Data Portal", "status": "deprecated", "contacts": [{"contact-name": "General Information", "contact-email": "cdp@ucar.edu"}], "homepage": "http://cdp.ucar.edu", "identifier": 2432, "description": "The Community Data Portal (CDP) is a collection of earth science datasets from NCAR, UCAR, UOP, and participating organizations.", "abbreviation": "CDP", "support-links": [{"url": "http://cdp.ucar.edu/support/", "type": "Help documentation"}], "deprecation-date": "2018-02-27", "deprecation-reason": "The Community Data Portal (CDP) has been retired after nearly 15 years of service and is no longer available."}, "legacy-ids": ["biodbcore-000914", "bsg-d000914"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCAR Community Data Portal", "abbreviation": "CDP", "url": "https://fairsharing.org/10.25504/FAIRsharing.56399h", "doi": "10.25504/FAIRsharing.56399h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Community Data Portal (CDP) is a collection of earth science datasets from NCAR, UCAR, UOP, and participating organizations.", "publications": [], "licence-links": [{"licence-name": "UCAR Community Data Portal Privacy Policy", "licence-id": 795, "link-id": 995, "relation": "undefined"}, {"licence-name": "UCAR Community Data Portal Terms of Use", "licence-id": 796, "link-id": 996, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2466", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T14:55:44.000Z", "updated-at": "2021-11-24T13:16:29.746Z", "metadata": {"doi": "10.25504/FAIRsharing.pq1njd", "name": "GBIF France IPT - GBIF France", "status": "ready", "contacts": [{"contact-email": "gbif@gbif.fr"}], "homepage": "http://ipt.gbif.fr/", "identifier": 2466, "description": "GBIF France aims to collect all primary biodiversity data hosted in France, regardless of whether they concern the biodiversity of French territory or the rest of the world. GBIF France also supports additional countries' nodes with the hosting of their IPTs.", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://ipt.gbif.fr/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000948", "bsg-d000948"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GBIF France IPT - GBIF France", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.pq1njd", "doi": "10.25504/FAIRsharing.pq1njd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF France aims to collect all primary biodiversity data hosted in France, regardless of whether they concern the biodiversity of French territory or the rest of the world. GBIF France also supports additional countries' nodes with the hosting of their IPTs.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1210, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1213, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1215, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1235, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2616", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-17T08:27:41.000Z", "updated-at": "2021-11-24T13:13:13.572Z", "metadata": {"name": "IUPAC Periodic Table of the Elements", "status": "ready", "contacts": [{"contact-name": "IUPAC Secretariat", "contact-email": "secretariat@iupac.org"}], "homepage": "https://iupac.org/what-we-do/periodic-table-of-elements", "identifier": 2616, "description": "The latest release of the Periodic Table (dated 28 November 2016) includes the recently added elements 113, 115, 117, and 118 with their names and symbols (see related News), the standard atomic weights 2013 (abridged to five significant digits) and the conventional atomic weights as published in PAC Vol. 88, No.3, pp. 265-291 (http://dx.doi.org/10.1515/pac-2015-0305), and for ytterbium, the standard atomic weight updated following the 2015 review (see related News).", "year-creation": 2016, "data-processes": [{"url": "http://ciaaw.org/", "name": "Commission on Isotopic Abundances and Atomic Weights", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001101", "bsg-d001101"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Natural Science", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: IUPAC Periodic Table of the Elements", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2616", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The latest release of the Periodic Table (dated 28 November 2016) includes the recently added elements 113, 115, 117, and 118 with their names and symbols (see related News), the standard atomic weights 2013 (abridged to five significant digits) and the conventional atomic weights as published in PAC Vol. 88, No.3, pp. 265-291 (http://dx.doi.org/10.1515/pac-2015-0305), and for ytterbium, the standard atomic weight updated following the 2015 review (see related News).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2802", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-21T21:07:28.000Z", "updated-at": "2021-11-24T13:18:14.571Z", "metadata": {"doi": "10.25504/FAIRsharing.SvsBRM", "name": "Let's Get Healthy! STEM Beliefs", "status": "ready", "contacts": [{"contact-name": "Lisa Marriott", "contact-email": "marriott@ohsu.edu", "contact-orcid": "0000-0001-6390-3053"}], "homepage": "http://letsgethealthy.org", "citations": [{"doi": "10.1371/journal.pone.0201939", "pubmed-id": 31454349, "publication-id": 2527}], "identifier": 2802, "description": "Let's Get Healthy! is a NIH-funded program that conducts health fairs. Students' beliefs about their STEM abilities in the context of impulsivity and mindset are described in a three state sample of secondary students across Oregon, Washington, and California.", "abbreviation": "LGH STEM", "year-creation": 2014, "data-processes": [{"url": "http://www.letsgethealthy.org/explore-the-data/data-from-publications/", "name": "Let's Get Healthy! database of STEM beliefs", "type": "data access"}], "associated-tools": [{"url": "http://www.letsgethealthy.org/explore-the-data/data-from-publications/", "name": "Statistical modeling documentation 1"}]}, "legacy-ids": ["biodbcore-001301", "bsg-d001301"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Nutritional Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Education", "Impulsivity", "Mindset"], "countries": ["United States"], "name": "FAIRsharing record for: Let's Get Healthy! STEM Beliefs", "abbreviation": "LGH STEM", "url": "https://fairsharing.org/10.25504/FAIRsharing.SvsBRM", "doi": "10.25504/FAIRsharing.SvsBRM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Let's Get Healthy! is a NIH-funded program that conducts health fairs. Students' beliefs about their STEM abilities in the context of impulsivity and mindset are described in a three state sample of secondary students across Oregon, Washington, and California.", "publications": [{"id": 2527, "pubmed_id": 31454349, "title": "Opposing effects of impulsivity and mindset on sources of science self-efficacy and STEM interest in adolescents", "year": 1975, "url": "https://www.ncbi.nlm.nih.gov/pubmed/31454349", "authors": "Lisa K. Marriott, Leigh A. Coppola, Suzanne H. Mitchell, Jana L. Bouwma-Gearhart, Zunqiu Chen, Dara Shifrer, Alicia B. Feryn, and Jackilen Shannon", "journal": "PLOS One", "doi": "10.1371/journal.pone.0201939", "created_at": "2021-09-30T08:27:10.019Z", "updated_at": "2021-09-30T08:27:10.019Z"}, {"id": 2782, "pubmed_id": 31454349, "title": "Opposing effects of impulsivity and mindset on sources of science selfefficacy and STEM interest in adolescents", "year": 2018, "url": "https://www.biorxiv.org/content/10.1101/377994v1", "authors": "Lisa K. Marriott, Leigh A. Coppola, Suzanne H. Mitchell, Jana L. Bouwma-Gearhart, Zunqiu Chen, Dara Shifrer, and Jackilen Shannon", "journal": "BioRxiv", "doi": null, "created_at": "2021-09-30T08:27:41.996Z", "updated_at": "2021-09-30T11:28:36.487Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2795", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-17T11:32:42.000Z", "updated-at": "2021-11-24T13:19:50.842Z", "metadata": {"doi": "10.25504/FAIRsharing.lFdTxB", "name": "Disbiome", "status": "ready", "contacts": [{"contact-name": "Bart de Spiegeleer", "contact-email": "bart.despiegeleer@UGent.be", "contact-orcid": "0000-0001-6794-3108"}], "homepage": "https://disbiome.ugent.be", "citations": [{"doi": "10.1186/s12866-018-1197-5", "pubmed-id": 29866037, "publication-id": 2548}], "identifier": 2795, "description": "Disbiome is a database covering microbial composition changes in different kinds of diseases. Disease names, detection methods or organism names can be used as search queries giving that return information related to the experiment (related disease/bacteria, abundancy subject/control, control type, detection method and related literature).", "abbreviation": "Disbiome", "access-points": [{"url": "https://disbiome.ugent.be/export", "name": "Export Data (JSON Webservice)", "type": "REST"}], "support-links": [{"url": "https://disbiome.ugent.be/news", "name": "News", "type": "Blog/News"}, {"url": "https://disbiome.ugent.be/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://disbiome.ugent.be/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://disbiome.ugent.be/experimentoverview", "name": "Browse Experiments", "type": "data access"}]}, "legacy-ids": ["biodbcore-001294", "bsg-d001294"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Microbiology"], "domains": ["Parkinson's disease", "Liver disease", "Kidney disease", "Disease", "Liver", "Diabetes mellitus", "Microbiome"], "taxonomies": ["Bifidobacterium", "Blautia", "Faecalibacterium prausnitzii", "Fusobacteria", "Lachnospiraceae", "Lactobacillus", "Neisseria", "Parabacteroides", "Prevotella", "Roseburia"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: Disbiome", "abbreviation": "Disbiome", "url": "https://fairsharing.org/10.25504/FAIRsharing.lFdTxB", "doi": "10.25504/FAIRsharing.lFdTxB", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Disbiome is a database covering microbial composition changes in different kinds of diseases. Disease names, detection methods or organism names can be used as search queries giving that return information related to the experiment (related disease/bacteria, abundancy subject/control, control type, detection method and related literature).", "publications": [{"id": 2548, "pubmed_id": 29866037, "title": "Disbiome database: linking the microbiome to disease.", "year": 2018, "url": "http://doi.org/10.1186/s12866-018-1197-5", "authors": "Janssens Y,Nielandt J,Bronselaer A,Debunne N,Verbeke F,Wynendaele E,Van Immerseel F,Vandewynckel YP,De Tre G,De Spiegeleer B", "journal": "BMC Microbiol", "doi": "10.1186/s12866-018-1197-5", "created_at": "2021-09-30T08:27:12.469Z", "updated_at": "2021-09-30T08:27:12.469Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 383, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3251", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-14T15:53:46.000Z", "updated-at": "2021-11-24T13:13:58.805Z", "metadata": {"doi": "10.25504/FAIRsharing.HGB4cF", "name": "Extracorporeal Life Support Organization Registry", "status": "ready", "contacts": [{"contact-name": "Ryan P Barbaro", "contact-email": "barbaror@med.umich.edu", "contact-orcid": "0000-0002-3645-0359"}], "homepage": "https://www.elso.org/COVID19.aspx", "identifier": 3251, "description": "The Extracorporeal Life Support Organization (ELSO) is providing the ExtraCorporeal Membrane Oxygenation (ECMO) in COVID-19 website as a resource for centers who may be called on to manage COVID-19 patients.", "abbreviation": "ELSO Registry", "support-links": [{"url": "https://ecmoedblog.wordpress.com/category/2019ncov-2/", "type": "Blog/News"}, {"url": "https://www.facebook.com/ELSO.Org", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.elso.org/AboutUs/Contact.aspx", "type": "Contact form"}, {"url": "registrysupport@elso.org", "name": "Registry email", "type": "Support email"}, {"url": "ELSODataRequest@elso.org", "name": "Data request", "type": "Support email"}, {"url": "https://www.covid19treatmentguidelines.nih.gov/introduction/", "name": "Guidelines for ECMO in COVID-19", "type": "Help documentation"}, {"url": "https://www.elso.org/Portals/0/Files/PDF/ECLS%20SARS-CoV-2%20Addendum%20Form%202020v2%206_25_20.pdf", "name": "ECLS SARS CoV-2 Addendum Form", "type": "Help documentation"}, {"url": "https://twitter.com/ELSOOrg", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://www.elso.org/Registry/DataRequest.aspx", "name": "Data access upon request", "type": "data access"}, {"url": "https://www.elso.org/Registry/FullCOVID19RegistryDashboard.aspx", "name": "Dashboard", "type": "data access"}]}, "legacy-ids": ["biodbcore-001765", "bsg-d001765"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cardiology", "Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Respiratory Medicine", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Extracorporeal membrane oxygenation", "Observations", "registry"], "countries": ["United States"], "name": "FAIRsharing record for: Extracorporeal Life Support Organization Registry", "abbreviation": "ELSO Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.HGB4cF", "doi": "10.25504/FAIRsharing.HGB4cF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Extracorporeal Life Support Organization (ELSO) is providing the ExtraCorporeal Membrane Oxygenation (ECMO) in COVID-19 website as a resource for centers who may be called on to manage COVID-19 patients.", "publications": [{"id": 883, "pubmed_id": 33657573, "title": "Extracorporeal Membrane Oxygenation for COVID-19: Updated 2021 Guidelines from the Extracorporeal Life Support Organization.", "year": 2021, "url": "http://doi.org/10.1097/MAT.0000000000001422", "authors": "Badulak J,Antonini MV,Stead CM,Shekerdemian L,Raman L,Paden ML,Agerstrand C,Bartlett RH,Barrett N,Combes A,Lorusso R,Mueller T,Ogino MT,Peek G,Pellegrino V,Rabie AA,Salazar L,Schmidt M,Shekar K,MacLaren G,Brodie D", "journal": "ASAIO J", "doi": "10.1097/MAT.0000000000001422", "created_at": "2021-09-30T08:23:57.462Z", "updated_at": "2021-09-30T08:23:57.462Z"}, {"id": 3093, "pubmed_id": 32243267, "title": "Initial ELSO Guidance Document: ECMO for COVID-19 Patients with Severe Cardiopulmonary Failure.", "year": 2020, "url": "http://doi.org/10.1097/MAT.0000000000001173", "authors": "Bartlett RH,Ogino MT,Brodie D,McMullan DM,Lorusso R,MacLaren G,Stead CM,Rycus P,Fraser JF,Belohlavek J,Salazar L,Mehta Y,Raman L,Paden ML", "journal": "ASAIO J", "doi": "10.1097/MAT.0000000000001173", "created_at": "2021-09-30T08:28:21.109Z", "updated_at": "2021-09-30T08:28:21.109Z"}, {"id": 3096, "pubmed_id": 32987008, "title": "Extracorporeal membrane oxygenation support in COVID-19: an international cohort study of the Extracorporeal Life Support Organization registry.", "year": 2020, "url": "http://doi.org/S0140-6736(20)32008-0", "authors": "Barbaro RP,MacLaren G,Boonstra PS,Iwashyna TJ,Slutsky AS,Fan E,Bartlett RH,Tonna JE,Hyslop R,Fanning JJ,Rycus PT,Hyer SJ,Anders MM,Agerstrand CL,Hryniewicz K,Diaz R,Lorusso R,Combes A,Brodie D", "journal": "Lancet", "doi": "S0140-6736(20)32008-0", "created_at": "2021-09-30T08:28:21.459Z", "updated_at": "2021-09-30T08:28:21.459Z"}], "licence-links": [{"licence-name": "ELSO Terms of Use", "licence-id": 271, "link-id": 756, "relation": "undefined"}, {"licence-name": "ELSO Privacy Policy", "licence-id": 270, "link-id": 761, "relation": "undefined"}, {"licence-name": "ELSO Data Policy", "licence-id": 269, "link-id": 766, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2670", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-25T08:35:23.000Z", "updated-at": "2021-11-24T13:20:15.000Z", "metadata": {"doi": "10.25504/FAIRsharing.ORMCpD", "name": "Scientific Data ISA-explorer", "status": "deprecated", "contacts": [{"contact-name": "ISA Tools", "contact-email": "isatools@googlegroups.com"}], "homepage": "https://doi.org/10.6084/m9.figshare.12018027.v1", "identifier": 2670, "description": "ISA-explorer stores information in the ISA-Tab metadata format to facilitate dataset discovery for the journal Scientific Data. Published Scientific Data ISA-Tab files can be easily read and explored via this repository. The ISA model records the data\u2019s provenance, how it was generated and where it is located \u2013 all prerequisites of publication with Scientific Data. The ISA-Tab metadata file is used to generate the Structured Summary table that appears after the abstract in every Data Descriptor article.", "support-links": [{"url": "http://blogs.nature.com/scientificdata/2015/12/17/isa-explorer/", "name": "ISA-explorer: A demo tool for discovering and exploring Scientific Datas ISA-tab metadata", "type": "Help documentation"}], "year-creation": 2015, "deprecation-date": "2021-03-11", "deprecation-reason": "This resource is no longer active. In the September 2020, Scientific Data transitioned to a JSON-LD format for these metadata files. All of the ISA-Tab format metadata files accompanying Data Descriptors published in Scientific Data from journal launch in May 2014 to September 2019 inclusive are now available in the figshare link available as this record's homepage."}, "legacy-ids": ["biodbcore-001163", "bsg-d001163"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Resource metadata"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Scientific Data ISA-explorer", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ORMCpD", "doi": "10.25504/FAIRsharing.ORMCpD", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ISA-explorer stores information in the ISA-Tab metadata format to facilitate dataset discovery for the journal Scientific Data. Published Scientific Data ISA-Tab files can be easily read and explored via this repository. The ISA model records the data\u2019s provenance, how it was generated and where it is located \u2013 all prerequisites of publication with Scientific Data. The ISA-Tab metadata file is used to generate the Structured Summary table that appears after the abstract in every Data Descriptor article.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1176, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2551", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-05T17:14:13.000Z", "updated-at": "2021-11-24T13:14:54.107Z", "metadata": {"doi": "10.25504/FAIRsharing.tjf1jg", "name": "NIH 3D Print Exchange", "status": "ready", "homepage": "https://3dprint.nih.gov", "identifier": 2551, "description": "Few scientific 3D-printable models are available online, and the expertise required to generate and validate such models remains a barrier. The NIH 3D Print Exchange eliminates this gap with an open, comprehensive, and interactive website for searching, browsing, downloading, and sharing biomedical 3D print files, modeling tutorials, and educational material. The NIH 3D Print Exchange is a collaborative effort led by the National Institute of Allergy and Infectious Diseases in collaboration with the Eunice Kennedy Shriver National Institute for Child Health and Human Development and the National Library of Medicine.", "access-points": [{"url": "https://3dprint.nih.gov/developer", "name": "API", "type": "REST"}, {"url": "http://niaid.github.io/3dpx_api/", "name": "API", "type": "REST"}], "support-links": [{"url": "https://3dprint.nih.gov/contact", "name": "Contact form", "type": "Contact form"}, {"url": "https://3dprint.nih.gov/faqs", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/NIH3Dprint", "name": "NIH3Dprint", "type": "Twitter"}]}, "legacy-ids": ["biodbcore-001034", "bsg-d001034"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Life Science", "Biomedical Science"], "domains": ["Molecular structure", "Medical imaging", "Structure"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Digital reconstruction"], "countries": ["United States"], "name": "FAIRsharing record for: NIH 3D Print Exchange", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.tjf1jg", "doi": "10.25504/FAIRsharing.tjf1jg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Few scientific 3D-printable models are available online, and the expertise required to generate and validate such models remains a barrier. The NIH 3D Print Exchange eliminates this gap with an open, comprehensive, and interactive website for searching, browsing, downloading, and sharing biomedical 3D print files, modeling tutorials, and educational material. The NIH 3D Print Exchange is a collaborative effort led by the National Institute of Allergy and Infectious Diseases in collaboration with the Eunice Kennedy Shriver National Institute for Child Health and Human Development and the National Library of Medicine.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2252", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T11:28:09.000Z", "updated-at": "2021-12-06T10:49:28.083Z", "metadata": {"doi": "10.25504/FAIRsharing.xhzfk0", "name": "National Archive of Computerized Data on Aging", "status": "ready", "contacts": [{"contact-name": "Help email", "contact-email": "help@icpsr.umich.edu"}], "homepage": "http://www.icpsr.umich.edu/icpsrweb/NACDA", "identifier": 2252, "description": "The National Archive of Computerized Data on Aging (NACDA), located within ICPSR, is funded by the National Institute on Aging. NACDA's mission is to advance research on aging by helping researchers to profit from the under-exploited potential of a broad range of datasets. NACDA acquires and preserves data relevant to gerontological research, processing as needed to promote effective research use, disseminates them to researchers, and facilitates their use. By preserving and making available the largest library of electronic data on aging in the United States, NACDA offers opportunities for secondary analysis on major issues of scientific and policy relevance.", "abbreviation": "NACDA", "support-links": [{"url": "http://www.icpsr.umich.edu/icpsrweb/NACDA/help/index.jsp", "type": "Help documentation"}, {"url": "http://www.youtube.com/user/ICPSRWeb", "type": "Video"}, {"url": "https://twitter.com/jwmcnally", "type": "Twitter"}], "year-creation": 1984, "data-processes": [{"url": "http://www.icpsr.umich.edu/icpsrweb/NACDA/search.jsp", "name": "Search", "type": "data access"}, {"url": "http://www.icpsr.umich.edu/icpsrweb/content/NACDA/deposit.html", "name": "Data deposition", "type": "data curation"}], "associated-tools": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/NACDA/sda.html", "name": "Survey Documentation and Analysis (SDA)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010259", "name": "re3data:r3d100010259", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005876", "name": "SciCrunch:RRID:SCR_005876", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000726", "bsg-d000726"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geriatric Medicine", "Life Science"], "domains": ["Aging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Archive of Computerized Data on Aging", "abbreviation": "NACDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.xhzfk0", "doi": "10.25504/FAIRsharing.xhzfk0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Archive of Computerized Data on Aging (NACDA), located within ICPSR, is funded by the National Institute on Aging. NACDA's mission is to advance research on aging by helping researchers to profit from the under-exploited potential of a broad range of datasets. NACDA acquires and preserves data relevant to gerontological research, processing as needed to promote effective research use, disseminates them to researchers, and facilitates their use. By preserving and making available the largest library of electronic data on aging in the United States, NACDA offers opportunities for secondary analysis on major issues of scientific and policy relevance.", "publications": [], "licence-links": [{"licence-name": "ICPSR - Restricted and unrestricted usage", "licence-id": 418, "link-id": 851, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2314", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T13:45:13.000Z", "updated-at": "2021-11-24T13:19:32.223Z", "metadata": {"doi": "10.25504/FAIRsharing.88kgtp", "name": "Bioimaging", "status": "deprecated", "contacts": [{"contact-name": "Jaime Prilusky", "contact-email": "jaime.prilusky@weizmann.ac.il", "contact-orcid": "0000-0002-7019-0191"}], "homepage": "http://bioimg.weizmann.ac.il", "identifier": 2314, "description": "Bioimg is a central storage server for all the imaging data acquired at the Imaging Units at theWeizmann Institute of Science (WIS) together with instruments of Research Groups in WIS. The data is automatic and incrementally copied to Bioimg several times a day. Metadata can be added to the files to track experiment's information and important notes and to enable efficient search. The stored data is available campus-wide over the network, and can be shared with other users. The Bioimg is available for other Institutions. FAIRsharing does not know the current status of this resource, and we have therefore marked its status as Uncertain. Please contact us if you have any recent information on this resource.", "abbreviation": "Bioimg", "year-creation": 2011, "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. This resource was marked within FAIRsharing as Uncertain in 2019, and then further updated to a deprecated status when no further information could be found."}, "legacy-ids": ["biodbcore-000790", "bsg-d000790"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "High-content screen"], "taxonomies": ["All"], "user-defined-tags": ["Pre-clinical imaging"], "countries": ["Israel"], "name": "FAIRsharing record for: Bioimaging", "abbreviation": "Bioimg", "url": "https://fairsharing.org/10.25504/FAIRsharing.88kgtp", "doi": "10.25504/FAIRsharing.88kgtp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bioimg is a central storage server for all the imaging data acquired at the Imaging Units at theWeizmann Institute of Science (WIS) together with instruments of Research Groups in WIS. The data is automatic and incrementally copied to Bioimg several times a day. Metadata can be added to the files to track experiment's information and important notes and to enable efficient search. The stored data is available campus-wide over the network, and can be shared with other users. The Bioimg is available for other Institutions. FAIRsharing does not know the current status of this resource, and we have therefore marked its status as Uncertain. Please contact us if you have any recent information on this resource.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2789", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-04T13:14:17.000Z", "updated-at": "2021-11-24T13:15:59.624Z", "metadata": {"name": "Long Term Ecological Research Network Information System Data Portal", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "support@environmentaldatainitiative.org"}], "homepage": "https://portal.lternet.edu/nis/home.jsp", "identifier": 2789, "description": "The LTER Network Information System Data Portal contains ecological data packages contributed by past and present LTER sites. Data and metadata derived from publicly funded research in the U.S. LTER Network are made available online with as few restrictions as possible, on a non-discriminatory basis. The LTER is able to support high-level analysis and synthesis of complex ecosystem data across the science-policy-management continuum, which in turn helps advance ecosystem research.", "abbreviation": "LTER NIS Data Portal", "year-creation": 2009, "data-processes": [{"url": "https://portal.lternet.edu/nis/advancedSearch.jsp", "name": "Advanced Search", "type": "data access"}, {"url": "https://portal.lternet.edu/nis/scopebrowse", "name": "Browse by Package Identifier", "type": "data access"}, {"url": "https://portal.lternet.edu/nis/browse.jsp", "name": "Browse by Keyword or LTER site", "type": "data access"}, {"url": "https://portal.lternet.edu/nis/savedDataServlet", "name": "Login", "type": "data access"}], "associated-tools": [{"url": "https://portal.lternet.edu/nis/provenanceGenerator.jsp", "name": "Provenance Generator"}, {"url": "https://portal.lternet.edu/nis/metadataPreviewer.jsp", "name": "Metadata Previewer"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is superceded by the Environmental Data Initiative Data Repository."}, "legacy-ids": ["biodbcore-001288", "bsg-d001288"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Ecology", "Life Science", "Ecosystem Science"], "domains": ["Ecosystem"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Long Term Ecological Research Network Information System Data Portal", "abbreviation": "LTER NIS Data Portal", "url": "https://fairsharing.org/fairsharing_records/2789", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LTER Network Information System Data Portal contains ecological data packages contributed by past and present LTER sites. Data and metadata derived from publicly funded research in the U.S. LTER Network are made available online with as few restrictions as possible, on a non-discriminatory basis. The LTER is able to support high-level analysis and synthesis of complex ecosystem data across the science-policy-management continuum, which in turn helps advance ecosystem research.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2046", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:19.037Z", "metadata": {"doi": "10.25504/FAIRsharing.bh0k78", "name": "Nucleic Acid Database", "status": "ready", "contacts": [{"contact-email": "ndbadmin@ndbserver.rutgers.edu"}], "homepage": "http://ndbserver.rutgers.edu/", "citations": [], "identifier": 2046, "description": "The Nucleic Acids Database contains information about experimentally-determined nucleic acids and complex assemblies. NDB can be used to perform searches based on annotations relating to sequence, structure and function, and to download, analyze, and learn about nucleic acids.", "abbreviation": "NDB", "data-curation": {}, "support-links": [{"url": "http://ndbserver.rutgers.edu/ndbmodule/ndb-help.html", "type": "Help documentation"}, {"url": "http://ndbserver.rutgers.edu/ndbmodule/education/education.html", "type": "Training documentation"}], "year-creation": 1991, "data-processes": [{"url": "http://ndbserver.rutgers.edu/ndbmodule/search/integrated.html", "name": "search", "type": "data access"}, {"url": "http://ndbserver.rutgers.edu/ndbmodule/services/index.html", "name": "analyze", "type": "data access"}, {"url": "http://ndbserver.rutgers.edu/service/ndb/atlas/gallery/dna?polType=all&protFunc=all&strGalType=dna&stFeature=all&expMeth=all&galType=table&start=0&limit=50", "name": "browse", "type": "data access"}, {"url": "http://ndbserver.rutgers.edu/ndbmodule/download_data/downloadIndex.html", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://tesla.pcbi.upenn.edu/savor/", "name": "SAVoR"}, {"url": "http://rna.bgsu.edu/rna3dhub/motifs", "name": "RNA 3D Motif Atlas"}, {"url": "http://www.bgsu.edu/research/rna/web-applications/webfr3d.html", "name": "WebFR3D"}, {"url": "http://rna.bgsu.edu/r3dalign/", "name": "R3D Align"}, {"url": "http://web.x3dna.org/", "name": "w3DNA 2.0"}, {"url": "http://www.dnatco.org", "name": "DNATCO 3.2"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010551", "name": "re3data:r3d100010551", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003255", "name": "SciCrunch:RRID:SCR_003255", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000513", "bsg-d000513"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science"], "domains": ["Nucleic acid sequence", "Deoxyribonucleic acid", "Ribonucleic acid"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Nucleic Acid Database", "abbreviation": "NDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bh0k78", "doi": "10.25504/FAIRsharing.bh0k78", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Nucleic Acids Database contains information about experimentally-determined nucleic acids and complex assemblies. NDB can be used to perform searches based on annotations relating to sequence, structure and function, and to download, analyze, and learn about nucleic acids.", "publications": [{"id": 500, "pubmed_id": 1384741, "title": "The nucleic acid database. A comprehensive relational database of three-dimensional structures of nucleic acids.", "year": 1992, "url": "http://doi.org/10.1016/S0006-3495(92)81649-1", "authors": "Berman HM., Olson WK., Beveridge DL., Westbrook J., Gelbin A., Demeny T., Hsieh SH., Srinivasan AR., Schneider B.,", "journal": "Biophys. J.", "doi": "10.1016/S0006-3495(92)81649-1", "created_at": "2021-09-30T08:23:14.310Z", "updated_at": "2021-09-30T08:23:14.310Z"}, {"id": 1372, "pubmed_id": 24185695, "title": "The Nucleic Acid Database: new features and capabilities.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt980", "authors": "Coimbatore Narayanan B,Westbrook J,Ghosh S,Petrov AI,Sweeney B,Zirbel CL,Leontis NB,Berman HM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt980", "created_at": "2021-09-30T08:24:53.459Z", "updated_at": "2021-09-30T11:29:07.468Z"}, {"id": 2849, "pubmed_id": 27805162, "title": "The Nucleic Acid Database: Present and Future.", "year": 1996, "url": "http://doi.org/10.6028/jres.101.026", "authors": "Berman HM,Gelbin A,Clowney L,Hsieh SH,Zardecki C,Westbrook J", "journal": "J Res Natl Inst Stand Technol", "doi": "10.6028/jres.101.026", "created_at": "2021-09-30T08:27:50.482Z", "updated_at": "2021-09-30T08:27:50.482Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3713", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-05T22:36:07.845Z", "updated-at": "2022-01-06T09:38:00.959Z", "metadata": {"name": "Bioplatforms Australia Data Portal", "status": "ready", "contacts": [{"contact-name": "General Help", "contact-email": "help@bioplatforms.com", "contact-orcid": null}], "homepage": "https://data.bioplatforms.com/", "citations": [], "identifier": 3713, "description": "The Bioplatforms Australia Framework Initiatives are national collaborative projects that generate high-impact \u2018omics data and knowledge resources to support some of Australia\u2019s biggest scientific challenges across agriculture, biomedicine, the environment and industry. The resulting datasets and data objects are stored within (or linked from) the Bioplatforms Australia Data Portal and are all accompanied by a rich set of metadata to enhance reuse. Full access to the data files requires registration.", "abbreviation": "BPA Data Portal", "access-points": [{"url": "https://data.bioplatforms.com/api/3", "name": "Bioplatforms Data Portal CKAN API", "type": "Other", "example-url": "https://data.bioplatforms.com/api/3/action/tag_list", "documentation-url": "https://data.bioplatforms.com/organization/pages/bioplatforms-australia/api-access"}], "data-curation": {}, "support-links": [{"url": "https://usersupport.bioplatforms.com/", "name": "User Support and Guides", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://data.bioplatforms.com/summary", "name": "Data Summary ", "type": "data access"}, {"url": "https://data.bioplatforms.com/user/register", "name": "Full Access and Download (registration required)", "type": "data access"}, {"url": "https://data.bioplatforms.com/dataset", "name": "Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "https://data.bioplatforms.com/about", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://data.bioplatforms.com/about", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Agriculture", "Biomedical Science", "Omics"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Bioplatforms Australia Data Portal", "abbreviation": "BPA Data Portal", "url": "https://fairsharing.org/fairsharing_records/3713", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bioplatforms Australia Framework Initiatives are national collaborative projects that generate high-impact \u2018omics data and knowledge resources to support some of Australia\u2019s biggest scientific challenges across agriculture, biomedicine, the environment and industry. The resulting datasets and data objects are stored within (or linked from) the Bioplatforms Australia Data Portal and are all accompanied by a rich set of metadata to enhance reuse. Full access to the data files requires registration.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2552, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3074", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-14T12:00:49.000Z", "updated-at": "2021-11-24T13:18:15.411Z", "metadata": {"doi": "10.25504/FAIRsharing.lU7PSC", "name": "COVID-19 Pandemic (AUSSDA - The Austrian Social Science Data Archive)", "status": "ready", "homepage": "https://data.aussda.at/dataverse/covid19", "identifier": 3074, "description": "Social Science Data on Coronavirus Disease: Your information hub for SARS-CoV-2 / COVID-19 pandemic related studies in Austria in the social sciences. Studies will be made available as fast as possible. Thus, not all information is available in English. Some studies will be published as pre-releases meaning that these are not the final datasets. Researchers therefore are obliged to check the most recent version before publishing and must add a disclaimer that they have been publishing with a pre-release version. Pre-release datasets are likely to be updated and substantial changes can happen as part of the continuing quality checks (e.g., weighting variables might change).", "abbreviation": "COVID Data Hub by AUSSDA", "support-links": [{"url": "https://aussda.at/en/about-aussda/", "name": "contact AUSSDA", "type": "Help documentation"}], "data-processes": [{"url": "https://aussda.at/en/find-data/", "name": "Looking for data?", "type": "data access"}], "associated-tools": [{"url": "https://github.com/AUSSDA/pyDataverse", "name": "pyDataverse"}]}, "legacy-ids": ["biodbcore-001582", "bsg-d001582"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science"], "domains": [], "taxonomies": ["Coronaviridae", "Homo sapiens", "Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["Austria"], "name": "FAIRsharing record for: COVID-19 Pandemic (AUSSDA - The Austrian Social Science Data Archive)", "abbreviation": "COVID Data Hub by AUSSDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.lU7PSC", "doi": "10.25504/FAIRsharing.lU7PSC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Social Science Data on Coronavirus Disease: Your information hub for SARS-CoV-2 / COVID-19 pandemic related studies in Austria in the social sciences. Studies will be made available as fast as possible. Thus, not all information is available in English. Some studies will be published as pre-releases meaning that these are not the final datasets. Researchers therefore are obliged to check the most recent version before publishing and must add a disclaimer that they have been publishing with a pre-release version. Pre-release datasets are likely to be updated and substantial changes can happen as part of the continuing quality checks (e.g., weighting variables might change).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2132", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.408Z", "metadata": {"doi": "10.25504/FAIRsharing.9vyk3d", "name": "JCB DataViewer", "status": "deprecated", "contacts": [{"contact-name": "Liz Williams", "contact-email": "lwilliams@rockefeller.edu", "contact-orcid": "0000-0002-4665-1875"}], "homepage": "http://jcb-dataviewer.rupress.org", "identifier": 2132, "description": "The JCB DataViewer is an image hosting and visualization platform for original microscopy image datasets associated with articles published in The Journal of Cell Biology, a peer-reviewed journal published by The Rockefeller University Press. The JCB DataViewer can host multidimensional fluorescence microscopy images, 3D tomogram data, very large (gigapixel) images, and high content imaging screens. Images are presented in an interactive viewer, and the \"scores\" from high content screens are presented in interactive graphs with data points linked to the relevant images. The JCB DataViewer uses the Bio-Formats library to read over 120 different imaging file formats and convert them to the OME-TIFF image data standard.", "abbreviation": "JCB DataViewer", "support-links": [{"url": "http://jcb-dataviewer.rupress.org/jcb/page/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://jcb-dataviewer.rupress.org", "type": "Help documentation"}, {"url": "https://twitter.com/JCellBiol", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "http://jcb-dataviewer.rupress.org", "name": "Web interface", "type": "data access"}], "associated-tools": [{"url": "http://downloads.openmicroscopy.org/bio-formats/4.4.9/", "name": "Bio-Formats 4.4.9"}], "deprecation-date": "2019-06-05", "deprecation-reason": "This resource is now deprecated. The data that was stored in this resource has (mostly) been moved to BioStudies, to a specific JCB collection (https://www.ebi.ac.uk/biostudies/JCB/studies)."}, "legacy-ids": ["biodbcore-000602", "bsg-d000602"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: JCB DataViewer", "abbreviation": "JCB DataViewer", "url": "https://fairsharing.org/10.25504/FAIRsharing.9vyk3d", "doi": "10.25504/FAIRsharing.9vyk3d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The JCB DataViewer is an image hosting and visualization platform for original microscopy image datasets associated with articles published in The Journal of Cell Biology, a peer-reviewed journal published by The Rockefeller University Press. The JCB DataViewer can host multidimensional fluorescence microscopy images, 3D tomogram data, very large (gigapixel) images, and high content imaging screens. Images are presented in an interactive viewer, and the \"scores\" from high content screens are presented in interactive graphs with data points linked to the relevant images. The JCB DataViewer uses the Bio-Formats library to read over 120 different imaging file formats and convert them to the OME-TIFF image data standard.", "publications": [{"id": 569, "pubmed_id": 20513764, "title": "Metadata matters: access to image data in the real world", "year": 2010, "url": "http://doi.org/10.1083/jcb.201004104", "authors": "Melissa Linkert, Curtis T. Rueden, Chris Allan et al.", "journal": "The Journal of Cell Biology", "doi": "10.1083/jcb.201004104", "created_at": "2021-09-30T08:23:22.218Z", "updated_at": "2021-09-30T08:23:22.218Z"}, {"id": 571, "pubmed_id": 22869591, "title": "The JCB DataViewer scales up.", "year": 2012, "url": "http://doi.org/10.1083/jcb.201207117", "authors": "Williams EH, Carpentier P, Misteli T.", "journal": "Journal of Cell Biology", "doi": "10.1083/jcb.201207117", "created_at": "2021-09-30T08:23:22.468Z", "updated_at": "2021-09-30T08:23:22.468Z"}, {"id": 572, "pubmed_id": 20921131, "title": "Friends, colleagues, authors, lend us your data.", "year": 2010, "url": "http://doi.org/10.1083/jcb.201009056", "authors": "DeCathelineau A, Williams EH, Misteli T, Rossner M.", "journal": "Journal of Cell Bioloy", "doi": "10.1083/jcb.201009056", "created_at": "2021-09-30T08:23:22.572Z", "updated_at": "2021-09-30T08:23:22.572Z"}, {"id": 573, "pubmed_id": 21893594, "title": "New tools for JCB", "year": 2011, "url": "http://doi.org/10.1083/jcb.201108096", "authors": "Williams EH, Misteli T.", "journal": "Journal of Cell Biology", "doi": "10.1083/jcb.201108096", "created_at": "2021-09-30T08:23:22.677Z", "updated_at": "2021-09-30T08:23:22.677Z"}, {"id": 1637, "pubmed_id": null, "title": "Announcing the JCB DataViewer, a browser-based application for viewing original image files", "year": 2008, "url": "http://doi.org/10.1083/jcb.200811132", "authors": "Hill E", "journal": "Journal of Cell Biology", "doi": "10.1083/jcb.200811132", "created_at": "2021-09-30T08:25:23.389Z", "updated_at": "2021-09-30T08:25:23.389Z"}], "licence-links": [{"licence-name": "JCB DataViewer Terms of Use", "licence-id": 468, "link-id": 814, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 858, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1767", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.846Z", "metadata": {"doi": "10.25504/FAIRsharing.6cnw23", "name": "YanHuang - YH1 Genome Database", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "yhdb@genomics.org.cn"}], "homepage": "http://yh.genomics.org.cn", "identifier": 1767, "description": "The YH database presents the entire DNA sequence of a Han Chinese individual, as a representative of Asian population. This genome, named as YH, is the start of YanHuang Project, which aims to sequence 100 Chinese individuals in 3 years.assembled based on 3.3 billion reads (117.7Gbp raw data) generated by Illumina Genome Analyzer. In total of 102.9Gbp nucleotides were mapped onto the NCBI human reference genome (Build 36) by self-developed software SOAP (Short Oligonucleotide Alignment Program), and 3.07 million SNPs were identified.", "abbreviation": "YH1", "support-links": [{"url": "http://yh.genomics.org.cn/help.jsp", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2007, "data-processes": [{"url": "http://yh.genomics.org.cn/download.jsp", "name": "Download", "type": "data access"}, {"url": "http://yh.genomics.org.cn/index.jsp", "name": "search", "type": "data access"}, {"url": "http://yh.genomics.org.cn/mapview.jsp", "name": "visualize", "type": "data access"}], "associated-tools": [{"url": "http://yh.genomics.org.cn/search.jsp", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000225", "bsg-d000225"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: YanHuang - YH1 Genome Database", "abbreviation": "YH1", "url": "https://fairsharing.org/10.25504/FAIRsharing.6cnw23", "doi": "10.25504/FAIRsharing.6cnw23", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The YH database presents the entire DNA sequence of a Han Chinese individual, as a representative of Asian population. This genome, named as YH, is the start of YanHuang Project, which aims to sequence 100 Chinese individuals in 3 years.assembled based on 3.3 billion reads (117.7Gbp raw data) generated by Illumina Genome Analyzer. In total of 102.9Gbp nucleotides were mapped onto the NCBI human reference genome (Build 36) by self-developed software SOAP (Short Oligonucleotide Alignment Program), and 3.07 million SNPs were identified.", "publications": [{"id": 288, "pubmed_id": 19073702, "title": "The YH database: the first Asian diploid genome database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn966", "authors": "Li G., Ma L., Song C., Yang Z., Wang X., Huang H., Li Y., Li R., Zhang X., Yang H., Wang J., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn966", "created_at": "2021-09-30T08:22:51.032Z", "updated_at": "2021-09-30T08:22:51.032Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2476", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-05T12:52:01.000Z", "updated-at": "2021-11-24T13:16:30.607Z", "metadata": {"doi": "10.25504/FAIRsharing.hvecpt", "name": "Ocean Biodiversity Information System USA IPT - USGS", "status": "ready", "contacts": [{"contact-name": "Abigail Benson", "contact-email": "obis-usa@usgs.gov"}], "homepage": "https://www1.usgs.gov/obis-usa/ipt", "identifier": 2476, "description": "OBIS-USA brings together marine biological occurrence data \u2013 recorded observations of identifiable marine species at a known time and place, collected primarily from U.S. Waters or with U.S. funding. OBIS-USA is part of an international data sharing network (Ocean Biodiversity Information System, OBIS) coordinated by the Intergovernmental Oceanographic Commission, part of UNESCO.", "abbreviation": "OBIS-USA - USGS", "support-links": [{"url": "obis-usa@usgs.gov", "name": "OBIS-USA", "type": "Support email"}, {"url": "https://www1.usgs.gov/csas/obis-usa/", "name": "OBIS-USA", "type": "Help documentation"}]}, "legacy-ids": ["biodbcore-000958", "bsg-d000958"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science", "Oceanography"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Ocean Biodiversity Information System USA IPT - USGS", "abbreviation": "OBIS-USA - USGS", "url": "https://fairsharing.org/10.25504/FAIRsharing.hvecpt", "doi": "10.25504/FAIRsharing.hvecpt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OBIS-USA brings together marine biological occurrence data \u2013 recorded observations of identifiable marine species at a known time and place, collected primarily from U.S. Waters or with U.S. funding. OBIS-USA is part of an international data sharing network (Ocean Biodiversity Information System, OBIS) coordinated by the Intergovernmental Oceanographic Commission, part of UNESCO.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2128, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2129, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2130, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2131, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3218", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-13T13:22:54.000Z", "updated-at": "2021-12-06T10:47:39.857Z", "metadata": {"name": "AmeriFlux", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ameriflux@lbl.gov"}], "homepage": "https://ameriflux.lbl.gov/", "identifier": 3218, "description": "AmeriFlux is a data archive and network of PI-managed sites measuring ecosystem CO2, water, and energy fluxes in North, Central and South America. It was established to connect research on field sites representing major climate and ecological biomes, including tundra, grasslands, savanna, crops, and conifer, deciduous, and tropical forests. Its goals include quantifying the magnitude of the carbon sources and sinks for a range of terrestrial ecosystems in the Americas, and how they may be influenced by disturbance, management regimes, climate variability, nutrients, and atmospheric pollutants; advancing understanding of processes regulating carbon assimilation, respiration, and storage; collecting critical new information to help define the current global CO2 budget; and enabling improved predictions of future concentrations of atmospheric CO2.", "abbreviation": "AmeriFlux", "support-links": [{"url": "https://ameriflux.lbl.gov/category/tech/", "name": "Tech Blog", "type": "Blog/News"}, {"url": "https://ameriflux.lbl.gov/community/blog/", "name": "Community Blog", "type": "Blog/News"}, {"url": "https://ameriflux.lbl.gov/category/data/", "name": "Data Blog", "type": "Blog/News"}, {"url": "https://ameriflux.lbl.gov/contact-us/", "name": "Contact Information", "type": "Contact form"}, {"url": "https://ameriflux.lbl.gov/data/how-to-uploaddownload-data/", "name": "How to Upload/Download Data", "type": "Help documentation"}, {"url": "https://ameriflux.lbl.gov/about/about-ameriflux/", "name": "About", "type": "Help documentation"}, {"url": "https://ameriflux.lbl.gov/about/network-at-a-glance/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://ameriflux.lbl.gov/community/publications/", "name": "Publications", "type": "Help documentation"}, {"url": "https://ameriflux.lbl.gov/data/aboutdata/", "name": "About AmeriFlux Data", "type": "Help documentation"}, {"url": "https://twitter.com/AmeriFlux", "name": "@AmeriFlux", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"url": "https://ameriflux.lbl.gov/sites/site-search/#filter-type=all&has-data=All&site_id=", "name": "Search", "type": "data access"}, {"url": "https://ameriflux.lbl.gov/data/upload-data/", "name": "Upload (Login Required)", "type": "data curation"}, {"url": "https://ameriflux.lbl.gov/data/download-data/", "name": "Download (Login Required)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013260", "name": "re3data:r3d100013260", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001731", "bsg-d001731"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Forest Management", "Atmospheric Science", "Ecosystem Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Carbon", "Carbon cycle", "Grassland Research", "Pollution", "Savannah", "Tundra"], "countries": ["United States"], "name": "FAIRsharing record for: AmeriFlux", "abbreviation": "AmeriFlux", "url": "https://fairsharing.org/fairsharing_records/3218", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AmeriFlux is a data archive and network of PI-managed sites measuring ecosystem CO2, water, and energy fluxes in North, Central and South America. It was established to connect research on field sites representing major climate and ecological biomes, including tundra, grasslands, savanna, crops, and conifer, deciduous, and tropical forests. Its goals include quantifying the magnitude of the carbon sources and sinks for a range of terrestrial ecosystems in the Americas, and how they may be influenced by disturbance, management regimes, climate variability, nutrients, and atmospheric pollutants; advancing understanding of processes regulating carbon assimilation, respiration, and storage; collecting critical new information to help define the current global CO2 budget; and enabling improved predictions of future concentrations of atmospheric CO2.", "publications": [], "licence-links": [{"licence-name": "AmeriFlux Data Policy", "licence-id": 28, "link-id": 302, "relation": "undefined"}, {"licence-name": "Berkeley Lab Disclaimers", "licence-id": 71, "link-id": 303, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2724", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-10T14:26:41.000Z", "updated-at": "2021-11-24T13:16:08.461Z", "metadata": {"doi": "10.25504/FAIRsharing.l0p1Oi", "name": "Beilstein Archives", "status": "ready", "contacts": [{"contact-name": "Wendy Patterson", "contact-email": "wpatterson@beilstein-institut.de"}], "homepage": "https://www.beilstein-archives.org/xiv/", "identifier": 2724, "description": "This repository is currently limited to preprints related to the Beilstein Journal of Nanotechnology and the Beilstein Journal of Organic Chemistry. All preprints are posted with a CC-BY 4.0 license.", "year-creation": 2019}, "legacy-ids": ["biodbcore-001222", "bsg-d001222"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Organic Chemistry", "Nanotechnology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["preprints"], "countries": ["Germany"], "name": "FAIRsharing record for: Beilstein Archives", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.l0p1Oi", "doi": "10.25504/FAIRsharing.l0p1Oi", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This repository is currently limited to preprints related to the Beilstein Journal of Nanotechnology and the Beilstein Journal of Organic Chemistry. All preprints are posted with a CC-BY 4.0 license.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2482", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-14T04:39:40.000Z", "updated-at": "2021-11-24T13:14:53.583Z", "metadata": {"doi": "10.25504/FAIRsharing.bkxpmp", "name": "Xenobiotics Metabolism Database", "status": "ready", "contacts": [{"contact-name": "Ola Spjuth", "contact-email": "ola.spjuth@farmbio.uu.se", "contact-orcid": "0000-0002-8083-2864"}], "homepage": "http://www.xmetdb.org/", "identifier": 2482, "description": "XMetDB is an open access and open source database and web interface for the submission and retrieval of experimental metabolite data for drugs and other xenobiotics. It will also feature an open API for access to the database.", "abbreviation": "XMetDB", "support-links": [{"url": "http://www.xmetdb.org/wiki/How_to_enter_experimental_data", "type": "Help documentation"}, {"url": "http://www.xmetdb.org/wiki/Export_of_data", "type": "Help documentation"}, {"url": "http://www.xmetdb.org/wiki/Saved_searches_and_alerts", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.xmetdb.org/xmetdb", "name": "Search", "type": "data access"}, {"url": "http://www.xmetdb.org/xmetdb/editor", "name": "Submit", "type": "data curation"}, {"url": "http://www.xmetdb.org/xmetdb/login", "name": "Login", "type": "data access"}], "associated-tools": [{"url": "http://www.xmetdb.org/wiki/API", "name": "API"}]}, "legacy-ids": ["biodbcore-000964", "bsg-d000964"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biochemistry", "Life Science", "Biomedical Science"], "domains": ["Drug metabolic process"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Sweden", "Netherlands", "Bulgaria"], "name": "FAIRsharing record for: Xenobiotics Metabolism Database", "abbreviation": "XMetDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bkxpmp", "doi": "10.25504/FAIRsharing.bkxpmp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: XMetDB is an open access and open source database and web interface for the submission and retrieval of experimental metabolite data for drugs and other xenobiotics. It will also feature an open API for access to the database.", "publications": [{"id": 2242, "pubmed_id": 27651835, "title": "XMetDB: an open access database for xenobiotic metabolism.", "year": 2016, "url": "http://doi.org/10.1186/s13321-016-0161-3", "authors": "Spjuth O,Rydberg P,Willighagen EL,Evelo CT,Jeliazkova N", "journal": "J Cheminform", "doi": "10.1186/s13321-016-0161-3", "created_at": "2021-09-30T08:26:32.726Z", "updated_at": "2021-09-30T08:26:32.726Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 94, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 911, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3265", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-02T15:29:29.000Z", "updated-at": "2021-12-06T10:48:41.984Z", "metadata": {"doi": "10.25504/FAIRsharing.I5xHsJ", "name": "The Materials Data Facility", "status": "ready", "contacts": [{"contact-name": "Ben Blaiszik", "contact-email": "blaiszik@uchicago.edu", "contact-orcid": "0000-0002-5326-4902"}], "homepage": "https://www.materialsdatafacility.org", "citations": [{"publication-id": 1562}], "identifier": 3265, "description": "MDF streamlines and automates data sharing, discovery, access and analysis by: 1) enabling data publication, regardless of data size, type, and location; 2) automating metadata extraction from submitted data into MDF metadata records (i.e., JSON formatted documents following the MDF schema) using open-source materials-aware extraction pipelines and ingest pipelines; and 3) unifying search across many materials data sources, including both MDF and other repositories with potentially different vocabularies and schemas. Currently, MDF stores 60 TB of data from simulation and experiment, and also indexes hundreds of datasets contained in external repositories, with millions of individual MDF metadata records created from these datasets to aid fine-grained discovery.", "abbreviation": "MDF", "access-points": [{"url": "https://github.com/materials-data-facility/forge", "name": "Materials Data Facility Python package", "type": "Other"}], "support-links": [{"url": "materialsdatafacility@uchicago.edu", "type": "Support email"}], "year-creation": 2016, "data-processes": [{"url": "https://petreldata.net/mdf/?q=*&filter-match-any.mdf.resource_type=dataset", "name": "Browse", "type": "data access"}, {"url": "https://connect.materialsdatafacility.org/", "name": "Publish", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012080", "name": "re3data:r3d100012080", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001780", "bsg-d001780"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Materials Research", "Biomaterials", "Composite Materials", "Materials Structuring and Functionalisation", "Materials Informatics", "Materials Engineering", "Mechanical Behaviour of Construction Materials", "Microstructural Mechanical Properties of Materials", "Materials Science", "Subject Agnostic"], "domains": ["Material processing"], "taxonomies": [], "user-defined-tags": ["Computational Materials Science"], "countries": ["United States"], "name": "FAIRsharing record for: The Materials Data Facility", "abbreviation": "MDF", "url": "https://fairsharing.org/10.25504/FAIRsharing.I5xHsJ", "doi": "10.25504/FAIRsharing.I5xHsJ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MDF streamlines and automates data sharing, discovery, access and analysis by: 1) enabling data publication, regardless of data size, type, and location; 2) automating metadata extraction from submitted data into MDF metadata records (i.e., JSON formatted documents following the MDF schema) using open-source materials-aware extraction pipelines and ingest pipelines; and 3) unifying search across many materials data sources, including both MDF and other repositories with potentially different vocabularies and schemas. Currently, MDF stores 60 TB of data from simulation and experiment, and also indexes hundreds of datasets contained in external repositories, with millions of individual MDF metadata records created from these datasets to aid fine-grained discovery.", "publications": [{"id": 1562, "pubmed_id": null, "title": "The Materials Data Facility: Data Services to Advance Materials Science Research.", "year": 2016, "url": "https://link.springer.com/article/10.1007/s11837-016-2001-3", "authors": "B. Blaiszik, K. Chard, J. Pruyne, R. Ananthakrishnan, S. Tuecke & I. Foster", "journal": "JOM 68, no. 8 (July 6, 2016): 2045\u20132052. doi:10.1007/s11837-016-2001-3.", "doi": null, "created_at": "2021-09-30T08:25:15.183Z", "updated_at": "2021-09-30T08:25:15.183Z"}, {"id": 2770, "pubmed_id": null, "title": "A data ecosystem to support machine learning in materials science", "year": 2019, "url": "https://link.springer.com/article/10.1557%2Fmrc.2019.118", "authors": "Blaiszik, Ben, Logan Ward, Marcus Schwarting, Jonathon Gaff, Ryan Chard, Daniel Pike, Kyle Chard, and Ian Foster.", "journal": "MRS Communications (October 10, 2019): 1\u20139. doi:10.1557/mrc.2019.118.", "doi": null, "created_at": "2021-09-30T08:27:40.438Z", "updated_at": "2021-09-30T08:27:40.438Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2926", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-22T13:15:56.000Z", "updated-at": "2021-12-06T10:47:26.357Z", "metadata": {"name": "COVID-19 Research Collaborations", "status": "ready", "homepage": "https://covid19.elsevierpure.com/", "identifier": 2926, "description": "The COVID-19 Research Collaborations database stores information on researchers and institutions for the purposes of identifying potential research experts or collaborators in areas related to the coronavirus epidemic across basic science, translational research, or clinical practice.", "support-links": [{"url": "https://www.elsevier.com/__data/assets/pdf_file/0013/998869/COVID-ElsevierPure.pdf", "name": "About (PDF)", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://covid19.elsevierpure.com/en/searchAll/advanced/", "name": "Advanced Search", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/persons/", "name": "Browse & Search Profiles", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/organisations/", "name": "Browse & Search Research Units", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/publications/", "name": "Browse & Search Research", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/datasets/", "name": "Browse & Search Related Data", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/clippings/", "name": "Browse & Search Media Articles", "type": "data access"}, {"url": "https://covid19.elsevierpure.com/en/concepts/copypaste/", "name": "Search via Free Text Sentences", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013300", "name": "re3data:r3d100013300", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001429", "bsg-d001429"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Biomedical Science", "Translational Medicine", "Epidemiology"], "domains": ["Text mining", "Natural language processing", "Journal article"], "taxonomies": ["Coronaviridae"], "user-defined-tags": ["COVID-19"], "countries": ["Netherlands"], "name": "FAIRsharing record for: COVID-19 Research Collaborations", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2926", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The COVID-19 Research Collaborations database stores information on researchers and institutions for the purposes of identifying potential research experts or collaborators in areas related to the coronavirus epidemic across basic science, translational research, or clinical practice.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3230", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-09T11:03:56.000Z", "updated-at": "2021-12-06T10:47:40.596Z", "metadata": {"name": "Bolin Centre Database", "status": "ready", "contacts": [{"contact-name": "Anders Moberg", "contact-email": "anders.moberg@natgeo.su.se", "contact-orcid": "0000-0002-5177-9347"}], "homepage": "https://bolin.su.se/data/", "identifier": 3230, "description": "The Bolin Centre Database is a storage and management facility for data collected and collated at the Bolin Centre for Climate Research. Most of the data are available with open access and can be used under the terms given in the data description. The purpose of the center is to host all datasets produced within the Bolin Centre, to visualise the data and make the data publicly available.", "support-links": [{"url": "bolindata@su.se", "name": "General contact", "type": "Support email"}], "data-processes": [{"url": "https://bolin.su.se/data/", "name": "Search", "type": "data access"}, {"url": "https://bolin.su.se/data/contribute/", "name": "Contribute", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011699", "name": "re3data:r3d100011699", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001744", "bsg-d001744"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Meteorology", "Hydrography", "Earth Science", "Bathymetry", "Atmospheric Science", "Oceanography", "Water Research", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Bathymetry", "Carbon", "Cloud", "Glacier", "Hydrography", "Peat", "precipitation", "Sedimentology", "Temperature", "weather", "Wind"], "countries": ["Sweden"], "name": "FAIRsharing record for: Bolin Centre Database", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3230", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bolin Centre Database is a storage and management facility for data collected and collated at the Bolin Centre for Climate Research. Most of the data are available with open access and can be used under the terms given in the data description. The purpose of the center is to host all datasets produced within the Bolin Centre, to visualise the data and make the data publicly available.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1759", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.753Z", "metadata": {"doi": "10.25504/FAIRsharing.svkzq3", "name": "Non-Redundant B.subtilis database", "status": "deprecated", "contacts": [{"contact-email": "perriere@biomserv.univ-lyon1.fr"}], "homepage": "http://pbil.univ-lyon1.fr/nrsub/nrsub.html", "identifier": 1759, "description": "This server allows to access the complete genome of Bacillus subtilis. Additional data on gene mapping and codon usage have been added, as well as cross-references with the SWISS-PROT, ENZYME and HOBACGEN databases.", "abbreviation": "NRSub", "data-processes": [{"url": "ftp://pbil.univ-lyon1.fr/pub/nrsub", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://pbil.univ-lyon1.fr/search/query_fam.php", "name": "search"}, {"url": "http://pbil.univ-lyon1.fr/search/query_fam.php", "name": "search"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000217", "bsg-d000217"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Gene", "Genome"], "taxonomies": ["Bacillus subtilis"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Non-Redundant B.subtilis database", "abbreviation": "NRSub", "url": "https://fairsharing.org/10.25504/FAIRsharing.svkzq3", "doi": "10.25504/FAIRsharing.svkzq3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This server allows to access the complete genome of Bacillus subtilis. Additional data on gene mapping and codon usage have been added, as well as cross-references with the SWISS-PROT, ENZYME and HOBACGEN databases.", "publications": [{"id": 273, "pubmed_id": 9399801, "title": "The non-redundant Bacillus subtilis (NRSub) database: update 1998.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.60", "authors": "Perri\u00e8re G., Gouy M., Gojobori T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/26.1.60", "created_at": "2021-09-30T08:22:49.524Z", "updated_at": "2021-09-30T08:22:49.524Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2409", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-10T22:21:31.000Z", "updated-at": "2021-12-06T10:48:39.107Z", "metadata": {"doi": "10.25504/FAIRsharing.g84yb7", "name": "Atmospheric Radiation Measurement Data Archive", "status": "ready", "contacts": [{"contact-name": "ARM Data Center General Contact", "contact-email": "adc@arm.gov"}], "homepage": "https://www.arm.gov/data", "identifier": 2409, "description": "The Atmospheric Radiation Measurement (ARM) Data Archive stores continuous measurements\u2014supplemented by field campaigns\u2014and provides data products that promote the advancement of climate models. ARM data include routine data products, value-added products (VAPs), field campaign data, complementary external data products from collaborating programs, and data contributed by ARM principal investigators for use by the scientific community. Data quality reports, graphical displays of data availability/quality, and data plots are also available from the ARM Data Center. These data are available free of charge to the public.", "abbreviation": "ARM Data Archive", "access-points": [{"url": "https://adc.arm.gov/armlive/", "name": "ARM Data Discovery Web Service", "type": "REST"}], "support-links": [{"url": "https://www.arm.gov/news-events", "name": "News & Events", "type": "Blog/News"}, {"url": "https://www.facebook.com/arm.gov", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.arm.gov/help/faqs", "name": "ARM FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.arm.gov/resources/acronyms", "name": "Acronyms", "type": "Help documentation"}, {"url": "https://www.arm.gov/resources/glossary", "name": "Glossary", "type": "Help documentation"}, {"url": "https://adc.arm.gov/armlive/#scripts", "name": "Web Service Examples", "type": "Help documentation"}, {"url": "https://www.arm.gov/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCYwRLlD9RZGZcKO9882B3ig", "name": "YouTube", "type": "Video"}, {"url": "https://www.arm.gov/resources/outreach", "name": "Outreach", "type": "Help documentation"}, {"url": "https://twitter.com/armnewsteam", "name": "@armnewsteam", "type": "Twitter"}], "year-creation": 1989, "data-processes": [{"url": "https://adc.arm.gov/armome/", "name": "Submit", "type": "data curation"}, {"url": "https://adc.arm.gov/discovery/", "name": "Search & Browse", "type": "data access"}, {"url": "https://www.arm.gov/data/data-sources", "name": "Search & Browse Data Sources", "type": "data access"}, {"url": "https://adc.arm.gov/discovery/#/guidedsearch", "name": "Guided Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010186", "name": "re3data:r3d100010186", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000891", "bsg-d000891"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Atmospheric Radiation Measurement Data Archive", "abbreviation": "ARM Data Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.g84yb7", "doi": "10.25504/FAIRsharing.g84yb7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atmospheric Radiation Measurement (ARM) Data Archive stores continuous measurements\u2014supplemented by field campaigns\u2014and provides data products that promote the advancement of climate models. ARM data include routine data products, value-added products (VAPs), field campaign data, complementary external data products from collaborating programs, and data contributed by ARM principal investigators for use by the scientific community. Data quality reports, graphical displays of data availability/quality, and data plots are also available from the ARM Data Center. These data are available free of charge to the public.", "publications": [], "licence-links": [{"licence-name": "ARM Data Policies and Guidelines", "licence-id": 39, "link-id": 2154, "relation": "undefined"}, {"licence-name": "ARM Privacy Policy", "licence-id": 40, "link-id": 2155, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3108", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T11:02:08.000Z", "updated-at": "2021-11-24T13:18:11.813Z", "metadata": {"doi": "10.25504/FAIRsharing.tNQAlF", "name": "LSHTM Research Online", "status": "ready", "contacts": [{"contact-name": "LSHTM Research Publications Team", "contact-email": "researchonline@lshtm.ac.uk"}], "homepage": "https://researchonline.lshtm.ac.uk/", "identifier": 3108, "description": "LSHTM Research Online is a freely accessible open access repository of research conducted by staff from the London School of Hygiene & Tropical Medicine.", "access-points": [{"url": "https://researchonline.lshtm.ac.uk/rest/", "name": "LSHTM Research Online REST interface", "type": "REST"}], "support-links": [{"url": "https://researchonline.lshtm.ac.uk/information.html", "name": "LSHTM Research Online - About page", "type": "Help documentation"}, {"url": "https://researchonline.lshtm.ac.uk/id/eprint/4645488/", "name": "LSHTM Open Access Guidance", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://researchonline.lshtm.ac.uk/view/", "name": "Repository browse view", "type": "data access"}, {"url": "https://researchonline.lshtm.ac.uk/view/theses/archive.html", "name": "LSHTM theses", "type": "data access"}, {"url": "https://researchonline.lshtm.ac.uk/cgi/search/advanced", "name": "Advanced search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001616", "bsg-d001616"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Humanities and Social Science", "Microbiology", "Tropical Medicine", "Epidemiology"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["infectious disease", "institutional repository", "tropical disease"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: LSHTM Research Online", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.tNQAlF", "doi": "10.25504/FAIRsharing.tNQAlF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LSHTM Research Online is a freely accessible open access repository of research conducted by staff from the London School of Hygiene & Tropical Medicine.", "publications": [], "licence-links": [{"licence-name": "LSHTM Open Access Guidance", "licence-id": 497, "link-id": 610, "relation": "undefined"}, {"licence-name": "LSHTM Freedom of Information policy", "licence-id": 496, "link-id": 611, "relation": "undefined"}, {"licence-name": "LSHTM Privacy notices", "licence-id": 498, "link-id": 618, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2375", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-09T18:36:47.000Z", "updated-at": "2021-11-24T13:16:28.687Z", "metadata": {"doi": "10.25504/FAIRsharing.bk3z3n", "name": "GBIF Spain IPT - GBIF Spain Repository", "status": "ready", "contacts": [{"contact-name": "Santiago Mart\u00ednez de la Riva", "contact-email": "sama@gbif.es"}], "homepage": "http://www.gbif.es/ipt/", "identifier": 2375, "description": "GBIF Spain maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. GBIF Spain supports researchers in Spain by providing them helpdesk assistance and by hosting their data for free in this repository. It has already been used to publish/host data in scientific publications, e.g. http://dx.doi.org/10.15470/qomfu6 which is the data this Scientific Data publication is based on: http://dx.doi.org/10.1038/sdata.2016.85", "support-links": [{"url": "info@gbif.es", "type": "Support email"}, {"url": "https://github.com/gbif/ipt/wiki/FAQ.wiki", "type": "Github"}, {"url": "http://lists.gbif.org/mailman/listinfo/ipt", "type": "Mailing list"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "type": "Github"}, {"url": "http://www.gbif.org/disclaimer/datasharing", "type": "Help documentation"}, {"url": "https://twitter.com/GbifEs", "type": "Twitter"}], "year-creation": 2013, "associated-tools": [{"url": "http://www.gbif.org/ipt", "name": "GBIF Integrated Publishing Toolkit (IPT) 2.3.x"}]}, "legacy-ids": ["biodbcore-000854", "bsg-d000854"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: GBIF Spain IPT - GBIF Spain Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bk3z3n", "doi": "10.25504/FAIRsharing.bk3z3n", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF Spain maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. GBIF Spain supports researchers in Spain by providing them helpdesk assistance and by hosting their data for free in this repository. It has already been used to publish/host data in scientific publications, e.g. http://dx.doi.org/10.15470/qomfu6 which is the data this Scientific Data publication is based on: http://dx.doi.org/10.1038/sdata.2016.85", "publications": [{"id": 1981, "pubmed_id": 27676217, "title": "Long-term data set of small mammals from owl pellets in the Atlantic-Mediterranean transition area.", "year": 2016, "url": "http://doi.org/10.1038/sdata.2016.85", "authors": "Escribano N,Galicia D,Arino AH,Escala C", "journal": "Sci Data", "doi": "10.1038/sdata.2016.85", "created_at": "2021-09-30T08:26:02.949Z", "updated_at": "2021-09-30T08:26:02.949Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 376, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1022, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1026, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1029, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1869", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.911Z", "metadata": {"doi": "10.25504/FAIRsharing.3q3kvn", "name": "Escherichia coli strain K12 genome database", "status": "deprecated", "contacts": [{"contact-email": "krudd@med.miami.edu"}], "homepage": "http://ecogene.org/", "identifier": 1869, "description": "The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", "abbreviation": "EcoGene", "year-creation": 2000, "data-processes": [{"url": "http://www.ecogene.org/ecodownload", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://ecogene.org/ecosearch", "name": "search"}, {"url": "http://www.ecogene.org/ecoblast", "name": "BLAST"}, {"url": "http://ecogene.org/ecosearch", "name": "search"}, {"url": "http://www.ecogene.org/ecoblast", "name": "BLAST"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000332", "bsg-d000332"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Protein", "Genome"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Escherichia coli strain K12 genome database", "abbreviation": "EcoGene", "url": "https://fairsharing.org/10.25504/FAIRsharing.3q3kvn", "doi": "10.25504/FAIRsharing.3q3kvn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", "publications": [{"id": 388, "pubmed_id": 10592181, "title": "EcoGene: a genome sequence database for Escherichia coli K-12.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.60", "authors": "Rudd KE.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.60", "created_at": "2021-09-30T08:23:02.041Z", "updated_at": "2021-09-30T08:23:02.041Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3272", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-14T10:05:45.000Z", "updated-at": "2022-02-08T10:35:50.238Z", "metadata": {"doi": "10.25504/FAIRsharing.b74129", "name": "St. Lawrence Global Observatory Data Catalogue", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@ogsl.ca"}], "homepage": "https://catalogue.ogsl.ca/en/", "citations": [], "identifier": 3272, "description": "The St. Lawrence Global Observatory (SLGO) Data Catalogue integrates multidisciplinary data from multiple partners within a web portal to aid data discovery and re-use. SLGO uses the Data Catalogue to help with data accessibility, dissemination and exchange as well as provision of electronic information regarding the St. Lawrence ecosystem. This project stores data from areas such as public safety, climate change, transportation, resource management and biodiversity conservation.", "abbreviation": "SLGO", "data-curation": {}, "support-links": [{"url": "https://slgo.ca/en/data-management-guide/", "name": "Data Management Information", "type": "Help documentation"}, {"url": "https://slgo.ca/en/core-variables/", "name": "Core Variables", "type": "Help documentation"}, {"url": "https://twitter.com/ogsl_slgo", "name": "@ogsl_slgo", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://slgo.ca/en/ocean-forecasts-application/", "name": "Ocean Forecasts Map Viewer", "type": "data access"}, {"url": "https://slgo.ca/en/navigation-application-2/", "name": "Navigation Map Viewer", "type": "data access"}, {"url": "https://slgo.ca/en/mingan-atlas-of-currents-application/", "name": "Mingan Atlas of Currents", "type": "data access"}, {"url": "https://ogsl.ca/conditions/?lg=en", "name": "Marine Conditions Map Viewer", "type": "data access"}, {"url": "https://slgo.ca/en/freshwater-runoffs-quebec-city-application/", "name": "Freshwater Runoffs", "type": "data access"}, {"url": "https://ogsl.ca/en/environmental-data-archive-application/", "name": "Environmental Data Archive", "type": "data access"}, {"url": "https://ecapelan.ca/?lg=en", "name": "eCapelin Data Submission", "type": "data curation"}, {"url": "https://ogsl.ca/bio/?lg=en", "name": "Biodiversity Map Viewer", "type": "data access"}, {"url": "https://catalogue.ogsl.ca/en/", "name": "Search Data Catalogue", "type": "data access"}, {"url": "https://slgo.ca/en/taxonomic-list/", "name": "Download Taxonomy for SLGO", "type": "data release"}, {"url": "https://soundscape-atlas.uqar.ca/", "name": "Soundscapes Underwater Acoustics Map Viewer", "type": "data access"}, {"url": "https://slgo.ca/octo/?mapextent=-7347086.392356057,6621293.722740165,5", "name": "Octo Map Viewer", "type": "data access"}, {"url": "https://ogsl.ca/viking/?lg=en", "name": "Viking Buoys Detection", "type": "data access"}, {"url": "https://ogsl.ca/en/home-slgo/", "name": "Map Viewer", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010165", "name": "re3data:r3d100010165", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001787", "bsg-d001787"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Acoustics", "Transportation Planning", "Biodiversity", "Earth Science", "Remote Sensing", "Water Management", "Oceanography"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": ["Climate change", "Conservation", "Forecasting", "ice"], "countries": ["Canada"], "name": "FAIRsharing record for: St. Lawrence Global Observatory Data Catalogue", "abbreviation": "SLGO", "url": "https://fairsharing.org/10.25504/FAIRsharing.b74129", "doi": "10.25504/FAIRsharing.b74129", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The St. Lawrence Global Observatory (SLGO) Data Catalogue integrates multidisciplinary data from multiple partners within a web portal to aid data discovery and re-use. SLGO uses the Data Catalogue to help with data accessibility, dissemination and exchange as well as provision of electronic information regarding the St. Lawrence ecosystem. This project stores data from areas such as public safety, climate change, transportation, resource management and biodiversity conservation.", "publications": [], "licence-links": [{"licence-name": "SLGO Conditions of Use", "licence-id": 748, "link-id": 1515, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2890", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-23T14:48:45.000Z", "updated-at": "2022-02-08T10:31:05.294Z", "metadata": {"doi": "10.25504/FAIRsharing.f6f1cd", "name": "European and Mediterranean Plant Protection Organization Global Database", "status": "ready", "contacts": [{"contact-name": "EPPO Secretariat", "contact-email": "hq@eppo.int"}], "homepage": "https://gd.eppo.int/", "identifier": 2890, "description": "The European and Mediterranean Plant Protection Organization Global Database (EPPO) GD provides all pest-specific information that has been produced or collected by EPPO. Data includes plant and pest species (such as scientific names, synonyms, common names in different languages, taxonomic position, EPPO codes and geographic distribution), EPPO datasheets and PRA reports, and images.", "abbreviation": "EPPO GD", "access-points": [{"url": "https://data.eppo.int/", "name": "EPPO Data Services", "type": "REST"}], "support-links": [{"url": "https://gd.eppo.int/contact", "name": "EPPO GD Contact Form", "type": "Contact form"}, {"url": "https://gd.eppo.int/media/files/general_user-guide_2019_09.pdf", "name": "User Guide", "type": "Help documentation"}, {"url": "https://twitter.com/EPPOnews", "name": "@EPPOnews", "type": "Twitter"}], "year-creation": 1990, "data-processes": [{"url": "https://gd.eppo.int/search", "name": "Advanced Search", "type": "data access"}, {"url": "https://gd.eppo.int/country/", "name": "Browse by Country", "type": "data access"}, {"url": "https://gd.eppo.int/rppo/", "name": "Browse by Organization", "type": "data access"}, {"url": "https://gd.eppo.int/datasheets/", "name": "Browse by Data Sheets", "type": "data access"}, {"url": "https://gd.eppo.int/taxonomy", "name": "Taxonomy Browser", "type": "data access"}, {"url": "https://gd.eppo.int/PPPUse/", "name": "Browse by Plant Protection Products", "type": "data access"}], "associated-tools": [{"url": "https://gd.eppo.int/gddesktop/", "name": "EPPO GD Desktop 2019.06.28"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012225", "name": "re3data:r3d100012225", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001391", "bsg-d001391"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Forest Management", "Agriculture"], "domains": ["Geographical location", "Pathogen"], "taxonomies": ["All"], "user-defined-tags": ["Invasive Species"], "countries": ["European Union"], "name": "FAIRsharing record for: European and Mediterranean Plant Protection Organization Global Database", "abbreviation": "EPPO GD", "url": "https://fairsharing.org/10.25504/FAIRsharing.f6f1cd", "doi": "10.25504/FAIRsharing.f6f1cd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European and Mediterranean Plant Protection Organization Global Database (EPPO) GD provides all pest-specific information that has been produced or collected by EPPO. Data includes plant and pest species (such as scientific names, synonyms, common names in different languages, taxonomic position, EPPO codes and geographic distribution), EPPO datasheets and PRA reports, and images.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3120", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-14T08:25:09.000Z", "updated-at": "2021-12-06T10:47:35.244Z", "metadata": {"name": "World Data Centre for Meteorology, Obninsk", "status": "ready", "contacts": [{"contact-name": "Webmaster", "contact-email": "webmaster@meteo.ru"}], "homepage": "http://meteo.ru/mcd/ewdcmet.html", "identifier": 3120, "description": "The task of the Centre is to collect and disseminate meteorological data and products worldwide and especially in Russia. The information basis of the Centre is updated on regular basis from various sources including the bilateral data exchange with the World Data Centre for Meteorology in Ashville, North Carolina, USA", "abbreviation": "WDC", "year-creation": 2008, "data-processes": [{"url": "http://meteo.ru/mcd/emetdata.html", "name": "View & download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010144", "name": "re3data:r3d100010144", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001630", "bsg-d001630"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Air", "precipitation", "Temperature"], "countries": ["Russia"], "name": "FAIRsharing record for: World Data Centre for Meteorology, Obninsk", "abbreviation": "WDC", "url": "https://fairsharing.org/fairsharing_records/3120", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The task of the Centre is to collect and disseminate meteorological data and products worldwide and especially in Russia. The information basis of the Centre is updated on regular basis from various sources including the bilateral data exchange with the World Data Centre for Meteorology in Ashville, North Carolina, USA", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2452", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-28T20:35:03.000Z", "updated-at": "2021-12-06T10:49:14.097Z", "metadata": {"doi": "10.25504/FAIRsharing.t2e1ss", "name": "Harvard Dataverse", "status": "ready", "contacts": [{"contact-name": "General Support", "contact-email": "support@dataverse.org"}], "homepage": "https://dataverse.harvard.edu", "identifier": 2452, "description": "Harvard Dataverse is a research data repository running on the open source web application Dataverse. Harvard Dataverse is fully open to the public, and allows upload and browsing of data from all fields of research, and is free for all researchers worldwide (up to 1 TB). Links to related grants, authors, software and research products are provided. Harvard Dataverse supports managed access (with an access request workflow) as well as embargoing generally and during peer review. Dataverse allows users to share, preserve, cite, explore, and analyse research data. It facilitates making data available to others, and allows you to replicate others' work more easily. Researchers, data authors, publishers, data distributors, and affiliated institutions all receive academic credit and web visibility. The Harvard Database receives support from Harvard University, public and private grants, and an emergent consortium model.", "abbreviation": "Harvard Dataverse", "access-points": [{"url": "https://guides.dataverse.org/en/5.3/api/intro.html", "name": "API Documentation", "type": "REST"}, {"url": "https://guides.dataverse.org/en/5.3/admin/harvestserver.html", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://dataverse.org/blog", "name": "Blog", "type": "Blog/News"}, {"url": "http://guides.dataverse.org/en/latest/user/", "name": "Dataverse User Guide", "type": "Help documentation"}, {"url": "https://dataverse.org/metrics", "name": "Dataverse Metrics", "type": "Help documentation"}, {"url": "https://twitter.com/dataverseorg", "name": "Dataverse Twitter Account", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "https://dataverse.harvard.edu/dataverse/harvard/search", "name": "Advanced Search", "type": "data access"}, {"name": "Size Limit: 2.5GB/dataset", "type": "data curation"}, {"name": "Per-researcher storage: 1TB", "type": "data curation"}, {"name": "Versioning supported, incl W3C provenance", "type": "data versioning"}, {"name": "No support for individual-level human data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010051", "name": "re3data:r3d100010051", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001997", "name": "SciCrunch:RRID:SCR_001997", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000934", "bsg-d000934"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Experimental measurement", "Protocol"], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["United States"], "name": "FAIRsharing record for: Harvard Dataverse", "abbreviation": "Harvard Dataverse", "url": "https://fairsharing.org/10.25504/FAIRsharing.t2e1ss", "doi": "10.25504/FAIRsharing.t2e1ss", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Harvard Dataverse is a research data repository running on the open source web application Dataverse. Harvard Dataverse is fully open to the public, and allows upload and browsing of data from all fields of research, and is free for all researchers worldwide (up to 1 TB). Links to related grants, authors, software and research products are provided. Harvard Dataverse supports managed access (with an access request workflow) as well as embargoing generally and during peer review. Dataverse allows users to share, preserve, cite, explore, and analyse research data. It facilitates making data available to others, and allows you to replicate others' work more easily. Researchers, data authors, publishers, data distributors, and affiliated institutions all receive academic credit and web visibility. The Harvard Database receives support from Harvard University, public and private grants, and an emergent consortium model.", "publications": [], "licence-links": [{"licence-name": "Harvard Dataverse Privacy Policy", "licence-id": 381, "link-id": 446, "relation": "undefined"}, {"licence-name": "Harvard Dataverse General Terms of Use", "licence-id": 379, "link-id": 453, "relation": "undefined"}, {"licence-name": "Harvard Dataverse Preservation Policy", "licence-id": 380, "link-id": 455, "relation": "undefined"}, {"licence-name": "Harvard Dataverse API Terms of Use", "licence-id": 378, "link-id": 459, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 464, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 467, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2272", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-08T14:02:21.000Z", "updated-at": "2021-11-24T13:14:50.592Z", "metadata": {"doi": "10.25504/FAIRsharing.w1y0c7", "name": "European Union Drug Regulating Authorities Clinical Trials", "status": "ready", "homepage": "https://eudract.ema.europa.eu/results-web/index.xhtml", "identifier": 2272, "description": "EudraCT (European Union Drug Regulating Authorities Clinical Trials) is the European Clinical Trials Database of all interventional clinical trials of medicinal products commencing in the European Union from 1 May 2004 onwards. The EudraCT database has been established in accordance with Directive 2001/20/EC.", "abbreviation": "EudraCT", "support-links": [{"url": "https://servicedesk.ema.europa.eu/", "type": "Contact form"}, {"url": "https://eudract.ema.europa.eu/help/Default.htm#cshid=/eudract/faq.htm", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://eudract.ema.europa.eu/help/Default.htm#eudract/cta_welcome_page_ov.htm", "type": "Help documentation"}, {"url": "https://eudract.ema.europa.eu/docs/userGuides/EudraCT%20V9%20Results%20Validation%20Rules%20Supplementary%20Specification.pdf", "type": "Help documentation"}, {"url": "https://eudract.ema.europa.eu/protocol.html", "type": "Training documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://eudract.ema.europa.eu/docs/technical/schemas/EudraCT_Results_XML_Schemas.zip", "name": "Download Specification", "type": "data release"}, {"url": "https://eudract.ema.europa.eu/docs/technical/schemas/EudraCT_v8_XML_Schemas.zip", "name": "Download Specification", "type": "data release"}]}, "legacy-ids": ["biodbcore-000746", "bsg-d000746"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: European Union Drug Regulating Authorities Clinical Trials", "abbreviation": "EudraCT", "url": "https://fairsharing.org/10.25504/FAIRsharing.w1y0c7", "doi": "10.25504/FAIRsharing.w1y0c7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EudraCT (European Union Drug Regulating Authorities Clinical Trials) is the European Clinical Trials Database of all interventional clinical trials of medicinal products commencing in the European Union from 1 May 2004 onwards. The EudraCT database has been established in accordance with Directive 2001/20/EC.", "publications": [{"id": 1027, "pubmed_id": 15830257, "title": "[The community clinical trial system EudraCT at the EMEA for the monitoring of clinical trials in Europe].", "year": 2005, "url": "http://doi.org/10.1007/s00103-005-1025-6", "authors": "Krafft H", "journal": "Bundesgesundheitsblatt Gesundheitsforschung Gesundheitsschutz", "doi": "10.1007/s00103-005-1025-6", "created_at": "2021-09-30T08:24:13.705Z", "updated_at": "2021-09-30T08:24:13.705Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3099", "type": "fairsharing-records", "attributes": {"created-at": "2020-08-10T12:34:22.000Z", "updated-at": "2021-12-06T10:47:57.357Z", "metadata": {"doi": "10.25504/FAIRsharing.4TCb1c", "name": "International Council for the Exploration of the Sea Data Portal", "status": "ready", "contacts": [{"contact-name": "Adriana Villamor", "contact-email": "adriana.villamor@ices.dk", "contact-orcid": "0000-0003-0224-0844"}], "homepage": "https://ecosystemdata.ices.dk/", "identifier": 3099, "description": "The International Council for the Exploration of the Sea (ICES) coordinates and promotes marine research on oceanography, the marine environment, the marine ecosystem, and on living marine resources in the North Atlantic. Data are available on the ICES Data Portal.", "abbreviation": "ICES Data Portal", "access-points": [{"url": "https://ecosystemdata.ices.dk/webservices/index.aspx", "name": "ICES Data Portal Web Services", "type": "Other"}], "support-links": [{"url": "info@ices.dk", "name": "General contact", "type": "Support email"}, {"url": "https://vocab.ices.dk/", "name": "ICES vocabularies", "type": "Help documentation"}, {"url": "https://twitter.com/ICES_ASC", "type": "Twitter"}], "data-processes": [{"url": "https://ecosystemdata.ices.dk/", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011288", "name": "re3data:r3d100011288", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001607", "bsg-d001607"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology", "Biodiversity", "Earth Science", "Life Science", "Oceanography", "Ecosystem Science"], "domains": ["Environmental contaminant", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": ["Plankton"], "countries": ["Denmark"], "name": "FAIRsharing record for: International Council for the Exploration of the Sea Data Portal", "abbreviation": "ICES Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.4TCb1c", "doi": "10.25504/FAIRsharing.4TCb1c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Council for the Exploration of the Sea (ICES) coordinates and promotes marine research on oceanography, the marine environment, the marine ecosystem, and on living marine resources in the North Atlantic. Data are available on the ICES Data Portal.", "publications": [], "licence-links": [{"licence-name": "ICES Disclaimer", "licence-id": 410, "link-id": 966, "relation": "undefined"}, {"licence-name": "ICES Privacy Statements", "licence-id": 411, "link-id": 967, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1857", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:58.334Z", "metadata": {"doi": "10.25504/FAIRsharing.h87prx", "name": "IPD-KIR - Killer-cell Immunoglobulin-like Receptors", "status": "ready", "contacts": [{"contact-name": "Steven G. E. Marsh", "contact-email": "steven.marsh@ucl.ac.uk", "contact-orcid": "0000-0003-2855-4120"}], "homepage": "http://www.ebi.ac.uk/ipd/kir/", "identifier": 1857, "description": "The database provides a centralised repository for human KIR sequences. Killer-cell Immunoglobulin-like Receptors (KIR) have been shown to be highly polymorphic at the allelic and haplotypic level. KIRs are members of the immunoglobulin superfamily (IgSF) formerly called Killer-cell Inhibitory Receptors. They are composed of two or three Ig-domains, a transmembrane region and cytoplasmic tail which can in turn be short (activatory) or long (inhibitory). The Leukocyte Receptor Complex (LRC) which encodes KIR genes has been shown to be polymorphic, polygenic and complex like the MHC.", "abbreviation": "IPD-KIR", "support-links": [{"url": "https://www.ebi.ac.uk/support/ipd.php", "name": "IPD Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/ipd/kir/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/ANHIG/IPDKIR", "name": "GitHub Repository", "type": "Github"}, {"url": "https://www.ebi.ac.uk/ipd/kir/stats.html", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/nomenclature.html", "name": "KIR Nomenclature", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/alleles.html", "name": "KIR Allele Nomenclature", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/genotypes.html", "name": "KIR Genotypes", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/genes.html", "name": "KIR Genes", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/haplotypes.html", "name": "KIR Haplotypes", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/kir/download.html", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/ipd/kir/submit_stage_1.html", "name": "Submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/ipd/kir/sequenced_haplotypes.html", "name": "Browse Fully Sequenced Haplotypes", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/kir/probe.html", "name": "Search Probes and Primers", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/kir/cell_query.html", "name": "Cell Queries", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/ipd/kir/align.html", "name": "KIR Alignment Tool"}, {"url": "https://www.ebi.ac.uk/ipd/kir/blast.html", "name": "BLAST"}, {"url": "https://www.ebi.ac.uk/ipd/kir/ligand.html", "name": "KIR Ligand Calculator"}, {"url": "https://www.ebi.ac.uk/ipd/kir/donor_b_content.html", "name": "Donor KIR B-content group calculator"}, {"url": "https://www.ebi.ac.uk/ipd/kir/ethnicity.html", "name": "IPD-KIR Allele Ethnicity Tool"}]}, "legacy-ids": ["biodbcore-000318", "bsg-d000318"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Immunology"], "domains": ["Nucleic acid sequence", "Deoxyribonucleic acid", "Killer-cell Immunoglobulin-like Receptors", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: IPD-KIR - Killer-cell Immunoglobulin-like Receptors", "abbreviation": "IPD-KIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.h87prx", "doi": "10.25504/FAIRsharing.h87prx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database provides a centralised repository for human KIR sequences. Killer-cell Immunoglobulin-like Receptors (KIR) have been shown to be highly polymorphic at the allelic and haplotypic level. KIRs are members of the immunoglobulin superfamily (IgSF) formerly called Killer-cell Inhibitory Receptors. They are composed of two or three Ig-domains, a transmembrane region and cytoplasmic tail which can in turn be short (activatory) or long (inhibitory). The Leukocyte Receptor Complex (LRC) which encodes KIR genes has been shown to be polymorphic, polygenic and complex like the MHC.", "publications": [{"id": 368, "pubmed_id": 23180793, "title": "IPD--the Immuno Polymorphism Database.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1140", "authors": "Robinson J., Halliwell JA., McWilliam H., Lopez R., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1140", "created_at": "2021-09-30T08:22:59.558Z", "updated_at": "2021-09-30T08:22:59.558Z"}, {"id": 1487, "pubmed_id": 19875415, "title": "IPD--the Immuno Polymorphism Database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp879", "authors": "Robinson J,Mistry K,McWilliam H,Lopez R,Marsh SG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp879", "created_at": "2021-09-30T08:25:06.466Z", "updated_at": "2021-09-30T11:29:10.426Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 82, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3000", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-21T10:35:53.000Z", "updated-at": "2021-12-06T10:47:29.479Z", "metadata": {"name": "Ningaloo Atlas", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ningaloo@aims.gov.au"}], "homepage": "http://ningaloo-atlas.org.au/", "identifier": 3000, "description": "The Ningaloo Atlas was created in response to the need for more comprehensive and accessible information on environmental and socio-economic data on the greater Ningaloo region. As such, the Ningaloo Atlas is a web portal to not only access and share information, but to celebrate and promote the biodiversity, heritage, value, and way of life of the greater Ningaloo region.", "abbreviation": "Ningaloo Atlas", "support-links": [{"url": "https://www.facebook.com/Ningaloo-Atlas-178551925555208/", "name": "Facebook", "type": "Facebook"}, {"url": "http://ningaloo-atlas.org.au/content/explore/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://ningaloo-atlas.org.au/biblio", "name": "Bibliography", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/ningalooatlas", "name": "Youtube", "type": "Video"}, {"url": "https://www.flickr.com/photos/ningalooatlas/", "name": "Flickr", "type": "Help documentation"}, {"url": "http://ningaloo-atlas.org.au/rss.xml", "type": "Blog/News"}, {"url": "https://twitter.com/ningalooatlas", "type": "Twitter"}], "data-processes": [{"url": "http://ningaloo-atlas.org.au/content/explore/browse", "name": "Browse", "type": "data access"}, {"url": "http://ningaloo-atlas.org.au/content/explore/maps", "name": "Display data on maps", "type": "data access"}, {"url": "http://ningaloo-atlas.org.au/content/explore/weather", "name": "Explore weather and sea conditions", "type": "data access"}, {"url": "http://ningaloo-atlas.org.au/content/contribute", "name": "Contribute", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011552", "name": "re3data:r3d100011552", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001507", "bsg-d001507"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Environmental Science", "Zoology", "Marine Biology", "Ecology", "Biodiversity", "Earth Science", "Oceanography", "Ecosystem Science"], "domains": [], "taxonomies": ["Anthozoa", "Drupella cornus", "Rhincodon typus"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Ningaloo Atlas", "abbreviation": "Ningaloo Atlas", "url": "https://fairsharing.org/fairsharing_records/3000", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ningaloo Atlas was created in response to the need for more comprehensive and accessible information on environmental and socio-economic data on the greater Ningaloo region. As such, the Ningaloo Atlas is a web portal to not only access and share information, but to celebrate and promote the biodiversity, heritage, value, and way of life of the greater Ningaloo region.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2614", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-10T13:44:50.000Z", "updated-at": "2021-11-24T13:14:11.160Z", "metadata": {"name": "Brassica Information Portal", "status": "ready", "contacts": [{"contact-email": "bip@earlham.ac.uk"}], "homepage": "https://bip.earlham.ac.uk/", "identifier": 2614, "description": "The Brassica Information Portal is a web repository for population and trait scoring information related to the Brassica breeding community. It provides information about quantitative trait loci and links curated Brassica phenotype experimental data with genotype information stored in external data sources. Advanced data submission capabilities and APIs enable users to store and publish their own study results in BIP. The repository can be easily browsed thanks to a set of user-friendly query interfaces.", "abbreviation": "BIP", "access-points": [{"url": "https://bip.earlham.ac.uk/api_documentation", "name": "BIP RESTful API", "type": "REST"}], "support-links": [{"url": "https://bip.earlham.ac.uk/about_bip", "name": "About BIP", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://bip.earlham.ac.uk/browse_data", "name": "Browse Data", "type": "data access"}, {"url": "https://bip.earlham.ac.uk/submissions/new", "name": "Submit New Data", "type": "data curation"}], "associated-tools": [{"url": "https://bip.earlham.ac.uk/analyses/new", "name": "GWAS using GWASSER"}]}, "legacy-ids": ["biodbcore-001098", "bsg-d001098"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Plant Breeding", "Life Science", "Population Genetics"], "domains": ["Phenotype", "Quantitative trait loci", "Genotype"], "taxonomies": ["Brassica"], "user-defined-tags": ["Plant Phenotypes and Traits"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Brassica Information Portal", "abbreviation": "BIP", "url": "https://fairsharing.org/fairsharing_records/2614", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Brassica Information Portal is a web repository for population and trait scoring information related to the Brassica breeding community. It provides information about quantitative trait loci and links curated Brassica phenotype experimental data with genotype information stored in external data sources. Advanced data submission capabilities and APIs enable users to store and publish their own study results in BIP. The repository can be easily browsed thanks to a set of user-friendly query interfaces.", "publications": [{"id": 467, "pubmed_id": 28529710, "title": "Introducing the Brassica Information Portal: Towards integrating genotypic and phenotypic Brassica crop data.", "year": 2017, "url": "http://doi.org/10.12688/f1000research.11301.2", "authors": "Eckes AH,Gubala T,Nowakowski P,Szymczyszyn T,Wells R,Irwin JA,Horro C,Hancock JM,King G,Dyer SC,Jurkowski W", "journal": "F1000Res", "doi": "10.12688/f1000research.11301.2", "created_at": "2021-09-30T08:23:10.762Z", "updated_at": "2021-09-30T08:23:10.762Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1623, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2800", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-18T22:38:39.000Z", "updated-at": "2021-12-06T10:47:24.156Z", "metadata": {"name": "Aster Volcanic Archive", "status": "ready", "contacts": [{"contact-name": "Justin P Linick", "contact-email": "Justin.P.Linick@jpl.nasa.gov"}], "homepage": "https://ava.jpl.nasa.gov", "identifier": 2800, "description": "AVA is a large depository of volcanic data. For 1,549 recently active volcanos listed by the Smithsonian Global Volcanism Program, the AVA has collected the entirety of high-resolution multispectral ASTER data and made it available to the public. Also included are digital elevation maps, NOAA ash advisories, alteration zone imagery, and thermal anomaly reports. LANDSAT7 data are also being processed.", "abbreviation": "AVA", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011793", "name": "re3data:r3d100011793", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001299", "bsg-d001299"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment"], "countries": ["Costa Rica", "United States", "Singapore", "Italy", "Mexico"], "name": "FAIRsharing record for: Aster Volcanic Archive", "abbreviation": "AVA", "url": "https://fairsharing.org/fairsharing_records/2800", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AVA is a large depository of volcanic data. For 1,549 recently active volcanos listed by the Smithsonian Global Volcanism Program, the AVA has collected the entirety of high-resolution multispectral ASTER data and made it available to the public. Also included are digital elevation maps, NOAA ash advisories, alteration zone imagery, and thermal anomaly reports. LANDSAT7 data are also being processed.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2603", "type": "fairsharing-records", "attributes": {"created-at": "2018-04-17T04:47:17.000Z", "updated-at": "2022-01-10T11:53:48.673Z", "metadata": {"doi": "10.25504/FAIRsharing.ZTrlTh", "name": "National Institute of Polar Research Repository", "status": "uncertain", "contacts": [{"contact-name": "NIPR library", "contact-email": "library402@nipr.ac.jp"}], "homepage": "https://nipr.repo.nii.ac.jp/", "citations": [], "identifier": 2603, "description": "This site provides access to the research output of the institution. The site interface is available in Japanese or English.", "abbreviation": "NIPR Repository", "access-points": [{"url": "http://irdb.nii.ac.jp/analysis/index.php", "name": "The NII Institutional Repositories DataBase (IRDB) Contents Analysis System provides IRs (institutional repositories) in Japan.", "type": "Other"}], "support-links": [{"url": "https://community.repo.nii.ac.jp/", "name": "JAIRO Cloud community site", "type": "Forum"}, {"url": "https://nipr.repo.nii.ac.jp/?page_id=30", "name": "NIPR repository overview", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://www.nii.ac.jp/irp/archive/system/junii2.html", "name": "Metadata Format junii2 (ver. 3.1)", "type": "data release"}, {"url": "http://id.nii.ac.jp/1458/00000024/", "name": "JPCOAR schema ver1.0", "type": "data release"}, {"url": "http://www.nipr.ac.jp/english/outline/activity/oap.html", "name": "National Institute of Polar Research Open Access Policy", "type": "data access"}], "associated-tools": [{"url": "http://weko.at.nii.ac.jp/?page_id=47", "name": "SWORD Client for WEKO 2.4.1"}], "deprecation-date": null, "deprecation-reason": null}, "legacy-ids": ["biodbcore-001086", "bsg-d001086"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Earth Science", "Atmospheric Science", "Physics", "Oceanography", "Biology"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: National Institute of Polar Research Repository", "abbreviation": "NIPR Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZTrlTh", "doi": "10.25504/FAIRsharing.ZTrlTh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This site provides access to the research output of the institution. The site interface is available in Japanese or English.", "publications": [], "licence-links": [{"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 804, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2813", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-31T22:43:08.000Z", "updated-at": "2021-12-06T10:47:25.036Z", "metadata": {"name": "Copernicus Space Component Data Access", "status": "ready", "contacts": [{"contact-name": "General Support", "contact-email": "EOSupport@copernicus.esa.int"}], "homepage": "https://spacedata.copernicus.eu", "identifier": 2813, "description": "The CSCDA portal is the access point to information collected on Land, Marine, environmental as well as emergency and security data by the European Union using space component data.", "abbreviation": "CSCDA", "support-links": [{"url": "https://spacedata.copernicus.eu/web/cscda/blogs/-/blogs/", "name": "Latest news", "type": "Blog/News"}, {"url": "https://spacedata.copernicus.eu/web/cscda/faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://spacedata.copernicus.eu/web/cscda/copernicus-users/users-feedback", "name": "User feedback", "type": "Help documentation"}, {"url": "https://spacedata.copernicus.eu/web/cscda/explore-more/document-library", "name": "Document Library", "type": "Help documentation"}, {"url": "https://twitter.com/CopernicusData", "name": "Twitter", "type": "Twitter"}], "data-processes": [{"url": "https://spacedata.copernicus.eu/web/cscda/data-access/registration", "name": "Register to access data", "type": "data access"}, {"url": "https://spacedata.copernicus.eu/documents/20126/0/Data+Discovery+and+Download+Guidelines+%288%29.pdf/21fceff1-b0ca-2eea-7e48-8834a196de75?t=1581501037557", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011048", "name": "re3data:r3d100011048", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001312", "bsg-d001312"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Earth Science", "Atmospheric Science", "Oceanography", "Physical Geography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Geological mapping"], "countries": ["European Union"], "name": "FAIRsharing record for: Copernicus Space Component Data Access", "abbreviation": "CSCDA", "url": "https://fairsharing.org/fairsharing_records/2813", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CSCDA portal is the access point to information collected on Land, Marine, environmental as well as emergency and security data by the European Union using space component data.", "publications": [], "licence-links": [{"licence-name": "CSCDA Legal Documents", "licence-id": 203, "link-id": 1454, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2470", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T18:24:32.000Z", "updated-at": "2021-11-24T13:16:30.089Z", "metadata": {"doi": "10.25504/FAIRsharing.9ntzb2", "name": "GBIF Togo IPT - GBIF France", "status": "ready", "contacts": [{"contact-email": "gbif@gbif.fr"}], "homepage": "http://ipt-togo.gbif.fr/", "identifier": 2470, "description": "GBIF France hosts this data repository on behalf of GBIF Togo in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT).", "support-links": [{"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://ipt-togo.gbif.fr/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request a new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000952", "bsg-d000952"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Togo", "France"], "name": "FAIRsharing record for: GBIF Togo IPT - GBIF France", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.9ntzb2", "doi": "10.25504/FAIRsharing.9ntzb2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF France hosts this data repository on behalf of GBIF Togo in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 311, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 313, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 314, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 315, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3119", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-01T16:19:20.000Z", "updated-at": "2021-11-24T13:17:04.727Z", "metadata": {"doi": "10.25504/FAIRsharing.bsAeqi", "name": "COVID-HEP Registry", "status": "ready", "contacts": [{"contact-name": "Thomas Marjot", "contact-email": "Thomas.marjot@ndm.ox.ac.uk", "contact-orcid": "0000-0002-6542-6323"}], "homepage": "https://www.covid-hep.net/", "identifier": 3119, "description": "COVID-HEP Registry is a universal and collaborative registry project to collect data on patients with liver disease at any stage or liver transplants who develop laboratory-confirmed COVID-19. We are pleased to encourage reports from worldwide. However, if reporting from the Americas or China/Japan/Korea, please see our collaborators at: SECURE-cirrhosis.", "support-links": [{"url": "info@covid-hep.net", "name": "General contact", "type": "Support email"}, {"url": "https://www.covid-hep.net/faqs.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "covid-hep-subscribe@maillist.ox.ac.uk", "type": "Mailing list"}, {"url": "https://redcap.medsci.ox.ac.uk/surveys/?s=D7R4F8ECXH", "name": "Report a case (REDcap)", "type": "Help documentation"}, {"url": "https://twitter.com/CovidHep", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://www.covid-hep.net/updates.html", "name": "Browse last updates", "type": "data access"}]}, "legacy-ids": ["biodbcore-001629", "bsg-d001629"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Gastroenterology", "Epidemiology"], "domains": ["Liver disease", "Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["Cirrhosis", "COVID-19", "Dashboard", "hepatology", "liver transplantation", "Observations", "registry"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: COVID-HEP Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bsAeqi", "doi": "10.25504/FAIRsharing.bsAeqi", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COVID-HEP Registry is a universal and collaborative registry project to collect data on patients with liver disease at any stage or liver transplants who develop laboratory-confirmed COVID-19. We are pleased to encourage reports from worldwide. However, if reporting from the Americas or China/Japan/Korea, please see our collaborators at: SECURE-cirrhosis.", "publications": [{"id": 3104, "pubmed_id": 33035628, "title": "Outcomes following SARS-CoV-2 infection in patients with chronic liver disease: an international registry study.", "year": 2020, "url": "http://doi.org/S0168-8278(20)33667-9", "authors": "Marjot et al.", "journal": "J Hepatol", "doi": "S0168-8278(20)33667-9", "created_at": "2021-09-30T08:28:22.380Z", "updated_at": "2021-09-30T08:28:22.380Z"}, {"id": 3106, "pubmed_id": 32866433, "title": "Outcomes following SARS-CoV-2 infection in liver transplant recipients: an international registry study.", "year": 2020, "url": "http://doi.org/S2468-1253(20)30271-5", "authors": "Webb GJ,Marjot T,Cook JA,Aloman C,Armstrong MJ,Brenner EJ,Catana MA,Cargill T,Dhanasekaran R,Garcia-Juarez I,Hagstrom H,Kennedy JM,Marshall A,Masson S,Mercer CJ,Perumalswami PV,Ruiz I,Thaker S,Ufere NN,Barnes E,Barritt AS 4th,Moon AM", "journal": "Lancet Gastroenterol Hepatol", "doi": "S2468-1253(20)30271-5", "created_at": "2021-09-30T08:28:22.633Z", "updated_at": "2021-09-30T08:28:22.633Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2107", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.396Z", "metadata": {"doi": "10.25504/FAIRsharing.se7ewy", "name": "Compendium of Protein Lysine Modifications", "status": "deprecated", "contacts": [{"contact-name": "Yu Xue", "contact-email": "xueyu@mail.hust.edu.cn"}], "homepage": "http://cplm.biocuckoo.org/", "identifier": 2107, "description": "CPLM (Compendium of Protein Lysine Modifications) is an online data resource specifically designed for protein lysine modifications (PLMs).", "abbreviation": "CPLM", "support-links": [{"url": "http://cplm.biocuckoo.org/userguide.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://cplm.biocuckoo.org/download.php", "name": "Download", "type": "data access"}, {"url": "http://cplm.biocuckoo.org/advanced.php", "name": "search", "type": "data access"}, {"url": "http://cplm.biocuckoo.org/browse.php", "name": "browse", "type": "data access"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource has been upgraded by the developers and, while still available, they suggest using the new version of the database (PLMD)instead."}, "legacy-ids": ["biodbcore-000577", "bsg-d000577"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein acetylation", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Compendium of Protein Lysine Modifications", "abbreviation": "CPLM", "url": "https://fairsharing.org/10.25504/FAIRsharing.se7ewy", "doi": "10.25504/FAIRsharing.se7ewy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CPLM (Compendium of Protein Lysine Modifications) is an online data resource specifically designed for protein lysine modifications (PLMs).", "publications": [{"id": 1124, "pubmed_id": 21059677, "title": "CPLA 1.0: an integrated database of protein lysine acetylation.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq939", "authors": "Liu Z., Cao J., Gao X., Zhou Y., Wen L., Yang X., Yao X., Ren J., Xue Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq939", "created_at": "2021-09-30T08:24:24.490Z", "updated_at": "2021-09-30T08:24:24.490Z"}, {"id": 1169, "pubmed_id": 24214993, "title": "CPLM: a database of protein lysine modifications.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1093", "authors": "Liu Z,Wang Y,Gao T,Pan Z,Cheng H,Yang Q,Cheng Z,Guo A,Ren J,Xue Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1093", "created_at": "2021-09-30T08:24:29.905Z", "updated_at": "2021-09-30T11:29:01.801Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3264", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-13T11:45:07.000Z", "updated-at": "2021-12-06T10:47:41.453Z", "metadata": {"name": "Human Sciences Research Council Research Data Service", "status": "ready", "contacts": [{"contact-name": "Lucia Lotter", "contact-email": "LLotter@HSRC.AC.ZA"}], "homepage": "http://datacuration.hsrc.ac.za/", "identifier": 3264, "description": "The HSRC Research Data Service provides a digital repository facility for the HSRC\u2019s research data in support of evidence-based human and social development in South Africa and the broader region. The mission is to make research data accessible and to ensure its future survival and usability, with the aim to develop a quantitative and qualitative social science research data collection of high re-use value that speaks to the priorities of a developing country, such as the South African Social Attitudes Survey (SASAS) and the South African National HIV Prevalence, HIV Incidence, Behaviour and Communication Survey (SABSSM) amongst others. Access to data is dependent on ethical requirements for protecting research participants, as well as on legal agreements with the owners, funders, or in the case of data owned by the HSRC, the requirements of the depositors of the data. All data sets are provided free of charge. Metadata records that describe data sets, as well as related documentation including Read me files, user guides, code books, questionnaires, and other related information are provided such that informed decisions can be made about whether the data will be useful for an intended purpose.", "abbreviation": "HSRC DRS", "support-links": [{"url": "http://datacuration.hsrc.ac.za/contact/datahelp", "name": "Contact form", "type": "Contact form"}, {"url": "http://datacuration.hsrc.ac.za/content/view/how-we-curate-data", "name": "How we curate data", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "http://datacuration.hsrc.ac.za/search/keywords", "name": "Keyword search", "type": "data access"}, {"url": "http://datacuration.hsrc.ac.za/search/advanced", "name": "Advanced search", "type": "data access"}, {"url": "http://datacuration.hsrc.ac.za/search/alpha", "name": "Browse Data", "type": "data access"}, {"url": "http://datacuration.hsrc.ac.za/content/view/access-to-data", "name": "Access to data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011391", "name": "re3data:r3d100011391", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001779", "bsg-d001779"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Economic Policy", "Social Science", "Humanities and Social Science", "Empirical Social Research", "Social and Behavioural Science", "Political Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Researcher data"], "countries": ["South Africa"], "name": "FAIRsharing record for: Human Sciences Research Council Research Data Service", "abbreviation": "HSRC DRS", "url": "https://fairsharing.org/fairsharing_records/3264", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The HSRC Research Data Service provides a digital repository facility for the HSRC\u2019s research data in support of evidence-based human and social development in South Africa and the broader region. The mission is to make research data accessible and to ensure its future survival and usability, with the aim to develop a quantitative and qualitative social science research data collection of high re-use value that speaks to the priorities of a developing country, such as the South African Social Attitudes Survey (SASAS) and the South African National HIV Prevalence, HIV Incidence, Behaviour and Communication Survey (SABSSM) amongst others. Access to data is dependent on ethical requirements for protecting research participants, as well as on legal agreements with the owners, funders, or in the case of data owned by the HSRC, the requirements of the depositors of the data. All data sets are provided free of charge. Metadata records that describe data sets, as well as related documentation including Read me files, user guides, code books, questionnaires, and other related information are provided such that informed decisions can be made about whether the data will be useful for an intended purpose.", "publications": [], "licence-links": [{"licence-name": "HSRC DRS Terms and conditions", "licence-id": 405, "link-id": 1778, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2181", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:37.861Z", "metadata": {"doi": "10.25504/FAIRsharing.g4z879", "name": "Open Science Framework", "status": "ready", "contacts": [{"contact-name": "Nici Pfeiffer", "contact-email": "nici@cos.io", "contact-orcid": "0000-0002-2593-4905"}], "homepage": "http://osf.io", "identifier": 2181, "description": "The Open Science Framework (OSF) is a free and open source project management tool that supports the entire research lifecycle: planning, execution, reporting, archiving, and discovery. Features include automated versioning, logging of all actions, collaboration support, free and unlimited file storage, registrations, and connections to other tools/services (ie. Dropbox, figshare, Amazon S3, Dataverse, GitHub). It is 100% free to researchers, open source, and intended for use in all domain areas. OSF has an open, public API to support broad indexing, as well as a partnership with Internet Archive for long-term preservation with a $250k preservation fund and an IMLS grant for transfer to Internet Archive (currently in progress). The OSF supports embargoing during peer review via a view-only link with the ability to anonymize contributor list. It also provides managed access by allowing access requests and private sharing settings. OSF is a non-profit with direct funder support through grants, government contracts, and community memberships.", "abbreviation": "OSF", "access-points": [{"url": "https://developer.osf.io/", "name": "OSF APIv2", "type": "Other"}], "support-links": [{"url": "support@osf.io", "name": "Technical support", "type": "Support email"}, {"url": "contact@osf.io", "name": "General enquiries", "type": "Support email"}, {"url": "https://groups.google.com/forum/?hl=en#!forum/openscienceframework", "type": "Forum"}, {"url": "https://osf.io/getting-started/", "type": "Help documentation"}, {"url": "https://twitter.com/OSFramework", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"name": "complete versioning of all files stored in system, available permanently", "type": "data versioning"}, {"name": "continuous release", "type": "data release"}, {"url": "https://osf.io/search/", "name": "search", "type": "data access"}, {"name": "Size Limit: 5GB/dataset", "type": "data curation"}, {"name": "Per-researcher storage: unlimited", "type": "data curation"}, {"name": "Versioning supported for OSF storage", "type": "data versioning"}, {"name": "Versioning where available from integrated storage providers", "type": "data versioning"}, {"name": "No support for individual-level human data", "type": "data curation"}], "associated-tools": [{"url": "https://github.com/centerforopenscience", "name": "code repository"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011137", "name": "re3data:r3d100011137", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003238", "name": "SciCrunch:RRID:SCR_003238", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000655", "bsg-d000655"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Cancer", "Study design", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Open Science Framework", "abbreviation": "OSF", "url": "https://fairsharing.org/10.25504/FAIRsharing.g4z879", "doi": "10.25504/FAIRsharing.g4z879", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Science Framework (OSF) is a free and open source project management tool that supports the entire research lifecycle: planning, execution, reporting, archiving, and discovery. Features include automated versioning, logging of all actions, collaboration support, free and unlimited file storage, registrations, and connections to other tools/services (ie. Dropbox, figshare, Amazon S3, Dataverse, GitHub). It is 100% free to researchers, open source, and intended for use in all domain areas. OSF has an open, public API to support broad indexing, as well as a partnership with Internet Archive for long-term preservation with a $250k preservation fund and an IMLS grant for transfer to Internet Archive (currently in progress). The OSF supports embargoing during peer review via a view-only link with the ability to anonymize contributor list. It also provides managed access by allowing access requests and private sharing settings. OSF is a non-profit with direct funder support through grants, government contracts, and community memberships.", "publications": [{"id": 2417, "pubmed_id": 28891143, "title": "Behavioural Addiction Open Definition 2.0-using the Open Science Framework for collaborative and transparent theoretical development.", "year": 2017, "url": "http://doi.org/10.1111/add.13938", "authors": "Billieux J,van Rooij AJ,Heeren A,Schimmenti A,Maurage P,Edman J,Blaszczynski A,Khazaal Y,Kardefelt-Winther D", "journal": "Addiction", "doi": "10.1111/add.13938", "created_at": "2021-09-30T08:26:56.652Z", "updated_at": "2021-09-30T08:26:56.652Z"}, {"id": 2608, "pubmed_id": 30025068, "title": "Building an Open Science Framework to Model Soil Organic Carbon.", "year": 2018, "url": "http://doi.org/10.2134/jeq2017.08.0318", "authors": "Flathers E,Gessler PE", "journal": "J Environ Qual", "doi": "10.2134/jeq2017.08.0318", "created_at": "2021-09-30T08:27:20.129Z", "updated_at": "2021-09-30T08:27:20.129Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1534, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1535, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1537, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1539, "relation": "undefined"}, {"licence-name": "2-Clause BSD License (BSD-2-Clause) (Simplified BSD License) (FreeBSD License)", "licence-id": 2, "link-id": 1549, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 1585, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1586, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1588, "relation": "undefined"}, {"licence-name": "Open Source Initiative Artistic license 2.0", "licence-id": 631, "link-id": 1592, "relation": "undefined"}, {"licence-name": "Eclipse Public Licence Version 1.0", "licence-id": 260, "link-id": 1593, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1594, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 1599, "relation": "undefined"}, {"licence-name": "Mozilla Public Licence Version 2.0 (MPL 2.0)", "licence-id": 524, "link-id": 1602, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2978", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-06T18:22:27.000Z", "updated-at": "2021-12-06T10:48:06.304Z", "metadata": {"doi": "10.25504/FAIRsharing.7fKiFY", "name": "The Digital Archaeological Record", "status": "ready", "contacts": [{"contact-email": "comments@tdar.org"}], "homepage": "https://www.tdar.org/", "identifier": 2978, "description": "The Digital Archaeological Record (tDAR) is an international digital repository for the digital records of archaeological investigations. tDAR\u2019s use, development, and maintenance are governed by the Center for Digital Antiquity, an organization dedicated to ensuring the long-term preservation of irreplaceable archaeological data and to broadening the access to these data.", "abbreviation": "tDAR", "support-links": [{"url": "https://www.tdar.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.tdar.org/about/contact-us/", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.tdar.org/using-tdar/", "name": "Using tDAR", "type": "Help documentation"}, {"url": "https://www.digitalantiquity.org/publications/", "name": "Publications", "type": "Help documentation"}, {"url": "https://www.tdar.org/about/", "name": "About", "type": "Help documentation"}, {"url": "https://www.tdar.org/why-tdar/access/", "name": "Access and Use", "type": "Help documentation"}, {"url": "https://twitter.com/DigArcRec", "name": "@DigArcRec", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://core.tdar.org/browse/explore", "name": "Browse", "type": "data access"}, {"url": "https://core.tdar.org/search", "name": "Search", "type": "data access"}, {"url": "https://core.tdar.org/contribute", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010347", "name": "re3data:r3d100010347", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001484", "bsg-d001484"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Archaeology", "Data Integration", "Data Management", "Anthropology"], "domains": ["Digital curation", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Archaeology"], "countries": ["United States"], "name": "FAIRsharing record for: The Digital Archaeological Record", "abbreviation": "tDAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.7fKiFY", "doi": "10.25504/FAIRsharing.7fKiFY", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Digital Archaeological Record (tDAR) is an international digital repository for the digital records of archaeological investigations. tDAR\u2019s use, development, and maintenance are governed by the Center for Digital Antiquity, an organization dedicated to ensuring the long-term preservation of irreplaceable archaeological data and to broadening the access to these data.", "publications": [], "licence-links": [{"licence-name": "tDAR Policies and Procedures", "licence-id": 775, "link-id": 894, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1608", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.702Z", "metadata": {"doi": "10.25504/FAIRsharing.cjk54e", "name": "Minimotif Miner 3.0", "status": "ready", "contacts": [{"contact-name": "Tian Mi", "contact-email": "tian.mi@engr.uconn.edu"}], "homepage": "http://minimotifminer.org", "identifier": 1608, "description": "A database of short functional motifs involved in posttranslational modifications, binding to other proteins, nucleic acids, or small molecules.", "abbreviation": "MnM", "support-links": [{"url": "http://www.bio-toolkit.com/Minimotif%20Miner/screen_cast/", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Minimotif_Miner", "type": "Wikipedia"}], "year-creation": 2006, "data-processes": [{"name": "ad-hoc release", "type": "data release"}]}, "legacy-ids": ["biodbcore-000064", "bsg-d000064"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["PTM site prediction", "Protein interaction", "Protein modification", "Protein", "Sequence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Minimotif Miner 3.0", "abbreviation": "MnM", "url": "https://fairsharing.org/10.25504/FAIRsharing.cjk54e", "doi": "10.25504/FAIRsharing.cjk54e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database of short functional motifs involved in posttranslational modifications, binding to other proteins, nucleic acids, or small molecules.", "publications": [{"id": 47, "pubmed_id": 20808856, "title": "Partitioning of minimotifs based on function with improved prediction accuracy.", "year": 2010, "url": "http://doi.org/10.1371/journal.pone.0012276", "authors": "Rajasekaran S., Mi T., Merlin JC., Oommen A., Gradie P., Schiller MR.,", "journal": "PLoS ONE", "doi": "10.1371/journal.pone.0012276", "created_at": "2021-09-30T08:22:25.438Z", "updated_at": "2021-09-30T08:22:25.438Z"}, {"id": 88, "pubmed_id": 16489333, "title": "Minimotif Miner: a tool for investigating protein function.", "year": 2006, "url": "http://doi.org/10.1038/nmeth856", "authors": "Balla S., Thapar V., Verma S., Luong T., Faghri T., Huang CH., Rajasekaran S., del Campo JJ., Shinn JH., Mohler WA., Maciejewski MW., Gryk MR., Piccirillo B., Schiller SR., Schiller MR.,", "journal": "Nat. Methods", "doi": "10.1038/nmeth856", "created_at": "2021-09-30T08:22:30.089Z", "updated_at": "2021-09-30T08:22:30.089Z"}, {"id": 89, "pubmed_id": 18429315, "title": "Minimotif miner: a computational tool to investigate protein function, disease, and genetic diversity.", "year": 2008, "url": "http://doi.org/10.1002/0471140864.ps0212s48", "authors": "Schiller MR.,", "journal": "Curr Protoc Protein Sci", "doi": "10.1002/0471140864.ps0212s48", "created_at": "2021-09-30T08:22:30.183Z", "updated_at": "2021-09-30T08:22:30.183Z"}, {"id": 93, "pubmed_id": 18508672, "title": "Viral infection and human disease--insights from minimotifs.", "year": 2008, "url": "http://doi.org/10.2741/3166", "authors": "Kadaveru K., Vyas J., Schiller MR.,", "journal": "Front. Biosci.", "doi": "10.2741/3166", "created_at": "2021-09-30T08:22:30.555Z", "updated_at": "2021-09-30T08:22:30.555Z"}, {"id": 94, "pubmed_id": 19656396, "title": "A proposed syntax for Minimotif Semantics, version 1.", "year": 2009, "url": "http://doi.org/10.1186/1471-2164-10-360", "authors": "Vyas J., Nowling RJ., Maciejewski MW., Rajasekaran S., Gryk MR., Schiller MR.,", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-10-360", "created_at": "2021-09-30T08:22:30.646Z", "updated_at": "2021-09-30T08:22:30.646Z"}, {"id": 110, "pubmed_id": 20938975, "title": "A computational tool for identifying minimotifs in protein-protein interactions and improving the accuracy of minimotif predictions.", "year": 2010, "url": "http://doi.org/10.1002/prot.22868", "authors": "Rajasekaran S., Merlin JC., Kundeti V., Mi T., Oommen A., Vyas J., Alaniz I., Chung K., Chowdhury F., Deverasatty S., Irvey TM., Lacambacal D., Lara D., Panchangam S., Rathnayake V., Watts P., Schiller MR.,", "journal": "Proteins", "doi": "10.1002/prot.22868", "created_at": "2021-09-30T08:22:32.181Z", "updated_at": "2021-09-30T08:22:32.181Z"}, {"id": 748, "pubmed_id": 22146221, "title": "Minimotif Miner 3.0: database expansion and significantly improved reduction of false-positive predictions from consensus sequences", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1189", "authors": "Mi T, Merlin JC, Deverasetty S, Gryk MR, Bill TJ, Brooks AW, Lee LY, Rathnayake V, Ross CA, Sargeant DP, Strong CL, Watts P, Rajasekaran S, Schiller MR.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1189", "created_at": "2021-09-30T08:23:42.370Z", "updated_at": "2021-09-30T08:23:42.370Z"}, {"id": 1389, "pubmed_id": 18978024, "title": "Minimotif miner 2nd release: a database and web system for motif search.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn865", "authors": "Rajasekaran S., Balla S., Gradie P., Gryk MR., Kadaveru K., Kundeti V., Maciejewski MW., Mi T., Rubino N., Vyas J., Schiller MR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn865", "created_at": "2021-09-30T08:24:55.276Z", "updated_at": "2021-09-30T08:24:55.276Z"}, {"id": 1390, "pubmed_id": 16328946, "title": "High-performance exact algorithms for motif search.", "year": 2005, "url": "http://doi.org/10.1007/s10877-005-0677-y", "authors": "Rajasekaran S., Balla S., Huang CH., Thapar V., Gryk M., Maciejewski M., Schiller M.,", "journal": "J Clin Monit Comput", "doi": "10.1007/s10877-005-0677-y", "created_at": "2021-09-30T08:24:55.376Z", "updated_at": "2021-09-30T08:24:55.376Z"}], "licence-links": [{"licence-name": "MIRTAR is free for academic and non-profit use", "licence-id": 516, "link-id": 140, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3182", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T13:36:23.000Z", "updated-at": "2021-11-24T13:17:38.469Z", "metadata": {"name": "Ocean Observatories Initiative Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ooi@whoi.edu"}], "homepage": "https://ooinet.oceanobservatories.org/", "identifier": 3182, "description": "The Ocean Observatories Initiative (OOI) Data Portal contains data from each of OOI\u2019s seven arrays, 80 platforms, and 800 instruments, measuring 200 different ocean parameters. The portal was created to aid research into the changing ocean. Users can access real-time data from the Regional Cabled Array. From the Coastal and Global Arrays, users can access both telemetered (real-time data from deployed instruments) and recovered data, which is downloaded once instruments have been recovered. OOI data can be browsed and customized searches by location, time, and ocean parameters can be created. Plots may be generated and data visualized and downloaded.", "abbreviation": "OOI Data Portal", "access-points": [{"url": "https://oceanobservatories.org/m2m/", "name": "Machine to Machine (M2M) Web Services", "type": "REST"}], "support-links": [{"url": "http://oceanobservatories.org/faqs-knowledgebase/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://oceanobservatories.org/data-portal/", "name": "Tutorials and General Info", "type": "Help documentation"}, {"url": "https://oceanobservatories.org/data/raw-data-archive/", "name": "Downloading Raw Data", "type": "Help documentation"}, {"url": "https://youtu.be/D26iLlg-a5I", "name": "Tour of OOI Data Portal", "type": "Help documentation"}, {"url": "https://ooinet.oceanobservatories.org/help", "name": "Help", "type": "Help documentation"}, {"url": "https://oceanobservatories.org/helpdesk/", "name": "Helpdesk", "type": "Help documentation"}, {"url": "http://oceanobservatories.org/glossary/", "name": "Glossary", "type": "Help documentation"}, {"url": "https://oceanobservatories.org/data-users/", "name": "Partner Data Resources", "type": "Help documentation"}, {"url": "https://oceanobservatories.org/how-to-access-data/", "name": "How to Access Data", "type": "Help documentation"}], "data-processes": [{"url": "https://rawdata.oceanobservatories.org/files/", "name": "Download Raw Data", "type": "data release"}, {"url": "https://ooinet.oceanobservatories.org/assets/management/", "name": "Search Asset Management", "type": "data access"}, {"url": "https://ooinet.oceanobservatories.org/assets/cruises/", "name": "Search Cruises", "type": "data access"}, {"url": "https://ooinet.oceanobservatories.org/assets/deployments/", "name": "Search Deployments", "type": "data access"}, {"url": "https://ooinet.oceanobservatories.org/data_access/", "name": "Data Navigator", "type": "data access"}]}, "legacy-ids": ["biodbcore-001693", "bsg-d001693"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Ocean Observatories Initiative Data Portal", "abbreviation": "OOI Data Portal", "url": "https://fairsharing.org/fairsharing_records/3182", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ocean Observatories Initiative (OOI) Data Portal contains data from each of OOI\u2019s seven arrays, 80 platforms, and 800 instruments, measuring 200 different ocean parameters. The portal was created to aid research into the changing ocean. Users can access real-time data from the Regional Cabled Array. From the Coastal and Global Arrays, users can access both telemetered (real-time data from deployed instruments) and recovered data, which is downloaded once instruments have been recovered. OOI data can be browsed and customized searches by location, time, and ocean parameters can be created. Plots may be generated and data visualized and downloaded.", "publications": [], "licence-links": [{"licence-name": "OOI Data Portal Attribution required", "licence-id": 618, "link-id": 800, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2513", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-18T10:31:21.000Z", "updated-at": "2021-12-06T10:48:44.581Z", "metadata": {"doi": "10.25504/FAIRsharing.jnzrt", "name": "Project Tycho: Data for Health", "status": "ready", "contacts": [{"contact-name": "Wilbert van Panhuis", "contact-email": "tycho@phdl.pitt.edu", "contact-orcid": "0000-0002-7278-9982"}], "homepage": "http://www.tycho.pitt.edu", "identifier": 2513, "description": "In 2013, we released the first version of Project Tycho containing weekly case counts for 50 notifiable conditions reported by health agencies in the United States for 50 states and 1284 cities between 1888 and 2014. Over the past four years, over 3700 users have registered to use Project Tycho data for a total of 40 creative works including peer-reviewed research papers, visualizations, online applications, and newspaper articles. Project Tycho 2.0 has expanded its scope to a global level and improved standardization, following FAIR (Findable, Accessible, Interoperable, and Reusable) Data Principles where possible. Project Tycho 2.0 includes case counts for 28 additional notifiable conditions for the US and includes data for dengue-related conditions for 99 countries between 1955 and 2010, obtained from the World Health Organization and Ministries of Health. Project Tycho 2.0 datasets are represented in a standard format and include standard SNOMED-CT codes for reported conditions, ISO 3166 codes for countries and first administrative level subdivisions, and NCBI TaxonID numbers for pathogens. Metadata for Project Tycho datasets are available on the website in human-readable format, but also in machine-interpretable DATS and DataCite metadata files.", "abbreviation": "Project Tycho", "access-points": [{"url": "https://www.tycho.pitt.edu/dataset/api/", "name": "This API enables querying and downloading of Project Tycho variables, values, and data", "type": "REST"}], "support-links": [{"url": "https://www.tycho.pitt.edu/#contact", "name": "Contact Form", "type": "Contact form"}], "year-creation": 2013, "data-processes": [{"url": "https://www.tycho.pitt.edu/data/", "name": "web interface", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011948", "name": "re3data:r3d100011948", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_010489", "name": "SciCrunch:RRID:SCR_010489", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000995", "bsg-d000995"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Health Science", "Global Health", "Biomedical Science", "Epidemiology"], "domains": ["FAIR"], "taxonomies": ["anaplasma phagocytophylum", "Babesiidae", "Bacillus anthracis", "Borrelia", "Brucella", "Campylobacter", "Chalmydia psittaci", "Chlamydia", "Chlamydia trachomatis", "Clostridium tetani", "Coccidioides", "Corynebacterium diphtheriae", "Cryptosporidium", "Dengue virus", "Ehrlichia chaffeensis", "Entamoeba histolytica", "Enterobacteriaceae", "Enterovirus C", "Escherichia coli", "Eschericia coli O157:H7", "Firmicutes", "Francisella tularensis", "Giardia", "Haemophilus influenzae", "Hepatitis b virus", "Hepatitis C virus", "Homo sapiens", "Human hepatitis A virus", "Human herpesvirus 3", "Human immunodeficiency virus", "Legionella", "Listeria monocytogenes", "Measles virus", "Mumps virus", "Mycobacterium leprae", "Mycobacterium tuberculosis", "Neisseria gonorrhoeae", "Neisseria meningitidis", "Neisseria meningitidis serogroup B", "Plasmodium", "Rickettsiales", "Rickettsia rickettsii", "Rubella virus", "Salmonella", "Salmonella enterica subsp.enterica serovar Typhi", "Shigella", "Streptococcus pneumoniae", "Streptococcus sp. group A", "Treponema pallidum", "Trichinella", "unidentified influenza virus", "Variola virus", "Vibrio cholerae", "West Nile virus", "Yellow fever virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Project Tycho: Data for Health", "abbreviation": "Project Tycho", "url": "https://fairsharing.org/10.25504/FAIRsharing.jnzrt", "doi": "10.25504/FAIRsharing.jnzrt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In 2013, we released the first version of Project Tycho containing weekly case counts for 50 notifiable conditions reported by health agencies in the United States for 50 states and 1284 cities between 1888 and 2014. Over the past four years, over 3700 users have registered to use Project Tycho data for a total of 40 creative works including peer-reviewed research papers, visualizations, online applications, and newspaper articles. Project Tycho 2.0 has expanded its scope to a global level and improved standardization, following FAIR (Findable, Accessible, Interoperable, and Reusable) Data Principles where possible. Project Tycho 2.0 includes case counts for 28 additional notifiable conditions for the US and includes data for dengue-related conditions for 99 countries between 1955 and 2010, obtained from the World Health Organization and Ministries of Health. Project Tycho 2.0 datasets are represented in a standard format and include standard SNOMED-CT codes for reported conditions, ISO 3166 codes for countries and first administrative level subdivisions, and NCBI TaxonID numbers for pathogens. Metadata for Project Tycho datasets are available on the website in human-readable format, but also in machine-interpretable DATS and DataCite metadata files.", "publications": [{"id": 2598, "pubmed_id": 24283231, "title": "Contagious diseases in the United States from 1888 to the present.", "year": 2013, "url": "http://doi.org/10.1056/NEJMms1215400", "authors": "van Panhuis WG,Grefenstette J,Jung SY,Chok NS,Cross A,Eng H,Lee BY,Zadorozhny V,Brown S,Cummings D,Burke DS", "journal": "N Engl J Med", "doi": "10.1056/NEJMms1215400", "created_at": "2021-09-30T08:27:18.839Z", "updated_at": "2021-09-30T08:27:18.839Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 680, "relation": "undefined"}, {"licence-name": "Project Tycho CC BY 4.0 License Document", "licence-id": 684, "link-id": 681, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2897", "type": "fairsharing-records", "attributes": {"created-at": "2020-02-21T14:43:11.000Z", "updated-at": "2021-11-24T13:17:00.481Z", "metadata": {"doi": "10.25504/FAIRsharing.szgagY", "name": "Data.CDC.gov", "status": "ready", "contacts": [{"contact-name": "Data@cdc.gov", "contact-email": "data@cdc.gov"}], "homepage": "https://data.cdc.gov", "identifier": 2897, "description": "Data.CDC.gov hosts data sets published by the Centers for Disease Control and Prevention on public health topics.", "abbreviation": "Data.CDC.gov", "support-links": [{"url": "data@cdc.gov", "name": "Data.CDC.gov support team", "type": "Support email"}], "year-creation": 2013}, "legacy-ids": ["biodbcore-001398", "bsg-d001398"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Public Health"], "domains": [], "taxonomies": ["Bacteria", "environmental samples", "Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Data.CDC.gov", "abbreviation": "Data.CDC.gov", "url": "https://fairsharing.org/10.25504/FAIRsharing.szgagY", "doi": "10.25504/FAIRsharing.szgagY", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data.CDC.gov hosts data sets published by the Centers for Disease Control and Prevention on public health topics.", "publications": [], "licence-links": [{"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1093, "relation": "undefined"}, {"licence-name": "HHS Privacy Policy", "licence-id": 392, "link-id": 1094, "relation": "undefined"}, {"licence-name": "CDC Privacy Policy", "licence-id": 109, "link-id": 1095, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3233", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-09T13:06:27.000Z", "updated-at": "2021-12-06T10:49:34.113Z", "metadata": {"doi": "10.25504/FAIRsharing.ZEbjok", "name": "Rolling Deck to Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@rvdata.us"}], "homepage": "https://www.rvdata.us/", "identifier": 3233, "description": "Rolling Deck to Repository (R2R) catalogs and submits the underway environmental sensor data routinely acquired on research expeditions to long-term public archives. Data from each cruise are submitted directly to R2R by the vessel operator, rather than by the science party. Individual data sets are broken out according to instrument system and disseminated via the appropriate National Data Center after any proprietary holds (as permitted by the funding agency) are cleared. R2R provides remote download links as part of the Catalog. R2R provides essential documentation and standard products for each expedition, as well as tools to document shipboard data acquisition activities while underway. Post-cruise quality assessment of selected underway data types is provided, designed to evaluate the completeness of data and data documentation and to provide measures of instrument operation. Assessment of underway meteorological data is implemented in near-real-time in partnership with the SAMOS program at FSU.", "abbreviation": "R2R", "access-points": [{"url": "http://data.rvdata.us/", "name": "RDF / SPARQL Endpoint", "type": "Other"}, {"url": "https://www.rvdata.us/about/technical-details/services/api", "name": "R2R API Services", "type": "REST"}], "support-links": [{"url": "https://www.rvdata.us/about/data-policies-and-repositories/data-submission", "name": "Submitting Data", "type": "Help documentation"}, {"url": "https://www.rvdata.us/about/technical-details", "name": "Technical Details", "type": "Help documentation"}, {"url": "https://www.rvdata.us/about/technical-details/services", "name": "Web Service Documentation", "type": "Help documentation"}, {"url": "https://www.rvdata.us/data", "name": "Data Types and Products", "type": "Help documentation"}, {"url": "https://twitter.com/R2Rdata", "name": "@R2Rdata", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://www.rvdata.us/search?tab=vessels", "name": "Search Cruises", "type": "data access"}, {"url": "https://www.rvdata.us/qa_info", "name": "Search Quality Assessment Tests", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010735", "name": "re3data:r3d100010735", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001747", "bsg-d001747"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Environmental Science", "Geology", "Geophysics", "Meteorology", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Topography"], "countries": ["United States"], "name": "FAIRsharing record for: Rolling Deck to Repository", "abbreviation": "R2R", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZEbjok", "doi": "10.25504/FAIRsharing.ZEbjok", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Rolling Deck to Repository (R2R) catalogs and submits the underway environmental sensor data routinely acquired on research expeditions to long-term public archives. Data from each cruise are submitted directly to R2R by the vessel operator, rather than by the science party. Individual data sets are broken out according to instrument system and disseminated via the appropriate National Data Center after any proprietary holds (as permitted by the funding agency) are cleared. R2R provides remote download links as part of the Catalog. R2R provides essential documentation and standard products for each expedition, as well as tools to document shipboard data acquisition activities while underway. Post-cruise quality assessment of selected underway data types is provided, designed to evaluate the completeness of data and data documentation and to provide measures of instrument operation. Assessment of underway meteorological data is implemented in near-real-time in partnership with the SAMOS program at FSU.", "publications": [], "licence-links": [{"licence-name": "Creative Commons (CC) Public Domain Mark (PDM)", "licence-id": 198, "link-id": 1442, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3084", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-24T07:43:28.000Z", "updated-at": "2022-02-08T10:41:49.795Z", "metadata": {"doi": "10.25504/FAIRsharing.b2017d", "name": "Bjerknes Climate Data Centre", "status": "ready", "contacts": [{"contact-name": "Benjamin Pfeil", "contact-email": "Benjamin.Pfeil@uib.no", "contact-orcid": "0000-0002-7693-7508"}], "homepage": "https://www.bcdc.no/", "identifier": 3084, "description": "The Bjerknes Climate Data Centre (BCDC) serves the data and syntheses obtained and assembled by researchers within the Bjerknes Centre for Climate Research (BCCR). All data from the different disciplines at BCCR (e.g. geology, oceanography, biology, model community) will be archived, interconnected and made publicly available in this long-term repository, by the BCDC. BCDC will become an Associated Data Unit (ADU) under IODE, International Oceanographic Data and Information Exchange, a worldwide network that operates under the auspices of the Intergovernmental Oceanographic Commission of UNESCO and aims to become a part of ICSU World Data System.", "abbreviation": "BCDC", "support-links": [{"url": "https://www.bcdc.no/news.html", "name": "News", "type": "Blog/News"}, {"url": "https://www.bcdc.no/contact.html", "type": "Contact form"}, {"url": "post@bcdc.uib.no", "name": "General contact", "type": "Support email"}, {"url": "https://github.com/BjerknesClimateDataCentre", "name": "GitHub", "type": "Github"}], "year-creation": 2015, "data-processes": [{"url": "https://www.bcdc.no/search.html", "name": "Search", "type": "data access"}, {"url": "https://www.bcdc.no/search.html?formtype=advanced&offset=0", "name": "Advanced search", "type": "data access"}, {"url": "https://bjerknes.uib.no/en/node/828", "name": "Browse projects", "type": "data access"}, {"url": "https://www.bcdc.no/submit.html", "name": "Submit data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012909", "name": "re3data:r3d100012909", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001592", "bsg-d001592"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Carbon", "Climate change"], "countries": ["Norway"], "name": "FAIRsharing record for: Bjerknes Climate Data Centre", "abbreviation": "BCDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.b2017d", "doi": "10.25504/FAIRsharing.b2017d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bjerknes Climate Data Centre (BCDC) serves the data and syntheses obtained and assembled by researchers within the Bjerknes Centre for Climate Research (BCCR). All data from the different disciplines at BCCR (e.g. geology, oceanography, biology, model community) will be archived, interconnected and made publicly available in this long-term repository, by the BCDC. BCDC will become an Associated Data Unit (ADU) under IODE, International Oceanographic Data and Information Exchange, a worldwide network that operates under the auspices of the Intergovernmental Oceanographic Commission of UNESCO and aims to become a part of ICSU World Data System.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3130", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T09:35:50.000Z", "updated-at": "2021-12-06T10:47:35.754Z", "metadata": {"name": "Upper Ocean Processes Group", "status": "ready", "contacts": [{"contact-name": "Albert Plueddemann", "contact-email": "aplueddemann@whoi.edu", "contact-orcid": "0000-0003-0228-9795"}], "homepage": "http://uop.whoi.edu/index.html", "identifier": 3130, "description": "The main focus of the Upper Ocean Processes Group is the study of physical processes in the upper ocean and at the air-sea interface using moored surface buoys equipped with meteorological and oceanographic sensors.", "abbreviation": "UOP", "support-links": [{"url": "UOP_DM@whoi.edu", "name": "General contact", "type": "Support email"}, {"url": "http://uop.whoi.edu/techdocs/techdoc.html", "name": "Technical Documents", "type": "Help documentation"}], "year-creation": 1995, "data-processes": [{"url": "http://uop.whoi.edu/projects/projects.html", "name": "Browse all projects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010520", "name": "re3data:r3d100010520", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001641", "bsg-d001641"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["humidity", "Pressure", "Salinity", "Sensor data", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: Upper Ocean Processes Group", "abbreviation": "UOP", "url": "https://fairsharing.org/fairsharing_records/3130", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The main focus of the Upper Ocean Processes Group is the study of physical processes in the upper ocean and at the air-sea interface using moored surface buoys equipped with meteorological and oceanographic sensors.", "publications": [], "licence-links": [{"licence-name": "NDSF Data Archive Policy", "licence-id": 567, "link-id": 1462, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3232", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-09T12:19:55.000Z", "updated-at": "2021-12-06T10:47:40.811Z", "metadata": {"name": "European Database of Seismogenic Faults", "status": "ready", "contacts": [{"contact-name": "Roberto Basili", "contact-email": "roberto.basili@ingv.it"}], "homepage": "http://diss.rm.ingv.it/share-edsf/", "identifier": 3232, "description": "The European Database of Seismogenic Faults (EDSF) is a repository of faults that are deemed to be capable of generating earthquakes of magnitude equal to or larger than 5.5, and aims to ensure homogeneous input for use in ground-shaking hazard assessment in the Euro-Mediterranean area.", "abbreviation": "EDSF", "access-points": [{"url": "https://www.seismofaults.eu/index.php/services/edsf13-services", "name": "EDSF Web Services via OGC", "type": "REST"}], "support-links": [{"url": "http://diss.rm.ingv.it/share-edsf/SHARE_WP3.2_Contact.html", "name": "Contact Details", "type": "Contact form"}], "year-creation": 2009, "data-processes": [{"url": "http://diss.rm.ingv.it/share-edsf/SHARE_WP3.2_Database.html", "name": "Map View", "type": "data access"}, {"url": "http://diss.rm.ingv.it/share-edsf/SHARE_WP3.2_Downloads.html", "name": "Downloads", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012622", "name": "re3data:r3d100012622", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001746", "bsg-d001746"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Seismology"], "countries": ["Italy"], "name": "FAIRsharing record for: European Database of Seismogenic Faults", "abbreviation": "EDSF", "url": "https://fairsharing.org/fairsharing_records/3232", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Database of Seismogenic Faults (EDSF) is a repository of faults that are deemed to be capable of generating earthquakes of magnitude equal to or larger than 5.5, and aims to ensure homogeneous input for use in ground-shaking hazard assessment in the Euro-Mediterranean area.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2366, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2473", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-04T09:03:31.000Z", "updated-at": "2021-11-24T13:16:30.360Z", "metadata": {"doi": "10.25504/FAIRsharing.ph9sby", "name": "South African National Biodiversity Institute IPT - GBIF South Africa", "status": "ready", "contacts": [{"contact-name": "Fhatani Ramwashe", "contact-email": "f.ramwashe@sanbi.org.za"}], "homepage": "http://197.189.235.147:8080/iptsanbi/", "identifier": 2473, "description": "The South African National Biodiversity Institute (SANBI) leads and coordinates research, and monitors and reports on the state of biodiversity in South Africa. The institute provides knowledge and information, gives planning and policy advice and pilots best-practice management models in partnership with stakeholders. SANBI engages in ecosystem restoration and rehabilitation, leads the human capital development strategy of the sector and manages the National Botanical Gardens as 'windows' to South Africa's biodiversity for enjoyment and education.", "abbreviation": "SANBI IPT - GBIF South Africa", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "Report a bug", "type": "Github"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://197.189.235.147:8080/iptsanbi/", "name": "Search & browse", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data access"}]}, "legacy-ids": ["biodbcore-000955", "bsg-d000955"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Africa"], "name": "FAIRsharing record for: South African National Biodiversity Institute IPT - GBIF South Africa", "abbreviation": "SANBI IPT - GBIF South Africa", "url": "https://fairsharing.org/10.25504/FAIRsharing.ph9sby", "doi": "10.25504/FAIRsharing.ph9sby", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The South African National Biodiversity Institute (SANBI) leads and coordinates research, and monitors and reports on the state of biodiversity in South Africa. The institute provides knowledge and information, gives planning and policy advice and pilots best-practice management models in partnership with stakeholders. SANBI engages in ecosystem restoration and rehabilitation, leads the human capital development strategy of the sector and manages the National Botanical Gardens as 'windows' to South Africa's biodiversity for enjoyment and education.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1006, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1007, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1008, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1009, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2593", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-15T09:38:48.000Z", "updated-at": "2021-11-24T13:17:15.455Z", "metadata": {"name": "Arabidopsis Information Portal", "status": "deprecated", "contacts": [{"contact-name": "Araport Helpdesk", "contact-email": "araport@jcvi.org"}], "homepage": "https://www.araport.org/", "identifier": 2593, "description": "The Arabidopsis Information Portal (Araport) is an open-access online community resource for Arabidopsis research. Araport enables biologists to navigate from the Arabidopsis thaliana Col-0 reference genome sequence to its associated annotation including gene structure, gene expression, protein function, and interaction networks. Araport offers gene and protein reports with orthology, expression, interactions and the latest annotation, plus analysis tools, community apps, and web services. Araport is free and open-source. Registered members can save their analysis, publish science apps, and post announcements.", "abbreviation": "Araport", "access-points": [{"url": "https://apps.araport.org/thalemine/api.do", "name": "Web Services", "type": "Other"}], "support-links": [{"url": "https://gcv-arabidopsis.ncgr.org/instructions", "type": "Help documentation"}, {"url": "https://github.com/Arabidopsis-Information-Portal", "name": "Araport GitHub Repository", "type": "Github"}, {"url": "https://twitter.com/araport", "name": "@araport", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://www.araport.org/data/araport11", "name": "Browse Araport11 Official Release", "type": "data access"}, {"url": "https://apps.araport.org/thalemine/begin.do", "name": "BAR ThaleMine Browse & Search", "type": "data access"}, {"url": "https://apps.araport.org/jbrowse/?data=arabidopsis", "name": "JBrowse", "type": "data access"}, {"url": "https://jbrowse.arabidopsis.org/index.html?data=Araport11&loc=1%3A21533..32846&tracks=TAIR10_genome%2CAraport11_Loci%2CAraport11_gene_models%2CSALK_tDNAs", "name": "TAIR JBrowse", "type": "data access"}, {"url": "https://bar.utoronto.ca/thalemine/begin.do", "name": "Araport ThaleMine Browse & Search", "type": "data access"}], "associated-tools": [{"url": "https://apps.araport.org/thalemine", "name": "InterMine"}], "deprecation-date": "2021-9-21", "deprecation-reason": "This data from this resource are now available as part of other repositories."}, "legacy-ids": ["biodbcore-001076", "bsg-d001076"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Genomics", "Life Science"], "domains": ["Gene functional annotation", "Network model", "Gene expression", "Molecular interaction", "Protein", "Orthologous", "Genome"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Arabidopsis Information Portal", "abbreviation": "Araport", "url": "https://fairsharing.org/fairsharing_records/2593", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arabidopsis Information Portal (Araport) is an open-access online community resource for Arabidopsis research. Araport enables biologists to navigate from the Arabidopsis thaliana Col-0 reference genome sequence to its associated annotation including gene structure, gene expression, protein function, and interaction networks. Araport offers gene and protein reports with orthology, expression, interactions and the latest annotation, plus analysis tools, community apps, and web services. Araport is free and open-source. Registered members can save their analysis, publish science apps, and post announcements.", "publications": [{"id": 2235, "pubmed_id": 27862469, "title": "Araport11: a complete reannotation of the Arabidopsis thaliana reference genome.", "year": 2016, "url": "http://doi.org/10.1111/tpj.13415", "authors": "Cheng CY,Krishnakumar V,Chan AP,Thibaud-Nissen F,Schobel S,Town CD", "journal": "Plant J", "doi": "10.1111/tpj.13415", "created_at": "2021-09-30T08:26:31.865Z", "updated_at": "2021-09-30T08:26:31.865Z"}, {"id": 2249, "pubmed_id": 28013278, "title": "ThaleMine: A Warehouse for Arabidopsis Data Integration and Discovery.", "year": 2016, "url": "http://doi.org/10.1093/pcp/pcw200", "authors": "Krishnakumar V,Contrino S,Cheng CY,Belyaeva I,Ferlanti ES,Miller JR,Vaughn MW,Micklem G,Town CD,Chan AP", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcw200", "created_at": "2021-09-30T08:26:33.551Z", "updated_at": "2021-09-30T08:26:33.551Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 434, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1941", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:37.833Z", "metadata": {"doi": "10.25504/FAIRsharing.zx2ztd", "name": "Human Unidentified Gene-Encoded large proteins database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "office@kazusa.or.jp"}], "homepage": "http://www.kazusa.or.jp/huge/", "identifier": 1941, "description": "HUGE is a database for human large proteins newly identified in the Kazusa cDNA project, the aim of which is to predict the primary structure of proteins from the sequences of human large cDNAs (>4 kb).", "abbreviation": "HUGE", "year-creation": 2003, "associated-tools": [{"url": "http://www.kazusa.or.jp/huge/keyword/keyword.html", "name": "search"}, {"url": "http://www.kazusa.or.jp/huge/fasta/fasta.html", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000407", "bsg-d000407"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Biology", "Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Structure", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Human Unidentified Gene-Encoded large proteins database", "abbreviation": "HUGE", "url": "https://fairsharing.org/10.25504/FAIRsharing.zx2ztd", "doi": "10.25504/FAIRsharing.zx2ztd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HUGE is a database for human large proteins newly identified in the Kazusa cDNA project, the aim of which is to predict the primary structure of proteins from the sequences of human large cDNAs (>4 kb).", "publications": [{"id": 403, "pubmed_id": 14681467, "title": "HUGE: a database for human KIAA proteins, a 2004 update integrating HUGEppi and ROUGE.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh035", "authors": "Kikuno R., Nagase T., Nakayama M., Koga H., Okazaki N., Nakajima D., Ohara O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh035", "created_at": "2021-09-30T08:23:03.791Z", "updated_at": "2021-09-30T08:23:03.791Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3027", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-16T18:15:41.000Z", "updated-at": "2021-12-06T10:49:12.955Z", "metadata": {"doi": "10.25504/FAIRsharing.SWMYY2", "name": "Scholars' Mine", "status": "ready", "contacts": [{"contact-name": "Roger Weaver", "contact-email": "weaverjr@mst.edu", "contact-orcid": "0000-0002-1916-3796"}], "homepage": "https://scholarsmine.mst.edu/", "identifier": 3027, "description": "Scholars' Mine is an online collection of scholarly and creative works produced by the faculty, staff, and students of the Missouri University of Science and Technology. This digital repository is a service of Missouri S&T Library and Learning Resources.", "abbreviation": "Scholars' Mine", "support-links": [{"url": "scholarsmine@mst.edu", "name": "Support Email", "type": "Support email"}, {"url": "https://scholarsmine.mst.edu/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://scholarsmine.mst.edu/benefits.html", "name": "Benefits of Scholars' Mine", "type": "Help documentation"}, {"url": "https://scholarsmine.mst.edu/about.html", "name": "About", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://scholarsmine.mst.edu/communities.html", "name": "Browse Collections", "type": "data access"}, {"url": "https://scholarsmine.mst.edu/authors.html", "name": "Browse by Author", "type": "data access"}, {"url": "https://scholarsmine.mst.edu/faculty_work/browse_faculty.html", "name": "Browse by Faculty Author", "type": "data access"}, {"url": "https://scholarsmine.mst.edu/do/search/advanced/", "name": "Advanced Search", "type": "data access"}, {"url": "https://scholarsmine.mst.edu/submit_research.html", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012692", "name": "re3data:r3d100012692", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001535", "bsg-d001535"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Scholars' Mine", "abbreviation": "Scholars' Mine", "url": "https://fairsharing.org/10.25504/FAIRsharing.SWMYY2", "doi": "10.25504/FAIRsharing.SWMYY2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scholars' Mine is an online collection of scholarly and creative works produced by the faculty, staff, and students of the Missouri University of Science and Technology. This digital repository is a service of Missouri S&T Library and Learning Resources.", "publications": [], "licence-links": [{"licence-name": "Scholars' Mine Non-Exclusive Distribution Licence", "licence-id": 733, "link-id": 1920, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3135", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-18T02:48:47.000Z", "updated-at": "2021-12-06T10:49:12.251Z", "metadata": {"doi": "10.25504/FAIRsharing.snAELz", "name": "National Space Science Data Center", "status": "ready", "contacts": [{"contact-name": "Yuan Yaqin", "contact-email": "nssdc_service@nssc.ac.cn"}], "homepage": "http://www.nssdc.ac.cn/eng/index.html", "identifier": 3135, "description": "NSSDC is the nation-level space science center which recognized by the Ministry of Science and Technology of China. As a repository for space science data, NSSDC assumes the responsibility of the long-term stewardship and offering a reliable service of space science data in China. It also has been the Chinese center for space science of the World Data Center (WDC) since 1988. In 2013, NSSDC became a regular member of World Data System. Data resources are concentrated in the following fields of space physics and space environment, space astronomy, lunar and planetary science, space application and engineering. In space physics, the NSSDC maintains space-based observation data and ground-based observation data of the middle and upper atmosphere, ionosphere and earth surface, from Geo-space Double Star Exploration Program and Meridian Project. In space astronomy, NSSDC archived pointed observation data of Hard X-ray Modulation Telescope. In lunar and planetary science, space application and engineering, NSSDC also collects detection data of Chang\u2019E from Lunar Exploration Program and science products of BeiDou satellites.", "abbreviation": "NSSDC", "support-links": [{"url": "http://www.nssdc.ac.cn/eng/index.html#", "name": "News", "type": "Blog/News"}, {"url": "http://www.nssdc.ac.cn/eng/opinion.html", "name": "Feedback", "type": "Contact form"}, {"url": "http://www.nssdc.ac.cn/eng/service_flow.html", "name": "Data Service Flow", "type": "Help documentation"}, {"url": "http://www.nssdc.ac.cn/eng/ingestion_guideline.html", "name": "Data Ingestion Guideline", "type": "Help documentation"}, {"url": "http://www.nssdc.ac.cn/eng/standard_specification_list.html", "name": "Standard specification", "type": "Help documentation"}], "year-creation": 1988, "data-processes": [{"url": "http://www.nssdc.ac.cn/eng/data_directory.html", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010143", "name": "re3data:r3d100010143", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001646", "bsg-d001646"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy", "Natural Science", "Earth Science", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["space science"], "countries": ["China"], "name": "FAIRsharing record for: National Space Science Data Center", "abbreviation": "NSSDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.snAELz", "doi": "10.25504/FAIRsharing.snAELz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NSSDC is the nation-level space science center which recognized by the Ministry of Science and Technology of China. As a repository for space science data, NSSDC assumes the responsibility of the long-term stewardship and offering a reliable service of space science data in China. It also has been the Chinese center for space science of the World Data Center (WDC) since 1988. In 2013, NSSDC became a regular member of World Data System. Data resources are concentrated in the following fields of space physics and space environment, space astronomy, lunar and planetary science, space application and engineering. In space physics, the NSSDC maintains space-based observation data and ground-based observation data of the middle and upper atmosphere, ionosphere and earth surface, from Geo-space Double Star Exploration Program and Meridian Project. In space astronomy, NSSDC archived pointed observation data of Hard X-ray Modulation Telescope. In lunar and planetary science, space application and engineering, NSSDC also collects detection data of Chang\u2019E from Lunar Exploration Program and science products of BeiDou satellites.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2455", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-09T12:21:32.000Z", "updated-at": "2021-11-24T13:14:53.313Z", "metadata": {"doi": "10.25504/FAIRsharing.2wa7v7", "name": "PhenX Toolkit", "status": "ready", "contacts": [{"contact-name": "Pat West", "contact-email": "contact@phenxtoolkit.org"}], "homepage": "https://www.phenxtoolkit.org", "identifier": 2455, "description": "The PhenX (consensus measures for Phenotypes and eXposures) Toolkit is a web-based catalog of recommended, standard measures of phenotypes and environmental exposures for use in biomedical research. The PhenX Toolkit offers well-established, broadly validated measures of phenotypes and exposures relevant to investigators in human genomics, epidemiology, and biomedical research. The measures in the Toolkit are selected by Working Groups of domain experts using a consensus process. The Toolkit provides detailed protocols, information about the measures, and tools to help investigators incorporate PhenX measures into their studies.", "abbreviation": "PhenX Toolkit", "support-links": [{"url": "https://www.phenxtoolkit.org/index.php?pageLink=about.contact", "name": "Pat West", "type": "Contact form"}, {"url": "https://www.phenxtoolkit.org/index.php?pageLink=help.faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.phenxtoolkit.org/index.php?pageLink=help.index", "type": "Help documentation"}, {"url": "https://www.phenxtoolkit.org/index.php?pageLink=help.tutorial", "type": "Training documentation"}], "year-creation": 2007, "associated-tools": [{"url": "https://www.phenxtoolkit.org/index.php?pageLink=sqt.search", "name": "Smart Query Tool"}, {"url": "https://www.phenxtoolkit.org/index.php?pageLink=search.dbgaplocator", "name": "dbGap Variable Mapping"}, {"url": "https://www.phenxtoolkit.org/index.php?pageLink=browse&tree=off", "name": "Browse Domains"}]}, "legacy-ids": ["biodbcore-000937", "bsg-d000937"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Biomedical Science", "Epidemiology"], "domains": ["Phenotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PhenX Toolkit", "abbreviation": "PhenX Toolkit", "url": "https://fairsharing.org/10.25504/FAIRsharing.2wa7v7", "doi": "10.25504/FAIRsharing.2wa7v7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PhenX (consensus measures for Phenotypes and eXposures) Toolkit is a web-based catalog of recommended, standard measures of phenotypes and environmental exposures for use in biomedical research. The PhenX Toolkit offers well-established, broadly validated measures of phenotypes and exposures relevant to investigators in human genomics, epidemiology, and biomedical research. The measures in the Toolkit are selected by Working Groups of domain experts using a consensus process. The Toolkit provides detailed protocols, information about the measures, and tools to help investigators incorporate PhenX measures into their studies.", "publications": [{"id": 1812, "pubmed_id": 26132000, "title": "Using the PhenX Toolkit to Add Standard Measures to a Study.", "year": 2015, "url": "http://doi.org/10.1002/0471142905.hg0121s86", "authors": "Hendershot T,Pan H,Haines J,Harlan WR,Marazita ML,McCarty CA,Ramos EM,Hamilton CM", "journal": "Curr Protoc Hum Genet", "doi": "10.1002/0471142905.hg0121s86", "created_at": "2021-09-30T08:25:43.380Z", "updated_at": "2021-09-30T08:25:43.380Z"}, {"id": 2148, "pubmed_id": 22954959, "title": "The PhenX Toolkit pregnancy and birth collections.", "year": 2012, "url": "http://doi.org/10.1016/j.annepidem.2012.08.004", "authors": "Whitehead NS,Hammond JA,Williams MA,Huggins W,Hoover S,Hamilton CM,Ramos EM,Junkins HA,Harlan WR,Hogue CJ", "journal": "Ann Epidemiol", "doi": "10.1016/j.annepidem.2012.08.004", "created_at": "2021-09-30T08:26:22.066Z", "updated_at": "2021-09-30T08:26:22.066Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1579", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.394Z", "metadata": {"doi": "10.25504/FAIRsharing.v0hbjs", "name": "Encyclopedia of DNA Elements at UCSC", "status": "ready", "contacts": [{"contact-name": "Brian Lee", "contact-email": "brianlee@soe.ucsc.edu"}], "homepage": "http://genome.ucsc.edu/ENCODE/", "identifier": 1579, "description": "Encyclopedia of DNA Elements (ENCODE) has created a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. UCSC coordinated data for the ENCODE Consortium from its inception in 2003 (Pilot phase) to the end of the first 5 year phase of whole-genome data production in 2012. All data produced by ENCODE investigators and the results of ENCODE analysis projects from this period are hosted in the UCSC Genome browser and database.", "abbreviation": "ENCODE", "support-links": [{"url": "http://genome.ucsc.edu/ENCODE/FAQ/index.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://mailman.stanford.edu/mailman/listinfo/encode-announce", "type": "Mailing list"}, {"url": "http://www.openhelix.com/ENCODE2/", "type": "Training documentation"}, {"url": "https://en.wikipedia.org/wiki/ENCODE", "type": "Wikipedia"}], "year-creation": 2007, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by genome assembly", "type": "data versioning"}, {"name": "versioning by individual annotation", "type": "data versioning"}, {"name": "access to historical files possible", "type": "data versioning"}, {"name": "web interface, PNG/PDF/PS visualizations of sequences and annotations by genomic position", "type": "data access"}, {"name": "text, tabular and file downloads in a variety of formats", "type": "data access"}, {"name": "direct MySQL access through public MySQL server with anonymous login", "type": "data access"}, {"url": "http://genome.ucsc.edu/", "name": "UCSC Genome Browser", "type": "data access"}]}, "legacy-ids": ["biodbcore-000034", "bsg-d000034"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome annotation", "Cap Analysis Gene Expression", "Chromatin binding", "DNA methylation", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing", "Chromatin Interaction Analysis by Paired-End Tag sequencing", "Transcript analysis by paired-end tag sequencing"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["RNA-binding protein target sites"], "countries": ["United States"], "name": "FAIRsharing record for: Encyclopedia of DNA Elements at UCSC", "abbreviation": "ENCODE", "url": "https://fairsharing.org/10.25504/FAIRsharing.v0hbjs", "doi": "10.25504/FAIRsharing.v0hbjs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Encyclopedia of DNA Elements (ENCODE) has created a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. UCSC coordinated data for the ENCODE Consortium from its inception in 2003 (Pilot phase) to the end of the first 5 year phase of whole-genome data production in 2012. All data produced by ENCODE investigators and the results of ENCODE analysis projects from this period are hosted in the UCSC Genome browser and database.", "publications": [{"id": 1301, "pubmed_id": 23193274, "title": "ENCODE data in the UCSC Genome Browser: year 5 update", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1172", "authors": "Rosenbloom KR, Sloan CA, Malladi VS, Dreszer TR, Learned K, Kirkup VM, Wong MC, Maddren M, Fang R, Heitner SG, Lee BT, Barber GP, Harte RA, Diekhans M, Long JC, Wilder SP, Zweig AS, Karolchik D, Kuhn RM, Haussler D, Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1172", "created_at": "2021-09-30T08:24:45.301Z", "updated_at": "2021-09-30T08:24:45.301Z"}, {"id": 1539, "pubmed_id": 21037257, "title": "ENCODE whole-genome data in the UCSC genome browser (2011 update)", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1017", "authors": "Raney BJ, Cline MS, Rosenbloom KR, Dreszer TR, Learned K, Barber GP, Meyer LR, Sloan CA, Malladi VS, Roskin KM, Suh BB, Hinrichs AS, Clawson H, Zweig AS, Kirkup V, Fujita PA, Rhead B, Smith KE, Pohl A, Kuhn RM, Karolchik D, Haussler D, Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1017", "created_at": "2021-09-30T08:25:12.386Z", "updated_at": "2021-09-30T08:25:12.386Z"}, {"id": 3084, "pubmed_id": 22075998, "title": "ENCODE whole-genome data in the UCSC Genome Browser: update 2012.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1012", "authors": "Rosenbloom KR, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1012", "created_at": "2021-09-30T08:28:20.008Z", "updated_at": "2021-09-30T08:28:20.008Z"}, {"id": 3085, "pubmed_id": 19920125, "title": "ENCODE whole-genome data in the UCSC Genome Browser", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp961", "authors": "Rosenbloom KR, Dreszer TR, Pheasant M, Barber GP, Meyer LR, Pohl A, Raney BJ, Wang T, Hinrichs AS, Zweig AS, Fujita PA, Learned K, Rhead B, Smith KE, Kuhn RM, Karolchik D, Haussler D, Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp961", "created_at": "2021-09-30T08:28:20.134Z", "updated_at": "2021-09-30T08:28:20.134Z"}, {"id": 3094, "pubmed_id": 17166863, "title": "The ENCODE project at UC Santa Cruz", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1017", "authors": "Thomas DJ, Rosenbloom KR, Clawson H, Hinrichs, AS, Trumbower H, Raney BJ, Karolchik D, Barber GP, Harte RA, Hillman-Jackson J, Kuhn RM, Rhead BL, Smith KE, Thakkapallayil A, Zweig AS, The ENCODE Project Consortium, Haussler D, Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl1017", "created_at": "2021-09-30T08:28:21.226Z", "updated_at": "2021-09-30T08:28:21.226Z"}], "licence-links": [{"licence-name": "ENCODE Data has usage restrictions for 9 months after public availability", "licence-id": 279, "link-id": 238, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2325", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-17T02:47:58.000Z", "updated-at": "2021-12-06T10:48:25.785Z", "metadata": {"doi": "10.25504/FAIRsharing.dq46p7", "name": "Life Science Database Archive", "status": "ready", "contacts": [{"contact-name": "Shigeru Yatsuzuka", "contact-email": "yatsuzuka@biosciencedbc.jp", "contact-orcid": "0000-0002-6891-5229"}], "homepage": "http://dbarchive.biosciencedbc.jp/index-e.html", "identifier": 2325, "description": "If a database is inadequate in terms of its description, unclear with respect to the terms of use, or is not downloadable, it may not be fully used, cited or rightly acknowledged by the (research) communities. This is even true for databases with high-quality datasets. The Life Science Database Archive maintains and stores the datasets generated by life scientists in Japan in a long-term and stable state as national public goods. The Archive makes it easier for many people to search datasets by metadata (description of datasets) in a unified format, and to access and download the datasets with clear terms of use (see here for detailed descriptions). In addition, the Archive provides datasets in forms friendly to different types of users in public and private institutions, and thereby supports further contribution of each research to life science.", "abbreviation": "LSDB Archive", "support-links": [{"url": "dbarchive@biosciencedbc.jp", "type": "Support email"}, {"url": "https://dbarchive.biosciencedbc.jp/contents-en/about/about.html", "name": "About", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://dbarchive.biosciencedbc.jp/datameta-list-e.html", "name": "browse", "type": "data access"}, {"url": "https://dbarchive.biosciencedbc.jp/blast/", "name": "blast", "type": "data access"}, {"url": "https://dbarchive.biosciencedbc.jp/image_search/", "name": "image search", "type": "data access"}, {"url": "https://dbarchive.biosciencedbc.jp/dbmeta-search-e.html", "name": "advance search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012368", "name": "re3data:r3d100012368", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000801", "bsg-d000801"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Proteomics", "Life Science", "Transcriptomics"], "domains": ["Gene expression", "Transcription factor", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Life Science Database Archive", "abbreviation": "LSDB Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.dq46p7", "doi": "10.25504/FAIRsharing.dq46p7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: If a database is inadequate in terms of its description, unclear with respect to the terms of use, or is not downloadable, it may not be fully used, cited or rightly acknowledged by the (research) communities. This is even true for databases with high-quality datasets. The Life Science Database Archive maintains and stores the datasets generated by life scientists in Japan in a long-term and stable state as national public goods. The Archive makes it easier for many people to search datasets by metadata (description of datasets) in a unified format, and to access and download the datasets with clear terms of use (see here for detailed descriptions). In addition, the Archive provides datasets in forms friendly to different types of users in public and private institutions, and thereby supports further contribution of each research to life science.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2180", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:28.553Z", "metadata": {"doi": "10.25504/FAIRsharing.zvh04m", "name": "Alternative Poly(A) Sites database", "status": "ready", "contacts": [{"contact-name": "Leiming You", "contact-email": "youleiming@126.com"}], "homepage": "http://mosas.sysu.edu.cn/utr", "identifier": 2180, "description": "APASdb can visualize the precise map and usage quantification of different APA isoforms for all genes. The datasets are deeply profiled by the sequencing alternative polyadenylation sites (SAPAS) method capable of high-throughput sequencing 3'-ends of polyadenylated transcripts. Thus, APASdb details all the heterogeneous cleavage sites downstream of poly(A) signals, and maintains near complete coverage for APA sites. Furthermore, APASdb provides the quantification of a given APA variant among transcripts with different APA sites by computing their corresponding normalized-reads. In addition, APASdb supports URL-based retrieval, browsing and display of exon-intron structure, poly(A) signals, poly(A) sites location and usage reads, and 3'-untranslated regions (3'-UTRs). Currently, APASdb involves APA in various biological processes and diseases in human, mouse and zebrafish.", "abbreviation": "APASdb", "support-links": [{"url": "http://mosas.sysu.edu.cn/utr/mail.php", "type": "Contact form"}, {"url": "http://mosas.sysu.edu.cn/utr/APASdbs_help.php", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://mosas.sysu.edu.cn/utr/download_datasets.php", "name": "Download", "type": "data access"}, {"url": "http://mosas.sysu.edu.cn/utr/search_APASdb.php", "name": "search", "type": "data access"}, {"url": "http://mosas.sysu.edu.cn/utr/gbrowse.php", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://mosas.sysu.edu.cn/utr/blast.php", "name": "Blast"}]}, "legacy-ids": ["biodbcore-000654", "bsg-d000654"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Regulation of gene expression", "RNA polyadenylation", "Untranslated region"], "taxonomies": ["Danio rerio", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Alternative Poly(A) Sites database", "abbreviation": "APASdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.zvh04m", "doi": "10.25504/FAIRsharing.zvh04m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: APASdb can visualize the precise map and usage quantification of different APA isoforms for all genes. The datasets are deeply profiled by the sequencing alternative polyadenylation sites (SAPAS) method capable of high-throughput sequencing 3'-ends of polyadenylated transcripts. Thus, APASdb details all the heterogeneous cleavage sites downstream of poly(A) signals, and maintains near complete coverage for APA sites. Furthermore, APASdb provides the quantification of a given APA variant among transcripts with different APA sites by computing their corresponding normalized-reads. In addition, APASdb supports URL-based retrieval, browsing and display of exon-intron structure, poly(A) signals, poly(A) sites location and usage reads, and 3'-untranslated regions (3'-UTRs). Currently, APASdb involves APA in various biological processes and diseases in human, mouse and zebrafish.", "publications": [{"id": 693, "pubmed_id": 25378337, "title": "APASdb: a database describing alternative poly(A) sites and selection of heterogeneous cleavage sites downstream of poly(A) signals.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1076", "authors": "You L, Wu J, Feng Y, Fu Y, Guo Y, Long L, Zhang H, Luan Y, Tian P, Chen L, Huang G, Huang S, Li Y, Li J, Chen C, Zhang Y, Chen S, Xu A", "journal": "Nucleic Acid Research", "doi": "10.1093/nar/gku1076", "created_at": "2021-09-30T08:23:36.378Z", "updated_at": "2021-09-30T08:23:36.378Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3238", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-10T17:50:23.000Z", "updated-at": "2021-12-06T10:49:01.527Z", "metadata": {"doi": "10.25504/FAIRsharing.pPOQZf", "name": "MarinE MethanE and NiTrous Oxide", "status": "ready", "contacts": [{"contact-name": "Annette Kock", "contact-email": "akock@geomar.de", "contact-orcid": "0000-0002-1017-6056"}], "homepage": "https://memento.geomar.de/", "identifier": 3238, "description": "MEMENTO aims to identify regions of the world ocean that should be targeted in future work to improve the quality of air-sea flux estimates. MEMENTO is a joint initiative between SOLAS (Surface Ocean Lower Atmosphere Study) and COST Action 735 (European CoOperation in the Field of Scientific and Technical Research).", "abbreviation": "MEMENTO", "support-links": [{"url": "hbange@geomar.de", "name": "Hermann Bange", "type": "Support email"}, {"url": "https://memento.geomar.de/publications", "name": "Publications", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://memento.geomar.de/data-contributors", "name": "Submit data", "type": "data curation"}, {"url": "https://memento.geomar.de/submit-your-data", "name": "Data available upon request", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011549", "name": "re3data:r3d100011549", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001752", "bsg-d001752"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Gas", "Greenhouse gases", "Methane", "nitrous oxide", "Sedimentology"], "countries": ["Germany"], "name": "FAIRsharing record for: MarinE MethanE and NiTrous Oxide", "abbreviation": "MEMENTO", "url": "https://fairsharing.org/10.25504/FAIRsharing.pPOQZf", "doi": "10.25504/FAIRsharing.pPOQZf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MEMENTO aims to identify regions of the world ocean that should be targeted in future work to improve the quality of air-sea flux estimates. MEMENTO is a joint initiative between SOLAS (Surface Ocean Lower Atmosphere Study) and COST Action 735 (European CoOperation in the Field of Scientific and Technical Research).", "publications": [{"id": 3073, "pubmed_id": null, "title": "MEMENTO: a proposal to develop a database of marine nitrous oxide and methane measurements", "year": 2009, "url": "https://www.publish.csiro.au/en/EN09033", "authors": "Hermann W. Bange A F , Tom G. Bell B , Marcela Cornejo C , Alina Freing A , G\u00fcnther Uher D , Rob C. Upstill-Goddard D and Guiling Zhang", "journal": "Environmental Chemistry 6(3) 195-197", "doi": null, "created_at": "2021-09-30T08:28:18.670Z", "updated_at": "2021-09-30T08:28:18.670Z"}], "licence-links": [{"licence-name": "MEMENTO Terms of Use", "licence-id": 503, "link-id": 2164, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2478", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-05T12:52:10.000Z", "updated-at": "2021-11-24T13:16:30.754Z", "metadata": {"doi": "10.25504/FAIRsharing.w2vev5", "name": "Biodiversity Information Serving Our Nation IPT - USGS", "status": "ready", "contacts": [{"contact-email": "bison@usgs.gov"}], "homepage": "https://bison.usgs.gov/ipt/", "identifier": 2478, "description": "The U.S. node to GBIF represents an integral part of the U.S. Geological Survey\u2019s activities to collect, organize and share biological information. As with other initiatives, the U.S. GBIF node streamlines access to U.S. biodiversity information and links it with broader geoscience data to address critical societal issues. BISON is the primary project contributing to the node. It provides a specialized view of GBIF records for the U.S. and assists with provision of U.S. records to GBIF.", "abbreviation": "BISON IPT - USGS", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "data-processes": [{"url": "https://bison.usgs.gov/ipt/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data access"}]}, "legacy-ids": ["biodbcore-000960", "bsg-d000960"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Biodiversity Information Serving Our Nation IPT - USGS", "abbreviation": "BISON IPT - USGS", "url": "https://fairsharing.org/10.25504/FAIRsharing.w2vev5", "doi": "10.25504/FAIRsharing.w2vev5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The U.S. node to GBIF represents an integral part of the U.S. Geological Survey\u2019s activities to collect, organize and share biological information. As with other initiatives, the U.S. GBIF node streamlines access to U.S. biodiversity information and links it with broader geoscience data to address critical societal issues. BISON is the primary project contributing to the node. It provides a specialized view of GBIF records for the U.S. and assists with provision of U.S. records to GBIF.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1010, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1011, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1012, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1013, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3212", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-27T19:56:38.000Z", "updated-at": "2021-12-06T10:48:23.562Z", "metadata": {"doi": "10.25504/FAIRsharing.D5iouq", "name": "Osteoarthritis Initiative", "status": "ready", "contacts": [{"contact-name": "NDA Helpdesk", "contact-email": "ndahelp@mail.nih.gov"}], "homepage": "https://nda.nih.gov/oai", "identifier": 3212, "description": "The Osteoarthritis Initiative (OAI) is a multi-center, ten-year observational study of men and women to improve the understanding of prevention and treatment of knee osteoarthritis, one of the most common causes of disability in adults. The OAI is a permanent archive of the clinical data, patient reported outcomes, biospecimen analyses, quantitative image analyses, radiographs (X-Rays) and magnetic resonance images (MRIs) acquired during this study. While querying and browsing data is publicly available, all subject-level data is available behind a login.", "abbreviation": "OAI", "access-points": [{"url": "https://nda.nih.gov/tools/apis.html", "name": "NDA Query API", "type": "REST"}], "support-links": [{"url": "https://nda.nih.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://nda.nih.gov/oai/tutorials", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/study-details", "name": "Study Details", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/study-details/image-acquisitions.html", "name": "Image Aquisition", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/study-details/image-assessments.html", "name": "Image Assessment", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/study-details/biospecimens.html", "name": "Biospecimens", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/study-details/outcomes.html", "name": "Outcomes", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/publications", "name": "Publications", "type": "Help documentation"}, {"url": "https://nda.nih.gov/oai/about-oai", "name": "About OAI", "type": "Help documentation"}], "data-processes": [{"url": "https://nda.nih.gov/general-query.html?q=query=featured-datasets:Osteoarthritis%20Initiative%20(OAI)", "name": "Search & Download", "type": "data access"}, {"url": "https://nda.nih.gov/general-query.html?q=query=data-structure%20~and~%20dataSources=Osteoarthritis%20Initiative%20~and~%20orderBy=shortName%20~and~%20orderDirection=Ascending", "name": "Browse Data Dictionary", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011843", "name": "re3data:r3d100011843", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001725", "bsg-d001725"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Clinical Studies"], "domains": ["Bioimaging", "Medical imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Osteoarthritis Initiative", "abbreviation": "OAI", "url": "https://fairsharing.org/10.25504/FAIRsharing.D5iouq", "doi": "10.25504/FAIRsharing.D5iouq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Osteoarthritis Initiative (OAI) is a multi-center, ten-year observational study of men and women to improve the understanding of prevention and treatment of knee osteoarthritis, one of the most common causes of disability in adults. The OAI is a permanent archive of the clinical data, patient reported outcomes, biospecimen analyses, quantitative image analyses, radiographs (X-Rays) and magnetic resonance images (MRIs) acquired during this study. While querying and browsing data is publicly available, all subject-level data is available behind a login.", "publications": [], "licence-links": [{"licence-name": "NDA Data Policy", "licence-id": 565, "link-id": 2149, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3068", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-08T10:43:27.000Z", "updated-at": "2021-12-06T10:47:33.064Z", "metadata": {"name": "World Data Centre for Greenhouse Gases", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "wdcgg@met.kishou.go.jp"}], "homepage": "https://gaw.kishou.go.jp/", "identifier": 3068, "description": "WDCGG serves to collect, archive and distribute data on greenhouse gases (CO2, CH4, CFCs, N2O, etc.) and other related gases (CO, etc.) in the atmosphere and elsewhere as observed under the Global Atmosphere Watch Programme (GAW) programme. The data comes from organizations and individual researchers worldwide (referred to here simply as contributors).", "abbreviation": "WDCGG", "support-links": [{"url": "https://gaw.kishou.go.jp/what_is_new", "name": "News", "type": "Blog/News"}, {"url": "https://gaw.kishou.go.jp/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://gaw.kishou.go.jp/documents/manuals", "name": "Manuals", "type": "Help documentation"}, {"url": "https://gaw.kishou.go.jp/publications", "name": "Publications", "type": "Help documentation"}], "year-creation": 1990, "data-processes": [{"url": "https://gaw.kishou.go.jp/search", "name": "Search", "type": "data access"}, {"url": "https://gaw.kishou.go.jp/satellite", "name": "Browse satellite data", "type": "data access"}, {"url": "https://gaw.kishou.go.jp/login/contributor", "name": "Contribute", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010068", "name": "re3data:r3d100010068", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001576", "bsg-d001576"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Gas", "Greenhouse gases", "Ozone"], "countries": ["Japan"], "name": "FAIRsharing record for: World Data Centre for Greenhouse Gases", "abbreviation": "WDCGG", "url": "https://fairsharing.org/fairsharing_records/3068", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WDCGG serves to collect, archive and distribute data on greenhouse gases (CO2, CH4, CFCs, N2O, etc.) and other related gases (CO, etc.) in the atmosphere and elsewhere as observed under the Global Atmosphere Watch Programme (GAW) programme. The data comes from organizations and individual researchers worldwide (referred to here simply as contributors).", "publications": [], "licence-links": [{"licence-name": "GAW Data Policy", "licence-id": 325, "link-id": 2377, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2896", "type": "fairsharing-records", "attributes": {"created-at": "2020-02-20T14:10:19.000Z", "updated-at": "2021-11-24T13:18:24.542Z", "metadata": {"doi": "10.25504/FAIRsharing.eBP3tb", "name": "Vertebrate Gene Nomenclature Committee", "status": "ready", "contacts": [{"contact-name": "VGNC Helpdesk", "contact-email": "vgnc@genenames.org"}], "homepage": "https://vertebrate.genenames.org/", "identifier": 2896, "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee. The VGNC also coordinates with the 6 existing vertebrate nomenclature committees, MGNC (mouse), RGNC (rat), CGNC (chicken), AGNC (Anole green lizard), XNC (Xenopus frog) and ZNC (zebrafish), to ensure genes are named in line with their human homologs.", "abbreviation": "VGNC", "support-links": [{"url": "https://vertebrate.genenames.org/contact/feedback/", "name": "Feedback Form", "type": "Contact form"}], "year-creation": 2016, "data-processes": [{"url": "https://vertebrate.genenames.org/tools/search/#!/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001397", "bsg-d001397"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Gene name"], "taxonomies": ["Bos taurus", "Canis familiaris", "Equus caballus", "Felis catus", "Macaca mulatta", "Pan troglodytes", "Sus scrofa", "Vertebrata"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Vertebrate Gene Nomenclature Committee", "abbreviation": "VGNC", "url": "https://fairsharing.org/10.25504/FAIRsharing.eBP3tb", "doi": "10.25504/FAIRsharing.eBP3tb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee. The VGNC also coordinates with the 6 existing vertebrate nomenclature committees, MGNC (mouse), RGNC (rat), CGNC (chicken), AGNC (Anole green lizard), XNC (Xenopus frog) and ZNC (zebrafish), to ensure genes are named in line with their human homologs.", "publications": [{"id": 1833, "pubmed_id": 27799471, "title": "Genenames.org: the HGNC and VGNC resources in 2017.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1033", "authors": "Yates B,Braschi B,Gray KA,Seal RL,Tweedie S,Bruford EA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1033", "created_at": "2021-09-30T08:25:45.862Z", "updated_at": "2021-09-30T11:29:21.369Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3242", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-11T14:12:40.000Z", "updated-at": "2021-12-06T10:47:41.129Z", "metadata": {"name": "International Crops Research Institute for the Semi-Arid Tropics Dataverse", "status": "ready", "contacts": [{"contact-name": "Webmaster", "contact-email": "webmaster@icrisat.org"}], "homepage": "http://dataverse.icrisat.org/dataverse/icrisat", "identifier": 3242, "description": "The International Crops Research Institute for the Semi-Arid Tropics (ICRISAT) Dataverse stores data relating to agricultural research in Asia and sub-Saharan Africa. The goal of ICRISAT and its partners is to use this research to overcome poverty, hunger and a degraded environment through better agriculture.", "abbreviation": "ICRISAT Dataverse", "support-links": [{"url": "http://data.icrisat.org/dashboard/dataverse/", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://dataverse.icrisat.org/dataverse/icrisat/search", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010699", "name": "re3data:r3d100010699", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001756", "bsg-d001756"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Social Science", "Agriculture"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India", "Mozambique", "Ethiopia", "Zimbabwe", "Niger", "Kenya", "Malawi", "Mali", "Nigeria"], "name": "FAIRsharing record for: International Crops Research Institute for the Semi-Arid Tropics Dataverse", "abbreviation": "ICRISAT Dataverse", "url": "https://fairsharing.org/fairsharing_records/3242", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Crops Research Institute for the Semi-Arid Tropics (ICRISAT) Dataverse stores data relating to agricultural research in Asia and sub-Saharan Africa. The goal of ICRISAT and its partners is to use this research to overcome poverty, hunger and a degraded environment through better agriculture.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3252", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-15T13:39:48.000Z", "updated-at": "2021-11-24T13:17:19.909Z", "metadata": {"name": "UNESCO Digital Library", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "unesdoc@unesco.org"}], "homepage": "https://unesdoc.unesco.org/", "citations": [], "identifier": 3252, "description": "The UNESCO Digital Library provides access to publications, documents and other materials either produced by UNESCO or pertaining to UNESCO\u2019s fields of competence. It is constantly enriched with new publications and documents produced by UNESCO, as well as with acquisitions, resources shared by other institutions and donations. The UNESCO Digital Library is the repository of UNESCO\u2019s institutional memory and a source of information on UNESCO activities (in education, natural sciences, social and human sciences, culture, and communication and information), with more than 350,000 documents dating back to 1945.", "support-links": [{"url": "https://unesdoc.unesco.org/about/help", "name": "Help", "type": "Help documentation"}, {"url": "https://unesdoc.unesco.org/about", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://unesdoc.unesco.org/advancedSearch/:new", "name": "Advanced Search", "type": "data access"}, {"url": "https://unesdoc.unesco.org/", "name": "Basic Search", "type": "data access"}, {"url": "https://unesdoc.unesco.org/collections", "name": "Browse Collections", "type": "data access"}, {"url": "https://unesdoc.unesco.org/explore/by-theme", "name": "Browse Themes", "type": "data access"}, {"url": "https://unesdoc.unesco.org/explore/by-field-office-institute-or-center", "name": "Browse by Field Office, Institute or Center", "type": "data access"}, {"url": "https://unesdoc.unesco.org/explore/by-country", "name": "Browse by Country", "type": "data access"}, {"url": "https://unesdoc.unesco.org/explore/by-publishing-sector", "name": "Browse by Publishing Sector", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001766", "bsg-d001766"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Culture", "Education Science", "History", "Subject Agnostic", "Cultural Studies"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: UNESCO Digital Library", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3252", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UNESCO Digital Library provides access to publications, documents and other materials either produced by UNESCO or pertaining to UNESCO\u2019s fields of competence. It is constantly enriched with new publications and documents produced by UNESCO, as well as with acquisitions, resources shared by other institutions and donations. The UNESCO Digital Library is the repository of UNESCO\u2019s institutional memory and a source of information on UNESCO activities (in education, natural sciences, social and human sciences, culture, and communication and information), with more than 350,000 documents dating back to 1945.", "publications": [], "licence-links": [{"licence-name": "UNESCO Access to Information Policy", "licence-id": 818, "link-id": 2244, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2916", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-02T11:08:25.000Z", "updated-at": "2021-11-24T13:15:48.709Z", "metadata": {"name": "The Global Health Observatory", "status": "ready", "homepage": "https://www.who.int/data/gho", "identifier": 2916, "description": "The GHO data repository is WHO's gateway to health-related statistics for its 194 Member States. It provides access to over 1000 indicators on priority health topics including mortality and burden of diseases, the Millennium Development Goals (child nutrition, child health, maternal and reproductive health, immunization, HIV/AIDS, tuberculosis, malaria, neglected diseases, water and sanitation), non communicable diseases and risk factors, epidemic-prone diseases, health systems, environmental health, violence and injuries, equity among others.", "abbreviation": "GHO", "access-points": [{"url": "https://www.who.int/data/gho/info/gho-odata-api", "name": "OData API", "type": "REST"}], "support-links": [{"url": "https://www.who.int/data/gho/info/contact-us", "name": "Contact Us", "type": "Contact form"}, {"url": "https://www.who.int/data/gho/info/frequently-asked-questions", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}]}, "legacy-ids": ["biodbcore-001419", "bsg-d001419"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Services Research", "Public Health", "Health Science", "Global Health", "Primary Health Care", "Virology", "Epidemiology", "Medical Informatics"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: The Global Health Observatory", "abbreviation": "GHO", "url": "https://fairsharing.org/fairsharing_records/2916", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GHO data repository is WHO's gateway to health-related statistics for its 194 Member States. It provides access to over 1000 indicators on priority health topics including mortality and burden of diseases, the Millennium Development Goals (child nutrition, child health, maternal and reproductive health, immunization, HIV/AIDS, tuberculosis, malaria, neglected diseases, water and sanitation), non communicable diseases and risk factors, epidemic-prone diseases, health systems, environmental health, violence and injuries, equity among others.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3075", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-14T13:18:22.000Z", "updated-at": "2021-12-06T10:49:07.160Z", "metadata": {"doi": "10.25504/FAIRsharing.RJ3PDJ", "name": "AUSSDA Dataverse", "status": "ready", "contacts": [{"contact-name": "Julia Geistberger", "contact-email": "info@aussda.at", "contact-orcid": "0000-0001-7951-0692"}], "homepage": "https://data.aussda.at", "identifier": 3075, "description": "AUSSDA Dataverse is a research data repository running on the open source web application Dataverse. The archive makes it possible to find, share, preserve and cite data. AUSSDA archives a wide variety of social sciences data, with a focus on quantitative research methods and data. As of 2020, it stores more than 2,000 files of social sciences research data on topics such as political behavior and attitudes, social stratification, labor market and employment. AUSSDA is the national service provider for Austria in the Consortium of European Social Science Data Archives CESSDA ERIC.", "abbreviation": "AUSSDA Dataverse", "year-creation": 2017, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010483", "name": "re3data:r3d100010483", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001583", "bsg-d001583"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Humanities and Social Science"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Austria"], "name": "FAIRsharing record for: AUSSDA Dataverse", "abbreviation": "AUSSDA Dataverse", "url": "https://fairsharing.org/10.25504/FAIRsharing.RJ3PDJ", "doi": "10.25504/FAIRsharing.RJ3PDJ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AUSSDA Dataverse is a research data repository running on the open source web application Dataverse. The archive makes it possible to find, share, preserve and cite data. AUSSDA archives a wide variety of social sciences data, with a focus on quantitative research methods and data. As of 2020, it stores more than 2,000 files of social sciences research data on topics such as political behavior and attitudes, social stratification, labor market and employment. AUSSDA is the national service provider for Austria in the Consortium of European Social Science Data Archives CESSDA ERIC.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3077", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-20T16:47:02.000Z", "updated-at": "2021-12-06T10:48:50.803Z", "metadata": {"doi": "10.25504/FAIRsharing.M2wo0O", "name": "OpenAltimetry", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@openaltimetry.org"}], "homepage": "https://openaltimetry.org/", "citations": [{"publication-id": 3069}], "identifier": 3077, "description": "OpenAltimetry is a cyberinfrastructure platform for discovery, access, and visualization of data from NASA\u2019s ICESat and ICESat-2 missions. These laser profiling altimeters are being used to measure changes in the topography of Earth\u2019s ice sheets, vegetation canopy structure, and clouds and aerosols. A new paradigm for data access was required to serve the needs of a diverse scientific community seeking to take advantage of these unique observations. OpenAltimetry, which is the product of a collaboration between UNAVCO, the National Snow and Ice Data Center (NSIDC), the Scripps Institution of Oceanography and San Diego Supercomputer Center at UC San Diego, was custom-built to meet these needs.", "abbreviation": "OpenAltimetry", "access-points": [{"url": "https://openaltimetry.org/data/swagger-ui/", "name": "OpenTopography API", "type": "REST"}], "support-links": [{"url": "https://openaltimetry.org/contact.html", "name": "Contact", "type": "Contact form"}, {"url": "https://openaltimetry.org/about.html", "name": "About the Project", "type": "Help documentation"}, {"url": "https://openaltimetry.org/datainfo.html", "name": "About the Data", "type": "Help documentation"}, {"url": "https://twitter.com/openaltimetry", "name": "OpenAltimetry Twitter", "type": "Twitter"}], "data-processes": [{"url": "https://openaltimetry.org/", "name": "OpenAltimetry Web Interface", "type": "data access"}, {"url": "https://openaltimetry.org/data/icesat/", "name": "Browse ICESAT Data", "type": "data access"}, {"url": "https://openaltimetry.org/data/icesat2/", "name": "Browse ICESAT-2 Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012504", "name": "re3data:r3d100012504", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001585", "bsg-d001585"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geoinformatics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere", "Topography"], "countries": ["United States"], "name": "FAIRsharing record for: OpenAltimetry", "abbreviation": "OpenAltimetry", "url": "https://fairsharing.org/10.25504/FAIRsharing.M2wo0O", "doi": "10.25504/FAIRsharing.M2wo0O", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OpenAltimetry is a cyberinfrastructure platform for discovery, access, and visualization of data from NASA\u2019s ICESat and ICESat-2 missions. These laser profiling altimeters are being used to measure changes in the topography of Earth\u2019s ice sheets, vegetation canopy structure, and clouds and aerosols. A new paradigm for data access was required to serve the needs of a diverse scientific community seeking to take advantage of these unique observations. OpenAltimetry, which is the product of a collaboration between UNAVCO, the National Snow and Ice Data Center (NSIDC), the Scripps Institution of Oceanography and San Diego Supercomputer Center at UC San Diego, was custom-built to meet these needs.", "publications": [{"id": 3069, "pubmed_id": null, "title": "OpenAltimetry - rapid analysis and visualization of Spaceborne altimeter data", "year": 2020, "url": "https://doi.org/10.1007/s12145-020-00520-2", "authors": "Siri Jodha S. Khalsa, Adrian Borsa, Viswanath Nandigam, Minh Phan, Kai Lin, Christopher Crosby, Helen Fricker, Chaitan Baru, Luis Lopez", "journal": "Earth Science Informatics", "doi": null, "created_at": "2021-09-30T08:28:18.200Z", "updated_at": "2021-09-30T08:28:18.200Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1821", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.361Z", "metadata": {"doi": "10.25504/FAIRsharing.yp3rcg", "name": "Eukaryotic Paralog Group Database", "status": "deprecated", "contacts": [{"contact-name": "Guohui Ding", "contact-email": "ghding@gmail.com"}], "homepage": "http://epgd.biosino.org/EPGD/", "identifier": 1821, "description": "The database is gene-centered and organized by paralog family. It focused on the paralogs and the duplication events in the evolution. The paralog families and paralogons can be searched by text or sequence, and are downloadable from the website in plain text files.", "abbreviation": "EPGD", "support-links": [{"url": "http://epgd.biosino.org/EPGD/help.jsp", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://epgd.biosino.org/EPGD/download.jsp", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://epgd.biosino.org/EPGD/search/adseqsearch.jsp", "name": "advanced search"}, {"url": "http://epgd.biosino.org/EPGD/search/adseqsearch.jsp", "name": "advanced search"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000281", "bsg-d000281"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Gene"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Eukaryotic Paralog Group Database", "abbreviation": "EPGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.yp3rcg", "doi": "10.25504/FAIRsharing.yp3rcg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database is gene-centered and organized by paralog family. It focused on the paralogs and the duplication events in the evolution. The paralog families and paralogons can be searched by text or sequence, and are downloadable from the website in plain text files.", "publications": [{"id": 344, "pubmed_id": 17984073, "title": "EPGD: a comprehensive web resource for integrating and displaying eukaryotic paralog/paralogon information.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm924", "authors": "Ding G., Sun Y., Li H., Wang Z., Fan H., Wang C., Yang D., Li Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm924", "created_at": "2021-09-30T08:22:57.074Z", "updated_at": "2021-09-30T08:22:57.074Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 279, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2041", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:09.627Z", "metadata": {"doi": "10.25504/FAIRsharing.f63h4k", "name": "NARCIS", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "narcis@dans.knaw.nl"}], "homepage": "http://www.narcis.nl/?Language=en", "citations": [], "identifier": 2041, "description": "NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", "abbreviation": "NARCIS", "support-links": [{"url": "https://www.narcis.nl/faq/Language/en", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2004, "data-processes": [{"url": "http://www.narcis.nl/data/Language/en", "name": "Submit", "type": "data curation"}, {"url": "https://www.narcis.nl/?Language=en", "name": "Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000508", "bsg-d000508"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Bibliography", "Publication", "Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: NARCIS", "abbreviation": "NARCIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.f63h4k", "doi": "10.25504/FAIRsharing.f63h4k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1773, "relation": "undefined"}, {"licence-name": "Data Archiving and Networked Services Disclaimer", "licence-id": 215, "link-id": 1774, "relation": "undefined"}, {"licence-name": "Data Archiving and Networked Services (DANS) Privacy Policy", "licence-id": 214, "link-id": 1775, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2553", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-03T20:06:41.000Z", "updated-at": "2021-12-06T10:47:57.814Z", "metadata": {"doi": "10.25504/FAIRsharing.4vsxkr", "name": "Climate Data Guide", "status": "ready", "homepage": "https://climatedataguide.ucar.edu", "identifier": 2553, "description": "The Climate Data Guide provides concise and reliable information on the strengths and limitations of the key observational data sets, tools and methods used to evaluate Earth system models and to understand the climate system. Citable expert commentaries are authored by experienced data users and developers, enabling scientists to multiply the impacts of their work and the diverse user community to access and understand the essential data. The Climate Data Guide was named an exemplary community resource by the 2012 U.S. National Academies' report, A National Strategy for Advancing Climate Modeling, and is an element of the strategic plan for NCAR's Climate and Global Dynamics Laboratory. NCAR, the National Center for Atmospheric Research, is located in Boulder, Colorado and is widely respected as a leading institution in the atmospheric and related sciences.", "support-links": [{"url": "https://climatedataguide.ucar.edu/content/suggestcontact", "name": "Contact and Feedback", "type": "Contact form"}, {"url": "https://climatedataguide.ucar.edu/climate-model-evaluation", "name": "Climate Model Evaluation", "type": "Help documentation"}, {"url": "https://climatedataguide.ucar.edu/experts", "name": "Expert Contributors", "type": "Help documentation"}, {"url": "https://climatedataguide.ucar.edu/about", "name": "About the Climate Data Guide", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://climatedataguide.ucar.edu/about/contribute-climate-data-guide", "name": "Data Submission", "type": "data curation"}, {"url": "https://climatedataguide.ucar.edu/climate-data", "name": "Browse Data", "type": "data access"}], "associated-tools": [{"url": "https://climatedataguide.ucar.edu/climate-data-tools-and-analysis", "name": "Analysis Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012500", "name": "re3data:r3d100012500", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001036", "bsg-d001036"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science"], "domains": ["Climate", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Climate Data Guide", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.4vsxkr", "doi": "10.25504/FAIRsharing.4vsxkr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Climate Data Guide provides concise and reliable information on the strengths and limitations of the key observational data sets, tools and methods used to evaluate Earth system models and to understand the climate system. Citable expert commentaries are authored by experienced data users and developers, enabling scientists to multiply the impacts of their work and the diverse user community to access and understand the essential data. The Climate Data Guide was named an exemplary community resource by the 2012 U.S. National Academies' report, A National Strategy for Advancing Climate Modeling, and is an element of the strategic plan for NCAR's Climate and Global Dynamics Laboratory. NCAR, the National Center for Atmospheric Research, is located in Boulder, Colorado and is widely respected as a leading institution in the atmospheric and related sciences.", "publications": [{"id": 2042, "pubmed_id": null, "title": "Climate Data Guide Spurs Discovery and Understanding", "year": 2013, "url": "http://doi.org/10.1002/2013EO130001", "authors": "David P. Schneider, Clara Deser, John Fasullo, Kevin E. Trenb", "journal": "EOS Earth and Space Science News", "doi": "10.1002/2013EO130001", "created_at": "2021-09-30T08:26:10.031Z", "updated_at": "2021-09-30T08:26:10.031Z"}], "licence-links": [{"licence-name": "UCAR Terms of Use", "licence-id": 800, "link-id": 1957, "relation": "undefined"}, {"licence-name": "UCAR Privacy Policy", "licence-id": 799, "link-id": 1958, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2554", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-10T17:42:18.000Z", "updated-at": "2021-12-06T10:48:48.556Z", "metadata": {"doi": "10.25504/FAIRsharing.kqbg3s", "name": "Integrated Resource for Reproducibility in Macromolecular Crystallography", "status": "ready", "contacts": [{"contact-name": "Wladek Minor Lab", "contact-email": "support@protein.diffraction.org", "contact-orcid": "0000-0002-8072-4919"}], "homepage": "https://proteindiffraction.org", "citations": [{"doi": "10.1107/S2059798316014716", "pubmed-id": 27841751, "publication-id": 2094}], "identifier": 2554, "description": "The Integrated Resource for Reproducibility in Macromolecular Crystallography (IRRMC) was created to make the raw data of protein crystallography more widely available. The IRRMC identifies, catalogs and provides metadata related to datasets that could be used to reprocess the original diffraction data. The intent of this project is to make the resulting three-dimensional structures more reproducible and easier to modify and improve as processing methods advance.", "abbreviation": "IRRMC", "support-links": [{"url": "https://proteindiffraction.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://proteindiffraction.org/statistics/", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://proteindiffraction.org/submit-data/select", "name": "Data Deposition", "type": "data curation"}, {"url": "https://proteindiffraction.org/browse/", "name": "Browse Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012269", "name": "re3data:r3d100012269", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001037", "bsg-d001037"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein structure", "Experimental measurement", "X-ray diffraction", "X-ray crystallography assay", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Resource for Reproducibility in Macromolecular Crystallography", "abbreviation": "IRRMC", "url": "https://fairsharing.org/10.25504/FAIRsharing.kqbg3s", "doi": "10.25504/FAIRsharing.kqbg3s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Resource for Reproducibility in Macromolecular Crystallography (IRRMC) was created to make the raw data of protein crystallography more widely available. The IRRMC identifies, catalogs and provides metadata related to datasets that could be used to reprocess the original diffraction data. The intent of this project is to make the resulting three-dimensional structures more reproducible and easier to modify and improve as processing methods advance.", "publications": [{"id": 645, "pubmed_id": 31768399, "title": "The Integrated Resource for Reproducibility in Macromolecular Crystallography: Experiences of the first four years.", "year": 2019, "url": "http://doi.org/10.1063/1.5128672", "authors": "Grabowski M,Cymborowski M,Porebski PJ,Osinski T,Shabalin IG,Cooper DR,Minor W", "journal": "Struct Dyn", "doi": "10.1063/1.5128672", "created_at": "2021-09-30T08:23:30.994Z", "updated_at": "2021-09-30T08:23:30.994Z"}, {"id": 2094, "pubmed_id": 27841751, "title": "A public database of macromolecular diffraction experiments.", "year": 2016, "url": "http://doi.org/10.1107/S2059798316014716", "authors": "Grabowski M,Langner KM,Cymborowski M,Porebski PJ,Sroka P,Zheng H,Cooper DR,Zimmerman MD,Elsliger MA,Burley SK,Minor W", "journal": "Acta Crystallogr D Struct Biol", "doi": "10.1107/S2059798316014716", "created_at": "2021-09-30T08:26:15.982Z", "updated_at": "2021-09-30T08:26:15.982Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2074, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3280", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-12T08:47:01.000Z", "updated-at": "2021-11-24T13:13:59.030Z", "metadata": {"doi": "10.25504/FAIRsharing.rOCqic", "name": "HIV and COVID-19 Registry in Europe", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "NEAT-ID@NEAT-ID.org"}], "homepage": "https://www.neat-id.org/", "identifier": 3280, "description": "In March the NEAT ID Foundation initiated the development of a simple Data \u201cDashboard\u201d to monitor the progress of COVID-19 in HIV infected patients across Europe in real time. The Dashboard shows at European and Country level the number of cases reported to NEAT ID with COVID-19 co-infection with HIV, the number of hospitalisations and the number of deaths (from sites who have contributed to date).", "support-links": [{"url": "https://www.neat-id.org/contact", "type": "Contact form"}, {"url": "https://neat-id.knack.com/neat-id-covid-19#add-new-cases-login/add-new-cases/", "name": "Add new cases", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://neat-id.knack.com/neat-id-covid-19#home/", "name": "Dashboard", "type": "data access"}]}, "legacy-ids": ["biodbcore-001795", "bsg-d001795"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "Human immunodeficiency virus", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["European Union"], "name": "FAIRsharing record for: HIV and COVID-19 Registry in Europe", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.rOCqic", "doi": "10.25504/FAIRsharing.rOCqic", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In March the NEAT ID Foundation initiated the development of a simple Data \u201cDashboard\u201d to monitor the progress of COVID-19 in HIV infected patients across Europe in real time. The Dashboard shows at European and Country level the number of cases reported to NEAT ID with COVID-19 co-infection with HIV, the number of hospitalisations and the number of deaths (from sites who have contributed to date).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2650", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-07T21:22:33.000Z", "updated-at": "2022-02-08T10:47:06.613Z", "metadata": {"doi": "10.25504/FAIRsharing.5a3bc5", "name": "International Clinical Trials Registry Platform", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ictrpinfo@who.int"}], "homepage": "http://www.who.int/ictrp/en/", "identifier": 2650, "description": "ICTRP is a depository of clinical trials to enable the health and scientific community to have access of clinical studies.", "abbreviation": "ICTRP", "support-links": [{"url": "https://www.who.int/ictrp/news/en/", "name": "Neww & Events", "type": "Blog/News"}, {"url": "http://apps.who.int/trialsearch/Contact.aspx", "name": "contact form", "type": "Contact form"}, {"url": "karamg@who.int", "type": "Support email"}, {"url": "http://www.who.int/ictrp/faq/en/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.who.int/ictrp/news/newsletter_subscribe/en/", "name": "Mailing list", "type": "Mailing list"}, {"url": "https://www.hug-ge.ch/sites/interhug/files/structures/epidemiologie_clinique/ghassan_karam_ictrp_geneva.pdf", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://apps.who.int/trialsearch/", "name": "Search", "type": "data access"}, {"url": "https://www.who.int/docs/default-source/coronaviruse/covid-19-trials.xls?sfvrsn=a8be2a0a_6&ua=1", "name": "Download all COVID-19 trials from the ICTRP database", "type": "data access"}, {"url": "https://www.who.int/ictrp/data/en/", "name": "Download all new/updated records from the ICTRP database", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012586", "name": "re3data:r3d100012586", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004475", "name": "SciCrunch:RRID:SCR_004475", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001141", "bsg-d001141"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Safety study", "Non-randomized controlled trials"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: International Clinical Trials Registry Platform", "abbreviation": "ICTRP", "url": "https://fairsharing.org/10.25504/FAIRsharing.5a3bc5", "doi": "10.25504/FAIRsharing.5a3bc5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ICTRP is a depository of clinical trials to enable the health and scientific community to have access of clinical studies.", "publications": [{"id": 2281, "pubmed_id": 22021789, "title": "Pharmacokinetic research in children: an analysis of registered records of clinical trials.", "year": 2011, "url": "http://doi.org/10.1136/bmjopen-2011-000221", "authors": "Viergever RF,Rademaker CM,Ghersi D", "journal": "BMJ Open", "doi": "10.1136/bmjopen-2011-000221", "created_at": "2021-09-30T08:26:37.891Z", "updated_at": "2021-09-30T08:26:37.891Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3036", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-19T12:29:48.000Z", "updated-at": "2022-02-08T10:41:09.065Z", "metadata": {"doi": "10.25504/FAIRsharing.5b85dc", "name": "Satellite Application Facility on Climate Monitoring", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "contact.cmsaf@dwd.de"}], "homepage": "https://www.cmsaf.eu/EN/Home/home_node.html", "identifier": 3036, "description": "The Satellite Application Facility on Climate Monitoring (CM SAF) develops, produces, archives and disseminates satellite-data-based products in support to climate monitoring. The product suite mainly covers parameters related to the energy & water cycle and addresses many of the Essential Climate Variables. The CM SAF produces both Enviromental Data Records and Climate Data Records.", "abbreviation": "CM SAF", "support-links": [{"url": "https://www.cmsaf.eu/EN/News/news_node.html", "name": "News", "type": "Blog/News"}, {"url": "https://www.cmsaf.eu/EN/Service/FAQs/faq_node.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.cmsaf.eu/EN/Service/Glossary/glossary_node.html", "name": "Glossary", "type": "Help documentation"}, {"url": "https://www.cmsaf.eu/EN/Service/Newsletter/Newsletter_node.html", "name": "Newsletter", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "https://wui.cmsaf.eu/safira/action/viewProduktSearch;jsessionid=37C3D13E49C1940921ED224EDF6DB13D.ku_1", "name": "Browse & search", "type": "data access"}], "associated-tools": [{"url": "https://www.cmsaf.eu/EN/Products/Tools/R/R_node.html", "name": "CM SAF R Toolbox"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011659", "name": "re3data:r3d100011659", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001544", "bsg-d001544"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Data"], "countries": ["Germany"], "name": "FAIRsharing record for: Satellite Application Facility on Climate Monitoring", "abbreviation": "CM SAF", "url": "https://fairsharing.org/10.25504/FAIRsharing.5b85dc", "doi": "10.25504/FAIRsharing.5b85dc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Satellite Application Facility on Climate Monitoring (CM SAF) develops, produces, archives and disseminates satellite-data-based products in support to climate monitoring. The product suite mainly covers parameters related to the energy & water cycle and addresses many of the Essential Climate Variables. The CM SAF produces both Enviromental Data Records and Climate Data Records.", "publications": [], "licence-links": [{"licence-name": "CMSAF Disclaimer & Acknowledgement", "licence-id": 136, "link-id": 1934, "relation": "undefined"}, {"licence-name": "Deutscher Wetterdienst Data protection", "licence-id": 237, "link-id": 1935, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2320", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T15:21:23.000Z", "updated-at": "2021-11-24T13:14:51.654Z", "metadata": {"doi": "10.25504/FAIRsharing.j9mm09", "name": "Atlases - Pathology images", "status": "ready", "contacts": [{"contact-name": "Lukas Hejtmanek", "contact-email": "xhejtman@ics.muni.cz"}], "homepage": "http://atlases.muni.cz", "identifier": 2320, "description": "A collection of high resolution histological images from contributors across the Czech Republic."}, "legacy-ids": ["biodbcore-000796", "bsg-d000796"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Bioimaging", "Histology"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Atlases - Pathology images", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.j9mm09", "doi": "10.25504/FAIRsharing.j9mm09", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of high resolution histological images from contributors across the Czech Republic.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3090", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-27T15:32:25.000Z", "updated-at": "2021-12-06T10:47:34.081Z", "metadata": {"name": "Total Carbon Column Observing Network Data Archive", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "tccon_help@gps.caltech.edu"}], "homepage": "https://tccondata.org/", "identifier": 3090, "description": "TCCON is a network of ground-based Fourier Transform Spectrometers recording direct solar spectra in the near infrared spectral region. From these spectra, accurate and precise column-averaged abundances of CO2, CH4, N2O, HF, CO, H2O, and HDO are retrieved and reported here. A technical report describing the retrievals is found here; solar and telluric spectral linelists used in the retrievals are publically available.", "abbreviation": "TCCON Data Archive", "access-points": [{"url": "https://data.caltech.edu/api/records/?q=cal_keyword=%22tccon%22", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://tccon-wiki.caltech.edu/", "name": "Wiki", "type": "Help documentation"}], "data-processes": [{"url": "https://doi.org/10.14291/TCCON.GGG2014", "name": "Download 2014 TCCON Data Release", "type": "data release"}, {"url": "https://tccondata.org/2012", "name": "Download 2012 TCCON Data Release", "type": "data release"}, {"url": "https://tccondata.org/2009", "name": "Download 2009 TCCON Data Release", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012403", "name": "re3data:r3d100012403", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001598", "bsg-d001598"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Carbon", "spectrometer"], "countries": ["United States"], "name": "FAIRsharing record for: Total Carbon Column Observing Network Data Archive", "abbreviation": "TCCON Data Archive", "url": "https://fairsharing.org/fairsharing_records/3090", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TCCON is a network of ground-based Fourier Transform Spectrometers recording direct solar spectra in the near infrared spectral region. From these spectra, accurate and precise column-averaged abundances of CO2, CH4, N2O, HF, CO, H2O, and HDO are retrieved and reported here. A technical report describing the retrievals is found here; solar and telluric spectral linelists used in the retrievals are publically available.", "publications": [], "licence-links": [{"licence-name": "TCCON Data Use Policy", "licence-id": 773, "link-id": 348, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3065", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-07T07:59:21.000Z", "updated-at": "2022-02-08T10:41:40.627Z", "metadata": {"doi": "10.25504/FAIRsharing.e0d571", "name": "GFZ Data Services", "status": "ready", "contacts": [{"contact-name": "Kirsten Elger", "contact-email": "kelger@gfz-potsdam.de", "contact-orcid": "0000-0001-5140-8602"}], "homepage": "https://dataservices.gfz-potsdam.de/portal/", "identifier": 3065, "description": "Since 2004, the GFZ German Research Centre for Geosciences assigns Digital Object Identifiers (DOI) to datasets. These datasets are archived by and published through GFZ Data Services and cover all geoscientific disciplines. They range from large dynamic datasets deriving from data intensive global monitoring networks with real-time data acquisition to the full suite of highly variable datasets collected by individual researchers or small teams. These highly variable data (\u2018long-tail data\u2019) are small in size, but represent an important part of the total scientific output.", "abbreviation": "GFZ Data Services", "support-links": [{"url": "https://dataservices.gfz-potsdam.de/panmetaworks/metaedit/resources/pdf/Quick-Start-Guide-fo-Data-Publications-GFZ-Data-Services.pdf", "name": "Quick Start Guide for Data Publications", "type": "Help documentation"}, {"url": "https://dataservices.gfz-potsdam.de/panmetaworks/metaedit/resources/pdf/GFZ-Metadata-Editor_functionality_20161002.pdf", "name": "GFZ Metadata Editor: How to navigate through the form", "type": "Help documentation"}, {"url": "https://dataservices.gfz-potsdam.de/panmetaworks/metaedit/resources/pdf/Metadata-Form-Documentation_20161002.pdf", "name": "Explanation for Metadata Fields used by GFZ Data Services", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://dataservices.gfz-potsdam.de/panmetaworks/metaedit/", "name": "Submit", "type": "data curation"}, {"url": "https://dataservices.gfz-potsdam.de/portal/index.html", "name": "Search & browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012335", "name": "re3data:r3d100012335", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001573", "bsg-d001573"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: GFZ Data Services", "abbreviation": "GFZ Data Services", "url": "https://fairsharing.org/10.25504/FAIRsharing.e0d571", "doi": "10.25504/FAIRsharing.e0d571", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Since 2004, the GFZ German Research Centre for Geosciences assigns Digital Object Identifiers (DOI) to datasets. These datasets are archived by and published through GFZ Data Services and cover all geoscientific disciplines. They range from large dynamic datasets deriving from data intensive global monitoring networks with real-time data acquisition to the full suite of highly variable datasets collected by individual researchers or small teams. These highly variable data (\u2018long-tail data\u2019) are small in size, but represent an important part of the total scientific output.", "publications": [], "licence-links": [{"licence-name": "GFZ Data Services Terms of Use", "licence-id": 341, "link-id": 1999, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1894", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.100Z", "metadata": {"doi": "10.25504/FAIRsharing.88b6b5", "name": "Protein Classification Benchmark Collection", "status": "deprecated", "contacts": [{"contact-email": "benchmark@icgeb.org"}], "homepage": "http://net.icgeb.org/benchmark/", "identifier": 1894, "description": "The Protein Classification Benchmark Collection was created in order to create standard datasets on which the performance of machine learning methods can be compared.", "support-links": [{"url": "http://net.icgeb.org/benchmark/index.php?page=30", "type": "Help documentation"}, {"url": "http://net.icgeb.org/benchmark/index.php?page=01", "type": "Help documentation"}], "year-creation": 2006, "associated-tools": [{"url": "http://net.icgeb.org/benchmark/index.php?page=10", "name": "browse"}, {"url": "http://net.icgeb.org/benchmark/index.php?page=60", "name": "submit"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000359", "bsg-d000359"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Classification", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Protein Classification Benchmark Collection", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.88b6b5", "doi": "10.25504/FAIRsharing.88b6b5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Classification Benchmark Collection was created in order to create standard datasets on which the performance of machine learning methods can be compared.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2529", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-19T05:00:53.000Z", "updated-at": "2021-12-13T15:22:11.337Z", "metadata": {"doi": "10.25504/FAIRsharing.64mr5a", "name": "NASA GeneLab", "status": "in_development", "contacts": [{"contact-name": "Sylvain Costes", "contact-email": "sylvain.v.costes@nasa.gov", "contact-orcid": "0000-0002-8542-2389"}], "homepage": "https://genelab.nasa.gov/", "citations": [{"doi": "10.1093/nar/gkaa887", "pubmed-id": 33080015, "publication-id": 195}], "identifier": 2529, "description": "NASA GeneLab expands scientists\u2019 access to experiments that explore the molecular response of terrestrial biology to spaceflight environments. The vast amounts of raw data generated by experiments aboard the International Space Station are being made available to a worldwide community of scientists and computational researchers.", "abbreviation": "genelab", "support-links": [{"url": "https://genelab.nasa.gov/faq/", "name": "GeneLab FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/help/GeneLab_User_Manual_2.0.pdf", "name": "User Manual", "type": "Help documentation"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/help/GeneLab_Submission_Guide_2.0.pdf", "name": "Data Submission Guide", "type": "Help documentation"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/ISA/GeneLab_Metadata_Tutorial.pdf", "name": "GeneLab ISA Creator Tutorial", "type": "Help documentation"}, {"url": "https://genelab.nasa.gov/about/", "name": "About GeneLab", "type": "Help documentation"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/help/Whats_New_GL.pdf", "name": "What's New in GeneLab", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://genelab-data.ndc.nasa.gov/genelab/projects?page=1&paginate_by=25", "name": "Browse and Search Data", "type": "data access"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/submissions", "name": "GEODE (GeneLab Environment for Online Data Entry)", "type": "data curation"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/submissions", "name": "GEODE (GeneLab Environment for Online Data Entry)", "type": "data versioning"}, {"url": "https://genelab-data.ndc.nasa.gov/genelab/submissions", "name": "GEODE (GeneLab Environment for Online Data Entry)", "type": "data release"}], "associated-tools": [{"url": "http://www.genomespace.org", "name": "GenomeSpace beta4"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013680", "name": "re3data:r3d100013680", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_017658", "name": "SciCrunch:RRID:SCR_017658", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001012", "bsg-d001012"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Genomics", "Epigenetics", "Proteomics", "Life Science", "Metabolomics", "Transcriptomics", "Systems Biology"], "domains": ["Omics data analysis"], "taxonomies": ["Acinetobacter pittii", "Arabidopsis thaliana", "Aspergillus fumigatus", "Aspergillus niger", "Aspergillus terreus", "Aureobasidium pullulans", "Bacillus", "Bacillus subtilis", "Beauveria bassiana", "Brassica rapa", "Caenorhabditis elegans", "Candida albicans", "Ceratopteris richardii", "Cladosporium cladosporioides", "Cladosporium sphaerospermum", "Danio rerio", "Daphnia magna", "Drosophila melanogaster", "Enterobacter", "Enterobacteria phage lambda", "environmental samples", "Escherichia coli", "Euprymna scolopes", "Fusarium solani", "Homo sapiens", "Klebsiella", "Microbiota", "Mus musculus", "Mycobacterium marinum", "Oryzias latipes", "Pantoea conspicua", "Pseudomonas aeruginosa", "Rattus norvegicus", "Rhodospirillum rubrum", "Saccharomyces cerevisiae", "Staphylococcus", "Staphylococcus aureus", "Streptococcus mutans", "Trichoderma virens"], "user-defined-tags": ["Multi-omics"], "countries": ["United States"], "name": "FAIRsharing record for: NASA GeneLab", "abbreviation": "genelab", "url": "https://fairsharing.org/10.25504/FAIRsharing.64mr5a", "doi": "10.25504/FAIRsharing.64mr5a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NASA GeneLab expands scientists\u2019 access to experiments that explore the molecular response of terrestrial biology to spaceflight environments. The vast amounts of raw data generated by experiments aboard the International Space Station are being made available to a worldwide community of scientists and computational researchers.", "publications": [{"id": 185, "pubmed_id": 30815061, "title": "FAIRness and Usability for Open-access Omics Data Systems.", "year": 2019, "url": "https://www.ncbi.nlm.nih.gov/pubmed/30815061", "authors": "Berrios DC,Beheshti A,Costes SV", "journal": "AMIA Annu Symp Proc", "doi": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6371294/", "created_at": "2021-09-30T08:22:40.272Z", "updated_at": "2021-09-30T08:22:40.272Z"}, {"id": 195, "pubmed_id": 33080015, "title": "NASA GeneLab: interfaces for the exploration of space omics data.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa887", "authors": "Berrios DC,Galazka J,Grigorev K,Gebre S,Costes SV", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa887", "created_at": "2021-09-30T08:22:41.345Z", "updated_at": "2021-09-30T11:28:43.941Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1812", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:10.852Z", "metadata": {"doi": "10.25504/FAIRsharing.hpyy7d", "name": "Knottin database", "status": "ready", "contacts": [{"contact-email": "chiche@cbs.cnrs.fr"}], "homepage": "http://knottin.cbs.cnrs.fr/", "identifier": 1812, "description": "The KNOTTIN database provides standardized data on the knottin structural family (also referred to as the \"Inhibitor Cystine Knot (ICK) motif/family/fold\").", "abbreviation": "KNOTTIN", "support-links": [{"url": "http://knottin.cbs.cnrs.fr/DOC.php#ancreTOP", "type": "Help documentation"}], "associated-tools": [{"url": "http://knottin.cbs.cnrs.fr/BL.php", "name": "BLAST"}, {"url": "http://knottin.cbs.cnrs.fr/SK.php", "name": "search"}, {"url": "http://knottin.cbs.cnrs.fr/BL.php", "name": "BLAST"}, {"url": "http://knottin.cbs.cnrs.fr/SK.php", "name": "search"}]}, "legacy-ids": ["biodbcore-000272", "bsg-d000272"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Small molecule", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Knottin database", "abbreviation": "KNOTTIN", "url": "https://fairsharing.org/10.25504/FAIRsharing.hpyy7d", "doi": "10.25504/FAIRsharing.hpyy7d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The KNOTTIN database provides standardized data on the knottin structural family (also referred to as the \"Inhibitor Cystine Knot (ICK) motif/family/fold\").", "publications": [{"id": 323, "pubmed_id": 18025039, "title": "KNOTTIN: the knottin or inhibitor cystine knot scaffold in 2007.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm939", "authors": "Gracy J., Le-Nguyen D., Gelly JC., Kaas Q., Heitz A., Chiche L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm939", "created_at": "2021-09-30T08:22:54.674Z", "updated_at": "2021-09-30T08:22:54.674Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2002", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.514Z", "metadata": {"doi": "10.25504/FAIRsharing.xwqg9h", "name": "NIA Mouse cDNA Project", "status": "deprecated", "contacts": [{"contact-name": "Dawood B. Dudekula", "contact-email": "dawood@helix.nih.gov", "contact-orcid": "0000-0002-4054-1827"}], "homepage": "http://lgsun.grc.nia.nih.gov/cDNA/cDNA.html", "identifier": 2002, "description": "A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells was assembled. The cDNA libraries are freely distributed to the research community, providing a standard platform for expression studies using microarrays.", "abbreviation": "niaEST", "year-creation": 2002, "data-processes": [{"url": "http://lgsun.grc.nia.nih.gov/data/", "name": "Download", "type": "data access"}, {"url": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro1", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://lgsun.grc.nia.nih.gov/ANOVA/", "name": "analyze"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000468", "bsg-d000468"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Complementary DNA"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIA Mouse cDNA Project", "abbreviation": "niaEST", "url": "https://fairsharing.org/10.25504/FAIRsharing.xwqg9h", "doi": "10.25504/FAIRsharing.xwqg9h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells was assembled. The cDNA libraries are freely distributed to the research community, providing a standard platform for expression studies using microarrays.", "publications": [{"id": 1624, "pubmed_id": 14744099, "title": "The NIA cDNA project in mouse stem cells and early embryos.", "year": 2004, "url": "http://doi.org/10.1016/j.crvi.2003.09.008", "authors": "Carter MG,Piao Y,Dudekula DB,Qian Y,VanBuren V,Sharov AA,Tanaka TS,Martin PR,Bassey UC,Stagg CA,Aiba K,Hamatani T,Matoba R,Kargul GJ,Ko MS", "journal": "C R Biol", "doi": "10.1016/j.crvi.2003.09.008", "created_at": "2021-09-30T08:25:22.036Z", "updated_at": "2021-09-30T08:25:22.036Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2444", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-21T11:50:46.000Z", "updated-at": "2021-11-24T13:20:07.197Z", "metadata": {"doi": "10.25504/FAIRsharing.eacagy", "name": "NERC British Atmospheric Data Centre Data Archive", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "support@ceda.ac.uk"}], "homepage": "https://badc.nerc.ac.uk/home/index.html", "identifier": 2444, "description": "The British Atmospheric Data Centre (BADC) is the Natural Environment Research Council's (NERC) Designated Data Centre for the Atmospheric Sciences. The role of the BADC is to assist UK atmospheric researchers to locate, access and interpret atmospheric data and to ensure the long-term integrity of atmospheric data produced by NERC projects.", "abbreviation": "BADC", "support-links": [{"url": "http://www.nerc.ac.uk/research/sites/data/doi/", "name": "NERC DOI Information", "type": "Help documentation"}], "data-processes": [{"url": "https://badc.nerc.ac.uk/search/", "name": "search", "type": "data access"}, {"url": "https://badc.nerc.ac.uk/data/submit.html", "name": "submit", "type": "data curation"}], "deprecation-date": "2019-06-12", "deprecation-reason": "Since November 2016, the functions of the British Atmospheric Data Centre (BADC) and the NERC Earth Observation Data Centre (NEODC) data centres are operated by the CEDA Archive (http://www.ceda.ac.uk/data-centres/)."}, "legacy-ids": ["biodbcore-000926", "bsg-d000926"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: NERC British Atmospheric Data Centre Data Archive", "abbreviation": "BADC", "url": "https://fairsharing.org/10.25504/FAIRsharing.eacagy", "doi": "10.25504/FAIRsharing.eacagy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The British Atmospheric Data Centre (BADC) is the Natural Environment Research Council's (NERC) Designated Data Centre for the Atmospheric Sciences. The role of the BADC is to assist UK atmospheric researchers to locate, access and interpret atmospheric data and to ensure the long-term integrity of atmospheric data produced by NERC projects.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3094", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-29T13:25:01.000Z", "updated-at": "2022-02-08T10:41:56.638Z", "metadata": {"doi": "10.25504/FAIRsharing.d95034", "name": "Integrated Climate Data Center", "status": "ready", "contacts": [{"contact-name": "Annika Jahnke-Bornemann", "contact-email": "annika.jahnke-bornemann@uni-hamburg.de", "contact-orcid": "0000-0001-7815-151X"}], "homepage": "https://icdc.cen.uni-hamburg.de/en/icdc.html", "identifier": 3094, "description": "The Integrated Climate Data Center (ICDC) allows easy access to climate relevant data from in-situ measurements and satellite remote sensing. These data are important to determine the status and the changes in the climate system. Some relevant re-analysis data are included, which are modeled on the basis of observational data.", "abbreviation": "ICDC", "access-points": [{"url": "http://icdc.cen.uni-hamburg.de/fileadmin/user_upload/icdc_Dokumente/thredds_opendap_tutorial_icdc.pdf", "name": "THREDDS / OPeNDAP Tutorial", "type": "Other"}], "support-links": [{"url": "https://icdc.cen.uni-hamburg.de/en/news-workshops.html", "name": "News & Workshops", "type": "Blog/News"}, {"url": "https://icdc.cen.uni-hamburg.de/en/news-workshops/news-archive.html", "name": "News Archive", "type": "Blog/News"}, {"url": "https://icdc.cen.uni-hamburg.de/en/beratung/tutorials/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://icdc.cen.uni-hamburg.de/en/beratung/tutorials/tutorials.html", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://icdc.cen.uni-hamburg.de/en/beratung/publications.html", "name": "Publications related to ICDC activities", "type": "Help documentation"}, {"url": "http://icdc.cen.uni-hamburg.de/fileadmin/user_upload/icdc_Dokumente/how_to_use_icdc.pdf", "name": "How to use the ICDC?", "type": "Help documentation"}, {"url": "https://www.clisap.de/clisap/about-us/news/?type=1394630603", "type": "Blog/News"}, {"url": "https://twitter.com/ICDC_Hamburg", "type": "Twitter"}], "data-processes": [{"url": "https://icdc.cen.uni-hamburg.de/en/all-data.html", "name": "Browse all Data", "type": "data access"}, {"url": "ftp://ftp-icdc.cen.uni-hamburg.de/", "name": "FTP Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010405", "name": "re3data:r3d100010405", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001602", "bsg-d001602"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Meteorology", "Earth Science", "Atmospheric Science", "Remote Sensing", "Oceanography"], "domains": ["Climate", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "ice", "Satellite Data", "snow"], "countries": ["Germany"], "name": "FAIRsharing record for: Integrated Climate Data Center", "abbreviation": "ICDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.d95034", "doi": "10.25504/FAIRsharing.d95034", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Climate Data Center (ICDC) allows easy access to climate relevant data from in-situ measurements and satellite remote sensing. These data are important to determine the status and the changes in the climate system. Some relevant re-analysis data are included, which are modeled on the basis of observational data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3267", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-07T14:25:40.000Z", "updated-at": "2021-12-06T10:47:41.526Z", "metadata": {"name": "Integrated Public Use Microdata Series - International", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ipums@umn.edu"}], "homepage": "https://international.ipums.org/international/index.shtml", "identifier": 3267, "description": "IPUMS-International is an effort to inventory, preserve, harmonize, and disseminate census microdata from around the world. The data are coded and documented consistently across countries and over time to facilitate comparative research. IPUMS-International makes these data available to qualified researchers free of charge through a web dissemination system.", "abbreviation": "IPUMS-International", "support-links": [{"url": "https://international.ipums.org/international/news.shtml#all_topics", "name": "News", "type": "Blog/News"}, {"url": "https://international.ipums.org/international-action/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://forum.ipums.org/", "type": "Forum"}, {"url": "https://international.ipums.org/international/tutorials.shtml", "name": "Video tutorials", "type": "Help documentation"}, {"url": "https://international.ipums.org/international/teaching.shtml", "name": "Teaching with IPUMS", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://international.ipums.org/international-action/variables/group", "name": "Browse & select", "type": "data access"}, {"url": "https://international.ipums.org/international/sda.shtml", "name": "Analyse data online", "type": "data access"}, {"url": "https://international.ipums.org/international-action/menu", "name": "Register", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011135", "name": "re3data:r3d100011135", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001782", "bsg-d001782"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Demographics", "Geography", "Humanities and Social Science", "Subject Agnostic"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["birth", "fertility", "Migration", "Mortality", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Public Use Microdata Series - International", "abbreviation": "IPUMS-International", "url": "https://fairsharing.org/fairsharing_records/3267", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IPUMS-International is an effort to inventory, preserve, harmonize, and disseminate census microdata from around the world. The data are coded and documented consistently across countries and over time to facilitate comparative research. IPUMS-International makes these data available to qualified researchers free of charge through a web dissemination system.", "publications": [], "licence-links": [{"licence-name": "IPUMS-International restrictions on use", "licence-id": 453, "link-id": 545, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3147", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T14:36:05.000Z", "updated-at": "2021-12-06T10:48:50.392Z", "metadata": {"doi": "10.25504/FAIRsharing.ltYWUS", "name": "Energy Data eXchange", "status": "ready", "contacts": [{"contact-name": "EDX Support", "contact-email": "EDXsupport@netl.doe.gov"}], "homepage": "https://edx.netl.doe.gov", "identifier": 3147, "description": "EDX is the Department of Energy (DOE)/Fossil Energy's (FE) virtual library and data laboratory built to find, connect, curate, use and re-use data to advance fossil energy and environmental R&D. EDX provides (1) long-term curation of both historic and current data and information from a wide variety of sources, (2) access to research across multiple NETL projects and programs and energy science needs, (3) discovery of data and information, including technical products from NETL-affiliated research, and (4) support for collaboration and coordination between various agencies, organizations, and institutions through EDX\u2019s Collaborative Workspaces. EDX has both public and private aspects to facilitate external and internal access to research. The public side of EDX supports discovery and access to publicly available data from NETL as well as open-access data from authoritative, external sources. The private side of EDX supports research collaboration and coordination using role-based security privileges and access rights.", "abbreviation": "EDX", "support-links": [{"url": "https://edx.netl.doe.gov/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://edx.netl.doe.gov/help", "name": "Help", "type": "Help documentation"}, {"url": "https://edx.netl.doe.gov/offshore/wp-content/uploads/2020/04/R-D184_2.pdf", "name": "Fact Sheet", "type": "Help documentation"}, {"url": "https://edx.netl.doe.gov/edx-admin/upload/image/8b37af0e-96d0-44b9-b5f2-50e3ebee6bbf/EDX_2_pager_6-16-20-Rev.pdf", "name": "EDX Flyer", "type": "Help documentation"}, {"url": "https://edx.netl.doe.gov/about", "name": "About", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://edx.netl.doe.gov/dataset/", "name": "Search", "type": "data access"}, {"url": "https://edx.netl.doe.gov/dataset/new", "name": "Submit", "type": "data access"}, {"url": "https://edx.netl.doe.gov/group/", "name": "Browse EDX Groups", "type": "data access"}, {"url": "https://edx.netl.doe.gov/portfolios/", "name": "Browse Portfolios", "type": "data access"}], "associated-tools": [{"url": "https://edx.netl.doe.gov/group/edx-tools", "name": "EDX Tool Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012574", "name": "re3data:r3d100012574", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001658", "bsg-d001658"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Geology", "Energy Engineering"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Fossil Fuel"], "countries": ["United States"], "name": "FAIRsharing record for: Energy Data eXchange", "abbreviation": "EDX", "url": "https://fairsharing.org/10.25504/FAIRsharing.ltYWUS", "doi": "10.25504/FAIRsharing.ltYWUS", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EDX is the Department of Energy (DOE)/Fossil Energy's (FE) virtual library and data laboratory built to find, connect, curate, use and re-use data to advance fossil energy and environmental R&D. EDX provides (1) long-term curation of both historic and current data and information from a wide variety of sources, (2) access to research across multiple NETL projects and programs and energy science needs, (3) discovery of data and information, including technical products from NETL-affiliated research, and (4) support for collaboration and coordination between various agencies, organizations, and institutions through EDX\u2019s Collaborative Workspaces. EDX has both public and private aspects to facilitate external and internal access to research. The public side of EDX supports discovery and access to publicly available data from NETL as well as open-access data from authoritative, external sources. The private side of EDX supports research collaboration and coordination using role-based security privileges and access rights.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2541", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-21T12:55:23.000Z", "updated-at": "2021-12-06T10:48:32.848Z", "metadata": {"doi": "10.25504/FAIRsharing.f7p410", "name": "RunMyCode", "status": "ready", "contacts": [], "homepage": "http://www.runmycode.org/", "citations": [], "identifier": 2541, "description": "RunMyCode is an online repository allowing people to share code and data associated with scientific publications. Its goal is to allow members of the academic community to replicate scientific results and to demonstrate the robustness of published code.", "abbreviation": "RunMyCode", "support-links": [{"url": "http://www.runmycode.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.runmycode.org/faq.html", "name": "Run My Code FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.runmycode.org/privacy-policy.html", "name": "Privacy Policy", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://www.runmycode.org/companion/create", "name": "Submit", "type": "data curation"}, {"url": "http://www.runmycode.org", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010418", "name": "re3data:r3d100010418", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014011", "name": "SciCrunch:RRID:SCR_014011", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001024", "bsg-d001024"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: RunMyCode", "abbreviation": "RunMyCode", "url": "https://fairsharing.org/10.25504/FAIRsharing.f7p410", "doi": "10.25504/FAIRsharing.f7p410", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RunMyCode is an online repository allowing people to share code and data associated with scientific publications. Its goal is to allow members of the academic community to replicate scientific results and to demonstrate the robustness of published code.", "publications": [], "licence-links": [{"licence-name": "RunMyCode Terms of Use", "licence-id": 719, "link-id": 1063, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2483", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-18T11:40:46.000Z", "updated-at": "2021-11-24T13:16:30.907Z", "metadata": {"doi": "10.25504/FAIRsharing.ewh295", "name": "iDigBio IPT", "status": "ready", "contacts": [{"contact-name": "Joanna McCaffrey", "contact-email": "jmccaffrey@flmnh.ufl.edu"}], "homepage": "http://ipt.idigbio.org", "identifier": 2483, "description": "The iDigBio IPT is a website that hosts biodiversity data and serves it in a standardised format, allowing aggregators such as iDigBio to index it into their portals whenever the data is applicable to that portal.", "abbreviation": "iDigBio IPT", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://ipt.idigbio.org/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000965", "bsg-d000965"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: iDigBio IPT", "abbreviation": "iDigBio IPT", "url": "https://fairsharing.org/10.25504/FAIRsharing.ewh295", "doi": "10.25504/FAIRsharing.ewh295", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The iDigBio IPT is a website that hosts biodiversity data and serves it in a standardised format, allowing aggregators such as iDigBio to index it into their portals whenever the data is applicable to that portal.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1021, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1027, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1028, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1036, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2556", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T10:04:09.000Z", "updated-at": "2021-11-24T13:20:17.149Z", "metadata": {"doi": "10.25504/FAIRsharing.yknezb", "name": "DataCite Repository", "status": "ready", "contacts": [{"contact-name": "DataCite Support", "contact-email": "support@datacite.org"}], "homepage": "https://search.datacite.org/", "identifier": 2556, "description": "DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data. Their goal is to help the research community locate, identify, and cite research data with confidence. They support the creation and allocation of DOIs and accompanying metadata. They provide services that support the enhanced search and discovery of research content. They also promote data citation and advocacy through community-building efforts and responsive communication and outreach materials. DataCite gathers metadata for each DOI assigned to an object. The metadata is used for a large index of research data that can be queried directly to find data, obtain stats and explore connections. All the metadata is free to access and review. To showcase and expose the metadata gathered, DataCite provides an integrated search interface, where it is possible to search, filter and extract all the details from a collection of millions of records.", "abbreviation": "DataCite", "access-points": [{"url": "https://support.datacite.org/docs/api", "name": "DataCite REST API Documentation", "type": "REST"}], "support-links": [{"url": "http://blog.datacite.org", "name": "DataCite Blog", "type": "Blog/News"}, {"url": "https://groups.google.com/a/datacite.org/forum/#!forum/allusers", "name": "All Users Mailing List", "type": "Mailing list"}, {"url": "https://support.datacite.org/docs/datacite-search-user-documentation", "name": "DataCite User Documentation", "type": "Help documentation"}, {"url": "http://status.datacite.org/", "name": "Current Status of Service", "type": "Help documentation"}, {"url": "http://stats.datacite.org/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.datacite.org/dois.html", "name": "How to assign a DOI", "type": "Help documentation"}, {"url": "https://twitter.com/datacite", "name": "@datacite", "type": "Twitter"}], "year-creation": 2009}, "legacy-ids": ["biodbcore-001039", "bsg-d001039"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["Worldwide"], "name": "FAIRsharing record for: DataCite Repository", "abbreviation": "DataCite", "url": "https://fairsharing.org/10.25504/FAIRsharing.yknezb", "doi": "10.25504/FAIRsharing.yknezb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data. Their goal is to help the research community locate, identify, and cite research data with confidence. They support the creation and allocation of DOIs and accompanying metadata. They provide services that support the enhanced search and discovery of research content. They also promote data citation and advocacy through community-building efforts and responsive communication and outreach materials. DataCite gathers metadata for each DOI assigned to an object. The metadata is used for a large index of research data that can be queried directly to find data, obtain stats and explore connections. All the metadata is free to access and review. To showcase and expose the metadata gathered, DataCite provides an integrated search interface, where it is possible to search, filter and extract all the details from a collection of millions of records.", "publications": [{"id": 1975, "pubmed_id": 25038897, "title": "DataCite and DOI names for research data.", "year": 2014, "url": "http://doi.org/10.1007/s10822-014-9776-5", "authors": "Neumann J,Brase J", "journal": "J Comput Aided Mol Des", "doi": "10.1007/s10822-014-9776-5", "created_at": "2021-09-30T08:26:02.240Z", "updated_at": "2021-09-30T08:26:02.240Z"}], "licence-links": [{"licence-name": "DataCite Terms and Conditions", "licence-id": 219, "link-id": 144, "relation": "undefined"}, {"licence-name": "DataCite Privacy Policy", "licence-id": 218, "link-id": 145, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2914", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T14:22:27.000Z", "updated-at": "2022-02-08T10:32:18.865Z", "metadata": {"doi": "10.25504/FAIRsharing.0ee3ed", "name": "PGG.Han", "status": "ready", "contacts": [{"contact-name": "PGG.Han Helpdesk", "contact-email": "pggadmin@picb.ac.cn"}], "homepage": "https://www.hanchinesegenomes.org", "citations": [{"doi": "10.1093/nar/gkz829", "pubmed-id": 31584086, "publication-id": 2817}], "identifier": 2914, "description": "PGG.Han is a population genome database serving as the central repository for the genomic data of the Han Chinese Genome Initiative (Phase I). In its current version, the PGG.Han archives whole-genome sequences or high-density genome-wide single-nucleotide variants (SNVs) of 114 783 Han Chinese individuals (a.k.a. the Han100K), representing geographical sub-populations covering 33 of the 34 administrative divisions of China, as well as Singapore. The PGG.Han provides: (i) an interactive interface for visualization of the fine-scale genetic structure of the Han Chinese population; (ii) genome-wide allele frequencies of hierarchical sub-populations; (iii) ancestry inference for individual samples and controlling population stratification based on nested ancestry informative markers (AIMs) panels; (iv) population-structure-aware shared control data for genotype-phenotype association studies (e.g. GWASs) and (v) a Han-Chinese-specific reference panel for genotype imputation.", "abbreviation": "PGG.Han", "support-links": [{"url": "https://www.hanchinesegenomes.org/HCGD/analysis/upload/introduction", "name": "Introduction to Uploading", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/analysis/gwas/introduction", "name": "Introduction to GWAS Analysis", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/analysis/inference/introduction", "name": "Ancestry Inference", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/analysis/imputation/introduction", "name": "Imputation Introduction", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/about", "name": "About PGG.Han", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/data/summary", "name": "Summary of Data Sources", "type": "Help documentation"}, {"url": "https://www.hanchinesegenomes.org/HCGD/data/affinity", "name": "Genetic & Population Structure", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.hanchinesegenomes.org/HCGD/data/variant", "name": "Browse Variants", "type": "data access"}]}, "legacy-ids": ["biodbcore-001417", "bsg-d001417"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Population Genetics"], "domains": ["Single nucleotide polymorphism", "Sequence variant", "Genome-wide association study", "Allele frequency"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: PGG.Han", "abbreviation": "PGG.Han", "url": "https://fairsharing.org/10.25504/FAIRsharing.0ee3ed", "doi": "10.25504/FAIRsharing.0ee3ed", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PGG.Han is a population genome database serving as the central repository for the genomic data of the Han Chinese Genome Initiative (Phase I). In its current version, the PGG.Han archives whole-genome sequences or high-density genome-wide single-nucleotide variants (SNVs) of 114 783 Han Chinese individuals (a.k.a. the Han100K), representing geographical sub-populations covering 33 of the 34 administrative divisions of China, as well as Singapore. The PGG.Han provides: (i) an interactive interface for visualization of the fine-scale genetic structure of the Han Chinese population; (ii) genome-wide allele frequencies of hierarchical sub-populations; (iii) ancestry inference for individual samples and controlling population stratification based on nested ancestry informative markers (AIMs) panels; (iv) population-structure-aware shared control data for genotype-phenotype association studies (e.g. GWASs) and (v) a Han-Chinese-specific reference panel for genotype imputation.", "publications": [{"id": 2817, "pubmed_id": 31584086, "title": "PGG.Han: the Han Chinese genome database and analysis platform.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz829", "authors": "Gao Y,Zhang C,Yuan L,Ling Y,Wang X,Liu C,Pan Y,Zhang X,Ma X,Wang Y,Lu Y,Yuan K,Ye W,Qian J,Chang H,Cao R,Yang X,Ma L,Ju Y,Dai L,Tang Y,Zhang G,Xu S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz829", "created_at": "2021-09-30T08:27:46.444Z", "updated_at": "2021-09-30T11:29:46.305Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2328", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-02T11:14:34.000Z", "updated-at": "2021-12-06T10:48:07.487Z", "metadata": {"doi": "10.25504/FAIRsharing.81ettx", "name": "Bioconductor", "status": "ready", "contacts": [{"contact-name": "Sean Davis", "contact-email": "seandavi@gmail.com", "contact-orcid": "0000-0002-8991-6458"}], "homepage": "https://bioconductor.org", "identifier": 2328, "description": "Bioconductor provides tools for the analysis and comprehension of high-throughput genomic data. Bioconductor uses the R statistical programming language, and is open source and open development.", "abbreviation": "Bioc", "support-links": [{"url": "https://bioconductor.org/help/events/", "type": "Blog/News"}, {"url": "https://bioconductor.org/help/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://support.bioconductor.org/", "type": "Forum"}, {"url": "https://bioconductor.org/help/course-materials/", "name": "Courses and Conferences", "type": "Help documentation"}, {"url": "https://bioconductor.org/help/community/", "name": "Community ressource", "type": "Help documentation"}, {"url": "https://twitter.com/Bioconductor", "type": "Twitter"}], "year-creation": 2000, "associated-tools": [{"url": "https://bioconductor.org/news/bioc_3_10_release/", "name": "Bioconductor 3.10"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013238", "name": "re3data:r3d100013238", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006442", "name": "SciCrunch:RRID:SCR_006442", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000804", "bsg-d000804"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Genomics", "Life Science"], "domains": ["DNA sequence data", "Next generation DNA sequencing", "Software"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Bioconductor", "abbreviation": "Bioc", "url": "https://fairsharing.org/10.25504/FAIRsharing.81ettx", "doi": "10.25504/FAIRsharing.81ettx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bioconductor provides tools for the analysis and comprehension of high-throughput genomic data. Bioconductor uses the R statistical programming language, and is open source and open development.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3294", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-24T16:57:45.000Z", "updated-at": "2022-02-08T10:37:36.541Z", "metadata": {"doi": "10.25504/FAIRsharing.0e7eb3", "name": "Marine Environmental Data and Information Network Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "enquiries@medin.org.uk"}], "homepage": "https://portal.medin.org.uk/portal/start.php", "identifier": 3294, "description": "The Marine Environmental Data and Information Network (MEDIN) Data Portal is a service to allow users, through a single point of access, to find information on marine datasets held at the Data Archive Centres and at other public and private sector bodies. Marine data are expensive to collect and always unique in relation to time and geographical position. There are wide benefits to be gained from working together to share and properly manage the data. Marine data are held by many organisations in the UK and are collected for many different purposes: for the timing of tides; to determine the position of submerged obstacles; for marine conservation; to monitor and forecast weather and ocean states; to site marine structures; and for scientific research to understand marine processes.", "abbreviation": "MEDIN Data Portal", "support-links": [{"url": "https://www.medin.org.uk/about/sponsors-and-partners", "name": "Sponsors and Partners", "type": "Help documentation"}], "data-processes": [{"url": "https://www.medin.org.uk/data/submit-data", "name": "Submit Data", "type": "data curation"}, {"url": "https://www.medin.org.uk/data/submit-metadata", "name": "Submit Metadata", "type": "data curation"}, {"url": "https://portal.medin.org.uk/portal/start.php", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001809", "bsg-d001809"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Maritime Engineering", "Marine Biology", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Marine Environmental Data and Information Network Data Portal", "abbreviation": "MEDIN Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.0e7eb3", "doi": "10.25504/FAIRsharing.0e7eb3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Marine Environmental Data and Information Network (MEDIN) Data Portal is a service to allow users, through a single point of access, to find information on marine datasets held at the Data Archive Centres and at other public and private sector bodies. Marine data are expensive to collect and always unique in relation to time and geographical position. There are wide benefits to be gained from working together to share and properly manage the data. Marine data are held by many organisations in the UK and are collected for many different purposes: for the timing of tides; to determine the position of submerged obstacles; for marine conservation; to monitor and forecast weather and ocean states; to site marine structures; and for scientific research to understand marine processes.", "publications": [], "licence-links": [{"licence-name": "National Oceanography Centre (NOC) Disclaimer", "licence-id": 546, "link-id": 853, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2559", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T11:23:31.000Z", "updated-at": "2021-11-24T13:13:01.909Z", "metadata": {"doi": "10.25504/FAIRsharing.58wjha", "name": "da|ra", "status": "ready", "homepage": "https://www.da-ra.de/en/home/", "identifier": 2559, "description": "da|ra is the registration agency for social science and economic data jointly run by GESIS and ZBW. In keeping with the ideals of good scientific practice there is a demand for open access to existing primary data so as to not only have the final research results but also be able to reconstruct the entire research process. GESIS and ZBW therefore offer a registration service for social and economic research data. This infrastructure lays the foundation for long-term, persistent identification, storage, localization and reliable citation of research data.", "abbreviation": "da|ra", "support-links": [{"url": "https://www.da-ra.de/en/for-researchers/research-data/", "name": "Researcher Data Help Page", "type": "Help documentation"}, {"url": "https://www.da-ra.de/en/help/", "name": "Search Page", "type": "Help documentation"}, {"url": "https://twitter.com/dara_info", "name": "@dara_info", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "http://www.da-ra.de/dara/search?lang=en&mdlang=en", "name": "Advanced Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001042", "bsg-d001042"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Social Science"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Researcher data"], "countries": ["Germany"], "name": "FAIRsharing record for: da|ra", "abbreviation": "da|ra", "url": "https://fairsharing.org/10.25504/FAIRsharing.58wjha", "doi": "10.25504/FAIRsharing.58wjha", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: da|ra is the registration agency for social science and economic data jointly run by GESIS and ZBW. In keeping with the ideals of good scientific practice there is a demand for open access to existing primary data so as to not only have the final research results but also be able to reconstruct the entire research process. GESIS and ZBW therefore offer a registration service for social and economic research data. This infrastructure lays the foundation for long-term, persistent identification, storage, localization and reliable citation of research data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1662", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.644Z", "metadata": {"doi": "10.25504/FAIRsharing.dvwz21", "name": "GWASdb", "status": "deprecated", "contacts": [{"contact-name": "Mulin Jun Li", "contact-email": "mulin0424.li@gmail.com"}], "homepage": "http://jjwanglab.org/gwasdb", "identifier": 1662, "description": "GWASdb comprises of collections of traits/diseases associated SNP (TASs) from current GWAS and their comprehensive functional annotations, as well as disease classifications.", "abbreviation": "GWASdb", "access-points": [{"url": "http://jjwanglab.org/gwasdb/gwasdb2/gwasdb2/download", "name": "Web Services", "type": "REST"}], "support-links": [{"url": "junwen@uw.edu", "name": "junwen@uw.edu", "type": "Support email"}, {"url": "http://jjwanglab.org/gwasdb/gwasdb2/gwasdb2/about", "name": "About GWASdb", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/GWASdb", "name": "GWASdb Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files upon request", "type": "data versioning"}, {"url": "http://jjwanglab.org/gwasdb/gwasdb2/gwasdb2/mapping", "name": "GWAS Traits Ontology Mapping", "type": "data access"}, {"url": "http://jjwanglab.org/gwasdb/gwasdb2/gwasdb2/dictionary", "name": "Browse Dictionary", "type": "data access"}], "associated-tools": [{"url": "http://jjwanglab.org/gwasrap", "name": "GWASrap"}, {"url": "http://jjwanglab.org/snvrap", "name": "SNVrap"}, {"url": "http://mulinlab.tmu.edu.cn/gwas4d", "name": "GWAS4D"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000118", "bsg-d000118"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Annotation", "Computational biological predictions", "Disease process modeling", "Genetic polymorphism", "Splice site", "Micro RNA (miRNA) target site", "Genome-wide association study"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Hong Kong"], "name": "FAIRsharing record for: GWASdb", "abbreviation": "GWASdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.dvwz21", "doi": "10.25504/FAIRsharing.dvwz21", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GWASdb comprises of collections of traits/diseases associated SNP (TASs) from current GWAS and their comprehensive functional annotations, as well as disease classifications.", "publications": [{"id": 154, "pubmed_id": 22139925, "title": "GWASdb: a database for human genetic variants identified by genome-wide association studies.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1182", "authors": "Li MJ., Wang P., Liu X., Lim EL., Wang Z., Yeager M., Wong MP., Sham PC., Chanock SJ., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1182", "created_at": "2021-09-30T08:22:36.781Z", "updated_at": "2021-09-30T08:22:36.781Z"}, {"id": 490, "pubmed_id": 22801476, "title": "Genetic variant representation, annotation and prioritization in the post-GWAS era", "year": 2012, "url": "http://doi.org/10.1038/cr.2012.106", "authors": "Mulin Jun Li, Pak Chung Sham and Junwen Wang", "journal": "Cell Research", "doi": "10.1038/cr.2012.106", "created_at": "2021-09-30T08:23:13.277Z", "updated_at": "2021-09-30T08:23:13.277Z"}, {"id": 2558, "pubmed_id": 26615194, "title": "GWASdb v2: an update database for human genetic variants identified by genome-wide association studies.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1317", "authors": "Li MJ,Liu Z,Wang P,Wong MP,Nelson MR,Kocher JP,Yeager M,Sham PC,Chanock SJ,Xia Z,Wang J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1317", "created_at": "2021-09-30T08:27:13.784Z", "updated_at": "2021-09-30T11:29:39.312Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2025", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:08.499Z", "metadata": {"doi": "10.25504/FAIRsharing.rz7h29", "name": "Federal Interagency Traumatic Brain Injury Research Informatics System", "status": "ready", "contacts": [{"contact-name": "Help email", "contact-email": "FITBIR-ops@mail.nih.gov"}], "homepage": "https://fitbir.nih.gov/", "identifier": 2025, "description": "The Federal Interagency Traumatic Brain Injury Research (FITBIR) informatics system is an extensible, scalable informatics platform for TBI relevant imaging, assessment, genomics, and other data types. It was developed to share data across the entire TBI research field and to facilitate collaboration between laboratories, as well as interconnectivity with other informatics platforms.", "abbreviation": "FITBIR", "support-links": [{"url": "https://fitbir.nih.gov/content/contact-us", "type": "Contact form"}, {"url": "https://fitbir.nih.gov/content/frequently-asked-questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://fitbir.nih.gov/jsp/about/policy.jsp", "type": "Help documentation"}, {"url": "https://fitbir.nih.gov/content/standard-operating-procedures", "type": "Help documentation"}], "data-processes": [{"url": "https://fitbir.nih.gov/jsp/access/index.jsp", "name": "Web search interface", "type": "data access"}, {"url": "https://fitbir.nih.gov/jsp/contribute/index.jsp", "name": "Data submission via web interface", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012837", "name": "re3data:r3d100012837", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006856", "name": "SciCrunch:RRID:SCR_006856", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000492", "bsg-d000492"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurophysiology", "Neurobiology", "Biomedical Science"], "domains": ["Biomarker", "Imaging", "Brain", "Genotype", "Injury", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Federal Interagency Traumatic Brain Injury Research Informatics System", "abbreviation": "FITBIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.rz7h29", "doi": "10.25504/FAIRsharing.rz7h29", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Federal Interagency Traumatic Brain Injury Research (FITBIR) informatics system is an extensible, scalable informatics platform for TBI relevant imaging, assessment, genomics, and other data types. It was developed to share data across the entire TBI research field and to facilitate collaboration between laboratories, as well as interconnectivity with other informatics platforms.", "publications": [], "licence-links": [{"licence-name": "CIT Privacy Policy", "licence-id": 129, "link-id": 240, "relation": "undefined"}, {"licence-name": "CIT Disclaimers", "licence-id": 126, "link-id": 242, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1911", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.154Z", "metadata": {"doi": "10.25504/FAIRsharing.c3kchy", "name": "SpodoBase", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "spodobase@ensam.inra.fr"}], "homepage": "http://bioweb.ensam.inra.fr/spodobase/", "identifier": 1911, "description": "SpodoBase is an integrated database for the genomics of the Lepidoptera Spodoptera frugiperda. It is a publicly available structured database with insect pest sequences which will allow identification of a number of genes and comprehensive cloning of gene families of interest for the scientific community.", "abbreviation": "SpodoBase", "year-creation": 2003, "data-processes": [{"url": "http://bioweb.ensam.inra.fr/Spodopterav3/download", "name": "Download", "type": "data access"}, {"url": "http://bioweb.ensam.inra.fr/Spodopterav3/browser", "name": "search", "type": "data access"}, {"url": "http://bioweb.ensam.inra.fr/Spodopterav3/querybuilder", "name": "advanced search", "type": "data access"}], "associated-tools": [{"url": "http://bioweb.ensam.inra.fr/Spodopterav3/blast", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000376", "bsg-d000376"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome"], "taxonomies": ["Spodoptera frugiperda"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: SpodoBase", "abbreviation": "SpodoBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.c3kchy", "doi": "10.25504/FAIRsharing.c3kchy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SpodoBase is an integrated database for the genomics of the Lepidoptera Spodoptera frugiperda. It is a publicly available structured database with insect pest sequences which will allow identification of a number of genes and comprehensive cloning of gene families of interest for the scientific community.", "publications": [{"id": 407, "pubmed_id": 16796757, "title": "SPODOBASE: an EST database for the lepidopteran crop pest Spodoptera.", "year": 2006, "url": "http://doi.org/10.1186/1471-2105-7-322", "authors": "N\u00e8gre V., H\u00f4telier T., Volkoff AN., Gimenez S., Cousserans F., Mita K., Sabau X., Rocher J., L\u00f3pez-Ferber M., d'Alen\u00e7on E., Audant P., Sabourault C., Bidegainberry V., Hilliou F., Fournier P.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-7-322", "created_at": "2021-09-30T08:23:04.217Z", "updated_at": "2021-09-30T08:23:04.217Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3205", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-21T11:52:27.000Z", "updated-at": "2021-12-06T10:47:39.116Z", "metadata": {"name": "University of Melbourne Figshare Archive", "status": "ready", "contacts": [], "homepage": "https://melbourne.figshare.com/", "citations": [], "identifier": 3205, "description": "The University of Melbourne Figshare is an institutional archive that stores the research output from the University of Melbourne.", "support-links": [{"url": "https://ask.unimelb.edu.au/app/ask", "name": "Contact Information", "type": "Contact form"}, {"url": "https://melbourne.figshare.com/stats", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://melbourne.figshare.com/category", "name": "Browse by Category", "type": "data access"}, {"url": "https://melbourne.figshare.com/groups", "name": "Browse by Group", "type": "data access"}, {"url": "https://melbourne.figshare.com/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012145", "name": "re3data:r3d100012145", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001718", "bsg-d001718"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Australia"], "name": "FAIRsharing record for: University of Melbourne Figshare Archive", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3205", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The University of Melbourne Figshare is an institutional archive that stores the research output from the University of Melbourne.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2116, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 2117, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2118, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2119, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2120, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2937", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-23T09:44:58.000Z", "updated-at": "2021-11-24T13:14:57.696Z", "metadata": {"name": "Disaster Lit", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "dimrc@nlm.nih.gov"}], "homepage": "https://disasterinfo.nlm.nih.gov/disaster-lit", "identifier": 2937, "description": "Disaster Lit: Database for Disaster Medicine and Public Health is the National Library of Medicine (NLM) database of links to disaster medicine and public health documents available on the Internet at no cost. Documents include expert guidelines, research reports, conference proceedings, training classes, fact sheets, websites, databases, and similar materials for a professional audience. NLM selects materials from over 1,400 non-commercial publishing sources and supplements disaster-related resources from PubMed (biomedical journal literature) and MedlinePlus (health information for the public).", "abbreviation": "Disaster Lit", "support-links": [{"url": "https://disasterinfo.nlm.nih.gov/disaster-lit-help", "type": "Help documentation"}, {"url": "https://public.govdelivery.com/accounts/USNLMDIMRC/subscriber/new", "type": "Mailing list"}, {"url": "https://list.nih.gov/cgi-bin/wa.exe?SUBED1=disastr-outreach-lib&A=1", "name": "Interactive discussion list with other librarians, information specialists, and professionals", "type": "Mailing list"}, {"url": "https://disasterinfo.nlm.nih.gov/disaster-lit-about", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/NLM_DIMRC", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "https://disasterinfo.nlm.nih.gov/disaster-lit", "name": "Search & advanced search", "type": "data access"}], "deprecation-date": "2021-9-27", "deprecation-reason": "This resource was discontinued in June 2021. Please see https://www.nlm.nih.gov/dimrc/disasterinfo.html for more information"}, "legacy-ids": ["biodbcore-001441", "bsg-d001441"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Text mining"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Disaster Lit", "abbreviation": "Disaster Lit", "url": "https://fairsharing.org/fairsharing_records/2937", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Disaster Lit: Database for Disaster Medicine and Public Health is the National Library of Medicine (NLM) database of links to disaster medicine and public health documents available on the Internet at no cost. Documents include expert guidelines, research reports, conference proceedings, training classes, fact sheets, websites, databases, and similar materials for a professional audience. NLM selects materials from over 1,400 non-commercial publishing sources and supplements disaster-related resources from PubMed (biomedical journal literature) and MedlinePlus (health information for the public).", "publications": [], "licence-links": [{"licence-name": "NLM NIH Copyright", "licence-id": 593, "link-id": 751, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2532", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-07T16:21:42.000Z", "updated-at": "2021-11-24T13:16:58.832Z", "metadata": {"doi": "10.25504/FAIRsharing.nzdq0f", "name": "VDJServer", "status": "ready", "contacts": [{"contact-name": "vdjserver", "contact-email": "vdjserver@utsouthwestern.edu"}], "homepage": "https://vdjserver.org", "identifier": 2532, "description": "VDJServer is a free, scalable resource for performing immune repertoire analysis and sharing data.", "abbreviation": "VDJServer", "support-links": [{"url": "https://www.youtube.com/watch?v=DgqKP-L75CM&feature=youtu.be", "name": "Introductory Video", "type": "Video"}, {"url": "https://vdjserver.org/docs/index.html", "name": "Main wiki site", "type": "Help documentation"}, {"url": "https://vdjserver.org/docs/QuickStart/Quickstart_Vdjserver_Release1.0.pdf", "name": "QuickStart Guide", "type": "Help documentation"}]}, "legacy-ids": ["biodbcore-001015", "bsg-d001015"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics"], "domains": ["Sequence alignment", "Immune system"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Immune repertoire analysis"], "countries": ["United States"], "name": "FAIRsharing record for: VDJServer", "abbreviation": "VDJServer", "url": "https://fairsharing.org/10.25504/FAIRsharing.nzdq0f", "doi": "10.25504/FAIRsharing.nzdq0f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VDJServer is a free, scalable resource for performing immune repertoire analysis and sharing data.", "publications": [{"id": 489, "pubmed_id": 29020925, "title": "VDJPipe: a pipelined tool for pre-processing immune repertoire sequencing data.", "year": 2017, "url": "http://doi.org/10.1186/s12859-017-1853-z", "authors": "Christley S,Levin MK,Toby IT,Fonner JM,Monson NL,Rounds WH,Rubelt F,Scarborough W,Scheuermann RH,Cowell LG", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-017-1853-z", "created_at": "2021-09-30T08:23:13.176Z", "updated_at": "2021-09-30T08:23:13.176Z"}, {"id": 1974, "pubmed_id": 27766961, "title": "VDJML: a file format with tools for capturing the results of inferring immune receptor rearrangements.", "year": 2016, "url": "http://doi.org/10.1186/s12859-016-1214-3", "authors": "Toby IT,Levin MK,Salinas EA,Christley S,Bhattacharya S,Breden F,Buntzman A,Corrie B,Fonner J,Gupta NT,Hershberg U,Marthandan N,Rosenfeld A,Rounds W,Rubelt F,Scarborough W,Scott JK,Uduman M,Vander Heiden JA,Scheuermann RH,Monson N,Kleinstein SH,Cowell LG", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-016-1214-3", "created_at": "2021-09-30T08:26:02.132Z", "updated_at": "2021-09-30T08:26:02.132Z"}], "licence-links": [{"licence-name": "VDJServer Free but requires an account", "licence-id": 840, "link-id": 1513, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2942", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T10:41:39.000Z", "updated-at": "2021-12-06T10:47:27.290Z", "metadata": {"name": "Humanitarian Data Exchange", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "hdx@un.org"}], "homepage": "https://data.humdata.org/", "citations": [], "identifier": 2942, "description": "The Humanitarian Data Exchange (HDX) is an open platform for sharing data across crises and organisations. HDX was created to make humanitarian data easy to find and use for analysis.", "abbreviation": "HDX", "access-points": [{"url": "https://data.humdata.org/documentation", "name": "HDX Web Services", "type": "REST"}], "support-links": [{"url": "https://centre.humdata.org/category/blog/", "name": "Blog", "type": "Blog/News"}, {"url": "https://centre.humdata.org/contact-us/", "name": "Contact Information", "type": "Contact form"}, {"url": "https://data.humdata.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/OCHA-DAP", "name": "GitHub Project", "type": "Github"}, {"url": "https://centre.humdata.org/providing-metadata-for-your-datasets-on-hdx/", "name": "Metadata requirements", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://data.humdata.org/dataset", "name": "Search & browse data", "type": "data access"}, {"url": "https://data.humdata.org/contribute", "name": "Add data", "type": "data curation"}, {"url": "https://data.humdata.org/organization", "name": "Search & browse organisations", "type": "data access"}, {"url": "https://data.humdata.org/group", "name": "Search & browse by country", "type": "data access"}, {"url": "https://data.humdata.org/visualization/covid19-humanitarian-operations/", "name": "COVID-19 Data Explorer", "type": "data access"}, {"url": "https://data.humdata.org/dashboards/cod", "name": "Common Operational Datasets (CODs)", "type": "data access"}], "associated-tools": [{"url": "https://tools.humdata.org/examples/hxl/", "name": "HXL Tag Assist"}, {"url": "https://tools.humdata.org/wizard/#datacheck", "name": "Data Check"}, {"url": "https://tools.humdata.org/wizard/#quickcharts", "name": "Quick Charts"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013193", "name": "re3data:r3d100013193", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001446", "bsg-d001446"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities and Social Science", "Earth Science", "Virology", "Epidemiology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19", "Humanitarian Studies"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Humanitarian Data Exchange", "abbreviation": "HDX", "url": "https://fairsharing.org/fairsharing_records/2942", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Humanitarian Data Exchange (HDX) is an open platform for sharing data across crises and organisations. HDX was created to make humanitarian data easy to find and use for analysis.", "publications": [], "licence-links": [{"licence-name": "HDX Data Licences", "licence-id": 385, "link-id": 1990, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 IGO (CC BY 3.0 IGO)", "licence-id": 164, "link-id": 1995, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2012, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2014, "relation": "undefined"}, {"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 2015, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 2016, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2017, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2018, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2463", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-27T13:30:51.000Z", "updated-at": "2021-12-06T10:48:13.333Z", "metadata": {"doi": "10.25504/FAIRsharing.9ff9zj", "name": "Biofresh IPT - GBIF Belgium", "status": "ready", "contacts": [{"contact-name": "Aaike De Wever", "contact-email": "aaike.dewever@naturalsciences.be"}], "homepage": "https://data.freshwaterbiodiversity.eu/", "citations": [], "identifier": 2463, "description": "The Belgium Biodiversity Platform hosts this data repository on behalf of BioFresh in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Biofresh is an EU-funded international project that aims to build a global information platform for scientists and ecosystem managers with access to all available databases describing the distribution, status and trends of global freshwater biodiversity. BioFresh integrates the freshwater biodiversity competencies and expertise of 19 research institutions.", "data-curation": {"url": "http://data.freshwaterbiodiversity.eu/qualitycontrol", "type": "manual"}, "support-links": [{"url": "a.heughebaert@biodiversity.be", "name": "Andr Heughebaert", "type": "Support email"}, {"url": "http://data.freshwaterbiodiversity.eu/searchtips", "name": "Search tips", "type": "Help documentation"}, {"url": "http://data.freshwaterbiodiversity.eu/datapolicy", "name": "Data Policy", "type": "Other"}], "data-processes": [{"url": "http://data.freshwaterbiodiversity.eu/ipt/", "name": "Browse", "type": "data access"}, {"url": "https://data.freshwaterbiodiversity.eu/metadb/metaDBQry/", "name": "Query", "type": "data access"}, {"url": "http://data.freshwaterbiodiversity.eu/metadb/metaDBfts/", "name": "Search", "type": "data access"}, {"url": "http://data.freshwaterbiodiversity.eu/metadb/", "name": "Overview of datasets and questionnaires", "type": "data access"}, {"url": "http://data.freshwaterbiodiversity.eu/search/taxon", "name": "Search species", "type": "data access"}, {"url": "http://data.freshwaterbiodiversity.eu/submitdata", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011651", "name": "re3data:r3d100011651", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "http://data.freshwaterbiodiversity.eu/submitdata", "type": "controlled"}}, "legacy-ids": ["biodbcore-000945", "bsg-d000945"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science", "Freshwater Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: Biofresh IPT - GBIF Belgium", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.9ff9zj", "doi": "10.25504/FAIRsharing.9ff9zj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Belgium Biodiversity Platform hosts this data repository on behalf of BioFresh in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Biofresh is an EU-funded international project that aims to build a global information platform for scientists and ecosystem managers with access to all available databases describing the distribution, status and trends of global freshwater biodiversity. BioFresh integrates the freshwater biodiversity competencies and expertise of 19 research institutions.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 390, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1034, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1098, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1168, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2555", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-04T20:42:40.000Z", "updated-at": "2021-11-24T13:20:12.104Z", "metadata": {"doi": "10.25504/FAIRsharing.v1knrj", "name": "Dash", "status": "deprecated", "contacts": [{"contact-name": "University of California Curation Center Helpdesk", "contact-email": "uc3@ucop.edu"}], "homepage": "https://dash.ucop.edu", "identifier": 2555, "description": "Dash is an open source, community driven project that takes a unique approach to data publication and digital preservation. Dash focuses on search, presentation, and discovery and delegates the responsibility for the data preservation function to the underlying repository with which it is integrated. Dash is based at the University of California Curation Center (UC3), a program at California Digital Library (CDL) that aims to develop interdisciplinary research data infrastructure. Dash employs a multi-tenancy user interface providing partners with extensive opportunities for local branding and customization, use of existing campus login credentials, and, importantly, offering the Dash service under a tenant-specific URL, an important consideration helping to drive adoption. We welcome collaborations with other organizations wishing to provide a simple, intuitive data publication service on top of more cumbersome legacy systems.", "abbreviation": "Dash", "support-links": [{"url": "https://dash.ucop.edu/stash/faq/", "name": "Dash FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://dash.ucop.edu/stash/help", "name": "Help Page", "type": "Help documentation"}, {"url": "http://cdluc3.github.io/dash/", "name": "GitHub Project", "type": "Github"}], "deprecation-date": "2020-05-20", "deprecation-reason": "This resource has sunsetted."}, "legacy-ids": ["biodbcore-001038", "bsg-d001038"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["United States"], "name": "FAIRsharing record for: Dash", "abbreviation": "Dash", "url": "https://fairsharing.org/10.25504/FAIRsharing.v1knrj", "doi": "10.25504/FAIRsharing.v1knrj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dash is an open source, community driven project that takes a unique approach to data publication and digital preservation. Dash focuses on search, presentation, and discovery and delegates the responsibility for the data preservation function to the underlying repository with which it is integrated. Dash is based at the University of California Curation Center (UC3), a program at California Digital Library (CDL) that aims to develop interdisciplinary research data infrastructure. Dash employs a multi-tenancy user interface providing partners with extensive opportunities for local branding and customization, use of existing campus login credentials, and, importantly, offering the Dash service under a tenant-specific URL, an important consideration helping to drive adoption. We welcome collaborations with other organizations wishing to provide a simple, intuitive data publication service on top of more cumbersome legacy systems.", "publications": [], "licence-links": [{"licence-name": "California Digital Library (CDL) Terms of Use", "licence-id": 92, "link-id": 57, "relation": "undefined"}, {"licence-name": "California Digital Library (CDL) Privacy Policy", "licence-id": 91, "link-id": 88, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 99, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 113, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3107", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T10:18:42.000Z", "updated-at": "2022-02-08T10:42:01.943Z", "metadata": {"doi": "10.25504/FAIRsharing.938eb4", "name": "Environmental Dataset Gateway", "status": "ready", "contacts": [{"contact-name": "Mike Pendleton", "contact-email": "edg@epa.gov"}], "homepage": "https://edg.epa.gov/metadata/catalog/main/home.page", "identifier": 3107, "description": "The Environmental Dataset Gateway (EDG) is a gateway to Web-based information and services. It enables data consumers to discover, view and access data sets, as well as geospatial tools made available by United States Environmental Protection Agency (EPA)'s program offices, regions, and labs. The mission of EPA is to protect human health and the environment.", "abbreviation": "EDG", "access-points": [{"url": "https://edg.epa.gov/metadata/webhelp/en/gptlv10/index.html#/Catalog_Service/00t00000004m000000/", "name": "Geoportal Server Catalog Service", "type": "REST"}, {"url": "https://edg.epa.gov/metadata/catalog/components/components.page", "name": "Reusing EDG Components", "type": "REST"}, {"url": "https://edg.epa.gov/metadata/webhelp/en/gptlv10/index.html#/REST_API_Syntax/00t000000029000000/1", "name": "REST API Syntax", "type": "REST"}], "support-links": [{"url": "https://edg.epa.gov/metadata/webhelp/en/gptlv10/index.html#", "name": "User guide", "type": "Help documentation"}, {"url": "https://edg.epa.gov/metadata/webhelp/en/gptlv10/inno/EDG_GettingStarted.pdf", "name": "Quick start guide for publishing metadata", "type": "Help documentation"}, {"url": "https://www.epa.gov/geospatial/epa-metadata-technical-specification", "name": "EPA Metadata Technical Specification", "type": "Help documentation"}], "year-creation": 1970, "data-processes": [{"url": "https://project-open-data.cio.gov/schema/", "name": "Common Core Metadata Schema v1.0", "type": "data release"}, {"url": "https://edg.epa.gov/metadata/catalog/search/search.page", "name": "Search", "type": "data access"}, {"url": "https://edg.epa.gov/metadata/catalog/search/browse/browse.page", "name": "Browse", "type": "data access"}, {"url": "https://edg.epa.gov/data/", "name": "Download", "type": "data access"}, {"url": "https://edg.epa.gov/epa-open-data-metadata-editor/", "name": "EPA Open Data Metadata Editor", "type": "data curation"}], "associated-tools": [{"url": "https://www.epa.gov/geospatial/epa-metadata-editor", "name": "EPA Metadata Editor V5.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011723", "name": "re3data:r3d100011723", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001615", "bsg-d001615"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Demographics", "Energy Engineering", "Public Health", "Global Health", "Public Law", "Ecology", "Earth Science", "Agriculture", "Water Management"], "domains": ["Climate"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Air", "Climate change", "Consumer", "Satellite Data", "Waste"], "countries": ["United States"], "name": "FAIRsharing record for: Environmental Dataset Gateway", "abbreviation": "EDG", "url": "https://fairsharing.org/10.25504/FAIRsharing.938eb4", "doi": "10.25504/FAIRsharing.938eb4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Environmental Dataset Gateway (EDG) is a gateway to Web-based information and services. It enables data consumers to discover, view and access data sets, as well as geospatial tools made available by United States Environmental Protection Agency (EPA)'s program offices, regions, and labs. The mission of EPA is to protect human health and the environment.", "publications": [], "licence-links": [{"licence-name": "EPA Data License", "licence-id": 285, "link-id": 989, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3175", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-05T10:53:30.000Z", "updated-at": "2021-11-24T13:17:36.492Z", "metadata": {"name": "Natural Resources Conservation Service Web Soil Survey", "status": "ready", "contacts": [{"contact-name": "WSS General Contact", "contact-email": "soilshotline@lin.usda.gov"}], "homepage": "https://websoilsurvey.sc.egov.usda.gov", "identifier": 3175, "description": "The Natural Resources Conservation Service Web Soil Survey (NRCS WSS) provides soil data and information produced by the National Cooperative Soil Survey. NRCS has soil maps and data available online for more than 95 percent of counties in the USA. Soil surveys can be used for general farm, local, and wider area planning. Within the USA, this site is provided as the authoritative government source of soil survey information.", "abbreviation": "NRCS WSS", "support-links": [{"url": "https://www.nrcs.usda.gov/wps/portal/nrcs/detailfull/soils/survey/?cid=nrcseprd1456814", "name": "WSS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.nrcs.usda.gov/wps/portal/nrcs/detailfull/soils/survey/?cid=nrcseprd1465032", "name": "WSS Tips and Shortcuts", "type": "Help documentation"}, {"url": "https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/?cid=nrcseprd1464831", "name": "Getting Started with WSS", "type": "Help documentation"}, {"url": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/survey/", "name": "About the Soil Survey Project", "type": "Help documentation"}, {"url": "https://websoilsurvey.sc.egov.usda.gov/RSS/All_RSS.xml", "name": "RSS for all states/territories", "type": "Blog/News"}], "year-creation": 2005, "data-processes": [{"url": "https://websoilsurvey.sc.egov.usda.gov/App/WebSoilSurvey.aspx", "name": "Map Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001686", "bsg-d001686"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Urban Planning", "Agriculture"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Natural Resources Conservation Service Web Soil Survey", "abbreviation": "NRCS WSS", "url": "https://fairsharing.org/fairsharing_records/3175", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Natural Resources Conservation Service Web Soil Survey (NRCS WSS) provides soil data and information produced by the National Cooperative Soil Survey. NRCS has soil maps and data available online for more than 95 percent of counties in the USA. Soil surveys can be used for general farm, local, and wider area planning. Within the USA, this site is provided as the authoritative government source of soil survey information.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2527", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-17T13:39:06.000Z", "updated-at": "2021-11-24T13:19:35.915Z", "metadata": {"doi": "10.25504/FAIRsharing.d3bm3v", "name": "Database of fuzzy protein complexes", "status": "ready", "contacts": [{"contact-name": "Monika Fuxreiter", "contact-email": "fmoni@med.unideb.hu"}], "homepage": "http://protdyn-database.org/", "identifier": 2527, "description": "FuzDB compiles experimentally observed fuzzy protein complexes, where intrinsic disorder (ID) is maintained upon interacting with a partner (protein, nucleic acid or small molecule) and directly impacts biological function. Entries in the database have both (i) structural evidence demonstrating the structural multiplicity or dynamic disorder of the ID region(s) in the partner bound form of the protein and (ii) in vitro or in vivo biological evidence that indicates the significance of the fuzzy region(s) in the formation, function or regulation of the assembly. Unlike the other intrinsically disordered or unfolded protein databases, FuzDB focuses on ID regions within a biological context, including higher-order assemblies and presents a detailed analysis of the structural and functional data.", "abbreviation": "FuzDB", "support-links": [{"url": "http://protdyn-database.org/faqs.php", "name": "Resource FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://protdyn-database.org/help.php", "name": "Database Help", "type": "Help documentation"}, {"url": "http://protdyn-database.org/analysis.php", "name": "Fuzzy Complex Analysis Help", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://protdyn-database.org/browse.php", "name": "Browse Data", "type": "data access"}, {"url": "http://protdyn-database.org/search.php", "name": "Search", "type": "data access"}, {"url": "http://protdyn-database.org/upload.php", "name": "Upload data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001010", "bsg-d001010"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein structure", "Intrinsically disordered proteins"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Database of fuzzy protein complexes", "abbreviation": "FuzDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.d3bm3v", "doi": "10.25504/FAIRsharing.d3bm3v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FuzDB compiles experimentally observed fuzzy protein complexes, where intrinsic disorder (ID) is maintained upon interacting with a partner (protein, nucleic acid or small molecule) and directly impacts biological function. Entries in the database have both (i) structural evidence demonstrating the structural multiplicity or dynamic disorder of the ID region(s) in the partner bound form of the protein and (ii) in vitro or in vivo biological evidence that indicates the significance of the fuzzy region(s) in the formation, function or regulation of the assembly. Unlike the other intrinsically disordered or unfolded protein databases, FuzDB focuses on ID regions within a biological context, including higher-order assemblies and presents a detailed analysis of the structural and functional data.", "publications": [{"id": 921, "pubmed_id": 27794553, "title": "FuzDB: database of fuzzy complexes, a tool to develop stochastic structure-function relationships for protein complexes and higher-order assemblies.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1019", "authors": "Miskei M,Antal C,Fuxreiter M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1019", "created_at": "2021-09-30T08:24:01.695Z", "updated_at": "2021-09-30T11:28:55.359Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1781", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.197Z", "metadata": {"doi": "10.25504/FAIRsharing.zjcys8", "name": "Structure, Interfaces and Alignments for Protein-Protein Interactions Database", "status": "ready", "contacts": [{"contact-email": "emily@compbio.dundee.ac.uk"}], "homepage": "http://www.compbio.dundee.ac.uk/SNAPPI/index.jsp", "identifier": 1781, "description": "SNAPPI-DB is an object-oriented database of domain-domain interactions observed in structural data. The structural data is obtained from the MSD data warehouse as the MSD provides consistent data with links to many types of data about proteins and nucleic acids.", "abbreviation": "SNAPPI-DB", "support-links": [{"url": "http://www.compbio.dundee.ac.uk/SNAPPI/SNAPPI-DBPackage/ProgramManual/Manual.pdf", "type": "Help documentation"}]}, "legacy-ids": ["biodbcore-000240", "bsg-d000240"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein interaction", "Molecular interaction", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Structure, Interfaces and Alignments for Protein-Protein Interactions Database", "abbreviation": "SNAPPI-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.zjcys8", "doi": "10.25504/FAIRsharing.zjcys8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SNAPPI-DB is an object-oriented database of domain-domain interactions observed in structural data. The structural data is obtained from the MSD data warehouse as the MSD provides consistent data with links to many types of data about proteins and nucleic acids.", "publications": [{"id": 305, "pubmed_id": 17202171, "title": "SNAPPI-DB: a database and API of Structures, iNterfaces and Alignments for Protein-Protein Interactions.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkl836", "authors": "Jefferson ER., Walsh TP., Roberts TJ., Barton GJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl836", "created_at": "2021-09-30T08:22:52.841Z", "updated_at": "2021-09-30T08:22:52.841Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 213, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2125", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:06.910Z", "metadata": {"doi": "10.25504/FAIRsharing.rcbwsf", "name": "Giga Science Database", "status": "ready", "contacts": [{"contact-name": "Database Admin", "contact-email": "database@gigasciencejournal.com"}], "homepage": "http://gigadb.org/", "identifier": 2125, "description": "GigaDB primarily serves as a repository to host data and tools associated with articles in GigaScience; however, it also includes a subset of datasets that are not associated with GigaScience articles. GigaDB defines a dataset as a group of files (e.g., sequencing data, analyses, imaging files, software programs) that are related to and support an article or study.", "abbreviation": "GigaDB", "support-links": [{"url": "http://gigadb.org/site/contact", "type": "Contact form"}, {"url": "http://gigadb.org/site/term", "type": "Help documentation"}, {"url": "http://gigadb.org/rss/latest", "type": "Blog/News"}], "year-creation": 2011, "data-processes": [{"url": "http://gigadb.org", "name": "web interface", "type": "data access"}], "associated-tools": [{"url": "http://galaxy.cbiit.cuhk.edu.hk/", "name": "GigaGalaxy"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010478", "name": "re3data:r3d100010478", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004002", "name": "SciCrunch:RRID:SCR_004002", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000595", "bsg-d000595"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Genetics", "Proteomics", "Computational Biology", "Life Science"], "domains": ["Expression data", "Imaging", "Sequencing", "Software"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Hong Kong"], "name": "FAIRsharing record for: Giga Science Database", "abbreviation": "GigaDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.rcbwsf", "doi": "10.25504/FAIRsharing.rcbwsf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GigaDB primarily serves as a repository to host data and tools associated with articles in GigaScience; however, it also includes a subset of datasets that are not associated with GigaScience articles. GigaDB defines a dataset as a group of files (e.g., sequencing data, analyses, imaging files, software programs) that are related to and support an article or study.", "publications": [{"id": 565, "pubmed_id": 23587345, "title": "GigaDB: announcing the GigaScience database", "year": 2012, "url": "http://doi.org/10.1186/2047-217X-1-11", "authors": "Tam P Sneddon, Peter Li and Scott C Edmunds", "journal": "GigaScience", "doi": "10.1186/2047-217X-1-11", "created_at": "2021-09-30T08:23:21.783Z", "updated_at": "2021-09-30T08:23:21.783Z"}], "licence-links": [{"licence-name": "GigaDB Terms of Use", "licence-id": 344, "link-id": 1651, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2468", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-28T15:08:51.000Z", "updated-at": "2021-11-24T13:16:29.917Z", "metadata": {"doi": "10.25504/FAIRsharing.hwx5xr", "name": "GBIF Guinea IPT - GBIF France", "status": "ready", "contacts": [{"contact-email": "gbif@gbif.fr"}], "homepage": "http://ipt-guinee.gbif.fr/", "identifier": 2468, "description": "GBIF France hosts this data repository on behalf of GBIF Guinea in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). GBIF-GUINEE is established within the Centre d'Observation de Surveillance et d'Information Environnementales (COSIE) , the signatory of the GBIF Memorandum of Understanding, as a specialized team working on the collection of biodiversity occurrence data from data publishers to enable their publication on the Internet. The node of GBIF-GUINEE is mandated to collect species occurrence data on the national and international level in order to make these available to data users and decision makers. The data collected and disseminated by COSIE enable the generation of statistics to support decision making by authorities, in order to integrate ecological considerations into programmes and plans for the socio-economic development of Guniea. These ecological considerations have the goal of protection of the environment and biological diversity.", "support-links": [{"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Report a bug", "type": "Github"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "The IPT User Manual", "type": "Github"}, {"url": "https://www.gbif.org/ipt", "name": "About the IPT", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://ipt-guinee.gbif.fr/", "name": "Browse & search", "type": "data access"}, {"url": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgbif%2Fipt%2Fissues%2Fnew", "name": "Request a new feature", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000950", "bsg-d000950"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Resource collection"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France", "Cameroon"], "name": "FAIRsharing record for: GBIF Guinea IPT - GBIF France", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.hwx5xr", "doi": "10.25504/FAIRsharing.hwx5xr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GBIF France hosts this data repository on behalf of GBIF Guinea in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). GBIF-GUINEE is established within the Centre d'Observation de Surveillance et d'Information Environnementales (COSIE) , the signatory of the GBIF Memorandum of Understanding, as a specialized team working on the collection of biodiversity occurrence data from data publishers to enable their publication on the Internet. The node of GBIF-GUINEE is mandated to collect species occurrence data on the national and international level in order to make these available to data users and decision makers. The data collected and disseminated by COSIE enable the generation of statistics to support decision making by authorities, in order to integrate ecological considerations into programmes and plans for the socio-economic development of Guniea. These ecological considerations have the goal of protection of the environment and biological diversity.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 72, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 77, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 81, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 83, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2605", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-15T15:53:32.000Z", "updated-at": "2021-11-24T13:14:54.502Z", "metadata": {"doi": "10.25504/FAIRsharing.6L6MjA", "name": "cBioPortal for Cancer Genomics", "status": "ready", "contacts": [{"contact-name": "cBioPortal for Cancer Genomics Discussion Group", "contact-email": "cbioportal@googlegroups.com"}], "homepage": "http://www.cbioportal.org", "citations": [{"doi": "10.1158/2159-8290.CD-12-0095", "pubmed-id": 22588877, "publication-id": 2215}], "identifier": 2605, "description": "The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", "abbreviation": "cBioPortal", "access-points": [{"url": "http://cbioportal.org/api", "name": "REST Endpoint for querying cBioPortal data", "type": "REST"}], "support-links": [{"url": "http://www.cbioportal.org/news.jsp", "name": "cBioPortal News", "type": "Blog/News"}, {"url": "http://www.cbioportal.org/faq.jsp", "name": "cBioPortal FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://thehyve.nl", "name": "Commercial support for cBioPortal", "type": "Help documentation"}, {"url": "cbioportal@googlegroups.com", "name": "cBioPortal for Cancer Genomics Discussion Group", "type": "Mailing list"}, {"url": "https://github.com/cBioPortal/cbioportal", "name": "GitHub Repository", "type": "Github"}, {"url": "http://www.cbioportal.org/tutorial.jsp", "name": "cBioPortal tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/cbioportal", "name": "@cbioportal", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://cbioportal.readthedocs.io/en/latest/", "name": "Documentation on loading data into cBioPortal", "type": "data curation"}, {"url": "https://github.com/cBioPortal/datahub", "name": "Datahub: a centralized location for storing curated data ready for inclusion in cBioPortal.", "type": "data curation"}], "associated-tools": [{"url": "https://github.com/cBioPortal/cbioportal/tree/master/core/src/main/scripts/importer", "name": "cBioPortal Importer"}, {"url": "http://www.cbioportal.org/oncoprinter.jsp", "name": "OncoPrinter"}, {"url": "http://www.cbioportal.org/mutation_mapper.jsp", "name": "MutationMapper"}]}, "legacy-ids": ["biodbcore-001088", "bsg-d001088"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Proteomics", "Biomedical Science", "Preclinical Studies"], "domains": ["Cancer", "Copy number variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: cBioPortal for Cancer Genomics", "abbreviation": "cBioPortal", "url": "https://fairsharing.org/10.25504/FAIRsharing.6L6MjA", "doi": "10.25504/FAIRsharing.6L6MjA", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", "publications": [{"id": 144, "pubmed_id": 23550210, "title": "Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal.", "year": 2013, "url": "http://doi.org/10.1126/scisignal.2004088", "authors": "Gao J,Aksoy BA,Dogrusoz U,Dresdner G,Gross B,Sumer SO,Sun Y,Jacobsen A,Sinha R,Larsson E,Cerami E,Sander C,Schultz N", "journal": "Sci Signal", "doi": "10.1126/scisignal.2004088", "created_at": "2021-09-30T08:22:35.715Z", "updated_at": "2021-09-30T08:22:35.715Z"}, {"id": 2215, "pubmed_id": 22588877, "title": "The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data.", "year": 2012, "url": "http://doi.org/10.1158/2159-8290.CD-12-0095", "authors": "Cerami E,Gao J,Dogrusoz U,Gross BE,Sumer SO,Aksoy BA,Jacobsen A,Byrne CJ,Heuer ML,Larsson E,Antipin Y,Reva B,Goldberg AP,Sander C,Schultz N", "journal": "Cancer Discov", "doi": "10.1158/2159-8290.CD-12-0095", "created_at": "2021-09-30T08:26:29.649Z", "updated_at": "2021-09-30T08:26:29.649Z"}], "licence-links": [{"licence-name": "GNU Affero General Public License", "licence-id": 352, "link-id": 563, "relation": "undefined"}, {"licence-name": "cBioPortal GNU Affero General Public License", "licence-id": 105, "link-id": 569, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3302", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-30T11:05:39.000Z", "updated-at": "2021-12-06T10:48:50.469Z", "metadata": {"doi": "10.25504/FAIRsharing.lwW6a1", "name": "ioChem-BD", "status": "ready", "contacts": [{"contact-name": "Mois\u00e9s \u00c1lvarez Moreno", "contact-email": "contact@iochem-bd.org", "contact-orcid": "0000-0001-7331-4295"}], "homepage": "https://www.iochem-bd.org", "citations": [{"doi": "10.1021/ci500593j", "pubmed-id": 25469626, "publication-id": 2393}], "identifier": 3302, "description": "ioChem-BD is a digital repository of Computational Chemistry and Materials results. A set of modules and tools aimed to manage large volumes of quantum chemistry results from a wide variety of broadly used simulation packages.", "abbreviation": "ioChem-BD", "access-points": [{"url": "https://www.iochem-bd.org/rest", "name": "ioChem-BD REST API service", "type": "REST"}], "support-links": [{"url": "https://docs.iochem-bd.org", "name": "Official platform documentation", "type": "Help documentation"}], "year-creation": 2011, "associated-tools": [{"url": "https://gitlab.com/ioChem-BD/iochem-bd", "name": "ioChem-BD source code latest"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012553", "name": "re3data:r3d100012553", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001817", "bsg-d001817"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular Chemistry", "Theoretical Chemistry", "Physical Chemistry", "Computational Chemistry"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: ioChem-BD", "abbreviation": "ioChem-BD", "url": "https://fairsharing.org/10.25504/FAIRsharing.lwW6a1", "doi": "10.25504/FAIRsharing.lwW6a1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ioChem-BD is a digital repository of Computational Chemistry and Materials results. A set of modules and tools aimed to manage large volumes of quantum chemistry results from a wide variety of broadly used simulation packages.", "publications": [{"id": 2393, "pubmed_id": 25469626, "title": "Managing the computational chemistry big data problem: the ioChem-BD platform.", "year": 2014, "url": "http://doi.org/10.1021/ci500593j", "authors": "Alvarez-Moreno M,de Graaf C,Lopez N,Maseras F,Poblet JM,Bo C", "journal": "J Chem Inf Model", "doi": "10.1021/ci500593j", "created_at": "2021-09-30T08:26:53.884Z", "updated_at": "2021-09-30T08:26:53.884Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1516, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1518, "relation": "undefined"}, {"licence-name": "Affero GNU GPL v3.0", "licence-id": 15, "link-id": 1519, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3228", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-05T14:29:44.000Z", "updated-at": "2021-12-06T10:47:40.364Z", "metadata": {"name": "Leibniz Centre for Agricultural Landscape Research Open Research Data", "status": "ready", "contacts": [{"contact-name": "J\u00f6rg Pilz", "contact-email": "jpilz@zalf.de"}], "homepage": "http://open-research-data-zalf.ext.zalf.de/default.aspx", "identifier": 3228, "description": "The Leibniz Centre for Agricultural Landscape Research Open Research Data (ZALF Open Research Data) repository contains freely accessible primary research data primarily created at ZALF, although data from other institutions involved in landscape research may also be submitted. The portal provides free access to data and their descriptive metadata, including information about research context, instruments, methods, research areas and data management aspects. Data registered with this resource will be given a DOI. This resource provides data in the areas of climate change, food security, biodiversity conservation, resource scarcity, crop systems, and sustainability.", "abbreviation": "ZALF Open Research Data", "support-links": [{"url": "webmaster@zalf.de", "name": "Webmaster", "type": "Support email"}, {"url": "http://open-research-data-zalf.ext.zalf.de/SitePages/FAQ1.aspx", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2015, "data-processes": [{"url": "http://open-research-data-zalf.ext.zalf.de/SitePages/Search.aspx", "name": "Search", "type": "data access"}, {"url": "http://open-research-data-zalf.ext.zalf.de/ResearchData/Forms/All_Datasets.aspx", "name": "Browse All", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010114", "name": "re3data:r3d100010114", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001742", "bsg-d001742"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Food Security", "Biodiversity", "Agriculture"], "domains": ["Cropping systems", "Sustainability"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Leibniz Centre for Agricultural Landscape Research Open Research Data", "abbreviation": "ZALF Open Research Data", "url": "https://fairsharing.org/fairsharing_records/3228", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Leibniz Centre for Agricultural Landscape Research Open Research Data (ZALF Open Research Data) repository contains freely accessible primary research data primarily created at ZALF, although data from other institutions involved in landscape research may also be submitted. The portal provides free access to data and their descriptive metadata, including information about research context, instruments, methods, research areas and data management aspects. Data registered with this resource will be given a DOI. This resource provides data in the areas of climate change, food security, biodiversity conservation, resource scarcity, crop systems, and sustainability.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2156, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2157, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1953", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:28.655Z", "metadata": {"doi": "10.25504/FAIRsharing.xxtmjs", "name": "Melanoma Molecular Map Project", "status": "ready", "contacts": [{"contact-name": "Simone Mocellin", "contact-email": "simone.mocellin@unipd.it", "contact-orcid": "0000-0002-9433-8445"}], "homepage": "http://www.mmmp.org/MMMP/", "identifier": 1953, "description": "A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", "abbreviation": "MMMP", "support-links": [{"url": "mmmpteam@mmmp.org", "type": "Support email"}], "year-creation": 2007, "data-processes": [{"url": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010276", "name": "re3data:r3d100010276", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000419", "bsg-d000419"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Molecular entity", "Cancer", "Molecular interaction", "Pathway model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Melanoma Molecular Map Project", "abbreviation": "MMMP", "url": "https://fairsharing.org/10.25504/FAIRsharing.xxtmjs", "doi": "10.25504/FAIRsharing.xxtmjs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", "publications": [{"id": 437, "pubmed_id": 18477889, "title": "The melanoma molecular map project.", "year": 2008, "url": "http://doi.org/10.1097/CMR.0b013e328300c50b", "authors": "Mocellin S., Rossi CR.,", "journal": "Melanoma Res.", "doi": "10.1097/CMR.0b013e328300c50b", "created_at": "2021-09-30T08:23:07.483Z", "updated_at": "2021-09-30T08:23:07.483Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2191, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2936", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-07T10:00:50.000Z", "updated-at": "2021-12-06T10:47:26.948Z", "metadata": {"name": "Surveillance Epidemiology of Coronavirus (COVID-19) Under Research Exclusion - IBD", "status": "ready", "contacts": [{"contact-name": "Michael D. Kappelman", "contact-email": "Michael_Kappelman@med.unc.edu", "contact-orcid": "0000-0002-0469-6856"}], "homepage": "https://covidibd.org/", "citations": [], "identifier": 2936, "description": "Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-IBD) is an international, pediatric and adult database to monitor and report on outcomes of COVID-19 occurring in IBD patients. The goals of the registry is to rapidly define the impact of COVID-19 on patients with IBD and how factors such as age, comorbidities, and IBD treatments impact COVID outcomes.", "abbreviation": "SECURE-IBD", "support-links": [{"url": "COVID.IBD@unc.edu", "name": "General contact", "type": "Support email"}, {"url": "https://covidibd.org/faq/", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2020, "data-processes": [{"url": "https://covidibd.org/current-data/", "name": "Browse", "type": "data access"}, {"url": "https://global.redcap.unc.edu/surveys/?s=8LL398494N", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013313", "name": "re3data:r3d100013313", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001439", "bsg-d001439"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Biomedical Science", "Epidemiology"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Bowel disease", "COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Surveillance Epidemiology of Coronavirus (COVID-19) Under Research Exclusion - IBD", "abbreviation": "SECURE-IBD", "url": "https://fairsharing.org/fairsharing_records/2936", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-IBD) is an international, pediatric and adult database to monitor and report on outcomes of COVID-19 occurring in IBD patients. The goals of the registry is to rapidly define the impact of COVID-19 on patients with IBD and how factors such as age, comorbidities, and IBD treatments impact COVID outcomes.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3193", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-15T13:33:45.000Z", "updated-at": "2021-12-06T10:47:38.565Z", "metadata": {"name": "Center for Engineering Strong Motion Data - Engineering Data Center", "status": "ready", "contacts": [{"contact-name": "CESMD General Contact", "contact-email": "CESMD@strongmotioncenter.org"}], "homepage": "https://strongmotioncenter.org/", "identifier": 3193, "description": "The Center for Engineering Strong Motion Data (CESMD) is a cooperative center established by the US Geological Survey (USGS) and the California Geological Survey (CGS) to integrate earthquake strong-motion data from the CGS California Strong Motion Instrumentation Program, the USGS National Strong Motion Project, and the Advanced National Seismic System (ANSS). The CESMD provides raw and processed strong-motion data for earthquake engineering applications. CESMD allows users to view and download records from recent or archived historical earthquakes, or to search for and download records selected based on various parametric values.", "abbreviation": "CESMD EDC", "access-points": [{"url": "https://strongmotioncenter.org/wserv/events/builder", "name": "CESMD API", "type": "REST"}], "support-links": [{"url": "https://strongmotioncenter.org/wserv/", "name": "CESMD API Documentation", "type": "Help documentation"}, {"url": "https://strongmotioncenter.org/NCESMD/reports/02-0168.pdf", "name": "Report 2012", "type": "Help documentation"}, {"url": "https://strongmotioncenter.org/aboutcesmd.html", "name": "Further Information", "type": "Help documentation"}], "data-processes": [{"url": "https://strongmotioncenter.org/iqr1.php", "name": "Map Browser: Internet Quick Reports", "type": "data access"}, {"url": "https://strongmotioncenter.org/cgi-bin/CESMD/archive.pl", "name": "Browse Archive", "type": "data access"}, {"url": "https://strongmotioncenter.org/cgi-bin/CESMD/search_options.pl", "name": "Search", "type": "data access"}, {"url": "https://strongmotioncenter.org/cgi-bin/CESMD/iqrEventMap.pl", "name": "Map of All Earthquakes with Records", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011797", "name": "re3data:r3d100011797", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001704", "bsg-d001704"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geophysics", "Geotechnics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake"], "countries": ["United States"], "name": "FAIRsharing record for: Center for Engineering Strong Motion Data - Engineering Data Center", "abbreviation": "CESMD EDC", "url": "https://fairsharing.org/fairsharing_records/3193", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Center for Engineering Strong Motion Data (CESMD) is a cooperative center established by the US Geological Survey (USGS) and the California Geological Survey (CGS) to integrate earthquake strong-motion data from the CGS California Strong Motion Instrumentation Program, the USGS National Strong Motion Project, and the Advanced National Seismic System (ANSS). The CESMD provides raw and processed strong-motion data for earthquake engineering applications. CESMD allows users to view and download records from recent or archived historical earthquakes, or to search for and download records selected based on various parametric values.", "publications": [], "licence-links": [{"licence-name": "CESMD Data Policy", "licence-id": 119, "link-id": 807, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2427", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-15T12:11:49.000Z", "updated-at": "2021-12-06T10:49:00.671Z", "metadata": {"doi": "10.25504/FAIRsharing.ph8fx9", "name": "Academic Seismic Portal", "status": "deprecated", "contacts": [{"contact-name": "Lisa Gahagan", "contact-email": "lisa@ig.utexas.edu"}], "homepage": "http://www-udc.ig.utexas.edu/sdc/", "identifier": 2427, "description": "ASP is an archive of academic active-source seismic data, supported by the National Science Foundation.", "abbreviation": "ASP", "support-links": [{"url": "http://www-udc.ig.utexas.edu/sdc/how_to_use.htm", "type": "Help documentation"}], "data-processes": [{"url": "http://www-udc.ig.utexas.edu/sdc/msi/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010631", "name": "re3data:r3d100010631", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000403", "name": "SciCrunch:RRID:SCR_000403", "portal": "SciCrunch"}], "deprecation-date": "2021-9-20", "deprecation-reason": "On June 1, 2020, the Academic Seismic Portal repositories at UTIG were merged into a single collection hosted at Lamont-Doherty Earth Observatory. Content at this resource was removed July 1, 2020. (see https://ig.utexas.edu/academic-seismic-portal-at-utig/)"}, "legacy-ids": ["biodbcore-000909", "bsg-d000909"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geophysics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Academic Seismic Portal", "abbreviation": "ASP", "url": "https://fairsharing.org/10.25504/FAIRsharing.ph8fx9", "doi": "10.25504/FAIRsharing.ph8fx9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ASP is an archive of academic active-source seismic data, supported by the National Science Foundation.", "publications": [], "licence-links": [{"licence-name": "IEDA Terms of Use", "licence-id": 424, "link-id": 757, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3256", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-16T14:33:49.000Z", "updated-at": "2021-11-24T13:17:04.810Z", "metadata": {"doi": "10.25504/FAIRsharing.YlASKr", "name": "SECURE-Cirrhosis Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "covid.cirrhosis@unc.edu"}], "homepage": "https://covidcirrhosis.web.unc.edu/", "identifier": 3256, "description": "SECURE-Cirrhosis Registry is a secure, online, de-identified Personal Health Identifier (PHI)-free reporting registry for patients with chronic liver disease and post-liver transplantation", "support-links": [{"url": "Andrew.Moon@unchealth.unc.edu", "name": "Andrew Moon", "type": "Support email"}, {"url": "https://covidcirrhosis.web.unc.edu/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://covidcirrhosis.web.unc.edu/acknowledgements/", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://global.redcap.unc.edu/surveys/?s=E97LLA8WN8", "name": "Report a case (REDCap)", "type": "Help documentation"}, {"url": "https://covidcirrhosis.web.unc.edu/files/2020/03/SECURE-CIRRHOSIS_Case-Report-Form_3-24-20.pdf", "name": "Case report form", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://covidcirrhosis.web.unc.edu/updates-and-data/", "name": "Updates and data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001770", "bsg-d001770"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Gastroenterology", "Epidemiology"], "domains": ["Liver disease", "Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["Cirrhosis", "COVID-19", "Dashboard", "hepatology", "Observations", "registry"], "countries": ["United States"], "name": "FAIRsharing record for: SECURE-Cirrhosis Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.YlASKr", "doi": "10.25504/FAIRsharing.YlASKr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SECURE-Cirrhosis Registry is a secure, online, de-identified Personal Health Identifier (PHI)-free reporting registry for patients with chronic liver disease and post-liver transplantation", "publications": [{"id": 3104, "pubmed_id": 33035628, "title": "Outcomes following SARS-CoV-2 infection in patients with chronic liver disease: an international registry study.", "year": 2020, "url": "http://doi.org/S0168-8278(20)33667-9", "authors": "Marjot et al.", "journal": "J Hepatol", "doi": "S0168-8278(20)33667-9", "created_at": "2021-09-30T08:28:22.380Z", "updated_at": "2021-09-30T08:28:22.380Z"}, {"id": 3106, "pubmed_id": 32866433, "title": "Outcomes following SARS-CoV-2 infection in liver transplant recipients: an international registry study.", "year": 2020, "url": "http://doi.org/S2468-1253(20)30271-5", "authors": "Webb GJ,Marjot T,Cook JA,Aloman C,Armstrong MJ,Brenner EJ,Catana MA,Cargill T,Dhanasekaran R,Garcia-Juarez I,Hagstrom H,Kennedy JM,Marshall A,Masson S,Mercer CJ,Perumalswami PV,Ruiz I,Thaker S,Ufere NN,Barnes E,Barritt AS 4th,Moon AM", "journal": "Lancet Gastroenterol Hepatol", "doi": "S2468-1253(20)30271-5", "created_at": "2021-09-30T08:28:22.633Z", "updated_at": "2021-09-30T08:28:22.633Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2540", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-21T11:14:06.000Z", "updated-at": "2021-11-24T13:14:09.408Z", "metadata": {"doi": "10.25504/FAIRsharing.z4xpxx", "name": "AgroPortal", "status": "ready", "contacts": [{"contact-name": "Clement Jonquet", "contact-email": "jonquet@lirmm.fr", "contact-orcid": "0000-0002-2404-1582"}], "homepage": "http://agroportal.lirmm.fr", "citations": [{"doi": "10.1016/j.compag.2017.10.012", "publication-id": 1359}], "identifier": 2540, "description": "AgroPortal is an ontology repository for agronomy as well as food, plant, agriculture and biodiversity sciences. It provides ontology hosting, search, versioning, visualization, comment, and recommendation; enables semantic annotation; stores and exploits ontology alignments; and enables interoperation with the semantic web. To align with the needs of the agronomy community, AgroPortal uses SKOS vocabularies and trait dictionaries) and supported features (offering detailed metadata and advanced annotation capabilities).", "abbreviation": "AgroPortal", "access-points": [{"url": "http://sparql.agroportal.lirmm.fr/test/", "name": "SPARQL endpoint", "type": "Other"}, {"url": "http://data.agroportal.lirmm.fr/documentation", "name": "REST API", "type": "REST"}], "support-links": [{"url": "http://agroportal.lirmm.fr/feedback/", "name": "Contact Form", "type": "Contact form"}, {"url": "http://agroportal.lirmm.fr/help", "name": "AgroPortal Help", "type": "Help documentation"}, {"url": "https://github.com/agroportal", "name": "Github Repository", "type": "Github"}, {"url": "http://agroportal.lirmm.fr/about", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/agroportal/documentation/wiki", "name": "AgroPortal Documentation", "type": "Github"}, {"url": "http://agroportal.lirmm.fr/landscape", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/lagroportal", "name": "@lagroportal", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "http://agroportal.lirmm.fr/recommender", "name": "AgroPortal Ontology Recommender", "type": "data access"}, {"url": "http://agroportal.lirmm.fr/annotator", "name": "AgroPortal Annotator", "type": "data access"}, {"url": "http://agroportal.lirmm.fr/mappings", "name": "Browse Mappings between Ontologies", "type": "data access"}, {"url": "http://agroportal.lirmm.fr/search", "name": "Search", "type": "data access"}, {"url": "http://agroportal.lirmm.fr/ontologies", "name": "Browse", "type": "data access"}, {"url": "http://agroportal.lirmm.fr/projects", "name": "Browse Projects", "type": "data access"}]}, "legacy-ids": ["biodbcore-001023", "bsg-d001023"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Farming Systems Research", "Botany", "Fisheries Science", "Plant Breeding", "Agricultural Law", "Health Science", "Animal Husbandry", "Food Security", "Entomology", "Agricultural Engineering", "Rural and Agricultural Sociology", "Ecology", "Aquaculture", "Biodiversity", "Agriculture", "Nutritional Science", "Plant Anatomy", "Plant Cell Biology", "Physics", "Pathology"], "domains": ["Taxonomic classification", "Geographical location", "Food", "Phenotype"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment", "Plant Phenotypes and Traits"], "countries": ["France"], "name": "FAIRsharing record for: AgroPortal", "abbreviation": "AgroPortal", "url": "https://fairsharing.org/10.25504/FAIRsharing.z4xpxx", "doi": "10.25504/FAIRsharing.z4xpxx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AgroPortal is an ontology repository for agronomy as well as food, plant, agriculture and biodiversity sciences. It provides ontology hosting, search, versioning, visualization, comment, and recommendation; enables semantic annotation; stores and exploits ontology alignments; and enables interoperation with the semantic web. To align with the needs of the agronomy community, AgroPortal uses SKOS vocabularies and trait dictionaries) and supported features (offering detailed metadata and advanced annotation capabilities).", "publications": [{"id": 1359, "pubmed_id": null, "title": "AgroPortal: A vocabulary and ontology repository for agronomy", "year": 2018, "url": "https://doi.org/10.1016/j.compag.2017.10.012", "authors": "Cl\u00e9ment Jonquet, Anne Toulet, Elizabeth Arnaud, Sophie Aubin, Esther Dzal\u00e9 Yeumo, Vincent Emonet, John Graybeal, Marie-Ang\u00e9lique Laporte, Mark A. Musen, Valeria Pesce, Pierre Larmande.", "journal": "Computers and Electronics in Agriculture", "doi": "10.1016/j.compag.2017.10.012", "created_at": "2021-09-30T08:24:51.967Z", "updated_at": "2021-09-30T08:24:51.967Z"}, {"id": 2519, "pubmed_id": null, "title": "Reusing the NCBO BioPortal Technology for Agronomy to Build AgroPortal.", "year": 2016, "url": "https://hal.archives-ouvertes.fr/hal-01398251", "authors": "Clement Jonquet, Anne Toulet, Elizabeth Arnaud, Sophie Aubin, Esther Dzal\u00e9-Yeumo, Vincent Emonet, John Graybeal, Mark A Musen, Cyril Pommier, Pierre Larmande", "journal": "Proceedings of the Joint International Conference on Biological Ontology and BioCreative, Corvallis, Oregon, United States, August 1-4, 2016.", "doi": null, "created_at": "2021-09-30T08:27:09.062Z", "updated_at": "2021-09-30T11:28:36.245Z"}, {"id": 3111, "pubmed_id": null, "title": "Harnessing the Power of Unified Metadata in an Ontology Repository: The Case of AgroPortal", "year": 2018, "url": "http://doi.org/10.1007/s13740-018-0091-5", "authors": "Clement Jonquet, Anne Toulet, Biswanath Dutta, Vincent Emonet", "journal": "Journal on Data Semantics", "doi": "10.1007/s13740-018-0091-5", "created_at": "2021-09-30T08:28:23.283Z", "updated_at": "2021-09-30T08:28:23.283Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1677", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:21.341Z", "metadata": {"doi": "10.25504/FAIRsharing.t3snf", "name": "Gene Wiki", "status": "ready", "contacts": [{"contact-name": "Benjamin M Good", "contact-email": "bgood@scripps.edu"}], "homepage": "http://en.wikipedia.org/wiki/Portal:Gene_Wiki", "identifier": 1677, "description": "The goal of the Gene Wiki is to apply community intelligence to the annotation of gene and protein function. The Gene Wiki is an informal collection of pages on human genes and proteins, and this effort to develop these pages is tightly coordinated with the Molecular and Cellular Biology Wikiproject. Our specific aims are summarized as follows: To provide a well written and informative Wikipedia article for every notable human gene; To invite participation by interested lay editors, students, professionals, and academics from around the world; To integrate Gene Wiki articles with existing Wikipedia content through the use of internal wiki links increasing the value of both.", "abbreviation": "Gene Wiki", "support-links": [{"url": "https://en.wikipedia.org/wiki/Portal:Gene_Wiki#Gene_Wiki_Editing_FAQ", "type": "Wikipedia"}, {"url": "https://en.wikipedia.org/wiki/Portal:Gene_Wiki/Discussion", "type": "Wikipedia"}, {"url": "https://twitter.com/GeneWikiPulse", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Gene_Wiki", "type": "Wikipedia"}], "year-creation": 2008, "data-processes": [{"name": "community curation", "type": "data curation"}, {"name": "continuous release", "type": "data release"}, {"name": "web interface", "type": "data access"}, {"name": "programmatic access", "type": "data access"}]}, "legacy-ids": ["biodbcore-000133", "bsg-d000133"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Life Science"], "domains": ["Sequence annotation", "Genome annotation", "Protein", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Gene Wiki", "abbreviation": "Gene Wiki", "url": "https://fairsharing.org/10.25504/FAIRsharing.t3snf", "doi": "10.25504/FAIRsharing.t3snf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of the Gene Wiki is to apply community intelligence to the annotation of gene and protein function. The Gene Wiki is an informal collection of pages on human genes and proteins, and this effort to develop these pages is tightly coordinated with the Molecular and Cellular Biology Wikiproject. Our specific aims are summarized as follows: To provide a well written and informative Wikipedia article for every notable human gene; To invite participation by interested lay editors, students, professionals, and academics from around the world; To integrate Gene Wiki articles with existing Wikipedia content through the use of internal wiki links increasing the value of both.", "publications": [{"id": 1872, "pubmed_id": 22075991, "title": "The Gene Wiki in 2011: community intelligence applied to human gene annotation.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr925", "authors": "Good BM., Clarke EL., de Alfaro L., Su AI.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr925", "created_at": "2021-09-30T08:25:50.565Z", "updated_at": "2021-09-30T08:25:50.565Z"}, {"id": 1873, "pubmed_id": 19755503, "title": "The Gene Wiki: community intelligence applied to human gene annotation.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp760", "authors": "Huss JW., Lindenbaum P., Martone M., Roberts D., Pizarro A., Valafar F., Hogenesch JB., Su AI.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp760", "created_at": "2021-09-30T08:25:50.682Z", "updated_at": "2021-09-30T08:25:50.682Z"}, {"id": 1874, "pubmed_id": 26989148, "title": "Wikidata as a semantic framework for the Gene Wiki initiative.", "year": 2016, "url": "http://doi.org/10.1093/database/baw015", "authors": "Burgstaller-Muehlbacher S,Waagmeester A,Mitraka E,Turner J,Putman T,Leong J,Naik C,Pavlidis P,Schriml L,Good BM,Su AI", "journal": "Database (Oxford)", "doi": "10.1093/database/baw015", "created_at": "2021-09-30T08:25:50.799Z", "updated_at": "2021-09-30T08:25:50.799Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 235, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2636", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-03T13:58:49.000Z", "updated-at": "2021-11-24T13:14:54.934Z", "metadata": {"doi": "10.25504/FAIRsharing.l8Sf5x", "name": "DatabasE of genomiC varIation and Phenotype in Humans using Ensembl Resources", "status": "ready", "contacts": [{"contact-name": "Julia Foreman", "contact-email": "jf11@sanger.ac.uk"}], "homepage": "https://decipher.sanger.ac.uk/", "identifier": 2636, "description": "DECIPHER (Database of Chromosomal Imbalance and Phenotype in Humans Using Ensembl Resources) is an interactive web-based resource that incorporates a suite of tools designed to aid the interpretation of submicroscopic chromosomal imbalance, inversions, and translocations.", "abbreviation": "DECIPHER", "support-links": [{"url": "https://decipher.sanger.ac.uk/", "type": "Blog/News"}, {"url": "https://decipher.sanger.ac.uk/", "type": "Contact form"}, {"url": "decipher@sanger.ac.uk", "type": "Support email"}, {"url": "https://decipher.sanger.ac.uk/files/pdfs/decipher_database_flowchart.pdf", "type": "Help documentation"}, {"url": "https://decipher.sanger.ac.uk/files/pdfs/decipher_ethical_framework.pdf", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://decipher.sanger.ac.uk/browser", "name": "Genome Browser", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/phenogram", "name": "Phenotype Browser", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/genes", "name": "Gene Browser", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/disorders#gene-disorders", "name": "Gene Disorders Browser", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/disorders#syndromes/overview", "name": "CNV Syndromes Browser", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/", "name": "Search", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/", "name": "Login", "type": "data access"}, {"url": "https://decipher.sanger.ac.uk/about#downloads/data", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001127", "bsg-d001127"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Genome visualization", "Chromosome", "Sequence variant", "Chromosomal aberration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: DatabasE of genomiC varIation and Phenotype in Humans using Ensembl Resources", "abbreviation": "DECIPHER", "url": "https://fairsharing.org/10.25504/FAIRsharing.l8Sf5x", "doi": "10.25504/FAIRsharing.l8Sf5x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DECIPHER (Database of Chromosomal Imbalance and Phenotype in Humans Using Ensembl Resources) is an interactive web-based resource that incorporates a suite of tools designed to aid the interpretation of submicroscopic chromosomal imbalance, inversions, and translocations.", "publications": [{"id": 873, "pubmed_id": 24150940, "title": "DECIPHER: database for the interpretation of phenotype-linked plausibly pathogenic sequence and copy-number variation.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt937", "authors": "Bragin E,Chatzimichali EA,Wright CF,Hurles ME,Firth HV,Bevan AP,Swaminathan GJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt937", "created_at": "2021-09-30T08:23:56.418Z", "updated_at": "2021-09-30T11:28:54.450Z"}, {"id": 874, "pubmed_id": 19344873, "title": "DECIPHER: Database of Chromosomal Imbalance and Phenotype in Humans Using Ensembl Resources.", "year": 2009, "url": "http://doi.org/10.1016/j.ajhg.2009.03.010", "authors": "Firth HV,Richards SM,Bevan AP,Clayton S,Corpas M,Rajan D,Van Vooren S,Moreau Y,Pettett RM,Carter NP", "journal": "Am J Hum Genet", "doi": "10.1016/j.ajhg.2009.03.010", "created_at": "2021-09-30T08:23:56.521Z", "updated_at": "2021-09-30T08:23:56.521Z"}], "licence-links": [{"licence-name": "DECIPHER Data Sharing", "licence-id": 231, "link-id": 1289, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3300", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-07T20:05:28.000Z", "updated-at": "2022-02-08T10:36:50.222Z", "metadata": {"doi": "10.25504/FAIRsharing.63520c", "name": "bio.tools", "status": "ready", "contacts": [{"contact-name": "Support Email", "contact-email": "registry-support@elixirmail.cbs.dtu.dk"}], "homepage": "https://bio.tools/", "citations": [{"doi": "10.1093/nar/gkv1116", "pubmed-id": 26538599, "publication-id": 1694}], "identifier": 3300, "description": "bio.tools is a registry of information about bioinformatics software and data services. It was created to help researchers in biological and biomedical science to find and use such resources.", "abbreviation": "bio.tools", "access-points": [{"url": "https://biotools.readthedocs.io/en/latest/api_reference.html", "name": "API Reference", "type": "REST"}], "support-links": [{"url": "https://biotools.readthedocs.io/en/latest/api_usage_guide.html", "name": "API Usage Guide", "type": "Help documentation"}, {"url": "http://github.com/bio-tools/biotoolsregistry/", "name": "GitHub Project", "type": "Github"}, {"url": "https://bio.tools/about", "name": "About", "type": "Help documentation"}, {"url": "https://biotools.readthedocs.io/en/latest/", "name": "General Documentation", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/bio-tools-documentation", "name": "bio.tools documentation", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/bio-tools-edam-drop-in-hackathon-discussions", "name": "bio.tools & EDAM drop-in hackathon & discussions", "type": "TeSS links to training materials"}, {"url": "https://biotools.readthedocs.io/en/latest/contributors_guide.html", "name": "Contributors Guide", "type": "Help documentation"}, {"url": "https://biotools.readthedocs.io/en/latest/quickstart_guide.html", "name": "Quickstart Guide ", "type": "Help documentation"}, {"url": "https://biotools.readthedocs.io/en/latest/curators_guide.html", "name": "Curators Guide", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://bio.tools/t?page=1", "name": "View all Tools", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013668", "name": "re3data:r3d100013668", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001815", "bsg-d001815"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Biomedical Science", "Biology"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["Denmark"], "name": "FAIRsharing record for: bio.tools", "abbreviation": "bio.tools", "url": "https://fairsharing.org/10.25504/FAIRsharing.63520c", "doi": "10.25504/FAIRsharing.63520c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: bio.tools is a registry of information about bioinformatics software and data services. It was created to help researchers in biological and biomedical science to find and use such resources.", "publications": [{"id": 1694, "pubmed_id": 26538599, "title": "Tools and data services registry: a community effort to document bioinformatics resources.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1116", "authors": "Ison J,Rapacki K,Menager H et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1116", "created_at": "2021-09-30T08:25:29.894Z", "updated_at": "2021-09-30T11:29:18.611Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2426, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2637", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-03T17:00:13.000Z", "updated-at": "2021-11-24T13:14:55.023Z", "metadata": {"name": "MUGEN mouse database", "status": "deprecated", "contacts": [{"contact-name": "Aidinis Vassilis", "contact-email": "v.aidinis@fleming.gr", "contact-orcid": "0000-0001-9531-7729"}], "homepage": "http://bioit.fleming.gr/mugen/mde.jsp", "identifier": 2637, "description": "The MUGEN mouse database (MMdb) is a database of murine models of immune processes and immunological diseases.", "abbreviation": "MMdb", "support-links": [{"url": "http://bioit.fleming.gr/mugen/mde.jsp", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://bioit.fleming.gr/mugen/mde.jsp", "name": "Browse & Search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001128", "bsg-d001128"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunology", "Life Science", "Biomedical Science"], "domains": ["Disease"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["Greece"], "name": "FAIRsharing record for: MUGEN mouse database", "abbreviation": "MMdb", "url": "https://fairsharing.org/fairsharing_records/2637", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MUGEN mouse database (MMdb) is a database of murine models of immune processes and immunological diseases.", "publications": [{"id": 2703, "pubmed_id": 17932065, "title": "MUGEN mouse database; animal models of human immunological diseases.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm838", "authors": "Aidinis V,Chandras C,Manoloukos M,Thanassopoulou A,Kranidioti K,Armaka M,Douni E,Kontoyiannis DL,Zouberakis M,Kollias G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm838", "created_at": "2021-09-30T08:27:31.993Z", "updated_at": "2021-09-30T11:29:41.604Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2811", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-30T20:32:14.000Z", "updated-at": "2021-12-06T10:47:24.899Z", "metadata": {"name": "Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations", "status": "ready", "contacts": [{"contact-name": "David M Winker", "contact-email": "David.M.Winker@nasa.gov", "contact-orcid": "0000-0002-3919-2244"}], "homepage": "https://www-calipso.larc.nasa.gov", "identifier": 2811, "description": "A joint effort between the US and France to collect particulate information (aerosol data) on the atmosphere and their influence on the environment and climate. This information is gathered by the CALIPSO satellite launched in 2006.", "abbreviation": "CALIPSO", "support-links": [{"url": "https://www-calipso.larc.nasa.gov/resources/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www-calipso.larc.nasa.gov/resources/calipso_users_guide/", "name": "CALIPSO Data Users Guide", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://eosweb.larc.nasa.gov/", "name": "Access data", "type": "data access"}, {"url": "https://www-calipso.larc.nasa.gov/products/CALIPSO_DPC_Rev4x50.pdf", "name": "Consult CALIPSO Data Products Catalog", "type": "data access"}, {"url": "https://www-calipso.larc.nasa.gov/tools/data_avail/", "name": "Data Availability Site", "type": "data release"}, {"url": "https://subset.larc.nasa.gov/calipso/login.php", "name": "Access data", "type": "data access"}], "associated-tools": [{"url": "https://www-calipso.larc.nasa.gov/tools/read_sw/index.php", "name": "IDL Read Package Version 4.90v1"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012490", "name": "re3data:r3d100012490", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001310", "bsg-d001310"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science", "Atmospheric Science"], "domains": ["Environmental contaminant", "Environmental material", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment"], "countries": ["United States", "France"], "name": "FAIRsharing record for: Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations", "abbreviation": "CALIPSO", "url": "https://fairsharing.org/fairsharing_records/2811", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A joint effort between the US and France to collect particulate information (aerosol data) on the atmosphere and their influence on the environment and climate. This information is gathered by the CALIPSO satellite launched in 2006.", "publications": [{"id": 2733, "pubmed_id": 31662738, "title": "CALIPSO (IIR-CALIOP) Retrievals of Cirrus Cloud Ice Particle Concentrations.", "year": 2018, "url": "http://doi.org/10.5194/acp-18-17325-2018", "authors": "Mitchell DL,Garnier A,Pelon J,Erfani E", "journal": "Atmos Chem Phys", "doi": "10.5194/acp-18-17325-2018", "created_at": "2021-09-30T08:27:35.622Z", "updated_at": "2021-09-30T08:27:35.622Z"}, {"id": 2734, "pubmed_id": 31921372, "title": "The CALIPSO Version 4 Automated Aerosol Classification and Lidar Ratio Selection Algorithm.", "year": 2018, "url": "http://doi.org/10.5194/amt-11-6107-2018", "authors": "Kim MH,Omar AH,Tackett JL,Vaughan MA,Winker DM,Trepte CR,Hu Y,Liu Z,Poole LR,Pitts MC,Kar J,Magill BE", "journal": "Atmos Meas Tech", "doi": "10.5194/amt-11-6107-2018", "created_at": "2021-09-30T08:27:35.730Z", "updated_at": "2021-09-30T08:27:35.730Z"}, {"id": 2735, "pubmed_id": 31832108, "title": "CALIPSO IIR Version 2 Level 1b calibrated radiances: analysis and reduction of residual biases in the Northern Hemisphere.", "year": 2018, "url": "http://doi.org/10.5194/amt-11-2485-2018", "authors": "Garnier A,Tremas T,Pelon J,Lee KP,Nobileau D,Gross-Colzy L,Pascal N,Ferrage P,Scott NA", "journal": "Atmos Meas Tech", "doi": "10.5194/amt-11-2485-2018", "created_at": "2021-09-30T08:27:35.839Z", "updated_at": "2021-09-30T08:27:35.839Z"}], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 1790, "relation": "undefined"}, {"licence-name": "NASA Freedom of Information Act (FOIA)", "licence-id": 534, "link-id": 1791, "relation": "undefined"}, {"licence-name": "NASA No Fear Act", "licence-id": 537, "link-id": 1792, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1798", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.060Z", "metadata": {"doi": "10.25504/FAIRsharing.krvr4", "name": "Erythropoiesis Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "epodb@cbil.humgen.upenn.edu"}], "homepage": "http://www.cbil.upenn.edu/EpoDB/", "identifier": 1798, "description": "EpoDB (Erythropoiesis database) is a database of genes that relate to vertebrate red blood cells. It includes DNA sequence, structural features, protein information, gene expression information and transcription factor binding sites.", "abbreviation": "EpoDB", "support-links": [{"url": "http://www.cbil.upenn.edu/EpoDB/release/version_2.2/epodb.html", "type": "Help documentation"}], "year-creation": 1996, "associated-tools": [{"url": "http://www.cbil.upenn.edu/EpoDB/release/version_2.2/blast.html", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000258", "bsg-d000258"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Biological regulation", "Gene feature", "Transcription factor", "Protein", "Gene"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Erythropoiesis Database", "abbreviation": "EpoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.krvr4", "doi": "10.25504/FAIRsharing.krvr4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EpoDB (Erythropoiesis database) is a database of genes that relate to vertebrate red blood cells. It includes DNA sequence, structural features, protein information, gene expression information and transcription factor binding sites.", "publications": [{"id": 1062, "pubmed_id": 9847180, "title": "EpoDB: a prototype database for the analysis of genes expressed during vertebrate erythropoiesis.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.200", "authors": "Stoeckert CJ., Salas F., Brunk B., Overton GC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/27.1.200", "created_at": "2021-09-30T08:24:17.606Z", "updated_at": "2021-09-30T08:24:17.606Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2561", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-05T12:30:15.000Z", "updated-at": "2021-11-24T13:19:36.196Z", "metadata": {"doi": "10.25504/FAIRsharing.at6rsf", "name": "Image Attribution Framework Development Repository", "status": "deprecated", "contacts": [{"contact-name": "Christian Haselgrove", "contact-email": "iaf@virtualbrain.org", "contact-orcid": "0000-0002-4438-0637"}], "homepage": "http://iaf.virtualbrain.org/", "identifier": 2561, "description": "The Image Attribution Framework Development Repository is a system for neuroimaging data citation and credit with a practical implementation that meets the objectives of unique identification, data use tracking, and integration with traditional credit attribution systems. This reference implementation was created which mirrors the structure of the Neuroimaging Informatics Tools and Resources Clearinghouse (NITRC) neuroimaging data repository using the XNAT platform. DOIs can be assigned upon dataset upload, meaning that project-level identifiers as well as per-image DOIs are created. Note that this reference implementation is for illustration purposes. It is expected that ultimate success of this concept will be through the implementation of these recommendations within existing data hosts, and not through this reference implementation itself.", "abbreviation": "IAF", "support-links": [{"url": "http://github.com/chaselgrove/doi", "name": "GitHub Repository", "type": "Github"}], "year-creation": 2016, "data-processes": [{"url": "http://iaf.virtualbrain.org/xnat/app/template/XDATScreen_search_wizard1.vm", "name": "Advanced Search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is superceded by NITRC-IR."}, "legacy-ids": ["biodbcore-001044", "bsg-d001044"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Magnetic resonance imaging", "Centrally registered identifier", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Image Attribution Framework Development Repository", "abbreviation": "IAF", "url": "https://fairsharing.org/10.25504/FAIRsharing.at6rsf", "doi": "10.25504/FAIRsharing.at6rsf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Image Attribution Framework Development Repository is a system for neuroimaging data citation and credit with a practical implementation that meets the objectives of unique identification, data use tracking, and integration with traditional credit attribution systems. This reference implementation was created which mirrors the structure of the Neuroimaging Informatics Tools and Resources Clearinghouse (NITRC) neuroimaging data repository using the XNAT platform. DOIs can be assigned upon dataset upload, meaning that project-level identifiers as well as per-image DOIs are created. Note that this reference implementation is for illustration purposes. It is expected that ultimate success of this concept will be through the implementation of these recommendations within existing data hosts, and not through this reference implementation itself.", "publications": [{"id": 2068, "pubmed_id": 27570508, "title": "Data Citation in Neuroimaging: Proposed Best Practices for Data Identification and Attribution.", "year": 2016, "url": "http://doi.org/10.3389/fninf.2016.00034", "authors": "Honor LB,Haselgrove C,Frazier JA,Kennedy DN", "journal": "Front Neuroinform", "doi": "10.3389/fninf.2016.00034", "created_at": "2021-09-30T08:26:13.081Z", "updated_at": "2021-09-30T08:26:13.081Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3059", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-30T12:19:26.000Z", "updated-at": "2022-02-08T10:41:31.715Z", "metadata": {"doi": "10.25504/FAIRsharing.6bb22f", "name": "Physical Oceanography Distributed Active Archive Center", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "podaac@podaac.jpl.nasa.gov"}], "homepage": "https://podaac.jpl.nasa.gov/", "identifier": 3059, "description": "Since the launch of NASA's first ocean-observing satellite, Seasat, in 1978, the Physical Oceanography Distributed Active Archive Center (PO.DAAC) has become the first data center for measurements focused on sea surface topography, ocean temperature, ocean winds, salinity, gravity, and ocean circulation. In addition to providing access to its data holdings, PO.DAAC acts as a gateway to data stored at other ocean and climate archives. This and other tools and services enable PO.DAAC to support a wide user community working in areas such as ocean and climate research, applied science and industry, natural resource management, policy making, and general public consumption. The PO.DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "PO.DAAC", "access-points": [{"url": "https://podaac.jpl.nasa.gov/ws", "name": "PO.DAAC Webservices", "type": "Other"}], "support-links": [{"url": "https://www.facebook.com/podaac", "name": "Facebook", "type": "Facebook"}, {"url": "https://podaac.jpl.nasa.gov/forum/", "type": "Forum"}, {"url": "https://podaac.jpl.nasa.gov/MailingList", "type": "Mailing list"}, {"url": "https://www.youtube.com/user/NASAJPLPODAAC", "name": "Youtube", "type": "Video"}, {"url": "https://podaac.jpl.nasa.gov/resources", "name": "Data User Resources", "type": "Help documentation"}, {"url": "https://podaac.jpl.nasa.gov/Data-Provider-Resources", "name": "Data Provider Resources", "type": "Help documentation"}, {"url": "https://podaac.jpl.nasa.gov/PO.DAAC_RSS_Feed", "type": "Blog/News"}, {"url": "https://twitter.com/podaac", "type": "Twitter"}], "year-creation": 1978, "data-processes": [{"url": "https://podaac.jpl.nasa.gov/datasetlist", "name": "Browse & Filter Data", "type": "data access"}, {"url": "https://podaac.jpl.nasa.gov/dataaccess", "name": "Access & Download Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010505", "name": "re3data:r3d100010505", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001567", "bsg-d001567"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Salinity", "Temperature", "Topography", "Wind"], "countries": ["United States"], "name": "FAIRsharing record for: Physical Oceanography Distributed Active Archive Center", "abbreviation": "PO.DAAC", "url": "https://fairsharing.org/10.25504/FAIRsharing.6bb22f", "doi": "10.25504/FAIRsharing.6bb22f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Since the launch of NASA's first ocean-observing satellite, Seasat, in 1978, the Physical Oceanography Distributed Active Archive Center (PO.DAAC) has become the first data center for measurements focused on sea surface topography, ocean temperature, ocean winds, salinity, gravity, and ocean circulation. In addition to providing access to its data holdings, PO.DAAC acts as a gateway to data stored at other ocean and climate archives. This and other tools and services enable PO.DAAC to support a wide user community working in areas such as ocean and climate research, applied science and industry, natural resource management, policy making, and general public consumption. The PO.DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "Caltech/JPL Privacy Policies and Important Notices", "licence-id": 94, "link-id": 2044, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1856", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:37.502Z", "metadata": {"doi": "10.25504/FAIRsharing.3mzbyb", "name": "Human Platelet Antigens", "status": "deprecated", "contacts": [{"contact-name": "Steven G. E. Marsh", "contact-email": "steven.marsh@ucl.ac.uk", "contact-orcid": "0000-0003-2855-4120"}], "homepage": "http://www.ebi.ac.uk/ipd/hpa/", "citations": [{"doi": "10.1046/j.1423-0410.2003.00331.x", "pubmed-id": 14516468, "publication-id": 2757}], "identifier": 1856, "description": "The database provides a centralised repository for the data which define the human platelet antigens (HPA). Alloantibodies against human platelet antigens are involved in neonatal alloimmune thrombocytopenia, post-transfusion purpura and refractoriness to random donor platelets.", "abbreviation": "IPD-HPA", "support-links": [{"url": "https://www.ebi.ac.uk/support/ipd.php", "name": "IPD Contact Form", "type": "Contact form"}, {"url": "naw23@cam.ac.uk", "name": "Nick Watkins", "type": "Support email"}], "year-creation": 1990, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/hpa/table1.html", "name": "Browse HPA - alloantigen/protein data", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/hpa/table2.html", "name": "Browse HPA Genetic Information", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/hpa/freqs_1.html", "name": "Tabular HPA Allele Frequencies", "type": "data access"}], "deprecation-date": "2020-02-10", "deprecation-reason": "The IPD-HPA database has been part of the IPD project since 2003 and represents a legacy system that is no longer under active development, but is provided to the community for reference purposes (see https://doi.org/10.1007/s00251-019-01133-w for more information)."}, "legacy-ids": ["biodbcore-000317", "bsg-d000317"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Immunology", "Biomedical Science"], "domains": ["Antigen", "Antibody", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Human Platelet Antigens (HPA)"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Human Platelet Antigens", "abbreviation": "IPD-HPA", "url": "https://fairsharing.org/10.25504/FAIRsharing.3mzbyb", "doi": "10.25504/FAIRsharing.3mzbyb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database provides a centralised repository for the data which define the human platelet antigens (HPA). Alloantibodies against human platelet antigens are involved in neonatal alloimmune thrombocytopenia, post-transfusion purpura and refractoriness to random donor platelets.", "publications": [{"id": 368, "pubmed_id": 23180793, "title": "IPD--the Immuno Polymorphism Database.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1140", "authors": "Robinson J., Halliwell JA., McWilliam H., Lopez R., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1140", "created_at": "2021-09-30T08:22:59.558Z", "updated_at": "2021-09-30T08:22:59.558Z"}, {"id": 2757, "pubmed_id": 14516468, "title": "Nomenclature of human platelet antigens.", "year": 2003, "url": "http://doi.org/10.1046/j.1423-0410.2003.00331.x", "authors": "Metcalfe P,Watkins NA,Ouwehand WH,Kaplan C,Newman P,Kekomaki R,De Haas M,Aster R,Shibata Y,Smith J,Kiefel V,Santoso S", "journal": "Vox Sang", "doi": "10.1046/j.1423-0410.2003.00331.x", "created_at": "2021-09-30T08:27:38.872Z", "updated_at": "2021-09-30T08:27:38.872Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 281, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2880", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-28T11:35:24.000Z", "updated-at": "2021-12-06T10:47:58.368Z", "metadata": {"doi": "10.25504/FAIRsharing.56a0Uj", "name": "GeoNames", "status": "ready", "contacts": [{"contact-name": "Marc Wick", "contact-email": "marc@geonames.org"}], "homepage": "https://www.geonames.org/", "identifier": 2880, "description": "GeoNames integrates geographical data such as names of places in various languages, elevation, population and others from various sources. Users may manually edit, correct and add new names using a user friendly wiki interface.", "abbreviation": "GeoNames", "access-points": [{"url": "https://www.geonames.org/export/ws-overview.html", "name": "Web Services Overview", "type": "REST"}], "support-links": [{"url": "http://forum.geonames.org/", "name": "GeoNames Forum", "type": "Forum"}, {"url": "https://www.geonames.org/manual.html", "name": "User Manual", "type": "Help documentation"}, {"url": "https://www.geonames.org/recent-changes.html", "name": "Recent Changes", "type": "Help documentation"}, {"url": "https://www.geonames.org/data-sources.html", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://www.geonames.org/statistics/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.geonames.org/export/web-services.html", "name": "Web Services Documentation", "type": "Help documentation"}, {"url": "https://www.geonames.org/export/client-libraries.html", "name": "Client Libraries", "type": "Help documentation"}, {"url": "https://www.geonames.org/about.html", "name": "About GeoNames", "type": "Help documentation"}, {"url": "http://www.geonames.org/data-sources.html", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/GeoNames", "name": "Wikipedia entry", "type": "Wikipedia"}], "year-creation": 2006, "data-processes": [{"url": "https://www.geonames.org/export/#dump", "name": "Download Database", "type": "data release"}, {"url": "https://www.geonames.org/postal-codes/", "name": "Browse by Postal Code", "type": "data access"}, {"url": "https://www.geonames.org/countries/", "name": "Browse by Country", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010245", "name": "re3data:r3d100010245", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001381", "bsg-d001381"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Geography"], "domains": ["Geographical location"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: GeoNames", "abbreviation": "GeoNames", "url": "https://fairsharing.org/10.25504/FAIRsharing.56a0Uj", "doi": "10.25504/FAIRsharing.56a0Uj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeoNames integrates geographical data such as names of places in various languages, elevation, population and others from various sources. Users may manually edit, correct and add new names using a user friendly wiki interface.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1730, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2503", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-07T13:07:10.000Z", "updated-at": "2021-12-06T10:48:56.425Z", "metadata": {"doi": "10.25504/FAIRsharing.nvwz0x", "name": "openICPSR", "status": "ready", "homepage": "https://www.openicpsr.org/openicpsr/", "identifier": 2503, "description": "openICPSR shares and stores social and behavioral science research data. It maintains a data archive of more than 250,000 files of research in the social and behavioral sciences and hosts 21 specialized collections of data in education, aging, criminal justice, substance abuse, terrorism, and other fields. Data is preserved as-is and is available to data users at no cost. openICPSR is undergoing development and is currently free for all users to share their data up to a 2GB limit.", "abbreviation": "openICPSR", "support-links": [{"url": "https://www.openicpsr.org/openicpsr/contact", "name": "Contact form", "type": "Contact form"}, {"url": "https://www.openicpsr.org/openicpsr/faqs", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1962, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012693", "name": "re3data:r3d100012693", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000985", "bsg-d000985"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities", "Social Science", "Criminology", "Health Science", "Social and Behavioural Science", "Jurisprudence", "Political Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Terrorism"], "countries": ["Worldwide"], "name": "FAIRsharing record for: openICPSR", "abbreviation": "openICPSR", "url": "https://fairsharing.org/10.25504/FAIRsharing.nvwz0x", "doi": "10.25504/FAIRsharing.nvwz0x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: openICPSR shares and stores social and behavioral science research data. It maintains a data archive of more than 250,000 files of research in the social and behavioral sciences and hosts 21 specialized collections of data in education, aging, criminal justice, substance abuse, terrorism, and other fields. Data is preserved as-is and is available to data users at no cost. openICPSR is undergoing development and is currently free for all users to share their data up to a 2GB limit.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3016", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-26T10:15:06.000Z", "updated-at": "2021-11-24T13:19:39.964Z", "metadata": {"doi": "10.25504/FAIRsharing.uBpQ1q", "name": "Panorama Public", "status": "ready", "contacts": [{"contact-name": "Brendan MacLean", "contact-email": "brendanx@uw.edu", "contact-orcid": "0000-0002-9575-0255"}], "homepage": "https://panoramaweb.org", "citations": [{"doi": "10.1074/mcp.RA117.000543", "pubmed-id": 29487113, "publication-id": 1946}], "identifier": 3016, "description": "Panorama Public is a data repository for sharing and disseminating results from analyzing mass spectrometry data with the Skyline software. Skyline supports targeted analysis of proteomics or metabolomics data from a variety of mass spectrometry data acquisition techniques. As a member of the ProteomeXchange Consortium, Panorama Public can assign ProteomeXchange accessions to submitted proteomics datasets.", "abbreviation": "Panorama Public", "support-links": [{"url": "https://panoramaweb.org/support.url", "name": "Support Forum", "type": "Forum"}, {"url": "https://panoramaweb.org/tutorials.url", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://panoramaweb.org/webinars.url", "name": "Webinars", "type": "Help documentation"}, {"url": "https://panoramaweb.org/documentation.url", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://panoramaweb.org/public.url", "name": "Search & browse", "type": "data access"}, {"url": "https://panoramaweb.org/doc_panorama_public.url", "name": "Submit Data", "type": "data curation"}, {"url": "https://panoramaweb.org/doc_download_public_data.url", "name": "Download Data", "type": "data access"}], "associated-tools": [{"url": "https://skyline.ms/Skyline.url", "name": "Skyline"}]}, "legacy-ids": ["biodbcore-001524", "bsg-d001524"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Life Science", "Metabolomics"], "domains": ["Mass spectrometry assay"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Panorama Public", "abbreviation": "Panorama Public", "url": "https://fairsharing.org/10.25504/FAIRsharing.uBpQ1q", "doi": "10.25504/FAIRsharing.uBpQ1q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Panorama Public is a data repository for sharing and disseminating results from analyzing mass spectrometry data with the Skyline software. Skyline supports targeted analysis of proteomics or metabolomics data from a variety of mass spectrometry data acquisition techniques. As a member of the ProteomeXchange Consortium, Panorama Public can assign ProteomeXchange accessions to submitted proteomics datasets.", "publications": [{"id": 1946, "pubmed_id": 29487113, "title": "Panorama Public: A Public Repository for Quantitative Data Sets Processed in Skyline.", "year": 2018, "url": "http://doi.org/10.1074/mcp.RA117.000543", "authors": "Sharma V,Eckels J,Schilling B,Ludwig C,Jaffe JD,MacCoss MJ,MacLean B", "journal": "Mol Cell Proteomics", "doi": "10.1074/mcp.RA117.000543", "created_at": "2021-09-30T08:25:58.973Z", "updated_at": "2021-09-30T08:25:58.973Z"}, {"id": 1961, "pubmed_id": 25102069, "title": "Panorama: a targeted proteomics knowledge base.", "year": 2014, "url": "http://doi.org/10.1021/pr5006636", "authors": "Sharma V,Eckels J,Taylor GK,Shulman NJ,Stergachis AB,Joyner SA,Yan P,Whiteaker JR,Halusa GN,Schilling B,Gibson BW,Colangelo CM,Paulovich AG,Carr SA,Jaffe JD,MacCoss MJ,MacLean B", "journal": "J Proteome Res", "doi": "10.1021/pr5006636", "created_at": "2021-09-30T08:26:00.673Z", "updated_at": "2021-09-30T08:26:00.673Z"}], "licence-links": [{"licence-name": "University of Washington Website Terms and Conditions of Use", "licence-id": 827, "link-id": 2447, "relation": "undefined"}, {"licence-name": "University of Washington Online Privacy Statement", "licence-id": 826, "link-id": 2448, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2449, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2450, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3231", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-09T12:02:54.000Z", "updated-at": "2021-12-06T10:47:40.726Z", "metadata": {"name": "Database of Individual Seismogenic Sources", "status": "ready", "homepage": "http://diss.rm.ingv.it/diss/", "citations": [{"publication-id": 3067}], "identifier": 3231, "description": "The Database of Individual Seismogenic Sources (DISS) is a georeferenced repository of tectonic, fault, and paleoseismological information expressly devoted, but not limited, to potential applications in the assessment of seismic hazard at regional and national scale. DISS represents faults in 3D and contains fully-parameterized records. The core objects of DISS are: individual seismogenic sources, composite seismogenic sources, debated seismogenic sources and subduction zones.", "abbreviation": "DISS", "access-points": [{"url": "https://www.seismofaults.eu/index.php/services/diss-services/", "name": "DISS Web Services", "type": "REST"}], "support-links": [{"url": "http://diss.rm.ingv.it/diss/index.php/help/27-contactus", "name": "Contact Form", "type": "Contact form"}, {"url": "http://diss.rm.ingv.it/diss/index.php/help/26-faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://diss.rm.ingv.it/diss/index.php/DISS321", "name": "Accessing DISS", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/help", "name": "Help", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/21-downloads/36-other-diss-related-products", "name": "General DISS Documentation", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/about/13-introduction", "name": "Introduction to DISS", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/about", "name": "About", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/about/11-diss-release-notes", "name": "Release Notes", "type": "Help documentation"}, {"url": "http://diss.rm.ingv.it/diss/index.php/community", "name": "Community", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "http://diss.rm.ingv.it/dissmap/dissmap.phtml", "name": "Map Interface", "type": "data access"}, {"url": "http://diss.rm.ingv.it/dissnet", "name": "Browse & Search Data Tables", "type": "data access"}, {"url": "http://diss.rm.ingv.it/dissGM/", "name": "Web Mapper", "type": "data access"}, {"url": "http://diss.rm.ingv.it/diss/index.php/component/chronoforms5/?chronoform=DISS321", "name": "Download", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012621", "name": "re3data:r3d100012621", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001745", "bsg-d001745"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geography", "Earth Science", "Physical Geography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Geological mapping", "Paleoseismology", "Seismology"], "countries": ["Italy"], "name": "FAIRsharing record for: Database of Individual Seismogenic Sources", "abbreviation": "DISS", "url": "https://fairsharing.org/fairsharing_records/3231", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Individual Seismogenic Sources (DISS) is a georeferenced repository of tectonic, fault, and paleoseismological information expressly devoted, but not limited, to potential applications in the assessment of seismic hazard at regional and national scale. DISS represents faults in 3D and contains fully-parameterized records. The core objects of DISS are: individual seismogenic sources, composite seismogenic sources, debated seismogenic sources and subduction zones.", "publications": [{"id": 3067, "pubmed_id": null, "title": "The Database of Individual Seismogenic Sources (DISS), version 3: summarizing 20 years of research on Italy's earthquake geology", "year": 2008, "url": "http://dx.doi.org/10.1016/j.tecto.2007.04.014", "authors": "Basili R., G. Valensise, P. Vannoli, P. Burrato, U. Fracassi, S. Mariano, M.M. Tiberti, E. Boschi", "journal": "Tectonophysics", "doi": null, "created_at": "2021-09-30T08:28:17.966Z", "updated_at": "2021-09-30T08:28:17.966Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2159, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2804", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-22T19:00:22.000Z", "updated-at": "2022-02-08T10:51:43.410Z", "metadata": {"doi": "10.25504/FAIRsharing.ea287c", "name": "Canadian Disaster Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ps.cdd-bdc.sp@ps-sp.gc.ca"}], "homepage": "https://www.publicsafety.gc.ca/cnt/rsrcs/cndn-dsstr-dtbs/index-en.aspx", "citations": [], "identifier": 2804, "description": "The Canadian Disaster Database (CDD) contains detailed disaster information on more than 1000 natural, technological and conflict events (excluding war) that have happened since 1900 at home or abroad and that have directly affected Canadians. The database describes where and when a disaster occurred, the number of injuries, evacuations, and fatalities, as well as a rough estimate of the costs. As much as possible, the CDD contains primary data that is valid, current and supported by reliable and traceable sources, including federal institutions, provincial/territorial governments, non-governmental organizations and media sources. Data is updated and reviewed on a semi-annual basis.", "abbreviation": "CDD", "data-curation": {}, "year-creation": 2003, "data-processes": [{"url": "https://cdd.publicsafety.gc.ca/srchpg-eng.aspx?dynamic=false", "name": "Standard Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012041", "name": "re3data:r3d100012041", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001303", "bsg-d001303"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: Canadian Disaster Database", "abbreviation": "CDD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ea287c", "doi": "10.25504/FAIRsharing.ea287c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canadian Disaster Database (CDD) contains detailed disaster information on more than 1000 natural, technological and conflict events (excluding war) that have happened since 1900 at home or abroad and that have directly affected Canadians. The database describes where and when a disaster occurred, the number of injuries, evacuations, and fatalities, as well as a rough estimate of the costs. As much as possible, the CDD contains primary data that is valid, current and supported by reliable and traceable sources, including federal institutions, provincial/territorial governments, non-governmental organizations and media sources. Data is updated and reviewed on a semi-annual basis.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2260", "type": "fairsharing-records", "attributes": {"created-at": "2016-01-15T14:48:10.000Z", "updated-at": "2021-11-24T13:20:07.629Z", "metadata": {"doi": "10.25504/FAIRsharing.bc3cnk", "name": "Visualizing Continuous Health Usability Test Results Dataset", "status": "deprecated", "contacts": [{"contact-name": "Andres Ledesma", "contact-email": "andres.ledesma@tut.fi"}], "homepage": "http://www.tut.fi/phi/?p=319", "identifier": 2260, "description": "The dataset was obtained from series of usability tests on a software tool for visualizing continuous health status of a modeled patient. The emphasis of this results are on the hFigures visualization llibrary. The software is a dashboard for visualizing the health status of a modeled virtual patient improving the health condition over a coaching program. The files are in machine-readable format saved as comma separated values. The questionnaires applied were: After Scenario Questionnaire Computer System Usability Questionnaire Nielsen\u2019s Heuristic Evaluation The questionnaires were done using the web application by Gary Perlman available in the url: garyperlman.com/quest/ the file laboratory.csv contains the tasks and their time to completion along with the errors occurred. The tasks, software tool and research context is available in the article submitted to BMC Medical Informatics & Decision Making. The experiment included three usability experts and eleven non-expert users. The file asq.csv contains the answers to the three questions of the After Scenario Questionnaire. The file csuq.csv contains the answers to the 19 questions of the Computer System Usability Questionnaire. The file heuristics.csv contains the answers to the 10 questions of the Nielsen\u2019s Heuristic Evaluation. This datasets are available under the MIT license.", "year-creation": 2014, "deprecation-date": "2021-9-27", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000734", "bsg-d000734"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: Visualizing Continuous Health Usability Test Results Dataset", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bc3cnk", "doi": "10.25504/FAIRsharing.bc3cnk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The dataset was obtained from series of usability tests on a software tool for visualizing continuous health status of a modeled patient. The emphasis of this results are on the hFigures visualization llibrary. The software is a dashboard for visualizing the health status of a modeled virtual patient improving the health condition over a coaching program. The files are in machine-readable format saved as comma separated values. The questionnaires applied were: After Scenario Questionnaire Computer System Usability Questionnaire Nielsen\u2019s Heuristic Evaluation The questionnaires were done using the web application by Gary Perlman available in the url: garyperlman.com/quest/ the file laboratory.csv contains the tasks and their time to completion along with the errors occurred. The tasks, software tool and research context is available in the article submitted to BMC Medical Informatics & Decision Making. The experiment included three usability experts and eleven non-expert users. The file asq.csv contains the answers to the three questions of the After Scenario Questionnaire. The file csuq.csv contains the answers to the 19 questions of the Computer System Usability Questionnaire. The file heuristics.csv contains the answers to the 10 questions of the Nielsen\u2019s Heuristic Evaluation. This datasets are available under the MIT license.", "publications": [], "licence-links": [{"licence-name": "Wholecells DB MIT Licence", "licence-id": 861, "link-id": 890, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3162", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T13:26:05.000Z", "updated-at": "2021-12-06T10:47:37.116Z", "metadata": {"name": "Geoscience Australia", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "clientservices@ga.gov.au"}], "homepage": "http://www.ga.gov.au/", "identifier": 3162, "description": "Geoscience Australia is an agency of the Australian Government. It carries out geoscientific research. The agency is the government's technical adviser on all aspects of geoscience, and custodian of the geographic and geological data and knowledge of the nation.", "support-links": [{"url": "https://www.ga.gov.au/news-events", "name": "News & events", "type": "Blog/News"}, {"url": "https://www.ga.gov.au/news-events/newsletters", "name": "Newsletters", "type": "Blog/News"}, {"url": "clientservices@ga.gov.au", "name": "General Enquiries", "type": "Support email"}, {"url": "https://www.ga.gov.au/data-pubs/datastandards", "name": "Data standards", "type": "Help documentation"}, {"url": "http://pid.geoscience.gov.au/dataset/ga/134668", "name": "Governance Framework", "type": "Help documentation"}], "data-processes": [{"url": "https://ecat.ga.gov.au/geonetwork", "name": "Browse & search", "type": "data access"}, {"url": "https://www.ga.gov.au/data-pubs/new-releases", "name": "New releases", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010917", "name": "re3data:r3d100010917", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001673", "bsg-d001673"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Energy Engineering", "Astrophysics and Astronomy", "Geodesy", "Earth Science", "Atmospheric Science", "Remote Sensing", "Oceanography", "Water Research"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["earth observation", "Greenhouse gases", "Survey", "Topography"], "countries": ["Australia"], "name": "FAIRsharing record for: Geoscience Australia", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3162", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Geoscience Australia is an agency of the Australian Government. It carries out geoscientific research. The agency is the government's technical adviser on all aspects of geoscience, and custodian of the geographic and geological data and knowledge of the nation.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)", "licence-id": 162, "link-id": 2345, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2346, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3255", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-16T14:00:16.000Z", "updated-at": "2021-11-24T13:18:16.577Z", "metadata": {"name": "Zoltar", "status": "in_development", "contacts": [{"contact-name": "General Contact", "contact-email": "zoltar@reichlab.io"}], "homepage": "https://zoltardata.com/", "identifier": 3255, "description": "Zoltar is a research data repository that stores forecasts made by external models in standard formats and provides tools for validation, visualization, and scoring. Zoltar can host real-time or retrospective forecasting challenges, competitions, or research projects, with users specifying the forecast targets.", "abbreviation": "Zoltar", "access-points": [{"url": "https://docs.zoltardata.com/api/", "name": "Zoltar API", "type": "REST"}], "support-links": [{"url": "https://github.com/reichlab/forecast-repository", "name": "GitHub Project", "type": "Github"}, {"url": "https://docs.zoltardata.com/", "name": "Zoltar Documentation", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://zoltardata.com/projects", "name": "Browse Projects", "type": "data access"}], "associated-tools": [{"url": "http://reichlab.io/zoltr/", "name": "Zoltr"}, {"url": "https://github.com/reichlab/zoltpy", "name": "Zoltpy"}]}, "legacy-ids": ["biodbcore-001769", "bsg-d001769"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Statistics", "Epidemiology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["COVID-19", "Forecasting"], "countries": ["United States"], "name": "FAIRsharing record for: Zoltar", "abbreviation": "Zoltar", "url": "https://fairsharing.org/fairsharing_records/3255", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Zoltar is a research data repository that stores forecasts made by external models in standard formats and provides tools for validation, visualization, and scoring. Zoltar can host real-time or retrospective forecasting challenges, competitions, or research projects, with users specifying the forecast targets.", "publications": [{"id": 3105, "pubmed_id": null, "title": "The Zoltar forecast archive: a tool to facilitate standardization and storage of interdisciplinary prediction research (Preprint)", "year": 2020, "url": "https://arxiv.org/abs/2006.03922", "authors": "Nicholas G Reich, Matthew Cornell, Evan L Ray, Katie House, Khoa Le", "journal": "arXiv", "doi": null, "created_at": "2021-09-30T08:28:22.472Z", "updated_at": "2021-09-30T08:28:22.472Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2584", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-05T17:22:43.000Z", "updated-at": "2021-12-06T10:48:07.679Z", "metadata": {"doi": "10.25504/FAIRsharing.83wDfe", "name": "Ag Data Commons", "status": "ready", "contacts": [{"contact-name": "Cynthia Parr", "contact-email": "Cynthia.Parr@ARS.USDA.GOV", "contact-orcid": "0000-0002-8870-7099"}], "homepage": "https://data.nal.usda.gov/", "identifier": 2584, "description": "The Ag Data Commons is a public, government, scientific research data catalog and repository available to help the agricultural research community share and discover research data funded by the United States Department of Agriculture and meet Federal open access requirements. Ag Data Commons holds data files managed directly by NAL and also links to datasets and resources located on other websites. The Ag Data Commons provides access to a wide variety of open data relevant to agricultural research and related domains. These may include subjects such as agronomy, genomics, hydrology, soils, agro-ecosystems, sustainability science, and economic statistics. Ag Data Commons was created to foster innovative data re-use, integration, and visualization to support bigger, better science and policy.", "abbreviation": "Ag Data Commons", "access-points": [{"url": "http://dkan.readthedocs.io/en/latest/apis/datastore-api.html", "name": "DKAN Datastore API -- allows access to the data resources in the Ag Data Commons datastore", "type": "REST"}, {"url": "https://data.nal.usda.gov/ars_api", "name": "ARS National Program API -- makes available metadata about the National Programs of published USDA/ARS datasets on Ag Data Commons.", "type": "REST"}, {"url": "https://data.nal.usda.gov/data.json", "name": "JSON listing of all datasets in Ag Data Commons [Note: it may take a few moments to load]", "type": "REST"}], "support-links": [{"url": "https://data.nal.usda.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.nal.usda.gov/ask-question", "name": "Contact / Ask a Question", "type": "Contact form"}, {"url": "nal-adc-curator@ars.usda.gov", "name": "Ag Data Commons Curators", "type": "Support email"}, {"url": "https://data.nal.usda.gov/guidelines-data-files", "name": "Guidelines for Data Files", "type": "Help documentation"}, {"url": "https://data.nal.usda.gov/ag-data-commons-metrics", "name": "Ag Data Commons Metrics", "type": "Help documentation"}, {"url": "https://data.nal.usda.gov/about-ag-data-commons", "name": "About", "type": "Help documentation"}, {"url": "https://data.nal.usda.gov/ag-data-commons-data-submission-manual-v13", "name": "Ag Data Commons Data Submission Manual v1.3", "type": "Help documentation"}, {"url": "https://www.youtube.com/playlist?list=PL_8uALA03ZsWQ44QNKo4_ZSYSQP7gJ9h7", "name": "Ag Data Commons User Instruction Series", "type": "Video"}], "year-creation": 2015, "data-processes": [{"url": "https://data.nal.usda.gov/search/type/dataset", "name": "Search Datasets", "type": "data access"}], "associated-tools": [{"url": "https://data.nal.usda.gov/nal-terms/computer-software", "name": "Software and Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011890", "name": "re3data:r3d100011890", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001067", "bsg-d001067"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Farming Systems Research", "Agroecology", "Soil Science", "Botany", "Economics", "Environmental Science", "Engineering Science", "Genomics", "Health Science", "Data Management", "Animal Husbandry", "Entomology", "Agricultural Engineering", "Rural and Agricultural Sociology", "Agronomy", "Agriculture", "Life Science", "Nutritional Science", "Jurisprudence", "Physics", "Biology", "Hydrology", "Data Visualization", "Pathology"], "domains": ["Bioenergy", "Sustainability", "Agroecosystem", "Agricultural products", "Taxonomic classification", "Resource metadata", "Geographical location", "Food", "Legal regulation", "Curated information", "Literature curation", "Data storage"], "taxonomies": ["All", "Animalia", "Archaea", "Bacteria", "Chromista", "Fungi", "Plantae", "Protozoa", "Viruses and Viroids"], "user-defined-tags": ["Livestock", "Natural Resources, Earth and Environment"], "countries": ["United States"], "name": "FAIRsharing record for: Ag Data Commons", "abbreviation": "Ag Data Commons", "url": "https://fairsharing.org/10.25504/FAIRsharing.83wDfe", "doi": "10.25504/FAIRsharing.83wDfe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ag Data Commons is a public, government, scientific research data catalog and repository available to help the agricultural research community share and discover research data funded by the United States Department of Agriculture and meet Federal open access requirements. Ag Data Commons holds data files managed directly by NAL and also links to datasets and resources located on other websites. The Ag Data Commons provides access to a wide variety of open data relevant to agricultural research and related domains. These may include subjects such as agronomy, genomics, hydrology, soils, agro-ecosystems, sustainability science, and economic statistics. Ag Data Commons was created to foster innovative data re-use, integration, and visualization to support bigger, better science and policy.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 1.0 Generic (CC BY-SA 1.0)", "licence-id": 188, "link-id": 2168, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 United States (CC BY 3.0 US)", "licence-id": 165, "link-id": 2169, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 2170, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2171, "relation": "undefined"}, {"licence-name": "Ag Data Commons Terms of Service", "licence-id": 16, "link-id": 2172, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2362", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-04T12:11:38.000Z", "updated-at": "2021-12-06T10:48:03.588Z", "metadata": {"doi": "10.25504/FAIRsharing.6h8d2r", "name": "STOREDB", "status": "ready", "contacts": [{"contact-name": "Dr Paul Schofield", "contact-email": "PNS12@cam.ac.uk", "contact-orcid": "0000-0002-5111-7263"}], "homepage": "https://www.storedb.org", "identifier": 2362, "description": "STOREDB provides infrastructure for sharing data and resources in radiation biology and epidemiology. It is a platform for the archiving and sharing of primary data and outputs of all kinds, including epidemiological and experimental data, from research on the effects of radiation. It also provides a directory of bioresources and databases containing information and materials that investigators are willing to share. STORE supports the creation of a radiation research commons.", "abbreviation": "STOREDB", "support-links": [{"url": "mg287@cam.ac.uk", "type": "Support email"}, {"url": "https://www.storedb.org/store_v3/help.jsp", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://www.storedb.org/store_v3/search.jsp", "name": "Search and Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011049", "name": "re3data:r3d100011049", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000841", "bsg-d000841"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Ecology", "Life Science", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Cancer", "Radiation", "Radiotherapy", "RNA sequencing", "Disease", "Radiation effects", "Data storage"], "taxonomies": ["Canis familiaris", "Drosophila", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Genomic rearrangement"], "countries": ["United Kingdom", "Norway", "Belgium", "United States", "Italy", "France", "Netherlands", "Germany"], "name": "FAIRsharing record for: STOREDB", "abbreviation": "STOREDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.6h8d2r", "doi": "10.25504/FAIRsharing.6h8d2r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: STOREDB provides infrastructure for sharing data and resources in radiation biology and epidemiology. It is a platform for the archiving and sharing of primary data and outputs of all kinds, including epidemiological and experimental data, from research on the effects of radiation. It also provides a directory of bioresources and databases containing information and materials that investigators are willing to share. STORE supports the creation of a radiation research commons.", "publications": [], "licence-links": [{"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 2299, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2740", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-14T11:25:18.000Z", "updated-at": "2021-11-24T13:16:07.024Z", "metadata": {"doi": "10.25504/FAIRsharing.blUMRx", "name": "Genome-Wide Association Studies Catalog", "status": "ready", "contacts": [{"contact-name": "GWAS Catalog Helpdesk", "contact-email": "gwas-info@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/gwas/", "citations": [{"doi": "10.1093/nar/gky1120", "pubmed-id": 30445434, "publication-id": 2761}], "identifier": 2740, "description": "The Genome-Wide Association Studies (GWAS) Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide. Within the Catalog, all eligible GWA studies are identified by literature search and assessed by curators, who then extract the reported trait, significant SNP-trait associations, and sample metadata. The Catalog also publishes a GWAS diagram of SNP-trait associations, mapped onto the human genome by chromosomal location and displayed on the human karyotype. Since 2010, delivery and development of the Catalog has been a collaborative project between the EMBL-EBI and NHGRI.", "abbreviation": "GWAS Catalog", "access-points": [{"url": "https://www.ebi.ac.uk/gwas/docs/api", "name": "GWAS Catalog API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/gwas/docs/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/gwas/docs/about", "name": "About the GWAS Catalog", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gwas/downloads/summary-statistics", "name": "Summary Statistics", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gwas/docs", "name": "Documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gwas/ancestry", "name": "Ancestry Documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gwas/docs/related-resources", "name": "GWAS Training Materials", "type": "Training documentation"}, {"url": "https://twitter.com/GWASCatalog", "name": "@GWASCatalog", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://www.ebi.ac.uk/gwas/search", "name": "Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/gwas/downloads", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/gwas/diagram", "name": "GWAS Diagram"}]}, "legacy-ids": ["biodbcore-001238", "bsg-d001238"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["Single nucleotide polymorphism", "Genome-wide association study"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Genome-Wide Association Studies Catalog", "abbreviation": "GWAS Catalog", "url": "https://fairsharing.org/10.25504/FAIRsharing.blUMRx", "doi": "10.25504/FAIRsharing.blUMRx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genome-Wide Association Studies (GWAS) Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide. Within the Catalog, all eligible GWA studies are identified by literature search and assessed by curators, who then extract the reported trait, significant SNP-trait associations, and sample metadata. The Catalog also publishes a GWAS diagram of SNP-trait associations, mapped onto the human genome by chromosomal location and displayed on the human karyotype. Since 2010, delivery and development of the Catalog has been a collaborative project between the EMBL-EBI and NHGRI.", "publications": [{"id": 2465, "pubmed_id": 27899670, "title": "The new NHGRI-EBI Catalog of published genome-wide association studies (GWAS Catalog).", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1133", "authors": "MacArthur J,Bowler E,Cerezo M,Gil L,Hall P,Hastings E,Junkins H,McMahon A,Milano A,Morales J,Pendlington ZM,Welter D,Burdett T,Hindorff L,Flicek P,Cunningham F,Parkinson H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1133", "created_at": "2021-09-30T08:27:02.266Z", "updated_at": "2021-09-30T11:29:36.844Z"}, {"id": 2761, "pubmed_id": 30445434, "title": "The NHGRI-EBI GWAS Catalog of published genome-wide association studies, targeted arrays and summary statistics 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1120", "authors": "Buniello A,MacArthur JAL,Cerezo M,Harris LW,Hayhurst J,Malangone C,McMahon A,Morales J,Mountjoy E,Sollis E,Suveges D,Vrousgou O,Whetzel PL,Amode R,Guillen JA,Riat HS,Trevanion SJ,Hall P,Junkins H,Flicek P,Burdett T,Hindorff LA,Cunningham F,Parkinson H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1120", "created_at": "2021-09-30T08:27:39.385Z", "updated_at": "2021-09-30T11:29:43.029Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1062, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2944", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T13:57:13.000Z", "updated-at": "2021-11-24T13:18:13.077Z", "metadata": {"doi": "10.25504/FAIRsharing.pmv2gA", "name": "The Polygenic Score Catalog", "status": "ready", "contacts": [{"contact-name": "PGS Catalog team", "contact-email": "pgs-info@ebi.ac.uk"}], "homepage": "http://www.pgscatalog.org", "citations": [{"doi": "10.1038/s41588-021-00783-5", "publication-id": 3043}], "identifier": 2944, "description": "The Polygenic Score Catalog is an open database of published polygenic scores (PGS; also referred to as polygenic risk scores [PRS] or genetic/genomic risk scores [GRS]). Each PGS in the Catalog is consistently annotated with relevant metadata; including scoring files (variants, effect alleles/weights), annotations of how the PGS was developed and applied, and evaluations of their predictive performance.", "abbreviation": "PGS Catalog", "access-points": [{"url": "https://www.pgscatalog.org/rest/", "name": "PGS Catalog REST API", "type": "REST"}], "support-links": [{"url": "pgs-info@ebi.ac.uk", "name": "PGS Catalog Contact", "type": "Support email"}, {"url": "http://www.pgscatalog.org/about/", "name": "PGS Catalog Project Documentation", "type": "Help documentation"}, {"url": "http://www.pgscatalog.org/docs/", "name": "PGS Catalog Data Description", "type": "Help documentation"}, {"url": "https://twitter.com/pgscatalog", "name": "@PGSCatalog", "type": "Twitter"}], "year-creation": 2019, "data-processes": [{"url": "http://www.pgscatalog.org/about/", "name": "PGS Catalog inclusion criteria & PGS submission procedures", "type": "data curation"}, {"url": "http://www.pgscatalog.org/downloads/", "name": "PGS Catalog Downloads", "type": "data release"}, {"url": "http://www.pgscatalog.org/browse/studies/", "name": "Browse Publications", "type": "data access"}, {"url": "http://www.pgscatalog.org/browse/all/", "name": "Browse PGS", "type": "data access"}, {"url": "http://www.pgscatalog.org/browse/traits/", "name": "Browse PGS by Trait", "type": "data access"}, {"url": "http://ftp.ebi.ac.uk/pub/databases/spot/pgs/", "name": "PGS Catalog FTP Server (contains all scoring files and metadata)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001448", "bsg-d001448"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Quantitative Genetics", "Human Genetics", "Epidemiology"], "domains": ["Genome-wide association study"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["genomic risk score", "polygenic risk score", "polygenic score"], "countries": ["United Kingdom", "Australia"], "name": "FAIRsharing record for: The Polygenic Score Catalog", "abbreviation": "PGS Catalog", "url": "https://fairsharing.org/10.25504/FAIRsharing.pmv2gA", "doi": "10.25504/FAIRsharing.pmv2gA", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Polygenic Score Catalog is an open database of published polygenic scores (PGS; also referred to as polygenic risk scores [PRS] or genetic/genomic risk scores [GRS]). Each PGS in the Catalog is consistently annotated with relevant metadata; including scoring files (variants, effect alleles/weights), annotations of how the PGS was developed and applied, and evaluations of their predictive performance.", "publications": [{"id": 3043, "pubmed_id": null, "title": "The Polygenic Score Catalog as an open database for reproducibility and systematic evaluation", "year": 2021, "url": "https://doi.org/10.1038/s41588-021-00783-5", "authors": "Samuel A. Lambert, Laurent Gil, Simon Jupp, Scott C. Ritchie, Yu Xu, Annalisa Buniello, Aoife McMahon, Gad Abraham, Michael Chapman, Helen Parkinson, John Danesh, Jacqueline A. L. MacArthur & Michael Inouye", "journal": "Nature Genetics", "doi": "10.1038/s41588-021-00783-5", "created_at": "2021-09-30T08:28:15.041Z", "updated_at": "2021-09-30T08:28:15.041Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 790, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 796, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2230", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-03T09:44:46.000Z", "updated-at": "2021-11-24T13:19:29.781Z", "metadata": {"doi": "10.25504/FAIRsharing.x7pwnw", "name": "short Open Reading Frame database", "status": "ready", "contacts": [{"contact-name": "Volodimir Olexiouk", "contact-email": "volodimir.olexiouk@ugent.be"}], "homepage": "http://www.sorfs.org", "identifier": 2230, "description": "sORFs.org is a database for sORFs identified using ribosome profiling. Starting from ribosome profiling, sORFs.org identifies sORFs, incorporates state-of-the-art tools and metrics and stores results in a public database. Two query interfaces are provided, a default one enabling quick lookup of sORFs and a BioMart interface providing advanced query and export possibilities. At present, sORFs.org harbors 263 354 sORFs that demonstrate ribosome occupancy, originating from three different cell lines: HCT116 (human), E14_mESC (mouse) and S2 (fruit fly).", "abbreviation": "sorfs.org", "support-links": [{"url": "http://sorfs.org/contact", "type": "Contact form"}, {"url": "http://www.sorfs.org/info", "type": "Help documentation"}, {"url": "https://twitter.com/sORFdb", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "http://www.sorfs.org/database", "name": "search", "type": "data access"}, {"url": "http://www.sorfs.org/BioMart", "name": "BioMart query interface", "type": "data access"}, {"url": "http://www.sorfs.org/submit", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000704", "bsg-d000704"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome map", "Ribosomal RNA"], "taxonomies": ["Drosophila melanogaster", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: short Open Reading Frame database", "abbreviation": "sorfs.org", "url": "https://fairsharing.org/10.25504/FAIRsharing.x7pwnw", "doi": "10.25504/FAIRsharing.x7pwnw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: sORFs.org is a database for sORFs identified using ribosome profiling. Starting from ribosome profiling, sORFs.org identifies sORFs, incorporates state-of-the-art tools and metrics and stores results in a public database. Two query interfaces are provided, a default one enabling quick lookup of sORFs and a BioMart interface providing advanced query and export possibilities. At present, sORFs.org harbors 263 354 sORFs that demonstrate ribosome occupancy, originating from three different cell lines: HCT116 (human), E14_mESC (mouse) and S2 (fruit fly).", "publications": [{"id": 343, "pubmed_id": 26527729, "title": "sORFs.org: a repository of small ORFs identified by ribosome profiling.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1175", "authors": "Olexiouk V,Crappe J,Verbruggen S,Verhegen K,Martens L,Menschaert G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1175", "created_at": "2021-09-30T08:22:56.974Z", "updated_at": "2021-09-30T11:28:45.617Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2776", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-16T15:06:54.000Z", "updated-at": "2021-11-24T13:15:59.543Z", "metadata": {"doi": "10.25504/FAIRsharing.z8hGUU", "name": "TreeSnap", "status": "ready", "contacts": [{"contact-name": "Dr. Margaret Staton", "contact-email": "mstaton1@utk.edu"}], "homepage": "https://treesnap.org", "identifier": 2776, "description": "Invasive diseases and pests threaten the health of America\u2019s forests. Scientists are working to understand what allows some individual trees to survive, but they need to find healthy, resilient trees in the forest to study. That\u2019s where concerned foresters, landowners, and citizens (you!) can help. Tag trees you find in your community, on your property, or out in the wild using TreeSnap! Scientists will use the data you collect to locate trees for research projects like studying the genetic diversity of tree species and building better tree breeding programs.", "abbreviation": "TreeSnap", "support-links": [{"url": "https://treesnap.org/contact", "name": "TreeSnap Contact Form", "type": "Contact form"}, {"url": "help@treesnap.org", "name": "TreeSnap Support", "type": "Support email"}, {"url": "https://treesnap.org/faq", "name": "TreeSnap FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://treesnap.org/partners", "name": "TreeSnap Partners", "type": "Help documentation"}, {"url": "https://treesnap.org/about", "name": "About TreeSnap", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://treesnap.org/map", "name": "Browse Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001275", "bsg-d001275"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Forest Management", "Plant Breeding", "Ecology", "Biodiversity", "Ecosystem Science"], "domains": ["Ecosystem"], "taxonomies": ["Arbutus menziesii", "Castanea crenata", "Conium maculatum", "Fraxinus sp.", "Larix laricina", "Notholithocarpus densiflorus", "Quercus alba", "Torreya taxifolia", "Ulmus americana"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TreeSnap", "abbreviation": "TreeSnap", "url": "https://fairsharing.org/10.25504/FAIRsharing.z8hGUU", "doi": "10.25504/FAIRsharing.z8hGUU", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Invasive diseases and pests threaten the health of America\u2019s forests. Scientists are working to understand what allows some individual trees to survive, but they need to find healthy, resilient trees in the forest to study. That\u2019s where concerned foresters, landowners, and citizens (you!) can help. Tag trees you find in your community, on your property, or out in the wild using TreeSnap! Scientists will use the data you collect to locate trees for research projects like studying the genetic diversity of tree species and building better tree breeding programs.", "publications": [], "licence-links": [{"licence-name": "TreeSnap Terms of Use", "licence-id": 793, "link-id": 714, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 715, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2853", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-11T15:50:45.000Z", "updated-at": "2021-11-24T13:13:33.379Z", "metadata": {"doi": "10.25504/FAIRsharing.6mMhZp", "name": "rPredictor", "status": "ready", "contacts": [{"contact-name": "David Hoksza", "contact-email": "hoksza@ksi.mff.cuni.cz", "contact-orcid": "0000-0003-4679-0557"}], "homepage": "http://rpredictordb.elixir-czech.cz/", "citations": [{"doi": "baz047", "pubmed-id": 31032840, "publication-id": 2622}], "identifier": 2853, "description": "rPredictorDB is a predictive database of secondary structures of individual RNAs and their formatted plots.", "abbreviation": "rPredictor", "support-links": [{"url": "http://rpredictordb.elixir-czech.cz/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "http://rpredictordb.elixir-czech.cz/documentation/#download", "name": "rPredictorDB 1.0 documentation", "type": "Help documentation"}, {"url": "http://rpredictordb.elixir-czech.cz/rss", "name": "RSS Feed", "type": "Blog/News"}], "year-creation": 2013, "data-processes": [{"url": "http://rpredictordb.elixir-czech.cz/search", "name": "Search", "type": "data access"}, {"url": "http://rpredictordb.elixir-czech.cz/download", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://rpredictordb.elixir-czech.cz/predict#cppredict2", "name": "CPPredict2"}]}, "legacy-ids": ["biodbcore-001354", "bsg-d001354"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Bioinformatics", "Molecular Genetics"], "domains": ["RNA secondary structure", "RNA sequence", "Computational biological predictions", "Ribosomal RNA", "Ribonucleic acid", "16S rRNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: rPredictor", "abbreviation": "rPredictor", "url": "https://fairsharing.org/10.25504/FAIRsharing.6mMhZp", "doi": "10.25504/FAIRsharing.6mMhZp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: rPredictorDB is a predictive database of secondary structures of individual RNAs and their formatted plots.", "publications": [{"id": 2622, "pubmed_id": 31032840, "title": "rPredictorDB: a predictive database of individual secondary structures of RNAs and their formatted plots.", "year": 2019, "url": "http://doi.org/baz047", "authors": "Jelinek J,Hoksza D,Hajic J,Pesek J,Drozen J,Hladik T,Klimpera M,Vohradsky J,Panek J", "journal": "Database (Oxford)", "doi": "baz047", "created_at": "2021-09-30T08:27:21.929Z", "updated_at": "2021-09-30T08:27:21.929Z"}, {"id": 2623, "pubmed_id": 29067038, "title": "An Algorithm for Template-Based Prediction of Secondary Structures of Individual RNA Sequences.", "year": 2017, "url": "http://doi.org/10.3389/fgene.2017.00147", "authors": "Panek J,Modrak M,Schwarz M", "journal": "Front Genet", "doi": "10.3389/fgene.2017.00147", "created_at": "2021-09-30T08:27:22.089Z", "updated_at": "2021-09-30T08:27:22.089Z"}, {"id": 2624, "pubmed_id": 29141608, "title": "TRAVeLer: a tool for template-based RNA secondary structure visualization.", "year": 2017, "url": "http://doi.org/10.1186/s12859-017-1885-4", "authors": "Elias R,Hoksza D", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-017-1885-4", "created_at": "2021-09-30T08:27:22.196Z", "updated_at": "2021-09-30T08:27:22.196Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3243", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-15T14:59:21.000Z", "updated-at": "2021-12-06T10:47:58.700Z", "metadata": {"doi": "10.25504/FAIRsharing.5ftlhl", "name": "ReefTEMPS", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "contact@reeftemps.science"}], "homepage": "http://www.reeftemps.science/", "identifier": 3243, "description": "ReefTEMPS is a sensors network initiated in 1958 to monitor the coastal area of the South, West and South-West Pacific. This long-term observatory allows the acquisition of several parameters: sea temperature, electrical conductivity / practical salinity, sea pressure / waves height & period / sea level, fluorescence, turbidity, with high or medium frequency (from 1 second to 30 minutes). The main objective is to study the climatic parameters of the tropical ocean with a focus on the coastal sea waters to monitor the long-term effects of global climate change and its impact on coral reefs.", "abbreviation": "ReefTEMPS", "support-links": [{"url": "http://www.reeftemps.science/en/news/", "name": "News", "type": "Blog/News"}, {"url": "https://52north.org/wp-content/uploads/2019/07/ReefTEMPS-sensors-oriented-environmental-information-system.pdf", "name": "About ReefTEMPS", "type": "Help documentation"}, {"url": "http://dboceano.ird.nc/dboceano/stream.xml", "name": "RSS Feed", "type": "Blog/News"}], "year-creation": 2011, "data-processes": [{"url": "http://www.reeftemps.science/en/data/", "name": "Browse and View", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013272", "name": "re3data:r3d100013272", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001757", "bsg-d001757"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Oceanography"], "domains": ["Marine coral reef biome", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change"], "countries": ["France"], "name": "FAIRsharing record for: ReefTEMPS", "abbreviation": "ReefTEMPS", "url": "https://fairsharing.org/10.25504/FAIRsharing.5ftlhl", "doi": "10.25504/FAIRsharing.5ftlhl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ReefTEMPS is a sensors network initiated in 1958 to monitor the coastal area of the South, West and South-West Pacific. This long-term observatory allows the acquisition of several parameters: sea temperature, electrical conductivity / practical salinity, sea pressure / waves height & period / sea level, fluorescence, turbidity, with high or medium frequency (from 1 second to 30 minutes). The main objective is to study the climatic parameters of the tropical ocean with a focus on the coastal sea waters to monitor the long-term effects of global climate change and its impact on coral reefs.", "publications": [{"id": 3074, "pubmed_id": null, "title": "ReefTEMPS : the observation network of the coastal sea waters of the South, West and South-West Pacific", "year": 2018, "url": "http://doi.org/10.17882/55128", "authors": "Varillon David, Fiat Sylvie, Magron Franck, Allenbach Michel, Hoibian Thierry, De Ramon N'Yeurt Antoine, Ganachaud Alexandre, Aucan J\u00e9r\u00f4me, Pelletier Bernard, Hocd\u00e9 R\u00e9gis", "journal": "SEANOE", "doi": null, "created_at": "2021-09-30T08:28:18.784Z", "updated_at": "2021-09-30T08:28:18.784Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2185, "relation": "undefined"}, {"licence-name": "ReefTEMPS Legal Notice", "licence-id": 703, "link-id": 2186, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2026", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:43.390Z", "metadata": {"doi": "10.25504/FAIRsharing.72j8ph", "name": "Parkinson's Disease Biomarkers Program Data Management Resource", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "PDBP-HELP@mail.nih.gov"}], "homepage": "https://pdbp.ninds.nih.gov/", "identifier": 2026, "description": "The NINDS Parkinson's Disease (PD) Biomarkers Program Data Management Resource enables web-based data entry for clinical studies supporting PD biomarker development, as well as broad data sharing (imaging, clinical, genetic, and biospecimen analysis) across the entire PD research community. The PDBP DMR coordinates information and access to PD biospecimens distributed through the NINDS Human Genetics, DNA, iPSC , Cell Line and Biospecimen Repository and the Harvard Neurodiscovery Initiative.", "abbreviation": "PDBP DMR", "support-links": [{"url": "https://pdbp.ninds.nih.gov/policy", "type": "Help documentation"}], "data-processes": [{"url": "https://pdbp.ninds.nih.gov/data-dictionary", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000493", "bsg-d000493"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Biological sample annotation", "Biomarker", "Parkinson's disease", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Parkinson's Disease Biomarkers Program Data Management Resource", "abbreviation": "PDBP DMR", "url": "https://fairsharing.org/10.25504/FAIRsharing.72j8ph", "doi": "10.25504/FAIRsharing.72j8ph", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NINDS Parkinson's Disease (PD) Biomarkers Program Data Management Resource enables web-based data entry for clinical studies supporting PD biomarker development, as well as broad data sharing (imaging, clinical, genetic, and biospecimen analysis) across the entire PD research community. The PDBP DMR coordinates information and access to PD biospecimens distributed through the NINDS Human Genetics, DNA, iPSC , Cell Line and Biospecimen Repository and the Harvard Neurodiscovery Initiative.", "publications": [], "licence-links": [{"licence-name": "FOIA", "licence-id": 320, "link-id": 408, "relation": "undefined"}, {"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 411, "relation": "undefined"}, {"licence-name": "PDBP Privacy Policy", "licence-id": 653, "link-id": 412, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3014", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-29T10:50:19.000Z", "updated-at": "2021-12-06T10:47:30.307Z", "metadata": {"name": "Land Processes Distributed Active Archive Center", "status": "ready", "contacts": [{"contact-name": "Chris Doescher", "contact-email": "cdoesch@usgs.gov", "contact-orcid": "0000-0001-5542-882X"}], "homepage": "https://lpdaac.usgs.gov/", "identifier": 3014, "description": "The Land Processes Distributed Active Archive Center (LP DAAC) processes, archives, and distributes land data products to users in the earth science community. Raw data collected from specific satellite sensors, such as ASTER onboard NASA\u2019s Terra satellite, are received and processed into a readable and interpretable format. The LP DAAC continually archives a wide variety of land remote sensing data products collected by sensors onboard satellites, aircraft, and the International Space Station (ISS). The LP DAAC operates as a partnership between the U.S. Geological Survey (USGS) and the National Aeronautics and Space Administration (NASA). The LP DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "LP DAAC", "support-links": [{"url": "https://lpdaac.usgs.gov/lpdaac-contact-us/", "type": "Contact form"}, {"url": "LPDAAC@usgs.gov", "name": "General contact", "type": "Support email"}, {"url": "https://lpdaac.usgs.gov/resources/faqs/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://lpdaac.usgs.gov/resources/e-learning/", "name": "E-Learning", "type": "Help documentation"}, {"url": "https://lpdaac.usgs.gov/resources/outreach-materials/", "name": "Outreach Materials", "type": "Help documentation"}, {"url": "https://lpdaac.usgs.gov/news_feed/", "type": "Blog/News"}], "year-creation": 2000, "data-processes": [{"url": "https://lpdaac.usgs.gov/submitdata/", "name": "Submit Data", "type": "data curation"}, {"url": "https://lpdaac.usgs.gov/data/get-started-data/collection-overview/", "name": "Browse Data by Mission", "type": "data access"}, {"url": "https://lpdaac.usgs.gov/product_search/", "name": "Search Data Catalog", "type": "data access"}], "associated-tools": [{"url": "https://lpdaac.usgs.gov/tools/appeears/", "name": "AppEEARS"}, {"url": "https://lpdaac.usgs.gov/tools/data-pool/", "name": "Data Pool"}, {"url": "https://lpdaac.usgs.gov/tools/data-prep-scripts/", "name": "Data Prep Scripts"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010376", "name": "re3data:r3d100010376", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001522", "bsg-d001522"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Data"], "countries": ["United States"], "name": "FAIRsharing record for: Land Processes Distributed Active Archive Center", "abbreviation": "LP DAAC", "url": "https://fairsharing.org/fairsharing_records/3014", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Land Processes Distributed Active Archive Center (LP DAAC) processes, archives, and distributes land data products to users in the earth science community. Raw data collected from specific satellite sensors, such as ASTER onboard NASA\u2019s Terra satellite, are received and processed into a readable and interpretable format. The LP DAAC continually archives a wide variety of land remote sensing data products collected by sensors onboard satellites, aircraft, and the International Space Station (ISS). The LP DAAC operates as a partnership between the U.S. Geological Survey (USGS) and the National Aeronautics and Space Administration (NASA). The LP DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "LP DAAC Data Citation and Policies", "licence-id": 495, "link-id": 325, "relation": "undefined"}, {"licence-name": "USGS Policies and Notices", "licence-id": 834, "link-id": 327, "relation": "undefined"}, {"licence-name": "U.S. Department of the Interior Privacy Policy", "licence-id": 828, "link-id": 329, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2602", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-21T20:47:57.000Z", "updated-at": "2021-09-30T11:37:12.455Z", "metadata": {"name": "The National Trauma Research Repository", "status": "in_development", "contacts": [{"contact-name": "Michelle Price", "contact-email": "ntrr-info@ntrr-nti.org", "contact-orcid": "0000-0001-6402-7956"}], "homepage": "http://www.ntrr-nti.org/", "identifier": 2602, "description": "The National Trauma Research Repository (NTRR) is a comprehensive web platform for uploading and managing research datasets to support data sharing among trauma investigators. The Coalition for National Trauma Research (CNTR) is leading this collaborative effort funded by the Department of Defense (DoD) to advance trauma care. Investigators at the National Trauma Institute (NTI), in collaboration with the National Institutes of Health Center for Information Technology and Sapient Government Services, are creating the centralized, cloud-based data repository and discovery portal of trauma research data from numerous studies conducted throughout the United States. The NTRR enables researchers to share data and collaborate on secondary analyses as well as combine and analyze data across studies. The repository is also a resource for researchers in developing data sharing plans to meet new funding and publishing requirements.", "abbreviation": "NTRR", "support-links": [{"url": "https://ntrr-nti.org/contact", "type": "Contact form"}, {"url": "https://ntrr-nti.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ntrr-nti.org/training", "type": "Training documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://ntrr-nti.org/data-dictionary", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001085", "bsg-d001085"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The National Trauma Research Repository", "abbreviation": "NTRR", "url": "https://fairsharing.org/fairsharing_records/2602", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Trauma Research Repository (NTRR) is a comprehensive web platform for uploading and managing research datasets to support data sharing among trauma investigators. The Coalition for National Trauma Research (CNTR) is leading this collaborative effort funded by the Department of Defense (DoD) to advance trauma care. Investigators at the National Trauma Institute (NTI), in collaboration with the National Institutes of Health Center for Information Technology and Sapient Government Services, are creating the centralized, cloud-based data repository and discovery portal of trauma research data from numerous studies conducted throughout the United States. The NTRR enables researchers to share data and collaborate on secondary analyses as well as combine and analyze data across studies. The repository is also a resource for researchers in developing data sharing plans to meet new funding and publishing requirements.", "publications": [{"id": 481, "pubmed_id": 27496599, "title": "The National Trauma Research Repository: Ushering in a new era of trauma research", "year": 2016, "url": "http://doi.org/10.1097/SHK.0000000000000678", "authors": "Smith, S. L. Price, M. A. Fabian, T. C. Jurkovich, G. J. Pruitt, B. A., Jr. Stewart, R. M. Jenkins, D. H.", "journal": "Shock", "doi": "10.1097/SHK.0000000000000678", "created_at": "2021-09-30T08:23:12.317Z", "updated_at": "2021-09-30T08:23:12.317Z"}], "licence-links": [{"licence-name": "NTRR Policies and Procedures", "licence-id": 605, "link-id": 972, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3038", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-20T13:08:16.000Z", "updated-at": "2021-11-24T13:16:22.703Z", "metadata": {"doi": "10.25504/FAIRsharing.odf1nG", "name": "Funder Registry", "status": "ready", "homepage": "https://search.crossref.org/funding", "identifier": 3038, "description": "The Funder Registry is an open registry of persistent identifiers for grant-giving organizations around the world. FundRef is the result of collaboration between funding agencies and publishers that correlates grants and other funding with the scholarly output of that support. Publishers participating in FundRef add funding data to the bibliographic metadata they already provide to Crossref for reference linking. FundRef data includes the name of the funder and a grant or award number. Metadata includes funder names, alternate names, and abbreviations.", "abbreviation": "FundRef", "access-points": [{"url": "https://api.crossref.org/", "name": "Crossref / FundRef API", "type": "REST"}], "support-links": [{"url": "https://www.crossref.org/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.crossref.org/education/funder-registry/", "name": "About", "type": "Help documentation"}, {"url": "https://www.crossref.org/education/funder-registry/funding-data-overview/", "name": "Funding Data Overview", "type": "Help documentation"}, {"url": "https://www.crossref.org/education/funder-registry/funding-data-deposits/", "name": "Depositing Funding Data", "type": "Help documentation"}, {"url": "https://www.crossref.org/services/funder-registry/", "name": "Further Information", "type": "Help documentation"}, {"url": "https://twitter.com/CrossrefOrg", "name": "@CrossrefOrg", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "https://gitlab.com/crossref/open_funder_registry", "name": "Download (RDF)", "type": "data release"}, {"url": "https://doi.crossref.org/funderNames?mode=list", "name": "Download (CSV)", "type": "data release"}, {"url": "https://api.crossref.org/funders", "name": "Download (JSON)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001546", "bsg-d001546"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management"], "domains": ["Citation", "Bibliography", "Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Funding bodies"], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Funder Registry", "abbreviation": "FundRef", "url": "https://fairsharing.org/10.25504/FAIRsharing.odf1nG", "doi": "10.25504/FAIRsharing.odf1nG", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Funder Registry is an open registry of persistent identifiers for grant-giving organizations around the world. FundRef is the result of collaboration between funding agencies and publishers that correlates grants and other funding with the scholarly output of that support. Publishers participating in FundRef add funding data to the bibliographic metadata they already provide to Crossref for reference linking. FundRef data includes the name of the funder and a grant or award number. Metadata includes funder names, alternate names, and abbreviations.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 334, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2306", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T09:43:26.000Z", "updated-at": "2021-11-24T13:19:31.915Z", "metadata": {"doi": "10.25504/FAIRsharing.g63c77", "name": "Curie Image Database", "status": "ready", "contacts": [{"contact-name": "Perrine Paul-Gilloteaux", "contact-email": "perrine.paul-gilloteaux@france-bioimaging.org"}], "homepage": "https://cid.curie.fr", "identifier": 2306, "description": "In addition to data used in on-going collaborations, this database host images from France Bio Imaging microscopy facility with public access either associated to publications, either that make interest from an image processing point of view (such as challenges for developpers or for use in metrology). This resource requires a log in account, however some projects are available with a guest account.", "abbreviation": "CID", "access-points": [{"url": "https://cid.curie.fr/iManage/help.html", "name": "API Client", "type": "SOAP"}, {"url": "http://icy.bioimageanalysis.org/index.php?display=developperSummary&devId=9630", "name": "ICY workflow plugins", "type": "Other"}], "year-creation": 2011}, "legacy-ids": ["biodbcore-000782", "bsg-d000782"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "High-content screen"], "taxonomies": ["Aedes aegypti", "Drosophila", "Homo sapiens", "Mus musculus", "Saccharomyces"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Curie Image Database", "abbreviation": "CID", "url": "https://fairsharing.org/10.25504/FAIRsharing.g63c77", "doi": "10.25504/FAIRsharing.g63c77", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In addition to data used in on-going collaborations, this database host images from France Bio Imaging microscopy facility with public access either associated to publications, either that make interest from an image processing point of view (such as challenges for developpers or for use in metrology). This resource requires a log in account, however some projects are available with a guest account.", "publications": [], "licence-links": [{"licence-name": "CID Require account", "licence-id": 124, "link-id": 2316, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2842", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-24T12:25:27.000Z", "updated-at": "2021-11-24T13:19:52.100Z", "metadata": {"doi": "10.25504/FAIRsharing.hD7sXQ", "name": "Brainstem Connectome", "status": "ready", "contacts": [{"contact-name": "Schmitt", "contact-email": "schmitt@med.uni-rostock.de", "contact-orcid": "0000-0002-1610-2103"}], "homepage": "https://neuroviisas.med.uni-rostock.de/connectome/index.php", "citations": [{"doi": "10.1007/s12021-012-9141-6", "pubmed-id": 22350719, "publication-id": 2657}], "identifier": 2842, "description": "Database of all known neuronal connections of the rat brainstem. Connections are directed, weighted and bilateral. It is built using the neuroVIISAS platform. The Brainstem Connectome is a highly structured neuroontology composed of datasets from over 1,000 peer-reviewed original research publications. It contains more than 35,000 specific experimental observations and over 18,000 neuronal connections.", "abbreviation": "BC", "access-points": [{"url": "http://neuroviisas.med.uni-rostock.de/neuroviisas.shtml", "name": "webStart.jnlp trough IcedTea Web Start", "type": "Other"}], "support-links": [{"url": "schmitt@med.uni-rostock.de", "name": "Dr. Oliver Schmitt", "type": "Support email"}], "year-creation": 2019, "data-processes": [{"url": "https://neuroviisas.med.uni-rostock.de/connectome/index.php", "name": "Search connectome database", "type": "data access"}, {"url": "https://neuroviisas.med.uni-rostock.de/bc.brain", "name": "Download complex brainstem data record (CDR)", "type": "data release"}, {"url": "https://neuroviisas.med.uni-rostock.de/bc.csv", "name": "Download straightforward brainstem data record (SDR)", "type": "data release"}], "associated-tools": [{"url": "https://neuroviisas.med.uni-rostock.de/neuroviisas.shtml", "name": "neuroVIISAS 1.390"}, {"url": "http://www.jabref.org/", "name": "Jabref 3.6"}]}, "legacy-ids": ["biodbcore-001343", "bsg-d001343"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Neuroscience", "Systemic Neuroscience", "Neuroscience", "Systems Biology"], "domains": ["Biological network analysis", "Model organism", "Network model", "Modeling and simulation", "Brain", "Brain imaging"], "taxonomies": ["Rattus rattus"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Brainstem Connectome", "abbreviation": "BC", "url": "https://fairsharing.org/10.25504/FAIRsharing.hD7sXQ", "doi": "10.25504/FAIRsharing.hD7sXQ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database of all known neuronal connections of the rat brainstem. Connections are directed, weighted and bilateral. It is built using the neuroVIISAS platform. The Brainstem Connectome is a highly structured neuroontology composed of datasets from over 1,000 peer-reviewed original research publications. It contains more than 35,000 specific experimental observations and over 18,000 neuronal connections.", "publications": [{"id": 446, "pubmed_id": 30014279, "title": "Towards Differential Connectomics with NeuroVIISAS.", "year": 2018, "url": "http://doi.org/10.1007/s12021-018-9389-6", "authors": "Schwanke S,Jenssen J,Eipert P,Schmitt O", "journal": "Neuroinformatics", "doi": "10.1007/s12021-018-9389-6", "created_at": "2021-09-30T08:23:08.433Z", "updated_at": "2021-09-30T08:23:08.433Z"}, {"id": 2599, "pubmed_id": 29897426, "title": "Connectome verification: inter-rater and connection reliability of tract-tracing-based intrinsic hypothalamic connectivity.", "year": 2018, "url": "http://doi.org/10.1093/bib/bby048", "authors": "Schmitt O,Eipert P,Schwanke S,Lessmann F,Meinhardt J,Beier J,Kadir K,Karnitzki A,Sellner L,Klunker AC,Russ F,Jenssen J", "journal": "Brief Bioinform", "doi": "10.1093/bib/bby048", "created_at": "2021-09-30T08:27:18.956Z", "updated_at": "2021-09-30T08:27:18.956Z"}, {"id": 2600, "pubmed_id": 29464318, "title": "Diffusion MRI-based cortical connectome reconstruction: dependency on tractography procedures and neuroanatomical characteristics.", "year": 2018, "url": "http://doi.org/10.1007/s00429-018-1628-y", "authors": "Sinke MRT,Otte WM,Christiaens D,Schmitt O,Leemans A,van der Toorn A,Sarabdjitsingh RA,Joels M,Dijkhuizen RM", "journal": "Brain Struct Funct", "doi": "10.1007/s00429-018-1628-y", "created_at": "2021-09-30T08:27:19.104Z", "updated_at": "2021-09-30T08:27:19.104Z"}, {"id": 2601, "pubmed_id": 28406178, "title": "Prediction of regional functional impairment following experimental stroke via connectome analysis.", "year": 2017, "url": "http://doi.org/10.1038/srep46316", "authors": "Schmitt O,Badurek S,Liu W,Wang Y,Rabiller G,Kanoke A,Eipert P,Liu J", "journal": "Sci Rep", "doi": "10.1038/srep46316", "created_at": "2021-09-30T08:27:19.212Z", "updated_at": "2021-09-30T08:27:19.212Z"}, {"id": 2602, "pubmed_id": 25432770, "title": "The connectome of the basal ganglia.", "year": 2014, "url": "http://doi.org/10.1007/s00429-014-0936-0", "authors": "Schmitt O,Eipert P,Kettlitz R,Lessmann F,Wree A", "journal": "Brain Struct Funct", "doi": "10.1007/s00429-014-0936-0", "created_at": "2021-09-30T08:27:19.371Z", "updated_at": "2021-09-30T08:27:19.371Z"}, {"id": 2656, "pubmed_id": 23248583, "title": "The intrinsic connectome of the rat amygdala.", "year": 2012, "url": "http://doi.org/10.3389/fncir.2012.00081", "authors": "Schmitt O,Eipert P,Philipp K,Kettlitz R,Fuellen G,Wree A", "journal": "Front Neural Circuits", "doi": "10.3389/fncir.2012.00081", "created_at": "2021-09-30T08:27:26.146Z", "updated_at": "2021-09-30T08:27:26.146Z"}, {"id": 2657, "pubmed_id": 22350719, "title": "neuroVIISAS: approaching multiscale simulation of the rat connectome.", "year": 2012, "url": "http://doi.org/10.1007/s12021-012-9141-6", "authors": "Schmitt O,Eipert P", "journal": "Neuroinformatics", "doi": "10.1007/s12021-012-9141-6", "created_at": "2021-09-30T08:27:26.263Z", "updated_at": "2021-09-30T08:27:26.263Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2401", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-15T13:27:18.000Z", "updated-at": "2021-11-24T13:16:29.238Z", "metadata": {"doi": "10.25504/FAIRsharing.4njvzy", "name": "BCCM/MUCL Agro-food & Environmental Fungal Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/MUCL", "contact-email": "bccm-mucl@uclouvain.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-mucl", "identifier": 2401, "description": "BCCM/MUCL is a generalist fungal culture collection of over 30 000 filamentous fungi, yeasts and arbuscular mycorrhizal fungi including type, reference and test strains. The collections activities include the distribution of its holdings, the accession of new material in its public, safe and patent domains, and services valorising its holdings and/or expertise to cultivate, isolate and identify fungal diversity in natural and anthropological ecosystems, agro-food (food and feed transformation and spoilage), and fungal-plant interactions.", "abbreviation": "BCCM/MUCL", "support-links": [{"url": "http://bccm.belspo.be/news", "name": "News", "type": "Blog/News"}, {"url": "http://bccm.belspo.be/webform/contact-us", "type": "Contact form"}, {"url": "http://bccm.belspo.be/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://bccm.belspo.be/webform/subscribe-bccm-newsletter", "name": "Newsletter", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/didyouknow", "name": "Videos", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/labinstructions", "name": "Lab instruction videos", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/services/training#bccmmucl", "type": "Training documentation"}], "year-creation": 1894, "data-processes": [{"url": "http://bccm.belspo.be/catalogues/mucl-catalogue-search", "name": "Catalogue for environmental and applied mycology strains", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "public deposit of environmental and applied mycology strains", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#patent-deposit", "name": "Patent deposits of biological materials", "type": "data curation"}, {"url": "http://bccm.belspo.be/services/deposit#safe-deposit", "name": "Safe deposits of biological materials", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000882", "bsg-d000882"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Phylogenetics", "Biodiversity", "Biotechnology", "Agriculture", "Life Science", "Nutritional Science"], "domains": ["Food", "Environmental contaminant", "Classification"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/MUCL Agro-food & Environmental Fungal Collection", "abbreviation": "BCCM/MUCL", "url": "https://fairsharing.org/10.25504/FAIRsharing.4njvzy", "doi": "10.25504/FAIRsharing.4njvzy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCCM/MUCL is a generalist fungal culture collection of over 30 000 filamentous fungi, yeasts and arbuscular mycorrhizal fungi including type, reference and test strains. The collections activities include the distribution of its holdings, the accession of new material in its public, safe and patent domains, and services valorising its holdings and/or expertise to cultivate, isolate and identify fungal diversity in natural and anthropological ecosystems, agro-food (food and feed transformation and spoilage), and fungal-plant interactions.", "publications": [{"id": 2043, "pubmed_id": 27882467, "title": "Are there keystone mycorrhizal fungi associated to tropical epiphytic orchids?", "year": 2016, "url": "http://doi.org/10.1007/s00572-016-0746-8", "authors": "Cevallos S,Sanchez-Rodriguez A,Decock C,Declerck S,Suarez JP", "journal": "Mycorrhiza", "doi": "10.1007/s00572-016-0746-8", "created_at": "2021-09-30T08:26:10.191Z", "updated_at": "2021-09-30T08:26:10.191Z"}, {"id": 2048, "pubmed_id": 27616803, "title": "Phylogeny and taxonomic revision of Microascaceae with emphasis on synnematous fungi.", "year": 2016, "url": "http://doi.org/10.1016/j.simyco.2016.07.002", "authors": "Sandoval-Denis M,Guarro J,Cano-Lira JF,Sutton DA,Wiederhold NP,de Hoog GS,Abbott SP,Decock C,Sigler L,Gene J", "journal": "Stud Mycol", "doi": "10.1016/j.simyco.2016.07.002", "created_at": "2021-09-30T08:26:10.707Z", "updated_at": "2021-09-30T08:26:10.707Z"}, {"id": 2051, "pubmed_id": 27322722, "title": "The environmental and intrinsic yeast diversity of Cuban cocoa bean heap fermentations.", "year": 2016, "url": "http://doi.org/S0168-1605(16)30305-1", "authors": "Fernandez Maura Y,Balzarini T,Clape Borges P,Evrard P,De Vuyst L,Daniel HM", "journal": "Int J Food Microbiol", "doi": "10.1016/j.ijfoodmicro.2016.06.012", "created_at": "2021-09-30T08:26:11.082Z", "updated_at": "2021-09-30T08:26:11.082Z"}, {"id": 2052, "pubmed_id": 27144478, "title": "Yeast culture collections in the twenty-first century: new opportunities and challenges.", "year": 2016, "url": "http://doi.org/10.1002/yea.3171", "authors": "Boundy-Mills KL,Glantschnig E,Roberts IN,Yurkov A,Casaregola S,Daniel HM,Groenewald M,Turchetti B", "journal": "Yeast", "doi": "10.1002/yea.3171", "created_at": "2021-09-30T08:26:11.199Z", "updated_at": "2021-09-30T08:26:11.199Z"}, {"id": 2692, "pubmed_id": 26467250, "title": "Rhizophagus irregularis MUCL 41833 can colonize and improve P uptake of Plantago lanceolata after exposure to ionizing gamma radiation in root organ culture.", "year": 2015, "url": "http://doi.org/10.1007/s00572-015-0664-1", "authors": "Kothamasi D,Wannijn J,van Hees M,Nauts R,van Gompel A,Vanhoudt N,Cranenbrouck S,Declerck S,Vandenhove H", "journal": "Mycorrhiza", "doi": "10.1007/s00572-015-0664-1", "created_at": "2021-09-30T08:27:30.647Z", "updated_at": "2021-09-30T08:27:30.647Z"}, {"id": 2693, "pubmed_id": 27474519, "title": "Multilocus, DNA-based phylogenetic analyses reveal three new species lineages in the Phellinus gabonensis-P. caribaeo-quercicola species complex, including P. amazonicus sp. nov.", "year": 2016, "url": "http://doi.org/10.3852/15-173", "authors": "de Campos-Santana M,Amalfi M,Castillo G,Decock C", "journal": "Mycologia", "doi": "10.3852/15-173", "created_at": "2021-09-30T08:27:30.755Z", "updated_at": "2021-09-30T08:27:30.755Z"}], "licence-links": [{"licence-name": "BCCM website legal notice", "licence-id": 63, "link-id": 1444, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 1669, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1686", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:00.337Z", "metadata": {"doi": "10.25504/FAIRsharing.p6hdm8", "name": "Prokaryotic Operon DataBase", "status": "deprecated", "contacts": [{"contact-name": "Enrique Merino", "contact-email": "merino@ibt.unam.mx"}], "homepage": "http://operons.ibt.unam.mx/OperonPredictor", "identifier": 1686, "description": "The Prokaryotic Operon DataBase (ProOpDB) constitutes one of the most precise and complete repository of operon predictions in our days. Using our novel and highly accurate operon algorithm, we have predicted the operon structures of more than 1,200 prokaryotic genomes.", "abbreviation": "ProOpDB", "support-links": [{"url": "http://operons.ibt.unam.mx/OperonPredictor/", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"name": "annual release", "type": "data release"}, {"url": "http://operons.ibt.unam.mx/OperonPredictor/", "name": "search", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://operons.ibt.unam.mx/OperonPredictor/", "name": "browse", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000142", "bsg-d000142"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Metabolomics"], "domains": ["Sequence cluster", "Protein domain", "DNA sequence data", "Image", "Orthologous"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["Mexico"], "name": "FAIRsharing record for: Prokaryotic Operon DataBase", "abbreviation": "ProOpDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.p6hdm8", "doi": "10.25504/FAIRsharing.p6hdm8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Prokaryotic Operon DataBase (ProOpDB) constitutes one of the most precise and complete repository of operon predictions in our days. Using our novel and highly accurate operon algorithm, we have predicted the operon structures of more than 1,200 prokaryotic genomes.", "publications": [{"id": 188, "pubmed_id": 20385580, "title": "High accuracy operon prediction method based on STRING database scores.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq254", "authors": "Taboada B., Verde C., Merino E.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq254", "created_at": "2021-09-30T08:22:40.614Z", "updated_at": "2021-09-30T08:22:40.614Z"}, {"id": 1580, "pubmed_id": 22096236, "title": "ProOpDB: Prokaryotic Operon DataBase.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1020", "authors": "Taboada B,Ciria R,Martinez-Guerrero CE,Merino E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1020", "created_at": "2021-09-30T08:25:17.133Z", "updated_at": "2021-09-30T11:29:14.611Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2308", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T10:26:21.000Z", "updated-at": "2021-11-24T13:14:51.459Z", "metadata": {"doi": "10.25504/FAIRsharing.d6xz90", "name": "Structual and functional MRI data", "status": "in_development", "contacts": [{"contact-name": "Tomas Slavicek", "contact-email": "tomas.slavicek@ceitec.muni.cz"}], "homepage": "http://mafil.ceitec.cz/en/", "identifier": 2308, "description": "MRI data for brain and mind research incl. simultaneous recording of EEG and electrophysiology. This resource has restricted access.", "abbreviation": "MAFIL", "year-creation": 2015}, "legacy-ids": ["biodbcore-000784", "bsg-d000784"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Neuroscience", "Biomedical Science", "Neuroscience"], "domains": ["Medical imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Structual and functional MRI data", "abbreviation": "MAFIL", "url": "https://fairsharing.org/10.25504/FAIRsharing.d6xz90", "doi": "10.25504/FAIRsharing.d6xz90", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MRI data for brain and mind research incl. simultaneous recording of EEG and electrophysiology. This resource has restricted access.", "publications": [], "licence-links": [{"licence-name": "MAFIL Data available on request", "licence-id": 500, "link-id": 2405, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2145", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:00.955Z", "metadata": {"doi": "10.25504/FAIRsharing.pkm8j3", "name": "Merritt", "status": "ready", "contacts": [{"contact-name": "Perry Willett", "contact-email": "uc3@ucop.edu", "contact-orcid": "0000-0001-7817-7066"}], "homepage": "https://merritt.cdlib.org/", "identifier": 2145, "description": "Merritt is a curation repository for the preservation of and access to the digital research data of the ten campus University of California system and external project collaborators. Merritt provides persistent identifiers, storage replication, fixity audit, complete version history, REST API, a comprehensive metadata catalog for discovery, ATOM-based syndication, and curatorially-defined collections, access control rules, and data use agreements (DUAs). Merritt content upload and download may each be curatorially-designated as public or restricted. Merritt DOIs are provided by UC3's EZID service, which is integrated with DataCite. All DOIs and associated metadata are automatically registered with DataCite and are harvested by Ex Libris PRIMO and Thomson Reuters Data Citation Index (DCI) for high-level discovery. Merritt is also a member node in the DataONE network; curatorially-designated data submitted to Merritt are automatically registered with DataONE for additional replication and federated discovery through the ONEMercury search/browse interface.", "abbreviation": "Merritt", "support-links": [{"url": "http://www.cdlib.org/services/uc3/contact.html", "type": "Contact form"}, {"url": "uc3@ucop.edu", "type": "Support email"}, {"url": "merritt-l@listserv.ucop.edu", "type": "Mailing list"}, {"url": "https://merritt.cdlib.org/help/", "type": "Help documentation"}, {"url": "https://journals.tdl.org/jodi/index.php/jodi/article/view/1605/1766", "type": "Help documentation"}, {"url": "http://or2013.net/sessions/sharing-data-rich-research-through-repository-layering/", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "storage micro-service", "type": "data versioning"}], "associated-tools": [{"url": "http://datashare.ucsf.edu/", "name": "DataShare 1.0"}, {"url": "http://dataup.cdlib.org/", "name": "DataUp 1.0"}, {"url": "http://ezid.cdlib.org/", "name": "EZID 2.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010747", "name": "re3data:r3d100010747", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_000642", "name": "SciCrunch:RRID:SCR_000642", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000617", "bsg-d000617"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities", "Social Science", "Mathematics", "Computer Science", "Biomedical Science", "Physics"], "domains": ["Teaching material"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Merritt", "abbreviation": "Merritt", "url": "https://fairsharing.org/10.25504/FAIRsharing.pkm8j3", "doi": "10.25504/FAIRsharing.pkm8j3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Merritt is a curation repository for the preservation of and access to the digital research data of the ten campus University of California system and external project collaborators. Merritt provides persistent identifiers, storage replication, fixity audit, complete version history, REST API, a comprehensive metadata catalog for discovery, ATOM-based syndication, and curatorially-defined collections, access control rules, and data use agreements (DUAs). Merritt content upload and download may each be curatorially-designated as public or restricted. Merritt DOIs are provided by UC3's EZID service, which is integrated with DataCite. All DOIs and associated metadata are automatically registered with DataCite and are harvested by Ex Libris PRIMO and Thomson Reuters Data Citation Index (DCI) for high-level discovery. Merritt is also a member node in the DataONE network; curatorially-designated data submitted to Merritt are automatically registered with DataONE for additional replication and federated discovery through the ONEMercury search/browse interface.", "publications": [{"id": 612, "pubmed_id": null, "title": "Sharing data-rich research through repository layering", "year": 2013, "url": "https://or2013.net/sites/or2013.net/files/OR-2013-abrams-sharing-data-rich-research/index.pdf", "authors": "S. Abrams, A. Rizk-Jackson, J. Kochi, and N. Wittman", "journal": "OR 2013, The 8th International Conference on Open Repositories", "doi": null, "created_at": "2021-09-30T08:23:27.268Z", "updated_at": "2021-09-30T11:28:30.029Z"}, {"id": 629, "pubmed_id": null, "title": "Curation micro-services: A pipeline metaphor for repositories", "year": 2011, "url": "https://escholarship.org/uc/item/0kv5z446", "authors": "S. Abrams, P. Cruse, J. Kunze, and D. Minor", "journal": "Journal of Digital Information", "doi": null, "created_at": "2021-09-30T08:23:29.126Z", "updated_at": "2021-09-30T11:28:30.137Z"}], "licence-links": [{"licence-name": "California Digital Library (CDL) Terms of Use", "licence-id": 92, "link-id": 360, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2318", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T14:43:35.000Z", "updated-at": "2021-11-24T13:17:07.347Z", "metadata": {"doi": "10.25504/FAIRsharing.mrfyxv", "name": "Haeckaliens", "status": "ready", "contacts": [{"contact-name": "Gabriel Jose Goncalves Martins", "contact-email": "gaby@igc.gulbenkian.pt"}], "homepage": "http://www.gabygmartins.info/research/haeckaliens", "identifier": 2318, "description": "Haeckaliens is a collection of 3D datasets and reconstructions of embryos obtained with the open-source optical tomography scanner \"OPenT\" .", "abbreviation": "Haeckaliens", "support-links": [{"url": "gaby@igc.gulbenkian.pt", "type": "Support email"}], "year-creation": 2013}, "legacy-ids": ["biodbcore-000794", "bsg-d000794"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Embryology", "Life Science"], "domains": ["Bioimaging"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: Haeckaliens", "abbreviation": "Haeckaliens", "url": "https://fairsharing.org/10.25504/FAIRsharing.mrfyxv", "doi": "10.25504/FAIRsharing.mrfyxv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Haeckaliens is a collection of 3D datasets and reconstructions of embryos obtained with the open-source optical tomography scanner \"OPenT\" .", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3343", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-20T07:10:36.000Z", "updated-at": "2022-02-08T10:52:33.154Z", "metadata": {"doi": "10.25504/FAIRsharing.33e8b5", "name": "webKnossos", "status": "ready", "contacts": [{"contact-name": "Norman Rzepka", "contact-email": "norman.rzepka@scalableminds.com", "contact-orcid": "0000-0002-8168-7929"}], "homepage": "https://webknossos.org", "citations": [{"doi": "10.1038/nmeth.4331", "pubmed-id": 28604722, "publication-id": 1206}], "identifier": 3343, "description": "webKnossos is an open-source data sharing and annotation platform for multi-terabyte 2D and 3D electron-microscopy (EM) and light-microscopy (LM) datasets. Core features are fast 3D data streaming, link-sharing to specific locations in the data, and collaborative annotation features (volume labelling, line-segment annotation and more). Users may browse and view publicly-available data, while registered users can search, download and analyze database content.", "abbreviation": "webKnossos", "access-points": [{"url": "https://webknossos.org/assets/docs/frontend-api/index.html", "name": "API Information", "type": "REST"}], "support-links": [{"url": "https://webknossos.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://forum.image.sc/tag/webknossos", "name": "Support forum", "type": "Help documentation"}, {"url": "https://docs.webknossos.org", "name": "User documentation", "type": "Help documentation"}, {"url": "https://twitter.com/webknossos", "name": "Twitter", "type": "Twitter"}], "data-processes": [{"url": "https://webknossos.org/publications", "name": "Browse Public Data", "type": "data access"}, {"name": "Download, Search & Annotate: Login Required", "type": "data access"}]}, "legacy-ids": ["biodbcore-001863", "bsg-d001863"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Systemic Neuroscience"], "domains": ["Light microscopy", "Electron microscopy"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: webKnossos", "abbreviation": "webKnossos", "url": "https://fairsharing.org/10.25504/FAIRsharing.33e8b5", "doi": "10.25504/FAIRsharing.33e8b5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: webKnossos is an open-source data sharing and annotation platform for multi-terabyte 2D and 3D electron-microscopy (EM) and light-microscopy (LM) datasets. Core features are fast 3D data streaming, link-sharing to specific locations in the data, and collaborative annotation features (volume labelling, line-segment annotation and more). Users may browse and view publicly-available data, while registered users can search, download and analyze database content.", "publications": [{"id": 1206, "pubmed_id": 28604722, "title": "webKnossos: efficient online 3D data annotation for connectomics.", "year": 2017, "url": "http://doi.org/10.1038/nmeth.4331", "authors": "Boergens KM,Berning M,Bocklisch T,Braunlein D,Drawitsch F,Frohnhofen J,Herold T,Otto P,Rzepka N,Werkmeister T,Werner D,Wiese G,Wissler H,Helmstaedter M", "journal": "Nat Methods", "doi": "10.1038/nmeth.4331", "created_at": "2021-09-30T08:24:34.425Z", "updated_at": "2021-09-30T08:24:34.425Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2725", "type": "fairsharing-records", "attributes": {"created-at": "2019-01-29T10:18:51.000Z", "updated-at": "2021-12-06T10:49:27.598Z", "metadata": {"doi": "10.25504/FAIRsharing.xfUA7e", "name": "Determination of Ectomycorrhizae", "status": "ready", "contacts": [{"contact-name": "Dagmar Triebel", "contact-email": "triebel@snsb.de"}], "homepage": "http://www.deemy.de/", "citations": [{"doi": "https://doi.org/10.1007/s005720050171", "publication-id": 2074}], "identifier": 2725, "description": "DEEMY collects descriptive data on ectomycorrhizae, including extant character descriptions and definitions. Ectomycorrhizae are mutualistic structures formed by fungi and the roots of forest trees. They are predominantly found in the temperate and boreal climate zones but occur also in humid tropic regions, as well as in soils of poor nutrition. Without mycorrhizae, trees would not be able to take up water and minerals. Ectomycorrhizae show a wide range of anatomical diversity which represents their possible function in tree nutrition and ecology. Their anatomical data, in general, allow a quick determination and provide at the same time ecologically important information about possible functions for tree nutrition.", "abbreviation": "DEEMY", "support-links": [{"url": "http://www.deemy.de/About/About.html", "name": "About", "type": "Help documentation"}, {"url": "http://www.deemy.de/About/Impressum.cfm", "name": "DEEMY Imprint", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "http://www.deemy.de/Taxa/Items.cfm", "name": "Browse Descriptions", "type": "data access"}, {"url": "http://www.deemy.de/Taxa/Images.cfm", "name": "Browse Images", "type": "data access"}, {"url": "http://www.deemy.de/Descriptors/Descriptors.html", "name": "Browse Descriptor Definitions", "type": "data access"}], "associated-tools": [{"url": "http://www.navikey.net/", "name": "NaviKey 5"}, {"url": "http://www.deemy.de/Identification/Navikey/index.html", "name": "DEEMY Identification"}, {"url": "https://diversityworkbench.net/Portal/DiversityDescriptions", "name": "DiversityDescriptions"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012561", "name": "re3data:r3d100012561", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001223", "bsg-d001223"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Life Science", "Plant Anatomy"], "domains": ["Phenotype"], "taxonomies": ["Fungi", "Viridiplantae"], "user-defined-tags": ["Ectomycorrhizae", "Plant Phenotypes and Traits"], "countries": ["Germany"], "name": "FAIRsharing record for: Determination of Ectomycorrhizae", "abbreviation": "DEEMY", "url": "https://fairsharing.org/10.25504/FAIRsharing.xfUA7e", "doi": "10.25504/FAIRsharing.xfUA7e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DEEMY collects descriptive data on ectomycorrhizae, including extant character descriptions and definitions. Ectomycorrhizae are mutualistic structures formed by fungi and the roots of forest trees. They are predominantly found in the temperate and boreal climate zones but occur also in humid tropic regions, as well as in soils of poor nutrition. Without mycorrhizae, trees would not be able to take up water and minerals. Ectomycorrhizae show a wide range of anatomical diversity which represents their possible function in tree nutrition and ecology. Their anatomical data, in general, allow a quick determination and provide at the same time ecologically important information about possible functions for tree nutrition.", "publications": [{"id": 2074, "pubmed_id": null, "title": "DEEMY \u2013 the concept of a characterization and determination system for ectomycorrhizae", "year": 1997, "url": "http://doi.org/https://doi.org/10.1007/s005720050171", "authors": "Rambold, G., Agerer, R.", "journal": "Mycorrhiza 7: 113-116", "doi": "https://doi.org/10.1007/s005720050171", "created_at": "2021-09-30T08:26:13.831Z", "updated_at": "2021-09-30T08:26:13.831Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 1455, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1456, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2973", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T14:14:35.000Z", "updated-at": "2021-11-24T13:16:51.238Z", "metadata": {"name": "Chromium Epigenomics Toxicology", "status": "in_development", "contacts": [{"contact-name": "Wen Niu", "contact-email": "wen.niu@uc.edu", "contact-orcid": "0000-0003-4927-5200"}], "homepage": "http://epichromium.org", "citations": [{"doi": "10.1080/15592294.2018.1454243", "pubmed-id": 29561703, "publication-id": 2919}], "identifier": 2973, "description": "The Chromium Epigenomics Toxicology (EpiCrDB) database contains a variety of epigenomics experimental assays relating to research on how Cr(VI) perturbs chromatin organization and dynamics. This data is used in reseach into how its toxicity may be attributed to epigenetic carcinogenicity. Manually-annotated sample and experiment metadata is included to facilitate FAIR data access. Hexavalent chromium [Cr(VI)] compounds are well-established respiratory carcinogens utilized in industrial processes. While inhalation exposure constitutes an occupational risk affecting mostly chromium workers, environmental exposure from drinking water contamination is a widespread gastrointestinal carcinogen, affecting millions of people throughout the world. The mechanism of action of Cr(VI) at the molecular level is poorly understood.", "abbreviation": "EpiCrDB", "year-creation": 2020, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE56636", "name": "GEO", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE104563", "name": "GEO", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE104564", "name": "GEO", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE104565", "name": "GEO", "type": "data access"}]}, "legacy-ids": ["biodbcore-001479", "bsg-d001479"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenomics", "Epigenetics", "Toxicology", "Life Science"], "domains": ["Assay", "Chromatin immunoprecipitation - DNA sequencing", "Chromatin structure variation"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Chromium Epigenomics Toxicology", "abbreviation": "EpiCrDB", "url": "https://fairsharing.org/fairsharing_records/2973", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chromium Epigenomics Toxicology (EpiCrDB) database contains a variety of epigenomics experimental assays relating to research on how Cr(VI) perturbs chromatin organization and dynamics. This data is used in reseach into how its toxicity may be attributed to epigenetic carcinogenicity. Manually-annotated sample and experiment metadata is included to facilitate FAIR data access. Hexavalent chromium [Cr(VI)] compounds are well-established respiratory carcinogens utilized in industrial processes. While inhalation exposure constitutes an occupational risk affecting mostly chromium workers, environmental exposure from drinking water contamination is a widespread gastrointestinal carcinogen, affecting millions of people throughout the world. The mechanism of action of Cr(VI) at the molecular level is poorly understood.", "publications": [{"id": 2919, "pubmed_id": 29561703, "title": "Chromium disrupts chromatin organization and CTCF access to its cognate sites in promoters of differentially expressed genes.", "year": 2018, "url": "http://doi.org/10.1080/15592294.2018.1454243", "authors": "VonHandorf A,Sanchez-Martin FJ,Biesiada J,Zhang H,Zhang X,Medvedovic M,Puga A", "journal": "Epigenetics", "doi": "10.1080/15592294.2018.1454243", "created_at": "2021-09-30T08:27:59.509Z", "updated_at": "2021-09-30T08:27:59.509Z"}, {"id": 2922, "pubmed_id": 24837440, "title": "Formaldehyde-Assisted Isolation of Regulatory Elements (FAIRE) analysis uncovers broad changes in chromatin structure resulting from hexavalent chromium exposure.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0097849", "authors": "Ovesen JL,Fan Y,Zhang X,Chen J,Medvedovic M,Xia Y,Puga A", "journal": "PLoS One", "doi": "10.1371/journal.pone.0097849", "created_at": "2021-09-30T08:27:59.833Z", "updated_at": "2021-09-30T08:27:59.833Z"}, {"id": 2928, "pubmed_id": 30935235, "title": "Highlight Article: Chromium exposure disrupts chromatin architecture upsetting the mechanisms that regulate transcription.", "year": 2019, "url": "http://doi.org/10.1177/1535370219839953", "authors": "Zablon HA,VonHandorf A,Puga A", "journal": "Exp Biol Med (Maywood)", "doi": "10.1177/1535370219839953", "created_at": "2021-09-30T08:28:00.633Z", "updated_at": "2021-09-30T08:28:00.633Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2270, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2787", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-25T10:37:14.000Z", "updated-at": "2021-11-24T13:16:40.154Z", "metadata": {"doi": "10.25504/FAIRsharing.7HtoZI", "name": "NERC Earth Observation Data Centre Data Archive", "status": "deprecated", "homepage": "https://catalogue.ceda.ac.uk/record/party/2/", "identifier": 2787, "description": "The NERC Earth Observation Data Centre Data Archive was the Natural Environment Research Council's (NERC) Designated Data Centre for Earth Observation. Together with the BADC it has been merged into the CEDA Archive.", "abbreviation": "NEODC", "deprecation-date": "2019-06-25", "deprecation-reason": "Since November 2016, the functions of the British Atmospheric Data Centre (BADC) and the NERC Earth Observation Data Centre (NEODC) data centres are operated by the CEDA Archive (http://www.ceda.ac.uk/data-centres/)."}, "legacy-ids": ["biodbcore-001286", "bsg-d001286"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: NERC Earth Observation Data Centre Data Archive", "abbreviation": "NEODC", "url": "https://fairsharing.org/10.25504/FAIRsharing.7HtoZI", "doi": "10.25504/FAIRsharing.7HtoZI", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NERC Earth Observation Data Centre Data Archive was the Natural Environment Research Council's (NERC) Designated Data Centre for Earth Observation. Together with the BADC it has been merged into the CEDA Archive.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2038", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.839Z", "metadata": {"doi": "10.25504/FAIRsharing.h2wrt2", "name": "Japan Collection of Microorganisms", "status": "ready", "contacts": [{"contact-name": "Moriya Ohkuma", "contact-email": "mohkuma@riken.jp"}], "homepage": "http://www.jcm.riken.go.jp/", "identifier": 2038, "description": "The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", "abbreviation": "JCM", "support-links": [{"url": "inquiry@jcm.riken.jp", "type": "Support email"}, {"url": "http://jcm.brc.riken.jp/en/faq_e", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1981, "data-processes": [{"url": "http://www.jcm.riken.go.jp/JCM/Depositing_E.shtml", "name": "submit", "type": "data access"}, {"url": "http://jcm.brc.riken.jp/en/", "name": "search", "type": "data access"}, {"url": "http://jcm.brc.riken.jp/en/ordering_e", "name": "order", "type": "data access"}]}, "legacy-ids": ["biodbcore-000505", "bsg-d000505"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["Archaea", "Ascomycota", "Bacteria", "Basidiomycota"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Japan Collection of Microorganisms", "abbreviation": "JCM", "url": "https://fairsharing.org/10.25504/FAIRsharing.h2wrt2", "doi": "10.25504/FAIRsharing.h2wrt2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", "publications": [], "licence-links": [{"licence-name": "RIKEN Copyright", "licence-id": 713, "link-id": 652, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3168", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-30T13:02:08.000Z", "updated-at": "2021-12-06T10:48:50.324Z", "metadata": {"doi": "10.25504/FAIRsharing.LSUZRp", "name": "New Zealand National Vegetation Survey Databank", "status": "ready", "contacts": [{"contact-name": "NVS General Contact", "contact-email": "nvs@landcareresearch.co.nz"}], "homepage": "https://nvs.landcareresearch.co.nz", "identifier": 3168, "description": "The New Zealand National Vegetation Survey Databank (NVS) is a physical archive and electronic databank containing records of >100,000 vegetation survey plots. Data are available for search and download. NVS contains data spanning more than 70 years of indigenous and exotic plants in New Zealand's terrestrial ecosystems. A broad range of habitats are covered, with special emphasis on indigenous forests and grasslands.", "abbreviation": "NVS", "support-links": [{"url": "https://nvs.landcareresearch.co.nz/Support/feedback?prompt=Your%20feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://nvs.landcareresearch.co.nz/about/index/?id=about-faq", "name": "NVS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nvs.landcareresearch.co.nz/Support/Index", "name": "Support Information", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/about/index/?id=about-gettingstarted", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/Data/SearchHelp", "name": "Search Help", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/about/index/?id=about-typesofdata", "name": "Types of Data", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/Resources/Index", "name": "Collection, Submission and Analysis Resources", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/About/Index", "name": "About", "type": "Help documentation"}, {"url": "https://nvs.landcareresearch.co.nz/about/index/?id=about-protocol", "name": "NVS Data Protocol", "type": "Help documentation"}], "year-creation": 1988, "data-processes": [{"url": "https://nvs.landcareresearch.co.nz/data/upload?prompt=Upload%20details", "name": "Submit", "type": "data curation"}, {"url": "https://nvs.landcareresearch.co.nz/Data/Search", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://nvs.landcareresearch.co.nz/Data/dataentry", "name": "NVS Express data entry tool 1.18"}, {"url": "https://nvs.landcareresearch.co.nz/Data/DataEntryForms", "name": "MS Excel data entry templace 1.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011128", "name": "re3data:r3d100011128", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001679", "bsg-d001679"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Plant Ecology", "Forest Management", "Ecosystem Science"], "domains": ["Ecosystem"], "taxonomies": ["Plantae"], "user-defined-tags": ["Grassland Research"], "countries": ["New Zealand"], "name": "FAIRsharing record for: New Zealand National Vegetation Survey Databank", "abbreviation": "NVS", "url": "https://fairsharing.org/10.25504/FAIRsharing.LSUZRp", "doi": "10.25504/FAIRsharing.LSUZRp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The New Zealand National Vegetation Survey Databank (NVS) is a physical archive and electronic databank containing records of >100,000 vegetation survey plots. Data are available for search and download. NVS contains data spanning more than 70 years of indigenous and exotic plants in New Zealand's terrestrial ecosystems. A broad range of habitats are covered, with special emphasis on indigenous forests and grasslands.", "publications": [], "licence-links": [{"licence-name": "NVS Data Use Protocol", "licence-id": 606, "link-id": 1450, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1912", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.254Z", "metadata": {"doi": "10.25504/FAIRsharing.pmg2vd", "name": "GenAtlas", "status": "ready", "contacts": [{"contact-name": "Alexandra Caude", "contact-email": "alexandra.caude@inserm.fr"}], "homepage": "http://www.genatlas.org/", "identifier": 1912, "description": "GenAtlas is a database containing information on human genes, markers and phenotypes.", "abbreviation": "GenAtlas", "support-links": [{"url": "http://genatlas.medecine.univ-paris5.fr/Help.html", "type": "Help documentation"}], "year-creation": 1986, "data-processes": [{"url": "http://genatlas.medecine.univ-paris5.fr/intgen0.html", "name": "search", "type": "data access"}, {"url": "http://genatlas.medecine.univ-paris5.fr/intphe.html", "name": "advanced search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000377", "bsg-d000377"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Disorder", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GenAtlas", "abbreviation": "GenAtlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.pmg2vd", "doi": "10.25504/FAIRsharing.pmg2vd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GenAtlas is a database containing information on human genes, markers and phenotypes.", "publications": [{"id": 413, "pubmed_id": 9835018, "title": "Genatlas database, genes and development defects", "year": 1998, "url": "http://doi.org/10.1016/s0764-4469(99)80021-3", "authors": "Fr\u00e9zal J.,", "journal": "C. R. Acad. Sci. III, Sci. Vie", "doi": "10.1016/s0764-4469(99)80021-3", "created_at": "2021-09-30T08:23:04.866Z", "updated_at": "2021-09-30T08:23:04.866Z"}, {"id": 1510, "pubmed_id": 10444337, "title": "Human genes involved in chromatin remodeling in transcription initiation, and associated diseases: An overview using the GENAtlas database", "year": 1999, "url": "http://doi.org/10.1006/mgme.1999.2867", "authors": "Roux-Rouquie M., Chauvet ML., Munnich A., Frezal J.,", "journal": "Mol. Genet. Metab.", "doi": "10.1006/mgme.1999.2867", "created_at": "2021-09-30T08:25:09.044Z", "updated_at": "2021-09-30T08:25:09.044Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2428", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-17T15:38:22.000Z", "updated-at": "2021-11-24T13:16:37.451Z", "metadata": {"doi": "10.25504/FAIRsharing.csr989", "name": "Met Office Hadley Centre Observations Dataset", "status": "ready", "contacts": [{"contact-name": "Colin Morice", "contact-email": "colin.morice@metoffice.gov.uk"}], "homepage": "http://www.metoffice.gov.uk/hadobs/index.html", "identifier": 2428, "description": "HadCRUT4 is a gridded dataset of global historical surface temperature anomalies relative to a 1961-1990 reference period. Data are available for each month since January 1850, on a 5 degree grid. The dataset is a collaborative product of the Met Office Hadley Centre and the Climatic Research Unit at the University of East Anglia.", "abbreviation": "HadCRUT4", "support-links": [{"url": "http://www.metoffice.gov.uk/hadobs/hadcrut4/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.metoffice.gov.uk/hadobs/hadcrut4/diagrams.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://www.metoffice.gov.uk/hadobs/hadcrut4/data/current/download.html", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000910", "bsg-d000910"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Met Office Hadley Centre Observations Dataset", "abbreviation": "HadCRUT4", "url": "https://fairsharing.org/10.25504/FAIRsharing.csr989", "doi": "10.25504/FAIRsharing.csr989", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HadCRUT4 is a gridded dataset of global historical surface temperature anomalies relative to a 1961-1990 reference period. Data are available for each month since January 1850, on a 5 degree grid. The dataset is a collaborative product of the Met Office Hadley Centre and the Climatic Research Unit at the University of East Anglia.", "publications": [{"id": 1509, "pubmed_id": null, "title": "Quantifying uncertainties in global and regional temperature change using an ensemble of observational estimates: the HadCRUT4 data set", "year": 2012, "url": "http://doi.org/10.1029/2011JD017187", "authors": "Morice, C. P., J. J. Kennedy, N. A. Rayner, and P. D. Jones", "journal": "Journal of Geophysical Research", "doi": "10.1029/2011JD017187", "created_at": "2021-09-30T08:25:08.936Z", "updated_at": "2021-09-30T08:25:08.936Z"}], "licence-links": [{"licence-name": "UK Met Office HadCRUT4: Terms and Conditions", "licence-id": 808, "link-id": 993, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2501", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-07T11:30:44.000Z", "updated-at": "2021-12-06T10:48:16.908Z", "metadata": {"doi": "10.25504/FAIRsharing.aq20qn", "name": "NOMAD Laboratory", "status": "ready", "contacts": [{"contact-email": "contact@nomad-lab.eu"}], "homepage": "https://nomad-lab.eu/", "citations": [{"publication-id": 656}], "identifier": 2501, "description": "The NOMAD Laboratory hosts, organizes and shares materials data. It contains ab initio electronic-structure data from density-functional theory and methods beyond. NOMAD enables the confirmatory analysis of materials data, their reuse, and repurposing. It makes scientific data citable as one can request digital objective identifiers (DOI's). NOMAD keeps scientific data for at least 10 years for free.", "abbreviation": "NOMAD LAB", "access-points": [{"url": "https://nomad-lab.eu/prod/rae/gui/apis", "name": "NOMAD'S APIs", "type": "REST"}], "support-links": [{"url": "https://nomad-lab.eu/services/terms", "name": "NOMAD Laboratory Terms", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://matsci.org/c/nomad/32", "name": "matsci.org community discussion forum", "type": "Forum"}, {"url": "https://nomad-lab.eu/videos", "name": "NOMAD Laboratory tutorial videos", "type": "Training documentation"}, {"url": "https://twitter.com/NoMaDCoE", "name": "NOMAD Laboratory Twitter", "type": "Twitter"}], "associated-tools": [{"url": "https://github.com/nomad-coe", "name": "GitHub Organisation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011583", "name": "re3data:r3d100011583", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000983", "bsg-d000983"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Natural Science", "Materials Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: NOMAD Laboratory", "abbreviation": "NOMAD LAB", "url": "https://fairsharing.org/10.25504/FAIRsharing.aq20qn", "doi": "10.25504/FAIRsharing.aq20qn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NOMAD Laboratory hosts, organizes and shares materials data. It contains ab initio electronic-structure data from density-functional theory and methods beyond. NOMAD enables the confirmatory analysis of materials data, their reuse, and repurposing. It makes scientific data citable as one can request digital objective identifiers (DOI's). NOMAD keeps scientific data for at least 10 years for free.", "publications": [{"id": 649, "pubmed_id": null, "title": "NOMAD: The FAIR Concept for Big-Data-Driven Materials Science", "year": 2018, "url": "https://doi.org/10.1557/mrs.2018.208", "authors": "C. Draxl and M. Scheffler", "journal": "MRS Bulletin 43, 676", "doi": null, "created_at": "2021-09-30T08:23:31.412Z", "updated_at": "2021-09-30T08:23:31.412Z"}, {"id": 656, "pubmed_id": null, "title": "The NOMAD Laboratory: From Data Sharing to Artificial Intelligence", "year": 2019, "url": "https://iopscience.iop.org/article/10.1088/2515-7639/ab13bb", "authors": "C. Draxl and M. Scheffler", "journal": "J. Phys. Mater. 2, 036001", "doi": null, "created_at": "2021-09-30T08:23:32.444Z", "updated_at": "2021-09-30T08:23:32.444Z"}, {"id": 657, "pubmed_id": null, "title": "Big-Data-Driven Materials Science and its FAIR Data Infrastructure", "year": 2019, "url": "https://link.springer.com/content/pdf/10.1007%2F978-3-319-42913-7_104-1.pdf", "authors": "C. Draxl and M. Scheffler", "journal": "Invited Perspective in Handbook Andreoni W., Yip S. (eds) Handbook of Materials Modeling. Springer, Cham", "doi": null, "created_at": "2021-09-30T08:23:32.544Z", "updated_at": "2021-09-30T08:23:32.544Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 2282, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1935", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-18T09:30:36.958Z", "metadata": {"doi": "10.25504/FAIRsharing.g2fjt2", "name": "European Mouse Mutant Archive", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@infrafrontier.eu"}], "homepage": "https://www.infrafrontier.eu", "citations": [{"doi": "10.1093/nar/gkp799", "pubmed-id": 19783817, "publication-id": 2833}], "identifier": 1935, "description": "The European Mouse Mutant Archive (EMMA) is a non-profit repository for the collection, archiving (via cryopreservation) and distribution of relevant mutant strains essential for basic biomedical research. The laboratory mouse is the most important mammalian model for studying genetic and multi-factorial diseases in man. Thus the work of EMMA will play a crucial role in exploiting the tremendous potential benefits to human health presented by the current research in mammalian genetics.", "abbreviation": "EMMA", "support-links": [{"url": "https://www.infrafrontier.eu/contact", "name": "INFRAFRONTIER/EMMA contact form", "type": "Contact form"}, {"url": "info@infrafrontier.eu", "name": "General Enquiries", "type": "Support email"}, {"url": "https://www.infrafrontier.eu/procedures/faqs/faq-emma-repository", "name": "FAQ EMMA repository", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.infrafrontier.eu/procedures/legal-issues/emma-repository-conditions-and-mtas", "name": "EMMA repository conditions and MTAs", "type": "Help documentation"}, {"url": "https://www.infrafrontier.eu/resources-and-services/infrafrontier-training-and-consulting-services", "name": "INFRAFRONTIER training and consulting services", "type": "Training documentation"}, {"url": "https://twitter.com/infrafrontierEU", "name": "INFRAFRONTIER Twitter", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"name": "data curation", "type": "data curation"}, {"url": "https://www.infrafrontier.eu/search?keyword=browse_strain_types", "name": "EMMA public strain list", "type": "data access"}]}, "legacy-ids": ["biodbcore-000400", "bsg-d000400"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Virology", "Computational Biology", "Life Science"], "domains": ["Protein structure", "Nucleic acid sequence", "Model organism", "Somatic mutation", "Mutation analysis", "Gene knockout", "Point mutation"], "taxonomies": ["Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["COVID-19"], "countries": ["European Union"], "name": "FAIRsharing record for: European Mouse Mutant Archive", "abbreviation": "EMMA", "url": "https://fairsharing.org/10.25504/FAIRsharing.g2fjt2", "doi": "10.25504/FAIRsharing.g2fjt2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Mouse Mutant Archive (EMMA) is a non-profit repository for the collection, archiving (via cryopreservation) and distribution of relevant mutant strains essential for basic biomedical research. The laboratory mouse is the most important mammalian model for studying genetic and multi-factorial diseases in man. Thus the work of EMMA will play a crucial role in exploiting the tremendous potential benefits to human health presented by the current research in mammalian genetics.", "publications": [{"id": 2617, "pubmed_id": 17709347, "title": "EMMA--the European mouse mutant archive.", "year": 2007, "url": "http://doi.org/10.1093/bfgp/elm018", "authors": "Hagn M,Marschall S,Hrabe de Angelis M", "journal": "Brief Funct Genomic Proteomic", "doi": "10.1093/bfgp/elm018", "created_at": "2021-09-30T08:27:21.255Z", "updated_at": "2021-09-30T08:27:21.255Z"}, {"id": 2833, "pubmed_id": 19783817, "title": "EMMA--mouse mutant resources for the international scientific community.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp799", "authors": "Wilkinson P,Sengerova J,Matteoni R,Chen CK,Soulat G,Ureta-Vidal A,Fessele S,Hagn M,Massimi M,Pickford K,Butler RH,Marschall S,Mallon AM,Pickard A,Raspa M,Scavizzi F,Fray M,Larrigaldie V,Leyritz J,Birney E,Tocchini-Valentini GP,Brown S,Herault Y,Montoliu L,de Angelis MH,Smedley D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp799", "created_at": "2021-09-30T08:27:48.503Z", "updated_at": "2021-09-30T11:29:46.862Z"}, {"id": 3186, "pubmed_id": null, "title": "INFRAFRONTIER: a European resource for studying the functional basis of human disease", "year": 2016, "url": "http://dx.doi.org/10.1007/s00335-016-9642-y", "authors": "Raess, Michael; undefined, undefined; de Castro, Ana Ambrosio; Gailus-Durner, Val\u00e9rie; Fessele, Sabine; Hrab\u011b de Angelis, Martin; ", "journal": "Mamm Genome", "doi": "10.1007/s00335-016-9642-y", "created_at": "2022-01-17T17:57:41.494Z", "updated_at": "2022-01-17T17:57:41.494Z"}, {"id": 3187, "pubmed_id": null, "title": "INFRAFRONTIER--providing mutant mouse resources as research tools for the international scientific community", "year": 2014, "url": "http://dx.doi.org/10.1093/nar/gku1193", "authors": "undefined, undefined; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1193", "created_at": "2022-01-17T17:58:01.850Z", "updated_at": "2022-01-17T17:58:01.850Z"}], "licence-links": [{"licence-name": "EMMA repository conditions", "licence-id": 274, "link-id": 675, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2408", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-10T21:32:44.000Z", "updated-at": "2021-11-24T13:20:07.026Z", "metadata": {"doi": "10.25504/FAIRsharing.68928q", "name": "Aerosol Comparison between Observations and Models", "status": "deprecated", "contacts": [{"contact-name": "Michael Schulz", "contact-email": "michael.schulz@met.no"}], "homepage": "http://aerocom.met.no/data.html", "identifier": 2408, "description": "The AEROCOM-project is an open international initiative of scientists interested in the advancement of the understanding of the global aerosol and its impact on climate.", "abbreviation": "AeroCOM", "support-links": [{"url": "https://wiki.met.no/aerocom/faq_aerocom", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wiki.met.no/aerocom/data_base_user_overview", "type": "Help documentation"}, {"url": "https://aerocom.met.no/protocol.html", "type": "Help documentation"}, {"url": "https://aerocom.met.no/database.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://wiki.met.no/aerocom/data_submission", "name": "submit", "type": "data access"}], "associated-tools": [{"url": "https://aerocom.met.no/formattools.html", "name": "Formatting tools"}, {"url": "https://aerocom-trends.met.no/", "name": "Visualization of Aerosol Trends"}, {"url": "https://aerocom.met.no/cgi-bin/surfobs_annualrs.pl", "name": "AEROCOM phase II INTERFACE"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000890", "bsg-d000890"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Norway", "European Union", "France"], "name": "FAIRsharing record for: Aerosol Comparison between Observations and Models", "abbreviation": "AeroCOM", "url": "https://fairsharing.org/10.25504/FAIRsharing.68928q", "doi": "10.25504/FAIRsharing.68928q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AEROCOM-project is an open international initiative of scientists interested in the advancement of the understanding of the global aerosol and its impact on climate.", "publications": [], "licence-links": [{"licence-name": "AeroCom Data Policies and Disclaimer", "licence-id": 13, "link-id": 1525, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1526, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2436", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T20:10:43.000Z", "updated-at": "2021-12-06T10:49:20.758Z", "metadata": {"doi": "10.25504/FAIRsharing.vmq5yj", "name": "Orfeus - European Integrated Data Archive", "status": "ready", "contacts": [{"contact-name": "Lisanne Jagt", "contact-email": "jagt@knmi.nl"}], "homepage": "https://www.orfeus-eu.org/data/eida/", "identifier": 2436, "description": "EIDA, an initiative within ORFEUS, is a distributed federation of datacenters established to (a) securely archive seismic waveform data and metadata gathered by European research infrastructures, and (b) to provide transparent access to the archives by the geosciences research communities.", "abbreviation": "Orfeus - EIDA", "access-points": [{"url": "http://eida-federator.ethz.ch/fdsnws/dataselect/1/", "name": "EIDA Federator Web Services", "type": "REST"}], "support-links": [{"url": "https://www.orfeus-eu.org/organization/contact/form/?recipient=EIDA", "name": "EIDA Contact Form", "type": "Contact form"}, {"url": "https://github.com/EIDA/userfeedback/", "name": "EIDA User Feedback on GitHub", "type": "Github"}, {"url": "https://www.orfeus-eu.org/organization/documents/", "name": "ORFEUS Documentation", "type": "Help documentation"}, {"url": "https://www.orfeus-eu.org/data/eida/webservices/", "name": "Web Service Documentation", "type": "Help documentation"}, {"url": "http://eida-federator.ethz.ch/swagger/", "name": "Swagger API documentation", "type": "Help documentation"}, {"url": "https://www.orfeus-eu.org/data/eida/quality/", "name": "Data Quality", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://orfeus-eu.org/webdc3/", "name": "Search", "type": "data access"}, {"url": "http://orfeus-eu.org/stationbook/", "name": "View Stations", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011718", "name": "re3data:r3d100011718", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000918", "bsg-d000918"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Greece", "United Kingdom", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Romania", "Sweden", "France", "Netherlands", "Germany", "Turkey", "Portugal", "Spain", "Switzerland"], "name": "FAIRsharing record for: Orfeus - European Integrated Data Archive", "abbreviation": "Orfeus - EIDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.vmq5yj", "doi": "10.25504/FAIRsharing.vmq5yj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EIDA, an initiative within ORFEUS, is a distributed federation of datacenters established to (a) securely archive seismic waveform data and metadata gathered by European research infrastructures, and (b) to provide transparent access to the archives by the geosciences research communities.", "publications": [], "licence-links": [{"licence-name": "EIDA Data Policy", "licence-id": 264, "link-id": 1885, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2935", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-07T08:59:37.000Z", "updated-at": "2021-12-06T10:47:26.867Z", "metadata": {"name": "Chinese Clinical Trial Registry", "status": "ready", "contacts": [{"contact-name": "Taixiang Wu", "contact-email": "txwutx@hotmail.com", "contact-orcid": "0000-0003-2875-0121"}], "homepage": "http://www.chictr.org.cn/abouten.aspx", "identifier": 2935, "description": "Chinese Clinical Trial Registry provides the services include register for trials, consultation for trial design, central randomization for an allocation sequence, peer review for draft articles and training for peer reviewers.", "abbreviation": "ChiCTR", "support-links": [{"url": "chictr@vip.qq.com", "name": "General contact", "type": "Support email"}, {"url": "http://www.chictr.org.cn/questionen.aspx", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.chictr.org.cn/filelisten.aspx", "name": "Articles, Policies and Methodology", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.chictr.org.cn/searchprojen.aspx", "name": "Browse and search", "type": "data access"}, {"url": "http://www.chictr.org.cn/registryen.aspx", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013294", "name": "re3data:r3d100013294", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001438", "bsg-d001438"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Biomedical Science", "Epidemiology"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["China"], "name": "FAIRsharing record for: Chinese Clinical Trial Registry", "abbreviation": "ChiCTR", "url": "https://fairsharing.org/fairsharing_records/2935", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Chinese Clinical Trial Registry provides the services include register for trials, consultation for trial design, central randomization for an allocation sequence, peer review for draft articles and training for peer reviewers.", "publications": [{"id": 2850, "pubmed_id": 21894612, "title": "Chinese Clinical Trial Registry: mission, responsibility and operation.", "year": 2011, "url": "http://doi.org/10.1111/j.1756-5391.2011.01137.x", "authors": "Wu T,Li Y,Liu G,Li J,Wang L,Du L", "journal": "J Evid Based Med", "doi": "10.1111/j.1756-5391.2011.01137.x", "created_at": "2021-09-30T08:27:50.590Z", "updated_at": "2021-09-30T08:27:50.590Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2580", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T19:38:54.000Z", "updated-at": "2021-11-24T13:17:15.279Z", "metadata": {"doi": "10.25504/FAIRsharing.5yH3KC", "name": "Medicago truncatula Genome Database", "status": "ready", "homepage": "http://www.medicagogenome.org", "identifier": 2580, "description": "Medicago truncatula, a close relative of alfalfa, is a preeminent model for the study of the processes of nitrogen fixation, symbiosis, and legume genomics. J. Craig Venter Institute (JCVI; formerly TIGR) has been involved in M. truncatula genome sequencing and annotation since 2002 and has maintained a web-based resource providing data to the community for this entire period. This database stores the latest version of the genome, associated data and legacy project information together with a set of open-source tools.", "abbreviation": "MTGD", "access-points": [{"url": "http://www.medicagogenome.org/tools/api-explorer", "name": "RESTful API for MTGD", "type": "REST"}], "support-links": [{"url": "http://www.medicagogenome.org/contact", "name": "MTGD Contact Form", "type": "Contact form"}, {"url": "http://www.medicagogenome.org/genomeDetail?block=feature_counts", "name": "Feature Summary / Statistics", "type": "Help documentation"}, {"url": "http://www.medicagogenome.org/about/project-overview", "name": "Project Overview", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://www.medicagogenome.org/downloads", "name": "Download Data", "type": "data access"}], "associated-tools": [{"url": "http://www.medicagogenome.org/tools/medicmine", "name": "MedicMine"}, {"url": "http://www.medicagogenome.org/tools/jbrowse", "name": "JBrowse"}, {"url": "http://www.medicagogenome.org/search/blast", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-001063", "bsg-d001063"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Genomics", "Life Science"], "domains": ["Genome annotation"], "taxonomies": ["Medicago truncatula"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Medicago truncatula Genome Database", "abbreviation": "MTGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.5yH3KC", "doi": "10.25504/FAIRsharing.5yH3KC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Medicago truncatula, a close relative of alfalfa, is a preeminent model for the study of the processes of nitrogen fixation, symbiosis, and legume genomics. J. Craig Venter Institute (JCVI; formerly TIGR) has been involved in M. truncatula genome sequencing and annotation since 2002 and has maintained a web-based resource providing data to the community for this entire period. This database stores the latest version of the genome, associated data and legacy project information together with a set of open-source tools.", "publications": [{"id": 953, "pubmed_id": 25432968, "title": "MTGD: The Medicago truncatula genome database.", "year": 2014, "url": "http://doi.org/10.1093/pcp/pcu179", "authors": "Krishnakumar V,Kim M,Rosen BD,Karamycheva S,Bidwell SL,Tang H,Town CD", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcu179", "created_at": "2021-09-30T08:24:05.424Z", "updated_at": "2021-09-30T08:24:05.424Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2619", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-19T14:02:06.000Z", "updated-at": "2021-11-24T13:13:13.799Z", "metadata": {"name": "NASA Ames PAH IR Spectroscopic Database", "status": "ready", "contacts": [{"contact-name": "Charles W. Bauschlicher Jr.", "contact-email": "Charles.W.Bauschlicher@nasa.gov"}], "homepage": "http://www.astrochemistry.org/pahdb/", "identifier": 2619, "description": "Collaboration between the astronomers, laboratory chemists and theoretical chemists at the facilities of NASA's Ames Research Center resulted in the collection of PAH spectra known as The NASA Ames PAH IR Spectroscopic Database. Collaboration with different institutes, across several countries, helped mature the database and allowed for the construction of the web-portal with its data and tools. Initially intended for astronomers to explain the astronomical unidentified infrared bands and to investigate the \"PAH hypothesis\", now the spectral data and developed paradigms prove also valuable to, e.g., chemists, environmentalists, pharmacologists and nano-technologists.", "abbreviation": "PAHdb", "support-links": [{"url": "https://www.facebook.com/NASA-Ames-Astrophysics-Astrochemistry-Laboratory-165023493513003/", "name": "Facebook", "type": "Facebook"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/video", "name": "Video Tutorial", "type": "Help documentation"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/view", "type": "Help documentation"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/technologies", "name": "Technologies", "type": "Help documentation"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/pressreleases", "name": "Press Releases", "type": "Help documentation"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/tour", "name": "Tour", "type": "Help documentation"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/about", "name": "About the NASA Ames PAH IR Spectroscopic Database", "type": "Help documentation"}, {"url": "https://twitter.com/AmesLabAstro", "name": "@AmesLabAstro", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/default/browse/1", "name": "Browse", "type": "data access"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/default/advanced", "name": "Search", "type": "data access"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/download/view", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/tools/view", "name": "Database Tools (all)"}, {"url": "http://www.astrochemistry.org/pahdb/theoretical/3.00/help/amespahdbidlsuite", "name": "AmesPAHdbIDLSuite"}]}, "legacy-ids": ["biodbcore-001106", "bsg-d001106"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Nanotechnology", "Chemistry", "Astrophysics and Astronomy", "Pharmacology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NASA Ames PAH IR Spectroscopic Database", "abbreviation": "PAHdb", "url": "https://fairsharing.org/fairsharing_records/2619", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Collaboration between the astronomers, laboratory chemists and theoretical chemists at the facilities of NASA's Ames Research Center resulted in the collection of PAH spectra known as The NASA Ames PAH IR Spectroscopic Database. Collaboration with different institutes, across several countries, helped mature the database and allowed for the construction of the web-portal with its data and tools. Initially intended for astronomers to explain the astronomical unidentified infrared bands and to investigate the \"PAH hypothesis\", now the spectral data and developed paradigms prove also valuable to, e.g., chemists, environmentalists, pharmacologists and nano-technologists.", "publications": [{"id": 2403, "pubmed_id": null, "title": "The NASA Ames PAH IR Spectroscopic Database Version 2.00: Updated Content, Web Site, and On(Off)line Tools", "year": 2014, "url": "http://doi.org/10.1088/0067-0049/211/1/8", "authors": "C. Boersma, C. W. Bauschlicher Jr., A. Ricca, A. L. Mattioda, J. Cami, E. Peeters, F. S\u00e1nchez de Armas, G. Puerta Saborido, D. M. Hudgins, and L. J. Allamandola", "journal": "The Astrophysical Journal Supplement Series", "doi": "10.1088/0067-0049/211/1/8", "created_at": "2021-09-30T08:26:54.969Z", "updated_at": "2021-09-30T08:26:54.969Z"}, {"id": 2412, "pubmed_id": null, "title": "The NASA Ames PAH IR Spectroscopic Database: Computational Version 3.00 with Updated Content and the Introduction of Multiple Scaling Factors", "year": 2018, "url": "http://doi.org/10.3847/1538-4365/aaa019", "authors": "Charles W. Bauschlicher Jr., A. Ricca, C. Boersma, and L. J. Allamandola", "journal": "The Astrophysical Journal Supplement Series", "doi": "10.3847/1538-4365/aaa019", "created_at": "2021-09-30T08:26:56.051Z", "updated_at": "2021-09-30T08:26:56.051Z"}], "licence-links": [{"licence-name": "The Astrophysics & Astrochemistry Laboratory's Terms of Service", "licence-id": 782, "link-id": 1679, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2698", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-03T11:08:13.000Z", "updated-at": "2022-02-08T10:51:11.847Z", "metadata": {"doi": "10.25504/FAIRsharing.73afbf", "name": "National Science Digital Library", "status": "ready", "contacts": [{"contact-name": "Michelle Brennan", "contact-email": "michelle@iskme.org"}], "homepage": "https://nsdl.oercommons.org", "identifier": 2698, "description": "The National Science Digital Library provides high quality online educational resources for teaching and learning, with current emphasis on the sciences, technology, engineering, and mathematics (STEM) disciplines\u2014both formal and informal, institutional and individual, in local, state, national, and international educational settings.", "abbreviation": "NSDL", "support-links": [{"url": "https://nsdl.oercommons.org/nsdl-contacts-page", "name": "Contact page", "type": "Contact form"}], "year-creation": 2007, "data-processes": [{"url": "https://nsdl.oercommons.org/advanced-search/", "name": "Advance Search", "type": "data access"}, {"url": "https://nsdl.oercommons.org/oer/providers", "name": "Browse Providers", "type": "data access"}, {"url": "https://nsdl.oercommons.org/login?next=/courses/add", "name": "Submit a resource", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010801", "name": "re3data:r3d100010801", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008215", "name": "SciCrunch:RRID:SCR_008215", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001196", "bsg-d001196"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Engineering Science", "Chemistry", "Natural Science", "Mathematics", "Life Science", "Computer Science", "Physics", "Biology"], "domains": ["Resource collection", "Teaching material"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Science Digital Library", "abbreviation": "NSDL", "url": "https://fairsharing.org/10.25504/FAIRsharing.73afbf", "doi": "10.25504/FAIRsharing.73afbf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Science Digital Library provides high quality online educational resources for teaching and learning, with current emphasis on the sciences, technology, engineering, and mathematics (STEM) disciplines\u2014both formal and informal, institutional and individual, in local, state, national, and international educational settings.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 949, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3007", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-21T12:32:50.000Z", "updated-at": "2021-12-06T10:47:30.077Z", "metadata": {"name": "Claremont Colleges Digital Library", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "digitalcollections@claremont.edu", "contact-orcid": null}], "homepage": "https://ccdl.claremont.edu/digital/", "citations": [], "identifier": 3007, "description": "The Claremont Colleges Digital Library (CCDL) provides access to historical and visual resources collections created both by and for The Claremont Colleges community, including artworks, college photo archives, videos of lectures, rare books, etc.", "abbreviation": "CCDL", "data-curation": {}, "support-links": [{"url": "https://claremont.libwizard.com/f/contact_ccdl", "type": "Contact form"}], "year-creation": 2004, "data-processes": [{"url": "https://ccdl.claremont.edu/digital/search/advanced", "name": "Advanced search", "type": "data access"}, {"url": "https://ccdl.claremont.edu/digital/search", "name": "Browse items", "type": "data access"}, {"url": "https://ccdl.claremont.edu/digital/", "name": "Browse collections", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011177", "name": "re3data:r3d100011177", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001515", "bsg-d001515"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Geography", "Humanities and Social Science", "Literary Studies", "Psychology", "Fine Arts", "History", "Life Science", "Political Science", "Anthropology"], "domains": ["Free text", "Image"], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository", "Religion"], "countries": ["United States"], "name": "FAIRsharing record for: Claremont Colleges Digital Library", "abbreviation": "CCDL", "url": "https://fairsharing.org/fairsharing_records/3007", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Claremont Colleges Digital Library (CCDL) provides access to historical and visual resources collections created both by and for The Claremont Colleges community, including artworks, college photo archives, videos of lectures, rare books, etc.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3141", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T09:35:32.000Z", "updated-at": "2022-02-08T10:33:56.743Z", "metadata": {"doi": "10.25504/FAIRsharing.fb172e", "name": "Comprehensive Large Array-data Stewardship System", "status": "ready", "contacts": [{"contact-name": "CLASS Helpdesk", "contact-email": "class.help@noaa.gov"}], "homepage": "https://www.avl.class.noaa.gov/", "identifier": 3141, "description": "The Comprehensive Large Array-data Stewardship System (CLASS) is designed to support long-term, secure preservation and standards-based access to environmental data collections and information. Developed by NOAA, CLASS distributes NOAA and US Department of Defense (DoD) Polar-orbiting Operational Environmental Satellite (POES) data, NOAA's Geostationary Operational Environmental Satellite (GOES) data, and derived data.", "abbreviation": "CLASS", "support-links": [{"url": "https://www.avl.class.noaa.gov/notification/faq.htm", "name": "CLASS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.avl.class.noaa.gov/release/index.htm", "name": "CLASS Help", "type": "Help documentation"}, {"url": "https://www.avl.class.noaa.gov/notification/pdfs/CLASS%20Data%20Access%20Tutorial_042015.pdf", "name": "Data Access Tutorial", "type": "Help documentation"}, {"url": "https://www.avl.class.noaa.gov/saa/products/about", "name": "About CLASS", "type": "Help documentation"}, {"url": "https://www.avl.class.noaa.gov/saa/products/rssFeed", "name": "CLASS RSS", "type": "Blog/News"}], "data-processes": [{"url": "https://www.avl.class.noaa.gov/saa/products/catSearch", "name": "Search by Category", "type": "data access"}, {"url": "https://www.avl.class.noaa.gov/saa/products/ftpsInstructions", "name": "Download via FTP", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010996", "name": "re3data:r3d100010996", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001652", "bsg-d001652"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Meteorology", "Remote Sensing", "Oceanography"], "domains": ["Geographical location", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Global Positioning System"], "countries": ["United States"], "name": "FAIRsharing record for: Comprehensive Large Array-data Stewardship System", "abbreviation": "CLASS", "url": "https://fairsharing.org/10.25504/FAIRsharing.fb172e", "doi": "10.25504/FAIRsharing.fb172e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Comprehensive Large Array-data Stewardship System (CLASS) is designed to support long-term, secure preservation and standards-based access to environmental data collections and information. Developed by NOAA, CLASS distributes NOAA and US Department of Defense (DoD) Polar-orbiting Operational Environmental Satellite (POES) data, NOAA's Geostationary Operational Environmental Satellite (GOES) data, and derived data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3142", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T09:55:13.000Z", "updated-at": "2021-12-06T10:47:36.463Z", "metadata": {"name": "Earth Prints Open Archive", "status": "ready", "contacts": [{"contact-name": "INGV Contact", "contact-email": "info@ingv.it"}], "homepage": "https://www.earth-prints.org/", "identifier": 3142, "description": "The Earth Prints archive contains a variety of Earth Science research outputs to improve dissemination and impact of research findings and to document research efforts, including pre-, post-, and re-prints of scientific papers, conference papers, posters, extended abstracts, theses, reports, books and book chapters, magazine articles, web products and original software, project descriptions, and other published or unpublished documents. All languages are supported, but English title and abstract are mandatory.", "support-links": [{"url": "https://www.earth-prints.org/feedback", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.earth-prints.org/author-guidelines.jsp", "name": "Author Submission Guidelines", "type": "Help documentation"}, {"url": "https://www.earth-prints.org/help/index.html", "name": "Help", "type": "Help documentation"}, {"url": "https://www.earth-prints.org/bitstream/2122/1076/1/brochureEP.pdf", "name": "Earth Prints Brochure", "type": "Help documentation"}], "data-processes": [{"url": "https://www.earth-prints.org/cris/explore/orgunits", "name": "Search by Organization", "type": "data access"}, {"url": "https://www.earth-prints.org/cris/explore/researcherprofiles", "name": "Search by Researcher", "type": "data access"}, {"url": "https://www.earth-prints.org/cris/explore/publications", "name": "Search by Research Output", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011191", "name": "re3data:r3d100011191", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001653", "bsg-d001653"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geophysics", "Earth Science", "Atmospheric Science", "Oceanography", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere"], "countries": ["Italy"], "name": "FAIRsharing record for: Earth Prints Open Archive", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3142", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Earth Prints archive contains a variety of Earth Science research outputs to improve dissemination and impact of research findings and to document research efforts, including pre-, post-, and re-prints of scientific papers, conference papers, posters, extended abstracts, theses, reports, books and book chapters, magazine articles, web products and original software, project descriptions, and other published or unpublished documents. All languages are supported, but English title and abstract are mandatory.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1970", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.298Z", "metadata": {"doi": "10.25504/FAIRsharing.r90425", "name": "dbMHC", "status": "deprecated", "contacts": [{"contact-name": "David L. Wheeler", "contact-email": "wheeler@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/mhc/", "identifier": 1970, "description": "dbMHC provides access to HLA sequences, tools to support genetic testing of HLA loci, HLA allele and haplotype frequencies of over 90 populations worldwide, as well as clinical datasets on nematopoietic stem cell transplantation, and insulin dependant diabetes mellitus (IDDM), Rheumatoid Arthritis (RA), Narcolepsy and Spondyloarthropathy. All clinical datasets housed at the dbMHC provide access to genotypic and phenotypic data on anonimyzed samples with aggregate query functions, and complete download capability.", "abbreviation": "dbMHC", "support-links": [{"url": "dbMHC@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK21080/", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/pub/mhc", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/projects/gv/mhc/align.fcgi?cmd=aligndisplay&user_id=0&probe_id=0&source_id=0&locus_id=0&locus_group=1&proto_id=0&kit_id=0&banner=1", "name": "align"}], "deprecation-date": "2021-06-24", "deprecation-reason": "The database is no longer available. Message on the homepage: \"The dbMHC database was an open, publicly accessible platform for DNA and clinical data related to the human Major Histocompatibility Complex (MHC). Data from IHWG workshops were provided as well. Data previously on the site are now available at ftp://ftp.ncbi.nlm.nih.gov/pub/mhc/mhc/Final Archive. If you have any specific questions, please feel free to contact us at info@ncbi.nlm.nih.gov.\""}, "legacy-ids": ["biodbcore-000436", "bsg-d000436"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Deoxyribonucleic acid", "Human leukocyte antigen complex"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: dbMHC", "abbreviation": "dbMHC", "url": "https://fairsharing.org/10.25504/FAIRsharing.r90425", "doi": "10.25504/FAIRsharing.r90425", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: dbMHC provides access to HLA sequences, tools to support genetic testing of HLA loci, HLA allele and haplotype frequencies of over 90 populations worldwide, as well as clinical datasets on nematopoietic stem cell transplantation, and insulin dependant diabetes mellitus (IDDM), Rheumatoid Arthritis (RA), Narcolepsy and Spondyloarthropathy. All clinical datasets housed at the dbMHC provide access to genotypic and phenotypic data on anonimyzed samples with aggregate query functions, and complete download capability.", "publications": [{"id": 1022, "pubmed_id": 16381840, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj158", "authors": "Barrett T., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj158", "created_at": "2021-09-30T08:24:13.181Z", "updated_at": "2021-09-30T08:24:13.181Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1844, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3052", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-29T13:30:49.000Z", "updated-at": "2022-02-08T10:41:29.089Z", "metadata": {"doi": "10.25504/FAIRsharing.8f84ad", "name": "Distributed Active Archive Center at National Snow & Ice Data Center", "status": "ready", "contacts": [{"contact-name": "Gina Henderson", "contact-email": "ghenders@usna.edu", "contact-orcid": "0000-0001-6835-5658"}], "homepage": "https://nsidc.org/daac/", "identifier": 3052, "description": "The NSIDC Distributed Active Archive Center (DAAC) processes, archives, documents, and distributes data from NASA's Earth Observing System (EOS) satellites, airborne campaigns, and field measurement programs. The NSIDC DAAC focuses on the cryosphere and related topics, including snow, sea ice, glaciers, ice sheets, frozen ground, soil moisture, and climate interactions. The NSIDC DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "NSIDC DAAC", "access-points": [{"url": "https://nsidc.org/support/how/how-do-i-programmatically-request-data-services", "name": "Programmatic Data Access Guide", "type": "Other"}], "support-links": [{"url": "https://nsidc.org/the-drift/data-update/", "name": "Data announcements", "type": "Blog/News"}], "data-processes": [{"url": "https://nsidc.org/daac/", "name": "Search / Select Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010109", "name": "re3data:r3d100010109", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001560", "bsg-d001560"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrogeology", "Environmental Science", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere", "Glacier", "Moisture", "Satellite Data", "Sea ice", "snow"], "countries": ["United States"], "name": "FAIRsharing record for: Distributed Active Archive Center at National Snow & Ice Data Center", "abbreviation": "NSIDC DAAC", "url": "https://fairsharing.org/10.25504/FAIRsharing.8f84ad", "doi": "10.25504/FAIRsharing.8f84ad", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NSIDC Distributed Active Archive Center (DAAC) processes, archives, documents, and distributes data from NASA's Earth Observing System (EOS) satellites, airborne campaigns, and field measurement programs. The NSIDC DAAC focuses on the cryosphere and related topics, including snow, sea ice, glaciers, ice sheets, frozen ground, soil moisture, and climate interactions. The NSIDC DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NSIDC Use and Copyright", "licence-id": 603, "link-id": 2040, "relation": "undefined"}, {"licence-name": "NSIDC Web Policy", "licence-id": 604, "link-id": 2041, "relation": "undefined"}, {"licence-name": "NSIDC Data Policies", "licence-id": 602, "link-id": 2042, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3066", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-07T09:00:16.000Z", "updated-at": "2021-12-06T10:47:32.892Z", "metadata": {"name": "EBAS", "status": "ready", "contacts": [{"contact-name": "Kjetil Torseth", "contact-email": "kjetil.torseth@nilu.no", "contact-orcid": "0000-0002-3500-6096"}], "homepage": "http://ebas.nilu.no/", "identifier": 3066, "description": "EBAS is a database hosting observation data of atmospheric chemical composition and physical properties. EBAS hosts data submitted by data originators in support of a number of national and international programs ranging from monitoring activities to research projects. EBAS is developed and operated by the Norwegian Institute for Air Research (NILU).", "abbreviation": "EBAS", "support-links": [{"url": "https://www.facebook.com/EBAS-Data-Centre-853731408048119/", "name": "Facebook", "type": "Facebook"}, {"url": "https://twitter.com/EBAS_NILU", "type": "Twitter"}], "year-creation": 1995, "data-processes": [{"url": "http://ebas.nilu.no/", "name": "Browse & search", "type": "data access"}, {"url": "https://ebas-submit.nilu.no/", "name": "Data submission", "type": "data curation"}, {"url": "https://ebas-nrt-showcase.nilu.no/", "name": "Latest Near-Real-Time Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012336", "name": "re3data:r3d100012336", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001574", "bsg-d001574"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Geophysics", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: EBAS", "abbreviation": "EBAS", "url": "https://fairsharing.org/fairsharing_records/3066", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EBAS is a database hosting observation data of atmospheric chemical composition and physical properties. EBAS hosts data submitted by data originators in support of a number of national and international programs ranging from monitoring activities to research projects. EBAS is developed and operated by the Norwegian Institute for Air Research (NILU).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2370", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-12T17:59:26.000Z", "updated-at": "2021-11-24T13:18:22.825Z", "metadata": {"doi": "10.25504/FAIRsharing.q8fx1b", "name": "Ontobee", "status": "ready", "contacts": [{"contact-name": "Yongqun He", "contact-email": "yongqunh@med.umich.edu", "contact-orcid": "0000-0001-9189-9661"}], "homepage": "http://www.ontobee.org/", "identifier": 2370, "description": "A linked data server designed for ontologies. Ontobee is aimed to facilitate ontology data sharing, visualization, query, integration, and analysis. Ontobee dynamically dereferences and presents individual ontology term URIs to (i) HTML web pages for user-friendly web browsing and navigation, and to (ii) RDF source code for Semantic Web applications. Ontobee is the default linked data server for most OBO Foundry library ontologies. Ontobee has also been used for many non-OBO ontologies.", "abbreviation": "Ontobee", "support-links": [{"url": "http://www.ontobee.org/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/forum/#!forum/ontobee-discuss", "type": "Forum"}, {"url": "http://www.ontobee.org/tutorial", "type": "Help documentation"}, {"url": "http://www.ontobee.org/introduction", "type": "Help documentation"}], "year-creation": 2009}, "legacy-ids": ["biodbcore-000849", "bsg-d000849"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Ontobee", "abbreviation": "Ontobee", "url": "https://fairsharing.org/10.25504/FAIRsharing.q8fx1b", "doi": "10.25504/FAIRsharing.q8fx1b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A linked data server designed for ontologies. Ontobee is aimed to facilitate ontology data sharing, visualization, query, integration, and analysis. Ontobee dynamically dereferences and presents individual ontology term URIs to (i) HTML web pages for user-friendly web browsing and navigation, and to (ii) RDF source code for Semantic Web applications. Ontobee is the default linked data server for most OBO Foundry library ontologies. Ontobee has also been used for many non-OBO ontologies.", "publications": [{"id": 1994, "pubmed_id": 27733503, "title": "Ontobee: A linked ontology data server to support ontology term dereferencing, linkage, query and integration.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw918", "authors": "Ong E, Xiang Z, Zhao B, Liu Y, Lin Y, Zheng J, Mungall C, Courtot M, Ruttenberg A, He Y.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw918", "created_at": "2021-09-30T08:26:04.466Z", "updated_at": "2021-09-30T08:26:04.466Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2277", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-13T14:37:26.000Z", "updated-at": "2021-12-06T10:48:07.347Z", "metadata": {"doi": "10.25504/FAIRsharing.7ykpy5", "name": "ENCODE Project", "status": "ready", "contacts": [{"contact-name": "J Michael Cherry", "contact-email": "cherry@stanford.edu", "contact-orcid": "0000-0001-9163-5180"}], "homepage": "https://www.encodeproject.org/", "identifier": 2277, "description": "The ENCODE (Encyclopedia of DNA Elements) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE results from 2007 and later are available from this project. This covers data generated during the two production phases 2007-2012 and 2013-present.", "abbreviation": "ENCODE", "access-points": [{"url": "https://www.encodeproject.org/help/rest-api/", "name": "ENCODE REST API", "type": "REST"}], "support-links": [{"url": "https://www.encodeproject.org/help/contacts/", "type": "Help documentation"}, {"url": "https://mailman.stanford.edu/mailman/listinfo/encode-announce", "type": "Mailing list"}, {"url": "https://twitter.com/encodedcc", "type": "Twitter"}], "year-creation": 2013, "associated-tools": [{"url": "http://genome.ucsc.edu/", "name": "UCSC Genome Browser"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013051", "name": "re3data:r3d100013051", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_015482", "name": "SciCrunch:RRID:SCR_015482", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000751", "bsg-d000751"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenetics", "Life Science"], "domains": ["Methylation", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing", "Transcript"], "taxonomies": ["Caenorhabditis", "Drosophila", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ENCODE Project", "abbreviation": "ENCODE", "url": "https://fairsharing.org/10.25504/FAIRsharing.7ykpy5", "doi": "10.25504/FAIRsharing.7ykpy5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ENCODE (Encyclopedia of DNA Elements) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE results from 2007 and later are available from this project. This covers data generated during the two production phases 2007-2012 and 2013-present.", "publications": [{"id": 1048, "pubmed_id": 25776021, "title": "Ontology application and use at the ENCODE DCC.", "year": 2015, "url": "http://doi.org/10.1093/database/bav010", "authors": "Malladi VS,Erickson DT,Podduturi NR,Rowe LD,Chan ET,Davidson JM,Hitz BC,Ho M,Lee BT,Miyasato S,Roe GR,Simison M,Sloan CA,Strattan JS,Tanaka F,Kent WJ,Cherry JM,Hong EL", "journal": "Database (Oxford)", "doi": "10.1093/database/bav010", "created_at": "2021-09-30T08:24:16.049Z", "updated_at": "2021-09-30T08:24:16.049Z"}, {"id": 2112, "pubmed_id": 26527727, "title": "ENCODE data at the ENCODE portal.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1160", "authors": "Sloan CA,Chan ET,Davidson JM,Malladi VS,Strattan JS,Hitz BC,Gabdank I,Narayanan AK,Ho M,Lee BT,Rowe LD,Dreszer TR,Roe G,Podduturi NR,Tanaka F,Hong EL,Cherry JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1160", "created_at": "2021-09-30T08:26:18.147Z", "updated_at": "2021-09-30T11:29:29.444Z"}, {"id": 2113, "pubmed_id": 26980513, "title": "Principles of metadata organization at the ENCODE data coordination center.", "year": 2016, "url": "http://doi.org/10.1093/database/baw001", "authors": "Hong EL,Sloan CA,Chan ET,Davidson JM,Malladi VS,Strattan JS,Hitz BC,Gabdank I,Narayanan AK,Ho M,Lee BT,Rowe LD,Dreszer TR,Roe GR,Podduturi NR,Tanaka F,Hilton JA,Cherry JM", "journal": "Database (Oxford)", "doi": "10.1093/database/baw001", "created_at": "2021-09-30T08:26:18.249Z", "updated_at": "2021-09-30T08:26:18.249Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2821", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-23T13:58:45.000Z", "updated-at": "2021-12-06T10:48:23.637Z", "metadata": {"doi": "10.25504/FAIRsharing.d6Pe1f", "name": "ESS-DIVE: Environmental Systems Science Data Infrastructure for a Virtual Ecosystem", "status": "ready", "contacts": [{"contact-name": "ESS-DIVE Support", "contact-email": "ess-dive-support@lbl.gov"}], "homepage": "https://data.ess-dive.lbl.gov/", "identifier": 2821, "description": "The U.S. Department of Energy\u2019s (DOE) Environmental Systems Science Data Infrastructure for a Virtual Ecosystem (ESS-DIVE) is a data repository for Earth and environmental science data. ESS-DIVE is funded by the Data Management program within the Climate and Environmental Science Division under the DOE\u2019s Office of Biological and Environmental Research program (BER), and is maintained by the Lawrence Berkeley National Laboratory. ESS-DIVE archives and publicly shares data obtained from observational, experimental, and modeling research that is funded by the DOE\u2019s Office of Science under its Subsurface Biogeochemical Research (SBR) and Terrestrial Ecosystem Science (TES) programs within the Environmental Systems Science (ESS) activity. The mission of ESS-DIVE is to preserve, expand access to, and improve usability of critical data generated through DOE-sponsored research of terrestrial and subsurface ecosystems in support of the DOE\u2019s efforts to address some of society\u2019s most pressing energy and environmental challenges.", "abbreviation": "ESS-DIVE", "support-links": [{"url": "ess-dive-support@lbl.gov", "name": "ESS-DIVE Support", "type": "Support email"}, {"url": "https://docs.google.com/document/d/179wEdWROuSX6sVLGCNWjITRnwxxuEp2QnOUbmP7BJBc/edit", "name": "Portal FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://docs.google.com/document/d/1deGmb0Q786gUsLAKtNkOnqSn8S2fddlxXrHt97kyxoE/edit", "name": "Data Upload Documentation", "type": "Help documentation"}, {"url": "https://docs.google.com/document/d/1WdgR5wQm8cc0Xu_JU5f_O0qXFRulJQsKnLyAbDMMG3Q/edit", "name": "Data Access Documentation", "type": "Help documentation"}], "year-creation": 2018, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000019", "name": "re3data:r3d100000019", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001320", "bsg-d001320"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Environmental Science", "Earth Science", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["biogeochemistry"], "countries": ["United States"], "name": "FAIRsharing record for: ESS-DIVE: Environmental Systems Science Data Infrastructure for a Virtual Ecosystem", "abbreviation": "ESS-DIVE", "url": "https://fairsharing.org/10.25504/FAIRsharing.d6Pe1f", "doi": "10.25504/FAIRsharing.d6Pe1f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The U.S. Department of Energy\u2019s (DOE) Environmental Systems Science Data Infrastructure for a Virtual Ecosystem (ESS-DIVE) is a data repository for Earth and environmental science data. ESS-DIVE is funded by the Data Management program within the Climate and Environmental Science Division under the DOE\u2019s Office of Biological and Environmental Research program (BER), and is maintained by the Lawrence Berkeley National Laboratory. ESS-DIVE archives and publicly shares data obtained from observational, experimental, and modeling research that is funded by the DOE\u2019s Office of Science under its Subsurface Biogeochemical Research (SBR) and Terrestrial Ecosystem Science (TES) programs within the Environmental Systems Science (ESS) activity. The mission of ESS-DIVE is to preserve, expand access to, and improve usability of critical data generated through DOE-sponsored research of terrestrial and subsurface ecosystems in support of the DOE\u2019s efforts to address some of society\u2019s most pressing energy and environmental challenges.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2932", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-06T14:51:44.000Z", "updated-at": "2021-12-06T10:47:26.694Z", "metadata": {"name": "Netherlands Trial Register", "status": "ready", "contacts": [{"contact-email": "nederlands.trialregister@gmail.com"}], "homepage": "https://www.trialregister.nl/", "identifier": 2932, "description": "The NTR is a publicly accessible and freely searchable prospective trial register in which studies are registered that run in the Netherlands or are carried out by Dutch researchers. Primary Registries have been recognized and accepted by the WHO and ICMJE. If your study is included in one of these registers, you meet the registration requirements. For the Netherlands the NTR is the Primary Registry.", "abbreviation": "NTR", "access-points": [{"url": "https://www.trialregister.nl/api", "name": "API", "type": "REST"}], "data-processes": [{"url": "https://www.trialregister.nl/trials", "name": "Search Clinical Trials", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013311", "name": "re3data:r3d100013311", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_010234", "name": "SciCrunch:RRID:SCR_010234", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001435", "bsg-d001435"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Epidemiology", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: Netherlands Trial Register", "abbreviation": "NTR", "url": "https://fairsharing.org/fairsharing_records/2932", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NTR is a publicly accessible and freely searchable prospective trial register in which studies are registered that run in the Netherlands or are carried out by Dutch researchers. Primary Registries have been recognized and accepted by the WHO and ICMJE. If your study is included in one of these registers, you meet the registration requirements. For the Netherlands the NTR is the Primary Registry.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2192", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-08T20:23:46.000Z", "updated-at": "2021-11-24T13:16:27.769Z", "metadata": {"doi": "10.25504/FAIRsharing.npf403", "name": "Swedish Ocean Archive", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "shark@smhi.se"}], "homepage": "http://www.smhi.se/en/services/open-data/national-archive-for-oceanographic-data", "identifier": 2192, "description": "SHARK (\"Svenskt HavsARKiv\" / \"Swedish Ocean Archive\") contains marine environmental monitoring data from the seas surrounding Sweden. SHARK is accessed via SHARKweb (for human-readable content) and SHARKdata (for computational access). Content includes marine physical, chemical and biological data collected within Swedish environmental monitoring programs.", "abbreviation": "SHARK", "access-points": [{"url": "http://sharkdata.se/datasets/list.json", "name": "REST", "type": "REST"}, {"url": "http://sharkdata.se/resources/table.json", "name": "REST", "type": "REST"}], "support-links": [{"url": "smhi@smhi.se", "name": "SMHI Contact", "type": "Support email"}, {"url": "http://sharkdata.se/examplecode/", "name": "Example Code", "type": "Help documentation"}, {"url": "http://sharkdata.se/documentation/", "name": "Documentation", "type": "Help documentation"}, {"url": "http://www.smhi.se/en/services/open-data/national-archive-for-oceanographic-data/deliver-data-1.153151", "name": "How to Submit Data", "type": "Help documentation"}, {"url": "http://www.smhi.se/en/services/open-data/national-archive-for-oceanographic-data/download-data-1.153150", "name": "How to Download Data", "type": "Help documentation"}, {"url": "http://www.smhi.se/en/services/open-data/national-archive-for-oceanographic-data/how-the-swedish-archive-for-oceanography-works-1.153153", "name": "About SHARK", "type": "Help documentation"}], "data-processes": [{"url": "http://sharkdata.se/datasets/", "name": "SHARKdata: Browse Datasets", "type": "data access"}, {"url": "http://sharkdata.se/resources/", "name": "SHARKdata: Browse Resources", "type": "data access"}, {"url": "http://sharkdata.se/speciesobs/", "name": "SHARKdata: Search by Species Observations", "type": "data access"}, {"url": "https://sharkweb.smhi.se/", "name": "SHARKweb: Search (Swedish only)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000666", "bsg-d000666"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology", "Biodiversity"], "domains": ["Marine environment", "Monitoring"], "taxonomies": ["All"], "user-defined-tags": ["Marine Chemistry"], "countries": ["Sweden"], "name": "FAIRsharing record for: Swedish Ocean Archive", "abbreviation": "SHARK", "url": "https://fairsharing.org/10.25504/FAIRsharing.npf403", "doi": "10.25504/FAIRsharing.npf403", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SHARK (\"Svenskt HavsARKiv\" / \"Swedish Ocean Archive\") contains marine environmental monitoring data from the seas surrounding Sweden. SHARK is accessed via SHARKweb (for human-readable content) and SHARKdata (for computational access). Content includes marine physical, chemical and biological data collected within Swedish environmental monitoring programs.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2072, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2974", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T14:28:11.000Z", "updated-at": "2022-02-08T10:39:55.021Z", "metadata": {"doi": "10.25504/FAIRsharing.eef384", "name": "Alternative Fuels Data Center", "status": "ready", "contacts": [{"contact-name": "Technical Response Service", "contact-email": "technicalresponse@icf.com"}], "homepage": "https://afdc.energy.gov/", "identifier": 2974, "description": "The Alternative Fuels Data Center (AFDC) provides a wealth of information and data on alternative and renewable fuels, advanced vehicles, fuel-saving strategies, and emerging transportation technologies. This site features interactive tools, calculators, and mapping applications to aid in the implementation of these fuels, vehicles, and strategies. The AFDC functions as a dynamic online hub, providing information, tools, and resources for transportation decision makers seeking domestic alternatives that diversify energy sources and help businesses make wise economic choices.", "abbreviation": "AFDC", "access-points": [{"url": "https://developer.nrel.gov/docs/transportation/", "name": "APIs", "type": "Other"}], "support-links": [{"url": "https://afdc.energy.gov/website-contact.html", "type": "Contact form"}], "year-creation": 1991, "data-processes": [{"url": "https://afdc.energy.gov/data/", "name": "Search & browse", "type": "data access"}, {"url": "https://afdc.energy.gov/publications/search/keyword/", "name": "Find publications", "type": "data access"}, {"url": "https://afdc.energy.gov/data_download/", "name": "Data download", "type": "data access"}, {"url": "https://afdc.energy.gov/case", "name": "Find case studies", "type": "data access"}], "associated-tools": [{"url": "https://afdc.energy.gov/tools", "name": "Alternative Fuels Data Center Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010226", "name": "re3data:r3d100010226", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001480", "bsg-d001480"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Energy Engineering", "Ecology", "Earth Science"], "domains": ["Bioenergy", "Sustainability"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Fossil Fuel", "Fuel Oil"], "countries": ["United States"], "name": "FAIRsharing record for: Alternative Fuels Data Center", "abbreviation": "AFDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.eef384", "doi": "10.25504/FAIRsharing.eef384", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Alternative Fuels Data Center (AFDC) provides a wealth of information and data on alternative and renewable fuels, advanced vehicles, fuel-saving strategies, and emerging transportation technologies. This site features interactive tools, calculators, and mapping applications to aid in the implementation of these fuels, vehicles, and strategies. The AFDC functions as a dynamic online hub, providing information, tools, and resources for transportation decision makers seeking domestic alternatives that diversify energy sources and help businesses make wise economic choices.", "publications": [], "licence-links": [{"licence-name": "Department of Energy Web Policies", "licence-id": 233, "link-id": 1078, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2976", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-06T10:20:42.000Z", "updated-at": "2022-02-08T10:39:56.807Z", "metadata": {"doi": "10.25504/FAIRsharing.4e7190", "name": "EUROLAS Data Center", "status": "ready", "contacts": [{"contact-name": "Christian Schwatke", "contact-email": "christian.schwatke@tum.de", "contact-orcid": "0000-0002-4741-3449"}], "homepage": "https://edc.dgfi.tum.de/en/", "identifier": 2976, "description": "The EUROLAS Data Center (EDC) is one of the two data centers of the International Laser Ranging Service (ILRS). It collects, archives and distributes tracking data, predictions and other tracking relevant information from the Consortium of European Satellite Laser Ranging (SLR) network. Additionally EDC holds a mirror of the official Web-Pages of the ILRS at Goddard Space Flight Center (GSFC).", "abbreviation": "EDC", "access-points": [{"url": "https://edc.dgfi.tum.de/en/api/doc/", "name": "EDC-API Documentation", "type": "Other"}], "support-links": [{"url": "carey.noll@nasa.gov", "name": "Carey Noll", "type": "Support email"}, {"url": "https://edc.dgfi.tum.de/en/mailing_lists/", "type": "Mailing list"}], "year-creation": 1991, "data-processes": [{"url": "https://edc.dgfi.tum.de/en/data/", "name": "Browse data", "type": "data access"}, {"url": "https://edc.dgfi.tum.de/en/stations/", "name": "Browse stations", "type": "data access"}, {"url": "https://edc.dgfi.tum.de/en/satellites/", "name": "Browse satellites", "type": "data access"}], "associated-tools": [{"url": "https://edc.dgfi.tum.de/en/tools/crd_check/", "name": "CRD-Check"}, {"url": "https://edc.dgfi.tum.de/en/tools/cpf_check/", "name": "CPF-Check"}, {"url": "https://edc.dgfi.tum.de/en/tools/cpf_mailer/", "name": "CPF-Mailer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010728", "name": "re3data:r3d100010728", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001482", "bsg-d001482"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy", "Geodesy", "Earth Science", "Selenography"], "domains": ["Observation design", "Measurement"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Laser Ranging", "Selenography"], "countries": ["Germany"], "name": "FAIRsharing record for: EUROLAS Data Center", "abbreviation": "EDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.4e7190", "doi": "10.25504/FAIRsharing.4e7190", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EUROLAS Data Center (EDC) is one of the two data centers of the International Laser Ranging Service (ILRS). It collects, archives and distributes tracking data, predictions and other tracking relevant information from the Consortium of European Satellite Laser Ranging (SLR) network. Additionally EDC holds a mirror of the official Web-Pages of the ILRS at Goddard Space Flight Center (GSFC).", "publications": [], "licence-links": [{"licence-name": "EUROLAS Data Center (EDC) Privacy Policy", "licence-id": 299, "link-id": 1288, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3150", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T10:56:58.000Z", "updated-at": "2022-02-08T10:34:09.023Z", "metadata": {"doi": "10.25504/FAIRsharing.57880c", "name": "Data Portal of the Alfred Wegener Institute", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "data@awi.de"}], "homepage": "https://marine-data.de/", "citations": [], "identifier": 3150, "description": "The Data Portal of the Alfred Wegener Institute (data.awi.de) provides an integrative single point of entry for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and data / data products archived in PANGAEA.", "abbreviation": "data.awi.de", "support-links": [{"url": "https://blogs.helmholtz.de/polarstern/en/", "name": "Polarstern Blog", "type": "Blog/News"}], "data-processes": [{"url": "https://data.awi.de/?site=data", "name": "Browse & Search", "type": "data access"}, {"url": "https://data.awi.de/?site=expeditions", "name": "Search by Expedition", "type": "data access"}, {"url": "https://data.awi.de/?site=platforms", "name": "Browse by Platforms", "type": "data access"}, {"url": "https://data.awi.de/?site=collections", "name": "Browse by Collection", "type": "data access"}, {"url": "https://data.awi.de/?site=publish", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011468", "name": "re3data:r3d100011468", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001661", "bsg-d001661"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Meteorology", "Marine Biology", "Atmospheric Science", "Remote Sensing"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Antarctic", "Arctic"], "countries": ["Germany"], "name": "FAIRsharing record for: Data Portal of the Alfred Wegener Institute", "abbreviation": "data.awi.de", "url": "https://fairsharing.org/10.25504/FAIRsharing.57880c", "doi": "10.25504/FAIRsharing.57880c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Data Portal of the Alfred Wegener Institute (data.awi.de) provides an integrative single point of entry for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and data / data products archived in PANGAEA.", "publications": [], "licence-links": [{"licence-name": "AWI Imprint", "licence-id": 52, "link-id": 1909, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3110", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T13:11:23.000Z", "updated-at": "2021-12-06T10:47:34.909Z", "metadata": {"name": "Edition Topoi research platform", "status": "ready", "contacts": [{"contact-name": "Gerwulf Schneider", "contact-email": "gerwulf.schneider@topoi.org"}], "homepage": "http://repository.edition-topoi.org/", "identifier": 3110, "description": "The Edition Topoi research platform serves the publication of citable research data such as 3D models, high-resolution pictures, data and databases. The content and its meta data are subject to peer review and made available on an Open Access basis. The published or publishable combination of citable research content and its technical and contextually relevant meta data is defined as Citable. The public data are generated via a cloud and can be directly connected with the individual computing environment.", "support-links": [{"url": "edition@topoi.org", "name": "General contact", "type": "Support email"}], "year-creation": 1976, "data-processes": [{"url": "http://repository.edition-topoi.org/", "name": "Browse & filter", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012470", "name": "re3data:r3d100012470", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001618", "bsg-d001618"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Archaeology", "History of Science", "Humanities", "Prehistory", "Religious Studies", "Art History", "Philosophy", "Architecture", "Chemistry", "Ancient Cultures", "Astrophysics and Astronomy", "Earth Science", "Subject Agnostic", "Linguistics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ceramics", "Lamps"], "countries": ["Germany"], "name": "FAIRsharing record for: Edition Topoi research platform", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3110", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Edition Topoi research platform serves the publication of citable research data such as 3D models, high-resolution pictures, data and databases. The content and its meta data are subject to peer review and made available on an Open Access basis. The published or publishable combination of citable research content and its technical and contextually relevant meta data is defined as Citable. The public data are generated via a cloud and can be directly connected with the individual computing environment.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Germany (CC BY-NC-SA 3.0 DE)", "licence-id": 183, "link-id": 2003, "relation": "undefined"}, {"licence-name": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "licence-id": 283, "link-id": 2004, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2664", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-22T09:37:25.000Z", "updated-at": "2021-12-06T10:48:06.227Z", "metadata": {"doi": "10.25504/FAIRsharing.7C0aVE", "name": "Human Pluripotent Stem Cell Registry", "status": "ready", "contacts": [{"contact-name": "Stefanie Seltmann", "contact-email": "stefanie.seltmann@ibmt.fraunhofer.de", "contact-orcid": "0000-0002-8411-3226"}], "homepage": "https://hpscreg.eu/", "citations": [{"doi": "10.1093/nar/gkv963", "pubmed-id": 26400179, "publication-id": 2396}], "identifier": 2664, "description": "The human pluripotent stem cell registry (hPSCreg) is a public registry and data portal for human embryonic and induced pluripotent stem cell lines (hESC and hiPSC). The Registry provides comprehensive and standardized biological and legal information as well as tools to search and compare information from multiple hPSC sources and hence addresses a translational research need. To facilitate unambiguous identification over different resources, hPSCreg automatically creates a unique standardized name for each cell line registered. In addition to biological information, hPSCreg stores extensive data about ethical standards regarding cell sourcing and conditions for application and privacy protection. hPSCreg is the first global registry that holds both, manually validated scientific and ethical information on hPSC lines, and provides access by means of a user-friendly, mobile-ready web application.", "abbreviation": "hPSCreg", "access-points": [{"url": "https://hpscreg.eu/about/api", "name": "HPSCreg APIs", "type": "REST"}], "support-links": [{"url": "https://hpscreg.eu/contact", "name": "contact form", "type": "Contact form"}, {"url": "https://hpscreg.eu/about/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://hpscreg.eu/about/documents-and-governance", "name": "Documents and Governance", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://hpscreg.eu/search?q", "name": "Browse all cell lines", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012863", "name": "re3data:r3d100012863", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001157", "bsg-d001157"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Cell line", "Human embryonic stem cell line cell", "Human induced pluripotent stem cell line cell", "Pluripotent stem cell", "Embryonic stem cell"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Metadata standardization"], "countries": ["United Kingdom", "Germany"], "name": "FAIRsharing record for: Human Pluripotent Stem Cell Registry", "abbreviation": "hPSCreg", "url": "https://fairsharing.org/10.25504/FAIRsharing.7C0aVE", "doi": "10.25504/FAIRsharing.7C0aVE", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The human pluripotent stem cell registry (hPSCreg) is a public registry and data portal for human embryonic and induced pluripotent stem cell lines (hESC and hiPSC). The Registry provides comprehensive and standardized biological and legal information as well as tools to search and compare information from multiple hPSC sources and hence addresses a translational research need. To facilitate unambiguous identification over different resources, hPSCreg automatically creates a unique standardized name for each cell line registered. In addition to biological information, hPSCreg stores extensive data about ethical standards regarding cell sourcing and conditions for application and privacy protection. hPSCreg is the first global registry that holds both, manually validated scientific and ethical information on hPSC lines, and provides access by means of a user-friendly, mobile-ready web application.", "publications": [{"id": 426, "pubmed_id": 32679065, "title": "A Manually Curated Database on Clinical Studies Involving Cell Products Derived from Human Pluripotent Stem Cells.", "year": 2020, "url": "http://doi.org/S2213-6711(20)30235-6", "authors": "Kobold S,Guhr A,Mah N,Bultjer N,Seltmann S,Seiler Wulczyn AEM,Stacey G,Jie H,Liu W,Loser P,Kurtz A", "journal": "Stem Cell Reports", "doi": "S2213-6711(20)30235-6", "created_at": "2021-09-30T08:23:06.291Z", "updated_at": "2021-09-30T08:23:06.291Z"}, {"id": 484, "pubmed_id": 32707486, "title": "Access to stem cell data and registration of pluripotent cell lines: The Human Pluripotent Stem Cell Registry (hPSCreg).", "year": 2020, "url": "http://doi.org/S1873-5061(20)30188-4", "authors": "Mah N,Seltmann S,Aran B,Steeg R,Dewender J,Bultjer N,Veiga A,Stacey GN,Kurtz A", "journal": "Stem Cell Res", "doi": "S1873-5061(20)30188-4", "created_at": "2021-09-30T08:23:12.642Z", "updated_at": "2021-09-30T08:23:12.642Z"}, {"id": 539, "pubmed_id": 31450190, "title": "A pathway for attesting ethical provenance of cell lines: Lessons from the European human pluripotent stem cell registry (hPSC(reg)).", "year": 2019, "url": "http://doi.org/S1873-5061(19)30169-2", "authors": "Isasi R,Namorado J,Mah N,Bultjer N,Kurtz A", "journal": "Stem Cell Res", "doi": "S1873-5061(19)30169-2", "created_at": "2021-09-30T08:23:18.885Z", "updated_at": "2021-09-30T08:23:18.885Z"}, {"id": 2394, "pubmed_id": 29320760, "title": "A Standard Nomenclature for Referencing and Authentication of Pluripotent Stem Cells.", "year": 2018, "url": "http://doi.org/S2213-6711(17)30531-3", "authors": "Kurtz A,Seltmann S,Bairoch A, et al", "journal": "Stem Cell Reports", "doi": "S2213-6711(17)30531-3", "created_at": "2021-09-30T08:26:54.035Z", "updated_at": "2021-09-30T08:26:54.035Z"}, {"id": 2396, "pubmed_id": 26400179, "title": "hPSCreg--the human pluripotent stem cell registry.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv963", "authors": "Seltmann S,Lekschas F,Muller R,Stachelscheid H,Bittner MS,Zhang W,Kidane L,Seriola A,Veiga A,Stacey G,Kurtz A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv963", "created_at": "2021-09-30T08:26:54.251Z", "updated_at": "2021-09-30T11:29:34.896Z"}], "licence-links": [{"licence-name": "HPSCreg Copyright Statement", "licence-id": 404, "link-id": 1194, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2502", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-07T12:40:19.000Z", "updated-at": "2021-12-06T10:47:46.523Z", "metadata": {"doi": "10.25504/FAIRsharing.1ky0cs", "name": "UK Data Service", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "help@ukdataservice.ac.uk"}], "homepage": "https://www.ukdataservice.ac.uk/get-data", "identifier": 2502, "description": "UK Data Service (UKDS) provides unified access to the UK's largest collection of social, economic and population data for research and teaching purposes covering a range of different disciplines. The majority of our data are fully anonymised, unless otherwise specified in the relevant online catalogue records, and are therefore not suitable for genealogical users or family historians. The UK Data Service is funded by the Economic and Social Research Council (ESRC) to meet the data needs of researchers, students and teachers from all sectors, including academia, central and local government, charities and foundations, independent research centres, think tanks, and business consultants and the commercial sector.", "abbreviation": "UKDS", "support-links": [{"url": "https://www.ukdataservice.ac.uk/about-us/contact.aspx", "name": "Contact", "type": "Contact form"}, {"url": "https://www.ukdataservice.ac.uk/help/faq.aspx", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ukdataservice.ac.uk/news-and-events.aspx", "name": "News", "type": "Forum"}, {"url": "https://www.ukdataservice.ac.uk/get-data/open-data.aspx", "name": "Open Data at UKDS", "type": "Help documentation"}, {"url": "https://www.ukdataservice.ac.uk/use-data.aspx", "name": "Training and Support", "type": "Training documentation"}, {"url": "https://twitter.com/UKDataService", "name": "Twitter", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://www.ukdataservice.ac.uk/get-data/key-data.aspx", "name": "Browse Key Data", "type": "data access"}, {"url": "https://www.ukdataservice.ac.uk/get-data/themes.aspx", "name": "Browse by Theme", "type": "data access"}, {"url": "https://www.ukdataservice.ac.uk/get-data/geography.aspx", "name": "Browse by Geography", "type": "data access"}, {"url": "https://www.ukdataservice.ac.uk/deposit-data.aspx", "name": "Deposit Data", "type": "data curation"}], "associated-tools": [{"url": "https://www.ukdataservice.ac.uk/get-data/explore-online.aspx", "name": "Tool Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010230", "name": "re3data:r3d100010230", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000984", "bsg-d000984"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Economic and Social History", "Demographics", "Social Science"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UK Data Service", "abbreviation": "UKDS", "url": "https://fairsharing.org/10.25504/FAIRsharing.1ky0cs", "doi": "10.25504/FAIRsharing.1ky0cs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UK Data Service (UKDS) provides unified access to the UK's largest collection of social, economic and population data for research and teaching purposes covering a range of different disciplines. The majority of our data are fully anonymised, unless otherwise specified in the relevant online catalogue records, and are therefore not suitable for genealogical users or family historians. The UK Data Service is funded by the Economic and Social Research Council (ESRC) to meet the data needs of researchers, students and teachers from all sectors, including academia, central and local government, charities and foundations, independent research centres, think tanks, and business consultants and the commercial sector.", "publications": [], "licence-links": [{"licence-name": "UK Data Service Data Access Policy", "licence-id": 807, "link-id": 1295, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2993", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-13T09:30:01.000Z", "updated-at": "2022-02-08T10:40:00.743Z", "metadata": {"doi": "10.25504/FAIRsharing.aa1f93", "name": "Western Regional Climate Center", "status": "ready", "contacts": [{"contact-name": "Timothy J. Brown", "contact-email": "Tim.Brown@dri.edu"}], "homepage": "https://wrcc.dri.edu/", "citations": [], "identifier": 2993, "description": "The Western Regional Climate Center (WRCC) provides historical and current climate data for the western United States. WRCC is one of six regional climate centers partnering with NOAA research institutes to promote climate research and data stewardship.", "abbreviation": "WRCC", "support-links": [{"url": "wrcc@dri.edu", "name": "General contact", "type": "Support email"}, {"url": "https://wrcc.dri.edu/About/citations.php", "name": "WRCC Suggested Citations", "type": "Help documentation"}, {"url": "https://wrcc.dri.edu/Climate/Education/acronyms.php", "name": "Climate & Weather Acronyms", "type": "Help documentation"}], "data-processes": [{"url": "https://wrcc.dri.edu/About/products.php", "name": "Download", "type": "data access"}, {"url": "https://wrcc.dri.edu/Projects/data.php", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010942", "name": "re3data:r3d100010942", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001499", "bsg-d001499"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Forecasting", "Temperature", "weather", "Wind"], "countries": ["United States"], "name": "FAIRsharing record for: Western Regional Climate Center", "abbreviation": "WRCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.aa1f93", "doi": "10.25504/FAIRsharing.aa1f93", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Western Regional Climate Center (WRCC) provides historical and current climate data for the western United States. WRCC is one of six regional climate centers partnering with NOAA research institutes to promote climate research and data stewardship.", "publications": [], "licence-links": [{"licence-name": "WRCC Historical Raw Data Access Information", "licence-id": 871, "link-id": 1670, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1795", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.995Z", "metadata": {"doi": "10.25504/FAIRsharing.d7jrv2", "name": "Catalog of Fishes Genus Database", "status": "uncertain", "contacts": [{"contact-name": "William N Eschmeyer", "contact-email": "weschmeyer@calacademy.org"}], "homepage": "https://www.calacademy.org/scientists/projects/catalog-of-fishes", "identifier": 1795, "description": "The Catalog of Fishes is the authoritative reference for taxonomic fish names, featuring a searchable on-line database.", "abbreviation": "CASGEN", "support-links": [{"url": "https://www.calacademy.org/scientists/catalog-of-fishes-help", "name": "How to search the Catalog of Fishes", "type": "Help documentation"}, {"url": "https://www.calacademy.org/scientists/catalog-of-fishes-glossary", "name": "Glossary of Fishes", "type": "Help documentation"}, {"url": "https://www.calacademy.org/scientists/catalog-of-fishes-classification", "name": "Classification of the Catalog of Fishes", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://researcharchive.calacademy.org/research/ichthyology/catalog/SpeciesByFamily.asp", "name": "browse", "type": "data access"}, {"url": "http://researcharchive.calacademy.org/research/ichthyology/catalog/fishcatmain.asp", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000255", "bsg-d000255"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Taxonomic classification", "Classification"], "taxonomies": ["Agnatha", "Chondrichthyes", "Gnathostomata", "Vertebrata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Catalog of Fishes Genus Database", "abbreviation": "CASGEN", "url": "https://fairsharing.org/10.25504/FAIRsharing.d7jrv2", "doi": "10.25504/FAIRsharing.d7jrv2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Catalog of Fishes is the authoritative reference for taxonomic fish names, featuring a searchable on-line database.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2954", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-20T10:12:56.000Z", "updated-at": "2022-02-08T10:39:35.606Z", "metadata": {"doi": "10.25504/FAIRsharing.8fe1d6", "name": "Vectorborne Disease Surveillance System", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "help@vectorsurv.org"}], "homepage": "https://vectorsurv.org/", "identifier": 2954, "description": "VectorSurv was formed as a partnership of the Mosquito and Vector Control Association of California, representing more than 60 local mosquito and vector control agencies in California; the California Department of Public Health; and the Davis Arbovirus Research and Training (DART) Lab at the University of California, Davis. In recent years, VectorSurv has expanded to include other states, and the system now serves California, Utah, New Jersey, Hawaii, North Carolina, Tennessee, and the U.S. territory of Guam.", "abbreviation": "VectorSurv", "year-creation": 2005, "data-processes": [{"url": "https://maps.vectorsurv.org/arbo", "name": "VectorSurv Maps", "type": "data access"}, {"url": "https://gateway.vectorsurv.org/", "name": "Login to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010196", "name": "re3data:r3d100010196", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001458", "bsg-d001458"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Monitoring"], "taxonomies": ["Arthropoda", "Aves", "Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Vectorborne Disease Surveillance System", "abbreviation": "VectorSurv", "url": "https://fairsharing.org/10.25504/FAIRsharing.8fe1d6", "doi": "10.25504/FAIRsharing.8fe1d6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VectorSurv was formed as a partnership of the Mosquito and Vector Control Association of California, representing more than 60 local mosquito and vector control agencies in California; the California Department of Public Health; and the Davis Arbovirus Research and Training (DART) Lab at the University of California, Davis. In recent years, VectorSurv has expanded to include other states, and the system now serves California, Utah, New Jersey, Hawaii, North Carolina, Tennessee, and the U.S. territory of Guam.", "publications": [], "licence-links": [{"licence-name": "California Vectorborne Disease Surveillance Data Policy", "licence-id": 93, "link-id": 542, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2986", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T11:22:50.000Z", "updated-at": "2021-12-06T10:48:27.937Z", "metadata": {"doi": "10.25504/FAIRsharing.dYSI4O", "name": "NICHD Data and Specimen Hub", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "supportdash@mail.nih.gov"}], "homepage": "https://dash.nichd.nih.gov/", "identifier": 2986, "description": "The Eunice Kennedy Shriver National Institute of Child Health and Human Development (NICHD) Data and Specimen Hub (DASH) is a centralized resource that allows researchers to share and access de-identified data from studies funded by NICHD. DASH also serves as a portal for requesting biospecimens from selected DASH studies.", "abbreviation": "NICHD DASH", "support-links": [{"url": "https://dash.nichd.nih.gov/feedback", "name": "Feedback (Login Required)", "type": "Contact form"}, {"url": "https://dash.nichd.nih.gov/resource/FAQs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://dash.nichd.nih.gov/resource/submission", "name": "Submission Resources", "type": "Help documentation"}, {"url": "https://dash.nichd.nih.gov/resource/request", "name": "Request Resources", "type": "Help documentation"}, {"url": "https://dash.nichd.nih.gov/resource/tutorial", "name": "DASH Tutorial", "type": "Training documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://dash.nichd.nih.gov/explore/study", "name": "Browse Studies", "type": "data access"}, {"url": "https://dash.nichd.nih.gov/explore/biospecimen", "name": "Browse Biospecimens", "type": "data access"}, {"url": "https://dash.nichd.nih.gov/explore/dataset", "name": "Browse Datasets", "type": "data access"}, {"url": "https://dash.nichd.nih.gov/explore/document", "name": "Browse Documents", "type": "data access"}, {"url": "https://dash.nichd.nih.gov/submission/dashboard", "name": "Submit Studies", "type": "data curation"}], "associated-tools": [{"url": "https://dash.nichd.nih.gov/resource/submission", "name": "Data Preparation Tool 4.2.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012915", "name": "re3data:r3d100012915", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_016314", "name": "SciCrunch:RRID:SCR_016314", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001492", "bsg-d001492"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Critical Care Medicine", "Social Science", "Medicine", "Data Governance", "Reproductive Health", "Clinical Studies", "Data Management", "Gynecology", "Musculoskeletal Medicine", "Pediatrics", "Pharmacology", "Life Science", "Biomedical Science", "Obstetrics"], "domains": ["Annotation", "Drug", "Behavior", "Sleep", "Safety study", "Biological sample", "Observation design", "Curated information", "Disease", "Data storage"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NICHD Data and Specimen Hub", "abbreviation": "NICHD DASH", "url": "https://fairsharing.org/10.25504/FAIRsharing.dYSI4O", "doi": "10.25504/FAIRsharing.dYSI4O", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Eunice Kennedy Shriver National Institute of Child Health and Human Development (NICHD) Data and Specimen Hub (DASH) is a centralized resource that allows researchers to share and access de-identified data from studies funded by NICHD. DASH also serves as a portal for requesting biospecimens from selected DASH studies.", "publications": [{"id": 2986, "pubmed_id": 29557977, "title": "DASH, the data and specimen hub of the National Institute of Child Health and Human Development.", "year": 2018, "url": "http://doi.org/10.1038/sdata.2018.46", "authors": "Hazra R,Tenney S,Shlionskaya A,Samavedam R,Baxter K,Ilekis J,Weck J,Willinger M,Grave G,Tsilou K,Songco D", "journal": "Sci Data", "doi": "10.1038/sdata.2018.46", "created_at": "2021-09-30T08:28:07.907Z", "updated_at": "2021-09-30T08:28:07.907Z"}], "licence-links": [{"licence-name": "NICHD Data and Specimen Hub Policy and Procedures", "licence-id": 577, "link-id": 906, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2510", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-15T05:11:28.000Z", "updated-at": "2021-11-24T13:13:01.645Z", "metadata": {"doi": "10.25504/FAIRsharing.hfm1sk", "name": "National Archive of Data on Arts and Culture", "status": "ready", "contacts": [{"contact-email": "icpsr-nadac@umich.edu"}], "homepage": "http://www.icpsr.umich.edu/NADAC/", "identifier": 2510, "description": "The National Archive of Data on Arts and Culture (NADAC) is a repository that facilitates research on arts and culture by acquiring data, particularly those funded by federal agencies and other organizations, and sharing those data with researchers, policymakers, people in the arts and culture field, and the general public.", "abbreviation": "NADAC", "support-links": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/NADAC/contact.html", "name": "General Help -- Contact NADAC Page", "type": "Help documentation"}], "data-processes": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/NADAC/deposit.html", "name": "Deposit Data", "type": "data access"}, {"url": "http://www.icpsr.umich.edu/icpsrweb/content/NADAC/data.html", "name": "Find Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-000992", "bsg-d000992"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Culture", "Humanities", "Social Science", "Art History", "Art", "Fine Arts"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Archive of Data on Arts and Culture", "abbreviation": "NADAC", "url": "https://fairsharing.org/10.25504/FAIRsharing.hfm1sk", "doi": "10.25504/FAIRsharing.hfm1sk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Archive of Data on Arts and Culture (NADAC) is a repository that facilitates research on arts and culture by acquiring data, particularly those funded by federal agencies and other organizations, and sharing those data with researchers, policymakers, people in the arts and culture field, and the general public.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2996", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-14T09:57:03.000Z", "updated-at": "2021-12-06T10:47:29.281Z", "metadata": {"name": "Center for Operational Oceanographic Products and Services", "status": "ready", "contacts": [{"contact-name": "Richard Edwing", "contact-email": "richard.edwing@noaa.gov"}], "homepage": "https://tidesandcurrents.noaa.gov/", "identifier": 2996, "description": "NOAA\u2019s Center for Operational Oceanographic Products and Services (CO-OPS) provides accurate, reliable, and timely tides, water levels, currents, and other coastal oceanographic and meteorological information. CO-OPs supports safe and efficient maritime commerce and transportation, help protect public health and safety, and promote robust, resilient coastal communities. CO-OPS maintains ocean observing infrastructure, including more than 200 permanent water level stations on the U.S. coasts and Great Lakes, an integrated system of real-time sensors concentrated in busy seaports, and temporary meters that collect observations for tidal current predictions. Through these systems, they provide historic and real-time data, forecasts, predictions, and scientific analyses that protect life, the economy, and the environment on the coast.", "abbreviation": "CO-OPS", "access-points": [{"url": "https://opendap.co-ops.nos.noaa.gov/axis/", "name": "CO-OPS SOAP Web Services", "type": "SOAP"}, {"url": "https://opendap.co-ops.nos.noaa.gov/erddap/index.html", "name": "CO-OPS ERDDAP", "type": "Other"}], "support-links": [{"url": "https://tidesandcurrents.noaa.gov/tac_news.html", "name": "News", "type": "Blog/News"}, {"url": "coops.webmaster@noaa.gov", "name": "Contact webmaster", "type": "Support email"}, {"url": "https://tidesandcurrents.noaa.gov/about.html", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://tidesandcurrents.noaa.gov/", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011030", "name": "re3data:r3d100011030", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001502", "bsg-d001502"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geography", "Meteorology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Forecasting", "Tide"], "countries": ["United States"], "name": "FAIRsharing record for: Center for Operational Oceanographic Products and Services", "abbreviation": "CO-OPS", "url": "https://fairsharing.org/fairsharing_records/2996", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NOAA\u2019s Center for Operational Oceanographic Products and Services (CO-OPS) provides accurate, reliable, and timely tides, water levels, currents, and other coastal oceanographic and meteorological information. CO-OPs supports safe and efficient maritime commerce and transportation, help protect public health and safety, and promote robust, resilient coastal communities. CO-OPS maintains ocean observing infrastructure, including more than 200 permanent water level stations on the U.S. coasts and Great Lakes, an integrated system of real-time sensors concentrated in busy seaports, and temporary meters that collect observations for tidal current predictions. Through these systems, they provide historic and real-time data, forecasts, predictions, and scientific analyses that protect life, the economy, and the environment on the coast.", "publications": [], "licence-links": [{"licence-name": "CO-OPS Privacy Policy", "licence-id": 148, "link-id": 1338, "relation": "undefined"}, {"licence-name": "CO-OPS Disclaimers", "licence-id": 147, "link-id": 1339, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2994", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-13T12:58:03.000Z", "updated-at": "2022-02-08T10:40:09.062Z", "metadata": {"doi": "10.25504/FAIRsharing.343b84", "name": "National Science Foundation Polar Ultraviolet Monitoring Network", "status": "ready", "contacts": [{"contact-name": "Germar Bernhard", "contact-email": "bernhard@biospherical.com", "contact-orcid": "0000-0002-1264-0756"}], "homepage": "http://uv.biospherical.com/", "citations": [], "identifier": 2994, "description": "The National Science Foundation (NSF) Ultraviolet (UV) Monitoring Network provides data on ozone depletion and the associated effects on terrestrial and marine systems. Data are collected from 7 sites in Antarctica, Argentina, United States, and Greenland. The network is providing data to researchers studying the effects of ozone depletion on terrestrial and marine biological systems. Network data is also used for the validation of satellite observations and for the verification of models describing the transfer of radiation through the atmosphere.", "abbreviation": "NSF UV Monitoring Network", "support-links": [{"url": "http://biospherical.com/index.php?option=com_flexicontact&Itemid=102", "type": "Contact form"}, {"url": "http://uv.biospherical.com/presentations.asp", "name": "Presentations and Posters", "type": "Help documentation"}, {"url": "http://uv.biospherical.com/student/default.asp", "name": "Student's Guide to Ozone and UV", "type": "Help documentation"}, {"url": "http://uv.biospherical.com/references.asp", "name": "Publications", "type": "Help documentation"}], "year-creation": 1987, "data-processes": [{"url": "http://uv.biospherical.com/login/datadownload.asp", "name": "FTP download individual data files", "type": "data access"}, {"url": "http://uv.biospherical.com/login/welcome.asp", "name": "Access Data/Report", "type": "data access"}, {"url": "http://uv.biospherical.com/login/login.asp", "name": "Registered User Login", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010963", "name": "re3data:r3d100010963", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001500", "bsg-d001500"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Geodesy", "Earth Science", "Atmospheric Science"], "domains": ["Radiation", "Climate", "Radiation effects"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ozone", "Ultraviolet Rays"], "countries": ["United States"], "name": "FAIRsharing record for: National Science Foundation Polar Ultraviolet Monitoring Network", "abbreviation": "NSF UV Monitoring Network", "url": "https://fairsharing.org/10.25504/FAIRsharing.343b84", "doi": "10.25504/FAIRsharing.343b84", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Science Foundation (NSF) Ultraviolet (UV) Monitoring Network provides data on ozone depletion and the associated effects on terrestrial and marine systems. Data are collected from 7 sites in Antarctica, Argentina, United States, and Greenland. The network is providing data to researchers studying the effects of ozone depletion on terrestrial and marine biological systems. Network data is also used for the validation of satellite observations and for the verification of models describing the transfer of radiation through the atmosphere.", "publications": [], "licence-links": [{"licence-name": "NSF UV Monitoring Network Acknowledgement of Data Use", "licence-id": 601, "link-id": 1290, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3163", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T13:31:02.000Z", "updated-at": "2022-02-08T10:34:30.703Z", "metadata": {"doi": "10.25504/FAIRsharing.42e508", "name": "National Aeronautics and Space Administration Image and Video Gallery", "status": "ready", "contacts": [], "homepage": "https://images.nasa.gov/", "citations": [], "identifier": 3163, "description": "The National Aeronautics and Space Administration (NASA) Image and Video Gallery is a catalog of the images, video and audio available from NASA. It provides a simple search interface as well as web services for accessing the resources.", "abbreviation": "NASA Image and Video Gallery", "access-points": [{"url": "https://images-api.nasa.gov", "name": "NASA Images and Video Gallery API", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://www.nasa.gov/content/submit-a-question-for-nasa", "name": "Contact Form", "type": "Contact form"}, {"url": "https://images.nasa.gov/docs/images.nasa.gov_api_docs.pdf", "name": "API Documentation (PDF)", "type": "Help documentation"}], "data-processes": [{"url": "https://images.nasa.gov/", "name": "Search & Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012503", "name": "re3data:r3d100012503", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001674", "bsg-d001674"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Aerospace Engineering", "Astrophysics and Astronomy"], "domains": ["Video", "Image"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Aeronautics and Space Administration Image and Video Gallery", "abbreviation": "NASA Image and Video Gallery", "url": "https://fairsharing.org/10.25504/FAIRsharing.42e508", "doi": "10.25504/FAIRsharing.42e508", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Aeronautics and Space Administration (NASA) Image and Video Gallery is a catalog of the images, video and audio available from NASA. It provides a simple search interface as well as web services for accessing the resources.", "publications": [], "licence-links": [{"licence-name": "NASA Media Usage Guidelines", "licence-id": 536, "link-id": 2048, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2563", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-14T13:50:54.000Z", "updated-at": "2021-12-06T10:47:56.442Z", "metadata": {"doi": "10.25504/FAIRsharing.4e2z82", "name": "JRC Data Catalogue", "status": "ready", "homepage": "http://data.jrc.ec.europa.eu/", "identifier": 2563, "description": "The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union. NB: The JRC Data Catalogue is also included in scientific publishers' submission systems as \"European Commission, Joint Research Centre (JRC)\".", "support-links": [{"url": "http://data.jrc.ec.europa.eu/contact", "name": "Contact us", "type": "Contact form"}], "year-creation": 2016, "data-processes": [{"url": "http://data.jrc.ec.europa.eu/dataset", "name": "Search Interface", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012593", "name": "re3data:r3d100012593", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001046", "bsg-d001046"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Engineering Science", "Social Science", "Natural Science", "Life Science", "Social and Behavioural Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: JRC Data Catalogue", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.4e2z82", "doi": "10.25504/FAIRsharing.4e2z82", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union. NB: The JRC Data Catalogue is also included in scientific publishers' submission systems as \"European Commission, Joint Research Centre (JRC)\".", "publications": [{"id": 2304, "pubmed_id": null, "title": "The JRC Multidisciplinary Research Data Infrastructure", "year": 2017, "url": "http://doi.org/10.1145/3151759.3151810", "authors": "Friis-Christensen, Anders; Perego, Andrea; Tsinaraki, Chrisa; Vaccari, Lorenzino", "journal": "iiWAS '17: Proceedings of the 19th International Conference on Information Integration and Web-based Applications & Services", "doi": "10.1145/3151759.3151810", "created_at": "2021-09-30T08:26:42.586Z", "updated_at": "2021-09-30T08:26:42.586Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2322, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2323, "relation": "undefined"}, {"licence-name": "European Commission Reuse and Copyright Notice", "licence-id": 301, "link-id": 2324, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1771", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:10.795Z", "metadata": {"doi": "10.25504/FAIRsharing.3rnawd", "name": "Signal Transduction Classification Database", "status": "deprecated", "contacts": [{"contact-email": "mchen@techfak.uni-bielefeld.de"}], "homepage": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/", "identifier": 1771, "description": "The signal molecules and pathways are classified and illustrated by graphs in this database.", "abbreviation": "STCDB", "support-links": [{"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/introduction.html", "type": "Help documentation"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/application.html", "type": "Help documentation"}], "associated-tools": [{"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/submit.html", "name": "submit"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/search.html", "name": "search"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/classification.html", "name": "browse"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/submit.html", "name": "submit"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/search.html", "name": "search"}, {"url": "http://bibiserv.techfak.uni-bielefeld.de/stcdb/classification.html", "name": "browse"}], "deprecation-date": "2021-9-19", "deprecation-reason": "This resource contains an organised set of web pages on signal transduction classification, but is not a database according to our definitions, therefore this record has been deprecated."}, "legacy-ids": ["biodbcore-000229", "bsg-d000229"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Small molecule", "Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Signal Transduction Classification Database", "abbreviation": "STCDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.3rnawd", "doi": "10.25504/FAIRsharing.3rnawd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The signal molecules and pathways are classified and illustrated by graphs in this database.", "publications": [{"id": 272, "pubmed_id": 14681456, "title": "STCDB: Signal Transduction Classification Database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh079", "authors": "Chen M., Lin S., Hofestaedt R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh079", "created_at": "2021-09-30T08:22:49.416Z", "updated_at": "2021-09-30T08:22:49.416Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2394", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:40:23.000Z", "updated-at": "2021-11-24T13:16:29.165Z", "metadata": {"doi": "10.25504/FAIRsharing.5ckyx7", "name": "BCCM/ITM Mycobacteria Collection", "status": "ready", "contacts": [{"contact-name": "BCCM/ITM", "contact-email": "BCCM.ITM@itg.be"}], "homepage": "http://bccm.belspo.be/about-us/bccm-itm", "identifier": 2394, "description": "BCCM/ITM harbours one the largest and most diverse collections of well-documented mycobacteria worldwide, including the TDR TB-Strain bank. BCCM/ITM is hosted by and sharing its research interests with the Mycobacteriology Unit at the Institute of Tropcial Medicine in Antwerp, dedicated in research to combat tuberculosis, Buruli ulcer and other mycobacterial diseases.", "abbreviation": "BCCM/ITM", "support-links": [{"url": "http://bccm.belspo.be/news", "name": "News", "type": "Blog/News"}, {"url": "http://bccm.belspo.be/webform/contact-us", "type": "Contact form"}, {"url": "http://bccm.belspo.be/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://bccm.belspo.be/webform/subscribe-bccm-newsletter", "name": "Newsletter", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/didyouknow", "name": "Videos", "type": "Help documentation"}, {"url": "http://bccm.belspo.be/labinstructions", "name": "Lab instruction videos", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://bccm.belspo.be/catalogues/itm-catalogue-search", "name": "Mycobacteria catalogue", "type": "data access"}, {"url": "http://bccm.belspo.be/services/deposit#public-deposit", "name": "Public deposit of mycobacteria", "type": "data curation"}, {"url": "http://bccm.belspo.be/search/node", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000875", "bsg-d000875"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Infectious Disease Medicine", "Life Science", "Tropical Medicine"], "domains": ["Environmental contaminant", "Disease"], "taxonomies": ["Mycobacterioides", "Mycobacterium", "Mycolicibacillus", "Mycolicibacter", "Mycolicibacterium"], "user-defined-tags": ["Drug resistance", "Lineages", "Mutants"], "countries": ["Belgium"], "name": "FAIRsharing record for: BCCM/ITM Mycobacteria Collection", "abbreviation": "BCCM/ITM", "url": "https://fairsharing.org/10.25504/FAIRsharing.5ckyx7", "doi": "10.25504/FAIRsharing.5ckyx7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCCM/ITM harbours one the largest and most diverse collections of well-documented mycobacteria worldwide, including the TDR TB-Strain bank. BCCM/ITM is hosted by and sharing its research interests with the Mycobacteriology Unit at the Institute of Tropcial Medicine in Antwerp, dedicated in research to combat tuberculosis, Buruli ulcer and other mycobacterial diseases.", "publications": [], "licence-links": [{"licence-name": "BCCM website legal notice", "licence-id": 63, "link-id": 577, "relation": "undefined"}, {"licence-name": "BCCM Material Transfer Agreement (MTA) 1.4", "licence-id": 62, "link-id": 578, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2565", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-07T20:30:15.000Z", "updated-at": "2021-09-30T11:37:38.083Z", "metadata": {"doi": "10.25504/FAIRsharing.vrs7vz", "name": "Turkish Journal of Veterinary Research", "status": "ready", "contacts": [{"contact-name": "Ebubekir Ceylan", "contact-email": "ebubekirceylan@gmail.com", "contact-orcid": "0000-0002-3993-3145"}], "homepage": "http://dergipark.gov.tr/tjvr", "identifier": 2565, "description": "The Turkish Journal of Veterinary Research (TJVR) is a biannual (March-April and November-December), open access, peer-reviewed veterinary medical journal that publishes manuscripts online in the general area of veterinary medical research.", "abbreviation": "TJVR", "year-creation": 2017}, "legacy-ids": ["biodbcore-001048", "bsg-d001048"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["Turkey"], "name": "FAIRsharing record for: Turkish Journal of Veterinary Research", "abbreviation": "TJVR", "url": "https://fairsharing.org/10.25504/FAIRsharing.vrs7vz", "doi": "10.25504/FAIRsharing.vrs7vz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Turkish Journal of Veterinary Research (TJVR) is a biannual (March-April and November-December), open access, peer-reviewed veterinary medical journal that publishes manuscripts online in the general area of veterinary medical research.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2755", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-07T14:17:11.000Z", "updated-at": "2021-11-24T13:19:59.610Z", "metadata": {"doi": "10.25504/FAIRsharing.hLKD2V", "name": "VizieR astronomical catalogue database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "cds-question@unistra.fr"}], "homepage": "http://vizier.unistra.fr/", "citations": [{"publication-id": 2264}], "identifier": 2755, "description": "VizieR is a library of published astronomical catalogues --tables and associated data-- with verified and enriched data, accessible via multiple interfaces. Query tools allow the user to select relevant data tables and to extract and format records matching given criteria. To be deposited within VizieR, data must be related to a publication in a refereed journal, either as tables or catalogues actually published, or as a paper describing the data and their context. VizieR is certified by the CoreTrustSeal. DOI: 10.26093/cds/vizier", "abbreviation": "VizieR", "support-links": [{"url": "http://vizier.u-strasbg.fr/#", "name": "Help and Tutorials", "type": "Help documentation"}, {"url": "http://vizier.u-strasbg.fr/vizier/submit.htx", "name": "How to Submit Data", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "http://vizier.u-strasbg.fr/viz-bin/VizieR", "name": "Advanced Search", "type": "data access"}, {"url": "http://vizier.u-strasbg.fr/vizier/welcome/vizierbrowse.gml?designation", "name": "Hierarchical browsing", "type": "data access"}, {"url": "http://vizier.u-strasbg.fr/vizier/welcome/vizierbrowse.gml?acro", "name": "Browse by abbreviation", "type": "data access"}, {"url": "http://vizier.u-strasbg.fr/vizier/welcome/vizierbrowse.gml?favorite", "name": "Browse by Popularity", "type": "data access"}, {"url": "http://vizier.u-strasbg.fr/vizier/welcome/vizierbrowse.gml?bigcat", "name": "View large catalogs", "type": "data access"}], "associated-tools": [{"url": "http://vizier.u-strasbg.fr/vizier/VizieR/vizmine/vizMine.gml", "name": "VizieR Mine"}, {"url": "http://vizier.u-strasbg.fr/vizier/kohonen.htx", "name": "Kohonen Map"}, {"url": "http://tapvizier.u-strasbg.fr/adql/", "name": "TAPVizieR"}, {"url": "http://vizier.u-strasbg.fr/vizier/sed/", "name": "Photometry Viewer"}, {"url": "http://cdsxmatch.u-strasbg.fr/", "name": "CDS Cross-match service"}, {"url": "http://cdsarc.u-strasbg.fr/assocdata/", "name": "VizieR images and spectra service"}, {"url": "http://vizier.u-strasbg.fr/vizier/doc/vizquery.htx", "name": "VizieR batch mode"}]}, "legacy-ids": ["biodbcore-001253", "bsg-d001253"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: VizieR astronomical catalogue database", "abbreviation": "VizieR", "url": "https://fairsharing.org/10.25504/FAIRsharing.hLKD2V", "doi": "10.25504/FAIRsharing.hLKD2V", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VizieR is a library of published astronomical catalogues --tables and associated data-- with verified and enriched data, accessible via multiple interfaces. Query tools allow the user to select relevant data tables and to extract and format records matching given criteria. To be deposited within VizieR, data must be related to a publication in a refereed journal, either as tables or catalogues actually published, or as a paper describing the data and their context. VizieR is certified by the CoreTrustSeal. DOI: 10.26093/cds/vizier", "publications": [{"id": 2264, "pubmed_id": null, "title": "The VizieR database of astronomical catalogues", "year": 2000, "url": "https://doi.org/10.1051/aas:2000169", "authors": "F. Ochsenbein, P. Bauer and J. Marcout", "journal": "Astron. Astrophys. Suppl. Ser. 143, 23-32", "doi": null, "created_at": "2021-09-30T08:26:35.449Z", "updated_at": "2021-09-30T08:26:35.449Z"}], "licence-links": [{"licence-name": "VizieR Rules of usage", "licence-id": 846, "link-id": 2140, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1859", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.301Z", "metadata": {"doi": "10.25504/FAIRsharing.hjybww", "name": "Ligand-Gated Ion Channel database", "status": "deprecated", "contacts": [{"contact-name": "Nicolas Le Novere", "contact-email": "lenov@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/compneur-srv/LGICdb/", "identifier": 1859, "description": "The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", "abbreviation": "LGICdb", "support-links": [{"url": "http://www.ebi.ac.uk/compneur-srv/LGICdb/FAQ.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1994, "data-processes": [{"url": "http://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb60.tar.gz", "name": "Download", "type": "data access"}, {"url": "http://www.ebi.ac.uk/compneur-srv/lgic/dynamic/search.jsp", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.ebi.ac.uk/fasta/lgicp.html", "name": "BLAST"}], "deprecation-date": "2016-12-30", "deprecation-reason": "The database has been official frozen and no longer being actively maintained."}, "legacy-ids": ["biodbcore-000320", "bsg-d000320"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science"], "domains": ["Ligand", "Ion channel activity", "Protein", "Sequence", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Ligand-Gated Ion Channel database", "abbreviation": "LGICdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.hjybww", "doi": "10.25504/FAIRsharing.hjybww", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", "publications": [{"id": 369, "pubmed_id": 9847222, "title": "The Ligand Gated Ion Channel Database.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.340", "authors": "Le Nov\u00e8re N., Changeux JP.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/27.1.340", "created_at": "2021-09-30T08:22:59.657Z", "updated_at": "2021-09-30T08:22:59.657Z"}, {"id": 851, "pubmed_id": 11125117, "title": "LGICdb: the ligand-gated ion channel database.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.294", "authors": "Le Novere N,Changeux JP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/29.1.294", "created_at": "2021-09-30T08:23:53.926Z", "updated_at": "2021-09-30T11:28:53.985Z"}, {"id": 1618, "pubmed_id": 16381861, "title": "LGICdb: a manually curated sequence database after the genomes.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj104", "authors": "Donizelli M,Djite MA,Le Novere N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj104", "created_at": "2021-09-30T08:25:21.302Z", "updated_at": "2021-09-30T11:29:16.227Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 491, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2331", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-21T11:04:32.000Z", "updated-at": "2021-11-24T13:19:32.685Z", "metadata": {"doi": "10.25504/FAIRsharing.nm7mt", "name": "MultiCellular DataBase", "status": "in_development", "contacts": [{"contact-name": "Samuel Friedman", "contact-email": "samuel.friedman@cammlab.org", "contact-orcid": "0000-0001-8003-6860"}], "homepage": "http://multicellds.org/MultiCellDB.php", "identifier": 2331, "description": "A database for storing MultiCellDS files. In the future, MultiCellDB will include a curated library of quality-controlled digital cell lines, starting with digital representations of breast cancer (MCF7, MCF10A, MDA-MB-231), lung cancer (HCC827, H1975), and metastatic colon cancer (HCT-116 and patient-derived lines) cell lines. The user interface and API are under active development.", "abbreviation": "MultiCellDB", "year-creation": 2016, "associated-tools": [{"url": "http://multicellds.org/SampleDataset", "name": "Example user interface"}]}, "legacy-ids": ["biodbcore-000807", "bsg-d000807"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Multicellular"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MultiCellular DataBase", "abbreviation": "MultiCellDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.nm7mt", "doi": "10.25504/FAIRsharing.nm7mt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database for storing MultiCellDS files. In the future, MultiCellDB will include a curated library of quality-controlled digital cell lines, starting with digital representations of breast cancer (MCF7, MCF10A, MDA-MB-231), lung cancer (HCC827, H1975), and metastatic colon cancer (HCT-116 and patient-derived lines) cell lines. The user interface and API are under active development.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3123", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-14T10:15:20.000Z", "updated-at": "2022-02-08T10:42:17.218Z", "metadata": {"doi": "10.25504/FAIRsharing.155022", "name": "Historical Climate Data, Canada", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "ec.services.climatiques-climate.services.ec@canada.ca"}], "homepage": "https://climate.weather.gc.ca/", "citations": [], "identifier": 3123, "description": "The Historical Climate Data is an access point to historical weather, climate data, and related information for numerous locations across Canada. Temperature, precipitation, degree days, relative humidity, wind speed and direction, monthly summaries, averages, extremes and Climate Normals, are some of the information you will find on the site.", "abbreviation": null, "access-points": [{"url": "https://weather.gc.ca/business/index_e.html#rss", "name": "ATOM Feeds and WeatherLink", "type": "Other"}], "support-links": [{"url": "https://climate.weather.gc.ca/contactus/contact_us_e.html", "type": "Contact form"}, {"url": "https://climate.weather.gc.ca/FAQ_e.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://climate.weather.gc.ca/about_the_data_index_e.html", "name": "About the Data", "type": "Help documentation"}], "data-processes": [{"url": "https://climate.weather.gc.ca/historical_data/search_historic_data_e.html", "name": "Search", "type": "data access"}, {"url": "https://climate.weather.gc.ca/prods_servs/engineering_e.html", "name": "Engineering Climate Datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010210", "name": "re3data:r3d100010210", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001633", "bsg-d001633"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Meteorology", "Earth Science", "Atmospheric Science"], "domains": ["Climate", "Radiation effects"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Cloud", "humidity", "precipitation", "Pressure", "Temperature", "Wind"], "countries": ["Canada"], "name": "FAIRsharing record for: Historical Climate Data, Canada", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.155022", "doi": "10.25504/FAIRsharing.155022", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Historical Climate Data is an access point to historical weather, climate data, and related information for numerous locations across Canada. Temperature, precipitation, degree days, relative humidity, wind speed and direction, monthly summaries, averages, extremes and Climate Normals, are some of the information you will find on the site.", "publications": [], "licence-links": [{"licence-name": "Licence Agreement for Use of Environment and Climate Change Canada Data", "licence-id": 487, "link-id": 308, "relation": "undefined"}, {"licence-name": "Government of Canada Terms and conditions", "licence-id": 361, "link-id": 309, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3031", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-18T12:58:47.000Z", "updated-at": "2021-12-06T10:47:30.956Z", "metadata": {"name": "Panel Study of Income Dynamics", "status": "ready", "contacts": [{"contact-name": "David S. Johnson", "contact-email": "johnsods@umich.edu"}], "homepage": "https://psidonline.isr.umich.edu/default.aspx#gsc.tab=0", "identifier": 3031, "description": "The Panel Study of Income Dynamics (PSID) is a longitudinal panel survey of American families, conducted by the Survey Research Center at the University of Michigan. The PSID measures economic, social, and health factors over the life course of families over multiple generations. Data have been collected from the same families and their descendants since 1968. It has been claimed that it is the world\u2019s longest running household panel survey.", "abbreviation": "PSID", "support-links": [{"url": "https://psidonline.isr.umich.edu/Guide/News.aspx#gsc.tab=0", "name": "News", "type": "Blog/News"}, {"url": "psidhelp@umich.edu", "name": "General contact", "type": "Support email"}, {"url": "https://psidonline.isr.umich.edu/Guide/FAQ.aspx#gsc.tab=0", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://psidonline.isr.umich.edu/VideoTutorial.aspx#gsc.tab=0", "name": "Video tutorials", "type": "Help documentation"}, {"url": "https://psidonline.isr.umich.edu/Guide/documents.aspx#gsc.tab=0", "name": "Questionnaires & Supporting Documentation", "type": "Help documentation"}, {"url": "https://psidonline.isr.umich.edu/Guide/default.aspx#gsc.tab=0", "type": "Help documentation"}], "year-creation": 1968, "data-processes": [{"url": "https://simba.isr.umich.edu/data/data.aspx#gsc.tab=0", "name": "Register to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011131", "name": "re3data:r3d100011131", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008976", "name": "SciCrunch:RRID:SCR_008976", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001539", "bsg-d001539"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Demographics", "Public Health", "Humanities and Social Science", "Social Psychology", "Social and Behavioural Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Childbearing", "Education", "Employment", "Income", "Marriage"], "countries": ["United States"], "name": "FAIRsharing record for: Panel Study of Income Dynamics", "abbreviation": "PSID", "url": "https://fairsharing.org/fairsharing_records/3031", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Panel Study of Income Dynamics (PSID) is a longitudinal panel survey of American families, conducted by the Survey Research Center at the University of Michigan. The PSID measures economic, social, and health factors over the life course of families over multiple generations. Data have been collected from the same families and their descendants since 1968. It has been claimed that it is the world\u2019s longest running household panel survey.", "publications": [], "licence-links": [{"licence-name": "Panel Study of Income Dynamics Privacy", "licence-id": 646, "link-id": 1929, "relation": "undefined"}, {"licence-name": "Panel Study of Income Dynamics Conditions of Use", "licence-id": 645, "link-id": 1930, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3032", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-18T16:28:15.000Z", "updated-at": "2021-12-06T10:47:31.017Z", "metadata": {"name": "Ozone Mapping & Profiler Suite", "status": "ready", "contacts": [{"contact-name": "Adam Hollidge", "contact-email": "Adam.N.Hollidge@nasa.gov"}], "homepage": "https://ozoneaq.gsfc.nasa.gov/omps/", "identifier": 3032, "description": "The Ozone Mapping and Profiler Suite measures the ozone layer in our upper atmosphere\u2014tracking the status of global ozone distributions, including the \u2018ozone hole.\u2019 It also monitors ozone levels in the troposphere, the lowest layer of our atmosphere. OMPS extends out 40-year long record ozone layer measurements while also providing improved vertical resolution compared to previous operational instruments. Closer to the ground, OMPS\u2019s measurements of harmful ozone improve air quality monitoring and when combined with cloud predictions; help to create the Ultraviolet Index, a guide to safe levels of sunlight exposure.", "abbreviation": "OMPS", "support-links": [{"url": "https://ozoneaq.gsfc.nasa.gov/omps/blog", "type": "Blog/News"}], "year-creation": 2011, "data-processes": [{"url": "https://ozoneaq.gsfc.nasa.gov/data/omps/", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011680", "name": "re3data:r3d100011680", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001540", "bsg-d001540"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ozone", "Troposphere", "Ultraviolet Rays"], "countries": ["United States"], "name": "FAIRsharing record for: Ozone Mapping & Profiler Suite", "abbreviation": "OMPS", "url": "https://fairsharing.org/fairsharing_records/3032", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ozone Mapping and Profiler Suite measures the ozone layer in our upper atmosphere\u2014tracking the status of global ozone distributions, including the \u2018ozone hole.\u2019 It also monitors ozone levels in the troposphere, the lowest layer of our atmosphere. OMPS extends out 40-year long record ozone layer measurements while also providing improved vertical resolution compared to previous operational instruments. Closer to the ground, OMPS\u2019s measurements of harmful ozone improve air quality monitoring and when combined with cloud predictions; help to create the Ultraviolet Index, a guide to safe levels of sunlight exposure.", "publications": [{"id": 2994, "pubmed_id": null, "title": "OMPS Limb Profiler instrument performance assessment", "year": 2014, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2013JD020482", "authors": "Jaross, G., P. K. Bhartia, G. Chen, M. Kowitt, M. Haken, Z. Chen, P. Xu, J. Warner, and T. Kelly", "journal": "J. Geophys. Res. Atmos.", "doi": null, "created_at": "2021-09-30T08:28:09.176Z", "updated_at": "2021-09-30T08:28:09.176Z"}, {"id": 2995, "pubmed_id": null, "title": "Postlaunch performance of the Suomi National Polar\u2010orbiting Partnership Ozone Mapping and Profiler Suite (OMPS) nadir sensors", "year": 2014, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2013JD020472", "authors": "Seftor, C.J., G. Jaross, M. Kowitt, M. Haken, J. Li, L.E. Flynn", "journal": "J. Geophys. Res.", "doi": null, "created_at": "2021-09-30T08:28:09.291Z", "updated_at": "2021-09-30T08:28:09.291Z"}, {"id": 2996, "pubmed_id": null, "title": "Measuring the Antarctic ozone hole with the new Ozone Mapping and Profiler Suite (OMPS)", "year": 2013, "url": "https://www.atmos-chem-phys.net/14/2353/2014/", "authors": "Kramarova, N., E. Nash, P. Newman, P. K. Bhartia, R. McPeters, D. Rault, C. Seftor, P. Q. Xu, and G. Labow", "journal": "Atmos. Chem. Phys.", "doi": null, "created_at": "2021-09-30T08:28:09.408Z", "updated_at": "2021-09-30T08:28:09.408Z"}, {"id": 2997, "pubmed_id": null, "title": "First results from a rotational Raman scattering cloud algorithm applied to the Suomi National Polar-orbiting Partnership (NPP) Ozone Mapping and Profiler Suite (OMPS) Nadir Mapper", "year": 2014, "url": "https://www.atmos-meas-tech.net/7/2897/2014/", "authors": "Vasilkov, A., Joiner, J., and Seftor, C.", "journal": "Atmos. Meas. Tech.", "doi": null, "created_at": "2021-09-30T08:28:09.566Z", "updated_at": "2021-09-30T08:28:09.566Z"}, {"id": 2998, "pubmed_id": null, "title": "First observations of SO2 from the satellite Suomi NPP OMPS: Widespread air pollution events over China", "year": 2013, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/grl.50952", "authors": "Yang, K., R. R. Dickerson, S. A. Carn, C. Ge, and J. Wang", "journal": "Geophys. Res. Lett.", "doi": null, "created_at": "2021-09-30T08:28:09.683Z", "updated_at": "2021-09-30T08:28:09.683Z"}, {"id": 2999, "pubmed_id": null, "title": "Advancing measurements of tropospheric NO2 from space: New algorithm and first global results from OMPS", "year": 2014, "url": "https://doi.org/10.1002/2014GL060136", "authors": "Yang, K., S. A. Carn, C. Ge, J. Wang, and R. R. Dickerson", "journal": "Geophys. Res. Lett.", "doi": null, "created_at": "2021-09-30T08:28:09.791Z", "updated_at": "2021-09-30T11:28:39.262Z"}], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 1931, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2486", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-18T21:25:13.000Z", "updated-at": "2021-12-06T10:49:18.851Z", "metadata": {"doi": "10.25504/FAIRsharing.v4mara", "name": "Data Sharing for Demographic Research", "status": "ready", "contacts": [{"contact-name": "John Marcotte", "contact-email": "jemarcot@umich.edu"}], "homepage": "http://dsdr.icpsr.umich.edu/", "identifier": 2486, "description": "Data Sharing for Demographic Research (DSDR) supports the demographic community by disseminating, archiving, and preserving data relevant for population studies. The mission of DSDR is to serve as a locus of information for researchers who collect, analyze, and distribute primary data as well as researchers who analyze secondary data. DSDR aims to foster interdisciplinary collaborations between Demography and other disciplines. DSDR is located within ICPSR and supported by the Population Dynamics Branch (PDB) of the Eunice Kennedy Shriver National Institute of Child Health and Human Development (U24 HD048404).", "abbreviation": "DSDR", "support-links": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/DSDR/help.html", "name": "Help FAQs and User Support", "type": "Help documentation"}], "data-processes": [{"url": "http://www.icpsr.umich.edu/icpsrweb/content/DSDR/deposit.html", "name": "Deposit Data", "type": "data curation"}, {"url": "http://www.icpsr.umich.edu/icpsrweb/DSDR/access/index.jsp", "name": "Find Data", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/DSDR/access/index.jsp", "name": "Search Holdings", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010256", "name": "re3data:r3d100010256", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000968", "bsg-d000968"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Demographics", "Social Science", "Population Dynamics", "Data Management"], "domains": ["Behavior", "Curated information"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Data Sharing for Demographic Research", "abbreviation": "DSDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.v4mara", "doi": "10.25504/FAIRsharing.v4mara", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data Sharing for Demographic Research (DSDR) supports the demographic community by disseminating, archiving, and preserving data relevant for population studies. The mission of DSDR is to serve as a locus of information for researchers who collect, analyze, and distribute primary data as well as researchers who analyze secondary data. DSDR aims to foster interdisciplinary collaborations between Demography and other disciplines. DSDR is located within ICPSR and supported by the Population Dynamics Branch (PDB) of the Eunice Kennedy Shriver National Institute of Child Health and Human Development (U24 HD048404).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2793", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-15T19:19:11.000Z", "updated-at": "2021-12-06T10:49:22.177Z", "metadata": {"doi": "10.25504/FAIRsharing.WDGf1A", "name": "Arctic Data Archive System", "status": "ready", "contacts": [{"contact-name": "ADS General Contact", "contact-email": "ads-info@nipr.ac.jp"}], "homepage": "https://ads.nipr.ac.jp/portal/index.action", "identifier": 2793, "description": "The Arctic Data Archive System is a collection of many observational (atmosphere, ocean, terrestrial, and ecology) and model simulation datasets, and promote utilization of these datasets. ADS is the central repository of archived data on Arctic research in Japan.", "abbreviation": "ADS", "support-links": [{"url": "https://ads.nipr.ac.jp/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ads.nipr.ac.jp/about-us", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/ADS_NIPR", "name": "@ADS_NIPR", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://ads.nipr.ac.jp/data/search/map", "name": "Map search", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/data/search/list/1", "name": "Metadata Catalog", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/portal/kiwa/DataDownload.action", "name": "Download", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/routeSearch/#/top", "name": "Sea Route Search", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/real-time-monitors", "name": "Realtime Monitors", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/vision-contents", "name": "VISION", "type": "data access"}, {"url": "https://ads.nipr.ac.jp/vishop/#/monitor", "name": "VISHOP", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012463", "name": "re3data:r3d100012463", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001292", "bsg-d001292"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Meteorology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Arctic", "Cryosphere", "Paleoclimatology"], "countries": ["Japan"], "name": "FAIRsharing record for: Arctic Data Archive System", "abbreviation": "ADS", "url": "https://fairsharing.org/10.25504/FAIRsharing.WDGf1A", "doi": "10.25504/FAIRsharing.WDGf1A", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arctic Data Archive System is a collection of many observational (atmosphere, ocean, terrestrial, and ecology) and model simulation datasets, and promote utilization of these datasets. ADS is the central repository of archived data on Arctic research in Japan.", "publications": [], "licence-links": [{"licence-name": "ADS Privacy Policy", "licence-id": 11, "link-id": 2106, "relation": "undefined"}, {"licence-name": "ADS Data Policy", "licence-id": 10, "link-id": 2107, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1632", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-16T10:54:51.941Z", "metadata": {"doi": "10.25504/FAIRsharing.s9ztmd", "name": "Polbase", "status": "ready", "contacts": [{"contact-name": "Administrators", "contact-email": "ebase-admin@neb.com"}], "homepage": "http://polbase.neb.com", "citations": [], "identifier": 1632, "description": "Polbase is an open and searchable database providing information from published and unpublished sources on the biochemical, genetic, and structural information of DNA polymerases.", "abbreviation": "Polbase", "support-links": [{"url": "https://polbase.neb.com/common_questions/index", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://en.wikipedia.org/wiki/Polbase", "type": "Wikipedia"}], "year-creation": 2010, "data-processes": [{"name": "continuous release", "type": "data release"}, {"name": "web interface", "type": "data access"}, {"name": "web service (JSON and XML)", "type": "data access"}, {"url": "https://polbase.neb.com/advanced_search", "name": "search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000088", "bsg-d000088"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biochemistry", "Genetics", "Life Science"], "domains": ["Protein structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Polbase", "abbreviation": "Polbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.s9ztmd", "doi": "10.25504/FAIRsharing.s9ztmd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Polbase is an open and searchable database providing information from published and unpublished sources on the biochemical, genetic, and structural information of DNA polymerases.", "publications": [{"id": 2280, "pubmed_id": 21993301, "title": "Polbase: a repository of biochemical, genetic and structural information about DNA polymerases.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr847", "authors": "Langhorst BW,Jack WE,Reha-Krantz L,Nichols NM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr847", "created_at": "2021-09-30T08:26:37.738Z", "updated_at": "2021-09-30T11:29:32.286Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3079", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-21T10:28:04.000Z", "updated-at": "2021-12-06T10:48:34.950Z", "metadata": {"doi": "10.25504/FAIRsharing.fNXAq5", "name": "ETH Z\u00fcrich Research Collection", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "research-collection@library.ethz.ch"}], "homepage": "https://www.research-collection.ethz.ch/", "identifier": 3079, "description": "The Research Collection provides a comprehensive database of scholarly publications produced at ETH Zurich (science and technology university).", "abbreviation": "ETH Zurich Research Collection", "access-points": [{"url": "http://research-collection.ethz.ch/oai/", "name": "OAI-PMH endpoint", "type": "Other"}], "support-links": [{"url": "https://www.research-collection.ethz.ch/", "name": "News & Recently Added", "type": "Blog/News"}, {"url": "https://documentation.library.ethz.ch/display/RC", "name": "Research Collection Manual", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.research-collection.ethz.ch/leitzahl-search", "name": "Browse by Organisational Unit", "type": "data access"}, {"url": "https://www.research-collection.ethz.ch/community-list", "name": "Browse by Publication Type", "type": "data access"}, {"url": "https://www.research-collection.ethz.ch/search-filter?field=author", "name": "Filter by Author / Creator", "type": "data access"}, {"url": "https://www.research-collection.ethz.ch/submissions", "name": "Submit your Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012557", "name": "re3data:r3d100012557", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001587", "bsg-d001587"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Environmental Science", "Health Science", "Architecture", "Humanities and Social Science", "Civil Engineering", "Earth Science", "Mathematics", "Life Science", "Computer Science", "Physics", "Bioengineering", "Political Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["institutional repository"], "countries": ["Switzerland"], "name": "FAIRsharing record for: ETH Z\u00fcrich Research Collection", "abbreviation": "ETH Zurich Research Collection", "url": "https://fairsharing.org/10.25504/FAIRsharing.fNXAq5", "doi": "10.25504/FAIRsharing.fNXAq5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Research Collection provides a comprehensive database of scholarly publications produced at ETH Zurich (science and technology university).", "publications": [{"id": 732, "pubmed_id": null, "title": "Die Research Collection der ETH Z\u00fcrich", "year": 2018, "url": "http://doi.org/10.1515/abitech-2018-3003", "authors": "Barbara Hirschmann", "journal": "ABI Technik", "doi": "10.1515/abitech-2018-3003", "created_at": "2021-09-30T08:23:40.645Z", "updated_at": "2021-09-30T08:23:40.645Z"}], "licence-links": [{"licence-name": "ETH Zurich's open-access policy", "licence-id": 293, "link-id": 2310, "relation": "undefined"}, {"licence-name": "ETH Zurich Research Collection Terms of Use", "licence-id": 292, "link-id": 2311, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3190", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-14T13:23:47.000Z", "updated-at": "2021-12-06T10:47:38.438Z", "metadata": {"name": "Planetary Data System", "status": "ready", "contacts": [{"contact-name": "Timothy McClanahan", "contact-email": "timothy.p.mcclanahan@nasa.gov"}], "homepage": "https://pds.jpl.nasa.gov/", "identifier": 3190, "description": "The Planetary Data System (PDS) is a long-term archive of digital data products returned from NASA's planetary missions, and from other kinds of flight and ground-based data acquisitions, including laboratory experiments. But it is more than just a facility - the archive is actively managed by planetary scientists to help ensure its usefulness and usability by the world wide planetary science community.", "abbreviation": "PDS", "support-links": [{"url": "https://pds.jpl.nasa.gov/datasearch/subscription-service/top.cfm", "name": "Subscription Service", "type": "Mailing list"}, {"url": "https://pds.jpl.nasa.gov/home/about/", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://pds.jpl.nasa.gov/datasearch/data-search/", "name": "Search", "type": "data access"}, {"url": "https://pds.jpl.nasa.gov/datasearch/keyword-search/", "name": "Keyword Search", "type": "data access"}, {"url": "https://opus.pds-rings.seti.org/opus", "name": "OPUS Search", "type": "data access"}, {"url": "https://pds.jpl.nasa.gov/datasearch/subscription-service/SS-Release.shtml", "name": "Download Releases", "type": "data release"}], "associated-tools": [{"url": "https://pds.jpl.nasa.gov/tools/tool-registry/", "name": "PDS Tool Registry"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010121", "name": "re3data:r3d100010121", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001701", "bsg-d001701"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Astrophysics and Astronomy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["planetary science"], "countries": ["United States"], "name": "FAIRsharing record for: Planetary Data System", "abbreviation": "PDS", "url": "https://fairsharing.org/fairsharing_records/3190", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Planetary Data System (PDS) is a long-term archive of digital data products returned from NASA's planetary missions, and from other kinds of flight and ground-based data acquisitions, including laboratory experiments. But it is more than just a facility - the archive is actively managed by planetary scientists to help ensure its usefulness and usability by the world wide planetary science community.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2567", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T14:10:53.000Z", "updated-at": "2021-11-24T13:17:33.744Z", "metadata": {"doi": "10.25504/FAIRsharing.1v9vsL", "name": "i5k Workspace@NAL", "status": "ready", "homepage": "https://i5k.nal.usda.gov/", "identifier": 2567, "description": "The i5k Workspace@NAL has two main goals. First, it aims to help the i5k \u2018data producers\u2019, in particular \u2018orphaned\u2019 groups without the technical or financial means for genome hosting, at the interface of sequence retrieval and analysis. Specifically, it aims to help them access, visualize, curate and disseminate data once it has been received from the sequencing center. Second, it aims to provide a unified framework for \u2018data consumers\u2019 to retrieve relevant genomic information from data providers.", "abbreviation": "i5k Workspace@NAL", "support-links": [{"url": "https://i5k.nal.usda.gov/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://i5k.nal.usda.gov/mapping-rna-seq-reads-manual-curation-faq", "name": "Mapping RNA-Seq reads for manual curation FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://i5k.nal.usda.gov/about-us", "name": "About", "type": "Help documentation"}, {"url": "https://i5k.nal.usda.gov/manual-curation-overview", "name": "Annotation Guidelines", "type": "Training documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://i5k.nal.usda.gov/content/sharing-files-us", "name": "Share Data", "type": "data curation"}, {"url": "https://i5k.nal.usda.gov/how-upload-files-cyverse", "name": "Upload Data", "type": "data curation"}, {"url": "https://i5k.nal.usda.gov/content/data-downloads", "name": "Download Data", "type": "data access"}, {"url": "https://i5k.nal.usda.gov/species", "name": "Browse Species", "type": "data access"}], "associated-tools": [{"url": "https://i5k.nal.usda.gov/blast", "name": "BLAST"}, {"url": "https://i5k.nal.usda.gov/available-genome-browsers", "name": "JBrowse/Apollo"}, {"url": "https://i5k.nal.usda.gov/webapp/hmmer/", "name": "HMMER beta"}, {"url": "https://i5k.nal.usda.gov/webapp/clustal", "name": "Clustal beta"}]}, "legacy-ids": ["biodbcore-001050", "bsg-d001050"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science", "Biology"], "domains": [], "taxonomies": ["Arthropoda"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: i5k Workspace@NAL", "abbreviation": "i5k Workspace@NAL", "url": "https://fairsharing.org/10.25504/FAIRsharing.1v9vsL", "doi": "10.25504/FAIRsharing.1v9vsL", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The i5k Workspace@NAL has two main goals. First, it aims to help the i5k \u2018data producers\u2019, in particular \u2018orphaned\u2019 groups without the technical or financial means for genome hosting, at the interface of sequence retrieval and analysis. Specifically, it aims to help them access, visualize, curate and disseminate data once it has been received from the sequencing center. Second, it aims to provide a unified framework for \u2018data consumers\u2019 to retrieve relevant genomic information from data providers.", "publications": [{"id": 814, "pubmed_id": 25332403, "title": "The i5k Workspace@NAL--enabling genomic data access, visualization and curation of arthropod genomes.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku983", "authors": "Poelchau M,Childers C,Moore G,Tsavatapalli V,Evans J,Lee CY,Lin H,Lin JW,Hackett K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku983", "created_at": "2021-09-30T08:23:49.793Z", "updated_at": "2021-09-30T11:28:51.876Z"}], "licence-links": [{"licence-name": "Fort Lauderdale Principles", "licence-id": 322, "link-id": 24, "relation": "undefined"}, {"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 25, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2759", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-22T05:32:49.000Z", "updated-at": "2021-12-06T10:48:00.512Z", "metadata": {"doi": "10.25504/FAIRsharing.5Pze7l", "name": "GlyTouCan", "status": "ready", "contacts": [{"contact-name": "Kiyoko F. Aoki-Kinoshita", "contact-email": "kkiyoko@soka.ac.jp"}], "homepage": "https://glytoucan.org", "citations": [{"doi": "10.1093/glycob/cwx066", "pubmed-id": 28922742, "publication-id": 2317}], "identifier": 2759, "description": "The international glycan structure repository for glycans published in the literature. Any glycan structure, ranging in resolution from monosaccharide composition to fully defined structures can be registered and have an accession number assigned as long as there are no inconsistencies in the structure.", "abbreviation": "GTC", "support-links": [{"url": "glytoucan@gmail.com", "name": "GlyTouCan Support", "type": "Support email"}, {"url": "https://twitter.com/glytoucan", "name": "@glytoucan", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://glytoucan.org/Structures/graphical", "name": "Graphical Search", "type": "data access"}, {"url": "https://glytoucan.org/Structures/structureSearch", "name": "Text Search", "type": "data access"}, {"url": "https://glytoucan.org/Motifs/search", "name": "Browse by Motif", "type": "data access"}, {"url": "https://glytoucan.org/Structures", "name": "Browse Glycan List", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012388", "name": "re3data:r3d100012388", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001257", "bsg-d001257"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology", "Glycomics"], "domains": ["Molecular structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: GlyTouCan", "abbreviation": "GTC", "url": "https://fairsharing.org/10.25504/FAIRsharing.5Pze7l", "doi": "10.25504/FAIRsharing.5Pze7l", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The international glycan structure repository for glycans published in the literature. Any glycan structure, ranging in resolution from monosaccharide composition to fully defined structures can be registered and have an accession number assigned as long as there are no inconsistencies in the structure.", "publications": [{"id": 2317, "pubmed_id": 28922742, "title": "GlyTouCan: an accessible glycan structure repository.", "year": 2017, "url": "http://doi.org/10.1093/glycob/cwx066", "authors": "Tiemeyer M,Aoki K,Paulson J,Cummings RD,York WS,Karlsson NG,Lisacek F,Packer NH,Campbell MP,Aoki NP,Fujita A,Matsubara M,Shinmachi D,Tsuchiya S,Yamada I,Pierce M,Ranzinger R,Narimatsu H,Aoki-Kinoshita KF", "journal": "Glycobiology", "doi": "10.1093/glycob/cwx066", "created_at": "2021-09-30T08:26:44.301Z", "updated_at": "2021-09-30T08:26:44.301Z"}, {"id": 2318, "pubmed_id": 26476458, "title": "GlyTouCan 1.0--The international glycan structure repository.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1041", "authors": "Aoki-Kinoshita K,Agravat S,Aoki NP,Arpinar S,Cummings RD,Fujita A,Fujita N,Hart GM,Haslam SM,Kawasaki T,Matsubara M,Moreman KW,Okuda S,Pierce M,Ranzinger R,Shikanai T,Shinmachi D,Solovieva E,Suzuki Y,Tsuchiya S,Yamada I,York WS,Zaia J,Narimatsu H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1041", "created_at": "2021-09-30T08:26:44.458Z", "updated_at": "2021-09-30T11:29:33.027Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 8, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1641", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:00.969Z", "metadata": {"doi": "10.25504/FAIRsharing.5rb3fk", "name": "ModelDB", "status": "ready", "contacts": [{"contact-name": "Robert McDougal", "contact-email": "curator@modeldb.science"}], "homepage": "http://senselab.med.yale.edu/modeldb", "citations": [{"doi": "10.1007/s10827-016-0623-7", "pubmed-id": 27629590, "publication-id": 1191}], "identifier": 1641, "description": "ModelDB provides an accessible location for storing and efficiently retrieving computational neuroscience models. A ModelDB entry contains a model's source code, concise description, and a citation of the article that published it. Models can be coded in any language for any environment. Model code can be viewed before downloading and browsers can be set to auto-launch the models.", "abbreviation": "ModelDB", "support-links": [{"url": "curator@modeldb.science", "name": "modelDB curators", "type": "Support email"}, {"url": "https://senselab.med.yale.edu/modeldb/guide2.html", "type": "Help documentation"}, {"url": "https://twitter.com/SenseLabProject", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "access to historical files available for most resources", "type": "data versioning"}, {"url": "https://senselab.med.yale.edu/modeldb/searchFulltext.cshtml", "name": "search", "type": "data access"}], "associated-tools": [{"url": "https://senselab.med.yale.edu/SimToolDB/", "name": "SimToolDB"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011330", "name": "re3data:r3d100011330", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007271", "name": "SciCrunch:RRID:SCR_007271", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000097", "bsg-d000097"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Computational Biology", "Life Science"], "domains": ["Mathematical model", "Network model", "Neuron", "Modeling and simulation", "Ion channel activity", "Behavior", "Software"], "taxonomies": ["All"], "user-defined-tags": ["Multi-scale model"], "countries": ["United States"], "name": "FAIRsharing record for: ModelDB", "abbreviation": "ModelDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.5rb3fk", "doi": "10.25504/FAIRsharing.5rb3fk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ModelDB provides an accessible location for storing and efficiently retrieving computational neuroscience models. A ModelDB entry contains a model's source code, concise description, and a citation of the article that published it. Models can be coded in any language for any environment. Model code can be viewed before downloading and browsers can be set to auto-launch the models.", "publications": [{"id": 1191, "pubmed_id": 27629590, "title": "Twenty years of ModelDB and beyond: building essential modeling tools for the future of neuroscience", "year": 2016, "url": "http://doi.org/10.1007/s10827-016-0623-7", "authors": "McDougal RA, Morse TM, Carnevale T, Marenco L, Wang R, Migliore M, Miller PL, Shepherd GM, Hines ML", "journal": "J Comput Neurosci", "doi": "10.1007/s10827-016-0623-7", "created_at": "2021-09-30T08:24:32.424Z", "updated_at": "2021-09-30T08:24:32.424Z"}, {"id": 1542, "pubmed_id": 15218350, "title": "ModelDB: A Database to Support Computational Neuroscience.", "year": 2004, "url": "http://doi.org/10.1023/B:JCNS.0000023869.22017.2e", "authors": "Hines ML,Morse T,Migliore M,Carnevale NT,Shepherd GM", "journal": "J Comput Neurosci", "doi": "10.1023/B:JCNS.0000023869.22017.2e", "created_at": "2021-09-30T08:25:12.696Z", "updated_at": "2021-09-30T08:25:12.696Z"}, {"id": 1544, "pubmed_id": 8930855, "title": "ModelDB: an environment for running and storing computational models and their results applied to neuroscience.", "year": 1996, "url": "http://doi.org/10.1136/jamia.1996.97084512", "authors": "Peterson BE,Healy MD,Nadkarni PM,Miller PL,Shepherd GM", "journal": "J Am Med Inform Assoc", "doi": "10.1136/jamia.1996.97084512", "created_at": "2021-09-30T08:25:12.910Z", "updated_at": "2021-09-30T08:25:12.910Z"}, {"id": 1561, "pubmed_id": 15055399, "title": "ModelDB: making models publicly accessible to support computational neuroscience.", "year": 2004, "url": "http://doi.org/10.1385/NI:1:1:135", "authors": "Migliore M,Morse TM,Davison AP,Marenco L,Shepherd GM,Hines ML", "journal": "Neuroinformatics", "doi": "10.1385/NI:1:1:135", "created_at": "2021-09-30T08:25:15.078Z", "updated_at": "2021-09-30T08:25:15.078Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3062", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-20T10:52:53.000Z", "updated-at": "2022-02-08T10:41:48.347Z", "metadata": {"doi": "10.25504/FAIRsharing.e0b9db", "name": "HALO Database", "status": "ready", "contacts": [{"contact-name": "Klaus-Dirk Gottschaldt", "contact-email": "Klaus-Dirk.Gottschaldt@dlr.de", "contact-orcid": "0000-0002-2046-6137"}], "homepage": "https://halo-db.pa.op.dlr.de/", "identifier": 3062, "description": "HALO is a Gulfstream G-550 aircraft specifically equipped with numerous in situ and remote sensing instruments. It allows to study important scientific questions with regard to atmospheric chemistry, atmospheric physics, climate research, satellite validations, and Earth system observations. It enables the university-based atmospheric and Earth system research community in Germany in partnership with colleagues from the national research centers to perform state-of-the-art science utilizing HALO as a unique infrastructure.", "abbreviation": "HALO-DB", "support-links": [{"url": "https://halo-db.pa.op.dlr.de/news/2015July", "name": "News", "type": "Blog/News"}, {"url": "halo-db@dlr.de", "name": "General contact", "type": "Support email"}, {"url": "https://halo-db.pa.op.dlr.de/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://halo-db.pa.op.dlr.de/conventions", "name": "Conventions", "type": "Help documentation"}, {"url": "https://halo-db.pa.op.dlr.de/glossary", "name": "Glossary", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://halo-db.pa.op.dlr.de/search", "name": "Search", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/list/categories", "name": "Browse by categories", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/list/data_sources", "name": "Browse by data sources", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/list/institutes", "name": "Browse by institutes", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/list/missions", "name": "Browse by missions", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/list/parameters", "name": "Browse All Parameters", "type": "data access"}, {"url": "https://halo-db.pa.op.dlr.de/upload", "name": "Data Upload", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011958", "name": "re3data:r3d100011958", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001570", "bsg-d001570"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Meteorology", "Geodesy", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cloud", "earth observation", "Satellite Data"], "countries": ["Germany"], "name": "FAIRsharing record for: HALO Database", "abbreviation": "HALO-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.e0b9db", "doi": "10.25504/FAIRsharing.e0b9db", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HALO is a Gulfstream G-550 aircraft specifically equipped with numerous in situ and remote sensing instruments. It allows to study important scientific questions with regard to atmospheric chemistry, atmospheric physics, climate research, satellite validations, and Earth system observations. It enables the university-based atmospheric and Earth system research community in Germany in partnership with colleagues from the national research centers to perform state-of-the-art science utilizing HALO as a unique infrastructure.", "publications": [], "licence-links": [{"licence-name": "HALO-DB Terms & Conditions", "licence-id": 375, "link-id": 1763, "relation": "undefined"}, {"licence-name": "HALO-DB Privacy Policy", "licence-id": 374, "link-id": 1764, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3241", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-11T13:34:54.000Z", "updated-at": "2021-11-24T13:20:20.028Z", "metadata": {"name": "Texas State University Digital Collections Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "digitalcollections@txstate.edu"}], "homepage": "https://digital.library.txstate.edu/", "citations": [], "identifier": 3241, "description": "The Texas State University Digital Collections Repository is a service that provides free and open access to the scholarship and creative works produced and owned by the Texas State University community. It centralizes, preserves, and makes the knowledge generated by the university community accessible. Data includes faculty publications, theses & dissertations, and digitized materials from The Wittliff Collections, the University Archives, and other materials unique to Texas State University.", "support-links": [{"url": "https://www.library.txstate.edu/libraries-collections/collections/digital-collections/Texas-State-Digital-Collections-Repository/Digital-Depository-FAQs.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.library.txstate.edu/libraries-collections/collections/digital-collections/Texas-State-Digital-Collections-Repository/add-your-work.html", "name": "How to Deposit Data", "type": "Help documentation"}, {"url": "https://www.library.txstate.edu/libraries-collections/collections/digital-collections/Texas-State-Digital-Collections-Repository/submissions.html", "name": "Submission Types", "type": "Help documentation"}], "data-processes": [{"url": "https://digital.library.txstate.edu/discover", "name": "Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001755", "bsg-d001755"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United States"], "name": "FAIRsharing record for: Texas State University Digital Collections Repository", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3241", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Texas State University Digital Collections Repository is a service that provides free and open access to the scholarship and creative works produced and owned by the Texas State University community. It centralizes, preserves, and makes the knowledge generated by the university community accessible. Data includes faculty publications, theses & dissertations, and digitized materials from The Wittliff Collections, the University Archives, and other materials unique to Texas State University.", "publications": [], "licence-links": [{"licence-name": "Texas State University Digital Collections Repository Data Policy", "licence-id": 781, "link-id": 2167, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2352", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-25T09:58:43.000Z", "updated-at": "2021-11-24T13:14:52.081Z", "metadata": {"doi": "10.25504/FAIRsharing.sv2rm8", "name": "TissueNet v.2", "status": "ready", "contacts": [{"contact-name": "Esti Yeger-L", "contact-email": "estiyl@bgu.ac.il", "contact-orcid": "0000-0002-8279-7898"}], "homepage": "http://netbio.bgu.ac.il/tissuenet", "identifier": 2352, "description": "Knowledge of the molecular interactions of human proteins within tissues is important for identifying their tissue-specific roles and for shedding light on tissue phenotypes. However, many protein-protein interactions (PPIs) have no tissue-contexts. The TissueNet database bridges this gap by associating experimentally-identified PPIs with human tissues that were shown to express both pair-mates. Users can select a protein and a tissue, and obtain a network view of the query protein and its tissue-associated PPIs. TissueNet v.2 is an updated version of the TissueNet database previously featured in NAR. It includes over 40 human tissues profiled via RNA-sequencing or protein-based assays. Users can select their preferred expression data source and interactively set the expression threshold for determining tissue-association. The output of TissueNet v.2 underlines qualitative and quantitative features of query proteins and their PPIs. The tissue-specificity view highlights tissue-specific and globally-expressed proteins, and the quantitative view highlights proteins that were differentially expressed in the selected tissue relative to all other tissues. Together, these views allow users to quickly assess the unique versus global functionality of query proteins. Thus, TissueNet v.2 offers an extensive, quantitative and user-friendly interface to study the roles of human proteins across tissues.", "abbreviation": "TissueNet", "year-creation": 2013}, "legacy-ids": ["biodbcore-000831", "bsg-d000831"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Protein interaction", "Protein expression", "Tissue"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: TissueNet v.2", "abbreviation": "TissueNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.sv2rm8", "doi": "10.25504/FAIRsharing.sv2rm8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Knowledge of the molecular interactions of human proteins within tissues is important for identifying their tissue-specific roles and for shedding light on tissue phenotypes. However, many protein-protein interactions (PPIs) have no tissue-contexts. The TissueNet database bridges this gap by associating experimentally-identified PPIs with human tissues that were shown to express both pair-mates. Users can select a protein and a tissue, and obtain a network view of the query protein and its tissue-associated PPIs. TissueNet v.2 is an updated version of the TissueNet database previously featured in NAR. It includes over 40 human tissues profiled via RNA-sequencing or protein-based assays. Users can select their preferred expression data source and interactively set the expression threshold for determining tissue-association. The output of TissueNet v.2 underlines qualitative and quantitative features of query proteins and their PPIs. The tissue-specificity view highlights tissue-specific and globally-expressed proteins, and the quantitative view highlights proteins that were differentially expressed in the selected tissue relative to all other tissues. Together, these views allow users to quickly assess the unique versus global functionality of query proteins. Thus, TissueNet v.2 offers an extensive, quantitative and user-friendly interface to study the roles of human proteins across tissues.", "publications": [{"id": 1713, "pubmed_id": 23193266, "title": "The TissueNet database of human tissue protein-protein interactions.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1198", "authors": "Ruth Barshir, Omer Basha, Amir Eluk, Ilan Y. Smoly, Alexander Lan and Esti Yeger-Lotem", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1198", "created_at": "2021-09-30T08:25:31.939Z", "updated_at": "2021-09-30T08:25:31.939Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1828", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.920Z", "metadata": {"doi": "10.25504/FAIRsharing.7m4hza", "name": "OryGenesDB: an interactive tool for rice reverse genetics", "status": "ready", "contacts": [{"contact-name": "Pierre Larmande", "contact-email": "pierre.larmande@cirad.fr", "contact-orcid": "0000-0002-2923-9790"}], "homepage": "http://orygenesdb.cirad.fr/", "identifier": 1828, "description": "The aim of this Oryza sativa database was first to display sequence information such as the T-DNA and Ds flanking sequence tags (FSTs) produced in the framework of the French genomics initiative Genoplante and the EU consortium Cereal Gene Tags. This information was later linked with related molecular data from external rice molecular resources (cDNA full length, Gene, EST, Markers, Expression data...).", "abbreviation": "OryGenesDB", "support-links": [{"url": "orygenesdb@cirad.fr", "type": "Support email"}], "year-creation": 2007, "data-processes": [{"url": "http://orygenesdb.cirad.fr/tools.html", "name": "search", "type": "data access"}, {"url": "http://orygenesdb.cirad.fr/cgi-bin/gbrowse/odb_japonica/", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://orygenesdb.cirad.fr/blast.html", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000288", "bsg-d000288"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "DNA sequence data", "Deoxyribonucleic acid", "Flanking region", "Sequence tag", "Gene", "Complementary DNA"], "taxonomies": ["Oryza", "Oryza sativa"], "user-defined-tags": ["Flanking Sequence Tags (FST)"], "countries": ["France"], "name": "FAIRsharing record for: OryGenesDB: an interactive tool for rice reverse genetics", "abbreviation": "OryGenesDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.7m4hza", "doi": "10.25504/FAIRsharing.7m4hza", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The aim of this Oryza sativa database was first to display sequence information such as the T-DNA and Ds flanking sequence tags (FSTs) produced in the framework of the French genomics initiative Genoplante and the EU consortium Cereal Gene Tags. This information was later linked with related molecular data from external rice molecular resources (cDNA full length, Gene, EST, Markers, Expression data...).", "publications": [{"id": 341, "pubmed_id": 19036791, "title": "OryGenesDB 2008 update: database interoperability for functional genomics of rice.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn821", "authors": "Droc G., P\u00e9rin C., Fromentin S., Larmande P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn821", "created_at": "2021-09-30T08:22:56.775Z", "updated_at": "2021-09-30T08:22:56.775Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3221", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-03T14:46:46.000Z", "updated-at": "2022-02-08T10:34:53.688Z", "metadata": {"doi": "10.25504/FAIRsharing.d58499", "name": "Earth Science Information Partner's Community Ontology Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "staff@esipfed.org"}], "homepage": "http://cor.esipfed.org/", "identifier": 3221, "description": "Hosted by ESIP, the COR consists of a deployment of the MMI Ontology Registry and Repository (ORR) software. The COR is available for any member of ESIP or the public to test the creation and management of Earth science ontologies and vocabularies.", "abbreviation": "ESIP COR", "support-links": [{"url": "https://www.esipfed.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://mmisw.org/orrdoc/", "name": "MMI ORR User Manual", "type": "Help documentation"}, {"url": "http://esipfed.github.io/cor/", "name": "Project Documentation", "type": "Github"}, {"url": "https://github.com/ESIPFed/cor", "name": "ESIP COR GitHub Repository", "type": "Github"}, {"url": "https://github.com/mmisw/orr-portal", "name": "MMI ORR GitHub Repository", "type": "Github"}, {"url": "https://github.com/ESIPFed/cor/wiki", "name": "ESIP COR Wiki", "type": "Github"}], "data-processes": [{"url": "http://cor.esipfed.org/ont/#/", "name": "General Search & Browse", "type": "data access"}, {"url": "http://cor.esipfed.org/ont#/st/", "name": "Term Search", "type": "data access"}, {"url": "http://cor.esipfed.org/ont/sparql", "name": "SPARQL Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001734", "bsg-d001734"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Earth Science", "Ontology and Terminology"], "domains": ["Classification", "Knowledge representation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Earth Science Information Partner's Community Ontology Repository", "abbreviation": "ESIP COR", "url": "https://fairsharing.org/10.25504/FAIRsharing.d58499", "doi": "10.25504/FAIRsharing.d58499", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Hosted by ESIP, the COR consists of a deployment of the MMI Ontology Registry and Repository (ORR) software. The COR is available for any member of ESIP or the public to test the creation and management of Earth science ontologies and vocabularies.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3040", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-20T14:24:26.000Z", "updated-at": "2021-11-24T13:16:22.908Z", "metadata": {"doi": "10.25504/FAIRsharing.0pUMYW", "name": "Global Research Identifier Database", "status": "ready", "contacts": [{"contact-name": "GRID Contact", "contact-email": "contact@grid.ac"}], "homepage": "https://grid.ac/", "identifier": 3040, "description": "Global Research Identifier Database (GRID) stores information on research-related organisations worldwide. GRID record contains a unique GRID ID, relevant metadata, and relationships between associated institutions.", "abbreviation": "GRID", "support-links": [{"url": "https://gridac.freshdesk.com/support/solutions", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://grid.ac/pages/policies", "name": "GRID Policies", "type": "Help documentation"}, {"url": "https://grid.ac/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/grid_ac", "name": "@grid_ac", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Global_Research_Identifier_Database", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2015, "data-processes": [{"url": "https://grid.ac/downloads", "name": "Download", "type": "data release"}, {"url": "https://grid.ac/institutes", "name": "Browse & Search", "type": "data access"}], "associated-tools": [{"url": "https://grid.ac/disambiguate", "name": "Disambiguator"}]}, "legacy-ids": ["biodbcore-001548", "bsg-d001548"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management"], "domains": ["Data identity and mapping", "Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Global Research Identifier Database", "abbreviation": "GRID", "url": "https://fairsharing.org/10.25504/FAIRsharing.0pUMYW", "doi": "10.25504/FAIRsharing.0pUMYW", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Global Research Identifier Database (GRID) stores information on research-related organisations worldwide. GRID record contains a unique GRID ID, relevant metadata, and relationships between associated institutions.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2000, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3041", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-20T16:04:44.000Z", "updated-at": "2021-12-06T10:48:13.522Z", "metadata": {"doi": "10.25504/FAIRsharing.9iYFcl", "name": "Repository Universitas Medan Area", "status": "ready", "contacts": [{"contact-name": "ramdani", "contact-email": "ramdani@staff.uma.ac.id"}], "homepage": "http://repository.uma.ac.id", "identifier": 3041, "description": "Repository of Medan Area University is an institutional repository that collects, preserves, and distributes digital material from the university.", "abbreviation": "Repository of Medan Area University", "support-links": [{"url": "http://repository.uma.ac.id/feedback", "name": "Feedback Form", "type": "Contact form"}], "year-creation": 2017, "data-processes": [{"url": "http://repository.uma.ac.id/community-list", "name": "Browse by Type", "type": "data access"}, {"url": "http://repository.uma.ac.id/browse?type=dateissued", "name": "Browse by Issue Date", "type": "data access"}, {"url": "http://repository.uma.ac.id/browse?type=author", "name": "Browse by Author", "type": "data access"}, {"url": "http://repository.uma.ac.id/browse?type=title", "name": "Browse by Title", "type": "data access"}, {"url": "http://repository.uma.ac.id/browse?type=subject", "name": "Browse by Subject", "type": "data access"}, {"url": "http://repository.uma.ac.id/browse?type=advisor", "name": "Browse by Advisor", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010157", "name": "re3data:r3d100010157", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001549", "bsg-d001549"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Indonesia"], "name": "FAIRsharing record for: Repository Universitas Medan Area", "abbreviation": "Repository of Medan Area University", "url": "https://fairsharing.org/10.25504/FAIRsharing.9iYFcl", "doi": "10.25504/FAIRsharing.9iYFcl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Repository of Medan Area University is an institutional repository that collects, preserves, and distributes digital material from the university.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3249", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-12T20:02:04.000Z", "updated-at": "2021-12-06T10:47:47.138Z", "metadata": {"doi": "10.25504/FAIRsharing.1Uw3Q9", "name": "Hydra digital repository", "status": "ready", "contacts": [{"contact-name": "Chris Awre", "contact-email": "c.awre@hull.ac.uk", "contact-orcid": "0000-0002-0964-254X"}], "homepage": "https://hydra.hull.ac.uk/", "identifier": 3249, "description": "The Hydra repository is a digital archive for the University of Hull. It has been developed to hold, manage, preserve and provide access to the growing body of digital material generated through the research, teaching and administrative activities of the University.", "abbreviation": "Hydra", "support-links": [{"url": "libhelp@hull.ac.uk", "name": "Difficulty accessing the repository", "type": "Support email"}, {"url": "repository@hull.ac.uk", "name": "Depositing or re-using material in the repository", "type": "Support email"}, {"url": "https://hydra.hull.ac.uk/about", "name": "About", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://hydra.hull.ac.uk/resources/facet/genre_sim", "name": "Browse by Resource Type", "type": "data access"}, {"url": "https://hydra.hull.ac.uk/resources/facet/subject_topic_sim", "name": "Browse by Topic", "type": "data access"}, {"url": "https://hydra.hull.ac.uk/resources/facet/creator_name_ssim", "name": "Browse by Creator", "type": "data access"}, {"url": "https://hydra.hull.ac.uk/resources/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011525", "name": "re3data:r3d100011525", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001763", "bsg-d001763"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Policy", "Engineering Science", "Research on Teaching, Learning and Training", "Geography", "Education Science", "Medicine", "Chemistry", "Psychology", "Business Administration", "History", "Clinical Psychology", "Life Science", "Computer Science", "Physics"], "domains": ["Journal article", "Report", "Image", "Publication"], "taxonomies": ["Not applicable"], "user-defined-tags": ["event", "institutional repository", "Learning material", "Sociology", "Sound"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Hydra digital repository", "abbreviation": "Hydra", "url": "https://fairsharing.org/10.25504/FAIRsharing.1Uw3Q9", "doi": "10.25504/FAIRsharing.1Uw3Q9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Hydra repository is a digital archive for the University of Hull. It has been developed to hold, manage, preserve and provide access to the growing body of digital material generated through the research, teaching and administrative activities of the University.", "publications": [], "licence-links": [{"licence-name": "Hydra Takedown Policy", "licence-id": 407, "link-id": 1159, "relation": "undefined"}, {"licence-name": "Hydra Cookies", "licence-id": 406, "link-id": 1160, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2312", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T13:23:26.000Z", "updated-at": "2021-11-24T13:19:32.138Z", "metadata": {"doi": "10.25504/FAIRsharing.j766zb", "name": "Broad Bioimage Benchmark Collection", "status": "ready", "contacts": [{"contact-name": "Anne Carpenter", "contact-email": "anne@broadinstitute.org"}], "homepage": "https://data.broadinstitute.org/bbbc/", "identifier": 2312, "description": "The Broad Bioimage Benchmark Collection (BBBC) is a collection of freely downloadable microscopy image sets. Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results).", "abbreviation": "BBBC", "year-creation": 2011}, "legacy-ids": ["biodbcore-000788", "bsg-d000788"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "High-content screen"], "taxonomies": ["Caenorhabditis elegans", "Cricetulus griseus", "Drosophila", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Broad Bioimage Benchmark Collection", "abbreviation": "BBBC", "url": "https://fairsharing.org/10.25504/FAIRsharing.j766zb", "doi": "10.25504/FAIRsharing.j766zb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Broad Bioimage Benchmark Collection (BBBC) is a collection of freely downloadable microscopy image sets. Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results).", "publications": [{"id": 1251, "pubmed_id": 22743765, "title": "Annotated high-throughput microscopy image sets for validation.", "year": 2012, "url": "http://doi.org/10.1038/nmeth.2083", "authors": "Ljosa V,Sokolnicki KL,Carpenter AE", "journal": "Nat Methods", "doi": "10.1038/nmeth.2083", "created_at": "2021-09-30T08:24:39.533Z", "updated_at": "2021-09-30T08:24:39.533Z"}], "licence-links": [{"licence-name": "BBBC Each image set is assigned its own license, per the image contributor", "licence-id": 57, "link-id": 451, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2535", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-16T11:09:44.000Z", "updated-at": "2021-11-24T13:14:54.056Z", "metadata": {"doi": "10.25504/FAIRsharing.y9x8wk", "name": "Natural Product-Drug Interaction Research Data Repository", "status": "in_development", "contacts": [{"contact-name": "Richard Boyce", "contact-email": "rdb20@pitt.edu", "contact-orcid": "0000-0002-2993-2085"}], "homepage": "https://repo.napdi.org/", "identifier": 2535, "description": "The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs). The repository is funded by the United States National Center for Complementary and Integrative Health.", "abbreviation": "NaPDI", "access-points": [{"url": "https://repo.napdi.org/restful/experiments", "name": "Obtain a list of experiments entered into the repository", "type": "REST"}, {"url": "https://repo.napdi.org/restful/studies", "name": "Obtain a list of studies entered into the repository", "type": "REST"}], "support-links": [{"url": "https://forums.dikb.org/c/npdi", "name": "Natural product-drug interactions topic on forums.dikb.org", "type": "Help documentation"}], "year-creation": 2017}, "legacy-ids": ["biodbcore-001018", "bsg-d001018"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Pharmacology", "Biomedical Science"], "domains": ["Drug interaction", "Natural product"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Natural Product-Drug Interaction Research Data Repository", "abbreviation": "NaPDI", "url": "https://fairsharing.org/10.25504/FAIRsharing.y9x8wk", "doi": "10.25504/FAIRsharing.y9x8wk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs). The repository is funded by the United States National Center for Complementary and Integrative Health.", "publications": [{"id": 2452, "pubmed_id": 29743102, "title": "Extending the DIDEO ontology to include entities from the natural product drug interaction domain of discourse.", "year": 2018, "url": "http://doi.org/10.1186/s13326-018-0183-z", "authors": "Judkins J,Tay-Sontheimer J,Boyce RD,Brochhausen M", "journal": "J Biomed Semantics", "doi": "10.1186/s13326-018-0183-z", "created_at": "2021-09-30T08:27:00.787Z", "updated_at": "2021-09-30T08:27:00.787Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 892, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2756", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-22T17:37:07.000Z", "updated-at": "2021-11-24T13:17:44.132Z", "metadata": {"name": "Docker Hub", "status": "ready", "homepage": "https://hub.docker.com/", "identifier": 2756, "description": "Docker Hub is a library and community for sharing container images. It currently contains over 100,000 container images from software vendors, open-source projects, and the community. It has become a common way of sharing bioinformatics tools and resources in a way that reduces the difficulty of running these tools in a compute environment with the correct software dependencies.", "abbreviation": "Docker Hub", "support-links": [{"url": "https://www.docker.com/company/contact", "name": "Contact form for DockerHub", "type": "Contact form"}, {"url": "https://forums.docker.com/c/docker-hub", "name": "Docker Hub Forums", "type": "Forum"}, {"url": "https://docs.docker.com/docker-hub/", "name": "Docker Hub Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/docker", "name": "@docker", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "https://hub.docker.com/search?q=&type=image", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001254", "bsg-d001254"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computer Science", "Software Engineering"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Docker Hub", "abbreviation": "Docker Hub", "url": "https://fairsharing.org/fairsharing_records/2756", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Docker Hub is a library and community for sharing container images. It currently contains over 100,000 container images from software vendors, open-source projects, and the community. It has become a common way of sharing bioinformatics tools and resources in a way that reduces the difficulty of running these tools in a compute environment with the correct software dependencies.", "publications": [], "licence-links": [{"licence-name": "Docker Components and Licenses", "licence-id": 249, "link-id": 312, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3133", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T12:29:10.000Z", "updated-at": "2022-02-08T10:33:39.645Z", "metadata": {"doi": "10.25504/FAIRsharing.298d50", "name": "Network for the Detection of Atmospheric Composition Change", "status": "ready", "homepage": "http://www.ndaccdemo.org/", "identifier": 3133, "description": "The international Network for the Detection of Atmospheric Composition Change (NDACC) is composed of more than 70 globally distributed, ground-based, remote-sensing research stations with more than 160 currently active instruments. The repository is intended to, among other objectives, detect changes and trends in atmospheric composition and to understand their impacts on the mesosphere, stratosphere, and troposphere; to provide critical data sets to help fill gaps in satellite observations; and to provide validation and development support for atmospheric models.", "abbreviation": "NDACC", "support-links": [{"url": "http://www.ndaccdemo.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.ndaccdemo.org/data", "name": "About the Data", "type": "Help documentation"}, {"url": "http://www.ndaccdemo.org/data/formats", "name": "Supported Data Formats", "type": "Help documentation"}, {"url": "http://www.ndaccdemo.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 1991, "data-processes": [{"url": "http://www.ndaccdemo.org/", "name": "Map Search", "type": "data access"}, {"url": "http://www.ndaccdemo.org/search/node", "name": "Text Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011957", "name": "re3data:r3d100011957", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001644", "bsg-d001644"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Atmospheric Science", "Remote Sensing"], "domains": ["Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Network for the Detection of Atmospheric Composition Change", "abbreviation": "NDACC", "url": "https://fairsharing.org/10.25504/FAIRsharing.298d50", "doi": "10.25504/FAIRsharing.298d50", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The international Network for the Detection of Atmospheric Composition Change (NDACC) is composed of more than 70 globally distributed, ground-based, remote-sensing research stations with more than 160 currently active instruments. The repository is intended to, among other objectives, detect changes and trends in atmospheric composition and to understand their impacts on the mesosphere, stratosphere, and troposphere; to provide critical data sets to help fill gaps in satellite observations; and to provide validation and development support for atmospheric models.", "publications": [{"id": 3022, "pubmed_id": null, "title": "The Network for the Detection of Atmospheric Composition Change (NDACC): history, status and perspectives", "year": 2018, "url": "https://doi.org/10.5194/acp-18-4935-2018", "authors": "Martine De Mazi\u00e8re, Anne M. Thompson, Michael J. Kurylo et al.", "journal": "Atmospheric Chemistry and Physics", "doi": "10.5194/acp-18-4935-2018", "created_at": "2021-09-30T08:28:12.530Z", "updated_at": "2021-09-30T08:28:12.530Z"}], "licence-links": [{"licence-name": "NDACC Data Use Agreement", "licence-id": 564, "link-id": 489, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1996", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:08.229Z", "metadata": {"doi": "10.25504/FAIRsharing.88v2k0", "name": "Database of Genotypes and Phenotypes", "status": "ready", "contacts": [{"contact-name": "dbGaP Helpdesk", "contact-email": "dbgap-help@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/gap/", "identifier": 1996, "description": "The Database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype. Such studies include genome-wide association studies, medical sequencing, molecular diagnostic assays, as well as association between genotype and non-clinical traits.", "abbreviation": "dbGaP", "support-links": [{"url": "https://dbgap.ncbi.nlm.nih.gov/aa/wga.cgi?page=email&from=login", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK117240", "name": "GaP FAQ Archive", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/gap/tutorial/dbGaP_demo_1.htm", "name": "dbGaP Tutorial", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/gap/summaries/cgi-bin/userWorldMap.cgi", "name": "Summary Statistics", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=dbGaPnews", "name": "News Feed", "type": "Blog/News"}], "data-processes": [{"url": "https://ftp.ncbi.nlm.nih.gov/dbgap/studies/", "name": "Download", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/GetPdf.cgi?document_name=HowToSubmit.pdf", "name": "Submission Process", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/gapsolr/facets.html", "name": "Advanced Search", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/GetCollectionList.cgi", "name": "Browse Collections", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/gap/phegeni", "name": "Search PheGenI Catalog Data", "type": "data access"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/Software.cgi", "name": "Available Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010788", "name": "re3data:r3d100010788", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002709", "name": "SciCrunch:RRID:SCR_002709", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000462", "bsg-d000462"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenetics", "Genetics", "Biomedical Science"], "domains": ["Expression data", "Genetic polymorphism", "Phenotype", "Genome-wide association study", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Non-clinical trial"], "countries": ["United States"], "name": "FAIRsharing record for: Database of Genotypes and Phenotypes", "abbreviation": "dbGaP", "url": "https://fairsharing.org/10.25504/FAIRsharing.88v2k0", "doi": "10.25504/FAIRsharing.88v2k0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype. Such studies include genome-wide association studies, medical sequencing, molecular diagnostic assays, as well as association between genotype and non-clinical traits.", "publications": [{"id": 457, "pubmed_id": 17898773, "title": "The NCBI dbGaP database of genotypes and phenotypes.", "year": 2007, "url": "http://doi.org/10.1038/ng1007-1181", "authors": "Mailman MD., Feolo M., Jin Y. et al.", "journal": "Nat. Genet.", "doi": "10.1038/ng1007-1181", "created_at": "2021-09-30T08:23:09.608Z", "updated_at": "2021-09-30T08:23:09.608Z"}, {"id": 641, "pubmed_id": 24297256, "title": "NCBI's Database of Genotypes and Phenotypes: dbGaP.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1211", "authors": "Tryka KA, Hao L, Sturcke A, Jin Y, Wang ZY, Ziyabari L, Lee M, Popova N, Sharopova N, Kimura M, Feolo M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1211", "created_at": "2021-09-30T08:23:30.560Z", "updated_at": "2021-09-30T08:23:30.560Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2388, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2872", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-09T15:29:36.000Z", "updated-at": "2021-12-06T10:48:54.768Z", "metadata": {"doi": "10.25504/FAIRsharing.N0nNXm", "name": "eCommons", "status": "ready", "contacts": [{"contact-name": "Gail Steinhart", "contact-email": "gss1@cornell.edu", "contact-orcid": "0000-0002-2441-1651"}], "homepage": "https://ecommons.cornell.edu/", "identifier": 2872, "description": "eCommons is a service of the Cornell University Library that provides long-term access to a broad range of Cornell-related digital content of enduring value. Content types include: pre- and post-publication papers, technical reports, theses and dissertations, books, lectures and presentations, datasets, digital departmental newsletters, administrative reports, compilations of University data, and meeting agendas and minutes. Content produced by others but of research and/or teaching value may also be appropriate for eCommons. Such material is normally solicited, collected, or identified by Cornell faculty, researchers, staff, and students, who then arrange all necessary clearances needed to deposit the material. Examples of such content include: datasets, electronic books and multimedia, presentations given at Cornell events, digitized research materials.", "abbreviation": "eCommons", "support-links": [{"url": "https://ecommons.cornell.edu/page/contact", "name": "eCommons contact form", "type": "Contact form"}, {"url": "https://ecommons.cornell.edu/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "http://guides.library.cornell.edu/ecommons", "name": "eCommons help pages", "type": "Help documentation"}, {"url": "http://guides.library.cornell.edu/ecommons/submit", "name": "How to Submit", "type": "Help documentation"}, {"url": "https://ecommons.cornell.edu/page/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://ecommons.cornell.edu/community.html", "name": "Browse Communities", "type": "data access"}, {"url": "https://ecommons.cornell.edu/browse?type=dateissued", "name": "Browse by Issue Date", "type": "data access"}, {"url": "https://ecommons.cornell.edu/browse?type=author", "name": "Browse by Author", "type": "data access"}, {"url": "https://ecommons.cornell.edu/browse?type=title", "name": "Browse by Title", "type": "data access"}, {"url": "https://ecommons.cornell.edu/browse?type=subject", "name": "Browse by Subject", "type": "data access"}, {"url": "https://ecommons.cornell.edu/browse?type=type", "name": "Browse by Type", "type": "data access"}, {"url": "https://ecommons.cornell.edu/submit", "name": "Submit Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012322", "name": "re3data:r3d100012322", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001373", "bsg-d001373"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Computer Science", "Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["United States"], "name": "FAIRsharing record for: eCommons", "abbreviation": "eCommons", "url": "https://fairsharing.org/10.25504/FAIRsharing.N0nNXm", "doi": "10.25504/FAIRsharing.N0nNXm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: eCommons is a service of the Cornell University Library that provides long-term access to a broad range of Cornell-related digital content of enduring value. Content types include: pre- and post-publication papers, technical reports, theses and dissertations, books, lectures and presentations, datasets, digital departmental newsletters, administrative reports, compilations of University data, and meeting agendas and minutes. Content produced by others but of research and/or teaching value may also be appropriate for eCommons. Such material is normally solicited, collected, or identified by Cornell faculty, researchers, staff, and students, who then arrange all necessary clearances needed to deposit the material. Examples of such content include: datasets, electronic books and multimedia, presentations given at Cornell events, digitized research materials.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1279, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3069", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-08T14:45:52.000Z", "updated-at": "2022-02-08T10:41:45.241Z", "metadata": {"doi": "10.25504/FAIRsharing.e16565", "name": "World Radiation Data Centre", "status": "ready", "contacts": [{"contact-name": "Anatoly V. Tsvetkov", "contact-email": "tsvetkov@main.mgo.rssi.ru"}], "homepage": "http://wrdc.mgo.rssi.ru/", "identifier": 3069, "description": "The World Radiation Data Centre (WRDC) is one of six World Data Centres which are part of the Global Atmosphere Watch (GAW) programme of the World Meteorological Organization. The WRDC centrally collects and archives radiometric data from the world to ensure the availability of these data for research by the international scientific community.", "abbreviation": "WRDC", "support-links": [{"url": "wrdc@main.mgo.rssi.ru", "type": "Support email"}, {"url": "http://wrdc.mgo.rssi.ru/wrdc_en_new.htm", "name": "Publications", "type": "Help documentation"}], "year-creation": 1964, "data-processes": [{"url": "http://wrdc.mgo.rssi.ru/wrdc_en_new.htm", "name": "List of available data", "type": "data access"}, {"url": "http://wrdc.mgo.rssi.ru/wrdc_en_new.htm", "name": "Register to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010177", "name": "re3data:r3d100010177", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001577", "bsg-d001577"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science", "Atmospheric Science"], "domains": ["Radiation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Russia"], "name": "FAIRsharing record for: World Radiation Data Centre", "abbreviation": "WRDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.e16565", "doi": "10.25504/FAIRsharing.e16565", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Radiation Data Centre (WRDC) is one of six World Data Centres which are part of the Global Atmosphere Watch (GAW) programme of the World Meteorological Organization. The WRDC centrally collects and archives radiometric data from the world to ensure the availability of these data for research by the international scientific community.", "publications": [], "licence-links": [{"licence-name": "WRDC Data Licence", "licence-id": 872, "link-id": 2013, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2876", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-30T06:52:27.000Z", "updated-at": "2021-12-06T10:49:26.711Z", "metadata": {"doi": "10.25504/FAIRsharing.Xb3LBL", "name": "Population Health Data Archive", "status": "ready", "contacts": [{"contact-name": "PHDA", "contact-email": "rkjkpt@126.com"}], "homepage": "http://www.ncmi.cn/", "citations": [], "identifier": 2876, "description": "The National Population Health Data Center (NPHDC) is one of the 20 national science data center approved by the Ministry of Science and Technology and the Ministry of Finance. The Population Health Data Archive (PHDA) is developed by NPHDC relying on the Institute of Medical Information, Chinese Academy of Medical Sciences. PHDA mainly receives scientific data from science and technology projects supported by the national budget, and also collects data from other multiple sources such as medical and health institutions, research institutions and social individuals, which is oriented to the national big data strategy and the healthy China strategy. The data resources cover basic medicine, clinical medicine, public health, traditional Chinese medicine and pharmacy, pharmacy, population and reproduction. PHDA supports data collection, archiving, processing, storage, curation, verification, certification and release in the field of population health. Provide multiple types of data sharing and application services for different hierarchy users and help them find, access, interoperate and reuse the data in a safe and controlled environment. PHDA provides important support for promoting the open sharing of scientific data of population health and domestic and foreign cooperation.", "abbreviation": "PHDA", "data-curation": {}, "support-links": [{"url": "http://www.ncmi.cn/phda/support.html?type=aboutus", "name": "Contact", "type": "Contact form"}, {"url": "https://www.ncmi.cn/phda/support.html?type=guide05", "name": "Support", "type": "Help documentation"}, {"url": "https://www.ncmi.cn/phda/video_list.html", "name": "Training", "type": "Training documentation"}], "year-creation": 2017, "associated-tools": [{"url": "http://www.ncmi.cn/phda/submit.html", "name": "data submit"}, {"url": "http://www.ncmi.cn/phda/service.html", "name": "data service"}, {"url": "http://www.ncmi.cn/phda/browse.html", "name": "data browse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013199", "name": "re3data:r3d100013199", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001377", "bsg-d001377"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Genomics", "Reproductive Health", "Clinical Studies", "Public Health", "Proteomics", "Human Genetics", "Pharmacy", "Life Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Population Health Data Archive", "abbreviation": "PHDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.Xb3LBL", "doi": "10.25504/FAIRsharing.Xb3LBL", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Population Health Data Center (NPHDC) is one of the 20 national science data center approved by the Ministry of Science and Technology and the Ministry of Finance. The Population Health Data Archive (PHDA) is developed by NPHDC relying on the Institute of Medical Information, Chinese Academy of Medical Sciences. PHDA mainly receives scientific data from science and technology projects supported by the national budget, and also collects data from other multiple sources such as medical and health institutions, research institutions and social individuals, which is oriented to the national big data strategy and the healthy China strategy. The data resources cover basic medicine, clinical medicine, public health, traditional Chinese medicine and pharmacy, pharmacy, population and reproduction. PHDA supports data collection, archiving, processing, storage, curation, verification, certification and release in the field of population health. Provide multiple types of data sharing and application services for different hierarchy users and help them find, access, interoperate and reuse the data in a safe and controlled environment. PHDA provides important support for promoting the open sharing of scientific data of population health and domestic and foreign cooperation.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2739", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-05T11:10:11.000Z", "updated-at": "2021-11-24T13:18:01.788Z", "metadata": {"doi": "10.25504/FAIRsharing.EtYkWo", "name": "Banana Breeding Tracker Database", "status": "deprecated", "contacts": [{"contact-name": "The Director, ICAR-National Research Centre for Banana", "contact-email": "directornrcb@gmail.com"}], "homepage": "http://nrcbbioinfo.byethost33.com/bbtbase/index.php", "identifier": 2739, "description": "The Banana Breeding Tracker Database (BBTbase) is a database of banana breeding information and allows users to input data from multiple stages in banana crop production, including hybridization, seed extraction, culturing, and hardening. This database also provides quick responsive (QR) codes for labelling. BBTbase has been developed at ICAR-NRCB to monitor banana breeding programs.", "abbreviation": "BBTbase", "support-links": [{"url": "http://nrcbbioinfo.byethost33.com/bbtbase/about.php", "name": "Contact Form", "type": "Contact form"}], "year-creation": 2018, "data-processes": [{"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form1a.php", "name": "Add Hybridization Data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form2a.php", "name": "Add Seed Extraction Data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form3a.php", "name": "Add Embryo Culture data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form4a.php", "name": "Add Sub Culture (Shoot) data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form5a.php", "name": "Add Sub Culture (Root) data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form6a.php", "name": "Add Primary Hardening data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form7a.php", "name": "Add Secondary Hardening data", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/form8a.php", "name": "IHIN", "type": "data curation"}, {"url": "http://nrcbbioinfo.byethost33.com/bbtbase/results.php", "name": "Browse Data", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001237", "bsg-d001237"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Plant Breeding", "Agriculture", "Plant Cultivation"], "domains": ["Life cycle stage"], "taxonomies": ["Musa"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Banana Breeding Tracker Database", "abbreviation": "BBTbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.EtYkWo", "doi": "10.25504/FAIRsharing.EtYkWo", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Banana Breeding Tracker Database (BBTbase) is a database of banana breeding information and allows users to input data from multiple stages in banana crop production, including hybridization, seed extraction, culturing, and hardening. This database also provides quick responsive (QR) codes for labelling. BBTbase has been developed at ICAR-NRCB to monitor banana breeding programs.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2014", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:39.351Z", "metadata": {"doi": "10.25504/FAIRsharing.gcxmpf", "name": "BEI Resource Repository", "status": "ready", "contacts": [{"contact-name": "General contact email", "contact-email": "contact@beiresources.org"}], "homepage": "http://www.beiresources.org/", "identifier": 2014, "description": "BEI Resources provides reagents, tools and information for studying Category A, B, and C priority pathogens, emerging infectious disease agents, non-pathogenic microbes and other microbiological materials of relevance to the research community.", "abbreviation": "BEI", "support-links": [{"url": "http://www.beiresources.org/ContactUs.aspx", "type": "Contact form"}, {"url": "http://www.beiresources.org/FrequentlyAskedQuestions.aspx", "type": "Help documentation"}, {"url": "http://www.beiresources.org/Forms.aspx", "type": "Help documentation"}], "data-processes": [{"url": "http://www.beiresources.org/Catalog.aspx", "name": "Materials/Reagents Search", "type": "data access"}], "associated-tools": [{"url": "http://www.beiresources.org/Deposits/DepositInformation.aspx", "name": "Data Deposition"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012827", "name": "re3data:r3d100012827", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013698", "name": "SciCrunch:RRID:SCR_013698", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000480", "bsg-d000480"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Nucleic acid sequence", "Deoxyribonucleic acid", "Pathogen", "Disease", "Microbiome"], "taxonomies": ["All", "Clostridium Difficile", "Enterovirus", "Human metapneumovirus", "Staphylococcus", "Streptococcus", "Zika virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BEI Resource Repository", "abbreviation": "BEI", "url": "https://fairsharing.org/10.25504/FAIRsharing.gcxmpf", "doi": "10.25504/FAIRsharing.gcxmpf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BEI Resources provides reagents, tools and information for studying Category A, B, and C priority pathogens, emerging infectious disease agents, non-pathogenic microbes and other microbiological materials of relevance to the research community.", "publications": [{"id": 456, "pubmed_id": 18675849, "title": "BEI Resources: supporting antiviral research.", "year": 2008, "url": "http://doi.org/10.1016/j.antiviral.2008.07.003", "authors": "Baker R., Peacock S.,", "journal": "Antiviral Res.", "doi": "10.1016/j.antiviral.2008.07.003", "created_at": "2021-09-30T08:23:09.492Z", "updated_at": "2021-09-30T08:23:09.492Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 589, "relation": "undefined"}, {"licence-name": "Web Accessibility Policy for bei Resources", "licence-id": 855, "link-id": 590, "relation": "undefined"}, {"licence-name": "bei Privacy Policy", "licence-id": 67, "link-id": 591, "relation": "undefined"}, {"licence-name": "bei Resources Terms of Use", "licence-id": 68, "link-id": 592, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2928", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-03T15:31:55.000Z", "updated-at": "2021-12-06T10:47:26.513Z", "metadata": {"name": "ISRCTN Registry", "status": "ready", "contacts": [{"contact-email": "info@biomedcentral.com"}], "homepage": "http://www.isrctn.com/", "identifier": 2928, "description": "The ISRCTN registry is a primary clinical trial registry recognised by WHO and ICMJE that accepts all clinical research studies (whether proposed, ongoing or completed), providing content validation and curation and the unique identification number necessary for publication. All study records in the database are freely accessible and searchable.", "abbreviation": "ISRCTN Registry", "support-links": [{"url": "http://www.isrctn.com/page/faqs", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.isrctn.com/page/search-tips", "name": "Search tips", "type": "Help documentation"}, {"url": "http://www.isrctn.com/page/about", "name": "About page", "type": "Help documentation"}, {"url": "https://twitter.com/ISRCTN", "name": "@ISRCTN", "type": "Twitter"}], "year-creation": 2000, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013307", "name": "re3data:r3d100013307", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001431", "bsg-d001431"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: ISRCTN Registry", "abbreviation": "ISRCTN Registry", "url": "https://fairsharing.org/fairsharing_records/2928", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ISRCTN registry is a primary clinical trial registry recognised by WHO and ICMJE that accepts all clinical research studies (whether proposed, ongoing or completed), providing content validation and curation and the unique identification number necessary for publication. All study records in the database are freely accessible and searchable.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3271", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-16T21:02:13.000Z", "updated-at": "2022-02-08T10:36:38.617Z", "metadata": {"doi": "10.25504/FAIRsharing.dd0b36", "name": "Ramsar Sites Information Service", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ramsar@ramsar.org"}], "homepage": "https://rsis.ramsar.org", "identifier": 3271, "description": "The Ramsar Sites Information Service (RSIS) provides online information on wetlands that have been designated as internationally important. Ramsar provides a searchable database of Ramsar Sites, which holds information on the wetland types, ecology, land uses, threats, hydrological values of each Site. as well as spatial information. Ramsar Information Sheets (RISs), including maps and supplementary information, Site summaries, and exportable data sets may be downloaded. Digital (GIS) boundaries of Sites are also provided, where available.", "abbreviation": "RSIS", "support-links": [{"url": "https://rsis.ramsar.org/?pagetab=2", "name": "Statistics", "type": "Help documentation"}], "data-processes": [{"url": "https://rsis.ramsar.org/?pagetab=0", "name": "Map View", "type": "data access"}, {"url": "https://rsis.ramsar.org/?pagetab=1", "name": "List View", "type": "data access"}, {"url": "https://rsis.ramsar.org/?pagetab=3", "name": "Export / Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001786", "bsg-d001786"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Freshwater Science", "Hydrology", "Ecosystem Science"], "domains": ["Marine environment", "Ecosystem"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Land use"], "countries": ["Switzerland"], "name": "FAIRsharing record for: Ramsar Sites Information Service", "abbreviation": "RSIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.dd0b36", "doi": "10.25504/FAIRsharing.dd0b36", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ramsar Sites Information Service (RSIS) provides online information on wetlands that have been designated as internationally important. Ramsar provides a searchable database of Ramsar Sites, which holds information on the wetland types, ecology, land uses, threats, hydrological values of each Site. as well as spatial information. Ramsar Information Sheets (RISs), including maps and supplementary information, Site summaries, and exportable data sets may be downloaded. Digital (GIS) boundaries of Sites are also provided, where available.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3285", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-10T13:31:33.000Z", "updated-at": "2021-11-24T13:14:58.952Z", "metadata": {"name": "COVID-19 Data Index", "status": "ready", "contacts": [{"contact-email": "firat.tiryaki@uth.tmc.edu"}], "homepage": "https://www.covid19dataindex.org", "identifier": 3285, "description": "The COVID-19 Data Index collects and indexes COVID-19 datasets from major data repositories, publications, and individual online sources. Diverse types of datasets, including clinical, epidemiological, imaging, omics, socio-demographic, environment, and transportation data are being generated on a daily basis in response to the COVID-19 pandemic, and the goal of the COVID-19 Data Index is to make these datasets easily findable and reusable for researchers.", "support-links": [{"url": "https://www.covid19dataindex.org/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.covid19dataindex.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.covid19dataindex.org/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.covid19dataindex.org/", "name": "Search and Browse", "type": "data access"}, {"url": "https://www.covid19dataindex.org/submit", "name": "Submit Data", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001800", "bsg-d001800"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Clinical Studies", "Virology", "Medical Virology", "Biomedical Science", "Omics", "Epidemiology"], "domains": ["Bioimaging"], "taxonomies": ["Coronaviridae", "Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: COVID-19 Data Index", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3285", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The COVID-19 Data Index collects and indexes COVID-19 datasets from major data repositories, publications, and individual online sources. Diverse types of datasets, including clinical, epidemiological, imaging, omics, socio-demographic, environment, and transportation data are being generated on a daily basis in response to the COVID-19 pandemic, and the goal of the COVID-19 Data Index is to make these datasets easily findable and reusable for researchers.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3273", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-14T11:34:30.000Z", "updated-at": "2021-11-24T13:17:39.133Z", "metadata": {"name": "Canadian Integrated Ocean Observing System Pacific Data Catalogue", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@cioospacific.ca"}], "homepage": "https://catalogue.cioospacific.ca/", "identifier": 3273, "description": "The Canadian Integrated Ocean Observing System (CIOOS) Pacific Data Catalogue is an open-access platform for sharing information about the ocean that focuses on Canada\u2019s West Coast. CIOOS Pacific enables users to discover, access, visualize, and download ocean data to support ocean science and management and promotes collaborative opportunities among ocean sectors across Canada.", "abbreviation": "CIOOS Pacific", "support-links": [{"url": "https://cioospacific.ca/about/data-management/", "name": "Data Management Information", "type": "Help documentation"}, {"url": "https://cioospacific.ca/applied-data/", "name": "Examples of Use", "type": "Help documentation"}], "data-processes": [{"url": "https://catalogue.cioospacific.ca/", "name": "Search", "type": "data access"}, {"url": "https://cioospacific.ca/", "name": "Map Viewer", "type": "data access"}]}, "legacy-ids": ["biodbcore-001788", "bsg-d001788"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Canadian Integrated Ocean Observing System Pacific Data Catalogue", "abbreviation": "CIOOS Pacific", "url": "https://fairsharing.org/fairsharing_records/3273", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canadian Integrated Ocean Observing System (CIOOS) Pacific Data Catalogue is an open-access platform for sharing information about the ocean that focuses on Canada\u2019s West Coast. CIOOS Pacific enables users to discover, access, visualize, and download ocean data to support ocean science and management and promotes collaborative opportunities among ocean sectors across Canada.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3260", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-13T11:29:32.000Z", "updated-at": "2021-11-24T13:17:38.967Z", "metadata": {"name": "Canadian Integrated Ocean Observing System Data Catalogue", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@cioos.ca"}], "homepage": "https://catalogue.cioos.ca/", "identifier": 3260, "description": "The Canadian Integrated Ocean Observing System (CIOOS) Data Catalogue is an online open-access data catalogue designed for sharing reliable and high-quality data and information on the state of our oceans. It facilitates access to existing resources, new information, and technology and makes data discoverable. CIOOS captures a selection of Essential Ocean Variables (EOVs) aligned with the Global Ocean Observing System (GOOS), contributing to global efforts of better understanding the ocean, marine issues, and interactions with other earth systems. CIOOS is the result of a successful collaboration between various institutional and non-governmental partners located in the Pacific, the St. Lawrence, and the Atlantic.", "abbreviation": "CIOOS", "support-links": [{"url": "https://cioos.ca/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.jotform.com/form/200203999319256", "name": "Feedback", "type": "Contact form"}, {"url": "https://cioos.ca/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/cioos_siooc", "name": "@cioos_siooc", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://catalogue.cioos.ca/", "name": "Search", "type": "data access"}, {"url": "https://cioos.ca/", "name": "Map Browser", "type": "data access"}, {"url": "https://catalogue.cioos.ca/dataset", "name": "Search Datasets", "type": "data access"}]}, "legacy-ids": ["biodbcore-001775", "bsg-d001775"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["earth observation"], "countries": ["Canada"], "name": "FAIRsharing record for: Canadian Integrated Ocean Observing System Data Catalogue", "abbreviation": "CIOOS", "url": "https://fairsharing.org/fairsharing_records/3260", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canadian Integrated Ocean Observing System (CIOOS) Data Catalogue is an online open-access data catalogue designed for sharing reliable and high-quality data and information on the state of our oceans. It facilitates access to existing resources, new information, and technology and makes data discoverable. CIOOS captures a selection of Essential Ocean Variables (EOVs) aligned with the Global Ocean Observing System (GOOS), contributing to global efforts of better understanding the ocean, marine issues, and interactions with other earth systems. CIOOS is the result of a successful collaboration between various institutional and non-governmental partners located in the Pacific, the St. Lawrence, and the Atlantic.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2899", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-03T14:34:27.000Z", "updated-at": "2021-11-24T13:16:07.351Z", "metadata": {"name": "Date Palm Resequence Database", "status": "deprecated", "contacts": [{"contact-name": "Yiming Bao", "contact-email": "baoym@big.ac.cn", "contact-orcid": "0000-0002-9922-9723"}], "homepage": "http://drdb.big.ac.cn/home", "citations": [{"doi": "10.3389/fpls.2017.01889", "pubmed-id": 29209336, "publication-id": 2535}], "identifier": 2899, "description": "The Date Palm Resequence Database (DRDB) is an online genomic resource database for date palm. It was created to distinguish different sub-types of date palms and mine genetic variation of interest. The DRDB includes SNPs (single nucleotide polymorphisms) and SSRs (short sequence repeats) from 62 date palm cultivars. Also included are pre-calculated SNPs and SSRs markers for classification and diversity; PCR primers for SNPs and SSRs markers; information on the phylogenetic relationships of all cultivars and their geographic distribution; and coding SNPs and their effects on amino acids.", "abbreviation": "DRDB", "support-links": [{"url": "http://drdb.big.ac.cn/documentation", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://drdb.big.ac.cn/overview", "name": "Browse", "type": "data access"}, {"url": "http://drdb.big.ac.cn/marker", "name": "Search (Marker Selection)", "type": "data access"}, {"url": "http://drdb.big.ac.cn/snp", "name": "SNP Search", "type": "data access"}, {"url": "http://drdb.big.ac.cn/download", "name": "Download", "type": "data release"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001400", "bsg-d001400"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Agriculture", "Comparative Genomics"], "domains": ["Geographical location", "Food", "Microsatellite", "Single nucleotide polymorphism", "Genome"], "taxonomies": ["Phoenix dactylifera"], "user-defined-tags": [], "countries": ["China", "Saudi Arabia"], "name": "FAIRsharing record for: Date Palm Resequence Database", "abbreviation": "DRDB", "url": "https://fairsharing.org/fairsharing_records/2899", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Date Palm Resequence Database (DRDB) is an online genomic resource database for date palm. It was created to distinguish different sub-types of date palms and mine genetic variation of interest. The DRDB includes SNPs (single nucleotide polymorphisms) and SSRs (short sequence repeats) from 62 date palm cultivars. Also included are pre-calculated SNPs and SSRs markers for classification and diversity; PCR primers for SNPs and SSRs markers; information on the phylogenetic relationships of all cultivars and their geographic distribution; and coding SNPs and their effects on amino acids.", "publications": [{"id": 2535, "pubmed_id": 29209336, "title": "DRDB: An Online Date Palm Genomic Resource Database.", "year": 2017, "url": "http://doi.org/10.3389/fpls.2017.01889", "authors": "He Z,Zhang C,Liu W,Lin Q,Wei T,Aljohi HA,Chen WH,Hu S", "journal": "Front Plant Sci", "doi": "10.3389/fpls.2017.01889", "created_at": "2021-09-30T08:27:10.968Z", "updated_at": "2021-09-30T08:27:10.968Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1472, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3283", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-28T13:29:32.000Z", "updated-at": "2022-02-08T10:36:19.736Z", "metadata": {"doi": "10.25504/FAIRsharing.c51ae5", "name": "ourproject.org", "status": "ready", "contacts": [{"contact-email": "admins@ourproject.org"}], "homepage": "https://ourproject.org/", "identifier": 3283, "description": "ourproject.org is a free content repository, which has translated the Free Software initiative to other fields. It includes content beyond software projects, allowing any kind of social, cultural or artistic projects to also be included.", "abbreviation": "ourproject.org", "support-links": [{"url": "https://ourproject.org/wiki/Ourproject_FAQ", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ourproject.org/docman/view.php/1/5/file5.html", "name": "How to Get Started", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Ourproject.org", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2002, "data-processes": [{"url": "https://ourproject.org/search/advanced_search.php?group_id=1", "name": "Advanced Search", "type": "data access"}, {"url": "https://ourproject.org/softwaremap/trove_list.php", "name": "Browse by Subject", "type": "data access"}]}, "legacy-ids": ["biodbcore-001798", "bsg-d001798"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: ourproject.org", "abbreviation": "ourproject.org", "url": "https://fairsharing.org/10.25504/FAIRsharing.c51ae5", "doi": "10.25504/FAIRsharing.c51ae5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ourproject.org is a free content repository, which has translated the Free Software initiative to other fields. It includes content beyond software projects, allowing any kind of social, cultural or artistic projects to also be included.", "publications": [], "licence-links": [{"licence-name": "ourproject.org Approved Licences List", "licence-id": 643, "link-id": 1892, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1893, "relation": "undefined"}, {"licence-name": "GNU Free Documentation License", "licence-id": 353, "link-id": 1895, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1896, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1897, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3282", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-28T11:54:05.000Z", "updated-at": "2022-02-08T10:36:16.592Z", "metadata": {"doi": "10.25504/FAIRsharing.d7400b", "name": "Open Source Development Network", "status": "ready", "contacts": [{"contact-email": "admin@osdn.net"}], "homepage": "https://osdn.net", "identifier": 3282, "description": "The Open Source Development Network (OSDN) is a free-of-charge service and software repository for open source software developers. OSDN includes a SVN/Git/Mercurial/Bazaar/CVS version-controlled repository, mailing list, bug tracking system, bulletin board and forum, web site hosting, release file download service, permanent file archive, backup, and a shell environment. It was originally known as SourceForge.JP, and changed its name in 2015.", "abbreviation": "OSDN", "access-points": [{"url": "https://osdn.net/projects/osdn-codes/wiki/APIGuide", "name": "OSDN API", "type": "REST"}], "support-links": [{"url": "https://osdn.net/mag/", "name": "Magazine", "type": "Blog/News"}, {"url": "https://osdn.net/projects/docs-en/news/", "name": "News", "type": "Blog/News"}, {"url": "https://osdn.net/docs/Contact_us", "name": "Contact Details", "type": "Contact form"}, {"url": "https://osdn.net/projects/docs-en/ticket/", "name": "Support Forum", "type": "Forum"}, {"url": "https://osdn.net/docs/FrontPage", "name": "Help", "type": "Help documentation"}, {"url": "https://osdn.net/docs/About_OSDN", "name": "About OSDN", "type": "Help documentation"}, {"url": "https://osdn.net/develop/", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/OSDN", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2002, "data-processes": [{"url": "https://osdn.net/softwaremap/trove_list.php", "name": "Search by Categories", "type": "data access"}, {"url": "https://osdn.net/search/", "name": "Search", "type": "data access"}, {"url": "https://osdn.net/top/topdl.php?type=downloads_day", "name": "Browse by Number of Downloads", "type": "data access"}, {"url": "https://osdn.net/top/", "name": "Browse by Project Rank", "type": "data access"}]}, "legacy-ids": ["biodbcore-001797", "bsg-d001797"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Subject Agnostic", "Software Engineering"], "domains": ["Software"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Open Source Development Network", "abbreviation": "OSDN", "url": "https://fairsharing.org/10.25504/FAIRsharing.d7400b", "doi": "10.25504/FAIRsharing.d7400b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Source Development Network (OSDN) is a free-of-charge service and software repository for open source software developers. OSDN includes a SVN/Git/Mercurial/Bazaar/CVS version-controlled repository, mailing list, bug tracking system, bulletin board and forum, web site hosting, release file download service, permanent file archive, backup, and a shell environment. It was originally known as SourceForge.JP, and changed its name in 2015.", "publications": [], "licence-links": [{"licence-name": "Open Source Initiative Approved Licences", "licence-id": 630, "link-id": 1793, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3286", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-05T19:05:53.000Z", "updated-at": "2021-11-24T13:18:11.486Z", "metadata": {"doi": "10.25504/FAIRsharing.yXNjR7", "name": "The American Society for Hematology Research Collaborative COVID-19 Registry for Hematologic Malignancy", "status": "ready", "contacts": [{"contact-email": "info@ashrc.org"}], "homepage": "https://www.ashresearchcollaborative.org/s/covid-19-registry", "identifier": 3286, "description": "The ASH Research Collaborative (ASH RC) COVID-19 Registry for Hematology, a global public reference tool that is part of the ASH RC Data Hub platform, captures data on individuals who test positive for COVID-19, have a hematologic condition (past or present) and/or have experienced a post-COVID-19 hematologic complication. As data are analyzed, real-time observational summaries are available via a dashboard.", "abbreviation": "ASH RC COVID-19 Registry for Hematology", "support-links": [{"url": "https://www.ashresearchcollaborative.org/s/contact-us", "type": "Contact form"}, {"url": "wawood@med.unc.edu", "name": "William A. Wood Jr", "type": "Support email"}, {"url": "https://hematology.my.salesforce.com/sfc/p/6A000000uIj9/a/3u000000LxIQ/b3jEF7T5E7WRHSpaWx9jzxczlhgo4idlQYmG662k2Fw", "name": "The ASH Research Collaborative COVID-19 Registry for Hematology", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.ashresearchcollaborative.org/s/covid-19-registry/data-summaries", "name": "Data summaries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001801", "bsg-d001801"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology", "Hematology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry"], "countries": ["United States"], "name": "FAIRsharing record for: The American Society for Hematology Research Collaborative COVID-19 Registry for Hematologic Malignancy", "abbreviation": "ASH RC COVID-19 Registry for Hematology", "url": "https://fairsharing.org/10.25504/FAIRsharing.yXNjR7", "doi": "10.25504/FAIRsharing.yXNjR7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ASH Research Collaborative (ASH RC) COVID-19 Registry for Hematology, a global public reference tool that is part of the ASH RC Data Hub platform, captures data on individuals who test positive for COVID-19, have a hematologic condition (past or present) and/or have experienced a post-COVID-19 hematologic complication. As data are analyzed, real-time observational summaries are available via a dashboard.", "publications": [], "licence-links": [{"licence-name": "ASH RC Terms of Service", "licence-id": 46, "link-id": 953, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3288", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-12T09:26:56.000Z", "updated-at": "2021-11-24T13:13:59.163Z", "metadata": {"doi": "10.25504/FAIRsharing.dc0WgQ", "name": "Coronavirus and Psoriasis Reporting Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "COVID_PSO@wakehealth.edu"}], "homepage": "https://school.wakehealth.edu/Departments/Dermatology/SECURE-Psoriasis", "identifier": 3288, "description": "Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-Psoriasis) is an international, pediatric and adult registry to monitor and report on outcomes of COVID-19 occurring in psoriasis patients.", "support-links": [{"url": "sfeldman@wakehealth.edu", "name": "Steven R. Feldman", "type": "Support email"}, {"url": "https://school.wakehealth.edu/Departments/Dermatology/SECURE-Psoriasis/FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://redcap.wakehealth.edu/redcap/surveys/?s=NHMT4LAK77", "name": "Report a case", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://school.wakehealth.edu/Departments/Dermatology/SECURE-Psoriasis/Updates-and-Data", "name": "Updates and Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001803", "bsg-d001803"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "Psoriasis", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Coronavirus and Psoriasis Reporting Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.dc0WgQ", "doi": "10.25504/FAIRsharing.dc0WgQ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-Psoriasis) is an international, pediatric and adult registry to monitor and report on outcomes of COVID-19 occurring in psoriasis patients.", "publications": [{"id": 914, "pubmed_id": 32266851, "title": "SECURE-Psoriasis: a de-identified registry of psoriasis patients diagnosed with COVID-19.", "year": 2020, "url": "http://doi.org/10.1080/09546634.2020.1753996", "authors": "Balogh EA,Heron C,Feldman SR,Huang WW", "journal": "J Dermatolog Treat", "doi": "10.1080/09546634.2020.1753996", "created_at": "2021-09-30T08:24:00.938Z", "updated_at": "2021-09-30T08:24:00.938Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3263", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-06T14:52:53.000Z", "updated-at": "2022-02-08T10:42:38.152Z", "metadata": {"doi": "10.25504/FAIRsharing.7f04e5", "name": "Emissions of atmospheric Compounds and Compilation of Ancillary Data", "status": "ready", "homepage": "https://eccad.aeris-data.fr/", "identifier": 3263, "description": "Emissions of atmospheric Compounds and Compilation of Ancillary Data (ECCAD) aims at providing scientific users with an easy access to a large number of existing datasets on surface emissions of atmospheric compounds at the global and regional scales. Data manipulation tools as well as statistical information over the different regions (climatic regions, continents, oceans, OECD regions, etc.) are also available for users.", "abbreviation": "ECCAD", "support-links": [{"url": "https://eccad.aeris-data.fr/contact-us-ask-questions/", "type": "Contact form"}, {"url": "https://eccad.aeris-data.fr/user_guide/", "name": "User guide", "type": "Help documentation"}, {"url": "https://eccad.aeris-data.fr/recommendation/", "name": "Data format", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://eccad3.sedoo.fr/", "name": "Data access", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010625", "name": "re3data:r3d100010625", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001778", "bsg-d001778"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Earth Science", "Atmospheric Science"], "domains": ["Radiation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["CO2 emission", "Greenhouse gases", "Ozone"], "countries": ["France"], "name": "FAIRsharing record for: Emissions of atmospheric Compounds and Compilation of Ancillary Data", "abbreviation": "ECCAD", "url": "https://fairsharing.org/10.25504/FAIRsharing.7f04e5", "doi": "10.25504/FAIRsharing.7f04e5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Emissions of atmospheric Compounds and Compilation of Ancillary Data (ECCAD) aims at providing scientific users with an easy access to a large number of existing datasets on surface emissions of atmospheric compounds at the global and regional scales. Data manipulation tools as well as statistical information over the different regions (climatic regions, continents, oceans, OECD regions, etc.) are also available for users.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1741", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.180Z", "metadata": {"doi": "10.25504/FAIRsharing.w2cepp", "name": "Assembling the Fungal Tree of Life", "status": "deprecated", "contacts": [{"contact-name": "Joseph Spatafora", "contact-email": "spatafoj@science.oregonstate.edu", "contact-orcid": "0000-0002-7183-1384"}], "homepage": "http://aftol.org", "citations": [], "identifier": 1741, "description": "The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life.", "abbreviation": "AFTOL", "data-processes": [{"url": "http://aftol.org/data.php;http://wasabi.lutzonilab.net/pub/alignments/download_alignments", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://aftol.org/howtosubmit.php", "name": "submit"}, {"url": "http://wasabi.lutzonilab.net/pub/blast/blastUpload", "name": "BLAST"}, {"url": "http://aftol.org/howtosubmit.php", "name": "submit"}, {"url": "http://wasabi.lutzonilab.net/pub/blast/blastUpload", "name": "BLAST"}], "deprecation-date": "2021-10-04", "deprecation-reason": "AFTOL has been decommissioned. "}, "legacy-ids": ["biodbcore-000199", "bsg-d000199"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Classification"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Assembling the Fungal Tree of Life", "abbreviation": "AFTOL", "url": "https://fairsharing.org/10.25504/FAIRsharing.w2cepp", "doi": "10.25504/FAIRsharing.w2cepp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life.", "publications": [{"id": 1581, "pubmed_id": 17486962, "title": "Assembling the Fungal Tree of Life: constructing the structural and biochemical database.", "year": 2007, "url": "http://doi.org/10.3852/mycologia.98.6.850", "authors": "Celio GJ,Padamsee M,Dentinger BT,Bauer R,McLaughlin DJ", "journal": "Mycologia", "doi": "10.3852/mycologia.98.6.850", "created_at": "2021-09-30T08:25:17.236Z", "updated_at": "2021-09-30T08:25:17.236Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 186, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1623", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.367Z", "metadata": {"doi": "10.25504/FAIRsharing.mhqkc7", "name": "GENI-ACT", "status": "ready", "contacts": [{"contact-name": "Lori Scott", "contact-email": "loriscott@augustana.edu"}], "homepage": "http://geni-act.org/", "identifier": 1623, "description": "GENI-ACT is a resource that allows the research community to collaboratively annotate bacterial genomes. Changes can be suggested to existing genomes and these alterations can be ported back to NCBI Genbank. GENI-ACT also has modules which can be used for educational purposes.", "abbreviation": "GENI-ACT", "support-links": [{"url": "http://geni-act.org/community/main/", "type": "Help documentation"}, {"url": "http://geni-act.org/about/main/", "type": "Help documentation"}, {"url": "http://www.mgan-network.org/about.html", "type": "Help documentation"}, {"url": "http://geni-act.blogspot.co.uk/p/welcome-to-geni-act-teaching-resources.html", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000079", "bsg-d000079"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Genome annotation", "Teaching material", "Crowdsourcing", "Genome"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GENI-ACT", "abbreviation": "GENI-ACT", "url": "https://fairsharing.org/10.25504/FAIRsharing.mhqkc7", "doi": "10.25504/FAIRsharing.mhqkc7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GENI-ACT is a resource that allows the research community to collaboratively annotate bacterial genomes. Changes can be suggested to existing genomes and these alterations can be ported back to NCBI Genbank. GENI-ACT also has modules which can be used for educational purposes.", "publications": [{"id": 1145, "pubmed_id": 22116063, "title": "Xanthusbase after five years expands to become Openmods.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1054", "authors": "Pratt-Szeliga PC,Skewes AD,Yan J,Welch LG,Welch RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1054", "created_at": "2021-09-30T08:24:27.321Z", "updated_at": "2021-09-30T11:29:00.727Z"}, {"id": 1146, "pubmed_id": 17090585, "title": "Xanthusbase: adapting wikipedia principles to a model organism database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl881", "authors": "Arshinoff BI,Suen G,Just EM,Merchant SM,Kibbe WA,Chisholm RL,Welch RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl881", "created_at": "2021-09-30T08:24:27.420Z", "updated_at": "2021-09-30T11:29:00.826Z"}, {"id": 1447, "pubmed_id": 20711478, "title": "Incorporating genomics and bioinformatics across the life sciences curriculum.", "year": 2010, "url": "http://doi.org/10.1371/journal.pbio.1000448", "authors": "Ditty JL,Kvaal CA,Goodner B,Freyermuth SK,Bailey C,Britton RA,Gordon SG,Heinhorst S,Reed K,Xu Z,Sanders-Lorenz ER,Axen S,Kim E,Johns M,Scott K,Kerfeld CA", "journal": "PLoS Biol", "doi": "10.1371/journal.pbio.1000448", "created_at": "2021-09-30T08:25:01.751Z", "updated_at": "2021-09-30T08:25:01.751Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1945", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:42.731Z", "metadata": {"doi": "10.25504/FAIRsharing.j0t0pe", "name": "Human Protein Atlas", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "contact@proteinatlas.org", "contact-orcid": "0000-0002-4858-8056"}], "homepage": "https://www.proteinatlas.org/", "citations": [{"doi": "10.1126/science.1260419", "pubmed-id": 25613900, "publication-id": 780}], "identifier": 1945, "description": "The Human Protein Atlas (HPA) portal is a publicly available database with millions of high-resolution images showing the spatial distribution of proteins in a number of different wild-type tissues, cancer types and human cell lines. The goal of the HPA is to map all the human proteins in cells, tissues and organs using an integration of various omics technologies, including antibody-based imaging, mass spectrometry-based proteomics, transcriptomics and systems biology. The HPA is composed of six parts: the Tissue Atlas, the Single Cell Type Atlas, the Pathology Atlas, the Blood Atlas, the Brain Atlas, and the Cell Atlas.", "abbreviation": "HPA", "support-links": [{"url": "https://www.proteinatlas.org/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.proteinatlas.org/about/help", "name": "Help and FAQ", "type": "Help documentation"}, {"url": "https://www.proteinatlas.org/learn/videos", "name": "Educational Videos", "type": "Help documentation"}, {"url": "https://www.proteinatlas.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/ProteinAtlas", "name": "@ProteinAtlas", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "https://www.proteinatlas.org/about/download", "name": "Download", "type": "data release"}, {"url": "https://www.proteinatlas.org/about/submission", "name": "Submit", "type": "data curation"}, {"url": "https://www.proteinatlas.org/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010931", "name": "re3data:r3d100010931", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006710", "name": "SciCrunch:RRID:SCR_006710", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000411", "bsg-d000411"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Transcriptomics", "Biomedical Science", "Systems Biology"], "domains": ["Molecular structure", "Bioimaging", "Medical imaging", "Cell line", "Cancer", "Protein localization", "Gene expression", "Antibody", "Cellular localization", "Protein expression", "Mass spectrometry assay", "Structure", "Protein", "Blood", "Tissue", "Brain"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: Human Protein Atlas", "abbreviation": "HPA", "url": "https://fairsharing.org/10.25504/FAIRsharing.j0t0pe", "doi": "10.25504/FAIRsharing.j0t0pe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Protein Atlas (HPA) portal is a publicly available database with millions of high-resolution images showing the spatial distribution of proteins in a number of different wild-type tissues, cancer types and human cell lines. The goal of the HPA is to map all the human proteins in cells, tissues and organs using an integration of various omics technologies, including antibody-based imaging, mass spectrometry-based proteomics, transcriptomics and systems biology. The HPA is composed of six parts: the Tissue Atlas, the Single Cell Type Atlas, the Pathology Atlas, the Blood Atlas, the Brain Atlas, and the Cell Atlas.", "publications": [{"id": 16, "pubmed_id": 18669619, "title": "A genecentric Human Protein Atlas for expression profiles based on antibodies.", "year": 2008, "url": "http://doi.org/10.1074/mcp.R800013-MCP200", "authors": "Berglund L., Bj\u00f6rling E., Oksvold P., Fagerberg L., Asplund A., Szigyarto CA., Persson A., Ottosson J., Wern\u00e9rus H., Nilsson P., Lundberg E., Sivertsson A., Navani S., Wester K., Kampf C., Hober S., Pont\u00e9n F., Uhl\u00e9n M.,", "journal": "Mol. Cell Proteomics", "doi": "10.1074/mcp.R800013-MCP200", "created_at": "2021-09-30T08:22:22.179Z", "updated_at": "2021-09-30T08:22:22.179Z"}, {"id": 637, "pubmed_id": 18853439, "title": "The Human Protein Atlas--a tool for pathology.", "year": 2008, "url": "http://doi.org/10.1002/path.2440", "authors": "Ponten F,Jirstrom K,Uhlen M", "journal": "J Pathol", "doi": "10.1002/path.2440", "created_at": "2021-09-30T08:23:30.129Z", "updated_at": "2021-09-30T08:23:30.129Z"}, {"id": 654, "pubmed_id": 27044256, "title": "Transcriptomics resources of human tissues and organs.", "year": 2016, "url": "http://doi.org/10.15252/msb.20155865", "authors": "Uhlen M,Hallstrom BM,Lindskog C,Mardinoglu A,Ponten F,Nielsen J", "journal": "Mol Syst Biol", "doi": "10.15252/msb.20155865", "created_at": "2021-09-30T08:23:32.186Z", "updated_at": "2021-09-30T08:23:32.186Z"}, {"id": 780, "pubmed_id": 25613900, "title": "Tissue-based map of the human proteome.", "year": 2015, "url": "http://doi.org/10.1126/science.1260419", "authors": "Uhlen M,Fagerberg L,Hallstrom BM et al.", "journal": "Science", "doi": "10.1126/science.1260419", "created_at": "2021-09-30T08:23:45.944Z", "updated_at": "2021-09-30T08:23:45.944Z"}, {"id": 825, "pubmed_id": 28818916, "title": "A pathology atlas of the human cancer transcriptome", "year": 2017, "url": "http://doi.org/eaan2507", "authors": "Mathias Uhlen, Cheng Zhang, Sunjae Lee et al.", "journal": "Science", "doi": "10.1126/science.aan2507", "created_at": "2021-09-30T08:23:50.946Z", "updated_at": "2021-09-30T08:23:50.946Z"}, {"id": 1982, "pubmed_id": 21139605, "title": "Towards a knowledge-based Human Protein Atlas.", "year": 2010, "url": "http://doi.org/10.1038/nbt1210-1248", "authors": "Uhlen M,Oksvold P,Fagerberg L,Lundberg E,Jonasson K,Forsberg M,Zwahlen M,Kampf C,Wester K,Hober S,Wernerus H,Bjorling L,Ponten F", "journal": "Nat Biotechnol", "doi": "10.1038/nbt1210-1248", "created_at": "2021-09-30T08:26:03.057Z", "updated_at": "2021-09-30T08:26:03.057Z"}, {"id": 2076, "pubmed_id": 16127175, "title": "A human protein atlas for normal and cancer tissues based on antibody proteomics.", "year": 2005, "url": "http://doi.org/10.1074/mcp.M500279-MCP200", "authors": "Uhlen M,Bjorling E,Agaton C et al.", "journal": "Mol Cell Proteomics", "doi": "10.1074/mcp.M500279-MCP200", "created_at": "2021-09-30T08:26:14.057Z", "updated_at": "2021-09-30T08:26:14.057Z"}, {"id": 2470, "pubmed_id": 28495876, "title": "A subcellular map of the human proteome.", "year": 2017, "url": "http://doi.org/eaal3321", "authors": "Thul PJ,Akesson L,Wiking M et al.", "journal": "Science", "doi": "eaal3321", "created_at": "2021-09-30T08:27:02.902Z", "updated_at": "2021-09-30T08:27:02.902Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 918, "relation": "undefined"}, {"licence-name": "HPA Licence and Citation", "licence-id": 402, "link-id": 929, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1589", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:43.479Z", "metadata": {"doi": "10.25504/FAIRsharing.j7esqq", "name": "GeneDB", "status": "deprecated", "contacts": [{"contact-email": "genedb-help@sanger.ac.uk"}], "homepage": "http://www.genedb.org/", "identifier": 1589, "description": "GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", "abbreviation": "GeneDB", "access-points": [{"url": "http://www.genedb.org/services", "name": "soap", "type": "SOAP"}, {"url": "http://www.genedb.org/services/#services", "name": "rest", "type": "REST"}], "support-links": [{"url": "http://www.genedb.org/Page/genedbFAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.genedb.org/Page/aboutUs", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/GeneDB", "type": "Wikipedia"}], "year-creation": 2003, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(XML)", "type": "data access"}, {"url": "ftp://bioinformatica.biomedicas.unam.mx/TsM1_13.12.11/", "name": "Download", "type": "data access"}, {"url": "http://www.genedb.org/Page/jbrowse", "name": "Browse", "type": "data access"}, {"url": "http://www.genedb.org/QueryList", "name": "Search", "type": "data access"}, {"url": "http://www.genedb.org/Query/quickSearch?taxons=", "name": "Search", "type": "data access"}, {"url": "http://www.genedb.org/category", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://www.sanger.ac.uk/science/tools/artemis", "name": "Artemis"}, {"url": "http://www.genedb.org/web-artemis/", "name": "Web-Artemis"}, {"url": "http://www.sanger.ac.uk/science/tools/artemis-comparison-tool-act", "name": "ACT"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010626", "name": "re3data:r3d100010626", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002774", "name": "SciCrunch:RRID:SCR_002774", "portal": "SciCrunch"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available, and its data migrated to other resources. (See https://www.genedb.org/)"}, "legacy-ids": ["biodbcore-000044", "bsg-d000044"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Pathogen", "Sequence", "Genome"], "taxonomies": ["Bacteria", "Helmintha", "Protozoa", "Viruses"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: GeneDB", "abbreviation": "GeneDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.j7esqq", "doi": "10.25504/FAIRsharing.j7esqq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", "publications": [{"id": 73, "pubmed_id": 14681429, "title": "GeneDB: a resource for prokaryotic and eukaryotic organisms.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh007", "authors": "Hertz-Fowler C., Peacock CS., Wood V., Aslett M., Kerhornou A., Mooney P., Tivey A., Berriman M., Hall N., Rutherford K., Parkhill J., Ivens AC., Rajandream MA., Barrell B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh007", "created_at": "2021-09-30T08:22:28.050Z", "updated_at": "2021-09-30T08:22:28.050Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 2.5 Generic (CC BY-NC-ND 2.5)", "licence-id": 175, "link-id": 137, "relation": "undefined"}, {"licence-name": "Sanger Terms and Conditions of Use", "licence-id": 725, "link-id": 138, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3567", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-05T17:11:39.801Z", "updated-at": "2022-02-08T10:45:57.162Z", "metadata": {"doi": "10.25504/FAIRsharing.f12f67", "name": "Brain-CODE", "status": "ready", "contacts": [{"contact-name": "General Help", "contact-email": "help@braincode.ca", "contact-orcid": null}], "homepage": "https://braincode.ca", "citations": [], "identifier": 3567, "description": "Brain-CODE is a large-scale informatics platform that manages the acquisition and storage of multidimensional data collected from participants with a variety of brain disorders. Brain-CODE was created by the Ontario Brain Institute (https://braininstitute.ca) in Ontario, Canada. Access to all data (both public and controlled) requires registration.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://www.braincode.ca/content/faq", "name": "General FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.braincode.ca/content/getting-started", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://www.braincode.ca/content/about-brain-code", "name": "About Brain-CODE", "type": "Help documentation"}, {"url": "https://www.braincode.ca/content/research-programs", "name": "Research Programs", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.braincode.ca/content/faq#toc-14", "name": "Registration required for data entry", "type": "data curation"}, {"url": "https://www.braincode.ca/content/faq#toc-14", "name": "Registration required for data access", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012181", "name": "re3data:r3d100012181", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cellular Neuroscience", "Neurogenetics", "Demographics", "Neurophysiology", "Neurobiology", "Bioinformatics", "Health Services Research", "Developmental Psychology", "Developmental Neurobiology", "Clinical Studies", "Computational Neuroscience", "Medicines Research and Development", "Molecular Neuroscience", "Cognitive Neuroscience", "Human Genetics", "Community Care", "Comparative Neurobiology", "Neurology", "Social and Behavioural Science", "Systemic Neuroscience", "Biomedical Science", "Molecular Neurology", "Translational Medicine", "Neuroscience", "Preclinical Studies"], "domains": ["Biobank", "Medical imaging", "Animal research", "Neuron", "Parkinson's disease", "Epilepsy", "Functional magnetic resonance imaging", "Aging", "Sleep", "Cognition", "Diffusion tensor imaging", "Biological sample", "Electroencephalography", "Digital curation", "Brain", "Genetic disorder", "Mental health", "Brain imaging"], "taxonomies": ["Mammalia"], "user-defined-tags": ["Environmental Health", "Neuroanatomy", "Neuroinformatics", "neurology disease"], "countries": ["Canada"], "name": "FAIRsharing record for: Brain-CODE", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.f12f67", "doi": "10.25504/FAIRsharing.f12f67", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Brain-CODE is a large-scale informatics platform that manages the acquisition and storage of multidimensional data collected from participants with a variety of brain disorders. Brain-CODE was created by the Ontario Brain Institute (https://braininstitute.ca) in Ontario, Canada. Access to all data (both public and controlled) requires registration.", "publications": [], "licence-links": [{"licence-name": "Brain-CODE Terms of Use", "licence-id": 883, "link-id": 2458, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2815", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-05T14:24:15.000Z", "updated-at": "2021-11-24T13:14:56.709Z", "metadata": {"doi": "10.25504/FAIRsharing.HZcqfR", "name": "UniCarb-DR", "status": "ready", "contacts": [{"contact-name": "Niclas Karlsson", "contact-email": "niclas.karlsson@medkem.gu.se", "contact-orcid": "0000-0002-3045-2628"}], "homepage": "http://www.unicarb-dr.org", "identifier": 2815, "description": "A repository of glycans with associated MS information and spectra. The repository allows researcher to submit their glycomics MS data for public display. The data is not curated by other than then data provider. Curated data will be transfered to UniCarb-DR", "abbreviation": "UniCarb-DR", "year-creation": 2018, "data-processes": [{"url": "https://unicarb-dr.biomedicine.gu.se/generate", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001314", "bsg-d001314"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Glycomics", "Biomedical Science"], "domains": ["Mass spectrum"], "taxonomies": ["All"], "user-defined-tags": ["Glycome"], "countries": ["Sweden", "Australia", "Switzerland", "Japan"], "name": "FAIRsharing record for: UniCarb-DR", "abbreviation": "UniCarb-DR", "url": "https://fairsharing.org/10.25504/FAIRsharing.HZcqfR", "doi": "10.25504/FAIRsharing.HZcqfR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A repository of glycans with associated MS information and spectra. The repository allows researcher to submit their glycomics MS data for public display. The data is not curated by other than then data provider. Curated data will be transfered to UniCarb-DR", "publications": [{"id": 2538, "pubmed_id": 31332201, "title": "Towards a standardized bioinformatics infrastructure for N- and O-glycomics.", "year": 2019, "url": "http://doi.org/10.1038/s41467-019-11131-x", "authors": "Rojas-Macias MA,Mariethoz J,Andersson P,Jin C,Venkatakrishnan V,Aoki NP,Shinmachi D,Ashwood C,Madunic K,Zhang T,Miller RL,Horlacher O,Struwe WB,Watanabe Y,Okuda S,Levander F,Kolarich D,Rudd PM,Wuhrer M,Kettner C,Packer NH,Aoki-Kinoshita KF,Lisacek F,Karlsson NG", "journal": "Nat Commun", "doi": "10.1038/s41467-019-11131-x", "created_at": "2021-09-30T08:27:11.294Z", "updated_at": "2021-09-30T08:27:11.294Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported (CC BY-NC-ND 3.0 )", "licence-id": 178, "link-id": 1447, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1603", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.315Z", "metadata": {"doi": "10.25504/FAIRsharing.1ex4pm", "name": "MAPPER-2", "status": "deprecated", "contacts": [{"contact-name": "Help desk", "contact-email": "mapper-bugs@chip.org"}], "homepage": "http://genome.ufl.edu/mapperdb", "identifier": 1603, "description": "This resource provides information primarily on the upstream non-coding sequence data of genes in 3 genomes which gives insight into the transcription factors binding sites (TFBSs). For each transcript, the region scanned extends from 10,000bp upstream of the transcript start to 50bp downstream of the coding sequence start. Therefore, the database contains putative binding sites in the gene promoter and in the initial introns and non-coding exons. Information displayed for each putative binding site includes the transcription factor name, its position (absolute on the chromosome, or relative to the gene), the score of the prediction, and the region of the gene the site belongs to. If the selected gene has homologs in any of the other two organisms, the program optionally displays the putative TFBSs in the homologs.", "abbreviation": "mapperdb", "year-creation": 2005, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "automated annotation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "programatic interface (DB-RPC]", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000058", "bsg-d000058"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Transcription factor", "Exon", "Intron", "Genome"], "taxonomies": ["Drosophila melanogaster", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MAPPER-2", "abbreviation": "mapperdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.1ex4pm", "doi": "10.25504/FAIRsharing.1ex4pm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource provides information primarily on the upstream non-coding sequence data of genes in 3 genomes which gives insight into the transcription factors binding sites (TFBSs). For each transcript, the region scanned extends from 10,000bp upstream of the transcript start to 50bp downstream of the coding sequence start. Therefore, the database contains putative binding sites in the gene promoter and in the initial introns and non-coding exons. Information displayed for each putative binding site includes the transcription factor name, its position (absolute on the chromosome, or relative to the gene), the score of the prediction, and the region of the gene the site belongs to. If the selected gene has homologs in any of the other two organisms, the program optionally displays the putative TFBSs in the homologs.", "publications": [{"id": 95, "pubmed_id": 15799782, "title": "MAPPER: a search engine for the computational identification of putative transcription factor binding sites in multiple genomes.", "year": 2005, "url": "http://doi.org/10.1186/1471-2105-6-79", "authors": "Marinescu VD., Kohane IS., Riva A.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-6-79", "created_at": "2021-09-30T08:22:30.739Z", "updated_at": "2021-09-30T08:22:30.739Z"}, {"id": 96, "pubmed_id": 15608292, "title": "The MAPPER database: a multi-genome catalog of putative transcription factor binding sites.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki103", "authors": "Marinescu VD., Kohane IS., Riva A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki103", "created_at": "2021-09-30T08:22:30.825Z", "updated_at": "2021-09-30T08:22:30.825Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1619", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.268Z", "metadata": {"doi": "10.25504/FAIRsharing.k6a8e5", "name": "Newt-omics", "status": "ready", "contacts": [{"contact-name": "Thomas Braun", "contact-email": "Thomas.Braun@mpi-bn.mpg.de", "contact-orcid": "0000-0002-6165-4804"}], "homepage": "http://newt-omics.mpi-bn.mpg.de", "identifier": 1619, "description": "A comprehensive repository for omics data from the red spotted newt Notophthalmus viridescens from high throughput experiments. Newt-Omics aims to provide a comprehensive platform of expressed genes during tissue regeneration, including extensive annotations, expression data and experimentally verified peptide sequences with yet no homology to other publically available gene sequences. The goal is to obtain a detailed understanding of the molecular processes underlying tissue regeneration in the newt,that may lead to the development of approaches, efficiently stimulating regenerative pathways in mammalians.", "abbreviation": "Newt-omics", "support-links": [{"url": "http://newt-omics.mpi-bn.mpg.de/tutorial.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "newer versions are compatible with older versions", "type": "data versioning"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "MySQL database dump", "type": "data access"}], "associated-tools": [{"url": "http://newtomics.mpi-bn.mpg.de/blastformular2.php", "name": "NCBI-Blast 2.2.29+"}]}, "legacy-ids": ["biodbcore-000075", "bsg-d000075"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Gene Ontology enrichment", "Annotation", "Protein identification", "Peptide", "DNA sequencing assay", "Transcript", "Complementary DNA"], "taxonomies": ["Notophthalmus viridescens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Newt-omics", "abbreviation": "Newt-omics", "url": "https://fairsharing.org/10.25504/FAIRsharing.k6a8e5", "doi": "10.25504/FAIRsharing.k6a8e5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A comprehensive repository for omics data from the red spotted newt Notophthalmus viridescens from high throughput experiments. Newt-Omics aims to provide a comprehensive platform of expressed genes during tissue regeneration, including extensive annotations, expression data and experimentally verified peptide sequences with yet no homology to other publically available gene sequences. The goal is to obtain a detailed understanding of the molecular processes underlying tissue regeneration in the newt,that may lead to the development of approaches, efficiently stimulating regenerative pathways in mammalians.", "publications": [{"id": 112, "pubmed_id": 20047682, "title": "Analysis of newly established EST databases reveals similarities between heart regeneration in newt and fish.", "year": 2010, "url": "http://doi.org/10.1186/1471-2164-11-4", "authors": "Borchardt T., Looso M., Bruckskotten M., Weis P., Kruse J., Braun T.,", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-11-4", "created_at": "2021-09-30T08:22:32.465Z", "updated_at": "2021-09-30T08:22:32.465Z"}, {"id": 619, "pubmed_id": 23425577, "title": "A de novo assembly of the newt transcriptome combined with proteomic validation identifies new protein families expressed during tissue regeneration.", "year": 2013, "url": "http://doi.org/10.1186/gb-2013-14-2-r16", "authors": "Looso M, Preussner J, Sousounis K, Bruckskotten M, Michel CS, Lignelli E, Reinhardt R, H\u00f6ffner S, Kr\u00fcger M, Tsonis PA, Borchardt T, Braun T", "journal": "Genome Biol.", "doi": "doi:10.1186/gb-2013-14-2-r16", "created_at": "2021-09-30T08:23:28.128Z", "updated_at": "2021-09-30T08:23:28.128Z"}, {"id": 1444, "pubmed_id": 20139370, "title": "Advanced identification of proteins in uncharacterized proteomes by pulsed in vivo stable isotope labeling-based mass spectrometry.", "year": 2010, "url": "http://doi.org/10.1074/mcp.M900426-MCP200", "authors": "Looso M., Borchardt T., Kr\u00fcger M., Braun T.,", "journal": "Mol. Cell Proteomics", "doi": "10.1074/mcp.M900426-MCP200", "created_at": "2021-09-30T08:25:01.443Z", "updated_at": "2021-09-30T08:25:01.443Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2083", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:44.417Z", "metadata": {"doi": "10.25504/FAIRsharing.kexkq9", "name": "CarpeDB", "status": "ready", "contacts": [{"contact-name": "Bryan Herren", "contact-email": "carpedb@bama.ua.edu"}], "homepage": "http://www.carpedb.ua.edu", "identifier": 2083, "description": "CarpeDB serves as a novel source for epilepsy researchers by featuring scores of \"epilepsy genes\" and associated publications in one locus. Furthermore, multiple genes implicated in epilepsy are also implicated in other human disorders.", "abbreviation": "CarpeDB", "support-links": [{"url": "http://carpedb.ua.edu/searchinstruct.cfm", "type": "Help documentation"}], "data-processes": [{"url": "http://carpedb.ua.edu/search.cfm", "name": "browse", "type": "data access"}, {"url": "http://carpedb.ua.edu/", "name": "search", "type": "data access"}, {"url": "http://carpedb.ua.edu/insertgene.cfm", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000551", "bsg-d000551"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Epilepsy", "Publication", "Disorder", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CarpeDB", "abbreviation": "CarpeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.kexkq9", "doi": "10.25504/FAIRsharing.kexkq9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CarpeDB serves as a novel source for epilepsy researchers by featuring scores of \"epilepsy genes\" and associated publications in one locus. Furthermore, multiple genes implicated in epilepsy are also implicated in other human disorders.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 722, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1628", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.554Z", "metadata": {"doi": "10.25504/FAIRsharing.jskz3k", "name": "Plantmetabolomics.org", "status": "deprecated", "homepage": "http://www.plantmetabolomics.org", "identifier": 1628, "description": "Arabidopsis metabolomics database which provides researchers with resources to investigate the function of genes and metabolites.", "abbreviation": "Plantmetabolomics.org", "year-creation": 2008, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt,CSV,images)", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000084", "bsg-d000084"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Mass spectrum", "Image", "Stereo microscope"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Plantmetabolomics.org", "abbreviation": "Plantmetabolomics.org", "url": "https://fairsharing.org/10.25504/FAIRsharing.jskz3k", "doi": "10.25504/FAIRsharing.jskz3k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Arabidopsis metabolomics database which provides researchers with resources to investigate the function of genes and metabolites.", "publications": [{"id": 1395, "pubmed_id": 20147492, "title": "PlantMetabolomics.org: a web portal for plant metabolomics experiments.", "year": 2010, "url": "http://doi.org/10.1104/pp.109.151027", "authors": "Bais P., Moon SM., He K., Leitao R., Dreher K., Walk T., Sucaet Y., Barkan L., Wohlgemuth G., Roth MR., Wurtele ES., Dixon P., Fiehn O., Lange BM., Shulaev V., Sumner LW., Welti R., Nikolau BJ., Rhee SY., Dickerson JA.,", "journal": "Plant Physiol.", "doi": "10.1104/pp.109.151027", "created_at": "2021-09-30T08:24:55.968Z", "updated_at": "2021-09-30T08:24:55.968Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2738", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T19:27:50.000Z", "updated-at": "2022-02-08T10:29:35.965Z", "metadata": {"doi": "10.25504/FAIRsharing.a19578", "name": "Enzyme nomenclature database", "status": "ready", "contacts": [{"contact-name": "Enzyme helpdesk", "contact-email": "enzyme@expasy.org", "contact-orcid": "0000-0003-2826-6444"}], "homepage": "https://enzyme.expasy.org/", "citations": [{"doi": "10.1093/nar/28.1.304", "pubmed-id": 10592255, "publication-id": 2509}], "identifier": 2738, "description": "ENZYME is a repository of information relative to the nomenclature of enzymes. It is primarily based on the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology (IUBMB) and it describes each type of characterized enzyme for which an EC (Enzyme Commission) number has been provided. The database is complete and up to date. It is regularly updated to reflect updates and additions to the nomenclature.", "abbreviation": "ENZYME", "support-links": [{"url": "https://enzyme.expasy.org/enzuser.txt", "name": "ENZYME User Manual", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "ftp://ftp.expasy.org/databases/enzyme", "name": "FTP", "type": "data release"}, {"url": "https://enzyme.expasy.org/enzyme-byclass.html", "name": "Browse by EC Number / Class", "type": "data access"}, {"url": "https://enzyme.expasy.org/enzyme-bycofactor.html", "name": "Browse by Cofactor", "type": "data access"}, {"url": "http://enzyme-database.org/newform.php", "name": "Report form for an enzyme not currently included in the enzyme list", "type": "data curation"}, {"url": "http://enzyme-database.org/updateform.php", "name": "Report form for an error or update to an existing enzyme entry", "type": "data curation"}, {"url": "https://enzyme.expasy.org/enzyme-search-ec.html", "name": "Enzyme Search", "type": "data access"}, {"url": "https://enzyme.expasy.org/enzyme-byname.html", "name": "Search by Name", "type": "data access"}, {"url": "https://enzyme.expasy.org/enzyme-bycomment.html", "name": "Comments Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001236", "bsg-d001236"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Biochemistry", "Enzymology", "Biology"], "domains": ["Enzyme Commission number", "Catalytic activity", "Enzyme", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Enzyme nomenclature database", "abbreviation": "ENZYME", "url": "https://fairsharing.org/10.25504/FAIRsharing.a19578", "doi": "10.25504/FAIRsharing.a19578", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ENZYME is a repository of information relative to the nomenclature of enzymes. It is primarily based on the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology (IUBMB) and it describes each type of characterized enzyme for which an EC (Enzyme Commission) number has been provided. The database is complete and up to date. It is regularly updated to reflect updates and additions to the nomenclature.", "publications": [{"id": 2509, "pubmed_id": 10592255, "title": "The ENZYME database in 2000.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.304", "authors": "Bairoch A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.304", "created_at": "2021-09-30T08:27:07.898Z", "updated_at": "2021-09-30T11:29:38.486Z"}], "licence-links": [{"licence-name": "ExPASy Terms of Use", "licence-id": 305, "link-id": 234, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3281", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-23T13:51:32.000Z", "updated-at": "2022-02-08T10:54:59.705Z", "metadata": {"doi": "10.25504/FAIRsharing.45a10e", "name": "NeuronDB", "status": "ready", "contacts": [{"contact-name": "NeuronDB Contact", "contact-email": "senselab_admin@mailman.yale.edu"}], "homepage": "https://senselab.med.yale.edu/NeuronDB", "citations": [], "identifier": 3281, "description": "NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", "abbreviation": "NeuronDB", "data-curation": {}, "support-links": [{"url": "https://senselab.med.yale.edu/NeuronDB/ndbFAQ", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://senselab.med.yale.edu/NeuronDB/tutorial", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "https://senselab.med.yale.edu/NeuronDB/NeuronList", "name": "Browse by neurons", "type": "data access"}, {"url": "https://senselab.med.yale.edu/NeuronDB/ndbRegions", "name": "Brows by brain region", "type": "data access"}, {"url": "https://senselab.med.yale.edu/NeuronDB/NeuronalCurrents", "name": "Browse Neuronal Ionic Currents", "type": "data access"}, {"url": "https://senselab.med.yale.edu/NeuronDB/NeuronalReceptors", "name": "Browse Receptor Families", "type": "data access"}, {"url": "https://senselab.med.yale.edu/NeuronDB/Neurotransmitters", "name": "browse Neurotransmitters Families", "type": "data access"}, {"url": "https://senselab.med.yale.edu/NeuronDB/NeuronCanForms", "name": "Browse Canonical Forms", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001796", "bsg-d001796"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cellular Neuroscience", "Neurophysiology", "Neurobiology", "Computational Neuroscience", "Molecular Neuroscience", "Comparative Neurobiology"], "domains": ["Neuron", "Ion channel activity", "Brain imaging"], "taxonomies": ["Animalia"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NeuronDB", "abbreviation": "NeuronDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.45a10e", "doi": "10.25504/FAIRsharing.45a10e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2490", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-02T11:07:51.000Z", "updated-at": "2021-11-24T13:20:03.772Z", "metadata": {"doi": "10.25504/FAIRsharing.ym3jjm", "name": "GWIPS-viz", "status": "ready", "contacts": [{"contact-name": "Audrey Michel", "contact-email": "audreymannion@gmail.com", "contact-orcid": "0000-0002-6421-7036"}], "homepage": "http://gwips.ucc.ie/", "identifier": 2490, "description": "GWIPS-viz is a freely available on-line genome browser which provides pre-populated ribosome profiling (Ribo-seq) and mRNA-seq tracks from published studies.", "abbreviation": "GWIPS-viz", "support-links": [{"url": "http://gwips.ucc.ie/Forum/", "name": "GWIPS-viz forum", "type": "Forum"}, {"url": "https://gwips.ucc.ie/goldenPath/help/hgTracksHelp_GWIPS.html", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://gwips.ucc.ie/cgi-bin/hgGateway", "name": "Genome browser", "type": "data access"}, {"url": "http://trips.ucc.ie/", "name": "Transcriptome browser", "type": "data access"}, {"url": "https://gwips.ucc.ie/downloads/index.html", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://ribogalaxy.ucc.ie/", "name": "RiboGalaxy"}]}, "legacy-ids": ["biodbcore-000972", "bsg-d000972"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Transcriptomics"], "domains": ["Expression data", "Translation initiation", "Gene expression", "Regulation of gene expression", "RNA sequencing", "Transcript", "Genome"], "taxonomies": ["Arabidopsis thaliana", "Bacillus subtilis", "Bacteriophage lambda", "Caenorhabditis elegans", "Caulobacter crescentus", "Danio rerio", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Human herpesvirus 5 strain Merlin", "Mus musculus", "Neurospora crassa", "Plasmodium falciparum", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Staphylococcus aureus", "Streptomyces coelicolor", "Trypanosoma brucei", "Xenopus laevis", "Zea mays"], "user-defined-tags": ["Translatomics"], "countries": ["Ireland"], "name": "FAIRsharing record for: GWIPS-viz", "abbreviation": "GWIPS-viz", "url": "https://fairsharing.org/10.25504/FAIRsharing.ym3jjm", "doi": "10.25504/FAIRsharing.ym3jjm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GWIPS-viz is a freely available on-line genome browser which provides pre-populated ribosome profiling (Ribo-seq) and mRNA-seq tracks from published studies.", "publications": [{"id": 394, "pubmed_id": 28977460, "title": "GWIPS-viz: 2018 update.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx790", "authors": "Michel AM,Kiniry SJ,O'Connor PBF,Mullan JP,Baranov PV", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx790", "created_at": "2021-09-30T08:23:02.810Z", "updated_at": "2021-09-30T11:28:46.225Z"}, {"id": 395, "pubmed_id": 29927076, "title": "The GWIPS-viz Browser.", "year": 2018, "url": "http://doi.org/10.1002/cpbi.50", "authors": "Kiniry SJ,Michel AM,Baranov PV", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/cpbi.50", "created_at": "2021-09-30T08:23:02.934Z", "updated_at": "2021-09-30T08:23:02.934Z"}, {"id": 2243, "pubmed_id": 24185699, "title": "GWIPS-viz: development of a ribo-seq genome browser.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1035", "authors": "Michel AM, Fox G, M Kiran A, De Bo C, O'Connor PB, Heaphy SM, Mullan JP, Donohue CA, Higgins DG, Baranov PV.", "journal": "Nucleic Acids Res. 2014 Jan;42(Database issue):D859-64", "doi": "10.1093/nar/gkt1035", "created_at": "2021-09-30T08:26:32.831Z", "updated_at": "2021-09-30T08:26:32.831Z"}, {"id": 2675, "pubmed_id": 25736862, "title": "GWIPS-viz as a tool for exploring ribosome profiling evidence supporting the synthesis of alternative proteoforms.", "year": 2015, "url": "http://doi.org/10.1002/pmic.201400603", "authors": "Michel AM,Ahern AM,Donohue CA,Baranov PV", "journal": "Proteomics", "doi": "10.1002/pmic.201400603", "created_at": "2021-09-30T08:27:28.432Z", "updated_at": "2021-09-30T08:27:28.432Z"}], "licence-links": [{"licence-name": "GWIPS-viz Conditions of Use", "licence-id": 372, "link-id": 1574, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1688", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:34.268Z", "metadata": {"doi": "10.25504/FAIRsharing.490xfb", "name": "Stem Cell Discovery Engine", "status": "deprecated", "contacts": [{"contact-name": "Philippe Rocca-Serra", "contact-email": "philippe.rocca-serra@oerc.ox.ac.uk", "contact-orcid": "0000-0001-9853-5668"}], "homepage": "http://discovery.hsci.harvard.edu/", "identifier": 1688, "description": "Comparison system for cancer stem cell analysis", "abbreviation": "SCDE", "year-creation": 2011, "data-processes": [{"name": "continuous release", "type": "data release"}, {"name": "monthly release [data dumps]", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "web service (SOAP)", "type": "data access"}, {"url": "http://stemcellcommons.org/search/all-experiments", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://discovery.hsci.harvard.edu/galaxy/", "name": "Galaxy gene list comparisons"}], "deprecation-date": "2015-04-21", "deprecation-reason": "This resource is no longer maintained, and its data has now been merged with Stem Cell Commons as stated on the SCDE website (http://discovery.hsci.harvard.edu/)."}, "legacy-ids": ["biodbcore-000144", "bsg-d000144"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Anatomy", "Life Science", "Biomedical Science"], "domains": ["Citation", "Model organism", "Cell", "Antibody", "Chromatin immunoprecipitation - DNA sequencing", "Histology", "Phenotype", "Disease", "Tissue", "Genotype"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Raw microarray data", "Surface protein markers"], "countries": ["United States"], "name": "FAIRsharing record for: Stem Cell Discovery Engine", "abbreviation": "SCDE", "url": "https://fairsharing.org/10.25504/FAIRsharing.490xfb", "doi": "10.25504/FAIRsharing.490xfb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Comparison system for cancer stem cell analysis", "publications": [{"id": 1066, "pubmed_id": 22121217, "title": "The Stem Cell Discovery Engine: an integrated repository and analysis system for cancer stem cell comparisons.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1051", "authors": "Ho Sui SJ., Begley K., Reilly D., Chapman B., McGovern R., Rocca-Sera P., Maguire E., Altschuler GM., Hansen TA., Sompallae R., Krivtsov A., Shivdasani RA., Armstrong SA., Culhane AC., Correll M., Sansone SA., Hofmann O., Hide W.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1051", "created_at": "2021-09-30T08:24:18.073Z", "updated_at": "2021-09-30T08:24:18.073Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1769", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:06.039Z", "metadata": {"doi": "10.25504/FAIRsharing.c34wtj", "name": "Endocrine Pancreas Consortium Database", "status": "deprecated", "contacts": [{"contact-name": "Joan Mazzarelli", "contact-email": "mazz@pcbi.uprnn.edu"}], "homepage": "http://www.cbil.upenn.edu/EPConDB", "identifier": 1769, "description": "EPConDB is a resource of the Beta Cell Biology Consortium which displays information about genes expressed in cells of the pancreas and their transcriptional regulation.", "abbreviation": "EPConDB", "support-links": [{"url": "http://www.betacell.org/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.betacell.org/content/tutorial/", "type": "Training documentation"}], "data-processes": [{"url": "http://genomics.betacell.org/gbco/downloads.jsp", "name": "Download", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000227", "bsg-d000227"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Biological regulation", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Endocrine Pancreas Consortium Database", "abbreviation": "EPConDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.c34wtj", "doi": "10.25504/FAIRsharing.c34wtj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EPConDB is a resource of the Beta Cell Biology Consortium which displays information about genes expressed in cells of the pancreas and their transcriptional regulation.", "publications": [{"id": 292, "pubmed_id": 17071715, "title": "EPConDB: a web resource for gene expression related to pancreatic development, beta-cell function and diabetes.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl748", "authors": "Mazzarelli JM., Brestelli J., Gorski RK., Liu J., Manduchi E., Pinney DF., Schug J., White P., Kaestner KH., Stoeckert CJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl748", "created_at": "2021-09-30T08:22:51.432Z", "updated_at": "2021-09-30T08:22:51.432Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 190, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2311", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T13:13:36.000Z", "updated-at": "2021-11-24T13:19:32.066Z", "metadata": {"doi": "10.25504/FAIRsharing.pd7q00", "name": "SYSGRO: A resource of fission yeast phenotypic data & analysis", "status": "deprecated", "contacts": [{"contact-name": "Rafael E. Carazo Salas", "contact-email": "cre20@cam.ac.uk"}], "homepage": "http://smc.sysgro.org/", "identifier": 2311, "description": "SYSGRO is a high throughput/high-content microscopy fission yeast phenotype database from the Carazo Salas Lab in the University of Cambridge UK, funded thanks to a EU ERC Starting Grant. It contains cell shape, microtubule & cell cycle progression computational phenotypes for 3004 non-essential gene knockout cell lines. It is the first multi-phenotypic microscopy profiling functional genomics resource for any organism/", "abbreviation": "SYSGRO", "support-links": [{"url": "contact@sysgro.org", "type": "Support email"}], "year-creation": 2014, "deprecation-date": "2020-03-05", "deprecation-reason": "The homepage no longer exists, and the project appears to be closed (https://cordis.europa.eu/project/id/243283/reporting). Please contact us if you have any information regarding this resource."}, "legacy-ids": ["biodbcore-000787", "bsg-d000787"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "Cell cycle", "Cell division", "Phenotype", "High-content screen"], "taxonomies": ["Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: SYSGRO: A resource of fission yeast phenotypic data & analysis", "abbreviation": "SYSGRO", "url": "https://fairsharing.org/10.25504/FAIRsharing.pd7q00", "doi": "10.25504/FAIRsharing.pd7q00", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SYSGRO is a high throughput/high-content microscopy fission yeast phenotype database from the Carazo Salas Lab in the University of Cambridge UK, funded thanks to a EU ERC Starting Grant. It contains cell shape, microtubule & cell cycle progression computational phenotypes for 3004 non-essential gene knockout cell lines. It is the first multi-phenotypic microscopy profiling functional genomics resource for any organism/", "publications": [{"id": 1239, "pubmed_id": 25373780, "title": "A genomic Multiprocess survey of machineries that control and link cell shape, microtubule organization, and cell-cycle progression.", "year": 2014, "url": "http://doi.org/10.1016/j.devcel.2014.09.005", "authors": "Graml V,Studera X,Lawson JL,Chessel A,Geymonat M,Bortfeld-Miller M,Walter T,Wagstaff L,Piddini E,Carazo-Salas RE", "journal": "Dev Cell", "doi": "10.1016/j.devcel.2014.09.005", "created_at": "2021-09-30T08:24:38.224Z", "updated_at": "2021-09-30T08:24:38.224Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3214", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-28T15:01:28.000Z", "updated-at": "2021-11-24T13:14:58.686Z", "metadata": {"doi": "10.25504/FAIRsharing.6IBl8E", "name": "Pathway and Annotated-list Gene-signature Electronic Repository", "status": "ready", "contacts": [{"contact-name": "Zongliang Yue", "contact-email": "zongyue@uab.edu", "contact-orcid": "0000-0001-8290-123X"}], "homepage": "http://discovery.informatics.uab.edu/PAGER/", "citations": [{"doi": "10.1093/nar/gkx1040", "pubmed-id": 29126216, "publication-id": 246}], "identifier": 3214, "description": "Pathway and Annotated-list Gene-signature Electronic Repository (PAGER) is an repository for pathways, annotated-lists, and gene signatures (PAGs) related to human network biology.", "abbreviation": "PAGER 2.0", "access-points": [{"url": "http://discovery.informatics.uab.edu/PAGER/index.php/geneset/pagerapi", "name": "PAGERCOV_ANALYSIS is to perform hypergeometric test and retrieve enriched PAGs associated to a list of genes", "type": "REST"}], "support-links": [{"url": "http://discovery.informatics.uab.edu/PAGER/index.php/pages/help", "name": "Help documentation", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://discovery.informatics.uab.edu/PAGER/index.php/user_upload", "name": "Data submission", "type": "data curation"}, {"url": "http://discovery.informatics.uab.edu/PAGER/index.php", "name": "Basic search", "type": "data access"}, {"url": "http://discovery.informatics.uab.edu/PAGER/index.php/search/advanced", "name": "Advanced search", "type": "data access"}, {"url": "http://discovery.informatics.uab.edu/PAGER/index.php/pages/download", "name": "Data download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001727", "bsg-d001727"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Computational biological predictions", "Network model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pathway and Annotated-list Gene-signature Electronic Repository", "abbreviation": "PAGER 2.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.6IBl8E", "doi": "10.25504/FAIRsharing.6IBl8E", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Pathway and Annotated-list Gene-signature Electronic Repository (PAGER) is an repository for pathways, annotated-lists, and gene signatures (PAGs) related to human network biology.", "publications": [{"id": 246, "pubmed_id": 29126216, "title": "PAGER 2.0: an update to the pathway, annotated-list and gene-signature electronic repository for Human Network Biology", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1040", "authors": "Zongliang Yue, Qi Zheng, Michael T. Neylon, Minjae Yoo, Jimin Shin, Zhiying Zhao, Aik Choon Tan, and Jake Y. Chen", "journal": "Nucleic Acids Researcg", "doi": "10.1093/nar/gkx1040", "created_at": "2021-09-30T08:22:46.590Z", "updated_at": "2021-09-30T08:22:46.590Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2448", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-22T21:07:43.000Z", "updated-at": "2021-12-06T10:47:50.668Z", "metadata": {"doi": "10.25504/FAIRsharing.2cfr4z", "name": "Allele Frequency Net Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "support@allelefrequencies.net"}], "homepage": "http://www.allelefrequencies.net", "citations": [{"doi": "10.1093/nar/gkz1029", "pubmed-id": 31722398, "publication-id": 2155}], "identifier": 2448, "description": "The Allele Frequency Net Database (AFND) provides the scientific community with a freely available repository for the storage of frequency data (alleles, genes, haplotypes and genotypes) related to human leukocyte antigens (HLA), killer-cell immunoglobulin-like receptors (KIR), major histocompatibility complex Class I chain related genes (MIC) and a number of cytokine gene polymorphisms in worldwide populations.", "abbreviation": "AFND", "access-points": [{"url": "http://www.allelefrequencies.net/extaccess.asp", "name": "Web Services Documentation", "type": "REST"}], "support-links": [{"url": "http://www.allelefrequencies.net/faqs.asp", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.allelefrequencies.net/collaborators.asp", "name": "About", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.allelefrequencies.net/submit/Default.aspx", "name": "Submit", "type": "data curation"}, {"url": "http://www.allelefrequencies.net/hla.asp", "name": "HLA Search Options", "type": "data access"}, {"url": "http://www.allelefrequencies.net/pop6001a.asp", "name": "Population by Region (Map)", "type": "data access"}, {"url": "http://www.allelefrequencies.net/kir.asp", "name": "KIR Search Options", "type": "data access"}, {"url": "http://www.allelefrequencies.net/other.asp", "name": "Other Polymorphisms Search Options", "type": "data access"}, {"url": "http://www.allelefrequencies.net/hla-adr/adr_query.asp", "name": "Search HLA-ADR", "type": "data access"}, {"url": "http://www.allelefrequencies.net/diseases/kddb_query.asp", "name": "Search KDDB", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011904", "name": "re3data:r3d100011904", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007259", "name": "SciCrunch:RRID:SCR_007259", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000930", "bsg-d000930"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Human Genetics", "Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Human leukocyte antigen complex", "Genetic polymorphism", "Major histocompatibility complex", "Killer-cell Immunoglobulin-like Receptors", "Allele", "Allele frequency", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Allele Frequency Net Database", "abbreviation": "AFND", "url": "https://fairsharing.org/10.25504/FAIRsharing.2cfr4z", "doi": "10.25504/FAIRsharing.2cfr4z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Allele Frequency Net Database (AFND) provides the scientific community with a freely available repository for the storage of frequency data (alleles, genes, haplotypes and genotypes) related to human leukocyte antigens (HLA), killer-cell immunoglobulin-like receptors (KIR), major histocompatibility complex Class I chain related genes (MIC) and a number of cytokine gene polymorphisms in worldwide populations.", "publications": [{"id": 2152, "pubmed_id": null, "title": "Allele frequency net 2015 update: new features for HLA epitopes, KIR and disease and HLA adverse drug reaction associations", "year": 2015, "url": "https://doi.org/10.1093/nar/gku1166", "authors": "Faviel F. Gonz\u00e1lez-Galarza Louise Y.C. Takeshita Eduardo J.M. Santos Felicity Kempson Maria Helena Thomaz Maia Andrea Luciana Soares da Silva Andr\u00e9 Luiz Teles e Silva Gurpreet S. Ghattaoraya Ana Alfirevic Andrew R. Jones Derek Middleton", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:26:22.556Z", "updated_at": "2021-09-30T11:29:51.479Z"}, {"id": 2155, "pubmed_id": 31722398, "title": "Allele frequency net database (AFND) 2020 update: gold-standard data classification, open access genotype data and new query tools.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1029", "authors": "Gonzalez-Galarza FF,McCabe A,Santos EJMD,Jones J,Takeshita L,Ortega-Rivera ND,Cid-Pavon GMD,Ramsbottom K,Ghattaoraya G,Alfirevic A,Middleton D,Jones AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1029", "created_at": "2021-09-30T08:26:22.913Z", "updated_at": "2021-09-30T11:29:30.229Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1717", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.689Z", "metadata": {"doi": "10.25504/FAIRsharing.pfes4f", "name": "Protein Protein Interaction Inhibition Database", "status": "ready", "contacts": [{"contact-name": "Philippe Roche", "contact-email": "philippe.roche@inserm.fr", "contact-orcid": "0000-0002-5580-0588"}], "homepage": "http://2p2idb.cnrs-mrs.fr", "identifier": 1717, "description": "2P2Idb is a hand-curated structural database dedicated to the modulation of protein-protein interactions (PPIs). It includes all interactions for which both the protein-protein and protein-modulator complexes have been structurally characterized by X-ray or NMR. The 2P2I database currently contains 14 protein-protein complexes, 16 free proteins, 56 protein-ligand complexes and 53 small molecule inhibitors. Only inhibitors found at the interface (orthosteric modulators) have been considered in this version of the database. The web server provides links to related sites of interest, binding affinity data, pre-calculated structural information about protein-protein interfaces and 3D interactive views through java applets.", "abbreviation": "2P2Idb", "support-links": [{"url": "marie-jeanne.basse@inserm.fr", "type": "Support email"}], "year-creation": 2010, "data-processes": [{"url": "http://2p2idb.cnrs-mrs.fr/download.html", "name": "Data Download", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://2p2idb.cnrs-mrs.fr/2p2idb.html", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://2p2idb.cnrs-mrs.fr/2p2i_inspector.html", "name": "Inspector: Calculate & Visualize Protein-Protein Interface Parameters 2.0"}, {"url": "http://2p2idb.cnrs-mrs.fr/2p2i_score.html", "name": "2P2i Score"}, {"url": "http://2p2idb.cnrs-mrs.fr/2p2i_hunter.html", "name": "2P2I Hunter"}]}, "legacy-ids": ["biodbcore-000174", "bsg-d000174"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein interaction", "Structure"], "taxonomies": ["All"], "user-defined-tags": ["Protein-protein interaction modulators"], "countries": ["France"], "name": "FAIRsharing record for: Protein Protein Interaction Inhibition Database", "abbreviation": "2P2Idb", "url": "https://fairsharing.org/10.25504/FAIRsharing.pfes4f", "doi": "10.25504/FAIRsharing.pfes4f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: 2P2Idb is a hand-curated structural database dedicated to the modulation of protein-protein interactions (PPIs). It includes all interactions for which both the protein-protein and protein-modulator complexes have been structurally characterized by X-ray or NMR. The 2P2I database currently contains 14 protein-protein complexes, 16 free proteins, 56 protein-ligand complexes and 53 small molecule inhibitors. Only inhibitors found at the interface (orthosteric modulators) have been considered in this version of the database. The web server provides links to related sites of interest, binding affinity data, pre-calculated structural information about protein-protein interfaces and 3D interactive views through java applets.", "publications": [{"id": 148, "pubmed_id": 23203891, "title": "2P2Idb: a structural database dedicated to orthosteric modulation of protein-protein interactions.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1002", "authors": "Basse MJ,Betzi S,Bourgeas R,Bouzidi S,Chetrit B,Hamon V,Morelli X,Roche P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1002", "created_at": "2021-09-30T08:22:36.088Z", "updated_at": "2021-09-30T11:28:43.293Z"}, {"id": 1157, "pubmed_id": 20231898, "title": "Atomic analysis of protein-protein interfaces with known inhibitors: the 2P2I database.", "year": 2010, "url": "http://doi.org/10.1371/journal.pone.0009598", "authors": "Bourgeas R,Basse MJ,Morelli X,Roche P", "journal": "PLoS One", "doi": "10.1371/journal.pone.0009598", "created_at": "2021-09-30T08:24:28.665Z", "updated_at": "2021-09-30T08:24:28.665Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1738", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:08.903Z", "metadata": {"doi": "10.25504/FAIRsharing.8hcczk", "name": "Addgene", "status": "ready", "contacts": [{"contact-name": "General Contact Email", "contact-email": "info@addgene.org"}], "homepage": "http://www.addgene.org/", "identifier": 1738, "description": "Addgene is a non-profit plasmid repository dedicated to helping scientists around the world share high-quality plasmids. Addgene are working with thousands of laboratories to assemble a high-quality library of published plasmids for use in research and discovery. By linking plasmids with articles, scientists can always find data related to the materials they request.", "abbreviation": "Addgene", "support-links": [{"url": "https://blog.addgene.org/", "name": "Addgene blog", "type": "Blog/News"}, {"url": "https://www.addgene.org/contact/", "name": "Contact Information", "type": "Contact form"}, {"url": "help@addgene.org", "name": "Help Email", "type": "Support email"}, {"url": "https://help.addgene.org/hc/en-us", "name": "Help Center", "type": "Help documentation"}, {"url": "https://www.addgene.org/ordering/", "name": "Ordering Help", "type": "Help documentation"}, {"url": "https://twitter.com/Addgene", "name": "@Addgene", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "http://www.addgene.org/deposit/add-article/", "name": "Plasmid submission", "type": "data curation"}, {"url": "http://www.addgene.org/vector-database/", "name": "Vector database search interface", "type": "data access"}, {"url": "http://www.addgene.org/search/#q=*", "name": "Search interface", "type": "data access"}, {"url": "https://www.addgene.org/search/advanced/#q=*", "name": "Advanced Search interface", "type": "data access"}, {"url": "http://www.addgene.org/analyze-sequence/", "name": "Analyze sequence tool", "type": "data access"}, {"url": "https://www.addgene.org/collections/covid-19-resources/", "name": "Search/Browse COVID-19 and Coronavirus Plasmids", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010741", "name": "re3data:r3d100010741", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002037", "name": "SciCrunch:RRID:SCR_002037", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000196", "bsg-d000196"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bibliography", "Deoxyribonucleic acid", "Plasmid"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Addgene", "abbreviation": "Addgene", "url": "https://fairsharing.org/10.25504/FAIRsharing.8hcczk", "doi": "10.25504/FAIRsharing.8hcczk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Addgene is a non-profit plasmid repository dedicated to helping scientists around the world share high-quality plasmids. Addgene are working with thousands of laboratories to assemble a high-quality library of published plasmids for use in research and discovery. By linking plasmids with articles, scientists can always find data related to the materials they request.", "publications": [{"id": 269, "pubmed_id": 22491276, "title": "Addgene provides an open forum for plasmid sharing.", "year": 2012, "url": "http://doi.org/10.1038/nbt.2177", "authors": "Herscovitch M., Perkins E., Baltus A., Fan M.,", "journal": "Nat. Biotechnol.", "doi": "10.1038/nbt.2177", "created_at": "2021-09-30T08:22:49.066Z", "updated_at": "2021-09-30T08:22:49.066Z"}, {"id": 667, "pubmed_id": null, "title": "Repositories share key research tools", "year": 2014, "url": "http://doi.org/10.1038/505272a", "authors": "Monya Baker", "journal": "Nature", "doi": "10.1038/505272a", "created_at": "2021-09-30T08:23:33.618Z", "updated_at": "2021-09-30T08:23:33.618Z"}, {"id": 673, "pubmed_id": null, "title": "Sharing Made Easy", "year": 2012, "url": "https://www.the-scientist.com/bio-business/sharing-made-easy-40517", "authors": "Megan Scudellari", "journal": "The Scientist", "doi": null, "created_at": "2021-09-30T08:23:34.235Z", "updated_at": "2021-09-30T11:28:29.929Z"}, {"id": 926, "pubmed_id": 25392412, "title": "The Addgene repository: an international nonprofit plasmid and data resource", "year": 2014, "url": "http://doi.org/10.1093/nar/gku893", "authors": "Joanne Kamens", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku893", "created_at": "2021-09-30T08:24:02.406Z", "updated_at": "2021-09-30T08:24:02.406Z"}], "licence-links": [{"licence-name": "Addgene Technology Transfer agreement", "licence-id": 7, "link-id": 823, "relation": "undefined"}, {"licence-name": "Addgene Terms of Use", "licence-id": 8, "link-id": 838, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1764", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.578Z", "metadata": {"doi": "10.25504/FAIRsharing.d4q4g2", "name": "Chicken Variation Database", "status": "deprecated", "contacts": [{"contact-name": "General enquiries", "contact-email": "ChickVD@genomics.org.cn"}], "homepage": "http://chicken.genomics.org.cn", "identifier": 1764, "description": "The chicken Variation Database (ChickVD) is an integrated information system for storage, retrieval, visualization and analysis of chicken variation data.", "abbreviation": "ChickVD", "support-links": [{"url": "http://chicken.genomics.org.cn/chicken/jsp/help.jsp", "type": "Help documentation"}, {"url": "http://chicken.genomics.org.cn/chicken/jsp/chickvd.format.readme.txt", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://chicken.genomics.org.cn/chicken/jsp/download.jsp", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://chicken.genomics.org.cn/chicken/jsp/search.jsp", "name": "search"}, {"url": "http://chicken.genomics.org.cn/chicken/jsp/search.jsp", "name": "search"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is superceded by the China National GeneBank DataBase and this particular data can now be found at https://db.cngb.org/search/project/CNPhis0000539"}, "legacy-ids": ["biodbcore-000222", "bsg-d000222"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genetic polymorphism", "Single nucleotide polymorphism", "Genome"], "taxonomies": ["Gallus gallus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Chicken Variation Database", "abbreviation": "ChickVD", "url": "https://fairsharing.org/10.25504/FAIRsharing.d4q4g2", "doi": "10.25504/FAIRsharing.d4q4g2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The chicken Variation Database (ChickVD) is an integrated information system for storage, retrieval, visualization and analysis of chicken variation data.", "publications": [{"id": 284, "pubmed_id": 15608233, "title": "ChickVD: a sequence variation database for the chicken genome.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki092", "authors": "Wang J., He X., Ruan J., Dai M., Chen J., Zhang Y., Hu Y., Ye C., Li S., Cong L., Fang L., Liu B., Li S., Wang J., Burt DW., Wong GK., Yu J., Yang H., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki092", "created_at": "2021-09-30T08:22:50.624Z", "updated_at": "2021-09-30T08:22:50.624Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2361", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-04T10:23:44.000Z", "updated-at": "2021-11-24T13:19:33.673Z", "metadata": {"doi": "10.25504/FAIRsharing.p90p8q", "name": "Banana Genome Hub", "status": "ready", "homepage": "http://banana-genome-hub.southgreen.fr/", "identifier": 2361, "description": "The Banana Genome Hub centralises databases of genetic and genomic data for the Musa acuminata crop, and is the official portal for the Musa genome resources.", "abbreviation": "BGH", "support-links": [{"url": "http://banana-genome-hub.southgreen.fr/contact", "type": "Contact form"}, {"url": "http://banana-genome-hub.southgreen.fr/documentation", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://banana-genome-hub.southgreen.fr/download", "name": "Data download", "type": "data access"}], "associated-tools": [{"url": "http://banana-genome-hub.southgreen.fr/advanced", "name": "Advanced Search"}, {"url": "http://banana-genome-hub.southgreen.fr/convert", "name": "Pseudomolecule Version Converter"}, {"url": "http://banana-genome-hub.southgreen.fr/primer_designer", "name": "Primer Designer"}, {"url": "http://banana-genome-hub.southgreen.fr/primer_blaster", "name": "Primer Blaster"}]}, "legacy-ids": ["biodbcore-000840", "bsg-d000840"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Transcriptomics"], "domains": ["Gene Ontology enrichment", "Genome annotation", "Genome"], "taxonomies": ["Musa"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Banana Genome Hub", "abbreviation": "BGH", "url": "https://fairsharing.org/10.25504/FAIRsharing.p90p8q", "doi": "10.25504/FAIRsharing.p90p8q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Banana Genome Hub centralises databases of genetic and genomic data for the Musa acuminata crop, and is the official portal for the Musa genome resources.", "publications": [{"id": 2123, "pubmed_id": 23707967, "title": "The banana genome hub", "year": 2013, "url": "http://doi.org/10.1093/database/bat035", "authors": "Droc G, Larivi\u00e8re D, Guignon V, Yahiaoui N, This D, Garsmeur O, Dereeper A, Hamelin C, Argout X, Dufayard JF, Lengelle J, Baurens FC, Cenci A, Pitollat B, D'Hont A, Ruiz M, Rouard M, Bocs S.", "journal": "database", "doi": "10.1093/database/bat035", "created_at": "2021-09-30T08:26:19.349Z", "updated_at": "2021-09-30T08:26:19.349Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3186", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-13T12:01:31.000Z", "updated-at": "2021-12-06T10:47:38.136Z", "metadata": {"name": "Bridges", "status": "ready", "contacts": [{"contact-name": "Monash University Open Scholarship and Data Services Team", "contact-email": "researchdata@monash.edu"}], "homepage": "https://bridges.monash.edu/", "citations": [], "identifier": 3186, "description": "Bridges is a collaborative digital repository for Monash University researchers. It allows researchers to manage, store, share and selectively publish their research files as citable research outputs with a persistent URL. Researchers maintain control over who can see their private files and all uploads are stored at Monash University.", "abbreviation": "Bridges", "support-links": [{"url": "https://www.monash.edu/library/researchers/researchdata/bridges/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.monash.edu/library/researchers/researchdata/bridges/faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.monash.edu/library/researchers/researchdata/bridges", "name": "Help Guides", "type": "Help documentation"}, {"url": "https://www.monash.edu/library/researchers/researchdata/bridges/about", "name": "About", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://bridges.monash.edu/", "name": "Browse All", "type": "data access"}, {"url": "https://bridges.monash.edu/category", "name": "Browse by Category", "type": "data access"}, {"url": "https://bridges.monash.edu/groups", "name": "Browse by Group", "type": "data access"}, {"url": "https://bridges.monash.edu/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012123", "name": "re3data:r3d100012123", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001697", "bsg-d001697"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Econometrics", "Economics", "Environmental Science", "Computer Architecture", "Social Medicine", "Critical Care Medicine", "Nuclear Medicine", "Aerospace Engineering", "Medicine", "Geriatric Medicine", "Forensic Medicine", "Art History", "Media Studies", "Philosophy", "Materials Engineering", "Health Science", "Architecture", "Modern History", "Public Law", "Electrical Engineering", "Business Administration", "Fine Arts", "Criminal Law", "Pharmacy", "Regenerative Medicine", "Civil Engineering", "Infectious Disease Medicine", "Ancient History", "History", "Earth Science", "Atmospheric Science", "Computational Biology", "Pharmacology", "Materials Science", "Pharmacogenomics", "Computer Science", "Subject Agnostic", "Medical Physics", "Molecular Medicine", "Theology", "Chemical Engineering", "Linguistics", "Respiratory Medicine", "Neuroscience", "Computational Chemistry", "Building Design", "Medicinal Chemistry"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Computer vision", "Education", "Industrial design", "institutional repository", "Sociology"], "countries": ["Australia"], "name": "FAIRsharing record for: Bridges", "abbreviation": "Bridges", "url": "https://fairsharing.org/fairsharing_records/3186", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bridges is a collaborative digital repository for Monash University researchers. It allows researchers to manage, store, share and selectively publish their research files as citable research outputs with a persistent URL. Researchers maintain control over who can see their private files and all uploads are stored at Monash University.", "publications": [], "licence-links": [{"licence-name": "Monash University Library Terms and Conditions", "licence-id": 520, "link-id": 444, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2743", "type": "fairsharing-records", "attributes": {"created-at": "2019-01-18T04:26:18.000Z", "updated-at": "2021-12-06T10:48:40.175Z", "metadata": {"doi": "10.25504/FAIRsharing.hESBcy", "name": "Genomic Expression Archive", "status": "ready", "homepage": "https://www.ddbj.nig.ac.jp/gea", "citations": [{"doi": "10.1093/nar/gky1002", "pubmed-id": 30357349, "publication-id": 655}], "identifier": 2743, "description": "Genomic Expression Archive (GEA) is a public database of functional genomics data such as gene expression, epigenetics and genotyping SNP array. Both microarray- and sequence-based data are accepted in the MAGE-TAB format in compliance with MIAME and MINSEQE guidelines, respectively. GEA issues accession numbers, E-GEAD-n to experiment and A-GEAD-n to array design.", "abbreviation": "GEA", "support-links": [{"url": "https://www.ddbj.nig.ac.jp/contact-e.html", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ddbj.nig.ac.jp/gea/faq-e.html", "name": "GEA FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2018, "data-processes": [{"url": "https://www.ddbj.nig.ac.jp/gea/overview-e.html", "name": "Data Submission Overview", "type": "data curation"}, {"url": "ftp://ftp.ddbj.nig.ac.jp/ddbj_database/gea", "name": "Data Download (FTP)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013187", "name": "re3data:r3d100013187", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001241", "bsg-d001241"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Functional Genomics", "Epigenetics", "Life Science"], "domains": ["Expression data", "Gene expression", "Microarray experiment", "DNA microarray", "Single nucleotide polymorphism"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Genomic Expression Archive", "abbreviation": "GEA", "url": "https://fairsharing.org/10.25504/FAIRsharing.hESBcy", "doi": "10.25504/FAIRsharing.hESBcy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genomic Expression Archive (GEA) is a public database of functional genomics data such as gene expression, epigenetics and genotyping SNP array. Both microarray- and sequence-based data are accepted in the MAGE-TAB format in compliance with MIAME and MINSEQE guidelines, respectively. GEA issues accession numbers, E-GEAD-n to experiment and A-GEAD-n to array design.", "publications": [{"id": 655, "pubmed_id": 30357349, "title": "DDBJ update: the Genomic Expression Archive (GEA) for functional genomics data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1002", "authors": "Kodama Y,Mashima J,Kosuge T,Ogasawara O", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1002", "created_at": "2021-09-30T08:23:32.284Z", "updated_at": "2021-09-30T11:28:48.717Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1853", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:03.333Z", "metadata": {"doi": "10.25504/FAIRsharing.q1fdkc", "name": "Integrated relational Enzyme database", "status": "ready", "contacts": [{"contact-name": "Joseph Onwubiko", "contact-email": "joseph@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/intenz", "identifier": 1853, "description": "IntEnz is a freely available resource focused on enzyme nomenclature. IntEnz contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology (NC-IUBMB) on the nomenclature and classification of enzyme-catalysed reactions.", "abbreviation": "IntEnz", "support-links": [{"url": "https://www.ebi.ac.uk/intenz/spotlight.jsp", "name": "Enzyme Spotlights", "type": "Blog/News"}, {"url": "http://www.ebi.ac.uk/intenz/contact.jsp", "name": "Contact IntEnz", "type": "Contact form"}, {"url": "http://www.ebi.ac.uk/intenz/faq.jsp", "name": "IntEnz FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/intenz/statistics.jsp", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.oxfordjournals.org/nar/database/summary/508", "name": "NAR Database Summary Page", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/intenz/rules.jsp", "name": "Classification Rules", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/intenz/advice.jsp", "name": "EC Guidelines", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.ebi.ac.uk/intenz/downloads.jsp", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/intenz/browse.jsp", "name": "Browse IntEnz", "type": "data access"}, {"url": "https://www.ebi.ac.uk/intenz/submissions.jsp", "name": "IntEnz Submissions", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010803", "name": "re3data:r3d100010803", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002992", "name": "SciCrunch:RRID:SCR_002992", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000314", "bsg-d000314"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Enzymology"], "domains": ["Enzyme Commission number", "Enzymatic reaction", "Enzyme", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Integrated relational Enzyme database", "abbreviation": "IntEnz", "url": "https://fairsharing.org/10.25504/FAIRsharing.q1fdkc", "doi": "10.25504/FAIRsharing.q1fdkc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IntEnz is a freely available resource focused on enzyme nomenclature. IntEnz contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology (NC-IUBMB) on the nomenclature and classification of enzyme-catalysed reactions.", "publications": [{"id": 2750, "pubmed_id": 14681451, "title": "IntEnz, the integrated relational enzyme database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh119", "authors": "Fleischmann A,Darsow M,Degtyarenko K,Fleischmann W,Boyce S,Axelsen KB,Bairoch A,Schomburg D,Tipton KF,Apweiler R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh119", "created_at": "2021-09-30T08:27:38.027Z", "updated_at": "2021-09-30T11:29:42.628Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2369, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2533", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-28T21:57:54.000Z", "updated-at": "2021-12-10T14:47:51.614Z", "metadata": {"doi": "10.25504/FAIRsharing.8nq9t6", "name": "The Network Data Exchange", "status": "ready", "contacts": [{"contact-name": "Rudolf T. Pillich", "contact-email": "rpillich@ucsd.edu", "contact-orcid": "0000-0001-8682-0568"}], "homepage": "https://www.ndexbio.org", "citations": [{"doi": "10.1007/978-1-4939-6783-4_13", "pubmed-id": 28150243, "publication-id": 1966}, {"doi": "10.1016/j.cels.2015.10.001", "pubmed-id": 26594663, "publication-id": 1969}, {"doi": "10.1158/0008-5472.CAN-17-0606", "pubmed-id": 29092941, "publication-id": 1992}, {"doi": "10.1002/cpz1.258", "pubmed-id": null, "publication-id": 3151}], "identifier": 2533, "description": "NDEx is an online commons where scientists can upload, share, and publicly distribute biological networks and pathway models. The NDEx Project maintains a web-accessible public server, a documentation website, provides seamless connectivity to Cytoscape as well as programmatic access using a variety of languages including Python and Java and R. NDEx users can easily create accounts or sign in using their Google credentials thanks to the supported open authentication (OAUTH2) method and mint DOIs for their networks to use in publications or include in other resources for long term access.", "abbreviation": "NDEx", "data-curation": {}, "support-links": [{"url": "https://home.ndexbio.org", "name": "Informational Website", "type": "Blog/News"}, {"url": "https://home.ndexbio.org/contact-us/", "name": "Contact Us", "type": "Contact form"}, {"url": "https://home.ndexbio.org/quick-start", "name": "User manuals & Technical docs", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCc7J1020F7e25F-zWEMtM0A", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/NDExProject", "name": "Twitter Feed", "type": "Twitter"}, {"url": "https://github.com/ndexbio/ndex-jupyter-notebooks", "name": "NDEx Jupyter Notebook Tutorials", "type": "Training documentation"}, {"url": "https://home.ndexbio.org/faq/", "name": "NDEx FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/ndexbio", "name": "NDEx Code Repository", "type": "Github"}, {"url": "https://home.ndexbio.org/release-notes/", "name": "NDEx Release Notes", "type": "Help documentation"}, {"url": "https://home.ndexbio.org/report-a-bug/", "name": "Report a Bug", "type": "Contact form"}], "year-creation": 2013, "data-processes": [{"url": "http://www.ndexbio.org", "name": "Browse, search and download network models", "type": "data access"}, {"url": "https://home.ndexbio.org/publishing-in-ndex/", "name": "Publish your network models", "type": "data curation"}], "data-versioning": "yes", "associated-tools": [{"url": "https://cytoscape.org/", "name": "Cytoscape desktop application for network analysis"}, {"url": "http://apps.cytoscape.org/apps/cyndex2", "name": "CyNDEx-2 (Cytoscape Core App) "}, {"url": "https://www.ndexbio.org/iquery/", "name": "NDEx Integrated Query (IQuery)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012690", "name": "re3data:r3d100012690", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003943", "name": "SciCrunch:RRID:SCR_003943", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "no", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": ["biodbcore-001016", "bsg-d001016"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Microbiology", "Epidemiology"], "domains": ["Network model", "Cancer", "Molecular interaction", "Genetic interaction", "Pathway model"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: The Network Data Exchange", "abbreviation": "NDEx", "url": "https://fairsharing.org/10.25504/FAIRsharing.8nq9t6", "doi": "10.25504/FAIRsharing.8nq9t6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NDEx is an online commons where scientists can upload, share, and publicly distribute biological networks and pathway models. The NDEx Project maintains a web-accessible public server, a documentation website, provides seamless connectivity to Cytoscape as well as programmatic access using a variety of languages including Python and Java and R. NDEx users can easily create accounts or sign in using their Google credentials thanks to the supported open authentication (OAUTH2) method and mint DOIs for their networks to use in publications or include in other resources for long term access.", "publications": [{"id": 1966, "pubmed_id": 28150243, "title": "NDEx: A Community Resource for Sharing and Publishing of Biological Networks.", "year": 2017, "url": "http://doi.org/10.1007/978-1-4939-6783-4_13", "authors": "Pillich RT,Chen J,Rynkov V,Welker D,Pratt D", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-6783-4_13", "created_at": "2021-09-30T08:26:01.290Z", "updated_at": "2021-09-30T08:26:01.290Z"}, {"id": 1969, "pubmed_id": 26594663, "title": "NDEx, the Network Data Exchange.", "year": 2015, "url": "http://doi.org/10.1016/j.cels.2015.10.001", "authors": "Pratt D,Chen J,Welker D,Rivas R,Pillich R,Rynkov V,Ono K,Miello C,Hicks L,Szalma S,Stojmirovic A,Dobrin R,Braxenthaler M,Kuentzer J,Demchak B,Ideker T", "journal": "Cell Syst", "doi": "10.1016/j.cels.2015.10.001", "created_at": "2021-09-30T08:26:01.606Z", "updated_at": "2021-09-30T08:26:01.606Z"}, {"id": 1992, "pubmed_id": 29092941, "title": "NDEx 2.0: A Clearinghouse for Research on Cancer Pathways.", "year": 2017, "url": "http://doi.org/10.1158/0008-5472.CAN-17-0606", "authors": "Pratt D,Chen J,Pillich R,Rynkov V,Gary A,Demchak B,Ideker T", "journal": "Cancer Res", "doi": "10.1158/0008-5472.CAN-17-0606", "created_at": "2021-09-30T08:26:04.240Z", "updated_at": "2021-09-30T08:26:04.240Z"}, {"id": 3151, "pubmed_id": null, "title": "NDEx: Accessing Network Models and Streamlining Network Biology Workflows", "year": 2021, "url": "http://dx.doi.org/10.1002/cpz1.258", "authors": "Pillich, Rudolf T.; Chen, Jing; Churas, Christopher; Liu, Sophie; Ono, Keiichiro; Otasek, David; Pratt, Dexter; ", "journal": "Current Protocols", "doi": "10.1002/cpz1.258", "created_at": "2021-12-09T19:42:28.391Z", "updated_at": "2021-12-09T19:42:28.391Z"}], "licence-links": [{"licence-name": "NDEx Terms, License and Sources", "licence-id": 566, "link-id": 552, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 553, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2102", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.107Z", "metadata": {"doi": "10.25504/FAIRsharing.f8qafw", "name": "Annmap", "status": "deprecated", "contacts": [{"contact-name": "C Miller", "contact-email": "cmiller@picr.man.ac.uk"}], "homepage": "http://annmap.cruk.manchester.ac.uk/", "identifier": 2102, "description": "Annmap is a genome browser that includes mappings between genomic features and Affymetrix microarrays. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "Annmap", "support-links": [{"url": "http://annmap.picr.man.ac.uk/help/index", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://annmap.picr.man.ac.uk/download/index", "name": "Download", "type": "data access"}, {"url": "http://annmap.picr.man.ac.uk/accessible/index", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-23", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000571", "bsg-d000571"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA microarray", "Genome"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Annmap", "abbreviation": "Annmap", "url": "https://fairsharing.org/10.25504/FAIRsharing.f8qafw", "doi": "10.25504/FAIRsharing.f8qafw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Annmap is a genome browser that includes mappings between genomic features and Affymetrix microarrays. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 563, "pubmed_id": 17932061, "title": "X:Map: annotation and visualization of genome structure for Affymetrix exon array analysis.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm779", "authors": "Yates T., Okoniewski MJ., Miller CJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm779", "created_at": "2021-09-30T08:23:21.569Z", "updated_at": "2021-09-30T08:23:21.569Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2635", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-03T13:19:02.000Z", "updated-at": "2022-02-08T10:38:38.146Z", "metadata": {"doi": "10.25504/FAIRsharing.946cef", "name": "Selective Targets database", "status": "ready", "contacts": [{"contact-name": "Stefan M. Woerner", "contact-email": "stefan.woerner@medma.uni-heidelberg.de"}], "homepage": "http://www.seltarbase.org/", "identifier": 2635, "description": "The Selective Targets database (SelTarbase ) is a curated database of public MNR mutation data in microsatellite unstable human tumors. A comprehensive database of all human coding, untranslated, non-coding RNA- and intronic MNRs (MNR_ensembl) is also included.", "abbreviation": "SelTarbase", "support-links": [{"url": "admin@seltarbase.org", "type": "Support email"}, {"url": "http://www.seltarbase.org/?extension=latest&topic=help", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://www.seltarbase.org/?extension=latest&topic=main", "name": "register", "type": "data access"}, {"url": "http://www.seltarbase.org/?extension=latest&topic=main", "name": "browse", "type": "data access"}, {"url": "http://www.seltarbase.org/?extension=latest&topic=main", "name": "search", "type": "data access"}, {"url": "http://www.seltarbase.org/?extension=latest&topic=submit", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001126", "bsg-d001126"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Tumor", "Mutation analysis", "Curated information"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Selective Targets database", "abbreviation": "SelTarbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.946cef", "doi": "10.25504/FAIRsharing.946cef", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Selective Targets database (SelTarbase ) is a curated database of public MNR mutation data in microsatellite unstable human tumors. A comprehensive database of all human coding, untranslated, non-coding RNA- and intronic MNRs (MNR_ensembl) is also included.", "publications": [{"id": 826, "pubmed_id": 19820113, "title": "SelTarbase, a database of human mononucleotide-microsatellite mutations and their potential impact to tumorigenesis and immunology.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp839", "authors": "Woerner SM,Yuan YP,Benner A,Korff S,von Knebel Doeberitz M,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp839", "created_at": "2021-09-30T08:23:51.051Z", "updated_at": "2021-09-30T11:28:53.326Z"}], "licence-links": [{"licence-name": "SelTarbase Disclaimer", "licence-id": 745, "link-id": 1695, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2437", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-19T10:20:30.000Z", "updated-at": "2021-12-06T10:48:08.501Z", "metadata": {"doi": "10.25504/FAIRsharing.88wme4", "name": "OpenTopography", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@opentopography.org"}], "homepage": "https://www.opentopography.org", "identifier": 2437, "description": "The National Science Foundation funded OpenTopography facilitates community access to high-resolution, Earth science-oriented, topography data, and related tools and resources.", "abbreviation": "OpenTopography", "access-points": [{"url": "https://portal.opentopography.org/apidocs/", "name": "OpenTopography API", "type": "REST"}], "support-links": [{"url": "http://www.opentopography.org/blog", "type": "Blog/News"}, {"url": "https://www.opentopography.org/contact", "name": "Contact", "type": "Contact form"}, {"url": "http://www.opentopography.org/faq-page", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.opentopography.org/start", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://www.opentopography.org/learn/onlinetraining", "name": "Online Training", "type": "Training documentation"}, {"url": "https://twitter.com/OpenTopography", "name": "Twitter", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://www.opentopography.org/data", "name": "Find Data", "type": "data access"}, {"url": "https://portal.opentopography.org/dataCatalog", "name": "Data Catalog", "type": "data access"}], "associated-tools": [{"url": "https://opentopography.org/otsoftware", "name": "OpenTopography Open Source Software"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010655", "name": "re3data:r3d100010655", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002204", "name": "SciCrunch:RRID:SCR_002204", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000919", "bsg-d000919"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Bathymetry"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Bathymetry", "lidar", "Structure From Motion", "Topography"], "countries": ["United States"], "name": "FAIRsharing record for: OpenTopography", "abbreviation": "OpenTopography", "url": "https://fairsharing.org/10.25504/FAIRsharing.88wme4", "doi": "10.25504/FAIRsharing.88wme4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Science Foundation funded OpenTopography facilitates community access to high-resolution, Earth science-oriented, topography data, and related tools and resources.", "publications": [{"id": 3070, "pubmed_id": null, "title": "Zero to a trillion: Advancing Earth surface process studies with open access to high-resolution topography", "year": 2020, "url": "https://doi.org/10.1016/B978-0-444-64177-9.00011-4", "authors": "Christopher J. Crosby, J. Ram\u00f3n Arrowsmith, Viswanath Nandigam", "journal": "Developments in Earth Surface Processes", "doi": null, "created_at": "2021-09-30T08:28:18.317Z", "updated_at": "2021-09-30T08:28:18.317Z"}], "licence-links": [{"licence-name": "Open Topography Privacy Policy", "licence-id": 634, "link-id": 2177, "relation": "undefined"}, {"licence-name": "Open Topography Terms of Use", "licence-id": 635, "link-id": 2178, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1928", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:58.593Z", "metadata": {"doi": "10.25504/FAIRsharing.5f5mfm", "name": "Bactibase: database dedicated to bacteriocins", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "admin@pfba-lab-tun.org"}], "homepage": "http://bactibase.hammamilab.org/main.php", "citations": [], "identifier": 1928, "description": "BACTIBASE contains calculated or predicted physicochemical properties of bacteriocins produced by both Gram-positive and Gram-negative bacteria. The information in this database is very easy to extract and allows rapid prediction of relationships structure/function and target organisms of these peptides and therefore better exploitation of their biological activity in both the medical and food sectors.", "abbreviation": "BACTIBASE", "support-links": [{"url": "http://bactibase.pfba-lab-tun.org/contacts.php", "type": "Contact form"}, {"url": "http://bactibase.pfba-lab-tun.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2007, "data-processes": [{"url": "http://bactibase.pfba-lab-tun.org/downloads.php", "name": "Download", "type": "data access"}, {"url": "http://bactibase.pfba-lab-tun.org/submit_sequence.php", "name": "submit", "type": "data access"}, {"url": "http://bactibase.pfba-lab-tun.org/search.php", "name": "search", "type": "data access"}, {"url": "http://bactibase.pfba-lab-tun.org/bacteriocinslist.php", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://bactibase.pfba-lab-tun.org/blast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012755", "name": "re3data:r3d100012755", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006694", "name": "SciCrunch:RRID:SCR_006694", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000393", "bsg-d000393"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Protein"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Bactibase: database dedicated to bacteriocins", "abbreviation": "BACTIBASE", "url": "https://fairsharing.org/10.25504/FAIRsharing.5f5mfm", "doi": "10.25504/FAIRsharing.5f5mfm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BACTIBASE contains calculated or predicted physicochemical properties of bacteriocins produced by both Gram-positive and Gram-negative bacteria. The information in this database is very easy to extract and allows rapid prediction of relationships structure/function and target organisms of these peptides and therefore better exploitation of their biological activity in both the medical and food sectors.", "publications": [{"id": 425, "pubmed_id": 20105292, "title": "BACTIBASE second release: a database and tool platform for bacteriocin characterization.", "year": 2010, "url": "http://doi.org/10.1186/1471-2180-10-22", "authors": "Hammami R., Zouhir A., Le Lay C., Ben Hamida J., Fliss I.,", "journal": "BMC Microbiol.", "doi": "10.1186/1471-2180-10-22", "created_at": "2021-09-30T08:23:06.183Z", "updated_at": "2021-09-30T08:23:06.183Z"}, {"id": 1612, "pubmed_id": 17941971, "title": "BACTIBASE: a new web-accessible database for bacteriocin characterization.", "year": 2007, "url": "http://doi.org/10.1186/1471-2180-7-89", "authors": "Hammami R,Zouhir A,Ben Hamida J,Fliss I", "journal": "BMC Microbiol", "doi": "10.1186/1471-2180-7-89", "created_at": "2021-09-30T08:25:20.677Z", "updated_at": "2021-09-30T08:25:20.677Z"}], "licence-links": [{"licence-name": "BACTIBASE Terms of Use", "licence-id": 54, "link-id": 1064, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1069, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2160", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:46.967Z", "metadata": {"doi": "10.25504/FAIRsharing.fe48sc", "name": "Moroccan Genetic Disease Database", "status": "ready", "contacts": [{"contact-name": "Hicham Charoute", "contact-email": "hcharoute@hotmail.fr", "contact-orcid": "0000-0002-9338-6744"}], "homepage": "http://mgdd.pasteur.ma/index.php", "identifier": 2160, "description": "The Moroccan Genetic Disease Database (MGDD) collect and document mutations and frequencies of polymorphisms reported in the Moroccan population. The information in the MGDD allow researchers and clinicians to find mutations associated to a given disease or gene of interest, and they can also find polymorphisms associated with susceptibility to a genetic disease or individual responses to pharmaceutical drugs or environmental factors.", "abbreviation": "MGDD", "support-links": [{"url": "hamid.barakat@pasteur.ma", "type": "Support email"}, {"url": "http://mgdd.pasteur.ma/statistics.php", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://mgdd.pasteur.ma/submission.php", "name": "submit", "type": "data curation"}, {"url": "http://mgdd.pasteur.ma/database.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000632", "bsg-d000632"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Mutation", "Genetic polymorphism", "Genome-wide association study", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Morocco"], "name": "FAIRsharing record for: Moroccan Genetic Disease Database", "abbreviation": "MGDD", "url": "https://fairsharing.org/10.25504/FAIRsharing.fe48sc", "doi": "10.25504/FAIRsharing.fe48sc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Moroccan Genetic Disease Database (MGDD) collect and document mutations and frequencies of polymorphisms reported in the Moroccan population. The information in the MGDD allow researchers and clinicians to find mutations associated to a given disease or gene of interest, and they can also find polymorphisms associated with susceptibility to a genetic disease or individual responses to pharmaceutical drugs or environmental factors.", "publications": [{"id": 639, "pubmed_id": 23860041, "title": "The Moroccan Genetic Disease Database (MGDD): a database for DNA variations related to inherited disorders and disease susceptibility.", "year": 2013, "url": "http://doi.org/10.1038/ejhg.2013.151", "authors": "Hicham Charoute, Halima Nahili, Omar Abidi, Khalid Gabi, Hassan Rouba, Malika Fakiri and Abdelhamid Barakat.", "journal": "Eur J Hum Genet", "doi": "10.1038/ejhg.2013.151", "created_at": "2021-09-30T08:23:30.343Z", "updated_at": "2021-09-30T08:23:30.343Z"}], "licence-links": [{"licence-name": "MIRTAR is free for academic and non-profit use", "licence-id": 516, "link-id": 836, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1940", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:37.752Z", "metadata": {"doi": "10.25504/FAIRsharing.h5f091", "name": "BeetleBase", "status": "deprecated", "contacts": [{"contact-email": "beetlebs@ksu.edu"}], "homepage": "http://www.beetlebase.org/", "identifier": 1940, "description": "BeetleBase is a community resource for Tribolium genetics, genomics and developmental biology. The database is built on the Chado generic data model, and is able to store various types of data, ranging from genome sequences to mutant phenotypes.", "abbreviation": "BeetleBase", "year-creation": 2006, "data-processes": [{"url": "http://www.beetlebase.org/?q=download_settings", "name": "Download", "type": "data access"}, {"url": "http://beetlebase.org/jbrowse/index.html", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://beetlebase.org/blast/blast.html", "name": "BLAST"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000406", "bsg-d000406"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Biology", "Life Science"], "domains": ["Nucleic acid sequence", "DNA sequence data", "Protein", "Genome"], "taxonomies": ["Tribolium castaneum"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BeetleBase", "abbreviation": "BeetleBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.h5f091", "doi": "10.25504/FAIRsharing.h5f091", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BeetleBase is a community resource for Tribolium genetics, genomics and developmental biology. The database is built on the Chado generic data model, and is able to store various types of data, ranging from genome sequences to mutant phenotypes.", "publications": [{"id": 416, "pubmed_id": 19820115, "title": "BeetleBase in 2010: revisions to provide comprehensive genomic information for Tribolium castaneum.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp807", "authors": "Kim HS., Murphy T., Xia J., Caragea D., Park Y., Beeman RW., Lorenzen MD., Butcher S., Manak JR., Brown SJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp807", "created_at": "2021-09-30T08:23:05.208Z", "updated_at": "2021-09-30T08:23:05.208Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2836", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-01T12:52:51.000Z", "updated-at": "2021-11-24T13:13:57.321Z", "metadata": {"doi": "10.25504/FAIRsharing.xUkfh7", "name": "Mitochondrial Disease Sequence Data Resource", "status": "ready", "contacts": [{"contact-name": "Marni J. Falk", "contact-email": "falkm@email.chop.edu", "contact-orcid": "0000-0002-1723-6728"}], "homepage": "https://mseqdr.org/", "citations": [{"doi": "10.1002/humu.22974", "pubmed-id": 26919060, "publication-id": 2575}], "identifier": 2836, "description": "The Mitochondrial Disease Sequence Data Resource (MSeqDR) is a centralized genome and phenome bioinformatics resource built by the mitochondrial disease community to facilitate clinical diagnosis and research investigations of individual patient phenotypes, genomes, genes, and variants. It integrates community knowledge from expert\u2010curated databases with genomic and phenotype data shared by clinicians and researchers.", "abbreviation": "MSeqDR", "support-links": [{"url": "https://mseqdr.org/news.php", "name": "News", "type": "Blog/News"}, {"url": "https://mseqdr.org/feedback.php", "name": "Feedback Form", "type": "Contact form"}, {"url": "xgai@chla.usc.edu", "name": "Xiaowu Gai", "type": "Support email"}, {"url": "lshen86@gmail.com", "name": "Lishuang Shen, Bioinformatician", "type": "Support email"}, {"url": "https://mseqdr.org/documentation.php", "name": "All Documentation", "type": "Help documentation"}, {"url": "https://mseqdr.org/tutorial.php", "name": "Tutorials", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://mseqdr.org/", "name": "Search by disease, phenotype, variant HGVS, MSCV, gene", "type": "data access"}, {"url": "https://mseqdr.org/diag.php", "name": "Browse by disease", "type": "data access"}, {"url": "https://mseqdr.org/submission.php", "name": "Submit", "type": "data curation"}, {"url": "https://mseqdr.org/hpo_browser.php", "name": "MSeqDR Human Phenotype Ontology Browser", "type": "data access"}], "associated-tools": [{"url": "https://mseqdr.org/mitobox.php", "name": "Mitochondrial Toolbox List"}, {"url": "https://mseqdr.org/mvtool.php", "name": "mvTool - Universal mtDNA Variant Converter and One Stop Annotation 3.0"}, {"url": "https://mseqdr.org/mv4phylotree.php", "name": "mvTool for PhyloTree and Haplogroup, Universal mtDNA Variant Converter and One Stop Annotation 1.0"}, {"url": "https://mseqdr.org/leigh.php", "name": "Leigh and Leigh-Like Syndrome (LS/LLS) Resources at MSeqDR.org 1.0"}, {"url": "https://mseqdr.org/quickmitome.php", "name": "MSeqDR Quick-Mitome - A Phenotype-Guided WES/WGS Variant Interpretation Server for Mitochondrial Diseases 2.0"}, {"url": "https://mseqdr.org/MITO/index.php", "name": "MSeqDR-LDSB: Expert-curated database of 280 mitochondrial diseases and 15,000 pathogenicity-assessed variants 5.0"}]}, "legacy-ids": ["biodbcore-001337", "bsg-d001337"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Genomics", "Phenomics", "Biomedical Science"], "domains": ["Mitochondrion", "Disease", "Diagnosis", "Sequence", "Mitochondrial sequence", "Sequence variant", "Mitochondrial disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Italy", "Netherlands"], "name": "FAIRsharing record for: Mitochondrial Disease Sequence Data Resource", "abbreviation": "MSeqDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.xUkfh7", "doi": "10.25504/FAIRsharing.xUkfh7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Mitochondrial Disease Sequence Data Resource (MSeqDR) is a centralized genome and phenome bioinformatics resource built by the mitochondrial disease community to facilitate clinical diagnosis and research investigations of individual patient phenotypes, genomes, genes, and variants. It integrates community knowledge from expert\u2010curated databases with genomic and phenotype data shared by clinicians and researchers.", "publications": [{"id": 2575, "pubmed_id": 26919060, "title": "MSeqDR: A Centralized Knowledge Repository and Bioinformatics Web Resource to Facilitate Genomic Investigations in Mitochondrial Disease.", "year": 2016, "url": "http://doi.org/10.1002/humu.22974", "authors": "Shen L, Diroma MA, Gonzalez M, Navarro-Gomez D, Leipzig J, Lott MT, van Oven M, Wallace DC, Muraresku CC, Zolkipli-Cunningham Z, Chinnery PF, Attimonelli M, Zuchner S, Falk MJ, Gai X", "journal": "Hum Mutationm", "doi": "10.1002/humu.22974", "created_at": "2021-09-30T08:27:15.845Z", "updated_at": "2021-09-30T08:27:15.845Z"}, {"id": 2736, "pubmed_id": 29539190, "title": "MSeqDR mvTool: A mitochondrial DNA Web and API resource for comprehensive variant annotation, universal nomenclature collation, and reference genome conversion", "year": 2018, "url": "http://doi.org/10.1002/humu.23422", "authors": "Lishuang Shen, Marcella Attimonelli, Bai Renkui, Marie T Lott, Douglas C Wallace, Marni J Falk, Xiaowu Gai.", "journal": "Human Mutation", "doi": "doi:10.1002/humu.23422", "created_at": "2021-09-30T08:27:35.950Z", "updated_at": "2021-09-30T08:27:35.950Z"}, {"id": 2737, "pubmed_id": 25542617, "title": "Mitochondrial Disease Sequence Data Resource (MSeqDR): a global grass-roots consortium to facilitate deposition, curation, annotation, and integrated analysis of genomic data for the mitochondrial disease clinical and research communities.", "year": 2014, "url": "http://doi.org/10.1016/j.ymgme.2014.11.016", "authors": "Falk MJ, Shen L, Gonzalez M, Leipzig J, Lott MT, Stassen AP, Diroma MA, Navarro-Gomez D, Yeske P, Bai R, Boles RG, Brilhante V, Ralph D, DaRe JT, Shelton R, Terry SF, Zhang Z, Copeland WC, van Oven M, Prokisch H, Wallace DC, Attimonelli M, Krotoski D, Zuchner S, Gai X; MSeqDR Consortium Participants; MSeqDR Consortium participants: Sherri Bale, Jirair Bedoyan, Doron Behar, Penelope Bonnen, Lisa Brooks, Claudia Calabrese, Sarah Calvo, Patrick Chinnery, John Christodoulou, Deanna Church,; Rosanna Clima, Bruce H. Cohen, Richard G. Cotton, IFM de Coo, Olga Derbenevoa, Johan T. den Dunnen, David Dimmock, Gregory Enns, Giuseppe Gasparre,; Amy Goldstein, Iris Gonzalez, Katrina Gwinn, Sihoun Hahn, Richard H. Haas, Hakon Hakonarson, Michio Hirano, Douglas Kerr, Dong Li, Maria Lvova, Finley Macrae, Donna Maglott, Elizabeth McCormick, Grant Mitchell, Vamsi K. Mootha, Yasushi Okazaki,; Aurora Pujol, Melissa Parisi, Juan Carlos Perin, Eric A. Pierce, Vincent Procaccio, Shamima Rahman, Honey Reddi, Heidi Rehm, Erin Riggs, Richard Rodenburg, Yaffa Rubinstein, Russell Saneto, Mariangela Santorsola, Curt Scharfe,; Claire Sheldon, Eric A. Shoubridge, Domenico Simone, Bert Smeets, Jan A. Smeitink, Christine Stanley, Anu Suomalainen, Mark Tarnopolsky, Isabelle Thiffault, David R. Thorburn, Johan Van Hove, Lynne Wolfe, and Lee-Jun Wong", "journal": "Mol Genet Metab", "doi": "10.1016/j.ymgme.2014.11.016", "created_at": "2021-09-30T08:27:36.181Z", "updated_at": "2021-09-30T08:27:36.181Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2963", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T13:49:28.000Z", "updated-at": "2021-11-24T13:18:12.643Z", "metadata": {"doi": "10.25504/FAIRsharing.7JCjD0", "name": "Metabolic Atlas", "status": "ready", "contacts": [{"contact-name": "Jens Nielsen", "contact-email": "nielsenj@chalmers.se"}], "homepage": "https://metabolicatlas.org/", "citations": [{"doi": "10.1126/scisignal.aaz1482", "pubmed-id": 32209698, "publication-id": 2910}], "identifier": 2963, "description": "Metabolic Atlas integrates open source genome-scale metabolic models (GEMs) of human and yeast for easy browsing and analysis. It also contains many more GEMs constructed by our organization. Detailed biochemical information is provided for individual model components, such as reactions, metabolites, and genes. These components are also associated with standard identifiers, facilitating integration with external databases, such as the Human Protein Atlas.", "abbreviation": "Metabolic Atlas", "access-points": [{"url": "https://metabolicatlas.org/api/", "name": "API", "type": "REST"}], "support-links": [{"url": "contact@metabolicatlas.org", "name": "contact@metabolicatlas.org", "type": "Support email"}, {"url": "https://github.com/SysBioChalmers/MetabolicAtlas/releases", "name": "Github", "type": "Github"}, {"url": "https://metabolicatlas.org/documentation", "name": "Documentation", "type": "Help documentation"}], "data-processes": [{"url": "https://metabolicatlas.org/explore", "name": "Explore", "type": "data access"}]}, "legacy-ids": ["biodbcore-001467", "bsg-d001467"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Metagenomics", "Clinical Chemistry", "Metabolomics", "Systems Biology"], "domains": ["Biomarker"], "taxonomies": ["Homo sapiens", "Saccharomyces cerevisiae"], "user-defined-tags": ["Genome Scale Metabolic Model"], "countries": ["United Kingdom", "Denmark", "United States", "Sweden"], "name": "FAIRsharing record for: Metabolic Atlas", "abbreviation": "Metabolic Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.7JCjD0", "doi": "10.25504/FAIRsharing.7JCjD0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Metabolic Atlas integrates open source genome-scale metabolic models (GEMs) of human and yeast for easy browsing and analysis. It also contains many more GEMs constructed by our organization. Detailed biochemical information is provided for individual model components, such as reactions, metabolites, and genes. These components are also associated with standard identifiers, facilitating integration with external databases, such as the Human Protein Atlas.", "publications": [{"id": 2910, "pubmed_id": 32209698, "title": "An atlas of human metabolism.", "year": 2020, "url": "http://doi.org/eaaz1482", "authors": "Robinson JL,Kocabas P,Wang H,Cholley PE,Cook D,Nilsson A,Anton M,Ferreira R,Domenzain I,Billa V,Limeta A,Hedin A,Gustafsson J,Kerkhoven EJ,Svensson LT,Palsson BO,Mardinoglu A,Hansson L,Uhlen M,Nielsen J", "journal": "Sci Signal", "doi": "10.1126/scisignal.aaz1482", "created_at": "2021-09-30T08:27:58.350Z", "updated_at": "2021-09-30T08:27:58.350Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1299, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2274", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-10T09:22:09.000Z", "updated-at": "2021-11-24T13:14:50.740Z", "metadata": {"doi": "10.25504/FAIRsharing.ennep4", "name": "Global Unique Device Identification Database", "status": "ready", "homepage": "https://accessgudid.nlm.nih.gov/", "identifier": 2274, "description": "The Global Unique Device Identification Database (GUDID - pronounced \"Good ID\") is a database administered by the FDA as part of the UDI system. The GUDID contains device identification information submitted by device companies to the FDA. The GUDID contains ONLY the Device Identifier (DI), which serves as the primary key to obtain information in the database. Production Identifiers (PI) are not submitted to or stored in the GUDID, but GUDID data indicates which PIs are on the device label. Many data elements in the GUDID correspond to information on the medical device label. The figure below shows a fictitious medical device label and identifies the GUDID data elements that appear on the label. Please refer to the FDA UDI website for more information about GUDID data elements.", "abbreviation": "GUDID", "access-points": [{"url": "https://accessgudid.nlm.nih.gov/resources/developers/implant_list_api", "name": "GET /devices/implantable/list", "type": "REST"}, {"url": "https://accessgudid.nlm.nih.gov/resources/developers/device_lookup_api", "name": "GET /devices/lookup", "type": "REST"}, {"url": "https://accessgudid.nlm.nih.gov/resources/developers/parse_udi_api", "name": "GET /parse_udi", "type": "REST"}, {"url": "https://accessgudid.nlm.nih.gov/resources/developers/implant_list_download", "name": "GET /devices/implantable/download", "type": "REST"}], "support-links": [{"url": "https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054&category=accessgudid", "type": "Contact form"}, {"url": "https://accessgudid.nlm.nih.gov/help/home", "type": "Help documentation"}, {"url": "https://accessgudid.nlm.nih.gov/help/search/basic-search", "type": "Help documentation"}, {"url": "http://accessgudid.nlm.nih.gov/resources/feeds/rss", "type": "Blog/News"}], "year-creation": 2016, "data-processes": [{"url": "https://accessgudid.nlm.nih.gov/download", "name": "Release", "type": "data access"}, {"url": "https://accessgudid.nlm.nih.gov/release_files/download/GUDID-Download-Schema.zip", "name": "Download Specification", "type": "data release"}], "associated-tools": [{"url": "https://accessgudid.nlm.nih.gov/advanced-search", "name": "Advanced Search"}]}, "legacy-ids": ["biodbcore-000748", "bsg-d000748"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Device"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Global Unique Device Identification Database", "abbreviation": "GUDID", "url": "https://fairsharing.org/10.25504/FAIRsharing.ennep4", "doi": "10.25504/FAIRsharing.ennep4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Unique Device Identification Database (GUDID - pronounced \"Good ID\") is a database administered by the FDA as part of the UDI system. The GUDID contains device identification information submitted by device companies to the FDA. The GUDID contains ONLY the Device Identifier (DI), which serves as the primary key to obtain information in the database. Production Identifiers (PI) are not submitted to or stored in the GUDID, but GUDID data indicates which PIs are on the device label. Many data elements in the GUDID correspond to information on the medical device label. The figure below shows a fictitious medical device label and identifies the GUDID data elements that appear on the label. Please refer to the FDA UDI website for more information about GUDID data elements.", "publications": [{"id": 1026, "pubmed_id": 25262248, "title": "Unique device identifiers for coronary stent postmarket surveillance and research: a report from the Food and Drug Administration Medical Device Epidemiology Network Unique Device Identifier demonstration.", "year": 2014, "url": "http://doi.org/10.1016/j.ahj.2014.07.001", "authors": "Tcheng JE,Crowley J,Tomes M,Reed TL,Dudas JM,Thompson KP,Garratt KN,Drozda JP Jr", "journal": "Am Heart J", "doi": "10.1016/j.ahj.2014.07.001", "created_at": "2021-09-30T08:24:13.597Z", "updated_at": "2021-09-30T08:24:13.597Z"}, {"id": 1032, "pubmed_id": 24066364, "title": "Unique device identification system. Final rule.", "year": 2013, "url": "https://www.ncbi.nlm.nih.gov/pubmed/24066364", "authors": "Food and Drug Administration, HHS", "journal": "Fed Regist", "doi": null, "created_at": "2021-09-30T08:24:14.272Z", "updated_at": "2021-09-30T08:24:14.272Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2275", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-12T13:15:57.000Z", "updated-at": "2021-11-24T13:17:51.124Z", "metadata": {"doi": "10.25504/FAIRsharing.yfk4w2", "name": "Genomics England | PanelApp", "status": "ready", "contacts": [{"contact-name": "PanelApp team", "contact-email": "panelapp@genomicsengland.co.uk"}], "homepage": "https://panelapp.genomicsengland.co.uk/", "identifier": 2275, "description": "Genomics England PanelApp is a publically-available knowledgebase that allows virtual gene panels related to human disorders to be created, stored and queried. It includes a crowdsourcing tool that allows genes to be added or reviewed by experts throughout the worldwide scientific community, providing an opportunity for the standardisation of gene panels, and a consensus on which genes have sufficient evidence for disease association. The diagnostic grade \u2018Green\u2019 genes and their modes of inheritance in the Version 1+ PanelApp virtual gene panels are used to direct the variant tiering process for the interpretation of genomes in the 100,000 Genomes Project and for the National Health Service England Genomic Medicine Service. As panels in PanelApp are publically available, they can also be utilised by others. Experts are asked to register (https://panelapp.genomicsengland.co.uk/accounts/registration/) in order to review and rate the genes on the panel to indicate whether there is a diagnostic-grade level of evidence for the gene to be implicated in a given disease. Bioinformaticians can access the data via the PanelApp API (https://panelapp.genomicsengland.co.uk/#!API). More detailed background information, instructions and updates can be found on the PanelApp homepage tabs.", "abbreviation": "PanelApp", "access-points": [{"url": "https://panelapp.genomicsengland.co.uk/#!API", "name": "PanelApp API", "type": "Other"}], "support-links": [{"url": "https://panelapp.genomicsengland.co.uk/#!News", "name": "News", "type": "Blog/News"}, {"url": "https://panelapp.genomicsengland.co.uk/#!FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://panelapp.genomicsengland.co.uk/", "type": "Help documentation"}, {"url": "https://panelapp.genomicsengland.co.uk/#!Navigating", "type": "Help documentation"}, {"url": "https://panelapp.genomicsengland.co.uk/#!Guidelines", "name": "Guidelines", "type": "Help documentation"}, {"url": "https://twitter.com/GenomicsEngland", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://panelapp.genomicsengland.co.uk/panels/entities/", "name": "Browse & search genes and genomic entities", "type": "data access"}, {"url": "https://panelapp.genomicsengland.co.uk/panels/", "name": "Browse panels", "type": "data access"}], "associated-tools": [{"url": "https://panelapp.genomicsengland.co.uk/", "name": "PanelApp"}]}, "legacy-ids": ["biodbcore-000749", "bsg-d000749"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Virology", "Life Science", "Epidemiology"], "domains": ["Cancer", "Rare disease", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Genomics England | PanelApp", "abbreviation": "PanelApp", "url": "https://fairsharing.org/10.25504/FAIRsharing.yfk4w2", "doi": "10.25504/FAIRsharing.yfk4w2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genomics England PanelApp is a publically-available knowledgebase that allows virtual gene panels related to human disorders to be created, stored and queried. It includes a crowdsourcing tool that allows genes to be added or reviewed by experts throughout the worldwide scientific community, providing an opportunity for the standardisation of gene panels, and a consensus on which genes have sufficient evidence for disease association. The diagnostic grade \u2018Green\u2019 genes and their modes of inheritance in the Version 1+ PanelApp virtual gene panels are used to direct the variant tiering process for the interpretation of genomes in the 100,000 Genomes Project and for the National Health Service England Genomic Medicine Service. As panels in PanelApp are publically available, they can also be utilised by others. Experts are asked to register (https://panelapp.genomicsengland.co.uk/accounts/registration/) in order to review and rate the genes on the panel to indicate whether there is a diagnostic-grade level of evidence for the gene to be implicated in a given disease. Bioinformaticians can access the data via the PanelApp API (https://panelapp.genomicsengland.co.uk/#!API). More detailed background information, instructions and updates can be found on the PanelApp homepage tabs.", "publications": [{"id": 3014, "pubmed_id": 31676867, "title": "PanelApp crowdsources expert knowledge to establish consensus diagnostic gene panels.", "year": 2019, "url": "http://doi.org/10.1038/s41588-019-0528-2", "authors": "Martin AR,Williams E,Foulger RE,Leigh S,Daugherty LC,Niblock O,Leong IUS,Smith KR,Gerasimenko O,Haraldsdottir E,Thomas E,Scott RH,Baple E,Tucci A,Brittain H,de Burca A,Ibanez K,Kasperaviciute D,Smedley D,Caulfield M,Rendon A,McDonagh EM", "journal": "Nat Genet", "doi": "10.1038/s41588-019-0528-2", "created_at": "2021-09-30T08:28:11.566Z", "updated_at": "2021-09-30T08:28:11.566Z"}], "licence-links": [{"licence-name": "PanelApp Terms of Use", "licence-id": 644, "link-id": 1668, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2967", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-27T14:46:50.000Z", "updated-at": "2022-02-08T10:32:34.367Z", "metadata": {"doi": "10.25504/FAIRsharing.6f54c5", "name": "International Human Epigenome Consortium Data Portal", "status": "ready", "contacts": [{"contact-name": "IHEC Data Portal Helpdesk", "contact-email": "info@epigenomesportal.ca"}], "homepage": "https://epigenomesportal.ca/ihec/help.html", "citations": [{"doi": "10.1016/j.cels.2016.10.019", "pubmed-id": 27863956, "publication-id": 2905}], "identifier": 2967, "description": "The International Human Epigenome Consortium (IHEC) coordinates the production of reference epigenome maps through the characterization of the regulome, methylome, and transcriptome from a wide range of tissues and cell types. The IHEC Data Portal provides discovery, visualization, analysis, download, and sharing of epigenomics data, is the official source to navigate through IHEC datasets, and represents a strategy for unifying the distributed data produced by international research consortia.", "abbreviation": "IHEC Data Portal", "support-links": [{"url": "https://epigenomesportal.ca/ihec/help.html", "name": "Help", "type": "Help documentation"}, {"url": "https://epigenomesportal.ca/ihec/community.html", "name": "Community", "type": "Help documentation"}, {"url": "https://epigenomesportal.ca/ihec/about.html", "name": "About", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://epigenomesportal.ca/ihec/grid.html", "name": "Search and Browse: DataGrid", "type": "data access"}, {"url": "https://epigenomesportal.ca/ihec/download.html", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001471", "bsg-d001471"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Epigenomics", "Epigenetics"], "domains": ["Expression data"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: International Human Epigenome Consortium Data Portal", "abbreviation": "IHEC Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.6f54c5", "doi": "10.25504/FAIRsharing.6f54c5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Human Epigenome Consortium (IHEC) coordinates the production of reference epigenome maps through the characterization of the regulome, methylome, and transcriptome from a wide range of tissues and cell types. The IHEC Data Portal provides discovery, visualization, analysis, download, and sharing of epigenomics data, is the official source to navigate through IHEC datasets, and represents a strategy for unifying the distributed data produced by international research consortia.", "publications": [{"id": 2905, "pubmed_id": 27863956, "title": "The International Human Epigenome Consortium Data Portal.", "year": 2016, "url": "http://doi.org/S2405-4712(16)30362-3", "authors": "Bujold D,Morais DAL,Gauthier C,Cote C,Caron M,Kwan T,Chen KC,Laperle J,Markovits AN,Pastinen T,Caron B,Veilleux A,Jacques PE,Bourque G", "journal": "Cell Syst", "doi": "10.1016/j.cels.2016.10.019", "created_at": "2021-09-30T08:27:57.716Z", "updated_at": "2021-09-30T08:27:57.716Z"}], "licence-links": [{"licence-name": "IHEC Data Portal Terms and Conditions", "licence-id": 429, "link-id": 876, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1969", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:19.201Z", "metadata": {"doi": "10.25504/FAIRsharing.v9fya8", "name": "Expressed Sequence Tags database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/genbank/dbest/", "identifier": 1969, "description": "The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms. NCBI is in the process of merging EST and GSS records into the Nucleotide database, and the process is expected to be completed 2019. Accession.version and GI identifiers will not change during this process. For more information please see https://ncbiinsights.ncbi.nlm.nih.gov/2018/07/30/upcoming-changes-est-gss-databases/", "abbreviation": "dbEST", "year-creation": 1992, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/genbank/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/genbank/dbest/dbest_access/", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010648", "name": "re3data:r3d100010648", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_016578", "name": "SciCrunch:RRID:SCR_016578", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000435", "bsg-d000435"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "DNA sequencing assay", "Complementary DNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Expressed Sequence Tags database", "abbreviation": "dbEST", "url": "https://fairsharing.org/10.25504/FAIRsharing.v9fya8", "doi": "10.25504/FAIRsharing.v9fya8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms. NCBI is in the process of merging EST and GSS records into the Nucleotide database, and the process is expected to be completed 2019. Accession.version and GI identifiers will not change during this process. For more information please see https://ncbiinsights.ncbi.nlm.nih.gov/2018/07/30/upcoming-changes-est-gss-databases/", "publications": [{"id": 450, "pubmed_id": 8401577, "title": "dbEST--database for \"expressed sequence tags\".", "year": 1993, "url": "http://doi.org/10.1038/ng0893-332", "authors": "Boguski MS., Lowe TM., Tolstoshev CM.,", "journal": "Nat. Genet.", "doi": "10.1038/ng0893-332", "created_at": "2021-09-30T08:23:08.858Z", "updated_at": "2021-09-30T08:23:08.858Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1234, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1237, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1950", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:16.168Z", "metadata": {"doi": "10.25504/FAIRsharing.nhmd3w", "name": "DragonDB", "status": "deprecated", "contacts": [{"contact-name": "Mark Wilkinson", "contact-email": "markw@illuminae.com"}], "homepage": "http://www.antirrhinum.net", "identifier": 1950, "description": "The NEW Antirrhinum majus (Snapdragon) genetic and genomic database", "abbreviation": "DragonDB", "data-processes": [{"url": "http://www.antirrhinum.net/cgi-bin/ace/searches/query/DragonDB", "name": "ACE search", "type": "data access"}, {"url": "http://www.antirrhinum.net/cgi-bin/ace/searches/text/DragonDB", "name": "search", "type": "data access"}, {"url": "http://www.antirrhinum.net/cgi-bin/ace/searches/browser/DragonDB", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://www.antirrhinum.net/blast/blast.html", "name": "BLAST"}], "deprecation-date": "2021-06-24", "deprecation-reason": "The website is no longer available"}, "legacy-ids": ["biodbcore-000416", "bsg-d000416"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": ["Deoxyribonucleic acid", "Protein", "Genome"], "taxonomies": ["Antirrhinum majus"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: DragonDB", "abbreviation": "DragonDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.nhmd3w", "doi": "10.25504/FAIRsharing.nhmd3w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NEW Antirrhinum majus (Snapdragon) genetic and genomic database", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1961", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:29.098Z", "metadata": {"doi": "10.25504/FAIRsharing.y1qpdm", "name": "caNanoLab", "status": "ready", "contacts": [{"contact-name": "Durga Addepalli", "contact-email": "kanakadurga.addepalli@nih.gov"}], "homepage": "http://cananolab.nci.nih.gov/caNanoLab/", "identifier": 1961, "description": "caNanoLab is a data sharing portal designed to facilitate information sharing across the international biomedical nanotechnology research community to expedite and validate the use of nanotechnology in biomedicine. caNanoLab provides support for the annotation of nanomaterials with characterizations resulting from physico-chemical, in vitro and in vivo assays and the sharing of these characterizations and associated nanotechnology protocols in a secure fashion.", "abbreviation": "caNanoLab", "support-links": [{"url": "https://wiki.nci.nih.gov/display/caNanoLab/caNanoLab+FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wiki.nci.nih.gov/display/caNanoLab/caNanoLab+User%27s+Guide", "type": "Help documentation"}, {"url": "https://wiki.nci.nih.gov/display/caNanoLab/caNanoLab+Glossary", "type": "Help documentation"}], "data-processes": [{"url": "https://wiki.nci.nih.gov/display/caNanoLab/caNanoLab+Wiki+Home+Page#caNanoLabWikiHomePage-InstallationandDownloads", "name": "Download", "type": "data access"}, {"url": "https://cananolab.nci.nih.gov/caNanoLab/advancedSampleSearch.do?dispatch=setup&page=0", "name": "Advanced search", "type": "data access"}, {"url": "https://cananolab.nci.nih.gov/caNanoLab/searchSample.do?dispatch=setup", "name": "Search interface", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010574", "name": "re3data:r3d100010574", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013717", "name": "SciCrunch:RRID:SCR_013717", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000427", "bsg-d000427"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Nanotechnology", "Biomedical Science"], "domains": ["Molecular structure", "Nanoparticle", "Bioactivity", "Structure"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: caNanoLab", "abbreviation": "caNanoLab", "url": "https://fairsharing.org/10.25504/FAIRsharing.y1qpdm", "doi": "10.25504/FAIRsharing.y1qpdm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: caNanoLab is a data sharing portal designed to facilitate information sharing across the international biomedical nanotechnology research community to expedite and validate the use of nanotechnology in biomedicine. caNanoLab provides support for the annotation of nanomaterials with characterizations resulting from physico-chemical, in vitro and in vivo assays and the sharing of these characterizations and associated nanotechnology protocols in a secure fashion.", "publications": [{"id": 1214, "pubmed_id": 25364375, "title": "caNanoLab: data sharing to expedite the use of nanotechnology in biomedicine.", "year": 2014, "url": "http://doi.org/10.1088/1749-4699/6/1/014010", "authors": "Gaheen S,Hinkal GW,Morris SA,Lijowski M,Heiskanen M,Klemm JD", "journal": "Comput Sci Discov", "doi": "10.1088/1749-4699/6/1/014010", "created_at": "2021-09-30T08:24:35.294Z", "updated_at": "2021-09-30T08:24:35.294Z"}], "licence-links": [{"licence-name": "caNanoLab Software License", "licence-id": 97, "link-id": 809, "relation": "undefined"}, {"licence-name": "HHS Privacy Policy", "licence-id": 392, "link-id": 810, "relation": "undefined"}, {"licence-name": "Web Accessibility Policy for the NIH NCI", "licence-id": 857, "link-id": 811, "relation": "undefined"}, {"licence-name": "caNanoLab Use and Redistribution with or without modification allowed with restrictions", "licence-id": 98, "link-id": 816, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2353", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-27T14:36:43.000Z", "updated-at": "2021-11-24T13:16:28.221Z", "metadata": {"doi": "10.25504/FAIRsharing.p0rfm1", "name": "Brazilian Flora 2020", "status": "in_development", "contacts": [{"contact-name": "Rafaela Campostrini Forzza", "contact-email": "floradobrasil2020@jbrj.gov.br"}], "homepage": "http://floradobrasil.jbrj.gov.br/", "identifier": 2353, "description": "In 2010, Brazil published the Catalog of Plants and Fungi of Brazil and launched the first online version of the List of Species of the Brazilian Flora, meeting Target 1 of the Global Strategy for Plant Conservation (GSPC-CBD). This botanical milestone was only achieved due to the commitment of more than 400 Brazilians and foreign taxonomists who worked on a platform where information about our flora was included and disseminated in real time. The \"Brazilian List\", as it was popularly known, closed in November 2015 with the publication of five papers and their respective databases dealing with the different groups of fungi and plants. We enthusiastically present in 2016, the brand new system that houses the Brazilian Flora 2020 project, aiming to achieve Target 1 established for 2020 by the GSPC-CBD. This new project icludes provisions to include descriptions, identification keys and illustrations to all species of plants, algae and fungi known in the country. The Brazilian Flora 2020 project is part of the Reflora Programme and is being conducted with the support of the Sistema de Informa\u00e7\u00e3o sobre a Biodiversidade Brasileira (SiBBr). At the moment has nearly 700 scientists working in a network to prepare the monographs. These researchers are also responsible for nomenclatural information and geographic distribution (coverage in Brazil, endemism and biomes), as well as valuable data regarding life forms, substrate and vegetation types for each species. The search results on this page include information on endangered species (thanks to the cooperation with the Centro Nacional de Conserva\u00e7\u00e3o da Flora) and allow access to the Index Herbariorum (due to the collaboration of The New York Botanical Garden). Besides this information, users can also access images of herbarium specimens, including nomenclatural types, from both the Reflora Virtual Herbarium and INCT Virtual Herbarium of Flora and Fungi; as well as images of live plants and scientific illustrations with all images included by the experts in each group.", "access-points": [{"url": "http://servicos.jbrj.gov.br/flora/", "name": "A REST web service for Brazilian FLora 2020", "type": "REST"}], "support-links": [{"url": "reflora@jbrj.gov.br", "type": "Support email"}], "year-creation": 2010, "associated-tools": [{"url": "http://ipt.jbrj.gov.br/jbrj/resource?r=lista_especies_flora_brasil", "name": "IPT"}]}, "legacy-ids": ["biodbcore-000832", "bsg-d000832"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Biodiversity", "Ontology and Terminology"], "domains": ["Taxonomic classification", "Bioimaging"], "taxonomies": ["Algae", "Fungi", "Plantae"], "user-defined-tags": [], "countries": ["Brazil"], "name": "FAIRsharing record for: Brazilian Flora 2020", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.p0rfm1", "doi": "10.25504/FAIRsharing.p0rfm1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In 2010, Brazil published the Catalog of Plants and Fungi of Brazil and launched the first online version of the List of Species of the Brazilian Flora, meeting Target 1 of the Global Strategy for Plant Conservation (GSPC-CBD). This botanical milestone was only achieved due to the commitment of more than 400 Brazilians and foreign taxonomists who worked on a platform where information about our flora was included and disseminated in real time. The \"Brazilian List\", as it was popularly known, closed in November 2015 with the publication of five papers and their respective databases dealing with the different groups of fungi and plants. We enthusiastically present in 2016, the brand new system that houses the Brazilian Flora 2020 project, aiming to achieve Target 1 established for 2020 by the GSPC-CBD. This new project icludes provisions to include descriptions, identification keys and illustrations to all species of plants, algae and fungi known in the country. The Brazilian Flora 2020 project is part of the Reflora Programme and is being conducted with the support of the Sistema de Informa\u00e7\u00e3o sobre a Biodiversidade Brasileira (SiBBr). At the moment has nearly 700 scientists working in a network to prepare the monographs. These researchers are also responsible for nomenclatural information and geographic distribution (coverage in Brazil, endemism and biomes), as well as valuable data regarding life forms, substrate and vegetation types for each species. The search results on this page include information on endangered species (thanks to the cooperation with the Centro Nacional de Conserva\u00e7\u00e3o da Flora) and allow access to the Index Herbariorum (due to the collaboration of The New York Botanical Garden). Besides this information, users can also access images of herbarium specimens, including nomenclatural types, from both the Reflora Virtual Herbarium and INCT Virtual Herbarium of Flora and Fungi; as well as images of live plants and scientific illustrations with all images included by the experts in each group.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 373, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2265", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-15T12:52:35.000Z", "updated-at": "2021-12-06T10:49:25.050Z", "metadata": {"doi": "10.25504/FAIRsharing.wx5r6f", "name": "ClinVar", "status": "ready", "contacts": [{"contact-email": "clinvar@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/clinvar/", "identifier": 2265, "description": "ClinVar is a freely accessible, public archive of reports of the relationships among human variations and phenotypes, with supporting evidence. ClinVar thus facilitates access to and communication about the relationships asserted between human variation and observed health status, and the history of that interpretation. ClinVar processes submissions reporting variants found in patient samples, assertions made regarding their clinical significance, information about the submitter, and other supporting data. The alleles described in submissions are mapped to reference sequences, and reported according to the HGVS standard. ClinVar then presents the data for interactive users as well as those wishing to use ClinVar in daily workflows and other local applications. ClinVar works in collaboration with interested organizations to meet the needs of the medical genetics community as efficiently and effectively as possible.", "abbreviation": "ClinVar", "access-points": [{"url": "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=clinvar&term=brca1(gene)&retmax=1000", "type": "REST"}], "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/clinvar/docs/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/clinvar/docs/faq_submitters/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/clinvar/docs/help/", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=ClinVarNews", "name": "monthly release", "type": "data release"}, {"url": "http://www.ncbi.nlm.nih.gov/clinvar/", "name": "search", "type": "data access"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/pub/clinvar/", "name": "FTP download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/clinvar/docs/submit/", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/clinvar/advanced/", "name": "Advanced Search"}, {"url": "http://www.ncbi.nlm.nih.gov/variation/view/", "name": "Variation Viewer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013331", "name": "re3data:r3d100013331", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006169", "name": "SciCrunch:RRID:SCR_006169", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000739", "bsg-d000739"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Clinical Studies", "Biomedical Science", "Preclinical Studies"], "domains": ["Genetic polymorphism", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ClinVar", "abbreviation": "ClinVar", "url": "https://fairsharing.org/10.25504/FAIRsharing.wx5r6f", "doi": "10.25504/FAIRsharing.wx5r6f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ClinVar is a freely accessible, public archive of reports of the relationships among human variations and phenotypes, with supporting evidence. ClinVar thus facilitates access to and communication about the relationships asserted between human variation and observed health status, and the history of that interpretation. ClinVar processes submissions reporting variants found in patient samples, assertions made regarding their clinical significance, information about the submitter, and other supporting data. The alleles described in submissions are mapped to reference sequences, and reported according to the HGVS standard. ClinVar then presents the data for interactive users as well as those wishing to use ClinVar in daily workflows and other local applications. ClinVar works in collaboration with interested organizations to meet the needs of the medical genetics community as efficiently and effectively as possible.", "publications": [{"id": 1302, "pubmed_id": 24234437, "title": "ClinVar: public archive of relationships among sequence variation and human phenotype.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1113", "authors": "Landrum MJ,Lee JM,Riley GR,Jang W,Rubinstein WS,Church DM,Maglott DR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1113", "created_at": "2021-09-30T08:24:45.398Z", "updated_at": "2021-09-30T11:29:05.661Z"}], "licence-links": [{"licence-name": "NCBI Website and Data Usage Policies and Disclaimers", "licence-id": 558, "link-id": 1835, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1989", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-09T15:03:32.140Z", "metadata": {"doi": "10.25504/FAIRsharing.qt3w7z", "name": "PubChem", "status": "ready", "contacts": [{"contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://pubchem.ncbi.nlm.nih.gov/", "identifier": 1989, "description": "PubChem is organized as three linked databases within the NCBI's Entrez information retrieval system. These are PubChem Substance, PubChem Compound, and PubChem BioAssay. PubChem also provides a fast chemical structure similarity search tool. More information about using each component database may be found using the links in the homepage.", "abbreviation": "PubChem", "support-links": [{"url": "http://pubchem.ncbi.nlm.nih.gov/help.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://pubchem.ncbi.nlm.nih.gov/pc_fetch/pc_fetch.cgi", "name": "Bulk Download", "type": "data access"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/assay/assaydownload.cgi", "name": "Bulk Download", "type": "data access"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/pubchem/", "name": "FTP download", "type": "data access"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/search/search.cgi", "name": "Search", "type": "data access"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=1", "name": "Browser", "type": "data access"}], "associated-tools": [{"url": "https://pubchem.ncbi.nlm.nih.gov/standardize/standardize.cgi", "name": "PubChem Standardization Service"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/vw3d/vw3d.cgi", "name": "PubChem3D Viewer v2.0"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/idexchange/idexchange.cgi", "name": "PubChem Identifier Exchange Service"}, {"url": "https://pubchem.ncbi.nlm.nih.gov/score_matrix/score_matrix.cgi", "name": "PubChem Score Matrix Service"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010129", "name": "re3data:r3d100010129", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_010578", "name": "SciCrunch:RRID:SCR_010578", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000455", "bsg-d000455"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Molecular structure", "Small molecule", "Assay", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: PubChem", "abbreviation": "PubChem", "url": "https://fairsharing.org/10.25504/FAIRsharing.qt3w7z", "doi": "10.25504/FAIRsharing.qt3w7z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PubChem is organized as three linked databases within the NCBI's Entrez information retrieval system. These are PubChem Substance, PubChem Compound, and PubChem BioAssay. PubChem also provides a fast chemical structure similarity search tool. More information about using each component database may be found using the links in the homepage.", "publications": [{"id": 2866, "pubmed_id": 20970519, "title": "PubChem as a public resource for drug discovery.", "year": 2010, "url": "http://doi.org/10.1016/j.drudis.2010.10.003", "authors": "Li Q,Cheng T,Wang Y,Bryant SH", "journal": "Drug Discov Today", "doi": "10.1016/j.drudis.2010.10.003", "created_at": "2021-09-30T08:27:52.764Z", "updated_at": "2021-09-30T08:27:52.764Z"}, {"id": 2867, "pubmed_id": 19498078, "title": "PubChem: a public information system for analyzing bioactivities of small molecules.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp456", "authors": "Wang Y,Xiao J,Suzek TO,Zhang J,Wang J,Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp456", "created_at": "2021-09-30T08:27:52.918Z", "updated_at": "2021-09-30T11:29:47.687Z"}, {"id": 2902, "pubmed_id": 17170002, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1031", "authors": "Wheeler DL. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1031", "created_at": "2021-09-30T08:27:57.365Z", "updated_at": "2021-09-30T08:27:57.365Z"}, {"id": 2907, "pubmed_id": 30371825, "title": "PubChem 2019 update: improved access to chemical data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1033", "authors": "Kim S,Chen J,Cheng T,Gindulyte A,He J,He S,Li Q,Shoemaker BA,Thiessen PA,Yu B,Zaslavsky L,Zhang J,Bolton EE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1033", "created_at": "2021-09-30T08:27:57.955Z", "updated_at": "2021-09-30T11:29:48.480Z"}, {"id": 2911, "pubmed_id": 27899599, "title": "PubChem BioAssay: 2017 update.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1118", "authors": "Wang Y,Bryant SH,Cheng T,Wang J,Gindulyte A,Shoemaker BA,Thiessen PA,He S,Zhang J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1118", "created_at": "2021-09-30T08:27:58.455Z", "updated_at": "2021-09-30T11:29:48.579Z"}, {"id": 2912, "pubmed_id": 24198245, "title": "PubChem BioAssay: 2014 update.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt978", "authors": "Wang Y,Suzek T,Zhang J,Wang J,He S,Cheng T,Shoemaker BA,Gindulyte A,Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt978", "created_at": "2021-09-30T08:27:58.687Z", "updated_at": "2021-09-30T11:29:48.679Z"}, {"id": 2917, "pubmed_id": 22140110, "title": "PubChem's BioAssay Database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1132", "authors": "Wang Y,Xiao J,Suzek TO,Zhang J,Wang J,Zhou Z,Han L,Karapetyan K,Dracheva S,Shoemaker BA,Bolton E,Gindulyte A,Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1132", "created_at": "2021-09-30T08:27:59.229Z", "updated_at": "2021-09-30T11:29:48.870Z"}], "licence-links": [{"licence-name": "PubChem Attribution required", "licence-id": 689, "link-id": 1626, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1627, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1628, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1990", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.935Z", "metadata": {"doi": "10.25504/FAIRsharing.a5sv8m", "name": "PubMed", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/pubmed/", "identifier": 1990, "description": "PubMed is a search engine of biomedical literature, provided as a service of the U.S. National Library of Medicine and includes more than 25 million citations for biomedical literature from MEDLINE, life science journals, and online books. Citations may include links to full-text content from PubMed Central and publisher web sites.", "abbreviation": "PubMed", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/books/NBK3827/#pubmedhelp.FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK3827/#pubmedhelp.PubMed_Quick_Start", "type": "Help documentation"}, {"url": "https://learn.nlm.nih.gov/rest/training-packets/T0042010P.html", "type": "Training documentation"}], "year-creation": 1996, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/pubmed/clinical", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000456", "bsg-d000456"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Traditional Medicine", "Earth Science", "Life Science", "Biomedical Science"], "domains": ["Bibliography", "Behavior"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PubMed", "abbreviation": "PubMed", "url": "https://fairsharing.org/10.25504/FAIRsharing.a5sv8m", "doi": "10.25504/FAIRsharing.a5sv8m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PubMed is a search engine of biomedical literature, provided as a service of the U.S. National Library of Medicine and includes more than 25 million citations for biomedical literature from MEDLINE, life science journals, and online books. Citations may include links to full-text content from PubMed Central and publisher web sites.", "publications": [{"id": 1022, "pubmed_id": 16381840, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj158", "authors": "Barrett T., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj158", "created_at": "2021-09-30T08:24:13.181Z", "updated_at": "2021-09-30T08:24:13.181Z"}], "licence-links": [{"licence-name": "NLM Copyright Information", "licence-id": 592, "link-id": 530, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 539, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1993", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.187Z", "metadata": {"doi": "10.25504/FAIRsharing.ge1c3p", "name": "UniGene gene-oriented nucleotide sequence clusters", "status": "deprecated", "contacts": [{"contact-name": "David L. Wheeler", "contact-email": "wheeler@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/unigene", "identifier": 1993, "description": "Each UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", "abbreviation": "UniGene", "support-links": [{"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "https://www.ncbi.nlm.nih.gov/UniGene/help.cgi?item=FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/UniGene/help.cgi", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/repository/UniGene/", "name": "Download", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/UniGene/lbrowse2.cgi?TAXID=9606&CUTOFF=1000", "name": "browse", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/unigene", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/UniGene/ddd.cgi", "name": "digital differential display"}], "deprecation-date": "2021-05-27", "deprecation-reason": "The UniGene database and web pages have been retired. Please see https://ncbiinsights.ncbi.nlm.nih.gov/2019/07/30/the-unigene-web-pages-are-now-retired/ for more information."}, "legacy-ids": ["biodbcore-000459", "bsg-d000459"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Protein", "Gene", "Complementary DNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: UniGene gene-oriented nucleotide sequence clusters", "abbreviation": "UniGene", "url": "https://fairsharing.org/10.25504/FAIRsharing.ge1c3p", "doi": "10.25504/FAIRsharing.ge1c3p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Each UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", "publications": [{"id": 460, "pubmed_id": 12519941, "title": "Database resources of the National Center for Biotechnology.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg033", "authors": "Wheeler DL., Church DM., Federhen S., Lash AE., Madden TL., Pontius JU., Schuler GD., Schriml LM., Sequeira E., Tatusova TA., Wagner L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg033", "created_at": "2021-09-30T08:23:09.975Z", "updated_at": "2021-09-30T08:23:09.975Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1546, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2270", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-12T11:32:54.000Z", "updated-at": "2021-11-24T13:20:16.837Z", "metadata": {"doi": "10.25504/FAIRsharing.nx58jg", "name": "Open Researcher and Contributor ID Registry", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "support@orcid.org"}], "homepage": "http://orcid.org/", "identifier": 2270, "description": "ORCID is an open, non-profit, community-driven effort to create and maintain a registry of unique researcher identifiers and a transparent method of linking research activities and outputs to these identifiers. The ORCID Registry is a repository of unique researcher identifiers which allows researchers to manage a record of their research activities. In addition, there are APIs that support system-to-system communication and authentication. ORCID makes its code available under an open source license, and will post an annual public data file under a CC0 waiver for free download.", "abbreviation": "ORCID Registry", "access-points": [{"url": "https://members.orcid.org/api", "name": "ORCID API Resources", "type": "REST"}], "support-links": [{"url": "https://support.orcid.org/hc/en-us/requests/new", "name": "Submit a Request / Comment", "type": "Contact form"}, {"url": "https://support.orcid.org/hc/en-us/categories/360000663174", "name": "ORCID FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://support.orcid.org/hc/en-us/community/topics", "name": "Community Forum", "type": "Forum"}, {"url": "https://orcid.org/help", "name": "General Help Pages", "type": "Help documentation"}, {"url": "https://support.orcid.org/hc/en-us", "name": "Help Center", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/make-your-academic-life-easy-with-orcid-an-introduction", "name": "Make your academic life easy with ORCID: an introduction", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/ORCID_Org", "name": "@ORCID_Org", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"name": "free for commercial and non-commercial", "type": "data access"}, {"url": "https://orcid.org/register", "name": "Register for an ORCID", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000744", "bsg-d000744"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Open Researcher and Contributor ID Registry", "abbreviation": "ORCID Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.nx58jg", "doi": "10.25504/FAIRsharing.nx58jg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ORCID is an open, non-profit, community-driven effort to create and maintain a registry of unique researcher identifiers and a transparent method of linking research activities and outputs to these identifiers. The ORCID Registry is a repository of unique researcher identifiers which allows researchers to manage a record of their research activities. In addition, there are APIs that support system-to-system communication and authentication. ORCID makes its code available under an open source license, and will post an annual public data file under a CC0 waiver for free download.", "publications": [], "licence-links": [{"licence-name": "ORCID Data Terms and Conditions of Use", "licence-id": 637, "link-id": 1435, "relation": "undefined"}, {"licence-name": "ORCID Privacy Policy", "licence-id": 639, "link-id": 1436, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1437, "relation": "undefined"}, {"licence-name": "ORCID MIT-Style License", "licence-id": 638, "link-id": 1438, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2271", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-08T12:26:03.000Z", "updated-at": "2021-12-06T10:47:58.278Z", "metadata": {"doi": "10.25504/FAIRsharing.566n8c", "name": "EU Clinical Trial Register", "status": "ready", "contacts": [{"contact-email": "euctr@ema.europa.eu"}], "homepage": "https://www.clinicaltrialsregister.eu/", "identifier": 2271, "description": "The EU Clinical Trials Register contains information on interventional clinical trials on medicines conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.", "abbreviation": "EUCTR", "support-links": [{"url": "euctr@ema.europa.eu", "type": "Support email"}, {"url": "https://www.clinicaltrialsregister.eu/doc/EU_CTR_FAQ.pdf", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.clinicaltrialsregister.eu/doc/How_to_Search_EU_CTR.pdf", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://www.clinicaltrialsregister.eu/ctr-search/search", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013302", "name": "re3data:r3d100013302", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000745", "bsg-d000745"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Biomedical Science", "Epidemiology", "Preclinical Studies", "Medical Informatics"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: EU Clinical Trial Register", "abbreviation": "EUCTR", "url": "https://fairsharing.org/10.25504/FAIRsharing.566n8c", "doi": "10.25504/FAIRsharing.566n8c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EU Clinical Trials Register contains information on interventional clinical trials on medicines conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.", "publications": [], "licence-links": [{"licence-name": "European Medicines Agency Legal Notice", "licence-id": 302, "link-id": 1370, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2005", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.610Z", "metadata": {"doi": "10.25504/FAIRsharing.qrw6b7", "name": "Rice Genome Annotation Project", "status": "ready", "contacts": [{"contact-name": "C. Robin Buell", "contact-email": "buell@msu.edu"}], "homepage": "http://rice.plantbiology.msu.edu/", "identifier": 2005, "description": "This website provides genome sequence from the Nipponbare subspecies of rice and annotation of the 12 rice chromosomes. These data are available through search pages and the Genome Browser that provides an integrated display of annotation data.", "support-links": [{"url": "rice@plantbiology.msu.edu", "type": "Support email"}, {"url": "http://rice.plantbiology.msu.edu/home_faq.shtml", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://rice.plantbiology.msu.edu/home_overview.shtml", "type": "Help documentation"}, {"url": "http://rice.plantbiology.msu.edu/home_training.shtml", "type": "Training documentation"}], "data-processes": [{"url": "http://rice.plantbiology.msu.edu/downloads.shtml", "name": "Download", "type": "data access"}, {"url": "http://rice.plantbiology.msu.edu/analyses_search.shtml", "name": "search", "type": "data access"}, {"url": "http://rice.plantbiology.msu.edu/cgi-bin/gbrowse/rice/", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://rice.plantbiology.msu.edu/analyses_search_blast.shtml", "name": "BLAST"}, {"url": "http://rice.plantbiology.msu.edu/coexpression.shtml", "name": "analyze"}]}, "legacy-ids": ["biodbcore-000471", "bsg-d000471"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Deoxyribonucleic acid", "Chromosome"], "taxonomies": ["Oryza"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Rice Genome Annotation Project", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qrw6b7", "doi": "10.25504/FAIRsharing.qrw6b7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This website provides genome sequence from the Nipponbare subspecies of rice and annotation of the 12 rice chromosomes. These data are available through search pages and the Genome Browser that provides an integrated display of annotation data.", "publications": [{"id": 1508, "pubmed_id": 17145706, "title": "The TIGR Rice Genome Annotation Resource: improvements and new features.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl976", "authors": "Ouyang S., Zhu W., Hamilton J., Lin H., Campbell M., Childs K., Thibaud-Nissen F., Malek RL., Lee Y., Zheng L., Orvis J., Haas B., Wortman J., Buell CR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl976", "created_at": "2021-09-30T08:25:08.828Z", "updated_at": "2021-09-30T08:25:08.828Z"}], "licence-links": [{"licence-name": "Rice Genome Annotation Project Attribution required", "licence-id": 712, "link-id": 115, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2708", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-19T12:18:49.000Z", "updated-at": "2022-02-08T10:29:52.510Z", "metadata": {"doi": "10.25504/FAIRsharing.293c15", "name": "GTEx Portal", "status": "ready", "homepage": "https://gtexportal.org", "identifier": 2708, "description": "The Genotype-Tissue Expression (GTEx) project is an ongoing effort to build a comprehensive public resource to study tissue-specific gene expression and regulation. Samples were collected from 53 non-diseased tissue sites across nearly 1000 individuals, primarily for molecular assays including WGS, WES, and RNA-Seq. Remaining samples are available from the GTEx Biobank. The GTEx Portal provides open access to data including gene expression, QTLs, and histology images.", "abbreviation": "GTEx Portal", "access-points": [{"url": "https://gtexportal.org/home/api-docs/", "name": "GTEx API", "type": "REST"}], "support-links": [{"url": "https://gtexportal.org/home/contact", "name": "GTEx Contact Form", "type": "Contact form"}, {"url": "https://gtexportal.org/home/documentationPage", "name": "GTEx documentation", "type": "Help documentation"}, {"url": "https://gtexportal.org/home/releaseInfoPage", "name": "Release information", "type": "Help documentation"}, {"url": "https://gtexportal.org/home/tissueSummaryPage", "name": "Dataset Summary Information", "type": "Help documentation"}, {"url": "https://gtexportal.org/home/videos", "name": "Training Videos", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://gtexportal.org/home/datasets", "name": "Data Download", "type": "data access"}, {"url": "https://gtexportal.org/home/transcriptPage", "name": "Browse Transcripts", "type": "data access"}, {"url": "https://gtexportal.org/home/topExpressedGenePage", "name": "Browse GTEx Top 50 Expressed Genes by Tissue", "type": "data access"}, {"url": "https://gtexportal.org/home/multiGeneQueryPage", "name": "Multi-Gene Query", "type": "data access"}, {"url": "https://gtexportal.org/home/spliceQTLPage", "name": "Browse Splice QTLs", "type": "data access"}, {"url": "https://gtexportal.org/home/ptvSummary", "name": "Browse Protein Truncating Variants", "type": "data access"}, {"url": "https://gtexportal.org/home/imprintingPage", "name": "Browse Genomic Imprinting Data", "type": "data access"}], "associated-tools": [{"url": "https://gtexportal.org/home/bubbleHeatmapPage", "name": "GTEx Gene-eQTL Visualizer"}, {"url": "https://gtexportal.org/home/histologyPage?tab=PCA", "name": "Expression PCA"}, {"url": "https://gtexportal.org/home/browseEqtls", "name": "GTEx IGV eQTL Browser"}, {"url": "https://gtexportal.org/home/testyourown", "name": "GTEx eQTL Calculator"}, {"url": "https://gtexportal.org/home/eqtlDashboardPage", "name": "GTEx eQTL Dashboard"}]}, "legacy-ids": ["biodbcore-001206", "bsg-d001206"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science"], "domains": ["Gene expression", "Regulation of gene expression", "RNA sequencing", "Whole genome sequencing", "Histology", "Quantitative trait loci"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GTEx Portal", "abbreviation": "GTEx Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.293c15", "doi": "10.25504/FAIRsharing.293c15", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genotype-Tissue Expression (GTEx) project is an ongoing effort to build a comprehensive public resource to study tissue-specific gene expression and regulation. Samples were collected from 53 non-diseased tissue sites across nearly 1000 individuals, primarily for molecular assays including WGS, WES, and RNA-Seq. Remaining samples are available from the GTEx Biobank. The GTEx Portal provides open access to data including gene expression, QTLs, and histology images.", "publications": [], "licence-links": [{"licence-name": "GTEx Data Release and Publication Policy", "licence-id": 366, "link-id": 1728, "relation": "undefined"}, {"licence-name": "Fort Lauderdale Principles", "licence-id": 322, "link-id": 1729, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2030", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:22.389Z", "metadata": {"doi": "10.25504/FAIRsharing.6bd5k6", "name": "Orphanet", "status": "ready", "contacts": [{"contact-email": "partnerships.orphanet@inserm.fr"}], "homepage": "http://www.orpha.net/consor/cgi-bin/index.php?lng=EN", "identifier": 2030, "description": "Orphanet is the reference resource for information on rare diseases and orphan drugs for all publics. Its aim is to contribute to the improvement of the diagnosis, care and treatment of patients with rare diseases. Orphanet maintains the Orphanet nomenclature, essential for interoperability, and the Orphanet Rare Disease Ontology (ORDO).", "abbreviation": "Orphanet", "support-links": [{"url": "contact.orphanet@inserm.fr", "name": "Contact email", "type": "Support email"}, {"url": "http://www.orpha.net/consor/cgi-bin/", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCKMLSL9hlrxz6zKFod5IlnA", "name": "Orphanet Tutorials", "type": "Video"}, {"url": "https://twitter.com/orphanet", "type": "Twitter"}], "year-creation": 1997, "data-processes": [{"url": "http://www.orphadata.org/cgi-bin/index.php", "name": "Download", "type": "data access"}, {"url": "http://www.orpha.net/consor/cgi-bin/Directory_RegisterActivity.php?lng=EN", "name": "Submit", "type": "data curation"}, {"url": "http://www.orpha.net/consor/cgi-bin/Disease_Search.php?lng=EN", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://www.orphadata.org/cgi-bin/index.php/", "name": "Orphadata"}, {"url": "http://www.orphadata.org/cgi-bin/inc/ordo_orphanet.inc.php", "name": "ORDO 2"}]}, "legacy-ids": ["biodbcore-000497", "bsg-d000497"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Drug", "Rare disease", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union", "France"], "name": "FAIRsharing record for: Orphanet", "abbreviation": "Orphanet", "url": "https://fairsharing.org/10.25504/FAIRsharing.6bd5k6", "doi": "10.25504/FAIRsharing.6bd5k6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Orphanet is the reference resource for information on rare diseases and orphan drugs for all publics. Its aim is to contribute to the improvement of the diagnosis, care and treatment of patients with rare diseases. Orphanet maintains the Orphanet nomenclature, essential for interoperability, and the Orphanet Rare Disease Ontology (ORDO).", "publications": [{"id": 2126, "pubmed_id": 19058507, "title": "[Orphanet and the Dutch Steering Committee Orphan Drugs. A European and Dutch databank of information on rare diseases].", "year": 2008, "url": "https://www.ncbi.nlm.nih.gov/pubmed/19058507", "authors": "Liem SL.,", "journal": "Ned Tijdschr Tandheelkd", "doi": null, "created_at": "2021-09-30T08:26:19.725Z", "updated_at": "2021-09-30T08:26:19.725Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 472, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2777", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-12T14:06:28.000Z", "updated-at": "2021-11-24T13:17:06.929Z", "metadata": {"doi": "10.25504/FAIRsharing.PeLjos", "name": "iGEM Registry of Standard Biological Parts", "status": "ready", "contacts": [{"contact-name": "Vinoo Selvarajhah", "contact-email": "vinoo@igem.org"}], "homepage": "http://parts.igem.org", "identifier": 2777, "description": "The iGEM Parts Registry is a growing collection of genetic parts that can be mixed and matched to build synthetic biology devices and systems. As part of the synthetic biology community's efforts to make biology easier to engineer, it provides a source of genetic parts to iGEM teams and academic labs. You can learn more about iGEM Teams and Labs at iGEM.org.", "abbreviation": "iGEM", "support-links": [{"url": "http://parts.igem.org/Help:Contents", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://parts.igem.org/Videos", "name": "iGEM Videos", "type": "Training documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://parts.igem.org/Add_a_Part_to_the_Registry", "name": "Add a Part", "type": "data curation"}, {"url": "http://parts.igem.org/Catalog", "name": "Browse Parts", "type": "data access"}, {"url": "http://parts.igem.org/Collections", "name": "Browse Collections", "type": "data access"}, {"url": "http://parts.igem.org/assembly/libraries.cgi?id=81", "name": "Browse DNA Sample Libraries", "type": "data access"}], "associated-tools": [{"url": "http://parts.igem.org/cgi/sequencing/index.cgi", "name": "Sequence Analysis"}]}, "legacy-ids": ["biodbcore-001276", "bsg-d001276"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Bioengineering"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: iGEM Registry of Standard Biological Parts", "abbreviation": "iGEM", "url": "https://fairsharing.org/10.25504/FAIRsharing.PeLjos", "doi": "10.25504/FAIRsharing.PeLjos", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The iGEM Parts Registry is a growing collection of genetic parts that can be mixed and matched to build synthetic biology devices and systems. As part of the synthetic biology community's efforts to make biology easier to engineer, it provides a source of genetic parts to iGEM teams and academic labs. You can learn more about iGEM Teams and Labs at iGEM.org.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2049", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:53.689Z", "metadata": {"doi": "10.25504/FAIRsharing.mr293q", "name": "The Vertebrate Genome Annotation Database", "status": "ready", "contacts": [{"contact-name": "Jennifer L Harrow", "contact-email": "jla1@sanger.ac.uk", "contact-orcid": "0000-0003-0338-3070"}], "homepage": "https://vega.archive.ensembl.org/index.html", "citations": [], "identifier": 2049, "description": "The Vertebrate Genome Annotation (VEGA) database is a central repository for high quality manual annotation of vertebrate finished genome sequence.", "abbreviation": "VEGA", "support-links": [{"url": "http://vega.sanger.ac.uk/Help/Contact/", "type": "Contact form"}, {"url": "http://vega.sanger.ac.uk/info/index.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://vega.sanger.ac.uk/info/about/data_access.html", "name": "Download", "type": "data access"}, {"name": "Automated annotation ; manual curation", "type": "data curation"}], "associated-tools": [{"url": "http://vega.sanger.ac.uk/Multi/blastview", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012575", "name": "re3data:r3d100012575", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007907", "name": "SciCrunch:RRID:SCR_007907", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000516", "bsg-d000516"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Sequence", "Gene", "Genome"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: The Vertebrate Genome Annotation Database", "abbreviation": "VEGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.mr293q", "doi": "10.25504/FAIRsharing.mr293q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Vertebrate Genome Annotation (VEGA) database is a central repository for high quality manual annotation of vertebrate finished genome sequence.", "publications": [{"id": 493, "pubmed_id": 18003653, "title": "The vertebrate genome annotation (Vega) database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm987", "authors": "Wilming LG., Gilbert JG., Howe K., Trevanion S., Hubbard T., Harrow JL.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm987", "created_at": "2021-09-30T08:23:13.576Z", "updated_at": "2021-09-30T08:23:13.576Z"}, {"id": 1141, "pubmed_id": 24316575, "title": "The Vertebrate Genome Annotation browser 10 years on.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1241", "authors": "Harrow JL, Steward CA, Frankish A, Gilbert JG, Gonzalez JM, Loveland JE, Mudge J, Sheppard D, Thomas M, Trevanion S, Wilming LG.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1241", "created_at": "2021-09-30T08:24:26.817Z", "updated_at": "2021-09-30T08:24:26.817Z"}], "licence-links": [{"licence-name": "Ensembl Privacy Statement", "licence-id": 282, "link-id": 1169, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2057", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:26.460Z", "metadata": {"doi": "10.25504/FAIRsharing.x93ckv", "name": "Stanford Microarray Database", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "array@genomics.princeton.edu"}], "homepage": "http://smd.princeton.edu/", "identifier": 2057, "description": "The Stanford Microarray Database is a repository a microarray based gene expression and comparative genomics data. This resource is no longer being maintained please us public repositories NCBI Gene Expression Omnibus or EBI Array Express", "abbreviation": "SMD", "support-links": [{"url": "http://smd.princeton.edu/help/FAQ.shtml", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://smd.princeton.edu/help/index.shtml", "type": "Help documentation"}, {"url": "http://smd.princeton.edu/help/tutorials_subpage.shtml", "type": "Training documentation"}], "data-processes": [{"url": "ftp://smd-ftp.stanford.edu/pub/smd/", "name": "Download", "type": "data access"}, {"url": "http://smd.princeton.edu/help/smd_tools.shtml", "name": "analyze", "type": "data access"}, {"url": "http://smd.princeton.edu/cgi-bin/search/nameSearch.pl", "name": "search", "type": "data access"}, {"url": "http://smd.princeton.edu/cgi-bin/search/QuerySetup.pl", "name": "advanced search", "type": "data access"}, {"url": "https://www.innatedb.com/doc/InnateDB_2011_curation_guide.pdf", "name": "manual curation", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010555", "name": "re3data:r3d100010555", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004987", "name": "SciCrunch:RRID:SCR_004987", "portal": "SciCrunch"}], "deprecation-date": "2016-12-21", "deprecation-reason": "The database has been retired in January 2014."}, "legacy-ids": ["biodbcore-000524", "bsg-d000524"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Ribonucleic acid"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Stanford Microarray Database", "abbreviation": "SMD", "url": "https://fairsharing.org/10.25504/FAIRsharing.x93ckv", "doi": "10.25504/FAIRsharing.x93ckv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Stanford Microarray Database is a repository a microarray based gene expression and comparative genomics data. This resource is no longer being maintained please us public repositories NCBI Gene Expression Omnibus or EBI Array Express", "publications": [{"id": 675, "pubmed_id": 17182626, "title": "The Stanford Microarray Database: implementation of new analysis tools and open source release of software.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1019", "authors": "Demeter J., Beauheim C., Gollub J., Hernandez-Boussard T., Jin H., Maier D., Matese JC., Nitzberg M., Wymore F., Zachariah ZK., Brown PO., Sherlock G., Ball CA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1019", "created_at": "2021-09-30T08:23:34.446Z", "updated_at": "2021-09-30T08:23:34.446Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2065", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:44.869Z", "metadata": {"doi": "10.25504/FAIRsharing.jrfd8y", "name": "The Cancer Imaging Archive", "status": "ready", "contacts": [{"contact-name": "Justin Kirby", "contact-email": "help@cancerimagingarchive.net", "contact-orcid": "0000-0003-3487-8922"}], "homepage": "http://cancerimagingarchive.net/", "citations": [{"doi": "10.1007/s10278-013-9622-7", "pubmed-id": 23884657, "publication-id": 1335}], "identifier": 2065, "description": "The Cancer Imaging Archive (TCIA) is a service which de-identifies and hosts medical images of cancer for public download. The data are organized as \u201ccollections\u201d; typically patients\u2019 imaging related by a common disease (e.g. lung cancer), image modality or type (MRI, CT, digital histopathology, etc) or research focus. DICOM is the primary file format used by TCIA for radiology imaging. Supporting data related to the images such as patient outcomes, treatment details, genomics and expert analyses are also provided when available.", "abbreviation": "TCIA", "access-points": [{"url": "https://wiki.cancerimagingarchive.net/x/NIIiAQ", "name": "REST documentation", "type": "REST"}], "support-links": [{"url": "https://www.facebook.com/The.Cancer.Imaging.Archive", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.cancerimagingarchive.net/contact-form/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://wiki.cancerimagingarchive.net/pages/viewpage.action?pageId=4555089", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/forum/#!forum/tcia-announcements", "name": "TCIA Announcements Google Group", "type": "Forum"}, {"url": "https://www.linkedin.com/groups/4371904/profile", "name": "LinkedIn Group", "type": "Forum"}, {"url": "https://wiki.cancerimagingarchive.net/x/rYAY", "name": "Wiki Documentation", "type": "Help documentation"}, {"url": "https://www.cancerimagingarchive.net/support/", "name": "Support Documentation", "type": "Help documentation"}, {"url": "https://www.cancerimagingarchive.net/about-the-cancer-imaging-archive-tcia/", "name": "About TCIA", "type": "Help documentation"}, {"url": "https://twitter.com/TCIA_News", "name": "@TCIA_News", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/The_Cancer_Imaging_Archive_%28TCIA%29", "name": "TCIA Wikipedia Entry", "type": "Wikipedia"}], "data-processes": [{"url": "https://www.cancerimagingarchive.net/histopathology-imaging-on-tcia/", "name": "Histopathology Data Portal", "type": "data access"}, {"url": "https://www.cancerimagingarchive.net/analysis-results/", "name": "Submit analyses", "type": "data curation"}, {"url": "https://www.cancerimagingarchive.net/primary-data/", "name": "Submit primary data", "type": "data curation"}, {"url": "https://nbia.cancerimagingarchive.net/nbia-search/", "name": "Radiology Data Portal", "type": "data access"}, {"url": "https://www.cancerimagingarchive.net/tcia-analysis-results/", "name": "Browse Analysis Results", "type": "data access"}, {"url": "https://www.cancerimagingarchive.net/collections/", "name": "Browse All Collections", "type": "data access"}], "associated-tools": [{"url": "https://wiki.cancerimagingarchive.net/pages/viewpage.action?pageId=22515655", "name": "TCIA Data Analysis Centers (DACs)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011559", "name": "re3data:r3d100011559", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008927", "name": "SciCrunch:RRID:SCR_008927", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000532", "bsg-d000532"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Artificial Intelligence", "Radiology", "Biomedical Science", "Digital Image Processing"], "domains": ["Cancer", "Imaging", "Image", "Histology", "Machine learning"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Digital pathology"], "countries": ["United States"], "name": "FAIRsharing record for: The Cancer Imaging Archive", "abbreviation": "TCIA", "url": "https://fairsharing.org/10.25504/FAIRsharing.jrfd8y", "doi": "10.25504/FAIRsharing.jrfd8y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cancer Imaging Archive (TCIA) is a service which de-identifies and hosts medical images of cancer for public download. The data are organized as \u201ccollections\u201d; typically patients\u2019 imaging related by a common disease (e.g. lung cancer), image modality or type (MRI, CT, digital histopathology, etc) or research focus. DICOM is the primary file format used by TCIA for radiology imaging. Supporting data related to the images such as patient outcomes, treatment details, genomics and expert analyses are also provided when available.", "publications": [{"id": 1335, "pubmed_id": 23884657, "title": "The Cancer Imaging Archive (TCIA): maintaining and operating a public information repository.", "year": 2013, "url": "http://doi.org/10.1007/s10278-013-9622-7", "authors": "Clark K,Vendt B,Smith K,Freymann J,Kirby J,Koppel P,Moore S,Phillips S,Maffitt D,Pringle M,Tarbox L,Prior F", "journal": "J Digit Imaging", "doi": "10.1007/s10278-013-9622-7", "created_at": "2021-09-30T08:24:49.410Z", "updated_at": "2021-09-30T08:24:49.410Z"}, {"id": 2262, "pubmed_id": 24772218, "title": "Quantitative Imaging Network: Data Sharing and Competitive AlgorithmValidation Leveraging The Cancer Imaging Archive.", "year": 2014, "url": "http://doi.org/10.1593/tlo.13862", "authors": "Kalpathy-Cramer J,Freymann JB,Kirby JS,Kinahan PE,Prior FW", "journal": "Transl Oncol", "doi": "10.1593/tlo.13862", "created_at": "2021-09-30T08:26:35.198Z", "updated_at": "2021-09-30T08:26:35.198Z"}, {"id": 2266, "pubmed_id": 25414001, "title": "Iterative probabilistic voxel labeling: automated segmentation for analysis of The Cancer Imaging Archive glioblastoma images.", "year": 2014, "url": "http://doi.org/10.3174/ajnr.A4171", "authors": "Steed TC,Treiber JM,Patel KS,Taich Z,White NS,Treiber ML,Farid N,Carter BS,Dale AM,Chen CC", "journal": "AJNR Am J Neuroradiol", "doi": "10.1016/j.jocn.2018.06.018", "created_at": "2021-09-30T08:26:35.723Z", "updated_at": "2021-09-30T08:26:35.723Z"}, {"id": 2697, "pubmed_id": 28925987, "title": "The public cancer radiology imaging collections of The Cancer Imaging Archive.", "year": 2017, "url": "http://doi.org/10.1038/sdata.2017.124", "authors": "Prior F,Smith K,Sharma A,Kirby J,Tarbox L,Clark K,Bennett W,Nolan T,Freymann J", "journal": "Sci Data", "doi": "10.1038/sdata.2017.124", "created_at": "2021-09-30T08:27:31.255Z", "updated_at": "2021-09-30T08:27:31.255Z"}, {"id": 2698, "pubmed_id": 29871933, "title": "TCIApathfinder: an R client for The Cancer Imaging Archive REST API.", "year": 2018, "url": "http://doi.org/10.1158/0008-5472.CAN-18-0678", "authors": "Russell P,Fountain K,Wolverton D,Ghosh D", "journal": "Cancer Res", "doi": "10.1158/0008-5472.CAN-18-0678", "created_at": "2021-09-30T08:27:31.371Z", "updated_at": "2021-09-30T08:27:31.371Z"}, {"id": 2699, "pubmed_id": 29934058, "title": "Molecular physiology of contrast enhancement in glioblastomas: An analysis of The Cancer Imaging Archive (TCIA).", "year": 2018, "url": "http://doi.org/S0967-5868(17)31169-4", "authors": "Treiber JM,Steed TC,Brandel MG,Patel KS,Dale AM,Carter BS,Chen CC", "journal": "J Clin Neurosci", "doi": "S0967-5868(17)31169-4", "created_at": "2021-09-30T08:27:31.530Z", "updated_at": "2021-09-30T08:27:31.530Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 649, "relation": "undefined"}, {"licence-name": "TCIA Data Usage Policy", "licence-id": 774, "link-id": 650, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2671", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-29T18:39:07.000Z", "updated-at": "2021-12-06T10:48:50.710Z", "metadata": {"doi": "10.25504/FAIRsharing.LYsiMd", "name": "Mass Spectrometry Interactive Virtual Environment", "status": "ready", "contacts": [{"contact-name": "Mingxun Wang", "contact-email": "miw023@ucsd.edu", "contact-orcid": "0000-0001-7647-6097"}], "homepage": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", "citations": [], "identifier": 2671, "description": "MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data. MassIVE datasets can be assigned ProteomeXchange accessions to satisfy publication requirements.", "abbreviation": "MassIVE", "access-points": [{"url": "https://ccms-ucsd.github.io/MassIVEDocumentation/#api/", "name": "API Documentation", "type": "REST"}], "data-curation": {"url": "http://proteomics.ucsd.edu/Software/", "type": "automated"}, "support-links": [{"url": "ccms-web@cs.ucsd.edu", "name": "General Support", "type": "Support email"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/help.jsp", "name": "General Information", "type": "Help documentation"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/demo_2.jsp", "name": "InsPecT Demonstration Video and Results", "type": "Help documentation"}, {"url": "https://ccms-ucsd.github.io/MassIVEDocumentation", "name": "General Documentation", "type": "Github"}], "year-creation": 2012, "data-processes": [{"url": "http://proteomics.ucsd.edu/service/massive/documentation/submit-data/", "name": "Submit Data", "type": "data curation"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/datasets.jsp#%7B%22query%22%3A%7B%7D%2C%22table_sort_history%22%3A%22createdMillis_dsc%22%7D", "name": "Browse Data", "type": "data access"}, {"url": "http://proteomics.ucsd.edu/service/massive/documentation/share-reanalyses/", "name": "Submit Reanalyses", "type": "data curation"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/massive_search.jsp", "name": "Search", "type": "data access"}, {"url": "https://ccms-ucsd.github.io/MassIVEDocumentation/reanalyze_spectra/", "name": "Reanalyse Data", "type": "data access"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/static/massive-kb-libraries.jsp", "name": "MassIVE Knowledgebase", "type": "data access"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/protein_explorer_splash.jsp", "name": "Protein Explorer", "type": "data access"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/static/massive-quant.jsp", "name": "MassIVE.Quant", "type": "data access"}, {"url": "https://massive.ucsd.edu/ProteoSAFe/static/corona-mass-kb.jsp", "name": "CoronaMassKB", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012858", "name": "re3data:r3d100012858", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013665", "name": "SciCrunch:RRID:SCR_013665", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001164", "bsg-d001164"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Proteomics", "Metabolomics", "Transcriptomics"], "domains": ["Mass spectrum", "Expression data", "Protocol", "Study design"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Mass Spectrometry Interactive Virtual Environment", "abbreviation": "MassIVE", "url": "https://fairsharing.org/10.25504/FAIRsharing.LYsiMd", "doi": "10.25504/FAIRsharing.LYsiMd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data. MassIVE datasets can be assigned ProteomeXchange accessions to satisfy publication requirements.", "publications": [{"id": 106, "pubmed_id": 27504778, "title": "Sharing and community curation of mass spectrometry data with Global Natural Products Social Molecular Networking.", "year": 2016, "url": "http://doi.org/10.1038/nbt.3597", "authors": "Wang M,Carver JJ,Phelan VV et al.", "journal": "Nat Biotechnol", "doi": "10.1038/nbt.3597", "created_at": "2021-09-30T08:22:31.805Z", "updated_at": "2021-09-30T08:22:31.805Z"}, {"id": 1630, "pubmed_id": 27924013, "title": "The ProteomeXchange consortium in 2017: supporting the cultural change in proteomics public data deposition.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw936", "authors": "Deutsch EW,Csordas A,Sun Z,Jarnuczak A,Perez-Riverol Y,Ternent T,Campbell DS,Bernal-Llinares M,Okuda S,Kawano S,Moritz RL,Carver JJ,Wang M,Ishihama Y,Bandeira N,Hermjakob H,Vizcaino JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw936", "created_at": "2021-09-30T08:25:22.650Z", "updated_at": "2021-09-30T11:29:17.127Z"}, {"id": 2389, "pubmed_id": 32929271, "title": "MassIVE.quant: a community resource of quantitative mass spectrometry-based proteomics datasets.", "year": 2020, "url": "http://doi.org/10.1038/s41592-020-0955-0", "authors": "Choi M,Carver J,Chiva C,Tzouros M,Huang T,Tsai TH,Pullman B,Bernhardt OM,Huttenhain R,Teo GC,Perez-Riverol Y,Muntel J,Muller M,Goetze S,Pavlou M,Verschueren E,Wollscheid B,Nesvizhskii AI,Reiter L,Dunkley T,Sabido E,Bandeira N,Vitek O", "journal": "Nat Methods", "doi": "10.1038/s41592-020-0955-0", "created_at": "2021-09-30T08:26:53.485Z", "updated_at": "2021-09-30T08:26:53.485Z"}, {"id": 2390, "pubmed_id": 31686107, "title": "The ProteomeXchange consortium in 2020: enabling 'big data' approaches in proteomics.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz984", "authors": "Deutsch EW,Bandeira N,Sharma V,Perez-Riverol Y,Carver JJ,Kundu DJ,Garcia-Seisdedos D,Jarnuczak AF,Hewapathirana S,Pullman BS,Wertz J,Sun Z,Kawano S,Okuda S,Watanabe Y,Hermjakob H,MacLean B,MacCoss MJ,Zhu Y,Ishihama Y,Vizcaino JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz984", "created_at": "2021-09-30T08:26:53.582Z", "updated_at": "2021-09-30T11:29:34.686Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 202, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2148", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:10.723Z", "metadata": {"doi": "10.25504/FAIRsharing.s1r9bw", "name": "OpenNeuro", "status": "ready", "contacts": [{"contact-name": "Russell Poldrack", "contact-email": "poldrack@gmail.com", "contact-orcid": "0000-0001-6755-0259"}], "homepage": "https://www.openneuro.org/", "citations": [], "identifier": 2148, "description": "The OpenNeuro project (formerly known as the OpenfMRI project) was established in 2010 to provide a resource for researchers interested in making their neuroimaging data openly available to the research community. It is managed by Russ Poldrack and Chris Gorgolewski of the Center for Reproducible Neuroscience at Stanford University. The project has been developed with funding from the National Science Foundation, National Institute of Drug Abuse, and the Laura and John Arnold Foundation.", "abbreviation": "OpenNeuro", "support-links": [{"url": "https://www.openneuro.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/openneuroorg", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://openneuro.org/public/datasets", "name": "Browse public datasets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010924", "name": "re3data:r3d100010924", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005031", "name": "SciCrunch:RRID:SCR_005031", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000620", "bsg-d000620"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Life Science", "Biomedical Science"], "domains": ["Magnetic resonance imaging", "Imaging", "Cognition"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: OpenNeuro", "abbreviation": "OpenNeuro", "url": "https://fairsharing.org/10.25504/FAIRsharing.s1r9bw", "doi": "10.25504/FAIRsharing.s1r9bw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The OpenNeuro project (formerly known as the OpenfMRI project) was established in 2010 to provide a resource for researchers interested in making their neuroimaging data openly available to the research community. It is managed by Russ Poldrack and Chris Gorgolewski of the Center for Reproducible Neuroscience at Stanford University. The project has been developed with funding from the National Science Foundation, National Institute of Drug Abuse, and the Laura and John Arnold Foundation.", "publications": [{"id": 170, "pubmed_id": 26048618, "title": "OpenfMRI: Open sharing of task fMRI data.", "year": 2015, "url": "http://doi.org/S1053-8119(15)00463-2", "authors": "Poldrack RA,Gorgolewski KJ", "journal": "Neuroimage", "doi": "S1053-8119(15)00463-2", "created_at": "2021-09-30T08:22:38.630Z", "updated_at": "2021-09-30T08:22:38.630Z"}, {"id": 1776, "pubmed_id": 23847528, "title": "Toward open sharing of task-based fMRI data: the OpenfMRI project.", "year": 2013, "url": "http://doi.org/10.3389/fninf.2013.00012", "authors": "Poldrack RA, Barch DM, Mitchell JP, Wager TD, Wagner AD, Devlin JT, Cumba C, Koyejo O, Milham MP.", "journal": "Frontiers in Neuroinformatics", "doi": "10.3389%2Ffninf.2013.00012", "created_at": "2021-09-30T08:25:39.322Z", "updated_at": "2021-09-30T08:25:39.322Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2432, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3151", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T12:33:46.000Z", "updated-at": "2022-02-08T10:34:17.518Z", "metadata": {"doi": "10.25504/FAIRsharing.dac16a", "name": "German Marine Research Alliance Marine Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "expedition@awi.de"}], "homepage": "https://marine-data.de", "identifier": 3151, "description": "The German Marine Research Alliance (DAM) aims to strengthen the sustainable use of the coasts, seas and oceans through research, data management and digitalisation, infrastructure and transfer. The DAM Marine Data Portal provides an entry point for the data associated with this project.", "abbreviation": "DAM Marine Data Portal", "support-links": [{"url": "https://marine-data.de/?site=about", "name": "About", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://marine-data.de/?site=data", "name": "Search Data", "type": "data access"}, {"url": "https://marine-data.de/?site=platforms&qf=platforms.type%2FVessel", "name": "Browse Platforms", "type": "data access"}, {"url": "https://marine-data.de/?site=expeditions", "name": "Browse Expeditions", "type": "data access"}, {"url": "https://marine-data.de/?site=viewer", "name": "Map Viewer", "type": "data access"}, {"url": "https://marine-data.de/?site=publish", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011470", "name": "re3data:r3d100011470", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001662", "bsg-d001662"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Marine Biology", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: German Marine Research Alliance Marine Data Portal", "abbreviation": "DAM Marine Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.dac16a", "doi": "10.25504/FAIRsharing.dac16a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The German Marine Research Alliance (DAM) aims to strengthen the sustainable use of the coasts, seas and oceans through research, data management and digitalisation, infrastructure and transfer. The DAM Marine Data Portal provides an entry point for the data associated with this project.", "publications": [], "licence-links": [{"licence-name": "DAM Imprint", "licence-id": 209, "link-id": 507, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2195", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-12T09:57:03.000Z", "updated-at": "2021-12-06T10:49:07.089Z", "metadata": {"doi": "10.25504/FAIRsharing.rf3m4g", "name": "Plant Genomics and Phenomics Research Data Repository", "status": "ready", "contacts": [{"contact-name": "Daniel Arend", "contact-email": "arendd@ipk-gatersleben.de", "contact-orcid": "0000-0002-2455-5938"}], "homepage": "http://edal-pgp.ipk-gatersleben.de", "identifier": 2195, "description": "This repository provides several plant genomic and phenotypic datasets resulting from IPK and German Plant Phenotyping Network (DPPN) research activities. It was established in January 2015. The background of the study is in plant genetic resources, in particular the association of genotypes and phenotypes. This archive aims to provide data from the \"system plant\" - from the root to bloom and seed, as well from sequence analysis to systems biology.Ge", "abbreviation": "PGP", "access-points": [{"url": "https://doi.ipk-gatersleben.de/report/", "name": "Access & Download Statistics", "type": "Other"}], "support-links": [{"url": "http://edal.ipk-gatersleben.de/", "type": "Help documentation"}, {"url": "http://edal-pgp.ipk-gatersleben.de/contact.html", "type": "Mailing list"}, {"url": "http://edal.ipk-gatersleben.de/", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://tinyurl.com/mo57qh5", "name": "Web Access", "type": "data access"}], "associated-tools": [{"url": "http://edal.ipk-gatersleben.de/", "name": "e!DAL 2.5.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011876", "name": "re3data:r3d100011876", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000669", "bsg-d000669"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science"], "domains": ["Phenotype", "Genotype"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Plant Genomics and Phenomics Research Data Repository", "abbreviation": "PGP", "url": "https://fairsharing.org/10.25504/FAIRsharing.rf3m4g", "doi": "10.25504/FAIRsharing.rf3m4g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This repository provides several plant genomic and phenotypic datasets resulting from IPK and German Plant Phenotyping Network (DPPN) research activities. It was established in January 2015. The background of the study is in plant genetic resources, in particular the association of genotypes and phenotypes. This archive aims to provide data from the \"system plant\" - from the root to bloom and seed, as well from sequence analysis to systems biology.Ge", "publications": [{"id": 724, "pubmed_id": 24958009, "title": "e!DAL - a framework to store, share and publish research data", "year": 2014, "url": "http://doi.org/10.1186/1471-2105-15-214", "authors": "Daniel Arend, Matthias Lange, Jinbo Chen, Christian Colmsee, Steffen Flemming, Denny Hecht and Uwe Scholz", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-15-214", "created_at": "2021-09-30T08:23:39.788Z", "updated_at": "2021-09-30T08:23:39.788Z"}, {"id": 1376, "pubmed_id": 27087305, "title": "PGP repository: a plant phenomics and genomics data publication infrastructure.", "year": 2016, "url": "http://doi.org/10.1093/database/baw033", "authors": "Arend D,Junker A,Scholz U,Schuler D,Wylie J,Lange M", "journal": "Database (Oxford)", "doi": "10.1093/database/baw033", "created_at": "2021-09-30T08:24:53.901Z", "updated_at": "2021-09-30T08:24:53.901Z"}, {"id": 1816, "pubmed_id": null, "title": "The e!DAL JAVA-API: Store, share and cite primary data in life sciences", "year": 2012, "url": "http://doi.org/10.1109/BIBM.2012.6392737", "authors": "Daniel Arend, Matthias Lange, Christian Colmsee, Steffen Flemming, Jinbo Chen and Uwe Scholz", "journal": "IEEE International Conference on Bioinformatics and Biomedicine (BIBM)", "doi": "10.1109/BIBM.2012.6392737", "created_at": "2021-09-30T08:25:43.864Z", "updated_at": "2021-09-30T08:25:43.864Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 500, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2194", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-08T20:54:40.000Z", "updated-at": "2021-12-02T17:33:49.791Z", "metadata": {"doi": "10.25504/FAIRsharing.jr4y76", "name": "Canadensys", "status": "ready", "contacts": [{"contact-name": "Olivier Norvez", "contact-email": "olivier.norvez@umontreal.ca", "contact-orcid": "0000-0001-7696-3493"}], "homepage": "https://data.canadensys.net/explorer/occurrences/search?q=#tab_mapView", "citations": [], "identifier": 2194, "description": "Biological collections are replete with taxonomic, geographic, temporal, numerical, and historical information. This information is crucial for understanding and properly managing biodiversity and ecosystems, but is often difficult to access. Data publication is the act of making that information available online, and is the core mission of Canadensys. Most of the datasets contain specimen data, but checklists and observation data are present as well.", "abbreviation": "Canadensys", "support-links": [{"url": "http://www.canadensys.net/blog", "type": "Blog/News"}, {"url": "https://github.com/Canadensys", "type": "Github"}, {"url": "https://twitter.com/canadensys", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://data.canadensys.net/explorer/fr/rechercher", "name": "browse", "type": "data access"}, {"url": "http://data.canadensys.net/ipt/?request_locale=fr", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://data.canadensys.net/tools/coordinates", "name": "converter"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000668", "bsg-d000668"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Geographical location"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Canadensys", "abbreviation": "Canadensys", "url": "https://fairsharing.org/10.25504/FAIRsharing.jr4y76", "doi": "10.25504/FAIRsharing.jr4y76", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Biological collections are replete with taxonomic, geographic, temporal, numerical, and historical information. This information is crucial for understanding and properly managing biodiversity and ecosystems, but is often difficult to access. Data publication is the act of making that information available online, and is the core mission of Canadensys. Most of the datasets contain specimen data, but checklists and observation data are present as well.", "publications": [{"id": 1640, "pubmed_id": 24198712, "title": "Database of Vascular Plants of Canada (VASCAN): a community contributed taxonomic checklist of all vascular plants of Canada, Saint Pierre and Miquelon, and Greenland.", "year": 2013, "url": "http://doi.org/10.3897/phytokeys.25.3100", "authors": "Desmet P,Brouillet L", "journal": "PhytoKeys", "doi": "10.3897/phytokeys.25.3100", "created_at": "2021-09-30T08:25:23.704Z", "updated_at": "2021-09-30T08:25:23.704Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 913, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3225", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-04T10:42:17.000Z", "updated-at": "2021-11-24T13:14:58.863Z", "metadata": {"doi": "10.25504/FAIRsharing.CbLHss", "name": "National Institute of Mental Health Connectome Coordination Facility Repository", "status": "ready", "contacts": [{"contact-name": "NDA Helpdesk", "contact-email": "ndahelp@mail.nih.gov"}], "homepage": "https://nda.nih.gov/ccf", "identifier": 3225, "description": "The Connectome Coordination Facility (CCF) processes and distributes public research data for a series of neuroimaging studies that focus on connections within the human brain. These are known as Human Connectome Projects (HCP). The CCF currently supports 19 NIH-funded human connectome studies (see menus above). All data releases from CCF HCP studies are being made available on the NIMH Data Archive.", "abbreviation": "NIMH CCF", "access-points": [{"url": "https://nda.nih.gov/tools/apis.html", "name": "NDA Query API", "type": "REST"}], "support-links": [{"url": "https://nda.nih.gov/training/module?trainingModuleId=training.access&slideId=slide.access.intro", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ccf/hcp", "name": "About the HCP", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ccf/lifespan-studies", "name": "About the HCP Lifespan Studies", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ccf/disease-studies", "name": "About the HCP Disease Studies", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ccf/request-access/access-review-process", "name": "Requesting Access", "type": "Help documentation"}, {"url": "https://nda.nih.gov/ccf/about/ccf-protocols.html", "name": "CCF Protocols", "type": "Help documentation"}], "data-processes": [{"url": "https://nda.nih.gov/general-query.html?q=query=collections%20~and~%20orderBy=id%20~and~%20orderDirection=Ascending%20~and~%20dataRepositories=Connectome%20Coordination%20Facility", "name": "Search the CCF/HCP", "type": "data access"}, {"url": "https://nda.nih.gov/general-query.html?q=query=featured-datasets:Human%20Connectome%20Projects%20(HCP)", "name": "View HCP as a Featured Dataset", "type": "data access"}], "associated-tools": [{"url": "https://nda.nih.gov/ccf/about/ccf-software.html", "name": "CCF Software Listing"}]}, "legacy-ids": ["biodbcore-001739", "bsg-d001739"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Life Science", "Biomedical Science", "Neuroscience"], "domains": ["Medical imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Institute of Mental Health Connectome Coordination Facility Repository", "abbreviation": "NIMH CCF", "url": "https://fairsharing.org/10.25504/FAIRsharing.CbLHss", "doi": "10.25504/FAIRsharing.CbLHss", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Connectome Coordination Facility (CCF) processes and distributes public research data for a series of neuroimaging studies that focus on connections within the human brain. These are known as Human Connectome Projects (HCP). The CCF currently supports 19 NIH-funded human connectome studies (see menus above). All data releases from CCF HCP studies are being made available on the NIMH Data Archive.", "publications": [], "licence-links": [{"licence-name": "NDA Data Policy", "licence-id": 565, "link-id": 2173, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2256", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T14:10:05.000Z", "updated-at": "2021-12-06T10:48:52.026Z", "metadata": {"doi": "10.25504/FAIRsharing.m8wewa", "name": "Cancer Genome Atlas", "status": "ready", "contacts": [{"contact-email": "tcga@mail.nih.gov"}], "homepage": "https://www.cancer.gov/about-nci/organization/ccg/research/structural-genomics/tcga", "citations": [], "identifier": 2256, "description": "The Cancer Genome Atlas (TCGA) is a comprehensive, collaborative effort led by the National Institutes of Health (NIH) to map the genomic changes associated with specific types of tumors to improve the prevention, diagnosis and treatment of cancer. Its mission is to accelerate the understanding of the molecular basis of cancer through the application of genome analysis and characterization technologies.", "abbreviation": "TCGA", "support-links": [{"url": "https://wiki.nci.nih.gov/display/TCGA/TCGA+Data+Primer", "type": "Help documentation"}, {"url": "https://www.cancer.gov/about-nci/organization/ccg/research/structural-genomics/tcga/history", "type": "Help documentation"}, {"url": "https://twitter.com/TCGAupdates", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "https://portal.gdc.cancer.gov/", "name": "browse / search", "type": "data access"}], "associated-tools": [{"url": "https://www.cancer.gov/about-nci/organization/ccg/research/structural-genomics/tcga/using-tcga/tools", "name": "TCGA Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011173", "name": "re3data:r3d100011173", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003193", "name": "SciCrunch:RRID:SCR_003193", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000730", "bsg-d000730"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Life Science", "Biomedical Science"], "domains": ["Cancer"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cancer Genome Atlas", "abbreviation": "TCGA", "url": "https://fairsharing.org/10.25504/FAIRsharing.m8wewa", "doi": "10.25504/FAIRsharing.m8wewa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cancer Genome Atlas (TCGA) is a comprehensive, collaborative effort led by the National Institutes of Health (NIH) to map the genomic changes associated with specific types of tumors to improve the prevention, diagnosis and treatment of cancer. Its mission is to accelerate the understanding of the molecular basis of cancer through the application of genome analysis and characterization technologies.", "publications": [{"id": 785, "pubmed_id": 25654590, "title": "The future of cancer genomics.", "year": 2015, "url": "http://doi.org/10.1038/nm.3801", "authors": "No authors listed", "journal": "Nat Med", "doi": "10.1038/nm.3801", "created_at": "2021-09-30T08:23:46.535Z", "updated_at": "2021-09-30T11:28:30.971Z"}, {"id": 794, "pubmed_id": 21383744, "title": "Cancer genomics: from discovery science to personalized medicine.", "year": 2011, "url": "http://doi.org/10.1038/nm.2323", "authors": "Chin L,Andersen JN,Futreal PA", "journal": "Nat Med", "doi": "10.1038/nm.2323", "created_at": "2021-09-30T08:23:47.511Z", "updated_at": "2021-09-30T08:23:47.511Z"}, {"id": 1126, "pubmed_id": 21406553, "title": "Making sense of cancer genomic data.", "year": 2011, "url": "http://doi.org/10.1101/gad.2017311", "authors": "Chin L,Hahn WC,Getz G,Meyerson M", "journal": "Genes Dev", "doi": "10.1101/gad.2017311", "created_at": "2021-09-30T08:24:24.783Z", "updated_at": "2021-09-30T08:24:24.783Z"}, {"id": 1286, "pubmed_id": 25691825, "title": "The Cancer Genome Atlas (TCGA): an immeasurable source of knowledge.", "year": 2015, "url": "http://doi.org/10.5114/wo.2014.47136", "authors": "Tomczak K,Czerwinska P,Wiznerowicz M", "journal": "Contemp Oncol (Pozn)", "doi": "10.5114/wo.2014.47136", "created_at": "2021-09-30T08:24:43.542Z", "updated_at": "2021-09-30T08:24:43.542Z"}], "licence-links": [{"licence-name": "The Cancer Genome Atlas data policies and guidelines", "licence-id": 783, "link-id": 1315, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2209", "type": "fairsharing-records", "attributes": {"created-at": "2015-06-04T19:32:36.000Z", "updated-at": "2021-12-06T10:47:46.402Z", "metadata": {"doi": "10.25504/FAIRsharing.1hqd55", "name": "Structural Biology Data Grid", "status": "ready", "contacts": [{"contact-name": "Piotr Sliz", "contact-email": "sliz@hkl.hms.harvard.edu", "contact-orcid": "0000-0002-6522-0835"}], "homepage": "http://data.sbgrid.org", "identifier": 2209, "description": "The Structural Biology Data Grid (SBGrid-DG) community-driven repository to preserve primary experimental datasets that support scientific publications. The SBGrid Data Bank is an open source research data management system enabling Structural Biologists to preserve x-ray diffraction data and to make it accessible to the broad research community.", "abbreviation": "SBGrid-DG", "access-points": [{"url": "https://data.sbgrid.org/static/html/apidoc/index.html", "name": "SBGrid API Documentation", "type": "REST"}], "support-links": [{"url": "https://data.sbgrid.org/contact/", "type": "Contact form"}, {"url": "data@sbgrid.org", "name": "General Contact", "type": "Support email"}, {"url": "https://data.sbgrid.org/faq/", "name": "General FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/SBGrid", "name": "@SBGrid", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://data.sbgrid.org/help/deposit/", "name": "Submit", "type": "data curation"}, {"url": "https://data.sbgrid.org/help/download/", "name": "Download", "type": "data release"}, {"url": "https://data.sbgrid.org/data/datasets/xray/", "name": "Browse X-Ray Diffraction Data", "type": "data access"}, {"url": "https://data.sbgrid.org/data/datasets/microed/", "name": "Browse MicroED Data", "type": "data access"}, {"url": "https://data.sbgrid.org/data/datasets/llsm/", "name": "Browse LLSM Data", "type": "data access"}, {"url": "https://data.sbgrid.org/data/datasets/models/", "name": "Browse Structural Models", "type": "data access"}, {"url": "https://data.sbgrid.org/data/", "name": "Browse All Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011601", "name": "re3data:r3d100011601", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003511", "name": "SciCrunch:RRID:SCR_003511", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000683", "bsg-d000683"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Molecular structure", "X-ray diffraction", "Light microscopy", "Imaging", "Light-sheet illumination", "Centrally registered identifier", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["MicroED"], "countries": ["China", "United States", "Sweden", "Uruguay"], "name": "FAIRsharing record for: Structural Biology Data Grid", "abbreviation": "SBGrid-DG", "url": "https://fairsharing.org/10.25504/FAIRsharing.1hqd55", "doi": "10.25504/FAIRsharing.1hqd55", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Structural Biology Data Grid (SBGrid-DG) community-driven repository to preserve primary experimental datasets that support scientific publications. The SBGrid Data Bank is an open source research data management system enabling Structural Biologists to preserve x-ray diffraction data and to make it accessible to the broad research community.", "publications": [{"id": 746, "pubmed_id": 24040512, "title": "Collaboration gets the most out of software.", "year": 2013, "url": "http://doi.org/10.7554/eLife.01456", "authors": "Morin A,Eisenbraun B,Key J,Sanschagrin PC,Timony MA,Ottaviano M,Sliz P", "journal": "Elife", "doi": "10.7554/eLife.01456", "created_at": "2021-09-30T08:23:42.153Z", "updated_at": "2021-09-30T08:23:42.153Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1268, "relation": "undefined"}, {"licence-name": "SBGrid Data Bank: Policies, Terms of Use and Guidelines", "licence-id": 726, "link-id": 1269, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2250", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-15T12:46:05.000Z", "updated-at": "2021-11-24T13:14:10.553Z", "metadata": {"doi": "10.25504/FAIRsharing.1d0vs7", "name": "Mediterranean Founder Mutation Database", "status": "ready", "contacts": [{"contact-name": "Hicham Charoute", "contact-email": "hcharoute@hotmail.fr", "contact-orcid": "0000-0002-9338-6744"}], "homepage": "http://mfmd.pasteur.ma/", "identifier": 2250, "description": "A comprehensive database established to offer a web-based access to founder mutation data in Mediterranean population. The database provides an overview about the spectrum of founder mutations found in Mediterranean population to the scientific community. Furthermore, MFMD will help scientists to design more efficient diagnostic tests and provides beneficial information to understand the history and the migration events of the Mediterranean population.", "abbreviation": "MFMD", "support-links": [{"url": "http://mfmd.pasteur.ma/statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://mfmd.pasteur.ma/submission.php", "name": "submit", "type": "data curation"}, {"url": "http://mfmd.pasteur.ma/index.php", "name": "search / browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000724", "bsg-d000724"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science", "Population Genetics"], "domains": ["Mutation", "Founder effect", "Gene-disease association", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Morocco"], "name": "FAIRsharing record for: Mediterranean Founder Mutation Database", "abbreviation": "MFMD", "url": "https://fairsharing.org/10.25504/FAIRsharing.1d0vs7", "doi": "10.25504/FAIRsharing.1d0vs7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A comprehensive database established to offer a web-based access to founder mutation data in Mediterranean population. The database provides an overview about the spectrum of founder mutations found in Mediterranean population to the scientific community. Furthermore, MFMD will help scientists to design more efficient diagnostic tests and provides beneficial information to understand the history and the migration events of the Mediterranean population.", "publications": [{"id": 907, "pubmed_id": 26173767, "title": "Mediterranean Founder Mutation Database (MFMD): Taking Advantage from Founder Mutations in Genetics Diagnosis, Genetic Diversity and Migration History of the Mediterranean Population.", "year": 2015, "url": "http://doi.org/10.1002/humu.22835", "authors": "Charoute H, Bakhchane A, Benrahma H, Romdhane L, Gabi K, Rouba H, Fakiri M, Abdelhak S, Lenaers G, Barakat A.", "journal": "Human Mutation", "doi": "10.1002/humu.22835", "created_at": "2021-09-30T08:24:00.145Z", "updated_at": "2021-09-30T08:24:00.145Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2257", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T18:40:21.000Z", "updated-at": "2021-12-06T10:48:41.787Z", "metadata": {"doi": "10.25504/FAIRsharing.httzv2", "name": "Movebank Data Repository", "status": "ready", "contacts": [{"contact-name": "Sarah Davidson", "contact-email": "sdavidson@ab.mpg.de", "contact-orcid": "0000-0002-2766-9201"}], "homepage": "https://www.datarepository.movebank.org/", "identifier": 2257, "description": "This data repository allows users to publish animal tracking and animal-borne sensor datasets that have been uploaded to Movebank (https://www.movebank.org). Published datasets have gone through a submission and review process, and are associated with a peer-reviewed journal article or other published report. All animal tracking data in this repository are available to the public.", "abbreviation": "MDR", "access-points": [{"url": "https://github.com/movebank/movebank-api-doc", "name": "Movebank API Documentation", "type": "REST"}], "support-links": [{"url": "support@movebank.org", "name": "General Contact", "type": "Support email"}, {"url": "https://www.movebank.org/cms/movebank-content/manual", "name": "User Manual", "type": "Help documentation"}, {"url": "https://www.movebank.org/node/15294", "name": "About", "type": "Help documentation"}, {"url": "https://www.movebank.org/cms/movebank-content/manual#part_2:_data_management_with_movebank", "name": "Submission Documentation", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://www.datarepository.movebank.org/discover", "name": "search", "type": "data access"}, {"url": "https://www.datarepository.movebank.org/browse?type=author", "name": "browse", "type": "data access"}, {"url": "https://www.datarepository.movebank.org/password-login", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010469", "name": "re3data:r3d100010469", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000731", "bsg-d000731"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Centrally registered identifier", "Animal tracking"], "taxonomies": ["Animalia"], "user-defined-tags": [], "countries": ["United States", "Germany"], "name": "FAIRsharing record for: Movebank Data Repository", "abbreviation": "MDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.httzv2", "doi": "10.25504/FAIRsharing.httzv2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This data repository allows users to publish animal tracking and animal-borne sensor datasets that have been uploaded to Movebank (https://www.movebank.org). Published datasets have gone through a submission and review process, and are associated with a peer-reviewed journal article or other published report. All animal tracking data in this repository are available to the public.", "publications": [{"id": 1515, "pubmed_id": 26578793, "title": "Fat, weather, and date affect migratory songbirds' departure decisions, routes, and time it takes to cross the Gulf of Mexico.", "year": 2015, "url": "http://doi.org/10.1073/pnas.1503381112", "authors": "Deppe JL,Ward MP,Bolus RT,Diehl RH,Celis-Murillo A,Zenzal TJ Jr,Moore FR,Benson TJ,Smolinsky JA,Schofield LN,Enstrom DA,Paxton EH,Bohrer G,Beveroth TA,Raim A,Obringer RL,Delaney D,Cochran WW", "journal": "Proc Natl Acad Sci U S A", "doi": "10.1073/pnas.1503381112", "created_at": "2021-09-30T08:25:09.562Z", "updated_at": "2021-09-30T08:25:09.562Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 985, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2737", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T12:58:53.000Z", "updated-at": "2021-12-06T10:47:57.689Z", "metadata": {"doi": "10.25504/FAIRsharing.4Vs9VM", "name": "The International Genome Sample Resource", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "info@1000genomes.org"}], "homepage": "https://www.internationalgenome.org/", "citations": [{"doi": "10.1093/nar/gkz836", "pubmed-id": 31584097, "publication-id": 2779}], "identifier": 2737, "description": "The International Genome Sample Resource (IGSR) was established to ensure the ongoing usability of data generated by the 1000 Genomes Project and to extend the data set. The 1000 Genomes Project ran between 2008 and 2015, creating the largest public catalogue of human variation and genotype data. As the project ended, the Data Coordination Centre at EMBL-EBI has received continued funding from the Wellcome Trust to maintain and expand the resource. IGSR was set up to do this and has the following aims: ensure the future access to and usability of the 1000 Genomes reference data; incorporate additional published genomic data on the 1000 Genomes samples; and expand the data collection to include new populations not represented in the 1000 Genomes Project.", "abbreviation": "IGSR", "support-links": [{"url": "info@1000genomes.org", "name": "Email helpdesk", "type": "Support email"}, {"url": "https://www.internationalgenome.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.internationalgenome.org/1000-genomes-browsers", "name": "How To Access IGSR via Genome Browsers", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/about", "name": "About IGSR", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/sample_collection_principles", "name": "Sample Collection Principles", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/tools", "name": "Software Used", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/data#download", "name": "How to Download Data", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/announcements", "name": "Announcements", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/data", "name": "Using Data", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/formats", "name": "Supported File Formats", "type": "Help documentation"}, {"url": "https://www.internationalgenome.org/analysis", "name": "Analysis Pipeline", "type": "Help documentation"}, {"url": "https://twitter.com/1000genomes", "name": "@1000genomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "http://www.internationalgenome.org/data-portal/sample", "name": "Browse Samples", "type": "data access"}, {"url": "ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/", "name": "Download", "type": "data release"}, {"url": "https://www.internationalgenome.org/1000-genomes-browsers", "name": "Genome browsers", "type": "data access"}, {"url": "https://www.internationalgenome.org/data#download", "name": "Data download methods", "type": "data access"}], "associated-tools": [{"url": "http://grch37.ensembl.org/info/docs/tools/index.html", "name": "Ensembl tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010180", "name": "re3data:r3d100010180", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006828", "name": "SciCrunch:RRID:SCR_006828", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001235", "bsg-d001235"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["Genome visualization", "Genome", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["genomic variation"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: The International Genome Sample Resource", "abbreviation": "IGSR", "url": "https://fairsharing.org/10.25504/FAIRsharing.4Vs9VM", "doi": "10.25504/FAIRsharing.4Vs9VM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Genome Sample Resource (IGSR) was established to ensure the ongoing usability of data generated by the 1000 Genomes Project and to extend the data set. The 1000 Genomes Project ran between 2008 and 2015, creating the largest public catalogue of human variation and genotype data. As the project ended, the Data Coordination Centre at EMBL-EBI has received continued funding from the Wellcome Trust to maintain and expand the resource. IGSR was set up to do this and has the following aims: ensure the future access to and usability of the 1000 Genomes reference data; incorporate additional published genomic data on the 1000 Genomes samples; and expand the data collection to include new populations not represented in the 1000 Genomes Project.", "publications": [{"id": 2496, "pubmed_id": 26432245, "title": "A global reference for human genetic variation.", "year": 2015, "url": "http://doi.org/10.1038/nature15393", "authors": "Auton A,Brooks LD,Durbin RM,Garrison EP,Kang HM,Korbel JO,Marchini JL,McCarthy S,McVean GA,Abecasis GR", "journal": "Nature", "doi": "10.1038/nature15393", "created_at": "2021-09-30T08:27:06.070Z", "updated_at": "2021-09-30T08:27:06.070Z"}, {"id": 2779, "pubmed_id": 31584097, "title": "The International Genome Sample Resource (IGSR) collection of open human genomic variation resources.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz836", "authors": "Fairley S,Lowy-Gallego E,Perry E,Flicek P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz836", "created_at": "2021-09-30T08:27:41.626Z", "updated_at": "2021-09-30T11:29:44.188Z"}], "licence-links": [{"licence-name": "International Genome Sample Resource (IGSR) Disclaimer, Privacy and Cookies", "licence-id": 445, "link-id": 1888, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2453", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-01T10:47:29.000Z", "updated-at": "2021-12-06T10:47:54.269Z", "metadata": {"doi": "10.25504/FAIRsharing.3epmpp", "name": "Mendeley Data", "status": "ready", "contacts": [{"contact-name": "Marina Soares e Silva", "contact-email": "m.soaresesilva@elsevier.com"}], "homepage": "https://data.mendeley.com", "identifier": 2453, "description": "Mendeley Data is a multidisciplinary, free-to-use open repository specialized for research data. Data files of up to 10GB can be uploaded and shared. Search more than 20+ million datasets indexed from 1000s of data repositories and collect and share datasets with the research community following the FAIR data principles. Links are available to related authors, software, grants and research. Each version of a dataset is given a unique DOI, and dark archived with DANS (Data Archiving and Networking Services), ensuring that every dataset and citation will be valid in perpetuity. Metadata is licensed CC0, and datasets are and will continue to be free access. Mendeley Data will shortly support managed access, and currently supports embargoing of data both generally and while undergoing peer review. It is funded by a subscription model for Academic & Government entities.", "abbreviation": "Mendeley Data", "access-points": [{"url": "https://data.mendeley.com/api/docs/", "name": "Mendeley Data Repository API", "type": "REST"}, {"url": "https://data.mendeley.com/oai", "name": "OAI 2.0 Request Results", "type": "REST"}], "support-links": [{"url": "https://data.mendeley.com/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2015, "data-processes": [{"url": "https://data.mendeley.com/research-data", "name": "Search & Browse", "type": "data access"}, {"url": "https://data.mendeley.com/archive-process", "name": "Archive process", "type": "data release"}, {"url": "https://data.mendeley.com/my-data/?create=datasets", "name": "My Data", "type": "data versioning"}], "associated-tools": [{"url": "https://data.mendeley.com/api/docs/", "name": "Mendeley Data APIs"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011868", "name": "re3data:r3d100011868", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_015671", "name": "SciCrunch:RRID:SCR_015671", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000935", "bsg-d000935"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic", "Data Visualization"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "Netherlands"], "name": "FAIRsharing record for: Mendeley Data", "abbreviation": "Mendeley Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.3epmpp", "doi": "10.25504/FAIRsharing.3epmpp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mendeley Data is a multidisciplinary, free-to-use open repository specialized for research data. Data files of up to 10GB can be uploaded and shared. Search more than 20+ million datasets indexed from 1000s of data repositories and collect and share datasets with the research community following the FAIR data principles. Links are available to related authors, software, grants and research. Each version of a dataset is given a unique DOI, and dark archived with DANS (Data Archiving and Networking Services), ensuring that every dataset and citation will be valid in perpetuity. Metadata is licensed CC0, and datasets are and will continue to be free access. Mendeley Data will shortly support managed access, and currently supports embargoing of data both generally and while undergoing peer review. It is funded by a subscription model for Academic & Government entities.", "publications": [], "licence-links": [{"licence-name": "Mendeley Terms of Use", "licence-id": 504, "link-id": 721, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 723, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 724, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 726, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 728, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 729, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 730, "relation": "undefined"}, {"licence-name": "2-Clause BSD License (BSD-2-Clause) (Simplified BSD License) (FreeBSD License)", "licence-id": 2, "link-id": 733, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 736, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 737, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 738, "relation": "undefined"}, {"licence-name": "Mozilla Public Licence Version 2.0 (MPL 2.0)", "licence-id": 524, "link-id": 739, "relation": "undefined"}, {"licence-name": "CeCILL-B", "licence-id": 111, "link-id": 741, "relation": "undefined"}, {"licence-name": "CERN OHL", "licence-id": 118, "link-id": 743, "relation": "undefined"}, {"licence-name": "TAPR OHL", "licence-id": 771, "link-id": 744, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3284", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-04T10:19:56.000Z", "updated-at": "2021-12-06T10:48:24.182Z", "metadata": {"doi": "10.25504/FAIRsharing.DDotIl", "name": "Bicocca Open Archive Research Data", "status": "ready", "contacts": [{"contact-name": "Paolo Brambilla", "contact-email": "paolo.brambilla2@unimib.it", "contact-orcid": "0000-0003-0697-5012"}], "homepage": "https://board.unimib.it/", "identifier": 3284, "description": "BOARD (Bicocca Open Archive Research Data) is the institutional data repository of the University of Milano-Bicocca. BOARD is an open, free-to-use research data repository, which enables members of University of Milano-Bicocca to make their research data publicly available. By depositing their research data in BOARD researchers can make their research data citable, share their data privately or publicly, ensure long-term storage for their data, keep access to all versions and link their article to their data.", "abbreviation": "BOARD", "access-points": [{"url": "https://board.unimib.it/api/docs/", "name": "Documentation", "type": "REST"}], "support-links": [{"url": "board@unimib.it", "name": "BOARD support", "type": "Support email"}, {"url": "https://board.unimib.it/welcome/unimib", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://board.unimib.it/file-formats", "name": "File Formats", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://board.unimib.it/archive-process", "name": "Dataset archiving", "type": "data curation"}, {"url": "https://www.elsevier.com/solutions/mendeley-data-platform/fair", "name": "FAIR data with Mendeley Data", "type": "data curation"}, {"url": "https://board.unimib.it/research-data/?", "name": "Data browser", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013433", "name": "re3data:r3d100013433", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001799", "bsg-d001799"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Environmental Science", "Education Science", "Medicine", "Data Management", "Surgery", "Humanities and Social Science", "Statistics", "Psychology", "Applied Mathematics", "Biotechnology", "Earth Science", "Materials Science", "Computer Science", "Subject Agnostic", "Physics", "Biology", "Communication Science"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Italy"], "name": "FAIRsharing record for: Bicocca Open Archive Research Data", "abbreviation": "BOARD", "url": "https://fairsharing.org/10.25504/FAIRsharing.DDotIl", "doi": "10.25504/FAIRsharing.DDotIl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BOARD (Bicocca Open Archive Research Data) is the institutional data repository of the University of Milano-Bicocca. BOARD is an open, free-to-use research data repository, which enables members of University of Milano-Bicocca to make their research data publicly available. By depositing their research data in BOARD researchers can make their research data citable, share their data privately or publicly, ensure long-term storage for their data, keep access to all versions and link their article to their data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons (CC) Public Domain Mark (PDM)", "licence-id": 198, "link-id": 2283, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 2284, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 2285, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 2286, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2287, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 2288, "relation": "undefined"}, {"licence-name": "2-Clause BSD License (BSD-2-Clause) (Simplified BSD License) (FreeBSD License)", "licence-id": 2, "link-id": 2289, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 2290, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 2291, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 2292, "relation": "undefined"}, {"licence-name": "Mozilla Public Licence Version 2.0 (MPL 2.0)", "licence-id": 524, "link-id": 2293, "relation": "undefined"}, {"licence-name": "CeCILL-B", "licence-id": 111, "link-id": 2294, "relation": "undefined"}, {"licence-name": "CERN OHL", "licence-id": 118, "link-id": 2295, "relation": "undefined"}, {"licence-name": "TAPR OHL", "licence-id": 771, "link-id": 2296, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2282", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-15T14:55:24.000Z", "updated-at": "2021-12-06T10:49:06.066Z", "metadata": {"doi": "10.25504/FAIRsharing.r18yt0", "name": "data.eNanoMapper.net", "status": "ready", "contacts": [{"contact-name": "Jiakang Chang", "contact-email": "jkchang@ebi.ac.uk", "contact-orcid": "0000-0003-2157-0398"}], "homepage": "https://data.enanomapper.net/", "identifier": 2282, "description": "data.eNanoMapper.net is a public database hosting nanomaterials characterization data and biological and toxicological information. The database provides various possibilities to search and explore information, and to download data in various standard formats. The database supports data upload through configurable Excel templates.", "abbreviation": "data.eNanoMapper.net", "support-links": [{"url": "support@ideaconsult.net", "type": "Support email"}, {"url": "https://tess.elixir-europe.org/materials/entering-and-analysing-nano-safety-data", "name": "Entering and analysing nano safety data", "type": "Help documentation"}, {"url": "http://ambit.sourceforge.net/usage.html", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/entering-and-analysing-nano-safety-data", "name": "Entering and analysing nano safety data", "type": "TeSS links to training materials"}], "year-creation": 2014, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013052", "name": "re3data:r3d100013052", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000756", "bsg-d000756"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Chemistry"], "domains": ["Chemical entity", "Nanoparticle"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Nanosafety"], "countries": ["European Union"], "name": "FAIRsharing record for: data.eNanoMapper.net", "abbreviation": "data.eNanoMapper.net", "url": "https://fairsharing.org/10.25504/FAIRsharing.r18yt0", "doi": "10.25504/FAIRsharing.r18yt0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: data.eNanoMapper.net is a public database hosting nanomaterials characterization data and biological and toxicological information. The database provides various possibilities to search and explore information, and to download data in various standard formats. The database supports data upload through configurable Excel templates.", "publications": [{"id": 1008, "pubmed_id": 21991315, "title": "The chemical information ontology: provenance and disambiguation for chemical data on the biological semantic web.", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0025513", "authors": "Hastings J,Chepelev L,Willighagen E,Adams N,Steinbeck C,Dumontier M", "journal": "PLoS One", "doi": "10.1371/journal.pone.0025513", "created_at": "2021-09-30T08:24:11.621Z", "updated_at": "2021-09-30T08:24:11.621Z"}, {"id": 1088, "pubmed_id": 25815161, "title": "eNanoMapper: harnessing ontologies to enable data integration for nanomaterial risk assessment.", "year": 2015, "url": "http://doi.org/10.1186/s13326-015-0005-5", "authors": "Hastings J,Jeliazkova N,Owen G,Tsiliki G,Munteanu CR,Steinbeck C,Willighagen E", "journal": "J Biomed Semantics", "doi": "10.1186/s13326-015-0005-5", "created_at": "2021-09-30T08:24:20.515Z", "updated_at": "2021-09-30T08:24:20.515Z"}, {"id": 1103, "pubmed_id": 26425413, "title": "The eNanoMapper database for nanomaterial safety information.", "year": 2015, "url": "http://doi.org/10.3762/bjnano.6.165", "authors": "Jeliazkova N,Chomenidis C,Doganis P,Fadeel B,Grafstrom R,Hardy B,Hastings J,Hegi M,Jeliazkov V,Kochev N,Kohonen P,Munteanu CR,Sarimveis H,Smeets B,Sopasakis P,Tsiliki G,Vorgrimmler D,Willighagen E", "journal": "Beilstein J Nanotechnol", "doi": "10.3762/bjnano.6.165", "created_at": "2021-09-30T08:24:22.165Z", "updated_at": "2021-09-30T08:24:22.165Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 629, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 633, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2487", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-19T09:30:51.000Z", "updated-at": "2021-11-24T13:16:31.020Z", "metadata": {"doi": "10.25504/FAIRsharing.k297hk", "name": "Ocean Biodiversity Information System IPT", "status": "ready", "contacts": [{"contact-name": "Ward Appeltans", "contact-email": "w.appeltans@unesco.org"}], "homepage": "http://ipt.vliz.be/", "identifier": 2487, "description": "OBIS provides data hosting and helpdesk support to publishers of marine data around the globe. EurOBIS/Flanders Marine Institute (VLIZ) hosts multiple IPT installations on behalf of various OBIS Nodes. Currently, there are more than 20 OBIS Nodes around the world connecting 500 institutions from 56 countries.", "abbreviation": "OBIS IPT", "support-links": [{"url": "http://www.iobis.org/feed.xml", "type": "Blog/News"}, {"url": "https://twitter.com/obisnetwork", "name": "@obisnetwork", "type": "Twitter"}], "data-processes": [{"url": "http://ipt.vliz.be/eurobis/", "name": "Access EurOBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/obiscanada/", "name": "Access OBIS-Canada instance", "type": "data access"}, {"url": "http://ipt.iobis.org/indobis/", "name": "Access IndOBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/arcod/", "name": "Access ArcOD instance", "type": "data access"}, {"url": "http://ipt.iobis.org/seaobis/", "name": "Access SEA-OBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/senegal/", "name": "Access Senegal instance", "type": "data access"}, {"url": "http://ipt.iobis.org/caribbeanobis/", "name": "Access Caribbean OBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/wsaobis/", "name": "Access WSAOBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/afrobis/", "name": "Access AfrOBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/obis-deepsea/", "name": "Access OBIS Deep Sea instance", "type": "data access"}, {"url": "http://ipt.iobis.org/obis-malaysia/", "name": "Access OBIS Malaysia instance", "type": "data access"}, {"url": "http://ipt.iobis.org/esp-obis/", "name": "Access ESP-OBIS instance", "type": "data access"}, {"url": "http://ipt.iobis.org/mbon/", "name": "Access MBON instance", "type": "data access"}, {"url": "http://ipt.iobis.org/opi/", "name": "Access OPI instance", "type": "data access"}, {"url": "http://ipt.iobis.org/obis-china/", "name": "Access OBIS China instance", "type": "data access"}, {"url": "http://ipt.vliz.be/upload/", "name": "Access Dataprovider IPT instance", "type": "data access"}, {"url": "http://ipt.vliz.be/ilvo/", "name": "Access ILVO instance", "type": "data access"}, {"url": "http://ipt.vliz.be/imar/", "name": "Access IMAR instance", "type": "data access"}, {"url": "http://ipt.iobis.org/hab/", "name": "Access HAB instance", "type": "data access"}, {"url": "http://ipt.vliz.be/kmfri/", "name": "Access KMFRI instance", "type": "data access"}, {"url": "http://ipt.iobis.org/obis-env/", "name": "Access OBIS-ENV instance", "type": "data access"}, {"url": "http://ipt.iobis.org/training/", "name": "Access Training instance", "type": "data access"}, {"url": "http://ipt.iobis.org/worms-images/", "name": "Access WoRMS images instance", "type": "data access"}]}, "legacy-ids": ["biodbcore-000969", "bsg-d000969"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Ocean Biodiversity Information System IPT", "abbreviation": "OBIS IPT", "url": "https://fairsharing.org/10.25504/FAIRsharing.k297hk", "doi": "10.25504/FAIRsharing.k297hk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OBIS provides data hosting and helpdesk support to publishers of marine data around the globe. EurOBIS/Flanders Marine Institute (VLIZ) hosts multiple IPT installations on behalf of various OBIS Nodes. Currently, there are more than 20 OBIS Nodes around the world connecting 500 institutions from 56 countries.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2198, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2199, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2200, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2201, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3111", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T14:51:06.000Z", "updated-at": "2022-02-10T10:48:54.499Z", "metadata": {"doi": "10.25504/FAIRsharing.4e77ae", "name": "Lifewatch ERIC EcoPortal", "status": "ready", "contacts": [{"contact-name": "General Support", "contact-email": "service.centre@lifewatch.eu"}], "homepage": "http://ecoportal.lifewatchitaly.eu/", "citations": [], "identifier": 3111, "description": "EcoPortal is an initiative of LifeWatch ERIC , the e-Science and Technology European Infrastructure for Biodiversity and Ecosystem Research. In the last decade, ecological research groups and infrastructures have contributed to the definition and the production of core and domain ontologies as well as of vocabularies and domain-relevant reference lists. In order to support the scientific community in the management and integration of these different approaches, LifeWatch ERIC has created EcoPortal, an online space designed to collect semantic resources and provide the necessary services for enabling discovery and interoperability. LifeWatch ERIC envisages creating a repository for ontologies and thesauri with associated essential curation services.", "abbreviation": "EcoPortal", "data-curation": {}, "support-links": [{"url": "http://ecoportal.lifewatchitaly.eu/help", "name": "Ecoportal Help", "type": "Help documentation"}, {"url": "https://github.com/lifewatch-eric/documentation/wiki", "name": "Wiki EcoPortal Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/lifewatcheric", "name": "@LifeWatchERIC", "type": "Twitter"}, {"url": "https://www.facebook.com/ERICLifeWatch/", "name": "LifeWatch ERIC", "type": "Facebook"}], "data-processes": [{"url": "http://ecoportal.lifewatchitaly.eu/ontologies", "name": "Browse ontologies", "type": "data access"}, {"url": "http://ecoportal.lifewatchitaly.eu/search", "name": "Class Search", "type": "data access"}, {"url": "http://ecoportal.lifewatchitaly.eu/login?redirect=/ontologies/new", "name": "Publish", "type": "data curation"}, {"url": "http://ecoportal.lifewatchitaly.eu/mappings", "name": "Mappings", "type": "data access"}], "associated-tools": [{"url": "http://ecoportal.lifewatchitaly.eu/annotator", "name": "Annotator"}, {"url": "http://ecoportal.lifewatchitaly.eu/recommender", "name": "Semantic Resource Recommender"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001620", "bsg-d001620"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Knowledge and Information Systems", "Informatics", "Bioinformatics", "Taxonomy", "Biodiversity", "Life Science", "Ontology and Terminology"], "domains": ["Taxonomic classification", "Knowledge representation", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union", "Italy"], "name": "FAIRsharing record for: Lifewatch ERIC EcoPortal", "abbreviation": "EcoPortal", "url": "https://fairsharing.org/10.25504/FAIRsharing.4e77ae", "doi": "10.25504/FAIRsharing.4e77ae", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EcoPortal is an initiative of LifeWatch ERIC , the e-Science and Technology European Infrastructure for Biodiversity and Ecosystem Research. In the last decade, ecological research groups and infrastructures have contributed to the definition and the production of core and domain ontologies as well as of vocabularies and domain-relevant reference lists. In order to support the scientific community in the management and integration of these different approaches, LifeWatch ERIC has created EcoPortal, an online space designed to collect semantic resources and provide the necessary services for enabling discovery and interoperability. LifeWatch ERIC envisages creating a repository for ontologies and thesauri with associated essential curation services.", "publications": [], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBNUT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--732038914aa907313d6763265f659b037c1938be/ecoportal-logo-b8f1d5daf2969a9e3cc3a6d05044db37ed3c556942ecad479bb8f85f2eb33e56.png?disposition=inline"}} +{"id": "2295", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-03T15:20:31.000Z", "updated-at": "2021-12-06T10:49:11.467Z", "metadata": {"doi": "10.25504/FAIRsharing.s2txbp", "name": "CancerData", "status": "ready", "contacts": [{"contact-name": "Erik Roelofs", "contact-email": "erik.roelofs@maastro.nl", "contact-orcid": "0000-0003-2172-8669"}], "homepage": "https://www.cancerdata.org", "identifier": 2295, "description": "The CancerData site is an effort of the Medical Informatics and Knowledge Engineering team (MIKE for short) of Maastro Clinic, Maastricht, The Netherlands. It offers a central, online repository for the sustained storage of clinical protocols, publications and research datasets. The data that are offered can vary from documents, spreadsheets to (bio-)medical images and treatment simulations. CancerData is a registered member of DataCite, which is an international consortium and member of the International DOI Foundation. Via DataCite, we have the ability to offer persistent identifiers to the datasets via the registration of Digital Object Identifiers (DOI).", "abbreviation": "candat", "access-points": [{"url": "https://www.cancerdata.org/oai", "name": "Open Archive Initiative Protocol for Metadata Harvesting (OAI-PMH)", "type": "Other"}], "support-links": [{"url": "https://www.cancerdata.org/contact", "type": "Contact form"}, {"url": "https://www.cancerdata.org/rss.xml", "type": "Blog/News"}], "year-creation": 2010, "data-processes": [{"url": "https://www.cancerdata.org/data/files", "name": "File Download", "type": "data access"}, {"url": "https://dicom.cancerdata.org/ncia/login.jsf", "name": "Image Download (temporarily unavailable)", "type": "data access"}, {"url": "https://www.cancerdata.org/atlases", "name": "Atlases", "type": "data access"}, {"url": "https://www.cancerdata.org/protocols", "name": "Protocols", "type": "data access"}], "associated-tools": [{"url": "https://www.cancerdata.org/search", "name": "Search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011086", "name": "re3data:r3d100011086", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000769", "bsg-d000769"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Health Science", "Biomedical Science"], "domains": ["Tumor", "Image", "Centrally registered identifier", "Radiotherapy"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: CancerData", "abbreviation": "candat", "url": "https://fairsharing.org/10.25504/FAIRsharing.s2txbp", "doi": "10.25504/FAIRsharing.s2txbp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CancerData site is an effort of the Medical Informatics and Knowledge Engineering team (MIKE for short) of Maastro Clinic, Maastricht, The Netherlands. It offers a central, online repository for the sustained storage of clinical protocols, publications and research datasets. The data that are offered can vary from documents, spreadsheets to (bio-)medical images and treatment simulations. CancerData is a registered member of DataCite, which is an international consortium and member of the International DOI Foundation. Via DataCite, we have the ability to offer persistent identifiers to the datasets via the registration of Digital Object Identifiers (DOI).", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1372, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2317", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T14:32:47.000Z", "updated-at": "2021-11-24T13:19:32.365Z", "metadata": {"doi": "10.25504/FAIRsharing.b9td4r", "name": "Image Storage Platform for Analysis Management and Mining", "status": "deprecated", "contacts": [{"contact-name": "Sebastian Munck", "contact-email": "sebastian.munck@cme.vib-kuleuven.be"}], "homepage": "https://gbw-s-omero01.luna.kuleuven.be", "identifier": 2317, "description": "A database system for storing Microscopy data for the KU Leuven Live Science Research group.", "abbreviation": "ISPAMM", "year-creation": 2016, "deprecation-date": "2020-03-05", "deprecation-reason": "The homepage no longer exists, and no replacement project page can be found. Please contact us if you have any information regarding this resource."}, "legacy-ids": ["biodbcore-000793", "bsg-d000793"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging", "Microscopy", "High-content screen"], "taxonomies": ["Drosophila", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: Image Storage Platform for Analysis Management and Mining", "abbreviation": "ISPAMM", "url": "https://fairsharing.org/10.25504/FAIRsharing.b9td4r", "doi": "10.25504/FAIRsharing.b9td4r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database system for storing Microscopy data for the KU Leuven Live Science Research group.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2330", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-21T21:26:06.000Z", "updated-at": "2021-11-24T13:14:51.961Z", "metadata": {"doi": "10.25504/FAIRsharing.v5q4zc", "name": "DataMed", "status": "in_development", "homepage": "https://datamed.org", "citations": [{"doi": "10.1093/jamia/ocx121", "pubmed-id": 29346583, "publication-id": 1880}], "identifier": 2330, "description": "DataMed is a prototype biomedical data search engine. Its goal is to discover data sets across data repositories or data aggregators. In the future it will allow searching outside these boundaries. DataMed supports the NIH-endorsed FAIR principles of Findability, Accessibility, Interoperability and Reusability of datasets with current functionality assisting in finding datasets and providing access information about them. The data repositories covered in this initial release have been selected by the bioCADDIE team and represent only a small sample of biomedical data. DataMed indexes the core metadata available for most datasets, but it offers enhanced search functions when repositories provide additional metadata.", "abbreviation": "DataMed", "access-points": [{"url": "https://datamed.org/APIDoc.php", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "https://datamed.org/about.php", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://datamed.org/help.php", "name": "Help", "type": "Help documentation"}, {"url": "https://github.com/biocaddie", "name": "GitHub Project", "type": "Github"}], "year-creation": 2016, "data-processes": [{"url": "https://datamed.org/submit_repository.php", "name": "Submit Repository", "type": "data curation"}, {"url": "https://datamed.org/advanced.php", "name": "Advanced Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000806", "bsg-d000806"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Integration", "Biomedical Science"], "domains": ["FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: DataMed", "abbreviation": "DataMed", "url": "https://fairsharing.org/10.25504/FAIRsharing.v5q4zc", "doi": "10.25504/FAIRsharing.v5q4zc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataMed is a prototype biomedical data search engine. Its goal is to discover data sets across data repositories or data aggregators. In the future it will allow searching outside these boundaries. DataMed supports the NIH-endorsed FAIR principles of Findability, Accessibility, Interoperability and Reusability of datasets with current functionality assisting in finding datasets and providing access information about them. The data repositories covered in this initial release have been selected by the bioCADDIE team and represent only a small sample of biomedical data. DataMed indexes the core metadata available for most datasets, but it offers enhanced search functions when repositories provide additional metadata.", "publications": [{"id": 1880, "pubmed_id": 29346583, "title": "DataMed - an open source discovery index for finding biomedical datasets.", "year": 2018, "url": "http://doi.org/10.1093/jamia/ocx121", "authors": "Chen X,Gururaj AE,Ozyurt B,Liu R,Soysal E,Cohen T,Tiryaki F,Li Y,Zong N,Jiang M,Rogith D,Salimi M,Kim HE,Rocca-Serra P,Gonzalez-Beltran A,Farcas C,Johnson T,Margolis R,Alter G,Sansone SA,Fore IM,Ohno-Machado L,Grethe JS,Xu H", "journal": "J Am Med Inform Assoc", "doi": "10.1093/jamia/ocx121", "created_at": "2021-09-30T08:25:51.448Z", "updated_at": "2021-09-30T08:25:51.448Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3338", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-16T23:46:02.000Z", "updated-at": "2021-11-24T13:14:59.456Z", "metadata": {"name": "Open Data Commons for Traumatic Brain Injury", "status": "in_development", "contacts": [{"contact-name": "Jeffrey Grethe", "contact-email": "jgrethe@ucsd.edu", "contact-orcid": "0000-0001-5212-7052"}], "homepage": "https://odc-tbi.org", "identifier": 3338, "description": "The Open Data Commons for Traumatic Brain Injury (DC-TBI) was created by the TBI community to mitigate dark data in TBI research. The ODC-TBI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-TBI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs\u2019 datasets with the registered members of the ODC-TBI community and make their datasets public and citable. The ODC-TBI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international TBI research community.", "abbreviation": "ODC-TBI", "support-links": [{"url": "info@odc-tbi.org", "name": "ODC Help Email", "type": "Support email"}, {"url": "https://odc-tbi.org/about/help", "name": "Help and FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://odc-tbi.org/about/tutorials", "name": "Tutorials", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://odc-tbi.org/data/public", "name": "Download (Registration required)", "type": "data release"}, {"url": "https://odc-tbi.org/data/public", "name": "Browse and Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001857", "bsg-d001857"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Neurology", "Biomedical Science", "Neuroscience"], "domains": ["Data storage"], "taxonomies": ["Homo sapiens", "Mus", "Rattus"], "user-defined-tags": ["Traumatic Brain Injury"], "countries": ["United States"], "name": "FAIRsharing record for: Open Data Commons for Traumatic Brain Injury", "abbreviation": "ODC-TBI", "url": "https://fairsharing.org/fairsharing_records/3338", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Data Commons for Traumatic Brain Injury (DC-TBI) was created by the TBI community to mitigate dark data in TBI research. The ODC-TBI also aims to increase transparency with individual-level data, enhance collaboration, facilitate advanced analytics, and conform to increasing mandates by funders and publishers to make data accessible. Members of the ODC-TBI have access to a private digital lab space managed by the PI or multi-PIs for dataset storage and sharing. The PIs can share their labs\u2019 datasets with the registered members of the ODC-TBI community and make their datasets public and citable. The ODC-TBI implements stewardship principles that scientific data be made FAIR (Findable, Accessible, Interoperable and Reusable) and has been widely adopted by the international TBI research community.", "publications": [{"id": 1150, "pubmed_id": 26466022, "title": "Topological data analysis for discovery in preclinical spinal cord injury and traumatic brain injury.", "year": 2015, "url": "http://doi.org/10.1038/ncomms9581", "authors": "Nielson JL,Paquette J,Liu AW,Guandique CF,Tovar CA,Inoue T,Irvine KA,Gensel JC,Kloke J,Petrossian TC,Lum PY,Carlsson GE,Manley GT,Young W,Beattie MS,Bresnahan JC,Ferguson AR", "journal": "Nat Commun", "doi": "10.1038/ncomms9581", "created_at": "2021-09-30T08:24:27.859Z", "updated_at": "2021-09-30T08:24:27.859Z"}, {"id": 1166, "pubmed_id": 22207883, "title": "Syndromics: a bioinformatics approach for neurotrauma research.", "year": 2011, "url": "http://doi.org/10.1007/s12975-011-0121-1", "authors": "Ferguson AR,Stuck ED,Nielson JL", "journal": "Transl Stroke Res", "doi": "10.1007/s12975-011-0121-1", "created_at": "2021-09-30T08:24:29.606Z", "updated_at": "2021-09-30T08:24:29.606Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1203, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2376", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-14T20:04:27.000Z", "updated-at": "2021-12-06T10:49:18.522Z", "metadata": {"doi": "10.25504/FAIRsharing.v2sjcy", "name": "Canadensys IPT - GBIF Canadensys Repository", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "canadensys.network@gmail.com"}], "homepage": "https://data.canadensys.net/ipt/", "citations": [], "identifier": 2376, "description": "Canadensys maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. Canadensys supports researchers in Canada by providing them helpdesk assistance and by hosting their data for free in this repository.", "support-links": [{"url": "http://www.canadensys.net/contact", "type": "Contact form"}, {"url": "https://github.com/gbif/ipt/wiki/FAQ.wiki", "type": "Github"}, {"url": "http://www.canadensys.net/data-publication-guide", "type": "Help documentation"}, {"url": "http://www.canadensys.net/publication/multimedia-publication-guide", "type": "Help documentation"}, {"url": "http://www.canadensys.net/publication/darwincore-terms-interpretation-multimedia", "type": "Help documentation"}, {"url": "http://www.gbif.org/disclaimer/datasharing", "type": "Help documentation"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "type": "Github"}, {"url": "http://www.canadensys.net/publication/ipt", "type": "Help documentation"}, {"url": "http://www.canadensys.net/publication/darwincore-terms-interpretation", "type": "Help documentation"}, {"url": "http://www.canadensys.net/publication/darwin-core", "type": "Help documentation"}, {"url": "http://www.canadensys.net/publication/metadata", "type": "Help documentation"}, {"url": "http://data.canadensys.net/ipt/rss.do", "type": "Blog/News"}, {"url": "https://twitter.com/Canadensys", "type": "Twitter"}], "year-creation": 2011, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010730", "name": "re3data:r3d100010730", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000855", "bsg-d000855"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Canadensys IPT - GBIF Canadensys Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.v2sjcy", "doi": "10.25504/FAIRsharing.v2sjcy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Canadensys maintains this data repository, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. Canadensys supports researchers in Canada by providing them helpdesk assistance and by hosting their data for free in this repository.", "publications": [{"id": 1640, "pubmed_id": 24198712, "title": "Database of Vascular Plants of Canada (VASCAN): a community contributed taxonomic checklist of all vascular plants of Canada, Saint Pierre and Miquelon, and Greenland.", "year": 2013, "url": "http://doi.org/10.3897/phytokeys.25.3100", "authors": "Desmet P,Brouillet L", "journal": "PhytoKeys", "doi": "10.3897/phytokeys.25.3100", "created_at": "2021-09-30T08:25:23.704Z", "updated_at": "2021-09-30T08:25:23.704Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 380, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1023, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1025, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1030, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2373", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-14T19:43:51.000Z", "updated-at": "2022-02-01T10:04:54.222Z", "metadata": {"doi": "10.25504/FAIRsharing.v1h8rk", "name": "Atlas of Living Australia IPT - GBIF Australia Repository", "status": "ready", "contacts": [{"contact-email": "helpdesk@gbif.org"}], "homepage": "http://ipt.ala.org.au/", "citations": [], "identifier": 2373, "description": "The Atlas of Living Australia (GBIF Australia) maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. GBIF Australia supports researchers in Australia by providing them helpdesk assistance and by hosting their data for free in this repository.", "abbreviation": "ALA IPT - GBIF Australia Repository", "support-links": [{"url": "https://github.com/gbif/ipt/wiki/FAQ.wiki", "name": "IPT FAQ", "type": "Github"}, {"url": "https://github.com/gbif/ipt/issues/new", "name": "IPT Issues", "type": "Github"}, {"url": "https://github.com/gbif/ipt/wiki/IPT2ManualNotes.wiki", "name": "IPT Manual", "type": "Github"}, {"url": "http://ipt.ala.org.au/about.do", "name": "About the ALA IPT", "type": "Help documentation"}, {"url": "http://ipt.ala.org.au/rss.do", "name": "ALA IPT RSS Feed", "type": "Blog/News"}, {"url": "https://twitter.com/atlaslivingaust", "name": "@atlaslivingaust", "type": "Twitter"}], "year-creation": 2016, "deprecation-reason": null}, "legacy-ids": ["biodbcore-000852", "bsg-d000852"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": ["Introduced Species", "Invasive Species"], "countries": ["Australia"], "name": "FAIRsharing record for: Atlas of Living Australia IPT - GBIF Australia Repository", "abbreviation": "ALA IPT - GBIF Australia Repository", "url": "https://fairsharing.org/10.25504/FAIRsharing.v1h8rk", "doi": "10.25504/FAIRsharing.v1h8rk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Atlas of Living Australia (GBIF Australia) maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). Able to assign DOIs to datasets, it ensures the data is disseminated in standardized format in order to facilitate wider reuse and integration of the data, for example into GBIF.org. GBIF Australia supports researchers in Australia by providing them helpdesk assistance and by hosting their data for free in this repository.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1497, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1498, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1499, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1500, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2404", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-18T15:44:35.000Z", "updated-at": "2021-12-06T10:48:43.986Z", "metadata": {"doi": "10.25504/FAIRsharing.j8g2cv", "name": "Ensembl Plants", "status": "ready", "contacts": [{"contact-name": "Paul Flicek", "contact-email": "flicek@ebi.ac.uk"}], "homepage": "https://plants.ensembl.org/index.html", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2404, "description": "Ensembl Plants holds the genomes of plants of significant interest. These range from those of agricultural importance, those which support primary research and of environmental interest. Ensembl Plants datasets are constructed in a direct collaboration with the Gramene resource. The resource holds the genomes of wheat, rice, corn and mouse ear cress amongst others.", "abbreviation": "Ensembl Plants", "access-points": [{"url": "https://github.com/Ensembl", "name": "Ensembl Perl API", "type": "Other"}, {"url": "https://rest.ensembl.org/", "name": "Ensembl Genomes REST API Endpoints", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "General Contact", "type": "Support email"}, {"url": "https://plants.ensembl.org/info/", "name": "Help", "type": "Help documentation"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "Ensembl Dev Mailing List", "type": "Mailing list"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://plants.ensembl.org/Oryza_sativa/Tools/VEP", "name": "Variant Effect Predictor", "type": "data access"}, {"url": "https://plants.ensembl.org/info/data/ftp/index.html", "name": "Download", "type": "data access"}, {"url": "https://plants.ensembl.org/species.html", "name": "Browse", "type": "data access"}, {"url": "https://plants.ensembl.org/index.html", "name": "Search", "type": "data access"}, {"url": "https://plants.ensembl.org/hmmer", "name": "HMMER", "type": "data access"}, {"url": "https://plants.ensembl.org/Oryza_sativa/Tools/Blast", "name": "Identify Sequences with BLAST", "type": "data access"}, {"url": "https://plants.ensembl.org/Oryza_sativa/Tools/AssemblyConverter", "name": "Assembly Converter", "type": "data access"}, {"url": "https://plants.ensembl.org/Oryza_sativa/Tools/IDMapper", "name": "ID History Converter", "type": "data access"}, {"url": "https://plants.ensembl.org/biomart/martview", "name": "BioMart", "type": "data access"}], "associated-tools": [{"url": "https://github.com/Ensembl/ensembl-tools/archive/release/103.zip", "name": "Variant Effect Predictor (Download Script)"}, {"url": "https://github.com/Ensembl/ensembl-tools/tree/release/103/scripts/id_history_converter", "name": "ID History Converter (Download Script)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011199", "name": "re3data:r3d100011199", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008680", "name": "SciCrunch:RRID:SCR_008680", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000886", "bsg-d000886"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation", "Genome"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: Ensembl Plants", "abbreviation": "Ensembl Plants", "url": "https://fairsharing.org/10.25504/FAIRsharing.j8g2cv", "doi": "10.25504/FAIRsharing.j8g2cv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl Plants holds the genomes of plants of significant interest. These range from those of agricultural importance, those which support primary research and of environmental interest. Ensembl Plants datasets are constructed in a direct collaboration with the Gramene resource. The resource holds the genomes of wheat, rice, corn and mouse ear cress amongst others.", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1765, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1768, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2386", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T14:17:34.000Z", "updated-at": "2021-12-06T10:48:10.905Z", "metadata": {"doi": "10.25504/FAIRsharing.923a0p", "name": "Ensembl Genomes", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "helpdesk@ensembl.org"}], "homepage": "https://ensemblgenomes.org/", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2386, "description": "The Ensembl genome annotation system, developed jointly by EMBL-EBI and the Wellcome Trust Sanger Institute, has been used for the annotation, analysis and display of vertebrate genomes since 2000. Since 2009, the Ensembl site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy.", "abbreviation": "Ensembl Genomes", "access-points": [{"url": "https://rest.ensembl.org", "name": "REST service", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "Ensembl Genomes Helpdesk", "type": "Support email"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://ensemblgenomes.org/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011197", "name": "re3data:r3d100011197", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006773", "name": "SciCrunch:RRID:SCR_006773", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000866", "bsg-d000866"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation", "Genome alignment", "Genome visualization", "Genome"], "taxonomies": ["Bacteria", "Eukaryota", "Fungi", "Plantae", "Vertebrata"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Ensembl Genomes", "abbreviation": "Ensembl Genomes", "url": "https://fairsharing.org/10.25504/FAIRsharing.923a0p", "doi": "10.25504/FAIRsharing.923a0p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ensembl genome annotation system, developed jointly by EMBL-EBI and the Wellcome Trust Sanger Institute, has been used for the annotation, analysis and display of vertebrate genomes since 2000. Since 2009, the Ensembl site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy.", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1392, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1400, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2402", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-18T15:03:49.000Z", "updated-at": "2021-12-06T10:49:35.602Z", "metadata": {"doi": "10.25504/FAIRsharing.zsgmvd", "name": "Ensembl Bacteria", "status": "ready", "contacts": [{"contact-name": "Paul Flicek", "contact-email": "flicek@ebi.ac.uk"}], "homepage": "https://bacteria.ensembl.org/index.html", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2402, "description": "Ensembl Bacteria is a browser for bacterial and archaeal genomes. These are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at the EBI, GenBank at the NCBI, and the DNA Database of Japan).", "abbreviation": "Ensembl Bacteria", "access-points": [{"url": "https://github.com/Ensembl", "name": "Ensembl Perl API", "type": "Other"}, {"url": "https://rest.ensembl.org/", "name": "Ensembl REST API Endpoints", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "General Contact", "type": "Support email"}, {"url": "https://bacteria.ensembl.org/info/index.html", "name": "Help", "type": "Help documentation"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "Ensembl Dev Mailing List", "type": "Mailing list"}, {"url": "https://bacteria.ensembl.org/info/about/publications.html", "name": "Publications", "type": "Help documentation"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://bacteria.ensembl.org/Escherichia_coli_str_k_12_substr_mg1655_gca_000005845/Tools/VEP", "name": "Variant Effect Predictor", "type": "data access"}, {"url": "https://bacteria.ensembl.org/species.html", "name": "Browse", "type": "data access"}, {"url": "https://bacteria.ensembl.org/index.html", "name": "Search", "type": "data access"}, {"url": "https://bacteria.ensembl.org/info/data/ftp/index.html", "name": "Download", "type": "data release"}, {"url": "https://bacteria.ensembl.org/hmmer", "name": "HMMER", "type": "data access"}, {"url": "https://bacteria.ensembl.org/Escherichia_coli_str_k_12_substr_mg1655_gca_000005845/Tools/Blast", "name": "BLAST/BLAT", "type": "data access"}, {"url": "https://bacteria.ensembl.org/Escherichia_coli_str_k_12_substr_mg1655_gca_000005845/Tools/AssemblyConverter", "name": "Assembly Converter", "type": "data access"}, {"url": "https://bacteria.ensembl.org/Escherichia_coli_str_k_12_substr_mg1655_gca_000005845/Tools/IDMapper", "name": "ID History Converter", "type": "data access"}], "associated-tools": [{"url": "https://github.com/Ensembl/ensembl-tools/tree/release/103/scripts/id_history_converter", "name": "ID History Converter (Download Script)"}, {"url": "https://github.com/Ensembl/ensembl-tools/archive/release/103.zip", "name": "Variant Effect Predictor (Download Script)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011195", "name": "re3data:r3d100011195", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008679", "name": "SciCrunch:RRID:SCR_008679", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000884", "bsg-d000884"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: Ensembl Bacteria", "abbreviation": "Ensembl Bacteria", "url": "https://fairsharing.org/10.25504/FAIRsharing.zsgmvd", "doi": "10.25504/FAIRsharing.zsgmvd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl Bacteria is a browser for bacterial and archaeal genomes. These are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at the EBI, GenBank at the NCBI, and the DNA Database of Japan).", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 746, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 752, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2405", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-18T16:10:44.000Z", "updated-at": "2021-12-06T10:48:18.800Z", "metadata": {"doi": "10.25504/FAIRsharing.bg5xqs", "name": "Ensembl Fungi", "status": "ready", "contacts": [{"contact-name": "Paul Flicek", "contact-email": "flicek@ebi.ac.uk"}], "homepage": "http://fungi.ensembl.org/index.html", "citations": [{"doi": "10.1093/nar/gkz890", "pubmed-id": 31598706, "publication-id": 1081}], "identifier": 2405, "description": "Ensembl Fungi is a browser for fungal genomes. A majority of these are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at the EBI, GenBank at the NCBI, and the DNA Database of Japan); in some cases, the annotation has been taken directly from the websites of the data generators.", "abbreviation": "Ensembl Fungi", "access-points": [{"url": "https://github.com/Ensembl", "name": "Ensembl Perl API", "type": "Other"}, {"url": "https://rest.ensembl.org/", "name": "Ensembl Genomes REST API Endpoints", "type": "REST"}], "support-links": [{"url": "https://www.ensembl.info/", "name": "Ensembl Blog", "type": "Blog/News"}, {"url": "helpdesk@ensemblgenomes.org", "name": "Helpdesk", "type": "Support email"}, {"url": "http://lists.ensembl.org/mailman/listinfo/dev", "name": "Mailing List", "type": "Mailing list"}, {"url": "http://fungi.ensembl.org/info/index.html", "name": "Help and Information Pages", "type": "Help documentation"}, {"url": "https://twitter.com/ensemblgenomes", "name": "@ensemblgenomes", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://fungi.ensembl.org/info/data/ftp/index.html", "name": "Download", "type": "data release"}, {"url": "https://fungi.ensembl.org/species.html", "name": "Browse", "type": "data access"}, {"url": "http://fungi.ensembl.org/index.html", "name": "Search", "type": "data access"}, {"url": "https://fungi.ensembl.org/Multi/Tools/Blast", "name": "BLAST", "type": "data access"}, {"url": "https://fungi.ensembl.org/Saccharomyces_cerevisiae/Tools/VEP?db=core", "name": "Variant Predictor", "type": "data access"}, {"url": "https://fungi.ensembl.org/hmmer/index.html", "name": "phmmer", "type": "data access"}, {"url": "https://fungi.ensembl.org/Saccharomyces_cerevisiae/Tools/AssemblyConverter?db=core", "name": "Assembly Converter", "type": "data access"}, {"url": "https://fungi.ensembl.org/Saccharomyces_cerevisiae/Tools/IDMapper?db=core", "name": "ID History Converter", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011196", "name": "re3data:r3d100011196", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008681", "name": "SciCrunch:RRID:SCR_008681", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000887", "bsg-d000887"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["DNA sequence data", "Genome annotation"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: Ensembl Fungi", "abbreviation": "Ensembl Fungi", "url": "https://fairsharing.org/10.25504/FAIRsharing.bg5xqs", "doi": "10.25504/FAIRsharing.bg5xqs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ensembl Fungi is a browser for fungal genomes. A majority of these are taken from the databases of the International Nucleotide Sequence Database Collaboration (the European Nucleotide Archive at the EBI, GenBank at the NCBI, and the DNA Database of Japan); in some cases, the annotation has been taken directly from the websites of the data generators.", "publications": [{"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 1657, "pubmed_id": 26578574, "title": "Ensembl Genomes 2016: more genomes, more complexity.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1209", "authors": "Kersey PJ et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1209", "created_at": "2021-09-30T08:25:25.609Z", "updated_at": "2021-09-30T11:29:17.737Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 884, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 886, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2410", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-11T13:45:55.000Z", "updated-at": "2021-12-06T10:48:26.827Z", "metadata": {"doi": "10.25504/FAIRsharing.drz6sx", "name": "National Geoscience Data Centre Data Archive", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "ngdc@bgs.ac.uk"}], "homepage": "http://www.bgs.ac.uk/services/ngdc/home.html", "identifier": 2410, "description": "The National Geoscience Data Centre (NGDC) collects and preserves geoscientific data and information, making them available to a wide range of users and communities. NGDC is recognised as the NERC Environmental Data Centre for geoscience data.", "abbreviation": "NGDC", "access-points": [{"url": "https://www.bgs.ac.uk/data/services/mash-ups/developernotes.html", "name": "ArcGIS API for JavaScript", "type": "REST"}], "support-links": [{"url": "http://www.bgs.ac.uk/help/home.html", "type": "Help documentation"}, {"url": "http://www.nerc.ac.uk/research/sites/data/doi/", "name": "NERC DOI Information", "type": "Help documentation"}, {"url": "https://www.bgs.ac.uk/news/rss.html", "type": "Blog/News"}, {"url": "https://twitter.com/BritGeoSurvey", "type": "Twitter"}], "data-processes": [{"url": "http://www.bgs.ac.uk/services/NGDC/dataDeposited.html", "name": "Search", "type": "data access"}, {"url": "http://www.bgs.ac.uk/services/ngdc/guidelines.html", "name": "Deposit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010189", "name": "re3data:r3d100010189", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000892", "bsg-d000892"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Geophysics", "Geodesy", "Earth Science", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Drilling", "Earthquake", "Gas"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: National Geoscience Data Centre Data Archive", "abbreviation": "NGDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.drz6sx", "doi": "10.25504/FAIRsharing.drz6sx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Geoscience Data Centre (NGDC) collects and preserves geoscientific data and information, making them available to a wide range of users and communities. NGDC is recognised as the NERC Environmental Data Centre for geoscience data.", "publications": [], "licence-links": [{"licence-name": "BGS Privacy Policy", "licence-id": 72, "link-id": 1568, "relation": "undefined"}, {"licence-name": "BGS Terms of Use", "licence-id": 73, "link-id": 1575, "relation": "undefined"}, {"licence-name": "Open Government Licence (OGL)", "licence-id": 628, "link-id": 1576, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2434", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T19:06:37.000Z", "updated-at": "2021-12-06T10:49:14.857Z", "metadata": {"doi": "10.25504/FAIRsharing.t43bf6", "name": "UK Polar Data Centre Data Archive", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "polardatacentre@bas.ac.uk"}], "homepage": "https://www.bas.ac.uk/data/uk-pdc/", "identifier": 2434, "description": "The UK Polar Data Centre (UK PDC) is the Natural Environment Research Council's (NERC) Designated Data Centre for polar science. It is the focal point for Arctic and Antarctic environmental data management in the UK.", "abbreviation": "UK PDC", "support-links": [{"url": "http://www.nerc.ac.uk/research/sites/data/doi/", "name": "NERC DOI Information", "type": "Help documentation"}, {"url": "https://www.bas.ac.uk/data/uk-pdc/metadata-guidance/", "name": "Metadata Guidance", "type": "Help documentation"}, {"url": "https://www.bas.ac.uk/data/uk-pdc/data-citation-and-publishing/", "name": "About Data Citation", "type": "Help documentation"}, {"url": "https://twitter.com/BAS_News", "name": "@BAS_News", "type": "Twitter"}], "data-processes": [{"url": "https://www.bas.ac.uk/data/uk-pdc/data-deposit/", "name": "Submit", "type": "data curation"}, {"url": "https://www.bas.ac.uk/project/dms/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://data.bas.ac.uk/", "name": "Discovery Metadata System"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010120", "name": "re3data:r3d100010120", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000916", "bsg-d000916"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UK Polar Data Centre Data Archive", "abbreviation": "UK PDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.t43bf6", "doi": "10.25504/FAIRsharing.t43bf6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UK Polar Data Centre (UK PDC) is the Natural Environment Research Council's (NERC) Designated Data Centre for polar science. It is the focal point for Arctic and Antarctic environmental data management in the UK.", "publications": [], "licence-links": [{"licence-name": "BAS Privacy and Cookie Policy", "licence-id": 56, "link-id": 1501, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3104", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-04T14:08:38.000Z", "updated-at": "2022-02-08T10:41:58.258Z", "metadata": {"doi": "10.25504/FAIRsharing.f5bf2e", "name": "Seamount Catalog", "status": "ready", "contacts": [{"contact-name": "Anthony A.P. Koppers", "contact-email": "akoppers@coas.oregonstate.edu", "contact-orcid": "0000-0002-8136-5372"}], "homepage": "https://earthref.org/SC/", "identifier": 3104, "description": "The Seamount Catalog is a digital archive for bathymetric seamount maps that can be viewed and downloaded in various formats. This catalog contains morphological data, sample information, related grid and multibeam data files, as well as user-contributed files that all can be downloaded.", "abbreviation": "Seamount Catalog", "support-links": [{"url": "webmaster@earthref.org", "name": "General contact", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "https://earthref.org/SC/#top", "name": "Search", "type": "data access"}, {"url": "https://www2.earthref.org/log-in", "name": "Register", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012835", "name": "re3data:r3d100012835", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001612", "bsg-d001612"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Topography"], "countries": ["United States"], "name": "FAIRsharing record for: Seamount Catalog", "abbreviation": "Seamount Catalog", "url": "https://fairsharing.org/10.25504/FAIRsharing.f5bf2e", "doi": "10.25504/FAIRsharing.f5bf2e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Seamount Catalog is a digital archive for bathymetric seamount maps that can be viewed and downloaded in various formats. This catalog contains morphological data, sample information, related grid and multibeam data files, as well as user-contributed files that all can be downloaded.", "publications": [], "licence-links": [{"licence-name": "EarthRef.org Disclaimer", "licence-id": 256, "link-id": 1292, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1297, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3078", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-21T09:25:35.000Z", "updated-at": "2021-12-06T10:47:33.313Z", "metadata": {"name": "Library of Experimental Phase Relations / TraceDs", "status": "ready", "contacts": [{"contact-name": "Marc M. Hirschmann", "contact-email": "marc.m.hirschmann-1@umn.edu"}], "homepage": "http://traceds.ofm-research.org", "identifier": 3078, "description": "LEPR is a database of results of published experimental studies involving liquid-solid phase equilibria relevant to natural magmatic systems. TraceDs is a database of experimental studies involving trace element distribution between liquid, solid and fluid phases.", "abbreviation": "LEPR / TraceDs", "support-links": [{"url": "webauthor@ofm-research.org", "name": "Administrator", "type": "Support email"}, {"url": "https://www.researchgate.net/publication/283142168_TRACEDS_WHAT_WE_HAVE_LEARNED_ABOUT_THE_EXISTING_TRACE_ELEMENT_PARTITIONING_DATA_DURING_THE_POPULATION_PHASE", "name": "What We Have Learned About the Existing Trace Element Partitioning data During the Population Phase of traceDs", "type": "Help documentation"}], "data-processes": [{"url": "http://traceds.ofm-research.org/access_user/login.php", "name": "Login to access data", "type": "data access"}, {"url": "http://traceds.ofm-research.org/search.php", "name": "Search", "type": "data access"}, {"name": "Contribute data to LEPR/TraceDs - Email the administrator", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012548", "name": "re3data:r3d100012548", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002202", "name": "SciCrunch:RRID:SCR_002202", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001586", "bsg-d001586"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Magma", "Pressure", "Temperature", "Volcano"], "countries": ["United States"], "name": "FAIRsharing record for: Library of Experimental Phase Relations / TraceDs", "abbreviation": "LEPR / TraceDs", "url": "https://fairsharing.org/fairsharing_records/3078", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LEPR is a database of results of published experimental studies involving liquid-solid phase equilibria relevant to natural magmatic systems. TraceDs is a database of experimental studies involving trace element distribution between liquid, solid and fluid phases.", "publications": [{"id": 3010, "pubmed_id": null, "title": "Library of Experimental Phase Relations (LEPR): A database and Web portal for experimental magmatic phase equilibria data", "year": 2008, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2007GC001894", "authors": "M. M. Hirschmann M. S. Ghiorso F. A. Davis S. M. Gordon S. Mukherjee T. L. Grove M. Krawczynski E. Medard C. B. Till", "journal": "Geochemistry, Geophysics, Geosystems", "doi": null, "created_at": "2021-09-30T08:28:11.099Z", "updated_at": "2021-09-30T08:28:11.099Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2431", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T09:26:30.000Z", "updated-at": "2021-12-06T10:48:29.137Z", "metadata": {"doi": "10.25504/FAIRsharing.e7skc6", "name": "NASA Data Portal", "status": "ready", "contacts": [{"contact-name": "Jason Dudley", "contact-email": "jason.duley@nasa.gov"}], "homepage": "https://data.nasa.gov", "identifier": 2431, "description": "NASA's publicly available data sets and resources.", "abbreviation": "NASA Data Portal", "support-links": [{"url": "nasa-data@lists.arc.nasa.gov", "type": "Support email"}, {"url": "https://twitter.com/NASA", "type": "Twitter"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011758", "name": "re3data:r3d100011758", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000913", "bsg-d000913"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NASA Data Portal", "abbreviation": "NASA Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.e7skc6", "doi": "10.25504/FAIRsharing.e7skc6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NASA's publicly available data sets and resources.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 1109, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2446", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-21T12:47:44.000Z", "updated-at": "2021-12-06T10:48:32.705Z", "metadata": {"doi": "10.25504/FAIRsharing.f7hyf3", "name": "NERC EDS Environmental Information Data Centre", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@eidc.ac.uk"}], "homepage": "https://eidc.ac.uk", "identifier": 2446, "description": "The Environmental Information Data Centre (EIDC) is a NERC Data Centre hosted by the UK Centre for Ecology & Hydrology (UKCEH). They manage nationally-important datasets concerned with the terrestrial and freshwater sciences.", "abbreviation": "EIDC", "support-links": [{"url": "https://eidc.ac.uk/contactus", "name": "Contact Form", "type": "Contact form"}, {"url": "https://eidc.ac.uk/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://eidc.ac.uk/support", "name": "Support", "type": "Help documentation"}, {"url": "https://eidc.ac.uk/help", "name": "Help Section", "type": "Help documentation"}, {"url": "https://eidc.ac.uk/about", "name": "About", "type": "Help documentation"}, {"url": "https://eidc.ac.uk/citing-data", "name": "Citing Data with DOIs", "type": "Help documentation"}, {"url": "https://twitter.com/CEH_EIDC", "name": "@CEH_EIDC", "type": "Twitter"}], "data-processes": [{"url": "https://catalogue.ceh.ac.uk/eidc/documents", "name": "search", "type": "data access"}, {"url": "https://eidc.ac.uk/deposit", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010199", "name": "re3data:r3d100010199", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000928", "bsg-d000928"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Earth Science", "Life Science", "Freshwater Science", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: NERC EDS Environmental Information Data Centre", "abbreviation": "EIDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.f7hyf3", "doi": "10.25504/FAIRsharing.f7hyf3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Environmental Information Data Centre (EIDC) is a NERC Data Centre hosted by the UK Centre for Ecology & Hydrology (UKCEH). They manage nationally-important datasets concerned with the terrestrial and freshwater sciences.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2496", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T13:44:06.000Z", "updated-at": "2021-12-06T10:48:43.272Z", "metadata": {"doi": "10.25504/FAIRsharing.j5eden", "name": "Australian Ocean Data Network Portal", "status": "ready", "contacts": [{"contact-name": "Contact email", "contact-email": "info@aodn.org.au"}], "homepage": "https://portal.aodn.org.au", "identifier": 2496, "description": "The AODN Portal provides access to all available Australian marine and climate science data and provides the primary access to IMOS data including access to the IMOS metadata. Australia\u2019s Integrated Marine Observing System (IMOS) is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS). It is operated by a consortium of institutions as an unincorporated joint venture, with the University of Tasmania as Lead Agent.", "abbreviation": "AODN", "access-points": [{"url": "https://help.aodn.org.au/web-services/", "name": "List of Available Web Services", "type": "Other"}], "support-links": [{"url": "https://help.aodn.org.au", "name": "User guide", "type": "Help documentation"}, {"url": "https://github.com/aodn/", "name": "Github", "type": "Github"}, {"url": "https://twitter.com/IMOS_AUS", "name": "@IMOS_AUS", "type": "Twitter"}], "data-processes": [{"url": "https://portal.aodn.org.au/search", "name": "Search", "type": "data access"}, {"url": "https://help.aodn.org.au/contributing-data/", "name": "Guide to Contributing Data", "type": "data curation"}], "associated-tools": [{"url": "https://help.aodn.org.au/aodn-data-tools/", "name": "AODN/IMOS Data Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010914", "name": "re3data:r3d100010914", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000978", "bsg-d000978"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Marine Biology", "Earth Science", "Oceanography"], "domains": ["Marine environment", "Climate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Australian Ocean Data Network Portal", "abbreviation": "AODN", "url": "https://fairsharing.org/10.25504/FAIRsharing.j5eden", "doi": "10.25504/FAIRsharing.j5eden", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AODN Portal provides access to all available Australian marine and climate science data and provides the primary access to IMOS data including access to the IMOS metadata. Australia\u2019s Integrated Marine Observing System (IMOS) is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS). It is operated by a consortium of institutions as an unincorporated joint venture, with the University of Tasmania as Lead Agent.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1466, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2654", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-08T18:59:43.000Z", "updated-at": "2021-11-24T13:16:39.612Z", "metadata": {"name": "E-depot Dutch Archeology", "status": "deprecated", "contacts": [{"contact-name": "Valentjin Gilissen", "contact-email": "valentijn.gilissen@dans.knaw.nl"}], "homepage": "https://dans.knaw.nl/en/about/services/easy/edna", "identifier": 2654, "description": "E-depot Dutch Archeology is a collection of acrcheological research reports and the associated data such as GIS data, photographs, field data and data tables.", "abbreviation": "EDNA", "support-links": [{"url": "https://twitter.com/DANSKAW", "name": "Twitter", "type": "Twitter"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001145", "bsg-d001145"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Archaeology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Natural Resources, Earth and Environment", "Researcher data"], "countries": ["Netherlands"], "name": "FAIRsharing record for: E-depot Dutch Archeology", "abbreviation": "EDNA", "url": "https://fairsharing.org/fairsharing_records/2654", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: E-depot Dutch Archeology is a collection of acrcheological research reports and the associated data such as GIS data, photographs, field data and data tables.", "publications": [], "licence-links": [{"licence-name": "Data Archiving and Networked Services (DANS) Privacy Policy", "licence-id": 214, "link-id": 75, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2537", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-20T20:30:15.000Z", "updated-at": "2022-01-10T13:17:38.329Z", "metadata": {"doi": "10.25504/FAIRsharing.zcveaz", "name": "4TU.ResearchData", "status": "ready", "contacts": [{"contact-name": "Marta Teperek", "contact-email": "researchdata@4tu.nl", "contact-orcid": "0000-0001-8520-5598"}], "homepage": "https://data.4tu.nl/portal", "citations": [], "identifier": 2537, "description": "4TU.ResearchData is an international data repository for science, engineering and design, open to anyone in the world to upload and download data. Its services include curation, sharing, long-term access and preservation of research datasets. These services are available to anyone around the world. In addition, 4TU.ResearchData also offers training and resources to researchers to support them in making research data findable, accessible, interoperable and reproducible (FAIR).", "abbreviation": "4TU.ResearchData", "data-curation": {}, "support-links": [{"url": "https://data.4tu.nl/info/en/news-events/news/", "name": "News", "type": "Blog/News"}, {"url": "researchdata@4tu.nl", "name": "General contact", "type": "Support email"}], "year-creation": 2008, "data-processes": [{"url": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/4TU.Preservation_Policy.pdf", "name": "Data Preservation Policy", "type": "data curation"}, {"url": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Preferred_File_Formats_2019.pdf", "name": "List of Preferred File Formats", "type": "data curation"}, {"url": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Data_collection_policy_2020.pdf", "name": "Data Collection Policy", "type": "data release"}, {"url": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Guidelines_for_creating_a_README_file.pdf", "name": "Guideline for README-file Creation", "type": "data release"}, {"url": "https://data.4tu.nl/portal", "name": "Browse by subject", "type": "data access"}, {"url": "https://data.4tu.nl/info/en/use/publish-cite/upload-your-data-in-our-data-repository/", "name": "Upload your data", "type": "data curation"}], "data-versioning": "yes", "associated-tools": [{"url": "https://www.opendap.org/", "name": "OPeNDAP - Advanced Software for Remote Data Retrieval"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010216", "name": "re3data:r3d100010216", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006295", "name": "SciCrunch:RRID:SCR_006295", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {"url": "https://data.4tu.nl/info//fileadmin/user_upload/Documenten/4TU.Preservation_Policy.pdf", "name": "Section 5 of the Preservation Policy: commitment to sustainability"}, "data-preservation-policy": {"url": "https://data.4tu.nl/info//fileadmin/user_upload/Documenten/4TU.Preservation_Policy.pdf", "name": "Mature Preservation Policy available"}, "data-deposition-condition": {"url": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Data_collection_policy_2020.pdf", "type": "open"}}, "legacy-ids": ["biodbcore-001020", "bsg-d001020"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydraulic Engineering", "Logistics Engineering", "Environmental Science", "Engineering Science", "Construction Engineering", "Mechanical Process Engineering", "Industrial Engineering", "Food Process Engineering", "Geography", "Mechanical Engineering", "Informatics", "Aerospace Engineering", "Component Engineering", "Nanotechnology", "Maritime Engineering", "Energy Engineering", "Materials Engineering", "Building Engineering Physics", "Health Science", "Architecture", "Chemistry", "Agricultural Engineering", "Electrical Engineering", "Business Administration", "Civil Engineering", "Metal-Cutting Manufacturing Engineering", "Earth Science", "Mathematics", "Atmospheric Science", "Agriculture", "Human-Machine Systems Engineering", "Biological Process Engineering", "Life Science", "Computer Science", "Chemical Engineering", "Physics", "Plastics Engineering", "Bioengineering", "Process Engineering", "Biology", "Power Engineering", "Water Research", "Hydrology", "Building Design"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["Netherlands"], "name": "FAIRsharing record for: 4TU.ResearchData", "abbreviation": "4TU.ResearchData", "url": "https://fairsharing.org/10.25504/FAIRsharing.zcveaz", "doi": "10.25504/FAIRsharing.zcveaz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: 4TU.ResearchData is an international data repository for science, engineering and design, open to anyone in the world to upload and download data. Its services include curation, sharing, long-term access and preservation of research datasets. These services are available to anyone around the world. In addition, 4TU.ResearchData also offers training and resources to researchers to support them in making research data findable, accessible, interoperable and reproducible (FAIR).", "publications": [{"id": 2277, "pubmed_id": null, "title": "Are the FAIR Data Principles fair?", "year": 2017, "url": "http://doi.org/doi.org/10.4121/uuid:5146dd06-98e4-426c-9ae5-dc8fa65c549f", "authors": "Dunning, A.C. (Alastair); de Smaele, M.M.E. (Madeleine); B\u00f6hmer, J.K. (Jasmin)", "journal": "International Journal of Digital Curation", "doi": "doi.org/10.4121/uuid:5146dd06-98e4-426c-9ae5-dc8fa65c549f", "created_at": "2021-09-30T08:26:37.381Z", "updated_at": "2021-09-30T08:26:37.381Z"}], "licence-links": [{"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 1133, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1149, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1151, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1152, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1154, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3259", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-20T15:29:26.000Z", "updated-at": "2021-12-06T10:49:28.202Z", "metadata": {"doi": "10.25504/FAIRsharing.XIxciC", "name": "U.S. Antarctic Program Data Center", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@usap-dc.org"}], "homepage": "http://www.usap-dc.org/", "identifier": 3259, "description": "The U.S. Antarctic Program Data Center (USAP-DC) provides a central USAP Project Catalog for all projects funded by the NSF Antarctic program and a Data Repository for research datasets derived from these projects. Data managed include the NSF research related glaciology data collection formerly managed through NSIDC. Datasets are registered in the Antarctic Master Directory to comply with the Antarctic Treaty and represent the U.S. in Scientific Committee on Antarctic Research (SCAR) activities.", "abbreviation": "USAP-DC", "access-points": [{"url": "https://www.usap-dc.org/services", "name": "Web Services", "type": "REST"}], "support-links": [{"url": "https://www.usap-dc.org/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.usap-dc.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://youtu.be/I9rwM0PeQlE", "name": "Video Overview of Services", "type": "Help documentation"}, {"url": "https://www.usap-dc.org/stats", "name": "Statistics", "type": "Help documentation"}], "data-processes": [{"url": "https://www.usap-dc.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.usap-dc.org/submit", "name": "Contribute", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010660", "name": "re3data:r3d100010660", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002221", "name": "SciCrunch:RRID:SCR_002221", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001774", "bsg-d001774"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Antarctic", "Glacier", "ice", "Sea ice"], "countries": ["United States"], "name": "FAIRsharing record for: U.S. Antarctic Program Data Center", "abbreviation": "USAP-DC", "url": "https://fairsharing.org/10.25504/FAIRsharing.XIxciC", "doi": "10.25504/FAIRsharing.XIxciC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The U.S. Antarctic Program Data Center (USAP-DC) provides a central USAP Project Catalog for all projects funded by the NSF Antarctic program and a Data Repository for research datasets derived from these projects. Data managed include the NSF research related glaciology data collection formerly managed through NSIDC. Datasets are registered in the Antarctic Master Directory to comply with the Antarctic Treaty and represent the U.S. in Scientific Committee on Antarctic Research (SCAR) activities.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States (CC BY-NC-SA 3.0 US)", "licence-id": 185, "link-id": 1783, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2600", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-21T17:27:55.000Z", "updated-at": "2022-02-08T10:52:37.846Z", "metadata": {"doi": "10.25504/FAIRsharing.847069", "name": "OBO Foundry", "status": "ready", "contacts": [{"contact-name": "Barry Smith", "contact-email": "phismith@buffalo.edu"}], "homepage": "http://www.obofoundry.org/", "citations": [], "identifier": 2600, "description": "The Open Biological and Biomedical Ontology (OBO) Foundry is a collective of ontology developers that are committed to collaboration and adherence to shared principles. The mission of the OBO Foundry is to develop a family of interoperable ontologies that are both logically well-formed and scientifically accurate. To achieve this, OBO Foundry participants voluntarily adhere to and contribute to the development of an evolving set of principles including open use, collaborative development, non-overlapping and strictly-scoped content, and common syntax and relations, based on ontology models that work well, such as the Gene Ontology (GO). The OBO Foundry is overseen by an Operations Committee with Editorial, Technical and Outreach working groups.", "abbreviation": "OBO", "support-links": [{"url": "http://www.obofoundry.org/allnews.html", "name": "News", "type": "Blog/News"}, {"url": "http://www.obofoundry.org/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.obofoundry.org/legacy/participate.html", "name": "Participation in the OBO Foundry", "type": "Forum"}, {"url": "https://sourceforge.net/projects/obo/lists/obo-discuss", "name": "OBO Mailing List", "type": "Mailing list"}, {"url": "https://github.com/OBOFoundry/OBOFoundry.github.io/issues", "name": "GitHub issue tracker", "type": "Github"}, {"url": "https://twitter.com/OBOFoundry", "name": "Twitter", "type": "Twitter"}, {"url": "https://github.com/OBOFoundry/OBOFoundry.github.io", "type": "Github"}], "data-processes": [{"url": "http://www.obofoundry.org/", "name": "Browse & Search", "type": "data access"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001083", "bsg-d001083"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Ontology and Terminology"], "domains": ["Resource collection"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: OBO Foundry", "abbreviation": "OBO", "url": "https://fairsharing.org/10.25504/FAIRsharing.847069", "doi": "10.25504/FAIRsharing.847069", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open Biological and Biomedical Ontology (OBO) Foundry is a collective of ontology developers that are committed to collaboration and adherence to shared principles. The mission of the OBO Foundry is to develop a family of interoperable ontologies that are both logically well-formed and scientifically accurate. To achieve this, OBO Foundry participants voluntarily adhere to and contribute to the development of an evolving set of principles including open use, collaborative development, non-overlapping and strictly-scoped content, and common syntax and relations, based on ontology models that work well, such as the Gene Ontology (GO). The OBO Foundry is overseen by an Operations Committee with Editorial, Technical and Outreach working groups.", "publications": [{"id": 2301, "pubmed_id": 17989687, "title": "The OBO Foundry: coordinated evolution of ontologies to support biomedical data integration.", "year": 2007, "url": "http://doi.org/10.1038/nbt1346", "authors": "Smith B,Ashburner M,Rosse C,Bard J,Bug W,Ceusters W,Goldberg LJ,Eilbeck K,Ireland A,Mungall CJ,Leontis N,Rocca-Serra P,Ruttenberg A,Sansone SA,Scheuermann RH,Shah N,Whetzel PL,Lewis S", "journal": "Nat Biotechnol", "doi": "10.1038/nbt1346", "created_at": "2021-09-30T08:26:41.847Z", "updated_at": "2021-09-30T08:26:41.847Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2644", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-06T13:00:42.000Z", "updated-at": "2021-11-24T13:19:37.667Z", "metadata": {"name": "Ashbya Genome Database", "status": "deprecated", "contacts": [{"contact-name": "Michael Primig", "contact-email": "michael.primig@unibas.ch", "contact-orcid": "0000-0002-2061-0119"}], "homepage": "http://agd.unibas.ch/index.html", "citations": [], "identifier": 2644, "description": "The Ashbya Genome Database (AGD) is a genome/transcriptome database containing gene annotation and high-density oligonucleotide microarray expression data for protein-coding genes from Ashbya gossypii and the model organism Saccharomyces cerevisiae.", "abbreviation": "AGD", "support-links": [{"url": "http://agd.unibas.ch/Ashbya_gossypii/helpview", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://agd.unibas.ch/Ashbya_gossypii/exportview", "name": "export", "type": "data access"}, {"url": "http://agd.unibas.ch/info/data/download.html", "name": "download", "type": "data access"}, {"url": "http://agd.unibas.ch/Ashbya_gossypii/blastview", "name": "sequence search", "type": "data access"}], "deprecation-date": "2021-11-02", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001135", "bsg-d001135"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Transcriptomics"], "domains": ["Genome annotation", "Genome visualization", "Microarray experiment"], "taxonomies": ["Ashbya gossypii", "Neurospora crassa", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["United States", "Switzerland"], "name": "FAIRsharing record for: Ashbya Genome Database", "abbreviation": "AGD", "url": "https://fairsharing.org/fairsharing_records/2644", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ashbya Genome Database (AGD) is a genome/transcriptome database containing gene annotation and high-density oligonucleotide microarray expression data for protein-coding genes from Ashbya gossypii and the model organism Saccharomyces cerevisiae.", "publications": [{"id": 1719, "pubmed_id": 15608214, "title": "The Ashbya Genome Database (AGD)--a tool for the yeast community and genome biologists.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki009", "authors": "Hermida L,Brachat S,Voegeli S,Philippsen P,Primig M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki009", "created_at": "2021-09-30T08:25:32.635Z", "updated_at": "2021-09-30T11:29:19.111Z"}, {"id": 1720, "pubmed_id": 17212814, "title": "Ashbya Genome Database 3.0: a cross-species genome and transcriptome browser for yeast biologists.", "year": 2007, "url": "http://doi.org/10.1186/1471-2164-8-9", "authors": "Gattiker A,Rischatsch R,Demougin P,Voegeli S,Dietrich FS,Philippsen P,Primig M", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-8-9", "created_at": "2021-09-30T08:25:32.745Z", "updated_at": "2021-09-30T08:25:32.745Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3339", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-21T06:04:53.000Z", "updated-at": "2022-02-08T10:26:08.715Z", "metadata": {"doi": "10.25504/FAIRsharing.ad7575", "name": "National Ecosystem Data Bank", "status": "ready", "contacts": [{"contact-name": "Yanfei Hou", "contact-email": "afeiisafei@cnic.cn", "contact-orcid": "0000-0001-6722-842X"}], "homepage": "http://ecodb.cern.ac.cn/", "identifier": 3339, "description": "National ecosystem data bank (EcoDB) is a public professional scientific data repository supported by the National Ecosystem Science Data Center (NESDC) for researchers in ecology and related fields, which provides long-term preservation, publication, sharing and access services of scientific data. EcoDB provides services for both individual researchers and scientific journals. Individuals can use this repository to store, manage and publish scientific data, get feedback from others on the data, and discover scientific data shared by others through this repository. Journals can use the repository to gather, manage and review the supporting data of submitted paper. At the same time, journals can timely publish these supporting data according to their own data policies.", "abbreviation": "EcoDB", "access-points": [{"url": "http://ecodb-intl.cern.ac.cn/", "name": "API Available (No documentation)", "type": "REST"}], "support-links": [{"url": "http://ecodb-intl.cern.ac.cn/ours/contact", "name": "contact Information", "type": "Contact form"}, {"url": "nesdc@igsnrr.ac.cn", "name": "National Ecosystem Science Data Center", "type": "Support email"}, {"url": "http://ecodb-intl.cern.ac.cn/ours/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2021, "data-processes": [{"url": "http://ecodb-intl.cern.ac.cn/list?searchList=", "name": "Search", "type": "data access"}, {"name": "Per-Record Download Available", "type": "data release"}, {"name": "Data Submission - Login Required", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013591", "name": "re3data:r3d100013591", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001858", "bsg-d001858"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Ecology", "Natural Science", "Earth Science", "Ecosystem Science"], "domains": ["Ecosystem"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: National Ecosystem Data Bank", "abbreviation": "EcoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ad7575", "doi": "10.25504/FAIRsharing.ad7575", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: National ecosystem data bank (EcoDB) is a public professional scientific data repository supported by the National Ecosystem Science Data Center (NESDC) for researchers in ecology and related fields, which provides long-term preservation, publication, sharing and access services of scientific data. EcoDB provides services for both individual researchers and scientific journals. Individuals can use this repository to store, manage and publish scientific data, get feedback from others on the data, and discover scientific data shared by others through this repository. Journals can use the repository to gather, manage and review the supporting data of submitted paper. At the same time, journals can timely publish these supporting data according to their own data policies.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1647, "relation": "undefined"}, {"licence-name": "EcoDB Terms of Service", "licence-id": 261, "link-id": 1648, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1649, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1650, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1659, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 1662, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2769", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-09T20:00:10.000Z", "updated-at": "2021-12-06T10:48:42.079Z", "metadata": {"doi": "10.25504/FAIRsharing.iagXcR", "name": "Chemotion repository", "status": "ready", "contacts": [{"contact-name": "Nicole Jung, Pierre Tremouilhac, Stefan Br\u00e4se", "contact-email": "nicole.jung@kit.edu", "contact-orcid": "0000-0001-9513-2468"}], "homepage": "https://www.chemotion.net/chemotionsaurus/index.html", "citations": [{"doi": "10.1186/s13321-017-0240-0", "pubmed-id": 29086216, "publication-id": 2005}], "identifier": 2769, "description": "The Chemotion-repository is a repository for chemistry research data. The repository was founded at the Karlsruhe Institute of Technology (KIT) in Germany as a project funded by the German Research Foundation. The repository is domain specific, offering diverse functions to save and work with chemical datasets and analyse files. The DOI generation is provided by DataCite. The repository supports the storage of data related to molecules or reactions, with a focus on data from synthetic and analytic work. Data can be uploaded directly to the repository or can be added via a connector that mediates the transfer of data from the chemotion ELN (available as an Open Source) to the repository.", "abbreviation": "chemotion", "support-links": [{"url": "https://www.chemotion-repository.net/home/about", "name": "About Chemotion", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://www.chemotion-repository.net/home/publications", "name": "Browse Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010748", "name": "re3data:r3d100010748", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001268", "bsg-d001268"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Synthetic Chemistry", "Organic Chemistry", "Inorganic Molecular Chemistry", "Molecular Chemistry", "Synthesis Chemistry", "Chemistry", "Biomimetic Chemistry", "Analytical Chemistry", "Technical Chemistry", "Medicinal Chemistry"], "domains": ["Chemical formula", "Reaction data", "Chemical entity"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Chemotion repository", "abbreviation": "chemotion", "url": "https://fairsharing.org/10.25504/FAIRsharing.iagXcR", "doi": "10.25504/FAIRsharing.iagXcR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chemotion-repository is a repository for chemistry research data. The repository was founded at the Karlsruhe Institute of Technology (KIT) in Germany as a project funded by the German Research Foundation. The repository is domain specific, offering diverse functions to save and work with chemical datasets and analyse files. The DOI generation is provided by DataCite. The repository supports the storage of data related to molecules or reactions, with a focus on data from synthetic and analytic work. Data can be uploaded directly to the repository or can be added via a connector that mediates the transfer of data from the chemotion ELN (available as an Open Source) to the repository.", "publications": [{"id": 2005, "pubmed_id": 29086216, "title": "Chemotion ELN: an Open Source electronic lab notebook for chemists in academia.", "year": 2017, "url": "http://doi.org/10.1186/s13321-017-0240-0", "authors": "Tremouilhac P,Nguyen A,Huang YC,Kotov S,Lutjohann DS,Hubsch F,Jung N,Brase S", "journal": "J Cheminform", "doi": "10.1186/s13321-017-0240-0", "created_at": "2021-09-30T08:26:05.774Z", "updated_at": "2021-09-30T08:26:05.774Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2355, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3045", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-08T13:27:07.000Z", "updated-at": "2022-02-08T10:41:43.851Z", "metadata": {"doi": "10.25504/FAIRsharing.966e33", "name": "World Ozone and UV Data Centre", "status": "ready", "homepage": "https://woudc.org/home.php", "identifier": 3045, "description": "The World Ozone and Ultraviolet Radiation Data Centre (WOUDC) is one of six World Data Centres which are part of the Global Atmosphere Watch (GAW) programme of the World Meteorological Organization. The WOUDC data centre is operated by the Meteorological Service of Canada, a branch of Environment and Climate Change Canada. The WOUDC processes, archives and publishes world ozone and UV data reported by over 400 stations comprising over 100 international agencies and universities.", "abbreviation": "WOUDC", "access-points": [{"url": "https://woudc.org/about/data-access.php#ogc-csw", "name": "Web Services", "type": "Other"}], "support-links": [{"url": "https://woudc.org/news/?lang=en", "name": "News and Updates", "type": "Blog/News"}, {"url": "https://woudc.org/contact.php?lang=en", "type": "Contact form"}, {"url": "https://woudc.org/about/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://woudc.org/about/glossary.php", "name": "Glossary", "type": "Help documentation"}, {"url": "https://woudc.org/about/data-quality.php", "name": "Data Quality", "type": "Help documentation"}], "year-creation": 1992, "data-processes": [{"url": "https://woudc.org/data/explore.php", "name": "Search & Download", "type": "data access"}, {"url": "https://woudc.org/contributors/data-submission.php", "name": "Submit", "type": "data curation"}, {"url": "https://woudc.org/contributors/validation.php", "name": "Data Validator", "type": "data curation"}, {"url": "https://woudc.org/archive/", "name": "Archive", "type": "data access"}], "associated-tools": [{"url": "https://github.com/woudc/woudc/wiki", "name": "Related Softwares"}]}, "legacy-ids": ["biodbcore-001553", "bsg-d001553"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Meteorology", "Earth Science"], "domains": ["Radiation", "Radiation effects"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ozone", "Ultraviolet Rays"], "countries": ["Canada"], "name": "FAIRsharing record for: World Ozone and UV Data Centre", "abbreviation": "WOUDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.966e33", "doi": "10.25504/FAIRsharing.966e33", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Ozone and Ultraviolet Radiation Data Centre (WOUDC) is one of six World Data Centres which are part of the Global Atmosphere Watch (GAW) programme of the World Meteorological Organization. The WOUDC data centre is operated by the Meteorological Service of Canada, a branch of Environment and Climate Change Canada. The WOUDC processes, archives and publishes world ozone and UV data reported by over 400 stations comprising over 100 international agencies and universities.", "publications": [], "licence-links": [{"licence-name": "WOUDC Data Use Policy", "licence-id": 869, "link-id": 2011, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3053", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-25T10:18:15.000Z", "updated-at": "2022-02-08T10:32:36.235Z", "metadata": {"doi": "10.25504/FAIRsharing.0a674c", "name": "Scopus", "status": "ready", "contacts": [], "homepage": "https://www.scopus.com/", "citations": [], "identifier": 3053, "description": "Scopus is an abstract and citation database of peer-reviewed literature across all research areas. It provides tools for visualization, tracking and analysis of its data. Non-subscribed users access Scopus through Scopus Preview, which allows the searching of authors and source material (e.g. journal) titles.", "abbreviation": "Scopus", "access-points": [{"url": "https://dev.elsevier.com/sc_apis.html", "name": "Scopus API", "type": "REST"}], "support-links": [{"url": "https://blog.scopus.com/", "name": "Blog", "type": "Blog/News"}, {"url": "https://service.elsevier.com/app/contact/supporthub/scopus/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://service.elsevier.com/app/home/supporthub/scopus/", "name": "Support Hub", "type": "Help documentation"}, {"url": "https://service.elsevier.com/app/answers/detail/a_id/15534/supporthub/scopus/#tips", "name": "About Scopus Preview (Free Version)", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCdBxVf17uMtOMAOsGE36WKQ", "name": "YouTube Channel", "type": "Video"}, {"url": "https://twitter.com/Scopus", "name": "@Scopus", "type": "Twitter"}], "data-processes": [{"url": "https://www.scopus.com/sources.uri", "name": "Browse & Search Sources by Ranking", "type": "data access"}, {"url": "https://www.scopus.com/freelookup/form/author.uri", "name": "Search Authors", "type": "data access"}, {"url": "https://www.scopus.com/search/form.uri", "name": "General Search (Full Version Only)", "type": "data access"}, {"url": "https://www.elsevier.com/?a=91122", "name": "Download Source List", "type": "data release"}, {"url": "https://www.elsevier.com/?a=91123", "name": "Download Book Content List", "type": "data release"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001561", "bsg-d001561"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": ["Citation", "Bibliography"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: Scopus", "abbreviation": "Scopus", "url": "https://fairsharing.org/10.25504/FAIRsharing.0a674c", "doi": "10.25504/FAIRsharing.0a674c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Scopus is an abstract and citation database of peer-reviewed literature across all research areas. It provides tools for visualization, tracking and analysis of its data. Non-subscribed users access Scopus through Scopus Preview, which allows the searching of authors and source material (e.g. journal) titles.", "publications": [], "licence-links": [{"licence-name": "Elsevier Website Terms and Conditions", "licence-id": 268, "link-id": 1972, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2760", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-28T14:52:41.000Z", "updated-at": "2021-12-06T10:48:50.237Z", "metadata": {"doi": "10.25504/FAIRsharing.lone3g", "name": "e-cienciaDatos", "status": "ready", "contacts": [{"contact-name": "Juan Corrales", "contact-email": "eciencia@consorciomadrono.es"}], "homepage": "https://edatos.consorciomadrono.es/", "identifier": 2760, "description": "e-cienciaDatos is a multidisciplinary data repository that houses the scientific datasets of researchers from the public universities of the Community of Madrid and the UNED, members of the Consorcio Madro\u00f1o, in order to give visibility to these data. The purpose of this repository is to ensure data preservation and to facilitate data access and reuse. e-cienciaDatos collects datasets from of each of the member universities. e-cienciaDatos offers the deposit and publication of datasets, assigning a digital object identifier DOI to each of them. The association of a dataset with a DOI will facilitate data verification, dissemination, reuse, impact and long-term access. In addition, the repository provides a standardized citation for each dataset, which contains sufficient information so that it can be identified and located, including the DOI.", "abbreviation": "e-cienciaDatos", "support-links": [{"url": "http://guides.dataverse.org/en/4.11/user/", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://edatos.consorciomadrono.es/dataverse/Madrono/search;jsessionid=9c103ce685494cafcb8ffd1d4317", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012316", "name": "re3data:r3d100012316", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001258", "bsg-d001258"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Humanities and Social Science", "Astrophysics and Astronomy", "Earth Science", "Life Science", "Subject Agnostic"], "domains": ["Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Geospatial Data", "institutional repository"], "countries": ["Spain"], "name": "FAIRsharing record for: e-cienciaDatos", "abbreviation": "e-cienciaDatos", "url": "https://fairsharing.org/10.25504/FAIRsharing.lone3g", "doi": "10.25504/FAIRsharing.lone3g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: e-cienciaDatos is a multidisciplinary data repository that houses the scientific datasets of researchers from the public universities of the Community of Madrid and the UNED, members of the Consorcio Madro\u00f1o, in order to give visibility to these data. The purpose of this repository is to ensure data preservation and to facilitate data access and reuse. e-cienciaDatos collects datasets from of each of the member universities. e-cienciaDatos offers the deposit and publication of datasets, assigning a digital object identifier DOI to each of them. The association of a dataset with a DOI will facilitate data verification, dissemination, reuse, impact and long-term access. In addition, the repository provides a standardized citation for each dataset, which contains sufficient information so that it can be identified and located, including the DOI.", "publications": [], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 18, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2790", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-09T10:41:30.000Z", "updated-at": "2022-02-08T10:53:02.791Z", "metadata": {"doi": "10.25504/FAIRsharing.22e3be", "name": "Princeton University MicroArray database", "status": "ready", "contacts": [{"contact-name": "John Matese", "contact-email": "jcmatese@princeton.edu", "contact-orcid": "0000-0002-9432-8909"}], "homepage": "http://puma.princeton.edu", "citations": [], "identifier": 2790, "description": "The Princeton University MicroArray database (PUMAdb) stores raw and normalized data from microarray experiments, as well as their corresponding image files. In addition, PUMAdb provides interfaces for data retrieval, analysis and visualization.", "abbreviation": "PUMAdb", "support-links": [{"url": "array@princeton.edu", "type": "Support email"}, {"url": "https://puma.princeton.edu/help/FAQ.shtml", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://puma.princeton.edu/help/index.shtml", "name": "Online help documentation", "type": "Help documentation"}, {"url": "https://puma.princeton.edu/help/searches_subpage.shtml", "name": "How to search", "type": "Help documentation"}, {"url": "https://puma.princeton.edu/help/analysis_subpage.shtml", "name": "Data Analysis Help Topics", "type": "Help documentation"}, {"url": "https://puma.princeton.edu/help/tutorials_subpage.shtml", "type": "Training documentation"}, {"url": "https://puma.princeton.edu/help/glossary.shtml", "name": "Glossary Terms", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://guestaccount.princeton.edu/", "name": "Get an account", "type": "data access"}], "associated-tools": [{"url": "https://puma.princeton.edu/help/tools.shtml", "name": "PUMAdb Tools"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001289", "bsg-d001289"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Expression data", "Raw microarray data", "Microarray experiment", "DNA microarray"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Princeton University MicroArray database", "abbreviation": "PUMAdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.22e3be", "doi": "10.25504/FAIRsharing.22e3be", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Princeton University MicroArray database (PUMAdb) stores raw and normalized data from microarray experiments, as well as their corresponding image files. In addition, PUMAdb provides interfaces for data retrieval, analysis and visualization.", "publications": [{"id": 2082, "pubmed_id": 15608265, "title": "The Stanford Microarray Database accommodates additional microarray platforms and data formats.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki006", "authors": "Ball CA,Awad IA,Demeter J,Gollub J,Hebert JM,Hernandez-Boussard T,Jin H,Matese JC,Nitzberg M,Wymore F,Zachariah ZK,Brown PO,Sherlock G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki006", "created_at": "2021-09-30T08:26:14.756Z", "updated_at": "2021-09-30T11:29:28.079Z"}, {"id": 2088, "pubmed_id": 12519956, "title": "The Stanford Microarray Database: data access and quality assessment tools.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg078", "authors": "Gollub J,Ball CA,Binkley G,Demeter J,Finkelstein DB,Hebert JM,Hernandez-Boussard T,Jin H,Kaloper M,Matese JC,Schroeder M,Brown PO,Botstein D,Sherlock G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg078", "created_at": "2021-09-30T08:26:15.364Z", "updated_at": "2021-09-30T11:29:28.853Z"}, {"id": 2359, "pubmed_id": 11125075, "title": "The Stanford Microarray Database.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.152", "authors": "Sherlock G,Hernandez-Boussard T,Kasarskis A,Binkley G,Matese JC,Dwight SS,Kaloper M,Weng S,Jin H,Ball CA,Eisen MB,Spellman PT,Brown PO,Botstein D,Cherry JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/29.1.152", "created_at": "2021-09-30T08:26:50.008Z", "updated_at": "2021-09-30T11:29:34.111Z"}], "licence-links": [{"licence-name": "PUMAdb Privacy Policy", "licence-id": 690, "link-id": 1781, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2822", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-16T11:33:22.000Z", "updated-at": "2021-12-06T10:49:12.742Z", "metadata": {"doi": "10.25504/FAIRsharing.SrP8P7", "name": "Dynamic Ecological Information Management System - Site and Dataset Registry", "status": "ready", "contacts": [{"contact-name": "Christoph Wohner", "contact-email": "christoph.wohner@umweltbundesamt.at", "contact-orcid": "0000-0002-0655-3699"}], "homepage": "https://deims.org", "citations": [{"publication-id": 2563}], "identifier": 2822, "description": "DEIMS-SDR (Dynamic Ecological Information Management System - Site and Dataset Registry) is an information management system for the discovery of long-term environmental research and monitoring facilities around the globe, along with the data gathered at those sites and the people and networks associated with them. DEIMS-SDR includes metadata such as site location, ecosystem, facilities, parameters measured and research themes.", "abbreviation": "DEIMS-SDR", "access-points": [{"url": "https://deims.org/pycsw/csw", "name": "OGC-CSW", "type": "Other"}, {"url": "https://deims.org/api", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://deims.org/contact", "name": "Contact Form", "type": "Help documentation"}, {"url": "https://deims.org/docs/", "name": "Documentation", "type": "Help documentation"}, {"url": "https://deims.org/models", "name": "View Metadata Models", "type": "Help documentation"}, {"url": "https://deims.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://deims.org/search", "name": "Global Search", "type": "data access"}, {"url": "https://deims.org/search/sensors", "name": "Search Sensors", "type": "data access"}, {"url": "https://deims.org/search/datasets", "name": "Search Datasets", "type": "data access"}, {"url": "https://deims.org/map/", "name": "Site Viewer (Map)", "type": "data access"}, {"url": "http://vocabs.lter-europe.net/edg/tbl/EnvThes.editor", "name": "Browse EnvThes Thesaurus", "type": "data access"}, {"url": "https://deims.org/search/sites", "name": "Search Sites", "type": "data access"}, {"url": "https://deims.org/search/activities", "name": "Search Activities", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012910", "name": "re3data:r3d100012910", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001321", "bsg-d001321"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Ecosystem Science"], "domains": ["Geographical location", "Ecosystem", "Monitoring"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Austria"], "name": "FAIRsharing record for: Dynamic Ecological Information Management System - Site and Dataset Registry", "abbreviation": "DEIMS-SDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.SrP8P7", "doi": "10.25504/FAIRsharing.SrP8P7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DEIMS-SDR (Dynamic Ecological Information Management System - Site and Dataset Registry) is an information management system for the discovery of long-term environmental research and monitoring facilities around the globe, along with the data gathered at those sites and the people and networks associated with them. DEIMS-SDR includes metadata such as site location, ecosystem, facilities, parameters measured and research themes.", "publications": [{"id": 2563, "pubmed_id": null, "title": "DEIMS-SDR \u2013 A web portal to document research sites and their associated data.", "year": 2019, "url": "https://doi.org/10.1016/j.ecoinf.2019.01.005", "authors": "Wohner, C., Peterseil, J., Poursanidis, D., Kliment, T., Wilson, M., Mirtl, M., & Chrysoulakis, N.", "journal": "Ecological Informatics", "doi": null, "created_at": "2021-09-30T08:27:14.328Z", "updated_at": "2021-09-30T08:27:14.328Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2152, "relation": "undefined"}, {"licence-name": "DEIMS-SDR Terms of Use", "licence-id": 232, "link-id": 2153, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2827", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-04T13:38:55.000Z", "updated-at": "2022-02-08T10:30:11.824Z", "metadata": {"doi": "10.25504/FAIRsharing.ea591a", "name": "Canada Vigilance Adverse Reaction Online Database", "status": "ready", "contacts": [{"contact-email": "hc.canada.vigilance.sc@canada.ca"}], "homepage": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database.html", "identifier": 2827, "description": "The Canada Vigilance Adverse Reaction Online Database contains information about suspected adverse reactions (also known as side effects) to health products. Adverse reaction reports are submitted by: consumers and health professionals, who submit reports voluntarily; and manufacturers and distributors (also known as market authorization holders), who are required to submit reports according to the Food and Drugs Act. Data is stored from 1965 onwards.", "abbreviation": null, "support-links": [{"url": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database/glossary.html", "name": "Glossary", "type": "Help documentation"}, {"url": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database/instructions-canada-vigilance-adverse-reaction-online-database.html", "name": "Instructions for Use", "type": "Help documentation"}], "data-processes": [{"url": "https://cvp-pcv.hc-sc.gc.ca/arq-rei/index-eng.jsp", "name": "Search", "type": "data access"}, {"url": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database/canada-vigilance-online-database-data-extract.html", "name": "Data Extracts", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010937", "name": "re3data:r3d100010937", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001327", "bsg-d001327"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Biomedical Science", "Medical Informatics"], "domains": ["Adverse Reaction"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Canada Vigilance Adverse Reaction Online Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ea591a", "doi": "10.25504/FAIRsharing.ea591a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Canada Vigilance Adverse Reaction Online Database contains information about suspected adverse reactions (also known as side effects) to health products. Adverse reaction reports are submitted by: consumers and health professionals, who submit reports voluntarily; and manufacturers and distributors (also known as market authorization holders), who are required to submit reports according to the Food and Drugs Act. Data is stored from 1965 onwards.", "publications": [], "licence-links": [{"licence-name": "Open Government Licence - Canada", "licence-id": 627, "link-id": 2373, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2844", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-06T03:44:37.000Z", "updated-at": "2021-11-24T13:20:03.450Z", "metadata": {"doi": "10.25504/FAIRsharing.V527H4", "name": "Center for Expanded Data Annotation and Retrieval Workbench", "status": "ready", "contacts": [{"contact-name": "John Graybeal", "contact-email": "jgraybeal@stanford.edu", "contact-orcid": "0000-0001-6875-5360"}], "homepage": "https://metadatacenter.org/", "citations": [{"doi": "10.1093/jamia/ocv048", "pubmed-id": 26112029, "publication-id": 583}], "identifier": 2844, "description": "The Center for Expanded Data Annotation and Retrieval (CEDAR) Workbench is a database of metadata templates that define the data elements needed to describe particular types of biomedical experiments. The templates include controlled terms and synonyms for specific data elements. CEDAR is an end-to-end process that enables community-based organizations to collaborate to create metadata templates, investigators or curators to use the templates to define the metadata for individual experiments, and scientists to search the metadata to access and analyze the corresponding online datasets.", "abbreviation": "CEDAR Workbench", "access-points": [{"url": "https://resources.metadatacenter.org", "name": "REST services to query, access and contribute CEDAR resources. Described at https://resources.metadatacenter.org/api", "type": "REST"}], "support-links": [{"url": "https://metadatacenter.org/help/", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://metacenter.org/references", "name": "List of CEDAR References", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"name": "login required for the majority of data", "type": "data access"}, {"url": "http://cedar.metadatacenter.org/", "name": "Browse (login required)", "type": "data access"}], "associated-tools": [{"url": "https://cedar.metadatacenter.org", "name": "CEDAR Workbench"}]}, "legacy-ids": ["biodbcore-001345", "bsg-d001345"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Governance"], "domains": ["Resource metadata", "Experimental measurement", "Protocol", "Study design", "FAIR"], "taxonomies": ["All"], "user-defined-tags": ["Document metadata", "Metadata standardization", "Semantic"], "countries": ["United States"], "name": "FAIRsharing record for: Center for Expanded Data Annotation and Retrieval Workbench", "abbreviation": "CEDAR Workbench", "url": "https://fairsharing.org/10.25504/FAIRsharing.V527H4", "doi": "10.25504/FAIRsharing.V527H4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Center for Expanded Data Annotation and Retrieval (CEDAR) Workbench is a database of metadata templates that define the data elements needed to describe particular types of biomedical experiments. The templates include controlled terms and synonyms for specific data elements. CEDAR is an end-to-end process that enables community-based organizations to collaborate to create metadata templates, investigators or curators to use the templates to define the metadata for individual experiments, and scientists to search the metadata to access and analyze the corresponding online datasets.", "publications": [{"id": 583, "pubmed_id": 26112029, "title": "The center for expanded data annotation and retrieval.", "year": 2015, "url": "http://doi.org/10.1093/jamia/ocv048", "authors": "Musen MA,Bean CA,Cheung KH,Dumontier M,Durante KA,Gevaert O,Gonzalez-Beltran A,Khatri P,Kleinstein SH,O'Connor MJ,Pouliot Y,Rocca-Serra P,Sansone SA,Wiser JA", "journal": "J Am Med Inform Assoc", "doi": "10.1093/jamia/ocv048", "created_at": "2021-09-30T08:23:23.843Z", "updated_at": "2021-09-30T08:23:23.843Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2864", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-02T23:19:55.000Z", "updated-at": "2021-12-06T10:49:01.798Z", "metadata": {"doi": "10.25504/FAIRsharing.pS2p8c", "name": "UNC Dataverse", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "odumarchive@unc.edu"}], "homepage": "https://dataverse.unc.edu/", "identifier": 2864, "description": "UNC Dataverse is a research data repository hosted by the Odum Institute at the University of North Carolina at Chapel Hill. UNC Dataverse is an open access repository that accepts data deposits from individual researchers, research groups, institutions, journals, and other entities from all disciplinary domains. UNC Dataverse offers value-added features that support archiving, discovery, and sharing of research data that align with FAIR principles for findable, accessible, interoperable, reusable data.", "abbreviation": "UNC Dataverse", "support-links": [{"url": "odumarchive@unc.edu", "name": "UNC Dataverse Support", "type": "Support email"}], "year-creation": 2005, "data-processes": [{"url": "https://dataverse.unc.edu/dataverse/unc", "name": "Discover Data", "type": "data access"}, {"url": "https://dataverse.unc.edu/dataverse/unc/search", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000005", "name": "re3data:r3d100000005", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001365", "bsg-d001365"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Data Management", "Subject Agnostic"], "domains": ["Citation", "Publication", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Researcher data"], "countries": ["United States"], "name": "FAIRsharing record for: UNC Dataverse", "abbreviation": "UNC Dataverse", "url": "https://fairsharing.org/10.25504/FAIRsharing.pS2p8c", "doi": "10.25504/FAIRsharing.pS2p8c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UNC Dataverse is a research data repository hosted by the Odum Institute at the University of North Carolina at Chapel Hill. UNC Dataverse is an open access repository that accepts data deposits from individual researchers, research groups, institutions, journals, and other entities from all disciplinary domains. UNC Dataverse offers value-added features that support archiving, discovery, and sharing of research data that align with FAIR principles for findable, accessible, interoperable, reusable data.", "publications": [], "licence-links": [{"licence-name": "UNC Dataverse Terms of Use", "licence-id": 816, "link-id": 2060, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2061, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2873", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-10T13:11:26.000Z", "updated-at": "2021-11-24T13:15:36.171Z", "metadata": {"doi": "10.25504/FAIRsharing.83jovl", "name": "T-psi-C", "status": "ready", "contacts": [{"contact-name": "Marcin Sajek", "contact-email": "marcin.sajek@igcz.poznan.pl", "contact-orcid": "0000-0002-4115-4191"}], "homepage": "http://tpsic.igcz.poznan.pl/", "citations": [{"doi": "10.1093/nar/gkz922", "pubmed-id": 31624839, "publication-id": 2651}], "identifier": 2873, "description": "T-psi-C is a database of tRNA sequences and 3D tRNA structures. The T-psi-C database can be continuously updated by any member of the scientific community.", "abbreviation": "tpsic", "support-links": [{"url": "http://tpsic.igcz.poznan.pl/info/about/", "name": "About", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "http://tpsic.igcz.poznan.pl/trna/?is_model=1", "name": "Browse", "type": "data access"}, {"url": "http://tpsic.igcz.poznan.pl/trna/trna-deposition/", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "https://www.elastic.co/", "name": "Elasticsearch -"}, {"url": "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST", "name": "BLAST+ 2.7.1"}, {"url": "https://www.tbi.univie.ac.at/RNA/ViennaRNA/doc/html/wrappers.html", "name": "RNAlib 2.4.14"}]}, "legacy-ids": ["biodbcore-001374", "bsg-d001374"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology"], "domains": ["Molecular structure", "Nucleic acid sequence", "RNA sequence", "Structure", "Transfer RNA"], "taxonomies": ["All"], "user-defined-tags": ["Mitochondrial tRNA"], "countries": ["Poland"], "name": "FAIRsharing record for: T-psi-C", "abbreviation": "tpsic", "url": "https://fairsharing.org/10.25504/FAIRsharing.83jovl", "doi": "10.25504/FAIRsharing.83jovl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: T-psi-C is a database of tRNA sequences and 3D tRNA structures. The T-psi-C database can be continuously updated by any member of the scientific community.", "publications": [{"id": 2651, "pubmed_id": 31624839, "title": "T-psi-C: user friendly database of tRNA sequences and structures", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz922", "authors": "Sajek MP, Wo\u017aniak T, Sprinzl M, Jaruzelska J, Barciszewski J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz922", "created_at": "2021-09-30T08:27:25.571Z", "updated_at": "2021-09-30T08:27:25.571Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2884", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-17T16:51:32.000Z", "updated-at": "2021-11-24T13:16:24.359Z", "metadata": {"doi": "10.25504/FAIRsharing.Gzattg", "name": "Civic Learning, Engagement, and Action Data Sharing", "status": "ready", "contacts": [{"contact-name": "David Bleckley", "contact-email": "civicleads@umich.edu", "contact-orcid": "0000-0001-7715-4348"}], "homepage": "http://www.civicleads.org", "identifier": 2884, "description": "Researchers from a wide variety of disciplines study civic education, civic action, and the many relationships between the two. Civic Learning, Engagement, and Action Data Sharing (CivicLEADS) provides infrastructure for researchers to share and access high-quality datasets which can be used to study civic education and involvement. Funded by a grant from the Spencer Foundation and part of ICPSR's Education and Child Care Data Archives at the University of Michigan, CivicLEADS provides a centralized repository for this multi-disciplinary research area, with data being created across education, political science, developmental sciences, and other disciplines. Researchers can access quantitative and qualitative data on a broad range of topics for secondary analysis as well as sharing their own primary research data. CivicLEADS includes datasets from other ICPSR archives and seeks out emerging data collected by studies still in the field. Beyond facilitating the sharing and discovery of data, CivicLEADS seeks to create a learning community around civic education and engagement research. We strive to form relationships with and between investigators and researchers at every level\u2014from students to emeriti faculty. Data shared in this archive have been documented with thorough metadata, and tools drawing upon these metadata allow researchers to explore and compare variables both within and between studies. By providing tutorials, webinars, and in-person training, CivicLEADS connects researchers with data and facilitates the future of civic education and civic action research.", "abbreviation": "CivicLEADS", "support-links": [{"url": "https://www.icpsr.umich.edu/icpsrweb/civicleads/news.jsp", "name": "News", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/civicleads/about.html", "name": "About", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://www.icpsr.umich.edu/icpsrweb/civicleads/deposit/index?create=true", "name": "Submit Data", "type": "data curation"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/civicleads/variables.html", "name": "Variable Search", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/icpsrweb/content/civicleads/data.html", "name": "Search Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001385", "bsg-d001385"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Social Science", "Education Science", "Media Studies", "Social Psychology", "Psychology", "Social and Behavioural Science", "Political Science", "Communication Science"], "domains": ["Curated information"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Activism", "Civic Education", "Civic Engagement", "Critical Consciousness", "Education", "Media Literacy", "Political Development", "Social Media", "Sociology"], "countries": ["United States"], "name": "FAIRsharing record for: Civic Learning, Engagement, and Action Data Sharing", "abbreviation": "CivicLEADS", "url": "https://fairsharing.org/10.25504/FAIRsharing.Gzattg", "doi": "10.25504/FAIRsharing.Gzattg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Researchers from a wide variety of disciplines study civic education, civic action, and the many relationships between the two. Civic Learning, Engagement, and Action Data Sharing (CivicLEADS) provides infrastructure for researchers to share and access high-quality datasets which can be used to study civic education and involvement. Funded by a grant from the Spencer Foundation and part of ICPSR's Education and Child Care Data Archives at the University of Michigan, CivicLEADS provides a centralized repository for this multi-disciplinary research area, with data being created across education, political science, developmental sciences, and other disciplines. Researchers can access quantitative and qualitative data on a broad range of topics for secondary analysis as well as sharing their own primary research data. CivicLEADS includes datasets from other ICPSR archives and seeks out emerging data collected by studies still in the field. Beyond facilitating the sharing and discovery of data, CivicLEADS seeks to create a learning community around civic education and engagement research. We strive to form relationships with and between investigators and researchers at every level\u2014from students to emeriti faculty. Data shared in this archive have been documented with thorough metadata, and tools drawing upon these metadata allow researchers to explore and compare variables both within and between studies. By providing tutorials, webinars, and in-person training, CivicLEADS connects researchers with data and facilitates the future of civic education and civic action research.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2990", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T14:49:36.000Z", "updated-at": "2021-11-24T13:17:10.570Z", "metadata": {"doi": "10.25504/FAIRsharing.RyVjoS", "name": "National Cancer Institute's Genomic Data Commons", "status": "ready", "contacts": [{"contact-name": "GDC Help Desk", "contact-email": "support@nci-gdc.datacommons.io"}], "homepage": "https://gdc.cancer.gov/", "citations": [{"doi": "10.1056/NEJMp1607591", "pubmed-id": 27653561, "publication-id": 2971}], "identifier": 2990, "description": "The National Cancer Institute\u2019s (NCI\u2019s) Genomic Data Commons (GDC) is a data sharing The National Cancer Institute's Genomic Data Commons (GDC) was created to promote precision medicine in oncology. It supports the import and standardization of genomic and clinical data from cancer research programs. The GDC contains NCI-generated data from some of the largest and most comprehensive cancer genomic datasets, including The Cancer Genome Atlas (TCGA) and Therapeutically Applicable Research to Generate Effective Therapies (TARGET). For the first time, these datasets have been harmonized using a common set of bioinformatics pipelines, so that the data can be directly compared. As a growing knowledge system for cancer, the GDC also enables researchers to submit data, and harmonizes these data for import into the GDC.", "abbreviation": "NCI GDC", "access-points": [{"url": "https://gdc.cancer.gov/developers/gdc-application-programming-interface-api", "name": "GDC API", "type": "REST"}], "support-links": [{"url": "https://gdc.cancer.gov/news-and-announcements", "name": "News", "type": "Blog/News"}, {"url": "https://gdc.cancer.gov/contact-us", "name": "Contact Information", "type": "Contact form"}, {"url": "https://gdc.cancer.gov/about-gdc/gdc-faqs", "name": "GDC FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://gdc.cancer.gov/analyze-data/gdc-exploration-tools", "name": "Guide for Exploring Data", "type": "Help documentation"}, {"url": "https://gdc.cancer.gov/about-data/data-analysis-processes-and-tools", "name": "Guide for Data Analysis", "type": "Help documentation"}, {"url": "https://docs.gdc.cancer.gov/Data_Submission_Portal/Users_Guide/Checklist/", "name": "Data Submission User Guide", "type": "Help documentation"}, {"url": "https://docs.gdc.cancer.gov/API/Users_Guide/Getting_Started/", "name": "API User Guide", "type": "Help documentation"}, {"url": "https://gdc.cancer.gov/about-data", "name": "About the Data", "type": "Help documentation"}, {"url": "https://gdc.cancer.gov/about-gdc/gdc-overview", "name": "GDC Overview", "type": "Help documentation"}, {"url": "https://gdc.cancer.gov/about-data/data-types-and-file-formats", "name": "Accepted File Formats", "type": "Help documentation"}, {"url": "https://twitter.com/NCIGDC_Updates", "name": "@NCIGDC_Updates", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://portal.gdc.cancer.gov/", "name": "Browse via Data Portal", "type": "data access"}, {"url": "https://portal.gdc.cancer.gov/submission", "name": "Data Submission", "type": "data curation"}], "associated-tools": [{"url": "https://gdc.cancer.gov/access-data/gdc-data-transfer-tool", "name": "GDC Data Transfer Tool"}]}, "legacy-ids": ["biodbcore-001496", "bsg-d001496"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Data Integration", "Genomics", "Clinical Studies"], "domains": ["Cancer"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Cancer Institute's Genomic Data Commons", "abbreviation": "NCI GDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.RyVjoS", "doi": "10.25504/FAIRsharing.RyVjoS", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Cancer Institute\u2019s (NCI\u2019s) Genomic Data Commons (GDC) is a data sharing The National Cancer Institute's Genomic Data Commons (GDC) was created to promote precision medicine in oncology. It supports the import and standardization of genomic and clinical data from cancer research programs. The GDC contains NCI-generated data from some of the largest and most comprehensive cancer genomic datasets, including The Cancer Genome Atlas (TCGA) and Therapeutically Applicable Research to Generate Effective Therapies (TARGET). For the first time, these datasets have been harmonized using a common set of bioinformatics pipelines, so that the data can be directly compared. As a growing knowledge system for cancer, the GDC also enables researchers to submit data, and harmonizes these data for import into the GDC.", "publications": [{"id": 2971, "pubmed_id": 27653561, "title": "Toward a Shared Vision for Cancer Genomic Data.", "year": 2016, "url": "http://doi.org/10.1056/NEJMp1607591", "authors": "Grossman RL,Heath AP,Ferretti V,Varmus HE,Lowy DR,Kibbe WA,Staudt LM", "journal": "N Engl J Med", "doi": "10.1056/NEJMp1607591", "created_at": "2021-09-30T08:28:06.091Z", "updated_at": "2021-09-30T08:28:06.091Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2920", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-19T09:19:33.000Z", "updated-at": "2021-11-24T13:17:16.392Z", "metadata": {"name": "Sorghum Genome SNP Database", "status": "uncertain", "contacts": [{"contact-name": "SorGSD General Contact", "contact-email": "sorgsd@big.ac.cn"}], "homepage": "http://sorgsd.big.ac.cn/", "citations": [{"doi": "10.1186/s13068-015-0415-8", "pubmed-id": 26744602, "publication-id": 2823}], "identifier": 2920, "description": "The Sorghum Genome SNP Database (SorGSD) is a genome variation database for sorghum. Please note that this resource has not been updated since 2015, and therefore we have marked its status as Uncertain. Please contact us if you have information on its current status.", "abbreviation": "SorGSD", "support-links": [{"url": "http://sorgsd.big.ac.cn/pages/help/faqs.jsp", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://sorgsd.big.ac.cn/pages/about/resources.jsp", "name": "Resources Used", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/help/about.jsp", "name": "Overview of SorGSD", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/help/data_sources.jsp", "name": "Pipeline Documentation", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/help/data_statistics.jsp", "name": "Statistics", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/help/contact.jsp", "name": "Contact Information", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/about/SorghumGenome.jsp", "name": "About Sorghum", "type": "Help documentation"}, {"url": "http://sorgsd.big.ac.cn/pages/help/howtos.jsp", "name": "How-To Examples", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://sorgsd.big.ac.cn/pages/download/download.jsp", "name": "Download", "type": "data release"}, {"url": "http://sorgsd.big.ac.cn/pages/search/search_snp.jsp", "name": "Search", "type": "data access"}, {"url": "http://sorgsd.big.ac.cn/pages/statistics/sta_snp.jsp", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://sorgsd.big.ac.cn/pages/search/compare_snp.jsp", "name": "Comparison Tool"}]}, "legacy-ids": ["biodbcore-001423", "bsg-d001423"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Botany", "Genomics", "Agriculture", "Plant Genetics"], "domains": ["Single nucleotide polymorphism"], "taxonomies": ["Sorghum bicolor"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Sorghum Genome SNP Database", "abbreviation": "SorGSD", "url": "https://fairsharing.org/fairsharing_records/2920", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Sorghum Genome SNP Database (SorGSD) is a genome variation database for sorghum. Please note that this resource has not been updated since 2015, and therefore we have marked its status as Uncertain. Please contact us if you have information on its current status.", "publications": [{"id": 2822, "pubmed_id": 26884811, "title": "Erratum to: SorGSD: a sorghum genome SNP database.", "year": 2016, "url": "http://doi.org/10.1186/s13068-016-0450-0", "authors": "Luo H,Zhao W,Wang Y,Xia Y,Wu X,Zhang L,Tang B,Zhu J,Fang L,Du Z,Bekele WA,Tai S,Jordan DR,Godwin ID,Snowdon RJ,Mace ES,Luo J,Jing HC", "journal": "Biotechnol Biofuels", "doi": "10.1186/s13068-016-0450-0", "created_at": "2021-09-30T08:27:47.080Z", "updated_at": "2021-09-30T08:27:47.080Z"}, {"id": 2823, "pubmed_id": 26744602, "title": "SorGSD: a sorghum genome SNP database.", "year": 2016, "url": "http://doi.org/10.1186/s13068-015-0415-8", "authors": "Luo H,Zhao W,Wang Y,Xia Y,Wu X,Zhang L,Tang B,Zhu J,Fang L,Du Z,Bekele WA,Tai S,Jordan DR,Godwin ID,Snowdon RJ,Mace ES,Jing HC,Luo J", "journal": "Biotechnol Biofuels", "doi": "10.1186/s13068-015-0415-8", "created_at": "2021-09-30T08:27:47.189Z", "updated_at": "2021-09-30T08:27:47.189Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2948", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-15T07:17:37.000Z", "updated-at": "2021-11-24T13:16:10.879Z", "metadata": {"doi": "10.25504/FAIRsharing.KOiDmy", "name": "EMODnet Chemistry", "status": "ready", "contacts": [{"contact-name": "EMODnet", "contact-email": "secretariat@emodnet.eu"}], "homepage": "https://www.emodnet-chemistry.eu/", "identifier": 2948, "description": "The EMODnet Chemistry portal provides easy access to marine chemical data, standardised harmonized validated data collections and reliable data products, highly relevant to assess ecosystem status according to the Marine Strategy Framework Directive. Data on temporal and spatial distribution of marine litter, of the concentration of nutrients, organic matter, pesticides, heavy metals, radionuclides and antifoulants in the water column, in the sediment and in biota.", "abbreviation": "EMODnet Chemistry", "access-points": [{"url": "https://www.emodnet-chemistry.eu/products/api#cdi", "name": "OGC Web Feature Service", "type": "Other"}], "support-links": [{"url": "https://www.emodnet-chemistry.eu/help/contact?10", "name": "Contact us", "type": "Contact form"}, {"url": "https://www.emodnet-chemistry.eu/help", "name": "FAQ", "type": "Help documentation"}, {"url": "https://www.emodnet-chemistry.eu/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.emodnet-chemistry.eu/data", "name": "About the Data", "type": "Help documentation"}, {"url": "https://www.emodnet-chemistry.eu/products", "name": "About Data Products", "type": "Help documentation"}, {"url": "https://www.emodnet-chemistry.eu/documents", "name": "Documents", "type": "Help documentation"}, {"url": "https://www.emodnet-chemistry.eu/newsevents", "name": "News", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://emodnet-chemistry.maris.nl/search", "name": "Search", "type": "data access"}, {"url": "https://www.emodnet-chemistry.eu/submitdata", "name": "Submit", "type": "data curation"}, {"url": "https://www.emodnet-chemistry.eu/data/how", "name": "How does it work", "type": "data access"}], "associated-tools": [{"url": "https://www.emodnet-chemistry.eu/tools", "name": "Data Management Tools"}]}, "legacy-ids": ["biodbcore-001452", "bsg-d001452"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geography", "Earth Science", "Oceanography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Marine Chemistry"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Chemistry", "abbreviation": "EMODnet Chemistry", "url": "https://fairsharing.org/10.25504/FAIRsharing.KOiDmy", "doi": "10.25504/FAIRsharing.KOiDmy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EMODnet Chemistry portal provides easy access to marine chemical data, standardised harmonized validated data collections and reliable data products, highly relevant to assess ecosystem status according to the Marine Strategy Framework Directive. Data on temporal and spatial distribution of marine litter, of the concentration of nutrients, organic matter, pesticides, heavy metals, radionuclides and antifoulants in the water column, in the sediment and in biota.", "publications": [{"id": 501, "pubmed_id": null, "title": "JRC Technical report: marine litter database", "year": 2019, "url": "http://doi.org/10.2760/621710", "authors": "EU publications", "journal": "Luxembourg: Publications Office of the European Union, 2018", "doi": "10.2760/621710", "created_at": "2021-09-30T08:23:14.415Z", "updated_at": "2021-09-30T11:28:29.493Z"}, {"id": 2862, "pubmed_id": null, "title": "JRC Technical Reports: EU marine beach litter baselines", "year": 2020, "url": "http://doi.org/10.2760/16903", "authors": "del Mar Chaves Montero, Maria\u00a0;\u00a0\u00a0Brosich, Alberto\u00a0;\u00a0\u00a0Hanke, Georg\u00a0;\u00a0\u00a0Loon, Willem van\u00a0;\u00a0\u00a0Addamo, Anna Maria\u00a0;\u00a0\u00a0Walvoort, Dennis\u00a0;\u00a0\u00a0Vinci, Matteo\u00a0;\u00a0\u00a0Molina Jack, Maria Eugenia\u00a0;\u00a0\u00a0Giorgetti, Alessandra", "journal": "Publications Office of the European Union, Luxemburg", "doi": "10.2760/16903", "created_at": "2021-09-30T08:27:52.129Z", "updated_at": "2021-09-30T11:28:37.877Z"}, {"id": 2863, "pubmed_id": null, "title": "EMODnet marine litter data management at pan-European scale", "year": 2019, "url": "http://doi.org/doi.org/10.1016/j.ocecoaman.2019.104930", "authors": "Maria Eugenia Molina Jack, Maria del Mar Chaves Montero, Fran\u00e7ois Galgani, Alessandra Giorgetti, Matteo Vinci, Morgan Le Moigne, Alberto Brosich", "journal": "Ocean & Coastal Management", "doi": "doi.org/10.1016/j.ocecoaman.2019.104930", "created_at": "2021-09-30T08:27:52.244Z", "updated_at": "2021-09-30T11:28:37.976Z"}, {"id": 2864, "pubmed_id": null, "title": "Toward the Integrated Marine Debris Observing System", "year": 2019, "url": "http://doi.org/10.3389/fmars.2019.00447", "authors": "Maximenko Nikolai, Corradi Paolo, Law Kara Lavender, Van Sebille Erik, Garaba Shungudzemwoyo P., Lampitt Richard Stephen, Galgani Francois, Martinez-Vicente Victor, Goddijn-Murphy Lonneke, Veiga Joana Mira, Thompson Richard C., Maes Christophe, Moller Delwyn, L\u00f6scher Carolin Regina, Addamo Anna Maria, Lamson Megan R., Centurioni Luca R., Posth Nicole R., Lumpkin Rick, Vinci Matteo, Martins Ana Maria, Pieper Catharina Diogo, Isobe Atsuhiko, Hanke Georg, Edwards Margo, Chubarenko Irina P., Rodriguez Ernesto, Aliani Stefano, Arias Manuel, Asner Gregory P., Brosich Alberto, Carlton James T., Chao Yi, Cook Anna-Marie, Cundy Andrew B., Galloway Tamara S., Giorgetti Alessandra, Goni Gustavo Jorge, Guichoux Yann, Haram Linsey E., Hardesty Britta Denise, Holdsworth Neil, Lebreton Laurent, Leslie Heather A., Macadam-Somer Ilan, Mace Thomas, Manuel Mark, Marsh Robert, Martinez Elodie, Mayor Daniel J., Le Moigne Morgan, Molina Jack Maria Eugenia, Mowlem Matt Charles, Obbard Rachel W., Pabortsava Katsiaryna, Robberson Bill, Rotaru Amelia-Elena, Ruiz Gregory M., Spedicato Maria Teresa, Thiel Martin, Turra Alexander, Wilcox Chris", "journal": "Frontiers in Marine Science", "doi": "10.3389/fmars.2019.00447", "created_at": "2021-09-30T08:27:52.419Z", "updated_at": "2021-09-30T11:28:38.068Z"}, {"id": 2865, "pubmed_id": null, "title": "The European Marine Observation and Data Network (EMODnet): Visions and Roles of the Gateway to Marine Data in Europe", "year": 2019, "url": "http://doi.org/10.3389/fmars.2019.00313", "authors": "Bel\u00e9n Mart\u00edn M\u00edguez, Antonio Novellino, Matteo Vinci,\u00a0Simon Claus,\u00a0Jan-Bart Calewaert,\u00a0Henry Vallius,\u00a0Thierry Schmitt,\u00a0Alessandro Pititto,\u00a0Alessandra Giorgetti,\u00a0Natalie Askew,\u00a0Sissy Iona,\u00a0Dick Schaap,\u00a0Nadia Pinardi,\u00a0Quillon Harpham,\u00a0Belinda J. Kater,\u00a0Jacques Populus,\u00a0Jun She,\u00a0Atanas Vasilev Palazov,\u00a0Oonagh McMeel,\u00a0Paula Oset,\u00a0Dan Lear,\u00a0Giuseppe M. R. Manzella,\u00a0Patrick Gorringe,\u00a0Simona Simoncelli,\u00a0Kate Larkin,\u00a0Neil Holdsworth,\u00a0Christos Dimitrios Arvanitidis,\u00a0Maria Eugenia Molina Jack,\u00a0Maria del Mar Chaves Montero,\u00a0 Peter M. J. Herman, Francisco Hernandez", "journal": "Frontiers in Marine Science", "doi": "10.3389/fmars.2019.00313", "created_at": "2021-09-30T08:27:52.536Z", "updated_at": "2021-09-30T11:28:38.234Z"}, {"id": 2869, "pubmed_id": null, "title": "Maritime spatial planning supported by infrastructure for spatial information in Europe (INSPIRE)", "year": 2018, "url": "http://doi.org/10.1016/j.ocecoaman.2017.11.007", "authors": "Andrej Abramic, Emanuele Bigagli, Vittorio Barale, Michael Assouline, Alberto Lorenzo-Alonsoce, Conor Norton", "journal": "Ocean & Coastal Management", "doi": "10.1016/j.ocecoaman.2017.11.007", "created_at": "2021-09-30T08:27:53.175Z", "updated_at": "2021-09-30T11:28:38.334Z"}, {"id": 2870, "pubmed_id": null, "title": "EMODnet CHEMISTRY \u2013 DATA AGGREGATION AND PRODUCT GENERATIONS IN THE BLACK SEA", "year": 2018, "url": "https://www.emodnet-chemistry.eu/repository/Paper_Jepe_Bugaetal_2018.pdf", "authors": "L. Buga, L. Boicenco, A. Giorgetti, G. Sarbu, A. Spinu", "journal": "Journal of Environmental Protection and Ecology", "doi": null, "created_at": "2021-09-30T08:27:53.277Z", "updated_at": "2021-09-30T11:28:38.434Z"}, {"id": 2871, "pubmed_id": null, "title": "The role of EMODnet Chemistry in the European challenge for Good Environmental Status", "year": 2016, "url": "http://doi.org/10.5194/nhess-17-197-2017", "authors": "Matteo Vinci,\u00a0Alessandra Giorgetti,\u00a0and Marina Lipizer", "journal": "Nat. Hazards Earth Syst. Sci., 17, 197\u2013204, 2017", "doi": "10.5194/nhess-17-197-2017", "created_at": "2021-09-30T08:27:53.420Z", "updated_at": "2021-09-30T11:28:38.526Z"}, {"id": 2900, "pubmed_id": null, "title": "EMODnet Chemistry Spatial Data Infrastructure for marine observations and related information", "year": 2018, "url": "http://doi.org/doi.org/10.1016/j.ocecoaman.2018.03.016", "authors": "A.GiorgettiaE.PartescanoaA.BarthbL.BugacJ.GattidG.GiorgieA.IonafM.LipizeraN.HoldsworthgM.M.LarsenhD.SchaapiM.VinciaM.Wenzerj", "journal": "Ocean & Coastal Management", "doi": "doi.org/10.1016/j.ocecoaman.2018.03.016", "created_at": "2021-09-30T08:27:57.138Z", "updated_at": "2021-09-30T11:28:39.044Z"}], "licence-links": [{"licence-name": "SeaDataNet Data Policy", "licence-id": 742, "link-id": 1386, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2951", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-15T13:30:38.000Z", "updated-at": "2021-11-24T13:16:11.145Z", "metadata": {"doi": "10.25504/FAIRsharing.Ry4stC", "name": "EMODnet Geology", "status": "ready", "contacts": [{"contact-name": "Henry Vallius, Geological Survey of Finland", "contact-email": "henry.vallius@gtk.fi"}], "homepage": "https://www.emodnet-geology.eu/", "identifier": 2951, "description": "The EMODnet geology portal provides free access to (i) geological data and metadata held by various geoscience organisations in Europe, delivered in accordance with international standards, and (ii) geological data products compiled at scales of 1:1,000,000, 1:250,000 and 1:100,000 or finer where the underlying data permit.", "abbreviation": "EMODnet Geology", "access-points": [{"url": "https://www.emodnet-geology.eu/services/", "name": "OGC Web Feature Service", "type": "Other"}], "support-links": [{"url": "https://www.emodnet-geology.eu/support-feedback/", "name": "Support & feedback", "type": "Contact form"}, {"url": "https://www.emodnet-geology.eu/about-emodnet-geology/", "name": "About", "type": "Help documentation"}, {"url": "https://www.emodnet-geology.eu/data-products/", "name": "Data Products", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://www.emodnet-geology.eu/contribute/", "name": "Submit", "type": "data curation"}, {"url": "https://www.emodnet-geology.eu/map-viewer/", "name": "Map View", "type": "data access"}]}, "legacy-ids": ["biodbcore-001455", "bsg-d001455"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Geography", "Earth Science", "Oceanography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Geological mapping"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Geology", "abbreviation": "EMODnet Geology", "url": "https://fairsharing.org/10.25504/FAIRsharing.Ry4stC", "doi": "10.25504/FAIRsharing.Ry4stC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EMODnet geology portal provides free access to (i) geological data and metadata held by various geoscience organisations in Europe, delivered in accordance with international standards, and (ii) geological data products compiled at scales of 1:1,000,000, 1:250,000 and 1:100,000 or finer where the underlying data permit.", "publications": [], "licence-links": [{"licence-name": "EMODnet Geology Terms of Use", "licence-id": 275, "link-id": 1051, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2955", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-02T13:43:31.000Z", "updated-at": "2022-02-07T09:19:41.140Z", "metadata": {"doi": "10.25504/FAIRsharing.5O9YTT", "name": "DataverseNO", "status": "ready", "contacts": [{"contact-name": "UiT Research Data Support", "contact-email": "researchdata@hjelp.uit.no"}], "homepage": "https://dataverse.no/", "citations": [], "identifier": 2955, "description": "DataverseNO (https://dataverse.no/) is a national, generic repository for open research data, owned and operated by UiT The Arctic University of Norway. DataverseNO is aligned with the FAIR Guiding Principles for scientific data management and stewardship. The technical infrastructure of the repository is based on the open source application Dataverse, which is developed by an international developer and user community led by Harvard University. DataverseNO is CoreTrustSeal certified.", "abbreviation": "DataverseNO", "access-points": [{"url": "https://site.uit.no/dataverseno/about/", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://site.uit.no/dataverseno/news/", "name": "Blog", "type": "Blog/News"}, {"url": "researchdata@hjelp.uit.no", "name": "Support Email", "type": "Support email"}, {"url": "https://site.uit.no/dataverseno/deposit/", "name": "Deposit Guidelines", "type": "Help documentation"}, {"url": "https://site.uit.no/dataverseno/", "name": "DataverseNO Info Site", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://site.uit.no/dataverseno/about/policy-framework/access-and-use-policy/", "name": "Access and Use Policy", "type": "data access"}, {"url": "https://site.uit.no/dataverseno/about/#data-curation-and-preservation", "name": "Data curation and preservation", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012538", "name": "re3data:r3d100012538", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001459", "bsg-d001459"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Medicine", "Earth Science", "Agriculture", "Computer Science", "Subject Agnostic"], "domains": ["Curated information", "Digital curation", "Data storage"], "taxonomies": ["All"], "user-defined-tags": ["Open Science", "Researcher data"], "countries": ["Norway"], "name": "FAIRsharing record for: DataverseNO", "abbreviation": "DataverseNO", "url": "https://fairsharing.org/10.25504/FAIRsharing.5O9YTT", "doi": "10.25504/FAIRsharing.5O9YTT", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataverseNO (https://dataverse.no/) is a national, generic repository for open research data, owned and operated by UiT The Arctic University of Norway. DataverseNO is aligned with the FAIR Guiding Principles for scientific data management and stewardship. The technical infrastructure of the repository is based on the open source application Dataverse, which is developed by an international developer and user community led by Harvard University. DataverseNO is CoreTrustSeal certified.", "publications": [{"id": 2989, "pubmed_id": null, "title": "DataverseNO: A National, Generic Repository and its Contribution to the Increased FAIRness of Data from the Long Tail of Research", "year": 2020, "url": "https://doi.org/10.7557/15.5514", "authors": "Conzett, Philipp", "journal": "Ravnetrykk, 39", "doi": null, "created_at": "2021-09-30T08:28:08.507Z", "updated_at": "2021-09-30T08:28:08.507Z"}], "licence-links": [{"licence-name": "DataverseNO Access and Use Policy", "licence-id": 227, "link-id": 558, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 559, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3024", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-05T17:03:30.000Z", "updated-at": "2021-12-06T10:47:57.490Z", "metadata": {"doi": "10.25504/FAIRsharing.4ufVpm", "name": "NASA Socioeconomic Data and Applications Center", "status": "ready", "contacts": [{"contact-name": "Robert R. Downs", "contact-email": "rdowns@ciesin.columbia.edu", "contact-orcid": "0000-0002-8595-5134"}], "homepage": "https://sedac.ciesin.columbia.edu/", "identifier": 3024, "description": "The Socioeconomic Data and Applications Center (SEDAC) is a regular member of the World Data System and focuses on human interactions in the environment. Its mission is to develop and operate applications that support the integration of socioeconomic and Earth science data and to serve as an \"Information Gateway\" between the Earth and social sciences. The SEDAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "SEDAC", "access-points": [{"url": "https://sedac.ciesin.columbia.edu/maps/services", "name": "Web Map Services (WMS)", "type": "REST"}], "support-links": [{"url": "https://sedac.ciesin.columbia.edu/blogs", "name": "Blog", "type": "Blog/News"}, {"url": "https://sedac.ciesin.columbia.edu/news/browse", "name": "News", "type": "Blog/News"}, {"url": "https://sedac.ciesin.columbia.edu/help", "name": "User Services", "type": "Help documentation"}, {"url": "https://sedac.ciesin.columbia.edu/guides", "name": "Guides", "type": "Help documentation"}, {"url": "https://sedac.ciesin.columbia.edu/about", "name": "About Us", "type": "Help documentation"}, {"url": "https://twitter.com/NASAsedac", "name": "@NASAsedac", "type": "Twitter"}], "year-creation": 1992, "data-processes": [{"url": "https://sedac.ciesin.columbia.edu/data-submission", "name": "Data Submission", "type": "data curation"}, {"url": "https://sedac.ciesin.columbia.edu/data/sets/browse", "name": "Browse & Search Data", "type": "data access"}, {"url": "https://sedac.ciesin.columbia.edu/data/collections/browse", "name": "Browse Collections", "type": "data access"}, {"url": "https://sedac.ciesin.columbia.edu/maps/gallery/search", "name": "Browse Maps", "type": "data access"}], "associated-tools": [{"url": "https://sedac.ciesin.columbia.edu/maps/tools", "name": "Mapping Tools Current"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010159", "name": "re3data:r3d100010159", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001532", "bsg-d001532"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Social Science", "Earth Science"], "domains": ["Data storage"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Natural Resources, Earth and Environment"], "countries": ["United States"], "name": "FAIRsharing record for: NASA Socioeconomic Data and Applications Center", "abbreviation": "SEDAC", "url": "https://fairsharing.org/10.25504/FAIRsharing.4ufVpm", "doi": "10.25504/FAIRsharing.4ufVpm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Socioeconomic Data and Applications Center (SEDAC) is a regular member of the World Data System and focuses on human interactions in the environment. Its mission is to develop and operate applications that support the integration of socioeconomic and Earth science data and to serve as an \"Information Gateway\" between the Earth and social sciences. The SEDAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2045, "relation": "undefined"}, {"licence-name": "SEDAC Privacy Policy, Copyrights, and Permissions", "licence-id": 743, "link-id": 2046, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3081", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-22T08:04:19.000Z", "updated-at": "2021-12-06T10:47:33.458Z", "metadata": {"name": "Open Government Data Portal of Tamil Nadu", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "tnogd@elcot.in"}], "homepage": "https://tn.data.gov.in/", "identifier": 3081, "description": "Open Government Data Portal of Tamil Nadu is a platform for supporting Open Data initiative of Government of Tamil Nadu. The portal is intended to be used by Departments/Organizations of Government of Tamil Nadu to publish datasets, documents, services, tools and applications collected by them for public use. It intends to increase transparency in the functioning of the state Government and also open avenues for many more innovative uses of Government Data to give different perspective.", "support-links": [{"url": "https://event.data.gov.in/", "name": "Event", "type": "Blog/News"}, {"url": "https://tn.data.gov.in/whats-new", "name": "Announcements", "type": "Blog/News"}, {"url": "https://tn.data.gov.in/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://data.gov.in/help", "type": "Help documentation"}, {"url": "https://tn.data.gov.in/rss.xml", "type": "Blog/News"}, {"url": "https://twitter.com/tnogd", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://tn.data.gov.in/catalogsv2?filters%5Bogpl_module_domain_access%5D=61&format=json&offset=0&limit=9&sort%5Bcreated%5D=desc", "name": "Browse, Search & Filter", "type": "data access"}, {"url": "https://tn.data.gov.in/sites/default/files/general-files/Procedure.pdf", "name": "Process and Procedure of Publishing Dataset", "type": "data curation"}, {"url": "https://tn.data.gov.in/suggested-datasets-list", "name": "Suggested datasets", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012682", "name": "re3data:r3d100012682", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001589", "bsg-d001589"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Public Finance", "Environmental Science", "Forest Management", "Culture", "Industrial Engineering", "Education Science", "Health Science", "Humanities and Social Science", "Art", "Agriculture", "Water Management", "Communication Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Sanitation"], "countries": ["India"], "name": "FAIRsharing record for: Open Government Data Portal of Tamil Nadu", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3081", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open Government Data Portal of Tamil Nadu is a platform for supporting Open Data initiative of Government of Tamil Nadu. The portal is intended to be used by Departments/Organizations of Government of Tamil Nadu to publish datasets, documents, services, tools and applications collected by them for public use. It intends to increase transparency in the functioning of the state Government and also open avenues for many more innovative uses of Government Data to give different perspective.", "publications": [], "licence-links": [{"licence-name": "Open Government Data Portal of Tamil Nadu Policies", "licence-id": 624, "link-id": 1538, "relation": "undefined"}, {"licence-name": "Open Government Data Portal of Tamil Nadu Terms of Use", "licence-id": 625, "link-id": 1541, "relation": "undefined"}, {"licence-name": "India Government Open Data License", "licence-id": 434, "link-id": 1543, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3091", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-28T07:12:43.000Z", "updated-at": "2021-12-06T10:47:34.245Z", "metadata": {"name": "CLIVAR and Carbon Hydrographic Data Office", "status": "ready", "contacts": [{"contact-name": "Karen Stocks", "contact-email": "kstocks@ucsd.edu", "contact-orcid": "0000-0002-1282-300X"}], "homepage": "https://cchdo.ucsd.edu/", "identifier": 3091, "description": "The CCHDO's primary mission is to deliver global CTD and hydrographic data to users. These data are a product of decades of observations related to the physical characteristics of ocean waters carried out during WOCE, CLIVAR and numerous other oceanographic research programs. Whenever possible, data are provided in three easy-to-use formats: WHP-Exchange (which we recommend for data submissions to the CCHDO), WOCE, and netCDF.", "abbreviation": "CCHDO", "support-links": [{"url": "cchdo@ucsd.edu", "name": "General contact", "type": "Support email"}, {"url": "https://github.com/cchdo/cchdo.ucsd.edu/issues", "name": "Features Request & Bugs", "type": "Github"}], "data-processes": [{"url": "https://cchdo.ucsd.edu/search/map", "name": "Map search", "type": "data access"}, {"url": "https://cchdo.ucsd.edu/search/advanced", "name": "Advanced Search", "type": "data access"}, {"url": "https://cchdo.ucsd.edu/submit", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010831", "name": "re3data:r3d100010831", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007093", "name": "SciCrunch:RRID:SCR_007093", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001599", "bsg-d001599"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Hydrography", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Hydrography", "Temperature"], "countries": ["United States"], "name": "FAIRsharing record for: CLIVAR and Carbon Hydrographic Data Office", "abbreviation": "CCHDO", "url": "https://fairsharing.org/fairsharing_records/3091", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CCHDO's primary mission is to deliver global CTD and hydrographic data to users. These data are a product of decades of observations related to the physical characteristics of ocean waters carried out during WOCE, CLIVAR and numerous other oceanographic research programs. Whenever possible, data are provided in three easy-to-use formats: WHP-Exchange (which we recommend for data submissions to the CCHDO), WOCE, and netCDF.", "publications": [], "licence-links": [{"licence-name": "CCHDO Policies", "licence-id": 108, "link-id": 27, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3117", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-01T15:21:55.000Z", "updated-at": "2021-12-06T10:49:17.791Z", "metadata": {"doi": "10.25504/FAIRsharing.tYYt1o", "name": "Astromaterials Data System", "status": "ready", "contacts": [{"contact-name": "Kerstin Lehnert", "contact-email": "lehnert@ldeo.columbia.edu", "contact-orcid": "0000-0001-7036-1977"}], "homepage": "https://www.astromat.org", "identifier": 3117, "description": "The Astromaterials Data System is a NASA funded data infrastructure that supports the preservation, discovery, access and analysis of laboratory analytical data generated by the study of astromaterials samples. The Astromaterials Data System operates the Astromaterials Data Repository (AstroRepo), which archives, publishes and makes accessible data generated by the study of lunar samples (samples collected during the Apollo missions), meteorites, interstellar dust, solar wind, presolar grains, and other extraterrestrial materials. AstroRepo follows international best practices for trusted data repositories. The Astromaterials Data System is operated at the Lamont-Doherty Earth Observatory of Columbia University as part of a suite of data systems for Earth and planetary sample data (chemical, mineralogical, and petrological observations), including EarthChem, the System for Earth Sample Registration, and the Library of Experimental Phase Relations.", "abbreviation": "AstroMat", "support-links": [{"url": "https://www.astromat.org/news/", "name": "News", "type": "Blog/News"}, {"url": "info@astromat.org", "name": "General Information", "type": "Support email"}, {"url": "http://www.astromat.org/submit-data/submission-guidelines/", "name": "Submission guidelines", "type": "Help documentation"}, {"url": "https://twitter.com/AstromatData", "name": "@AstromatData", "type": "Twitter"}], "year-creation": 2019, "data-processes": [{"url": "https://repo.astromat.org/astro_search.php", "name": "AstroRepo Search", "type": "data access"}, {"url": "http://www.astromat.org/submit-data/submission-guidelines/", "name": "AstroRepo Curation procedure & policies", "type": "data curation"}, {"url": "http://www.astromat.org/submit-data/submission-guidelines/", "name": "AstroRepo Curation data release policy", "type": "data release"}, {"url": "http://www.astromat.org/submit-data/templates/", "name": "AstroRepo Submission Templates", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013429", "name": "re3data:r3d100013429", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001627", "bsg-d001627"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Astrophysics and Astronomy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["astromaterials", "cosmochemistry", "Lunar", "Meteorites", "planetary science", "space science"], "countries": ["United States"], "name": "FAIRsharing record for: Astromaterials Data System", "abbreviation": "AstroMat", "url": "https://fairsharing.org/10.25504/FAIRsharing.tYYt1o", "doi": "10.25504/FAIRsharing.tYYt1o", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Astromaterials Data System is a NASA funded data infrastructure that supports the preservation, discovery, access and analysis of laboratory analytical data generated by the study of astromaterials samples. The Astromaterials Data System operates the Astromaterials Data Repository (AstroRepo), which archives, publishes and makes accessible data generated by the study of lunar samples (samples collected during the Apollo missions), meteorites, interstellar dust, solar wind, presolar grains, and other extraterrestrial materials. AstroRepo follows international best practices for trusted data repositories. The Astromaterials Data System is operated at the Lamont-Doherty Earth Observatory of Columbia University as part of a suite of data systems for Earth and planetary sample data (chemical, mineralogical, and petrological observations), including EarthChem, the System for Earth Sample Registration, and the Library of Experimental Phase Relations.", "publications": [], "licence-links": [{"licence-name": "AstroRepo Licenses", "licence-id": 48, "link-id": 1946, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3262", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-26T17:49:52.000Z", "updated-at": "2021-12-06T10:49:03.113Z", "metadata": {"doi": "10.25504/FAIRsharing.Q0Ytmr", "name": "University of Arizona Research Data Repository", "status": "ready", "contacts": [{"contact-email": "data-management@arizona.edu"}], "homepage": "https://arizona.figshare.com", "identifier": 3262, "description": "ReDATA is the University of Arizona's data repository. All datasets are publicly available however new submissions are open to university affiliates only.", "abbreviation": "ReDATA", "support-links": [{"url": "https://www.instagram.com/UAZ_ReDATA/", "name": "Instagram", "type": "Blog/News"}, {"url": "https://data.library.arizona.edu/data-management/services/research-data-repository-redata#faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://data.library.arizona.edu/redata", "name": "ReDATA Information Page", "type": "Help documentation"}, {"url": "https://twitter.com/UAZ_ReDATA", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://arizona.figshare.com/search", "name": "Search", "type": "data access"}, {"url": "https://arizona.figshare.com/category", "name": "Browse by category", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013343", "name": "re3data:r3d100013343", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001777", "bsg-d001777"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Engineering Science", "Culture", "Social Science", "Health Science", "Astrophysics and Astronomy", "Earth Science", "Life Science", "Computer Science", "Subject Agnostic", "Physics"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["data sharing", "institutional repository", "Open Science"], "countries": ["United States"], "name": "FAIRsharing record for: University of Arizona Research Data Repository", "abbreviation": "ReDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.Q0Ytmr", "doi": "10.25504/FAIRsharing.Q0Ytmr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ReDATA is the University of Arizona's data repository. All datasets are publicly available however new submissions are open to university affiliates only.", "publications": [], "licence-links": [{"licence-name": "University of Arizona Terms and Conditions", "licence-id": 823, "link-id": 658, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3191", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-14T13:40:39.000Z", "updated-at": "2022-02-08T10:42:34.555Z", "metadata": {"doi": "10.25504/FAIRsharing.ab1bd6", "name": "FDA's Adverse Event Reporting System", "status": "ready", "contacts": [{"contact-email": "DrugInfo@FDA.HHS.GOV"}], "homepage": "https://www.fda.gov/drugs/surveillance/questions-and-answers-fdas-adverse-event-reporting-system-faers", "identifier": 3191, "description": "The FDA Adverse Event Reporting System (FAERS) is a database that contains information on adverse event and medication error reports submitted to FDA.", "abbreviation": "FAERS", "support-links": [{"url": "https://fis.fda.gov/extensions/fpdwidgets/2e01da82-13fe-40e0-8c38-4da505737e36.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.accessdata.fda.gov/scripts/medwatch/index.cfm?action=reporting.home", "name": "Report a problem", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://fis.fda.gov/extensions/FPD-QDE-FAERS/FPD-QDE-FAERS.html", "name": "Download", "type": "data access"}, {"url": "https://www.fda.gov/drugs/questions-and-answers-fdas-adverse-event-reporting-system-faers/fda-adverse-event-reporting-system-faers-latest-quarterly-data-files#FOIA", "name": "Request individual case reports", "type": "data access"}, {"url": "https://www.fda.gov/drugs/questions-and-answers-fdas-adverse-event-reporting-system-faers/fda-adverse-event-reporting-system-faers-public-dashboard", "name": "Public Dashboard", "type": "data access"}, {"url": "https://www.fda.gov/drugs/questions-and-answers-fdas-adverse-event-reporting-system-faers/fda-adverse-event-reporting-system-faers-electronic-submissions", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001702", "bsg-d001702"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Pharmacology", "Biomedical Science"], "domains": ["Drug report"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Survey"], "countries": ["United States"], "name": "FAIRsharing record for: FDA's Adverse Event Reporting System", "abbreviation": "FAERS", "url": "https://fairsharing.org/10.25504/FAIRsharing.ab1bd6", "doi": "10.25504/FAIRsharing.ab1bd6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The FDA Adverse Event Reporting System (FAERS) is a database that contains information on adverse event and medication error reports submitted to FDA.", "publications": [], "licence-links": [{"licence-name": "FAERS disclaimer", "licence-id": 310, "link-id": 2087, "relation": "undefined"}, {"licence-name": "FDA Website Policies", "licence-id": 313, "link-id": 2088, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3208", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-21T17:08:37.000Z", "updated-at": "2021-12-06T10:47:39.496Z", "metadata": {"name": "BioSimulations", "status": "in_development", "contacts": [{"contact-name": "Jonathan Karr", "contact-email": "karr@mssm.edu", "contact-orcid": "0000-0002-2605-5080"}], "homepage": "https://biosimulations.org", "identifier": 3208, "description": "BioSimulations is a web application for sharing and re-using biomodels, simulations, and visualizations of simulations results. BioSimulations supports a wide range of modeling frameworks (e.g., kinetic, constraint-based, and logical modeling), model formats (e.g., BNGL, CellML, SBML), and simulation tools (e.g., COPASI, libRoadRunner/tellurium, NFSim, VCell). BioSimulations aims to help researchers discover published models that might be useful for their research and quickly try them via a simple web-based interface.", "abbreviation": "BioSimulations", "access-points": [{"url": "https://api.biosimulations.org", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://github.com/biosimulations/Biosimulations/issues/new/choose", "name": "Issue tracker", "type": "Github"}, {"url": "info@biosimulations.org", "name": "Email", "type": "Support email"}, {"url": "https://biosimulations.org/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://biosimulations.org/help", "name": "Tutorial and help", "type": "Help documentation"}, {"url": "https://api.biosimulations.org", "name": "API documentation", "type": "Help documentation"}], "year-creation": 2019, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013361", "name": "re3data:r3d100013361", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_018733", "name": "SciCrunch:RRID:SCR_018733", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001721", "bsg-d001721"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Biology", "Systems Biology"], "domains": ["Mathematical model", "Kinetic model", "Biological network analysis"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Genome Scale Metabolic Model", "Multi-scale model"], "countries": ["United States"], "name": "FAIRsharing record for: BioSimulations", "abbreviation": "BioSimulations", "url": "https://fairsharing.org/fairsharing_records/3208", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioSimulations is a web application for sharing and re-using biomodels, simulations, and visualizations of simulations results. BioSimulations supports a wide range of modeling frameworks (e.g., kinetic, constraint-based, and logical modeling), model formats (e.g., BNGL, CellML, SBML), and simulation tools (e.g., COPASI, libRoadRunner/tellurium, NFSim, VCell). BioSimulations aims to help researchers discover published models that might be useful for their research and quickly try them via a simple web-based interface.", "publications": [], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 2238, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3269", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-09T15:05:25.000Z", "updated-at": "2022-02-08T10:35:27.260Z", "metadata": {"doi": "10.25504/FAIRsharing.db020e", "name": "Marine Metadata Interoperability Ontology Registry and Repository", "status": "ready", "contacts": [{"contact-name": "John Graybeal", "contact-email": "jbgraybeal@sonic.net"}], "homepage": "https://mmisw.org/", "citations": [], "identifier": 3269, "description": "The MMI Ontology Registry and Repository (ORR) is a web application through which you can create, update, access, and map ontologies and their terms.", "abbreviation": "MMI ORR", "access-points": [{"url": "https://mmisw.org/ontapi/", "name": "ORR API Swagger Documentation", "type": "REST"}, {"url": "https://mmisw.org/ont/sparql", "name": "SPARQL Endpoint", "type": "Other"}], "support-links": [{"url": "https://mmisw.org/orrdoc/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://mmisw.org/orrdoc/", "name": "MMI ORR User Manual", "type": "Help documentation"}, {"url": "https://github.com/mmisw", "name": "GitHub Project", "type": "Github"}], "data-processes": [{"url": "https://mmisw.org/ont#/", "name": "Search and Browse MMI ORR", "type": "data access"}, {"url": "https://mmisw.org/ont#/st/", "name": "Term Search", "type": "data access"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001784", "bsg-d001784"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology", "Ontology and Terminology", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Marine Metadata Interoperability Ontology Registry and Repository", "abbreviation": "MMI ORR", "url": "https://fairsharing.org/10.25504/FAIRsharing.db020e", "doi": "10.25504/FAIRsharing.db020e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MMI Ontology Registry and Repository (ORR) is a web application through which you can create, update, access, and map ontologies and their terms.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3257", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-12T13:37:02.000Z", "updated-at": "2022-02-08T10:35:39.473Z", "metadata": {"doi": "10.25504/FAIRsharing.a1c454", "name": "Earth Science World Image Bank", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "photo@agiweb.org"}], "homepage": "http://www.earthscienceworld.org/images", "identifier": 3257, "description": "The Earth Science World Image Bank is designed to provide quality geoscience images to the public, educators, and the geoscience community. The images in this database are only available for non-commercial use.", "abbreviation": null, "support-links": [{"url": "http://www.earthscienceworld.org/images/help.html", "name": "FAQ and Feedback", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.earthscienceworld.org/images/search/example.html", "name": "How to Search", "type": "Help documentation"}], "data-processes": [{"url": "http://www.earthscienceworld.org/images/search/browse.html", "name": "Browse", "type": "data access"}, {"url": "http://www.earthscienceworld.org/images/search/index.html", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001771", "bsg-d001771"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Earth Science"], "domains": ["Image"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Earth Science World Image Bank", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.a1c454", "doi": "10.25504/FAIRsharing.a1c454", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Earth Science World Image Bank is designed to provide quality geoscience images to the public, educators, and the geoscience community. The images in this database are only available for non-commercial use.", "publications": [], "licence-links": [{"licence-name": "Earth Science World Image Bank Image Use", "licence-id": 257, "link-id": 712, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3328", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-10T09:49:31.000Z", "updated-at": "2022-02-08T10:37:23.534Z", "metadata": {"doi": "10.25504/FAIRsharing.2be14a", "name": "The Archive for Marine Species and Habitats Data", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "dassh.enquiries@mba.ac.uk"}], "homepage": "https://www.dassh.ac.uk", "identifier": 3328, "description": "The Archive for Marine Species and Habitats Data (DASSH) is the UK Data Archive Centre for marine biodiversity data for both species and habitats. It provides tools and services for the long-term curation, management and publication of marine species and habitats data, within the UK and internationally. DASSH specializes in marine biodiversity data and/or information, including species or habitat survey data, species lists, habitat or biotope lists, species or habitat/biotope distribution maps, figures, images and video clips.", "abbreviation": "DASSH", "support-links": [{"url": "https://www.dassh.ac.uk/data/frequently-asked-questions", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.dassh.ac.uk/data/data-management", "name": "Data Management Information", "type": "Help documentation"}, {"url": "https://www.dassh.ac.uk/quality-assurance", "name": "DASSH Quality Assurance", "type": "Help documentation"}, {"url": "https://www.dassh.ac.uk/data/data-access", "name": "How to Access Data", "type": "Help documentation"}, {"url": "https://twitter.com/DASSH", "name": "@DASSH", "type": "Twitter"}], "data-processes": [{"url": "https://www.dassh.ac.uk/data/submit-data", "name": "Submit Data", "type": "data curation"}, {"url": "https://www.dassh.ac.uk/data/search-data", "name": "Search", "type": "data access"}, {"url": "https://www.dassh.ac.uk/data/request-data", "name": "Data Request", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013351", "name": "re3data:r3d100013351", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001847", "bsg-d001847"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Marine Biology", "Biodiversity", "Ecosystem Science"], "domains": ["Marine environment", "Ecosystem"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: The Archive for Marine Species and Habitats Data", "abbreviation": "DASSH", "url": "https://fairsharing.org/10.25504/FAIRsharing.2be14a", "doi": "10.25504/FAIRsharing.2be14a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Archive for Marine Species and Habitats Data (DASSH) is the UK Data Archive Centre for marine biodiversity data for both species and habitats. It provides tools and services for the long-term curation, management and publication of marine species and habitats data, within the UK and internationally. DASSH specializes in marine biodiversity data and/or information, including species or habitat survey data, species lists, habitat or biotope lists, species or habitat/biotope distribution maps, figures, images and video clips.", "publications": [], "licence-links": [{"licence-name": "DASSH Data Policy", "licence-id": 212, "link-id": 1985, "relation": "undefined"}, {"licence-name": "DASSH Terms and Conditions", "licence-id": 213, "link-id": 1986, "relation": "undefined"}, {"licence-name": "Open Government Licence (OGL)", "licence-id": 628, "link-id": 1987, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1988, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1991, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 1998, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3299", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-16T10:34:50.000Z", "updated-at": "2021-12-06T10:49:19.548Z", "metadata": {"doi": "10.25504/FAIRsharing.VBxAep", "name": "arthistoricum.net@heiDATA", "status": "ready", "contacts": [{"contact-name": "Alexandra B\u00fcttner", "contact-email": "buettner_alexandra@ub.uni-heidelberg.de"}], "homepage": "https://heidata.uni-heidelberg.de/dataverse/arthistoricum", "identifier": 3299, "description": "arthistoricum.net@heiDATA is the research data repository of arthistoricum.net (Specialized Information Service Art - Photography - Design). It provides art historians with the opportunity to permanently publish and archive research data in the field of art history in connection with an open access online publication (e.g. article, ejournal, ebook) hosted by Heidelberg University Library. All research data e.g. images, videos, audio files, tables, graphics etc. receive a DOI (Digital Object Identifier). The data publications can be cited, viewed and permanently linked to as distinct academic output.", "abbreviation": "arthistoricum.net@heiDATA", "access-points": [{"url": "https://heidata.uni-heidelberg.de/oai", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://www.arthistoricum.net/en/publishing/research-data/", "name": "arthistoricum.net / Research data", "type": "Help documentation"}], "year-creation": 2021, "data-processes": [{"url": "https://heidata.uni-heidelberg.de/dataverse/arthistoricum/search", "name": "Advanced Search", "type": "data access"}, {"url": "https://data.uni-heidelberg.de/submission.html", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013503", "name": "re3data:r3d100013503", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001814", "bsg-d001814"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Art History", "Data Governance", "Art", "Fine Arts", "Database Management"], "domains": ["Experimental measurement", "Protocol", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": ["European art history", "Industrial design", "Photography"], "countries": ["Germany"], "name": "FAIRsharing record for: arthistoricum.net@heiDATA", "abbreviation": "arthistoricum.net@heiDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.VBxAep", "doi": "10.25504/FAIRsharing.VBxAep", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: arthistoricum.net@heiDATA is the research data repository of arthistoricum.net (Specialized Information Service Art - Photography - Design). It provides art historians with the opportunity to permanently publish and archive research data in the field of art history in connection with an open access online publication (e.g. article, ejournal, ebook) hosted by Heidelberg University Library. All research data e.g. images, videos, audio files, tables, graphics etc. receive a DOI (Digital Object Identifier). The data publications can be cited, viewed and permanently linked to as distinct academic output.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3318", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-15T10:19:50.000Z", "updated-at": "2022-02-08T10:52:34.714Z", "metadata": {"doi": "10.25504/FAIRsharing.df2105", "name": "BioImage Informatics Index", "status": "ready", "contacts": [{"contact-name": "Perrine Paul-Gilloteaux", "contact-email": "perrine.paul-gilloteaux@univ-nantes.fr", "contact-orcid": "0000-0002-4822-165X"}], "homepage": "https://biii.eu/", "identifier": 3318, "description": "BioImage Informatics Index (BIII) is a bioimaging resource that describes software tools, training materials and imaging datasets with the aim of helping researchers find, identify and propagate image analysis tools or workflows. BIII aims to help biologists find any tool or workflow available for a particular image analysis problem; software and algorithm developers find missing tools (or components); and bioimaging analysts identify and edit workflows. It also helps raise awareness of bioimaging analysis solutions, even when they are not associated with a publication.", "abbreviation": "BIII", "access-points": [{"url": "https://biii.eu/about", "name": "REST API documentation", "type": "REST"}], "support-links": [{"url": "https://forum.image.sc/", "name": "Image.sc Forum", "type": "Help documentation"}, {"url": "https://github.com/NEUBIAS/bise/issues", "name": "Bug reports", "type": "Github"}, {"url": "https://biii.eu/howtocurate", "name": "Guidelines for curation", "type": "Help documentation"}, {"url": "https://github.com/NEUBIAS/bise/wiki", "name": "How to contribute to the database development", "type": "Github"}, {"url": "https://biii.eu/about", "name": "About", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://biii.eu/all-content", "name": "Advanced Search", "type": "data access"}, {"url": "https://biii.eu", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001833", "bsg-d001833"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Computational Biology"], "domains": ["Bioimaging", "Imaging", "Image"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Image analysis"], "countries": ["United Kingdom", "Norway", "Italy", "France", "Germany", "Portugal", "Spain", "Switzerland"], "name": "FAIRsharing record for: BioImage Informatics Index", "abbreviation": "BIII", "url": "https://fairsharing.org/10.25504/FAIRsharing.df2105", "doi": "10.25504/FAIRsharing.df2105", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioImage Informatics Index (BIII) is a bioimaging resource that describes software tools, training materials and imaging datasets with the aim of helping researchers find, identify and propagate image analysis tools or workflows. BIII aims to help biologists find any tool or workflow available for a particular image analysis problem; software and algorithm developers find missing tools (or components); and bioimaging analysts identify and edit workflows. It also helps raise awareness of bioimaging analysis solutions, even when they are not associated with a publication.", "publications": [{"id": 1954, "pubmed_id": null, "title": "Bioimage analysis workflows: community resources to navigate through a complex ecosystem", "year": 2021, "url": "http://doi.org/https://doi.org/10.12688/f1000research.52569.1", "authors": "Paul-Gilloteaux P, Tosi S, H\u00e9rich\u00e9 JK et al.", "journal": "F1000R Neubias gateway", "doi": "https://doi.org/10.12688/f1000research.52569.1", "created_at": "2021-09-30T08:25:59.881Z", "updated_at": "2021-09-30T08:25:59.881Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 521, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 522, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3327", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-09T09:37:32.000Z", "updated-at": "2021-12-06T10:47:43.477Z", "metadata": {"name": "Apollo - University of Cambridge Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "support@repository.cam.ac.uk"}], "homepage": "https://www.repository.cam.ac.uk/", "citations": [], "identifier": 3327, "description": "Apollo is the University of Cambridge institutional repository, which stores the research output of the university.", "abbreviation": "Apollo", "access-points": [{"url": "https://www.repository.cam.ac.uk/oai/", "name": "OAI-PMH", "type": "Other"}], "support-links": [{"url": "https://unlockingresearch-blog.lib.cam.ac.uk/", "name": "Blog", "type": "Blog/News"}, {"url": "https://www.repository.cam.ac.uk/statistics-home", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/camopenaccess", "name": "@camopenaccess", "type": "Twitter"}, {"url": "https://twitter.com/camopendata", "name": "@camopendata", "type": "Twitter"}], "data-processes": [{"url": "https://www.repository.cam.ac.uk/discover", "name": "Advanced Search", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/", "name": "Search", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/community-list", "name": "Browse by Community", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/browse?type=author", "name": "Browse by Author", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/browse?type=title", "name": "Browse by Title", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/browse?type=subject", "name": "Browse by Keyword", "type": "data access"}, {"url": "https://www.repository.cam.ac.uk/browse?type=type", "name": "Browse by Type", "type": "data access"}, {"url": "https://osc.cam.ac.uk/open-research/share-your-research", "name": "Data Submission", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010620", "name": "re3data:r3d100010620", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001846", "bsg-d001846"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Subject Agnostic", "Biology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Apollo - University of Cambridge Repository", "abbreviation": "Apollo", "url": "https://fairsharing.org/fairsharing_records/3327", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Apollo is the University of Cambridge institutional repository, which stores the research output of the university.", "publications": [], "licence-links": [{"licence-name": "Apollo - University of Cambridge Repository Terms of Use", "licence-id": 37, "link-id": 2102, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3333", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-11T19:49:43.000Z", "updated-at": "2021-12-06T10:47:44.233Z", "metadata": {"name": "data.sciencespo", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "data.bib@sciencespo.fr"}], "homepage": "https://data.sciencespo.fr/", "identifier": 3333, "description": "data.sciencespo is a repository that offers visibility, sharing and preservation of Humanities and Social Science data collected, curated and processed at Sciences Po.", "abbreviation": "data.sciencespo", "access-points": [{"url": "https://guides.dataverse.org/en/4.20/api/getting-started.html", "name": "Search and Access API Available (User Guide)", "type": "REST"}, {"url": "https://data.sciencespo.fr/oai", "name": "OAI-PMH Access Point", "type": "Other"}], "support-links": [{"url": "https://sciencespo.libguides.com/research-data/after-project", "name": "Using data.sciencespo", "type": "Help documentation"}, {"url": "https://guides.dataverse.org/en/4.20/admin/harvestserver.html", "name": "OAI-PMH Guidelines", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://data.sciencespo.fr/dataverse/sciencespo", "name": "Search", "type": "data access"}, {"url": "https://data.sciencespo.fr/dataverse/sciencespo/search", "name": "Advanced Search", "type": "data access"}, {"url": "https://data.sciencespo.fr/dataset.xhtml?ownerId=1", "name": "Upload Dataset", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013271", "name": "re3data:r3d100013271", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001852", "bsg-d001852"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Humanities and Social Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["France"], "name": "FAIRsharing record for: data.sciencespo", "abbreviation": "data.sciencespo", "url": "https://fairsharing.org/fairsharing_records/3333", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: data.sciencespo is a repository that offers visibility, sharing and preservation of Humanities and Social Science data collected, curated and processed at Sciences Po.", "publications": [], "licence-links": [{"licence-name": "data.sciencespo Terms of Use", "licence-id": 222, "link-id": 2423, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3335", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-12T19:43:50.000Z", "updated-at": "2021-12-06T10:47:44.442Z", "metadata": {"name": "Digital Academic Archives and Repositories", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "dabar@srce.hr"}], "homepage": "https://dabar.srce.hr/", "citations": [], "identifier": 3335, "description": "The Digital Academic Archives and Repositories (DABAR) is a repository for Croatia's education and science institutions' digital assets, i.e., various digital objects produced by the institutions and their employees. DABAR stores these digital assets in institutional and thematic digital repositories and archives accessible within and maintained by DABAR itself.", "abbreviation": "DABAR", "access-points": [{"url": "https://dabar.srce.hr/en/api", "name": "Submission API Documentation", "type": "REST"}, {"url": "https://dabar.srce.hr/oai?verb=Identify", "name": "OAI-PMH Access Point", "type": "Other"}], "support-links": [{"url": "https://dabar.srce.hr/en/faq-page", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://list.srce.hr/mailman3/postorius/lists/dabar-l.srce.hr/", "name": "DABAR Mailing List", "type": "Mailing list"}, {"url": "https://dabar.srce.hr/en/repositories", "name": "Repository Listing", "type": "Help documentation"}, {"url": "https://dabar.srce.hr/en/stats/objects", "name": "Statistics", "type": "Help documentation"}, {"url": "https://dabar.srce.hr/en/dabar", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://dabar.srce.hr/en/pregledavanje", "name": "Browse", "type": "data access"}, {"url": "https://dabar.srce.hr/en/napredno-pretrazivanje", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013510", "name": "re3data:r3d100013510", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001854", "bsg-d001854"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Subject Agnostic"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["institutional repository"], "countries": ["Croatia"], "name": "FAIRsharing record for: Digital Academic Archives and Repositories", "abbreviation": "DABAR", "url": "https://fairsharing.org/fairsharing_records/3335", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Digital Academic Archives and Repositories (DABAR) is a repository for Croatia's education and science institutions' digital assets, i.e., various digital objects produced by the institutions and their employees. DABAR stores these digital assets in institutional and thematic digital repositories and archives accessible within and maintained by DABAR itself.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2152", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:30.755Z", "metadata": {"doi": "10.25504/FAIRsharing.y6w78m", "name": "Coherent X-ray Imaging Data Bank", "status": "ready", "contacts": [{"contact-name": "Filipe Maia", "contact-email": "filipe@xray.bmc.uu.se", "contact-orcid": "0000-0002-2141-438X"}], "homepage": "http://cxidb.org/", "identifier": 2152, "description": "The Coherent X-ray Imaging Data Bank (CXIDB) offers scientists from all over the world a unique opportunity to access data from Coherent X-ray Imaging (CXI) experiments. It arose from the need to share the terabytes of data generated from X-ray free-electron laser experiments although it caters to all light sources. Accessibility is crucial not only to make efficient use of experimental facilities, but also to improve the reproducibility of results and enable new research based on previous experiments.", "abbreviation": "CXIDB", "support-links": [{"url": "cxidb@cxidb.org", "type": "Support email"}, {"url": "https://groups.google.com/forum/#!forum/cxidb", "type": "Forum"}, {"url": "cxidb@googlegroups.com", "type": "Mailing list"}], "year-creation": 2010, "data-processes": [{"url": "http://cxidb.org/deposit.html", "name": "Submit", "type": "data curation"}, {"url": "http://cxidb.org/browse.html", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://cxidb.org/resources.html#unit_conversion", "name": "Light to Energy Unit Conversion"}, {"url": "https://github.com/antonbarty/cheetah", "name": "Cheetah"}, {"url": "https://www.desy.de/~twhite/crystfel/development.html", "name": "CrystFEL 0.9.1"}, {"url": "https://github.com/FXIhub/spsim", "name": "Spsim"}, {"url": "https://github.com/FXIhub/hawk", "name": "Hawk"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011554", "name": "re3data:r3d100011554", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014722", "name": "SciCrunch:RRID:SCR_014722", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000624", "bsg-d000624"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Molecular structure", "X-ray diffraction", "Imaging"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "Sweden"], "name": "FAIRsharing record for: Coherent X-ray Imaging Data Bank", "abbreviation": "CXIDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.y6w78m", "doi": "10.25504/FAIRsharing.y6w78m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Coherent X-ray Imaging Data Bank (CXIDB) offers scientists from all over the world a unique opportunity to access data from Coherent X-ray Imaging (CXI) experiments. It arose from the need to share the terabytes of data generated from X-ray free-electron laser experiments although it caters to all light sources. Accessibility is crucial not only to make efficient use of experimental facilities, but also to improve the reproducibility of results and enable new research based on previous experiments.", "publications": [{"id": 647, "pubmed_id": 22936162, "title": "The Coherent X-ray Imaging Data Bank", "year": 2012, "url": "http://doi.org/10.1038/nmeth.2110", "authors": "Maia, F. R. N. C.", "journal": "Nat. Methods", "doi": "doi:10.1038/nmeth.2110", "created_at": "2021-09-30T08:23:31.213Z", "updated_at": "2021-09-30T08:23:31.213Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1868", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:49.543Z", "metadata": {"doi": "10.25504/FAIRsharing.29we0s", "name": "HUGO Gene Nomenclature Committee", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "hgnc@genenames.org"}], "homepage": "https://www.genenames.org/", "identifier": 1868, "description": "The HUGO Gene Nomenclature Committee (HGNC) is responsible for approving unique symbols, names and IDs for human loci, including protein coding genes, ncRNA genes and pseudogenes, to allow unambiguous scientific communication. The HGNC database is the resource for approved human gene nomenclature and is accessed via the website genenames.org. The website displays a page for every named gene and includes curated nomenclature information (including approved, previous and alias gene names and symbols). The website also displays manually curated gene group pages, the HCOP orthology tool and multi-symbol checker, and links to many other resources.", "abbreviation": "HGNC", "access-points": [{"url": "https://www.genenames.org/help/rest/", "name": "For searching and fetching data", "type": "REST"}], "support-links": [{"url": "https://blog.genenames.org/", "name": "Blog", "type": "Blog/News"}, {"url": "https://www.genenames.org/contact/request/", "name": "Gene symbol request", "type": "Contact form"}, {"url": "https://www.genenames.org/contact/feedback/", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.genenames.org/help/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.genenames.org/help/search/", "name": "Search help", "type": "Help documentation"}, {"url": "https://www.genenames.org/about/guidelines/", "name": "Guidelines", "type": "Help documentation"}, {"url": "https://twitter.com/genenames", "name": "Twitter", "type": "Twitter"}], "year-creation": 1979, "data-processes": [{"url": "https://www.genenames.org/download/statistics-and-files/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://www.genenames.org/tools/hcop/", "name": "HCOP"}, {"url": "https://www.genenames.org/tools/multi-symbol-checker/", "name": "Multi-symbol checker"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010901", "name": "re3data:r3d100010901", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002827", "name": "SciCrunch:RRID:SCR_002827", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000331", "bsg-d000331"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Gene name", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: HUGO Gene Nomenclature Committee", "abbreviation": "HGNC", "url": "https://fairsharing.org/10.25504/FAIRsharing.29we0s", "doi": "10.25504/FAIRsharing.29we0s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The HUGO Gene Nomenclature Committee (HGNC) is responsible for approving unique symbols, names and IDs for human loci, including protein coding genes, ncRNA genes and pseudogenes, to allow unambiguous scientific communication. The HGNC database is the resource for approved human gene nomenclature and is accessed via the website genenames.org. The website displays a page for every named gene and includes curated nomenclature information (including approved, previous and alias gene names and symbols). The website also displays manually curated gene group pages, the HCOP orthology tool and multi-symbol checker, and links to many other resources.", "publications": [{"id": 375, "pubmed_id": 17984084, "title": "The HGNC Database in 2008: a resource for the human genome.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm881", "authors": "Bruford EA., Lush MJ., Wright MW., Sneddon TP., Povey S., Birney E.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm881", "created_at": "2021-09-30T08:23:00.308Z", "updated_at": "2021-09-30T08:23:00.308Z"}, {"id": 772, "pubmed_id": 25361968, "title": "Genenames.org: the HGNC resources in 2015.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1071", "authors": "Gray KA,Yates B,Seal RL,Wright MW,Bruford EA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1071", "created_at": "2021-09-30T08:23:45.078Z", "updated_at": "2021-09-30T11:28:50.769Z"}, {"id": 792, "pubmed_id": 23161694, "title": "Genenames.org: the HGNC resources in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1066", "authors": "Gray KA,Daugherty LC,Gordon SM,Seal RL,Wright MW,Bruford EA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1066", "created_at": "2021-09-30T08:23:47.286Z", "updated_at": "2021-09-30T11:28:51.500Z"}, {"id": 1833, "pubmed_id": 27799471, "title": "Genenames.org: the HGNC and VGNC resources in 2017.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1033", "authors": "Yates B,Braschi B,Gray KA,Seal RL,Tweedie S,Bruford EA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1033", "created_at": "2021-09-30T08:25:45.862Z", "updated_at": "2021-09-30T11:29:21.369Z"}, {"id": 2354, "pubmed_id": 20929869, "title": "genenames.org: the HGNC resources in 2011.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq892", "authors": "Seal RL,Gordon SM,Lush MJ,Wright MW,Bruford EA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq892", "created_at": "2021-09-30T08:26:49.341Z", "updated_at": "2021-09-30T11:29:33.587Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1850, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1851, "relation": "undefined"}, {"licence-name": "Privacy Notice for HGNC/VGNC", "licence-id": 679, "link-id": 1852, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2210", "type": "fairsharing-records", "attributes": {"created-at": "2015-06-24T15:49:08.000Z", "updated-at": "2021-12-06T14:14:06.341Z", "metadata": {"doi": "10.25504/FAIRsharing.aqhv1y", "name": "NCBI BioProject", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "bioprojecthelp@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/bioproject/", "citations": [{"doi": "10.1093/nar/gkr1163", "pubmed-id": 22139929, "publication-id": 514}], "identifier": 2210, "description": "A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project. The BioProject database is a searchable collection of complete and incomplete (in-progress) large-scale sequencing, assembly, annotation, and mapping projects for cellular organisms.", "abbreviation": "BioProject", "data-curation": {}, "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/bioproject/docs/faq/", "name": "BioProject FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK54016", "name": "NCBI Help Manual: BioProject", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK169438/", "name": "BioProject Overview", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/bioproject/browse", "name": "Browse", "type": "data access"}, {"url": "https://ftp.ncbi.nlm.nih.gov/bioproject/", "name": "FTP", "type": "data release"}, {"url": "https://submit.ncbi.nlm.nih.gov/subs/bioproject/", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013330", "name": "re3data:r3d100013330", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004801", "name": "SciCrunch:RRID:SCR_004801", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000684", "bsg-d000684"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Experimental measurement", "Annotation", "Genomic assembly", "Sequencing", "Experimentally determined", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI BioProject", "abbreviation": "BioProject", "url": "https://fairsharing.org/10.25504/FAIRsharing.aqhv1y", "doi": "10.25504/FAIRsharing.aqhv1y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project. The BioProject database is a searchable collection of complete and incomplete (in-progress) large-scale sequencing, assembly, annotation, and mapping projects for cellular organisms.", "publications": [{"id": 514, "pubmed_id": 22139929, "title": "BioProject and BioSample databases at NCBI: facilitating capture and organization of metadata.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1163", "authors": "Barrett T,Clark K,Gevorgyan R,Gorelenkov V,Gribov E,Karsch-Mizrachi I,Kimelman M,Pruitt KD,Resenchuk S,Tatusova T,Yaschenko E,Ostell J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1163", "created_at": "2021-09-30T08:23:16.098Z", "updated_at": "2021-09-30T11:28:46.975Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2066, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1971", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:01.775Z", "metadata": {"doi": "10.25504/FAIRsharing.64bk6p", "name": "NCBI Probe Database", "status": "deprecated", "contacts": [{"contact-email": "probe-admin@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/probe", "identifier": 1971, "description": "The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", "abbreviation": "ProbeDB", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/projects/genome/probe/doc/Overview.shtml", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/probe/docs/", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/probe/docs/querytips/", "type": "Training documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/probe/docs/glossary/", "type": "Training documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/pub/ProbeDB/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/projects/genome/probe/doc/Submitting.shtml", "name": "submit"}, {"url": "http://www.ncbi.nlm.nih.gov/projects/linkout/", "name": "LinkOut"}, {"url": "http://www.ncbi.nlm.nih.gov/tools/epcr/", "name": "ePCR"}, {"url": "http://www.ncbi.nlm.nih.gov/tools/primer-blast/index.cgi", "name": "Primer-Blast"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010780", "name": "re3data:r3d100010780", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004816", "name": "SciCrunch:RRID:SCR_004816", "portal": "SciCrunch"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available from April 2020. The data can still be retrieved from their FTP servers. "}, "legacy-ids": ["biodbcore-000437", "bsg-d000437"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Polymerase chain reaction primers", "Expression data", "Oligonucleotide probe annotation", "Nucleotide", "Genetic polymorphism"], "taxonomies": ["All"], "user-defined-tags": ["Mapping information and coding potential"], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Probe Database", "abbreviation": "ProbeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.64bk6p", "doi": "10.25504/FAIRsharing.64bk6p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", "publications": [{"id": 453, "pubmed_id": 23193264, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1189", "authors": "NCBI Resource Coordinators", "journal": "Nucleic Acids Res.", "doi": "23193264", "created_at": "2021-09-30T08:23:09.175Z", "updated_at": "2021-09-30T08:23:09.175Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2337, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2507", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-10T15:51:09.000Z", "updated-at": "2021-12-06T10:48:53.793Z", "metadata": {"doi": "10.25504/FAIRsharing.mtjvme", "name": "BioStudies", "status": "ready", "contacts": [{"contact-name": "Ugis Sarkans", "contact-email": "ugis@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/biostudies/", "citations": [{"doi": "10.1093/nar/gkx965", "pubmed-id": 29069414, "publication-id": 183}], "identifier": 2507, "description": "The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", "abbreviation": "BioStudies", "access-points": [{"url": "https://www.ebi.ac.uk/biostudies/help", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "biostudies@ebi.ac.uk", "name": "BioStudies Helpdesk", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/biostudies/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/biostudies/about", "name": "About BioStudies", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/reusing-existing-data", "name": "Reusing existing data", "type": "TeSS links to training materials"}], "year-creation": 2015, "data-processes": [{"url": "https://www.ebi.ac.uk/biostudies/submit", "name": "Data Submission", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/biostudies/studies/", "name": "Browse Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012627", "name": "re3data:r3d100012627", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000989", "bsg-d000989"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Protocol", "Study design"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: BioStudies", "abbreviation": "BioStudies", "url": "https://fairsharing.org/10.25504/FAIRsharing.mtjvme", "doi": "10.25504/FAIRsharing.mtjvme", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", "publications": [{"id": 183, "pubmed_id": 29069414, "title": "The BioStudies database-one stop shop for all data supporting a life sciences study.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx965", "authors": "Sarkans U,Gostev M,Athar A,Behrangi E,Melnichuk O,Ali A,Minguet J,Rada JC,Snow C,Tikhonov A,Brazma A,McEntyre J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx965", "created_at": "2021-09-30T08:22:39.996Z", "updated_at": "2021-09-30T11:28:43.750Z"}, {"id": 2248, "pubmed_id": 26700850, "title": "The BioStudies database.", "year": 2015, "url": "http://doi.org/10.15252/msb.20156658", "authors": "McEntyre J,Sarkans U,Brazma A", "journal": "Mol Syst Biol", "doi": "10.15252/msb.20156658", "created_at": "2021-09-30T08:26:33.450Z", "updated_at": "2021-09-30T08:26:33.450Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2126, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2445", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-21T12:21:40.000Z", "updated-at": "2021-12-06T10:49:16.770Z", "metadata": {"doi": "10.25504/FAIRsharing.tj9xv0", "name": "NERC British Oceanographic Data Centre Data Archive", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "enquiries@bodc.ac.uk"}], "homepage": "http://www.bodc.ac.uk", "identifier": 2445, "description": "BODC makes available biological, chemical, physical and geophysical data on the marine environment.", "abbreviation": "BODC", "support-links": [{"url": "https://www.bodc.ac.uk/resources/help_and_hints/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.bodc.ac.uk/resources/help_and_hints/", "type": "Help documentation"}, {"url": "http://www.nerc.ac.uk/research/sites/data/doi/", "name": "NERC DOI Information", "type": "Help documentation"}, {"url": "https://www.bodc.ac.uk/about/#", "name": "About", "type": "Help documentation"}], "year-creation": 1989, "data-processes": [{"url": "https://www.bodc.ac.uk/data/", "name": "search", "type": "data access"}, {"url": "https://www.bodc.ac.uk/submit_data/", "name": "submit", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010192", "name": "re3data:r3d100010192", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000927", "bsg-d000927"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geochemistry", "Environmental Science", "Geophysics", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: NERC British Oceanographic Data Centre Data Archive", "abbreviation": "BODC", "url": "https://fairsharing.org/10.25504/FAIRsharing.tj9xv0", "doi": "10.25504/FAIRsharing.tj9xv0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BODC makes available biological, chemical, physical and geophysical data on the marine environment.", "publications": [], "licence-links": [{"licence-name": "BODC Privacy Policy", "licence-id": 85, "link-id": 1173, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3321", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-17T09:12:00.000Z", "updated-at": "2021-12-06T10:47:42.845Z", "metadata": {"name": "Radiocarbon Palaeolithic Europe Database", "status": "ready", "contacts": [{"contact-name": "pierre.vermeersch@kuleuven.be", "contact-email": "pierre.vermeersch@kuleuven.be"}], "homepage": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/", "citations": [{"doi": "10.1016/j.dib.2020.105793", "pubmed-id": 32577447, "publication-id": 2093}], "identifier": 3321, "description": "The Radiocarbon Palaeolithic Europe Database stores available radiometric data taken from literature and from other more restricted databases. Data is collected by continuous checking of newly published articles in hundreds of international and regional scientific journals and in collections or books dealing with a particular period or a specific Paleolithic site. User submissions are also accepted. Please note that this database is only available for download and local use via Microsoft Access or, in a more limited way, via Excel. As such, its accessibility is limited.", "support-links": [{"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/", "name": "FAQ and General Information", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/download/index.html", "name": "Download Information", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/inspected-journals.xlsx", "name": "Download Inspected Journals List (XSLX)", "type": "data release"}, {"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/radiocarbon-palaeolithic-europe-database-v27-extract.xlsx", "name": "Download Chronometric Dates (XSLX)", "type": "data release"}, {"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/download/14c-palaeolithic-v27.zip", "name": "Download Database (Microsoft Access)", "type": "data release"}, {"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/download/RPED-v27-aug-2020.kmz", "name": "Download Coordinates File (KMZ)", "type": "data release"}, {"url": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/download/14c-palaeolithic-blank.zip", "name": "Form for Data Submission", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013648", "name": "re3data:r3d100013648", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001836", "bsg-d001836"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Prehistory"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Archaeology", "Carbon dating", "Paleolithic", "Radiometric dating"], "countries": ["Belgium"], "name": "FAIRsharing record for: Radiocarbon Palaeolithic Europe Database", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3321", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Radiocarbon Palaeolithic Europe Database stores available radiometric data taken from literature and from other more restricted databases. Data is collected by continuous checking of newly published articles in hundreds of international and regional scientific journals and in collections or books dealing with a particular period or a specific Paleolithic site. User submissions are also accepted. Please note that this database is only available for download and local use via Microsoft Access or, in a more limited way, via Excel. As such, its accessibility is limited.", "publications": [{"id": 2093, "pubmed_id": 32577447, "title": "Radiocarbon Palaeolithic Europe database: A regularly updated dataset of the radiometric data regarding the Palaeolithic of Europe, Siberia included.", "year": 2020, "url": "http://doi.org/10.1016/j.dib.2020.105793", "authors": "Vermeersch PM", "journal": "Data Brief", "doi": "10.1016/j.dib.2020.105793", "created_at": "2021-09-30T08:26:15.881Z", "updated_at": "2021-09-30T08:26:15.881Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2601", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-21T18:24:06.000Z", "updated-at": "2021-12-06T10:48:56.799Z", "metadata": {"doi": "10.25504/FAIRsharing.NzKTvN", "name": "Forest Service Research Data Archive", "status": "ready", "contacts": [{"contact-name": "Dave Rugg", "contact-email": "drugg@fs.fed.us", "contact-orcid": "0000-0003-2280-8302"}], "homepage": "https://www.fs.usda.gov/rds/archive/", "identifier": 2601, "description": "A repository of published research data related to forest and grassland ecosystems. Primarily holds data sets created with U.S. Forest Service funding. Data sets are reviewed prior to publication, particularly their metadata; metadata are currently written to the Content Standard for Digital Geospatial Metadata - Biological Data Profile.", "abbreviation": "FSRDA", "support-links": [{"url": "https://www.fs.usda.gov/rds/archive/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.fs.usda.gov/rds/archive/userguide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.fs.usda.gov/rds/archive/UsingFormats", "name": "Using their Formats", "type": "Help documentation"}, {"url": "https://www.fs.usda.gov/rds/archive/Metadata", "name": "Metadata Requirements", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://www.fs.usda.gov/rds/archive/Catalog", "name": "Browse and Search", "type": "data access"}, {"url": "https://www.fs.usda.gov/rds/archive/SubmittingData", "name": "Data Submission", "type": "data curation"}], "associated-tools": [{"url": "https://play.google.com/store/apps/details?id=gov.usda.fs.rds.fsrda", "name": "Mobile App (Google Play)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011147", "name": "re3data:r3d100011147", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001084", "bsg-d001084"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Forest Management", "Ecology", "Social and Behavioural Science", "Hydrology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Applied Forest Research", "Fire Research", "Grassland Research", "Wildlife Ecology"], "countries": ["United States"], "name": "FAIRsharing record for: Forest Service Research Data Archive", "abbreviation": "FSRDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.NzKTvN", "doi": "10.25504/FAIRsharing.NzKTvN", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A repository of published research data related to forest and grassland ecosystems. Primarily holds data sets created with U.S. Forest Service funding. Data sets are reviewed prior to publication, particularly their metadata; metadata are currently written to the Content Standard for Digital Geospatial Metadata - Biological Data Profile.", "publications": [], "licence-links": [{"licence-name": "Forest Service Research Data Archive Open Access Data Use Agreement", "licence-id": 321, "link-id": 867, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2015", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:03.358Z", "metadata": {"doi": "10.25504/FAIRsharing.6b9re3", "name": "NeuroImaging Tools and Resources Collaboratory", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nitrcinfo@nitrc.org"}], "homepage": "https://www.nitrc.org/", "citations": [], "identifier": 2015, "description": "Neuroimaging Informatics Tools and Resources Collaboratory Resources Registry (NITRC-R) describes software tools and resources, vocabularies, test data, and databases. It is intended to extend the impact and longevity of previously funded neuroimaging informatics contributions. NITRC-R gives researchers access to tools and resources, categorization and organization of existing tools and resources, facilitation of interactions between researchers and developers, and promotion of best practices through enhanced documentation and tutorials. NITRC\u2019s scientific focus includes: MR, PET/SPECT, CT, EEG/MEG, optical imaging, clinical neuroimaging, computational neuroscience, and imaging genomics software tools, data, and computational resources.", "abbreviation": "NITRC", "support-links": [{"url": "https://www.nitrc.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.nitrc.org/forum/forum.php?forum_id=2", "name": "Community Forum", "type": "Forum"}, {"url": "https://www.nitrc.org/plugins/mwiki/index.php/nitrc:User_Guide_-_Contents", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.nitrc.org/plugins/mwiki/index.php/nitrc:MainPage", "name": "Wiki Pages", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://www.nitrc.org/top/toplist.php?type=downloads", "name": "Browse & Search by Top Downloads", "type": "data access"}, {"url": "https://www.nitrc.org/search/?type_of_search=group", "name": "Browse & Search by Attribute", "type": "data access"}, {"url": "https://www.nitrc.org/snippet/", "name": "Download Code Snippets", "type": "data release"}, {"url": "https://www.nitrc.org/register/projectinfo.php", "name": "Register a New Tool", "type": "data curation"}, {"url": "https://www.nitrc.org/search/advanced_search_builder.php", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011515", "name": "re3data:r3d100011515", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003430", "name": "SciCrunch:RRID:SCR_003430", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000481", "bsg-d000481"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Bioinformatics", "Computational Neuroscience", "Neuroscience"], "domains": ["Molecular structure", "Annotation", "Neuron", "Positron emission tomography", "Image", "Structure", "Brain", "Brain imaging", "Software"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Digital reconstruction", "Neuroinformatics"], "countries": ["United States"], "name": "FAIRsharing record for: NeuroImaging Tools and Resources Collaboratory", "abbreviation": "NITRC", "url": "https://fairsharing.org/10.25504/FAIRsharing.6b9re3", "doi": "10.25504/FAIRsharing.6b9re3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Neuroimaging Informatics Tools and Resources Collaboratory Resources Registry (NITRC-R) describes software tools and resources, vocabularies, test data, and databases. It is intended to extend the impact and longevity of previously funded neuroimaging informatics contributions. NITRC-R gives researchers access to tools and resources, categorization and organization of existing tools and resources, facilitation of interactions between researchers and developers, and promotion of best practices through enhanced documentation and tutorials. NITRC\u2019s scientific focus includes: MR, PET/SPECT, CT, EEG/MEG, optical imaging, clinical neuroimaging, computational neuroscience, and imaging genomics software tools, data, and computational resources.", "publications": [{"id": 763, "pubmed_id": 19184562, "title": "Neuroimaging informatics tools and resources clearinghouse (NITRC) resource announcement.", "year": 2009, "url": "http://doi.org/10.1007/s12021-008-9036-8", "authors": "Luo XZ., Kennedy DN., Cohen Z.,", "journal": "Neuroinformatics", "doi": "10.1007/s12021-008-9036-8", "created_at": "2021-09-30T08:23:44.121Z", "updated_at": "2021-09-30T08:23:44.121Z"}, {"id": 919, "pubmed_id": 26044860, "title": "The NITRC image repository.", "year": 2015, "url": "http://doi.org/S1053-8119(15)00464-4", "authors": "Kennedy DN, Haselgrove C, Riehl J, Preuss N, Buccigrossi R.", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2015.05.074", "created_at": "2021-09-30T08:24:01.480Z", "updated_at": "2021-09-30T08:24:01.480Z"}], "licence-links": [{"licence-name": "NITRC Copyright Statement", "licence-id": 590, "link-id": 2391, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2307", "type": "fairsharing-records", "attributes": {"created-at": "2016-06-21T00:43:55.000Z", "updated-at": "2021-11-24T13:15:58.867Z", "metadata": {"doi": "10.25504/FAIRsharing.2y6rkq", "name": "Advanced Ecological Knowledge and Observation System", "status": "ready", "contacts": [{"contact-name": "Dr Anita Smyth", "contact-email": "anita.smyth@adelaide.edu.au", "contact-orcid": "0000-0003-2214-8842"}], "homepage": "http://www.aekos.org.au/", "identifier": 2307, "description": "The Advanced Ecological Knowledge and Observation System from the Terrestrial Ecosystem Research Network (TERN AEKOS) focuses on ecological plot data that are generated by land-based ecosystem projects that use survey, monitoring and experimental studies to collect raw data on plants, animals (including traits) and their immediate environments at the same location. Plot data are observations sampled by using scientific techniques such as quadrants, grids, transects, animal trap arrays and other structured sampling techniques.", "abbreviation": "TERN AEKOS", "access-points": [{"url": "https://www.api.aekos.org.au/", "name": "AEKOS API Documentation", "type": "REST"}], "support-links": [{"url": "http://www.ecoinformatics.org.au/contact_us", "name": "Contact Information", "type": "Contact form"}, {"url": "http://www.ecoinformatics.org.au/feedback_centre", "name": "Feedback Centre", "type": "Contact form"}, {"url": "esupport@tern.org.au", "name": "General Contact", "type": "Support email"}, {"url": "http://www.ecoinformatics.org.au/help_centre", "name": "Help Centre", "type": "Help documentation"}, {"url": "http://www.ecoinformatics.org.au/eco-informatics_facility", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/tern_aekos", "name": "@tern_aekos", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://shared.tern.org.au/", "name": "Submit Data", "type": "data curation"}, {"url": "http://www.aekos.org.au/index.html#/location-search", "name": "Location Search", "type": "data access"}, {"url": "http://www.aekos.org.au/index.html#/search-results/list?q=%5B%5D", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000783", "bsg-d000783"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Biodiversity", "Ecosystem Science"], "domains": ["Centrally registered identifier", "Protocol"], "taxonomies": ["Animalia", "Plantae"], "user-defined-tags": ["SDM modelling data", "Species-environment interaction", "Trait modelling data"], "countries": ["Australia"], "name": "FAIRsharing record for: Advanced Ecological Knowledge and Observation System", "abbreviation": "TERN AEKOS", "url": "https://fairsharing.org/10.25504/FAIRsharing.2y6rkq", "doi": "10.25504/FAIRsharing.2y6rkq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Advanced Ecological Knowledge and Observation System from the Terrestrial Ecosystem Research Network (TERN AEKOS) focuses on ecological plot data that are generated by land-based ecosystem projects that use survey, monitoring and experimental studies to collect raw data on plants, animals (including traits) and their immediate environments at the same location. Plot data are observations sampled by using scientific techniques such as quadrants, grids, transects, animal trap arrays and other structured sampling techniques.", "publications": [{"id": 181, "pubmed_id": null, "title": "Next-Generation Online Data and Information Infrastructure for the Ecological Science Community", "year": 2017, "url": "http://doi.org/https://doi.org/10.1201/9781315368252-14", "authors": "Turner, David J., Smyth, Anita K., Walker, Craig M., Lowe, Andrew J.", "journal": "In Terrestrial Ecosystem Research Infrastructures edited by Abad Chabbi and Henry W. Loescher. Boca Raton, FL, CRC Press, pp: 341\u2013368", "doi": "https://doi.org/10.1201/9781315368252-14", "created_at": "2021-09-30T08:22:39.773Z", "updated_at": "2021-09-30T08:22:39.773Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1899, "relation": "undefined"}, {"licence-name": "TERN Data Licensing Policy", "licence-id": 780, "link-id": 1903, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2435", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T19:44:24.000Z", "updated-at": "2021-12-06T10:48:15.752Z", "metadata": {"doi": "10.25504/FAIRsharing.a833sq", "name": "Oak Ridge National Laboratory Distributed Active Archive Center for Biogeochemical Dynamics", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "uso@daac.ornl.gov"}], "homepage": "https://daac.ornl.gov", "citations": [], "identifier": 2435, "description": "The Oak Ridge National Laboratory Distributed Active Archive Center (ORNL DAAC) mission is to assemble, distribute, and provide data services for a comprehensive archive of terrestrial biogeochemistry and ecological dynamics observations and models to facilitate research, education, and decision-making in support of NASA\u2019s Earth science. The ORNL DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "abbreviation": "ORNL DAAC for Biogeochemical Dynamics", "access-points": [{"url": "https://modis.ornl.gov/data/modis_webservice.html", "name": "https://modis.ornl.gov/data/modis_webservice.html", "type": "Other"}], "data-curation": {}, "support-links": [{"url": "https://daac-news.ornl.gov/", "name": "News", "type": "Blog/News"}, {"url": "https://daac.ornl.gov/help.shtml", "name": "ORNL DAAC Help", "type": "Help documentation"}, {"url": "https://daac.ornl.gov/datamanagement/", "name": "Data Management Guidance", "type": "Help documentation"}, {"url": "https://daac.ornl.gov/resources/learning/", "name": "Learning Resources", "type": "Help documentation"}], "data-processes": [{"url": "https://daac.ornl.gov/archival_contact_form.html", "name": "submit", "type": "data curation"}, {"url": "https://daac.ornl.gov/get_data/", "name": "search", "type": "data access"}], "associated-tools": [{"url": "https://daac.ornl.gov/tools/", "name": "List of related tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000037", "name": "re3data:r3d100000037", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000917", "bsg-d000917"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Soil Science", "Environmental Science", "Forest Management", "Ecology", "Natural Science", "Earth Science", "Hydrology"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere", "Fire Research", "Satellite Data"], "countries": ["United States"], "name": "FAIRsharing record for: Oak Ridge National Laboratory Distributed Active Archive Center for Biogeochemical Dynamics", "abbreviation": "ORNL DAAC for Biogeochemical Dynamics", "url": "https://fairsharing.org/10.25504/FAIRsharing.a833sq", "doi": "10.25504/FAIRsharing.a833sq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Oak Ridge National Laboratory Distributed Active Archive Center (ORNL DAAC) mission is to assemble, distribute, and provide data services for a comprehensive archive of terrestrial biogeochemistry and ecological dynamics observations and models to facilitate research, education, and decision-making in support of NASA\u2019s Earth science. The ORNL DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs) that archive and distribute earth science data, managed by NASA's Earth Science Data and Information System Project (ESDIS), as part of the Earth Science Data Systems (ESDS) Program.", "publications": [], "licence-links": [{"licence-name": "NIF - SciCrunch Privacy Policy", "licence-id": 580, "link-id": 2174, "relation": "undefined"}, {"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 2175, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2497", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T15:00:05.000Z", "updated-at": "2021-12-06T10:48:17.720Z", "metadata": {"doi": "10.25504/FAIRsharing.awgyhy", "name": "High Energy Physics Data Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@hepdata.net"}], "homepage": "https://hepdata.net", "citations": [{"publication-id": 2271}], "identifier": 2497, "description": "The Durham High Energy Physics Database (HEPData) has been built up over the past four decades as a unique open-access repository for scattering data from experimental particle physics. It currently comprises the data points from plots and tables related to several thousand publications including those from the Large Hadron Collider (LHC). HEPData is funded by a grant from the UK STFC and is based at the IPPP at Durham University.", "abbreviation": "HEPData", "support-links": [{"url": "https://hepdata-forum.cern.ch/", "name": "HEPData Forum", "type": "Forum"}, {"url": "https://github.com/HEPData", "name": "GitHub Project", "type": "Github"}, {"url": "https://www.hepdata.net/about", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/HEPData", "name": "@HEPData", "type": "Twitter"}], "year-creation": 1975, "data-processes": [{"url": "https://www.hepdata.net/submission", "name": "Submit", "type": "data curation"}, {"url": "https://www.hepdata.net/search/?q=&collaboration=LHCb", "name": "Browse LCHb Data", "type": "data access"}, {"url": "https://www.hepdata.net/search/?q=&collaboration=CMS", "name": "Browse CMS Data", "type": "data access"}, {"url": "https://www.hepdata.net/search/?q=&collaboration=ATLAS", "name": "Browse ATLAS Data", "type": "data access"}, {"url": "https://www.hepdata.net/search/?q=&collaboration=ALICE", "name": "Browse ALICE Data", "type": "data access"}, {"url": "https://www.hepdata.net/search/?q=", "name": "Search All Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010081", "name": "re3data:r3d100010081", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000979", "bsg-d000979"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Chemistry", "Particles, Nuclei and Fields", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["High Energy Physics"], "countries": ["United Kingdom", "Switzerland"], "name": "FAIRsharing record for: High Energy Physics Data Repository", "abbreviation": "HEPData", "url": "https://fairsharing.org/10.25504/FAIRsharing.awgyhy", "doi": "10.25504/FAIRsharing.awgyhy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Durham High Energy Physics Database (HEPData) has been built up over the past four decades as a unique open-access repository for scattering data from experimental particle physics. It currently comprises the data points from plots and tables related to several thousand publications including those from the Large Hadron Collider (LHC). HEPData is funded by a grant from the UK STFC and is based at the IPPP at Durham University.", "publications": [{"id": 2271, "pubmed_id": null, "title": "HEPData: a repository for high energy physics data", "year": 2017, "url": "https://doi.org/10.1088/1742-6596/898/10/102006", "authors": "Eamonn Maguire, Lukas Heinrich and Graeme Watt", "journal": "Journal of Physics: Conference Series", "doi": null, "created_at": "2021-09-30T08:26:36.607Z", "updated_at": "2021-09-30T08:26:36.607Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1183, "relation": "undefined"}, {"licence-name": "HEPData Terms of Use", "licence-id": 388, "link-id": 1197, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2505", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-10T14:57:26.000Z", "updated-at": "2021-12-06T10:49:21.860Z", "metadata": {"doi": "10.25504/FAIRsharing.w55kwn", "name": "DANS-EASY Electronic Archiving System", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@dans.knaw.nl"}], "homepage": "https://easy.dans.knaw.nl/ui/home", "identifier": 2505, "description": "EASY is the online archiving system of Data Archiving and Networked Services (DANS). EASY provides access to thousands of datasets in the humanities, the social sciences and other disciplines. EASY can also be used for the online depositing of research data. DANS encourages researchers to make there digital research data and related outputs Findable, Accessible, Interoperable and Reusable.", "abbreviation": "EASY", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010214", "name": "re3data:r3d100010214", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000987", "bsg-d000987"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Archaeology", "Humanities", "Social Science", "Earth Science", "Life Science", "Social and Behavioural Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: DANS-EASY Electronic Archiving System", "abbreviation": "EASY", "url": "https://fairsharing.org/10.25504/FAIRsharing.w55kwn", "doi": "10.25504/FAIRsharing.w55kwn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EASY is the online archiving system of Data Archiving and Networked Services (DANS). EASY provides access to thousands of datasets in the humanities, the social sciences and other disciplines. EASY can also be used for the online depositing of research data. DANS encourages researchers to make there digital research data and related outputs Findable, Accessible, Interoperable and Reusable.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2412", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-11T14:38:50.000Z", "updated-at": "2021-11-24T13:15:58.956Z", "metadata": {"doi": "10.25504/FAIRsharing.9raft1", "name": "Centre for Ecology & Hydrology Data", "status": "ready", "contacts": [{"contact-email": "enquiries@ceh.ac.uk"}], "homepage": "http://www.ceh.ac.uk/data", "identifier": 2412, "description": "National environmental data sets", "abbreviation": "CEH Data", "support-links": [{"url": "http://www.ceh.ac.uk/contact-us", "type": "Contact form"}, {"url": "http://www.ceh.ac.uk/rss", "type": "Blog/News"}, {"url": "https://twitter.com/CEHSCIENCENEWS", "type": "Twitter"}]}, "legacy-ids": ["biodbcore-000894", "bsg-d000894"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Ecology", "Earth Science", "Freshwater Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Centre for Ecology & Hydrology Data", "abbreviation": "CEH Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.9raft1", "doi": "10.25504/FAIRsharing.9raft1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: National environmental data sets", "publications": [], "licence-links": [{"licence-name": "CEH Privacy Policy", "licence-id": 115, "link-id": 969, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2411", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-11T14:18:25.000Z", "updated-at": "2021-11-24T13:16:36.216Z", "metadata": {"doi": "10.25504/FAIRsharing.r4864g", "name": "Carbon Dioxide Information Analysis Centre Database", "status": "deprecated", "homepage": "http://cdiac.ornl.gov", "identifier": 2411, "description": "The Carbon Dioxide Information Analysis Center (CDIAC), is the primary climate change data and information analysis center for the US Department of Energy. CDIAC's data holdings include estimates of carbon dioxide emissions from fossil-fuel consumption and land-use changes; records of atmospheric concentrations of carbon dioxide and other radiatively active trace gases; carbon cycle and terrestrial carbon management datasets and analyses; and global/regional climate data and time series. Operation of CDIAC will cease on the 30th September 2017, however the data will still be available beyond this date.", "abbreviation": "CDIAC Database", "support-links": [{"url": "https://public.ornl.gov/cdiac/feedback.cfm", "type": "Contact form"}, {"url": "http://cdiac.ornl.gov/faq.html", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1982, "data-processes": [{"url": "http://mercury.ornl.gov/cdiacnew/", "name": "search", "type": "data access"}, {"url": "http://cdiac.ornl.gov/data_catalog.html", "name": "Access", "type": "data access"}, {"url": "http://cdiac.ornl.gov/datasubmission.html", "name": "submit", "type": "data curation"}], "deprecation-date": "2017-12-07", "deprecation-reason": "This resource closed on September 30, 2017"}, "legacy-ids": ["biodbcore-000893", "bsg-d000893"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Marine environment", "Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Carbon Dioxide Information Analysis Centre Database", "abbreviation": "CDIAC Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.r4864g", "doi": "10.25504/FAIRsharing.r4864g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Carbon Dioxide Information Analysis Center (CDIAC), is the primary climate change data and information analysis center for the US Department of Energy. CDIAC's data holdings include estimates of carbon dioxide emissions from fossil-fuel consumption and land-use changes; records of atmospheric concentrations of carbon dioxide and other radiatively active trace gases; carbon cycle and terrestrial carbon management datasets and analyses; and global/regional climate data and time series. Operation of CDIAC will cease on the 30th September 2017, however the data will still be available beyond this date.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2430", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T08:39:18.000Z", "updated-at": "2021-11-24T13:16:37.720Z", "metadata": {"doi": "10.25504/FAIRsharing.3aabq1", "name": "NASA Global Change Master Directory / CEOS International Directory Network", "status": "ready", "contacts": [{"contact-name": "IDN Contact", "contact-email": "support@earthdata.nasa.gov"}], "homepage": "https://idn.ceos.org", "identifier": 2430, "description": "The CEOS International Directory Network (IDN), working through NASA's Global Change Master Directory (GCMD), holds more than 32,000 Earth science data set descriptions, which cover subject areas within the Earth and environmental sciences. The project mission is to assist researchers, policy makers, and the public in the discovery of and access to data, related services, and ancillary information (which includes descriptions of instruments and platforms) relevant to global change and Earth science research. The GCMD/IDN is an international effort developed to assist researchers in locating information on available data sets. The directory provides free, online access to information for scientific data worldwide in the Earth sciences: geoscience, hydrosphere, biosphere, satellite remote sensing, and atmospheric sciences. Sometimes referred to as the CEOS IDN Master Directory, it describes data held by university departments, government agencies, international government agencies, and associated organizations. Both GCMD and IDN are used to refer to this repository in help pages and other websites, and therefore both are represented here.", "abbreviation": "GCMD/IDN", "support-links": [{"url": "https://idn.ceos.org/faqs.html", "name": "IDN FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wiki.earthdata.nasa.gov/display/EDSC/How-To+Articles", "name": "How-To Guide", "type": "Help documentation"}, {"url": "https://earthdata.nasa.gov/earth-observation-data/find-data/gcmd", "name": "Introduction to GCMD", "type": "Help documentation"}, {"url": "https://idn.ceos.org/metadataStandards.html", "name": "IDN Metadata Protocols and Standards", "type": "Help documentation"}], "year-creation": 1987, "data-processes": [{"url": "https://idn.ceos.org/contribute.html", "name": "Create/Update Data", "type": "data curation"}, {"url": "https://search.earthdata.nasa.gov/portal/idn/search?ac=true", "name": "Search IDN Data Sets", "type": "data access"}, {"url": "https://idn.ceos.org/mimkeywords.html", "name": "View by Keyword", "type": "data access"}]}, "legacy-ids": ["biodbcore-000912", "bsg-d000912"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NASA Global Change Master Directory / CEOS International Directory Network", "abbreviation": "GCMD/IDN", "url": "https://fairsharing.org/10.25504/FAIRsharing.3aabq1", "doi": "10.25504/FAIRsharing.3aabq1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CEOS International Directory Network (IDN), working through NASA's Global Change Master Directory (GCMD), holds more than 32,000 Earth science data set descriptions, which cover subject areas within the Earth and environmental sciences. The project mission is to assist researchers, policy makers, and the public in the discovery of and access to data, related services, and ancillary information (which includes descriptions of instruments and platforms) relevant to global change and Earth science research. The GCMD/IDN is an international effort developed to assist researchers in locating information on available data sets. The directory provides free, online access to information for scientific data worldwide in the Earth sciences: geoscience, hydrosphere, biosphere, satellite remote sensing, and atmospheric sciences. Sometimes referred to as the CEOS IDN Master Directory, it describes data held by university departments, government agencies, international government agencies, and associated organizations. Both GCMD and IDN are used to refer to this repository in help pages and other websites, and therefore both are represented here.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 924, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2207", "type": "fairsharing-records", "attributes": {"created-at": "2015-05-20T12:05:09.000Z", "updated-at": "2021-12-06T10:48:52.306Z", "metadata": {"doi": "10.25504/FAIRsharing.mckkb4", "name": "Worldwide Protein Data Bank", "status": "ready", "contacts": [{"contact-email": "info@wwpdb.org"}], "homepage": "http://www.wwpdb.org", "citations": [{"doi": "10.1038/nsb1203-980", "pubmed-id": 14634627, "publication-id": 258}], "identifier": 2207, "description": "The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community. The mission of the wwPDB is to maintain a single Protein Data Bank Archive of macromolecular structural data that is freely and publicly available to the global community. The wwPDB is composed of the RCSB PDB, PDBe, PDBj and BMRB.", "abbreviation": "wwPDB", "access-points": [{"url": "http://www.wwpdb.org/validation/onedep-validation-web-service-interface", "name": "wwPDB Validation Service API", "type": "REST"}], "support-links": [{"url": "http://www.wwpdb.org/about/contact", "name": "Contact Details", "type": "Contact form"}, {"url": "http://www.wwpdb.org/deposition/faq", "name": "Deposition FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.wwpdb.org/about/faq", "name": "General FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.wwpdb.org/documentation/file-format", "name": "File Format Docs", "type": "Help documentation"}, {"url": "http://www.wwpdb.org/stats/download", "name": "Download Statistics", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/a-critical-guide-to-the-pdb", "name": "A Critical Guide to the PDB", "type": "TeSS links to training materials"}, {"url": "http://www.wwpdb.org/deposition/tutorial", "name": "Deposition Tour", "type": "Training documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.wwpdb.org/ftp/pdb-ftp-sites", "name": "Download Data", "type": "data access"}, {"url": "https://deposit-2.wwpdb.org/deposition/", "name": "Data deposition", "type": "data curation"}], "associated-tools": [{"url": "https://validate.wwpdb.org", "name": "wwPDB Validation Service"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011104", "name": "re3data:r3d100011104", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006555", "name": "SciCrunch:RRID:SCR_006555", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000681", "bsg-d000681"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Structural Biology", "Life Science"], "domains": ["Protein structure", "Deoxyribonucleic acid", "Ribonucleic acid", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Japan"], "name": "FAIRsharing record for: Worldwide Protein Data Bank", "abbreviation": "wwPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.mckkb4", "doi": "10.25504/FAIRsharing.mckkb4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community. The mission of the wwPDB is to maintain a single Protein Data Bank Archive of macromolecular structural data that is freely and publicly available to the global community. The wwPDB is composed of the RCSB PDB, PDBe, PDBj and BMRB.", "publications": [{"id": 258, "pubmed_id": 14634627, "title": "Announcing the worldwide Protein Data Bank.", "year": 2003, "url": "http://doi.org/10.1038/nsb1203-980", "authors": "Berman H., Henrick K., Nakamura H.,", "journal": "Nat. Struct. Biol.", "doi": "10.1038/nsb1203-980", "created_at": "2021-09-30T08:22:47.891Z", "updated_at": "2021-09-30T08:22:47.891Z"}], "licence-links": [{"licence-name": "wwPDB Privacy and Data Usage", "licence-id": 876, "link-id": 1165, "relation": "undefined"}, {"licence-name": "wwPDB Attribution required", "licence-id": 874, "link-id": 1166, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3573", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-08T13:03:42.896Z", "updated-at": "2022-02-08T10:56:27.527Z", "metadata": {"doi": "10.25504/FAIRsharing.a5c07c", "name": "Assembling the Fungal Tree of Life Structural and Biochemical Database ", "status": "ready", "contacts": [{"contact-name": "David Mc Laughlin ", "contact-email": "davem@umn.edu", "contact-orcid": null}], "homepage": "http://aftol.umn.edu/", "citations": [], "identifier": 3573, "description": "The AFTOL Structural and Biochemical Database features subcellular and biochemical data compiled from published literature and current research-in-progress on subcellular traits of Fungi. It was created for researchers to compile fungal subcellular and biochemical characters and character state data for phylogenetic analyses, including tree and ancestral state reconstructions. ", "abbreviation": "AFTOL Structural and Biochemical Database ", "data-curation": {}, "support-links": [{"url": "https://aftol.umn.edu/usage_guide", "name": "Usage Guide", "type": "Help documentation"}, {"url": "https://aftol.umn.edu/about", "name": "About the Team", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://aftol.umn.edu/species", "name": "Browse Species", "type": "data access"}, {"url": "https://aftol.umn.edu/nexus", "name": "NEXUS Search", "type": "data access"}, {"url": "https://aftol.umn.edu/glossary", "name": "Browse by Category", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biochemistry", "Structural Biology", "Phylogeny"], "domains": ["Molecular structure"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["India", "United States"], "name": "FAIRsharing record for: Assembling the Fungal Tree of Life Structural and Biochemical Database ", "abbreviation": "AFTOL Structural and Biochemical Database ", "url": "https://fairsharing.org/10.25504/FAIRsharing.a5c07c", "doi": "10.25504/FAIRsharing.a5c07c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AFTOL Structural and Biochemical Database features subcellular and biochemical data compiled from published literature and current research-in-progress on subcellular traits of Fungi. It was created for researchers to compile fungal subcellular and biochemical characters and character state data for phylogenetic analyses, including tree and ancestral state reconstructions. ", "publications": [{"id": 3115, "pubmed_id": null, "title": "Research and teaching with the AFTOL SBD: an informatics resource for fungal subcellular and biochemical data", "year": 2013, "url": "https://doi.org/10.5598/imafungus.2013.04.02.11", "authors": "Kumar, T.K.A., Blackwell, M., Letcher, P.M. et al.", "journal": "IMA Fungus", "doi": "10.5598/imafungus.2013.04.02.11", "created_at": "2021-10-08T13:10:47.169Z", "updated_at": "2021-10-08T13:13:44.509Z"}, {"id": 3116, "pubmed_id": null, "title": "Subcellular Structure and Biochemical Characters in Fungal Phylogeny", "year": 2015, "url": "http://dx.doi.org/10.1007/978-3-662-46011-5_9", "authors": "McLaughlin, David J.; Kumar, T. K. Arun; Blackwell, Meredith; Letcher, Peter M.; Roberson, Robert W.; ", "journal": "The Mycota", "doi": "10.1007/978-3-662-46011-5_9", "created_at": "2021-10-08T13:13:39.155Z", "updated_at": "2021-10-08T13:14:33.921Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 2461, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2010", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:15.657Z", "metadata": {"doi": "10.25504/FAIRsharing.a46gtf", "name": "Biologic Specimen and Data Repository Information Coordinating Center", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "biolincc@imsweb.com"}], "homepage": "https://biolincc.nhlbi.nih.gov/home/", "identifier": 2010, "description": "The goal of Biologic Specimen and Data Repository Information Coordinating Center (BioLINCC) is to facilitate and coordinate the existing activities of the NHLBI Biorepository and the Data Repository and to expand their scope and usability to the scientific community through a single web-based user interface. BioLINCC provides a wealth of information on historical NHLBI clinical and epidemiologic studies which have data or biospecimens in the NHLBI repositories, and includes study summaries, references, and study operational documents.", "abbreviation": "BioLINCC", "support-links": [{"url": "https://biolincc.nhlbi.nih.gov/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://biolincc.nhlbi.nih.gov/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://biolincc.nhlbi.nih.gov/media/guidelines/handbook.pdf?link_time=2020-11-19_07:39:22.722230", "name": "BioLINCC Handbook", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://biolincc.nhlbi.nih.gov/submit_datasets/", "name": "Submit Datasets", "type": "data curation"}, {"url": "https://biolincc.nhlbi.nih.gov/studies/", "name": "Search Studies", "type": "data access"}, {"url": "https://biolincc.nhlbi.nih.gov/publications/", "name": "Search Publications", "type": "data access"}, {"url": "https://biolincc.nhlbi.nih.gov/submit_biospecimens_and_datasets/", "name": "Submit Biospecimens and Datasets", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010834", "name": "re3data:r3d100010834", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013142", "name": "SciCrunch:RRID:SCR_013142", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000476", "bsg-d000476"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Biomedical Science", "Epidemiology", "Preclinical Studies"], "domains": ["Biological sample annotation", "Biological sample", "Disease", "Data storage"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Biologic Specimen and Data Repository Information Coordinating Center", "abbreviation": "BioLINCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.a46gtf", "doi": "10.25504/FAIRsharing.a46gtf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of Biologic Specimen and Data Repository Information Coordinating Center (BioLINCC) is to facilitate and coordinate the existing activities of the NHLBI Biorepository and the Data Repository and to expand their scope and usability to the scientific community through a single web-based user interface. BioLINCC provides a wealth of information on historical NHLBI clinical and epidemiologic studies which have data or biospecimens in the NHLBI repositories, and includes study summaries, references, and study operational documents.", "publications": [{"id": 473, "pubmed_id": 22514237, "title": "Key observations from the NHLBI Asthma Clinical Research Network.", "year": 2012, "url": "http://doi.org/10.1136/thoraxjnl-2012-201876", "authors": "Szefler SJ., Chinchilli VM., Israel E., Denlinger LC., Lemanske RF., Calhoun W., Peters SP.,", "journal": "Thorax", "doi": "10.1136/thoraxjnl-2012-201876", "created_at": "2021-09-30T08:23:11.409Z", "updated_at": "2021-09-30T08:23:11.409Z"}], "licence-links": [{"licence-name": "NHLBI Data Sharing Policy", "licence-id": 576, "link-id": 2187, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2454", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-01T12:02:57.000Z", "updated-at": "2021-12-06T10:49:28.912Z", "metadata": {"doi": "10.25504/FAIRsharing.y0df7m", "name": "Inter-university Consortium for Political and Social Research", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "help@icpsr.umich.edu"}], "homepage": "http://www.icpsr.umich.edu/", "identifier": 2454, "description": "ICPSR is a data archive of behavioral and social science research data. An international consortium of more than 750 academic institutions and research organizations, ICPSR provides leadership and training in data access, curation, and methods of analysis for the social science research community. ICPSR is a CoreTrustSeal core certified repository and was a 2019 United States National Medal for Museum and Library Service recipient, the nation\u2019s highest honor given to museums and libraries that make significant and exceptional contributions to their communities.", "abbreviation": "ICPSR", "support-links": [{"url": "https://www.icpsr.umich.edu/icpsrweb/content/about/contact.html", "name": "ICPSR Contact Us", "type": "Contact form"}, {"url": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/help/", "name": "ICPSR Help", "type": "Help documentation"}, {"url": "https://twitter.com/ICPSR", "name": "@ICPSR", "type": "Twitter"}], "year-creation": 1962, "data-processes": [{"url": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/", "name": "Find Data", "type": "data access"}, {"url": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/index.html", "name": "Data Curation", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010255", "name": "re3data:r3d100010255", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003194", "name": "SciCrunch:RRID:SCR_003194", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000936", "bsg-d000936"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Economics", "Demographics", "Social Science", "Criminology", "Data Governance", "Public Health", "Data Management", "Psychology", "Social and Behavioural Science", "Political Science", "Anthropology"], "domains": ["Behavior", "Curated information"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Education", "Sociology"], "countries": ["United States"], "name": "FAIRsharing record for: Inter-university Consortium for Political and Social Research", "abbreviation": "ICPSR", "url": "https://fairsharing.org/10.25504/FAIRsharing.y0df7m", "doi": "10.25504/FAIRsharing.y0df7m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ICPSR is a data archive of behavioral and social science research data. An international consortium of more than 750 academic institutions and research organizations, ICPSR provides leadership and training in data access, curation, and methods of analysis for the social science research community. ICPSR is a CoreTrustSeal core certified repository and was a 2019 United States National Medal for Museum and Library Service recipient, the nation\u2019s highest honor given to museums and libraries that make significant and exceptional contributions to their communities.", "publications": [], "licence-links": [{"licence-name": "ICPSR Privacy Policy", "licence-id": 417, "link-id": 307, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2159", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:03.503Z", "metadata": {"doi": "10.25504/FAIRsharing.6erywc", "name": "Experimental data repository for KInetic MOdels of biological SYStems", "status": "ready", "contacts": [{"contact-name": "Rafael S Costa", "contact-email": "rcosta@kdbio.inesc-id.pt"}], "homepage": "http://www.kimosys.org", "identifier": 2159, "description": "KiMoSys is a user-friendly platform that includes a public data repository of relevant published measurements, including metabolite concentrations (time-series and steady-state), flux data, and enzyme measurements in order to build ODE-based kinetic model. It is designed to search, exchange and disseminate experimental data (and associated kinetic models) for the systems modeling community.", "abbreviation": "KiMoSys", "support-links": [{"url": "kimosys@kdbio.inesc-id.pt", "type": "Support email"}, {"url": "http://www.kimosys.org/documentation", "type": "Help documentation"}, {"url": "https://twitter.com/KiMoSys_", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "http://www.kimosys.org/repository#contribute", "name": "submit", "type": "data curation"}, {"url": "http://www.kimosys.org/repository#search", "name": "search", "type": "data access"}, {"url": "https://www.kimosys.org/users/sign_up", "name": "register / login", "type": "data access"}], "associated-tools": [{"url": "https://www.kimosys.org/dynamic/tools", "name": "Kimosys tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011562", "name": "re3data:r3d100011562", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000631", "bsg-d000631"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science", "Metabolomics"], "domains": ["Reaction data", "Metabolite", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": ["Fluxomics"], "countries": ["Portugal"], "name": "FAIRsharing record for: Experimental data repository for KInetic MOdels of biological SYStems", "abbreviation": "KiMoSys", "url": "https://fairsharing.org/10.25504/FAIRsharing.6erywc", "doi": "10.25504/FAIRsharing.6erywc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KiMoSys is a user-friendly platform that includes a public data repository of relevant published measurements, including metabolite concentrations (time-series and steady-state), flux data, and enzyme measurements in order to build ODE-based kinetic model. It is designed to search, exchange and disseminate experimental data (and associated kinetic models) for the systems modeling community.", "publications": [{"id": 1905, "pubmed_id": 33247931, "title": "KiMoSys 2.0: an upgraded database for submitting, storing and accessing experimental data for kinetic modeling.", "year": 2020, "url": "http://doi.org/baaa093", "authors": "Mochao H,Barahona P,Costa RS", "journal": "Database (Oxford)", "doi": "baaa093", "created_at": "2021-09-30T08:25:54.205Z", "updated_at": "2021-09-30T08:25:54.205Z"}, {"id": 2172, "pubmed_id": 25115331, "title": "KiMoSys: a web-based repository of experimental data for KInetic MOdels of biological SYStems", "year": 2014, "url": "http://doi.org/10.1186/s12918-014-0085-3", "authors": "R.S. Costa, A. Verissimo, S. Vinga", "journal": "BMC Systems Biology", "doi": "10.1186/s12918-014-0085-3", "created_at": "2021-09-30T08:26:24.765Z", "updated_at": "2021-09-30T08:26:24.765Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2437, "relation": "undefined"}, {"licence-name": "Sanger Terms and Conditions of Use", "licence-id": 725, "link-id": 2438, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 2439, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2283", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-19T10:01:57.000Z", "updated-at": "2021-12-06T10:48:30.373Z", "metadata": {"doi": "10.25504/FAIRsharing.ekj9zx", "name": "Standards for Reporting Enzymology Data Database", "status": "ready", "contacts": [{"contact-name": "Carsten Kettner", "contact-email": "strenda@beilstein-institut.de", "contact-orcid": "0000-0002-8697-6842"}], "homepage": "https://www.beilstein-strenda-db.org/strenda/", "citations": [{"doi": "10.1111/febs.14427", "pubmed-id": 29498804, "publication-id": 3082}], "identifier": 2283, "description": "STRENDA DB is a storage and search platform supported by the Beilstein-Institut that incorporates the STRENDA Guidelines in a user-friendly, web-based system. If you are an author who is preparing a manuscript containing functional enzymology data, STRENDA DB provides you the means to ensure that your data sets are complete and valid before you submit them as part of a publication to a journal. Data entered in the STRENDA DB submission form are automatically checked for compliance with the STRENDA Guidelines; users receive warnings informing them when necessary information is missing. A successful formal compliance is confirmed by the awarding of a STRENDA Registry Number (SRN) and documented in a fact sheet (PDF) containing all input data that can be submitted with the manuscript to the journal. In addition, each dataset is assigned a DOI that allows reference and tracking of the data. The data become publicly available in the database only after the corresponding article has been peer-reviewed and published in a journal.", "abbreviation": "STRENDA DB", "support-links": [{"url": "strenda-db-service@beilstein-institut.de", "name": "General Contact", "type": "Support email"}, {"url": "https://www.beilstein-strenda-db.org/strenda/help/helpOverview.xhtml", "name": "Help", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://www.beilstein-strenda-db.org/strenda/admin/manageManuscripts.xhtml#", "name": "Data Submission (Login Required)", "type": "data access"}, {"url": "https://www.beilstein-strenda-db.org/strenda/public/query.xhtml", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012329", "name": "re3data:r3d100012329", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_017422", "name": "SciCrunch:RRID:SCR_017422", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000757", "bsg-d000757"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Enzymology"], "domains": ["Reaction data", "Assay", "Protocol", "Enzyme", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Standards for Reporting Enzymology Data Database", "abbreviation": "STRENDA DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ekj9zx", "doi": "10.25504/FAIRsharing.ekj9zx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: STRENDA DB is a storage and search platform supported by the Beilstein-Institut that incorporates the STRENDA Guidelines in a user-friendly, web-based system. If you are an author who is preparing a manuscript containing functional enzymology data, STRENDA DB provides you the means to ensure that your data sets are complete and valid before you submit them as part of a publication to a journal. Data entered in the STRENDA DB submission form are automatically checked for compliance with the STRENDA Guidelines; users receive warnings informing them when necessary information is missing. A successful formal compliance is confirmed by the awarding of a STRENDA Registry Number (SRN) and documented in a fact sheet (PDF) containing all input data that can be submitted with the manuscript to the journal. In addition, each dataset is assigned a DOI that allows reference and tracking of the data. The data become publicly available in the database only after the corresponding article has been peer-reviewed and published in a journal.", "publications": [{"id": 3082, "pubmed_id": 29498804, "title": "STRENDA DB: enabling the validation and sharing of enzyme kinetics data", "year": 2018, "url": "http://doi.org/10.1111/febs.14427", "authors": "Swainston, N., Baici, A., Bakker, B.M., et al.", "journal": "The FEBS J.", "doi": "10.1111/febs.14427", "created_at": "2021-09-30T08:28:19.739Z", "updated_at": "2021-09-30T08:28:19.739Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2125, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2500", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-07T10:39:04.000Z", "updated-at": "2021-12-06T10:47:46.092Z", "metadata": {"doi": "10.25504/FAIRsharing.1frnts", "name": "UK Solar System Data Centre Data Archive", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "support@ukssdc.ac.uk"}], "homepage": "https://www.ukssdc.ac.uk", "identifier": 2500, "description": "The UK Solar System Data Centre (UKSSDC) is the Natural Environment Research Council's (NERC) Designated Data Centre for the Solar terrestrial physics and chemistry. It provides a central archive and data centre facility for Solar System science in the UK. The UKSSDC supports data archives for the whole UK solar system community encompassing solar, inter-planetary, magnetospheric, ionospheric and geomagnetic science. The UKSSDC is part of RAL Space based at the STFC run Rutherford Appleton Laboratory in Oxfordshire.", "abbreviation": "UKSSDC", "support-links": [{"url": "https://www.ukssdc.ac.uk/contact.html", "name": "Contact form", "type": "Contact form"}, {"url": "http://www.nerc.ac.uk/research/sites/data/doi/", "name": "NERC DOI Information", "type": "Help documentation"}], "year-creation": 2004, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010714", "name": "re3data:r3d100010714", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000982", "bsg-d000982"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geophysics", "Astrophysics and Astronomy", "Earth Science", "Atmospheric Science"], "domains": ["Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UK Solar System Data Centre Data Archive", "abbreviation": "UKSSDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.1frnts", "doi": "10.25504/FAIRsharing.1frnts", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UK Solar System Data Centre (UKSSDC) is the Natural Environment Research Council's (NERC) Designated Data Centre for the Solar terrestrial physics and chemistry. It provides a central archive and data centre facility for Solar System science in the UK. The UKSSDC supports data archives for the whole UK solar system community encompassing solar, inter-planetary, magnetospheric, ionospheric and geomagnetic science. The UKSSDC is part of RAL Space based at the STFC run Rutherford Appleton Laboratory in Oxfordshire.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2894", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-10T10:22:08.000Z", "updated-at": "2022-02-08T10:31:30.696Z", "metadata": {"doi": "10.25504/FAIRsharing.a308a0", "name": "DDBJ BioProject", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "trace@ddbj.nig.ac.jp"}], "homepage": "https://www.ddbj.nig.ac.jp/bioproject/index-e.html", "citations": [], "identifier": 2894, "description": "The DDBJ BioProject resource organizes both the projects and the data from those projects which is deposited into several archival databases maintained by members of the INSDC. This allows searching by characteristics of these projects, using the project description and project content across the INSDC-associated databases. It works in partnership with the NCBI BioProject repository.", "abbreviation": "DDBJ BioProject", "support-links": [{"url": "https://www.ddbj.nig.ac.jp/contact-e.html", "name": "DDBJ Contact Form", "type": "Contact form"}, {"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html?tag=bioproject", "name": "BioProject FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ddbj.nig.ac.jp/bioproject/submission-e.html", "name": "General Information and Submission", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://ddbj.nig.ac.jp/BPSearch/", "name": "Search", "type": "data access"}, {"url": "ftp://ftp.ddbj.nig.ac.jp/ddbj_database/bioproject", "name": "Download", "type": "data release"}, {"url": "https://ddbj.nig.ac.jp/D-way/", "name": "Submit", "type": "data curation"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001395", "bsg-d001395"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Experimental measurement", "Annotation", "Genomic assembly", "Protocol", "Sequencing", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: DDBJ BioProject", "abbreviation": "DDBJ BioProject", "url": "https://fairsharing.org/10.25504/FAIRsharing.a308a0", "doi": "10.25504/FAIRsharing.a308a0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The DDBJ BioProject resource organizes both the projects and the data from those projects which is deposited into several archival databases maintained by members of the INSDC. This allows searching by characteristics of these projects, using the project description and project content across the INSDC-associated databases. It works in partnership with the NCBI BioProject repository.", "publications": [], "licence-links": [{"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 2269, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2316", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T14:13:55.000Z", "updated-at": "2021-11-24T13:19:32.294Z", "metadata": {"doi": "10.25504/FAIRsharing.9jpd3v", "name": "Berkeley Drosophila Transcription Network Project", "status": "deprecated", "contacts": [{"contact-name": "David Knowles", "contact-email": "dwknowles@lbl.gov"}], "homepage": "http://bdtnp.lbl.gov:8080/Fly-Net/", "identifier": 2316, "description": "A database containing the expression patterns of hundreds of Drosophila genes in 3D at cellular resolution.", "abbreviation": "BDTNP", "year-creation": 2002, "associated-tools": [{"url": "http://bdtnp.lbl.gov/Fly-Net/bioimaging.jsp?w=pcx", "name": "PointCloudXplore"}, {"url": "http://bdtnp.lbl.gov/Fly-Net/bioimaging.jsp?w=analysis", "name": "PointCloudToolbox"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000792", "bsg-d000792"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Developmental Biology", "Life Science"], "domains": ["Bioimaging"], "taxonomies": ["Drosophila"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Berkeley Drosophila Transcription Network Project", "abbreviation": "BDTNP", "url": "https://fairsharing.org/10.25504/FAIRsharing.9jpd3v", "doi": "10.25504/FAIRsharing.9jpd3v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database containing the expression patterns of hundreds of Drosophila genes in 3D at cellular resolution.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2319", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T14:54:25.000Z", "updated-at": "2021-11-24T13:19:32.450Z", "metadata": {"doi": "10.25504/FAIRsharing.nv1n5s", "name": "Liverpool CCI OMERO", "status": "ready", "contacts": [{"contact-name": "Facility Manager", "contact-email": "cci@liv.ac.uk"}], "homepage": "http://cci02.liv.ac.uk/gallery/", "identifier": 2319, "description": "A repository of image / SPM data to support users of the Centre for Cell Imaging, University of Liverpool.", "year-creation": 2014}, "legacy-ids": ["biodbcore-000795", "bsg-d000795"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Bioimaging"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Liverpool CCI OMERO", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.nv1n5s", "doi": "10.25504/FAIRsharing.nv1n5s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A repository of image / SPM data to support users of the Centre for Cell Imaging, University of Liverpool.", "publications": [{"id": 1353, "pubmed_id": null, "title": "The Spherical Nucleic Acids mRNA Detection Paradox", "year": 2015, "url": "http://doi.org/10.14293/S2199-1006.1.SOR-CHEM.AZ1MJU.v2", "authors": "D Mason, G Carolan, M Held, J Comenge, S Cowman, R L\u00e9vy", "journal": "Science Open", "doi": "10.14293/S2199-1006.1.SOR-CHEM.AZ1MJU.v2", "created_at": "2021-09-30T08:24:51.394Z", "updated_at": "2021-09-30T08:24:51.394Z"}, {"id": 1354, "pubmed_id": 27009190, "title": "Selectivity in glycosaminoglycan binding dictates the distribution and diffusion of fibroblast growth factors in the pericellular matrix.", "year": 2016, "url": "http://doi.org/10.1098/rsob.150277", "authors": "Sun C,Marcello M,Li Y,Mason D,Levy R,Fernig DG", "journal": "Open Biol", "doi": "10.1098/rsob.150277", "created_at": "2021-09-30T08:24:51.501Z", "updated_at": "2021-09-30T08:24:51.501Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 442, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3305", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-11T14:04:00.000Z", "updated-at": "2022-02-08T10:36:58.201Z", "metadata": {"doi": "10.25504/FAIRsharing.d9e488", "name": "National Inventory of Natural Heritage", "status": "ready", "homepage": "https://inpn.mnhn.fr/", "identifier": 3305, "description": "The National Inventory of Natural Heritage (INPN) is a repository for data needed for the development of conservation strategies and the dissemination of information as well as national and international reports relating to the French natural heritage (plant and animal species, natural habitats and geological heritage). It was created to provide a national reference bank for French biodiversity.", "abbreviation": "INPN", "support-links": [{"url": "https://inpn.mnhn.fr/contact/contacteznous", "name": "Contact (Login required)", "type": "Contact form"}, {"url": "https://inpn.mnhn.fr/accueil/faq-foire-aux-questions", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://inpn.mnhn.fr/accueil/presentation-inpn", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/INPN_MNHN", "name": "@INPN_MNHN", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://inpn.mnhn.fr/accueil/recherche-de-donnees", "name": "Search", "type": "data access"}, {"url": "https://inpn.mnhn.fr/informations/photos/galerie", "name": "Image Search", "type": "data access"}, {"url": "https://inpn.mnhn.fr/telechargement/referentielEspece/bdc-statuts-especes", "name": "Download Knowledgebase", "type": "data release"}, {"url": "https://inpn.mnhn.fr/telechargement/referentielEspece/referentielTaxo", "name": "Download Taxonomic Repository (TAXREF)", "type": "data release"}, {"url": "https://inpn.mnhn.fr/telechargement/referentiels/habitats", "name": "Dowload Habitat Repository", "type": "data release"}, {"url": "https://inpn.mnhn.fr/telechargement/cartes-et-information-geographique", "name": "Download Maps and Geographical Information", "type": "data release"}]}, "legacy-ids": ["biodbcore-001820", "bsg-d001820"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Geology", "Paleontology", "Ecology", "Biodiversity", "Mineralogy", "Natural History", "Biology"], "domains": ["Geographical location"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: National Inventory of Natural Heritage", "abbreviation": "INPN", "url": "https://fairsharing.org/10.25504/FAIRsharing.d9e488", "doi": "10.25504/FAIRsharing.d9e488", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Inventory of Natural Heritage (INPN) is a repository for data needed for the development of conservation strategies and the dissemination of information as well as national and international reports relating to the French natural heritage (plant and animal species, natural habitats and geological heritage). It was created to provide a national reference bank for French biodiversity.", "publications": [], "licence-links": [{"licence-name": "INPN Legal Notice (French only)", "licence-id": 443, "link-id": 619, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2695", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-01T18:28:49.000Z", "updated-at": "2021-11-24T13:14:55.941Z", "metadata": {"name": "DEB Register", "status": "ready", "contacts": [{"contact-name": "Peter C van den Akker", "contact-email": "p.c.van.den.akker@umcg.nl"}], "homepage": "https://www.deb-central.org", "identifier": 2695, "description": "International Dystrophic Epidermolysis Bullosa Patient Registry (DEB Register) provides phenotypic and genotypic information on DEB and the related COL7A1 mutations. The registry is intended to aid in disease diagnosis, genetic counseling, and discovery of novel insights.", "abbreviation": "DEB Register", "support-links": [{"url": "https://www.deb-central.org/menu/main/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.deb-central.org/menu/main/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.deb-central.org/menu/main/background", "name": "Background", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://www.deb-central.org/menu/main/dataexplorer?entity=Mutations&hideselect=true", "name": "Browse and Search Mutations", "type": "data access"}, {"url": "https://www.deb-central.org/menu/main/dataexplorer?entity=Publications&hideselect=true", "name": "Publication browse & search", "type": "data access"}, {"url": "https://www.deb-central.org/menu/main/dataexplorer?entity=Patients", "name": "Browse and Search Patients", "type": "data access"}]}, "legacy-ids": ["biodbcore-001192", "bsg-d001192"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Human Genetics", "Biomedical Science"], "domains": ["Genotyping", "Mutation", "Phenotype", "Diagnosis", "Gene", "Gene-disease association", "Genetic disorder", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Functional impact of genetic variants"], "countries": ["United Kingdom", "Italy", "Austria", "Netherlands", "Germany"], "name": "FAIRsharing record for: DEB Register", "abbreviation": "DEB Register", "url": "https://fairsharing.org/fairsharing_records/2695", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: International Dystrophic Epidermolysis Bullosa Patient Registry (DEB Register) provides phenotypic and genotypic information on DEB and the related COL7A1 mutations. The registry is intended to aid in disease diagnosis, genetic counseling, and discovery of novel insights.", "publications": [{"id": 252, "pubmed_id": 22058051, "title": "The COL7A1 mutation database.", "year": 2011, "url": "http://doi.org/10.1002/humu.21651", "authors": "Wertheim-Tysarowska K,Sobczynska-Tomaszewska A,Kowalewski C,Skronski M,Swieckowski G,Kutkowska-Kazmierczak A,Wozniak K,Bal J", "journal": "Hum Mutat", "doi": "10.1002/humu.21651", "created_at": "2021-09-30T08:22:47.190Z", "updated_at": "2021-09-30T08:22:47.190Z"}, {"id": 2713, "pubmed_id": 21681854, "title": "The international dystrophic epidermolysis bullosa patient registry: an online database of dystrophic epidermolysis bullosa patients and their COL7A1 mutations.", "year": 2011, "url": "http://doi.org/10.1002/humu.21551", "authors": "van den Akker PC,Jonkman MF,Rengaw T,Bruckner-Tuderman L,Has C,Bauer JW,Klausegger A,Zambruno G,Castiglia D,Mellerio JE,McGrath JA,van Essen AJ,Hofstra RM,Swertz MA", "journal": "Hum Mutat", "doi": "10.1002/humu.21551", "created_at": "2021-09-30T08:27:33.145Z", "updated_at": "2021-09-30T08:27:33.145Z"}, {"id": 2717, "pubmed_id": 19945622, "title": "Dystrophic epidermolysis bullosa: pathogenesis and clinical features.", "year": 2009, "url": "http://doi.org/10.1016/j.det.2009.10.020", "authors": "Bruckner-Tuderman L", "journal": "Dermatol Clin", "doi": "10.1016/j.det.2009.10.020", "created_at": "2021-09-30T08:27:33.680Z", "updated_at": "2021-09-30T08:27:33.680Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3254", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-15T16:17:51.000Z", "updated-at": "2021-11-24T13:13:58.885Z", "metadata": {"doi": "10.25504/FAIRsharing.EBhGci", "name": "COVID-19 Global Rheumatology Alliance", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "rheum.covid@gmail.com"}], "homepage": "https://rheum-covid.org/", "identifier": 3254, "description": "COVID-19 Global Rheumatology Alliance aim to collect, analyze and disseminate information about COVID-19 and rheumatology to patients, physicians and other relevant groups to improve the care of patients with rheumatic disease.", "support-links": [{"url": "https://www.facebook.com/rheumcovid/", "name": "Facebook", "type": "Facebook"}, {"url": "https://rheum-covid.org/faq-provider-entered-registry/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://rheum-covid.org/mailing-list/", "type": "Mailing list"}, {"url": "https://rheum-covid.org/downloads/translations/English_rheum-covid-provider-registry.pdf", "name": "Rheumatology COVID-19 Provider-Entered Registry", "type": "Help documentation"}, {"url": "https://global.redcap.unc.edu/surveys/?s=8LL398494N", "name": "REDcap Survey", "type": "Help documentation"}, {"url": "https://rheum-covid.org/acr20/", "type": "Help documentation"}, {"url": "https://rheum-covid.org/", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://twitter.com/rheum_covid", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://rheum-covid.org/updates/combined-data.html", "name": "Dashboard", "type": "data access"}, {"url": "https://rheum-covid.org/patient-experience-survey-update/", "name": "Patient Experience Survey Updates", "type": "data access"}]}, "legacy-ids": ["biodbcore-001768", "bsg-d001768"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Rheumatology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["Worldwide"], "name": "FAIRsharing record for: COVID-19 Global Rheumatology Alliance", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.EBhGci", "doi": "10.25504/FAIRsharing.EBhGci", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COVID-19 Global Rheumatology Alliance aim to collect, analyze and disseminate information about COVID-19 and rheumatology to patients, physicians and other relevant groups to improve the care of patients with rheumatic disease.", "publications": [{"id": 718, "pubmed_id": 32386125, "title": "Capturing Patient-Reported Outcomes During the COVID-19 Pandemic: Development of the COVID-19 Global Rheumatology Alliance Patient Experience Survey.", "year": 2020, "url": "http://doi.org/10.1002/acr.24257", "authors": "Sirotich E,Dillingham S,Grainger R,Hausmann JS", "journal": "Arthritis Care Res (Hoboken)", "doi": "10.1002/acr.24257", "created_at": "2021-09-30T08:23:39.136Z", "updated_at": "2021-09-30T08:23:39.136Z"}, {"id": 3098, "pubmed_id": 33146001, "title": "Race/ethnicity association with COVID-19 outcomes in rheumatic disease: Data from the COVID-19 Global Rheumatology Alliance Physician Registry.", "year": 2020, "url": "http://doi.org/10.1002/art.41567", "authors": "Gianfrancesco MA et al.", "journal": "Arthritis Rheumatol", "doi": "10.1002/art.41567", "created_at": "2021-09-30T08:28:21.692Z", "updated_at": "2021-09-30T08:28:21.692Z"}, {"id": 3099, "pubmed_id": 32789449, "title": "The COVID-19 Global Rheumatology Alliance: evaluating the rapid design and implementation of an international registry against best practice.", "year": 2020, "url": "http://doi.org/10.1093/rheumatology/keaa483", "authors": "Liew JW,Bhana S,Costello W,Hausmann JS,Machado PM,Robinson PC,Sirotich E,Sufka P,Wallace ZS,Yazdany J,Grainger R", "journal": "Rheumatology (Oxford)", "doi": "keaa483", "created_at": "2021-09-30T08:28:21.808Z", "updated_at": "2021-09-30T08:28:21.808Z"}, {"id": 3100, "pubmed_id": 32471903, "title": "Characteristics associated with hospitalisation for COVID-19 in people with rheumatic disease: data from the COVID-19 Global Rheumatology Alliance physician-reported registry.", "year": 2020, "url": "http://doi.org/10.1136/annrheumdis-2020-217871", "authors": "Gianfrancesco M et al.", "journal": "Ann Rheum Dis", "doi": "10.1136/annrheumdis-2020-217871", "created_at": "2021-09-30T08:28:21.927Z", "updated_at": "2021-09-30T08:28:21.927Z"}, {"id": 3108, "pubmed_id": 32374851, "title": "The Rheumatology Community responds to the COVID-19 pandemic: the establishment of the COVID-19 global rheumatology alliance.", "year": 2020, "url": "http://doi.org/10.1093/rheumatology/keaa191", "authors": "Wallace ZS,Bhana S,Hausmann JS,Robinson PC,Sufka P,Sirotich E,Yazdany J,Grainger R", "journal": "Rheumatology (Oxford)", "doi": "10.1093/rheumatology/keaa191", "created_at": "2021-09-30T08:28:22.897Z", "updated_at": "2021-09-30T08:28:22.897Z"}, {"id": 3109, "pubmed_id": 32309814, "title": "Rheumatic disease and COVID-19: initial data from the COVID-19 Global Rheumatology Alliance provider registries.", "year": 2020, "url": "http://doi.org/10.1016/S2665-9913(20)30095-3", "authors": "Gianfrancesco MA,Hyrich KL,Gossec L,Strangfeld A,Carmona L,Mateus EF,Sufka P,Grainger R,Wallace Z,Bhana S,Sirotich E,Liew J,Hausmann JS,Costello W,Robinson P,Machado PM,Yazdany J", "journal": "Lancet Rheumatol", "doi": "10.1016/S2665-9913(20)30095-3", "created_at": "2021-09-30T08:28:23.000Z", "updated_at": "2021-09-30T08:28:23.000Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2019", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:18.391Z", "metadata": {"doi": "10.25504/FAIRsharing.v11s0z", "name": "Neuroscience Information Framework", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@neuinfo.org"}], "homepage": "https://neuinfo.org", "citations": [], "identifier": 2019, "description": "NIF maintains the largest searchable collection of neuroscience data, the largest catalog of biomedical resources, and the largest ontology for neuroscience on the web.", "abbreviation": "NIF", "access-points": [{"url": "http://nif-services.neuinfo.org/servicesv1/application.wadl", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://blog.neuinfo.org/", "name": "NIF Blog", "type": "Blog/News"}, {"url": "https://neuinfo.org/about/organization", "name": "About NIF", "type": "Help documentation"}, {"url": "https://neuinfo.org/about/devsupport", "name": "Developer Support", "type": "Help documentation"}, {"url": "https://twitter.com/neuinfo", "name": "@neuinfo", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"name": "SPARQL endpoint", "type": "data access"}, {"url": "https://neuinfo.org/literature/search?q=%2A&l=", "name": "Literature browser", "type": "data access"}, {"url": "https://neuinfo.org/data/search?q=*&l=#all", "name": "Data browser", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010106", "name": "re3data:r3d100010106", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002894", "name": "SciCrunch:RRID:SCR_002894", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000485", "bsg-d000485"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Neurobiology", "Biomedical Science", "Neuroscience"], "domains": ["Annotation", "Neuron", "Resource collection", "Brain"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Neuroscience Information Framework", "abbreviation": "NIF", "url": "https://fairsharing.org/10.25504/FAIRsharing.v11s0z", "doi": "10.25504/FAIRsharing.v11s0z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NIF maintains the largest searchable collection of neuroscience data, the largest catalog of biomedical resources, and the largest ontology for neuroscience on the web.", "publications": [], "licence-links": [{"licence-name": "NIF - SciCrunch Privacy Policy", "licence-id": 580, "link-id": 2407, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 2409, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2339", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T09:59:11.000Z", "updated-at": "2021-09-30T11:39:31.934Z", "metadata": {"doi": "10.25504/FAIRsharing.pt7qd6", "name": "Banana21", "status": "deprecated", "contacts": [{"contact-name": "Contact enquiries", "contact-email": "ctcbenquiries@qut.edu.au"}], "homepage": "http://www.banana21.org/", "identifier": 2339, "description": "The vast majority of the bananas currently grown and consumed were not conventionally bred but are selections made over probably thousands of years from naturally occurring hybrids. Cultivated bananas are very nearly sterile and as a consequence are not propagated from seed but rather through vegetative propagation, primarily suckers as well as more recently micropropagated or tissue cultured bananas. These factors, very old selections, near sterility and vegetative propagation, mean that these bananas have not been genetically improved either for resistance or improved quality and are becoming increasing in affected by serious pests and diseases.", "abbreviation": "Banana21", "support-links": [{"url": "http://sefapps02.qut.edu.au/helppage/helppage.php", "type": "Help documentation"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is now a project homepage, and as such is not within our remit."}, "legacy-ids": ["biodbcore-000817", "bsg-d000817"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": [], "domains": [], "taxonomies": ["Musa", "Musa acuminata", "Musa balbisiana"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Banana21", "abbreviation": "Banana21", "url": "https://fairsharing.org/10.25504/FAIRsharing.pt7qd6", "doi": "10.25504/FAIRsharing.pt7qd6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The vast majority of the bananas currently grown and consumed were not conventionally bred but are selections made over probably thousands of years from naturally occurring hybrids. Cultivated bananas are very nearly sterile and as a consequence are not propagated from seed but rather through vegetative propagation, primarily suckers as well as more recently micropropagated or tissue cultured bananas. These factors, very old selections, near sterility and vegetative propagation, mean that these bananas have not been genetically improved either for resistance or improved quality and are becoming increasing in affected by serious pests and diseases.", "publications": [{"id": 1653, "pubmed_id": 23555698, "title": "De novo transcriptome sequence assembly and analysis of RNA silencing genes of Nicotiana benthamiana.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0059534", "authors": "Nakasugi K,Crowhurst RN,Bally J,Wood CC,Hellens RP,Waterhouse PM", "journal": "PLoS One", "doi": "10.1371/journal.pone.0059534", "created_at": "2021-09-30T08:25:25.195Z", "updated_at": "2021-09-30T08:25:25.195Z"}], "licence-links": [{"licence-name": "Queensland University of Technology Copyright Statement", "licence-id": 695, "link-id": 1363, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1978", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-28T16:29:41.814Z", "metadata": {"doi": "10.25504/FAIRsharing.g7t2hv", "name": "Sequence Read Archive", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "sra@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/sra", "citations": [], "identifier": 1978, "description": "The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", "abbreviation": "SRA", "data-curation": {}, "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/sra/docs/submitquestions/", "name": "FAQ data submission", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK47528/", "name": "SRA Handbook", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/Traces/sra", "name": "Overview", "type": "Help documentation"}, {"url": "http://www.ncbi.nlm.nih.gov/Traces/sra_sub/sub.cgi", "name": "SRA Submissions Tracking and Management", "type": "Training documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=download_reads", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/Traces/sra_sub/sub.cgi", "name": "Submit", "type": "data access"}, {"url": "https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=run_browser", "name": "Browse", "type": "data access"}, {"url": "https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=search_obj", "name": "Search", "type": "data access"}, {"url": "http://blast.ncbi.nlm.nih.gov/Blast.cgi?PROGRAM=blastn&BLAST_PROGRAMS=megaBlast&PAGE_TYPE=BlastSearch&BLAST_SPEC=SRA&SHOW_DEFAULTS=on", "name": "Blast", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/Traces/study/", "name": "SRA Run/File Selector", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/sra/advanced", "name": "Advanced search", "type": "data access"}], "associated-tools": [{"url": "https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software", "name": "NCBI SRA Toolkit"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010775", "name": "re3data:r3d100010775", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004891", "name": "SciCrunch:RRID:SCR_004891", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000444", "bsg-d000444"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Nucleic acid sequence alignment", "DNA sequence data", "Nucleotide", "Sequence alignment", "Sequence", "Gene", "Allele"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Sequence Read Archive", "abbreviation": "SRA", "url": "https://fairsharing.org/10.25504/FAIRsharing.g7t2hv", "doi": "10.25504/FAIRsharing.g7t2hv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", "publications": [{"id": 757, "pubmed_id": 18045790, "title": "Database resources of the National Center for Biotechnology Information", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1000", "authors": "Wheeler DL, et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm1000", "created_at": "2021-09-30T08:23:43.345Z", "updated_at": "2021-09-30T08:23:43.345Z"}, {"id": 2260, "pubmed_id": 22009675, "title": "The Sequence Read Archive: explosive growth of sequencing data.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr854", "authors": "Kodama Y., Shumway M., Leinonen R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr854", "created_at": "2021-09-30T08:26:34.948Z", "updated_at": "2021-09-30T08:26:34.948Z"}, {"id": 2285, "pubmed_id": 25960871, "title": "Investigation into the annotation of protocol sequencing steps in the sequence read archive.", "year": 2015, "url": "http://doi.org/10.1186/s13742-015-0064-7", "authors": "Alnasir J,Shanahan HP", "journal": "Gigascience", "doi": "10.1186/s13742-015-0064-7", "created_at": "2021-09-30T08:26:38.444Z", "updated_at": "2021-09-30T08:26:38.444Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1452, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1453, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3287", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-12T09:15:24.000Z", "updated-at": "2021-11-24T13:13:59.095Z", "metadata": {"doi": "10.25504/FAIRsharing.dtSZ38", "name": "Coronavirus and Celiac Disease Reporting Database", "status": "ready", "contacts": [{"contact-name": "Benjamin Lebwohl", "contact-email": "BL114@cumc.columbia.edu", "contact-orcid": "0000-0001-9422-4774"}], "homepage": "https://covidceliac.org/", "identifier": 3287, "description": "Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-Celiac) is an international, pediatric and adult database to monitor and report on outcomes of COVID-19 occurring in patients with celiac disease. We encourage clinicians worldwide to report ALL cases of COVID-19 in patients with celiac disease, regardless of severity (including asymptomatic patients detected through public health screening).", "support-links": [{"url": "cb2280@columbia.edu", "name": "Peter H. R. Green", "type": "Support email"}, {"url": "https://covidceliac.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cumc.co1.qualtrics.com/jfe/form/SV_ctP9fNkvSAW7LWR", "name": "Report a case", "type": "Help documentation"}, {"url": "https://static1.squarespace.com/static/5e82753e7fec9d4262763233/t/5e8bdde28381940352cc6ac3/1586224610163/casereportform.pdf", "name": "SECURE-Celiac Case Report Form", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://covidceliac.org/data", "name": "Data summary", "type": "data access"}, {"url": "https://ucalgary.maps.arcgis.com/apps/opsdashboard/index.html#/ab039cfba96246d2aacd9d926a9e4100", "name": "Map", "type": "data access"}]}, "legacy-ids": ["biodbcore-001802", "bsg-d001802"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["celiac disease", "COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Coronavirus and Celiac Disease Reporting Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.dtSZ38", "doi": "10.25504/FAIRsharing.dtSZ38", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Surveillance Epidemiology of Coronavirus Under Research Exclusion (SECURE-Celiac) is an international, pediatric and adult database to monitor and report on outcomes of COVID-19 occurring in patients with celiac disease. We encourage clinicians worldwide to report ALL cases of COVID-19 in patients with celiac disease, regardless of severity (including asymptomatic patients detected through public health screening).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3289", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-12T09:36:58.000Z", "updated-at": "2021-11-24T13:13:59.242Z", "metadata": {"doi": "10.25504/FAIRsharing.SUv0eF", "name": "SECURE-Sickle Cell Disease Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "covid.sicklecell@mcw.edu"}], "homepage": "https://covidsicklecell.org/", "identifier": 3289, "description": "This registry is designed to capture pediatric and adult COVID-19 cases that are occurring across the world in patients living with sickle cell disease. The goal of the registry is to report on outcomes of cases of COVID-19 in this population of patients.", "abbreviation": "Secure-SCD Registry", "support-links": [{"url": "ashimasingh@mcw.edu", "name": "Ashima Singh", "type": "Support email"}, {"url": "https://covidsicklecell.org/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://covidsicklecell.org/about/", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://covidsicklecell.org/wp-content/uploads/2020/04/SecureCOVID19SCD_CovidSickleCe-1.pdf", "name": "Secure COVID-19 SCD", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://redcap.mcw.edu/surveys/?s=JYNCNPPNJX", "name": "Report a case", "type": "data curation"}, {"url": "https://covidsicklecell.org/updates-data/", "name": "Updates & Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001804", "bsg-d001804"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry", "sickle cell disease", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: SECURE-Sickle Cell Disease Registry", "abbreviation": "Secure-SCD Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.SUv0eF", "doi": "10.25504/FAIRsharing.SUv0eF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This registry is designed to capture pediatric and adult COVID-19 cases that are occurring across the world in patients living with sickle cell disease. The goal of the registry is to report on outcomes of cases of COVID-19 in this population of patients.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3292", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-16T09:26:32.000Z", "updated-at": "2021-11-24T13:13:59.335Z", "metadata": {"doi": "10.25504/FAIRsharing.clSFul", "name": "Coronavirus and Atopic Dermatitis (AD) / Alopecia Reporting Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@nisrsolutions.com"}], "homepage": "https://www.secure-derm.com/", "identifier": 3292, "description": "Given the interest in the emerging and evolving coronavirus (COVID-19) pandemic and the questions regarding how this will impact patients with atopic dermatitis (AD) or alopecia who are treated with or without systemic immunomodulating medication, we have created a number of secure, online, de-identified Personal Health Identifier (PHI) \u2013 free reporting registries and an anonymous patient reported survey.", "abbreviation": "SECURE-DERM", "support-links": [{"url": "covid.ad@nisrsolutions.com", "name": "SECURE-AD Physician", "type": "Support email"}, {"url": "secureADpatients@gmail.com", "name": "SECURE-AD Patient", "type": "Support email"}, {"url": "covid.alopecia@nisrsolutions.com", "name": "SECURE-Alopecia", "type": "Support email"}, {"url": "https://www.secure-derm.com/secure-alopecia/", "name": "Report cases of COVID-19 in alopecia patients treated", "type": "Help documentation"}, {"url": "https://www.secure-derm.com/secure-pad/", "name": "Report experience with COVID-19 infection (for people with atopic dermatitis)", "type": "Help documentation"}, {"url": "https://www.secure-derm.com/secure-ad-physician/", "name": "Report cases of COVID-19 in AD patients", "type": "Help documentation"}, {"url": "https://twitter.com/ad_secure", "name": "SECURE-Alopecia", "type": "Twitter"}, {"url": "https://twitter.com/ad_secure", "name": "SECURE-AD", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://www.secure-derm.com/current-data-registry/", "name": "Current data SECURE-AD Physician Registry", "type": "data access"}, {"url": "https://www.secure-derm.com/current-data-patient-survey/", "name": "Current Data SECURE-AD Patient Survey", "type": "data access"}]}, "legacy-ids": ["biodbcore-001807", "bsg-d001807"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["alopecia", "atopic dermatitis", "COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["United Kingdom", "Netherlands", "Ireland"], "name": "FAIRsharing record for: Coronavirus and Atopic Dermatitis (AD) / Alopecia Reporting Database", "abbreviation": "SECURE-DERM", "url": "https://fairsharing.org/10.25504/FAIRsharing.clSFul", "doi": "10.25504/FAIRsharing.clSFul", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Given the interest in the emerging and evolving coronavirus (COVID-19) pandemic and the questions regarding how this will impact patients with atopic dermatitis (AD) or alopecia who are treated with or without systemic immunomodulating medication, we have created a number of secure, online, de-identified Personal Health Identifier (PHI) \u2013 free reporting registries and an anonymous patient reported survey.", "publications": [{"id": 186, "pubmed_id": 32562840, "title": "International collaboration and rapid harmonization across dermatologic COVID-19 registries.", "year": 2020, "url": "http://doi.org/S0190-9622(20)31148-8", "authors": "Freeman EE,McMahon DE,HruzaGJ,IrvineAD,SpulsPI,SmithCH,MahilSK,Castelo-SoccioL,CordoroKM,Lara-CorralesI,NaikHB,AlhusayenR,IngramJR,FeldmanSR,Balogh EA,Kappelman MD,Wall D,Meah N,Sinclair R,Beylot-Barry M,Fitzgerald M,French LE,Lim HW,Griffiths CEM,Flohr C", "journal": "J Am Acad Dermatol", "doi": "S0190-9622(20)31148-8", "created_at": "2021-09-30T08:22:40.431Z", "updated_at": "2021-09-30T08:22:40.431Z"}, {"id": 620, "pubmed_id": 32348554, "title": "Global reporting of cases of COVID-19 in psoriasis and atopic dermatitis: an opportunity to inform care during a pandemic.", "year": 2020, "url": "http://doi.org/10.1111/bjd.19161", "authors": "Mahil SK,Yiu ZZN,Mason KJ,Dand N,Coker B,Wall D,Fletcher G,Bosma A,Capon F,Iversen L,Langan SM,Di Meglio P,Musters AH,Prieto-Merino D,Tsakok T,Warren RB,Flohr C,Spuls PI,Griffiths CEM,Barker J,Irvine AD,Smith CH", "journal": "Br J Dermatol", "doi": "10.1111/bjd.19161", "created_at": "2021-09-30T08:23:28.227Z", "updated_at": "2021-09-30T08:23:28.227Z"}], "licence-links": [{"licence-name": "National and International Skin Registry Solutions Privacy Policy", "licence-id": 542, "link-id": 1081, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2382", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T10:55:28.000Z", "updated-at": "2021-11-24T13:19:34.305Z", "metadata": {"doi": "10.25504/FAIRsharing.dq34p2", "name": "Continuously Automated Model Evaluation", "status": "ready", "contacts": [{"contact-name": "Torsten Schwede", "contact-email": "torsten.schwede@unibas.ch", "contact-orcid": "0000-0003-2715-335X"}], "homepage": "http://cameo3d.org/", "identifier": 2382, "description": "Continuous automated benchmarking of computational protein structure prediction methods (and model quality estimation techniques). CAMEO assessment is based on blind predictions for weekly pre-released targets from PDB. Benchmarking results are made available as reference data for methods development.", "abbreviation": "CAMEO", "support-links": [{"url": "http://cameo3d.org/cameong_faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cameo3d.org/cameong_help/", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://cameo3d.org/sp/3-months/", "name": "browse protein structure", "type": "data access"}, {"url": "http://cameo3d.org/quality-estimation/", "name": "browse model quality estimation", "type": "data access"}, {"url": "http://cameo3d.org/cp/", "name": "browse contact prediction", "type": "data access"}]}, "legacy-ids": ["biodbcore-000862", "bsg-d000862"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Mathematical model", "Protein structure", "Experimental measurement", "Computational biological predictions", "Benchmarking", "Crowdsourcing", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Continuously Automated Model Evaluation", "abbreviation": "CAMEO", "url": "https://fairsharing.org/10.25504/FAIRsharing.dq34p2", "doi": "10.25504/FAIRsharing.dq34p2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Continuous automated benchmarking of computational protein structure prediction methods (and model quality estimation techniques). CAMEO assessment is based on blind predictions for weekly pre-released targets from PDB. Benchmarking results are made available as reference data for methods development.", "publications": [{"id": 1369, "pubmed_id": 23624946, "title": "The Protein Model Portal--a comprehensive resource for protein structure and model information.", "year": 2013, "url": "http://doi.org/10.1093/database/bat031", "authors": "Haas J,Roth S,Arnold K,Kiefer F,Schmidt T,Bordoli L,Schwede T", "journal": "Database (Oxford)", "doi": "10.1093/database/bat031", "created_at": "2021-09-30T08:24:53.093Z", "updated_at": "2021-09-30T08:24:53.093Z"}], "licence-links": [{"licence-name": "CAMEO Terms and Conditions of Use", "licence-id": 95, "link-id": 154, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2492", "type": "fairsharing-records", "attributes": {"created-at": "2017-09-07T03:53:06.000Z", "updated-at": "2021-12-06T10:48:30.163Z", "metadata": {"doi": "10.25504/FAIRsharing.ekdqe5", "name": "iReceptor Public Archive", "status": "ready", "contacts": [{"contact-name": "Brian Corrie", "contact-email": "bdcorrie@gmail.com", "contact-orcid": "0000-0003-3888-6495"}], "homepage": "http://ireceptor.irmacs.sfu.ca/", "citations": [], "identifier": 2492, "description": "A data repository for the storage and sharing of Adaptive Immune Receptor Repertoire data. Primary public repository for the iReceptor Platform and Scientific Gateway.", "abbreviation": "IPA", "access-points": [{"url": "https://ipa1.ireceptor.org/", "name": "IPA1 - First node in the iReceptor Public Archive (IPA) cluster", "type": "REST"}, {"url": "https://ipa2.ireceptor.org/", "name": "IPA2 - Second node in the iReceptor Public Archive (IPA) cluster", "type": "REST"}, {"url": "https://ipa3.ireceptor.org/", "name": "IPA3 - Third node in the iReceptor Public Archive (IPA) cluster", "type": "REST"}, {"url": "https://ipa4.ireceptor.org/", "name": "IPA4 - Fourth node in the iReceptor Public Archive (IPA) cluster", "type": "REST"}, {"url": "http://ipa5.ireceptor.org/", "name": "IPA5 - Fifth node in the iReceptor Public Archive (IPA) cluster", "type": "REST"}, {"url": "http://covid19-1.ireceptor.org", "name": "COVID19-1 - First AIRR COVID-19 repository", "type": "REST"}, {"url": "http://covid19-2.ireceptor.org", "name": "COVID19-2 - Second AIRR COVID-19 repository", "type": "REST"}, {"url": "http://covid19-3.ireceptor.org/", "name": "COVID19-3 - Third AIRR COVID-19 repository", "type": "REST"}, {"url": "http://covid19-4.ireceptor.org/", "name": "COVID19-4 - Fourth AIRR COVID-19 repository", "type": "REST"}], "support-links": [{"url": "http://ireceptor.irmacs.sfu.ca/news", "name": "News", "type": "Blog/News"}, {"url": "support@ireceptor.org", "name": "iReceptor Helpdesk", "type": "Support email"}, {"url": "http://www.ireceptor.org/platform/doc", "name": "iReceptor Documentation", "type": "Help documentation"}, {"url": "http://ireceptor.irmacs.sfu.ca/curation", "name": "Curation at iReceptor", "type": "Help documentation"}, {"url": "http://ireceptor.irmacs.sfu.ca/about", "name": "About iReceptor", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://gateway.ireceptor.org", "name": "Registration Required", "type": "data access"}], "associated-tools": [{"url": "http://www.ireceptor.org/platform/doc", "name": "DB Service API Documentation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012732", "name": "re3data:r3d100012732", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000974", "bsg-d000974"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Immunogenetics", "Immunology", "Virology", "Life Science", "Epidemiology"], "domains": ["B cell receptor complex", "T cell receptor complex", "Antibody", "Receptor", "Curated information", "Literature curation"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Canada"], "name": "FAIRsharing record for: iReceptor Public Archive", "abbreviation": "IPA", "url": "https://fairsharing.org/10.25504/FAIRsharing.ekdqe5", "doi": "10.25504/FAIRsharing.ekdqe5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A data repository for the storage and sharing of Adaptive Immune Receptor Repertoire data. Primary public repository for the iReceptor Platform and Scientific Gateway.", "publications": [{"id": 2539, "pubmed_id": 29944754, "title": "iReceptor: A platform for querying and analyzing antibody/B\u2010cell and T\u2010cell receptor repertoire data across federated repositories", "year": 2018, "url": "http://doi.org/10.1111/imr.12666", "authors": "Brian D. Corrie, Nishanth Marthandan, Bojan Zimonja, Jerome Jaglale, Yang Zhou, Emily Barr, Nicole Knoetze, Frances M. W. Breden, Scott Christley, Jamie K. Scott, Lindsay G. Cowell, Felix Breden", "journal": "Immunological Reviews", "doi": "10.1111/imr.12666", "created_at": "2021-09-30T08:27:11.404Z", "updated_at": "2021-09-30T08:27:11.404Z"}], "licence-links": [{"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 2122, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2968", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-30T15:18:38.000Z", "updated-at": "2021-12-06T10:48:21.361Z", "metadata": {"doi": "10.25504/FAIRsharing.cF5x1V", "name": "Infectious Diseases Data Observatory", "status": "ready", "contacts": [{"contact-name": "Professor Philippe Gu\u00e9rin", "contact-email": "info@iddo.org", "contact-orcid": "0000-0002-6333-0109"}], "homepage": "https://www.iddo.org/", "identifier": 2968, "description": "The Infectious Diseases Data Observatory (IDDO) assembles clinical, laboratory and epidemiological data on a collaborative platform to be shared with the research and humanitarian communities. The data are analysed to generate reliable evidence and innovative resources that enable research-driven responses to the major challenges of emerging and neglected infections. Data is organized into research themes, with both submitters storing and requesters asking for data via the central IDDO platform. Certain data (listed in data inventories or available via various portals) is available publicly, while the rest must be applied and permission received for.", "abbreviation": "IDDO", "support-links": [{"url": "https://www.linkedin.com/company/iddo---infectious-diseases-data-observatory/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://www.iddo.org/news", "name": "News", "type": "Blog/News"}, {"url": "comms@iddo.org", "name": "Communications Team", "type": "Support email"}, {"url": "https://iddo.us2.list-manage.com/subscribe?u=fd49ccbdae5a59ea957607de1&id=04f4ad3433", "name": "IDDO newsletter", "type": "Mailing list"}, {"url": "https://www.iddo.org/research-themes", "name": "Research Themes", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/ebola", "name": "Ebola Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/covid-19", "name": "COVID 19 Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/malaria", "name": "Malaria Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/medicine-quality", "name": "Medicine Quality Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/antimicrobial-resistance", "name": "Antimicrobial Resistance Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/schistosomiasis-sths", "name": "Schistosomiasis and STHs Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/chagas-disease", "name": "Chagas Disease Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/prospective-disease-platforms", "name": "Prospective Disease Platforms Theme", "type": "Help documentation"}, {"url": "https://www.iddo.org/tools-and-resources", "name": "Tools and Resources", "type": "Help documentation"}, {"url": "https://www.iddo.org/about-us/our-work", "name": "About", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UC71fat27jtH6sAQttB4m76A", "name": "Youtube", "type": "Video"}, {"url": "https://www.iddo.org/document/iddo-data-access-journey", "name": "IDDO Data Access Journey", "type": "Help documentation"}, {"url": "https://www.iddo.org/research-themes/visceral-leishmaniasis", "name": "VL Theme", "type": "Help documentation"}, {"url": "https://twitter.com/IDDOnews", "name": "@IDDOnews", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://www.iddo.org/data-sharing/contributing-data", "name": "Contributing Data", "type": "data curation"}, {"url": "https://www.iddo.org/data-sharing/accessing-data", "name": "Accessing Data", "type": "data access"}, {"url": "https://www.iddo.org/mqmglobe/", "name": "Medicine Quality Theme: MQM Globe", "type": "data access"}, {"url": "https://www.wwarn.org/explorer/app/#filter=1&Date=1977-2017&Drug=AM--AS--DHA&TreatmentType=all;mapset=1&zoom=3", "name": "Malaria Theme: WWARN Data Portal", "type": "data access"}, {"url": "https://iddo.cognitive.city/public/overview", "name": "COVID 19 Theme: Graph Viewer", "type": "data access"}, {"url": "https://www.iddo.org/vlSurveyor/#0", "name": "Visceral leishmaniasis Theme: VL Surveyor", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013358", "name": "re3data:r3d100013358", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001473", "bsg-d001473"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Public Health", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Antimicrobial", "Malaria", "Infection", "Disease"], "taxonomies": ["Coronaviridae", "ebolavirus", "Homo sapiens", "Leishmania", "Plasmodium", "Plasmodium falciparum", "Plasmodium vivax", "Schistosoma", "Trypanosoma cruzi"], "user-defined-tags": ["Antimicrobial resistance", "COVID-19"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Infectious Diseases Data Observatory", "abbreviation": "IDDO", "url": "https://fairsharing.org/10.25504/FAIRsharing.cF5x1V", "doi": "10.25504/FAIRsharing.cF5x1V", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Infectious Diseases Data Observatory (IDDO) assembles clinical, laboratory and epidemiological data on a collaborative platform to be shared with the research and humanitarian communities. The data are analysed to generate reliable evidence and innovative resources that enable research-driven responses to the major challenges of emerging and neglected infections. Data is organized into research themes, with both submitters storing and requesters asking for data via the central IDDO platform. Certain data (listed in data inventories or available via various portals) is available publicly, while the rest must be applied and permission received for.", "publications": [], "licence-links": [{"licence-name": "IDDO Privacy Notice", "licence-id": 420, "link-id": 248, "relation": "undefined"}, {"licence-name": "IDDO Terms of Use", "licence-id": 421, "link-id": 254, "relation": "undefined"}, {"licence-name": "IDDO Data Access", "licence-id": 419, "link-id": 257, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3223", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-10T14:25:24.000Z", "updated-at": "2021-11-24T13:13:58.497Z", "metadata": {"doi": "10.25504/FAIRsharing.BIZ2Nt", "name": "American Society of Clinical Oncology (ASCO) Survey on COVID-19 in Oncology Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "CENTRA@asco.org"}], "homepage": "https://www.asco.org/asco-coronavirus-information/coronavirus-registry", "identifier": 3223, "description": "The American Society of Clinical Oncology (ASCO) Survey on COVID-19 in Oncology Registry (ASCO Registry) aims to help the cancer community learn more about the patterns of symptoms and severity of COVID-19 among patients with cancer, as well as how COVID-19 is impacting the delivery of cancer care and patient outcomes. The ASCO Registry is designed to collect both baseline and follow-up data on how the virus impacts cancer care and cancer patient outcomes during the COVID-19 pandemic and into 2021.", "abbreviation": "ASCO Registry", "support-links": [{"url": "rdharve@emory.edu", "type": "Support email"}, {"url": "https://www.asco.org/sites/new-www.asco.org/files/content-files/2020-ASCO-Registry-FAQs-Updated-08-17-2020.pdf", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.asco.org/sites/new-www.asco.org/files/content-files/blog-release/documents/Final-COVID19-Registry-Study-Schema-Revised-10-6-20.pdf", "name": "Study Schema", "type": "Help documentation"}, {"url": "https://www.asco.org/asco-coronavirus-information/coronavirus-registry", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://redcap.asco.org/surveys/?s=K4RA99XHPF", "name": "ASCO Survey on COVID-19 in Oncology Registry", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.asco.org/sites/new-www.asco.org/files/content-files/2020-ASCO-Registry-FAQs-Updated-08-17-2020.pdf", "name": "Data access upon request", "type": "data access"}, {"url": "https://www.asco.org/asco-coronavirus-information/coronavirus-registry/covid-19-registry-data-dashboard", "name": "Dashboard", "type": "data access"}, {"url": "https://clinicaltrials.gov/ct2/show/NCT04659135?cond=NCT04659135&draw=2&rank=1", "name": "ASCO Survey on COVID-19 in Oncology (ASCO) Registry on ClinicalTrials.gov", "type": "data access"}]}, "legacy-ids": ["biodbcore-001737", "bsg-d001737"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Oncology", "Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Cancer", "Report", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Observations", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: American Society of Clinical Oncology (ASCO) Survey on COVID-19 in Oncology Registry", "abbreviation": "ASCO Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.BIZ2Nt", "doi": "10.25504/FAIRsharing.BIZ2Nt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The American Society of Clinical Oncology (ASCO) Survey on COVID-19 in Oncology Registry (ASCO Registry) aims to help the cancer community learn more about the patterns of symptoms and severity of COVID-19 among patients with cancer, as well as how COVID-19 is impacting the delivery of cancer care and patient outcomes. The ASCO Registry is designed to collect both baseline and follow-up data on how the virus impacts cancer care and cancer patient outcomes during the COVID-19 pandemic and into 2021.", "publications": [], "licence-links": [{"licence-name": "Information Sharing Policy of American Society of Clinical Oncology", "licence-id": 441, "link-id": 600, "relation": "undefined"}, {"licence-name": "ASCO Terms of Use", "licence-id": 44, "link-id": 601, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3244", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-10T15:01:32.000Z", "updated-at": "2021-11-24T13:13:58.576Z", "metadata": {"doi": "10.25504/FAIRsharing.dmgSOV", "name": "COVID-19 CVD Registry", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "qualityresearch@heart.org"}], "homepage": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry", "identifier": 3244, "description": "As physicians, scientists and researchers worldwide struggle to understand the novel coronavirus (COVID-19) pandemic, the American Heart Association (AHA) is developing a novel registry to aggregate data and aid research on the disease, treatment protocols and risk factors tied to adverse cardiovascular outcomes.", "support-links": [{"url": "https://app.smartsheet.com/b/form/e611a177e01640d597115b5f34a0073b", "name": "Participate in the registry", "type": "Contact form"}, {"url": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry/covid-19-cvd-registry-faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.heart.org/-/media/files/professional/quality-improvement/covid-19-cvd-registry/ahacovidcvdcrf-serial-lab-tracker-429-fillable-pdf-1.pdf?la=en", "name": "COVID-19 CVD Registry CRF Serial Lab Tracker", "type": "Help documentation"}, {"url": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry/covid-19-cvd-registry-research-opportunities", "name": "Research Opportunities utilizing data from the AHA COVID-19 CVD Registry", "type": "Help documentation"}, {"url": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry", "name": "List of participating centers", "type": "Help documentation"}, {"url": "https://www.heart.org/-/media/files/professional/quality-improvement/covid-19-cvd-registry/ahacovidcvdcrf428-fillable-pdf.pdf?la=en", "name": "COVID-19 CVD Registry CRF", "type": "Help documentation"}, {"url": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry/covid-19-cvd-registry-workshops-and-webinars", "name": "COVID-19 CVD Registry Workshops and Webinars", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.heart.org/en/professional/quality-improvement/covid-19-cvd-registry/covid-19-cvd-registry-faqs", "name": "Data access upon request", "type": "data access"}]}, "legacy-ids": ["biodbcore-001758", "bsg-d001758"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Cardiology", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Patient care", "Heart", "Cardiovascular disease"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Observations", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: COVID-19 CVD Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.dmgSOV", "doi": "10.25504/FAIRsharing.dmgSOV", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: As physicians, scientists and researchers worldwide struggle to understand the novel coronavirus (COVID-19) pandemic, the American Heart Association (AHA) is developing a novel registry to aggregate data and aid research on the disease, treatment protocols and risk factors tied to adverse cardiovascular outcomes.", "publications": [], "licence-links": [{"licence-name": "American Heart Association Copyright Notice", "licence-id": 26, "link-id": 478, "relation": "undefined"}, {"licence-name": "American Heart Association Privacy Policy", "licence-id": 27, "link-id": 479, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2017", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:42.722Z", "metadata": {"doi": "10.25504/FAIRsharing.a7p1zt", "name": "NIDA Data Share", "status": "ready", "homepage": "https://datashare.nida.nih.gov", "identifier": 2017, "description": "The NIDA Data Share web site is an electronic environment that allows data from completed clinical trials to be distributed to investigators and the public in order to promote new research, encourage further analyses, and disseminate information to the community. Secondary analyses produced from data sharing multiply the scientific contribution of the original research.", "abbreviation": "NIDA", "support-links": [{"url": "https://datashare.nida.nih.gov/contact", "type": "Contact form"}, {"url": "https://datashare.nida.nih.gov/content/frequently-asked-questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://datashare.nida.nih.gov/content/about-us", "type": "Help documentation"}, {"url": "https://datashare.nida.nih.gov/assessments", "type": "Help documentation"}], "data-processes": [{"url": "https://datashare.nida.nih.gov/data", "name": "Browse", "type": "data access"}, {"name": "Registration required for data download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000483", "bsg-d000483"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Biomedical Science", "Preclinical Studies"], "domains": ["Drug", "Addiction"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIDA Data Share", "abbreviation": "NIDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.a7p1zt", "doi": "10.25504/FAIRsharing.a7p1zt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NIDA Data Share web site is an electronic environment that allows data from completed clinical trials to be distributed to investigators and the public in order to promote new research, encourage further analyses, and disseminate information to the community. Secondary analyses produced from data sharing multiply the scientific contribution of the original research.", "publications": [{"id": 463, "pubmed_id": 20126428, "title": "The Place of Adoption in the NIDA Clinical Trials Network.", "year": 2008, "url": "http://doi.org/10.1177/002204260803800408", "authors": "Jessup MA., Guydish J., Manser ST., Tajima B.,", "journal": "J Drug Issues", "doi": "10.1177/002204260803800408", "created_at": "2021-09-30T08:23:10.342Z", "updated_at": "2021-09-30T08:23:10.342Z"}], "licence-links": [{"licence-name": "NIH NIDA Data Privacy Policy", "licence-id": 586, "link-id": 983, "relation": "undefined"}, {"licence-name": "Web Accessibility Policy for the NIH NIDA", "licence-id": 858, "link-id": 984, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2200", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T19:17:20.000Z", "updated-at": "2021-12-06T10:49:01.675Z", "metadata": {"doi": "10.25504/FAIRsharing.pr47jw", "name": "NIDDK Central Repository", "status": "ready", "contacts": [], "homepage": "https://repository.niddk.nih.gov/home/", "citations": [], "identifier": 2200, "description": "The NIDDK Central Repository stores biosamples, genetic and other data collected in designated NIDDK-funded clinical studies. The purpose of the NIDDK Central Repository is to expand the usefulness of these studies by allowing a wider research community to access data and materials beyond the end of the study.", "abbreviation": "NIDDK", "data-curation": {}, "support-links": [{"url": "https://repository.niddk.nih.gov/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://repository.niddk.nih.gov/pages/definitions/", "name": "NIDDK Definitions", "type": "Help documentation"}, {"url": "https://repository.niddk.nih.gov/user/login/?next=/contact/", "type": "Contact form"}], "year-creation": 2003, "data-processes": [{"url": "https://repository.niddk.nih.gov/search/counts/", "name": "Browse Sample Counts", "type": "data access"}, {"url": "https://repository.niddk.nih.gov/search/study/", "name": "Search Studies", "type": "data access"}, {"url": "https://repository.niddk.nih.gov/studies/ancillary/ ", "name": "Browse Ancillary Studies", "type": "data access"}, {"url": "https://repository.niddk.nih.gov/pages/overall_instructions/", "name": "Request Data", "type": "data access"}, {"url": "https://repository.niddk.nih.gov/pages/archive/", "name": "Submit Study Data", "type": "data curation"}, {"url": "https://repository.niddk.nih.gov/pages/submit_samples/", "name": "Submit Samples", "type": "data curation"}, {"url": "https://repository.niddk.nih.gov/publications/", "name": "Search for Publications", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010377", "name": "re3data:r3d100010377", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006542", "name": "SciCrunch:RRID:SCR_006542", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000674", "bsg-d000674"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Genetics", "Biomedical Science", "Preclinical Studies"], "domains": ["Kidney disease", "Phenotype", "Diabetes mellitus", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIDDK Central Repository", "abbreviation": "NIDDK", "url": "https://fairsharing.org/10.25504/FAIRsharing.pr47jw", "doi": "10.25504/FAIRsharing.pr47jw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NIDDK Central Repository stores biosamples, genetic and other data collected in designated NIDDK-funded clinical studies. The purpose of the NIDDK Central Repository is to expand the usefulness of these studies by allowing a wider research community to access data and materials beyond the end of the study.", "publications": [{"id": 725, "pubmed_id": 21959867, "title": "The NIDDK Central Repository at 8 years--ambition, revision, use and impact.", "year": 2011, "url": "http://doi.org/10.1093/database/bar043", "authors": "Turner CF, Pan H, Silk GW, Ardini MA, Bakalov V, Bryant S, Cantor S, Chang KY, DeLatte M, Eggers P, Ganapathi L, Lakshmikanthan S, Levy J, Li S, Pratt J, Pugh N, Qin Y, Rasooly R, Ray H, Richardson JE, Riley AF, Rogers SM, Scheper C, Tan S, White S, Cooley PC.", "journal": "Database", "doi": "10.1093/database/bar043", "created_at": "2021-09-30T08:23:39.896Z", "updated_at": "2021-09-30T08:23:39.896Z"}], "licence-links": [{"licence-name": "NIDDK Disclaimers", "licence-id": 889, "link-id": 2498, "relation": "applies_to_content"}, {"licence-name": "NIDDK Copyright", "licence-id": 890, "link-id": 2499, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2214", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-09T12:26:16.000Z", "updated-at": "2021-12-06T10:47:46.216Z", "metadata": {"doi": "10.25504/FAIRsharing.1h7t5t", "name": "National Database for Clinical Trials related to Mental Illness", "status": "deprecated", "contacts": [{"contact-name": "Help email", "contact-email": "NDAHelp@mail.nih.go"}], "homepage": "https://data-archive.nimh.nih.gov/ndct/", "identifier": 2214, "description": "NDCT is an informatics platform for the sharing of clinical trial data funded by the National Institute of Mental Health. NDCT is a part of the NIMH Data Archive (NDA), powered by the NDAR (National Database for Autism Research) infrastructure.", "abbreviation": "NDCT", "support-links": [{"url": "http://ndct.nimh.nih.gov/contact-us/", "type": "Contact form"}], "year-creation": 2014, "data-processes": [{"url": "http://ndct.nimh.nih.gov/querying/#tab-1", "name": "browse summary data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012481", "name": "re3data:r3d100012481", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013795", "name": "SciCrunch:RRID:SCR_013795", "portal": "SciCrunch"}], "deprecation-date": "2020-10-25", "deprecation-reason": "This resource has been merged with the NIMH Data Archive."}, "legacy-ids": ["biodbcore-000688", "bsg-d000688"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Health Science", "Biomedical Science", "Preclinical Studies"], "domains": ["Mental health"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Database for Clinical Trials related to Mental Illness", "abbreviation": "NDCT", "url": "https://fairsharing.org/10.25504/FAIRsharing.1h7t5t", "doi": "10.25504/FAIRsharing.1h7t5t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NDCT is an informatics platform for the sharing of clinical trial data funded by the National Institute of Mental Health. NDCT is a part of the NIMH Data Archive (NDA), powered by the NDAR (National Database for Autism Research) infrastructure.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2413", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-11T16:20:29.000Z", "updated-at": "2021-11-24T13:19:35.061Z", "metadata": {"doi": "10.25504/FAIRsharing.tv6fxt", "name": "PMut Data Repository", "status": "ready", "contacts": [{"contact-name": "Victor Lopez-Ferrando", "contact-email": "victor.lopez-ferrando@bsc.es"}], "homepage": "http://mmb.irbbarcelona.org/PMut/repository", "identifier": 2413, "description": "PMut Data Repository collects predictions of the pathological effect of all possible single amino acid variants on Uniref Human protein sequences. Predictions were prepared using PMut 2017 predictor (2017 version).", "abbreviation": "PMutData", "access-points": [{"url": "http://mmb.irbbarcelona.org/pmut2017/api", "name": "REST access point to PMut Data Repository", "type": "REST"}], "support-links": [{"url": "pmut@mmb.pcb.ub.es", "type": "Support email"}, {"url": "http://mmb.irbbarcelona.org/PMut/help", "type": "Help documentation"}], "year-creation": 2017, "associated-tools": [{"url": "http://mmb.irbbarcelona.org/PMut", "name": "PMut 2017"}, {"url": "http://mmb.irbbarcelona.org/pmut2017/static/PyMut.tar.gz", "name": "pyMut 1.0"}]}, "legacy-ids": ["biodbcore-000895", "bsg-d000895"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Life Science"], "domains": ["Genome annotation", "Computational biological predictions", "Genetic polymorphism"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: PMut Data Repository", "abbreviation": "PMutData", "url": "https://fairsharing.org/10.25504/FAIRsharing.tv6fxt", "doi": "10.25504/FAIRsharing.tv6fxt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PMut Data Repository collects predictions of the pathological effect of all possible single amino acid variants on Uniref Human protein sequences. Predictions were prepared using PMut 2017 predictor (2017 version).", "publications": [{"id": 1686, "pubmed_id": 28453649, "title": "PMut: a web-based tool for the annotation of pathological variants on proteins, 2017 update", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx313", "authors": "L\u00f3pez-Ferrando, V.; Gazzo, A.; De la Cruz, X.; Orozco, M.; Gelpi, J.L.", "journal": "Nucleic Acid Research", "doi": "10.1093/nar/gkx313", "created_at": "2021-09-30T08:25:28.887Z", "updated_at": "2021-09-30T08:25:28.887Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2607", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-02T13:55:53.000Z", "updated-at": "2021-12-06T10:48:41.895Z", "metadata": {"doi": "10.25504/FAIRsharing.i1F3Hb", "name": "Small angle scattering biological data bank", "status": "ready", "contacts": [{"contact-name": "Al Kikhney", "contact-email": "a.kikhney@embl-hamburg.de", "contact-orcid": "0000-0003-1321-3956"}], "homepage": "https://www.sasbdb.org/", "identifier": 2607, "description": "Curated repository for small angle scattering data and models. SASBDB contains X-ray (SAXS) and neutron (SANS) scattering data from biological macromolecules in solution.", "abbreviation": "SASBDB", "access-points": [{"url": "https://www.sasbdb.org/rest-api/docs/", "name": "REST API to obtain SASBDB information in JSON or XML format", "type": "REST"}], "support-links": [{"url": "https://www.saxier.org/forum/", "name": "Small angle scattering Forum", "type": "Forum"}, {"url": "https://www.sasbdb.org/help/", "name": "SASDB Help", "type": "Help documentation"}, {"url": "https://www.sasbdb.org/aboutSASBDB/", "name": "About SASDB", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://www.sasbdb.org/media/SASBDB_deposition_guide.pdf", "name": "SASBDB deposition guidelines", "type": "data curation"}, {"url": "https://www.sasbdb.org/browse", "name": "Browse Data", "type": "data access"}, {"url": "https://www.sasbdb.org/search/advanced/", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012273", "name": "re3data:r3d100012273", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001090", "bsg-d001090"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Molecular biology", "Life Science"], "domains": ["Protein structure"], "taxonomies": [], "user-defined-tags": ["SAXS", "Small angle scattering"], "countries": ["Germany"], "name": "FAIRsharing record for: Small angle scattering biological data bank", "abbreviation": "SASBDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.i1F3Hb", "doi": "10.25504/FAIRsharing.i1F3Hb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Curated repository for small angle scattering data and models. SASBDB contains X-ray (SAXS) and neutron (SANS) scattering data from biological macromolecules in solution.", "publications": [{"id": 2116, "pubmed_id": 25352555, "title": "SASBDB, a repository for biological small-angle scattering data", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1047", "authors": "Valentini E, Kikhney AG, Previtali G, Jeffries CM, Svergun DI", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1047", "created_at": "2021-09-30T08:26:18.580Z", "updated_at": "2021-09-30T08:26:18.580Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2961", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T12:23:51.000Z", "updated-at": "2021-12-06T10:47:27.765Z", "metadata": {"name": "Novartis Clinical Trial Results Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "icm.phfr@novartis.com"}], "homepage": "https://www.novctrd.com/CtrdWeb/home.nov", "identifier": 2961, "description": "Novartis launched the results website in 2005 becoming one of the first companies to publically post results from Phase 2b-4 interventional trials. The Novartis position evolved over time to include public disclosure of results from Phase 1- 2a interventional trials in patients.", "support-links": [{"url": "https://www.novartis.com/sites/www.novartis.com/files/clinical-trial-data-transparency.pdf", "name": "Novartis Position on Clinical Study1 Transparency Clinical Study Registration, Results Reporting and Data Sharing", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "https://www.novctrd.com/CtrdWeb/searchbyproduct.nov#A+0", "name": "Search by product", "type": "data access"}, {"url": "https://www.novctrd.com/CtrdWeb/browsebyindication.nov#Abdominal%20aortic%20aneurysm", "name": "Browse by indication", "type": "data access"}, {"url": "https://www.novctrd.com/CtrdWeb/searchbyindication.nov", "name": "Search by indication", "type": "data access"}, {"url": "https://www.novctrd.com/CtrdWeb/searchbykeyword.nov", "name": "Search by keyword", "type": "data access"}, {"url": "https://www.novctrd.com/CtrdWeb/searchbystudyid.nov", "name": "Search by study identification number", "type": "data access"}, {"url": "https://www.novctrd.com/CtrdWeb/patientlaytrialsummary.nov", "name": "Browse the trial summary for patients", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013312", "name": "re3data:r3d100013312", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001465", "bsg-d001465"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["France", "Switzerland"], "name": "FAIRsharing record for: Novartis Clinical Trial Results Database", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2961", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Novartis launched the results website in 2005 becoming one of the first companies to publically post results from Phase 2b-4 interventional trials. The Novartis position evolved over time to include public disclosure of results from Phase 1- 2a interventional trials in patients.", "publications": [], "licence-links": [{"licence-name": "Novartis Terms of use", "licence-id": 599, "link-id": 1056, "relation": "undefined"}, {"licence-name": "Novartis Privacy policy", "licence-id": 598, "link-id": 1059, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3253", "type": "fairsharing-records", "attributes": {"created-at": "2020-12-15T14:19:07.000Z", "updated-at": "2021-11-24T13:18:11.640Z", "metadata": {"doi": "10.25504/FAIRsharing.uXrXUe", "name": "Pregnancy CoRonavIrus Outcomes RegIsTrY", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "PRIORITYCOVID19@ucsf.edu"}], "homepage": "https://priority.ucsf.edu/", "identifier": 3253, "description": "PRIORITY (Pregnancy CoRonavIrus Outcomes RegIsTrY) is a nationwide study of pregnant or recently pregnant people who are either under investigation for Coronavirus infection (COVID-19) or have been confirmed to have COVID-19. This study is being done to help patients and healthcare providers better understand how COVID-19 impacts pregnant people and their newborns.", "abbreviation": "PRIORITY", "support-links": [{"url": "Vanessa.Jacoby@ucsf.edu", "name": "Vanessa Jacoby", "type": "Support email"}, {"url": "https://priority.ucsf.edu/priority-participants", "name": "For PRIORITY Participants", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://priority.ucsf.edu/healthcare-providers", "name": "https://priority.ucsf.edu/healthcare-providers", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://priority.ucsf.edu/news", "name": "PRIORITY in the News", "type": "Help documentation"}, {"url": "https://priority.ucsf.edu/researchers", "name": "Data Collection Forms", "type": "Help documentation"}, {"url": "https://redcap.ucsf.edu/surveys/?sq=e83uLmSGCv", "name": "REDcap survey", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://priority.ucsf.edu/priority-results", "name": "PRIORITY Results", "type": "data access"}, {"url": "https://priority.ucsf.edu/dashboard", "name": "Data dashboard", "type": "data access"}]}, "legacy-ids": ["biodbcore-001767", "bsg-d001767"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Observations", "Pregnancy", "registry", "Survey"], "countries": ["United States"], "name": "FAIRsharing record for: Pregnancy CoRonavIrus Outcomes RegIsTrY", "abbreviation": "PRIORITY", "url": "https://fairsharing.org/10.25504/FAIRsharing.uXrXUe", "doi": "10.25504/FAIRsharing.uXrXUe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PRIORITY (Pregnancy CoRonavIrus Outcomes RegIsTrY) is a nationwide study of pregnant or recently pregnant people who are either under investigation for Coronavirus infection (COVID-19) or have been confirmed to have COVID-19. This study is being done to help patients and healthcare providers better understand how COVID-19 impacts pregnant people and their newborns.", "publications": [{"id": 3097, "pubmed_id": 32947612, "title": "Infant Outcomes Following Maternal Infection with SARS-CoV-2: First Report from the PRIORITY Study.", "year": 2020, "url": "http://doi.org/ciaa1411", "authors": "Flaherman VJ,Afshar Y,Boscardin J,Keller RL,Mardy A,Prahl MK,Phillips C,Asiodu IV,Berghella WV,Chambers BD,Crear-Perry J,Jamieson DJ,Jacoby VL,Gaw SL", "journal": "Clin Infect Dis", "doi": "ciaa1411", "created_at": "2021-09-30T08:28:21.575Z", "updated_at": "2021-09-30T08:28:21.575Z"}], "licence-links": [{"licence-name": "UCSF Terms of Use", "licence-id": 803, "link-id": 842, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3276", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-12T08:34:56.000Z", "updated-at": "2021-11-24T13:13:58.952Z", "metadata": {"doi": "10.25504/FAIRsharing.MtkkWk", "name": "Coronavirus and MS Reporting Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@covims.org"}], "homepage": "https://www.covims.org/", "identifier": 3276, "description": "COViMS (COVID-19 Infections in MS & Related Diseases) is a joint effort of the National MS Society, Consortium of MS Centers and Multiple Sclerosis Society of Canada to capture information on outcomes of people with MS and other CNS demyelinating diseases (Neuromyelitis Optica, or MOG antibody disease) who have developed COVID-19.", "support-links": [{"url": "https://www.covims.org/questions", "type": "Contact form"}, {"url": "https://www.covims.org/faq-s", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://redcap.wustl.edu/redcap/surveys/?s=AFDYDMNXRX", "name": "Report a case", "type": "Help documentation"}, {"url": "https://a8293fa5-3baa-4764-9235-8dcab804aff4.filesusr.com/ugd/826c66_ca9e4d13bcd74db582a6bf3b21b6f33d.pdf", "name": "North American COVID-19 MS Clinical Database", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.covims.org/current-data", "name": "Summary data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001791", "bsg-d001791"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Critical Care Medicine", "Medicine", "Clinical Studies", "Health Science", "Infectious Disease Medicine", "Medical Virology", "Epidemiology"], "domains": ["Report", "Image", "Patient care"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19", "Dashboard", "Multiple Sclerosis", "Observations", "registry", "Survey"], "countries": ["Canada"], "name": "FAIRsharing record for: Coronavirus and MS Reporting Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.MtkkWk", "doi": "10.25504/FAIRsharing.MtkkWk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COViMS (COVID-19 Infections in MS & Related Diseases) is a joint effort of the National MS Society, Consortium of MS Centers and Multiple Sclerosis Society of Canada to capture information on outcomes of people with MS and other CNS demyelinating diseases (Neuromyelitis Optica, or MOG antibody disease) who have developed COVID-19.", "publications": [{"id": 895, "pubmed_id": 32951235, "title": "Multiple Sclerosis Disease-Modifying Therapies in the COVID-19 Era.", "year": 2020, "url": "http://doi.org/10.1002/ana.25907", "authors": "Ciotti JR,Grebenciucova E,Moss BP,Newsome SD", "journal": "Ann Neurol", "doi": "10.1002/ana.25907", "created_at": "2021-09-30T08:23:58.904Z", "updated_at": "2021-09-30T08:23:58.904Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2494", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T10:06:41.000Z", "updated-at": "2021-12-06T10:49:13.607Z", "metadata": {"doi": "10.25504/FAIRsharing.t1tvm9", "name": "Australian Antarctic Data Centre", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "aadcwebqueries@aad.gov.au"}], "homepage": "https://data.aad.gov.au", "identifier": 2494, "description": "The AADC manages science data from Australia's Antarctic research, maps Australia's areas of interest in the Antarctic region, manages Australia's Antarctic state of the environment reporting, and provides advice and education and a range of other products.provide long-term management of Australia's Antarctic data, thereby improving the value and impact of our scientific activities. The Data Centre is committed to the free and open exchange of scientific data, consistent with the Antarctic Treaty's position that \"to the greatest extent feasible and practicable scientific observations and results from Antarctica shall be exchanged and made freely available\".", "abbreviation": "AADC", "support-links": [{"url": "aadcwebqueries@aad.gov.au", "name": "email", "type": "Support email"}], "year-creation": 1996, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000038", "name": "re3data:r3d100000038", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006320", "name": "SciCrunch:RRID:SCR_006320", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000976", "bsg-d000976"], "fairsharing-registry": "Database", "record-type": "repository", "subjects": ["Environmental Science", "Geology", "Geophysics", "Natural Science", "Earth Science", "Atmospheric Science", "Life Science", "Oceanography", "Biology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Australian Antarctic Data Centre", "abbreviation": "AADC", "url": "https://fairsharing.org/10.25504/FAIRsharing.t1tvm9", "doi": "10.25504/FAIRsharing.t1tvm9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AADC manages science data from Australia's Antarctic research, maps Australia's areas of interest in the Antarctic region, manages Australia's Antarctic state of the environment reporting, and provides advice and education and a range of other products.provide long-term management of Australia's Antarctic data, thereby improving the value and impact of our scientific activities. The Data Centre is committed to the free and open exchange of scientific data, consistent with the Antarctic Treaty's position that \"to the greatest extent feasible and practicable scientific observations and results from Antarctica shall be exchanged and made freely available\".", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1037, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1615", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.063Z", "metadata": {"doi": "10.25504/FAIRsharing.940ayh", "name": "Model Organism Protein Expression Database", "status": "deprecated", "contacts": [{"contact-name": "Eugene Kolker", "contact-email": "eugene.kolker@seattlechildrens.org"}], "homepage": "http://moped.proteinspire.org", "identifier": 1615, "description": "Model Organism Protein Expression Database is a collection of data on protein expression sequence used in the study of clinical research.", "abbreviation": "MOPED", "year-creation": 2011, "data-processes": [{"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited,XML)", "type": "data access"}], "deprecation-date": "2019-08-13", "deprecation-reason": "This database does not appear to be available online."}, "legacy-ids": ["biodbcore-000071", "bsg-d000071"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Mass spectrum"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Model Organism Protein Expression Database", "abbreviation": "MOPED", "url": "https://fairsharing.org/10.25504/FAIRsharing.940ayh", "doi": "10.25504/FAIRsharing.940ayh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Model Organism Protein Expression Database is a collection of data on protein expression sequence used in the study of clinical research.", "publications": [{"id": 1092, "pubmed_id": 22139914, "title": "MOPED: Model Organism Protein Expression Database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1177", "authors": "Kolker E,Higdon R,Haynes W,Welch D,Broomall W,Lancet D,Stanberry L,Kolker N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1177", "created_at": "2021-09-30T08:24:20.913Z", "updated_at": "2021-09-30T11:28:58.386Z"}, {"id": 1862, "pubmed_id": 24910945, "title": "MOPED 2.5--an integrated multi-omics resource: multi-omics profiling expression database now includes transcriptomics data.", "year": 2014, "url": "http://doi.org/10.1089/omi.2014.0061", "authors": "Montague E,Stanberry L,Higdon R,Janko I,Lee E,Anderson N,Choiniere J,Stewart E,Yandl G,Broomall W,Kolker N,Kolker E", "journal": "OMICS", "doi": "10.1089/omi.2014.0061", "created_at": "2021-09-30T08:25:49.189Z", "updated_at": "2021-09-30T08:25:49.189Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1782", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.282Z", "metadata": {"doi": "10.25504/FAIRsharing.mcrd3t", "name": "Human-Transcriptome Database for Alternative Splicing", "status": "deprecated", "contacts": [{"contact-email": "hinvdb@ml.u-tokai.ac.jp"}], "homepage": "http://h-invitational.jp/h-dbas/", "identifier": 1782, "description": "H-DBAS offers unique data and viewer for human Alternative Splicing (AS) analysis including genome-wide representative alternative splicing variants (RASVs), RASVs affecting protein functions, conserved RASVs compared with mouse genome (full length cDNAs).", "abbreviation": "H-DBAS", "support-links": [{"url": "http://jbirc.jbic.or.jp/h-dbas/document/H-DBAS_manual.pdf", "type": "Help documentation"}, {"url": "http://www.youtube.com/watch?v=IbXHqZD776Y", "type": "Video"}], "year-creation": 2006, "data-processes": [{"url": "http://jbirc.jbic.or.jp/h-dbas/download.jsp", "name": "Download", "type": "data access"}, {"url": "http://h-invitational.jp/h-dbas/adv_search.jsp", "name": "advanced search", "type": "data access"}, {"url": "http://h-invitational.jp/h-dbas/comparative_genomics.jsp", "name": "analyse", "type": "data access"}, {"url": "http://www.h-invitational.jp/rnaseq4hdbas/", "name": "analyse", "type": "data access"}], "deprecation-date": "2015-09-01", "deprecation-reason": "This database is no longer active."}, "legacy-ids": ["biodbcore-000241", "bsg-d000241"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France", "Germany", "Japan"], "name": "FAIRsharing record for: Human-Transcriptome Database for Alternative Splicing", "abbreviation": "H-DBAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.mcrd3t", "doi": "10.25504/FAIRsharing.mcrd3t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: H-DBAS offers unique data and viewer for human Alternative Splicing (AS) analysis including genome-wide representative alternative splicing variants (RASVs), RASVs affecting protein functions, conserved RASVs compared with mouse genome (full length cDNAs).", "publications": [{"id": 311, "pubmed_id": 17130147, "title": "H-DBAS: alternative splicing database of completely sequenced and manually annotated full-length cDNAs based on H-Invitational.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl854", "authors": "Takeda J., Suzuki Y., Nakao M., Kuroda T., Sugano S., Gojobori T., Imanishi T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl854", "created_at": "2021-09-30T08:22:53.399Z", "updated_at": "2021-09-30T08:22:53.399Z"}, {"id": 312, "pubmed_id": 19969536, "title": "H-DBAS: human-transcriptome database for alternative splicing: update 2010.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp984", "authors": "Takeda J., Suzuki Y., Sakate R., Sato Y., Gojobori T., Imanishi T., Sugano S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp984", "created_at": "2021-09-30T08:22:53.490Z", "updated_at": "2021-09-30T08:22:53.490Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1552", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:49.273Z", "metadata": {"doi": "10.25504/FAIRsharing.s8vrb1", "name": "Apo and Holo structures DataBase", "status": "deprecated", "contacts": [{"contact-name": "Darby Tien-Hao Chang", "contact-email": "darby@mail.ncku.edu.tw"}], "homepage": "http://ahdb.ee.ncku.edu.tw/", "identifier": 1552, "description": "AH-DB (Apo and Holo structures DataBase) collects the apo and holo structure pairs of proteins. Proteins are frequently associated with other molecules to perform their functions. Experimental structures determined in the bound state are named holo structures; while structures determined in the unbound state are named apo structures.", "abbreviation": "AH-DB", "support-links": [{"url": "http://ahdb.ee.ncku.edu.tw/help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "N/A", "type": "data curation"}, {"name": "versioning by upstream databases", "type": "data versioning"}, {"name": "access to historical files not needed", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "web service", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000006", "bsg-d000006"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Structure alignment (pair)", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: Apo and Holo structures DataBase", "abbreviation": "AH-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.s8vrb1", "doi": "10.25504/FAIRsharing.s8vrb1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AH-DB (Apo and Holo structures DataBase) collects the apo and holo structure pairs of proteins. Proteins are frequently associated with other molecules to perform their functions. Experimental structures determined in the bound state are named holo structures; while structures determined in the unbound state are named apo structures.", "publications": [{"id": 805, "pubmed_id": 22084200, "title": "AH-DB: collecting protein structure pairs before and after binding.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr940", "authors": "Chang DT,Yao TJ,Fan CY,Chiang CY,Bai YH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr940", "created_at": "2021-09-30T08:23:48.786Z", "updated_at": "2021-09-30T11:28:51.683Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2964", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T14:04:36.000Z", "updated-at": "2022-01-28T13:35:17.082Z", "metadata": {"name": "Influenza Life Cycle pathway map", "status": "deprecated", "contacts": [{"contact-name": "Yukiko Matsuoka", "contact-email": "myukiko@sbi.jp", "contact-orcid": "0000-0002-5171-9096"}], "homepage": "https://www.influenza-x.org/", "citations": [], "identifier": 2964, "description": "To understand the mechanisms of influenza A viral replication and the host responses, we took the literature-based manual curation approach to construct a comprehensive influenza virus-host respoce map. The infuenza A virus (IAV) comprehensive pathway map (FluMap) was constructed by manual curation with the literature as well as various pathway databases such as Reactome, KEGG and Panther Pathway database.", "abbreviation": "FluMap", "support-links": [{"url": "http://www.influenza-x.org/flumap/About.html", "name": "About", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.influenza-x.org/flumap/Pathway.html", "name": "Access the pathway", "type": "data access"}, {"url": "https://minerva-dev.lcsb.uni.lu/minerva/index.xhtml?id=FluMap", "name": "Browse and search the pathway", "type": "data access"}, {"url": "http://www.influenza-x.org/flumap/Curation.html", "name": "Online Curation Platform (no longer available)", "type": "data curation"}], "deprecation-date": "2022-01-27", "deprecation-reason": "This resource no longer is being served by the listed homepage. No alternative homepage can be found. Please get in touch with us if you have information regarding this resource."}, "legacy-ids": ["biodbcore-001468", "bsg-d001468"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Computational biological predictions", "Disease", "Literature curation"], "taxonomies": ["Influenza virus"], "user-defined-tags": ["Drug Target"], "countries": ["Japan"], "name": "FAIRsharing record for: Influenza Life Cycle pathway map", "abbreviation": "FluMap", "url": "https://fairsharing.org/fairsharing_records/2964", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: To understand the mechanisms of influenza A viral replication and the host responses, we took the literature-based manual curation approach to construct a comprehensive influenza virus-host respoce map. The infuenza A virus (IAV) comprehensive pathway map (FluMap) was constructed by manual curation with the literature as well as various pathway databases such as Reactome, KEGG and Panther Pathway database.", "publications": [{"id": 2888, "pubmed_id": 24088197, "title": "A comprehensive map of the influenza A virus replication cycle.", "year": 2013, "url": "http://doi.org/10.1186/1752-0509-7-97", "authors": "Matsuoka Y,Matsumae H,Katoh M,Eisfeld AJ,Neumann G,Hase T,Ghosh S,Shoemaker JE,Lopes TJ,Watanabe T,Watanabe S,Fukuyama S,Kitano H,Kawaoka Y", "journal": "BMC Syst Biol", "doi": "10.1186/1752-0509-7-97", "created_at": "2021-09-30T08:27:55.649Z", "updated_at": "2021-09-30T08:27:55.649Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 487, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1730", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:25.559Z", "metadata": {"doi": "10.25504/FAIRsharing.dkbt9j", "name": "Carbohydrate Structure Database", "status": "ready", "contacts": [{"contact-name": "Philip Toukach", "contact-email": "netbox@toukach.ru"}], "homepage": "http://csdb.glycoscience.ru/bacterial", "citations": [{"doi": "10.1093/nar/gkv840", "pubmed-id": 26286194, "publication-id": 2160}], "identifier": 1730, "description": "The Carbohydrate Structure Database (CSDB) contains manually curated natural carbohydrate structures, taxonomy, bibliography, NMR data and more. The Bacterial (BCSDB) and Plant&Fungal (PFCSDB) databases were merged in 2015, becoming the CSDB, to improve the quality of content-dependent services, such as taxon clustering and NMR simulation.", "abbreviation": "CSDB", "support-links": [{"url": "http://csdb.glycoscience.ru/bacterial/core/feedback.php", "type": "Contact form"}, {"url": "netbox@toukach.ru", "type": "Support email"}, {"url": "http://csdb.glycoscience.ru/database/core/help.php?topic=examples", "name": "Examples of Usage", "type": "Help documentation"}, {"url": "http://csdb.glycoscience.ru/database/core/help.php?db=database&topic=about", "name": "About CSDB", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"name": "manual and automated", "type": "data curation"}, {"url": "http://csdb.glycoscience.ru/database/core/search_struc.shtml", "name": "(Sub)structure search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/search_gtr.html", "name": "CSDB glycosyltransferase search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/search_taxon.html", "name": "Taxonomy search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/search_biblio.shtml", "name": "Bibliography search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/search_nmr.html", "name": "NMR signal search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/search_comp.shtml", "name": "Composition search", "type": "data access"}, {"url": "http://csdb.glycoscience.ru/database/core/submit.php", "name": "Submit data", "type": "data access"}], "associated-tools": [{"url": "http://csdb.glycoscience.ru/database/core/nmrsim.html", "name": "Predict NMR"}, {"url": "http://csdb.glycoscience.ru/biopsel/grass_interface.php", "name": "NMR-based Structure Matching"}, {"url": "http://csdb.glycoscience.ru/database/core/dimers.html", "name": "Monomer and Dimer Abundance"}, {"url": "http://csdb.glycoscience.ru/integration/dsmatrix.php", "name": "Glycome-based Taxon clustering"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012862", "name": "re3data:r3d100012862", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000187", "bsg-d000187"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Carbohydrate", "Nuclear Magnetic Resonance (NMR) spectroscopy", "Cross linking", "Curated information", "Structure"], "taxonomies": ["Algae", "Archaea", "Bacteria", "Fungi", "Plantae"], "user-defined-tags": ["Glycan sequences", "Non-carbohydrate moieties"], "countries": ["Russia"], "name": "FAIRsharing record for: Carbohydrate Structure Database", "abbreviation": "CSDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.dkbt9j", "doi": "10.25504/FAIRsharing.dkbt9j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Carbohydrate Structure Database (CSDB) contains manually curated natural carbohydrate structures, taxonomy, bibliography, NMR data and more. The Bacterial (BCSDB) and Plant&Fungal (PFCSDB) databases were merged in 2015, becoming the CSDB, to improve the quality of content-dependent services, such as taxon clustering and NMR simulation.", "publications": [{"id": 665, "pubmed_id": 17202164, "title": "Sharing of worldwide distributed carbohydrate-related digital resources: online connection of the Bacterial Carbohydrate Structure DataBase and GLYCOSCIENCES.de", "year": 2007, "url": "http://doi.org/10.1093/nar/gkl883", "authors": "Ph. Toukach, H. Joshi, R. Ranzinger, Yu. Knirel, C.-W. von der Lieth", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl883", "created_at": "2021-09-30T08:23:33.402Z", "updated_at": "2021-09-30T08:23:33.402Z"}, {"id": 666, "pubmed_id": 21155523, "title": "Bacterial Carbohydrate Structure Database 3: principles and realization", "year": 2010, "url": "http://doi.org/10.1021/ci100150d", "authors": "Ph. Toukach", "journal": "J. Chem. Inf. Model.", "doi": "10.1021/ci100150d", "created_at": "2021-09-30T08:23:33.510Z", "updated_at": "2021-09-30T08:23:33.510Z"}, {"id": 2159, "pubmed_id": 18694500, "title": "Statistical analysis of the Bacterial Carbohydrate Structure Data Base (BCSDB): Characteristics and diversity of bacterial carbohydrates in comparison with mammalian glycans", "year": 2008, "url": "http://doi.org/10.1186/1472-6807-8-35", "authors": "S. Herget, Ph. Toukach, R. Ranzinger, W.E. Hull, Y. Knirel, C.-W. von der Lieth", "journal": "BMC Struct. Biol.", "doi": "10.1186/1472-6807-8-35", "created_at": "2021-09-30T08:26:23.408Z", "updated_at": "2021-09-30T08:26:23.408Z"}, {"id": 2160, "pubmed_id": 26286194, "title": "Carbohydrate structure database merged from bacterial, archaeal, plant and fungal parts.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv840", "authors": "Toukach PV,Egorova KS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv840", "created_at": "2021-09-30T08:26:23.514Z", "updated_at": "2021-09-30T11:29:30.328Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1651", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:11.320Z", "metadata": {"doi": "10.25504/FAIRsharing.s22qdj", "name": "UCSC Genome Browser database", "status": "ready", "contacts": [{"contact-name": "Public Mailing List", "contact-email": "genome@soe.ucsc.edu", "contact-orcid": null}, {"contact-name": "Private Internal Mailing List", "contact-email": "genome-www@soe.ucsc.edu", "contact-orcid": null}], "homepage": "http://genome.ucsc.edu", "citations": [], "identifier": 1651, "description": "Genome assemblies and aligned annotations for a wide range of vertebrates and model organisms, along with an integrated tool set for visualizing, comparing, analyzing and sharing both publicly available and user-generated genomic datasets.", "support-links": [{"url": "genome@soe.ucsc.edu", "type": "Support email"}, {"url": "http://genome.ucsc.edu/FAQ/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/a/soe.ucsc.edu/forum/?hl=en#!forum/genome", "type": "Forum"}, {"url": "http://genome.ucsc.edu/goldenPath/help/hgTracksHelp.html", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCQnUJepyNOw0p8s2otX4RYQ/videos", "name": "Youtube channel", "type": "Video"}, {"url": "http://genome.ucsc.edu/training.html", "type": "Training documentation"}, {"url": "https://twitter.com/GenomeBrowser", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/UCSC_Genome_Browser", "type": "Wikipedia"}, {"url": "http://genome.ucsc.edu/contacts.html", "name": "Contact Us link", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"name": "daily data releases", "type": "data release"}, {"name": "data QA", "type": "data curation"}, {"name": "versioning by genome assembly", "type": "data versioning"}, {"name": "versioning by individual annotation", "type": "data versioning"}, {"name": "access to historical files possible", "type": "data versioning"}, {"name": "file download(tab-delimited,XML)", "type": "data access"}, {"url": "http://genome.ucsc.edu/", "name": "Genome Browser", "type": "data access"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgTables", "name": "Table Browser", "type": "data access"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgNear", "name": "Gene Sorter", "type": "data access"}, {"url": "http://api.genome.ucsc.edu/", "name": "REST API returning JSON data", "type": "data access"}, {"url": "http://hgdownload.soe.ucsc.edu/downloads.html", "name": "Download Server", "type": "data access"}, {"url": "https://genome.ucsc.edu/goldenPath/help/mysql.html", "name": "MySQL data server", "type": "data access"}, {"url": "http://genome.ucsc.edu/covid19.html", "name": "COVID-19 Research at UCSC Updated: May 11, 2021", "type": "data access"}, {"url": "http://genome.ucsc.edu/singlecell.html", "name": "Single cell resources at UCSC", "type": "data access"}], "associated-tools": [{"url": "http://genome.ucsc.edu/cgi-bin/hgBlat", "name": "Blat"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgPcr", "name": "In Silico PCR"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgGenome", "name": "Genome Graphs"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgVisiGene", "name": "VisiGene"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgLiftOver", "name": "liftOver"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgVai", "name": "Variant Annotation Integrator (VAI)"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgIntegrator", "name": "Data Integrator"}, {"url": "http://genome.ucsc.edu/goldenpath/help/gbib.html", "name": "Genome Browser in a Box (virtual machine)"}, {"url": "http://genome.ucsc.edu/goldenpath/help/gbic.html", "name": "Genome Browser in the Cloud (installation script)"}, {"url": "http://api.genome.ucsc.edu/", "name": "REST API data interface"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgGeneGraph", "name": "Gene interactions and pathways from curated databases and text-mining"}, {"url": "http://genome.ucsc.edu/cgi-bin/hgPhyloPlace", "name": "UShER: Ultrafast Sample placement on Existing tRee"}, {"url": "https://cells.ucsc.edu/", "name": "UCSC Cell Browser"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010243", "name": "re3data:r3d100010243", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005780", "name": "SciCrunch:RRID:SCR_005780", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000107", "bsg-d000107"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Immunology", "Life Science", "Transcriptomics", "Comparative Genomics", "Microbiology"], "domains": ["Expression data", "DNA sequence data", "Annotation", "Sequence annotation", "Gene prediction", "Sequence composition, complexity and repeats", "DNA structural variation", "Deoxyribonucleic acid", "Ribonucleic acid", "Regulation of gene expression", "Biological regulation", "Genetic polymorphism", "Sequence alignment", "DNA microarray", "Disease phenotype", "Sequence", "Messenger RNA", "Gene", "Genome", "Regulatory region", "Indel", "Genotype"], "taxonomies": ["Ailuropoda melanoleuca", "Alligator Mississippiensis", "Balaenoptera acutorostrata scammoni", "Bos taurus", "Caenorhabditis elegans", "Callithrix jacchus", "Canis familiaris", "Cavia porcellus", "Ceratotherium simum", "Choloepus hoffmanni", "Cricetulus griseus", "Danio rerio", "Dasypus novemcinctus", "Dipodomys ordii", "Echinops telfairi", "Equus caballus", "Felis catus", "Gallus gallus", "Gorilla gorilla gorilla", "Heterocephalus glaber", "Homo sapiens", "Loxodonta africana", "Macaca mulatta", "Macropus eugenii", "Microcebus murinus", "Monodelphis domestica", "Mus musculus", "Mustela putorius furo", "Myotis lucifugus", "Nomascus leucogenys", "Ochotona princeps", "Ornithorhynchus anatinus", "Oryctolagus cuniculus", "Oryzias latipes", "Otolemur garnettii", "Ovis aries", "Pan paniscus", "Pan troglodytes", "Papio anubis", "Pongo pygmaeus abelii", "Procavia capensis", "Pteropus vampyrus", "Rattus norvegicus", "Saimiri boliviensis", "Sarcophilus harrisii", "SARS-CoV-2", "Sorex araneus", "Spermophilus tridecemlineatus", "Sus scrofa", "Takifugu rubripes", "Tarsius syrichta", "Tetraodon nigroviridis", "Trichechus manatus latirostris", "Tupaia belangeri", "Tursiops truncatus", "Vicugna pacos", "Xenopus tropicalis"], "user-defined-tags": ["COVID-19", "Uniqueness mapping"], "countries": ["United States"], "name": "FAIRsharing record for: UCSC Genome Browser database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.s22qdj", "doi": "10.25504/FAIRsharing.s22qdj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genome assemblies and aligned annotations for a wide range of vertebrates and model organisms, along with an integrated tool set for visualizing, comparing, analyzing and sharing both publicly available and user-generated genomic datasets.", "publications": [{"id": 202, "pubmed_id": 14681465, "title": "The UCSC Table Browser data retrieval tool.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh103", "authors": "Karolchik D., Hinrichs AS., Furey TS., Roskin KM., Sugnet CW., Haussler D., Kent WJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh103", "created_at": "2021-09-30T08:22:42.065Z", "updated_at": "2021-09-30T08:22:42.065Z"}, {"id": 203, "pubmed_id": 11932250, "title": "BLAT--the BLAST-like alignment tool.", "year": 2002, "url": "http://doi.org/10.1101/gr.229202", "authors": "Kent WJ.,", "journal": "Genome Res.", "doi": "10.1101/gr.229202", "created_at": "2021-09-30T08:22:42.164Z", "updated_at": "2021-09-30T08:22:42.164Z"}, {"id": 594, "pubmed_id": 15867434, "title": "Exploring relationships and mining data with the UCSC Gene Sorter", "year": 2005, "url": "http://doi.org/10.1101/gr.3694705", "authors": "Kent WJ, Hsu F, Karolchik D, Kuhn RM, Clawson H, Trumbower H, Haussler D", "journal": "Genome Res.", "doi": "10.1101/gr.3694705", "created_at": "2021-09-30T08:23:25.168Z", "updated_at": "2021-09-30T08:23:25.168Z"}, {"id": 951, "pubmed_id": 23155063, "title": "The UCSC Genome Browser database: extensions and updates 2013", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1048", "authors": "Meyer LR, Zweig AS, Hinrichs AS, Karolchik D, Kuhn RM, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1048", "created_at": "2021-09-30T08:24:05.228Z", "updated_at": "2021-09-30T11:28:55.884Z"}, {"id": 952, "pubmed_id": 23255150, "title": "The UCSC Genome Browser", "year": 2012, "url": "http://doi.org/10.1002/0471250953.bi0104s40", "authors": "Karolchik D, Hinrichs AS, Kent WJ", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0104s40", "created_at": "2021-09-30T08:24:05.321Z", "updated_at": "2021-09-30T08:24:05.321Z"}, {"id": 1010, "pubmed_id": 27899642, "title": "The UCSC Genome Browser database: 2017 update.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1134", "authors": "Tyner C, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1134", "created_at": "2021-09-30T08:24:11.831Z", "updated_at": "2021-09-30T11:28:56.717Z"}, {"id": 1301, "pubmed_id": 23193274, "title": "ENCODE data in the UCSC Genome Browser: year 5 update", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1172", "authors": "Rosenbloom KR, Sloan CA, Malladi VS, Dreszer TR, Learned K, Kirkup VM, Wong MC, Maddren M, Fang R, Heitner SG, Lee BT, Barber GP, Harte RA, Diekhans M, Long JC, Wilder SP, Zweig AS, Karolchik D, Kuhn RM, Haussler D, Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1172", "created_at": "2021-09-30T08:24:45.301Z", "updated_at": "2021-09-30T08:24:45.301Z"}, {"id": 2696, "pubmed_id": 33024970, "title": "Ultrafast Sample Placement on Existing Trees (UShER) Empowers Real-Time Phylogenetics for the SARS-CoV-2 Pandemic.", "year": 2020, "url": "http://doi.org/2020.09.26.314971", "authors": "Turakhia Y,Thornlow B,Hinrichs AS,De Maio N,Gozashti L,Lanfear R,Haussler D,Corbett-Detig R", "journal": "BioRxiv", "doi": "2020.09.26.314971", "created_at": "2021-09-30T08:27:31.080Z", "updated_at": "2021-09-30T11:28:40.294Z"}, {"id": 2700, "pubmed_id": 32266012, "title": "The UCSC repeat browser allows discovery and visualization of evolutionary conflict across repeat families.", "year": 2020, "url": "http://doi.org/10.1186/s13100-020-00208-w", "authors": "Fernandes JD,Zamudio-Hurtado A,Clawson H,Kent WJ,Haussler D,Salama SR,Haeussler M", "journal": "Mob DNA", "doi": "10.1186/s13100-020-00208-w", "created_at": "2021-09-30T08:27:31.647Z", "updated_at": "2021-09-30T08:27:31.647Z"}, {"id": 2738, "pubmed_id": 33221922, "title": "The UCSC Genome Browser database: 2021 update.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1070", "authors": "Navarro Gonzalez J,Zweig AS,Speir ML,Schmelter D,Rosenbloom KR,Raney BJ,Powell CC,Nassar LR,Maulding ND,Lee CM,Lee BT,Hinrichs AS,Fyfe AC,Fernandes JD,Diekhans M,Clawson H,Casper J,Benet-Pages A,Barber GP,Haussler D,Kuhn RM,Haeussler M,Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1070", "created_at": "2021-09-30T08:27:36.286Z", "updated_at": "2021-09-30T11:29:42.245Z"}, {"id": 2739, "pubmed_id": 32908258, "title": "The UCSC SARS-CoV-2 Genome Browser.", "year": 2020, "url": "http://doi.org/10.1038/s41588-020-0700-8", "authors": "Fernandes JD,Hinrichs AS,Clawson H,Gonzalez JN,Lee BT,Nassar LR,Raney BJ,Rosenbloom KR,Nerli S,Rao AA,Schmelter D,Fyfe A,Maulding N,Zweig AS,Lowe TM,Ares M Jr,Corbet-Detig R,Kent WJ,Haussler D,Haeussler M", "journal": "Nat Genet", "doi": "10.1038/s41588-020-0700-8", "created_at": "2021-09-30T08:27:36.404Z", "updated_at": "2021-09-30T08:27:36.404Z"}, {"id": 2875, "pubmed_id": 12045153, "title": "The human genome browser at UCSC", "year": 2002, "url": "http://doi.org/10.1101/gr.229102", "authors": "Kent WJ., Sugnet CW., Furey TS., Roskin KM., Pringle TH., Zahler AM., Haussler D.,", "journal": "Genome Res.", "doi": "10.1101/gr.229102", "created_at": "2021-09-30T08:27:53.947Z", "updated_at": "2021-09-30T08:27:53.947Z"}, {"id": 2876, "pubmed_id": 11237011, "title": "Initial sequencing and analysis of the human genome", "year": 2001, "url": "http://doi.org/10.1038/35057062", "authors": "Lander ES., Linton LM., Birren B., Nusbaum C., Zody MC., Baldwin J., Devon K., Dewar K., Doyle M., FitzHugh W., Funke R. et al.", "journal": "Nature", "doi": "10.1038/35057062", "created_at": "2021-09-30T08:27:54.057Z", "updated_at": "2021-09-30T08:27:54.057Z"}, {"id": 2877, "pubmed_id": 11544197, "title": "Assembly of the working draft of the human genome with GigAssembler.", "year": 2001, "url": "http://doi.org/10.1101/gr.183201", "authors": "Kent WJ., Haussler D.,", "journal": "Genome Res.", "doi": "10.1101/gr.183201", "created_at": "2021-09-30T08:27:54.165Z", "updated_at": "2021-09-30T08:27:54.165Z"}, {"id": 2878, "pubmed_id": 26590259, "title": "The UCSC Genome Browser database: 2016 update.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1275", "authors": "Speir ML,Zweig AS,Rosenbloom KR,Raney BJ,Paten B,Nejad P,Lee BT,Learned K,Karolchik D,Hinrichs AS,Heitner S,Harte RA,Haeussler M,Guruvadoo L,Fujita PA,Eisenhart C,Diekhans M,Clawson H,Casper J,Barber GP,Haussler D,Kuhn RM,Kent WJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1275", "created_at": "2021-09-30T08:27:54.279Z", "updated_at": "2021-09-30T11:29:47.779Z"}, {"id": 2879, "pubmed_id": 25428374, "title": "The UCSC Genome Browser database: 2015 update.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1177", "authors": "Rosenbloom KR et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1177", "created_at": "2021-09-30T08:27:54.395Z", "updated_at": "2021-09-30T11:29:47.931Z"}, {"id": 2880, "pubmed_id": 31691824, "title": "UCSC Genome Browser enters 20th year.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1012", "authors": "Lee CM, Barber GP, Casper J, Clawson H, Diekhans M, Gonzalez JN, Hinrichs AS, Lee BT, Nassar LR, Powell CC, Raney BJ, Rosenbloom KR, Schmelter D, Speir ML, Zweig AS, Haussler D, Haeussler M, Kuhn RM, Kent WJ.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkz1012", "created_at": "2021-09-30T08:27:54.514Z", "updated_at": "2021-09-30T08:27:54.514Z"}, {"id": 2881, "pubmed_id": 30407534, "title": "The UCSC Genome Browser database: 2019 update", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1095", "authors": "Haeussler M, Zweig AS, Tyner C, Speir ML, Rosenbloom KR, Raney BJ, Lee CM, Lee BT, Hinrichs AS, Gonzalez JN, Gibson D, Diekhans M, Clawson H, Casper J, Barber GP, Haussler D, Kuhn RM, Kent WJ.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gky1095", "created_at": "2021-09-30T08:27:54.673Z", "updated_at": "2021-09-30T08:27:54.673Z"}, {"id": 2882, "pubmed_id": 29106570, "title": "The UCSC Genome Browser database: 2018 update.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1020", "authors": "Casper J, et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkx1020", "created_at": "2021-09-30T08:27:54.798Z", "updated_at": "2021-09-30T08:27:54.798Z"}, {"id": 3128, "pubmed_id": 34718705, "title": "The UCSC Genome Browser database: 2022 update.", "year": 2021, "url": "https://doi.org/10.1093/nar/gkab959", "authors": "Lee BT, Barber GP, Benet-Pag\u00e8s A, Casper J, Clawson H, Diekhans M, Fischer C, Gonzalez JN, Hinrichs AS, Lee CM, Muthuraman P, Nassar LR, Nguy B, Pereira T, Perez G, Raney BJ, Rosenbloom KR, Schmelter D, Speir ML, Wick BD, Zweig AS, Haussler D, Kuhn RM, Haeussler M, Kent WJ", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkab959", "created_at": "2021-11-08T21:48:40.545Z", "updated_at": "2021-11-08T21:48:40.545Z"}], "licence-links": [{"licence-name": "UCSC Genome Browser Code - License required for commercial use", "licence-id": 801, "link-id": 265, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2618", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-17T09:40:14.000Z", "updated-at": "2021-11-24T13:13:13.743Z", "metadata": {"name": "European Union Observatory for Nanomaterials", "status": "ready", "homepage": "https://euon.echa.europa.eu/", "identifier": 2618, "description": "The European Union Observatory for Nanomaterials (EUON) provides information about existing nanomaterials on the EU market. Whether you are developing policies in the area, a consumer or representing industry or a green NGO, the information on the EUON offers interesting reading about the safety, innovation, research and uses of nanomaterials. The EUON is funded by the European Commission. It is hosted and maintained by the European Chemicals Agency (ECHA).", "abbreviation": "EUON", "support-links": [{"url": "https://euon.echa.europa.eu/", "name": "News", "type": "Blog/News"}, {"url": "https://euon.echa.europa.eu/contact", "type": "Contact form"}], "year-creation": 2016, "data-processes": [{"url": "https://euon.echa.europa.eu/search-for-nanomaterials", "name": "Browse & Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001103", "bsg-d001103"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Nanotechnology", "Chemistry", "Physics"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: European Union Observatory for Nanomaterials", "abbreviation": "EUON", "url": "https://fairsharing.org/fairsharing_records/2618", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Union Observatory for Nanomaterials (EUON) provides information about existing nanomaterials on the EU market. Whether you are developing policies in the area, a consumer or representing industry or a green NGO, the information on the EUON offers interesting reading about the safety, innovation, research and uses of nanomaterials. The EUON is funded by the European Commission. It is hosted and maintained by the European Chemicals Agency (ECHA).", "publications": [], "licence-links": [{"licence-name": "EUON Legal Notice", "licence-id": 297, "link-id": 1678, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3134", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-17T15:02:14.000Z", "updated-at": "2022-02-08T10:33:42.092Z", "metadata": {"doi": "10.25504/FAIRsharing.9af33c", "name": "Dimensions", "status": "ready", "contacts": [{"contact-name": "Dimensions General Contact", "contact-email": "info@dimensions.ai"}], "homepage": "https://www.dimensions.ai/", "citations": [{"publication-id": 3035}], "identifier": 3134, "description": "The Dimensions database is a scholarly database containing research articles, citations, books, chapters, and conference proceedings, as well as awarded grants, patents, clinical trials, policy documents, datasets and altmetric information. The free version includes a searchable publications index and links to all the other different entities. The subscription version includes further faceting, further analytical capabilities, and searchable indices of the non-publication content.", "abbreviation": "Dimensions", "access-points": [{"url": "https://www.dimensions.ai/dimensions-apis/", "name": "Dimensions APIs Summary", "type": "Other"}], "support-links": [{"url": "https://www.dimensions.ai/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.dimensions.ai/contact-us/", "name": "Contact Dimensions", "type": "Contact form"}, {"url": "https://www.dimensions.ai/products/free/", "name": "Information on Freely Available Data", "type": "Help documentation"}, {"url": "https://www.dimensions.ai/products/free/", "name": "About Dimensions Free", "type": "Help documentation"}, {"url": "https://www.dimensions.ai/resource-type/videos/", "name": "Videos", "type": "Training documentation"}, {"url": "https://twitter.com/DSDimensions", "name": "@DSDimensions", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://app.dimensions.ai/", "name": "Search & Browse Free Version", "type": "data access"}]}, "legacy-ids": ["biodbcore-001645", "bsg-d001645"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Informatics", "Materials Engineering", "Clinical Studies", "Public Health", "Health Science", "Chemistry", "Psychology", "Mathematics", "Computer Science", "Subject Agnostic", "Physics", "Biology"], "domains": ["Citation", "Bibliography", "Journal article", "Patent"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Dimensions", "abbreviation": "Dimensions", "url": "https://fairsharing.org/10.25504/FAIRsharing.9af33c", "doi": "10.25504/FAIRsharing.9af33c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Dimensions database is a scholarly database containing research articles, citations, books, chapters, and conference proceedings, as well as awarded grants, patents, clinical trials, policy documents, datasets and altmetric information. The free version includes a searchable publications index and links to all the other different entities. The subscription version includes further faceting, further analytical capabilities, and searchable indices of the non-publication content.", "publications": [{"id": 3035, "pubmed_id": null, "title": "Dimensions: Building Context for Search and Evaluation", "year": 2018, "url": "https://doi.org/10.3389/frma.2018.00023", "authors": "Daniel W. Hook, Simon J. Porter and Christian Herzog", "journal": "Frontiers in Research Metrics and Analytics", "doi": null, "created_at": "2021-09-30T08:28:14.016Z", "updated_at": "2021-09-30T08:28:14.016Z"}], "licence-links": [{"licence-name": "Dimensions Free version available", "licence-id": 243, "link-id": 26, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2791", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-10T09:48:08.000Z", "updated-at": "2021-11-24T13:13:07.175Z", "metadata": {"doi": "10.25504/FAIRsharing.S6nB7s", "name": "Genome-wide Integrated Analysis of gene Networks in Tissues 2.0", "status": "ready", "contacts": [{"contact-name": "Olga G Troyanskaya", "contact-email": "ogt@genomics.princeton.edu"}], "homepage": "http://giant-v2.princeton.edu/", "citations": [{"doi": "10.1093/nar/gky408", "pubmed-id": 29800226, "publication-id": 371}], "identifier": 2791, "description": "GIANT2 (Genome-wide Integrated Analysis of gene Networks in Tissues) is an interactive web server that enables biomedical researchers to analyze their proteins and pathways of interest and generate hypotheses in the context of genome-scale functional maps of human tissues. With GIANT2, researchers can explore predicted tissue-specific functional roles of genes and reveal changes in those roles across tissues, all through interactive multi-network visualizations and analyses.", "abbreviation": "GIANT 2.0", "access-points": [{"url": "http://giant-api.princeton.edu/", "name": "NetWAS/GIANT API", "type": "REST"}], "support-links": [{"url": "http://giant-v2.princeton.edu/tutorial/", "name": "Tutorials", "type": "Help documentation"}, {"url": "http://giant-v2.princeton.edu/about/", "name": "About GIANT 2.0", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://giant-v2.princeton.edu/download/", "name": "Download tissue networks and gold standards", "type": "data release"}, {"url": "http://giant-v2.princeton.edu/data/", "name": "Integrated Datasets", "type": "data access"}], "associated-tools": [{"url": "http://giant-v2.princeton.edu/gwas/create_new", "name": "NetWAS Analysis"}]}, "legacy-ids": ["biodbcore-001290", "bsg-d001290"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Bioinformatics", "Life Science", "Data Visualization"], "domains": ["Function analysis", "Network model", "Genome-wide association study", "Tissue"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genome-wide Integrated Analysis of gene Networks in Tissues 2.0", "abbreviation": "GIANT 2.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.S6nB7s", "doi": "10.25504/FAIRsharing.S6nB7s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GIANT2 (Genome-wide Integrated Analysis of gene Networks in Tissues) is an interactive web server that enables biomedical researchers to analyze their proteins and pathways of interest and generate hypotheses in the context of genome-scale functional maps of human tissues. With GIANT2, researchers can explore predicted tissue-specific functional roles of genes and reveal changes in those roles across tissues, all through interactive multi-network visualizations and analyses.", "publications": [{"id": 371, "pubmed_id": 29800226, "title": "GIANT 2.0: genome-scale integrated analysis of gene networks in tissues.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky408", "authors": "Wong AK,Krishnan A,Troyanskaya OG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky408", "created_at": "2021-09-30T08:22:59.856Z", "updated_at": "2021-09-30T11:28:45.983Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2578", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T14:37:03.000Z", "updated-at": "2022-02-08T10:26:30.261Z", "metadata": {"doi": "10.25504/FAIRsharing.23b5c8", "name": "KnowPulse", "status": "ready", "contacts": [{"contact-name": "Lacey-Anne Sanderson", "contact-email": "lacey.sanderson@usask.ca"}], "homepage": "http://knowpulse2.usask.ca/portal/", "identifier": 2578, "description": "KnowPulse is a breeder-focused web portal that integrates genetics and genomics of pulse crops with model genomes.", "abbreviation": "KnowPulse", "data-processes": [{"url": "http://knowpulse2.usask.ca/portal/research/projects", "name": "Browse and Search Projects", "type": "data access"}, {"url": "http://knowpulse2.usask.ca/portal/research/crop-species", "name": "Browse Species", "type": "data access"}, {"url": "http://knowpulse2.usask.ca/portal/search/sequences", "name": "Search Sequence Data", "type": "data access"}, {"url": "http://knowpulse2.usask.ca/portal/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "http://knowpulse2.usask.ca/portal/blast", "name": "BLAST", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/search/genotypes/Pisum", "name": "Germplasm Genotype Tool: Pea", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/search/genotypes/Lens", "name": "Germplasm Genotype Tool: Lentil", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/search/genotypes/Cicer", "name": "Germplasm Genotype Tool: Chickpea", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/search/genotypes/Phaseolus", "name": "Germplasm Genotype Tool: Bean", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/user/register", "name": "Register", "type": "data access"}, {"url": "http://knowpulse.usask.ca/portal/filter_vcf", "name": "Export", "type": "data access"}, {"url": "https://knowpulse.usask.ca/MapViewer", "name": "MapViewer", "type": "data access"}, {"url": "https://knowpulse.usask.ca/tools/jbrowse", "name": "Jbrowse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001061", "bsg-d001061"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Agriculture", "Life Science"], "domains": ["Genome"], "taxonomies": ["Cicer arietinum", "Lens culinaris", "Phaseolus vulgaris", "Pisum sativum", "Vicia faba"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: KnowPulse", "abbreviation": "KnowPulse", "url": "https://fairsharing.org/10.25504/FAIRsharing.23b5c8", "doi": "10.25504/FAIRsharing.23b5c8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KnowPulse is a breeder-focused web portal that integrates genetics and genomics of pulse crops with model genomes.", "publications": [{"id": 2434, "pubmed_id": null, "title": "KnowPulse: A Breeder-Focused Web Portal That Integrates Genetics and Genomics of Pulse Crops With Model Genomes", "year": 2012, "url": "https://www.researchgate.net/publication/268120142_KnowPulse_A_Breeder-Focused_Web_Portal_That_Integrates_Genetics_and_Genomics_of_Pulse_Crops_With_Model_Genomes", "authors": "Sanderson LA, Tan R, Caron C, Muhammadzadeh A, Vandenberg A, Tar'an B, Warkentin T, and Bett KE", "journal": "Conference Paper", "doi": null, "created_at": "2021-09-30T08:26:58.686Z", "updated_at": "2021-09-30T08:26:58.686Z"}, {"id": 2685, "pubmed_id": 31428111, "title": "KnowPulse: A Web-Resource Focused on Diversity Data for Pulse Crop Improvement.", "year": 2019, "url": "http://doi.org/10.3389/fpls.2019.00965", "authors": "Sanderson LA,Caron CT,Tan R,Shen Y,Liu R,Bett KE", "journal": "Front Plant Sci", "doi": "10.3389/fpls.2019.00965", "created_at": "2021-09-30T08:27:29.855Z", "updated_at": "2021-09-30T08:27:29.855Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1885", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:35.213Z", "metadata": {"doi": "10.25504/FAIRsharing.fs1z27", "name": "TriTrypDB", "status": "ready", "contacts": [{"contact-name": "Omar Harb", "contact-email": "oharb@pcbi.upenn.edu", "contact-orcid": "0000-0003-4446-6200"}], "homepage": "http://tritrypdb.org/tritrypdb/", "citations": [{"doi": "10.1093/nar/gkp851", "pubmed-id": 19843604, "publication-id": 377}], "identifier": 1885, "description": "TriTrypDB is one of the databases that can be accessed through the VEuPathDB portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the VEuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "abbreviation": "TriTrypDB", "support-links": [{"url": "https://tritrypdb.org/tritrypdb/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://cryptodb.org/cryptodb/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://tritrypdb.org/tritrypdb/app/static-content/methods.html", "name": "Data Analysis Methods", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/EuPathDB/playlists", "name": "YouTube Channel", "type": "Video"}, {"url": "https://twitter.com/VEuPathDB", "name": "@VEuPathDB", "type": "Twitter"}], "data-processes": [{"url": "https://tritrypdb.org/tritrypdb/app/downloads/", "name": "Download", "type": "data access"}, {"url": "https://tritrypdb.org/tritrypdb/app/search/transcript/GeneByLocusTag", "name": "Search Via Multiple Parameters", "type": "data access"}, {"url": "https://tritrypdb.org/tritrypdb/app/search/transcript/UnifiedBlast", "name": "BLAST", "type": "data access"}, {"url": "https://tritrypdb.org/tritrypdb/app/static-content/dataSubmission.html", "name": "Submit Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011479", "name": "re3data:r3d100011479", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007043", "name": "SciCrunch:RRID:SCR_007043", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000350", "bsg-d000350"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Infectious Disease Medicine", "Comparative Genomics"], "domains": ["Pathogen", "Genome"], "taxonomies": ["Eukaryota", "Leishmania", "Leishmania major", "Trypanosoma brucei", "Trypanosoma cruzi", "Trypanosomatidae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TriTrypDB", "abbreviation": "TriTrypDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.fs1z27", "doi": "10.25504/FAIRsharing.fs1z27", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TriTrypDB is one of the databases that can be accessed through the VEuPathDB portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the VEuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "publications": [{"id": 377, "pubmed_id": 19843604, "title": "TriTrypDB: a functional genomic resource for the Trypanosomatidae.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp851", "authors": "Aslett M., Aurrecoechea C., Berriman M. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp851", "created_at": "2021-09-30T08:23:00.509Z", "updated_at": "2021-09-30T08:23:00.509Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2371, "relation": "undefined"}, {"licence-name": "VEuPathDB Data Access Policy", "licence-id": 842, "link-id": 2372, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2612", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-10T12:53:29.000Z", "updated-at": "2022-02-08T10:28:12.496Z", "metadata": {"doi": "10.25504/FAIRsharing.3fa02d", "name": "Database of Kashiwa Encyclopedia for human genome mutations in Regulatory regions and their Omics contexts", "status": "ready", "contacts": [{"contact-name": "Yutaka Suzuki", "contact-email": "ysuzuki@k.u-tokyo.ac.jp"}], "homepage": "http://kero.hgc.jp/", "identifier": 2612, "description": "The Database of Kashiwa Encyclopedia for human genome mutations in Regulatory regions and their Omics contexts (DBKERO) stores transcriptome information with a catalogue of genomic variations including public SNP data and epigenome information to enable further in-depth analyses on the disease-causing molecular mechanisms. Recent additions include genomic variation datasets and epigenome variation datasets focusing on the Japanese population. These datasets were collected as a series of genome-wide association studies and as part of International Human Epigenome Consortium (IHEC) projects. The goal is to have this database serve as a model case for the genomic, epigenomic and transcriptomic variations occurring in particular ethnic backgrounds and underlying various diseases. Clinical samples data were also associated with data from various model systems such as drug perturbation datasets using cultured cancer cells.", "abbreviation": "DBKERO", "access-points": [{"url": "https://integbio.jp/rdf/kero/sparql", "name": "SPARQL Proxy", "type": "Other"}], "support-links": [{"url": "http://kero.hgc.jp/?doc:help_2017.html", "name": "How to use DBKERO", "type": "Help documentation"}, {"url": "http://kero.hgc.jp/?doc:data_contents_2017.html", "name": "Data Contents", "type": "Help documentation"}, {"url": "http://kero.hgc.jp/?doc:protocol_2017.html", "name": "Experimental Protocols", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://kero.hgc.jp/tool/keyword.html", "name": "Search by Keyword or Genomic Position (Genome Browser)", "type": "data access"}, {"url": "http://kero.hgc.jp/tool/enriched.html", "name": "Search by SNV-enriched gene in cancers (Genome Browser)", "type": "data access"}, {"url": "http://kero.hgc.jp/tool/chromatin_from_position.html", "name": "Search by Genomic Position (Chromatin Features)", "type": "data access"}, {"url": "https://kero.hgc.jp/tool/tf_search.html", "name": "TF binding site search", "type": "data access"}, {"url": "https://kero.hgc.jp/tool/chromatin_from_dbsnp.html", "name": "Search Chromatin Features from SNP", "type": "data access"}, {"url": "https://kero.hgc.jp/tool/chromatin_from_cosmic.html", "name": "Search Chromatin Features from SNV", "type": "data access"}, {"url": "https://kero.hgc.jp/tool/snv_summary.html", "name": "https://kero.hgc.jp/tool/snv_summary.html", "type": "data access"}, {"url": "https://kero.hgc.jp/tool/data_portal.html", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://integbio.jp/rdf/kero/?view=detail&id=kero", "name": "DBKERO RDF"}]}, "legacy-ids": ["biodbcore-001096", "bsg-d001096"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenetics", "Life Science", "Transcriptomics", "Biomedical Science", "Population Genetics"], "domains": ["Regulation of gene expression", "Mutation", "Disease", "Single nucleotide polymorphism", "Regulatory region", "Genome-wide association study", "Gene-disease association"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Database of Kashiwa Encyclopedia for human genome mutations in Regulatory regions and their Omics contexts", "abbreviation": "DBKERO", "url": "https://fairsharing.org/10.25504/FAIRsharing.3fa02d", "doi": "10.25504/FAIRsharing.3fa02d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Kashiwa Encyclopedia for human genome mutations in Regulatory regions and their Omics contexts (DBKERO) stores transcriptome information with a catalogue of genomic variations including public SNP data and epigenome information to enable further in-depth analyses on the disease-causing molecular mechanisms. Recent additions include genomic variation datasets and epigenome variation datasets focusing on the Japanese population. These datasets were collected as a series of genome-wide association studies and as part of International Human Epigenome Consortium (IHEC) projects. The goal is to have this database serve as a model case for the genomic, epigenomic and transcriptomic variations occurring in particular ethnic backgrounds and underlying various diseases. Clinical samples data were also associated with data from various model systems such as drug perturbation datasets using cultured cancer cells.", "publications": [{"id": 2105, "pubmed_id": 29126224, "title": "DBTSS/DBKERO for integrated analysis of transcriptional regulation.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1001", "authors": "Suzuki A,Kawano S,Mitsuyama T,Suyama M,Kanai Y,Shirahige K,Sasaki H,Tokunaga K,Tsuchihara K,Sugano S,Nakai K,Suzuki Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1001", "created_at": "2021-09-30T08:26:17.264Z", "updated_at": "2021-09-30T11:29:29.311Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2673", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-07T09:43:12.000Z", "updated-at": "2021-11-24T13:19:38.113Z", "metadata": {"doi": "10.25504/FAIRsharing.aIe9SA", "name": "Allosteric Mutation Analysis and Polymorphism of Signaling database", "status": "ready", "contacts": [{"contact-name": "Igor Berezovsky", "contact-email": "igorb@bii.a-star.edu.sg"}], "homepage": "http://allomaps.bii.a-star.edu.sg", "citations": [{"doi": "10.1093/nar/gky1028", "pubmed-id": 30365033, "publication-id": 302}], "identifier": 2673, "description": "The AlloMAPS database provides data on the energetics of communication in proteins with well-documented allosteric regulation, allosteric signalling in PDBselect chains, and allosteric effects of mutations. In addition to energetics of allosteric signaling between known functional and regulatory sites, allosteric modulation caused by the binding to these sites, by SNPs, and by mutations designated by the user can be explored. Allosteric Signaling Maps (ASMs), which are produced via the exhaustive computational scanning for stabilizing and destabilizing mutations and for the modulation range caused by the sequence position are available for each protein/protein chain in the database.", "abbreviation": "AlloMAPS", "support-links": [{"url": "http://allomaps.bii.a-star.edu.sg/tutorial", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://allomaps.bii.a-star.edu.sg/browse", "name": "Browse Data", "type": "data access"}, {"url": "http://allomaps.bii.a-star.edu.sg/allo", "name": "Browse Allosteric Proteins", "type": "data access"}, {"url": "http://allomaps.bii.a-star.edu.sg/hierarchy", "name": "Browse PDBselect chains", "type": "data access"}, {"url": "http://allomaps.bii.a-star.edu.sg/poly", "name": "Browse Allosteric polymorphisms", "type": "data access"}]}, "legacy-ids": ["biodbcore-001167", "bsg-d001167"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Signaling", "Protein", "Single nucleotide polymorphism"], "taxonomies": ["All"], "user-defined-tags": ["Allosteric regulation", "Allosteric signalling map"], "countries": ["Singapore", "Australia"], "name": "FAIRsharing record for: Allosteric Mutation Analysis and Polymorphism of Signaling database", "abbreviation": "AlloMAPS", "url": "https://fairsharing.org/10.25504/FAIRsharing.aIe9SA", "doi": "10.25504/FAIRsharing.aIe9SA", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AlloMAPS database provides data on the energetics of communication in proteins with well-documented allosteric regulation, allosteric signalling in PDBselect chains, and allosteric effects of mutations. In addition to energetics of allosteric signaling between known functional and regulatory sites, allosteric modulation caused by the binding to these sites, by SNPs, and by mutations designated by the user can be explored. Allosteric Signaling Maps (ASMs), which are produced via the exhaustive computational scanning for stabilizing and destabilizing mutations and for the modulation range caused by the sequence position are available for each protein/protein chain in the database.", "publications": [{"id": 302, "pubmed_id": 30365033, "title": "AlloMAPS: allosteric mutation analysis and polymorphism of signaling database.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1028", "authors": "Tan ZW,Tee WV,Guarnera E,Booth L,Berezovsky IN", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1028", "created_at": "2021-09-30T08:22:52.538Z", "updated_at": "2021-09-30T11:28:44.916Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2225", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-13T05:19:27.000Z", "updated-at": "2021-11-24T13:14:49.013Z", "metadata": {"doi": "10.25504/FAIRsharing.5mf7bd", "name": "Colorectal Cancer Atlas", "status": "ready", "contacts": [{"contact-name": "Suresh Mathivanan", "contact-email": "S.Mathivanan@latrobe.edu.au", "contact-orcid": "0000-0002-7290-5795"}], "homepage": "http://colonatlas.org/", "identifier": 2225, "description": "Colorectral Cancer Atlas is an web-based resource which integrates genomic and proteomic pertaining to colorectal cancer cell lines and tissues. Data catalogued includes, quantitative and non-quantitative protein expression, sequence variations, cellular signaling pathways, protein-protein interactions, Gene Ontology terms, protein domains and post-translational modifications (PTMs).", "abbreviation": "CRC Atlas", "support-links": [{"url": "http://colonatlas.org/contactus", "type": "Contact form"}, {"url": "http://colonatlas.org/faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2015, "data-processes": [{"url": "http://colonatlas.org/query", "name": "search", "type": "data access"}, {"url": "http://colonatlas.org/browse", "name": "browse", "type": "data access"}, {"url": "http://colonatlas.org/download", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000699", "bsg-d000699"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Proteomics", "Life Science", "Biomedical Science"], "domains": ["Drug report", "Cancer", "Post-translational protein modification", "Extracellular exosome", "Mutation analysis", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Colorectal Cancer Atlas", "abbreviation": "CRC Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.5mf7bd", "doi": "10.25504/FAIRsharing.5mf7bd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Colorectral Cancer Atlas is an web-based resource which integrates genomic and proteomic pertaining to colorectal cancer cell lines and tissues. Data catalogued includes, quantitative and non-quantitative protein expression, sequence variations, cellular signaling pathways, protein-protein interactions, Gene Ontology terms, protein domains and post-translational modifications (PTMs).", "publications": [{"id": 1643, "pubmed_id": 26496946, "title": "Colorectal cancer atlas: An integrative resource for genomic and proteomic annotations from colorectal cancer cell lines and tissues.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1097", "authors": "Chisanga D,Keerthikumar S,Pathan M,Ariyaratne D,Kalra H,Boukouris S,Mathew NA,Al Saffar H,Gangoda L,Ang CS,Sieber OM,Mariadason JM,Dasgupta R,Chilamkurti N,Mathivanan S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1097", "created_at": "2021-09-30T08:25:24.017Z", "updated_at": "2021-09-30T11:29:17.644Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2746", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-17T13:19:43.000Z", "updated-at": "2022-02-08T10:29:50.136Z", "metadata": {"doi": "10.25504/FAIRsharing.14c4ca", "name": "Fly-FISH", "status": "ready", "contacts": [{"contact-name": "Henry Krause", "contact-email": "h.krause@utoronto.ca", "contact-orcid": "0000-0002-6182-7074"}], "homepage": "http://fly-fish.ccbr.utoronto.ca/", "identifier": 2746, "description": "Fly-FISH documents the expression and localization patterns of Drosophila mRNAs at the cellular and subcellular level during early embryogenesis and third instar larval tissues. A high-resolution, high-throughput fluorescence detection method is used to detect expressed mRNAs. The data can be accessed by searching the localization categories, searching for specific genes or browsing the list of tested genes.", "abbreviation": "Fly-FISH", "support-links": [{"url": "https://www.youtube.com/watch?v=ox27uj3fgcc", "name": "RNA patterns movie", "type": "Video"}, {"url": "http://fly-fish.ccbr.utoronto.ca/static/pdf/lecuyer-et-al-2008.pdf", "name": "In Situ Protocol for Embryos", "type": "Help documentation"}, {"url": "http://fly-fish.ccbr.utoronto.ca/static/pdf/wilk-et-al-2010.pdf", "name": "In Situ Protocol for Embryos and Larval Tissues", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://fly-fish.ccbr.utoronto.ca/genes/", "name": "Browse Gene List", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/gene_search", "name": "Search", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/terms/", "name": "Browse by Term", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/term_search", "name": "Search by Term", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/gallery", "name": "Browse Image Gallery", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/exports/", "name": "Download", "type": "data access"}, {"url": "http://fly-fish.ccbr.utoronto.ca/probes.csv", "name": "Download probes (csv format)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001244", "bsg-d001244"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biology"], "domains": ["Expression data", "Bioimaging", "Cellular localization", "In situ hybridization", "Fluorescence", "Messenger RNA"], "taxonomies": ["Drosophila"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Fly-FISH", "abbreviation": "Fly-FISH", "url": "https://fairsharing.org/10.25504/FAIRsharing.14c4ca", "doi": "10.25504/FAIRsharing.14c4ca", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Fly-FISH documents the expression and localization patterns of Drosophila mRNAs at the cellular and subcellular level during early embryogenesis and third instar larval tissues. A high-resolution, high-throughput fluorescence detection method is used to detect expressed mRNAs. The data can be accessed by searching the localization categories, searching for specific genes or browsing the list of tested genes.", "publications": [{"id": 2485, "pubmed_id": 17923096, "title": "Global analysis of mRNA localization reveals a prominent role in organizing cellular architecture and function.", "year": 2007, "url": "http://doi.org/10.1016/j.cell.2007.08.003", "authors": "Lecuyer E,Yoshida H,Parthasarathy N,Alm C,Babak T,Cerovina T,Hughes TR,Tomancak P,Krause HM", "journal": "Cell", "doi": "10.1016/j.cell.2007.08.003", "created_at": "2021-09-30T08:27:04.711Z", "updated_at": "2021-09-30T08:27:04.711Z"}, {"id": 2494, "pubmed_id": 26944682, "title": "Diverse and pervasive subcellular distributions for both coding and long noncoding RNAs.", "year": 2016, "url": "http://doi.org/10.1101/gad.276931.115", "authors": "Wilk R,Hu J,Blotsky D,Krause HM", "journal": "Genes Dev", "doi": "10.1101/gad.276931.115", "created_at": "2021-09-30T08:27:05.853Z", "updated_at": "2021-09-30T08:27:05.853Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2838", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-22T12:14:08.000Z", "updated-at": "2022-02-08T10:30:13.172Z", "metadata": {"doi": "10.25504/FAIRsharing.5a0922", "name": "YeastCyc", "status": "ready", "contacts": [{"contact-name": "BioCyc Support", "contact-email": "biocyc-support@ai.sri.com"}], "homepage": "https://yeast.biocyc.org/", "identifier": 2838, "description": "YeastCyc is a Pathway/Genome Database of the model eukaryote Saccharomyces cerevisiae S288c. In addition to genomic information, the database contains metabolic pathway, reaction, enzyme, and compound information, which has been manually curated from the scientific literature.", "abbreviation": "YeastCyc", "support-links": [{"url": "https://yeast.biocyc.org/PToolsWebsiteHowto.shtml#SearchHelp", "name": "Search Help", "type": "Help documentation"}, {"url": "https://yeast.biocyc.org/PToolsWebsiteHowto.shtml", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "https://yeast.biocyc.org/gene-search.shtml", "name": "Search Genes, Proteins or RNAs", "type": "data access"}, {"url": "https://yeast.biocyc.org/cpd-search.shtml", "name": "Search Compounds", "type": "data access"}, {"url": "https://yeast.biocyc.org/rxn-search.shtml", "name": "Search Reactions", "type": "data access"}, {"url": "https://yeast.biocyc.org/pwy-search.shtml", "name": "Search Pathways", "type": "data access"}, {"url": "https://yeast.biocyc.org/site-search.shtml", "name": "Search DNA or mRNA sites", "type": "data access"}, {"url": "https://yeast.biocyc.org/gm-search.shtml", "name": "Search Growth Media", "type": "data access"}, {"url": "https://yeast.biocyc.org/query.shtml", "name": "Advanced Search", "type": "data access"}, {"url": "https://yeast.biocyc.org/patmatch.shtml?organism=YEAST", "name": "Sequence Pattern Search", "type": "data access"}], "associated-tools": [{"url": "https://yeast.biocyc.org/YEAST/blast.html", "name": "BLAST"}, {"url": "https://yeast.biocyc.org/YEAST/select-gen-el", "name": "Genome Browser"}, {"url": "https://yeast.biocyc.org/dashboard/dashboard-intro.shtml", "name": "Omics Dashboard"}]}, "legacy-ids": ["biodbcore-001339", "bsg-d001339"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Systems Biology"], "domains": ["Reaction data", "Model organism", "Enzyme", "Pathway model", "Genome", "Literature curation"], "taxonomies": ["Saccharomyces cerevisiae S288c"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: YeastCyc", "abbreviation": "YeastCyc", "url": "https://fairsharing.org/10.25504/FAIRsharing.5a0922", "doi": "10.25504/FAIRsharing.5a0922", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: YeastCyc is a Pathway/Genome Database of the model eukaryote Saccharomyces cerevisiae S288c. In addition to genomic information, the database contains metabolic pathway, reaction, enzyme, and compound information, which has been manually curated from the scientific literature.", "publications": [], "licence-links": [{"licence-name": "BioCyc Subscription requirements", "licence-id": 79, "link-id": 1389, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2841", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-24T12:03:26.000Z", "updated-at": "2022-02-08T10:30:14.443Z", "metadata": {"doi": "10.25504/FAIRsharing.c55071", "name": "RIKEN Arabidopsis Genome Encyclopedia II", "status": "ready", "contacts": [{"contact-name": "RARGE Developers", "contact-email": "rarge-master@psc.riken.jp"}], "homepage": "http://rarge-v2.psc.riken.jp/", "citations": [{"doi": "10.1093/pcp/pct165", "pubmed-id": 24272250, "publication-id": 2587}], "identifier": 2841, "description": "RARGE II provides basic information about the Arabidopsis genome, such as information related to cDNA sequences and transposon insertion mutants. To create it, publicly available information for a total of 66,209 Arabidopsis mutant lines was used, including loss-of-function (RATM and TARAPPER) and gain-of-function (AtFOX and OsFOX) lines, as well as phenotype data gained through the mapping of descriptions onto Plant Ontology (PO) and Phenotypic Quality Ontology (PATO) terms.", "abbreviation": "RARGE II", "support-links": [{"url": "tetsuya.sakurai@riken.jp", "name": "Tetsuya Sakurai", "type": "Support email"}, {"url": "http://rarge-v2.psc.riken.jp/about", "name": "About RARGE", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://rarge-v2.psc.riken.jp/cdna", "name": "Full-length cDNA Search", "type": "data access"}, {"url": "http://rarge-v2.psc.riken.jp/line", "name": "Search Mutant Lines", "type": "data access"}, {"url": "http://rarge-v2.psc.riken.jp/trait", "name": "Search Mutant Lines by Phenotype", "type": "data access"}]}, "legacy-ids": ["biodbcore-001342", "bsg-d001342"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Functional Genomics", "Genomics", "Life Science", "Plant Genetics"], "domains": ["Genome annotation", "Mutation", "Transposable element", "Complementary DNA", "Genome"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: RIKEN Arabidopsis Genome Encyclopedia II", "abbreviation": "RARGE II", "url": "https://fairsharing.org/10.25504/FAIRsharing.c55071", "doi": "10.25504/FAIRsharing.c55071", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RARGE II provides basic information about the Arabidopsis genome, such as information related to cDNA sequences and transposon insertion mutants. To create it, publicly available information for a total of 66,209 Arabidopsis mutant lines was used, including loss-of-function (RATM and TARAPPER) and gain-of-function (AtFOX and OsFOX) lines, as well as phenotype data gained through the mapping of descriptions onto Plant Ontology (PO) and Phenotypic Quality Ontology (PATO) terms.", "publications": [{"id": 2587, "pubmed_id": 24272250, "title": "RARGE II: an integrated phenotype database of Arabidopsis mutant traits using a controlled vocabulary.", "year": 2013, "url": "http://doi.org/10.1093/pcp/pct165", "authors": "Akiyama K,Kurotani A,Iida K,Kuromori T,Shinozaki K,Sakurai T", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pct165", "created_at": "2021-09-30T08:27:17.321Z", "updated_at": "2021-09-30T08:27:17.321Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 1798, "relation": "undefined"}, {"licence-name": "RARGE Disclaimer", "licence-id": 697, "link-id": 1799, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2848", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-04T18:07:46.000Z", "updated-at": "2022-02-08T10:30:16.100Z", "metadata": {"doi": "10.25504/FAIRsharing.86be21", "name": "Panzea", "status": "ready", "contacts": [{"contact-name": "Cinta Romay", "contact-email": "mcr72@cornell.edu", "contact-orcid": "0000-0001-9309-1586"}], "homepage": "https://www.panzea.org/", "identifier": 2848, "description": "Panzea provides information on the connection between phenotypes and genotypes of complex traits in maize and its wild relative, teosinte, and specifically in how rare genetic variations contribute to overall plant function.", "abbreviation": "Panzea", "support-links": [{"url": "https://www.panzea.org/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.panzea.org/history-of-panzea", "name": "History", "type": "Help documentation"}, {"url": "https://www.panzea.org/current-project", "name": "About the Project", "type": "Help documentation"}, {"url": "https://www.panzea.org/news", "name": "News", "type": "Help documentation"}, {"url": "https://www.panzea.org/publications", "name": "Publication List", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://www.panzea.org/genotypes", "name": "Download Genotype Flat Files", "type": "data release"}, {"url": "http://cbsuss05.tc.cornell.edu/hdf5/select.asp", "name": "Genotype Search", "type": "data access"}, {"url": "http://cbsuss05.tc.cornell.edu/hdf5new/select.asp", "name": "GBS Genotype Search", "type": "data access"}, {"url": "https://www.panzea.org/phenotypes", "name": "Download Phenotype Flat Files", "type": "data release"}, {"url": "http://cbsusrv04.tc.cornell.edu/users/panzea/filegateway.aspx?category=Sequences", "name": "Download Sequence Data", "type": "data release"}, {"url": "http://cbsusrv04.tc.cornell.edu/users/panzea/download.aspx?filegroupid=26", "name": "Download Genome Annotations", "type": "data release"}, {"url": "http://cbsusrv04.tc.cornell.edu/users/panzea/filegateway.aspx?category=GWASResults", "name": "Download GWAS Results", "type": "data release"}, {"url": "http://cbsusrv04.tc.cornell.edu/users/panzea/filegateway.aspx?category=RNAseq", "name": "Download RNA-seq Data", "type": "data release"}]}, "legacy-ids": ["biodbcore-001349", "bsg-d001349"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Genomics", "Bioinformatics", "Genetics", "Agronomy", "Life Science"], "domains": ["Genome annotation", "RNA sequencing", "Phenotype", "Single nucleotide polymorphism", "Genome-wide association study", "Genotype"], "taxonomies": [], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Panzea", "abbreviation": "Panzea", "url": "https://fairsharing.org/10.25504/FAIRsharing.86be21", "doi": "10.25504/FAIRsharing.86be21", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Panzea provides information on the connection between phenotypes and genotypes of complex traits in maize and its wild relative, teosinte, and specifically in how rare genetic variations contribute to overall plant function.", "publications": [{"id": 1313, "pubmed_id": 18029361, "title": "Panzea: an update on new content and features.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1022", "authors": "Canaran P,Buckler ES,Glaubitz JC,Stein L,Sun Q,Zhao W,Ware D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm1022", "created_at": "2021-09-30T08:24:46.631Z", "updated_at": "2021-09-30T11:29:05.951Z"}, {"id": 2710, "pubmed_id": 18629130, "title": "Development of a maize molecular evolutionary genomic database.", "year": 2008, "url": "http://doi.org/10.1002/cfg.282", "authors": "Du C,Buckler E,Muse S", "journal": "Comp Funct Genomics", "doi": "10.1002/cfg.282", "created_at": "2021-09-30T08:27:32.813Z", "updated_at": "2021-09-30T08:27:32.813Z"}, {"id": 2740, "pubmed_id": 16381974, "title": "Panzea: a database and resource for molecular and functional diversity in the maize genome.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj011", "authors": "Zhao W,Canaran P,Jurkuta R,Fulton T,Glaubitz J,Buckler E,Doebley J,Gaut B,Goodman M,Holland J,Kresovich S,McMullen M,Stein L,Ware D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj011", "created_at": "2021-09-30T08:27:36.511Z", "updated_at": "2021-09-30T11:29:42.337Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2871", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-05T13:57:18.000Z", "updated-at": "2022-02-08T10:30:30.744Z", "metadata": {"doi": "10.25504/FAIRsharing.83bf78", "name": "LEAFDATA", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@leafdata.org"}], "homepage": "http://www.leafdata.org/", "citations": [{"doi": "10.1186/s13007-016-0115-9", "pubmed-id": 26884807, "publication-id": 1057}], "identifier": 2871, "description": "The LEAFDATA resource collects information from primary research articles focusing on Arabidopsis leaf growth and development. The result section of selected papers is manually annotated and organized into distinct categories. Text fragments of the manuscripts are displayed with links to the original papers on PubMed.", "abbreviation": "LEAFDATA", "support-links": [{"url": "http://www.leafdata.org/contactus.cfm", "name": "Contact Form", "type": "Contact form"}, {"url": "dszakonyi@igc.gulbenkian.pt", "name": "Dra Szakonyi", "type": "Support email"}, {"url": "http://www.leafdata.org/faq.cfm", "name": "LEAFDATA FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.leafdata.org/news.cfm", "name": "News", "type": "Help documentation"}, {"url": "http://www.leafdata.org/Aboutus.cfm", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/InfoLeafdata", "name": "@InfoLeafdata", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://www.leafdata.org/PaperSearch_AGI.cfm", "name": "AGI Search", "type": "data access"}, {"url": "http://www.leafdata.org/GeneList.cfm", "name": "Browse All Genes", "type": "data access"}, {"url": "http://www.leafdata.org/KnowtatorPapersList.cfm", "name": "Browse all Papers", "type": "data access"}, {"url": "http://www.leafdata.org/PaperSearch_KEYWORD.cfm", "name": "Keyword Search", "type": "data access"}, {"url": "http://www.leafdata.org/PaperSearch_AUTHOR.cfm", "name": "Author Search", "type": "data access"}, {"url": "http://www.leafdata.org/PaperSearch_ID.cfm", "name": "PubMed ID Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001372", "bsg-d001372"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Bioinformatics", "Genetics", "Plant Anatomy", "Plant Genetics"], "domains": ["Expression data", "Protein interaction", "Biological process", "Gene expression", "Regulation of gene expression", "Genetic interaction", "Gene feature", "Phenotype"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: LEAFDATA", "abbreviation": "LEAFDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.83bf78", "doi": "10.25504/FAIRsharing.83bf78", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LEAFDATA resource collects information from primary research articles focusing on Arabidopsis leaf growth and development. The result section of selected papers is manually annotated and organized into distinct categories. Text fragments of the manuscripts are displayed with links to the original papers on PubMed.", "publications": [{"id": 1057, "pubmed_id": 26884807, "title": "LEAFDATA: a literature-curated database for Arabidopsis leaf development.", "year": 2016, "url": "http://doi.org/10.1186/s13007-016-0115-9", "authors": "Szakonyi D", "journal": "Plant Methods", "doi": "10.1186/s13007-016-0115-9", "created_at": "2021-09-30T08:24:17.056Z", "updated_at": "2021-09-30T08:24:17.056Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1635", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.895Z", "metadata": {"doi": "10.25504/FAIRsharing.8kd5e5", "name": "ProRepeat: An Integrated Repository for Studying Amino Acid Tandem Repeats in Proteins", "status": "deprecated", "homepage": "http://prorepeat.bioinformatics.nl", "identifier": 1635, "description": "ProRepeat is an integrated curated repository and analysis platform for in-depth research on the biological characteristics of amino acid tandem repeats. ProRepeat collects repeats from all proteins included in the UniProt knowledgebase, together with 85 completely sequenced eukaryotic proteomes contained within the RefSeq collection.", "support-links": [{"url": "https://en.wikipedia.org/wiki/ProRepeat", "type": "Wikipedia"}], "year-creation": 2004, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"name": "file download(XLS,images)", "type": "data access"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000091", "bsg-d000091"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence composition, complexity and repeats", "Tandem repeat"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: ProRepeat: An Integrated Repository for Studying Amino Acid Tandem Repeats in Proteins", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.8kd5e5", "doi": "10.25504/FAIRsharing.8kd5e5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProRepeat is an integrated curated repository and analysis platform for in-depth research on the biological characteristics of amino acid tandem repeats. ProRepeat collects repeats from all proteins included in the UniProt knowledgebase, together with 85 completely sequenced eukaryotic proteomes contained within the RefSeq collection.", "publications": [{"id": 773, "pubmed_id": 22102581, "title": "ProRepeat: an integrated repository for studying amino acid tandem repeats in proteins.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1019", "authors": "Luo H,Lin K,David A,Nijveen H,Leunissen JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1019", "created_at": "2021-09-30T08:23:45.185Z", "updated_at": "2021-09-30T11:28:50.867Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2923", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-27T11:36:12.000Z", "updated-at": "2021-12-06T10:47:26.135Z", "metadata": {"name": "John Hopkins Coronavirus Resource", "status": "ready", "contacts": [{"contact-email": "COVID19map@jhu.edu"}], "homepage": "https://coronavirus.jhu.edu/map.html", "citations": [{"publication-id": 2606}], "identifier": 2923, "description": "The John Hopkins Coronavirus Resource Center was first shared publicly on January 22nd 2020 to provide researchers, public health authorities, and the general public with a user-friendly tool to track the outbreak as it unfolds.", "support-links": [{"url": "https://coronavirus.jhu.edu/map-faq.html", "name": "Map FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/CSSEGISandData/COVID-19", "name": "Github", "type": "Github"}], "year-creation": 2020, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013268", "name": "re3data:r3d100013268", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001426", "bsg-d001426"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Epidemiology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: John Hopkins Coronavirus Resource", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2923", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The John Hopkins Coronavirus Resource Center was first shared publicly on January 22nd 2020 to provide researchers, public health authorities, and the general public with a user-friendly tool to track the outbreak as it unfolds.", "publications": [{"id": 2606, "pubmed_id": null, "title": "An interactive web-based dashboard to track COVID-19 in real time", "year": 2020, "url": "https://doi.org/10.1016/S1473-3099(20)30120-1", "authors": "E. Dong, H. Du, L. Gardner", "journal": "The Lancey", "doi": null, "created_at": "2021-09-30T08:27:19.870Z", "updated_at": "2021-09-30T08:27:19.870Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2885", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-21T12:12:10.000Z", "updated-at": "2022-02-08T10:30:32.500Z", "metadata": {"doi": "10.25504/FAIRsharing.45c8c8", "name": "International Plant Names Index", "status": "ready", "contacts": [{"contact-name": "IPNI Team", "contact-email": "ipnifeedback@kew.org"}], "homepage": "https://www.ipni.org/", "identifier": 2885, "description": "The International Plant Names Index (IPNI) provides nomenclatural information (spelling, author, types and first place and date of publication) for the scientific names of Vascular Plants from Family down to infraspecific ranks.", "abbreviation": "IPNI", "support-links": [{"url": "https://www.ipni.org/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.ipni.org/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012002", "name": "re3data:r3d100012002", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001386", "bsg-d001386"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Taxonomy"], "domains": ["Taxonomic classification"], "taxonomies": ["Tracheophyta"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Australia"], "name": "FAIRsharing record for: International Plant Names Index", "abbreviation": "IPNI", "url": "https://fairsharing.org/10.25504/FAIRsharing.45c8c8", "doi": "10.25504/FAIRsharing.45c8c8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Plant Names Index (IPNI) provides nomenclatural information (spelling, author, types and first place and date of publication) for the scientific names of Vascular Plants from Family down to infraspecific ranks.", "publications": [], "licence-links": [{"licence-name": "Kew Gardens Terms and Conditions", "licence-id": 479, "link-id": 1710, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1862", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:34.325Z", "metadata": {"doi": "10.25504/FAIRsharing.nm2z1h", "name": "Protein Data Bank: Proteins, Interfaces, Structures and Assemblies", "status": "ready", "contacts": [{"contact-name": "Kim Henrick", "contact-email": "henrick@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/pdbe/pqs/", "citations": [{"doi": "10.1016/j.jmb.2007.05.022", "pubmed-id": 17681537, "publication-id": 1490}], "identifier": 1862, "description": "The Protein Quaternary Structure file server (PDBePISA) is an internet resource that makes available coordinates for likely quaternary states for structures contained in the Brookhaven Protein Data Bank (PDB) that were determined by X-ray crystallography.", "abbreviation": "PDBePISA", "access-points": [{"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_link.html", "name": "PDBePISA Access", "type": "Other"}], "support-links": [{"url": "support@ebi.ac.uk", "name": "EBI Support", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_tips.html", "name": "PDBePISA Tips", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_vlog.html", "name": "Version Log", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_visual.html", "name": "Visualization documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_disclaimer.html", "name": "Disclaimer", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_privacy.html", "name": "Privacy", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/pdbepisa-identifying-and-interpreting-the-likely-biological-assemblies-of-a-protein-structure", "name": "PDBePISA: Identifying and interpreting the likely biological assemblies of a protein structure", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/pdbe/docs/Tutorials/workshop_tutorials/PDBepisa.pdf", "name": "Tutorial", "type": "Training documentation"}], "year-creation": 1997, "data-processes": [{"url": "https://www.ebi.ac.uk/pdbe/pisa/pi_download.html", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/msd-srv/prot_int/cgi-bin/piserver", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000324", "bsg-d000324"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology"], "domains": ["X-ray diffraction", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Protein Data Bank: Proteins, Interfaces, Structures and Assemblies", "abbreviation": "PDBePISA", "url": "https://fairsharing.org/10.25504/FAIRsharing.nm2z1h", "doi": "10.25504/FAIRsharing.nm2z1h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Quaternary Structure file server (PDBePISA) is an internet resource that makes available coordinates for likely quaternary states for structures contained in the Brookhaven Protein Data Bank (PDB) that were determined by X-ray crystallography.", "publications": [{"id": 354, "pubmed_id": 9787643, "title": "PQS: a protein quaternary structure file server.", "year": 1998, "url": "http://doi.org/10.1016/s0968-0004(98)01253-5", "authors": "Henrick K., Thornton JM.,", "journal": "Trends Biochem. Sci.", "doi": "10.1016/S0968-0004(98)01253-5", "created_at": "2021-09-30T08:22:58.100Z", "updated_at": "2021-09-30T08:22:58.100Z"}, {"id": 1490, "pubmed_id": 17681537, "title": "Inference of macromolecular assemblies from crystalline state.", "year": 2007, "url": "http://doi.org/10.1016/j.jmb.2007.05.022", "authors": "Krissinel E,Henrick K", "journal": "J Mol Biol", "doi": "10.1016/j.jmb.2007.05.022", "created_at": "2021-09-30T08:25:06.786Z", "updated_at": "2021-09-30T08:25:06.786Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1508, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1687", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:00.415Z", "metadata": {"doi": "10.25504/FAIRsharing.spxmc4", "name": "ProPortal", "status": "ready", "contacts": [{"contact-name": "Sallie W. Chisholm", "contact-email": "chisholm@mit.edu"}], "homepage": "http://proportal.mit.edu/", "identifier": 1687, "description": "ProPortal is a database containing genomic, metagenomic, transcriptomic and field data for the marine cyanobacterium Prochlorococcus. They provide a source of cross-referenced data across multiple scales of biological organization\u2014from the genome to the ecosystem\u2014embracing the full diversity of ecotypic variation within this microbial taxon, its sister group, Synechococcus and phages that infect them.", "abbreviation": "ProPortal", "support-links": [{"url": "proportal@mit.edu", "type": "Support email"}, {"url": "http://proportal.mit.edu/project/prochlorococcus/", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "As data is published", "type": "data release"}, {"url": "http://proportal.mit.edu/", "name": "search", "type": "data access"}, {"url": "http://proportal.mit.edu/download/", "name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://proportal.mit.edu/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000143", "bsg-d000143"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Population Dynamics", "Life Science", "Transcriptomics"], "domains": ["Citation", "Sequence cluster", "Genome map", "Expression data", "DNA sequence data", "Annotation", "Gene model annotation", "Marine metagenome", "Metagenome", "Orthologous"], "taxonomies": ["Cyanophage", "Prochlorococcus marinus", "Synechococcus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ProPortal", "abbreviation": "ProPortal", "url": "https://fairsharing.org/10.25504/FAIRsharing.spxmc4", "doi": "10.25504/FAIRsharing.spxmc4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProPortal is a database containing genomic, metagenomic, transcriptomic and field data for the marine cyanobacterium Prochlorococcus. They provide a source of cross-referenced data across multiple scales of biological organization\u2014from the genome to the ecosystem\u2014embracing the full diversity of ecotypic variation within this microbial taxon, its sister group, Synechococcus and phages that infect them.", "publications": [{"id": 1923, "pubmed_id": 22102570, "title": "ProPortal: a resource for integrated systems biology of Prochlorococcus and its phage.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1022", "authors": "Kelly L., Huang KH., Ding H., Chisholm SW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1022", "created_at": "2021-09-30T08:25:56.415Z", "updated_at": "2021-09-30T08:25:56.415Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2397", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T15:23:36.000Z", "updated-at": "2021-11-24T13:14:52.927Z", "metadata": {"doi": "10.25504/FAIRsharing.d064y6", "name": "SugarBind", "status": "ready", "contacts": [{"contact-name": "Frederique Lisacek", "contact-email": "frederique.lisacek@isb-sib.ch", "contact-orcid": "0000-0002-0948-4537"}], "homepage": "http://sugarbind.expasy.org/", "identifier": 2397, "description": "The SugarBind Database (SugarBindDB) was created in 2002 as part of an effort by the MITRE Corporation (http://www.mitre.org) to develop a pathogen-capture technology based on the binding of viral, bacterial and biotoxin lectins to specific glycans (aka, sugars, carbohydrates) displayed on glycoprotein films. The database content results from compiling publicly available information. In 2010, the 2008 version of the database was migrated from MITRE Corporation to the SIB Swiss Institute of Bioinformatics in Geneva, Switzerland. From then, substantial changes in the database design and usage were undertaken and previous content was significantly extended.", "abbreviation": "SugarBind", "support-links": [{"url": "http://sugarbind.expasy.org/help", "type": "Help documentation"}, {"url": "http://sugarbind.expasy.org/about", "type": "Help documentation"}, {"url": "https://twitter.com/ISBSIB", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "http://sugarbind.expasy.org/query", "name": "search", "type": "data access"}, {"url": "http://sugarbind.expasy.org/", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://sugarbind.expasy.org/builder", "name": "Glycan Builder"}, {"url": "http://glycoproteome.expasy.org/substructuresearch", "name": "Glycan SubStructure Search (glyS3)"}]}, "legacy-ids": ["biodbcore-000878", "bsg-d000878"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Glycomics", "Biomedical Science"], "domains": ["Pathogen", "Curated information", "Disease"], "taxonomies": ["Bacteria", "Homo sapiens", "Viruses"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: SugarBind", "abbreviation": "SugarBind", "url": "https://fairsharing.org/10.25504/FAIRsharing.d064y6", "doi": "10.25504/FAIRsharing.d064y6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SugarBind Database (SugarBindDB) was created in 2002 as part of an effort by the MITRE Corporation (http://www.mitre.org) to develop a pathogen-capture technology based on the binding of viral, bacterial and biotoxin lectins to specific glycans (aka, sugars, carbohydrates) displayed on glycoprotein films. The database content results from compiling publicly available information. In 2010, the 2008 version of the database was migrated from MITRE Corporation to the SIB Swiss Institute of Bioinformatics in Geneva, Switzerland. From then, substantial changes in the database design and usage were undertaken and previous content was significantly extended.", "publications": [{"id": 83, "pubmed_id": null, "title": "SugarBindDB", "year": 2017, "url": "http://doi.org/10.1007/978-4-431-56454-6_13", "authors": "Mariethoz J,Khatib K,Mannic T, Alocci D,Campbell MP, Packer NH,Mullen EH,Lisacek F", "journal": "A Practical Guide to Using Glycomics Databases (pp.247-260)", "doi": "10.1007/978-4-431-56454-6_13", "created_at": "2021-09-30T08:22:28.988Z", "updated_at": "2021-09-30T08:22:28.988Z"}, {"id": 2037, "pubmed_id": 26578555, "title": "SugarBindDB, a resource of glycan-mediated host-pathogen interactions.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1247", "authors": "Mariethoz J,Khatib K,Alocci D,Campbell MP,Karlsson NG,Packer NH,Mullen EH,Lisacek F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1247", "created_at": "2021-09-30T08:26:09.413Z", "updated_at": "2021-09-30T11:29:26.894Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 758, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2906", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-11T14:30:19.000Z", "updated-at": "2022-02-08T10:31:55.666Z", "metadata": {"doi": "10.25504/FAIRsharing.d90938", "name": "Information Commons for Rice", "status": "ready", "contacts": [{"contact-name": "Lili Hao", "contact-email": "haolili@big.ac.cn"}], "homepage": "http://ic4r.org", "citations": [{"doi": "10.1093/nar/gkv1141", "pubmed-id": 26519466, "publication-id": 2724}], "identifier": 2906, "description": "Information Commons for Rice (IC4R) is a rice knowledgebase that incorporates rice data through multiple modules such as genome-wide expression profiles derived entirely from RNA-Seq data, resequencing-based genomic variations obtained from re-sequencing data of thousands of rice varieties, plant homologous genes covering multiple diverse plant species, post-translational modifications, rice-related literatures and gene annotations contributed by the rice research community.", "abbreviation": "IC4R", "access-points": [{"url": "http://ic4r.org/api", "name": "IC4R API", "type": "REST"}], "support-links": [{"url": "sangj@big.ac.cn", "name": "Jian Sang", "type": "Support email"}, {"url": "http://ic4r.org/faq", "name": "IC4R FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://ic4r.org/contact", "name": "Contact Information", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://ic4r.org/genes/browse", "name": "Browse Protein-Coding Genes", "type": "data access"}, {"url": "http://ic4r.org/browse/lncRNA", "name": "Browse lncRNAs", "type": "data access"}, {"url": "http://ic4r.org/browse/circRNA", "name": "Browse circular RNA", "type": "data access"}, {"url": "http://ic4r.org/search", "name": "Search", "type": "data access"}, {"url": "http://ic4r.org/blast", "name": "BLAST", "type": "data access"}, {"url": "http://ic4r.org/hk-ts", "name": "HK-TS Gene Finder", "type": "data access"}, {"url": "http://ic4r.org/download", "name": "Download", "type": "data release"}, {"url": "http://literature.ic4r.org/article/index", "name": "Rice Literature Database", "type": "data access"}, {"url": "http://variation.ic4r.org/", "name": "Omics Module: Rice Variation Database", "type": "data access"}, {"url": "http://expression.ic4r.org/", "name": "Omics Module: Rice Expression Database (RED)", "type": "data access"}, {"url": "http://wiki.ic4r.org/index.php/Main_Page", "name": "RiceWiki", "type": "data access"}]}, "legacy-ids": ["biodbcore-001407", "bsg-d001407"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Expression data", "DNA sequence data", "Genome annotation", "Gene expression", "RNA sequencing", "Homologous"], "taxonomies": ["Oryza"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Information Commons for Rice", "abbreviation": "IC4R", "url": "https://fairsharing.org/10.25504/FAIRsharing.d90938", "doi": "10.25504/FAIRsharing.d90938", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Information Commons for Rice (IC4R) is a rice knowledgebase that incorporates rice data through multiple modules such as genome-wide expression profiles derived entirely from RNA-Seq data, resequencing-based genomic variations obtained from re-sequencing data of thousands of rice varieties, plant homologous genes covering multiple diverse plant species, post-translational modifications, rice-related literatures and gene annotations contributed by the rice research community.", "publications": [{"id": 507, "pubmed_id": 29036542, "title": "Database Resources of the BIG Data Center in 2018.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx897", "authors": "BIG Data Center Members ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx897", "created_at": "2021-09-30T08:23:15.298Z", "updated_at": "2021-09-30T11:29:51.279Z"}, {"id": 2724, "pubmed_id": 26519466, "title": "Information Commons for Rice (IC4R).", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1141", "authors": "Hao L,Zhang H,Zhang Z,Hu S,Xue Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1141", "created_at": "2021-09-30T08:27:34.611Z", "updated_at": "2021-09-30T11:29:41.878Z"}, {"id": 2821, "pubmed_id": 24136999, "title": "RiceWiki: a wiki-based database for community curation of rice genes.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt926", "authors": "Zhang Z,Sang J,Ma L,Wu G,Wu H,Huang D,Zou D,Liu S,Li A,Hao L,Tian M,Xu C,Wang X,Wu J,Xiao J,Dai L,Chen LL,Hu S,Yu J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt926", "created_at": "2021-09-30T08:27:46.912Z", "updated_at": "2021-09-30T11:29:46.539Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 108, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2913", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T13:37:18.000Z", "updated-at": "2022-02-08T10:32:16.866Z", "metadata": {"doi": "10.25504/FAIRsharing.4ef690", "name": "Plant Editosome Database", "status": "ready", "contacts": [{"contact-name": "Lili Hao", "contact-email": "haolili@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/ped", "citations": [{"doi": "10.1093/nar/gky1026", "pubmed-id": 30364952, "publication-id": 2816}], "identifier": 2913, "description": "The Plant Editosome Database (PED) is a curated database of plant RNA editing factors (editosomes). The data has been drawn from publications and organelle genome annotations. PED incorporates RNA editing factors and associated data across a number of plant species.", "abbreviation": "PED", "support-links": [{"url": "zhangzhang@big.ac.cn", "name": "Zhang Zhang", "type": "Support email"}, {"url": "https://bigd.big.ac.cn/ped/help", "name": "Help Pages", "type": "Help documentation"}], "data-processes": [{"url": "https://bigd.big.ac.cn/ped/browse/factors", "name": "Browse Editing Factors", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ped/browse/genes", "name": "Browse Edited Genes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ped/browse/species", "name": "Browse Species", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ped/search", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ped/dataset", "name": "Browse Datasets", "type": "data access"}]}, "legacy-ids": ["biodbcore-001416", "bsg-d001416"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Plant Genetics"], "domains": ["RNA modification", "Organelle"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Plant Editosome Database", "abbreviation": "PED", "url": "https://fairsharing.org/10.25504/FAIRsharing.4ef690", "doi": "10.25504/FAIRsharing.4ef690", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Plant Editosome Database (PED) is a curated database of plant RNA editing factors (editosomes). The data has been drawn from publications and organelle genome annotations. PED incorporates RNA editing factors and associated data across a number of plant species.", "publications": [{"id": 2816, "pubmed_id": 30364952, "title": "Plant editosome database: a curated database of RNA editosome in plants.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1026", "authors": "Li M,Xia L,Zhang Y,Niu G,Li M,Wang P,Zhang Y,Sang J,Zou D,Hu S,Hao L,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1026", "created_at": "2021-09-30T08:27:46.286Z", "updated_at": "2021-09-30T11:29:46.212Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1264, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1896", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.599Z", "metadata": {"doi": "10.25504/FAIRsharing.wqyw8s", "name": "Interrupted coding sequences", "status": "deprecated", "contacts": [{"contact-name": "Odile Lecompte", "contact-email": "Odile.Lecompte@igbmc.fr"}], "homepage": "http://www-bio3d-igbmc.u-strasbg.fr/ICDS/", "identifier": 1896, "description": "ICDS database is a database containing ICDS detected by a similarity-based approach. The definition of each interrupted gene is provided as well as the ICDS genomic localisation with the surrounding sequence.", "abbreviation": "ICDS", "support-links": [{"url": "http://www-bio3d-igbmc.u-strasbg.fr/ICDS/help.html", "type": "Help documentation"}], "data-processes": [{"url": "http://www-bio3d-igbmc.u-strasbg.fr/%7Eripp/cgi-bin/gscope_html_server.tcsh?ICDS&PagesWeb&&Globale", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://www-bio3d-igbmc.u-strasbg.fr/ICDS/", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000361", "bsg-d000361"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["DNA sequence data", "Gene"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Interrupted coding sequences", "abbreviation": "ICDS", "url": "https://fairsharing.org/10.25504/FAIRsharing.wqyw8s", "doi": "10.25504/FAIRsharing.wqyw8s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ICDS database is a database containing ICDS detected by a similarity-based approach. The definition of each interrupted gene is provided as well as the ICDS genomic localisation with the surrounding sequence.", "publications": [{"id": 393, "pubmed_id": 16381882, "title": "ICDS database: interrupted CoDing sequences in prokaryotic genomes.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj060", "authors": "Perrodou E., Deshayes C., Muller J., Schaeffer C., Van Dorsselaer A., Ripp R., Poch O., Reyrat JM., Lecompte O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj060", "created_at": "2021-09-30T08:23:02.679Z", "updated_at": "2021-09-30T08:23:02.679Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2918", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-18T12:43:01.000Z", "updated-at": "2022-02-08T10:32:20.501Z", "metadata": {"doi": "10.25504/FAIRsharing.3b381b", "name": "PGG.Population", "status": "ready", "contacts": [{"contact-name": "PGG.Population Helpdesk", "contact-email": "pggadmin@picb.ac.cn"}], "homepage": "https://www.pggpopulation.org/", "citations": [{"doi": "10.1093/nar/gkx1032", "pubmed-id": 29112749, "publication-id": 2819}], "identifier": 2918, "description": "PGG.Population is a database to aid research on genomic diversity and genetic ancestry of human populations, containing over 7000 genomes, covering more than 350 non-overlapping worldwide populations/groups. It stores information on the genomic diversity of each population, including their genetic affinity, population structure, genetic admixture, ancestral architecture, and evidence of natural selection in their genomes.", "abbreviation": "PGG.Population", "support-links": [{"url": "xushua@picb.ac.cn", "name": "Shuhua Xu", "type": "Support email"}, {"url": "https://www.pggpopulation.org/userguide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.pggpopulation.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.pggpopulation.org/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.pggpopulation.org/update", "name": "Updates and News", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.pggpopulation.org/population", "name": "Browse Populations", "type": "data access"}], "associated-tools": [{"url": "https://www.pggpopulation.org/tools", "name": "Figure Illustration Tool"}]}, "legacy-ids": ["biodbcore-001421", "bsg-d001421"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Comparative Genomics", "Population Genetics"], "domains": ["Genotyping", "Genome", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: PGG.Population", "abbreviation": "PGG.Population", "url": "https://fairsharing.org/10.25504/FAIRsharing.3b381b", "doi": "10.25504/FAIRsharing.3b381b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PGG.Population is a database to aid research on genomic diversity and genetic ancestry of human populations, containing over 7000 genomes, covering more than 350 non-overlapping worldwide populations/groups. It stores information on the genomic diversity of each population, including their genetic affinity, population structure, genetic admixture, ancestral architecture, and evidence of natural selection in their genomes.", "publications": [{"id": 2819, "pubmed_id": 29112749, "title": "PGG.Population: a database for understanding the genomic diversity and genetic ancestry of human populations.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1032", "authors": "Zhang C,Gao Y,Liu J,Xue Z,Lu Y,Deng L,Tian L,Feng Q,Xu S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1032", "created_at": "2021-09-30T08:27:46.679Z", "updated_at": "2021-09-30T11:29:46.396Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3061", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-01T11:21:15.000Z", "updated-at": "2022-02-08T10:32:47.710Z", "metadata": {"doi": "10.25504/FAIRsharing.787faa", "name": "Cochrane Library", "status": "ready", "contacts": [{"contact-name": "Deborah Pentesco-Murphy", "contact-email": "dpentesc@wiley.com"}], "homepage": "https://www.cochranelibrary.com/", "identifier": 3061, "description": "The Cochrane Library is a collection of databases in medicine and other healthcare specialities that contain different types of evidence to inform healthcare decision-making. Data in the Cochrane Library comes from the Cochrane Database of Systematic Reviews (CDSR), the Cochrane Central Register of Controlled Trials (CENTRAL), and Cochrane Clinical Answers (CCA). The Cochrane Library uses a subscription-based model, with many governments purchasing country-wide access. A more limited version of the Library is available for free.", "abbreviation": "Cochrane Library", "support-links": [{"url": "https://www.cochranelibrary.com/help/contact-us", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.cochrane.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.cochranelibrary.com/help/permissions", "name": "Permissions and Reprints", "type": "Help documentation"}, {"url": "https://www.cochranelibrary.com/about/about-cochrane-library", "name": "About Cochrane Library", "type": "Help documentation"}, {"url": "https://www.wiley.com/network/cochranelibrarytraining", "name": "Cochrane Library Training", "type": "Training documentation"}, {"url": "https://twitter.com/CochraneLibrary", "name": "@CochraneLibrary", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Cochrane_Library", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1993, "data-processes": [{"url": "https://www.cochranelibrary.com/advanced-search", "name": "Search", "type": "data access"}, {"url": "https://www.cochranelibrary.com/cdsr/reviews", "name": "Browse & Search CDSR", "type": "data access"}, {"url": "https://www.cochranelibrary.com/central", "name": "Browse & Search CENTRAL", "type": "data access"}, {"url": "https://www.cochranelibrary.com/cca", "name": "Browse & Search CCA", "type": "data access"}]}, "legacy-ids": ["biodbcore-001569", "bsg-d001569"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Clinical Studies", "Health Science", "Medical Informatics"], "domains": ["Publication", "Systematic review"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Cochrane Library", "abbreviation": "Cochrane Library", "url": "https://fairsharing.org/10.25504/FAIRsharing.787faa", "doi": "10.25504/FAIRsharing.787faa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cochrane Library is a collection of databases in medicine and other healthcare specialities that contain different types of evidence to inform healthcare decision-making. Data in the Cochrane Library comes from the Cochrane Database of Systematic Reviews (CDSR), the Cochrane Central Register of Controlled Trials (CENTRAL), and Cochrane Clinical Answers (CCA). The Cochrane Library uses a subscription-based model, with many governments purchasing country-wide access. A more limited version of the Library is available for free.", "publications": [], "licence-links": [{"licence-name": "Wiley Online Library Terms of Use", "licence-id": 864, "link-id": 136, "relation": "undefined"}, {"licence-name": "Cochrane Library Subscription required for full access", "licence-id": 141, "link-id": 139, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2728", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T14:45:28.000Z", "updated-at": "2021-11-24T13:17:54.945Z", "metadata": {"doi": "10.25504/FAIRsharing.84Ltoq", "name": "PlanMine", "status": "ready", "contacts": [{"contact-name": "Jochen C Rink", "contact-email": "rink@mpi-cbg.de"}], "homepage": "http://planmine.mpi-cbg.de/planmine", "citations": [{"doi": "10.1093/nar/gky1070", "pubmed-id": 30496475, "publication-id": 2368}], "identifier": 2728, "description": "PlanMine is an integrated web resource of data & tools to mine Planarian biology.", "abbreviation": "PlanMine", "access-points": [{"url": "http://planmine.mpi-cbg.de/planmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://planmine.mpi-cbg.de/planmine/user_guide.html", "name": "PlanMine User Guide", "type": "Help documentation"}, {"url": "https://groups.google.com/forum/#!forum/planmine-news", "name": "PlanMine News", "type": "Help documentation"}, {"url": "http://planmine.mpi-cbg.de/planmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "http://planmine.mpi-cbg.de/planmine/aspect.do?name=Contributors", "name": "Contributors", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2016, "data-processes": [{"url": "http://planmine.mpi-cbg.de/planmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "http://planmine.mpi-cbg.de/planmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://planmine.mpi-cbg.de/planmine/bag.do", "name": "Search Against A List", "type": "data access"}], "associated-tools": [{"url": "http://planmine.mpi-cbg.de/planmine/blast.do", "name": "BLAST for PlanMine"}, {"url": "http://planmine.mpi-cbg.de/planmine/genome.do", "name": "UCSC Genome Browser View"}]}, "legacy-ids": ["biodbcore-001226", "bsg-d001226"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Contig", "Transcript", "Gene"], "taxonomies": ["Bothrioplana semperi", "Dendrocoelum lacteum", "Dugesia japonica", "Echinococcus granulosus", "Echinococcus multilocularis", "Geocentrophora applanata", "Gnosonesimida sp. IV CEL-2015", "Hymenolepis microstoma", "Kronborgia cf. amphipodicola CEL-2017", "Macrostomum lignano", "Microstomum lineare", "Planaria torva", "Polycelis nigra", "Polycelis tenuis", "Prorhynchus alpinus", "Prostheceraeus vittatus", "Protomonotresidae sp. n. CEL-2015", "Rhychomesostoma rostratum", "Schistosoma mansoni", "Schmidtea mediterranea", "Schmidtea mediterranea S2F2", "Schmidtea polychroa", "Stylochus ellipticus", "Taenia solium"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: PlanMine", "abbreviation": "PlanMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.84Ltoq", "doi": "10.25504/FAIRsharing.84Ltoq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PlanMine is an integrated web resource of data & tools to mine Planarian biology.", "publications": [{"id": 2368, "pubmed_id": 30496475, "title": "PlanMine 3.0-improvements to a mineable resource of flatworm biology and biodiversity.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1070", "authors": "Rozanski A,Moon H,Brandl H,Martin-Duran JM,Grohme MA,Huttner K,Bartscherer K,Henry I,Rink JC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1070", "created_at": "2021-09-30T08:26:51.167Z", "updated_at": "2021-09-30T11:29:34.211Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 784, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1870", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:11.898Z", "metadata": {"doi": "10.25504/FAIRsharing.286amb", "name": "MycoBrowser leprae", "status": "deprecated", "contacts": [{"contact-name": "Stewart T. Cole", "contact-email": "stewart.cole@epfl.ch", "contact-orcid": "0000-0003-1400-5585"}], "homepage": "http://mycobrowser.epfl.ch/leprosy.html", "identifier": 1870, "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", "support-links": [{"url": "tuberculist@epfl.ch", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "http://mycobrowser.epfl.ch/leprosy.html", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://mycobrowser.epfl.ch/leprosyblastsearch.php", "name": "blast"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000333", "bsg-d000333"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence", "Genome"], "taxonomies": ["Mycobacterium leprae"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MycoBrowser leprae", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.286amb", "doi": "10.25504/FAIRsharing.286amb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", "publications": [{"id": 387, "pubmed_id": 20980200, "title": "The MycoBrowser portal: a comprehensive and manually annotated resource for mycobacterial genomes.", "year": 2010, "url": "http://doi.org/10.1016/j.tube.2010.09.006", "authors": "Kapopoulou A., Lew JM., Cole ST.,", "journal": "Tuberculosis (Edinb)", "doi": "10.1016/j.tube.2010.09.006", "created_at": "2021-09-30T08:23:01.941Z", "updated_at": "2021-09-30T08:23:01.941Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2630", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T14:28:07.000Z", "updated-at": "2022-02-02T09:48:39.585Z", "metadata": {"name": "BCL-2 Database", "status": "ready", "contacts": [{"contact-name": "Valentine Rech de Laval", "contact-email": "Valentine.RechDeLaval@unil.ch", "contact-orcid": "0000-0002-3020-1490"}], "homepage": "https://bcl2db.lyon.inserm.fr/BCL2DB/", "citations": [], "identifier": 2630, "description": "BCL2DB is a database designed to integrate data on BCL-2 family members and BH3-only proteins.", "abbreviation": "BCL2DB", "data-curation": {}, "support-links": [{"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBNews", "name": "News", "type": "Blog/News"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBContact", "type": "Contact form"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBHelp?userhelp=Annotate", "name": "Annotate help", "type": "Help documentation"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBHelp?userhelp=Dataset", "name": "Browser help", "type": "Help documentation"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBHelp", "type": "Help documentation"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBStats", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://npsa.lyon.inserm.fr/cgi-bin/npsa_automat.pl?page=/NPSA/npsa_blastan.html", "name": "BlastN", "type": "data access"}, {"url": "https://npsa.lyon.inserm.fr/cgi-bin/npsa_automat.pl?page=/NPSA/npsa_clustalwan.html", "name": "ClustalW", "type": "data access"}, {"url": "https://npsa.lyon.inserm.fr/cgi-bin/npsa_automat.pl?page=/NPSA/npsa_blast.html", "name": "BlastP", "type": "data access"}, {"url": "https://npsa.lyon.inserm.fr/cgi-bin/npsa_automat.pl?page=/NPSA/npsa_clustalw.html", "name": "ClustalWP", "type": "data access"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBAnnotate", "name": "Annotate", "type": "data curation"}, {"url": "https://bcl2db.lyon.inserm.fr/BCL2DB/BCL2DBIndex", "name": "Browse", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "no", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001119", "bsg-d001119"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Function analysis", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: BCL-2 Database", "abbreviation": "BCL2DB", "url": "https://fairsharing.org/fairsharing_records/2630", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BCL2DB is a database designed to integrate data on BCL-2 family members and BH3-only proteins.", "publications": [{"id": 220, "pubmed_id": 24608034, "title": "BCL2DB: database of BCL-2 family members and BH3-only proteins.", "year": 2014, "url": "http://doi.org/10.1093/database/bau013", "authors": "Rech de Laval V,Deleage G,Aouacheria A,Combet C", "journal": "Database (Oxford)", "doi": "10.1093/database/bau013", "created_at": "2021-09-30T08:22:43.823Z", "updated_at": "2021-09-30T08:22:43.823Z"}, {"id": 225, "pubmed_id": 19543976, "title": "BCL2DB: moving 'helix-bundled' BCL-2 family members to their database.", "year": 2009, "url": "http://doi.org/10.1007/s10495-009-0376-0", "authors": "Blaineau SV,Aouacheria A", "journal": "Apoptosis", "doi": "10.1007/s10495-009-0376-0", "created_at": "2021-09-30T08:22:44.339Z", "updated_at": "2021-09-30T08:22:44.339Z"}], "licence-links": [{"licence-name": "BCL2DB Legal Notice", "licence-id": 64, "link-id": 1693, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBGZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--d8421088f55d0cf3873d28e56df83b784ae4df42/bcl2db.jpg?disposition=inline"}} +{"id": "1694", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-02T09:47:46.608Z", "metadata": {"doi": "10.25504/FAIRsharing.fwzf0w", "name": "Therapeutic Target Database", "status": "ready", "contacts": [{"contact-name": "Ying Zhou ", "contact-email": "zhou_ying@zju.edu.cn", "contact-orcid": null}, {"contact-name": "Yintao Zhang", "contact-email": "zhangyintao@zju.edu.cn", "contact-orcid": null}], "homepage": "http://db.idrblab.net/ttd/", "citations": [], "identifier": 1694, "description": "The Therapeutic Target Database provides information about therapeutic protein and nucleic acid targets, the targeted disease, pathway information and the corresponding drugs directed at each of these targets. Also included in this database are links to relevant databases containing information about target function, sequence, 3D structure, ligand binding properties, enzyme nomenclature and drug structure, therapeutic class, clinical development status. All information is fully referenced.", "abbreviation": "TTD", "data-curation": {}, "support-links": [{"url": "http://db.idrblab.net/ttd/schema", "name": "Database Schema", "type": "Help documentation"}, {"url": "http://db.idrblab.net/ttd/ontology", "name": "Adopted Ontology", "type": "Help documentation"}, {"url": "http://db.idrblab.net/ttd/searchengine", "name": "Search Engine", "type": "Help documentation"}, {"url": "http://db.idrblab.net/ttd/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://db.idrblab.net/ttd/full-data-download", "name": "file download (tab-delimited)", "type": "data access"}, {"url": "http://db.idrblab.net/ttd/", "name": "Search", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"name": "monthly release", "type": "data release"}, {"url": "http://db.idrblab.net/ttd/covid19-download", "name": "COVID-19 Full Data Download", "type": "data access"}], "deprecation-date": null, "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000150", "bsg-d000150"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Citation", "Enzyme Commission number", "Protein structure", "Annotation", "Drug", "Drug combination effect modeling", "Drug metabolic process", "Ligand binding domain binding", "Natural product", "Disease", "Quantitative structure-activity relationship", "Amino acid sequence", "Target"], "taxonomies": ["All"], "user-defined-tags": ["Multi-target agents data", "Validation"], "countries": ["Singapore"], "name": "FAIRsharing record for: Therapeutic Target Database", "abbreviation": "TTD", "url": "https://fairsharing.org/10.25504/FAIRsharing.fwzf0w", "doi": "10.25504/FAIRsharing.fwzf0w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Therapeutic Target Database provides information about therapeutic protein and nucleic acid targets, the targeted disease, pathway information and the corresponding drugs directed at each of these targets. Also included in this database are links to relevant databases containing information about target function, sequence, 3D structure, ligand binding properties, enzyme nomenclature and drug structure, therapeutic class, clinical development status. All information is fully referenced.", "publications": [{"id": 210, "pubmed_id": 19933260, "title": "Update of TTD: Therapeutic Target Database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1014", "authors": "Zhu F., Han B., Kumar P., Liu X., Ma X., Wei X., Huang L., Guo Y., Han L., Zheng C., Chen Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp1014", "created_at": "2021-09-30T08:22:42.840Z", "updated_at": "2021-09-30T08:22:42.840Z"}, {"id": 211, "pubmed_id": 11752352, "title": "TTD: Therapeutic Target Database.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.412", "authors": "Chen X., Ji ZL., Chen YZ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.412", "created_at": "2021-09-30T08:22:42.940Z", "updated_at": "2021-09-30T08:22:42.940Z"}, {"id": 1348, "pubmed_id": 24265219, "title": "Therapeutic target database update 2014: a resource for targeted therapeutics.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1129", "authors": "Qin C,Zhang C,Zhu F,Xu F,Chen SY,Zhang P,Li YH,Yang SY,Wei YQ,Tao L,Chen YZ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1129", "created_at": "2021-09-30T08:24:50.857Z", "updated_at": "2021-09-30T11:29:06.234Z"}, {"id": 1349, "pubmed_id": 26578601, "title": "Therapeutic target database update 2016: enriched resource for bench to clinical drug target and targeted pathway information.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1230", "authors": "Yang H,Qin C,Li YH,Tao L,Zhou J,Yu CY,Xu F,Chen Z,Zhu F,Chen YZ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1230", "created_at": "2021-09-30T08:24:50.957Z", "updated_at": "2021-09-30T11:29:06.334Z"}, {"id": 3207, "pubmed_id": 34718717, "title": "Therapeutic target database update 2022: facilitating drug discovery with enriched comparative data of targeted agents.", "year": 2022, "url": "https://doi.org/10.1093/nar/gkab953", "authors": "Zhou Y, Zhang Y, Lian X, Li F, Wang C, Zhu F, Qiu Y, Chen Y", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkab953", "created_at": "2022-02-01T15:54:32.946Z", "updated_at": "2022-02-01T15:54:32.946Z"}], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBGdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--925337b0d03c2c92dee0e414104f3e16c84b3dd0/ttd_banner2022.png?disposition=inline"}} +{"id": "2943", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T12:25:19.000Z", "updated-at": "2021-11-24T13:20:10.278Z", "metadata": {"doi": "10.25504/FAIRsharing.mKrBDb", "name": "Rice Seed Nuclear Protein Database", "status": "deprecated", "contacts": [{"contact-name": "Akhilesh K Tyagi", "contact-email": "akhilesh@genomeindia.org", "contact-orcid": "0000-0001-9096-711"}], "homepage": "http://pmb.du.ac.in/rsnpdb", "identifier": 2943, "description": "RSNP-DB is a database is a compilation of nuclear localization prediction confidence of the seed-expressed proteins in rice.", "abbreviation": "RSNP-DB", "year-creation": 2020, "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001447", "bsg-d001447"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Protein localization", "Cellular localization"], "taxonomies": ["Oryza sativa"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Rice Seed Nuclear Protein Database", "abbreviation": "RSNP-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.mKrBDb", "doi": "10.25504/FAIRsharing.mKrBDb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RSNP-DB is a database is a compilation of nuclear localization prediction confidence of the seed-expressed proteins in rice.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1743", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.262Z", "metadata": {"doi": "10.25504/FAIRsharing.1bnhyh", "name": "Databases of Orthologous Promoters", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "doop@abc.hu"}], "homepage": "http://doop.abc.hu/", "identifier": 1743, "description": "DoOP is a database of eukaryotic promoter sequences (upstream regions), aiming to facilitate the recognition of regulatory sites conserved between species. Based on the Arabidopsis thaliana and Homo sapiens genome annotation, this resource is also a collection of the orthologous promoter sequences from Viridiplantae and Chordata species. The database can be used to find promoter clusters of different genes as well as positions of the conserved regions and transcription start sites, which can be viewed graphically.", "abbreviation": "DoOP", "support-links": [{"url": "http://doop.abc.hu/creation.php", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://doop.abc.hu/download/", "name": "Download", "type": "data access"}, {"url": "http://doop.abc.hu/databases/plant_search.php?version=1.5", "name": "Search", "type": "data access"}, {"url": "http://doop.abc.hu/databases/chordate_search.php?version=1.4", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://doop.abc.hu/creation.php", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000201", "bsg-d000201"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Promoter", "Orthologous"], "taxonomies": ["Arabidopsis thaliana", "Chordata", "Homo sapiens", "Viridiplantae"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Databases of Orthologous Promoters", "abbreviation": "DoOP", "url": "https://fairsharing.org/10.25504/FAIRsharing.1bnhyh", "doi": "10.25504/FAIRsharing.1bnhyh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DoOP is a database of eukaryotic promoter sequences (upstream regions), aiming to facilitate the recognition of regulatory sites conserved between species. Based on the Arabidopsis thaliana and Homo sapiens genome annotation, this resource is also a collection of the orthologous promoter sequences from Viridiplantae and Chordata species. The database can be used to find promoter clusters of different genes as well as positions of the conserved regions and transcription start sites, which can be viewed graphically.", "publications": [{"id": 289, "pubmed_id": 15608291, "title": "DoOP: Databases of Orthologous Promoters, collections of clusters of orthologous upstream sequences from chordates and plants.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki097", "authors": "Barta E., Sebesty\u00e9n E., P\u00e1lfy TB., T\u00f3th G., Ortutay CP., Patthy L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki097", "created_at": "2021-09-30T08:22:51.132Z", "updated_at": "2021-09-30T08:22:51.132Z"}, {"id": 1582, "pubmed_id": 19534755, "title": "DoOPSearch: a web-based tool for finding and analysing common conserved motifs in the promoter regions of different chordate and plant genes.", "year": 2009, "url": "http://doi.org/10.1186/1471-2105-10-S6-S6", "authors": "Sebestyen E,Nagy T,Suhai S,Barta E", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-10-S6-S6", "created_at": "2021-09-30T08:25:17.345Z", "updated_at": "2021-09-30T08:25:17.345Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 200, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2302", "type": "fairsharing-records", "attributes": {"created-at": "2016-07-11T07:12:58.000Z", "updated-at": "2022-01-06T09:09:08.858Z", "metadata": {"doi": "10.25504/FAIRsharing.j4ebq1", "name": "MitoCheck", "status": "ready", "contacts": [{"contact-name": "Jean-Karim Heriche", "contact-email": "heriche@embl.de"}], "homepage": "http://www.mitocheck.org", "citations": [], "identifier": 2302, "description": "MitoCheck aims to integrate information on cellular function of human genes while giving access to supporting information such as microscopy images of phenotypes.", "abbreviation": "MitoCheck", "access-points": [{"url": "https://www.mitocheck.org/cgi-bin/mtc", "name": "MitoCheck API", "type": "REST", "example-url": "https://www.mitocheck.org/cgi-bin/mtc?action=get_data;gene=ENSG00000178999;data=phenotypes;format=text ", "documentation-url": "https://www.mitocheck.org/downloads.shtml"}], "data-curation": {}, "year-creation": 2008, "data-processes": [{"url": "https://www.mitocheck.org/screens_browser.shtml", "name": "Browse", "type": "data access"}, {"url": "https://www.mitocheck.org/workspace.shtml", "name": "Search", "type": "data access"}, {"url": "https://www.mitocheck.org/downloads/", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://www.mitocheck.org/cgi-bin/BACfinder", "name": "Mouse BACFinder"}, {"url": "https://git.embl.de/heriche/Mitocheck", "name": "Perl Library"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000776", "bsg-d000776"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cell Biology"], "domains": ["Function analysis", "Bioimaging", "Gene", "High-content screen"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: MitoCheck", "abbreviation": "MitoCheck", "url": "https://fairsharing.org/10.25504/FAIRsharing.j4ebq1", "doi": "10.25504/FAIRsharing.j4ebq1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MitoCheck aims to integrate information on cellular function of human genes while giving access to supporting information such as microscopy images of phenotypes.", "publications": [{"id": 1224, "pubmed_id": 20360735, "title": "Phenotypic profiling of the human genome by time-lapse microscopy reveals cell division genes.", "year": 2010, "url": "http://doi.org/10.1038/nature08869", "authors": "Neumann B, et al.", "journal": "Nature", "doi": "10.1038/nature08869", "created_at": "2021-09-30T08:24:36.442Z", "updated_at": "2021-09-30T08:24:36.442Z"}, {"id": 1228, "pubmed_id": 20360068, "title": "Systematic analysis of human protein complexes identifies chromosome segregation proteins.", "year": 2010, "url": "http://doi.org/10.1126/science.1181348", "authors": "Hutchins JR, et al.", "journal": "Science", "doi": "10.1126/science.1181348", "created_at": "2021-09-30T08:24:36.974Z", "updated_at": "2021-09-30T08:24:36.974Z"}, {"id": 2528, "pubmed_id": 30202089, "title": "Experimental and computational framework for a dynamic protein atlas of human cell division.", "year": 2018, "url": "http://doi.org/10.1038/s41586-018-0518-z", "authors": "Cai Y,Hossain MJ,Heriche JK,Politi AZ,Walther N,Koch B,Wachsmuth M,Nijmeijer B,Kueblbeck M,Martinic-Kavur M,Ladurner R,Alexander S,Peters JM,Ellenberg J", "journal": "Nature", "doi": "10.1038/s41586-018-0518-z", "created_at": "2021-09-30T08:27:10.129Z", "updated_at": "2021-09-30T08:27:10.129Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2158", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.487Z", "metadata": {"doi": "10.25504/FAIRsharing.gg60g3", "name": "The Improved Database Of Chimeric Transcripts and RNA-Seq Data", "status": "ready", "contacts": [{"contact-name": "Milana Frenkel-Morgenstern", "contact-email": "milana.morgenstern@biu.ac.il", "contact-orcid": "0000-0002-0329-4599"}], "homepage": "http://chitars.md.biu.ac.il/", "citations": [{"doi": "10.1093/nar/gkz1025", "pubmed-id": 31747015, "publication-id": 840}], "identifier": 2158, "description": "The ESTs and mRNAs from GenBank have been used to identify chimeric RNAs of two or more different genes. By analyzing thousands of chimeric ESTs by RNA sequencing, we found that the expression level of chimeric ESTs is generally low and they are highly tissue specific in normal cells. Here we present the improved version of the ChiTaRS database (ChiTaRS-5.0) with more then (66,243 + 41,584 + 3,052 + 19 + 67 + 20 + 292 + 305) = 111,582 chimeric transcripts in humans, mice, fruit flies, rats, zebrafishes, cows, pigs, and yeast. In the current version we extended the experimental data evidence as well as included a novel type of the sense-antisense chimeric transcripts of the same gene confirmed experimentally by RT-PCR, qPCR, RNA-sequencing and mass-spec peptides. In addition, we collected 23,167 human cancer breakpoints with the expression levels of chimeric RNAs confirmed by the paired-end RNA-sequencing experiments in different tissues in humans, mice and fruit flies.", "abbreviation": "ChiTaRS", "support-links": [{"url": "http://chitars.md.biu.ac.il/help.html", "type": "Help documentation"}, {"url": "https://twitter.com/milana_fm", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://chitars.md.biu.ac.il/bin/search.pl?searchtype=full_collection", "name": "browse", "type": "data access"}, {"url": "http://chitars.md.biu.ac.il/bin/search.pl?searchtype=full_collection", "name": "search", "type": "data access"}, {"url": "http://chitars.md.biu.ac.il/downloads.html", "name": "download", "type": "data access"}], "associated-tools": [{"url": "http://chitars.md.biu.ac.il/bin/evolution.pl", "name": "Compare and Analyze 5.0"}, {"url": "http://chitars.md.biu.ac.il/bin/dnasearch.pl", "name": "Junction Search 5.0"}, {"url": "http://chitars.md.biu.ac.il/bin/breakpoints.pl", "name": "Analysis of Chromosomal Breakpoints 5.0"}, {"url": "http://chitars.md.biu.ac.il/bin/search.pl", "name": "Search Database Collection 5.0"}]}, "legacy-ids": ["biodbcore-000630", "bsg-d000630"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["RNA sequence", "Chimera detection", "Ribonucleic acid", "Chimera"], "taxonomies": ["Bos taurus", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae", "Sus scrofa"], "user-defined-tags": ["gene fusions"], "countries": ["Spain", "Israel"], "name": "FAIRsharing record for: The Improved Database Of Chimeric Transcripts and RNA-Seq Data", "abbreviation": "ChiTaRS", "url": "https://fairsharing.org/10.25504/FAIRsharing.gg60g3", "doi": "10.25504/FAIRsharing.gg60g3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ESTs and mRNAs from GenBank have been used to identify chimeric RNAs of two or more different genes. By analyzing thousands of chimeric ESTs by RNA sequencing, we found that the expression level of chimeric ESTs is generally low and they are highly tissue specific in normal cells. Here we present the improved version of the ChiTaRS database (ChiTaRS-5.0) with more then (66,243 + 41,584 + 3,052 + 19 + 67 + 20 + 292 + 305) = 111,582 chimeric transcripts in humans, mice, fruit flies, rats, zebrafishes, cows, pigs, and yeast. In the current version we extended the experimental data evidence as well as included a novel type of the sense-antisense chimeric transcripts of the same gene confirmed experimentally by RT-PCR, qPCR, RNA-sequencing and mass-spec peptides. In addition, we collected 23,167 human cancer breakpoints with the expression levels of chimeric RNAs confirmed by the paired-end RNA-sequencing experiments in different tissues in humans, mice and fruit flies.", "publications": [{"id": 431, "pubmed_id": 25414346, "title": "ChiTaRS 2.1--an improved database of the chimeric transcripts and RNA-seq data with novel sense-antisense chimeric RNA transcripts.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1199", "authors": "Frenkel-Morgenstern M,Gorohovski A,Vucenovic D,Maestre L,Valencia A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1199", "created_at": "2021-09-30T08:23:06.872Z", "updated_at": "2021-09-30T11:28:46.518Z"}, {"id": 597, "pubmed_id": 23143107, "title": "ChiTaRS: a database of human, mouse and fruit fly chimeric transcripts and RNA-sequencing data", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1041", "authors": "Milana Frenkel-Morgenstern1, Alessandro Gorohovski, Vincent Lacroix, Mark Rogers, Kristina Ibanez, Cesar Boullosa, Eduardo Andres Leon, Asa Ben-Hur and Alfonso Valencia", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1041", "created_at": "2021-09-30T08:23:25.485Z", "updated_at": "2021-09-30T08:23:25.485Z"}, {"id": 671, "pubmed_id": 27899596, "title": "ChiTaRS-3.1-the enhanced chimeric transcripts and RNA-seq database matched with protein-protein interactions.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1127", "authors": "Gorohovski A,Tagore S,Palande V,Malka A,Raviv-Shay D,Frenkel-Morgenstern M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1127", "created_at": "2021-09-30T08:23:34.033Z", "updated_at": "2021-09-30T11:28:48.867Z"}, {"id": 840, "pubmed_id": 31747015, "title": "ChiTaRS 5.0: the comprehensive database of chimeric transcripts matched with druggable fusions and 3D chromatin maps", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1025", "authors": "Deepak Balamurali, Alessandro Gorohovski, Rajesh Detroja, Vikrant Palande, Dorith Raviv-Shay, Milana Frenkel-Morgenstern", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1025", "created_at": "2021-09-30T08:23:52.711Z", "updated_at": "2021-09-30T08:23:52.711Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 719, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1680", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:32.178Z", "metadata": {"doi": "10.25504/FAIRsharing.yytevr", "name": "MetaCyc", "status": "ready", "contacts": [{"contact-name": "BioCyc Support", "contact-email": "biocyc-support@ai.sri.com"}], "homepage": "http://metacyc.org/", "identifier": 1680, "description": "MetaCyc is the largest curated collection of metabolic pathways currently available. It provides a comprehensive resource for metabolic pathways and enzymes from all domains of life. The pathways in MetaCyc are experimentally determined, small-molecule metabolic pathways, and are curated from the primary scientific literature. Most reactions in MetaCyc pathways are linked to one or more well-characterized enzymes, and both pathways and enzymes are annotated with reviews, evidence codes, and literature citations.", "abbreviation": "MetaCyc", "access-points": [{"url": "http://ecocyc.org/web-services.shtml", "name": "rest", "type": "REST"}], "support-links": [{"url": "http://metacyc.org/contact.shtml", "type": "Contact form"}, {"url": "http://metacyc.org/MetaCycUserGuide.shtml", "type": "Help documentation"}, {"url": "https://twitter.com/BioCyc", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/MetaCyc", "type": "Wikipedia"}], "year-creation": 1999, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"url": "http://metacyc.org/download.shtml", "name": "file download(tab-delimited,BioPAX)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "programmatic interface (perl,java,lisp)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011294", "name": "re3data:r3d100011294", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007778", "name": "SciCrunch:RRID:SCR_007778", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000136", "bsg-d000136"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics", "Systems Biology"], "domains": ["Annotation", "Small molecule", "Enzyme", "Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MetaCyc", "abbreviation": "MetaCyc", "url": "https://fairsharing.org/10.25504/FAIRsharing.yytevr", "doi": "10.25504/FAIRsharing.yytevr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaCyc is the largest curated collection of metabolic pathways currently available. It provides a comprehensive resource for metabolic pathways and enzymes from all domains of life. The pathways in MetaCyc are experimentally determined, small-molecule metabolic pathways, and are curated from the primary scientific literature. Most reactions in MetaCyc pathways are linked to one or more well-characterized enzymes, and both pathways and enzymes are annotated with reviews, evidence codes, and literature citations.", "publications": [{"id": 2583, "pubmed_id": 22102576, "title": "The MetaCyc database of metabolic pathways and enzymes and the BioCyc collection of pathway/genome databases.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1014", "authors": "Caspi R., Altman T., Dreher K., Fulcher CA., Subhraveti P., Keseler IM., Kothari A., Krummenacker M., Latendresse M., Mueller LA., Ong Q., Paley S., Pujar A., Shearer AG., Travers M., Weerasinghe D., Zhang P., Karp PD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1014", "created_at": "2021-09-30T08:27:16.713Z", "updated_at": "2021-09-30T08:27:16.713Z"}, {"id": 2584, "pubmed_id": 24225315, "title": "The MetaCyc database of metabolic pathways and enzymes and the BioCyc collection of Pathway/Genome Databases", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1103", "authors": "Caspi R, Altman T, Billington R, Dreher K, Foerster H, Fulcher CA, Holland TA, Keseler IM, Kothari A, Kubo A, Krummenacker M, Latendresse M, Mueller LA, Ong Q, Paley S, Subhraveti P, Weaver DS, Weerasinghe D, Zhang P, Karp PD.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1103", "created_at": "2021-09-30T08:27:16.887Z", "updated_at": "2021-09-30T08:27:16.887Z"}, {"id": 2585, "pubmed_id": 26527732, "title": "The MetaCyc database of metabolic pathways and enzymes and the BioCyc collection of pathway/genome databases.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1164", "authors": "Caspi R,Billington R,Ferrer L,Foerster H,Fulcher CA,Keseler IM,Kothari A,Krummenacker M,Latendresse M,Mueller LA,Ong Q,Paley S,Subhraveti P,Weaver DS,Karp PD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1164", "created_at": "2021-09-30T08:27:17.001Z", "updated_at": "2021-09-30T11:29:40.011Z"}], "licence-links": [{"licence-name": "BioCyc Database License", "licence-id": 78, "link-id": 672, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2917", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-17T10:16:04.000Z", "updated-at": "2022-02-08T10:53:55.283Z", "metadata": {"doi": "10.25504/FAIRsharing.ec45c4", "name": "Coronavirus Antiviral Research Database", "status": "ready", "contacts": [{"contact-name": "HIV Drug resistance Database team", "contact-email": "hivdbteam@stanford.edu"}], "homepage": "https://covdb.stanford.edu/", "citations": [], "identifier": 2917, "description": "COVDB contains cell culture, animal model, and clinical data on compounds with a proven or potential anti-coronavirus activity.", "abbreviation": "COVDB", "data-curation": {}, "support-links": [{"url": "https://github.com/hivdb/covid-drdb-payload/issues/new?assignees=KaimingTao%2C+philiptzou&labels=bug&template=data-error-report.md&title=%5BBUG%5D", "name": "Report a bug", "type": "Contact form"}], "year-creation": 2020, "data-processes": [{"url": "https://covdb.stanford.edu/page/mutation-viewer/", "name": "SARS-CoV-2 Variants", "type": "data access"}, {"url": "https://covdb.stanford.edu/page/susceptibility-data/", "name": "Susceptibility data", "type": "data access"}, {"url": "https://github.com/hivdb/covid-drdb-payload/issues/new?assignees=KaimingTao&labels=enhancement&template=suggest-new-study.md&title=%5BNew%5D", "name": "Suggest new study", "type": "data curation"}, {"url": "https://covdb.stanford.edu/sierra/sars2/by-patterns/", "name": "SARS-CoV-2 Mutations Analysis", "type": "data access"}, {"url": "https://covdb.stanford.edu/antiviral-portal/", "name": "Search Antiviral Database", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013298", "name": "re3data:r3d100013298", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001420", "bsg-d001420"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Clinical Studies", "Virology"], "domains": ["Animal research", "Cell culture"], "taxonomies": ["Coronaviridae"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Coronavirus Antiviral Research Database", "abbreviation": "COVDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ec45c4", "doi": "10.25504/FAIRsharing.ec45c4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: COVDB contains cell culture, animal model, and clinical data on compounds with a proven or potential anti-coronavirus activity.", "publications": [], "licence-links": [{"licence-name": "COVDB Terms of Use", "licence-id": 153, "link-id": 1634, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1573", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.822Z", "metadata": {"doi": "10.25504/FAIRsharing.rq71dw", "name": "DNAtraffic", "status": "deprecated", "contacts": [{"contact-name": "Joanna Krwawicz", "contact-email": "joanna.krwawicz@gmail.com"}], "homepage": "http://dnatraffic.ibb.waw.pl/", "identifier": 1573, "description": "A database for systems biology of DNA dynamics during the cell life.", "abbreviation": "DNAtraffic", "support-links": [{"url": "http://dnatraffic.ibb.waw.pl/classification/faq/", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2011, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "monthly release of database dump", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://dnatraffic.ibb.waw.pl/", "name": "browse", "type": "data access"}, {"url": "http://dnatraffic.ibb.waw.pl/", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000028", "bsg-d000028"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Citation", "Protein name", "Drug structure", "Drug name", "Nucleic acid sequence", "Protein image", "Function analysis", "Network model", "Molecular function", "Image", "DNA damage", "Cross linking", "Disease", "Pathway model", "Amino acid sequence", "Orthologous", "Target"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Mus musculus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": ["Drug target in DNA network"], "countries": ["Poland"], "name": "FAIRsharing record for: DNAtraffic", "abbreviation": "DNAtraffic", "url": "https://fairsharing.org/10.25504/FAIRsharing.rq71dw", "doi": "10.25504/FAIRsharing.rq71dw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database for systems biology of DNA dynamics during the cell life.", "publications": [{"id": 1878, "pubmed_id": 22110027, "title": "DNAtraffic--a new database for systems biology of DNA dynamics during the cell life.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr962", "authors": "Kuchta K,Barszcz D,Grzesiuk E,Pomorski P,Krwawicz J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr962", "created_at": "2021-09-30T08:25:51.246Z", "updated_at": "2021-09-30T11:29:21.761Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1999", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-07T15:02:06.779Z", "metadata": {"doi": "10.25504/FAIRsharing.5ab0n7", "name": "Three-Dimensional Structure Database of Natural Metabolites", "status": "deprecated", "contacts": [{"contact-name": "Miki H. Maeda", "contact-email": "mmaeda@nias.affrc.go.jp"}], "homepage": "http://www.3dmet.dna.affrc.go.jp/", "citations": [], "identifier": 1999, "description": "3DMET is a database of three-dimensional structures of natural metabolites.", "abbreviation": "3DMET", "support-links": [{"url": "http://www.3dmet.dna.affrc.go.jp/cgi/renraku.html", "type": "Contact form"}, {"url": "http://www.3dmet.dna.affrc.go.jp/docs/faqs.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.3dmet.dna.affrc.go.jp/docs/index.html", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.3dmet.dna.affrc.go.jp/cgi/met2_srch_d1.html", "name": "Search", "type": "data access"}, {"url": "http://www.3dmet.dna.affrc.go.jp/cgi/met2_srch_struct.html", "name": "Advance search", "type": "data access"}, {"url": "http://www.3dmet.dna.affrc.go.jp/docs/ent1k.html", "name": "Browse", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000465", "bsg-d000465"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Molecular structure", "Chemical entity", "Metabolite", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Three-Dimensional Structure Database of Natural Metabolites", "abbreviation": "3DMET", "url": "https://fairsharing.org/10.25504/FAIRsharing.5ab0n7", "doi": "10.25504/FAIRsharing.5ab0n7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: 3DMET is a database of three-dimensional structures of natural metabolites.", "publications": [{"id": 469, "pubmed_id": 23293959, "title": "Three-Dimensional Structure Database of Natural Metabolites (3DMET): A Novel Database of Curated 3D Structures.", "year": 2013, "url": "http://doi.org/10.1021/ci300309k", "authors": "Maeda MH., Kondo K.,", "journal": "J Chem Inf Model", "doi": "10.1021/ci300309k", "created_at": "2021-09-30T08:23:10.959Z", "updated_at": "2021-09-30T08:23:10.959Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3308", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-15T14:16:13.000Z", "updated-at": "2022-02-08T10:37:02.022Z", "metadata": {"doi": "10.25504/FAIRsharing.536d54", "name": "Integrated Interactions Database", "status": "ready", "contacts": [{"contact-name": "Igor Jurisica", "contact-email": "juris@ai.utoronto.ca"}], "homepage": "http://iid.ophid.utoronto.ca/", "identifier": 3308, "description": "The Integrated Interactions Database (IID) is a database of detected and predicted protein-protein interactions (PPIs) in a number of species. It stores networks that are specific to tissues, sub-cellular localizations, diseases, and druggable proteins.", "abbreviation": "IID", "support-links": [{"url": "http://iid.ophid.utoronto.ca", "name": "Help", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://iid.ophid.utoronto.ca/", "name": "Search & Analyze", "type": "data access"}, {"url": "http://iid.ophid.utoronto.ca/", "name": "Download", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012380", "name": "re3data:r3d100012380", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001823", "bsg-d001823"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology", "Systems Biology"], "domains": ["Protein interaction", "Protein", "Orthologous"], "taxonomies": ["Anas platyrhynchos", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Cavia porcellus", "Drosophila melanogaster", "Equus caballus", "Felis catus", "Gallus gallus", "Homo sapiens", "Meleagris gallopavo", "Mus musculus", "Oryctolagus cuniculus", "Ovis aries", "Rattus norvegicus", "Saccharomyces cerevisiae", "Sus scrofa", "Vicugna pacos"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Integrated Interactions Database", "abbreviation": "IID", "url": "https://fairsharing.org/10.25504/FAIRsharing.536d54", "doi": "10.25504/FAIRsharing.536d54", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Interactions Database (IID) is a database of detected and predicted protein-protein interactions (PPIs) in a number of species. It stores networks that are specific to tissues, sub-cellular localizations, diseases, and druggable proteins.", "publications": [{"id": 2124, "pubmed_id": 30407591, "title": "IID 2018 update: context-specific physical protein-protein interactions in human, model organisms and domesticated species.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1037", "authors": "Kotlyar M,Pastrello C,Malik Z,Jurisica I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1037", "created_at": "2021-09-30T08:26:19.455Z", "updated_at": "2021-09-30T11:29:29.538Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3291", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-25T09:25:40.000Z", "updated-at": "2022-02-08T10:37:03.347Z", "metadata": {"doi": "10.25504/FAIRsharing.375b12", "name": "Resource of Asian Primary Immunodeficiency Diseases", "status": "ready", "contacts": [{"contact-name": "RIKEN IMS Contact", "contact-email": "ims-web@riken.jp"}], "homepage": "http://web16.kazusa.or.jp/rapid_original/", "citations": [{"doi": "10.1093/nar/gkn682", "pubmed-id": 18842635, "publication-id": 1780}], "identifier": 3291, "description": "The Resource of Asian Primary Immunodeficiency Diseases (RAPID) is a repository of molecular alterations in primary immunodeficiency diseases (PID). It hosts information on sequence variations and expression at the mRNA and protein levels of all genes reported to be involved in PID patients. This database aims to to provide detailed information pertaining to genes and proteins involved in primary immunodeficiency diseases along with other relevant information about protein\u2013protein interactions, mouse studies and microarray gene-expression profiles in various organs and cells of the immune system. Please note that, while available, the RAPID database is no longer being updated.", "abbreviation": "RAPID", "support-links": [{"url": "http://web16.kazusa.or.jp/rapid_original/faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://web16.kazusa.or.jp/rapid_original/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://web16.kazusa.or.jp/rapid_original/download", "name": "Download", "type": "data release"}, {"url": "http://web16.kazusa.or.jp/rapid_original/browse", "name": "Browse", "type": "data access"}, {"url": "http://web16.kazusa.or.jp/rapid_original/query", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001806", "bsg-d001806"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunogenetics", "Immunology"], "domains": ["Immune system"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India", "Japan"], "name": "FAIRsharing record for: Resource of Asian Primary Immunodeficiency Diseases", "abbreviation": "RAPID", "url": "https://fairsharing.org/10.25504/FAIRsharing.375b12", "doi": "10.25504/FAIRsharing.375b12", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Resource of Asian Primary Immunodeficiency Diseases (RAPID) is a repository of molecular alterations in primary immunodeficiency diseases (PID). It hosts information on sequence variations and expression at the mRNA and protein levels of all genes reported to be involved in PID patients. This database aims to to provide detailed information pertaining to genes and proteins involved in primary immunodeficiency diseases along with other relevant information about protein\u2013protein interactions, mouse studies and microarray gene-expression profiles in various organs and cells of the immune system. Please note that, while available, the RAPID database is no longer being updated.", "publications": [{"id": 1780, "pubmed_id": 18842635, "title": "RAPID: Resource of Asian Primary Immunodeficiency Diseases.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn682", "authors": "Keerthikumar S,Raju R,Kandasamy K,Hijikata A,Ramabadran S,Balakrishnan L,Ahmed M,Rani S,Selvan LD,Somanathan DS,Ray S,Bhattacharjee M,Gollapudi S,Ramachandra YL,Bhadra S,Bhattacharyya C,Imai K,Nonoyama S,Kanegane H,Miyawaki T,Pandey A,Ohara O,Mohan S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn682", "created_at": "2021-09-30T08:25:39.793Z", "updated_at": "2021-09-30T11:29:20.819Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2355", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-28T22:16:03.000Z", "updated-at": "2021-11-24T13:19:33.459Z", "metadata": {"doi": "10.25504/FAIRsharing.yxkdpg", "name": "Proteome-pI : proteome isoelectric point database", "status": "ready", "contacts": [{"contact-name": "Lukasz P. Kozlowski", "contact-email": "lukasz.kozlowski.lpk@gmail.com", "contact-orcid": "0000-0001-8187-1980"}], "homepage": "http://isoelectricpointdb.org/", "identifier": 2355, "description": "Proteome-pI is an online database containing information about predicted isoelectric points for 5,029 proteomes (21 million of sequences) calculated using 18 methods. The isoelectric point, the pH at which a particular molecule carries no net electrical charge, is an important parameter for many analytical biochemistry and proteomics techniques, especially for 2D gel electrophoresis (2D-PAGE), capillary isoelectric focusing, liquid chromatography\u2013mass spectrometry and X-ray protein crystallography. The database allows the retrieval of virtual 2D-PAGE plots and the development of customized fractions of proteome based on isoelectric point and molecular weight. Moreover, Proteome-pI facilitates statistical comparisons of the various prediction methods as well as biological investigation of protein isoelectric point space in all kingdoms of life (http://isoelectricpointdb.org/statistics.html). The database includes various statistics and tools for interactive browsing, searching and sorting. It can be searched and browsed by organism name, average isoelectric point, molecular weight or amino acid frequencies. Proteins with extreme pI values are also available. For individual proteomes, users can retrieve proteins of interest given the method, isoelectric point and molecular weight ranges (this particular feature can be highly useful to limit potential targets in analysis of 2DPAGE gels or before conducting mass spectrometry). Finally, some general statistics (total number of proteins, amino acids, average sequence length, amino acid and di-amino acid frequencies) and datasets corresponding to major protein databases such as UniProtKB/TrEMBL and the NCBI non-redundant (nr) database have also been precalculated.", "abbreviation": "Proteome-pI", "support-links": [{"url": "http://isoelectricpointdb.org/about.html", "type": "Help documentation"}, {"url": "http://isoelectricpointdb.org/statistics.html", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://isoelectricpointdb.org/download.html", "name": "Data Download", "type": "data access"}], "associated-tools": [{"url": "http://isoelectric.org", "name": "IPC - Isoelectric Point Calculator"}, {"url": "http://isoelectricpointdb.org/search.html", "name": "Search"}, {"url": "http://isoelectricpointdb.org/browse.html", "name": "Browse"}]}, "legacy-ids": ["biodbcore-000834", "bsg-d000834"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["2D PAGE image", "Mass spectrum", "X-ray diffraction", "Proteome", "Isoelectric point", "Electrophoresis", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Poland", "Germany"], "name": "FAIRsharing record for: Proteome-pI : proteome isoelectric point database", "abbreviation": "Proteome-pI", "url": "https://fairsharing.org/10.25504/FAIRsharing.yxkdpg", "doi": "10.25504/FAIRsharing.yxkdpg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Proteome-pI is an online database containing information about predicted isoelectric points for 5,029 proteomes (21 million of sequences) calculated using 18 methods. The isoelectric point, the pH at which a particular molecule carries no net electrical charge, is an important parameter for many analytical biochemistry and proteomics techniques, especially for 2D gel electrophoresis (2D-PAGE), capillary isoelectric focusing, liquid chromatography\u2013mass spectrometry and X-ray protein crystallography. The database allows the retrieval of virtual 2D-PAGE plots and the development of customized fractions of proteome based on isoelectric point and molecular weight. Moreover, Proteome-pI facilitates statistical comparisons of the various prediction methods as well as biological investigation of protein isoelectric point space in all kingdoms of life (http://isoelectricpointdb.org/statistics.html). The database includes various statistics and tools for interactive browsing, searching and sorting. It can be searched and browsed by organism name, average isoelectric point, molecular weight or amino acid frequencies. Proteins with extreme pI values are also available. For individual proteomes, users can retrieve proteins of interest given the method, isoelectric point and molecular weight ranges (this particular feature can be highly useful to limit potential targets in analysis of 2DPAGE gels or before conducting mass spectrometry). Finally, some general statistics (total number of proteins, amino acids, average sequence length, amino acid and di-amino acid frequencies) and datasets corresponding to major protein databases such as UniProtKB/TrEMBL and the NCBI non-redundant (nr) database have also been precalculated.", "publications": [{"id": 1748, "pubmed_id": 27789699, "title": "Proteome-pI: proteome isoelectric point database.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw978", "authors": "Kozlowski LP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw978", "created_at": "2021-09-30T08:25:36.171Z", "updated_at": "2021-09-30T11:29:19.760Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 1236, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1927", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:27.376Z", "metadata": {"doi": "10.25504/FAIRsharing.dvyrsz", "name": "PeptideAtlas", "status": "ready", "contacts": [{"contact-name": "Eric W. Deutsch", "contact-email": "edeutsch@systemsbiology.org", "contact-orcid": "0000-0001-8732-0928"}], "homepage": "http://www.peptideatlas.org", "identifier": 1927, "description": "The PeptideAtlas Project provides a publicly-accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools. Mass spectrometer output files are collected for human, mouse, yeast, and several other organisms, and sequence and spectral library searches are applied. Analyses are performed to produce a probability of correct identification for all results in a uniform manner, together with false discovery rates at the whole-atlas level.", "abbreviation": "PeptideAtlas", "support-links": [{"url": "http://www.peptideatlas.org/feedback.php", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.peptideatlas.org/public/faq.php", "name": "Peptide Atlas FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2004, "data-processes": [{"url": "http://www.peptideatlas.org/upload/", "name": "Submit", "type": "data curation"}, {"url": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Search", "name": "Advanced Search", "type": "data access"}, {"url": "http://www.peptideatlas.org/repository/", "name": "Raw Data Download", "type": "data access"}, {"url": "http://www.peptideatlas.org/builds/", "name": "Bulk Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010889", "name": "re3data:r3d100010889", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006783", "name": "SciCrunch:RRID:SCR_006783", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000392", "bsg-d000392"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics"], "domains": ["Molecular structure", "Mass spectrum", "Annotation", "Structure", "Protein"], "taxonomies": ["Apis", "Bos taurus", "Caenorhabditis elegans", "Candida", "Danio rerio", "Drosophila", "Equus caballus", "Halobacteria", "Homo sapiens", "Leptospira interrogans", "Mus musculus", "Rattus rattus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Streptococcus", "Sus scrofa"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PeptideAtlas", "abbreviation": "PeptideAtlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.dvyrsz", "doi": "10.25504/FAIRsharing.dvyrsz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PeptideAtlas Project provides a publicly-accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools. Mass spectrometer output files are collected for human, mouse, yeast, and several other organisms, and sequence and spectral library searches are applied. Analyses are performed to produce a probability of correct identification for all results in a uniform manner, together with false discovery rates at the whole-atlas level.", "publications": [{"id": 419, "pubmed_id": 18451766, "title": "PeptideAtlas: a resource for target selection for emerging targeted proteomics workflows.", "year": 2008, "url": "http://doi.org/10.1038/embor.2008.56", "authors": "Deutsch EW, Lam H, Aebersold R.", "journal": "EMBO Rep.", "doi": "10.1038/embor.2008.56.", "created_at": "2021-09-30T08:23:05.559Z", "updated_at": "2021-09-30T08:23:05.559Z"}, {"id": 740, "pubmed_id": 16381952, "title": "The PeptideAtlas project", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj040", "authors": "Desiere F, Deutsch EW, King NL, Nesvizhskii AI, Mallick P, Eng J, Chen S, Eddes J, Loevenich SN, Aebersold R.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj040", "created_at": "2021-09-30T08:23:41.503Z", "updated_at": "2021-09-30T08:23:41.503Z"}], "licence-links": [{"licence-name": "Peptide Atlas Availability Statement", "licence-id": 655, "link-id": 2375, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2843", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-19T13:55:56.000Z", "updated-at": "2022-02-08T10:30:22.489Z", "metadata": {"doi": "10.25504/FAIRsharing.2c9d3c", "name": "Mouse Models of Human Cancer Database", "status": "ready", "contacts": [{"contact-name": "CJ Bult", "contact-email": "carol.bult@jax.org"}], "homepage": "http://tumor.informatics.jax.org/mtbwi/index.do", "citations": [{"doi": "10.1158/0008-5472.CAN-17-0584", "pubmed-id": 29092943, "publication-id": 2628}], "identifier": 2843, "description": "The Mouse Tumor Biology (MTB) Database supports the use of the mouse as a model system of human cancers by providing access to information on and data for: spontaneous and induced tumors in mice, genetically defined mice (inbred, hybrid, mutant, and genetically engineered strains of mice) in which tumors arise, genetic factors associated with tumor susceptibility in mice, somatic genetic-mutations observed in tumors, and Patient Derived Xenograft (PDX) models.", "abbreviation": "MMHCdb", "data-curation": {}, "support-links": [{"url": "http://tumor.informatics.jax.org/mtbwi/userHelp.jsp", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://tumor.informatics.jax.org/mtbwi/news-events.jsp", "type": "Blog/News"}, {"url": "http://www.informatics.jax.org/mgihome/support/mgi_inbox.shtml", "type": "Contact form"}, {"url": "https://www.github.com/mgijax/mtb-wi", "name": "MMHCdb Web Interface", "type": "Github"}, {"url": "https://www.github.com/mgijax/mtb-dao", "name": "MMHCdb Data Layer", "type": "Github"}, {"url": "http://www.informatics.jax.org/mgihome/support/mgi_inbox.shtml", "name": "MMHCdb Web interface", "type": "Github"}, {"url": "http://www.informatics.jax.org/mgihome/lists/lists.shtml", "type": "Forum"}], "year-creation": 1998, "data-processes": [{"url": "http://tumor.informatics.jax.org/mtbwi/pdxSearch.do", "name": "PDX Search", "type": "data access"}, {"url": "http://tumor.informatics.jax.org/mtbwi/facetedSearch.do?start=0", "name": "Faceted Search", "type": "data access"}, {"url": "http://tumor.informatics.jax.org/mtbwi/pdxLikeMe.do", "name": "PDX Like Me Search", "type": "data access"}], "associated-tools": [{"url": "http://tumor.informatics.jax.org/mtbwi/dynamicGrid.do", "name": "Dynamic Tumor Frequency Grid"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011907", "name": "re3data:r3d100011907", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006517", "name": "SciCrunch:RRID:SCR_006517", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001344", "bsg-d001344"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics", "Pathology"], "domains": ["Cancer", "Tumor", "Histology"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Mouse Models of Human Cancer Database", "abbreviation": "MMHCdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.2c9d3c", "doi": "10.25504/FAIRsharing.2c9d3c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Mouse Tumor Biology (MTB) Database supports the use of the mouse as a model system of human cancers by providing access to information on and data for: spontaneous and induced tumors in mice, genetically defined mice (inbred, hybrid, mutant, and genetically engineered strains of mice) in which tumors arise, genetic factors associated with tumor susceptibility in mice, somatic genetic-mutations observed in tumors, and Patient Derived Xenograft (PDX) models.", "publications": [{"id": 2628, "pubmed_id": 29092943, "title": "The Mouse Tumor Biology Database: A Comprehensive Resource for Mouse Models of Human Cancer.", "year": 2017, "url": "http://doi.org/10.1158/0008-5472.CAN-17-0584", "authors": "Krupke DM,Begley DA,Sundberg JP,Richardson JE,Neuhauser SB,Bult CJ", "journal": "Cancer Res", "doi": "10.1158/0008-5472.CAN-17-0584", "created_at": "2021-09-30T08:27:22.663Z", "updated_at": "2021-09-30T08:27:22.663Z"}, {"id": 2629, "pubmed_id": 18432250, "title": "The Mouse Tumor Biology database.", "year": 2008, "url": "http://doi.org/10.1038/nrc2390", "authors": "Krupke DM,Begley DA,Sundberg JP,Bult CJ,Eppig JT", "journal": "Nat Rev Cancer", "doi": "10.1038/nrc2390", "created_at": "2021-09-30T08:27:22.779Z", "updated_at": "2021-09-30T08:27:22.779Z"}], "licence-links": [{"licence-name": "MTB Copyright Notice", "licence-id": 530, "link-id": 701, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2627", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-31T14:11:34.000Z", "updated-at": "2022-02-08T10:38:30.497Z", "metadata": {"doi": "10.25504/FAIRsharing.1de585", "name": "Gene Transcription Regulation Database", "status": "ready", "contacts": [{"contact-name": "Fedor Kolpakov", "contact-email": "fedor@biouml.org", "contact-orcid": "0000-0002-0396-0256"}], "homepage": "http://gtrd.biouml.org/", "citations": [{"doi": "10.1093/nar/gkw951", "pubmed-id": 27924024, "publication-id": 240}], "identifier": 2627, "description": "Gene Transcription Regulation Database (GTRD) is a database of transcription factor binding sites (TFBSs) identified by ChIP-seq experiments for human and mouse.", "abbreviation": "GTRD", "support-links": [{"url": "http://wiki.biouml.org/index.php/GTRD", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://gtrd.biouml.org/bioumlweb/#anonymous=true&perspective=GTRD&de=databases/GTRD/Data/", "name": "browse", "type": "data access"}, {"url": "http://gtrd.biouml.org/downloads/18.06", "name": "download", "type": "data access"}, {"url": "http://gtrd.biouml.org/downloads/19.10/", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001116", "bsg-d001116"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Transcription factor binding site prediction", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing", "Binding site", "Transcript", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Russia"], "name": "FAIRsharing record for: Gene Transcription Regulation Database", "abbreviation": "GTRD", "url": "https://fairsharing.org/10.25504/FAIRsharing.1de585", "doi": "10.25504/FAIRsharing.1de585", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gene Transcription Regulation Database (GTRD) is a database of transcription factor binding sites (TFBSs) identified by ChIP-seq experiments for human and mouse.", "publications": [{"id": 240, "pubmed_id": 27924024, "title": "GTRD: a database of transcription factor binding sites identified by ChIP-seq experiments.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw951", "authors": "Yevshin I,Sharipov R,Valeev T,Kel A,Kolpakov F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw951", "created_at": "2021-09-30T08:22:45.933Z", "updated_at": "2021-09-30T11:28:44.319Z"}, {"id": 2673, "pubmed_id": 30445619, "title": "GTRD: a database on gene transcription regulation-2019 update.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1128", "authors": "Yevshin I,Sharipov R,Kolmykov S,Kondrakhin Y,Kolpakov F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1128", "created_at": "2021-09-30T08:27:28.169Z", "updated_at": "2021-09-30T11:29:41.095Z"}], "licence-links": [{"licence-name": "GTRD Free for non-commercial use", "licence-id": 368, "link-id": 2413, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2632", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T16:46:47.000Z", "updated-at": "2022-02-08T10:38:35.261Z", "metadata": {"doi": "10.25504/FAIRsharing.91f87d", "name": "HypoxiaDB", "status": "ready", "contacts": [{"contact-name": "Pankaj Khurana", "contact-email": "pkhurana08@gmail.com", "contact-orcid": "0000-0002-2288-9256"}], "homepage": "http://www.hypoxiadb.com/", "identifier": 2632, "description": "HypoxiaDB is a manually-curated non-redundant catalogue of human hypoxia-regulated proteins with a goal of collecting proteins whose expression patterns are altered in hypoxic conditions.", "abbreviation": "HypoxiaDB", "support-links": [{"url": "http://www.hypoxiadb.com/feedback.html", "type": "Contact form"}, {"url": "http://www.hypoxiadb.com/tutorial.html", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://www.hypoxiadb.com/browse.html", "name": "browse", "type": "data access"}, {"url": "http://www.hypoxiadb.com/search.html", "name": "search", "type": "data access"}, {"url": "http://www.hypoxiadb.com/blast.html", "name": "blast", "type": "data access"}, {"url": "http://www.hypoxiadb.com/submit.html", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001121", "bsg-d001121"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Biological regulation", "Curated information", "Protein", "Amino acid sequence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: HypoxiaDB", "abbreviation": "HypoxiaDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.91f87d", "doi": "10.25504/FAIRsharing.91f87d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HypoxiaDB is a manually-curated non-redundant catalogue of human hypoxia-regulated proteins with a goal of collecting proteins whose expression patterns are altered in hypoxic conditions.", "publications": [{"id": 1329, "pubmed_id": 24178989, "title": "HypoxiaDB: a database of hypoxia-regulated proteins.", "year": 2013, "url": "http://doi.org/10.1093/database/bat074", "authors": "Khurana P,Sugadev R,Jain J,Singh SB", "journal": "Database (Oxford)", "doi": "10.1093/database/bat074", "created_at": "2021-09-30T08:24:48.768Z", "updated_at": "2021-09-30T08:24:48.768Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2633", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T17:57:48.000Z", "updated-at": "2022-02-08T10:38:36.882Z", "metadata": {"doi": "10.25504/FAIRsharing.9f337f", "name": "Bovine Genome Database", "status": "ready", "contacts": [{"contact-name": "Christine G. Elsik", "contact-email": "elsikc@missouri.edu", "contact-orcid": "0000-0002-4248-7713"}], "homepage": "http://bovinegenome.org/", "identifier": 2633, "description": "The Bovine Genome Database project is developed to support the efforts of bovine genomics researchers by providing data mining, genome navigation and annotation tools for the bovine reference genome based on the hereford cow, L1 Dominette 01449.", "abbreviation": "BGD", "support-links": [{"url": "bovinegenome@gmail.com", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "http://128.206.116.8/bgd-sequenceserver/", "name": "blast", "type": "data access"}, {"url": "https://bovinegenome.elsiklab.missouri.edu/annotator_registration", "name": "Apollo annotation tool", "type": "data curation"}, {"url": "https://bovinegenome.elsiklab.missouri.edu/downloads/ARS-UCD1.2", "name": "ARS-UCD1.2 Downloads", "type": "data access"}, {"url": "https://bovinegenome.elsiklab.missouri.edu/downloads/UMD_3.1", "name": "UMD 3.1 Downloads", "type": "data access"}, {"url": "http://128.206.116.5:8080/apollo-lsaa/21/jbrowse/", "name": "ARC-UCD1.2 JBrowse", "type": "data access"}, {"url": "http://genomes.missouri.edu/apollo-lsaa/20/jbrowse/index.html", "name": "UMD3.1 JBrowse", "type": "data access"}], "associated-tools": [{"url": "http://128.206.116.13:8080/bovinemine/begin.do", "name": "BovineMine v1.6"}]}, "legacy-ids": ["biodbcore-001122", "bsg-d001122"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Mining", "Life Science"], "domains": ["Genome annotation", "Genome visualization", "Genome"], "taxonomies": ["Bos taurus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Bovine Genome Database", "abbreviation": "BGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.9f337f", "doi": "10.25504/FAIRsharing.9f337f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bovine Genome Database project is developed to support the efforts of bovine genomics researchers by providing data mining, genome navigation and annotation tools for the bovine reference genome based on the hereford cow, L1 Dominette 01449.", "publications": [{"id": 2272, "pubmed_id": 26481361, "title": "Bovine Genome Database: new tools for gleaning function from the Bos taurus genome.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1077", "authors": "Elsik CG,Unni DR,Diesh CM,Tayal A,Emery ML,Nguyen HN,Hagen DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1077", "created_at": "2021-09-30T08:26:36.705Z", "updated_at": "2021-09-30T11:29:32.194Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1910", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.036Z", "metadata": {"doi": "10.25504/FAIRsharing.a8z6gz", "name": "ProDom", "status": "ready", "contacts": [{"contact-name": "General Help", "contact-email": "prohelp@prabi.fr"}], "homepage": "http://prodom.prabi.fr/", "citations": [{"doi": "10.1093/bib/3.3.246", "pubmed-id": 12230033, "publication-id": 1594}], "identifier": 1910, "description": "ProDom is a comprehensive set of protein domain families automatically generated from the UniProt Knowledge Database.", "abbreviation": "ProDom", "support-links": [{"url": "http://prodom.prabi.fr/prodom/current/documentation/help.php", "type": "Help documentation"}, {"url": "http://prodom.prabi.fr/prodom/current/html/webservices.html", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://prodom.prabi.fr/prodom/current/html/download.php", "name": "Download", "type": "data access"}, {"url": "http://prodom.prabi.fr/prodom/current/html/form.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://avatar.se/molscript/", "name": "MolScript"}, {"url": "http://prodomweb.univ-lyon1.fr/prodom/xdom/", "name": "mkdom/Xdom"}, {"url": "http://espript.ibcp.fr/ESPript/cgi-bin/ESPript.cgi", "name": "ESPript"}]}, "legacy-ids": ["biodbcore-000375", "bsg-d000375"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein domain", "Classification", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: ProDom", "abbreviation": "ProDom", "url": "https://fairsharing.org/10.25504/FAIRsharing.a8z6gz", "doi": "10.25504/FAIRsharing.a8z6gz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProDom is a comprehensive set of protein domain families automatically generated from the UniProt Knowledge Database.", "publications": [{"id": 420, "pubmed_id": 15608179, "title": "The ProDom database of protein domain families: more emphasis on 3D", "year": 2004, "url": "http://doi.org/10.1093/nar/gki034", "authors": "Bru C., Courcelle E., Carr\u00e8re S., Beausse Y., Dalmar S., Kahn D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki034", "created_at": "2021-09-30T08:23:05.658Z", "updated_at": "2021-09-30T08:23:05.658Z"}, {"id": 1594, "pubmed_id": 12230033, "title": "ProDom: automated clustering of homologous domains.", "year": 2002, "url": "http://doi.org/10.1093/bib/3.3.246", "authors": "Servant F,Bru C,Carrere S,Courcelle E,Gouzy J,Peyruc D,Kahn D", "journal": "Brief Bioinform", "doi": "10.1093/bib/3.3.246", "created_at": "2021-09-30T08:25:18.695Z", "updated_at": "2021-09-30T08:25:18.695Z"}], "licence-links": [{"licence-name": "Prodom Database License", "licence-id": 681, "link-id": 551, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2645", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-06T14:11:19.000Z", "updated-at": "2022-02-08T10:38:42.705Z", "metadata": {"doi": "10.25504/FAIRsharing.90265b", "name": "Phospho.ELM", "status": "ready", "contacts": [{"contact-name": "Toby J. Gibson", "contact-email": "toby.gibson@embl.de", "contact-orcid": "0000-0003-0657-5166"}], "homepage": "http://phospho.elm.eu.org/index.html", "identifier": 2645, "description": "Phospho.ELM is a manually curated database of eukaryotic phosphorylation sites. The resource includes data collected from published literature as well as high-throughput data sets.", "abbreviation": "Phospho.ELM", "support-links": [{"url": "http://phospho.elm.eu.org/help.html", "type": "Help documentation"}, {"url": "http://phospho.elm.eu.org/about.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://phospho.elm.eu.org/pELMBlastSearch.html", "name": "blast", "type": "data access"}, {"url": "http://phospho.elm.eu.org/dataset.html", "name": "download", "type": "data access"}, {"url": "http://phospho.elm.eu.org/submit.html", "name": "submit", "type": "data curation"}, {"url": "http://phospho.elm.eu.org/index.html", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001136", "bsg-d001136"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Phosphorylation", "Conserved region", "Literature curation"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["United Kingdom", "Denmark", "Italy", "Germany"], "name": "FAIRsharing record for: Phospho.ELM", "abbreviation": "Phospho.ELM", "url": "https://fairsharing.org/10.25504/FAIRsharing.90265b", "doi": "10.25504/FAIRsharing.90265b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Phospho.ELM is a manually curated database of eukaryotic phosphorylation sites. The resource includes data collected from published literature as well as high-throughput data sets.", "publications": [{"id": 1768, "pubmed_id": 21062810, "title": "Phospho.ELM: a database of phosphorylation sites--update 2011.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1104", "authors": "Dinkel H,Chica C,Via A,Gould CM,Jensen LJ,Gibson TJ,Diella F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1104", "created_at": "2021-09-30T08:25:38.345Z", "updated_at": "2021-09-30T11:29:20.485Z"}, {"id": 2413, "pubmed_id": 15212693, "title": "Phospho.ELM: a database of experimentally verified phosphorylation sites in eukaryotic proteins.", "year": 2004, "url": "http://doi.org/10.1186/1471-2105-5-79", "authors": "Diella F,Cameron S,Gemund C,Linding R,Via A,Kuster B,Sicheritz-Ponten T,Blom N,Gibson TJ", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-5-79", "created_at": "2021-09-30T08:26:56.161Z", "updated_at": "2021-09-30T08:26:56.161Z"}, {"id": 2414, "pubmed_id": 17962309, "title": "Phospho.ELM: a database of phosphorylation sites--update 2008.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm772", "authors": "Diella F,Gould CM,Chica C,Via A,Gibson TJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm772", "created_at": "2021-09-30T08:26:56.318Z", "updated_at": "2021-09-30T11:29:35.353Z"}], "licence-links": [{"licence-name": "Phospho.ELM Disclaimer", "licence-id": 664, "link-id": 1696, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2887", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-21T13:04:35.000Z", "updated-at": "2022-02-08T10:30:34.140Z", "metadata": {"doi": "10.25504/FAIRsharing.dfd3a1", "name": "Plants of the World Online", "status": "ready", "contacts": [{"contact-name": "POWO Team", "contact-email": "bi@kew.org"}], "homepage": "http://powo.science.kew.org/", "citations": [], "identifier": 2887, "description": "The Plants of the World Online portal (POWO), is a database created to store information on all the world's known seed-bearing plants.Coverage will increase over time. Data comes from a variety of sources which are both monographic (global) and regional in scope. These data sources vary in the extent to which comprehensive synonymy is included, their stage of development (proximity to publication) and the degree to which they have been exposed to peer review.", "abbreviation": "POWO", "support-links": [{"url": "http://powo.science.kew.org/search-help", "name": "Help", "type": "Help documentation"}, {"url": "http://powo.science.kew.org/about", "name": "About POWO", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://powo.science.kew.org/", "name": "Search", "type": "data access"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001388", "bsg-d001388"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany"], "domains": ["Data storage"], "taxonomies": ["Spermatophyta"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Plants of the World Online", "abbreviation": "POWO", "url": "https://fairsharing.org/10.25504/FAIRsharing.dfd3a1", "doi": "10.25504/FAIRsharing.dfd3a1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Plants of the World Online portal (POWO), is a database created to store information on all the world's known seed-bearing plants.Coverage will increase over time. Data comes from a variety of sources which are both monographic (global) and regional in scope. These data sources vary in the extent to which comprehensive synonymy is included, their stage of development (proximity to publication) and the degree to which they have been exposed to peer review.", "publications": [], "licence-links": [{"licence-name": "POWO Terms of use", "licence-id": 905, "link-id": 2579, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1665", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:05.705Z", "metadata": {"doi": "10.25504/FAIRsharing.jhfs8q", "name": "Integrated Pathway Analysis and Visualization System", "status": "deprecated", "contacts": [{"contact-name": "Do Han Kim", "contact-email": "dhkim@gist.ac.kr"}], "homepage": "http://ipavs.cidms.org", "identifier": 1665, "description": "iPAVS provides a collection of highly-structured manually curated human pathway data, it also integrates biological pathway information from several public databases and provides several tools to manipulate, filter, browse, search, analyze, visualize and compare the integrated pathway resources.", "abbreviation": "IPAVS", "support-links": [{"url": "https://sites.google.com/a/cidms.org/ipavs_tutorials/faqs", "name": "IPAVS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://sites.google.com/a/cidms.org/ipavs_tutorials/", "name": "IPAVS Tutorials", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://sites.google.com/a/cidms.org/ipavs_tutorials/home/ipavs-learning-resources/download-learning-resources", "name": "file download (tab-delimited, XML)", "type": "data access"}, {"name": "manual curation", "type": "data curation"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000121", "bsg-d000121"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science", "Metabolomics", "Transcriptomics", "Systems Biology", "Data Visualization"], "domains": ["Pathway model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Integrated Pathway Analysis and Visualization System", "abbreviation": "IPAVS", "url": "https://fairsharing.org/10.25504/FAIRsharing.jhfs8q", "doi": "10.25504/FAIRsharing.jhfs8q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iPAVS provides a collection of highly-structured manually curated human pathway data, it also integrates biological pathway information from several public databases and provides several tools to manipulate, filter, browse, search, analyze, visualize and compare the integrated pathway resources.", "publications": [{"id": 171, "pubmed_id": 21423387, "title": "Current trends and new challenges of databases and web applications for systems driven biological research.", "year": 2010, "url": "http://doi.org/10.3389/fphys.2010.00147", "authors": "Sreenivasaiah PK., Kim do H.,", "journal": "Front Physiol", "doi": "10.3389/fphys.2010.00147", "created_at": "2021-09-30T08:22:38.724Z", "updated_at": "2021-09-30T08:22:38.724Z"}, {"id": 172, "pubmed_id": 18261742, "title": "An overview of cardiac systems biology.", "year": 2008, "url": "http://doi.org/10.1016/j.yjmcc.2007.12.005", "authors": "Shreenivasaiah PK., Rho SH., Kim T., Kim do H.,", "journal": "J. Mol. Cell. Cardiol.", "doi": "10.1016/j.yjmcc.2007.12.005", "created_at": "2021-09-30T08:22:38.832Z", "updated_at": "2021-09-30T08:22:38.832Z"}, {"id": 1326, "pubmed_id": 21071716, "title": "Biology of endoplasmic reticulum stress in the heart.", "year": 2010, "url": "http://doi.org/10.1161/CIRCRESAHA.110.227033", "authors": "Groenendyk J., Sreenivasaiah PK., Kim do H., Agellon LB., Michalak M.,", "journal": "Circ. Res.", "doi": "10.1161/CIRCRESAHA.110.227033", "created_at": "2021-09-30T08:24:48.417Z", "updated_at": "2021-09-30T08:24:48.417Z"}], "licence-links": [{"licence-name": "IPAVS Terms and conditions", "licence-id": 448, "link-id": 2204, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2930", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-06T14:21:56.000Z", "updated-at": "2022-02-08T10:39:10.622Z", "metadata": {"doi": "10.25504/FAIRsharing.d38075", "name": "NCBI Virus", "status": "ready", "contacts": [{"contact-name": "James Rodney Brister", "contact-email": "jamesbr@ncbi.nlm.nih.gov", "contact-orcid": "0000-0002-2249-975X"}], "homepage": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/#/", "identifier": 2930, "description": "NCBI Virus is a community portal for viral sequence data from RefSeq, GenBank and other NCBI repositories.", "abbreviation": "NCBI Virus", "support-links": [{"url": "https://support.nlm.nih.gov/support/create-case/", "type": "Contact form"}, {"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/docs/help/#how-to-faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://tinyurl.com/w3u95ql", "name": "Feedback", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/#/find-data/sequence", "name": "Search by sequence", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/#/virus?VirusLineage_ss=Viruses,%20taxid:10239&SeqType_s=Nucleotide", "name": "Browse all viruses", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/#/find-data/virus", "name": "Search by sequence", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/#/virus?SeqType_s=Nucleotide&VirusLineage_ss=Severe%20acute%20respiratory%20syndrome%20coronavirus%202,%20taxid:2697049", "name": "Search SARS-CoV-2 data", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/labs/virus/vssi/docs/submit/", "name": "Submit", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011005", "name": "re3data:r3d100011005", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013790", "name": "SciCrunch:RRID:SCR_013790", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001433", "bsg-d001433"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Taxonomy", "Virology", "Life Science", "Epidemiology"], "domains": ["DNA sequence data", "RNA sequence", "Curated information", "Protein", "Viral sequence"], "taxonomies": ["Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Virus", "abbreviation": "NCBI Virus", "url": "https://fairsharing.org/10.25504/FAIRsharing.d38075", "doi": "10.25504/FAIRsharing.d38075", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NCBI Virus is a community portal for viral sequence data from RefSeq, GenBank and other NCBI repositories.", "publications": [{"id": 1516, "pubmed_id": 25428358, "title": "NCBI viral genomes resource.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1207", "authors": "Brister JR,Ako-Adjei D,Bao Y,Blinkova O", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1207", "created_at": "2021-09-30T08:25:09.665Z", "updated_at": "2021-09-30T11:29:11.834Z"}, {"id": 2836, "pubmed_id": 27899678, "title": "Virus Variation Resource - improved response to emergent viral outbreaks.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1065", "authors": "Hatcher EL,Zhdanov SA,Bao Y,Blinkova O,Nawrocki EP,Ostapchuck Y,Schaffer AA,Brister JR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1065", "created_at": "2021-09-30T08:27:48.904Z", "updated_at": "2021-09-30T11:29:46.953Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1378, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1726", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:24.696Z", "metadata": {"doi": "10.25504/FAIRsharing.ws7cgw", "name": "Influenza Research Database", "status": "ready", "contacts": [{"contact-name": "Richard Scheuermann", "contact-email": "rscheuermann@jcvi.org", "contact-orcid": "0000-0003-1355-892X"}], "homepage": "http://www.fludb.org", "citations": [{"doi": "10.1093/nar/gkw857", "pubmed-id": 27679478, "publication-id": 2827}], "identifier": 1726, "description": "The Influenza Research Database (IRD) is a free, open, publicly-accessible resource funded by the U.S. National Institute of Allergy and Infectious Diseases through the Bioinformatics Resource Centers program. IRD provides a comprehensive, integrated database and analysis resource for influenza sequence, surveillance, and research data, including user-friendly interfaces for data retrieval, visualization, and comparative genomics analysis, together with personal login- protected \u2018workbench\u2019 spaces for saving data sets and analysis results. IRD integrates genomic, proteomic, immune epitope, and surveillance data from a variety of sources, including public databases, computational algorithms, external research groups, and the scientific literature.", "abbreviation": "IRD", "support-links": [{"url": "https://www.fludb.org/brc/staticContent.spg?decorator=influenza&type=FluInfo&subtype=Contact", "name": "Contact Information", "type": "Contact form"}, {"url": "influenza@virusbrc.org", "name": "influenza@virusbrc.org", "type": "Support email"}, {"url": "https://www.fludb.org/brc/help_landing.spg?decorator=influenza", "name": "General Help", "type": "Help documentation"}, {"url": "https://www.fludb.org/brc/staticContent.spg?decorator=influenza&type=FluInfo&subtype=Protocols", "name": "Protocols Used", "type": "Help documentation"}, {"url": "https://www.fludb.org/brc/influenzaTutorials.spg?decorator=influenza", "name": "IRD Tutorials and Training Materials", "type": "Training documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://www.fludb.org/brc/influenza_sequence_search_segment_display.spg?method=ShowCleanSearch&decorator=influenza", "name": "Search", "type": "data access"}, {"url": "https://www.fludb.org/brc/submission_landing.spg?decorator=influenza", "name": "Submit", "type": "data curation"}, {"url": "https://www.fludb.org/brc/quickTextSearch.spg?method=showQuickTextSearch&decorator=influenza", "name": "Quick Search", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"url": "https://www.fludb.org/brc/influenza_surveillanceRecord_search.spg?method=ShowCleanSearch&decorator=influenza", "name": "Animal Surveillance Search", "type": "data access"}], "associated-tools": [{"url": "https://www.fludb.org/brc/tree.spg?method=ShowCleanInputPage&decorator=influenza", "name": "Generate Phylogenetic Tree (PhyML and RaxML)"}, {"url": "https://www.fludb.org/brc/msa.spg?method=ShowCleanInputPage&decorator=influenza", "name": "Align Sequences (MSA) via MUSCLE"}, {"url": "https://www.fludb.org/brc/workbench_landing.spg?decorator=influenza&method=WorkbenchDetail", "name": "Workbench"}, {"url": "https://www.fludb.org/brc/blast.spg?method=ShowCleanInputPage&decorator=influenza", "name": "Identify Similar Sequences (BLAST)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011558", "name": "re3data:r3d100011558", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006641", "name": "SciCrunch:RRID:SCR_006641", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000183", "bsg-d000183"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Proteomics", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Expression data", "Structure", "Sequence feature"], "taxonomies": ["Influenza virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Influenza Research Database", "abbreviation": "IRD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ws7cgw", "doi": "10.25504/FAIRsharing.ws7cgw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Influenza Research Database (IRD) is a free, open, publicly-accessible resource funded by the U.S. National Institute of Allergy and Infectious Diseases through the Bioinformatics Resource Centers program. IRD provides a comprehensive, integrated database and analysis resource for influenza sequence, surveillance, and research data, including user-friendly interfaces for data retrieval, visualization, and comparative genomics analysis, together with personal login- protected \u2018workbench\u2019 spaces for saving data sets and analysis results. IRD integrates genomic, proteomic, immune epitope, and surveillance data from a variety of sources, including public databases, computational algorithms, external research groups, and the scientific literature.", "publications": [{"id": 219, "pubmed_id": 22260278, "title": "Influenza research database: an integrated bioinformatics resource for influenza research and surveillance", "year": 2012, "url": "http://doi.org/10.1111/j.1750-2659.2011.00331.x", "authors": "Squires RB, Noronha J, Hunt V, Garc\u00eda-Sastre A, Macken C, Baumgarth N, Suarez D, Pickett BE, Zhang Y, Larsen CN, Ramsey A, Zhou L, Zaremba S, Kumar S, Deitrich J, Klem E, Scheuermann RH.", "journal": "Influenza Other Respi Viruses", "doi": "10.1111/j.1750-2659.2011.00331.x", "created_at": "2021-09-30T08:22:43.731Z", "updated_at": "2021-09-30T08:22:43.731Z"}, {"id": 235, "pubmed_id": 22398283, "title": "Influenza virus sequence feature variant type analysis: evidence of a role for NS1 in influenza virus host range restriction", "year": 2012, "url": "http://doi.org/10.1128/JVI.06901-11", "authors": "Noronha JM, Liu M, Squires RB, Pickett BE, Hale BG, Air GM, Galloway SE, Takimoto T, Schmolke M, Hunt V, Klem E, Garc\u00eda-Sastre A, McGee M, Scheuermann RH", "journal": "J Virol", "doi": "10.1128/JVI.06901-11", "created_at": "2021-09-30T08:22:45.374Z", "updated_at": "2021-09-30T08:22:45.374Z"}, {"id": 674, "pubmed_id": 24210098, "title": "Metadata-driven comparative analysis tool for sequences (meta-CATS): an automated process for identifying significant sequence variations that correlate with virus attributes", "year": 2013, "url": "http://doi.org/10.1016/j.virol.2013.08.021", "authors": "Pickett BE, Liu M, Sadat EL, Squires RB, Noronha JM, He S, Jen W, Zaremba S, Gu Z, Zhou L, Larsen CN, Bosch I, Gehrke L, McGee M, Klem EB, Scheuermann RH", "journal": "Virology", "doi": "10.1016/j.virol.2013.08.021", "created_at": "2021-09-30T08:23:34.337Z", "updated_at": "2021-09-30T08:23:34.337Z"}, {"id": 1199, "pubmed_id": 24936976, "title": "Standardized metadata for human pathogen/vector genomic sequences.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0099979", "authors": "Dugan VG,Emrich SJ,Giraldo-Calderon GI et al.", "journal": "PLoS One", "doi": "10.1371/journal.pone.0099979", "created_at": "2021-09-30T08:24:33.566Z", "updated_at": "2021-09-30T08:24:33.566Z"}, {"id": 1208, "pubmed_id": 25064525, "title": "Toward a method for tracking virus evolutionary trajectory applied to the pandemic H1N1 2009 influenza virus.", "year": 2014, "url": "http://doi.org/10.1016/j.meegid.2014.07.015", "authors": "Squires RB,Pickett BE,Das S,Scheuermann RH", "journal": "Infect Genet Evol", "doi": "10.1016/j.meegid.2014.07.015", "created_at": "2021-09-30T08:24:34.641Z", "updated_at": "2021-09-30T08:24:34.641Z"}, {"id": 2204, "pubmed_id": 25861210, "title": "A RESTful API for Access to Phylogenetic Tools via the CIPRES Science Gateway.", "year": 2015, "url": "http://doi.org/10.4137/EBO.S21501", "authors": "Miller MA,Schwartz T,Pickett BE,He S,Klem EB,Scheuermann RH,Passarotti M,Kaufman S,O'Leary MA", "journal": "Evol Bioinform Online", "doi": "10.4137/EBO.S21501", "created_at": "2021-09-30T08:26:28.401Z", "updated_at": "2021-09-30T08:26:28.401Z"}, {"id": 2825, "pubmed_id": 25977790, "title": "A comprehensive collection of systems biology data characterizing the host response to viral infection.", "year": 2014, "url": "http://doi.org/10.1038/sdata.2014.33", "authors": "Aevermann BD,Pickett BE,Kumar S,Klem EB,Agnihothram S,Askovich PS,Bankhead A 3rd,Bolles M,Carter V,Chang J,Clauss TR,Dash P,Diercks AH,Eisfeld AJ,Ellis A,Fan S,Ferris MT,Gralinski LE,Green RR,Gritsenko MA,Hatta M,Heegel RA,Jacobs JM,Jeng S,Josset L,Kaiser SM,Kelly S,Law GL,Li C,Li J,Long C,Luna ML,Matzke M,McDermott J,Menachery V,Metz TO,Mitchell H,Monroe ME,Navarro G,Neumann G,Podyminogin RL,Purvine SO,Rosenberger CM,Sanders CJ,Schepmoes AA,Shukla AK,Sims A,Sova P,Tam VC,Tchitchek N,Thomas PG,Tilton SC,Totura A,Wang J,Webb-Robertson BJ,Wen J,Weiss JM,Yang F,Yount B,Zhang Q,McWeeney S,Smith RD,Waters KM,Kawaoka Y,Baric R,Aderem A,Katze MG,Scheuermann RH", "journal": "Sci Data", "doi": "10.1038/sdata.2014.33", "created_at": "2021-09-30T08:27:47.465Z", "updated_at": "2021-09-30T08:27:47.465Z"}, {"id": 2826, "pubmed_id": 25741011, "title": "Diversifying Selection Analysis Predicts Antigenic Evolution of 2009 Pandemic H1N1 Influenza A Virus in Humans.", "year": 2015, "url": "http://doi.org/10.1128/JVI.03636-14", "authors": "Lee AJ,Das SR,Wang W,Fitzgerald T,Pickett BE,Aevermann BD,Topham DJ,Falsey AR,Scheuermann RH", "journal": "J Virol", "doi": "10.1128/JVI.03636-14", "created_at": "2021-09-30T08:27:47.573Z", "updated_at": "2021-09-30T08:27:47.573Z"}, {"id": 2827, "pubmed_id": 27679478, "title": "Influenza Research Database: An integrated bioinformatics resource for influenza virus research.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw857", "authors": "Zhang Y,Aevermann BD,Anderson TK,Burke DF,Dauphin G,Gu Z,He S,Kumar S,Larsen CN,Lee AJ,Li X,Macken C,Mahaffey C,Pickett BE,Reardon B,Smith T,Stewart L,Suloway C,Sun G,Tong L,Vincent AL,Walters B,Zaremba S,Zhao H,Zhou L,Zmasek C,Klem EB,Scheuermann RH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw857", "created_at": "2021-09-30T08:27:47.725Z", "updated_at": "2021-09-30T11:29:46.720Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2592", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-08T06:54:54.000Z", "updated-at": "2021-11-24T13:17:33.809Z", "metadata": {"doi": "10.25504/FAIRsharing.qqFfXF", "name": "BioInformatics Platform for Agroecosystem Arthropods", "status": "ready", "contacts": [{"contact-name": "BIPAA Helpdesk", "contact-email": "bipaa@inra.fr"}], "homepage": "https://bipaa.genouest.org", "identifier": 2592, "description": "BIPAA is a central platform to assist genomics and post-genomics programs developed on insects associated to agroecosystem, for the Plant Health and Environment Division of INRA. We provide online access to genomic data for multiple arthropod species. We also aim to settle an environment allowing a large community to elaborate complex genomics analyses, browsing, mixing or crossing heterogeneous data. BIPAA created and manages information systems dedicated to genomic data: AphidBase (dedicated to aphids), LepidoDB (dedicated to lepidopteran) and ParWaspDB (dedicated to parasitoid wasps).", "abbreviation": "BIPAA", "support-links": [{"url": "https://bipaa.genouest.org/is/bipaa/about/", "name": "About BIPAA", "type": "Help documentation"}, {"url": "https://bipaa.genouest.org/is/how-to-annotate-a-genome/", "name": "Annotation Guidelines", "type": "Help documentation"}, {"url": "https://bipaa.genouest.org/is/news/", "name": "News", "type": "Help documentation"}], "year-creation": 2006}, "legacy-ids": ["biodbcore-001075", "bsg-d001075"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Biology"], "domains": [], "taxonomies": ["Arthropoda", "Hemiptera", "Hymenoptera", "Insecta", "Lepidoptera"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: BioInformatics Platform for Agroecosystem Arthropods", "abbreviation": "BIPAA", "url": "https://fairsharing.org/10.25504/FAIRsharing.qqFfXF", "doi": "10.25504/FAIRsharing.qqFfXF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BIPAA is a central platform to assist genomics and post-genomics programs developed on insects associated to agroecosystem, for the Plant Health and Environment Division of INRA. We provide online access to genomic data for multiple arthropod species. We also aim to settle an environment allowing a large community to elaborate complex genomics analyses, browsing, mixing or crossing heterogeneous data. BIPAA created and manages information systems dedicated to genomic data: AphidBase (dedicated to aphids), LepidoDB (dedicated to lepidopteran) and ParWaspDB (dedicated to parasitoid wasps).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2972", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-04T12:55:59.000Z", "updated-at": "2022-02-08T10:39:53.306Z", "metadata": {"doi": "10.25504/FAIRsharing.096d5e", "name": "Global Atmosphere Watch Station Information System", "status": "ready", "homepage": "https://gawsis.meteoswiss.ch/GAWSIS/index.html#/", "identifier": 2972, "description": "The Global Atmosphere Watch (GAW) is a worldwide system established by the World Meteorological Organization, a United Nations agency, to monitor trends in the Earth's atmosphere. GAWSIS is the official catalogue of GAW stations and Contributing networks. It provides the GAW community and other interested people with an up-to-date, searchable data base of : station characteristics, measurements programs and data available, instrument, contact people, bibliographic references. GAWSIS also serves as a repository for supporting documents.", "abbreviation": "GAWSIS", "support-links": [{"url": "https://tinyurl.com/yaaarb9j", "name": "News", "type": "Blog/News"}, {"url": "https://gawsis.meteoswiss.ch/GAWSIS/#/support", "name": "Support", "type": "Contact form"}, {"url": "https://gawsis.meteoswiss.ch/GAWSIS//index.html#/feedback", "name": "Feedback", "type": "Contact form"}, {"url": "https://gawsis.meteoswiss.ch/GAWSIS/#/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://gawsis.meteoswiss.ch/GAWSIS//index.html#/glossary/", "name": "Glossary", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://gawsis.meteoswiss.ch/GAWSIS//index.html#/search/station", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010141", "name": "re3data:r3d100010141", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001478", "bsg-d001478"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Meteorology", "Earth Science", "Atmospheric Science"], "domains": ["Radiation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Aerosol", "Greenhouse gases", "Ozone", "Ultraviolet Rays"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Global Atmosphere Watch Station Information System", "abbreviation": "GAWSIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.096d5e", "doi": "10.25504/FAIRsharing.096d5e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Atmosphere Watch (GAW) is a worldwide system established by the World Meteorological Organization, a United Nations agency, to monitor trends in the Earth's atmosphere. GAWSIS is the official catalogue of GAW stations and Contributing networks. It provides the GAW community and other interested people with an up-to-date, searchable data base of : station characteristics, measurements programs and data available, instrument, contact people, bibliographic references. GAWSIS also serves as a repository for supporting documents.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2617", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-17T08:45:10.000Z", "updated-at": "2021-11-24T13:13:13.658Z", "metadata": {"doi": "10.25504/FAIRsharing.5ry74y", "name": "BridgeDb", "status": "ready", "contacts": [{"contact-name": "Egon Willighagen", "contact-email": "egon.willighagen@maastrichtuniversity.nl", "contact-orcid": "0000-0001-7542-0286"}], "homepage": "https://bridgedb.github.io", "citations": [{"doi": "10.1186/1471-2105-11-5", "pubmed-id": 20047655, "publication-id": 2309}], "identifier": 2617, "description": "BridgeDb is a framework and data repository for finding and mapping equivalent identifiers from various databases. BridgeDb provides a framework, live services, and identifier mapping files for genes, gene-variant, proteins, metabolites and interactions.", "abbreviation": "BridgeDb", "access-points": [{"url": "https://bridgedb.github.io/pages/webservice.html", "name": "BridgeDb Web Services", "type": "REST"}], "support-links": [{"url": "https://bridgedb.github.io/pages/docs.html", "name": "Documentation", "type": "Github"}, {"url": "https://github.com/bridgedb/", "name": "GitHub Project", "type": "Github"}, {"url": "https://tess.elixir-europe.org/materials/bridgedbr-tutorial-ce581787-b018-4a34-b161-5ed1b9cc8902", "name": "BridgeDbR Tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/how-to-install-and-load-the-identifier-mapping-service-with-data-needed-for-gene-to-variant-and-variant-to-gene", "name": "How to install and load the Identifier Mapping Service with data needed for gene-to-variant and variant-to-gene", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/bridgedbr-tutorial", "name": "BridgeDbR Tutorial", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/BridgeDbProject", "name": "@BridgeDbProject", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://bridgedb.github.io/pages/webservice.html", "name": "Search via Web Services", "type": "data access"}, {"url": "https://bridgedb.github.io/data/gene_database/", "name": "Download All", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download A. gambiae data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download A. thaliana data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download B. subtilis data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download C. familiaris data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download C. elegans data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download B. taurus data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download E. coli data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download D. rerio data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download D. melanogaster data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download H. sapiens data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download G. zeae data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download G. gallus data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download P. troglodytes data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download O. japonica data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download M. musculus data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download Z. mays data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download S. cerevisiae data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3667670", "name": "Download R. norvegicus data", "type": "data release"}, {"url": "https://doi.org/10.6084/m9.figshare.135511761", "name": "Download Interactions Data", "type": "data release"}, {"url": "https://doi.org/10.6084/m9.figshare.12278810.v1", "name": "Download Complexes Data", "type": "data release"}, {"url": "https://doi.org/10.5281/zenodo.3860798", "name": "Download Human Coronaviruses data", "type": "data release"}, {"url": "https://doi.org/10.6084/m9.figshare.13270523.v1", "name": "Download Publications Data", "type": "data release"}, {"url": "https://doi.org/10.6084/m9.figshare.13550384.v1", "name": "Download Metabolites Data", "type": "data release"}], "associated-tools": [{"url": "https://github.com/bridgedb/BridgeDb/releases", "name": "BridgeDB Java Library 3.0"}]}, "legacy-ids": ["biodbcore-001102", "bsg-d001102"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry", "Metabolomics", "Biology", "Systems Biology"], "domains": ["Molecular interaction"], "taxonomies": ["Anopheles gambiae", "Arabidopsis thaliana", "Bacillus subtilis", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Coronaviridae", "Danio rerio", "Drosophila melanogaster", "Escherichia coli", "Gallus gallus", "Gibberella zeae", "Homo sapiens", "Mus musculus", "Oryza sativa L. ssp. japonica", "Pan troglodytes", "Rattus norvegicus", "Saccharomyces cerevisiae", "SARS-CoV-2", "Zea mays"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States", "Netherlands"], "name": "FAIRsharing record for: BridgeDb", "abbreviation": "BridgeDb", "url": "https://fairsharing.org/10.25504/FAIRsharing.5ry74y", "doi": "10.25504/FAIRsharing.5ry74y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BridgeDb is a framework and data repository for finding and mapping equivalent identifiers from various databases. BridgeDb provides a framework, live services, and identifier mapping files for genes, gene-variant, proteins, metabolites and interactions.", "publications": [{"id": 2309, "pubmed_id": 20047655, "title": "The BridgeDb framework: standardized access to gene, protein and metabolite identifier mapping services.", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-5", "authors": "van Iersel MP,Pico AR,Kelder T,Gao J,Ho I,Hanspers K,Conklin BR,Evelo CT", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-5", "created_at": "2021-09-30T08:26:43.234Z", "updated_at": "2021-09-30T08:26:43.234Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1044, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1048, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1049, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3003", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-18T07:23:49.000Z", "updated-at": "2021-12-06T10:47:29.719Z", "metadata": {"name": "GIS Maps Portal at AWI", "status": "ready", "contacts": [{"contact-name": "Antonie Haas", "contact-email": "Antonie.Haas@awi.de", "contact-orcid": "0000-0002-3771-4125"}], "homepage": "http://maps.awi.de/awimaps/", "identifier": 3003, "description": "maps@awi portal provides an overview of Geographic Information System (GIS) products at the Alfred Wegener Institute (AWI) in Germany. maps@awi stores and shares public access GIS data created by AWI projects on polar and marine research.", "abbreviation": "maps@awi", "support-links": [{"url": "https://www.awi.de/en/about-us/service/contact.html", "name": "Contact Form", "type": "Contact form"}, {"url": "https://maps.awi.de/awimaps/catalog/help/", "name": "User Help", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://maps.awi.de/awimaps/catalog/", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011469", "name": "re3data:r3d100011469", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001511", "bsg-d001511"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Fisheries Science", "Environmental Science", "Earth Science", "Water Management", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment", "Sedimentology"], "countries": ["Germany"], "name": "FAIRsharing record for: GIS Maps Portal at AWI", "abbreviation": "maps@awi", "url": "https://fairsharing.org/fairsharing_records/3003", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: maps@awi portal provides an overview of Geographic Information System (GIS) products at the Alfred Wegener Institute (AWI) in Germany. maps@awi stores and shares public access GIS data created by AWI projects on polar and marine research.", "publications": [], "licence-links": [{"licence-name": "AWI Imprint", "licence-id": 52, "link-id": 1873, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2631", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T15:11:36.000Z", "updated-at": "2022-02-08T10:38:33.693Z", "metadata": {"doi": "10.25504/FAIRsharing.da5cb8", "name": "Selectome", "status": "ready", "contacts": [{"contact-name": "Marc Robinson-Rechavi", "contact-email": "marc.robinson-rechavi@unil.ch", "contact-orcid": "0000-0002-3437-3329"}], "homepage": "https://selectome.unil.ch/", "identifier": 2631, "description": "Selectome is a database of positive selection, based on a branch-site likelihood test. Release 6 of Selectome includes all gene trees from Ensembl for Primates and Glires, as well as a large set of vertebrate gene trees.", "abbreviation": "Selectome", "support-links": [{"url": "selectome@unil.ch", "type": "Support email"}, {"url": "https://selectome.unil.ch/cgi-bin/contact.cgi", "type": "Help documentation"}, {"url": "https://twitter.com/Selectome", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://selectome.unil.ch/cgi-bin/asearch.cgi?query=", "name": "Advance search", "type": "data access"}, {"url": "https://selectome.unil.ch/cgi-bin/download.cgi", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001120", "bsg-d001120"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence alignment", "Sequence alignment"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Selectome", "abbreviation": "Selectome", "url": "https://fairsharing.org/10.25504/FAIRsharing.da5cb8", "doi": "10.25504/FAIRsharing.da5cb8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Selectome is a database of positive selection, based on a branch-site likelihood test. Release 6 of Selectome includes all gene trees from Ensembl for Primates and Glires, as well as a large set of vertebrate gene trees.", "publications": [{"id": 304, "pubmed_id": 18957445, "title": "Selectome: a database of positive selection.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn768", "authors": "Proux E,Studer RA,Moretti S,Robinson-Rechavi M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn768", "created_at": "2021-09-30T08:22:52.747Z", "updated_at": "2021-09-30T11:28:45.008Z"}, {"id": 2676, "pubmed_id": 24225318, "title": "Selectome update: quality control and computational improvements to a database of positive selection.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1065", "authors": "Moretti S,Laurenczy B,Gharib WH,Castella B,Kuzniar A,Schabauer H,Studer RA,Valle M,Salamin N,Stockinger H,Robinson-Rechavi M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1065", "created_at": "2021-09-30T08:27:28.579Z", "updated_at": "2021-09-30T11:29:41.278Z"}], "licence-links": [{"licence-name": "Selectome Privacy Notice", "licence-id": 744, "link-id": 1694, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2082", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:27.954Z", "metadata": {"doi": "10.25504/FAIRsharing.xgcyyn", "name": "CATH", "status": "ready", "contacts": [{"contact-name": "Ian Sillitoe", "contact-email": "i.sillitoe@ucl.ac.uk"}], "homepage": "http://www.cathdb.info/", "citations": [{"doi": "10.1093/nar/gkaa1079", "pubmed-id": 33237325, "publication-id": 1756}], "identifier": 2082, "description": "The CATH database is a free, publicly available online resource that provides information on the evolutionary relationships of protein domains. It provides a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor).", "abbreviation": "CATH", "support-links": [{"url": "http://orengogroup.info/", "name": "Orengo Group Site and Blog", "type": "Blog/News"}, {"url": "cathteam@biochem.ucl.ac.uk", "name": "Contact CATH", "type": "Support email"}, {"url": "http://www.cathdb.info/wiki/doku/?id=faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.cathdb.info/wiki", "name": "CATH Wiki Pages", "type": "Help documentation"}, {"url": "http://www.cathdb.info/support/contact", "name": "General Contact Information", "type": "Help documentation"}, {"url": "https://twitter.com/CATHDatabase", "name": "@CATHDatabase", "type": "Twitter"}], "year-creation": 1996, "data-processes": [{"url": "http://www.cathdb.info/wiki?id=data:index", "name": "Download", "type": "data release"}, {"url": "http://www.cathdb.info/browse/tree", "name": "Browse", "type": "data access"}, {"url": "http://www.cathdb.info/search", "name": "Search", "type": "data access"}, {"url": "http://www.cathdb.info/search/by_sequence", "name": "Search by Sequence", "type": "data access"}, {"url": "http://www.cathdb.info/search/by_structure", "name": "Search by Structure", "type": "data access"}], "associated-tools": [{"url": "https://github.com/UCLOrengoGroup/cath-tools", "name": "Cath Tools GitHub Project"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012629", "name": "re3data:r3d100012629", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007583", "name": "SciCrunch:RRID:SCR_007583", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000550", "bsg-d000550"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Evolutionary Biology", "Biology"], "domains": ["Molecular structure", "Annotation", "Evolution", "Curated information", "Classification", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: CATH", "abbreviation": "CATH", "url": "https://fairsharing.org/10.25504/FAIRsharing.xgcyyn", "doi": "10.25504/FAIRsharing.xgcyyn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CATH database is a free, publicly available online resource that provides information on the evolutionary relationships of protein domains. It provides a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor).", "publications": [{"id": 101, "pubmed_id": 27899584, "title": "CATH: an expanded resource to predict protein function through structure and sequence.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1098", "authors": "Dawson NL,Lewis TE,Das S,Lees JG,Lee D,Ashford P,Orengo CA,Sillitoe I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1098", "created_at": "2021-09-30T08:22:31.313Z", "updated_at": "2021-09-30T11:28:42.633Z"}, {"id": 529, "pubmed_id": 9309224, "title": "CATH--a hierarchic classification of protein domain structures.", "year": 1997, "url": "http://doi.org/10.1016/s0969-2126(97)00260-8", "authors": "Orengo CA., Michie AD., Jones S., Jones DT., Swindells MB., Thornton JM.,", "journal": "Structure", "doi": "10.1016/s0969-2126(97)00260-8", "created_at": "2021-09-30T08:23:17.758Z", "updated_at": "2021-09-30T08:23:17.758Z"}, {"id": 1240, "pubmed_id": 26253692, "title": "The history of the CATH structural classification of protein domains.", "year": 2015, "url": "http://doi.org/10.1016/j.biochi.2015.08.004", "authors": "Sillitoe I,Dawson N,Thornton J,Orengo C", "journal": "Biochimie", "doi": "10.1016/j.biochi.2015.08.004", "created_at": "2021-09-30T08:24:38.333Z", "updated_at": "2021-09-30T08:24:38.333Z"}, {"id": 1414, "pubmed_id": 27477482, "title": "Functional classification of CATH superfamilies: a domain-based approach for protein function annotation.", "year": 2016, "url": "http://doi.org/10.1093/bioinformatics/btw473", "authors": "Das S,Lee D,Sillitoe I,Dawson NL,Lees JG,Orengo CA", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btw473", "created_at": "2021-09-30T08:24:58.035Z", "updated_at": "2021-09-30T08:24:58.035Z"}, {"id": 1715, "pubmed_id": 29112716, "title": "Gene3D: Extensive prediction of globular domains in proteins.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1069", "authors": "Lewis TE,Sillitoe I,Dawson N,Lam SD,Clarke T,Lee D,Orengo C,Lees J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1069", "created_at": "2021-09-30T08:25:32.152Z", "updated_at": "2021-09-30T11:29:19.010Z"}, {"id": 1755, "pubmed_id": 30398663, "title": "CATH: expanding the horizons of structure-based functional annotations for genome sequences.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1097", "authors": "Sillitoe I,Dawson N,Lewis TE,Das S,Lees JG,Ashford P,Tolulope A,Scholes HM,Senatorov I,Bujan A,Ceballos Rodriguez-Conde F,Dowling B,Thornton J,Orengo CA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1097", "created_at": "2021-09-30T08:25:36.969Z", "updated_at": "2021-09-30T11:29:19.852Z"}, {"id": 1756, "pubmed_id": 33237325, "title": "CATH: increased structural coverage of functional space.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1079", "authors": "Sillitoe I,Bordin N,Dawson N,Waman VP,Ashford P,Scholes HM,Pang CSM,Woodridge L,Rauer C,Sen N,Abbasian M,Le Cornu S,Lam SD,Berka K,Varekova IH,Svobodova R,Lees J,Orengo CA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1079", "created_at": "2021-09-30T08:25:37.067Z", "updated_at": "2021-09-30T11:29:19.943Z"}, {"id": 2447, "pubmed_id": 25348408, "title": "CATH: comprehensive structural and functional annotations for genome sequences.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku947", "authors": "Sillitoe I,Lewis TE,Cuff A,Das S,Ashford P,Dawson NL,Furnham N,Laskowski RA,Lee D,Lees JG,Lehtinen S,Studer RA,Thornton J,Orengo CA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku947", "created_at": "2021-09-30T08:27:00.134Z", "updated_at": "2021-09-30T11:29:36.095Z"}, {"id": 2449, "pubmed_id": 11788987, "title": "The CATH protein family database: a resource for structural and functional annotation of genomes.", "year": 2002, "url": "https://www.ncbi.nlm.nih.gov/pubmed/11788987", "authors": "Orengo CA,Bray JE,Buchan DW,Harrison A,Lee D,Pearl FM,Sillitoe I,Todd AE,Thornton JM", "journal": "Proteomics", "doi": null, "created_at": "2021-09-30T08:27:00.353Z", "updated_at": "2021-09-30T08:27:00.353Z"}], "licence-links": [{"licence-name": "CATH Privacy Policy", "licence-id": 104, "link-id": 2428, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2239", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-27T02:05:56.000Z", "updated-at": "2021-11-24T13:17:51.044Z", "metadata": {"doi": "10.25504/FAIRsharing.bya6z", "name": "Super-Enhancer Archive", "status": "ready", "contacts": [{"contact-name": "Yan Zhang", "contact-email": "tyozhang@ems.hrbmu.edu.cn"}], "homepage": "http://sea.edbc.org/", "identifier": 2239, "description": "SEA (Super-Enhancer Archive) is a web-based comprehensive resource focusing on the collection, storage and online analysis of super-enhancers. It focuses on integrating super-enhancers in multiple species and annotating their potential roles in the regulation of cell identity gene expression. To facilitate data extraction, SEA supports multiple search options, including species, genome location, gene name, cell type/tissue, and super-enhancer name.", "abbreviation": "SEA", "support-links": [{"url": "http://www.bio-bigdata.com/SEA/contact.html", "type": "Contact form"}, {"url": "http://www.bio-bigdata.com/SEA/help.html", "type": "Help documentation"}, {"url": "http://www.bio-bigdata.com/SEA/docs/", "type": "Help documentation"}], "data-processes": [{"url": "http://www.bio-bigdata.com/SEA/analyze.html", "name": "analyze", "type": "data access"}, {"url": "http://www.bio-bigdata.com/SEA/dataBrowser.html", "name": "Browse", "type": "data access"}, {"url": "http://www.bio-bigdata.com/SEA/advanceQuery.html", "name": "search", "type": "data access"}, {"url": "http://www.bio-bigdata.com/SEA/BrowserViewAction.action", "name": "Browser View", "type": "data access"}], "associated-tools": [{"url": "http://www.bio-bigdata.com/SEA/analyze.html", "name": "Data Analysis 1.0"}]}, "legacy-ids": ["biodbcore-000713", "bsg-d000713"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Epigenetics", "Bioinformatics", "Life Science"], "domains": ["Taxonomic classification", "Enhancer", "Regulation of gene expression", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing"], "taxonomies": ["All", "Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Super-Enhancer Archive", "abbreviation": "SEA", "url": "https://fairsharing.org/10.25504/FAIRsharing.bya6z", "doi": "10.25504/FAIRsharing.bya6z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SEA (Super-Enhancer Archive) is a web-based comprehensive resource focusing on the collection, storage and online analysis of super-enhancers. It focuses on integrating super-enhancers in multiple species and annotating their potential roles in the regulation of cell identity gene expression. To facilitate data extraction, SEA supports multiple search options, including species, genome location, gene name, cell type/tissue, and super-enhancer name.", "publications": [{"id": 884, "pubmed_id": 26578594, "title": "SEA: a super-enhancer archive.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1243", "authors": "Yanjun Wei, Shumei Zhang, Shipeng Shang, Bin Zhang, Song Li, Xinyu Wang, Fang Wang, Jianzhong Su, Qiong Wu, Hongbo Liu, Yan Zhang*", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkv1243", "created_at": "2021-09-30T08:23:57.621Z", "updated_at": "2021-09-30T08:23:57.621Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2869", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-05T12:37:37.000Z", "updated-at": "2021-11-24T13:17:24.504Z", "metadata": {"name": "miRwayDB", "status": "uncertain", "contacts": [{"contact-name": "Nishant Chakravorty", "contact-email": "nishant@smst.iitkgp.ernet.in"}], "homepage": "http://www.mirway.iitkgp.ac.in/", "citations": [{"doi": "10.1093/database/bay023", "pubmed-id": 29688364, "publication-id": 2641}], "identifier": 2869, "description": "miRwayDB provides information on experimentally validated microRNA-pathway associations for pathophysiological conditions. Information includes disease condition, associated microRNAs, experimental sample types, regulation pattern (up/down), and pathway associations. In addition, miRwayDB provides miRNA, gene and pathway scores to evaluate the role of miRNA-regulated pathways in various pathophysiological conditions. We have been unable to contact miRwayDB in order to verify the current status of the resource, and have therefore marked it as Uncertain. If you are a developer of this resource or have any information on how to get in touch with miRwayDB, please let us know.", "abbreviation": "miRwayDB", "support-links": [{"url": "http://www.mirway.iitkgp.ac.in/contactus", "name": "Contact", "type": "Contact form"}], "year-creation": 2018, "data-processes": [{"url": "http://www.mirway.iitkgp.ac.in/submitdata", "name": "Data Submission", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001370", "bsg-d001370"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Physiology", "Pathology"], "domains": ["Disease", "Pathway model", "Micro RNA", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: miRwayDB", "abbreviation": "miRwayDB", "url": "https://fairsharing.org/fairsharing_records/2869", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: miRwayDB provides information on experimentally validated microRNA-pathway associations for pathophysiological conditions. Information includes disease condition, associated microRNAs, experimental sample types, regulation pattern (up/down), and pathway associations. In addition, miRwayDB provides miRNA, gene and pathway scores to evaluate the role of miRNA-regulated pathways in various pathophysiological conditions. We have been unable to contact miRwayDB in order to verify the current status of the resource, and have therefore marked it as Uncertain. If you are a developer of this resource or have any information on how to get in touch with miRwayDB, please let us know.", "publications": [{"id": 2641, "pubmed_id": 29688364, "title": "miRwayDB: a database for experimentally validated microRNA-pathway associations in pathophysiological conditions.", "year": 2018, "url": "http://doi.org/10.1093/database/bay023", "authors": "Das SS,Saha P,Chakravorty N", "journal": "Database (Oxford)", "doi": "10.1093/database/bay023", "created_at": "2021-09-30T08:27:24.338Z", "updated_at": "2021-09-30T08:27:24.338Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3219", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-13T14:04:09.000Z", "updated-at": "2021-12-06T10:47:40.019Z", "metadata": {"name": "European Archive of Historical EArthquake Data", "status": "ready", "contacts": [{"contact-name": "Mario Locati", "contact-email": "mario.locati@ingv.it"}], "homepage": "https://www.emidius.eu/AHEAD/", "identifier": 3219, "description": "The European Archive of Historical Earthquake Data (AHEAD) is a distributed archive aimed at preserving, inventorying and making available, to investigators and other users, data sources on the earthquake history of Europe, such as papers, reports, Macroseismic Data Points (MDPs), parametric catalogues. AHEAD was created and then maintained via the NERIES NA4 and SHARE Task 3.1 projects. AHEAD consists of independent regional archives, a general repository and a collaborative inventory.", "abbreviation": "AHEAD", "access-points": [{"url": "https://www.emidius.eu/AHEAD/services/", "name": "AHEAD Web Services", "type": "REST"}], "support-links": [{"url": "https://www.emidius.eu/AHEAD/introduction.php", "name": "Introduction and Copyright", "type": "Help documentation"}, {"url": "https://www.emidius.eu/SHEEC/", "name": "About SHARE", "type": "Help documentation"}, {"url": "https://www.emidius.eu/SHEEC/sheec_1000_1899.html", "name": "About SHARE European Earthquake Catalogue (SHEEC) 1000-1899", "type": "Help documentation"}, {"url": "https://twitter.com/AHEADarchive", "name": "@AHEADarchive", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "https://www.emidius.eu/AHEAD/query_study/", "name": "Query by Data Source", "type": "data access"}, {"url": "https://www.emidius.eu/AHEAD/query_event/", "name": "Query by Earthquake", "type": "data access"}, {"url": "https://www.emidius.eu/SHEEC/catalogue/", "name": "SHEEC - SHARE Explorer 1000-1899", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011648", "name": "re3data:r3d100011648", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001732", "bsg-d001732"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Geophysics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake", "Seismology"], "countries": ["European Union"], "name": "FAIRsharing record for: European Archive of Historical EArthquake Data", "abbreviation": "AHEAD", "url": "https://fairsharing.org/fairsharing_records/3219", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Archive of Historical Earthquake Data (AHEAD) is a distributed archive aimed at preserving, inventorying and making available, to investigators and other users, data sources on the earthquake history of Europe, such as papers, reports, Macroseismic Data Points (MDPs), parametric catalogues. AHEAD was created and then maintained via the NERIES NA4 and SHARE Task 3.1 projects. AHEAD consists of independent regional archives, a general repository and a collaborative inventory.", "publications": [{"id": 3077, "pubmed_id": null, "title": "The AHEAD Portal: A Gateway to European Historical Earthquake Data", "year": 2014, "url": "http://doi.org/10.1785/0220130113", "authors": "Locati M., Rovida A., Albini P., and Stucchi M.", "journal": "Seismological Resource Letters", "doi": null, "created_at": "2021-09-30T08:28:19.126Z", "updated_at": "2021-09-30T08:28:19.126Z"}, {"id": 3083, "pubmed_id": null, "title": "Archive of Historical Earthquake Data for the European-Mediterranean Area", "year": 2015, "url": "https://doi.org/10.1007/978-3-319-16964-4_14", "authors": "Rovida A., Locati M.", "journal": "Perspectives on European Earthquake Engineering and Seismology", "doi": null, "created_at": "2021-09-30T08:28:19.901Z", "updated_at": "2021-09-30T08:28:19.901Z"}], "licence-links": [{"licence-name": "AHEAD Copyright", "licence-id": 22, "link-id": 2208, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2837", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-21T22:16:57.000Z", "updated-at": "2021-11-24T13:13:39.225Z", "metadata": {"doi": "10.25504/FAIRsharing.etXuEk", "name": "MiST 3.0: Microbial Signal Transduction database", "status": "ready", "contacts": [{"contact-name": "Vadim Gumerov", "contact-email": "netuns@gmail.com", "contact-orcid": "0000-0003-1670-7679"}], "homepage": "https://mistdb.com/", "citations": [{"doi": "10.1093/nar/gkz988", "publication-id": 2632}], "identifier": 2837, "description": "Bacteria and archaea employ dedicated signal transduction systems that modulate gene expression, second-messenger turnover, quorum sensing, biofilm formation, motility, host-pathogen and beneficial interactions. The updated Microbial Signal Transduction (MiST) database provides a comprehensive classification of microbial signal transduction systems. This update is a result of a substantial scaling to accommodate constantly growing microbial genomic data. More than 125,000 genomes, 516 million genes and almost 100 million unique protein sequences are currently stored in the database. For each bacterial and archaeal genome, MiST 3.0 provides a complete signal transduction profile, thus facilitating theoretical and experimental studies on signal transduction and gene regulation. New software infrastructure and distributed pipeline implemented in MiST 3.0 enable regular genome updates based on the NCBI RefSeq database. A novel MiST feature is the integration of unique profile HMMs to link complex chemosensory systems with corresponding chemoreceptors in bacterial and archaeal genomes.", "abbreviation": "MiST", "access-points": [{"url": "http://api.mistdb.com", "name": "MiST API", "type": "REST"}], "support-links": [{"url": "gumerov.1@osu.edu", "name": "Contact", "type": "Support email"}, {"url": "https://mistdb.com/help", "name": "Help Pages", "type": "Help documentation"}], "year-creation": 2019}, "legacy-ids": ["biodbcore-001338", "bsg-d001338"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Bioinformatics", "Computational Biology"], "domains": ["Protein domain", "Signaling", "Receptor", "Genome"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": ["Chemotaxis", "One-component systems", "Protein domains", "Signal Transduction", "Two-component systems"], "countries": ["United States"], "name": "FAIRsharing record for: MiST 3.0: Microbial Signal Transduction database", "abbreviation": "MiST", "url": "https://fairsharing.org/10.25504/FAIRsharing.etXuEk", "doi": "10.25504/FAIRsharing.etXuEk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bacteria and archaea employ dedicated signal transduction systems that modulate gene expression, second-messenger turnover, quorum sensing, biofilm formation, motility, host-pathogen and beneficial interactions. The updated Microbial Signal Transduction (MiST) database provides a comprehensive classification of microbial signal transduction systems. This update is a result of a substantial scaling to accommodate constantly growing microbial genomic data. More than 125,000 genomes, 516 million genes and almost 100 million unique protein sequences are currently stored in the database. For each bacterial and archaeal genome, MiST 3.0 provides a complete signal transduction profile, thus facilitating theoretical and experimental studies on signal transduction and gene regulation. New software infrastructure and distributed pipeline implemented in MiST 3.0 enable regular genome updates based on the NCBI RefSeq database. A novel MiST feature is the integration of unique profile HMMs to link complex chemosensory systems with corresponding chemoreceptors in bacterial and archaeal genomes.", "publications": [{"id": 2632, "pubmed_id": null, "title": "MiST 3.0: an updated microbial signal transduction database with an emphasis on chemosensory systems", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz988", "authors": "Vadim M Gumerov, Davi R Ortega, Ogun Adebali, Luke E Ulrich, Igor B Zhulin", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz988", "created_at": "2021-09-30T08:27:23.122Z", "updated_at": "2021-09-30T08:27:23.122Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3606", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-31T10:26:19.884Z", "updated-at": "2022-02-08T10:44:31.656Z", "metadata": {"doi": "10.25504/FAIRsharing.bb24d8", "name": "PhenPath", "status": "ready", "contacts": [{"contact-name": "Giulia Babbi", "contact-email": "giulia.babbi3@unibo.it", "contact-orcid": "0000-0002-9816-4737"}], "homepage": "http://phenpath.biocomp.unibo.it/phenpath/", "citations": [], "identifier": 3606, "description": "PhenPath includes a database and a tool: PhenPathDB collects all the functional annotations associated with a specific phenotype or to a cluster of phenotypes and PhenPathTOOL retrieves the functional annotations for two or more phenotypes.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "http://phenpath.biocomp.unibo.it/phenpath/help_page.html", "type": "Help documentation"}, {"url": "http://phenpath.biocomp.unibo.it/phenpath/statistics.html", "name": "Statistics", "type": "Other"}, {"url": "http://phenpath.biocomp.unibo.it/phenpath/tutorial.html", "name": "Tutorial", "type": "Help documentation"}], "year-creation": null, "data-processes": [{"url": "http://phenpath.biocomp.unibo.it/cgi-bin/phenpath/ppDB.py", "name": "Browse", "type": "data access"}, {"url": "http://phenpath.biocomp.unibo.it/cgi-bin/phenpath/pptool.py", "name": "Search", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Phenotype", "Disease phenotype"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: PhenPath", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bb24d8", "doi": "10.25504/FAIRsharing.bb24d8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhenPath includes a database and a tool: PhenPathDB collects all the functional annotations associated with a specific phenotype or to a cluster of phenotypes and PhenPathTOOL retrieves the functional annotations for two or more phenotypes.", "publications": [{"id": 3124, "pubmed_id": 31307376, "title": "PhenPath: a tool for characterizing biological functions underlying different phenotypes", "year": 2019, "url": "http://dx.doi.org/10.1186/s12864-019-5868-x", "authors": "Babbi, Giulia; Martelli, Pier Luigi; Casadio, Rita; ", "journal": "BMC Genomics", "doi": "10.1186/s12864-019-5868-x", "created_at": "2021-10-31T10:34:29.484Z", "updated_at": "2021-10-31T10:34:29.484Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2075", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-11T14:31:48.688Z", "metadata": {"doi": "10.25504/FAIRsharing.zf8s5t", "name": "The Signaling Gateway", "status": "ready", "contacts": [{"contact-name": "Shankar Subramaniam", "contact-email": "shankar@sdsc.edu"}, {"contact-name": "General Contact", "contact-email": "webmaster@signaling-gateway.org", "contact-orcid": null}], "homepage": "http://www.signaling-gateway.org", "citations": [], "identifier": 2075, "description": "The UCSD Signaling Gateway Molecule Pages provides information on the proteins involved in cell signaling. This database combines expert authored reviews with curated, highly-structured data (e.g. protein interactions) and automatic annotation from publicly available data sources (e.g. UniProt and Genbank). ", "data-curation": {"url": "http://www.signaling-gateway.org/molecule/jsp/molpage/aboutus.jsp", "type": "manual/automated"}, "support-links": [], "year-creation": 2007, "data-processes": [{"url": "http://www.signaling-gateway.org/molecule/search", "name": "Search", "type": "data access"}, {"url": "http://www.signaling-gateway.org/molecule/list", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011690", "name": "re3data:r3d100011690", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006907", "name": "SciCrunch:RRID:SCR_006907", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {"url": "http://www.signaling-gateway.org/molecule/jsp/molpage/aboutus.jsp", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}}, "legacy-ids": ["biodbcore-000542", "bsg-d000542"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cell Biology"], "domains": ["Signaling", "Molecular interaction", "Small molecule", "Protein"], "taxonomies": ["Bos taurus", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Signaling Gateway", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.zf8s5t", "doi": "10.25504/FAIRsharing.zf8s5t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UCSD Signaling Gateway Molecule Pages provides information on the proteins involved in cell signaling. This database combines expert authored reviews with curated, highly-structured data (e.g. protein interactions) and automatic annotation from publicly available data sources (e.g. UniProt and Genbank). ", "publications": [{"id": 512, "pubmed_id": 17965093, "title": "The Molecule Pages database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm907", "authors": "Saunders B., Lyon S., Day M., Riley B., Chenette E., Subramaniam S., Vadivelu I.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm907", "created_at": "2021-09-30T08:23:15.883Z", "updated_at": "2021-09-30T08:23:15.883Z"}, {"id": 1495, "pubmed_id": 21505029, "title": "Signaling gateway molecule pages--a data model perspective.", "year": 2011, "url": "http://doi.org/10.1093/bioinformatics/btr190", "authors": "Dinasarapu AR., Saunders B., Ozerlat I., Azam K., Subramaniam S.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btr190", "created_at": "2021-09-30T08:25:07.470Z", "updated_at": "2021-09-30T08:25:07.470Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3652", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-02T09:31:25.303Z", "updated-at": "2022-02-08T10:45:18.576Z", "metadata": {"doi": "10.25504/FAIRsharing.42bab7", "name": "Characterized Lignocellulose-Active Enzymes", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "csfg-helpdesk@concordia.ca", "contact-orcid": null}], "homepage": "https://clae.fungalgenomics.ca/", "citations": [], "identifier": 3652, "description": "Formerly known as mycoCLAP, CLAE is a curated database of Characterized Lignocellulose-Active Enzymes, maintained by the Fungal Genomics group at Concordia University.\nAll the biochemical properties and annotations described in CLAE have been manually curated and are based on experimental evidence reported in published literature. The aim of CLAE is to provide data on solely characterized proteins to facilitate the functional annotation of novel lignocellulose-active proteins. The current version of CLAE contains a comprehensive set of fungal glycoside hydrolases, carbohydrate esterases and polysaccharide lyases and enzymes with auxiliary activities.", "abbreviation": "CLAE", "data-curation": {}, "year-creation": null, "data-processes": [{"url": "https://clae.fungalgenomics.ca/blast/", "name": "BLAST", "type": "data access"}, {"url": "https://clae.fungalgenomics.ca/assays/", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012729", "name": "re3data:r3d100012729", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Enzymology", "Life Science"], "domains": ["Enzyme", "Protein", "Gene"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Characterized Lignocellulose-Active Enzymes", "abbreviation": "CLAE", "url": "https://fairsharing.org/10.25504/FAIRsharing.42bab7", "doi": "10.25504/FAIRsharing.42bab7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Formerly known as mycoCLAP, CLAE is a curated database of Characterized Lignocellulose-Active Enzymes, maintained by the Fungal Genomics group at Concordia University.\nAll the biochemical properties and annotations described in CLAE have been manually curated and are based on experimental evidence reported in published literature. The aim of CLAE is to provide data on solely characterized proteins to facilitate the functional annotation of novel lignocellulose-active proteins. The current version of CLAE contains a comprehensive set of fungal glycoside hydrolases, carbohydrate esterases and polysaccharide lyases and enzymes with auxiliary activities.", "publications": [{"id": 234, "pubmed_id": 21622642, "title": "Curation of characterized glycoside hydrolases of Fungal origin", "year": 2011, "url": "http://doi.org/10.1093/database/bar020", "authors": "Caitlin Murphy, Justin Powlowski, Min Wu, Greg Butler and Adrian Tsang", "journal": "Database", "doi": "10.1093/database/bar020", "created_at": "2021-09-30T08:22:45.273Z", "updated_at": "2021-09-30T08:22:45.273Z"}, {"id": 3145, "pubmed_id": null, "title": "mycoCLAP, the database for characterized lignocellulose-active proteins of fungal origin: resource and text mining curation support", "year": 2015, "url": "http://dx.doi.org/10.1093/database/bav008", "authors": "Strasser, Kimchi; McDonnell, Erin; Nyaga, Carol; Wu, Min; Wu, Sherry; Almeida, Hayda; Meurs, Marie-Jean; Kosseim, Leila; Powlowski, Justin; Butler, Greg; Tsang, Adrian; ", "journal": "Database, Volume 2015, 2015, bav008", "doi": "10.1093/database/bav008", "created_at": "2021-12-02T15:48:06.459Z", "updated_at": "2021-12-02T15:48:06.459Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2333", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-22T22:02:52.000Z", "updated-at": "2021-11-24T13:17:51.426Z", "metadata": {"doi": "10.25504/FAIRsharing.8zz0xc", "name": "denovo-db", "status": "ready", "contacts": [{"contact-name": "denovo-db", "contact-email": "denovo-db@uw.edu"}], "homepage": "http://denovo-db.gs.washington.edu/", "identifier": 2333, "description": "denovo-db is a collection of germline de novo variants identified in the human genome. de novo variants are those present in children but not their parents.", "abbreviation": "denovo-db", "year-creation": 2016}, "legacy-ids": ["biodbcore-000809", "bsg-d000809"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: denovo-db", "abbreviation": "denovo-db", "url": "https://fairsharing.org/10.25504/FAIRsharing.8zz0xc", "doi": "10.25504/FAIRsharing.8zz0xc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: denovo-db is a collection of germline de novo variants identified in the human genome. de novo variants are those present in children but not their parents.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2681", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-12T19:30:02.000Z", "updated-at": "2021-11-24T13:14:07.904Z", "metadata": {"name": "Geosciences Collection Access Service", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@mfn-berlin.de"}], "homepage": "http://www.geocase.eu/portal", "identifier": 2681, "description": "GeoCASe (Geosciences Collection Access Service) is an extended version of BioCASE (Biological Collection Access Service), which is a transnational network of biological collections of all kinds. GeoCASe provides access to paleontological, mineralogical, and geological data; providers are required to use ABCDEFG, an extention of ABCD, in their configuration files.", "abbreviation": "GeoCASe Data Portal", "support-links": [{"url": "http://www.geocase.eu/contact", "name": "GeoCASe Contact Form", "type": "Contact form"}, {"url": "http://www.geocase.eu/tutorial", "name": "Tutorial", "type": "Help documentation"}], "data-processes": [{"url": "http://www.geocase.eu/access", "name": "browse & search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001175", "bsg-d001175"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Soil Science", "Geology", "Paleontology", "Mineralogy"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Geosciences Collection Access Service", "abbreviation": "GeoCASe Data Portal", "url": "https://fairsharing.org/fairsharing_records/2681", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeoCASe (Geosciences Collection Access Service) is an extended version of BioCASE (Biological Collection Access Service), which is a transnational network of biological collections of all kinds. GeoCASe provides access to paleontological, mineralogical, and geological data; providers are required to use ABCDEFG, an extention of ABCD, in their configuration files.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1719", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:03.000Z", "metadata": {"doi": "10.25504/FAIRsharing.c1bjep", "name": "HOmo sapiens transcription factor COmprehensive MOdel COllection", "status": "ready", "contacts": [{"contact-name": "Vsevolod Makeev", "contact-email": "vsevolod.makeev@vigg.ru", "contact-orcid": "0000-0001-9405-9748"}], "homepage": "http://hocomoco.autosome.ru/", "citations": [{"doi": "10.1093/nar/gkx1106", "pubmed-id": 29140464, "publication-id": 1794}], "identifier": 1719, "description": "HOmo sapiens COmprehensive MOdel COllection (HOCOMOCO) v10 provides transcription factor (TF) binding models for 601 human and 396 mouse TFs. In addition to basic mononucleotide position weight matrices (PWMs), HOCOMOCO provides a set of dinucleotide position weight matrices based on ChIP-Seq data. All the models were produced by the ChIPMunk motif discovery tool. Models are manually curated with assigning model quality ratings based upon benchmark studies or inherited from HOCOMOCO v9. ChIP-Seq data for motif discovery was extracted from GTRD database of BioUML platform, that also provides an interface for motif finding (sequence scanning) with HOCOMOCO models. Other sequences of TF binding DNA regions were collected from existing databases and other public data. An appropriate TFBS model was selected for each TF, with similar models selected for related TFs. All TFBS models and initial binding segments data used for motif discovery were mapped to UniPROT IDs. TF coding genes are linked with GeneCards entries. DNA binding domains are linked with TF class database.", "abbreviation": "HOCOMOCO", "support-links": [{"url": "http://hocomoco.autosome.ru/help", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://hocomoco.autosome.ru/downloads", "name": "download", "type": "data access"}, {"url": "http://autosome.ru/HOCOMOCOS/", "name": "HOCOMOCO v9", "type": "data versioning"}], "associated-tools": [{"url": "http://autosome.ru/ChIPMunk/", "name": "Chipmunk v6b"}, {"url": "http://autosome.ru/macroape/", "name": "MacroApe v4.c"}]}, "legacy-ids": ["biodbcore-000176", "bsg-d000176"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Transcription factor", "Chromatin immunoprecipitation - DNA sequencing", "Curated information"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Saudi Arabia", "Russia"], "name": "FAIRsharing record for: HOmo sapiens transcription factor COmprehensive MOdel COllection", "abbreviation": "HOCOMOCO", "url": "https://fairsharing.org/10.25504/FAIRsharing.c1bjep", "doi": "10.25504/FAIRsharing.c1bjep", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HOmo sapiens COmprehensive MOdel COllection (HOCOMOCO) v10 provides transcription factor (TF) binding models for 601 human and 396 mouse TFs. In addition to basic mononucleotide position weight matrices (PWMs), HOCOMOCO provides a set of dinucleotide position weight matrices based on ChIP-Seq data. All the models were produced by the ChIPMunk motif discovery tool. Models are manually curated with assigning model quality ratings based upon benchmark studies or inherited from HOCOMOCO v9. ChIP-Seq data for motif discovery was extracted from GTRD database of BioUML platform, that also provides an interface for motif finding (sequence scanning) with HOCOMOCO models. Other sequences of TF binding DNA regions were collected from existing databases and other public data. An appropriate TFBS model was selected for each TF, with similar models selected for related TFs. All TFBS models and initial binding segments data used for motif discovery were mapped to UniPROT IDs. TF coding genes are linked with GeneCards entries. DNA binding domains are linked with TF class database.", "publications": [{"id": 1046, "pubmed_id": 23175603, "title": "HOCOMOCO: a comprehensive collection of human transcription factor binding sites models.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1089", "authors": "Kulakovskiy IV,Medvedeva YA,Schaefer U,Kasianov AS,Vorontsov IE,Bajic VB,Makeev VJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1089", "created_at": "2021-09-30T08:24:15.795Z", "updated_at": "2021-09-30T11:28:57.376Z"}, {"id": 1051, "pubmed_id": 20736340, "title": "Deep and wide digging for binding motifs in ChIP-Seq data.", "year": 2010, "url": "http://doi.org/10.1093/bioinformatics/btq488", "authors": "Kulakovskiy IV,Boeva VA,Favorov AV,Makeev VJ", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq488", "created_at": "2021-09-30T08:24:16.364Z", "updated_at": "2021-09-30T08:24:16.364Z"}, {"id": 1054, "pubmed_id": 23427986, "title": "From binding motifs in ChIP-Seq data to improved models of transcription factor binding sites.", "year": 2013, "url": "http://doi.org/10.1142/S0219720013400040", "authors": "Kulakovskiy I,Levitsky V,Oshchepkov D,Bryzgalov L,Vorontsov I,Makeev V", "journal": "J Bioinform Comput Biol", "doi": "10.1142/S0219720013400040", "created_at": "2021-09-30T08:24:16.732Z", "updated_at": "2021-09-30T08:24:16.732Z"}, {"id": 1055, "pubmed_id": 24074225, "title": "Jaccard index based similarity measure to compare transcription factor binding site models.", "year": 2013, "url": "http://doi.org/10.1186/1748-7188-8-23", "authors": "Vorontsov IE,Kulakovskiy IV,Makeev VJ", "journal": "Algorithms Mol Biol", "doi": "10.1186/1748-7188-8-23", "created_at": "2021-09-30T08:24:16.839Z", "updated_at": "2021-09-30T08:24:16.839Z"}, {"id": 1794, "pubmed_id": 29140464, "title": "HOCOMOCO: towards a complete collection of transcription factor binding models for human and mouse via large-scale ChIP-Seq analysis.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1106", "authors": "Kulakovskiy IV,Vorontsov IE,Yevshin IS,Sharipov RN,Fedorova AD,Rumynskiy EI,Medvedeva YA,Magana-Mora A,Bajic VB,Papatsenko DA,Kolpakov FA,Makeev VJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1106", "created_at": "2021-09-30T08:25:41.436Z", "updated_at": "2021-09-30T11:29:20.910Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1917, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1888", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:47.108Z", "metadata": {"doi": "10.25504/FAIRsharing.k5k0yh", "name": "GlycomeDB", "status": "deprecated", "contacts": [{"contact-name": "Ren\u00e9 Ranzinger", "contact-email": "rene.ranzinger@glycome-db.org"}], "homepage": "http://www.glycome-db.org/showMenu.action?major=database", "identifier": 1888, "description": "GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", "abbreviation": "GlycomeDB", "support-links": [{"url": "http://www.glycome-db.org/Contact.action", "type": "Contact form"}, {"url": "http://www.glycome-db.org/help/GlycomeDBManual.pdf", "type": "Help documentation"}, {"url": "http://www.glycome-db.org/showMenu.action?major=documentation", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.glycome-db.org/showMenu.action?major=downloads", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.glycome-db.org/showMenu.action?major=database", "name": "search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011527", "name": "re3data:r3d100011527", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005717", "name": "SciCrunch:RRID:SCR_005717", "portal": "SciCrunch"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and the data has been incorporated into GlyTouCan"}, "legacy-ids": ["biodbcore-000353", "bsg-d000353"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Carbohydrate", "Molecular entity", "Small molecule", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: GlycomeDB", "abbreviation": "GlycomeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.k5k0yh", "doi": "10.25504/FAIRsharing.k5k0yh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", "publications": [{"id": 380, "pubmed_id": 19759275, "title": "Glycome-DB.org: a portal for querying across the digital world of carbohydrate sequences.", "year": 2009, "url": "http://doi.org/10.1093/glycob/cwp137", "authors": "Ranzinger R., Frank M., von der Lieth CW., Herget S.,", "journal": "Glycobiology", "doi": "10.1093/glycob/cwp137", "created_at": "2021-09-30T08:23:01.207Z", "updated_at": "2021-09-30T08:23:01.207Z"}, {"id": 1067, "pubmed_id": 21045056, "title": "GlycomeDB--a unified database for carbohydrate structures.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1014", "authors": "Ranzinger R,Herget S,von der Lieth CW,Frank M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1014", "created_at": "2021-09-30T08:24:18.172Z", "updated_at": "2021-09-30T11:28:57.792Z"}, {"id": 1607, "pubmed_id": 18803830, "title": "GlycomeDB - integration of open-access carbohydrate structure databases.", "year": 2008, "url": "http://doi.org/10.1186/1471-2105-9-384", "authors": "Ranzinger R,Herget S,Wetter T,von der Lieth CW", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-9-384", "created_at": "2021-09-30T08:25:20.154Z", "updated_at": "2021-09-30T08:25:20.154Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1892", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:20.281Z", "metadata": {"doi": "10.25504/FAIRsharing.bwctv", "name": "European Hepatitis C Virus database", "status": "ready", "contacts": [], "homepage": "https://euhcvdb.lyon.inserm.fr/euHCVdb/", "citations": [], "identifier": 1892, "description": "The euHCVdb is mainly oriented towards protein sequence, structure and function analyses and structural biology of Hepatitis C Virus.", "abbreviation": "euHCVdb", "support-links": [{"url": "http://euhcvdb.ibcp.fr/euHCVdb/jsp/sendMail.jsp", "type": "Contact form"}, {"url": "https://euhcvdb.ibcp.fr/euHCVdb/jsp/help.jsp", "type": "Help documentation"}], "year-creation": 1999, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011795", "name": "re3data:r3d100011795", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007645", "name": "SciCrunch:RRID:SCR_007645", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000357", "bsg-d000357"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Protein structure", "Function analysis", "Molecular function", "Protein", "Amino acid sequence"], "taxonomies": ["Hepacivirus", "Hepatitis C virus"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: European Hepatitis C Virus database", "abbreviation": "euHCVdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.bwctv", "doi": "10.25504/FAIRsharing.bwctv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The euHCVdb is mainly oriented towards protein sequence, structure and function analyses and structural biology of Hepatitis C Virus.", "publications": [{"id": 1272, "pubmed_id": 19519481, "title": "The euHCVdb suite of in silico tools for investigating the structural impact of mutations in hepatitis C virus proteins.", "year": 2009, "url": "http://doi.org/10.2174/1871526510909030272", "authors": "Combet C,Bettler E,Terreux R,Garnier N,Deleage G", "journal": "Infect Disord Drug Targets", "doi": "10.2174/1871526510909030272", "created_at": "2021-09-30T08:24:42.058Z", "updated_at": "2021-09-30T08:24:42.058Z"}, {"id": 2312, "pubmed_id": 17142229, "title": "euHCVdb: the European hepatitis C virus database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl970", "authors": "Combet C., Garnier N., Charavay C., Grando D., Crisan D., Lopez J., Dehne-Garcia A., Geourjon C., Bettler E., Hulo C., Le Mercier P., Bartenschlager R., Diepolder H., Moradpour D., Pawlotsky JM., Rice CM., Tr\u00e9po C., Penin F., Del\u00e9age G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl970", "created_at": "2021-09-30T08:26:43.669Z", "updated_at": "2021-09-30T08:26:43.669Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 625, "relation": "undefined"}, {"licence-name": "euHCVdb Academic use", "licence-id": 294, "link-id": 634, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3618", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-10T22:49:47.895Z", "updated-at": "2021-11-24T13:16:56.246Z", "metadata": {"name": "KnetMiner", "status": "ready", "contacts": [{"contact-name": "Keywan Hassani-Pak", "contact-email": "pakk@rothamsted.ac.uk", "contact-orcid": "0000-0001-9625-0511"}], "homepage": "https://knetminer.com", "citations": [], "identifier": 3618, "description": "KnetMiner is a knowledge platform for genes, traits, diseases and their interactions across species. We integrate a range of open-access data, transform into a knowledge graph and augment with new text-mined relationships. Free KnetMiner resources include Arabidopsis, wheat, rice and COVID-19 (publicly funded). Many other species specific datasets can be subscribed to for a fee. In addition to web-based access, the knowledge graphs can also be accessed programmatically through RDF-SPARQL and Neo4j-Cypher endpoints.", "abbreviation": "KnetMiner", "data-curation": {}, "support-links": [{"url": "support@knetminer.com", "name": "KnetMiner Support", "type": "Support email"}, {"url": "https://knetminer.com/cases", "name": "Case Studies", "type": "Other"}, {"url": "https://knetminer.com/news", "type": "Blog/News"}], "year-creation": 2015, "data-processes": [{"url": "https://knetminer.com/Triticum_aestivum/", "name": "Gene Search for Triticum aestivum", "type": "data access"}, {"url": "https://knetminer.com/Arabidopsis_thaliana/", "name": "Gene Search for Arabidopsis thaliana", "type": "data access"}, {"url": "https://knetminer.com/Oryza_sativa/", "name": "Gene Search for Oryza sativa", "type": "data access"}, {"url": "https://knetminer.com/COVID-19/", "name": "Gene Search for COVID-19", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {"url": "https://knetminer.com/beta/knetspace/sign-in/", "type": "controlled"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Knowledge and Information Systems", "Genomics", "Bioinformatics", "Life Science"], "domains": [], "taxonomies": ["Arthropoda", "Bacteria", "Fungi", "Viridiplantae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: KnetMiner", "abbreviation": "KnetMiner", "url": "https://fairsharing.org/fairsharing_records/3618", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KnetMiner is a knowledge platform for genes, traits, diseases and their interactions across species. We integrate a range of open-access data, transform into a knowledge graph and augment with new text-mined relationships. Free KnetMiner resources include Arabidopsis, wheat, rice and COVID-19 (publicly funded). Many other species specific datasets can be subscribed to for a fee. In addition to web-based access, the knowledge graphs can also be accessed programmatically through RDF-SPARQL and Neo4j-Cypher endpoints.", "publications": [{"id": 3129, "pubmed_id": 33750020, "title": "KnetMiner: a comprehensive approach for supporting evidence-based gene discovery and complex trait analysis across species.", "year": 2021, "url": "https://doi.org/10.1111/pbi.13583", "authors": "Hassani-Pak K, Singh A, Brandizi M, Hearnshaw J, Parsons JD, Amberkar S, Phillips AL, Doonan JH, Rawlings C", "journal": "Plant biotechnology journal", "doi": "10.1111/pbi.13583", "created_at": "2021-11-10T23:05:39.999Z", "updated_at": "2021-11-10T23:05:39.999Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 2500, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1762", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:08.389Z", "metadata": {"doi": "10.25504/FAIRsharing.rwd4wq", "name": "cis-Regulatory Element Database", "status": "ready", "contacts": [{"contact-name": "General enquiries", "contact-email": "cisred@bcgsc.ca"}], "homepage": "http://www.cisred.org/", "identifier": 1762, "description": "The cisRED database holds conserved sequence motifs identified by genome scale motif discovery, similarity, clustering, co-occurrence and coexpression calculations. Sequence inputs include low-coverage genome sequence data and ENCODE data.", "abbreviation": "cisRED", "support-links": [{"url": "http://www.cisred.org/content/methods/help/", "type": "Help documentation"}, {"url": "http://www.cisred.org/content/databases_methods/schema/", "type": "Help documentation"}, {"url": "http://www.cisred.org/content/databases_methods/method/", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.cisred.org/content/software/", "name": "analyze", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010619", "name": "re3data:r3d100010619", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002098", "name": "SciCrunch:RRID:SCR_002098", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000220", "bsg-d000220"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Biological regulation", "Genome"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: cis-Regulatory Element Database", "abbreviation": "cisRED", "url": "https://fairsharing.org/10.25504/FAIRsharing.rwd4wq", "doi": "10.25504/FAIRsharing.rwd4wq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The cisRED database holds conserved sequence motifs identified by genome scale motif discovery, similarity, clustering, co-occurrence and coexpression calculations. Sequence inputs include low-coverage genome sequence data and ENCODE data.", "publications": [{"id": 296, "pubmed_id": 16381958, "title": "cisRED: a database system for genome-scale computational discovery of regulatory elements.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj075", "authors": "Robertson G., Bilenky M., Lin K., He A., Yuen W., Dagpinar M., Varhol R., Teague K., Griffith OL., Zhang X., Pan Y., Hassel M., Sleumer MC., Pan W., Pleasance ED., Chuang M., Hao H., Li YY., Robertson N., Fjell C., Li B., Montgomery SB., Astakhova T., Zhou J., Sander J., Siddiqui AS., Jones SJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj075", "created_at": "2021-09-30T08:22:51.907Z", "updated_at": "2021-09-30T08:22:51.907Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1666", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.529Z", "metadata": {"doi": "10.25504/FAIRsharing.yxrs8t", "name": "MethylomeDB", "status": "deprecated", "contacts": [{"contact-email": "fgh3@columbia.edu"}], "homepage": "http://habanero.mssm.edu/methylomedb/index.html", "identifier": 1666, "description": "This resource details DNA methylation profiles in human and mouse brain. This database includes genome-wide DNA methylation profiles for human and mouse brains. The DNA methylation profiles were generated by Methylation Mapping Analysis by Paired-end Sequencing (Methyl-MAPS) method and analyzed by Methyl-Analyzer software package. The methylation profiles cover over 80% CpG dinucleotides in human and mouse brains in single-CpG resolution. The integrated genome browser (modified from UCSC Genome Browser allows users to browse DNA methylation profiles in specific genomic loci, to search specific methylation patterns, and to compare methylation patterns between individual samples.", "abbreviation": "MethylomeDB", "support-links": [{"url": "http://habanero.mssm.edu/methylomedb/contact.html", "type": "Contact form"}, {"url": "http://habanero.mssm.edu/methylomedb/help_faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://habanero.mssm.edu/methylomedb/help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "Ad-hoc release", "type": "data release"}, {"name": "Manual curation", "type": "data curation"}, {"name": "No versioning policy", "type": "data versioning"}, {"name": "Access to historical files upon request", "type": "data versioning"}, {"url": "http://www.neuroepigenomics.org/methylomedb/download.html", "name": "Data Download", "type": "data access"}], "associated-tools": [{"url": "http://habanero.mssm.edu/index.html", "name": "Browser"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000122", "bsg-d000122"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA methylation", "Methylation", "Brain"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MethylomeDB", "abbreviation": "MethylomeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.yxrs8t", "doi": "10.25504/FAIRsharing.yxrs8t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource details DNA methylation profiles in human and mouse brain. This database includes genome-wide DNA methylation profiles for human and mouse brains. The DNA methylation profiles were generated by Methylation Mapping Analysis by Paired-end Sequencing (Methyl-MAPS) method and analyzed by Methyl-Analyzer software package. The methylation profiles cover over 80% CpG dinucleotides in human and mouse brains in single-CpG resolution. The integrated genome browser (modified from UCSC Genome Browser allows users to browse DNA methylation profiles in specific genomic loci, to search specific methylation patterns, and to compare methylation patterns between individual samples.", "publications": [{"id": 581, "pubmed_id": 22140101, "title": "MethylomeDB: a database of DNA methylation profiles of the brain.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1193", "authors": "Xin Y., Chanrion B., O'Donnell AH., Milekic M., Costa R., Ge Y., Haghighi FG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1193", "created_at": "2021-09-30T08:23:23.569Z", "updated_at": "2021-09-30T08:23:23.569Z"}, {"id": 1888, "pubmed_id": 21216877, "title": "Distinct DNA methylation changes highly correlated with chronological age in the human brain.", "year": 2011, "url": "http://doi.org/10.1093/hmg/ddq561", "authors": "Hernandez DG,Nalls MA,Gibbs JR,Arepalli S,van der Brug M,Chong S,Moore M,Longo DL,Cookson MR,Traynor BJ,Singleton AB", "journal": "Hum Mol Genet", "doi": "10.1093/hmg/ddq561", "created_at": "2021-09-30T08:25:52.373Z", "updated_at": "2021-09-30T08:25:52.373Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2898", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-10T11:32:58.000Z", "updated-at": "2022-02-08T10:31:39.275Z", "metadata": {"doi": "10.25504/FAIRsharing.e341e2", "name": "Editome Disease Knowledgebase", "status": "ready", "contacts": [{"contact-name": "Zhang Zhang", "contact-email": "zhangzhang@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/edk/", "citations": [{"doi": "10.1093/nar/gky958", "pubmed-id": 30357418, "publication-id": 2804}], "identifier": 2898, "description": "The Editome Disease Knowledgebase (EDK) is an integrated knowledgebase of RNA editome-disease associations manually curated from published literature. It stores information on RNA editing events in mRNA, miRNA, lncRNA, viruses and RNA editing enzymes associated with different human diseases.", "abbreviation": "EDK", "data-curation": {}, "support-links": [{"url": "niuguangyi@big.ac.cn", "name": "Guangyi Niu", "type": "Support email"}, {"url": "haolili@big.ac.cn", "name": "Lili Hao", "type": "Support email"}, {"url": "https://bigd.big.ac.cn/edk/faq", "name": "EDK FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/edk/contact", "name": "General Contact", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://bigd.big.ac.cn/edk/browse/disease", "name": "Browse Diseases", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/browse/RNA", "name": "Browse Edited RNAs", "type": "data access"}, {"url": "https://ngdc.cncb.ac.cn/edk/browse/virus/dependent#", "name": "Browse Dependent Viruses", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/browse/enzyme", "name": "Browse Enzymes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/browse/sites", "name": "Browse Editing Sites", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/publications", "name": "Browse Publications", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/ipa", "name": "View Network", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/search", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/edk/comments", "name": "Add Community Annotation", "type": "data curation"}, {"url": "https://ngdc.cncb.ac.cn/edk/browse/virus/independent", "name": "Browse Independent Virus", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001399", "bsg-d001399"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Human Genetics"], "domains": ["RNA modification", "Long non-coding ribonucleic acid", "Disease", "Messenger RNA", "Micro RNA"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Editome Disease Knowledgebase", "abbreviation": "EDK", "url": "https://fairsharing.org/10.25504/FAIRsharing.e341e2", "doi": "10.25504/FAIRsharing.e341e2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Editome Disease Knowledgebase (EDK) is an integrated knowledgebase of RNA editome-disease associations manually curated from published literature. It stores information on RNA editing events in mRNA, miRNA, lncRNA, viruses and RNA editing enzymes associated with different human diseases.", "publications": [{"id": 2804, "pubmed_id": 30357418, "title": "Editome Disease Knowledgebase (EDK): a curated knowledgebase of editome-disease associations in human.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky958", "authors": "Niu G,Zou D,Li M,Zhang Y,Sang J,Xia L,Li M,Liu L,Cao J,Zhang Y,Wang P,Hu S,Hao L,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky958", "created_at": "2021-09-30T08:27:44.845Z", "updated_at": "2021-09-30T11:29:45.146Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 426, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2450", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-30T02:42:48.000Z", "updated-at": "2021-11-24T13:13:06.262Z", "metadata": {"doi": "10.25504/FAIRsharing.c7c4h1", "name": "Visual Database for Organelle Genome", "status": "deprecated", "contacts": [{"contact-name": "Yiqing Xu", "contact-email": "yiqingxu@njfu.edu.cn", "contact-orcid": "0000-0002-7962-6668"}], "homepage": "http://bio.njfu.edu.cn/VDOG", "identifier": 2450, "description": "VDOG, Visual Database for Organelle Genome is an innovative database of the genome information in the organelles. Most of the data in VDOG are originally extracted from GeneBank, re-organized and represented.", "abbreviation": "VDOG", "support-links": [{"url": "yiqingxu@njfu.edu.cn", "type": "Support email"}, {"url": "http://bio.njfu.edu.cn/VDOG/howto.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://bio.njfu.edu.cn/VDOG/intro.php", "type": "Help documentation"}], "year-creation": 2016, "associated-tools": [{"url": "http://bio.njfu.edu.cn/CPTree", "name": "CPTree 1.2"}, {"url": "http://bio.njfu.edu.cn/MTTree", "name": "MTTree beta"}, {"url": "http://ogdraw.mpimp-golm.mpg.de/", "name": "OrganellarGenomeDRAW 1.2"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000932", "bsg-d000932"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Visualization"], "domains": ["Organelle", "Mitochondrial sequence", "Plastid sequence", "Chloroplast sequence"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Visual Database for Organelle Genome", "abbreviation": "VDOG", "url": "https://fairsharing.org/10.25504/FAIRsharing.c7c4h1", "doi": "10.25504/FAIRsharing.c7c4h1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VDOG, Visual Database for Organelle Genome is an innovative database of the genome information in the organelles. Most of the data in VDOG are originally extracted from GeneBank, re-organized and represented.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1038, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2174", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.998Z", "metadata": {"doi": "10.25504/FAIRsharing.51r558", "name": "Protein-ligand affinity change upon mutation", "status": "deprecated", "contacts": [{"contact-name": "Douglas Pires", "contact-email": "dpires@dcc.ufmg.br", "contact-orcid": "0000-0002-3004-2119"}], "homepage": "http://structure.bioc.cam.ac.uk/platinum", "identifier": 2174, "description": "Platinum is a manually curated, literature-derived database comprising over 1,000 mutations which for the first time associates experimental information on changes in protein-ligand affinity with the three-dimensional structures of the complex.", "abbreviation": "Platinum", "support-links": [{"url": "http://bleoberis.bioc.cam.ac.uk/platinum/contact", "type": "Contact form"}, {"url": "dascher@svi.edu.au", "type": "Support email"}, {"url": "http://bleoberis.bioc.cam.ac.uk/platinum/help", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://bleoberis.bioc.cam.ac.uk/platinum/data", "name": "Download", "type": "data access"}, {"url": "http://bleoberis.bioc.cam.ac.uk/platinum/browse", "name": "browse", "type": "data access"}, {"url": "http://bleoberis.bioc.cam.ac.uk/platinum/query", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://structure.bioc.cam.ac.uk/mcsm", "name": "mCSM 1.0"}, {"url": "http://structure.bioc.cam.ac.uk/duet", "name": "DUET 1.0"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000646", "bsg-d000646"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Protein interaction", "Mutation analysis", "Small molecule"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "Australia", "Brazil"], "name": "FAIRsharing record for: Protein-ligand affinity change upon mutation", "abbreviation": "Platinum", "url": "https://fairsharing.org/10.25504/FAIRsharing.51r558", "doi": "10.25504/FAIRsharing.51r558", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Platinum is a manually curated, literature-derived database comprising over 1,000 mutations which for the first time associates experimental information on changes in protein-ligand affinity with the three-dimensional structures of the complex.", "publications": [{"id": 677, "pubmed_id": 25324307, "title": "Platinum: a database of experimentally measured effects of mutations on structurally defined protein-ligand complexes", "year": 2014, "url": "http://doi.org/10.1093/nar/gku966", "authors": "Douglas E.V. Pires, Tom L. Blundell and David B. Ascher", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku966", "created_at": "2021-09-30T08:23:34.644Z", "updated_at": "2021-09-30T08:23:34.644Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1700", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:15.484Z", "metadata": {"doi": "10.25504/FAIRsharing.tawpg2", "name": "The Yeast Metabolome Database", "status": "ready", "contacts": [], "homepage": "http://www.ymdb.ca", "citations": [], "identifier": 1700, "description": "The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker\u2019s yeast and Brewer\u2019s yeast). This database covers metabolites described in textbooks, scientific journals, metabolic reconstructions and other electronic databases.", "abbreviation": "YMDB", "data-curation": {}, "support-links": [{"url": "http://feedback.wishartlab.com/?site=ymdb", "type": "Contact form"}, {"url": "https://twitter.com/WishartLab", "type": "Twitter"}, {"url": "http://www.ymdb.ca/documentation", "name": "Data source", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "programmatic access (JSON,XML)", "type": "data access"}, {"name": "file download(CSV,images)", "type": "data access"}, {"url": "http://www.ymdb.ca/downloads", "name": "download", "type": "data access"}, {"name": "versioning by publication frequency", "type": "data versioning"}, {"name": "manual curation", "type": "data curation"}, {"name": "daily release", "type": "data release"}, {"url": "http://www.ymdb.ca/unearth/advanced/compounds", "name": "Advanced search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012733", "name": "re3data:r3d100012733", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005890", "name": "SciCrunch:RRID:SCR_005890", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000157", "bsg-d000157"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Chemical formula", "Mass spectrum", "Chemical structure", "Concentration", "DNA sequence data", "Gene Ontology enrichment", "Metabolite", "Nuclear Magnetic Resonance (NMR) spectroscopy", "Cellular localization", "Protein", "Gene", "Amino acid sequence", "Chemical descriptor"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": ["Physical properties"], "countries": ["Canada"], "name": "FAIRsharing record for: The Yeast Metabolome Database", "abbreviation": "YMDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.tawpg2", "doi": "10.25504/FAIRsharing.tawpg2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker\u2019s yeast and Brewer\u2019s yeast). This database covers metabolites described in textbooks, scientific journals, metabolic reconstructions and other electronic databases.", "publications": [{"id": 1316, "pubmed_id": 22064855, "title": "YMDB: the Yeast Metabolome Database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr916", "authors": "Jewison T., Knox C., Neveu V., Djoumbou Y., Guo AC., Lee J., Liu P., Mandal R., Krishnamurthy R., Sinelnikov I., Wilson M., Wishart DS.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr916", "created_at": "2021-09-30T08:24:47.020Z", "updated_at": "2021-09-30T08:24:47.020Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2577", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T13:33:07.000Z", "updated-at": "2021-11-24T13:17:23.678Z", "metadata": {"name": "Genome Database for Vaccinium", "status": "ready", "contacts": [], "homepage": "https://www.vaccinium.org/", "citations": [], "identifier": 2577, "description": "The amount of genetic research data for Vaccinium is steadily increasing and there is a need for a system that can organize, filter and provide analysis of the available research to be directly applied in breeding programs. The Genome Database for Vaccinium (GDV) is a curated and integrated web-based relational database. The GDV integrates genomic, genetic and breeding data for blueberry, cranberry and other Vaccinium species. The GDV includes Vaccinium genomes, annotated transcripts, traits, maps and markers.", "abbreviation": "GDV", "data-curation": {}, "support-links": [{"url": "https://www.vaccinium.org/news/community", "name": "News", "type": "Blog/News"}, {"url": "https://www.vaccinium.org/contact", "name": "GDV Contact Form", "type": "Contact form"}, {"url": "https://www.vaccinium.org/userManual", "name": "GDV User Manual", "type": "Help documentation"}, {"url": "gdv_news@bioinfo.wsu.edu", "name": "GDV Mailing list", "type": "Mailing list"}, {"url": "https://www.vaccinium.org/content/about", "name": "About GDV", "type": "Help documentation"}, {"url": "https://twitter.com/GDV_news", "name": "@GDV_news", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://www.vaccinium.org/search/genes", "name": "Search Genes and Transcripts", "type": "data access"}, {"url": "https://www.vaccinium.org/search/germplasm", "name": "Search Germplasm", "type": "data access"}, {"url": "https://www.vaccinium.org/search/featuremap/list", "name": "Search Maps", "type": "data access"}, {"url": "https://www.vaccinium.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://www.vaccinium.org/search/qtl", "name": "Search QTL", "type": "data access"}, {"url": "https://www.vaccinium.org/search/features", "name": "Search sequences", "type": "data access"}, {"url": "https://www.vaccinium.org/data_download", "name": "Data download", "type": "data access"}, {"url": "https://www.vaccinium.org/data_submission", "name": "Data submission", "type": "data curation"}, {"url": "https://www.vaccinium.org/find/publications", "name": "Publication Search", "type": "data access"}, {"url": "https://www.vaccinium.org/tripal_megasearch", "name": "MegaSearch", "type": "data access"}, {"url": "https://www.vaccinium.org/search/content/cross-sites", "name": "Cross-Site Search", "type": "data access"}, {"url": "https://www.vaccinium.org/search/trait_descriptor", "name": "Trait Descriptor Search", "type": "data access"}, {"url": "https://www.vaccinium.org/search/trait", "name": "Trait Search", "type": "data access"}, {"url": "https://www.vaccinium.org/trait_listing", "name": "Trait Abbreviations", "type": "data curation"}], "associated-tools": [{"url": "https://www.vaccinium.org/MapViewer", "name": "MapViewer"}, {"url": "https://www.vaccinium.org/blast", "name": "BLAST+"}, {"url": "https://www.vaccinium.org/bims", "name": "Breeding Information Management System (BIMS)"}, {"url": "https://www.vaccinium.org/jbrowses", "name": "JBrowse"}, {"url": "http://ptools.vaccinium.org/", "name": "PathwayCyc"}, {"url": "https://www.vaccinium.org/synview/search/", "name": "Synteny Viewer"}], "cross-references": [{"url": "https://www.rosaceae.org/", "name": "Genome Database for Rosaceae", "portal": "Other"}, {"url": "https://www.citrusgenomedb.org/", "name": "Citrus Genome Database", "portal": "Other"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001060", "bsg-d001060"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Agriculture", "Life Science", "Biology", "Plant Genetics"], "domains": [], "taxonomies": ["Vaccinium", "Vaccinium corymbosum", "Vaccinium darrowii", "Vaccinium macrocarpon", "Vaccinium microcarpum", "Vaccinium oxycoccos", "Vaccinium myrtillus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genome Database for Vaccinium", "abbreviation": "GDV", "url": "https://fairsharing.org/fairsharing_records/2577", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The amount of genetic research data for Vaccinium is steadily increasing and there is a need for a system that can organize, filter and provide analysis of the available research to be directly applied in breeding programs. The Genome Database for Vaccinium (GDV) is a curated and integrated web-based relational database. The GDV integrates genomic, genetic and breeding data for blueberry, cranberry and other Vaccinium species. The GDV includes Vaccinium genomes, annotated transcripts, traits, maps and markers.", "publications": [], "licence-links": [{"licence-name": "GDV disclaimer", "licence-id": 327, "link-id": 1665, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3670", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-09T09:41:53.687Z", "updated-at": "2022-02-08T10:52:21.952Z", "metadata": {"doi": "10.25504/FAIRsharing.668458", "name": "SARS-CoV-2 Database", "status": "ready", "contacts": [{"contact-name": "Nils-Peder Willassen", "contact-email": "nils-peder.willassen@uit.no", "contact-orcid": "0000-0002-4397-8020"}], "homepage": "https://covid19.sfb.uit.no", "citations": [], "identifier": 3670, "description": "SARS-CoV-2 Database is a knowledge database for SARS-CoV-2 virus research compiled from publicly available resources.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://covid19.sfb.uit.no/about/", "name": "About", "type": "Other"}, {"url": "https://twitter.com/UiTSfB", "name": "@UiTSfB", "type": "Twitter"}, {"url": "mmp@uit.no", "name": "General contact", "type": "Support email"}], "year-creation": 2020, "data-processes": [{"url": "https://covid19.sfb.uit.no/blast/", "name": "Blast", "type": "data access"}, {"url": "https://covid19.sfb.uit.no/sars-cov/", "name": "Browser", "type": "data access"}, {"url": "https://covid19.sfb.uit.no/resources/", "name": "Download", "type": "data access"}, {"url": "https://public.sfb.uit.no/SarsCovid19DB/versioned_genomes/", "name": "Genome versioning", "type": "data versioning"}, {"url": "https://public.sfb.uit.no/SarsCovid19DB/contextual/", "name": "Database versioning", "type": "data versioning"}], "data-versioning": "yes", "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Virology"], "domains": ["DNA sequence data", "Viral sequence"], "taxonomies": ["SARS-CoV-2"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: SARS-CoV-2 Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.668458", "doi": "10.25504/FAIRsharing.668458", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SARS-CoV-2 Database is a knowledge database for SARS-CoV-2 virus research compiled from publicly available resources.", "publications": [], "licence-links": [{"licence-name": "SARS-CoV-2 Database Terms of Use", "licence-id": 897, "link-id": 2543, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3304", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-11T12:18:01.000Z", "updated-at": "2022-02-08T10:36:56.623Z", "metadata": {"doi": "10.25504/FAIRsharing.8a4af3", "name": "Eukaryotic Ribosomal Internal Transcribed Spacer 1 Database", "status": "ready", "contacts": [{"contact-name": "Graziano Pesole", "contact-email": "graziano.pesole@uniba.it", "contact-orcid": "0000-0003-3663-0859"}], "homepage": "http://itsonedb.cloud.ba.infn.it/index.jsp", "citations": [{"doi": "10.1093/nar/gkx855", "pubmed-id": 29036529, "publication-id": 1964}], "identifier": 3304, "description": "The Eukaryotic Ribosomal Internal Transcribed Spacer 1 Database (ITSoneDB) is a collection of eukaryotic ribosomal RNA Internal Transcribed Spacer 1 (ITS1) sequences. It is intended to provide a curated reference database aimed at ITS1-based metagenomic surveys. Each ITS1 is mapped on the NCBI reference taxonomy with its start and end positions precisely annotated. ITSoneDB has been developed in agreement to the FAIR guidelines by enabling the users to query and download its content through a simple web-interface and access relevant metadata by cross-linking to European Nucleotide Archive.", "abbreviation": "ITSoneDB", "year-creation": 2017, "data-processes": [{"url": "http://itsonedb.cloud.ba.infn.it/index.jsp", "name": "Simple, Advanced and Tree Search", "type": "data access"}, {"url": "http://itsonedb.cloud.ba.infn.it/index.jsp", "name": "Download and Export Data", "type": "data release"}]}, "legacy-ids": ["biodbcore-001819", "bsg-d001819"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Metagenomics"], "domains": ["Hidden Markov model", "Genome annotation", "Ribosomal RNA", "Metagenome"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Eukaryotic Ribosomal Internal Transcribed Spacer 1 Database", "abbreviation": "ITSoneDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.8a4af3", "doi": "10.25504/FAIRsharing.8a4af3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Eukaryotic Ribosomal Internal Transcribed Spacer 1 Database (ITSoneDB) is a collection of eukaryotic ribosomal RNA Internal Transcribed Spacer 1 (ITS1) sequences. It is intended to provide a curated reference database aimed at ITS1-based metagenomic surveys. Each ITS1 is mapped on the NCBI reference taxonomy with its start and end positions precisely annotated. ITSoneDB has been developed in agreement to the FAIR guidelines by enabling the users to query and download its content through a simple web-interface and access relevant metadata by cross-linking to European Nucleotide Archive.", "publications": [{"id": 1964, "pubmed_id": 29036529, "title": "ITSoneDB: a comprehensive collection of eukaryotic ribosomal RNA Internal Transcribed Spacer 1 (ITS1) sequences.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx855", "authors": "Santamaria M,Fosso B,Licciulli F,Balech B,Larini I,Grillo G,De Caro G,Liuni S,Pesole G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx855", "created_at": "2021-09-30T08:26:01.021Z", "updated_at": "2021-09-30T11:29:24.727Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2852", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-11T14:42:27.000Z", "updated-at": "2022-02-08T10:53:11.660Z", "metadata": {"doi": "10.25504/FAIRsharing.e4abce", "name": "PrimesDB", "status": "ready", "contacts": [{"contact-name": "Professor David Lynn", "contact-email": "david.lynn@sahmri.com"}], "homepage": "http://primesdb.org/", "identifier": 2852, "description": "PRIMESDB is a systems biology platform that is being developed to enable the collection, integration and analysis of state-of-the-art genomics, proteomics and mathematical modelling data being generated by the PRIMES project. PRIMES is investigating the role of protein interaction machines in oncogenic signalling with a particular focus on the EGFR network. PRIMESDB provides a centralised knowledgebase and analysis platform for cancer protein interaction networks.", "abbreviation": "PrimesDB"}, "legacy-ids": ["biodbcore-001353", "bsg-d001353"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology"], "domains": ["Protein interaction", "Cancer", "Drug metabolic process", "Signaling", "Drug interaction", "Pathway model", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: PrimesDB", "abbreviation": "PrimesDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.e4abce", "doi": "10.25504/FAIRsharing.e4abce", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PRIMESDB is a systems biology platform that is being developed to enable the collection, integration and analysis of state-of-the-art genomics, proteomics and mathematical modelling data being generated by the PRIMES project. PRIMES is investigating the role of protein interaction machines in oncogenic signalling with a particular focus on the EGFR network. PRIMESDB provides a centralised knowledgebase and analysis platform for cancer protein interaction networks.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3198", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-16T16:10:11.000Z", "updated-at": "2022-02-08T10:54:51.580Z", "metadata": {"doi": "10.25504/FAIRsharing.a95199", "name": "Inorganic Crystal Structure Database", "status": "ready", "contacts": [], "homepage": "https://icsd.fiz-karlsruhe.de/index.xhtml", "citations": [], "identifier": 3198, "description": "ICSD is an information service in crystallography and comprises the world\u2019s largest database for fully identified inorganic crystal structures.", "abbreviation": "ICSD", "data-curation": {}, "support-links": [{"url": "https://icsd.fiz-karlsruhe.de/authorization/contact.xhtml", "name": "Contact form", "type": "Contact form"}], "data-processes": [{"url": "https://icsd.fiz-karlsruhe.de/search/basic.xhtml", "name": "Basic web search", "type": "data access"}, {"url": "https://icsd.fiz-karlsruhe.de/search/qm/manageQueries.xhtml", "name": "Canned Query Search", "type": "data access"}, {"url": "https://icsd.fiz-karlsruhe.de/search/expertSearch.xhtml", "name": "Expert Search", "type": "data access"}, {"url": "https://icsd.fiz-karlsruhe.de/index.xhtml", "name": "Login to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010085", "name": "re3data:r3d100010085", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {"url": "https://icsd.fiz-karlsruhe.de/index.xhtml", "type": "controlled"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001709", "bsg-d001709"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Inorganic Molecular Chemistry", "Chemistry"], "domains": ["X-ray crystallography assay"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Inorganic Crystal Structure Database", "abbreviation": "ICSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.a95199", "doi": "10.25504/FAIRsharing.a95199", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ICSD is an information service in crystallography and comprises the world\u2019s largest database for fully identified inorganic crystal structures.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2424", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T21:47:43.000Z", "updated-at": "2021-12-06T10:48:55.281Z", "metadata": {"doi": "10.25504/FAIRsharing.ne5dn7", "name": "EarthChem", "status": "ready", "contacts": [{"contact-name": "Kerstin Lehnert", "contact-email": "lehnert@ldeo.columbia.edu", "contact-orcid": "0000-0001-7036-1977"}], "homepage": "http://www.earthchem.org", "citations": [{"publication-id": 2695}], "identifier": 2424, "description": "EarthChem develops and maintains databases, software, and services that support the preservation, discovery, access and analysis of geochemical data, and facilitate their integration with the broad array of other available earth science parameters. The EarthChem Portal stores geochemical data, provides a variety of search, visualization, and output formatting options, and is interoperable with the LEPR database and the MELTS software. EarthChem Library is a data repository that archives, publishes and makes accessible data and other digital content from geoscience research.", "abbreviation": "EarthChem", "support-links": [{"url": "https://www.facebook.com/EarthChem", "name": "Facebook", "type": "Facebook"}, {"url": "http://www.earthchem.org/news", "name": "News", "type": "Blog/News"}, {"url": "info@earthchem.org", "name": "General Contact", "type": "Support email"}, {"url": "http://www.earthchem.org/help", "name": "Help Resources", "type": "Help documentation"}, {"url": "http://www.earthchem.org/about/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.earthchem.org/library/releasenotes", "name": "Release notes", "type": "Help documentation"}, {"url": "http://www.earthchem.org/overview", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/EarthChem", "name": "@EarthChem", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://ecl.earthchem.org/search.php", "name": "EarthChem Library Access", "type": "data access"}, {"url": "http://www.earthchem.org/help/guidelines", "name": "Submit", "type": "data curation"}, {"url": "https://search.earthchem.org", "name": "EarthChem Synthesis (PetDB) Access", "type": "data access"}, {"url": "http://portal.earthchem.org/", "name": "EarthChem Portal", "type": "data access"}, {"url": "http://www.earthchem.org/help/guidelines", "name": "EarthChem Library Data Release", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011538", "name": "re3data:r3d100011538", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000906", "bsg-d000906"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geochemistry", "Environmental Science", "Chemistry", "Natural Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: EarthChem", "abbreviation": "EarthChem", "url": "https://fairsharing.org/10.25504/FAIRsharing.ne5dn7", "doi": "10.25504/FAIRsharing.ne5dn7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EarthChem develops and maintains databases, software, and services that support the preservation, discovery, access and analysis of geochemical data, and facilitate their integration with the broad array of other available earth science parameters. The EarthChem Portal stores geochemical data, provides a variety of search, visualization, and output formatting options, and is interoperable with the LEPR database and the MELTS software. EarthChem Library is a data repository that archives, publishes and makes accessible data and other digital content from geoscience research.", "publications": [{"id": 2695, "pubmed_id": null, "title": "A global geochemical database structure for rocks", "year": 2000, "url": "https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/1999GC000026", "authors": "K. Lehnert Y. Su C. H. Langmuir B. Sarbas U. Nohl", "journal": "Geochemistry, Geophysics, Geosystems", "doi": null, "created_at": "2021-09-30T08:27:30.971Z", "updated_at": "2021-09-30T08:27:30.971Z"}], "licence-links": [{"licence-name": "EarthChem Terms of Use", "licence-id": 255, "link-id": 490, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3301", "type": "fairsharing-records", "attributes": {"created-at": "2021-05-06T13:31:21.000Z", "updated-at": "2022-02-10T14:12:12.474Z", "metadata": {"doi": "10.25504/FAIRsharing.d02054", "name": "PDB-REDO", "status": "ready", "contacts": [{"contact-name": "Robbie P. Joosten", "contact-email": "r.joosten@nki.nl"}], "homepage": "https://pdb-redo.eu", "citations": [{"doi": "10.1107/s0907444911054515", "pubmed-id": null, "publication-id": 3219}, {"doi": "10.1002/pro.3353", "pubmed-id": null, "publication-id": 3224}, {"doi": "10.1107/s2059798321007610", "pubmed-id": null, "publication-id": 3225}, {"doi": "10.1002/pro.3788", "pubmed-id": null, "publication-id": 3226}, {"doi": "10.1107/s2059798319003875", "pubmed-id": null, "publication-id": 3228}, {"doi": "10.1107/s2053230x18004016", "pubmed-id": null, "publication-id": 3229}, {"doi": "10.1107/s2052252518010552", "pubmed-id": null, "publication-id": 3230}, {"doi": "10.1107/s2059798316013036", "pubmed-id": null, "publication-id": 3231}], "identifier": 3301, "description": "PDB-REDO is a databank of optimised (re-refined, rebuilt and validated) Protein Data Bank entries. It covers nearly all structure models derived from X-ray and electron diffraction that have deposited experimental data. Entries can be accessed by their PDB identifier.", "abbreviation": "PDB-REDO", "data-curation": {"type": "manual/automated"}, "support-links": [{"url": "http://crdd.osdd.net/raghava/ccpdb/help.html", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://pdb-redo.eu/download-info.html", "name": "Download", "type": "data release"}, {"url": "https://pdb-redo.eu/", "name": "Search", "type": "data access"}], "data-versioning": "yes", "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}}, "legacy-ids": ["biodbcore-001816", "bsg-d001816"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology"], "domains": ["Protein structure", "X-ray diffraction", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "Netherlands"], "name": "FAIRsharing record for: PDB-REDO", "abbreviation": "PDB-REDO", "url": "https://fairsharing.org/10.25504/FAIRsharing.d02054", "doi": "10.25504/FAIRsharing.d02054", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDB-REDO is a databank of optimised (re-refined, rebuilt and validated) Protein Data Bank entries. It covers nearly all structure models derived from X-ray and electron diffraction that have deposited experimental data. Entries can be accessed by their PDB identifier.", "publications": [{"id": 306, "pubmed_id": 22477769, "title": "PDB_REDO: automated re-refinement of X-ray structure models in the PDB.", "year": 2009, "url": "http://doi.org/10.1107/S0021889809008784", "authors": "Joosten RP,Salzemann J,Bloch V et al.", "journal": "J Appl Crystallogr", "doi": "10.1107/S0021889809008784", "created_at": "2021-09-30T08:22:52.932Z", "updated_at": "2021-09-30T08:22:52.932Z"}, {"id": 321, "pubmed_id": 21071423, "title": "A series of PDB related databases for everyday needs.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1105", "authors": "Joosten RP,te Beek TA,Krieger E,Hekkelman ML,Hooft RW,Schneider R,Sander C,Vriend G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1105", "created_at": "2021-09-30T08:22:54.471Z", "updated_at": "2021-09-30T11:28:45.217Z"}, {"id": 3218, "pubmed_id": null, "title": "A series of PDB-related databanks for everyday needs", "year": 2014, "url": "http://dx.doi.org/10.1093/nar/gku1028", "authors": "Touw, Wouter G.; Baakman, Coos; Black, Jon; te\u00a0Beek, Tim A.\u00a0H.; Krieger, E.; Joosten, Robbie P.; Vriend, Gert; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1028", "created_at": "2022-02-09T09:39:55.069Z", "updated_at": "2022-02-09T09:39:55.069Z"}, {"id": 3219, "pubmed_id": null, "title": "PDB_REDO: constructive validation, more than just looking for errors", "year": 2012, "url": "http://dx.doi.org/10.1107/S0907444911054515", "authors": "Joosten, Robbie P.; Joosten, Krista; Murshudov, Garib N.; Perrakis, Anastassis; ", "journal": "Acta Crystallogr D Biol Cryst", "doi": "10.1107/s0907444911054515", "created_at": "2022-02-09T09:42:16.875Z", "updated_at": "2022-02-09T09:42:16.875Z"}, {"id": 3220, "pubmed_id": null, "title": "Automatic rebuilding and optimization of crystallographic structures in the Protein Data Bank", "year": 2011, "url": "http://dx.doi.org/10.1093/bioinformatics/btr590", "authors": "Joosten, R. P.; Joosten, K.; Cohen, S. X.; Vriend, G.; Perrakis, A.; ", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btr590", "created_at": "2022-02-09T09:47:34.179Z", "updated_at": "2022-02-09T09:47:34.179Z"}, {"id": 3221, "pubmed_id": null, "title": "Re-refinement from deposited X-ray data can deliver improved models for most PDB entries", "year": 2009, "url": "http://dx.doi.org/10.1107/S0907444908037591", "authors": "Joosten, Robbie P.; Womack, Thomas; Vriend, Gert; Bricogne, G\u00e9rard; ", "journal": "Acta Crystallogr D Biol Cryst", "doi": "10.1107/s0907444908037591", "created_at": "2022-02-09T09:48:28.847Z", "updated_at": "2022-02-09T09:48:28.847Z"}, {"id": 3222, "pubmed_id": null, "title": "PDB Improvement Starts with Data Deposition", "year": 2007, "url": "http://dx.doi.org/10.1126/science.317.5835.195", "authors": "Joosten, Robbie P.; Vriend, Gert; ", "journal": "Science", "doi": "10.1126/science.317.5835.195", "created_at": "2022-02-09T09:49:33.658Z", "updated_at": "2022-02-09T09:49:33.658Z"}, {"id": 3223, "pubmed_id": null, "title": "New Biological Insights from Better Structure Models", "year": 2016, "url": "http://dx.doi.org/10.1016/j.jmb.2016.02.002", "authors": "Touw, Wouter G.; Joosten, Robbie P.; Vriend, Gert; ", "journal": "Journal of Molecular Biology", "doi": "10.1016/j.jmb.2016.02.002", "created_at": "2022-02-09T09:50:39.236Z", "updated_at": "2022-02-09T09:50:39.236Z"}, {"id": 3224, "pubmed_id": null, "title": "Homology-based hydrogen bond information improves crystallographic structures in the PDB", "year": 2017, "url": "http://dx.doi.org/10.1002/pro.3353", "authors": "van Beusekom, Bart; Touw, Wouter G.; Tatineni, Mahidhar; Somani, Sandeep; Rajagopal, Gunaretnam; Luo, Jinquan; Gilliland, Gary L.; Perrakis, Anastassis; Joosten, Robbie P.; ", "journal": "Protein Science", "doi": "10.1002/pro.3353", "created_at": "2022-02-09T09:51:49.980Z", "updated_at": "2022-02-09T09:51:49.980Z"}, {"id": 3225, "pubmed_id": null, "title": "New restraints and validation approaches for nucleic acid structures in PDB-REDO", "year": 2021, "url": "http://dx.doi.org/10.1107/S2059798321007610", "authors": "de Vries, Ida; Kwakman, Tim; Lu, Xiang-Jun; Hekkelman, Maarten L.; Deshpande, Mandar; Velankar, Sameer; Perrakis, Anastassis; Joosten, Robbie P.; ", "journal": "Acta Cryst Sect D Struct Biol", "doi": "10.1107/s2059798321007610", "created_at": "2022-02-09T09:53:03.318Z", "updated_at": "2022-02-09T09:53:03.318Z"}, {"id": 3226, "pubmed_id": null, "title": "Facilities that make the PDB data collection more powerful", "year": 2019, "url": "http://dx.doi.org/10.1002/pro.3788", "authors": "Lange, Joanna; Baakman, Coos; Pistorius, Arthur; Krieger, Elmar; Hooft, Rob; Joosten, Robbie P.; Vriend, Gert; ", "journal": "Protein Science", "doi": "10.1002/pro.3788", "created_at": "2022-02-09T09:54:15.259Z", "updated_at": "2022-02-09T09:54:15.259Z"}, {"id": 3227, "pubmed_id": null, "title": "West-Life: A Virtual Research Environment for structural biology", "year": 2019, "url": "http://dx.doi.org/10.1016/j.yjsbx.2019.100006", "authors": "Morris, Chris; Andreetto, Paolo; Banci, Lucia; Bonvin, Alexandre M.J.J.; Chojnowski, Grzegorz; Cano, Laura del; Carazo, Jos\u00e9 Mar\u0131a; Conesa, Pablo; Daenke, Susan; Damaskos, George; Giachetti, Andrea; Haley, Natalie E.C.; Hekkelman, Maarten L.; Heuser, Philipp; Joosten, Robbie P.; Kou\u0159il, Daniel; K\u0159enek, Ale\u0161; Kulh\u00e1nek, Tom\u00e1\u0161; Lamzin, Victor S.; Nadzirin, Nurul; Perrakis, Anastassis; Rosato, Antonio; Sanderson, Fiona; Segura, Joan; Schaarschmidt, Joerg; Sobolev, Egor; Traldi, Sergio; Trellet, Mikael E.; Velankar, Sameer; Verlato, Marco; Winn, Martyn; ", "journal": "Journal of Structural Biology: X", "doi": "10.1016/j.yjsbx.2019.100006", "created_at": "2022-02-09T09:55:26.782Z", "updated_at": "2022-02-09T09:55:26.782Z"}, {"id": 3228, "pubmed_id": null, "title": "Building and rebuilding N-glycans in protein structure models", "year": 2019, "url": "http://dx.doi.org/10.1107/S2059798319003875", "authors": "van Beusekom, Bart; Wezel, Natasja; Hekkelman, Maarten L.; Perrakis, Anastassis; Emsley, Paul; Joosten, Robbie P.; ", "journal": "Acta Cryst Sect D Struct Biol", "doi": "10.1107/s2059798319003875", "created_at": "2022-02-09T09:57:41.170Z", "updated_at": "2022-02-09T09:57:41.170Z"}, {"id": 3229, "pubmed_id": null, "title": "Making glycoproteins a little bit sweeter withPDB-REDO", "year": 2018, "url": "http://dx.doi.org/10.1107/S2053230X18004016", "authors": "van Beusekom, Bart; L\u00fctteke, Thomas; Joosten, Robbie P.; ", "journal": "Acta Cryst Sect F", "doi": "10.1107/s2053230x18004016", "created_at": "2022-02-09T09:59:03.576Z", "updated_at": "2022-02-09T09:59:03.576Z"}, {"id": 3230, "pubmed_id": null, "title": "Homology-based loop modeling yields more complete crystallographic protein structures", "year": 2018, "url": "http://dx.doi.org/10.1107/S2052252518010552", "authors": "van Beusekom, Bart; Joosten, Krista; Hekkelman, Maarten L.; Joosten, Robbie P.; Perrakis, Anastassis; ", "journal": "Int Union Crystallogr J", "doi": "10.1107/s2052252518010552", "created_at": "2022-02-09T10:04:54.788Z", "updated_at": "2022-02-09T10:04:54.788Z"}, {"id": 3231, "pubmed_id": null, "title": "Validation and correction of Zn\u2013Cys\n x\n His\n y\n complexes", "year": 2016, "url": "http://dx.doi.org/10.1107/S2059798316013036", "authors": "Touw, Wouter G.; van Beusekom, Bart; Evers, Jochem M. G.; Vriend, Gert; Joosten, Robbie P.; ", "journal": "Acta Cryst Sect D Struct Biol", "doi": "10.1107/s2059798316013036", "created_at": "2022-02-09T10:05:54.854Z", "updated_at": "2022-02-09T10:05:54.854Z"}], "licence-links": [{"licence-name": "PDB-REDO Licence", "licence-id": 654, "link-id": 951, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBMQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--8ec8538571c5fbef3cab4db51769c89abaf52530/pdb_redo_logo.png?disposition=inline"}} +{"id": "1976", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.380Z", "metadata": {"doi": "10.25504/FAIRsharing.sc7fv9", "name": "HIV-1 Human Interaction Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/genome/viruses/retroviruses/hiv-1/interactions/", "identifier": 1976, "description": "The HIV-1, human protein interaction data presented here are based on literature reports. This dataset is available in report pages per HIV-1 protein and is also integrated into Entrez Gene report pages for HIV-1 and human proteins.", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/genome/viruses/retroviruses/hiv-1/interactions/help", "name": "HIV-1 Interactions Help Documentation", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/genome/viruses/retroviruses/hiv-1/interactions/browse/", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000442", "bsg-d000442"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Protein interaction", "Protein", "Gene"], "taxonomies": ["Homo sapiens", "Human immunodeficiency virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: HIV-1 Human Interaction Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.sc7fv9", "doi": "10.25504/FAIRsharing.sc7fv9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The HIV-1, human protein interaction data presented here are based on literature reports. This dataset is available in report pages per HIV-1 protein and is also integrated into Entrez Gene report pages for HIV-1 and human proteins.", "publications": [{"id": 451, "pubmed_id": 19025396, "title": "Cataloguing the HIV type 1 human protein interaction network.", "year": 2008, "url": "http://doi.org/10.1089/aid.2008.0113", "authors": "Ptak RG., Fu W., Sanders-Beer BE., Dickerson JE., Pinney JW., Robertson DL., Rozanov MN., Katz KS., Maglott DR., Pruitt KD., Dieffenbach CW.,", "journal": "AIDS Res. Hum. Retroviruses", "doi": "10.1089/aid.2008.0113", "created_at": "2021-09-30T08:23:08.958Z", "updated_at": "2021-09-30T08:23:08.958Z"}, {"id": 2299, "pubmed_id": 18927109, "title": "Human immunodeficiency virus type 1, human protein interaction database at NCBI.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn708", "authors": "Fu W,Sanders-Beer BE,Katz KS,Maglott DR,Pruitt KD,Ptak RG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn708", "created_at": "2021-09-30T08:26:41.293Z", "updated_at": "2021-09-30T11:29:32.846Z"}, {"id": 2308, "pubmed_id": 25378338, "title": "HIV-1, human interaction database: current status and new features.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1126", "authors": "Ako-Adjei D,Fu W,Wallin C,Katz KS,Song G,Darji D,Brister JR,Ptak RG,Pruitt KD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1126", "created_at": "2021-09-30T08:26:43.133Z", "updated_at": "2021-09-30T11:29:32.936Z"}], "licence-links": [{"licence-name": "HIV-1 Human Interaction Database Attribution required", "licence-id": 393, "link-id": 1834, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1843, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2357", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-31T15:25:25.000Z", "updated-at": "2021-11-24T13:19:33.537Z", "metadata": {"doi": "10.25504/FAIRsharing.tw6ecm", "name": "LinkProt: A database of proteins with topological links", "status": "ready", "contacts": [{"contact-name": "Aleksandra Jarmoli\u0144ska", "contact-email": "a.jarmolinska@cent.uw.edu.pl", "contact-orcid": "0000-0002-1259-3611"}], "homepage": "http://linkprot.cent.uw.edu.pl/", "identifier": 2357, "description": "LinkProt collects information about protein chains and complexes that form links. LinkProt detects deterministic links (with loops closed by cysteine), and determines likelihood of formation of links in networks of protein chains called MacroLinks. Links are presented graphically in an intuitive way, using tools that involves surfaces of minimal area spanned on closed loops. The database presents extensive information about biological functions of proteins with links and enables users to analyze new structures.", "abbreviation": "LinkProt", "support-links": [{"url": "http://linkprot.cent.uw.edu.pl/interpreting", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/apply_results", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/tutorial_single", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/tutorial_browse", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/statistics", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/link_detection", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/link_classification", "type": "Help documentation"}, {"url": "http://linkprot.cent.uw.edu.pl/about", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://linkprot.cent.uw.edu.pl/submit", "name": "submit structure", "type": "data curation"}, {"url": "http://linkprot.cent.uw.edu.pl/search/", "name": "search", "type": "data access"}, {"url": "http://linkprot.cent.uw.edu.pl/browse/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000836", "bsg-d000836"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Protein-containing complex", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Poland"], "name": "FAIRsharing record for: LinkProt: A database of proteins with topological links", "abbreviation": "LinkProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.tw6ecm", "doi": "10.25504/FAIRsharing.tw6ecm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LinkProt collects information about protein chains and complexes that form links. LinkProt detects deterministic links (with loops closed by cysteine), and determines likelihood of formation of links in networks of protein chains called MacroLinks. Links are presented graphically in an intuitive way, using tools that involves surfaces of minimal area spanned on closed loops. The database presents extensive information about biological functions of proteins with links and enables users to analyze new structures.", "publications": [{"id": 1737, "pubmed_id": 27794552, "title": "LinkProt: a database collecting information about biological links", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw976", "authors": "Pawel Dabrowski-Tumanski; Aleksandra I. Jarmolinska; Wanda Niemyska; Eric J. Rawdon; Kenneth C. Millett; Joanna I. Sulkowska", "journal": "Nucleic Acid Research", "doi": "10.1093/nar/gkw976", "created_at": "2021-09-30T08:25:34.887Z", "updated_at": "2021-09-30T08:25:34.887Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1667", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-29T18:18:12.998Z", "metadata": {"doi": "10.25504/FAIRsharing.5pfx4r", "name": "miRNEST", "status": "deprecated", "contacts": [{"contact-email": "miszcz@amu.edu.pl"}], "homepage": "http://mirnest.amu.edu.pl", "citations": [], "identifier": 1667, "description": "miRNEST is an integrative collection of animal, plant and virus microRNA data. miRNEST is being gradually developed to create an integrative resource of miRNA-associated data. The data comes from our computational predictions (new miRNAs, targets, mirtrons, miRNA gene structures) as well as from other databases and publications.", "abbreviation": "miRNEST", "support-links": [{"url": "http://rhesus.amu.edu.pl/mirnest/copy/update.html", "name": "What's New in miRNEST", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/MiRNEST", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "no versioning policy", "type": "data versioning"}, {"name": "no access to historical files", "type": "data versioning"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/browse.php", "name": "browse", "type": "data access"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/downloads.php", "name": "download", "type": "data access"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/uploads.php", "name": "upload", "type": "data curation"}], "associated-tools": [{"url": "http://rhesus.amu.edu.pl/mirnest/copy/deep.php", "name": "Deep-seq predictions"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/mirtrons.php", "name": "Mirtrons"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/mirna_gene_structure.php", "name": "miRNA gene filtering"}, {"url": "http://rhesus.amu.edu.pl/mirnest/copy/degradomes.php", "name": "Degradomes"}], "deprecation-date": "2022-01-29", "deprecation-reason": "This resource's homepage is no longer available, and an updated homepage cannot be found. Please let us know if you have any information. "}, "legacy-ids": ["biodbcore-000123", "bsg-d000123"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["RNA secondary structure", "Expression data", "RNA sequence", "Multiple sequence alignment", "Computational biological predictions", "Regulation of miRNA metabolic process", "Genetic polymorphism", "Sequencing read", "Promoter", "Micro RNA", "Pre-miRNA (pre-microRNA)", "Target"], "taxonomies": ["All"], "user-defined-tags": ["Deep sequencing reads aligned to miRNAs"], "countries": ["Poland"], "name": "FAIRsharing record for: miRNEST", "abbreviation": "miRNEST", "url": "https://fairsharing.org/10.25504/FAIRsharing.5pfx4r", "doi": "10.25504/FAIRsharing.5pfx4r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: miRNEST is an integrative collection of animal, plant and virus microRNA data. miRNEST is being gradually developed to create an integrative resource of miRNA-associated data. The data comes from our computational predictions (new miRNAs, targets, mirtrons, miRNA gene structures) as well as from other databases and publications.", "publications": [{"id": 153, "pubmed_id": 22135287, "title": "miRNEST database: an integrative approach in microRNA search and annotation.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1159", "authors": "Szcze\u015bniak MW., Deorowicz S., Gapski J., Kaczy\u0144ski \u0141., Makalowska I.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1159", "created_at": "2021-09-30T08:22:36.674Z", "updated_at": "2021-09-30T08:22:36.674Z"}, {"id": 1363, "pubmed_id": 24243848, "title": "miRNEST 2.0: a database of plant and animal microRNAs.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1156", "authors": "Szczesniak MW,Makalowska I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1156", "created_at": "2021-09-30T08:24:52.417Z", "updated_at": "2021-09-30T11:29:06.968Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2922", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-27T22:25:24.000Z", "updated-at": "2022-01-07T11:54:28.087Z", "metadata": {"name": "Virus Particle Explorer", "status": "ready", "contacts": [{"contact-email": "viper@scripps.edu"}], "homepage": "http://viperdb.scripps.edu/index.php", "citations": [{"doi": "10.1093/nar/gkn840", "pubmed-id": 18981051, "publication-id": 2824}], "identifier": 2922, "description": "VIPERdb is a database for icosahedral virus capsid structures. The emphasis is on providing data from structural and computational analyses on these systems, as well as high quality renderings for visual exploration.", "abbreviation": "VIPERdb", "access-points": [{"url": "http://viperdb.scripps.edu/services", "name": "Virus Particle Explorer API", "type": "REST", "example-url": "http://viperdb.scripps.edu/services/family_index.php?serviceName=family_members&family=Bromoviridae", "documentation-url": "http://viperdb.scripps.edu/Developers_guide.php"}], "data-curation": {}, "support-links": [{"url": "http://viperdb.scripps.edu/ContactUs.php", "name": "Contact form", "type": "Contact form"}, {"url": "http://viperdb.scripps.edu/FAQ.php", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://viperdb.scripps.edu/First_Time_User.php", "name": "First time user guide", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://viperdb.scripps.edu/Fam_Tree.php", "name": "Browse Virus World Family Tree", "type": "data access"}, {"url": "http://viperdb.scripps.edu/Family_Index.php", "name": "Browse Viral Structure Family Index", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012362", "name": "re3data:r3d100012362", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007970", "name": "SciCrunch:RRID:SCR_007970", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {"url": "http://viperdb.scripps.edu/Copyright.php", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "http://viperdb.scripps.edu/First_Time_User.php", "type": "controlled"}}, "legacy-ids": ["biodbcore-001425", "bsg-d001425"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Epidemiology"], "domains": ["Molecular structure", "Structure"], "taxonomies": ["Adenoviridae", "Alphaflexiviridae", "Birnaviridae", "Bromoviridae", "Caliciviridae", "Chrysoviridae", "Circoviridae", "Corticoviridae", "Cystoviridae", "Dicistroviridae", "Faustovirus", "Filoviridae", "Flaviviridae", "Geminiviridae", "Hepadnaviridae", "Hepeviridae", "Herpesviridae", "Iflaviridae", "Inoviridae", "Lavidaviridae", "Leviviridae", "Microviridae", "Myoviridae", "Nodaviridae", "Papillomaviridae", "Partitiviridae", "Parvoviridae", "Phycodnaviridae", "Picobirnaviridae", "Picornaviridae", "Podoviridae", "Polyomaviridae", "Protogloboviridae", "Reoviridae", "Retroviridae", "Sarthroviridae", "Secoviridae", "Siphoviridae", "Sobemovirus", "Sphaerolipoviridae", "Tectiviridae", "Tetraviridae", "Togaviridae", "Tombusviridae", "Totiviridae", "Turriviridae", "Tymoviridae", "Virgaviridae", "Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Virus Particle Explorer", "abbreviation": "VIPERdb", "url": "https://fairsharing.org/fairsharing_records/2922", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VIPERdb is a database for icosahedral virus capsid structures. The emphasis is on providing data from structural and computational analyses on these systems, as well as high quality renderings for visual exploration.", "publications": [{"id": 2824, "pubmed_id": 18981051, "title": "VIPERdb2: an enhanced and web API enabled relational database for structural virology.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn840", "authors": "Carrillo-Tripp M,Shepherd CM,Borelli IA,Venkataraman S,Lander G,Natarajan P,Johnson JE,Brooks CL 3rd,Reddy VS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn840", "created_at": "2021-09-30T08:27:47.304Z", "updated_at": "2021-09-30T11:29:46.630Z"}, {"id": 3180, "pubmed_id": null, "title": "VIPERdb v3.0: a structure-based data analytics platform for viral capsids", "year": 2020, "url": "http://dx.doi.org/10.1093/nar/gkaa1096", "authors": "Montiel-Garcia, Daniel; Santoyo-Rivera, Nelly; Ho, Phuong; Carrillo-Tripp, Mauricio; III, Charles\u00a0L Brooks; Johnson, John E; Reddy, Vijay S; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1096", "created_at": "2022-01-07T11:35:38.750Z", "updated_at": "2022-01-07T11:35:38.750Z"}], "licence-links": [{"licence-name": "VIPERdb Disclaimer and Copyright", "licence-id": 902, "link-id": 2556, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2780", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-13T10:45:51.000Z", "updated-at": "2021-11-24T13:15:48.625Z", "metadata": {"doi": "10.25504/FAIRsharing.GeWcY6", "name": "European Medical Information Framework Catalogue", "status": "ready", "contacts": [{"contact-name": "Jose Luis Oliveira", "contact-email": "jlo@ua.pt", "contact-orcid": "0000-0002-6672-6176"}], "homepage": "https://emif-catalogue.eu", "citations": [{"doi": "S1386-5056(18)30830-X", "pubmed-id": 31029262, "publication-id": 1035}], "identifier": 2780, "description": "The EMIF catalogue contains extensive metadata on a number of European health data resources, such as registries, EHRs, biobanks etc., organized by a number of communities, such as EMIF-EHR, EMIF-AD, EPAD, ADVANCE, BigData@Heart, PIONEER etc. The metadata collected is the data available, the data governance procedures, contact details etc. The catalogue intends to comprise different vertical projects through the creation of communities, such as EMIF-Electronic Health Record Data (EMIF-EHR) and EMIF-Alzheimer\u2019s Disease (EMIF-AD), the BigData@Heart (for cardiovascular) and PIONEER (for prostate cancer) projects, supporting distinct databases and users.", "abbreviation": "EMIF Catalogue", "year-creation": 2014}, "legacy-ids": ["biodbcore-001279", "bsg-d001279"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Medical Informatics"], "domains": ["Biobank", "Disease process modeling", "Electronic health record", "Disease", "Disease course"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: European Medical Information Framework Catalogue", "abbreviation": "EMIF Catalogue", "url": "https://fairsharing.org/10.25504/FAIRsharing.GeWcY6", "doi": "10.25504/FAIRsharing.GeWcY6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EMIF catalogue contains extensive metadata on a number of European health data resources, such as registries, EHRs, biobanks etc., organized by a number of communities, such as EMIF-EHR, EMIF-AD, EPAD, ADVANCE, BigData@Heart, PIONEER etc. The metadata collected is the data available, the data governance procedures, contact details etc. The catalogue intends to comprise different vertical projects through the creation of communities, such as EMIF-Electronic Health Record Data (EMIF-EHR) and EMIF-Alzheimer\u2019s Disease (EMIF-AD), the BigData@Heart (for cardiovascular) and PIONEER (for prostate cancer) projects, supporting distinct databases and users.", "publications": [{"id": 1035, "pubmed_id": 31029262, "title": "EMIF Catalogue: A collaborative platform for sharing and reusing biomedical data.", "year": 2019, "url": "http://doi.org/S1386-5056(18)30830-X", "authors": "Oliveira JL,Trifan A,Bastiao Silva LA", "journal": "Int J Med Inform", "doi": "S1386-5056(18)30830-X", "created_at": "2021-09-30T08:24:14.589Z", "updated_at": "2021-09-30T08:24:14.589Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1567", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.457Z", "metadata": {"doi": "10.25504/FAIRsharing.hezt3h", "name": "DOMMINO: A comprehensive database of macromolecular interactions", "status": "uncertain", "homepage": "http://www.dommino.org", "identifier": 1567, "description": "Database of MacroMolecular INteractions", "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "N/A", "type": "data curation"}, {"name": "web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000021", "bsg-d000021"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular interaction", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: DOMMINO: A comprehensive database of macromolecular interactions", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.hezt3h", "doi": "10.25504/FAIRsharing.hezt3h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database of MacroMolecular INteractions", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3605", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-31T09:40:48.882Z", "updated-at": "2022-02-08T10:44:22.747Z", "metadata": {"doi": "10.25504/FAIRsharing.94459d", "name": "Cork Oak Genome Portal", "status": "ready", "contacts": [{"contact-name": "Daniel Faria", "contact-email": "dfaria@inesc-id.pt", "contact-orcid": null}, {"contact-name": "Pedro M Barros", "contact-email": "pbarros@itqb.unl.pt", "contact-orcid": "0000-0001-5626-0619"}], "homepage": "https://corkoakdb.org/", "citations": [], "identifier": 3605, "description": "CorkOakDB aims to integrate the knowledge generated from fundamental and applied studies about Quercus suber, with a focus on genetics. CorkOakDB features the first draft genome of Quercus suber, released in 2018 by the GENOSUBER consortium, and allows genome browsing and gene search. It also incorporates other types of data from cork oak scientific research, including gene expression data from publicly available datasets.", "abbreviation": "CorkOakDB", "data-curation": {"url": "https://corkoakdb.org/genome_assembly", "type": "automated"}, "support-links": [{"url": "https://corkoakdb.org/webform_contact", "type": "Contact form"}, {"url": "info@biotada.pt", "name": "General information", "type": "Support email"}], "year-creation": 2018, "data-processes": [{"url": "https://corkoakdb.org/search", "name": "Search", "type": "data access"}, {"url": "https://corkoakdb.org/blast", "name": "BLAST", "type": "data access"}, {"url": "https://corkoakdb.org/jbrowse/?data=/jbrowse/corkoak_data/quercus_suber__cork_oak/data&tracks=", "name": "Genome Browser", "type": "data access"}, {"url": "https://corkoakdb.org/downloads", "name": "Downloads", "type": "data access"}, {"url": "https://corkoakdb.org/genome_assembly", "name": "First release genome assembly", "type": "data release"}], "associated-tools": [{"url": "https://corkoakdb.org/heatmap", "name": "HEATMAP"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome annotation", "Gene expression", "Genome"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: Cork Oak Genome Portal", "abbreviation": "CorkOakDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.94459d", "doi": "10.25504/FAIRsharing.94459d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CorkOakDB aims to integrate the knowledge generated from fundamental and applied studies about Quercus suber, with a focus on genetics. CorkOakDB features the first draft genome of Quercus suber, released in 2018 by the GENOSUBER consortium, and allows genome browsing and gene search. It also incorporates other types of data from cork oak scientific research, including gene expression data from publicly available datasets.", "publications": [{"id": 3123, "pubmed_id": null, "title": "CorkOakDB\u2014The Cork Oak Genome Database Portal", "year": 2020, "url": "http://dx.doi.org/10.1093/database/baaa114", "authors": "Arias-Baldrich, Cirenia; Silva, Marta Contreiras; Bergeretti, Filippo; Chaves, In\u00eas; Miguel, C\u00e9lia; Saibo, Nelson J M; Sobral, Daniel; Faria, Daniel; Barros, Pedro M; ", "journal": "Database, Volume 2020, 2020, baaa114", "doi": "10.1093/database/baaa114", "created_at": "2021-10-31T09:56:06.788Z", "updated_at": "2021-10-31T09:56:06.788Z"}], "licence-links": [{"licence-name": "CorkOakDB Terms of service", "licence-id": 886, "link-id": 2492, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3721", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-06T14:57:12.418Z", "updated-at": "2022-01-31T14:41:13.202Z", "metadata": {"name": "YeastIP", "status": "ready", "contacts": [{"contact-name": "jean-luc.legras@inrae.fr", "contact-email": "jean-luc.legras@inrae.fr", "contact-orcid": null}], "homepage": "http://genome.jouy.inra.fr/yeastip/", "citations": [], "identifier": 3721, "description": "YeastIP is a gene database for the molecular taxonomy and phylogeny of yeasts. It contains the major barcodes of all the species of the subphylum Saccharomycotina, tools to establish the identification of yeasts to the species level, and associated phylogenetic relationships. The YeastIP database offers easy and immediate access to the type strain or representative strain sequences of each species. In addition, associated information is available in a simple, clear interface, with expert-validated sequences. YeastIP allows easy retrieval of these sequences through the use of a search tool. YeastIP was developed with the intention of helping both nonspecialists and taxonomists to establish rapid identification and phylogenetic reconstruction.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "http://genome.jouy.inra.fr/yeastip/clustalw_phylogeny.php", "name": "Help", "type": "Help documentation"}, {"url": "http://genome.jouy.inra.fr/yeastip/test.php", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/YeastIP_CIRM", "name": "@YeastIP_CIRM", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://genome.jouy.inra.fr/yeastip/authentification.php", "name": "Search Against a Sequence", "type": "data access"}, {"url": "http://genome.jouy.inra.fr/yeastip/search_sequence.php", "name": "Sequence Search", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {"url": "http://genome.jouy.inra.fr/yeastip/search_sequence.php", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "http://genome.jouy.inra.fr/yeastip/test.php", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Taxonomy", "Genetics", "Phylogeny", "Microbial Genetics"], "domains": ["Taxonomic classification"], "taxonomies": ["Saccharomycotina"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: YeastIP", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3721", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: YeastIP is a gene database for the molecular taxonomy and phylogeny of yeasts. It contains the major barcodes of all the species of the subphylum Saccharomycotina, tools to establish the identification of yeasts to the species level, and associated phylogenetic relationships. The YeastIP database offers easy and immediate access to the type strain or representative strain sequences of each species. In addition, associated information is available in a simple, clear interface, with expert-validated sequences. YeastIP allows easy retrieval of these sequences through the use of a search tool. YeastIP was developed with the intention of helping both nonspecialists and taxonomists to establish rapid identification and phylogenetic reconstruction.", "publications": [{"id": 3177, "pubmed_id": null, "title": "YeastIP: a database for identification and phylogeny ofSaccharomycotinayeasts", "year": 2012, "url": "http://dx.doi.org/10.1111/1567-1364.12017", "authors": "Weiss, St\u00e9phanie; Samson, Franck; Navarro, David; Casaregola, Serge; ", "journal": "FEMS Yeast Res", "doi": "10.1111/1567-1364.12017", "created_at": "2022-01-06T14:58:56.467Z", "updated_at": "2022-01-06T14:58:56.467Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1835", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.412Z", "metadata": {"doi": "10.25504/FAIRsharing.csbxzs", "name": "The Diatom EST Database", "status": "ready", "contacts": [{"contact-name": "Chris Bowler", "contact-email": "cbowler@biologie.ens.fr"}], "homepage": "http://www.biologie.ens.fr/diatomics/EST3", "identifier": 1835, "description": "Diatoms are photosynthetic unicellular eukaryotes that play an essential role in marine ecosystems. On a global scale, they generate around one fifth of the oxygen we breathe. On this web site we present searchable databases of diatom ESTs (expressed sequence tags) that can be used to explore diatom biology.", "data-processes": [{"url": "http://www.diatomics.biologie.ens.fr/EST3/est3.php", "name": "search", "type": "data access"}, {"url": "http://www.diatomics.biologie.ens.fr/EST4/index.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000295", "bsg-d000295"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Messenger RNA"], "taxonomies": ["Phaeodactylum tricornutum", "Thalassiosira pseudonana"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: The Diatom EST Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.csbxzs", "doi": "10.25504/FAIRsharing.csbxzs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Diatoms are photosynthetic unicellular eukaryotes that play an essential role in marine ecosystems. On a global scale, they generate around one fifth of the oxygen we breathe. On this web site we present searchable databases of diatom ESTs (expressed sequence tags) that can be used to explore diatom biology.", "publications": [{"id": 338, "pubmed_id": 19029140, "title": "Update of the Diatom EST Database: a new tool for digital transcriptomics.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn905", "authors": "Maheswari U., Mock T., Armbrust EV., Bowler C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn905", "created_at": "2021-09-30T08:22:56.383Z", "updated_at": "2021-09-30T08:22:56.383Z"}, {"id": 1611, "pubmed_id": 15608213, "title": "The Diatom EST Database.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki121", "authors": "Maheswari U,Montsant A,Goll J,Krishnasamy S,Rajyashri KR,Patell VM,Bowler C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki121", "created_at": "2021-09-30T08:25:20.558Z", "updated_at": "2021-09-30T11:29:15.886Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 284, "relation": "undefined"}, {"licence-name": "Diatomics Data Policies and Disclaimer", "licence-id": 240, "link-id": 294, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1864", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:11.801Z", "metadata": {"doi": "10.25504/FAIRsharing.ct66a3", "name": "PROCOGNATE", "status": "deprecated", "contacts": [{"contact-name": "Matthew Bashton", "contact-email": "bashton@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/procognate/index.html", "citations": [{"doi": "10.1093/nar/gkm611", "pubmed-id": 17720712, "publication-id": 1164}], "identifier": 1864, "description": "PROCOGNATE is a database of cognate ligands for the domains of enzyme structures in CATH, SCOP and Pfam. The database contains an assignment of PDB ligands to the domains of structures as classified by the CATH, SCOP and Pfam databases. Cognate ligands have been identified using data from the ENZYME and KEGG databases and compared to the PDB ligand using graph matching to assess chemical similarity. Cognate ligands from the known reactions in ENZYME and KEGG for a particular enzyme are then assigned to enzymes structures which have EC numbers.", "abbreviation": "PROCOGNATE", "support-links": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/procognate/help.html", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/procognate/download.html", "name": "Download", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/procognate/index.html", "name": "search", "type": "data access"}], "deprecation-date": "2019-01-10", "deprecation-reason": "This resource is no longer maintained as its homepage is no longer available."}, "legacy-ids": ["biodbcore-000326", "bsg-d000326"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Small molecule", "Enzyme", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: PROCOGNATE", "abbreviation": "PROCOGNATE", "url": "https://fairsharing.org/10.25504/FAIRsharing.ct66a3", "doi": "10.25504/FAIRsharing.ct66a3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PROCOGNATE is a database of cognate ligands for the domains of enzyme structures in CATH, SCOP and Pfam. The database contains an assignment of PDB ligands to the domains of structures as classified by the CATH, SCOP and Pfam databases. Cognate ligands have been identified using data from the ENZYME and KEGG databases and compared to the PDB ligand using graph matching to assess chemical similarity. Cognate ligands from the known reactions in ENZYME and KEGG for a particular enzyme are then assigned to enzymes structures which have EC numbers.", "publications": [{"id": 1164, "pubmed_id": 17720712, "title": "PROCOGNATE: a cognate ligand domain mapping for enzymes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm611", "authors": "Bashton M,Nobeli I,Thornton JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm611", "created_at": "2021-09-30T08:24:29.421Z", "updated_at": "2021-09-30T11:29:01.601Z"}, {"id": 1619, "pubmed_id": 17034815, "title": "Cognate ligand domain mapping for enzymes.", "year": 2006, "url": "http://doi.org/10.1016/j.jmb.2006.09.041", "authors": "Bashton M,Nobeli I,Thornton JM", "journal": "J Mol Biol", "doi": "10.1016/j.jmb.2006.09.041", "created_at": "2021-09-30T08:25:21.411Z", "updated_at": "2021-09-30T08:25:21.411Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3303", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-09T12:01:38.000Z", "updated-at": "2021-12-06T10:49:20.112Z", "metadata": {"doi": "10.25504/FAIRsharing.vjWUT7", "name": "SupraBank", "status": "ready", "contacts": [{"contact-name": "Stephan Sinn", "contact-email": "contact@suprabank.org", "contact-orcid": "0000-0002-9676-9839"}], "homepage": "https://suprabank.org", "identifier": 3303, "description": "SupraBank is a resource for intermolecular interactions, in particular host:guest but also ligand:protein and polymer interactions as well as surface adsorption processes. The reporting of conditions during the analysis of intermolecular interactions, such as binding isotherms, are in general annotated via text-based notations for human readability. In order to compare binding data, the conditions of the experiments should be structured and machine readable for ease of processing. SupraBank offers the scientists a platform to view experimental data as well as machine-readable access. This platform is intended for all natural sciences, but especially for physical chemistry and supramolecular chemistry.", "abbreviation": "SupraBank", "support-links": [{"url": "https://suprabank.org/glossary", "name": "Glossary", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://suprabank.org/intsearch_interactions", "name": "Search Interactions", "type": "data access"}, {"url": "https://suprabank.org/advanced_search_interactions", "name": "Advanced Search - Interactions", "type": "data access"}, {"url": "https://suprabank.org/molecules", "name": "Molecule Search", "type": "data access"}, {"url": "https://suprabank.org/chemeditor?reload", "name": "Chemical Editor Search", "type": "data access"}, {"url": "https://suprabank.org/molecules/new", "name": "Create Custom Molecule (Login Required)", "type": "data curation"}, {"url": "https://suprabank.org/buffers", "name": "Buffer Search", "type": "data access"}, {"url": "https://suprabank.org/solvents", "name": "Solvent Search", "type": "data access"}, {"url": "https://suprabank.org/additives", "name": "Additive Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013265", "name": "re3data:r3d100013265", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001818", "bsg-d001818"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Organic Chemistry", "Polymer Chemistry", "Molecular Chemistry", "Chemistry", "Molecular Physical Chemistry", "Solid-State Chemistry", "Physical Chemistry", "Analytical Chemistry"], "domains": ["Molecular interaction"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: SupraBank", "abbreviation": "SupraBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.vjWUT7", "doi": "10.25504/FAIRsharing.vjWUT7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SupraBank is a resource for intermolecular interactions, in particular host:guest but also ligand:protein and polymer interactions as well as surface adsorption processes. The reporting of conditions during the analysis of intermolecular interactions, such as binding isotherms, are in general annotated via text-based notations for human readability. In order to compare binding data, the conditions of the experiments should be structured and machine readable for ease of processing. SupraBank offers the scientists a platform to view experimental data as well as machine-readable access. This platform is intended for all natural sciences, but especially for physical chemistry and supramolecular chemistry.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2710", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-19T10:48:50.000Z", "updated-at": "2021-11-24T13:17:54.082Z", "metadata": {"doi": "10.25504/FAIRsharing.59ZSlc", "name": "ZebrafishMine", "status": "ready", "contacts": [{"contact-name": "Zebrafish Information Network (ZFIN)", "contact-email": "technical@zfin.org"}], "homepage": "http://zebrafishmine.org/", "identifier": 2710, "description": "ZebrafishMine is a tool to customize searches of Zebrafish-related biological data including genes, proteins, fish, and reagents", "abbreviation": "ZebrafishMine", "access-points": [{"url": "http://www.zebrafishmine.org/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2015, "data-processes": [{"url": "http://www.zebrafishmine.org/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://www.zebrafishmine.org/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://www.zebrafishmine.org/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001208", "bsg-d001208"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Reagent", "Protein", "Gene"], "taxonomies": ["Danio rerio"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ZebrafishMine", "abbreviation": "ZebrafishMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.59ZSlc", "doi": "10.25504/FAIRsharing.59ZSlc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ZebrafishMine is a tool to customize searches of Zebrafish-related biological data including genes, proteins, fish, and reagents", "publications": [{"id": 2156, "pubmed_id": 26097180, "title": "ZFIN, The zebrafish model organism database: Updates and new directions.", "year": 2015, "url": "http://doi.org/10.1002/dvg.22868", "authors": "Ruzicka L,Bradford YM,Frazer K,Howe DG,Paddock H,Ramachandran S,Singer A,Toro S,Van Slyke CE,Eagle AE,Fashena D,Kalita P,Knight J,Mani P,Martin R,Moxon SA,Pich C,Schaper K,Shao X,Westerfield M", "journal": "Genesis", "doi": "10.1002/dvg.22868", "created_at": "2021-09-30T08:26:23.074Z", "updated_at": "2021-09-30T08:26:23.074Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2757", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-11T18:29:47.000Z", "updated-at": "2021-12-06T10:48:54.984Z", "metadata": {"doi": "10.25504/FAIRsharing.naAm6C", "name": "Index of Exsiccatae", "status": "ready", "contacts": [{"contact-name": "Dagmar Triebel", "contact-email": "triebel@snsb.de"}], "homepage": "http://indexs.botanischestaatssammlung.de/", "citations": [{"publication-id": 2241}], "identifier": 2757, "description": "IndExs is a database comprising information on exsiccatae (=exsiccatal series) with titles, abbreviations, bibliography and provides a unique and persistent Exsiccata ID for each series. Exsiccatae are defined as \"published, uniform, numbered sets of preserved specimens distributed with printed labels\" (Pfister 1985). Please note that there are two similar latin terms: \"exsiccata, ae\" is feminine and used for a set of dried specimens as defined above, whereas the term \"exsiccatum, i\" is neutral and used for dried specimens in general. If available, images of one or more examplary labels are added to give layout information. IndExs is powered by the Diversity Workbench database framework.", "abbreviation": "IndExs", "access-points": [{"url": "http://www.botanischestaatssammlung.de/DatabaseClients/IndExs/webservice.jsp", "name": "IndExs Web Service", "type": "SOAP"}], "support-links": [{"url": "http://www.botanischestaatssammlung.de/DatabaseClients/IndExs/About.jsp", "name": "About", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://indexs.botanischestaatssammlung.de/", "name": "Search IndExs", "type": "data access"}], "associated-tools": [{"url": "https://diversityworkbench.net/Portal/DiversityExsiccatae", "name": "DiversityExsiccatae 3"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011870", "name": "re3data:r3d100011870", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001255", "bsg-d001255"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Biology"], "domains": ["Resource collection", "Biological sample"], "taxonomies": ["Algae", "Ascomycota", "Bacteria", "Bryophyta", "Fungi", "Pteridophyta", "Spermatophyta", "Zoocecidia"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Index of Exsiccatae", "abbreviation": "IndExs", "url": "https://fairsharing.org/10.25504/FAIRsharing.naAm6C", "doi": "10.25504/FAIRsharing.naAm6C", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IndExs is a database comprising information on exsiccatae (=exsiccatal series) with titles, abbreviations, bibliography and provides a unique and persistent Exsiccata ID for each series. Exsiccatae are defined as \"published, uniform, numbered sets of preserved specimens distributed with printed labels\" (Pfister 1985). Please note that there are two similar latin terms: \"exsiccata, ae\" is feminine and used for a set of dried specimens as defined above, whereas the term \"exsiccatum, i\" is neutral and used for dried specimens in general. If available, images of one or more examplary labels are added to give layout information. IndExs is powered by the Diversity Workbench database framework.", "publications": [{"id": 2241, "pubmed_id": null, "title": "History of exsiccatal series in cryptogamic botany and mycology as reflected by the web-accessible database of exsiccatae \"IndExs \u2013 Index of Exsiccatae\".", "year": 2004, "url": "https://www.schweizerbart.de/publications/detail/isbn/9783443580674/?l=FR", "authors": "Triebel, D., Scholz, P., Hagedorn, G., Weiss M.", "journal": "In D\u00f6bbeler, P. & Rambold, G. (eds.), Contributions to Lichenology. Festschrift in Honour of Hannes Hertel. Biblioth. Lichenol. 88: 671-690.", "doi": null, "created_at": "2021-09-30T08:26:32.625Z", "updated_at": "2021-09-30T08:26:32.625Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 540, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 541, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2858", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-14T16:24:59.000Z", "updated-at": "2022-02-09T09:58:37.043Z", "metadata": {"doi": "10.25504/FAIRsharing.N4a3Pj", "name": "BBMRI-ERIC CRC-Cohort", "status": "ready", "contacts": [{"contact-name": "Petr Holub", "contact-email": "petr.holub@bbmri-eric.eu", "contact-orcid": "0000-0002-5358-616X"}], "homepage": "http://www.bbmri-eric.eu/scientific-collaboration/colorectal-cancer-cohort/", "citations": [], "identifier": 2858, "description": "The colorectal cancer cohort (CRC-Cohort) is developed within the EU-funded project ADOPT BBMRI-ERIC (H2020) as a use case for piloting access to European biobanks. The CRC-Cohort is developed by BBMRI-ERIC, its National Nodes and BBMRI-ERIC partner biobanks, and it will become a permanent asset of the BBMRI-ERIC infrastructure after the end of the ADOPT project. The CRC-Cohort collection is a joint long-term European endeavor, which enables existing, well-established biobanks to connect with BBMRI-ERIC and obtain increased recognition and visibility along with new users and data. The CRC-Cohort is expected to enable high-quality research and innovation to improve colorectal cancer treatment. The cohort should enable a large spectrum of different types of research and is therefore not restricted to any specific research question. The procedures and IT tools developed within the CRC-Cohort are expected to be reusable for similar future efforts on different disease entities implemented using BBMRI-ERIC as an infrastructure.", "abbreviation": "CRC-Cohort", "data-curation": {}, "year-creation": 2019, "data-versioning": "yes", "associated-tools": [{"url": "https://negotiator.bbmri-eric.eu/login.xhtml", "name": "BBMRI-ERIC Negotiator"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001359", "bsg-d001359"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Health Science", "Life Science", "Human Biology", "Pathology"], "domains": ["Biobank", "Cancer", "Histology"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Digital pathology"], "countries": ["Czech Republic", "United Kingdom", "Poland", "Belgium", "Cyprus", "European Union", "Italy", "Austria", "Finland", "Germany", "Malta", "Switzerland"], "name": "FAIRsharing record for: BBMRI-ERIC CRC-Cohort", "abbreviation": "CRC-Cohort", "url": "https://fairsharing.org/10.25504/FAIRsharing.N4a3Pj", "doi": "10.25504/FAIRsharing.N4a3Pj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The colorectal cancer cohort (CRC-Cohort) is developed within the EU-funded project ADOPT BBMRI-ERIC (H2020) as a use case for piloting access to European biobanks. The CRC-Cohort is developed by BBMRI-ERIC, its National Nodes and BBMRI-ERIC partner biobanks, and it will become a permanent asset of the BBMRI-ERIC infrastructure after the end of the ADOPT project. The CRC-Cohort collection is a joint long-term European endeavor, which enables existing, well-established biobanks to connect with BBMRI-ERIC and obtain increased recognition and visibility along with new users and data. The CRC-Cohort is expected to enable high-quality research and innovation to improve colorectal cancer treatment. The cohort should enable a large spectrum of different types of research and is therefore not restricted to any specific research question. The procedures and IT tools developed within the CRC-Cohort are expected to be reusable for similar future efforts on different disease entities implemented using BBMRI-ERIC as an infrastructure.", "publications": [], "licence-links": [{"licence-name": "BBMRI-ERIC Policy for Access to and Sharing of Biological Samples and Data", "licence-id": 58, "link-id": 1457, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1656", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:57.833Z", "metadata": {"doi": "10.25504/FAIRsharing.3vfc16", "name": "Compilation and Creation of datasets from PDB", "status": "ready", "contacts": [{"contact-name": "Dr Gajendra P.S. Raghava", "contact-email": "raghava@imtech.res.in"}], "homepage": "http://crdd.osdd.net/raghava/ccpdb/", "citations": [], "identifier": 1656, "description": "ccPDB (Compilation and Creation of datasets from PDB) is a collection of commonly used data sets for structural or functional annotation of proteins. There are numerous datasets from the literature and the Protein Data Bank (PDB), which were used for developing methods to annotate proteins at the sequence (or residue) level. A tool is available for creating a wide range of customized data sets from PDB.", "abbreviation": "ccPDB", "support-links": [{"url": "http://crdd.osdd.net/raghava/ccpdb/help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "manual curation", "type": "data curation"}], "associated-tools": [{"url": "http://crdd.osdd.net/raghava/ccpdb/blast.php", "name": "BLAST"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000112", "bsg-d000112"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Annotation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Compilation and Creation of datasets from PDB", "abbreviation": "ccPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.3vfc16", "doi": "10.25504/FAIRsharing.3vfc16", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ccPDB (Compilation and Creation of datasets from PDB) is a collection of commonly used data sets for structural or functional annotation of proteins. There are numerous datasets from the literature and the Protein Data Bank (PDB), which were used for developing methods to annotate proteins at the sequence (or residue) level. A tool is available for creating a wide range of customized data sets from PDB.", "publications": [{"id": 1160, "pubmed_id": 22139939, "title": "ccPDB: compilation and creation of data sets from Protein Data Bank.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1150", "authors": "Singh H,Chauhan JS,Gromiha MM,Raghava GP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1150", "created_at": "2021-09-30T08:24:28.989Z", "updated_at": "2021-09-30T11:29:01.250Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 266, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1753", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.665Z", "metadata": {"doi": "10.25504/FAIRsharing.tby3x7", "name": "Arabidopsis Thaliana Trans-factor and cis-Element prediction Database", "status": "ready", "contacts": [{"contact-name": "General enquiries", "contact-email": "support@atted.jp"}], "homepage": "http://atted.jp", "identifier": 1753, "description": "ATTED-II is a coexpression database for plant species with parallel views of multiple coexpression data sets and network analysis tools. The user can find functional gene relationships and design experiments to identify gene functions by reverse genetics and general molecular biology techniques.", "abbreviation": "ATTED-II", "support-links": [{"url": "http://atted.jp/top_faq.shtml", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://atted.jp/top_help.shtml", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://atted.jp/top_download.shtml", "name": "Download", "type": "data access"}, {"url": "http://atted.jp/top_browsing.shtml", "name": "http://atted.jp/top_browsing.shtml", "type": "data access"}, {"url": "http://atted.jp/top_search.shtml", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000211", "bsg-d000211"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Transcriptomics"], "domains": ["Expression data", "RNA sequence", "Regulation of gene expression", "Gene"], "taxonomies": ["Arabidopsis thaliana", "Brassica rapa", "Glycine max", "Medicago truncatula", "Oryza sativa", "Solanum lycopersicum", "Vitis vinifera", "Zea mays"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Arabidopsis Thaliana Trans-factor and cis-Element prediction Database", "abbreviation": "ATTED-II", "url": "https://fairsharing.org/10.25504/FAIRsharing.tby3x7", "doi": "10.25504/FAIRsharing.tby3x7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ATTED-II is a coexpression database for plant species with parallel views of multiple coexpression data sets and network analysis tools. The user can find functional gene relationships and design experiments to identify gene functions by reverse genetics and general molecular biology techniques.", "publications": [{"id": 279, "pubmed_id": 17130150, "title": "ATTED-II: a database of co-expressed genes and cis elements for identifying co-regulated gene groups in Arabidopsis.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl783", "authors": "Obayashi T., Kinoshita K., Nakai K., Shibaoka M., Hayashi S., Saeki M., Shibata D., Saito K., Ohta H.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl783", "created_at": "2021-09-30T08:22:50.084Z", "updated_at": "2021-09-30T08:22:50.084Z"}, {"id": 1599, "pubmed_id": 26546318, "title": "ATTED-II in 2016: A Plant Coexpression Database Towards Lineage-Specific Coexpression.", "year": 2015, "url": "http://doi.org/10.1093/pcp/pcv165", "authors": "Aoki Y,Okamura Y,Tadaka S,Kinoshita K,Obayashi T", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcv165", "created_at": "2021-09-30T08:25:19.285Z", "updated_at": "2021-09-30T08:25:19.285Z"}, {"id": 1603, "pubmed_id": 24334350, "title": "ATTED-II in 2014: evaluation of gene coexpression in agriculturally important plants.", "year": 2013, "url": "http://doi.org/10.1093/pcp/pct178", "authors": "Obayashi T,Okamura Y,Ito S,Tadaka S,Aoki Y,Shirota M,Kinoshita K", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pct178", "created_at": "2021-09-30T08:25:19.712Z", "updated_at": "2021-09-30T08:25:19.712Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 2.1 Japan (CC BY 2.1 JP)", "licence-id": 159, "link-id": 2416, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1721", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:03.170Z", "metadata": {"doi": "10.25504/FAIRsharing.ysp7ke", "name": "Plant Resistance Gene Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "prg@crg.eu"}], "homepage": "http://www.prgdb.org", "identifier": 1721, "description": "PRGdb is an open and daily updated space about plant resistance genes, in which all information about this family is stored, curated and discussed. This resource encourages research community curation of plant resistance genes.", "abbreviation": "PRGdb", "support-links": [{"url": "http://prgdb.crg.eu/wiki/Howto", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://prgdb.crg.eu/wiki/Download", "name": "Data download (registered users)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000178", "bsg-d000178"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Pathogen", "Curated information", "Crowdsourcing"], "taxonomies": ["Musa", "Oryza", "Solanaceae", "Viridiplantae"], "user-defined-tags": ["Plant-pathogen interaction", "Plant resistance"], "countries": ["Italy", "Spain"], "name": "FAIRsharing record for: Plant Resistance Gene Database", "abbreviation": "PRGdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.ysp7ke", "doi": "10.25504/FAIRsharing.ysp7ke", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PRGdb is an open and daily updated space about plant resistance genes, in which all information about this family is stored, curated and discussed. This resource encourages research community curation of plant resistance genes.", "publications": [{"id": 1928, "pubmed_id": 19906694, "title": "PRGdb: a bioinformatics platform for plant resistance gene analysis.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp978", "authors": "Sanseverino W., Roma G., De Simone M., Faino L., Melito S., Stupka E., Frusciante L., Ercolano MR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp978", "created_at": "2021-09-30T08:25:56.957Z", "updated_at": "2021-09-30T08:25:56.957Z"}, {"id": 1929, "pubmed_id": 23161682, "title": "PRGdb 2.0: towards a community-based database model for the analysis of R-genes in plants.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1183", "authors": "Sanseverino W,Hermoso A,D'Alessandro R,Vlasova A,Andolfo G,Frusciante L,Lowy E,Roma G,Ercolano MR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1183", "created_at": "2021-09-30T08:25:57.112Z", "updated_at": "2021-09-30T11:29:24.169Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 164, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2598", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-14T12:39:00.000Z", "updated-at": "2021-11-24T13:19:36.278Z", "metadata": {"doi": "10.25504/FAIRsharing.97kZl6", "name": "SalmoBase", "status": "ready", "contacts": [{"contact-name": "Jeevan Karloss Antony Samy", "contact-email": "jeevan.karloss@nmbu.no", "contact-orcid": "0000-0002-8428-1481"}], "homepage": "http://salmobase.org", "identifier": 2598, "description": "SalmoBase is an integrated molecular resource for Salmonid species which includes visualizations and analytic tools. The genome of the Atlantic salmon (Salmo salar) has undergone extensive restructuring since a whole genome duplication event ~80 million years ago, which creates opportunities to explore the evolutionary process of rediploidization. A public genome assembly is available and ordered into 29 chromosome files. SalmoBase includes a GBrowse interface for exploring the chromosome sequence as well as BLAST functionality and links to expression levels, gene and SNP information. Using public RNAseq data 37,000 high confidence protein coding genes have been identified, wherein almost half show splice variants.", "abbreviation": "SalmoBase", "support-links": [{"url": "http://salmobase.org/contact.php", "name": "Contact Form", "type": "Contact form"}, {"url": "http://salmobase.org/newsletter.php", "name": "Release Updates", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://salmobase.org/download.html", "name": "Data Download", "type": "data access"}], "associated-tools": [{"url": "http://salmobase.org/gbr.html", "name": "GBrowse"}, {"url": "http://salmobase.org/JBrowse-1.12.3/index.html", "name": "JBrowse"}, {"url": "http://salmobase.org/blast.html?DB=ASB_BLAST", "name": "BLAST"}, {"url": "http://salmobase.org/snp.php", "name": "GVBrowser (Genetic Variation)"}, {"url": "http://salmobase.org/geb.php", "name": "GEBrowser (Gene Expression)"}]}, "legacy-ids": ["biodbcore-001081", "bsg-d001081"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Fisheries Science", "Life Science"], "domains": ["Gene expression", "RNA sequencing", "Single nucleotide polymorphism"], "taxonomies": ["Oncorhynchus kisutch", "Oncorhynchus mykiss", "Salmo salar", "Salvelinus alpinus"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: SalmoBase", "abbreviation": "SalmoBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.97kZl6", "doi": "10.25504/FAIRsharing.97kZl6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SalmoBase is an integrated molecular resource for Salmonid species which includes visualizations and analytic tools. The genome of the Atlantic salmon (Salmo salar) has undergone extensive restructuring since a whole genome duplication event ~80 million years ago, which creates opportunities to explore the evolutionary process of rediploidization. A public genome assembly is available and ordered into 29 chromosome files. SalmoBase includes a GBrowse interface for exploring the chromosome sequence as well as BLAST functionality and links to expression levels, gene and SNP information. Using public RNAseq data 37,000 high confidence protein coding genes have been identified, wherein almost half show splice variants.", "publications": [{"id": 2279, "pubmed_id": 28651544, "title": "SalmoBase: an integrated molecular data resource for Salmonid species.", "year": 2017, "url": "http://doi.org/10.1186/s12864-017-3877-1", "authors": "Samy JKA,Mulugeta TD,Nome T,Sandve SR,Grammes F,Kent MP,Lien S,Vage DI", "journal": "BMC Genomics", "doi": "10.1186/s12864-017-3877-1", "created_at": "2021-09-30T08:26:37.631Z", "updated_at": "2021-09-30T08:26:37.631Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 518, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2638", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-03T20:00:28.000Z", "updated-at": "2021-11-24T13:17:24.021Z", "metadata": {"doi": "10.25504/FAIRsharing.VW2yBw", "name": "Genome3D", "status": "ready", "contacts": [{"contact-name": "Ian Sillitoe", "contact-email": "i.sillitoe@ucl.ac.uk"}], "homepage": "http://genome3d.eu", "citations": [{"doi": "10.1093/nar/gks1266", "pubmed-id": 23203986, "publication-id": 1158}], "identifier": 2638, "description": "Genome3D is a resource that provides structural annotation and 3D models of genomes of model organisms such as human, yeast and E.coli. The database can be used to predict protein structures that have not yet been identified. Genome3D uses structural classification data from several UK-based resources including CATH and SCOP.", "abbreviation": "Genome3D", "support-links": [{"url": "http://genome3d.eu/wiki/page/Public/Page/Index", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://tess.elixir-europe.org/materials/genome3d-structures", "name": "Genome3D Structures", "type": "Help documentation"}, {"url": "http://genome3d.eu/tutorials/page/Public/Page/Tutorial/Index", "name": "Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/Genome3d", "name": "Twitter", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://genome3d.eu/search", "name": "Search", "type": "data access"}, {"url": "http://genome3d.eu/search/?species=human", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001129", "bsg-d001129"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics"], "domains": ["Molecular structure", "Protein structure", "Protein domain", "Annotation", "Genome annotation", "Model organism", "Classification", "Amino acid sequence", "Genome"], "taxonomies": ["Escherichia coli", "Homo sapiens", "Saccharomyces cerevisiae"], "user-defined-tags": ["Gene superfamily classification", "Protein superfamily"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Genome3D", "abbreviation": "Genome3D", "url": "https://fairsharing.org/10.25504/FAIRsharing.VW2yBw", "doi": "10.25504/FAIRsharing.VW2yBw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genome3D is a resource that provides structural annotation and 3D models of genomes of model organisms such as human, yeast and E.coli. The database can be used to predict protein structures that have not yet been identified. Genome3D uses structural classification data from several UK-based resources including CATH and SCOP.", "publications": [{"id": 1158, "pubmed_id": 23203986, "title": "Genome3D: a UK collaborative project to annotate genomic sequences with predicted 3D structures based on SCOP and CATH domains.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1266", "authors": "Lewis TE,Sillitoe I,Andreeva A,Blundell TL,Buchan DW,Chothia C,Cuff A,Dana JM,Filippis I,Gough J,Hunter S,Jones DT,Kelley LA,Kleywegt GJ,Minneci F,Mitchell A,Murzin AG,Ochoa-Montano B,Rackham OJ,Smith J,Sternberg MJ,Velankar S,Yeats C,Orengo C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1266", "created_at": "2021-09-30T08:24:28.772Z", "updated_at": "2021-09-30T11:29:01.109Z"}, {"id": 1176, "pubmed_id": 25348407, "title": "Genome3D: exploiting structure to help users understand their sequences.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku973", "authors": "Lewis TE,Sillitoe I,Andreeva A,Blundell TL,Buchan DW,Chothia C,Cozzetto D,Dana JM,Filippis I,Gough J,Jones DT,Kelley LA,Kleywegt GJ,Minneci F,Mistry J,Murzin AG,Ochoa-Montano B,Oates ME,Punta M,Rackham OJ,Stahlhacke J,Sternberg MJ,Velankar S,Orengo C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku973", "created_at": "2021-09-30T08:24:30.755Z", "updated_at": "2021-09-30T11:29:02.126Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1833", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.332Z", "metadata": {"doi": "10.25504/FAIRsharing.5125qd", "name": "FireDB", "status": "ready", "contacts": [{"contact-name": "Paolo Maietta", "contact-email": "pmaietta@cnio.es"}], "homepage": "http://firedb.bioinfo.cnio.es/", "identifier": 1833, "description": "fireDB is a database of Protein Data Bank structures, ligands and annotated functional site residues. The database can be accessed by PDB codes or UniProt accession numbers as well as keywords.", "abbreviation": "FireDB", "support-links": [{"url": "http://firedb.bioinfo.cnio.es/Php/Help.php", "type": "Help documentation"}], "data-processes": [{"url": "http://firedb.bioinfo.cnio.es/Php/FireDB.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000293", "bsg-d000293"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Annotation", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: FireDB", "abbreviation": "FireDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.5125qd", "doi": "10.25504/FAIRsharing.5125qd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: fireDB is a database of Protein Data Bank structures, ligands and annotated functional site residues. The database can be accessed by PDB codes or UniProt accession numbers as well as keywords.", "publications": [{"id": 348, "pubmed_id": 17132832, "title": "FireDB--a database of functionally important residues from proteins of known structure.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl897", "authors": "Lopez G., Valencia A., Tress M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl897", "created_at": "2021-09-30T08:22:57.474Z", "updated_at": "2021-09-30T08:22:57.474Z"}, {"id": 1296, "pubmed_id": 24243844, "title": "FireDB: a compendium of biological and pharmacologically relevant ligands.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1127", "authors": "Maietta P,Lopez G,Carro A,Pingilley BJ,Leon LG,Valencia A,Tress ML", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1127", "created_at": "2021-09-30T08:24:44.673Z", "updated_at": "2021-09-30T11:29:05.467Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2110", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-10T09:23:07.891Z", "metadata": {"doi": "10.25504/FAIRsharing.cnwx8c", "name": "UNITE", "status": "ready", "contacts": [{"contact-name": "Andy Taylor", "contact-email": "Andy.Taylor@mykopat.slu.se"}], "homepage": "https://unite.ut.ee/index.php", "citations": [], "identifier": 2110, "description": "UNITE is primarily a fungal rDNA internal transcribed spacer (ITS) sequence database, although they also welcome additional genes and genetic markers. UNITE focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria.", "abbreviation": null, "support-links": [{"url": "info@plutof.ut.ee", "type": "Support email"}, {"url": "https://unite.ut.ee/primers.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://unite.ut.ee/repository.php", "name": "Download", "type": "data access"}, {"url": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/printss_lis.html", "name": "Browse", "type": "data access"}, {"url": "https://unite.ut.ee/search.php#fndtn-panel1", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://unite.ut.ee/analysis.php", "name": "Analysis"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011316", "name": "re3data:r3d100011316", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006518", "name": "SciCrunch:RRID:SCR_006518", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000580", "bsg-d000580"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Metagenomics", "Genomics", "Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "Annotation", "Deoxyribonucleic acid", "Ribosomal RNA", "Gene", "FAIR"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Estonia"], "name": "FAIRsharing record for: UNITE", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.cnwx8c", "doi": "10.25504/FAIRsharing.cnwx8c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UNITE is primarily a fungal rDNA internal transcribed spacer (ITS) sequence database, although they also welcome additional genes and genetic markers. UNITE focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria.", "publications": [{"id": 541, "pubmed_id": 20409185, "title": "The UNITE database for molecular identification of fungi--recent updates and future perspectives.", "year": 2010, "url": "http://doi.org/10.1111/j.1469-8137.2009.03160.x", "authors": "Abarenkov K., Henrik Nilsson R., Larsson KH., Alexander IJ., Eberhardt U., Erland S., H\u00f8iland K., Kj\u00f8ller R., Larsson E., Pennanen T., Sen R., Taylor AF., Tedersoo L., Ursing BM., Vr\u00e5lstad T., Liimatainen K., Peintner U., K\u00f5ljalg U.,", "journal": "New Phytol.", "doi": "10.1111/j.1469-8137.2009.03160.x", "created_at": "2021-09-30T08:23:19.085Z", "updated_at": "2021-09-30T08:23:19.085Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 2.5 Generic (CC BY-NC-ND 2.5)", "licence-id": 175, "link-id": 773, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2393", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:34:41.000Z", "updated-at": "2021-11-24T13:19:34.721Z", "metadata": {"doi": "10.25504/FAIRsharing.g3j5qj", "name": "Orthologous MAtrix", "status": "ready", "contacts": [{"contact-name": "Gaston Gonnet", "contact-email": "gonnet@inf.ethz.ch"}], "homepage": "http://omabrowser.org/oma/about/", "identifier": 2393, "description": "The OMA (\u201cOrthologous MAtrix\u201d) project is a method and database for the inference of orthologs among complete genomes. The distinctive features of OMA are its broad scope and size, high quality of inferences, feature-rich web interface, availability of data in a wide range of formats and interfaces, and frequent update schedule of two releases per year.", "abbreviation": "OMA", "access-points": [{"url": "http://omabrowser.org/oma/APISOAP/", "name": "OMA Browser SOAP API", "type": "SOAP"}, {"url": "http://omabrowser.org/oma/APIDAS/", "name": "OMA DAS API", "type": "Other"}], "support-links": [{"url": "http://omabrowser.org/oma/FAQ/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://omabrowser.org/oma/type/", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://omabrowser.org/oma/current/", "name": "download", "type": "data access"}, {"url": "http://omabrowser.org/oma/archives/", "name": "download", "type": "data release"}, {"url": "http://omabrowser.org/oma/export/", "name": "export", "type": "data access"}]}, "legacy-ids": ["biodbcore-000874", "bsg-d000874"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Orthologous"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Orthologous MAtrix", "abbreviation": "OMA", "url": "https://fairsharing.org/10.25504/FAIRsharing.g3j5qj", "doi": "10.25504/FAIRsharing.g3j5qj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The OMA (\u201cOrthologous MAtrix\u201d) project is a method and database for the inference of orthologs among complete genomes. The distinctive features of OMA are its broad scope and size, high quality of inferences, feature-rich web interface, availability of data in a wide range of formats and interfaces, and frequent update schedule of two releases per year.", "publications": [{"id": 2024, "pubmed_id": 25399418, "title": "The OMA orthology database in 2015: function predictions, better plant support, synteny view and other improvements.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1158", "authors": "Altenhoff AM,Skunca N,Glover N,Train CM,Sueki A,Pilizota I,Gori K,Tomiczek B,Muller S,Redestig H,Gonnet GH,Dessimoz C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1158", "created_at": "2021-09-30T08:26:07.970Z", "updated_at": "2021-09-30T11:29:26.177Z"}, {"id": 2025, "pubmed_id": 21113020, "title": "OMA 2011: orthology inference among 1000 complete genomes.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1238", "authors": "Altenhoff AM,Schneider A,Gonnet GH,Dessimoz C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1238", "created_at": "2021-09-30T08:26:08.070Z", "updated_at": "2021-09-30T11:29:26.319Z"}, {"id": 2026, "pubmed_id": 17545180, "title": "OMA Browser--exploring orthologous relations across 352 complete genomes.", "year": 2007, "url": "http://doi.org/10.1093/bioinformatics/btm295", "authors": "Schneider A,Dessimoz C,Gonnet GH", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btm295", "created_at": "2021-09-30T08:26:08.173Z", "updated_at": "2021-09-30T08:26:08.173Z"}, {"id": 2027, "pubmed_id": 19055798, "title": "Algorithm of OMA for large-scale orthology inference.", "year": 2008, "url": "http://doi.org/10.1186/1471-2105-9-518", "authors": "Roth AC,Gonnet GH,Dessimoz C", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-9-518", "created_at": "2021-09-30T08:26:08.275Z", "updated_at": "2021-09-30T08:26:08.275Z"}], "licence-links": [{"licence-name": "OMA Browser Licence", "licence-id": 615, "link-id": 948, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3167", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-30T09:15:04.000Z", "updated-at": "2021-12-06T10:47:37.551Z", "metadata": {"name": "UNdata", "status": "ready", "contacts": [{"contact-name": "UNdata General Contact", "contact-email": "statistics@un.org"}], "homepage": "http://data.un.org/", "identifier": 3167, "description": "UNdata is an international statistical database providing search and download options for a variety of statistical resources compiled by the United Nations (UN) statistical system and other international agencies. The numerous databases or tables, collectively known as \"datamarts\", contain over 60 million data points and cover a wide range of statistical themes including agriculture, crime, communication, development assistance, education, energy, environment, finance, gender, health, labour market, manufacturing, national accounts, population and migration, science and technology, tourism, transport and trade.", "abbreviation": "UNdata", "access-points": [{"url": "http://data.un.org/ws/NSIStdV20Service.asmx", "name": "UNdata SOAP Access", "type": "SOAP"}, {"url": "http://data.un.org/ws/rest/", "name": "UNdata REST Access", "type": "REST"}], "support-links": [{"url": "http://data.un.org/Feedback.aspx", "name": "Feedback & Contact Forms", "type": "Contact form"}, {"url": "http://data.un.org/Host.aspx?Content=FAQ", "name": "UNdata FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://data.un.org/Host.aspx?Content=Usage", "name": "Usage Statistics", "type": "Help documentation"}, {"url": "http://data.un.org/Host.aspx?Content=About", "name": "About", "type": "Help documentation"}, {"url": "http://data.un.org/Host.aspx?Content=API", "name": "API Documentation (REST and SOAP)", "type": "Help documentation"}, {"url": "https://twitter.com/undata", "name": "@undata", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "http://data.un.org/Explorer.aspx", "name": "Browse Datasets", "type": "data access"}, {"url": "http://data.un.org/Default.aspx", "name": "Keyword Search", "type": "data access"}, {"url": "http://data.un.org/AdvancedSearch.aspx", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "http://data.un.org/Host.aspx?Content=Tools", "name": "UNdata Visualizations and Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010762", "name": "re3data:r3d100010762", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001678", "bsg-d001678"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Public Finance", "Environmental Science", "Demographics", "Criminology", "Energy Engineering", "Health Science", "Global Health", "Agriculture", "Developmental Biology"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Education", "tourism"], "countries": ["Worldwide"], "name": "FAIRsharing record for: UNdata", "abbreviation": "UNdata", "url": "https://fairsharing.org/fairsharing_records/3167", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UNdata is an international statistical database providing search and download options for a variety of statistical resources compiled by the United Nations (UN) statistical system and other international agencies. The numerous databases or tables, collectively known as \"datamarts\", contain over 60 million data points and cover a wide range of statistical themes including agriculture, crime, communication, development assistance, education, energy, environment, finance, gender, health, labour market, manufacturing, national accounts, population and migration, science and technology, tourism, transport and trade.", "publications": [], "licence-links": [{"licence-name": "UNdata Conditions of Use", "licence-id": 817, "link-id": 1945, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1595", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.843Z", "metadata": {"doi": "10.25504/FAIRsharing.m4a6d3", "name": "HotRegion", "status": "ready", "homepage": "http://prism.ccbb.ku.edu.tr/hotregion", "identifier": 1595, "description": "Database of interaction Hotspots across the proteome. Hot spots are energetically important residues at protein interfaces and they are not randomly distributed across the interface but rather clustered. These clustered hot spots form hot regions. HotRegion, provides information of these interfaces by using predicted hot spot residues, and structural properties of these interface residues such as pair potentials of interface residues, accessible surface area (ASA) and relative ASA values of interface residues of both monomer and complex forms of proteins. Also, the 3D visualization of the interface and interactions among hot spot residues are provided.", "abbreviation": "HotRegion", "support-links": [{"url": "http://prism.ccbb.ku.edu.tr/hotregion/tutorial.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"url": "http://prism.ccbb.ku.edu.tr/hotregion/", "name": "search", "type": "data access"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000050", "bsg-d000050"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction"], "taxonomies": ["All"], "user-defined-tags": ["Hot region", "Hot spot"], "countries": ["Turkey"], "name": "FAIRsharing record for: HotRegion", "abbreviation": "HotRegion", "url": "https://fairsharing.org/10.25504/FAIRsharing.m4a6d3", "doi": "10.25504/FAIRsharing.m4a6d3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database of interaction Hotspots across the proteome. Hot spots are energetically important residues at protein interfaces and they are not randomly distributed across the interface but rather clustered. These clustered hot spots form hot regions. HotRegion, provides information of these interfaces by using predicted hot spot residues, and structural properties of these interface residues such as pair potentials of interface residues, accessible surface area (ASA) and relative ASA values of interface residues of both monomer and complex forms of proteins. Also, the 3D visualization of the interface and interactions among hot spot residues are provided.", "publications": [{"id": 68, "pubmed_id": 20437205, "title": "Analysis of hot region organization in hub proteins.", "year": 2010, "url": "http://doi.org/10.1007/s10439-010-0048-9", "authors": "Cukuroglu E., Gursoy A., Keskin O.,", "journal": "Ann Biomed Eng", "doi": "10.1007/s10439-010-0048-9", "created_at": "2021-09-30T08:22:27.571Z", "updated_at": "2021-09-30T08:22:27.571Z"}, {"id": 82, "pubmed_id": 15644221, "title": "Hot regions in protein--protein interactions: the organization and contribution of structurally conserved hot spot residues.", "year": 2005, "url": "http://doi.org/10.1016/j.jmb.2004.10.077", "authors": "Keskin O., Ma B., Nussinov R.,", "journal": "J. Mol. Biol.", "doi": "10.1016/j.jmb.2004.10.077", "created_at": "2021-09-30T08:22:28.896Z", "updated_at": "2021-09-30T08:22:28.896Z"}, {"id": 1552, "pubmed_id": 22080558, "title": "HotRegion: a database of predicted hot spot clusters.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr929", "authors": "Cukuroglu E,Gursoy A,Keskin O", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr929", "created_at": "2021-09-30T08:25:13.859Z", "updated_at": "2021-09-30T11:29:13.410Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1922", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.849Z", "metadata": {"doi": "10.25504/FAIRsharing.9ppftz", "name": "Photorhabdus luminescens genome database", "status": "deprecated", "contacts": [{"contact-email": "genolist@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/PhotoList/", "identifier": 1922, "description": "PhotoList, contains a database dedicated to the analysis of the genome of Photorhabdus luminescens. This analysis has been described in: \"The genome sequence of the entomopathogenic bacterium Photorhabdus luminescens\"", "abbreviation": "PhotoList", "support-links": [{"url": "http://genolist.pasteur.fr/PhotoList/help/general.html", "type": "Help documentation"}], "year-creation": 2003, "associated-tools": [{"url": "http://genolist.pasteur.fr/PhotoList/help/blast-search.html", "name": "BLAST"}], "deprecation-date": "2018-04-10", "deprecation-reason": "Deprecated by Allyson Lister. Deprecation confirmed via resource homepage, which asks users to use GenoList instead."}, "legacy-ids": ["biodbcore-000387", "bsg-d000387"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Deoxyribonucleic acid", "Genome"], "taxonomies": ["Photorhabdus luminescens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Photorhabdus luminescens genome database", "abbreviation": "PhotoList", "url": "https://fairsharing.org/10.25504/FAIRsharing.9ppftz", "doi": "10.25504/FAIRsharing.9ppftz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhotoList, contains a database dedicated to the analysis of the genome of Photorhabdus luminescens. This analysis has been described in: \"The genome sequence of the entomopathogenic bacterium Photorhabdus luminescens\"", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1939", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:12.572Z", "metadata": {"doi": "10.25504/FAIRsharing.29jzvb", "name": "PSIbase", "status": "deprecated", "contacts": [{"contact-email": "biopark@kaist.ac.kr"}], "homepage": "http://psibase.kobic.re.kr/", "identifier": 1939, "description": "PSIbase is a molecular interaction database based on PSIMAP (PDB, SCOP) that focuses on structural interaction of proteins and their domains. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "PSIbase", "support-links": [{"url": "http://psibase.kobic.re.kr/index.cgi?cu", "type": "Contact form"}, {"url": "http://psibase.kobic.re.kr/index.cgi?h", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://psibase.kobic.re.kr/index.cgi?down", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://psibase.kobic.re.kr/index.cgi?pls", "name": "search"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000405", "bsg-d000405"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Molecular structure", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: PSIbase", "abbreviation": "PSIbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.29jzvb", "doi": "10.25504/FAIRsharing.29jzvb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PSIbase is a molecular interaction database based on PSIMAP (PDB, SCOP) that focuses on structural interaction of proteins and their domains. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 2445, "pubmed_id": 15749693, "title": "PSIbase: a database of Protein Structural Interactome map (PSIMAP).", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti366", "authors": "Gong S., Yoon G., Jang I., Bolser D., Dafas P., Schroeder M., Choi H., Cho Y., Han K., Lee S., Choi H., Lappe M., Holm L., Kim S., Oh D., Bhak J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti366", "created_at": "2021-09-30T08:26:59.845Z", "updated_at": "2021-09-30T08:26:59.845Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1962", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:16.171Z", "metadata": {"doi": "10.25504/FAIRsharing.cwn40y", "name": "Sequence-Structural Templates of Single-member Superfamilies", "status": "ready", "contacts": [{"contact-name": "Ramanathan Sowdhamini", "contact-email": "mini@ncbs.res.in"}], "homepage": "http://caps.ncbs.res.in/SSTOSS/index.htm", "identifier": 1962, "description": "SSToSS is a database which provides sequence-structural templates of single member protein domain superfamilies like PASS2. Sequence-structural templates are recognized by considering the content and overlap of sequence similarity and structural parameters like, solvent inaccessibility, secondary structural content, hydrogen bonding and spatial packing of the residues among the protein of single member superfamilies.", "abbreviation": "SSToSS", "support-links": [{"url": "http://caps.ncbs.res.in/SSTOSS/info.htm", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://caps.ncbs.res.in/SSTOSS/search.htm", "name": "search", "type": "data access"}, {"url": "http://caps.ncbs.res.in/SSTOSS/passlist.htm", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000428", "bsg-d000428"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Protein structure", "Protein domain", "Secondary protein structure", "Structure", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Sequence-Structural Templates of Single-member Superfamilies", "abbreviation": "SSToSS", "url": "https://fairsharing.org/10.25504/FAIRsharing.cwn40y", "doi": "10.25504/FAIRsharing.cwn40y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SSToSS is a database which provides sequence-structural templates of single member protein domain superfamilies like PASS2. Sequence-structural templates are recognized by considering the content and overlap of sequence similarity and structural parameters like, solvent inaccessibility, secondary structural content, hydrogen bonding and spatial packing of the residues among the protein of single member superfamilies.", "publications": [{"id": 298, "pubmed_id": 16922694, "title": "SSToSS--sequence-structural templates of single-member superfamilies.", "year": 2006, "url": "https://www.ncbi.nlm.nih.gov/pubmed/16922694", "authors": "Chakrabarti S,Manohari G,Pugalenthi G,Sowdhamini R", "journal": "In Silico Biol", "doi": null, "created_at": "2021-09-30T08:22:52.116Z", "updated_at": "2021-09-30T08:22:52.116Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1713", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.584Z", "metadata": {"doi": "10.25504/FAIRsharing.fy2ebk", "name": "PlantRNA", "status": "ready", "contacts": [{"contact-name": "Valerie Cognat", "contact-email": "valerie.cognat@ibmp-cnrs.unistra.fr"}], "homepage": "http://plantrna.ibmp.cnrs.fr/", "identifier": 1713, "description": "The PlantRNA database compiles tRNA gene sequences retrieved from fully annotated plant nuclear, plastidial and mitochondrial genomes. For each tRNA gene, the linear secondary structure is given as well as biological information. This includes 5'- and 3'- flanking sequences, A and B box sequences, region of transcription initiation and poly(T) transcription termination stretches, tRNA intron sequences, aminoacyl-tRNA synthetases and enzymes responsible for tRNA maturation and modification. Data on mitochondrial import of nuclear-encoded tRNAs as well as the bibliome for the respective tRNAs and tRNA binding proteins are also included.", "abbreviation": "PlantRNA", "support-links": [{"url": "gael.pawlak@ibmp-cnrs.unistra.fr", "type": "Support email"}, {"url": "laurence.drouard@ibmp-cnrs.unistra.fr", "type": "Support email"}, {"url": "http://plantrna.ibmp.cnrs.fr/about/tutorial/", "type": "Help documentation"}, {"url": "http://plantrna.ibmp.cnrs.fr/about/information/", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://plantrna.ibmp.cnrs.fr/enzyme/list/", "name": "Search by Enzyme", "type": "data access"}, {"url": "http://plantrna.ibmp.cnrs.fr/search/", "name": "Search tRNA", "type": "data access"}, {"url": "http://plantrna.ibmp.cnrs.fr/species/list/", "name": "Search by Species", "type": "data access"}], "associated-tools": [{"url": "http://plantrna.ibmp.cnrs.fr/blast/", "name": "BLAST Search"}]}, "legacy-ids": ["biodbcore-000170", "bsg-d000170"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Nucleus", "Plastid", "Transfer RNA"], "taxonomies": ["Arabidopsis thaliana", "Brachypodium dystachyon", "Chlamydomonas reinhardtii", "Cyanophora paradoxa", "Ectocarpus siliculosus", "Medicago truncatula", "Oryza sativa", "Ostreococcus tauri", "Phaeodactylum tricornutum", "Physcomitrella patens", "Populus trichocarpa", "Solanum tuberosum"], "user-defined-tags": ["Mitochondrial tRNA"], "countries": ["France"], "name": "FAIRsharing record for: PlantRNA", "abbreviation": "PlantRNA", "url": "https://fairsharing.org/10.25504/FAIRsharing.fy2ebk", "doi": "10.25504/FAIRsharing.fy2ebk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PlantRNA database compiles tRNA gene sequences retrieved from fully annotated plant nuclear, plastidial and mitochondrial genomes. For each tRNA gene, the linear secondary structure is given as well as biological information. This includes 5'- and 3'- flanking sequences, A and B box sequences, region of transcription initiation and poly(T) transcription termination stretches, tRNA intron sequences, aminoacyl-tRNA synthetases and enzymes responsible for tRNA maturation and modification. Data on mitochondrial import of nuclear-encoded tRNAs as well as the bibliome for the respective tRNAs and tRNA binding proteins are also included.", "publications": [{"id": 1891, "pubmed_id": 21443625, "title": "A global picture of tRNA genes in plant genomes.", "year": 2011, "url": "http://doi.org/10.1111/j.1365-313X.2011.04490.x", "authors": "Michaud M,Cognat V,Duchene AM,Marechal-Drouard L", "journal": "Plant J", "doi": "10.1111/j.1365-313X.2011.04490.x", "created_at": "2021-09-30T08:25:52.755Z", "updated_at": "2021-09-30T08:25:52.755Z"}, {"id": 1892, "pubmed_id": 23066098, "title": "PlantRNA, a database for tRNAs of photosynthetic eukaryotes.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks935", "authors": "Cognat V,Pawlak G,Duchene AM,Daujat M,Gigant A,Salinas T,Michaud M,Gutmann B,Giege P,Gobert A,Marechal-Drouard L", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks935", "created_at": "2021-09-30T08:25:52.853Z", "updated_at": "2021-09-30T11:29:22.052Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2867", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-04T08:11:42.000Z", "updated-at": "2021-11-24T13:13:07.442Z", "metadata": {"doi": "10.25504/FAIRsharing.BnLUyq", "name": "Plant Genome Integrative Explorer", "status": "ready", "contacts": [{"contact-name": "Nathaniel Street", "contact-email": "contact@plantgenie.org", "contact-orcid": "0000-0001-6031-005X"}], "homepage": "https://plantgenie.org", "citations": [{"doi": "10.1111/nph.13557", "pubmed-id": 26192091, "publication-id": 2663}], "identifier": 2867, "description": "The Plant Genome Integrative Explorer is a collection of interoperable web resources for searching, visualising and analysing genomics and transcriptomics data for different plant species. Currently, it includes dedicated web portals for enabling in-depth exploration of Poplar, Eucalyptus Norway spruce, and Arabidopsis and few more plant species. The PlantGenIE platform is based on the GenIE-Sys ( Genome Integrative Explorer System).", "abbreviation": "PlantGenIE", "access-points": [{"url": "https://api.plantgenie.org", "name": "Pubic API to query PlantGenIE databases", "type": "REST"}], "support-links": [{"url": "contact@plantgenie.org", "name": "Contact PlantGenIE", "type": "Support email"}, {"url": "https://plantgenie.org/help/tool_id/blast/", "name": "Help", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://congenie.org/sequence_search", "name": "Sequence Search", "type": "data access"}, {"url": "http://congenie.org/start_webapollo", "name": "Community Annotation", "type": "data curation"}, {"url": "ftp://plantgenie.org/Data", "name": "Download (FTP)", "type": "data access"}, {"url": "https://popgenie.org/", "name": "PopGenIE", "type": "data access"}, {"url": "http://atgenie.org/", "name": "AtGenIE", "type": "data access"}, {"url": "http://congenie.org/", "name": "ConGenIE", "type": "data access"}, {"url": "http://eucgenie.org/", "name": "EucGenIE", "type": "data access"}], "associated-tools": [{"url": "http://congenie.org/blast", "name": "BLAST"}, {"url": "http://congenie.org/citation?genelist=enable", "name": "Gene List"}, {"url": "http://congenie.org/gbrowse", "name": "GBrowse"}, {"url": "http://congenie.org/jbrowse", "name": "JBrowse"}, {"url": "http://congenie.org/random_gene_list", "name": "Random Gene List"}, {"url": "http://congenie.org/eximage", "name": "exImage"}, {"url": "http://congenie.org/exnet", "name": "exNet"}, {"url": "http://congenie.org/explot", "name": "exPlot"}, {"url": "http://congenie.org/exheatmap", "name": "exHeatmap"}, {"url": "http://congenie.org/enrichment", "name": "Enrichment"}, {"url": "http://complex.plantgenie.org/", "name": "ComPlEx"}, {"url": "http://galaxy.plantgenie.org:8080/", "name": "Galaxy"}]}, "legacy-ids": ["biodbcore-001368", "bsg-d001368"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Bioinformatics", "Phylogenetics", "Life Science", "Data Visualization"], "domains": ["RNA sequence", "Gene Ontology enrichment", "Genome annotation", "Genomic assembly", "Genome visualization", "Gene expression", "Co-expression", "RNA sequencing", "Sequence alignment", "Protein", "Quantitative trait loci"], "taxonomies": ["Arabidopsis thaliana", "Eucalyptus grandis", "Picea abies", "Picea taeda", "Populus trichocarpa"], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: Plant Genome Integrative Explorer", "abbreviation": "PlantGenIE", "url": "https://fairsharing.org/10.25504/FAIRsharing.BnLUyq", "doi": "10.25504/FAIRsharing.BnLUyq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Plant Genome Integrative Explorer is a collection of interoperable web resources for searching, visualising and analysing genomics and transcriptomics data for different plant species. Currently, it includes dedicated web portals for enabling in-depth exploration of Poplar, Eucalyptus Norway spruce, and Arabidopsis and few more plant species. The PlantGenIE platform is based on the GenIE-Sys ( Genome Integrative Explorer System).", "publications": [{"id": 2663, "pubmed_id": 26192091, "title": "The Plant Genome Integrative Explorer Resource: PlantGenIE.org.", "year": 2015, "url": "http://doi.org/10.1111/nph.13557", "authors": "Sundell D,Mannapperuma C,Netotea S,Delhomme N,Lin YC,Sjodin A,Van de Peer Y,Jansson S,Hvidsten TR,Street NR", "journal": "New Phytol", "doi": "10.1111/nph.13557", "created_at": "2021-09-30T08:27:26.996Z", "updated_at": "2021-09-30T08:27:26.996Z"}], "licence-links": [{"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 1200, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2522", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-30T13:39:53.000Z", "updated-at": "2021-11-24T13:18:08.907Z", "metadata": {"doi": "10.25504/FAIRsharing.dh32pc", "name": "Target Pathogen", "status": "ready", "contacts": [{"contact-name": "Dario Fernandez Do Porto", "contact-email": "dariofd@gmail.com"}], "homepage": "http://target.sbg.qb.fcen.uba.ar/patho/", "identifier": 2522, "description": "The Target-Pathogen database is a bioinformatic approach to prioritize drug targets in pathogens. Available genomic data for pathogens has created new opportunities for drug discovery and development, including new species, resistant and multiresistant ones. However, this data must be cohesively integrated to be fully exploited and be easy to interrogate. Target-Pathogen has been designed and developed as an online resource to allow genome wide based data consolidation from diverse sources focusing on structural druggability, essentiality and metabolic role of proteins. By allowing the integration and weighting of this information, this bioinformatic tool aims to facilitate the identification and prioritization of candidate drug targets for pathogens. With the structurome and drugome information Target-Pathogen is a unique resource to analyze whole genomes of relevants pathogens.", "abbreviation": "Target Pathogen", "support-links": [{"url": "http://target.sbg.qb.fcen.uba.ar/patho/user/tutorial", "name": "Tutorial", "type": "Help documentation"}, {"url": "http://target.sbg.qb.fcen.uba.ar/patho/user/user_guide", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://target.sbg.qb.fcen.uba.ar/patho/genome/", "name": "Browse Genomes", "type": "data access"}]}, "legacy-ids": ["biodbcore-001005", "bsg-d001005"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Life Science"], "domains": ["Genome visualization", "Pathogen", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["Drug Target"], "countries": ["Argentina"], "name": "FAIRsharing record for: Target Pathogen", "abbreviation": "Target Pathogen", "url": "https://fairsharing.org/10.25504/FAIRsharing.dh32pc", "doi": "10.25504/FAIRsharing.dh32pc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Target-Pathogen database is a bioinformatic approach to prioritize drug targets in pathogens. Available genomic data for pathogens has created new opportunities for drug discovery and development, including new species, resistant and multiresistant ones. However, this data must be cohesively integrated to be fully exploited and be easy to interrogate. Target-Pathogen has been designed and developed as an online resource to allow genome wide based data consolidation from diverse sources focusing on structural druggability, essentiality and metabolic role of proteins. By allowing the integration and weighting of this information, this bioinformatic tool aims to facilitate the identification and prioritization of candidate drug targets for pathogens. With the structurome and drugome information Target-Pathogen is a unique resource to analyze whole genomes of relevants pathogens.", "publications": [{"id": 1380, "pubmed_id": 29106651, "title": "Target-Pathogen: a structural bioinformatic approach to prioritize drug targets in pathogens.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1015", "authors": "Sosa EJ,Burguener G,Lanzarotti E,Defelipe L,Radusky L,Pardo AM,Marti M,Turjanski AG,Fernandez Do Porto D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1015", "created_at": "2021-09-30T08:24:54.332Z", "updated_at": "2021-09-30T11:29:07.559Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3340", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-25T12:31:50.000Z", "updated-at": "2022-02-08T10:37:49.435Z", "metadata": {"doi": "10.25504/FAIRsharing.7b2e3b", "name": "Protein Lysine Modifications Database", "status": "ready", "contacts": [{"contact-name": "Haodong Xu", "contact-email": "haodong_xu@hust.edu.cn"}], "homepage": "http://plmd.biocuckoo.org/", "citations": [{"doi": "10.1016/j.jgg.2017.03.007", "pubmed-id": 28529077, "publication-id": 2505}], "identifier": 3340, "description": "The Protein Lysine Modifications Database (PLMD) is an online data resource specifically designed for protein lysine modifications (PLMs).", "abbreviation": "PLMD", "support-links": [{"url": "http://plmd.biocuckoo.org/userguide.php", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://plmd.biocuckoo.org/advanced.php", "name": "Advanced Search", "type": "data access"}, {"url": "http://plmd.biocuckoo.org/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://plmd.biocuckoo.org/download.php", "name": "Download", "type": "data release"}, {"url": "http://plmd.biocuckoo.org/index.php", "name": "Substrate Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010543", "name": "re3data:r3d100010543", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001859", "bsg-d001859"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Protein modification", "Post-translational protein modification"], "taxonomies": ["Arabidopsis thaliana", "Bacillus subtilis", "Bacillus velezensis", "Corynebacterium glutamicum", "Drosophila melanogaster", "Emericella nidulans", "Escherichia coli", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Oryza sativa", "Phytophthora sojae", "Plasmodium falciparum", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schistosoma japonicum", "Spiroplasma eriocheiris", "Sulfolobus islandicus", "Vibrio parahaemolyticus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Protein Lysine Modifications Database", "abbreviation": "PLMD", "url": "https://fairsharing.org/10.25504/FAIRsharing.7b2e3b", "doi": "10.25504/FAIRsharing.7b2e3b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Lysine Modifications Database (PLMD) is an online data resource specifically designed for protein lysine modifications (PLMs).", "publications": [{"id": 2505, "pubmed_id": 28529077, "title": "PLMD: An updated data resource of protein lysine modifications.", "year": 2017, "url": "http://doi.org/10.1016/j.jgg.2017.03.007", "authors": "Xu H,Zhou J,Lin S,Deng W,Zhang Y,Xue Y", "journal": "J Genet Genomics", "doi": "10.1016/j.jgg.2017.03.007", "created_at": "2021-09-30T08:27:07.477Z", "updated_at": "2021-09-30T08:27:07.477Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1789", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-26T11:14:45.047Z", "metadata": {"doi": "10.25504/FAIRsharing.etp533", "name": "BRENDA Enzyme Database", "status": "ready", "contacts": [{"contact-name": "BRENDA Support", "contact-email": "contact@brenda-enzymes.org", "contact-orcid": null}], "homepage": "https://www.brenda-enzymes.org/", "citations": [], "identifier": 1789, "description": "BRENDA is the main collection of enzyme functional data available to the scientific community.", "abbreviation": "BRENDA", "access-points": [{"url": "http://brenda-enzymes.org/soap.php", "name": "BRENDA Soap access", "type": "SOAP"}], "support-links": [{"url": "http://brenda-enzymes.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://brenda-enzymes.org/help.php", "type": "Help documentation"}, {"url": "http://brenda-enzymes.org/tutorial.php", "type": "Help documentation"}], "year-creation": 1987, "data-processes": [{"url": "http://brenda-enzymes.org/fulltext.php", "name": "search", "type": "data access"}, {"url": "http://brenda-enzymes.org/advanced.php", "name": "Advance search", "type": "data access"}, {"url": "http://brenda-enzymes.org/ontology.php", "name": "ontology browser", "type": "data access"}, {"url": "http://brenda-enzymes.org/search_result.php?a=200", "name": "download", "type": "data access"}, {"url": "http://brenda-enzymes.org/register.php", "name": "register", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010616", "name": "re3data:r3d100010616", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002997", "name": "SciCrunch:RRID:SCR_002997", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000249", "bsg-d000249"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Ligand", "Enzyme", "Disease"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: BRENDA Enzyme Database", "abbreviation": "BRENDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.etp533", "doi": "10.25504/FAIRsharing.etp533", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BRENDA is the main collection of enzyme functional data available to the scientific community.", "publications": [{"id": 574, "pubmed_id": 11796225, "title": "BRENDA: a resource for enzyme data and metabolic information.", "year": 2002, "url": "http://doi.org/10.1016/s0968-0004(01)02027-8", "authors": "Schomburg I,Chang A,Hofmann O,Ebeling C,Ehrentreich F,Schomburg D", "journal": "Trends Biochem Sci", "doi": "10.1016/S0968-0004(01)02027-8", "created_at": "2021-09-30T08:23:22.777Z", "updated_at": "2021-09-30T08:23:22.777Z"}, {"id": 590, "pubmed_id": 11752250, "title": "BRENDA, enzyme data and metabolic information.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.47", "authors": "Schomburg I,Chang A,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.47", "created_at": "2021-09-30T08:23:24.693Z", "updated_at": "2021-09-30T11:28:47.634Z"}, {"id": 1358, "pubmed_id": 14681450, "title": "BRENDA, the enzyme database: updates and major new developments.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh081", "authors": "Schomburg I,Chang A,Ebeling C,Gremse M,Heldt C,Huhn G,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh081", "created_at": "2021-09-30T08:24:51.872Z", "updated_at": "2021-09-30T11:29:06.777Z"}, {"id": 1564, "pubmed_id": 12850129, "title": "Review of the BRENDA Database.", "year": 2003, "url": "http://doi.org/10.1016/s1096-7176(03)00008-9", "authors": "Pharkya P,Nikolaev EV,Maranas CD", "journal": "Metab Eng", "doi": "10.1016/S1096-7176(03)00008-9", "created_at": "2021-09-30T08:25:15.385Z", "updated_at": "2021-09-30T08:25:15.385Z"}, {"id": 1590, "pubmed_id": 25378310, "title": "BRENDA in 2015: exciting developments in its 25th year of existence.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1068", "authors": "Chang A,Schomburg I,Placzek S,Jeske L,Ulbrich M,Xiao M,Sensen CW,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1068", "created_at": "2021-09-30T08:25:18.284Z", "updated_at": "2021-09-30T11:29:14.902Z"}, {"id": 1591, "pubmed_id": 17202167, "title": "BRENDA, AMENDA and FRENDA: the enzyme information system in 2007.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkl972", "authors": "Barthelmes J,Ebeling C,Chang A,Schomburg I,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl972", "created_at": "2021-09-30T08:25:18.383Z", "updated_at": "2021-09-30T11:29:15.044Z"}, {"id": 2259, "pubmed_id": 18984617, "title": "BRENDA, AMENDA and FRENDA the enzyme information system: new content and tools in 2009.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn820", "authors": "Chang A., Scheer M., Grote A., Schomburg I., Schomburg D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn820", "created_at": "2021-09-30T08:26:34.757Z", "updated_at": "2021-09-30T08:26:34.757Z"}, {"id": 2406, "pubmed_id": 23203881, "title": "BRENDA in 2013: integrated reactions, kinetic data, enzyme function data, improved disease classification: new options and contents in BRENDA.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1049", "authors": "Schomburg I,Chang A,Placzek S,Sohngen C,Rother M,Lang M,Munaretto C,Ulas S,Stelzer M,Grote A,Scheer M,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1049", "created_at": "2021-09-30T08:26:55.301Z", "updated_at": "2021-09-30T11:29:35.078Z"}, {"id": 2407, "pubmed_id": 21062828, "title": "BRENDA, the enzyme information system in 2011.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1089", "authors": "Scheer M,Grote A,Chang A,Schomburg I,Munaretto C,Rother M,Sohngen C,Stelzer M,Thiele J,Schomburg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1089", "created_at": "2021-09-30T08:26:55.403Z", "updated_at": "2021-09-30T11:29:35.170Z"}, {"id": 2408, "pubmed_id": 28438579, "title": "The BRENDA enzyme information system-From a database to an expert system.", "year": 2017, "url": "http://doi.org/S0168-1656(17)30183-9", "authors": "Schomburg I,Jeske L,Ulbrich M,Placzek S,Chang A,Schomburg D", "journal": "J Biotechnol", "doi": "S0168-1656(17)30183-9", "created_at": "2021-09-30T08:26:55.518Z", "updated_at": "2021-09-30T08:26:55.518Z"}], "licence-links": [{"licence-name": "BRENDA License", "licence-id": 86, "link-id": 879, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2583, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1974", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:21.991Z", "metadata": {"doi": "10.25504/FAIRsharing.6brrxe", "name": "Genetic Codes", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/Taxonomy/Utils/wprintgc.cgi", "identifier": 1974, "description": "NCBI takes great care to ensure that the translation for each coding sequence (CDS) present in GenBank records is correct. Central to this effort is careful checking on the taxonomy of each record and assignment of the correct genetic code for each organism and record.", "abbreviation": "Genetic Codes"}, "legacy-ids": ["biodbcore-000440", "bsg-d000440"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Life Science"], "domains": ["DNA sequence data", "Deoxyribonucleic acid"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genetic Codes", "abbreviation": "Genetic Codes", "url": "https://fairsharing.org/10.25504/FAIRsharing.6brrxe", "doi": "10.25504/FAIRsharing.6brrxe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NCBI takes great care to ensure that the translation for each coding sequence (CDS) present in GenBank records is correct. Central to this effort is careful checking on the taxonomy of each record and assignment of the correct genetic code for each organism and record.", "publications": [{"id": 6, "pubmed_id": 1579111, "title": "Recent evidence for evolution of the genetic code.", "year": 1992, "url": "https://www.ncbi.nlm.nih.gov/pubmed/1579111", "authors": "Osawa S,Jukes TH,Watanabe K,Muto A", "journal": "Microbiol Rev", "doi": null, "created_at": "2021-09-30T08:22:21.195Z", "updated_at": "2021-09-30T08:22:21.195Z"}, {"id": 8, "pubmed_id": 8281749, "title": "Evolutionary changes in the genetic code.", "year": 1993, "url": "http://doi.org/10.1016/0305-0491(93)90122-l", "authors": "Jukes TH,Osawa S", "journal": "Comp Biochem Physiol B", "doi": "10.1016/0305-0491(93)90122-l", "created_at": "2021-09-30T08:22:21.388Z", "updated_at": "2021-09-30T08:22:21.388Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1177, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1178, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1732", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:17.553Z", "metadata": {"doi": "10.25504/FAIRsharing.fgj73t", "name": "Monosaccharide Database", "status": "ready", "contacts": [{"contact-name": "Thomas Lutteke", "contact-email": "Thomas.Luetteke@vetmed.uni-giessen.de"}], "homepage": "http://www.monosaccharidedb.org/", "identifier": 1732, "description": "Database on carbohydrate building blocks / residues (monosaccharides). Provides various kinds of residue data, especially notation information.", "abbreviation": "MonosaccharideDB", "support-links": [{"url": "https://groups.google.com/forum/#!forum/eurocarb-users", "type": "Forum"}], "year-creation": 2005, "associated-tools": [{"url": "http://relax.organ.su.se/eurocarb/gwb/home.action", "name": "Glyco-Workbench"}, {"url": "http://relax.organ.su.se/eurocarb/gpf/Introduction.action", "name": "Glyco-Peakfinder"}, {"url": "http://relax.organ.su.se/eurocarb/ww/nmr/casper.action", "name": "CASPER"}]}, "legacy-ids": ["biodbcore-000189", "bsg-d000189"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Carbohydrate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Monosaccharide Database", "abbreviation": "MonosaccharideDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.fgj73t", "doi": "10.25504/FAIRsharing.fgj73t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database on carbohydrate building blocks / residues (monosaccharides). Provides various kinds of residue data, especially notation information.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1851", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:29.463Z", "metadata": {"doi": "10.25504/FAIRsharing.p3n3fn", "name": "Patent Data Resources", "status": "ready", "contacts": [{"contact-name": "Rodrigo Lopez", "contact-email": "rls@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/patentdata", "citations": [{"doi": "10.1093/nar/gkp960", "pubmed-id": 19884134, "publication-id": 2746}], "identifier": 1851, "description": "Patent data resources at the EBI contain patent abstracts, patent chemical compounds, patent sequences and patent equivalents. Multiple sets of patent sequences are available at EBI. Patent proteins cover sequences of EPO (European Patent Office) proteins, JPO (Japan Patent Office) proteins, KIPO (Korean Intellectual Property Office) proteins and USPTO (United States Patent and Trademark Office) proteins. Patent nucleotides contain the patent class data in the EMBL-Bank. Non-redundant patent sequences consist of 2 levels databases. Level-1 non-redundant patent sequences are 100% identical over the same length; Level-2 non-redundant patent sequences are identical and belong to a same patent family (a same invention).", "support-links": [{"url": "http://www.ebi.ac.uk/support/", "name": "EBI Contact Form", "type": "Contact form"}], "year-creation": 2009, "data-processes": [{"url": "https://www.ebi.ac.uk/patentdata/nucleotides", "name": "Download Patent Nucleotides", "type": "data release"}, {"url": "https://www.ebi.ac.uk/patentdata/proteins", "name": "Download Patent Proteins", "type": "data release"}, {"url": "https://www.ebi.ac.uk/patentdata/nr", "name": "Download Non-redundant Patent Sequences", "type": "data release"}]}, "legacy-ids": ["biodbcore-000312", "bsg-d000312"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Abstract", "Chemical entity", "Patent", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Patent Data Resources", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.p3n3fn", "doi": "10.25504/FAIRsharing.p3n3fn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Patent data resources at the EBI contain patent abstracts, patent chemical compounds, patent sequences and patent equivalents. Multiple sets of patent sequences are available at EBI. Patent proteins cover sequences of EPO (European Patent Office) proteins, JPO (Japan Patent Office) proteins, KIPO (Korean Intellectual Property Office) proteins and USPTO (United States Patent and Trademark Office) proteins. Patent nucleotides contain the patent class data in the EMBL-Bank. Non-redundant patent sequences consist of 2 levels databases. Level-1 non-redundant patent sequences are 100% identical over the same length; Level-2 non-redundant patent sequences are identical and belong to a same patent family (a same invention).", "publications": [{"id": 2746, "pubmed_id": 19884134, "title": "Non-redundant patent sequence databases with value-added annotations at two levels.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp960", "authors": "Li W,McWilliam H,de la Torre AR,Grodowski A,Benediktovich I,Goujon M,Nauche S,Lopez R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp960", "created_at": "2021-09-30T08:27:37.253Z", "updated_at": "2021-09-30T11:29:42.437Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1052, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2773", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-04T20:53:44.000Z", "updated-at": "2021-12-06T10:49:25.306Z", "metadata": {"doi": "10.25504/FAIRsharing.WxI96O", "name": "Signaling Pathways Project", "status": "ready", "contacts": [{"contact-name": "Neil McKenna", "contact-email": "nmckenna@bcm.edu", "contact-orcid": "0000-0001-6689-0104"}], "homepage": "https://www.signalingpathways.org/index.jsf", "citations": [{"doi": "10.1038/s41597-019-0193-4", "publication-id": 2627}], "identifier": 2773, "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "abbreviation": "SPP", "access-points": [{"url": "https://www.signalingpathways.org/docs/", "name": "Programmatic access to all SPP underlying data points and their associated metadata are supported by a RESTful API", "type": "REST"}], "support-links": [{"url": "https://beta.signalingpathways.org/about/index.jsf", "name": "About SPP", "type": "Help documentation"}, {"url": "https://twitter.com/sigpathproject", "name": "@sigpathproject", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://www.signalingpathways.org/datasets/index.jsf", "name": "Browse", "type": "data access"}, {"url": "https://www.signalingpathways.org/ominer/query.jsf", "name": "Search (Ominer)", "type": "data access"}], "associated-tools": [{"url": "https://www.signalingpathways.org/ominer/query.jsf", "name": "Ominer 1.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013650", "name": "re3data:r3d100013650", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_018412", "name": "SciCrunch:RRID:SCR_018412", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001272", "bsg-d001272"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Transcriptomics", "Omics"], "domains": ["Expression data", "Computational biological predictions", "Differential gene expression analysis", "Gene expression", "Regulation of gene expression", "Signaling", "Transcription factor", "Receptor", "Enzyme", "Chromatin immunoprecipitation - DNA sequencing", "Pathway model"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Signaling Pathways Project", "abbreviation": "SPP", "url": "https://fairsharing.org/10.25504/FAIRsharing.WxI96O", "doi": "10.25504/FAIRsharing.WxI96O", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "publications": [{"id": 2627, "pubmed_id": null, "title": "The Signaling Pathways Project, an integrated \u2018omics knowledgebase for mammalian cellular signaling pathways", "year": 2019, "url": "http://doi.org/10.1038/s41597-019-0193-4", "authors": "Scott A. Ochsner, David Abraham, Kirt Martin, et al.", "journal": "Scientific Data", "doi": "10.1038/s41597-019-0193-4", "created_at": "2021-09-30T08:27:22.546Z", "updated_at": "2021-09-30T08:27:22.546Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1395, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2628", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T07:14:02.000Z", "updated-at": "2022-02-08T10:38:32.197Z", "metadata": {"doi": "10.25504/FAIRsharing.b09e6b", "name": "R-loopDB", "status": "ready", "contacts": [{"contact-name": "Vladimir A. Kuznetsov", "contact-email": "vladimirk@bii.a-star.edu.sg"}], "homepage": "http://rloop.bii.a-star.edu.sg/", "identifier": 2628, "description": "R-loop DB is a collection of R-loop forming sequences (RLFS) predicted computationally in the human genome based on quantitative model of RLFS (QmRLFS). The database additionally includes chromosome coordinates and annotation of many hundred thousand of newly predicted RLFSs computationally defined in the genomes of eight species. Genome-wide experimentally detected RNA-DNA hybrid data were also integrated into the R-loop DB.", "abbreviation": "R-loopDB", "support-links": [{"url": "twongsurawat@uams.edu", "name": "Thidathip Wongsurawat", "type": "Support email"}, {"url": "pjenjaroenpun@uams.edu", "name": "Piroon Jenjaroenpun", "type": "Support email"}, {"url": "http://rloop.bii.a-star.edu.sg/?pg2=help", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://rloop.bii.a-star.edu.sg/", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://rloop.bii.a-star.edu.sg/?pg=qmrlfs-finder", "name": "QmRLFS-Finder"}]}, "legacy-ids": ["biodbcore-001117", "bsg-d001117"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "Annotation", "Computational biological predictions", "Chromosomal region"], "taxonomies": ["Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Mus musculus", "Pan troglodytes", "Rattus norvegicus", "Saccharomyces cerevisiae", "Xenopus tropicalis"], "user-defined-tags": [], "countries": ["Singapore", "Thailand"], "name": "FAIRsharing record for: R-loopDB", "abbreviation": "R-loopDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.b09e6b", "doi": "10.25504/FAIRsharing.b09e6b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: R-loop DB is a collection of R-loop forming sequences (RLFS) predicted computationally in the human genome based on quantitative model of RLFS (QmRLFS). The database additionally includes chromosome coordinates and annotation of many hundred thousand of newly predicted RLFSs computationally defined in the genomes of eight species. Genome-wide experimentally detected RNA-DNA hybrid data were also integrated into the R-loop DB.", "publications": [{"id": 124, "pubmed_id": 27899586, "title": "R-loopDB: a database for R-loop forming sequences (RLFS) and R-loops.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1054", "authors": "Jenjaroenpun P,Wongsurawat T,Sutheeworapong S,Kuznetsov VA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1054", "created_at": "2021-09-30T08:22:33.628Z", "updated_at": "2021-09-30T11:28:43.016Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3604", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-31T08:32:39.090Z", "updated-at": "2022-02-08T10:44:14.903Z", "metadata": {"doi": "10.25504/FAIRsharing.0ef9f5", "name": "Bologna Annotation Resource", "status": "ready", "contacts": [{"contact-name": "Giuseppe Profiti", "contact-email": "giuseppe.profiti2@unibo.it", "contact-orcid": "0000-0001-6067-6174"}], "homepage": "https://bar.biocomp.unibo.it/bar3/", "citations": [], "identifier": 3604, "description": "BAR 3.0 is a server for the annotation of protein sequences relying on a comparative large-scale analysis on the entire UniProt. With BAR 3.0 and a sequence you can annotate when possible: function (Gene Ontology), structure (Protein Data Bank), protein domains (Pfam). Also if your sequence falls into a cluster with a structural/some structural template/s we provide an alignment towards the template/templates based on the Cluster-HMM (HMM profile) that allows you to directly compute your 3D model. Cluster HMMs are available for downloading.", "abbreviation": "BAR 3.0", "data-curation": {}, "support-links": [{"url": "https://bar.biocomp.unibo.it/bar3/help.html", "type": "Help documentation"}, {"url": "https://bar.biocomp.unibo.it/bar3/tutorial.html", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://bar.biocomp.unibo.it/bar3/", "name": "Search", "type": "data access"}, {"url": "https://bar.biocomp.unibo.it/mg/", "name": "Human Magnesome - BAR-hMG", "type": "data access"}, {"url": "https://bar.biocomp.unibo.it/pig/", "name": "SUS-BAR", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein structure", "Annotation", "Gene functional annotation", "Protein Analysis"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Bologna Annotation Resource", "abbreviation": "BAR 3.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.0ef9f5", "doi": "10.25504/FAIRsharing.0ef9f5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BAR 3.0 is a server for the annotation of protein sequences relying on a comparative large-scale analysis on the entire UniProt. With BAR 3.0 and a sequence you can annotate when possible: function (Gene Ontology), structure (Protein Data Bank), protein domains (Pfam). Also if your sequence falls into a cluster with a structural/some structural template/s we provide an alignment towards the template/templates based on the Cluster-HMM (HMM profile) that allows you to directly compute your 3D model. Cluster HMMs are available for downloading.", "publications": [{"id": 3119, "pubmed_id": 28453653, "title": "The Bologna Annotation Resource (BAR 3.0): improving protein functional annotation", "year": 2017, "url": "http://dx.doi.org/10.1093/nar/gkx330", "authors": "Profiti, Giuseppe; Martelli, Pier Luigi; Casadio, Rita; ", "journal": "Nucleic Acids Res. 45 (W1): W285-W290, 2017", "doi": "10.1093/nar/gkx330", "created_at": "2021-10-31T08:40:05.182Z", "updated_at": "2021-10-31T08:40:05.182Z"}, {"id": 3120, "pubmed_id": 23514411, "title": "How to inherit statistically validated annotation within BAR+ protein clusters.", "year": 2013, "url": "https://doi.org/10.1186/1471-2105-14-S3-S4", "authors": "Piovesan D, Martelli PL, Fariselli P, Profiti G, Zauli A, Rossi I, Casadio R", "journal": "BMC bioinformatics", "doi": "10.1186/1471-2105-14-S3-S4", "created_at": "2021-10-31T08:41:16.181Z", "updated_at": "2021-10-31T08:41:16.181Z"}, {"id": 3121, "pubmed_id": 21622657, "title": "BAR-PLUS: the Bologna Annotation Resource Plus for functional and structural annotation of protein sequences.", "year": 2011, "url": "https://doi.org/10.1093/nar/gkr292", "authors": "Piovesan D, Martelli PL, Fariselli P, Zauli A, Rossi I, Casadio R", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkr292", "created_at": "2021-10-31T08:41:30.912Z", "updated_at": "2021-10-31T08:41:30.912Z"}, {"id": 3122, "pubmed_id": 19552451, "title": "The bologna annotation resource: a non hierarchical method for the functional and structural annotation of protein sequences relying on a comparative large-scale genome analysis.", "year": 2009, "url": "https://doi.org/10.1021/pr900204r", "authors": "Bartoli L, Montanucci L, Fronza R, Martelli PL, Fariselli P, Carota L, Donvito G, Maggi GP, Casadio R", "journal": "Journal of proteome research", "doi": "10.1021/pr900204r", "created_at": "2021-10-31T08:41:49.692Z", "updated_at": "2021-10-31T08:41:49.692Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3004", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-18T08:14:29.000Z", "updated-at": "2021-12-06T10:47:29.872Z", "metadata": {"name": "Index to Marine and Lacustrine Geological Samples", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ncei.info@noaa.gov"}], "homepage": "https://www.ngdc.noaa.gov/mgg/curator/curator.html", "identifier": 3004, "description": "The Index to Marine and Lacustrine Geological Samples (IMLGS) describes and provides access to ocean floor and lakebed rock and sediment samples curated by participating institutional and government repositories in the U.S., Canada, the United Kingdom, France, and Germany. Each curatorial facility prepares data on their own collection for the IMLGS. Data include basic collection and storage information. Lithology, texture, age, principal investigator, province, weathering, metamorphism, glass remarks, and descriptive data are included for some samples, at the discretion of the curator. The Index provides links to view and download related data and images in the long-term archive, at participating institutions.", "abbreviation": "IMLGS", "support-links": [{"url": "ngdc.info@noaa.gov", "name": "User Services", "type": "Support email"}, {"url": "geology.info@noaa.gov", "name": "Marine Geology Data Manager", "type": "Support email"}, {"url": "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ngdc.mgg.geology:G00028", "name": "IMLGS Summary", "type": "Help documentation"}], "year-creation": 1977, "data-processes": [{"url": "https://maps.ngdc.noaa.gov/viewers/sample_index/", "name": "Map viewer", "type": "data access"}, {"url": "https://hub.arcgis.com/datasets/49908f2749c74831ab4845a5cea8a90d_0", "name": "Open Data ArcGIS", "type": "data access"}, {"url": "https://www.ngdc.noaa.gov/geosamples/", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011045", "name": "re3data:r3d100011045", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_009430", "name": "SciCrunch:RRID:SCR_009430", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001512", "bsg-d001512"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Geography", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment", "Sea floor", "Sedimentology"], "countries": ["United Kingdom", "Canada", "United States", "France", "Germany"], "name": "FAIRsharing record for: Index to Marine and Lacustrine Geological Samples", "abbreviation": "IMLGS", "url": "https://fairsharing.org/fairsharing_records/3004", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Index to Marine and Lacustrine Geological Samples (IMLGS) describes and provides access to ocean floor and lakebed rock and sediment samples curated by participating institutional and government repositories in the U.S., Canada, the United Kingdom, France, and Germany. Each curatorial facility prepares data on their own collection for the IMLGS. Data include basic collection and storage information. Lithology, texture, age, principal investigator, province, weathering, metamorphism, glass remarks, and descriptive data are included for some samples, at the discretion of the curator. The Index provides links to view and download related data and images in the long-term archive, at participating institutions.", "publications": [], "licence-links": [{"licence-name": "NCEI Privacy Policy, Disclaimer & Copyright", "licence-id": 559, "link-id": 2276, "relation": "undefined"}, {"licence-name": "Division of Ocean Sciences (OCE) Sample and Data Policy", "licence-id": 246, "link-id": 2277, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1872", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:12.101Z", "metadata": {"doi": "10.25504/FAIRsharing.wxh9gn", "name": "MycoBrowser smegmatis", "status": "deprecated", "contacts": [{"contact-name": "Stewart T. Cole", "contact-email": "stewart.cole@epfl.ch", "contact-orcid": "0000-0003-1400-5585"}], "homepage": "http://mycobrowser.epfl.ch/smegmalist.html", "identifier": 1872, "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", "support-links": [{"url": "tuberculist@epfl.ch", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "http://mycobrowser.epfl.ch/smegmalist.html", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://mycobrowser.epfl.ch/smegmablastsearch.php", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000335", "bsg-d000335"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence", "Genome"], "taxonomies": ["Mycobacterium smegmatis"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MycoBrowser smegmatis", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.wxh9gn", "doi": "10.25504/FAIRsharing.wxh9gn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", "publications": [{"id": 387, "pubmed_id": 20980200, "title": "The MycoBrowser portal: a comprehensive and manually annotated resource for mycobacterial genomes.", "year": 2010, "url": "http://doi.org/10.1016/j.tube.2010.09.006", "authors": "Kapopoulou A., Lew JM., Cole ST.,", "journal": "Tuberculosis (Edinb)", "doi": "10.1016/j.tube.2010.09.006", "created_at": "2021-09-30T08:23:01.941Z", "updated_at": "2021-09-30T08:23:01.941Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2875", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-19T13:56:27.000Z", "updated-at": "2021-11-24T13:16:22.016Z", "metadata": {"doi": "10.25504/FAIRsharing.DXjTQ8", "name": "InterMine", "status": "ready", "contacts": [{"contact-name": "The InterMine team", "contact-email": "info@intermine.org"}], "homepage": "http://intermine.org/", "citations": [{"doi": "10.1093/bioinformatics/bts577", "pubmed-id": 23023984, "publication-id": 505}], "identifier": 2875, "description": "InterMine was formed in 2002 at the University of Cambridge, originally as a Drosophila-dedicated resource, before expanding to become organism-agnostic, enabling a large range of organisations around the world to create their own InterMines. There are many instances of InterMine installations, relating to particular model organisms. These can be searched individually or via a cross-Mine search function.", "abbreviation": "InterMine", "access-points": [{"url": "http://intermine.org/im-docs/docs/web-services/index#api-and-client-libraries", "name": "API", "type": "REST"}], "support-links": [{"url": "https://intermineorg.wordpress.com/", "name": "InterMine Blog", "type": "Blog/News"}, {"url": "http://intermine.org/intermine-user-docs/", "name": "User help documentation", "type": "Help documentation"}, {"url": "https://lists.intermine.org/pipermail/dev/", "name": "Developer mailing list", "type": "Mailing list"}, {"url": "https://github.com/intermine", "name": "InterMine GitHub", "type": "Github"}, {"url": "https://tess.elixir-europe.org/materials/model-organism-analysis-using-intermine", "name": "Model organism analysis using Intermine", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-operator-manual", "name": "InterMine operator manual", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-2-0", "name": "Intermine 2.0", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/intermineorg", "name": "@intermineorg", "type": "Twitter"}], "year-creation": 2002}, "legacy-ids": ["biodbcore-001376", "bsg-d001376"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Knowledge and Information Systems", "Data Management", "Database Management"], "domains": ["Data model", "Data storage", "Knowledge representation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: InterMine", "abbreviation": "InterMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.DXjTQ8", "doi": "10.25504/FAIRsharing.DXjTQ8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: InterMine was formed in 2002 at the University of Cambridge, originally as a Drosophila-dedicated resource, before expanding to become organism-agnostic, enabling a large range of organisations around the world to create their own InterMines. There are many instances of InterMine installations, relating to particular model organisms. These can be searched individually or via a cross-Mine search function.", "publications": [{"id": 505, "pubmed_id": 23023984, "title": "InterMine: a flexible data warehouse system for the integration and analysis of heterogeneous biological data.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts577", "authors": "Smith RN,Aleksic J,Butano D,Carr A,Contrino S,Hu F,Lyne M,Lyne R,Kalderimis A,Rutherford K,Stepan R,Sullivan J,Wakeling M,Watkins X,Micklem G", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts577", "created_at": "2021-09-30T08:23:15.044Z", "updated_at": "2021-09-30T08:23:15.044Z"}, {"id": 2008, "pubmed_id": 24753429, "title": "InterMine: extensive web services for modern biology.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku301", "authors": "Kalderimis A,Lyne R,Butano D,Contrino S,Lyne M,Heimbach J,Hu F,Smith R,Stepan R,Sullivan J,Micklem G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku301", "created_at": "2021-09-30T08:26:06.197Z", "updated_at": "2021-09-30T11:29:25.560Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1661, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3010", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-22T01:02:54.000Z", "updated-at": "2021-12-06T10:48:55.670Z", "metadata": {"doi": "10.25504/FAIRsharing.NmIgg9", "name": "Datanator", "status": "ready", "contacts": [{"contact-name": "Jonathan Karr", "contact-email": "karr@mssm.edu", "contact-orcid": "0000-0002-2605-5080"}], "homepage": "https://www.datanator.info", "citations": [{"publication-id": 3034}], "identifier": 3010, "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "abbreviation": "Datanator", "access-points": [{"url": "https://api.datanator.info/", "name": "REST API", "type": "REST"}], "support-links": [{"url": "info@karrlab.org", "name": "Email address", "type": "Support email"}, {"url": "https://www.datanator.info/help", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/KarrLab/datanator_frontend/issues", "name": "Issue tracker", "type": "Github"}, {"url": "https://www.datanator.info/help", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://datanator.info/about", "name": "About Datanator", "type": "Help documentation"}, {"url": "https://api.datanator.info", "name": "REST API documentation", "type": "Help documentation"}, {"url": "https://datanator.info/stats", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://www.datanator.info", "name": "Web interface", "type": "data access"}, {"url": "https://doi.org/10.5281/zenodo.3971047", "name": "Data download", "type": "data access"}, {"url": "https://www.datanator.info/about", "name": "Description of curation process", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013339", "name": "re3data:r3d100013339", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001518", "bsg-d001518"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Data Integration", "Biochemistry", "Genomics", "Metabolomics", "Omics", "Systems Biology"], "domains": ["Concentration", "Reaction data", "Modeling and simulation", "RNA modification", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Datanator", "abbreviation": "Datanator", "url": "https://fairsharing.org/10.25504/FAIRsharing.NmIgg9", "doi": "10.25504/FAIRsharing.NmIgg9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "publications": [{"id": 3034, "pubmed_id": null, "title": "Datanator: an integrated database of molecular data for quantitatively modeling cellular behavior", "year": 2020, "url": "https://doi.org/10.1101/2020.08.06.240051", "authors": "Yosef D. Roth, Zhouyang Lian, Saahith Pochiraju, Bilal Shaikh & Jonathan R. Karr", "journal": "BioRxiv", "doi": null, "created_at": "2021-09-30T08:28:13.900Z", "updated_at": "2021-09-30T11:28:40.478Z"}], "licence-links": [{"licence-name": "MIT Licence", "licence-id": 517, "link-id": 2028, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2029, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2115", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:16.820Z", "metadata": {"doi": "10.25504/FAIRsharing.anpa6", "name": "A Systematic Annotation Package", "status": "ready", "contacts": [{"contact-name": "Paul Liss", "contact-email": "pmliss@wisc.edu"}], "homepage": "https://asap.ahabs.wisc.edu/asap/home.php", "citations": [], "identifier": 2115, "description": "ASAP is a relational database and web interface developed to store, update and distribute genome sequence data and gene expression data. It was designed to facilitate ongoing community annotation of genomes and to grow with genome projects as they move from the preliminary data stage through post-sequencing functional analysis.", "abbreviation": "ASAP", "support-links": [{"url": "ASAPdbAdmin@ahabs.wisc.edu", "type": "Support email"}, {"url": "https://asap.ahabs.wisc.edu/asap/show_help.php?", "type": "Help documentation"}], "data-processes": [{"url": "https://asap.ahabs.wisc.edu/asap/downloads.php?", "name": "Download", "type": "data access"}, {"url": "https://asap.ahabs.wisc.edu/asap/db_summary.php?", "name": "browse", "type": "data access"}, {"url": "https://asap.ahabs.wisc.edu/asap/sim_search_query.php?", "name": "BLAST", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010666", "name": "re3data:r3d100010666", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001849", "name": "SciCrunch:RRID:SCR_001849", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000585", "bsg-d000585"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Developmental Biology", "Life Science", "Comparative Genomics"], "domains": ["Expression data", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: A Systematic Annotation Package", "abbreviation": "ASAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.anpa6", "doi": "10.25504/FAIRsharing.anpa6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ASAP is a relational database and web interface developed to store, update and distribute genome sequence data and gene expression data. It was designed to facilitate ongoing community annotation of genomes and to grow with genome projects as they move from the preliminary data stage through post-sequencing functional analysis.", "publications": [{"id": 537, "pubmed_id": 12519969, "title": "ASAP, a systematic annotation package for community analysis of genomes.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg125", "authors": "Glasner JD., Liss P., Plunkett G., Darling A., Prasad T., Rusch M., Byrnes A., Gilson M., Biehl B., Blattner FR., Perna NT.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg125", "created_at": "2021-09-30T08:23:18.676Z", "updated_at": "2021-09-30T08:23:18.676Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1803", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:07.659Z", "metadata": {"doi": "10.25504/FAIRsharing.rkq0vj", "name": "The Chromosome 7 Annotation Project", "status": "ready", "contacts": [{"contact-name": "Jeffrey R. MacDonald", "contact-email": "jmacdonald@sickkids.ca"}], "homepage": "http://www.chr7.org", "identifier": 1803, "description": "The objective of this project is to generate the most comprehensive description of human chromosome 7 to facilitate biological discovery, disease gene research and medical genetic applications.", "support-links": [{"url": "http://www.chr7.org/forfamilies.asp", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://www.chr7.org/download.asp", "name": "Download", "type": "data access"}, {"url": "http://www.chr7.org/cgi-bin/gbrowse/gbrowse/chr7_v1_1/", "name": "Browse", "type": "data access"}, {"url": "http://www.chr7.org", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012136", "name": "re3data:r3d100012136", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007134", "name": "SciCrunch:RRID:SCR_007134", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000263", "bsg-d000263"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Preclinical Studies"], "domains": ["Expression data", "DNA sequence data", "Chromosome", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: The Chromosome 7 Annotation Project", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.rkq0vj", "doi": "10.25504/FAIRsharing.rkq0vj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The objective of this project is to generate the most comprehensive description of human chromosome 7 to facilitate biological discovery, disease gene research and medical genetic applications.", "publications": [{"id": 1484, "pubmed_id": 12690205, "title": "Human chromosome 7: DNA sequence and biology.", "year": 2003, "url": "http://doi.org/10.1126/science.1083423", "authors": "Scherer SW., Cheung J., MacDonald JR., Osborne LR., Nakabayashi K., Herbrick JA., Carson AR., Parker-Katiraee L., Skaug J., Khaja R., Zhang J., Hudek AK., Li M., Haddad M., Duggan GE., Fernandez BA., Kanematsu E., Gentles S., Christopoulos CC., Choufani S., Kwasnicka D., Zheng XH., Lai Z., Nusskern D., Zhang Q., Gu Z., Lu F., Zeesman S., Nowaczyk MJ., Teshima I., Chitayat D., Shuman C., Weksberg R., Zackai EH., Grebe TA., Cox SR., Kirkpatrick SJ., Rahman N., Friedman JM., Heng HH., Pelicci PG., Lo-Coco F., Belloni E., Shaffer LG., Pober B., Morton CC., Gusella JF., Bruns GA., Korf BR., Quade BJ., Ligon AH., Ferguson H., Higgins AW., Leach NT., Herrick SR., Lemyre E., Farra CG., Kim HG., Summers AM., Gripp KW., Roberts W., Szatmari P., Winsor EJ., Grzeschik KH., Teebi A., Minassian BA., Kere J., Armengol L., Pujana MA., Estivill X., Wilson MD., Koop BF., Tosi S., Moore GE., Boright AP., Zlotorynski E., Kerem B., Kroisel PM., Petek E., Oscier DG., Mould SJ., D\u00f6hner H., D\u00f6hner K., Rommens JM., Vincent JB., Venter JC., Li PW., Mural RJ., Adams MD., Tsui LC.,", "journal": "Science", "doi": "10.1126/science.1083423", "created_at": "2021-09-30T08:25:06.136Z", "updated_at": "2021-09-30T08:25:06.136Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1780", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.109Z", "metadata": {"doi": "10.25504/FAIRsharing.n2xy00", "name": "siRecords", "status": "uncertain", "contacts": [{"contact-name": "General Contact", "contact-email": "siRecords@biolead.org"}], "homepage": "http://c1.accurascience.com/siRecords/", "identifier": 1780, "description": "siRecords is a collection of a diverse range of mammalian RNAi experiments . After choosing a gene, researchers can find all siRNA records targeting the gene, design a new siRNA targeting it, or submit siRNAs that have been tested. The resource also helps experimental RNAi researchers by providing them with the efficacy and other information about the siRNAs experiments designed and conducted previously against the genes of their interest. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "siRecords", "year-creation": 2004, "data-processes": [{"url": "http://sirecords.biolead.org/download_data.php", "name": "Download", "type": "data access"}, {"url": "http://sirecords.biolead.org/search_options.php", "name": "analyze", "type": "data access"}, {"url": "http://sirecords.biolead.org/input_1.php", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://sidrm.biolead.org", "name": "siDRM"}]}, "legacy-ids": ["biodbcore-000239", "bsg-d000239"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Ribonucleic acid", "Small interfering RNA", "Gene"], "taxonomies": ["Mammalia"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: siRecords", "abbreviation": "siRecords", "url": "https://fairsharing.org/10.25504/FAIRsharing.n2xy00", "doi": "10.25504/FAIRsharing.n2xy00", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: siRecords is a collection of a diverse range of mammalian RNAi experiments . After choosing a gene, researchers can find all siRNA records targeting the gene, design a new siRNA targeting it, or submit siRNAs that have been tested. The resource also helps experimental RNAi researchers by providing them with the efficacy and other information about the siRNAs experiments designed and conducted previously against the genes of their interest. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 320, "pubmed_id": 18996894, "title": "siRecords: a database of mammalian RNAi experiments and efficacies.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn817", "authors": "Ren Y., Gong W., Zhou H., Wang Y., Xiao F., Li T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn817", "created_at": "2021-09-30T08:22:54.374Z", "updated_at": "2021-09-30T08:22:54.374Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1900", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.300Z", "metadata": {"doi": "10.25504/FAIRsharing.tp9z4q", "name": "ArchDB", "status": "ready", "contacts": [{"contact-name": "Narcis Fernandez-Fuentes", "contact-email": "narcis.fernandez@gmail.com", "contact-orcid": "0000-0002-6421-1080"}], "homepage": "http://sbi.imim.es/archdb", "identifier": 1900, "description": "ArchDB is a compilation of structural classifications of loops extracted from known protein structures. The structural classification is based on the geometry and conformation of the loop. The geometry is defined by four internal variables and the type of regular flanking secondary structures, resulting in 10 different loop types. Loops in ArchDB have been classified using an improved version (Espadaler et al.) of the original ArchType program published in 1997 by Oliva et al.", "abbreviation": "ArchDB", "support-links": [{"url": "http://sbi.imim.es/archdb/faq/Q1", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://sbi.imim.es/cgi-bin/archdb//loops.pl?help=1", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://sbi.imim.es/archdb/download", "name": "Data download", "type": "data access"}], "associated-tools": [{"url": "http://sbi.imim.es/archdb/search/", "name": "search"}]}, "legacy-ids": ["biodbcore-000365", "bsg-d000365"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Secondary protein structure", "Classification", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: ArchDB", "abbreviation": "ArchDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.tp9z4q", "doi": "10.25504/FAIRsharing.tp9z4q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ArchDB is a compilation of structural classifications of loops extracted from known protein structures. The structural classification is based on the geometry and conformation of the loop. The geometry is defined by four internal variables and the type of regular flanking secondary structures, resulting in 10 different loop types. Loops in ArchDB have been classified using an improved version (Espadaler et al.) of the original ArchType program published in 1997 by Oliva et al.", "publications": [{"id": 404, "pubmed_id": 14681390, "title": "ArchDB: automated protein loop classification as a tool for structural genomics.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh002", "authors": "Espadaler J., Fernandez-Fuentes N., Hermoso A., Querol E., Aviles FX., Sternberg MJ., Oliva B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh002", "created_at": "2021-09-30T08:23:03.899Z", "updated_at": "2021-09-30T08:23:03.899Z"}, {"id": 1163, "pubmed_id": 24265221, "title": "ArchDB 2014: structural classification of loops in proteins.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1189", "authors": "Bonet J,Planas-Iglesias J,Garcia-Garcia J,Marin-Lopez MA,Fernandez-Fuentes N,Oliva B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1189", "created_at": "2021-09-30T08:24:29.313Z", "updated_at": "2021-09-30T11:29:01.502Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1786", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.454Z", "metadata": {"doi": "10.25504/FAIRsharing.9fz3g3", "name": "Tandem Repeats Database", "status": "ready", "contacts": [{"contact-name": "Gary Benson", "contact-email": "gbenson@bu.edu"}], "homepage": "http://tandem.bu.edu/cgi-bin/trdb/trdb.exe", "identifier": 1786, "description": "Tandem Repeats Database (TRDB) is a public repository of information on tandem repeats in genomic DNA and contains a variety of tools for their analysis.", "abbreviation": "TRDB", "support-links": [{"url": "ygelfand@bu.edu", "type": "Support email"}, {"url": "http://tandem.bu.edu/cgi-bin/trdb/trdb.exe?taskid=13", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://tandem.bu.edu/cgi-bin/trdb/trdb.exe?taskid=30", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "https://tandem.bu.edu/cgi-bin/irdb/irdb.exe?taskid=65", "name": "register", "type": "data access"}]}, "legacy-ids": ["biodbcore-000246", "bsg-d000246"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Tandem repeat"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Tandem Repeats Database", "abbreviation": "TRDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.9fz3g3", "doi": "10.25504/FAIRsharing.9fz3g3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Tandem Repeats Database (TRDB) is a public repository of information on tandem repeats in genomic DNA and contains a variety of tools for their analysis.", "publications": [{"id": 261, "pubmed_id": 17175540, "title": "TRDB--the Tandem Repeats Database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1013", "authors": "Gelfand Y., Rodriguez A., Benson G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1013", "created_at": "2021-09-30T08:22:48.191Z", "updated_at": "2021-09-30T08:22:48.191Z"}], "licence-links": [{"licence-name": "TRDB Login required for access", "licence-id": 792, "link-id": 263, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3674", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-10T09:46:25.957Z", "updated-at": "2021-12-13T20:35:02.527Z", "metadata": {"name": "LUCApedia", "status": "uncertain", "contacts": [{"contact-name": "Aaron Goldman", "contact-email": "agoldman@oberlin.edu", "contact-orcid": "0000-0003-1115-3697"}, {"contact-name": "Laura Landweber", "contact-email": "lfl@princeton.edu", "contact-orcid": null}], "homepage": "http://eebgroups.princeton.edu/lucapedia/index.html", "citations": [], "identifier": 3674, "description": "LUCApedia was established to aggregate and unify the results of studies aimed at describing early life through a variety of bioinformatics approaches and pair them with a number of enzymological characteristics predicted in previous studies to reflect catalysts important in the early evolution of life. Users may query the webserver for individual proteins to rapidly identify evidence of deep ancestry. Advanced users may download the database as a series of flat files and use it to discover trends in early enzymatic and metabolic evolution and to test hypotheses related to early life. Datasets corresponding to studies predicting characteristics of the Last Universal Common Ancestor (LUCA) have been mapped against a number of reference databases. This website's search and browse features are currently unavailable, but the download is working. Therefore the status has been updated to Uncertain. Please let us know if you have any information about the current status of this resource.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "http://eebgroups.princeton.edu/lucapedia/downloads/lucapedia_search_tutorial.pdf", "name": "Search Tutorial", "type": "Help documentation"}, {"url": "http://eebgroups.princeton.edu/lucapedia/downloads/lucapedia_documentation.pdf", "name": "General Documentation", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://eebgroups.princeton.edu/lucapedia/browse.html", "name": "Browse", "type": "data access"}, {"url": "http://eebgroups.princeton.edu/lucapedia/index.html", "name": "Search", "type": "data access"}, {"url": "http://eebgroups.princeton.edu/lucapedia/download.html", "name": "Download", "type": "data release"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Phylogenetics", "Biology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: LUCApedia", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3674", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LUCApedia was established to aggregate and unify the results of studies aimed at describing early life through a variety of bioinformatics approaches and pair them with a number of enzymological characteristics predicted in previous studies to reflect catalysts important in the early evolution of life. Users may query the webserver for individual proteins to rapidly identify evidence of deep ancestry. Advanced users may download the database as a series of flat files and use it to discover trends in early enzymatic and metabolic evolution and to test hypotheses related to early life. Datasets corresponding to studies predicting characteristics of the Last Universal Common Ancestor (LUCA) have been mapped against a number of reference databases. This website's search and browse features are currently unavailable, but the download is working. Therefore the status has been updated to Uncertain. Please let us know if you have any information about the current status of this resource.", "publications": [{"id": 3153, "pubmed_id": 23193296, "title": "LUCApedia: a database for the study of ancient life", "year": 2012, "url": "http://dx.doi.org/10.1093/nar/gks1217", "authors": "Goldman, Aaron David; Bernhard, Tess M.; Dolzhenko, Egor; Landweber, Laura F.; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1217", "created_at": "2021-12-10T09:54:47.364Z", "updated_at": "2021-12-10T09:54:47.364Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1967", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:18.098Z", "metadata": {"doi": "10.25504/FAIRsharing.b9st5p", "name": "Conserved Domain Database", "status": "ready", "contacts": [{"contact-name": "Aron Marchler-Bauer", "contact-email": "bauer@ncbi.nlm.nih.gov", "contact-orcid": "0000-0003-1516-0712"}], "homepage": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml", "identifier": 1967, "description": "The Conserved Domain Database (CDD) brings together several collections of multiple sequence alignments representing conserved domains, including NCBI-curated domains, which use 3D-structure information to explicitly to define domain boundaries and provide insights into sequence/structure/function relationships, as well as domain models imported from a number of external source databases (Pfam, SMART, COG, NCBI Protein Clusters, TIGRFAM, NCBIfam). NCBI-curated models are organized hierarchically into families, sub- and super-families, and come with annotation of functional sites.", "abbreviation": "CDD", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/Structure/cdd/docs/cdd_news.html", "name": "News", "type": "Blog/News"}, {"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd_help.shtml", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/Structure/cdd/docs/cdd_search.html", "name": "Search", "type": "data access"}, {"url": "ftp://ftp.ncbi.nih.gov/pub/mmdb/cdd", "name": "FTP Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/bwrpsb/bwrpsb.cgi", "name": "BATCH CD-Search", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/lexington/lexington.cgi", "name": "CDART (Conserved Domain Architecture Retrieval Tool)", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/Structure/cdtree/cdtree.shtml", "name": "CDTree (domain hierarchy editor) 3.1"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/CN3D/cn3d.shtml", "name": "Cn3D (structure viewer and alignment editor) 4.3.1"}, {"url": "https://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi", "name": "CD-Search (domain annotation for a single sequence)"}, {"url": "https://www.ncbi.nlm.nih.gov/Structure/bwrpsb/bwrpsb.cgi", "name": "BATCH CD-Search (domain annotation for a set of sequences)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010653", "name": "re3data:r3d100010653", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002077", "name": "SciCrunch:RRID:SCR_002077", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000433", "bsg-d000433"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Functional domain", "Molecular structure", "Protein structure", "Protein domain", "Annotation", "Multiple sequence alignment", "Sequence alignment", "Structure", "Protein", "Sequence feature", "Literature curation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Conserved Domain Database", "abbreviation": "CDD", "url": "https://fairsharing.org/10.25504/FAIRsharing.b9st5p", "doi": "10.25504/FAIRsharing.b9st5p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Conserved Domain Database (CDD) brings together several collections of multiple sequence alignments representing conserved domains, including NCBI-curated domains, which use 3D-structure information to explicitly to define domain boundaries and provide insights into sequence/structure/function relationships, as well as domain models imported from a number of external source databases (Pfam, SMART, COG, NCBI Protein Clusters, TIGRFAM, NCBIfam). NCBI-curated models are organized hierarchically into families, sub- and super-families, and come with annotation of functional sites.", "publications": [{"id": 266, "pubmed_id": 18984618, "title": "CDD: specific functional annotation with the Conserved Domain Database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn845", "authors": "Marchler-Bauer A., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn845", "created_at": "2021-09-30T08:22:48.765Z", "updated_at": "2021-09-30T08:22:48.765Z"}, {"id": 488, "pubmed_id": 27899674, "title": "CDD/SPARCLE: functional classification of proteins via subfamily domain architectures.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1129", "authors": "Marchler-Bauer A,Bo Y,Han L,He J,Lanczycki CJ,Lu S,Chitsaz F,Derbyshire MK,Geer RC,Gonzales NR,Gwadz M,Hurwitz DI,Lu F,Marchler GH,Song JS,Thanki N,Wang Z,Yamashita RA,Zhang D,Zheng C,Geer LY,Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1129", "created_at": "2021-09-30T08:23:13.073Z", "updated_at": "2021-09-30T11:28:46.793Z"}, {"id": 779, "pubmed_id": 23197659, "title": "CDD: conserved domains and protein three-dimensional structure", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1243", "authors": "Marchler-Bauer A., Zheng C., Chitsaz F., Derbyshire MK., Geer LY., Geer RC., Gonzales NR., Gwadz M., Hurwitz DI., Lanczycki CJ., Lu F., Lu S., Marchler GH., Song JS., Thanki N., Yamashita RA., Zhang D., Bryant SH.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1243", "created_at": "2021-09-30T08:23:45.837Z", "updated_at": "2021-09-30T08:23:45.837Z"}, {"id": 1056, "pubmed_id": 25414356, "title": "CDD: NCBI's conserved domain database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1221", "authors": "Marchler-Bauer A, Derbyshire MK, Gonzales NR, Lu S, Chitsaz F, Geer LY, Geer RC, He J, Gwadz M, Hurwitz DI, Lanczycki CJ, Lu F, Marchler GH, Song JS, Thanki N, Wang Z, Yamashita RA, Zhang D, Zheng C, Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1221", "created_at": "2021-09-30T08:24:16.947Z", "updated_at": "2021-09-30T08:24:16.947Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 271, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 272, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3240", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-11T13:02:02.000Z", "updated-at": "2021-11-24T13:17:38.761Z", "metadata": {"name": "OceanOPS", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "support@ocean-ops.org"}], "homepage": "https://www.ocean-ops.org/board", "identifier": 3240, "description": "The World Meteorological Organisation (WMO)-Intergovernmental Oceanographic Commission (IOC) Joint Centre for Oceanography and Marine Meteorology in situ Observations Programmes Support (OceanOPS, formerly named JCOMMOPS), provides a data portal to access integrated information, maps and tools to help coordinate and monitor global ocean observation efforts. The global ocean observing system provides millions of observations via OceanOPS to a rapidly growing number of users and stakeholders, including most major ocean, weather, and climate prediction centers worldwide. The analyses, forecasts, and products based on these ocean observations are relevant to a number of socio-economic sectors, especially in marine transportation, coastal communities, climate, agriculture, and healthy oceans.", "abbreviation": "OceanOPS", "support-links": [{"url": "https://youtu.be/2eU_cgKvV7w", "name": "CSV Upload Help", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?v=BT1KRWB7meA", "name": "How to Select Metadata", "type": "Video"}, {"url": "https://www.youtube.com/watch?v=f-Gb7JN251Q", "name": "How to Use the Registration Wizard", "type": "Video"}, {"url": "http://www.ocean-ops.org/reportcard2020/", "name": "2020 Report Card", "type": "Help documentation"}, {"url": "http://www.ocean-ops.org/strategy/", "name": "Strategic Plan 2021-25", "type": "Help documentation"}, {"url": "https://twitter.com/oceanops_goos", "name": "@oceanops_goos", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"url": "https://www.ocean-ops.org/board", "name": "Map and Tabular Interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-001754", "bsg-d001754"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Transportation Planning", "Maritime Engineering", "Meteorology", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France", "Worldwide"], "name": "FAIRsharing record for: OceanOPS", "abbreviation": "OceanOPS", "url": "https://fairsharing.org/fairsharing_records/3240", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Meteorological Organisation (WMO)-Intergovernmental Oceanographic Commission (IOC) Joint Centre for Oceanography and Marine Meteorology in situ Observations Programmes Support (OceanOPS, formerly named JCOMMOPS), provides a data portal to access integrated information, maps and tools to help coordinate and monitor global ocean observation efforts. The global ocean observing system provides millions of observations via OceanOPS to a rapidly growing number of users and stakeholders, including most major ocean, weather, and climate prediction centers worldwide. The analyses, forecasts, and products based on these ocean observations are relevant to a number of socio-economic sectors, especially in marine transportation, coastal communities, climate, agriculture, and healthy oceans.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2882", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-14T09:19:25.000Z", "updated-at": "2021-12-06T10:49:32.546Z", "metadata": {"doi": "10.25504/FAIRsharing.z0rqUk", "name": "Food and Agriculture Organization Corporate Statistical Database", "status": "ready", "contacts": [{"contact-name": "Francesco N Tubiello", "contact-email": "francesco.tubiello@fao.org", "contact-orcid": "0000-0003-4617-4690"}], "homepage": "http://www.fao.org/faostat/en/#data", "citations": [{"doi": "10.1088/1748-9326/8/1/015009", "publication-id": 526}], "identifier": 2882, "description": "Food and Agriculture Organization Corporate Statistical Database (FAOSTAT) provides free access to food and agriculture data for over 245 countries and territories and covers all FAO regional groupings from 1961 to the most recent year available.", "abbreviation": "FAOSTAT", "support-links": [{"url": "faostat@fao.org", "name": "FAO Helpdesk", "type": "Support email"}, {"url": "http://www.fao.org/faostat/en/#faq", "name": "FAOSTAT FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.fao.org/faostat/en/#definitions", "name": "Definitions and Standards", "type": "Help documentation"}, {"url": "https://twitter.com/faostatistics", "name": "@faostatistics", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Food_and_Agriculture_Organization_Corporate_Statistical_Database", "name": "FAOSTAT Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2012, "data-processes": [{"url": "http://www.fao.org/faostat/en/#data/", "name": "Agriculture - Total", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GE", "name": "Agriculture - Enteric Fermentation", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GM", "name": "Agriculture - Manure Management", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GU", "name": "Agriculture - Manure applied to soils", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GP", "name": "Agriculture - Manure left on Pasture", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GR", "name": "Agriculture - Rice Cultivation", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GY", "name": "Agriculture - Synthetic Fertilizers", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GA", "name": "Agriculture - Crop Residues", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GB", "name": "Agriculture - Burning Crop Residues", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GV", "name": "Agriculture - Cultivation of organic soils", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GF", "name": "Agriculture - Forest Land", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GH", "name": "Agriculture - Burning Savanna", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GN", "name": "Agriculture - Energy Use", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GL", "name": "Emissions - Land Use - Land Use Total", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GC", "name": "Emissions - Land Use - Cropland", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GG", "name": "Emissions - Land Use - Grassland", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/GI", "name": "Emissions - Land Use - Burning Biomass", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QV", "name": "Production - Value of Agricultural Production", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QI", "name": "Production - Production Indices", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QP", "name": "Production - Livestock Processed", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QL", "name": "Production - Livestock Primary", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QA", "name": "Production - Live Animals", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QD", "name": "Production - Processed", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#compare", "name": "General - Compare Data", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/QC", "name": "Production - Crops", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/TI", "name": "Trade - Trade Indices", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/TM", "name": "Trade - Detailed Trade Matrix", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/TA", "name": "Trade - Live Animals", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/TP", "name": "Trade - Crops and Livestock Products", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/CL", "name": "Food Balance - Food Supply - Livestock and Fish Primary Equivalent", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/CC", "name": "Food Balance - Food Supply - Crops Primary Equivalent", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/BL", "name": "Food Balance - Commodity Balances - Livestock and Fish Primary Equivalent", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/BC", "name": "Food Balance - Commodity Balances - Crops Primary Equivalent", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FBSH", "name": "Food Balance - Food Balances", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FBS", "name": "Food Balance - New Food Balances", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FS", "name": "Food Security - Suite of Food Security Indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/HS", "name": "Food Security - Indicators from Household Surveys (gender, area, socioeconomics)", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/PE", "name": "Prices - Exchange Rates Annual", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/PD", "name": "Prices - Deflators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/CP", "name": "Prices - Customer Price Indices", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/PA", "name": "Prices - Producer Prices (old series)", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/PP", "name": "Prices - Producer Prices", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/OE", "name": "Inputs - Employment Indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RL", "name": "Inputs - Land Use", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RT", "name": "Inputs - Pesticides Trade", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RP", "name": "Inputs - Pesticides Use", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RA", "name": "Inputs - Fertilizers Archive", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RFB", "name": "Inputs - Fertilizers by Product", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RFN", "name": "Inputs - Fertilizers by Nutrient", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/OA", "name": "Population - Annual Population", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/CISP", "name": "Investment - Country Investment Statistics Profile", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FDI", "name": "Investment - Foreign Direct Investment", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EA", "name": "Investment - Development Flows to Agriculture", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/IC", "name": "Investment - Credit to Agriculture", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/IG", "name": "Investment - Government Expenditure", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RY", "name": "Investment - Machinery Archive", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/RM", "name": "Investment - Machinery", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/MK", "name": "Macro Statistics - Macro Indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/CS", "name": "Macro Statistics - Capital Stock", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/ET", "name": "Agri-Environmental Indicators - Temperature Change", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EI", "name": "Agri-Environmental Indicators - Emissions Intensities", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EM", "name": "Agri-Environmental Indicators - Emissions Shares", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EP", "name": "Agri-Environmental Indicators - Pesticides Indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EMN", "name": "Agri-Environmental Indicators - Livestock Manure", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EK", "name": "Agri-Environmental Indicators - Livestock Patterns", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/LC", "name": "Agri-Environmental Indicators - Land Cover", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EL", "name": "Agri-Environmental Indicators - Land Use Indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/EF", "name": "Agri-Environmental Indicators - Fertilizers indicators", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#country", "name": "General - Browse by Country (Map View)", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FO", "name": "Forestry - Forestry Production and Change", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FT", "name": "Forestry - Trade Flows", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/AE", "name": "ASTI R&D Indicators - ASTI-Expenditures", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/AF", "name": "ASTI R&D Indicators - ASTI Researchers", "type": "data access"}, {"url": "http://www.fao.org/faostat/en/#data/FA", "name": "Emergency Response - Food Aid Shipments (WFP)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010847", "name": "re3data:r3d100010847", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006914", "name": "SciCrunch:RRID:SCR_006914", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001383", "bsg-d001383"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Forest Management", "Animal Breeding", "Animal Husbandry", "Food Security", "Agriculture"], "domains": ["Food", "Environmental contaminant"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Grassland Research"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Food and Agriculture Organization Corporate Statistical Database", "abbreviation": "FAOSTAT", "url": "https://fairsharing.org/10.25504/FAIRsharing.z0rqUk", "doi": "10.25504/FAIRsharing.z0rqUk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Food and Agriculture Organization Corporate Statistical Database (FAOSTAT) provides free access to food and agriculture data for over 245 countries and territories and covers all FAO regional groupings from 1961 to the most recent year available.", "publications": [{"id": 526, "pubmed_id": null, "title": "The FAOSTAT database of greenhouse gas emissions from agriculture", "year": 2013, "url": "http://doi.org/10.1088/1748-9326/8/1/015009", "authors": "Tubiello, F.N. et al", "journal": "Environmental Research Letters", "doi": "10.1088/1748-9326/8/1/015009", "created_at": "2021-09-30T08:23:17.384Z", "updated_at": "2021-09-30T08:23:17.384Z"}, {"id": 1333, "pubmed_id": null, "title": "Greenhouse Gas Emissions Due to Agriculture", "year": 2019, "url": "http://doi.org/10.1016/B978-0-08-100596-5.21996-3", "authors": "Tubiello F.N.", "journal": "Elsevier Encyclopedia of Food Systems", "doi": "10.1016/B978-0-08-100596-5.21996-3", "created_at": "2021-09-30T08:24:49.187Z", "updated_at": "2021-09-30T08:24:49.187Z"}, {"id": 3036, "pubmed_id": 25580828, "title": "The Contribution of Agriculture, Forestry and other Land Use activities to Global Warming, 1990-2012.", "year": 2015, "url": "http://doi.org/10.1111/gcb.12865", "authors": "Tubiello FN,Salvatore M,Ferrara AF,House J,Federici S,Rossi S,Biancalani R,Condor Golec RD,Jacobs H,Flammini A,Prosperi P,Cardenas-Galindo P,Schmidhuber J,Sanz Sanchez MJ,Srivastava N,Smith P", "journal": "Glob Chang Biol", "doi": "10.1111/gcb.12865", "created_at": "2021-09-30T08:28:14.133Z", "updated_at": "2021-09-30T08:28:14.133Z"}], "licence-links": [{"licence-name": "FAO copyright", "licence-id": 311, "link-id": 1884, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1874", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:12.210Z", "metadata": {"doi": "10.25504/FAIRsharing.rnx28e", "name": "Expression Database in 4D", "status": "deprecated", "contacts": [{"contact-name": "Yannick Haudry", "contact-email": "yannick.haudry@embl.de"}], "homepage": "http://4dx.embl.de/4DXpress", "identifier": 1874, "description": "This database provides a platform to query and compare gene expression data during the development of the major model animals (zebrafish, drosophila, medaka, mouse). The high resolution expression data was acquired through whole mount in situ hybridsation-, antibody- or transgenic experiments.", "abbreviation": "4DXpress", "support-links": [{"url": "http://4dx.embl.de/4DXpress/reg/all/faq.do", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://4dx.embl.de/4DXpress/reg/all/help.do", "type": "Help documentation"}], "data-processes": [{"url": "http://4dx.embl.de/4DXpress/reg/all/download.do", "name": "Download", "type": "data access"}, {"url": "http://4dx.embl.de/4DXpress/reg/all/prepareOntologySearch/gene.do", "name": "browse", "type": "data access"}, {"url": "http://4dx.embl.de/4DXpress/reg/all/prepareIdSearch/gene.do", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://4dx.embl.de/4DXpress/reg/all/prepareSearch/blast.do", "name": "BLAST"}], "deprecation-date": "2015-04-10", "deprecation-reason": "This resource is no longer maintained. Please contact us at biosharing-contact-us@lists.sf.net if you have any information relating to the activity of this database."}, "legacy-ids": ["biodbcore-000337", "bsg-d000337"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "In situ hybridization"], "taxonomies": ["Bilateria"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Expression Database in 4D", "abbreviation": "4DXpress", "url": "https://fairsharing.org/10.25504/FAIRsharing.rnx28e", "doi": "10.25504/FAIRsharing.rnx28e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database provides a platform to query and compare gene expression data during the development of the major model animals (zebrafish, drosophila, medaka, mouse). The high resolution expression data was acquired through whole mount in situ hybridsation-, antibody- or transgenic experiments.", "publications": [{"id": 389, "pubmed_id": 17916571, "title": "4DXpress: a database for cross-species expression pattern comparisons.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm797", "authors": "Haudry Y., Berube H., Letunic I., Weeber PD., Gagneur J., Girardot C., Kapushesky M., Arendt D., Bork P., Brazma A., Furlong EE., Wittbrodt J., Henrich T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm797", "created_at": "2021-09-30T08:23:02.183Z", "updated_at": "2021-09-30T08:23:02.183Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 352, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3654", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-02T09:58:02.958Z", "updated-at": "2021-12-07T14:13:56.118Z", "metadata": {"name": "SCAR Antarctic Biodiversity Portal", "status": "ready", "contacts": [{"contact-name": "Anton Van de Putte", "contact-email": "anton.vandeputte@kuleuven.be", "contact-orcid": "0000-0003-1336-5554"}], "homepage": "https://www.biodiversity.aq/", "citations": [], "identifier": 3654, "description": "Antarctic marine and terrestrial biodiversity data is widely scattered, patchy and often not readily accessible. In many cases the data is in danger of being irretrievably lost. Biodiversity.aq establishes and supports a distributed system of interoperable databases, giving easy access through a single internet portal to a set of resources relevant to research, conservation and management pertaining to Antarctic biodiversity. biodiversity.aq provides access to both marine and terrestrial Antarctic biodiversity data.", "abbreviation": null, "access-points": [{"url": "https://data.biodiversity.aq/api/v1.0/swagger/", "name": "Antarctic Biodiversity Data Portal API", "type": "REST", "example-url": "https://github.com/data-biodiversity-aq/notebooks/blob/master/data-biodiversity-aq-api/demo.ipynb", "documentation-url": null}], "data-curation": {}, "support-links": [{"url": "https://www.biodiversity.aq/how-to/webinar-series-biodiversity-data-field-research/", "name": "Webinar series", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "https://www.biodiversity.aq/find-data/", "name": "Access Data", "type": "data access"}, {"url": "https://www.biodiversity.aq/publish/", "name": "Submit", "type": "data access"}], "associated-tools": [{"url": "https://www.biodiversity.aq/tools/r-packages/", "name": "R-packages "}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011696", "name": "re3data:r3d100011696", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Zoology", "Taxonomy", "Ecology", "Biodiversity", "Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium", "Antarctica"], "name": "FAIRsharing record for: SCAR Antarctic Biodiversity Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3654", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Antarctic marine and terrestrial biodiversity data is widely scattered, patchy and often not readily accessible. In many cases the data is in danger of being irretrievably lost. Biodiversity.aq establishes and supports a distributed system of interoperable databases, giving easy access through a single internet portal to a set of resources relevant to research, conservation and management pertaining to Antarctic biodiversity. biodiversity.aq provides access to both marine and terrestrial Antarctic biodiversity data.", "publications": [], "licence-links": [{"licence-name": "SCAR Antarctic Biodiversity Portal Terms of Use and Policies", "licence-id": 893, "link-id": 2523, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2754", "type": "fairsharing-records", "attributes": {"created-at": "2019-01-05T16:28:39.000Z", "updated-at": "2022-02-07T10:25:53.900Z", "metadata": {"doi": "10.25504/FAIRsharing.OTYQFw", "name": "WITHDRAWN: A Resource for Withdrawn and Discontinued Drugs", "status": "deprecated", "contacts": [{"contact-name": "Robert Prei\u00dfner", "contact-email": "robert.preissner@charite.de"}], "homepage": "http://cheminfo.charite.de/withdrawn/", "citations": [{"doi": "10.1093/nar/gkv1192", "pubmed-id": 26553801, "publication-id": 356}], "identifier": 2754, "description": "WITHDRAWN is a database of withdrawn and discontinued drugs that were recalled from global markets due to safety concerns. The database serves as a useful resource with information about the therapeutic (or primary) targets, off-targets, toxicity types and biological pathways associated with the drugs in the database. Furthermore, genetic variations (SNPs) associated with the therapeutic and off-targets are presented within to shed light on the common genetic variations that could lead to toxicity and thereby to drug withdrawal or discontinuation in specific populations.", "abbreviation": null, "support-links": [{"url": "http://cheminfo.charite.de/withdrawn/help_faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cheminfo.charite.de/withdrawn/statistics.html", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://cheminfo.charite.de/withdrawn/links.html", "name": "Dowload", "type": "data access"}], "deprecation-date": "2022-02-07", "deprecation-reason": "The homepage for this resource currently unavailable, but should be accessible in the future."}, "legacy-ids": ["biodbcore-001252", "bsg-d001252"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Metabolism", "Biomedical Science"], "domains": ["Drug report", "Drug", "Drug metabolic process", "Toxicity", "Target"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Drug Target"], "countries": ["Germany"], "name": "FAIRsharing record for: WITHDRAWN: A Resource for Withdrawn and Discontinued Drugs", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.OTYQFw", "doi": "10.25504/FAIRsharing.OTYQFw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WITHDRAWN is a database of withdrawn and discontinued drugs that were recalled from global markets due to safety concerns. The database serves as a useful resource with information about the therapeutic (or primary) targets, off-targets, toxicity types and biological pathways associated with the drugs in the database. Furthermore, genetic variations (SNPs) associated with the therapeutic and off-targets are presented within to shed light on the common genetic variations that could lead to toxicity and thereby to drug withdrawal or discontinuation in specific populations.", "publications": [{"id": 356, "pubmed_id": 26553801, "title": "WITHDRAWN--a resource for withdrawn and discontinued drugs.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1192", "authors": "Siramshetty VB,Nickel J,Omieczynski C,Gohlke BO,Drwal MN,Preissner R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1192", "created_at": "2021-09-30T08:22:58.280Z", "updated_at": "2021-09-30T11:28:45.709Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2128", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-19T10:53:50.279Z", "metadata": {"doi": "10.25504/FAIRsharing.92dt9d", "name": "ProteomeXchange", "status": "ready", "contacts": [{"contact-name": "Juan Antonio Vizcaino", "contact-email": "juan@ebi.ac.uk", "contact-orcid": "0000-0002-3905-4335"}], "homepage": "http://www.proteomexchange.org/", "citations": [{"doi": "10.1093/nar/gkw936", "pubmed-id": 27924013, "publication-id": 1630}], "identifier": 2128, "description": "The ProteomeXchange consortium has been set up to provide a single point of submission of MS proteomics data to the main existing proteomics repositories, and to encourage the data exchange between them for optimal data dissemination.", "abbreviation": "ProteomeXchange", "data-curation": {}, "support-links": [{"url": "http://www.proteomexchange.org/docs/guidelines_px.pdf", "name": "Data Submission Guidelines", "type": "Help documentation"}, {"url": "http://www.proteomexchange.org/pxcollaborativeagreement.pdf", "name": "Collaborative Agreement", "type": "Help documentation"}, {"url": "https://groups.google.com/forum/feed/proteomexchange/msgs/rss_v2_0.xml", "name": "RSS Feed", "type": "Blog/News"}, {"url": "https://tess.elixir-europe.org/materials/pride-and-proteomexchange-webinar", "name": "Pride and proteomexchange webinar", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/ProteomeXchange", "name": "@ProteomeXchange", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://www.proteomexchange.org/submission/index.html", "name": "Submit", "type": "data curation"}, {"url": "http://proteomecentral.proteomexchange.org/cgi/GetDataset", "name": "Browse and search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010692", "name": "re3data:r3d100010692", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004055", "name": "SciCrunch:RRID:SCR_004055", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000598", "bsg-d000598"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Peptide identification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China", "United States", "European Union", "Japan"], "name": "FAIRsharing record for: ProteomeXchange", "abbreviation": "ProteomeXchange", "url": "https://fairsharing.org/10.25504/FAIRsharing.92dt9d", "doi": "10.25504/FAIRsharing.92dt9d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ProteomeXchange consortium has been set up to provide a single point of submission of MS proteomics data to the main existing proteomics repositories, and to encourage the data exchange between them for optimal data dissemination.", "publications": [{"id": 99, "pubmed_id": 24727771, "title": "ProteomeXchange provides globally coordinated proteomics data submission and dissemination.", "year": 2014, "url": "http://doi.org/10.1038/nbt.2839", "authors": "Vizca\u00edno JA, Deutsch EW, Wang R, et al.", "journal": "Nat Biotechnol.", "doi": "10.1038/nbt.2839", "created_at": "2021-09-30T08:22:31.122Z", "updated_at": "2021-09-30T08:22:31.122Z"}, {"id": 1630, "pubmed_id": 27924013, "title": "The ProteomeXchange consortium in 2017: supporting the cultural change in proteomics public data deposition.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw936", "authors": "Deutsch EW,Csordas A,Sun Z,Jarnuczak A,Perez-Riverol Y,Ternent T,Campbell DS,Bernal-Llinares M,Okuda S,Kawano S,Moritz RL,Carver JJ,Wang M,Ishihama Y,Bandeira N,Hermjakob H,Vizcaino JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw936", "created_at": "2021-09-30T08:25:22.650Z", "updated_at": "2021-09-30T11:29:17.127Z"}, {"id": 3155, "pubmed_id": 31686107, "title": "The ProteomeXchange consortium in 2020: enabling 'big data' approaches in proteomics.", "year": 2020, "url": "https://doi.org/10.1093/nar/gkz984", "authors": "Deutsch EW, Bandeira N, Sharma V, Perez-Riverol Y, Carver JJ, Kundu DJ, Garc\u00eda-Seisdedos D, Jarnuczak AF, Hewapathirana S, Pullman BS, Wertz J, Sun Z, Kawano S, Okuda S, Watanabe Y, Hermjakob H, MacLean B, MacCoss MJ, Zhu Y, Ishihama Y, Vizca\u00edno JA", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkz984", "created_at": "2021-12-10T15:20:34.304Z", "updated_at": "2021-12-10T15:20:34.304Z"}], "licence-links": [{"licence-name": "EBI Privacy Policy", "licence-id": 258, "link-id": 2417, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2418, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2652", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-08T09:43:36.000Z", "updated-at": "2021-11-24T13:14:55.405Z", "metadata": {"doi": "10.25504/FAIRsharing.29EHM2", "name": "database of Disease-Gene Associations with annotated Relationships", "status": "ready", "contacts": [{"contact-name": "Pier Luigi Martelli", "contact-email": "pierluigi.martelli@unibo.it"}], "homepage": "http://edgar.biocomp.unibo.it/", "citations": [{"doi": "10.1186/s12864-017-3911-3", "pubmed-id": 28812536, "publication-id": 2189}], "identifier": 2652, "description": "The database of Disease-Gene Associations with annotated Relationships (eDGAR) is a database for collecting and organizing the data on gene/disease associations as derived from OMIM, Humsavar and ClinVar. For each heterogeneous or polygenic disease, eDGAR provides information on the relationship among the proteins encoded by the involved genes, including transcription factors and protein-protein interactions.", "abbreviation": "eDGAR", "support-links": [{"url": "giulia.babbi3@unibo.it", "name": "Contact Email", "type": "Support email"}, {"url": "http://edgar.biocomp.unibo.it/gene_disease_db/help_page.html", "name": "Help", "type": "Help documentation"}, {"url": "http://edgar.biocomp.unibo.it/gene_disease_db/tutorial.html", "name": "Tutorial", "type": "Help documentation"}, {"url": "http://edgar.biocomp.unibo.it/gene_disease_db/statistics.html", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://edgar.biocomp.unibo.it/cgi-bin/gene_disease_db/search.py?type=None&query=None", "name": "Search", "type": "data access"}, {"url": "http://edgar.biocomp.unibo.it/cgi-bin/gene_disease_db/main_table.py", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001143", "bsg-d001143"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Protein interaction", "Transcription factor", "Disease", "Gene-disease association"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: database of Disease-Gene Associations with annotated Relationships", "abbreviation": "eDGAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.29EHM2", "doi": "10.25504/FAIRsharing.29EHM2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database of Disease-Gene Associations with annotated Relationships (eDGAR) is a database for collecting and organizing the data on gene/disease associations as derived from OMIM, Humsavar and ClinVar. For each heterogeneous or polygenic disease, eDGAR provides information on the relationship among the proteins encoded by the involved genes, including transcription factors and protein-protein interactions.", "publications": [{"id": 2189, "pubmed_id": 28812536, "title": "eDGAR: a database of Disease-Gene Associations with annotated Relationships among genes.", "year": 2017, "url": "http://doi.org/10.1186/s12864-017-3911-3", "authors": "Babbi G,Martelli PL,Profiti G,Bovo S,Savojardo C,Casadio R", "journal": "BMC Genomics", "doi": "10.1186/s12864-017-3911-3", "created_at": "2021-09-30T08:26:26.772Z", "updated_at": "2021-09-30T08:26:26.772Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2396", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T14:59:51.000Z", "updated-at": "2021-11-24T13:17:23.200Z", "metadata": {"doi": "10.25504/FAIRsharing.fex4c8", "name": "Rfam", "status": "ready", "contacts": [{"contact-name": "Rfam Helpdesk", "contact-email": "rfam-help@ebi.ac.uk"}], "homepage": "http://rfam.xfam.org/", "identifier": 2396, "description": "The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence.", "abbreviation": "Rfam", "access-points": [{"url": "http://rfam.xfam.org/help#tabview=tab6", "name": "RESTful API", "type": "REST"}], "support-links": [{"url": "https://xfam.wordpress.com/tag/rfam/", "name": "Rfam Blog Posts", "type": "Blog/News"}, {"url": "rfam-help@ebi.ac.uk", "name": "rfam-help@ebi.ac.uk", "type": "Support email"}, {"url": "https://docs.rfam.org/en/latest/index.html", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/visualizing-rna-structures-and-alignments", "name": "Visualizing RNA Structures and Alignments", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/RfamDB", "name": "@RfamDB", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://rfam.xfam.org/search", "name": "Search", "type": "data access"}, {"url": "http://rfam.xfam.org/browse", "name": "Browse", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/Rfam", "name": "Download via FTP", "type": "data release"}]}, "legacy-ids": ["biodbcore-000877", "bsg-d000877"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics"], "domains": ["Cis element", "Multiple sequence alignment", "Ribonucleic acid", "RNA splicing", "Curated information", "Non-coding RNA", "Regulatory region"], "taxonomies": ["All"], "user-defined-tags": ["cis-regulatory modules"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Rfam", "abbreviation": "Rfam", "url": "https://fairsharing.org/10.25504/FAIRsharing.fex4c8", "doi": "10.25504/FAIRsharing.fex4c8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence.", "publications": [{"id": 2034, "pubmed_id": 25392425, "title": "Rfam 12.0: updates to the RNA families database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1063", "authors": "Nawrocki EP,Burge SW,Bateman A,Daub J,Eberhardt RY,Eddy SR,Floden EW,Gardner PP,Jones TA,Tate J,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1063", "created_at": "2021-09-30T08:26:09.053Z", "updated_at": "2021-09-30T11:29:26.686Z"}, {"id": 2778, "pubmed_id": 29112718, "title": "Rfam 13.0: shifting to a genome-centric resource for non-coding RNA families.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1038", "authors": "Kalvari I,Argasinska J,Quinones-Olvera N,Nawrocki EP,Rivas E,Eddy SR,Bateman A,Finn RD,Petrov AI", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1038", "created_at": "2021-09-30T08:27:41.519Z", "updated_at": "2021-09-30T11:29:44.095Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 403, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1652", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:06.616Z", "metadata": {"doi": "10.25504/FAIRsharing.ne6jza", "name": "zfishbook", "status": "ready", "contacts": [{"contact-name": "Karl Clark", "contact-email": "clark.karl@mayo.edu", "contact-orcid": "0000-0002-9637-0967"}], "homepage": "http://www.zfishbook.org", "identifier": 1652, "description": "Zfishbook is a real-time database of transposon-labeled mutants in zebrafish. This resource provides services for any size of GBT mutagenesis projects on zebrafish to encourage collaboration in the research community.", "abbreviation": "zfishbook", "support-links": [{"url": "http://www.zfishbook.org/profiles.php?uid=2", "type": "Contact form"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=newUserTutorialsDetails", "type": "Training documentation"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=newUserTutorialsDetails", "type": "Training documentation"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=newUserTutorialsDetails#registration", "type": "Training documentation"}], "year-creation": 2008, "data-processes": [{"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.zfishbook.org/search.php", "name": "database search", "type": "data access"}, {"name": "RSS", "type": "data access"}, {"url": "http://www.zfishbook.org/mediagallery/index.php", "name": "GBT line-based media gallery", "type": "data access"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=zfaontologyLookup", "name": "ZFA ontology image-tagging tool", "type": "data access"}, {"url": "http://www.zfishbook.org/staticpages/index.php?page=taggedGeneList", "name": "Tagged gene list with RSS feed", "type": "data access"}]}, "legacy-ids": ["biodbcore-000108", "bsg-d000108"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Life Science"], "domains": ["Expression data", "Transposon integration", "Phenotype"], "taxonomies": ["Danio rerio"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: zfishbook", "abbreviation": "zfishbook", "url": "https://fairsharing.org/10.25504/FAIRsharing.ne6jza", "doi": "10.25504/FAIRsharing.ne6jza", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Zfishbook is a real-time database of transposon-labeled mutants in zebrafish. This resource provides services for any size of GBT mutagenesis projects on zebrafish to encourage collaboration in the research community.", "publications": [{"id": 168, "pubmed_id": 20528262, "title": "SCORE imaging: specimen in a corrected optical rotational enclosure.", "year": 2010, "url": "http://doi.org/10.1089/zeb.2010.0660", "authors": "Petzold AM., Bedell VM., Boczek NJ., Essner JJ., Balciunas D., Clark KJ., Ekker SC.,", "journal": "Zebrafish", "doi": "10.1089/zeb.2010.0660", "created_at": "2021-09-30T08:22:38.448Z", "updated_at": "2021-09-30T08:22:38.448Z"}, {"id": 169, "pubmed_id": 19858493, "title": "Nicotine response genetics in the zebrafish.", "year": 2009, "url": "http://doi.org/10.1073/pnas.0908247106", "authors": "Petzold AM., Balciunas D., Sivasubbu S., Clark KJ., Bedell VM., Westcot SE., Myers SR., Moulder GL., Thomas MJ., Ekker SC.,", "journal": "Proc. Natl. Acad. Sci. U.S.A.", "doi": "10.1073/pnas.0908247106", "created_at": "2021-09-30T08:22:38.539Z", "updated_at": "2021-09-30T08:22:38.539Z"}, {"id": 1517, "pubmed_id": 21552255, "title": "In vivo protein trapping produces a functional expression codex of the vertebrate proteome.", "year": 2011, "url": "http://doi.org/10.1038/nmeth.1606", "authors": "Clark KJ., Balciunas D., Pogoda HM., Ding Y., Westcot SE., Bedell VM., Greenwood TM., Urban MD., Skuster KJ., Petzold AM., Ni J., Nielsen AL., Patowary A., Scaria V., Sivasubbu S., Xu X., Hammerschmidt M., Ekker SC.,", "journal": "Nat. Methods", "doi": "10.1038/nmeth.1606", "created_at": "2021-09-30T08:25:09.802Z", "updated_at": "2021-09-30T08:25:09.802Z"}, {"id": 1518, "pubmed_id": 16859902, "title": "Gene-breaking transposon mutagenesis reveals an essential role for histone H2afza in zebrafish larval development.", "year": 2006, "url": "http://doi.org/10.1016/j.mod.2006.06.002", "authors": "Sivasubbu S., Balciunas D., Davidson AE., Pickart MA., Hermanson SB., Wangensteen KJ., Wolbrink DC., Ekker SC.,", "journal": "Mech. Dev.", "doi": "10.1016/j.mod.2006.06.002", "created_at": "2021-09-30T08:25:09.911Z", "updated_at": "2021-09-30T08:25:09.911Z"}, {"id": 1519, "pubmed_id": 22067444, "title": "zfishbook: connecting you to a world of zebrafish revertible mutants.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr957", "authors": "Clark KJ,Argue DP,Petzold AM,Ekker SC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr957", "created_at": "2021-09-30T08:25:10.067Z", "updated_at": "2021-09-30T11:29:11.926Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1882", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:37.569Z", "metadata": {"doi": "10.25504/FAIRsharing.g4n8sw", "name": "PlasmoDB", "status": "ready", "contacts": [{"contact-name": "Michael Gottlieb", "contact-email": "mgottlieb@fnih.org"}], "homepage": "https://plasmodb.org", "citations": [{"doi": "10.1093/nar/gkn814", "pubmed-id": 18957442, "publication-id": 378}], "identifier": 1882, "description": "PlasmoDB is a genome database for the genus Plasmodium, a set of single-celled eukaryotic pathogens that cause human and animal diseases, including malaria.", "abbreviation": "PlasmoDB", "access-points": [{"url": "https://plasmodb.org/plasmo/app/static-content/content/PlasmoDB/webServices.html", "name": "PlasmoDB Web Services Documentation", "type": "REST"}], "support-links": [{"url": "https://plasmodb.org/plasmo/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://plasmodb.org/plasmo/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://plasmodb.org/plasmo/app/search/organism/GenomeDataTypes/result", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/VEuPathDB", "name": "@VEuPathDB", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://plasmodb.org/plasmo/app/static-content/dataSubmission.html", "name": "Submit", "type": "data curation"}, {"url": "https://plasmodb.org/plasmo/app/downloads/", "name": "Download", "type": "data release"}, {"url": "https://plasmodb.org/plasmo/app/search/transcript/GeneByLocusTag", "name": "Search by Gene ID", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011569", "name": "re3data:r3d100011569", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013331", "name": "SciCrunch:RRID:SCR_013331", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000347", "bsg-d000347"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Malaria", "Pathogen", "Genome"], "taxonomies": ["Plasmodium"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PlasmoDB", "abbreviation": "PlasmoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.g4n8sw", "doi": "10.25504/FAIRsharing.g4n8sw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PlasmoDB is a genome database for the genus Plasmodium, a set of single-celled eukaryotic pathogens that cause human and animal diseases, including malaria.", "publications": [{"id": 378, "pubmed_id": 18957442, "title": "PlasmoDB: a functional genomic database for malaria parasites.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn814", "authors": "Aurrecoechea C., Brestelli J., Brunk BP. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn814", "created_at": "2021-09-30T08:23:00.608Z", "updated_at": "2021-09-30T08:23:00.608Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2382, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2368", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-29T12:44:37.000Z", "updated-at": "2021-12-06T10:48:44.649Z", "metadata": {"doi": "10.25504/FAIRsharing.jr31ex", "name": "Face Of Fungi", "status": "ready", "contacts": [{"contact-name": "Subashini Chathumini", "contact-email": "schathumini@gmail.com", "contact-orcid": "0000-0002-8748-6562"}], "homepage": "http://www.facesoffungi.org/", "identifier": 2368, "description": "The Face Of Fungi database allows deposition of taxonomic data, phenotypic details and other useful data. Its aim is to enhance current taxonomic understanding and ultimately enable mycologists to gain better and updated insights into the current fungal classification system. In addition, the database allows access to comprehensive metadata including descriptions of voucher and type specimens.", "abbreviation": "FoF", "support-links": [{"url": "kdhyde3@gmail.com", "type": "Support email"}], "year-creation": 2014, "data-processes": [{"url": "http://www.facesoffungi.org/submit-additions-faces-fungi-phyla/", "name": "Submit Additions", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012263", "name": "re3data:r3d100012263", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000847", "bsg-d000847"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Taxonomic classification", "Phenotype"], "taxonomies": ["Ascomycota", "Basidiomycota", "Blastocladiomycota", "Chytridiomycota", "Fungi", "Glomeromycota", "Microsporidia", "Neocallimastigomycota"], "user-defined-tags": [], "countries": ["Thailand"], "name": "FAIRsharing record for: Face Of Fungi", "abbreviation": "FoF", "url": "https://fairsharing.org/10.25504/FAIRsharing.jr31ex", "doi": "10.25504/FAIRsharing.jr31ex", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Face Of Fungi database allows deposition of taxonomic data, phenotypic details and other useful data. Its aim is to enhance current taxonomic understanding and ultimately enable mycologists to gain better and updated insights into the current fungal classification system. In addition, the database allows access to comprehensive metadata including descriptions of voucher and type specimens.", "publications": [{"id": 1853, "pubmed_id": null, "title": "The Faces of Fungi database: fungal names linked with morphology, phylogeny and human impacts", "year": 2015, "url": "http://doi.org/10.1007/s13225-015-0351-8", "authors": "Jayasiri SC et al.", "journal": "Fungal Diversity", "doi": "10.1007/s13225-015-0351-8", "created_at": "2021-09-30T08:25:48.180Z", "updated_at": "2021-09-30T08:25:48.180Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1847", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:45.490Z", "metadata": {"doi": "10.25504/FAIRsharing.e58gcm", "name": "Chemical Component Dictionary", "status": "ready", "contacts": [{"contact-name": "Help desk", "contact-email": "pdbehelp@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/pdbe-srv/pdbechem/", "identifier": 1847, "description": "The Chemical Component Dictionary is an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", "abbreviation": "CCD", "support-links": [{"url": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/doc/chem_comp/help.htm", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/doc/chem_comp/diagram.htm", "name": "Data Model", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/pdbechem-searching-for-small-molecules-and-small-molecule-fragments", "name": "PDBeChem: Searching for small molecules and small molecule fragments", "type": "TeSS links to training materials"}], "year-creation": 2004, "data-processes": [{"url": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/search/searchPDB", "name": "search", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/msd/pdbechem/", "name": "Download via FTP", "type": "data release"}, {"url": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/search/latest", "name": "Browse Latest Ligand Releases", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/pdbe-site/pdbemotif/", "name": "PBDe Motif"}]}, "legacy-ids": ["biodbcore-000307", "bsg-d000307"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry"], "domains": ["Chemical structure", "Chemical entity", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Chemical Component Dictionary", "abbreviation": "CCD", "url": "https://fairsharing.org/10.25504/FAIRsharing.e58gcm", "doi": "10.25504/FAIRsharing.e58gcm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chemical Component Dictionary is an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", "publications": [{"id": 1598, "pubmed_id": 14681397, "title": "E-MSD: an integrated data resource for bioinformatics.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh078", "authors": "Golovin A,Oldfield TJ,Tate JG,Velankar S,Barton GJ,Boutselakis H,Dimitropoulos D,Fillon J,Hussain A,Ionides JM,John M,Keller PA,Krissinel E,McNeil P,Naim A,Newman R,Pajon A,Pineda J,Rachedi A,Copeland J,Sitnov A,Sobhany S,Suarez-Uruena A,Swaminathan GJ,Tagari M,Tromm S,Vranken W,Henrick K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh078", "created_at": "2021-09-30T08:25:19.185Z", "updated_at": "2021-09-30T11:29:15.245Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 817, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2379", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-17T10:14:00.000Z", "updated-at": "2021-11-24T13:19:34.043Z", "metadata": {"doi": "10.25504/FAIRsharing.ey49c6", "name": "REGULATOR", "status": "ready", "contacts": [{"contact-email": "charles.k.w@msn.com"}], "homepage": "http://www.bioinformatics.org/regulator", "identifier": 2379, "description": "REGULATOR is a metazoan transcription factor (TF) and maternal factor resource, specifically designed for developmental biology studies. Maternal factors were expressed in unfertilized eggs, and gradually reduced as time goes on. In order to reduce the search space of developmentally important genes, we only focused on those specifically expressed genes in egg stages, whose expression value \u2265 8 times than the mean value of others. There are ~77 metazoan species in the current database. The identification of TFs was based on statistical information similarity of protein features.", "abbreviation": "REGULATOR", "support-links": [{"url": "http://www.bioinformatics.org/regulator/page.php?act=help", "type": "Help documentation"}, {"url": "http://www.bioinformatics.org/regulator/page.php?act=about", "type": "Help documentation"}], "year-creation": 2015, "associated-tools": [{"url": "http://www.bioinformatics.org/regulator/page.php?act=browse", "name": "Browse Data"}, {"url": "http://www.bioinformatics.org/regulator/page.php?act=search", "name": "Search Data"}, {"url": "http://www.bioinformatics.org/regulator/page.php?act=download", "name": "Download Data"}]}, "legacy-ids": ["biodbcore-000858", "bsg-d000858"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Developmental Biology", "Life Science"], "domains": ["Transcription factor"], "taxonomies": ["Metazoa"], "user-defined-tags": ["Maternal Factor (MF)"], "countries": ["Japan"], "name": "FAIRsharing record for: REGULATOR", "abbreviation": "REGULATOR", "url": "https://fairsharing.org/10.25504/FAIRsharing.ey49c6", "doi": "10.25504/FAIRsharing.ey49c6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: REGULATOR is a metazoan transcription factor (TF) and maternal factor resource, specifically designed for developmental biology studies. Maternal factors were expressed in unfertilized eggs, and gradually reduced as time goes on. In order to reduce the search space of developmentally important genes, we only focused on those specifically expressed genes in egg stages, whose expression value \u2265 8 times than the mean value of others. There are ~77 metazoan species in the current database. The identification of TFs was based on statistical information similarity of protein features.", "publications": [{"id": 1985, "pubmed_id": 25880930, "title": "REGULATOR: a database of metazoan transcription factors and maternal factors for developmental studies.", "year": 2015, "url": "http://doi.org/10.1186/s12859-015-0552-x", "authors": "Wang K,Nishida H", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-015-0552-x", "created_at": "2021-09-30T08:26:03.432Z", "updated_at": "2021-09-30T08:26:03.432Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1889", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.002Z", "metadata": {"doi": "10.25504/FAIRsharing.aftff2", "name": "The Gene Index Project", "status": "deprecated", "contacts": [{"contact-name": "John Quackenbush", "contact-email": "johnq@jimmy.harvard.edu", "contact-orcid": "0000-0002-2702-5879"}], "homepage": "http://compbio.dfci.harvard.edu/tgi/", "identifier": 1889, "description": "The goal of The Gene Index Project is to use the available EST and gene sequences, along with the reference genomes wherever available, to provide an inventory of likely genes and their variants and to annotate these with information regarding the functional roles played by these genes and their products.", "abbreviation": "TIGR_TGI", "support-links": [{"url": "http://compbio.dfci.harvard.edu/cgi-bin/tgi/contact_us_zn.pl?refer_text=DFCI%20-%20Gene%20Indices%20-%20EGO", "type": "Contact form"}, {"url": "http://compbio.dfci.harvard.edu/tgi/gifaq.html", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://compbio.dfci.harvard.edu/cgi-bin/magic/p1.pl", "name": "search", "type": "data access"}, {"url": "ftp://occams.dfci.harvard.edu/pub/bio/tgi/data", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://compbio.dfci.harvard.edu/tgi/ncbi/blast/blast.html", "name": "BLAST"}], "deprecation-date": "2016-12-23", "deprecation-reason": "As of July 2014 the resource is no longer being maintained as funding ended in 2010."}, "legacy-ids": ["biodbcore-000354", "bsg-d000354"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Gene Index Project", "abbreviation": "TIGR_TGI", "url": "https://fairsharing.org/10.25504/FAIRsharing.aftff2", "doi": "10.25504/FAIRsharing.aftff2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of The Gene Index Project is to use the available EST and gene sequences, along with the reference genomes wherever available, to provide an inventory of likely genes and their variants and to annotate these with information regarding the functional roles played by these genes and their products.", "publications": [{"id": 1533, "pubmed_id": 15608288, "title": "The TIGR Gene Indices: clustering and assembling EST and known genes and integration with eukaryotic genomes.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki064", "authors": "Lee Y,Tsai J,Sunkara S,Karamycheva S,Pertea G,Sultana R,Antonescu V,Chan A,Cheung F,Quackenbush J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki064", "created_at": "2021-09-30T08:25:11.650Z", "updated_at": "2021-09-30T11:29:12.918Z"}, {"id": 1540, "pubmed_id": 10592205, "title": "The TIGR gene indices: reconstruction and representation of expressed gene sequences.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.141", "authors": "Quackenbush J,Liang F,Holt I,Pertea G,Upton J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.141", "created_at": "2021-09-30T08:25:12.491Z", "updated_at": "2021-09-30T11:29:13.010Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1181, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2956", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-20T13:28:34.000Z", "updated-at": "2022-02-08T10:39:37.822Z", "metadata": {"doi": "10.25504/FAIRsharing.37b795", "name": "COVID-19 Drug Interactions", "status": "ready", "contacts": [{"contact-name": "David MacEwan", "contact-email": "D.Macewan@liverpool.ac.uk", "contact-orcid": "0000-0002-2879-0935"}], "homepage": "https://www.covid19-druginteractions.org/", "identifier": 2956, "description": "The Liverpool Drug Interaction Group (based at the University of Liverpool, UK), in collaboration with the University Hospital of Basel (Switzerland) and Radboud UMC (Netherlands), have produced various materials in PDF format to aid the use of experimental agents in the treatment of COVID-19.", "abbreviation": null, "year-creation": 2020, "data-processes": [{"url": "https://www.covid19-druginteractions.org/", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013299", "name": "re3data:r3d100013299", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001460", "bsg-d001460"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Development", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Drug interaction"], "taxonomies": ["Coronaviridae", "Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: COVID-19 Drug Interactions", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.37b795", "doi": "10.25504/FAIRsharing.37b795", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Liverpool Drug Interaction Group (based at the University of Liverpool, UK), in collaboration with the University Hospital of Basel (Switzerland) and Radboud UMC (Netherlands), have produced various materials in PDF format to aid the use of experimental agents in the treatment of COVID-19.", "publications": [], "licence-links": [{"licence-name": "HIV Privacy Notice", "licence-id": 396, "link-id": 65, "relation": "undefined"}, {"licence-name": "HIV Drug Interactions Terms and Conditions", "licence-id": 394, "link-id": 66, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3035", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-19T09:08:16.000Z", "updated-at": "2021-12-06T10:47:31.234Z", "metadata": {"name": "U.S. Census Bureau TIGER/Line Shapefiles and TIGER/Line\u00ae Files", "status": "ready", "homepage": "https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html", "identifier": 3035, "description": "The Census Bureau releases TIGER/Line shapefiles and metadata each year to the public. TIGER/Line shapefiles are spatial extracts from the Census Bureau\u2019s MAF/TIGER database. They contain features such as roads, railroads, hydrographic features and legal and statistical boundaries.", "support-links": [{"url": "https://www.census.gov/about/contact-us.html", "type": "Contact form"}, {"url": "https://twitter.com/uscensusbureau", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://www.census.gov/cgi-bin/geo/shapefiles/index.php", "name": "Browse", "type": "data access"}, {"url": "ftp://ftp2.census.gov/geo/tiger", "name": "Download FTP", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011313", "name": "re3data:r3d100011313", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001543", "bsg-d001543"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Humanities and Social Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geospatial Data"], "countries": ["United States"], "name": "FAIRsharing record for: U.S. Census Bureau TIGER/Line Shapefiles and TIGER/Line\u00ae Files", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3035", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Census Bureau releases TIGER/Line shapefiles and metadata each year to the public. TIGER/Line shapefiles are spatial extracts from the Census Bureau\u2019s MAF/TIGER database. They contain features such as roads, railroads, hydrographic features and legal and statistical boundaries.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1742", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:10.344Z", "metadata": {"doi": "10.25504/FAIRsharing.kn4ycg", "name": "AgBase", "status": "deprecated", "contacts": [{"contact-name": "Fiona M. McCarthy", "contact-email": "fmccarthy@cvm.msstate.edu"}], "homepage": "http://www.agbase.msstate.edu/", "identifier": 1742, "description": "AgBase is a curated, open-source, Web-accessible resource for functional analysis of agricultural plant and animal gene products.", "abbreviation": "AgBase", "support-links": [{"url": "agbase@hpc.msstate.edu", "type": "Support email"}, {"url": "http://www.agbase.msstate.edu/cgi-bin/help/index.pl", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://www.agbase.msstate.edu/cgi-bin/download.pl", "name": "Download", "type": "data access"}, {"name": "Manual and automated curation", "type": "data curation"}, {"url": "http://www.agbase.msstate.edu/cgi-bin/gobrowser.cgi", "name": "browse", "type": "data access"}, {"url": "http://www.agbase.msstate.edu/cgi-bin/generateSearchPage.pl", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.agbase.msstate.edu/cgi-bin/generateBlastPage.pl", "name": "BLAST"}, {"url": "http://www.agbase.msstate.edu/cgi-bin/tools/index.cgi", "name": "AgBase Tools"}], "deprecation-date": "2021-9-17", "deprecation-reason": "AgBase became Host Pathogen Interaction Database, and therefore this record has been deprecated."}, "legacy-ids": ["biodbcore-000200", "bsg-d000200"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Agriculture", "Life Science"], "domains": ["Annotation", "Animal research", "Gene"], "taxonomies": ["Metazoa", "Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: AgBase", "abbreviation": "AgBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.kn4ycg", "doi": "10.25504/FAIRsharing.kn4ycg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AgBase is a curated, open-source, Web-accessible resource for functional analysis of agricultural plant and animal gene products.", "publications": [{"id": 256, "pubmed_id": 21075795, "title": "AgBase: supporting functional modeling in agricultural organisms.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1115", "authors": "McCarthy FM., Gresham CR., Buza TJ., Chouvarine P., Pillai LR., Kumar R., Ozkan S., Wang H., Manda P., Arick T., Bridges SM., Burgess SC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1115", "created_at": "2021-09-30T08:22:47.624Z", "updated_at": "2021-09-30T08:22:47.624Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2235", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-19T12:18:20.000Z", "updated-at": "2021-11-24T13:17:50.980Z", "metadata": {"doi": "10.25504/FAIRsharing.fe9kyy", "name": "GREENC", "status": "ready", "contacts": [{"contact-name": "Riccardo Aiese Cigliano", "contact-email": "raiesecigliano@sequentiabiotech.com", "contact-orcid": "0000-0002-9058-6994"}], "homepage": "http://greenc.sciencedesigners.com/", "identifier": 2235, "description": "We developed a pipeline to annotate lncRNAs (Long non-coding RNAs) and applied it to 37 plant species and six algae, resulting in the annotation of more than 120 000 lncRNAs. To facilitate the study of lncRNAs for the plant research community, the information gathered is organised in the Green Non-Coding Database.", "abbreviation": "GREENC", "access-points": [{"url": "http://greenc.sciencedesigners.com/api/", "name": "GreenNC REST API", "type": "REST"}], "support-links": [{"url": "http://greenc.sciencedesigners.com/wiki/Email", "type": "Contact form"}, {"url": "http://greenc.sciencedesigners.com/wiki/Help", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://greenc.sciencedesigners.com/wiki/Special:Categories", "name": "browse", "type": "data access"}, {"url": "http://greenc.sciencedesigners.com/wiki/Search", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://greenc.sciencedesigners.com/wiki/BLAST", "name": "blast"}]}, "legacy-ids": ["biodbcore-000709", "bsg-d000709"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Annotation", "Long non-coding RNA"], "taxonomies": ["Algae", "Viridiplantae"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: GREENC", "abbreviation": "GREENC", "url": "https://fairsharing.org/10.25504/FAIRsharing.fe9kyy", "doi": "10.25504/FAIRsharing.fe9kyy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: We developed a pipeline to annotate lncRNAs (Long non-coding RNAs) and applied it to 37 plant species and six algae, resulting in the annotation of more than 120 000 lncRNAs. To facilitate the study of lncRNAs for the plant research community, the information gathered is organised in the Green Non-Coding Database.", "publications": [{"id": 1521, "pubmed_id": 26578586, "title": "GREENC: a Wiki-based database of plant lncRNAs.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1215", "authors": "Paytuvi Gallart A,Hermoso Pulido A,Anzar Martinez de Lagran I,Sanseverino W,Aiese Cigliano R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1215", "created_at": "2021-09-30T08:25:10.317Z", "updated_at": "2021-09-30T11:29:12.161Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3125", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-15T10:31:44.000Z", "updated-at": "2021-12-06T10:47:35.454Z", "metadata": {"name": "U.S. Energy Information Administration", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "InfoCtr@eia.gov"}], "homepage": "https://www.eia.gov/", "identifier": 3125, "description": "The U.S. Energy Information Administration (EIA) collects, analyzes, and disseminates independent and impartial energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment.", "abbreviation": "EIA", "access-points": [{"url": "https://www.eia.gov/opendata/qb.php", "name": "API Query Browser", "type": "Other"}], "support-links": [{"url": "https://www.facebook.com/eiagov/", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.eia.gov/tools/emailupdates/", "name": "Subscribe to Mailing Lists", "type": "Mailing list"}, {"url": "https://www.linkedin.com/company/u-s-energy-information-administration/", "name": "LinkedIn", "type": "Help documentation"}, {"url": "https://www.youtube.com/c/EIAgovUS", "name": "Youtube", "type": "Video"}, {"url": "https://www.flickr.com/photos/eiagov/", "name": "Flickr", "type": "Help documentation"}, {"url": "https://www.eia.gov/tools/rssfeeds/", "name": "RSS Feed", "type": "Blog/News"}, {"url": "https://www.eia.gov/tools/glossary/index.php", "name": "Glossary", "type": "Training documentation"}, {"url": "https://twitter.com/EIAgov", "name": "@EIAgov", "type": "Twitter"}], "year-creation": 1974, "data-processes": [{"url": "https://www.eia.gov/about/information_quality_guidelines.php", "name": "Information Quality Guidelines", "type": "data curation"}, {"url": "https://www.eia.gov/tools/", "name": "Data browser", "type": "data access"}], "associated-tools": [{"url": "https://www.eia.gov/tools/", "name": "Data Tools, Apps, and Maps"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010227", "name": "re3data:r3d100010227", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001635", "bsg-d001635"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Economics", "Environmental Science", "Engineering Science", "Construction Engineering", "Geography", "Energy Engineering", "Building Engineering Physics", "Architecture", "Chemistry", "Earth Science", "Physics", "Power Engineering"], "domains": ["Bioenergy"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Alternative Fuel", "CO2 emission", "coal", "Electricity", "Natural gas", "nuclear", "petroleum", "Pollution", "Renewable fuel", "uranium"], "countries": ["United States"], "name": "FAIRsharing record for: U.S. Energy Information Administration", "abbreviation": "EIA", "url": "https://fairsharing.org/fairsharing_records/3125", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The U.S. Energy Information Administration (EIA) collects, analyzes, and disseminates independent and impartial energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment.", "publications": [], "licence-links": [{"licence-name": "U.S. Energy Information Administration Open Data", "licence-id": 831, "link-id": 2278, "relation": "undefined"}, {"licence-name": "U.S. Energy Information Administration Privacy Statement and Security Polic", "licence-id": 832, "link-id": 2279, "relation": "undefined"}, {"licence-name": "U.S. Energy Information Administration Copyrights and Reuse", "licence-id": 830, "link-id": 2280, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1624", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.450Z", "metadata": {"doi": "10.25504/FAIRsharing.284kre", "name": "The DNA Replication Origin Database", "status": "ready", "contacts": [{"contact-name": "Conrad A. Nieduszynski", "contact-email": "conrad@oridb.org", "contact-orcid": "0000-0003-2001-076X"}], "homepage": "http://cerevisiae.oridb.org/", "identifier": 1624, "description": "This database summarizes our knowledge of replication origins in the budding yeast Saccharomyces cerevisiae. Each proposed origin site has been assigned a Status (Confirmed, Likely, or Dubious) expressing the confidence that the site genuinely corresponds to an origin.", "abbreviation": "OriDB", "support-links": [{"url": "http://cerevisiae.oridb.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cerevisiae.oridb.org/help.php", "type": "Help documentation"}, {"url": "http://pombe.oridb.org/help.php", "type": "Help documentation"}], "data-processes": [{"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "file download(tab-delimited,CSV,images)", "type": "data access"}, {"url": "http://cerevisiae.oridb.org/download_data.php", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000080", "bsg-d000080"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Genome"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: The DNA Replication Origin Database", "abbreviation": "OriDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.284kre", "doi": "10.25504/FAIRsharing.284kre", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database summarizes our knowledge of replication origins in the budding yeast Saccharomyces cerevisiae. Each proposed origin site has been assigned a Status (Confirmed, Likely, or Dubious) expressing the confidence that the site genuinely corresponds to an origin.", "publications": [{"id": 136, "pubmed_id": 17065467, "title": "OriDB: a DNA replication origin database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl758", "authors": "Nieduszynski CA., Hiraga S., Ak P., Benham CJ., Donaldson AD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl758", "created_at": "2021-09-30T08:22:34.880Z", "updated_at": "2021-09-30T08:22:34.880Z"}, {"id": 503, "pubmed_id": 22121216, "title": "OriDB, the DNA replication origin database updated and extended.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1091", "authors": "Siow CC., Nieduszynska SR., M\u00fcller CA., Nieduszynski CA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1091", "created_at": "2021-09-30T08:23:14.677Z", "updated_at": "2021-09-30T08:23:14.677Z"}], "licence-links": [{"licence-name": "OriDB Attribution required", "licence-id": 641, "link-id": 123, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2338", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T09:29:53.000Z", "updated-at": "2021-11-24T13:14:10.673Z", "metadata": {"doi": "10.25504/FAIRsharing.x6nr7d", "name": "Tropical Data Hub", "status": "ready", "contacts": [{"contact-name": "Belinda Weaver", "contact-email": "b.weaver@qcif.edu.au"}], "homepage": "https://tropicaldatahub.org/", "identifier": 2338, "description": "The Tropical Data Hub (TDH) is an open portal enabling researchers to submit information relating to the tropics in an open and collaborative way. The TDH complements existing data repositories and will come to be acknowledged as the definitive source of information relating to the tropics, both within Australia and internationally. The information available through within the TDH relates to the physical and natural environment, societies and communities (e.g. linguistic and cultural data), and economies. The use of metadata will ensure that the TDH is readily accessible to governments, researchers and the business sector.", "abbreviation": "TDH"}, "legacy-ids": ["biodbcore-000816", "bsg-d000816"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biodiversity", "Population Genetics"], "domains": ["Tropical", "Climate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Tropical Data Hub", "abbreviation": "TDH", "url": "https://fairsharing.org/10.25504/FAIRsharing.x6nr7d", "doi": "10.25504/FAIRsharing.x6nr7d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Tropical Data Hub (TDH) is an open portal enabling researchers to submit information relating to the tropics in an open and collaborative way. The TDH complements existing data repositories and will come to be acknowledged as the definitive source of information relating to the tropics, both within Australia and internationally. The information available through within the TDH relates to the physical and natural environment, societies and communities (e.g. linguistic and cultural data), and economies. The use of metadata will ensure that the TDH is readily accessible to governments, researchers and the business sector.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2889", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-21T13:39:57.000Z", "updated-at": "2022-02-10T13:19:00.123Z", "metadata": {"doi": "10.25504/FAIRsharing.9b63c9", "name": "Catalogue of Life", "status": "ready", "contacts": [{"contact-name": "COL Support", "contact-email": "support@sp2000.org"}], "homepage": "https://www.catalogueoflife.org/", "citations": [], "identifier": 2889, "description": "The Catalogue of Life (COL) stores information on species and their distribution across the globe. It consists of a single integrated species checklist and taxonomic hierarchy. The Catalogue holds essential information on the names, relationships and distributions of over 1.8 million species. This figure continues to rise as information is compiled from diverse sources around the world. The Catalogue of Life provides critical species information on: synonymy enabling the effective referral of alternative species names to an accepted name; higher taxa within which a species is clustered; and distribution identifying the global regions from which a species is known.", "abbreviation": "COL", "access-points": [{"url": "https://www.catalogueoflife.org/content/web-services", "name": "EOL Web Services", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "http://blog.catalogueoflife.org/", "name": "COL Blog", "type": "Blog/News"}, {"url": "https://www.catalogueoflife.org/about/glossary.html", "name": "Glossary", "type": "Help documentation"}, {"url": "https://www.catalogueoflife.org/about/colpipeline", "name": "Data Pipeline", "type": "Help documentation"}, {"url": "https://www.catalogueoflife.org/about/catalogueoflife", "name": "About", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "http://www.catalogueoflife.org/annual-checklist/2019/", "name": "Search Annual Checklist", "type": "data access"}, {"url": "https://www.catalogueoflife.org/data/search?facet=rank&facet=issue&facet=status&facet=nomStatus&facet=nameType&facet=field&facet=authorship&facet=extinct&facet=environment&limit=50&offset=0&sortBy=taxonomic", "name": "Search", "type": "data access"}, {"url": "https://www.catalogueoflife.org/data/browse", "name": "Browse ", "type": "data access"}, {"url": "https://www.catalogueoflife.org/data/download", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011241", "name": "re3data:r3d100011241", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006701", "name": "SciCrunch:RRID:SCR_006701", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001390", "bsg-d001390"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: Catalogue of Life", "abbreviation": "COL", "url": "https://fairsharing.org/10.25504/FAIRsharing.9b63c9", "doi": "10.25504/FAIRsharing.9b63c9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Catalogue of Life (COL) stores information on species and their distribution across the globe. It consists of a single integrated species checklist and taxonomic hierarchy. The Catalogue holds essential information on the names, relationships and distributions of over 1.8 million species. This figure continues to rise as information is compiled from diverse sources around the world. The Catalogue of Life provides critical species information on: synonymy enabling the effective referral of alternative species names to an accepted name; higher taxa within which a species is clustered; and distribution identifying the global regions from which a species is known.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 79, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2093", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:24.907Z", "metadata": {"doi": "10.25504/FAIRsharing.qvxhb1", "name": "VBASE2", "status": "ready", "contacts": [{"contact-name": "Werner M\u00fcller", "contact-email": "wmueller@gbf.de", "contact-orcid": "0000-0002-1297-9725"}], "homepage": "http://www.vbase2.org", "identifier": 2093, "description": "VBASE2 is an integrative database of germ-line variable genes from the immunoglobulin loci of human and mouse. All variable gene sequences are extracted from the EMBL-Bank.", "abbreviation": "VBASE2", "support-links": [{"url": "info@vbase2.org", "type": "Support email"}, {"url": "http://www.vbase2.org/vbhelp.php#faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.vbase2.org/vbhelp.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.vbase2.org/vbdownload.php", "name": "Download", "type": "data access"}, {"url": "http://www.vbase2.org/vbdnaplot.php", "name": "advance search", "type": "data access"}, {"url": "http://www.vbase2.org/vbase2_search.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000562", "bsg-d000562"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Immunoglobulin complex", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: VBASE2", "abbreviation": "VBASE2", "url": "https://fairsharing.org/10.25504/FAIRsharing.qvxhb1", "doi": "10.25504/FAIRsharing.qvxhb1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VBASE2 is an integrative database of germ-line variable genes from the immunoglobulin loci of human and mouse. All variable gene sequences are extracted from the EMBL-Bank.", "publications": [{"id": 558, "pubmed_id": 15608286, "title": "VBASE2, an integrative V gene database.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki088", "authors": "Retter I., Althaus HH., M\u00fcnch R., M\u00fcller W.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki088", "created_at": "2021-09-30T08:23:20.976Z", "updated_at": "2021-09-30T08:23:20.976Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1826, "relation": "undefined"}, {"licence-name": "VBASE2 - Disclaimer", "licence-id": 839, "link-id": 1828, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2171", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:47.155Z", "metadata": {"doi": "10.25504/FAIRsharing.dq83p6", "name": "Kidney and Urinary Pathway Knowledgebase", "status": "deprecated", "contacts": [{"contact-name": "Simon Jupp", "contact-email": "jupp@ebi.ac.uk", "contact-orcid": "0000-0002-0643-3144"}], "homepage": "http://www.kupkb.org", "identifier": 2171, "description": "The KUPKB is a collection of omics datasets that have been extracted from scientific publications and other related renal databases. The iKUP browser provides a single point of entry for you to query and browse these datasets.", "abbreviation": "KUPKB", "access-points": [{"url": "http://sparql.kupkb.org/sparql", "name": "SPARQL", "type": "Other"}], "support-links": [{"url": "support@kupkb.org", "type": "Support email"}, {"url": "jupp@ebi.ac.uk", "type": "Support email"}, {"url": "http://www.kupkb.org/#tab5", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/KUPKB_team", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://www.kupkb.org/#tab2", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.kupkb.org", "name": "iKUP 1"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000643", "bsg-d000643"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Biomedical Science"], "domains": ["Expression data", "Kidney disease"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom", "France"], "name": "FAIRsharing record for: Kidney and Urinary Pathway Knowledgebase", "abbreviation": "KUPKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.dq83p6", "doi": "10.25504/FAIRsharing.dq83p6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The KUPKB is a collection of omics datasets that have been extracted from scientific publications and other related renal databases. The iKUP browser provides a single point of entry for you to query and browse these datasets.", "publications": [{"id": 633, "pubmed_id": 22345404, "title": "The KUPKB: a novel Web application to access multiomics data on kidney disease", "year": 2012, "url": "http://doi.org/10.1096/fj.11-194381", "authors": "Julie Klein", "journal": "FASEB", "doi": "10.1096/fj.11-194381", "created_at": "2021-09-30T08:23:29.652Z", "updated_at": "2021-09-30T08:23:29.652Z"}, {"id": 634, "pubmed_id": 21624162, "title": "Developing a kidney and urinary pathway knowledge base.", "year": 2011, "url": "http://doi.org/10.1186/2041-1480-2-S2-S7", "authors": "Simon Jupp", "journal": "J Biomed Semantics", "doi": "10.1186/2041-1480-2-S2-S7", "created_at": "2021-09-30T08:23:29.761Z", "updated_at": "2021-09-30T08:23:29.761Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1846", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-02T14:53:41.214Z", "metadata": {"doi": "10.25504/FAIRsharing.paz6mh", "name": "BioModels", "status": "ready", "contacts": [{"contact-name": "BioModels Team", "contact-email": "biomodels-cura@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/biomodels/", "citations": [{"doi": "10.1093/nar/gkz1055", "pubmed-id": 31701150, "publication-id": 2767}], "identifier": 1846, "description": "BioModels is a repository of computational models of biological processes. It allows users to search and retrieve mathematical models published in the literature. Many models are manually curated (to ensure reproducibility) and extensively cross-linked to publicly available reference information.", "abbreviation": "BioModels", "access-points": [{"url": "https://www.ebi.ac.uk/biomodels/docs", "name": "BioModels API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/biomodels/faq", "name": "BioModels FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "biomodels-net-support@lists.sf.net", "name": "Support Mailing List", "type": "Mailing list"}, {"url": "https://lists.sourceforge.net/lists/listinfo/biomodels-net-discuss", "name": "BioModels Mailing List", "type": "Mailing list"}, {"url": "https://www.ebi.ac.uk/biomodels/content/news", "name": "News", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/biomodels/agedbrain", "name": "Model space in neurodegeneration - model landscape map", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/biomodels-database-quick-tour", "name": "Biomodels database quick tour", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/biomodels/courses", "name": "Courses", "type": "Training documentation"}, {"url": "https://twitter.com/biomodels", "name": "@biomodels", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://www.ebi.ac.uk/biomodels/search?query=*%3A*", "name": "Search", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/biomodels/", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/biomodels/model/create", "name": "submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/biomodels/goChart/index", "name": "Browse by GO Category", "type": "data access"}, {"url": "https://www.ebi.ac.uk/biomodels/parameterSearch/index", "name": "Parameter Search", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/rdf/services/sparql", "name": "SPARQL Querying"}, {"url": "https://www.ebi.ac.uk/biomodels/tools/converters/", "name": "SBFC Online"}, {"url": "https://bitbucket.org/biomodels/biomodelswsclient", "name": "Java library for RESTful Web Services"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010789", "name": "re3data:r3d100010789", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001993", "name": "SciCrunch:RRID:SCR_001993", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000306", "bsg-d000306"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Systems Biology"], "domains": ["Mathematical model", "Network model", "Biological process", "Molecular interaction"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: BioModels", "abbreviation": "BioModels", "url": "https://fairsharing.org/10.25504/FAIRsharing.paz6mh", "doi": "10.25504/FAIRsharing.paz6mh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioModels is a repository of computational models of biological processes. It allows users to search and retrieve mathematical models published in the literature. Many models are manually curated (to ensure reproducibility) and extensively cross-linked to publicly available reference information.", "publications": [{"id": 123, "pubmed_id": 29106614, "title": "BioModels: expanding horizons to include more modelling approaches and formats.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1023", "authors": "Glont M,Nguyen TVN,Graesslin M,Halke R,Ali R,Schramm J,Wimalaratne SM,Kothamachu VB,Rodriguez N,Swat MJ,Eils J,Eils R,Laibe C,Malik-Sheriff RS,Chelliah V,Le Novere N,Hermjakob H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1023", "created_at": "2021-09-30T08:22:33.537Z", "updated_at": "2021-09-30T11:28:42.916Z"}, {"id": 352, "pubmed_id": 16381960, "title": "BioModels Database: a free, centralized database of curated, published, quantitative kinetic models of biochemical and cellular systems.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj092", "authors": "Le Nov\u00e8re N., Bornstein B., Broicher A., Courtot M., Donizelli M., Dharuri H., Li L., Sauro H., Schilstra M., Shapiro B., Snoep JL., Hucka M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj092", "created_at": "2021-09-30T08:22:57.883Z", "updated_at": "2021-09-30T08:22:57.883Z"}, {"id": 811, "pubmed_id": 26225232, "title": "BioModels: Content, Features, Functionality, and Use.", "year": 2015, "url": "http://doi.org/10.1002/psp4.3", "authors": "Juty N, Ali R, Glont M, Keating S, Rodriguez N, Swat MJ, Wimalaratne SM, Hermjakob H, Le Nov\u00e8re N, Laibe C, Chelliah V.", "journal": "CPT Pharmacometrics Syst Pharmacol.", "doi": "10.1002/psp4.3", "created_at": "2021-09-30T08:23:49.480Z", "updated_at": "2021-09-30T08:23:49.480Z"}, {"id": 2767, "pubmed_id": 31701150, "title": "BioModels-15 years of sharing computational models in life science.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1055", "authors": "Malik-Sheriff RS,Glont M,Nguyen TVN,Tiwari K,Roberts MG,Xavier A,Vu MT,Men J,Maire M,Kananathan S,Fairbanks EL,Meyer JP,Arankalle C,Varusai TM,Knight-Schrijver V,Li L,Duenas-Roca C,Dass G,Keating SM,Park YM,Buso N,Rodriguez N,Hucka M,Hermjakob H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1055", "created_at": "2021-09-30T08:27:40.070Z", "updated_at": "2021-09-30T11:29:43.403Z"}], "licence-links": [{"licence-name": "Biomodels Terms of Use", "licence-id": 81, "link-id": 2363, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2364, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1653", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:05.890Z", "metadata": {"doi": "10.25504/FAIRsharing.710xh8", "name": "Database for Bacterial Group II Introns", "status": "ready", "contacts": [{"contact-name": "Steven Zimmerly", "contact-email": "zimmerly@ucalgary.ca"}], "homepage": "http://webapps2.ucalgary.ca/~groupii", "citations": [], "identifier": 1653, "description": "Database for identification and cataloguing of group II introns. All bacterial introns listed are full-length and appear to be functional, based on intron RNA and IEP characteristics. The database names the full-length introns, and provides information on their boundaries, host genes, and secondary structures. In addition, the website provides tools for analysis that may be useful to researchers who encounter group II introns in DNA sequences.", "abbreviation": "Group II introns database", "support-links": [{"url": "http://webapps2.ucalgary.ca/~groupii/html/static/howtofind.php", "name": "How to find a group II intron", "type": "Help documentation"}, {"url": "http://webapps2.ucalgary.ca/~groupii/html/static/intro.php", "name": "Introduction", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/downloadintrondata.cgi", "name": "download", "type": "data access"}, {"url": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron_table.cgi", "name": "Browse group II introns in Eubacteria", "type": "data access"}], "associated-tools": [{"url": "http://webapps2.ucalgary.ca/~groupii/html/static/blast.php", "name": "blast and download"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012723", "name": "re3data:r3d100012723", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000109", "bsg-d000109"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Life Science"], "domains": ["RNA secondary structure", "Protein domain", "Taxonomic classification", "Deoxyribonucleic acid", "Ribonucleic acid", "Host", "Exon", "Intron", "Group II intron", "Mitochondrial sequence", "Chloroplast sequence", "Amino acid sequence"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": ["ORF-less introns"], "countries": ["Canada"], "name": "FAIRsharing record for: Database for Bacterial Group II Introns", "abbreviation": "Group II introns database", "url": "https://fairsharing.org/10.25504/FAIRsharing.710xh8", "doi": "10.25504/FAIRsharing.710xh8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database for identification and cataloguing of group II introns. All bacterial introns listed are full-length and appear to be functional, based on intron RNA and IEP characteristics. The database names the full-length introns, and provides information on their boundaries, host genes, and secondary structures. In addition, the website provides tools for analysis that may be useful to researchers who encounter group II introns in DNA sequences.", "publications": [{"id": 155, "pubmed_id": 12520040, "title": "Database for mobile group II introns.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg049", "authors": "Dai L., Toor N., Olson R., Keeping A., Zimmerly S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg049", "created_at": "2021-09-30T08:22:36.880Z", "updated_at": "2021-09-30T08:22:36.880Z"}, {"id": 1476, "pubmed_id": 11861899, "title": "Compilation and analysis of group II intron insertions in bacterial genomes: evidence for retroelement behavior.", "year": 2002, "url": "http://doi.org/10.1093/nar/30.5.1091", "authors": "Dai L., Zimmerly S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.5.1091", "created_at": "2021-09-30T08:25:05.189Z", "updated_at": "2021-09-30T08:25:05.189Z"}, {"id": 1830, "pubmed_id": 12554871, "title": "ORF-less and reverse-transcriptase-encoding group II introns in archaebacteria, with a pattern of homing into related group II intron ORFs.", "year": 2003, "url": "http://doi.org/10.1261/rna.2126203", "authors": "Dai L., Zimmerly S.,", "journal": "RNA", "doi": "10.1261/rna.2126203", "created_at": "2021-09-30T08:25:45.538Z", "updated_at": "2021-09-30T08:25:45.538Z"}, {"id": 2367, "pubmed_id": 18676618, "title": "Group II introns in eubacteria and archaea: ORF-less introns and new varieties.", "year": 2008, "url": "http://doi.org/10.1261/rna.1056108", "authors": "Simon DM., Clarke NA., McNeil BA., Johnson I., Pantuso D., Dai L., Chai D., Zimmerly S.,", "journal": "RNA", "doi": "10.1261/rna.1056108", "created_at": "2021-09-30T08:26:51.005Z", "updated_at": "2021-09-30T08:26:51.005Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2991", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-12T10:23:36.000Z", "updated-at": "2022-01-28T16:30:33.550Z", "metadata": {"name": "OAFlux", "status": "ready", "contacts": [{"contact-name": "Lisan Yu", "contact-email": "lyu@whoi.edu", "contact-orcid": "0000-0003-4157-9154"}], "homepage": "http://oaflux.whoi.edu/", "citations": [], "identifier": 2991, "description": "The Objectively Analyzed air-sea Fluxes (OAFlux) project is a research and development project focusing on global air-sea heat, moisture, and momentum fluxes. The project is committed to produce high-quality, long-term, global ocean surface forcing datasets from the late 1950s to the present to serve the needs of the ocean and climate communities on the characterization, attribution, modeling, and understanding of variability and long-term change in the atmosphere and the oceans.", "abbreviation": "OAFlux", "data-curation": {}, "support-links": [{"url": "rweller@whoi.edu", "name": "Robert A. Weller", "type": "Support email"}, {"url": "https://oaflux.whoi.edu/what-is-oaflux/", "name": "About", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://oaflux.whoi.edu/data-access/", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010519", "name": "re3data:r3d100010519", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001497", "bsg-d001497"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Meteorology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: OAFlux", "abbreviation": "OAFlux", "url": "https://fairsharing.org/fairsharing_records/2991", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Objectively Analyzed air-sea Fluxes (OAFlux) project is a research and development project focusing on global air-sea heat, moisture, and momentum fluxes. The project is committed to produce high-quality, long-term, global ocean surface forcing datasets from the late 1950s to the present to serve the needs of the ocean and climate communities on the characterization, attribution, modeling, and understanding of variability and long-term change in the atmosphere and the oceans.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2247", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-08T20:18:30.000Z", "updated-at": "2021-12-06T10:48:33.657Z", "metadata": {"doi": "10.25504/FAIRsharing.fb0r2g", "name": "Library of Integrated Network-Based Cellular Signatures Data Portal", "status": "ready", "contacts": [{"contact-name": "Avi Ma'ayan", "contact-email": "avi.maayan@mssm.edu"}], "homepage": "http://lincsportal.ccs.miami.edu/dcic-portal/", "identifier": 2247, "description": "The LINCS Data Portal provides a unified interface for searching LINCS dataset packages and reagents. LINCS data are being made openly available as a community resource through a series of data releases, so as to enable scientists to address a broad range of basic research questions and to facilitate the identification of biological targets for new disease therapies. LINCS datasets consist of assay results from cultured and primary human cells treated with bioactive small molecules, ligands such as growth factors and cytokines, or genetic perturbations. Many different assays are used to monitor cell responses, including assays measuring transcript and protein expression; cell phenotype data are captured by biochemical and imaging readouts. Assays are typically carried out on multiple cell types, and at multiple timepoints; perturbagen activity is monitored at multiple doses.", "abbreviation": "LINCS Data Portal", "support-links": [{"url": "http://www.lincsproject.org/contact/", "type": "Contact form"}, {"url": "http://www.lincsproject.org/about/q-a/", "type": "Help documentation"}, {"url": "http://www.lincsproject.org/about/", "type": "Help documentation"}, {"url": "http://www.genome.gov/pages/research/wellcomereport0303.pdf", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://lincsportal.ccs.miami.edu/datasets/", "name": "Browse", "type": "data access"}, {"url": "http://www.lincsproject.org/data/data-releases/", "name": "Data Visualization (Web)", "type": "data access"}], "associated-tools": [{"url": "http://www.lincsproject.org/data/tools-and-databases/", "name": "All LINCS Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012421", "name": "re3data:r3d100012421", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014939", "name": "SciCrunch:RRID:SCR_014939", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000721", "bsg-d000721"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Cellular assay", "Molecular interaction", "Small molecule", "Phenotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Library of Integrated Network-Based Cellular Signatures Data Portal", "abbreviation": "LINCS Data Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.fb0r2g", "doi": "10.25504/FAIRsharing.fb0r2g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LINCS Data Portal provides a unified interface for searching LINCS dataset packages and reagents. LINCS data are being made openly available as a community resource through a series of data releases, so as to enable scientists to address a broad range of basic research questions and to facilitate the identification of biological targets for new disease therapies. LINCS datasets consist of assay results from cultured and primary human cells treated with bioactive small molecules, ligands such as growth factors and cytokines, or genetic perturbations. Many different assays are used to monitor cell responses, including assays measuring transcript and protein expression; cell phenotype data are captured by biochemical and imaging readouts. Assays are typically carried out on multiple cell types, and at multiple timepoints; perturbagen activity is monitored at multiple doses.", "publications": [], "licence-links": [{"licence-name": "Fort Lauderdale Principles", "licence-id": 322, "link-id": 684, "relation": "undefined"}, {"licence-name": "LINCS Data Release Policy", "licence-id": 492, "link-id": 896, "relation": "undefined"}, {"licence-name": "NIH Genomic Data Sharing Policy (human data)", "licence-id": 583, "link-id": 897, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3268", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-07T17:01:13.000Z", "updated-at": "2022-01-10T11:55:38.197Z", "metadata": {"name": "The Global Agricultural Trial Repository and Database", "status": "deprecated", "contacts": [], "homepage": "http://www.agtrials.org/", "citations": [], "identifier": 3268, "description": "The Global Agricultural Trial Repository and Database is an information portal developed by the CGIAR Research Program on Climate Change, Agriculture and Food Security (CCAFS) which provides access to a database on the performance of agricultural technologies at sites across the developing world. It builds on decades of evaluation trials, mostly of varieties, but includes any agricultural technology for developing world farmers.", "abbreviation": "AgTrials", "support-links": [{"url": "http://www.agtrials.org/contact", "type": "Contact form"}, {"url": "http://www.agtrials.org/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.agtrials.org/searchtrials", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011140", "name": "re3data:r3d100011140", "portal": "re3data"}], "deprecation-date": "2021-11-11", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001783", "bsg-d001783"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Soil Science", "Forest Management", "Food Security", "Earth Science", "Agriculture"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Global warming"], "countries": ["Netherlands"], "name": "FAIRsharing record for: The Global Agricultural Trial Repository and Database", "abbreviation": "AgTrials", "url": "https://fairsharing.org/fairsharing_records/3268", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Agricultural Trial Repository and Database is an information portal developed by the CGIAR Research Program on Climate Change, Agriculture and Food Security (CCAFS) which provides access to a database on the performance of agricultural technologies at sites across the developing world. It builds on decades of evaluation trials, mostly of varieties, but includes any agricultural technology for developing world farmers.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1591", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.563Z", "metadata": {"doi": "10.25504/FAIRsharing.x18jh7", "name": "HaploReg", "status": "ready", "contacts": [{"contact-name": "Manolis Kellis", "contact-email": "manoli@mit.edu"}], "homepage": "http://compbio.mit.edu/HaploReg", "identifier": 1591, "description": "HaploReg is a tool for exploring annotations of the noncoding genome at variants on haplotype blocks, such as candidate regulatory SNPs at disease-associated loci. Using LD information from the 1000 Genomes Project, linked SNPs and small indels can be visualized along with chromatin state and protein binding annotation from the Roadmap Epigenomics and ENCODE projects, sequence conservation across mammals, the effect of SNPs on regulatory motifs, and the effect of SNPs on expression from eQTL studies. HaploReg is designed for researchers developing mechanistic hypotheses of the impact of non-coding variants on clinical phenotypes and normal variation.", "abbreviation": "HaploReg", "support-links": [{"url": "http://archive.broadinstitute.org/mammals/haploreg/documentation_v4.1.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000046", "bsg-d000046"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Biological regulation", "Chromatin immunoprecipitation - DNA sequencing", "Conserved region", "Allele frequency", "Chromatin structure variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Distance to genes", "DNAse hypersensitivity"], "countries": ["United States"], "name": "FAIRsharing record for: HaploReg", "abbreviation": "HaploReg", "url": "https://fairsharing.org/10.25504/FAIRsharing.x18jh7", "doi": "10.25504/FAIRsharing.x18jh7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HaploReg is a tool for exploring annotations of the noncoding genome at variants on haplotype blocks, such as candidate regulatory SNPs at disease-associated loci. Using LD information from the 1000 Genomes Project, linked SNPs and small indels can be visualized along with chromatin state and protein binding annotation from the Roadmap Epigenomics and ENCODE projects, sequence conservation across mammals, the effect of SNPs on regulatory motifs, and the effect of SNPs on expression from eQTL studies. HaploReg is designed for researchers developing mechanistic hypotheses of the impact of non-coding variants on clinical phenotypes and normal variation.", "publications": [{"id": 1525, "pubmed_id": 26657631, "title": "HaploReg v4: systematic mining of putative causal variants, cell types, regulators and target genes for human complex traits and disease.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1340", "authors": "Ward LD,Kellis M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1340", "created_at": "2021-09-30T08:25:10.742Z", "updated_at": "2021-09-30T11:29:12.260Z"}, {"id": 1526, "pubmed_id": 22064851, "title": "HaploReg: a resource for exploring chromatin states, conservation, and regulatory motif alterations within sets of genetically linked variants.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr917", "authors": "Ward LD,Kellis M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr917", "created_at": "2021-09-30T08:25:10.849Z", "updated_at": "2021-09-30T11:29:12.351Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3129", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T09:12:18.000Z", "updated-at": "2022-02-08T10:33:27.151Z", "metadata": {"doi": "10.25504/FAIRsharing.2a1652", "name": "Integrated Ocean Observing System National Data Portal", "status": "ready", "contacts": [{"contact-name": "IOOS General Contact", "contact-email": "webmaster.ioos.us@noaa.gov"}], "homepage": "https://ioos.us/", "citations": [], "identifier": 3129, "description": "The Integrated Ocean Observing System National Data Portal (IOOS.us) contains data from a variety of technologies and data collection systems. The national IOOS data products accessible from IOOS.us include data collected from buoys, high frequency radar systems and gliders. Modeling teams across regional associations also create data products including physical and environmental models of coastal systems. The IOOS.us portal includes the IOOS Catalog, the IOOS Model Viewer, the Environmental Sensor Map, and a number of additional data products.", "abbreviation": "IOOS.us", "support-links": [{"url": "https://ioos.us/surf-cam", "name": "Live Surf Cameras", "type": "Blog/News"}, {"url": "data.ioos@noaa.gov", "name": "IOOS Data Contact", "type": "Support email"}, {"url": "https://ioos.github.io/ioos_code_lab/content/intro.html", "name": "Tutorials", "type": "Github"}, {"url": "https://ioos.us/regions", "name": "Regional Associations List", "type": "Help documentation"}, {"url": "https://twitter.com/usioosgov", "name": "@usioosgov", "type": "Twitter"}], "data-processes": [{"url": "https://data.ioos.us/", "name": "IOOS Catalog", "type": "data access"}, {"url": "https://eds.ioos.us/", "name": "IOOS Model Viewer", "type": "data access"}, {"url": "https://sensors.ioos.us/", "name": "Environmental Sensor Map", "type": "data access"}, {"url": "https://gliders.ioos.us/", "name": "Underwater Glider DAC Map", "type": "data access"}, {"url": "https://comt.ioos.us/", "name": "Coastal and Ocean Modeling Testbed", "type": "data access"}, {"url": "https://atn.ioos.us/", "name": "Animal Telemetry Network", "type": "data access"}, {"url": "https://hfradar.ioos.us/", "name": "IOOS High-Frequency Radar", "type": "data access"}, {"url": "https://ioos.us/compliance-checker", "name": "Data Compliance Check", "type": "data curation"}, {"url": "https://osmc.ioos.us/", "name": "Observing System Monitoring Center (OSMC)", "type": "data access"}, {"url": "https://oa.ioos.us/", "name": "Ocean Acidification Data", "type": "data access"}, {"url": "https://video.ioos.us/", "name": "Video and Photograph Portal", "type": "data access"}, {"url": "https://ioos.us/", "name": "General Search", "type": "data access"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001640", "bsg-d001640"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Marine Biology", "Biodiversity", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Coast"], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Ocean Observing System National Data Portal", "abbreviation": "IOOS.us", "url": "https://fairsharing.org/10.25504/FAIRsharing.2a1652", "doi": "10.25504/FAIRsharing.2a1652", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Integrated Ocean Observing System National Data Portal (IOOS.us) contains data from a variety of technologies and data collection systems. The national IOOS data products accessible from IOOS.us include data collected from buoys, high frequency radar systems and gliders. Modeling teams across regional associations also create data products including physical and environmental models of coastal systems. The IOOS.us portal includes the IOOS Catalog, the IOOS Model Viewer, the Environmental Sensor Map, and a number of additional data products.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2095", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:12.842Z", "metadata": {"doi": "10.25504/FAIRsharing.swbypy", "name": "AmoebaDB", "status": "ready", "contacts": [{"contact-name": "Omar Harb", "contact-email": "oharb@pcbi.upenn.edu"}], "homepage": "http://amoebadb.org", "identifier": 2095, "description": "AmoebaDB belongs to the EuPathDB family of databases and is an integrated genomic and functional genomic database for Entamoeba and Acanthamoeba parasites. In its first released, AmoebaDB contained the genomes of three Entamoeba species. AmoebaDB integrates whole genome sequence and annotation and will rapidly expand to include experimental data and environmental isolate sequences provided by community researchers . The database includes supplemental bioinformatics analyses and a web interface for data-mining.", "abbreviation": "AmoebaDB", "support-links": [{"url": "http://amoebadb.org/amoeba/contact.do", "type": "Contact form"}, {"url": "https://cryptodb.org/cryptodb/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "http://amoebadb.org/amoeba/showXmlDataContent.do?name=XmlQuestions.Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/eupathdb", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "http://amoebadb.org/common/downloads/", "name": "Download", "type": "data access"}, {"name": "http://amoebadb.org/EuPathDB_datasubm_SOP.pdf", "type": "data curation"}], "associated-tools": [{"url": "http://amoebadb.org/amoeba/showQuestion.do?questionFullName=UniversalQuestions.UnifiedBlast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012457", "name": "re3data:r3d100012457", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000564", "bsg-d000564"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Sequence annotation", "Model organism"], "taxonomies": ["Acanthamoeba", "Entamoeba", "Naegleria fowleri"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: AmoebaDB", "abbreviation": "AmoebaDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.swbypy", "doi": "10.25504/FAIRsharing.swbypy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AmoebaDB belongs to the EuPathDB family of databases and is an integrated genomic and functional genomic database for Entamoeba and Acanthamoeba parasites. In its first released, AmoebaDB contained the genomes of three Entamoeba species. AmoebaDB integrates whole genome sequence and annotation and will rapidly expand to include experimental data and environmental isolate sequences provided by community researchers . The database includes supplemental bioinformatics analyses and a web interface for data-mining.", "publications": [{"id": 72, "pubmed_id": 19914931, "title": "EuPathDB: a portal to eukaryotic pathogen databases.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp941", "authors": "Aurrecoechea C., Brestelli J., Brunk BP. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp941", "created_at": "2021-09-30T08:22:27.954Z", "updated_at": "2021-09-30T08:22:27.954Z"}], "licence-links": [{"licence-name": "AmoebaDB Attribution required", "licence-id": 29, "link-id": 219, "relation": "undefined"}, {"licence-name": "AmoebaDB Data Access Policy", "licence-id": 30, "link-id": 220, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2610", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-23T13:57:33.000Z", "updated-at": "2021-11-24T13:14:54.588Z", "metadata": {"name": "Common Evidence Model", "status": "deprecated", "contacts": [{"contact-name": "Richard Boyce", "contact-email": "rdb20@pitt.edu", "contact-orcid": "0000-0002-2993-2085"}], "homepage": "https://github.com/OHDSI/CommonEvidenceModel", "citations": [], "identifier": 2610, "description": "The CommonEvidenceModel (CEM) provides an evidence base of a wide variety of sources with information relevant for assessing associations between drugs and health outcomes of interest.", "abbreviation": "CEM", "access-points": [{"url": "http://webapidoc.ohdsi.org/index.html", "name": "OHDSI WebAPI", "type": "Other"}], "support-links": [{"url": "https://github.com/OHDSI/CommonEvidenceModel/issues", "name": "GitHub Issue Tracker", "type": "Github"}, {"url": "http://forums.ohdsi.org/c/researchers", "name": "OHDSI Forums", "type": "Help documentation"}, {"url": "https://github.com/OHDSI/CommonEvidenceModel/wiki", "name": "CEM Wiki", "type": "Github"}], "year-creation": 2018, "data-processes": [{"url": "https://github.com/OHDSI/CommonEvidenceModel", "name": "Data ETL Process", "type": "data access"}], "associated-tools": [{"url": "https://github.com/ohdsi/Atlas", "name": "Atlas 2.3"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and the resource developers have confirmed that it has been deprecated."}, "legacy-ids": ["biodbcore-001093", "bsg-d001093"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Drug", "Adverse Reaction"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States", "European Union"], "name": "FAIRsharing record for: Common Evidence Model", "abbreviation": "CEM", "url": "https://fairsharing.org/fairsharing_records/2610", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CommonEvidenceModel (CEM) provides an evidence base of a wide variety of sources with information relevant for assessing associations between drugs and health outcomes of interest.", "publications": [{"id": 2500, "pubmed_id": 24985530, "title": "Bridging islands of information to establish an integrated knowledge base of drugs and health outcomes of interest.", "year": 2014, "url": "http://doi.org/10.1007/s40264-014-0189-0", "authors": "Boyce RD,Ryan PB,Noren GN,Schuemie MJ,Reich C,Duke J,Tatonetti NP,Trifiro G,Harpaz R,Overhage JM,Hartzema AG,Khayter M,Voss EA,Lambert CG,Huser V,Dumontier M", "journal": "Drug Saf", "doi": "10.1007/s40264-014-0189-0", "created_at": "2021-09-30T08:27:06.756Z", "updated_at": "2021-09-30T08:27:06.756Z"}, {"id": 2690, "pubmed_id": 28270198, "title": "Large-scale adverse effects related to treatment evidence standardization (LAERTES): an open scalable system for linking pharmacovigilance evidence sources with clinical data.", "year": 2017, "url": "http://doi.org/10.1186/s13326-017-0115-3", "authors": "Boyce, RD., Voss, E., Huser, V., Evans, L., Reich, C., Duke, JD., Tatonetti, NP., Lorberbaum, T., Dumontier, M., Hauben, M., Wallberg, M., Peng, L., Dempster, S., He, O., Sena, A., Koutkias, V., Natsiavas, P., Ryan, P.", "journal": "J Biomed Semantics", "doi": "10.1186/s13326-017-0115-3", "created_at": "2021-09-30T08:27:30.428Z", "updated_at": "2021-09-30T08:27:30.428Z"}, {"id": 2691, "pubmed_id": 27993747, "title": "Accuracy of an automated knowledge base for identifying drug adverse reactions.", "year": 2016, "url": "http://doi.org/S1532-0464(16)30179-4", "authors": "Voss EA,Boyce RD,Ryan PB,van der Lei J,Rijnbeek PR,Schuemie MJ", "journal": "J Biomed Inform", "doi": "S1532-0464(16)30179-4", "created_at": "2021-09-30T08:27:30.538Z", "updated_at": "2021-09-30T08:27:30.538Z"}], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1672, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3827", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T13:50:11.142Z", "updated-at": "2022-02-10T13:54:29.183Z", "metadata": {"name": "ARPHA: AUTHORING - REVIEWING - PUBLISHING - HOSTING - ARCHIVING", "status": "ready", "contacts": [], "homepage": "https://arphahub.com/", "citations": [], "identifier": 3827, "description": "ARPHA-XML is the first publishing platform to support the full manuscript life cycle, from authoring through peer review, publication and dissemination, within a single, XML-based environment. At the core of the ARPHA-XML is the collaborative authoring ARPHA Writing Tool (AWT). ARPHA-XML is the host of the Biodiversity Data Journal, RIO Journal, and others. ARPHA-XML provides several unique services for biodiversity, among many others: \n\nMarkup of taxon names, treatments, geo-coordinates, collection codes.\nLinking of each taxon name to various world-class biodiversity resources \nExport of occurrences and taxon treatments into Darwin Core Archive and GBIF.\nExport of articles and separate images to the Biodiversity Literature Repository at Zenodo. \nImport of data from GBIF, Barcode of Life, iDigBio and PlutoF into manuscripts. \nMetadata (EML) conversion from GBIF, DataONE and LTER into data paper manuscripts.\nEMBL-ENA metadata conversion into omics data paper manuscripts.\nWithin BiCiKL, ARPHA-XML will provide access to semantically enhanced authoring and editorial workflow to further develop, test and implement biodiversity data linking through a next-generation publishing and dissemination process. ", "abbreviation": "ARPHA", "year-creation": null, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Biodiversity"], "domains": ["Publication", "Software", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Bulgaria"], "name": "FAIRsharing record for: ARPHA: AUTHORING - REVIEWING - PUBLISHING - HOSTING - ARCHIVING", "abbreviation": "ARPHA", "url": "https://fairsharing.org/fairsharing_records/3827", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ARPHA-XML is the first publishing platform to support the full manuscript life cycle, from authoring through peer review, publication and dissemination, within a single, XML-based environment. At the core of the ARPHA-XML is the collaborative authoring ARPHA Writing Tool (AWT). ARPHA-XML is the host of the Biodiversity Data Journal, RIO Journal, and others. ARPHA-XML provides several unique services for biodiversity, among many others: \n\nMarkup of taxon names, treatments, geo-coordinates, collection codes.\nLinking of each taxon name to various world-class biodiversity resources \nExport of occurrences and taxon treatments into Darwin Core Archive and GBIF.\nExport of articles and separate images to the Biodiversity Literature Repository at Zenodo. \nImport of data from GBIF, Barcode of Life, iDigBio and PlutoF into manuscripts. \nMetadata (EML) conversion from GBIF, DataONE and LTER into data paper manuscripts.\nEMBL-ENA metadata conversion into omics data paper manuscripts.\nWithin BiCiKL, ARPHA-XML will provide access to semantically enhanced authoring and editorial workflow to further develop, test and implement biodiversity data linking through a next-generation publishing and dissemination process. ", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3620", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-13T04:12:01.329Z", "updated-at": "2022-02-08T10:52:13.499Z", "metadata": {"doi": "10.25504/FAIRsharing.9f8852", "name": "Gene Regulatory Network Database", "status": "ready", "contacts": [], "homepage": "https://www.grand.networkmedicine.org", "citations": [], "identifier": 3620, "description": "Gene regulation plays a fundamental role in shaping tissue identity, function, and response to perturbation. Regulatory processes are controlled by complex networks of interacting elements, including transcription factors, miRNAs and their target genes. The structure of these networks helps to determine phenotypes and can ultimately influence the development of disease or response to therapy. We developed GRAND (https://grand.networkmedicine.org) as a database for computationally-inferred, context-specific gene regulatory network models that can be compared between biological states, or used to predict which drugs produce changes in regulatory network structure. The database includes 12 468 genome-scale networks covering 36 human tissues, 28 cancers, 1378 unperturbed cell lines, as well as 173 013 TF and gene targeting scores for 2858 small molecule-induced cell line perturbation paired with phenotypic information. GRAND allows the networks to be queried using phenotypic information and visualized using a variety of interactive tools. In addition, it includes a web application that matches disease states to potentially therapeutic small molecule drugs using regulatory network properties.", "abbreviation": "GRAND", "access-points": [{"url": "https://grand.networkmedicine.org/redoc/", "name": "GRAND API (v1)", "type": "Other", "example-url": "https://grand.networkmedicine.org/api/v1/cancerapi/", "documentation-url": ""}], "data-curation": {}, "support-links": [{"url": "https://www.grand.networkmedicine.org/help/", "type": "Help documentation"}, {"url": "https://github.com/QuackenbushLab/grand", "type": "Github"}, {"url": "https://www.grand.networkmedicine.org/about/", "type": "Contact form"}], "year-creation": 2021, "data-processes": [{"url": "https://www.grand.networkmedicine.org/downloads/", "name": "Download", "type": "data access"}, {"url": "https://www.grand.networkmedicine.org/drugs/", "name": "Browse small molecule drugs", "type": "data access"}, {"url": "https://www.grand.networkmedicine.org/cancers/", "name": "Browse cancer tissues", "type": "data access"}, {"url": "https://www.grand.networkmedicine.org/tissues/", "name": "Browse normal tissues", "type": "data access"}, {"url": "https://www.grand.networkmedicine.org/cell/", "name": "Browse cell lines", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Pharmacogenomics"], "domains": ["Biological network analysis", "Regulation of gene expression", "Transcription factor", "Gene regulatory element"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Gene Regulatory Network Database", "abbreviation": "GRAND", "url": "https://fairsharing.org/10.25504/FAIRsharing.9f8852", "doi": "10.25504/FAIRsharing.9f8852", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gene regulation plays a fundamental role in shaping tissue identity, function, and response to perturbation. Regulatory processes are controlled by complex networks of interacting elements, including transcription factors, miRNAs and their target genes. The structure of these networks helps to determine phenotypes and can ultimately influence the development of disease or response to therapy. We developed GRAND (https://grand.networkmedicine.org) as a database for computationally-inferred, context-specific gene regulatory network models that can be compared between biological states, or used to predict which drugs produce changes in regulatory network structure. The database includes 12 468 genome-scale networks covering 36 human tissues, 28 cancers, 1378 unperturbed cell lines, as well as 173 013 TF and gene targeting scores for 2858 small molecule-induced cell line perturbation paired with phenotypic information. GRAND allows the networks to be queried using phenotypic information and visualized using a variety of interactive tools. In addition, it includes a web application that matches disease states to potentially therapeutic small molecule drugs using regulatory network properties.", "publications": [{"id": 3131, "pubmed_id": null, "title": "GRAND: A database of gene regulatory network models across human conditions", "year": 2021, "url": "http://dx.doi.org/10.1101/2021.06.18.448997", "authors": "Guebila, Marouen Ben; Lopes-Ramos, Camila M; Weighill, Deborah; Sonawane, Abhijeet Rajendra; Burkholz, Rebekka; Shamsaei, Behrouz; Platig, John; Glass, Kimberly; Kuijjer, Marieke L; Quackenbush, John; ", "journal": "bioRxiv", "doi": "10.1101/2021.06.18.448997", "created_at": "2021-11-16T09:19:12.163Z", "updated_at": "2021-11-16T09:19:12.163Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2502, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1808", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.641Z", "metadata": {"doi": "10.25504/FAIRsharing.32zwmn", "name": "reactive oxygen species-mediated signaling pathway database", "status": "deprecated", "contacts": [{"contact-name": "Kong-Joo Lee", "contact-email": "kjl@ewha.ac.kr"}], "homepage": "http://rospath.ewha.ac.kr/", "identifier": 1808, "description": "ROSPath was developed for the purpose of aiding the research of ROS-mediated signaling pathways including growth factor-, stress- and cytokine-induced signaling that are main research interests of the Division of Molecular Life Sciences and Center for Cell Signaling Research in Ewha Womans University. This record is labelled as uncertain as the homepage for this resource appears to be offline.", "abbreviation": "ROSPath", "year-creation": 2004, "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000268", "bsg-d000268"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: reactive oxygen species-mediated signaling pathway database", "abbreviation": "ROSPath", "url": "https://fairsharing.org/10.25504/FAIRsharing.32zwmn", "doi": "10.25504/FAIRsharing.32zwmn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ROSPath was developed for the purpose of aiding the research of ROS-mediated signaling pathways including growth factor-, stress- and cytokine-induced signaling that are main research interests of the Division of Molecular Life Sciences and Center for Cell Signaling Research in Ewha Womans University. This record is labelled as uncertain as the homepage for this resource appears to be offline.", "publications": [{"id": 327, "pubmed_id": 15289508, "title": "Multi-layered representation for cell signaling pathways.", "year": 2004, "url": "http://doi.org/10.1074/mcp.M400039-MCP200", "authors": "Paek E., Park J., Lee KJ.,", "journal": "Mol. Cell Proteomics", "doi": "10.1074/mcp.M400039-MCP200", "created_at": "2021-09-30T08:22:55.101Z", "updated_at": "2021-09-30T08:22:55.101Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1557", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:49.713Z", "metadata": {"doi": "10.25504/FAIRsharing.jr30xc", "name": "Bacterial protein tYrosine Kinase database", "status": "ready", "homepage": "http://bykdb.ibcp.fr", "citations": [{"doi": "10.1093/nar/gkr915", "pubmed-id": 22080550, "publication-id": 2339}], "identifier": 1557, "description": "The Bacterial protein tYrosine Kinase database (BYKdb) contains computer-annotated BY-kinase sequences. The database web interface allows static and dynamic queries and provides integrated analysis tools including sequence annotation.", "abbreviation": "BYKdb", "support-links": [{"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbContact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbHelp", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbStats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbNews", "name": "News", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbDataset", "name": "Browse Precomputed Datasets", "type": "data access"}, {"url": "https://bykdb.ibcp.fr/data/html/annotated/bykdb2html.html", "name": "Browse Annotated Sequences", "type": "data access"}], "associated-tools": [{"url": "https://npsa-prabi.ibcp.fr/cgi-bin/npsa_automat.pl?&page=/NPSA/npsa_blast.html", "name": "BlastP"}, {"url": "https://npsa-prabi.ibcp.fr/cgi-bin/npsa_automat.pl?&page=/NPSA/npsa_clustalw.html", "name": "ClustalW"}, {"url": "https://bykdb.ibcp.fr/BYKdb/BYKdbAnnotate", "name": "Annotate"}]}, "legacy-ids": ["biodbcore-000011", "bsg-d000011"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Protein structure", "Molecular function", "Amino acid sequence"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Bacterial protein tYrosine Kinase database", "abbreviation": "BYKdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.jr30xc", "doi": "10.25504/FAIRsharing.jr30xc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bacterial protein tYrosine Kinase database (BYKdb) contains computer-annotated BY-kinase sequences. The database web interface allows static and dynamic queries and provides integrated analysis tools including sequence annotation.", "publications": [{"id": 2173, "pubmed_id": 9434192, "title": "Characterization of a bacterial gene encoding an autophosphorylating protein tyrosine kinase.", "year": 1998, "url": "http://doi.org/10.1016/s0378-1119(97)00554-4", "authors": "Grangeasse C., Doublet P., Vaganay E., Vincent C., Del\u00e9age G., Duclos B., Cozzone AJ.,", "journal": "Gene", "doi": "10.1016/s0378-1119(97)00554-4", "created_at": "2021-09-30T08:26:24.866Z", "updated_at": "2021-09-30T08:26:24.866Z"}, {"id": 2175, "pubmed_id": 18772155, "title": "Identification of the idiosyncratic bacterial protein tyrosine kinase (BY-kinase) family signature.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn462", "authors": "Jadeau F., Bechet E., Cozzone AJ., Del\u00e9age G., Grangeasse C., Combet C.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn462", "created_at": "2021-09-30T08:26:25.117Z", "updated_at": "2021-09-30T08:26:25.117Z"}, {"id": 2191, "pubmed_id": 19189200, "title": "Tyrosine-kinases in bacteria: from a matter of controversy to the status of key regulatory enzymes.", "year": 2009, "url": "http://doi.org/10.1007/s00726-009-0237-8", "authors": "Bechet E., Guiral S., Torres S., Mijakovic I., Cozzone AJ., Grangeasse C.,", "journal": "Amino Acids", "doi": "10.1007/s00726-009-0237-8", "created_at": "2021-09-30T08:26:26.972Z", "updated_at": "2021-09-30T08:26:26.972Z"}, {"id": 2339, "pubmed_id": 22080550, "title": "BYKdb: the Bacterial protein tYrosine Kinase database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr915", "authors": "Jadeau F,Grangeasse C,Shi L,Mijakovic I,Deleage G,Combet C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr915", "created_at": "2021-09-30T08:26:47.258Z", "updated_at": "2021-09-30T11:29:33.396Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1701", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:48.984Z", "metadata": {"doi": "10.25504/FAIRsharing.4dfs3p", "name": "Whole-Cell Knowledge Base", "status": "ready", "contacts": [{"contact-name": "Jonathan Karr", "contact-email": "karr@mssm.edu", "contact-orcid": "0000-0002-2605-5080"}], "homepage": "http://www.wholecellkb.org", "identifier": 1701, "description": "WholeCellKB is a collection of open-access model organism databases specifically designed to enable whole-cell models. Currently, WholeCellKB contains a database of Mycoplasma genitalium, a Gram-positive bacterium and common human pathogen. The M. genitalium database is the most comprehensive description of any single organism to date, and was used to develop the first whole-cell computational model. The M. genitalium database was curated from over 900 primary research articles, reviews, books, and databases. The M. genitalium database is extensively cross-referenced to external resources including BioCyc, KEGG, and UniProt. WholeCellKB is also an open-source web-based software program for constructing model organism databases. The WholeCellKB software provides an extensive and fully customizable data model that fully describes individual species including the structure and function of each gene, protein, reaction, and pathway. WholeCellKB is freely accessible via a web-based user interface as well as via a RESTful web service.", "abbreviation": "WholeCellKB", "access-points": [{"url": "http://www.wholecellkb.org/about/Mgenitalium#api", "name": "RESTful API", "type": "REST"}], "support-links": [{"url": "http://www.wholecellkb.org/tutorial/Mgenitalium", "type": "Help documentation"}, {"url": "wholecell@lists.stanford.edu", "type": "Mailing list"}, {"url": "http://www.wholecellkb.org/about/Mgenitalium", "type": "Help documentation"}, {"url": "https://twitter.com/jonrkarr", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "http://www.wholecellkb.org/about", "name": "manual curation", "type": "data curation"}, {"url": "http://www.wholecellkb.org/about", "name": "versioning on a per entry basis", "type": "data versioning"}, {"url": "http://www.wholecellkb.org/Mgenitalium", "name": "browse", "type": "data access"}, {"url": "http://www.wholecellkb.org/export/Mgenitalium", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000158", "bsg-d000158"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Systems Biology"], "domains": ["Curated information"], "taxonomies": ["Mycoplasma genitalium"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Whole-Cell Knowledge Base", "abbreviation": "WholeCellKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.4dfs3p", "doi": "10.25504/FAIRsharing.4dfs3p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WholeCellKB is a collection of open-access model organism databases specifically designed to enable whole-cell models. Currently, WholeCellKB contains a database of Mycoplasma genitalium, a Gram-positive bacterium and common human pathogen. The M. genitalium database is the most comprehensive description of any single organism to date, and was used to develop the first whole-cell computational model. The M. genitalium database was curated from over 900 primary research articles, reviews, books, and databases. The M. genitalium database is extensively cross-referenced to external resources including BioCyc, KEGG, and UniProt. WholeCellKB is also an open-source web-based software program for constructing model organism databases. The WholeCellKB software provides an extensive and fully customizable data model that fully describes individual species including the structure and function of each gene, protein, reaction, and pathway. WholeCellKB is freely accessible via a web-based user interface as well as via a RESTful web service.", "publications": [{"id": 806, "pubmed_id": 23175606, "title": "WholeCellKB: model organism databases for comprehensive whole-cell models.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1108", "authors": "Karr JR,Sanghvi JC,Macklin DN,Arora A,Covert MW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1108", "created_at": "2021-09-30T08:23:48.893Z", "updated_at": "2021-09-30T11:28:51.778Z"}], "licence-links": [{"licence-name": "Wholecells DB MIT Licence", "licence-id": 861, "link-id": 159, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1855", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:37.378Z", "metadata": {"doi": "10.25504/FAIRsharing.pypsym", "name": "The European Searchable Tumour Line Database", "status": "deprecated", "contacts": [{"contact-name": "Steven G. E. Marsh", "contact-email": "steven.marsh@ucl.ac.uk", "contact-orcid": "0000-0003-2855-4120"}], "homepage": "https://www.ebi.ac.uk/ipd/estdab/", "citations": [{"doi": "10.1007/s00262-008-0656-5", "pubmed-id": 19172270, "publication-id": 2756}], "identifier": 1855, "description": "The European Searchable Tumour Line Database (ESTDAB) Database and Cell Bank provide a service enabling investigators to search online for HLA typed, immunologically characterised tumour cells.", "abbreviation": "IPD-ESTDAB", "support-links": [{"url": "https://www.ebi.ac.uk/ipd/estdab/intro.html", "name": "About IPD-ESTDAB", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/contributecells.html", "name": "Contributing Cells", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/ordercells.html", "name": "Ordering Cells", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/collaborators.html", "name": "Collaborators", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://www.ebi.ac.uk/ipd/estdab/dictionary.html", "name": "Browse Cells (ESTDAB Directory Version 1.3)", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/contributecells.html", "name": "submit", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/secondary_search.html", "name": "Search on all search determinants", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/estdab/primary_search.html", "name": "Search on primary search determinants", "type": "data access"}], "deprecation-date": "2020-02-10", "deprecation-reason": "The IPD-ESTDAB database has been part of the IPD project since 2003 and represents a legacy system that is no longer under active development, but is provided to the community for reference purposes (see https://doi.org/10.1007/s00251-019-01133-w for more information)."}, "legacy-ids": ["biodbcore-000316", "bsg-d000316"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunogenetics", "Immunology", "Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Cancer", "Human leukocyte antigen complex", "Tumor", "Small molecule", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: The European Searchable Tumour Line Database", "abbreviation": "IPD-ESTDAB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pypsym", "doi": "10.25504/FAIRsharing.pypsym", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Searchable Tumour Line Database (ESTDAB) Database and Cell Bank provide a service enabling investigators to search online for HLA typed, immunologically characterised tumour cells.", "publications": [{"id": 368, "pubmed_id": 23180793, "title": "IPD--the Immuno Polymorphism Database.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1140", "authors": "Robinson J., Halliwell JA., McWilliam H., Lopez R., Marsh SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1140", "created_at": "2021-09-30T08:22:59.558Z", "updated_at": "2021-09-30T08:22:59.558Z"}, {"id": 2756, "pubmed_id": 19172270, "title": "The European searchable tumour line database.", "year": 2009, "url": "http://doi.org/10.1007/s00262-008-0656-5", "authors": "Robinson J,Roberts CH,Dodi IA,Madrigal JA,Pawelec G,Wedel L,Marsh SG", "journal": "Cancer Immunol Immunother", "doi": "10.1007/s00262-008-0656-5", "created_at": "2021-09-30T08:27:38.764Z", "updated_at": "2021-09-30T08:27:38.764Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 160, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1770", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:06.366Z", "metadata": {"doi": "10.25504/FAIRsharing.x6d6sx", "name": "Bgee DataBase for Gene Expression Evolution", "status": "ready", "contacts": [{"contact-name": "Frederic B. Bastian", "contact-email": "frederic.bastian@unil.ch"}], "homepage": "http://bgee.org", "identifier": 1770, "description": "Bgee is a database to retrieve and compare gene expression patterns in multiple animal species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). Bgee is based exclusively on curated \"normal\", healthy, expression data (e.g., no gene knock-out, no treatment, no disease), to provide a comparable reference of normal gene expression. Bgee produces calls of presence/absence of expression, and of differential over-/under-expression, integrated along with information of gene orthology, and of homology between organs. This allows comparisons of expression patterns between species.", "abbreviation": "Bgee", "support-links": [{"url": "https://bgeedb.wordpress.com/", "type": "Blog/News"}, {"url": "Bgee@sib.swiss", "name": "General contact", "type": "Support email"}, {"url": "https://github.com/BgeeDB/", "type": "Github"}, {"url": "http://bgee.org/?page=doc", "type": "Help documentation"}, {"url": "https://twitter.com/Bgeedb", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://bgee.org/?page=download&action=expr_calls", "name": "Gene expression download", "type": "data access"}, {"url": "https://bgee.org/?page=gene", "name": "Search", "type": "data access"}, {"url": "https://bgee.org/?page=download&action=proc_values", "name": "Processed expression values", "type": "data access"}], "associated-tools": [{"url": "http://bgee.org/?page=top_anat#/", "name": "TopAnat - Gene Expression Enrichment"}, {"url": "https://bioconductor.org/packages/release/bioc/html/BgeeDB.html", "name": "BgeeDB Bioconductor 3.8"}, {"url": "http://bioconductor.org/packages/release/workflows/html/BgeeCall.html", "name": "BgeeCall"}]}, "legacy-ids": ["biodbcore-000228", "bsg-d000228"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Transcriptomics"], "domains": ["Expression data", "RNA sequence", "Annotation", "Analysis", "Differential gene expression analysis", "Gene expression", "RNA sequencing", "In situ hybridization", "Homologous", "Orthologous", "Biocuration"], "taxonomies": ["Anolis carolinensis", "Bos taurus", "Caenorhabditis elegans", "Canis lupus", "Cavia porcellus", "Danio rerio", "Drosophila ananassae", "Drosophila melanogaster", "Drosophila mojavensis", "Drosophila pseudoobscura", "Drosophila simulans", "Drosophila virilis", "Drosophila yakuba", "Equus caballus", "Erinaceus europaeus", "Felis catus", "Gallus gallus", "Gorilla gorilla gorilla", "Homo sapiens", "Macaca mulatta", "Monodelphis domestica", "Mus musculus", "Ornithorhynchus anatinus", "Oryctolagus cuniculus", "Pan paniscus", "Pan troglodytes", "Rattus norvegicus", "Sus scrofa", "Xenopus tropicalis"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Bgee DataBase for Gene Expression Evolution", "abbreviation": "Bgee", "url": "https://fairsharing.org/10.25504/FAIRsharing.x6d6sx", "doi": "10.25504/FAIRsharing.x6d6sx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bgee is a database to retrieve and compare gene expression patterns in multiple animal species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). Bgee is based exclusively on curated \"normal\", healthy, expression data (e.g., no gene knock-out, no treatment, no disease), to provide a comparable reference of normal gene expression. Bgee produces calls of presence/absence of expression, and of differential over-/under-expression, integrated along with information of gene orthology, and of homology between organs. This allows comparisons of expression patterns between species.", "publications": [{"id": 23, "pubmed_id": 30467516, "title": "BgeeDB, an R package for retrieval of curated expression datasets and for gene list expression localization enrichment tests.", "year": 2016, "url": "http://doi.org/10.12688/f1000research.9973.2", "authors": "Komljenovic A,Roux J,Wollbrett J,Robinson-Rechavi M,Bastian FB", "journal": "F1000Res", "doi": "10.12688/f1000research.9973.2", "created_at": "2021-09-30T08:22:22.838Z", "updated_at": "2021-09-30T08:22:22.838Z"}, {"id": 741, "pubmed_id": 25009735, "title": "Unification of multi-species vertebrate anatomy ontologies for comparative biology in Uberon", "year": 2014, "url": "http://doi.org/10.1186/2041-1480-5-21", "authors": "Melissa A Haendel,\u00a0et al.", "journal": "Journal of Biomedical Semantics", "doi": "10.1186/2041-1480-5-21", "created_at": "2021-09-30T08:23:41.612Z", "updated_at": "2021-09-30T08:23:41.612Z"}, {"id": 1340, "pubmed_id": 23487185, "title": "Uncovering hidden duplicated content in public transcriptomics data.", "year": 2013, "url": "http://doi.org/10.1093/database/bat010", "authors": "Rosikiewicz M., Comte A., Niknejad A., Robinson-Rechavi M., Bastian FB.,", "journal": "Database (Oxford)", "doi": "10.1093/database/bat010", "created_at": "2021-09-30T08:24:49.951Z", "updated_at": "2021-09-30T08:24:49.951Z"}, {"id": 2462, "pubmed_id": 22285560, "title": "vHOG, a multispecies vertebrate ontology of homologous organs groups.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts048", "authors": "Niknejad A,Comte A,Parmentier G,Roux J,Bastian FB,Robinson-Rechavi M", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts048", "created_at": "2021-09-30T08:27:01.961Z", "updated_at": "2021-09-30T08:27:01.961Z"}, {"id": 2498, "pubmed_id": null, "title": "Bgee: Integrating and Comparing Heterogeneous Transcriptome Data Among Species", "year": 2008, "url": "http://doi.org/10.1007/978-3-540-69828-9_12", "authors": "Frederic Bastian, Gilles Parmentier, Julien Roux, Sebastien Moretti, Vincent Laudet, Marc Robinson-Rechavi", "journal": "Lecture Notes in Computer Science", "doi": "10.1007/978-3-540-69828-9_12", "created_at": "2021-09-30T08:27:06.283Z", "updated_at": "2021-09-30T08:27:06.283Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2097, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1707", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-11T11:07:38.834Z", "metadata": {"doi": "10.25504/FAIRsharing.f55jfq", "name": "GenomeRNAi", "status": "ready", "contacts": [{"contact-name": "Ulrike Hardeland", "contact-email": "contact@genomernai.org"}], "homepage": "http://www.genomernai.org", "identifier": 1707, "description": "The GenomeRNAi database collects RNAi phenotypes recorded in the literature for Homo sapiens and Drosophila melanogaster, as well as details on RNAi reagents. The data is well integrated with information from other resources, allowing comparison within and across species. Download files are provided.", "abbreviation": "GenomeRNAi", "support-links": [{"url": "contact@genomernai.org", "name": "contact@genomernai.org", "type": "Support email"}, {"url": "http://rnai-screening-wiki.dkfz.de/signaling/wiki/display/genomernai/Home", "type": "Help documentation"}, {"url": "https://twitter.com/genomernai", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "http://www.genomernai.org/submission", "name": "direct data submission", "type": "data curation"}, {"name": "quarterly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}], "associated-tools": [{"url": "http://www.e-talen.org/E-TALEN/", "name": "E-TALEN"}, {"url": "http://web-cellhts2.dkfz.de/cellHTS-java/cellHTS2/", "name": "cellHS2"}, {"url": "http://www.dkfz.de/signaling/e-rnai3/", "name": "E-RNAi"}, {"url": "http://flight.icr.ac.uk", "name": "FLIGHT"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011089", "name": "re3data:r3d100011089", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013088", "name": "SciCrunch:RRID:SCR_013088", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000164", "bsg-d000164"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["RNA interference", "Literature curation"], "taxonomies": ["Drosophila melanogaster", "Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: GenomeRNAi", "abbreviation": "GenomeRNAi", "url": "https://fairsharing.org/10.25504/FAIRsharing.f55jfq", "doi": "10.25504/FAIRsharing.f55jfq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GenomeRNAi database collects RNAi phenotypes recorded in the literature for Homo sapiens and Drosophila melanogaster, as well as details on RNAi reagents. The data is well integrated with information from other resources, allowing comparison within and across species. Download files are provided.", "publications": [{"id": 223, "pubmed_id": 17135194, "title": "GenomeRNAi: a database for cell-based RNAi phenotypes.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl906", "authors": "Horn T., Arziman Z., Berger J., Boutros M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl906", "created_at": "2021-09-30T08:22:44.157Z", "updated_at": "2021-09-30T08:22:44.157Z"}, {"id": 226, "pubmed_id": 19910367, "title": "GenomeRNAi: a database for cell-based RNAi phenotypes. 2009 update.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1038", "authors": "Gilsdorf M., Horn T., Arziman Z., Pelz O., Kiner E., Boutros M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp1038", "created_at": "2021-09-30T08:22:44.431Z", "updated_at": "2021-09-30T08:22:44.431Z"}, {"id": 1143, "pubmed_id": 23193271, "title": "GenomeRNAi: a database for cell-based and in vivo RNAi phenotypes, 2013 update.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1170", "authors": "Schmidt EE., Pelz O., Buhlmann S., Kerr G., Horn T., Boutros M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1170", "created_at": "2021-09-30T08:24:27.032Z", "updated_at": "2021-09-30T08:24:27.032Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1132, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1920", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.729Z", "metadata": {"doi": "10.25504/FAIRsharing.93gy4v", "name": "Listeria innocua and Listeria monocytogenes genomes database", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "genolist@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/ListiList/", "identifier": 1920, "description": "ListiList is a database dedicated to the analysis of the genomes of the food-borne pathogen, Listeria monocytogenes, and its non-pathogenic relative, Listeria innocua. Its purpose is to collate and integrate various aspects of the genomic information from L. monocytogenes, a paradigm for bacterial-host interactions.", "abbreviation": "ListiList", "support-links": [{"url": "http://genolist.pasteur.fr/ListiList/help/general.html", "type": "Help documentation"}], "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000385", "bsg-d000385"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome"], "taxonomies": ["Listeria monocytogenes"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Listeria innocua and Listeria monocytogenes genomes database", "abbreviation": "ListiList", "url": "https://fairsharing.org/10.25504/FAIRsharing.93gy4v", "doi": "10.25504/FAIRsharing.93gy4v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ListiList is a database dedicated to the analysis of the genomes of the food-borne pathogen, Listeria monocytogenes, and its non-pathogenic relative, Listeria innocua. Its purpose is to collate and integrate various aspects of the genomic information from L. monocytogenes, a paradigm for bacterial-host interactions.", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2761", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-22T17:53:06.000Z", "updated-at": "2021-11-24T13:16:07.193Z", "metadata": {"doi": "10.25504/FAIRsharing.Yedluf", "name": "Clinical Interpretation of Variants in Cancer", "status": "ready", "contacts": [{"contact-name": "Malachi Griffith", "contact-email": "help@civicdb.org", "contact-orcid": "0000-0002-6388-446X"}], "homepage": "https://civicdb.org/", "citations": [{"doi": "10.1038/ng.3774", "pubmed-id": 28138153, "publication-id": 1771}], "identifier": 2761, "description": "CIViC is an expert-crowdsourced knowledgebase for Clinical Interpretation of Variants in Cancer describing the therapeutic, prognostic, diagnostic and predisposing relevance of inherited and somatic variants of all types. Realizing precision medicine will require information to be centralized, debated and interpreted for application in the clinic. CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer. Our goal is to enable precision medicine by providing an educational forum for dissemination of knowledge and active discussion of the clinical significance of cancer genome alterations.", "abbreviation": "CIViC", "access-points": [{"url": "https://civicdb.org/api/genes", "name": "Genes endpoint", "type": "REST"}, {"url": "https://civicdb.org/api/variants", "name": "Variants endpoint", "type": "REST"}, {"url": "https://civicdb.org/api/evidence_items", "name": "Evidence endpoint", "type": "REST"}, {"url": "https://civicdb.org/api/variant_groups", "name": "Variant groups endpoint", "type": "REST"}, {"url": "https://civicdb.org/api/assertions", "name": "Assertions endpoint", "type": "REST"}], "support-links": [{"url": "https://civicdb.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://civicdb.org/help/introduction", "name": "Introduction to CIViC", "type": "Help documentation"}, {"url": "https://civicdb.org/glossary", "name": "Glossary", "type": "Help documentation"}, {"url": "https://civicdb.org/contact", "name": "CIViC contact page", "type": "Help documentation"}, {"url": "https://griffithlab.github.io/civic-api-docs/", "name": "API documentation", "type": "Github"}, {"url": "https://civicdb.org/community/main", "name": "Community Information", "type": "Help documentation"}, {"url": "https://civicdb.org/participate", "name": "How to Contribute", "type": "Help documentation"}, {"url": "https://civicdb.org/statistics/evidence", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://civicdb.org/releases", "name": "Download Data Releases", "type": "data release"}, {"url": "https://civicdb.org/browse/variants", "name": "Browse Variants", "type": "data access"}, {"url": "https://civicdb.org/search/evidence/", "name": "Search Evidence", "type": "data access"}, {"url": "https://civicdb.org/activity", "name": "Browse User Activity", "type": "data access"}]}, "legacy-ids": ["biodbcore-001259", "bsg-d001259"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Bioinformatics", "Comparative Genomics", "Translational Medicine"], "domains": ["Cancer", "Diagnosis", "Genome", "Sequence variant"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Clinical Interpretation of Variants in Cancer", "abbreviation": "CIViC", "url": "https://fairsharing.org/10.25504/FAIRsharing.Yedluf", "doi": "10.25504/FAIRsharing.Yedluf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CIViC is an expert-crowdsourced knowledgebase for Clinical Interpretation of Variants in Cancer describing the therapeutic, prognostic, diagnostic and predisposing relevance of inherited and somatic variants of all types. Realizing precision medicine will require information to be centralized, debated and interpreted for application in the clinic. CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer. Our goal is to enable precision medicine by providing an educational forum for dissemination of knowledge and active discussion of the clinical significance of cancer genome alterations.", "publications": [{"id": 1771, "pubmed_id": 28138153, "title": "CIViC is a community knowledgebase for expert crowdsourcing the clinical interpretation of variants in cancer.", "year": 2017, "url": "http://doi.org/10.1038/ng.3774", "authors": "Griffith M,Spies NC,Krysiak K,McMichael JF,Coffman AC,Danos AM,Ainscough BJ,Ramirez CA,Rieke DT,Kujan L,Barnell EK,Wagner AH,Skidmore ZL,Wollam A,Liu CJ,Jones MR,Bilski RL,Lesurf R,Feng YY,Shah NM,Bonakdar M,Trani L,Matlock M,Ramu A,Campbell KM,Spies GC,Graubert AP,Gangavarapu K,Eldred JM,Larson DE,Walker JR,Good BM,Wu C,Su AI,Dienstmann R,Margolin AA,Tamborero D,Lopez-Bigas N,Jones SJ,Bose R,Spencer DH,Wartman LD,Wilson RK,Mardis ER,Griffith OL", "journal": "Nat Genet", "doi": "10.1038/ng.3774", "created_at": "2021-09-30T08:25:38.696Z", "updated_at": "2021-09-30T08:25:38.696Z"}, {"id": 2391, "pubmed_id": 30311370, "title": "Adapting crowdsourced clinical cancer curation in CIViC to the ClinGen minimum variant level data community-driven standards.", "year": 2018, "url": "http://doi.org/10.1002/humu.23651", "authors": "Danos AM,Ritter DI,Wagner AH,Krysiak K,Sonkin D,Micheel C,McCoy M,Rao S,Raca G,Boca SM,Roy A,Barnell EK,McMichael JF,Kiwala S,Coffman AC,Kujan L,Kulkarni S,Griffith M,Madhavan S,Griffith OL", "journal": "Hum Mutat", "doi": "10.1002/humu.23651", "created_at": "2021-09-30T08:26:53.684Z", "updated_at": "2021-09-30T08:26:53.684Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 956, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1755", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.868Z", "metadata": {"doi": "10.25504/FAIRsharing.77d397", "name": "Functional Coverage of the Proteome", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "cgl@imim.es"}], "homepage": "http://cgl.imim.es/fcp/", "identifier": 1755, "description": "FCP is a publicly accessible web tool dedicated to analysing the current state and trends on the population of available structures along the classification schemes of enzymes and nuclear receptors, offering both graphical and quantitative data on the degree of functional coverage in that portion of the proteome by existing structures, as well as on the bias observed in the distribution of those structures among proteins.", "abbreviation": "FCP", "support-links": [{"url": "http://cgl.imim.es/fcp/help/fullHelp.htm", "type": "Help documentation"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000213", "bsg-d000213"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Annotation", "Protein", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Functional Coverage of the Proteome", "abbreviation": "FCP", "url": "https://fairsharing.org/10.25504/FAIRsharing.77d397", "doi": "10.25504/FAIRsharing.77d397", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FCP is a publicly accessible web tool dedicated to analysing the current state and trends on the population of available structures along the classification schemes of enzymes and nuclear receptors, offering both graphical and quantitative data on the degree of functional coverage in that portion of the proteome by existing structures, as well as on the bias observed in the distribution of those structures among proteins.", "publications": [{"id": 550, "pubmed_id": 16705012, "title": "FCP: functional coverage of the proteome by structures.", "year": 2006, "url": "http://doi.org/10.1093/bioinformatics/btl188", "authors": "Garc\u00eda-Serna R., Opatowski L., Mestres J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btl188", "created_at": "2021-09-30T08:23:20.043Z", "updated_at": "2021-09-30T08:23:20.043Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2753", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-21T14:39:13.000Z", "updated-at": "2021-11-24T13:17:44.055Z", "metadata": {"doi": "10.25504/FAIRsharing.o8CuJ7", "name": "Educational Resource Discovery Index", "status": "ready", "contacts": [{"contact-name": "John Darrell Van Horn", "contact-email": "jvanhorn@usc.edu", "contact-orcid": "0000-0003-1537-0816"}], "homepage": "http://www.bigdatau.org/about_erudite", "citations": [{"doi": "https://doi.org/10.1142/9789813235533_0027", "pubmed-id": 29218890, "publication-id": 2316}], "identifier": 2753, "description": "ERuDIte is the educational resource discovery index that powers the BD2K Training Coordinating Center (TCC) Web Portal. ERuDIte not only serves as a resource collector and aggregator but also as a system powered by Machine Learning, Information Retrieval, and Natural Language Processing that intelligently organizes resources to provide a dynamic and personalized curriculum for biomedical researchers interested in learning about Data Science. ERuDIte provides the resource data that learners can discover on the TCC Web Portal. Over time, learners\u2019 interactions with the TCC Web Portal will impact ERuDIte, forming a feedback cycle where both components improve each other and adapt to learners\u2019 needs and demands. The blending of Artificial Intelligence techniques with highly targeted curation for resource discovery, retrieval, personalization, and organization distinguishes ERuDIte from MOOC aggregators and other resource collection initiatives.", "abbreviation": "ERuDIte", "support-links": [{"url": "http://www.bigdatau.org", "name": "BD2K Training Coordinating Center", "type": "Help documentation"}, {"url": "https://bioint.github.io/erudite-training-resource-standard/", "name": "BD2K ERuDIte GitHub Webpage", "type": "Github"}], "year-creation": 2015}, "legacy-ids": ["biodbcore-001251", "bsg-d001251"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Research on Teaching, Learning and Training", "Education Science", "Computer Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["data science", "Education", "personalization", "Resource Discovery", "Training"], "countries": ["United States"], "name": "FAIRsharing record for: Educational Resource Discovery Index", "abbreviation": "ERuDIte", "url": "https://fairsharing.org/10.25504/FAIRsharing.o8CuJ7", "doi": "10.25504/FAIRsharing.o8CuJ7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ERuDIte is the educational resource discovery index that powers the BD2K Training Coordinating Center (TCC) Web Portal. ERuDIte not only serves as a resource collector and aggregator but also as a system powered by Machine Learning, Information Retrieval, and Natural Language Processing that intelligently organizes resources to provide a dynamic and personalized curriculum for biomedical researchers interested in learning about Data Science. ERuDIte provides the resource data that learners can discover on the TCC Web Portal. Over time, learners\u2019 interactions with the TCC Web Portal will impact ERuDIte, forming a feedback cycle where both components improve each other and adapt to learners\u2019 needs and demands. The blending of Artificial Intelligence techniques with highly targeted curation for resource discovery, retrieval, personalization, and organization distinguishes ERuDIte from MOOC aggregators and other resource collection initiatives.", "publications": [{"id": 2316, "pubmed_id": 29218890, "title": "Democratizing data science through data science training.", "year": 2017, "url": "https://www.ncbi.nlm.nih.gov/pubmed/29218890", "authors": "Van Horn JD,Fierro L,Kamdar J,Gordon J,Stewart C,Bhattrai A,Abe S,Lei X,O'Driscoll C,Sinha A,Jain P,Burns G,Lerman K,Ambite JL", "journal": "Pac Symp Biocomput", "doi": "https://doi.org/10.1142/9789813235533_0027", "created_at": "2021-09-30T08:26:44.201Z", "updated_at": "2021-09-30T08:26:44.201Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 848, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2276", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-13T08:55:39.000Z", "updated-at": "2021-11-24T13:20:10.094Z", "metadata": {"doi": "10.25504/FAIRsharing.hs4d6r", "name": "miRandola: extracellular circulating RNAs database", "status": "ready", "contacts": [{"contact-name": "Francesco Russo", "contact-email": "francesco.russo@iit.cnr.it", "contact-orcid": "0000-0001-9257-4359"}], "homepage": "http://mirandola.iit.cnr.it/", "identifier": 2276, "description": "The miRandola database is the first resource for extracellular circulating RNAs. The first version of the database has been published on Plos One in 2012. It mainly contains information on circulating microRNAs and other non-coding RNAs. It is manually curated and constantly updated by the authors (usually once a year). We have extracted data from PubMed papers and Exocarta (a database that collects data regarding exosomes). We report information on methods of RNA extraction and qualification, diseases, experimental description, expression data and the potential biomarker role. We are updating the database with other RNAs and the future direction is to have a portal for all the non invasive biomarkers such as cell free DNA and circulating tumor cells.", "abbreviation": "miRandola", "year-creation": 2012, "associated-tools": [{"url": "http://ferrolab.dmi.unict.it/miro/", "name": "miRo'"}]}, "legacy-ids": ["biodbcore-000750", "bsg-d000750"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Biomarker", "Cancer", "Vesicle", "Extracellular exosome", "Long non-coding ribonucleic acid", "Circulating cell-free RNA", "Micro RNA", "Non-coding RNA", "Cardiovascular disease"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: miRandola: extracellular circulating RNAs database", "abbreviation": "miRandola", "url": "https://fairsharing.org/10.25504/FAIRsharing.hs4d6r", "doi": "10.25504/FAIRsharing.hs4d6r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The miRandola database is the first resource for extracellular circulating RNAs. The first version of the database has been published on Plos One in 2012. It mainly contains information on circulating microRNAs and other non-coding RNAs. It is manually curated and constantly updated by the authors (usually once a year). We have extracted data from PubMed papers and Exocarta (a database that collects data regarding exosomes). We report information on methods of RNA extraction and qualification, diseases, experimental description, expression data and the potential biomarker role. We are updating the database with other RNAs and the future direction is to have a portal for all the non invasive biomarkers such as cell free DNA and circulating tumor cells.", "publications": [{"id": 1017, "pubmed_id": 23094086, "title": "miRandola: extracellular circulating microRNAs database.", "year": 2012, "url": "http://doi.org/10.1371/journal.pone.0047786", "authors": "Russo F, Di Bella S, Nigita G, Macca V, Lagan\u00e0 A, Giugno R, Pulvirenti A, Ferro A", "journal": "Plos One", "doi": "10.1371/journal.pone.0047786", "created_at": "2021-09-30T08:24:12.588Z", "updated_at": "2021-09-30T08:24:12.588Z"}, {"id": 1018, "pubmed_id": 25077952, "title": "A knowledge base for the discovery of function, diagnostic potential and drug effects on cellular and extracellular miRNAs.", "year": 2014, "url": "http://doi.org/10.1186/1471-2164-15-S3-S4", "authors": "Russo F, Di Bella S, Bonnici V, Lagan\u00e0 A, Rainaldi G, Pellegrini M, Pulvirenti A, Giugno R, Ferro A", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-15-S3-S4", "created_at": "2021-09-30T08:24:12.748Z", "updated_at": "2021-09-30T08:24:12.748Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2079", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:17.813Z", "metadata": {"doi": "10.25504/FAIRsharing.rbjs3e", "name": "Compulyeast", "status": "deprecated", "contacts": [{"contact-email": "vital@farm.ucm.es"}], "homepage": "http://compluyeast2dpage.dacya.ucm.es", "identifier": 2079, "description": "Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", "abbreviation": "Compulyeast", "associated-tools": [{"url": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi", "name": "search"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000547", "bsg-d000547"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Protein"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Compulyeast", "abbreviation": "Compulyeast", "url": "https://fairsharing.org/10.25504/FAIRsharing.rbjs3e", "doi": "10.25504/FAIRsharing.rbjs3e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1901, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1790", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:08.652Z", "metadata": {"doi": "10.25504/FAIRsharing.8dak0r", "name": "Open Regulatory Annotation", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "oreganno@bcgsc.ca"}], "homepage": "http://www.oreganno.org/", "identifier": 1790, "description": "The Open REGulatory ANNOtation database (ORegAnno) is an open database for the curation of known regulatory elements from scientific literature. Annotation is collected from users worldwide for various biological assays and is automatically cross-referenced against PubMED, Entrez Gene, EnsEMBL, dbSNP, the eVOC: Cell type ontology, and the Taxonomy database.", "abbreviation": "ORegAnno", "support-links": [{"url": "http://www.oreganno.org/oregano/Help.jsp", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.oreganno.org/oregano/Dump.jsp", "name": "Download", "type": "data access"}, {"url": "http://www.oreganno.org/oregano/Search.jsp", "name": "search", "type": "data access"}, {"url": "http://oreganno.org/tfview/cgi-bin/specieslist.pl", "name": "browse", "type": "data access"}, {"url": "http://www.oreganno.org/oregano/Tools.jsp", "name": "analyze", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010656", "name": "re3data:r3d100010656", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007835", "name": "SciCrunch:RRID:SCR_007835", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000250", "bsg-d000250"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Biological regulation", "Small molecule", "Protein", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Open Regulatory Annotation", "abbreviation": "ORegAnno", "url": "https://fairsharing.org/10.25504/FAIRsharing.8dak0r", "doi": "10.25504/FAIRsharing.8dak0r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Open REGulatory ANNOtation database (ORegAnno) is an open database for the curation of known regulatory elements from scientific literature. Annotation is collected from users worldwide for various biological assays and is automatically cross-referenced against PubMED, Entrez Gene, EnsEMBL, dbSNP, the eVOC: Cell type ontology, and the Taxonomy database.", "publications": [{"id": 316, "pubmed_id": 18006570, "title": "ORegAnno: an open-access community-driven resource for regulatory annotation.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm967", "authors": "Griffith OL., Montgomery SB., Bernier B., Chu B., Kasaian K., Aerts S., Mahony S., Sleumer MC., Bilenky M., Haeussler M., Griffith M., Gallo SM., Giardine B., Hooghe B., Van Loo P., Blanco E., Ticoll A., Lithwick S., Portales-Casamar E., Donaldson IJ., Robertson G., Wadelius C., De Bleser P., Vlieghe D., Halfon MS., Wasserman W., Hardison R., Bergman CM., Jones SJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm967", "created_at": "2021-09-30T08:22:53.899Z", "updated_at": "2021-09-30T08:22:53.899Z"}, {"id": 317, "pubmed_id": 16397004, "title": "ORegAnno: an open access database and curation system for literature-derived promoters, transcription factor binding sites and regulatory variation.", "year": 2006, "url": "http://doi.org/10.1093/bioinformatics/btk027", "authors": "Montgomery SB., Griffith OL., Sleumer MC., Bergman CM., Bilenky M., Pleasance ED., Prychyna Y., Zhang X., Jones SJ.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btk027", "created_at": "2021-09-30T08:22:54.007Z", "updated_at": "2021-09-30T08:22:54.007Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 273, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1669", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:03.539Z", "metadata": {"doi": "10.25504/FAIRsharing.dyfcen", "name": "Nematode.net", "status": "ready", "homepage": "http://nematode.net", "identifier": 1669, "description": "Nematode.net is the home page of the parasitic nematode EST project at The Genome Institute at Washington University in St. Louis. The site was established in 2000 as a component of the NIH-NIAID grant \"A Genomic Approach to Parasites from the Phylum Nematoda\". While Nematode.net started as a project site, over the years it became a community resource dedicated to the study of parasitic nematodes.", "abbreviation": "Nematode.net", "support-links": [{"url": "http://nematode.net/NN3_frontpage.cgi?navbar_selection=home&subnav_selection=faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://nematode.net/NN3_frontpage.cgi?navbar_selection=nemagene&subnav_selection=nemagene_faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://nematode.net/NN3_frontpage.cgi?navbar_selection=nemagene&subnav_selection=helmcop_faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/forum/#!forum/nematodenet-forum", "type": "Forum"}, {"url": "http://nematode.net/NN3_frontpage.cgi?navbar_selection=home&subnav_selection=collaborators_grants", "type": "Help documentation"}, {"url": "https://twitter.com/nematodenet", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Nematode.net", "type": "Wikipedia"}], "year-creation": 2000, "data-processes": [{"url": "ftp://genome.wustl.edu/pub/est/pnp", "name": "ftp", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "access to historical files available for most resources", "type": "data versioning"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "manual curation", "type": "data curation"}, {"name": "ad-hoc release", "type": "data release"}], "associated-tools": [{"url": "http://nematode.net/NN3_frontpage.cgi?navbar_selection=nemagene&subnav_selection=nemagene_new", "name": "Search"}]}, "legacy-ids": ["biodbcore-000125", "bsg-d000125"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Life Science"], "domains": ["Citation", "Codon usage table", "Expression data", "Gene Ontology enrichment", "Genomic assembly", "Computational biological predictions", "Protein interaction", "Parasite", "Molecular interaction", "Secondary protein structure", "Protein", "Transcript"], "taxonomies": ["Ancylostoma caninum", "Ancylostoma ceylanicum", "Ancylostoma duodenale", "Ascaris suum", "Brugia malayi", "Caenorhabditis brenneri", "Caenorhabditis briggsae", "Caenorhabditis elegans", "Caenorhabditis japonica", "Caenorhabditis remanei", "Cooperia oncophora", "Dictyocaulus viviparus", "Dirofilaria immitis", "Ditylenchus africanus", "Globodera pallida", "Globodera rostochiensis", "Haemonchus contortus", "Heterodera schachtii", "Heterorhabditis bacteriophora", "Meloidogyne chitwoodi", "Meloidogyne hapla", "Meloidogyne incognita", "Meloidogyne javanica", "Meloidogyne paranaensis", "Necator americanus", "Oesophagostomum dentatum", "Onchocerca flexuosa", "Ostertagia ostertagi", "Parastrongyloides trichosuri", "Pristionchus pacificus", "Radopholus similus", "Steinernema carpocapsae", "Strongyloides ratti", "Strongyloides stercoralis", "Teladorsagia circumcincta", "Toxocara canis", "Trichinella spiralis", "Trichostrongylus colubriformis", "Trichuris muris", "Trichuris vulpis", "Xiphinema index", "Zeldia punctata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Nematode.net", "abbreviation": "Nematode.net", "url": "https://fairsharing.org/10.25504/FAIRsharing.dyfcen", "doi": "10.25504/FAIRsharing.dyfcen", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Nematode.net is the home page of the parasitic nematode EST project at The Genome Institute at Washington University in St. Louis. The site was established in 2000 as a component of the NIH-NIAID grant \"A Genomic Approach to Parasites from the Phylum Nematoda\". While Nematode.net started as a project site, over the years it became a community resource dedicated to the study of parasitic nematodes.", "publications": [{"id": 1318, "pubmed_id": 14681448, "title": "Nematode.net: a tool for navigating sequences from parasitic and free-living nematodes.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh010", "authors": "Wylie T., Martin JC., Dante M., Mitreva MD., Clifton SW., Chinwalla A., Waterston RH., Wilson RK., McCarter JP.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh010", "created_at": "2021-09-30T08:24:47.292Z", "updated_at": "2021-09-30T08:24:47.292Z"}, {"id": 1854, "pubmed_id": 18940860, "title": "Nematode.net update 2008: improvements enabling more efficient data mining and comparative nematode genomics.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn744", "authors": "Martin J., Abubucker S., Wylie T., Yin Y., Wang Z., Mitreva M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn744", "created_at": "2021-09-30T08:25:48.288Z", "updated_at": "2021-09-30T08:25:48.288Z"}, {"id": 1871, "pubmed_id": 21760913, "title": "HelmCoP: an online resource for helminth functional genomics and drug and vaccine targets prioritization.", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0021832", "authors": "Abubucker S., Martin J., Taylor CM., Mitreva M.,", "journal": "PLoS ONE", "doi": "10.1371/journal.pone.0021832", "created_at": "2021-09-30T08:25:50.457Z", "updated_at": "2021-09-30T08:25:50.457Z"}, {"id": 1875, "pubmed_id": 18983679, "title": "NemaPath: online exploration of KEGG-based metabolic pathways for nematodes.", "year": 2008, "url": "http://doi.org/10.1186/1471-2164-9-525", "authors": "Wylie T., Martin J., Abubucker S., Yin Y., Messina D., Wang Z., McCarter JP., Mitreva M.,", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-9-525", "created_at": "2021-09-30T08:25:50.907Z", "updated_at": "2021-09-30T08:25:50.907Z"}], "licence-links": [{"licence-name": "Nematode.net Copyright Statement", "licence-id": 569, "link-id": 150, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2154", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:18.572Z", "metadata": {"doi": "10.25504/FAIRsharing.kj4pvk", "name": "SciCrunch", "status": "ready", "contacts": [{"contact-email": "info@scicrunch.org"}], "homepage": "https://scicrunch.org", "identifier": 2154, "description": "SciCrunch resource registry is the new name of the NIF registry. SciCrunch is a data sharing and display platform. Anyone can create a custom portal where they can select searchable subsets of hundreds of data sources, brand their web pages and create their community. SciCrunch will push data updates automatically to all portals on a weekly basis.", "abbreviation": "SciCrunch", "support-links": [{"url": "https://scicrunch.org/page/tutorials", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://scicrunch.org/browse/resourcedashboard", "name": "search", "type": "data access"}, {"url": "https://scicrunch.org/browse/datadashboard", "name": "search", "type": "data access"}, {"url": "https://scicrunch.org/register", "name": "register", "type": "data access"}]}, "legacy-ids": ["biodbcore-000626", "bsg-d000626"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurobiology", "Life Science"], "domains": ["Biological sample"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SciCrunch", "abbreviation": "SciCrunch", "url": "https://fairsharing.org/10.25504/FAIRsharing.kj4pvk", "doi": "10.25504/FAIRsharing.kj4pvk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SciCrunch resource registry is the new name of the NIF registry. SciCrunch is a data sharing and display platform. Anyone can create a custom portal where they can select searchable subsets of hundreds of data sources, brand their web pages and create their community. SciCrunch will push data updates automatically to all portals on a weekly basis.", "publications": [{"id": 1283, "pubmed_id": 26599696, "title": "The Resource Identification Initiative: A Cultural Shift in Publishing.", "year": 2015, "url": "http://doi.org/10.1002/cne.23913", "authors": "Bandrowski A,Brush M,Grethe JS,Haendel MA,Kennedy DN,Hill S,Hof PR,Martone ME,Pols M,Tan SC,Washington N,Zudilova-Seinstra E,Vasilevsky N", "journal": "J Comp Neurol", "doi": "10.1002/cne.23913", "created_at": "2021-09-30T08:24:43.216Z", "updated_at": "2021-09-30T08:24:43.216Z"}], "licence-links": [{"licence-name": "SciCrunch Privacy Policy", "licence-id": 734, "link-id": 832, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1898", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-11T11:05:09.456Z", "metadata": {"doi": "10.25504/FAIRsharing.8d3ka8", "name": "ImMunoGeneTics Information System", "status": "ready", "contacts": [{"contact-name": "Marie-Paule Lefranc", "contact-email": "Marie-Paule.Lefranc@igh.cnrs.fr"}], "homepage": "http://www.imgt.org", "identifier": 1898, "description": "IMGT is a high-quality integrated knowledge resource specialized in the immunoglobulins (IG) or antibodies, T cell receptors (TR), major histocompatibility complex (MHC) of human and other vertebrate species, and in the immunoglobulin superfamily (IgSF), major histocompatibility complex superfamily (MhcSF) and related proteins of the immune system (RPI) of vertebrates and invertebrates.", "abbreviation": "IMGT", "support-links": [{"url": "http://www.imgt.org/FAQ/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.imgt.org/download/LIGM-DB/userman_doc.html", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTScientificChart/", "name": "IMGT Scientific chart", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTindex/", "name": "IMGT Index", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTbloc-notes/", "name": "IMGT Bloc-notes", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTposters/", "name": "IMGT Posters and diaporama", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTmedical/", "name": "IMGT Medical page", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTveterinary/", "name": "IMGT Veterinary page", "type": "Help documentation"}, {"url": "http://www.imgt.org/about/immunoinformatics.php", "name": "IMGT Immunoinformatics page", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTbiotechnology/", "name": "IMGT Biotechnology page", "type": "Help documentation"}, {"url": "http://www.imgt.org/IMGTrepertoire/", "name": "IMGT Repertoire (IG and TR)", "type": "Help documentation"}, {"url": "http://www.imgt.org/rss/", "name": "Latest news", "type": "Blog/News"}, {"url": "http://www.imgt.org/IMGTeducation/", "name": "IMGT Education", "type": "Training documentation"}], "year-creation": 1989, "data-processes": [{"url": "http://www.imgt.org/about/downloads.php", "name": "Download", "type": "data access"}, {"url": "http://www.imgt.org/IMGTPhylogeny/", "name": "IMGT/PhyloGene", "type": "data access"}, {"url": "http://www.imgt.org/3Dstructure-DB/cgi/DomainDisplay.cgi", "name": "IMGT/DomainDisplay", "type": "data access"}, {"url": "http://www.imgt.org/LocusView/", "name": "IMGT/GeneSearch", "type": "data access"}, {"url": "http://www.imgt.org/GeneInfoServlets/htdocs/", "name": "IMGT/GeneInfo", "type": "data access"}, {"url": "http://www.imgt.org/ligmdb/", "name": "IMGT/LIGM-DB query", "type": "data access"}, {"url": "https://www.ebi.ac.uk/ipd/imgt/hla/", "name": "IMGT/MH-DB query", "type": "data access"}, {"url": "http://www.imgt.org/IMGTPrimerDB/", "name": "IMGT/PRIMER-DB query", "type": "data access"}, {"url": "http://www.imgt.org/CLLDBInterface/query", "name": "IMGT/CLL-DB query", "type": "data access"}, {"url": "http://www.imgt.org/genedb/", "name": "IMGT/GENE-DB Query", "type": "data access"}, {"url": "http://www.imgt.org/mAb-DB/", "name": "IMGT/mAb-DB", "type": "data access"}, {"url": "http://www.imgt.org/about/otheraccesses.php", "name": "IMGT Other accesses", "type": "data access"}, {"url": "http://www.imgt.org/about/comparesequence.php", "name": "Blast", "type": "data access"}, {"url": "http://www.imgt.org/about/submission.php", "name": "Sequence submission", "type": "data curation"}], "associated-tools": [{"url": "http://www.imgt.org/HighV-QUEST/home.action", "name": "IMGT/HighV-QUEST 1.6.5"}, {"url": "http://www.imgt.org/StatClonotype/", "name": "IMGT/StatClonotype 1.0.3"}, {"url": "http://www.imgt.org/IMGT_vquest/vquest", "name": "IMGT/V-QUEST 3.4.17"}, {"url": "http://www.imgt.org/IMGT_jcta/jcta?livret=0", "name": "IMGT/JunctionAnalysis 2.1.9"}, {"url": "http://www.imgt.org/Allele-Align/", "name": "IMGT/Allele-Align"}, {"url": "http://www.imgt.org/genefrequency/query", "name": "IMGT/GeneFrequency 2.0.0"}, {"url": "http://www.imgt.org/3Dstructure-DB/cgi/DomainGapAlign.cgi", "name": "IMGT/DomainGapAlign 4.9.2"}, {"url": "http://www.imgt.org/3Dstructure-DB/cgi/Collier-de-Perles.cgi", "name": "IMGT/Collier-de-Perles 2.0.0"}, {"url": "http://www.imgt.org/3Dstructure-DB/cgi/DomainSuperimpose.cgi", "name": "IMGT/DomainSuperimpose"}, {"url": "http://www.imgt.org/3Dstructure-DB/", "name": "IMGT/StructuralQuery 4.12.2"}]}, "legacy-ids": ["biodbcore-000363", "bsg-d000363"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunogenetics", "Genetics", "Immunology", "Life Science"], "domains": ["Nucleic acid sequence", "Antigen", "Immunoglobulin complex", "Antibody", "Chromosomal region", "Small molecule", "Receptor", "Major histocompatibility complex", "Protein", "Allele", "Genome", "Immune system"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: ImMunoGeneTics Information System", "abbreviation": "IMGT", "url": "https://fairsharing.org/10.25504/FAIRsharing.8d3ka8", "doi": "10.25504/FAIRsharing.8d3ka8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IMGT is a high-quality integrated knowledge resource specialized in the immunoglobulins (IG) or antibodies, T cell receptors (TR), major histocompatibility complex (MHC) of human and other vertebrate species, and in the immunoglobulin superfamily (IgSF), major histocompatibility complex superfamily (MhcSF) and related proteins of the immune system (RPI) of vertebrates and invertebrates.", "publications": [{"id": 386, "pubmed_id": 18978023, "title": "IMGT, the international ImMunoGeneTics information system.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn838", "authors": "Lefranc MP., Giudicelli V., Ginestoux C., Jabado-Michaloud J., Folch G., Bellahcene F., Wu Y., Gemrot E., Brochet X., Lane J., Regnier L., Ehrenmann F., Lefranc G., Duroux P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn838", "created_at": "2021-09-30T08:23:01.849Z", "updated_at": "2021-09-30T08:23:01.849Z"}, {"id": 2419, "pubmed_id": 10592230, "title": "IMGT, the international ImMunoGeneTics database.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.219", "authors": "Ruiz M,Giudicelli V,Ginestoux C,Stoehr P,Robinson J,Bodmer J,Marsh SG,Bontrop R,Lemaitre M,Lefranc G,Chaume D,Lefranc MP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.219", "created_at": "2021-09-30T08:26:56.848Z", "updated_at": "2021-09-30T11:29:35.537Z"}, {"id": 2420, "pubmed_id": 11125093, "title": "IMGT, the international ImMunoGeneTics database.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.207", "authors": "Lefranc MP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/29.1.207", "created_at": "2021-09-30T08:26:56.957Z", "updated_at": "2021-09-30T11:29:35.629Z"}, {"id": 2455, "pubmed_id": 25378316, "title": "IMGT(R), the international ImMunoGeneTics information system(R) 25 years on.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1056", "authors": "Lefranc MP,Giudicelli V,Duroux P,Jabado-Michaloud J,Folch G,Aouinti S,Carillon E,Duvergey H,Houles A,Paysan-Lafosse T,Hadi-Saljoqi S,Sasorith S,Lefranc G,Kossida S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1056", "created_at": "2021-09-30T08:27:01.126Z", "updated_at": "2021-09-30T11:29:36.287Z"}, {"id": 2456, "pubmed_id": 9399859, "title": "IMGT, the International ImMunoGeneTics database.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.297", "authors": "Lefranc MP,Giudicelli V,Busin C,Bodmer J,Muller W,Bontrop R,Lemaitre M,Malik A,Chaume D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/26.1.297", "created_at": "2021-09-30T08:27:01.241Z", "updated_at": "2021-09-30T11:29:36.436Z"}, {"id": 2457, "pubmed_id": 15608269, "title": "IMGT, the international ImMunoGeneTics information system.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki065", "authors": "Lefranc MP,Giudicelli V,Kaas Q,Duprat E,Jabado-Michaloud J,Scaviner D,Ginestoux C,Clement O,Chaume D,Lefranc G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki065", "created_at": "2021-09-30T08:27:01.400Z", "updated_at": "2021-09-30T11:29:36.536Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 335, "relation": "undefined"}, {"licence-name": "IMGT Academic use", "licence-id": 430, "link-id": 337, "relation": "undefined"}, {"licence-name": "IMGT Terms of Use", "licence-id": 431, "link-id": 338, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1884", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:01.947Z", "metadata": {"doi": "10.25504/FAIRsharing.pv0ezt", "name": "TrichDB", "status": "ready", "contacts": [{"contact-name": "Omar Harb", "contact-email": "oharb@pcbi.upenn.edu", "contact-orcid": "0000-0003-4446-6200"}], "homepage": "http://trichdb.org/trichdb/", "identifier": 1884, "description": "TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "abbreviation": "TrichDB", "support-links": [{"url": "http://trichdb.org/trichdb/contact.do", "type": "Contact form"}, {"url": "https://cryptodb.org/cryptodb/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://twitter.com/eupathdb", "type": "Twitter"}], "data-processes": [{"url": "http://trichdb.org/common/downloads/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://trichdb.org/trichdb/showQuestion.do?questionFullName=UniversalQuestions.UnifiedBlast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012461", "name": "re3data:r3d100012461", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000349", "bsg-d000349"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome"], "taxonomies": ["Eukaryota", "Trichomonas"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TrichDB", "abbreviation": "TrichDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pv0ezt", "doi": "10.25504/FAIRsharing.pv0ezt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "publications": [{"id": 1523, "pubmed_id": 18824479, "title": "GiardiaDB and TrichDB: integrated genomic resources for the eukaryotic protist pathogens Giardia lamblia and Trichomonas vaginalis.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn631", "authors": "Aurrecoechea C et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn631", "created_at": "2021-09-30T08:25:10.519Z", "updated_at": "2021-09-30T08:25:10.519Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2360, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3217", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-29T21:10:03.000Z", "updated-at": "2021-12-06T10:47:39.787Z", "metadata": {"name": "EarthWorks", "status": "ready", "homepage": "https://earthworks.stanford.edu/", "identifier": 3217, "description": "EarthWorks is a discovery tool for geospatial data. It allows users to search and browse the GIS collections owned by Stanford Libraries, as well as data collections from many other institutions. Data can be searched spatially, by manipulating a map; by keyword search; by selecting search limiting facets (e.g., limit to a given format type); or by combining these options.", "abbreviation": "EarthWorks", "access-points": [{"url": "https://geowebservices-restricted.stanford.edu/geoserver/wfs", "name": "Web Feature Service", "type": "REST"}, {"url": "https://geowebservices-restricted.stanford.edu/geoserver/wms", "name": "Web Mapping Service", "type": "REST"}], "support-links": [{"url": "https://earthworks.stanford.edu/feedback", "name": "Contact Form", "type": "Contact form"}], "data-processes": [{"url": "https://earthworks.stanford.edu/?q=", "name": "Search", "type": "data access"}, {"url": "https://earthworks.stanford.edu/catalog?featured=geospatial_data&q=", "name": "Search Geospatial Data", "type": "data access"}, {"url": "https://earthworks.stanford.edu/catalog?featured=scanned_maps&q=", "name": "Search Scanned Maps", "type": "data access"}, {"url": "https://earthworks.stanford.edu/catalog?featured=census_data&q=", "name": "Search Census Data", "type": "data access"}, {"url": "https://earthworks.stanford.edu/catalog?featured=california_data&q=", "name": "Search California Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012870", "name": "re3data:r3d100012870", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001730", "bsg-d001730"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Geography", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Geospatial Data"], "countries": ["United States"], "name": "FAIRsharing record for: EarthWorks", "abbreviation": "EarthWorks", "url": "https://fairsharing.org/fairsharing_records/3217", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EarthWorks is a discovery tool for geospatial data. It allows users to search and browse the GIS collections owned by Stanford Libraries, as well as data collections from many other institutions. Data can be searched spatially, by manipulating a map; by keyword search; by selecting search limiting facets (e.g., limit to a given format type); or by combining these options.", "publications": [], "licence-links": [{"licence-name": "Stanford University Terms of Use", "licence-id": 758, "link-id": 2150, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1691", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-07T10:25:48.721Z", "metadata": {"doi": "10.25504/FAIRsharing.se4zhk", "name": "SuperTarget", "status": "deprecated", "contacts": [{"contact-name": "Robert Preissner", "contact-email": "robert.preissner@charite.de"}], "homepage": "http://bioinformatics.charite.de/supertarget", "citations": [], "identifier": 1691, "description": "Drug-related information: medical indications, adverse drug effects, drug metabolism and Gene Ontology terms of the target proteins.", "abbreviation": null, "support-links": [{"url": "http://bioinformatics.charite.de/supertarget/index.php?site=about", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2007, "data-processes": [{"name": "automated curation (text mining assisted)", "type": "data curation"}, {"url": "http://bioinformatics.charite.de/supertarget/index.php?site=basket_search", "name": "advanced search", "type": "data access"}, {"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012195", "name": "re3data:r3d100012195", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002696", "name": "SciCrunch:RRID:SCR_002696", "portal": "SciCrunch"}], "deprecation-date": "2022-02-07", "deprecation-reason": "The homepage for this resource currently unavailable, but should be accessible in the future."}, "legacy-ids": ["biodbcore-000147", "bsg-d000147"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme Commission number", "Sequence similarity", "Chemical structure", "Anatomical Therapeutic Chemical Code", "Gene Ontology enrichment", "Drug", "Target"], "taxonomies": ["All"], "user-defined-tags": ["Synonyms"], "countries": ["Germany"], "name": "FAIRsharing record for: SuperTarget", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.se4zhk", "doi": "10.25504/FAIRsharing.se4zhk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Drug-related information: medical indications, adverse drug effects, drug metabolism and Gene Ontology terms of the target proteins.", "publications": [{"id": 200, "pubmed_id": 17942422, "title": "SuperTarget and Matador: resources for exploring drug-target relationships.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm862", "authors": "G\u00fcnther S., Kuhn M., Dunkel M., Campillos M., Senger C., Petsalaki E., Ahmed J., Urdiales EG., Gewiess A., Jensen LJ., Schneider R., Skoblo R., Russell RB., Bourne PE., Bork P., Preissner R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm862", "created_at": "2021-09-30T08:22:41.864Z", "updated_at": "2021-09-30T08:22:41.864Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 156, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1705", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.230Z", "metadata": {"doi": "10.25504/FAIRsharing.x0dzdt", "name": "Type IV Secretion system Resource", "status": "ready", "contacts": [{"contact-name": "Hong-Yu OU", "contact-email": "hyou@sjtu.edu.cn"}], "homepage": "http://db-mml.sjtu.edu.cn/SecReT4/", "identifier": 1705, "description": "A web-based bacterial type IV secretion system resource for type IV secretion systems (T4SSs) and cognate effectors in bacteria.", "abbreviation": "SecReT4", "year-creation": 2012, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://db-mml.sjtu.edu.cn/SecReT4/browse_org.php", "name": "Browse", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/SecReT4/search.php", "name": "search", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/SecReT4/t4ss_prediction.php", "name": "T4SS Location", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/cgi-bin/SecReT4/nph-blast-SecReT4.pl", "name": "BLAST", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/SecReT4/pHMMER3-SecReT4.php", "name": "HMMER3", "type": "data access"}]}, "legacy-ids": ["biodbcore-000162", "bsg-d000162"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Gene model annotation"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Type IV Secretion system Resource", "abbreviation": "SecReT4", "url": "https://fairsharing.org/10.25504/FAIRsharing.x0dzdt", "doi": "10.25504/FAIRsharing.x0dzdt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A web-based bacterial type IV secretion system resource for type IV secretion systems (T4SSs) and cognate effectors in bacteria.", "publications": [{"id": 1935, "pubmed_id": 23193298, "title": "SecReT4: a web-based bacterial type IV secretion system resource.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1248", "authors": "Bi D,Liu L,Tai C,Deng Z,Rajakumar K,Ou HY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1248", "created_at": "2021-09-30T08:25:57.818Z", "updated_at": "2021-09-30T11:29:24.402Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3001", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-16T14:39:43.000Z", "updated-at": "2022-01-28T13:35:10.454Z", "metadata": {"name": "Chesapeake Bay Environmental Observatory", "status": "deprecated", "contacts": [{"contact-name": "Alexey Voinov", "contact-email": "aavoinov@gmail.com", "contact-orcid": "0000-0002-2985-4574"}], "homepage": "http://cbeo.communitymodeling.org/index.php", "citations": [], "identifier": 3001, "description": "The Chesapeake Bay Environmental Observatory (CBEO) is a prototype to demonstrate the utility of newly developed cyberinfrastructure components for transforming environmental research, education, and management. The CBEO project uses a specific problem of water quality (hypoxia) as means of directly involving users and demonstrating the prototype\u2019s utility.", "abbreviation": "CBEO", "support-links": [{"url": "http://cbeo.communitymodeling.org/contact.php", "type": "Contact form"}, {"url": "http://cbeo.communitymodeling.org/presentations.php", "name": "Project Presentations", "type": "Help documentation"}], "data-processes": [{"url": "http://cbeo.communitymodeling.org/testbed_data.php", "name": "CBEO Testbed", "type": "data access"}, {"url": "http://cbeo.communitymodeling.org/dash.php", "name": "CBEO Data Access System for Hydrology Viewer", "type": "data access"}, {"url": "http://cbeo.communitymodeling.org/hydroseek.php", "name": "Hydroseek", "type": "data access"}, {"url": "http://cbeo.communitymodeling.org/mapmaker.php", "name": "Mapmaker", "type": "data access"}, {"url": "http://cbeo.communitymodeling.org/versarcims.php", "name": "VersarCIMS Workflow", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010076", "name": "re3data:r3d100010076", "portal": "re3data"}], "deprecation-date": "2022-01-27", "deprecation-reason": "This resource's homepage is not fully functional, and the data is inaccessible. Please get in touch with us if you have information regarding this resource."}, "legacy-ids": ["biodbcore-001508", "bsg-d001508"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Geoinformatics", "Ecology", "Earth Science", "Oceanography", "Hydrology"], "domains": ["Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Hypoxia", "Interoperability", "Semantic"], "countries": ["United States"], "name": "FAIRsharing record for: Chesapeake Bay Environmental Observatory", "abbreviation": "CBEO", "url": "https://fairsharing.org/fairsharing_records/3001", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chesapeake Bay Environmental Observatory (CBEO) is a prototype to demonstrate the utility of newly developed cyberinfrastructure components for transforming environmental research, education, and management. The CBEO project uses a specific problem of water quality (hypoxia) as means of directly involving users and demonstrating the prototype\u2019s utility.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2711", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-19T13:03:29.000Z", "updated-at": "2021-11-24T13:17:34.288Z", "metadata": {"doi": "10.25504/FAIRsharing.RJ99Pj", "name": "HumanMine", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "info@intermine.org"}], "homepage": "https://www.humanmine.org/", "identifier": 2711, "description": "HumanMine integrates many types of data for Homo sapiens and Mus musculus. Users can run flexible queries, export results and analyse lists of data.", "abbreviation": "HumanMine", "access-points": [{"url": "https://www.humanmine.org/humanmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://intermineorg.wordpress.com/category/humanmine/", "name": "HumanMine blog posts", "type": "Blog/News"}, {"url": "https://www.humanmine.org/humanmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://www.humanmine.org/humanmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "https://www.humanmine.org/humanmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://www.humanmine.org/humanmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://www.humanmine.org/humanmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}], "associated-tools": [{"url": "https://play.google.com/store/apps/details?id=org.intermine.app", "name": "Android App"}, {"url": "https://apps.apple.com/us/app/intermine-gene-search/id1271710231", "name": "Apple App"}]}, "legacy-ids": ["biodbcore-001209", "bsg-d001209"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Biology"], "domains": ["Molecular function", "Molecular interaction", "Disease", "Protein", "Single nucleotide polymorphism", "Gene", "Homologous"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: HumanMine", "abbreviation": "HumanMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.RJ99Pj", "doi": "10.25504/FAIRsharing.RJ99Pj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HumanMine integrates many types of data for Homo sapiens and Mus musculus. Users can run flexible queries, export results and analyse lists of data.", "publications": [{"id": 2008, "pubmed_id": 24753429, "title": "InterMine: extensive web services for modern biology.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku301", "authors": "Kalderimis A,Lyne R,Butano D,Contrino S,Lyne M,Heimbach J,Hu F,Smith R,Stepan R,Sullivan J,Micklem G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku301", "created_at": "2021-09-30T08:26:06.197Z", "updated_at": "2021-09-30T11:29:25.560Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1174, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1722", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:03.257Z", "metadata": {"doi": "10.25504/FAIRsharing.f5xs6m", "name": "BloodSpot", "status": "ready", "contacts": [{"contact-name": "Nicolas Rapin", "contact-email": "nicolas.rapin@finsenlab.dk"}], "homepage": "http://www.bloodspot.eu", "identifier": 1722, "description": "BloodSpot is a database of mRNA expression in healthy and malignant haematopoiesis and includes data from both humans and mice. The core function of BloodSpot is to provide an expression plot of genes in healthy and cancerous haematopoietic cells at specific differentiation stages. In addition to the default plot, that displays an integrated expression plot, two additional levels of visualization are available; an interactive tree showing the hierarchical relationship between the samples, and a Kaplan-Meier survival plot. Prior to BloodSpot, this service was provided by an earlier project, HemaExplorer, also by the same research group. HemaExplorer was updated to the BloodSpot platform, which all users are encouraged to use instead.", "abbreviation": "BloodSpot", "support-links": [{"url": "http://servers.binf.ku.dk/bloodspot/php/help.php", "type": "Help documentation"}], "year-creation": 2012}, "legacy-ids": ["biodbcore-000179", "bsg-d000179"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Developmental Biology", "Life Science"], "domains": ["Expression data", "Cancer", "Hematopoiesis", "Messenger RNA", "Gene", "Blood"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: BloodSpot", "abbreviation": "BloodSpot", "url": "https://fairsharing.org/10.25504/FAIRsharing.f5xs6m", "doi": "10.25504/FAIRsharing.f5xs6m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BloodSpot is a database of mRNA expression in healthy and malignant haematopoiesis and includes data from both humans and mice. The core function of BloodSpot is to provide an expression plot of genes in healthy and cancerous haematopoietic cells at specific differentiation stages. In addition to the default plot, that displays an integrated expression plot, two additional levels of visualization are available; an interactive tree showing the hierarchical relationship between the samples, and a Kaplan-Meier survival plot. Prior to BloodSpot, this service was provided by an earlier project, HemaExplorer, also by the same research group. HemaExplorer was updated to the BloodSpot platform, which all users are encouraged to use instead.", "publications": [{"id": 36, "pubmed_id": 26507857, "title": "BloodSpot: a database of gene expression profiles and transcriptional programs for healthy and malignant haematopoiesis.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1101", "authors": "Bagger FO,Sasivarevic D,Sohi SH,Laursen LG,Pundhir S,Sonderby CK,Winther O,Rapin N,Porse BT", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1101", "created_at": "2021-09-30T08:22:24.177Z", "updated_at": "2021-09-30T11:28:41.666Z"}, {"id": 564, "pubmed_id": 22745298, "title": "HemaExplorer: a Web server for easy and fast visualization of gene expression in normal and malignant hematopoiesis.", "year": 2012, "url": "http://doi.org/10.1182/blood-2012-05-427310", "authors": "Bagger FO,Rapin N,Theilgaard-Monch K,Kaczkowski B,Jendholm J,Winther O,Porse B", "journal": "Blood", "doi": "10.1182/blood-2012-05-427310", "created_at": "2021-09-30T08:23:21.676Z", "updated_at": "2021-09-30T08:23:21.676Z"}, {"id": 593, "pubmed_id": 23143109, "title": "HemaExplorer: a database of mRNA expression profiles in normal and malignant haematopoiesis.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1021", "authors": "Bagger FO,Rapin N,Theilgaard-Monch K,Kaczkowski B,Thoren LA,Jendholm J,Winther O,Porse BT", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1021", "created_at": "2021-09-30T08:23:25.066Z", "updated_at": "2021-09-30T11:28:47.825Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1799", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.210Z", "metadata": {"doi": "10.25504/FAIRsharing.3hrbfr", "name": "Automatic molecular interaction predictions", "status": "ready", "contacts": [{"contact-name": "Jean-Christophe Aude", "contact-email": "jean-christophe.aude@cea.fr", "contact-orcid": "0000-0002-1755-7417"}], "homepage": "http://biodev.extra.cea.fr/interoporc/", "identifier": 1799, "description": "InteroPorc is an automatic prediction tool to infer protein-protein interaction networks. It is applicable for lots of species using orthology and known interactions. The interoPORC method is based on the interolog concept and combines source interaction datasets from public databases as well as clusters of orthologous proteins (PORC) available on Integr8.", "abbreviation": "InteroPorc", "support-links": [{"url": "michaut.bioinfo@gmail.com", "type": "Support email"}], "data-processes": [{"url": "http://biodev.extra.cea.fr/interoporc/Default.aspx", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000259", "bsg-d000259"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Computational biological predictions", "Protein interaction", "Network model", "Protein", "Orthologous"], "taxonomies": ["Arabidopsis thaliana", "Drosophila melanogaster", "Escherichia coli", "Helicobacter pylori", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Automatic molecular interaction predictions", "abbreviation": "InteroPorc", "url": "https://fairsharing.org/10.25504/FAIRsharing.3hrbfr", "doi": "10.25504/FAIRsharing.3hrbfr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: InteroPorc is an automatic prediction tool to infer protein-protein interaction networks. It is applicable for lots of species using orthology and known interactions. The interoPORC method is based on the interolog concept and combines source interaction datasets from public databases as well as clusters of orthologous proteins (PORC) available on Integr8.", "publications": [{"id": 301, "pubmed_id": 18508856, "title": "InteroPORC: automated inference of highly conserved protein interaction networks.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn249", "authors": "Michaut M., Kerrien S., Montecchi-Palazzi L., Chauvat F., Cassier-Chauvat C., Aude JC., Legrain P., Hermjakob H.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn249", "created_at": "2021-09-30T08:22:52.449Z", "updated_at": "2021-09-30T08:22:52.449Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2359", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-03T12:12:18.000Z", "updated-at": "2021-11-24T13:14:52.153Z", "metadata": {"doi": "10.25504/FAIRsharing.68f4xz", "name": "mirDNMR", "status": "ready", "contacts": [{"contact-name": "Yi Jiang", "contact-email": "jiangyi3029@foxmail.com", "contact-orcid": "0000-0002-1196-0280"}], "homepage": "https://www.wzgenomics.cn/mirdnmr/", "identifier": 2359, "description": "mirDNMR is a database for the collection of gene-centered background DNMRs obtained from different methods and population variation data. The database has the following functions: (i) browse and search the background DNMRs of each gene predicted by four different methods, including GC content (DNMR-GC), sequence context (DNMR-SC), multiple factors (DNMR-MF) and local DNA methylation level (DNMR-DM); (ii) search variant frequencies in publicly available databases, including ExAC, ESP6500, UK10K, 1000G and dbSNP and (iii) investigate the DNM burden to prioritize candidate genes based on the four background DNMRs using three statistical methods (TADA, Binomial and Poisson test). In conclusion, mirDNMR can be widely used to identify the genetic basis of sporadic genetic diseases.", "abbreviation": "mirDNMR", "support-links": [{"url": "https://www.wzgenomics.cn/mirdnmr/feedback.php", "type": "Contact form"}, {"url": "https://www.wzgenomics.cn/mirdnmr/tutorial.php", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://www.wzgenomics.cn/mirdnmr/tableDNMR.php", "name": "Browse", "type": "data access"}, {"url": "https://www.wzgenomics.cn/mirdnmr/download.php", "name": "Download data", "type": "data access"}], "associated-tools": [{"url": "https://www.wzgenomics.cn/mirdnmr/search_s.php", "name": "Search"}, {"url": "https://www.wzgenomics.cn/mirdnmr/Prioritize.php", "name": "Prioritize"}, {"url": "https://www.wzgenomics.cn/mirdnmr/filter.php", "name": "Filter gene list with custom range"}]}, "legacy-ids": ["biodbcore-000838", "bsg-d000838"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Mutation analysis", "Mutation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: mirDNMR", "abbreviation": "mirDNMR", "url": "https://fairsharing.org/10.25504/FAIRsharing.68f4xz", "doi": "10.25504/FAIRsharing.68f4xz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: mirDNMR is a database for the collection of gene-centered background DNMRs obtained from different methods and population variation data. The database has the following functions: (i) browse and search the background DNMRs of each gene predicted by four different methods, including GC content (DNMR-GC), sequence context (DNMR-SC), multiple factors (DNMR-MF) and local DNA methylation level (DNMR-DM); (ii) search variant frequencies in publicly available databases, including ExAC, ESP6500, UK10K, 1000G and dbSNP and (iii) investigate the DNM burden to prioritize candidate genes based on the four background DNMRs using three statistical methods (TADA, Binomial and Poisson test). In conclusion, mirDNMR can be widely used to identify the genetic basis of sporadic genetic diseases.", "publications": [{"id": 1777, "pubmed_id": 27799474, "title": "mirDNMR: a gene-centered database of background de novo mutation rates in human.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1044", "authors": "Jiang Y,Li Z,Liu Z,Chen D,Wu W,Du Y,Ji L,Jin ZB,Li W,Wu J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1044", "created_at": "2021-09-30T08:25:39.436Z", "updated_at": "2021-09-30T11:29:20.628Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2718", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T14:05:31.000Z", "updated-at": "2021-11-24T13:17:54.760Z", "metadata": {"doi": "10.25504/FAIRsharing.BEKtQ3", "name": "GrapeMine", "status": "ready", "contacts": [{"contact-email": "urgi-contact@inra.fr"}], "homepage": "http://urgi.versailles.inra.fr/GrapeMine", "identifier": 2718, "description": "GrapeMine is dedicated to grapevine data. It provides access to many kind of data types like genomic annotation data as well as SNPs, markers and phenotyping data.", "abbreviation": "GrapeMine", "access-points": [{"url": "http://urgi.versailles.inra.fr/GrapeMine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://urgi.versailles.inra.fr/GrapeMine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://urgi.versailles.inra.fr/GrapeMine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://urgi.versailles.inra.fr/GrapeMine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://urgi.versailles.inra.fr/GrapeMine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://urgi.versailles.inra.fr/GrapeMine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001216", "bsg-d001216"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Genome annotation", "Single nucleotide polymorphism"], "taxonomies": ["Vitis vinifera"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GrapeMine", "abbreviation": "GrapeMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.BEKtQ3", "doi": "10.25504/FAIRsharing.BEKtQ3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GrapeMine is dedicated to grapevine data. It provides access to many kind of data types like genomic annotation data as well as SNPs, markers and phenotyping data.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1318, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3663", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-06T17:54:45.943Z", "updated-at": "2022-01-07T11:54:43.204Z", "metadata": {"name": "antibiotics & Secondary Metabolite Shell Database", "status": "ready", "contacts": [], "homepage": "https://antismash-db.secondarymetabolites.org/", "citations": [], "identifier": 3663, "description": "The antiSMASH database is a knowledgebase that contains precomputed results from the antiSMASH tool for a number of microbial organisms. It provides search functionalities as well as access to antiSMASH\u2019s ClusterBlast functionality, and any ClusterBlast hit is cross-referenced to the database, as well as to similar clusters from the MIBiG database. ", "abbreviation": "antiSMASH-DB", "data-curation": {}, "support-links": [{"url": "https://github.com/antismash", "name": "GitHub Repository", "type": "Github"}, {"url": "https://antismash-db.secondarymetabolites.org/help.html", "name": "Help", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://antismash-db.secondarymetabolites.org/query.html", "name": "Search", "type": "data access"}, {"url": "https://antismash-db.secondarymetabolites.org/browse.html", "name": "Browse", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Microbiology"], "domains": ["Metabolite", "Antibody", "Genome"], "taxonomies": ["Archaea", "Bacteria", "Fungi"], "user-defined-tags": [], "countries": ["Denmark", "Netherlands"], "name": "FAIRsharing record for: antibiotics & Secondary Metabolite Shell Database", "abbreviation": "antiSMASH-DB", "url": "https://fairsharing.org/fairsharing_records/3663", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The antiSMASH database is a knowledgebase that contains precomputed results from the antiSMASH tool for a number of microbial organisms. It provides search functionalities as well as access to antiSMASH\u2019s ClusterBlast functionality, and any ClusterBlast hit is cross-referenced to the database, as well as to similar clusters from the MIBiG database. ", "publications": [{"id": 3148, "pubmed_id": null, "title": "The antiSMASH database version 3: increased taxonomic coverage and new query features for modular enzymes", "year": 2020, "url": "http://dx.doi.org/10.1093/nar/gkaa978", "authors": "Blin, Kai; Shaw, Simon; Kautsar, Satria A; Medema, Marnix H; Weber, Tilmann; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa978", "created_at": "2021-12-06T17:55:12.381Z", "updated_at": "2021-12-06T17:55:12.381Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2040", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.933Z", "metadata": {"doi": "10.25504/FAIRsharing.52qw6p", "name": "Description of Plant Viruses", "status": "ready", "contacts": [{"contact-name": "Mike Adams", "contact-email": "mike.adams@bbsrc.ac.uk"}], "homepage": "http://www.dpvweb.net", "identifier": 2040, "description": "DPVweb provides a central source of information about viruses, viroids and satellites of plants, fungi and protozoa. Comprehensive taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences are provided. The database also holds detailed, curated, information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene. The database will not be updated with sequence or taxonomic data from Aug 2013.", "abbreviation": "DPVweb", "year-creation": 2004, "data-processes": [{"url": "http://www.dpvweb.net/analysis/fasta/index.php", "name": "Download", "type": "data access"}, {"url": "http://www.dpvweb.net/dpv/search.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000507", "bsg-d000507"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Taxonomic classification", "Sequence annotation", "Classification", "Gene"], "taxonomies": ["Viruses"], "user-defined-tags": [], "countries": ["China", "United Kingdom"], "name": "FAIRsharing record for: Description of Plant Viruses", "abbreviation": "DPVweb", "url": "https://fairsharing.org/10.25504/FAIRsharing.52qw6p", "doi": "10.25504/FAIRsharing.52qw6p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DPVweb provides a central source of information about viruses, viroids and satellites of plants, fungi and protozoa. Comprehensive taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences are provided. The database also holds detailed, curated, information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene. The database will not be updated with sequence or taxonomic data from Aug 2013.", "publications": [{"id": 497, "pubmed_id": 16381892, "title": "DPVweb: a comprehensive database of plant and fungal virus genes and genomes.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj023", "authors": "Adams MJ., Antoniw JF.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj023", "created_at": "2021-09-30T08:23:13.996Z", "updated_at": "2021-09-30T08:23:13.996Z"}], "licence-links": [{"licence-name": "DPVweb Copyright information", "licence-id": 252, "link-id": 1243, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2910", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T11:02:37.000Z", "updated-at": "2022-02-08T10:32:04.579Z", "metadata": {"doi": "10.25504/FAIRsharing.86ec7a", "name": "Leaf Senescence Database", "status": "ready", "contacts": [{"contact-name": "Zhonghai Li", "contact-email": "lizhonghai@bjfu.edu.cn"}], "homepage": "https://bigd.big.ac.cn/lsd/", "citations": [{"doi": "10.1093/nar/gkz898", "pubmed-id": 31599330, "publication-id": 2811}], "identifier": 2910, "description": "The Leaf Senescence Database (LSD) is a comprehensive resource of senescence-associated genes (SAGs) and their corresponding mutants. LSD includes data types such as leaf senescence-associated transcriptomics, phenotype and interaction data.", "abbreviation": "LSD", "data-curation": {}, "support-links": [{"url": "zhangzhang@big.ac.cn", "name": "Zhang Zhang", "type": "Support email"}, {"url": "https://bigd.big.ac.cn/lsd/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/lsd/help.php", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/lsd/about.php", "name": "About LSD", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://bigd.big.ac.cn/lsd/browsespecies_by_table.php", "name": "Browse by Species", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/browsespecies_by_tree.php", "name": "Browse by Species Tree", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/browse_mutant.php", "name": "Browse Mutants", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/phenotypeBrowse.php", "name": "Browse Phenotypes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/Chlorophyll_Degradation.php", "name": "Browse by Chlorophyll Degradation", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/ecotype.php", "name": "Browse by Ecotype", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/smallRNA.php", "name": "Browse sen-smallRNAs", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/poplar.php", "name": "Browse up/down regulated genes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/public_transcriptomic.php", "name": "Browse Transcriptomics Data", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/advanced_search.php", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lsd/blast.php", "name": "BLAST", "type": "data access"}, {"url": "ftp://download.big.ac.cn/bigd/LSD_3.0/", "name": "Download", "type": "data release"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001413", "bsg-d001413"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Transcriptomics", "Plant Genetics"], "domains": ["Molecular interaction", "Phenotype"], "taxonomies": ["Viridiplantae"], "user-defined-tags": ["Senescence"], "countries": ["China"], "name": "FAIRsharing record for: Leaf Senescence Database", "abbreviation": "LSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.86ec7a", "doi": "10.25504/FAIRsharing.86ec7a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Leaf Senescence Database (LSD) is a comprehensive resource of senescence-associated genes (SAGs) and their corresponding mutants. LSD includes data types such as leaf senescence-associated transcriptomics, phenotype and interaction data.", "publications": [{"id": 2811, "pubmed_id": 31599330, "title": "LSD 3.0: a comprehensive resource for the leaf senescence research community.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz898", "authors": "Li Z,Zhang Y,Zou D,Zhao Y,Wang HL,Zhang Y,Xia X,Luo J,Guo H,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz898", "created_at": "2021-09-30T08:27:45.637Z", "updated_at": "2021-09-30T11:29:45.620Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 106, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2526", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-17T12:56:00.000Z", "updated-at": "2021-11-24T13:19:35.820Z", "metadata": {"doi": "10.25504/FAIRsharing.rt4gyp", "name": "Disordered Binding Sites Database", "status": "ready", "contacts": [{"contact-email": "dibs@ttk.mta.hu", "contact-orcid": "0000-0003-0919-4449"}], "homepage": "http://dibs.enzim.ttk.mta.hu", "identifier": 2526, "description": "Disordered Binding Sites (DIBS) is a repository of protein complexes that are formed by ordered and disordered proteins. Intrinsically disordered proteins (IDPs) do not have a stable 3D structure in isolation and therefore they defy structure determination by X-ray or NMR. However, many IDPs bind to ordered proteins and as a result of the interaction adopt a stable structure. In accord, complex structures involving binding sites in IDPs are available. DIBS offers a collection of these complexes where exactly one protein chain is disordered and all other proteins are ordered (i.e. are stable in their isolated form that is approved by available monomeric structures).", "abbreviation": "DIBS", "support-links": [{"url": "http://dibs.enzim.ttk.mta.hu/help.php", "name": "DIBS FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://dibs.enzim.ttk.mta.hu/statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://dibs.enzim.ttk.mta.hu/browser.php", "name": "Browse Data", "type": "data access"}, {"url": "http://dibs.enzim.ttk.mta.hu/treemap.php", "name": "ProteinMap Browser", "type": "data access"}, {"url": "http://dibs.enzim.ttk.mta.hu/search.php", "name": "Search", "type": "data access"}, {"url": "http://dibs.enzim.ttk.mta.hu/downloads.php", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001009", "bsg-d001009"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Protein interaction", "Intrinsically disordered proteins"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Disordered Binding Sites Database", "abbreviation": "DIBS", "url": "https://fairsharing.org/10.25504/FAIRsharing.rt4gyp", "doi": "10.25504/FAIRsharing.rt4gyp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Disordered Binding Sites (DIBS) is a repository of protein complexes that are formed by ordered and disordered proteins. Intrinsically disordered proteins (IDPs) do not have a stable 3D structure in isolation and therefore they defy structure determination by X-ray or NMR. However, many IDPs bind to ordered proteins and as a result of the interaction adopt a stable structure. In accord, complex structures involving binding sites in IDPs are available. DIBS offers a collection of these complexes where exactly one protein chain is disordered and all other proteins are ordered (i.e. are stable in their isolated form that is approved by available monomeric structures).", "publications": [], "licence-links": [{"licence-name": "DIBS Free for academic and non-profit use", "licence-id": 241, "link-id": 1918, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2121", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-08T09:02:14.195Z", "metadata": {"doi": "10.25504/FAIRsharing.karvzj", "name": "Yeast Resource Center Public Data Repository", "status": "deprecated", "contacts": [{"contact-name": "Michael Riffle", "contact-email": "mriffle@u.washington.edu", "contact-orcid": "0000-0003-1633-8607"}], "homepage": "http://www.yeastrc.org/pdr/", "citations": [], "identifier": 2121, "description": "The National Center for Research Resources' Yeast Resource Center is located at the University of Washington in Seattle, Washington. The mission of the center is to facilitate the identification and characterization of protein complexes in the yeast Saccharomyces cerevisiae.", "abbreviation": "YRC PDR", "support-links": [{"url": "http://www.yeastrc.org/pdr/pages/feedbackForm.jsp", "type": "Contact form"}], "data-processes": [{"url": "http://www.yeastrc.org/pdr/pages/download.jsp", "name": "Download", "type": "data access"}, {"url": "http://www.yeastrc.org/pdr/blastSearchInit.do", "name": "Blast", "type": "data access"}, {"url": "http://www.yeastrc.org/pdr/pages/go/goTermSearchForm.jsp", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010975", "name": "re3data:r3d100010975", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007942", "name": "SciCrunch:RRID:SCR_007942", "portal": "SciCrunch"}], "deprecation-date": "2021-12-08", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000591", "bsg-d000591"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Computational Biology", "Life Science"], "domains": ["Mass spectrum", "Protein structure", "Protein"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Yeast Resource Center Public Data Repository", "abbreviation": "YRC PDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.karvzj", "doi": "10.25504/FAIRsharing.karvzj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Center for Research Resources' Yeast Resource Center is located at the University of Washington in Seattle, Washington. The mission of the center is to facilitate the identification and characterization of protein complexes in the yeast Saccharomyces cerevisiae.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2489", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-24T12:59:31.000Z", "updated-at": "2021-12-06T10:48:00.077Z", "metadata": {"doi": "10.25504/FAIRsharing.5nnxqn", "name": "eyeGENE: The National Ophthalmic Genotyping and Phenotyping Network", "status": "ready", "contacts": [{"contact-name": "Kerry Goetz", "contact-email": "goetzke@nei.nih.gov", "contact-orcid": "0000-0002-9821-7704"}], "homepage": "https://eyegene.nih.gov", "identifier": 2489, "description": "The National Ophthalmic Disease Genotyping and Phenotyping Network (eyeGENE\u00ae) is a genomic medicine initiative created by the National Eye Institute (NEI), part of the National Institutes of Health (NIH), in partnership with clinics and laboratories across the vision research community. The core mission of eyeGENE\u00ae is to facilitate research into the causes and mechanisms of rare inherited eye diseases and accelerate pathways to treatments. eyeGENE\u00ae was designed to achieve this goal through clinical and molecular diagnosis coupled with granting controlled access to clinical and genetic information in a data repository, to DNA in a biorepository, and to individuals consented to participate in research and clinical trials. The eyeGENE\u00ae Network currently includes a Coordinating Center at the NEI, CLIA\u2020-approved molecular genetic testing laboratories around the Nation, a patient registry, controlled-access centralized biorepository for DNA, and a curated de-identified genotype / phenotype database. These components stimulate patient and eye health care provider interest in genetics-based clinical care and generate involvement in ophthalmic research, thereby accelerating vision research and treatment development for these diseases.", "abbreviation": "eyeGENE", "support-links": [{"url": "https://eyegene.nih.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://eyegene.nih.gov/about/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://eyegene.nih.gov/how-to/get-an-account", "name": "How to get an account", "type": "Help documentation"}, {"url": "https://eyegene.nih.gov/how-to/access-data", "name": "How to access data", "type": "Help documentation"}, {"url": "https://eyegene.nih.gov/news/webinars", "name": "Webinars", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://brics.nei.nih.gov/cas/login?service=https%3A%2F%2Fbrics.nei.nih.gov%2Fportal%2Fj_spring_cas_security_check", "name": "Login", "type": "data access"}, {"url": "https://eyegene.nih.gov/how-to/contribute-data", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012836", "name": "re3data:r3d100012836", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004523", "name": "SciCrunch:RRID:SCR_004523", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000971", "bsg-d000971"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Medicine", "Ophthalmology", "Human Genetics", "Biomedical Science", "Preclinical Studies"], "domains": ["Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: eyeGENE: The National Ophthalmic Genotyping and Phenotyping Network", "abbreviation": "eyeGENE", "url": "https://fairsharing.org/10.25504/FAIRsharing.5nnxqn", "doi": "10.25504/FAIRsharing.5nnxqn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Ophthalmic Disease Genotyping and Phenotyping Network (eyeGENE\u00ae) is a genomic medicine initiative created by the National Eye Institute (NEI), part of the National Institutes of Health (NIH), in partnership with clinics and laboratories across the vision research community. The core mission of eyeGENE\u00ae is to facilitate research into the causes and mechanisms of rare inherited eye diseases and accelerate pathways to treatments. eyeGENE\u00ae was designed to achieve this goal through clinical and molecular diagnosis coupled with granting controlled access to clinical and genetic information in a data repository, to DNA in a biorepository, and to individuals consented to participate in research and clinical trials. The eyeGENE\u00ae Network currently includes a Coordinating Center at the NEI, CLIA\u2020-approved molecular genetic testing laboratories around the Nation, a patient registry, controlled-access centralized biorepository for DNA, and a curated de-identified genotype / phenotype database. These components stimulate patient and eye health care provider interest in genetics-based clinical care and generate involvement in ophthalmic research, thereby accelerating vision research and treatment development for these diseases.", "publications": [{"id": 2682, "pubmed_id": 23662816, "title": "eyeGENE(R): a vision community resource facilitating patient care and paving the path for research through molecular diagnostic testing.", "year": 2013, "url": "http://doi.org/10.1111/cge.12193", "authors": "Blain D,Goetz KE,Ayyagari R,Tumminia SJ", "journal": "Clin Genet", "doi": "10.1111/cge.12193", "created_at": "2021-09-30T08:27:29.372Z", "updated_at": "2021-09-30T08:27:29.372Z"}, {"id": 2683, "pubmed_id": 19534233, "title": "EyeGENE--National Ophthalmic Disease Genotyping Network.", "year": 2009, "url": "https://www.ncbi.nlm.nih.gov/pubmed/19534233", "authors": "No authors listed", "journal": "Insight", "doi": null, "created_at": "2021-09-30T08:27:29.487Z", "updated_at": "2021-09-30T11:28:37.484Z"}, {"id": 2684, "pubmed_id": 22847030, "title": "eyeGENE(R): a novel approach to combine clinical testing and researching genetic ocular disease.", "year": 2012, "url": "http://doi.org/10.1097/ICU.0b013e32835715c9", "authors": "Goetz KE,Reeves MJ,Tumminia SJ,Brooks BP", "journal": "Curr Opin Ophthalmol", "doi": "10.1097/ICU.0b013e32835715c9", "created_at": "2021-09-30T08:27:29.737Z", "updated_at": "2021-09-30T08:27:29.737Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1671", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.728Z", "metadata": {"doi": "10.25504/FAIRsharing.etqbej", "name": "Pocket Similarity Search using Multiple-Sketches", "status": "ready", "contacts": [{"contact-name": "Kentaro Tomii", "contact-email": "k-tomii@aist.go.jp"}], "homepage": "http://possum.cbrc.jp/PoSSuM/", "identifier": 1671, "description": "POcket Similarity Search Using Multiple-Sketches (PoSSuM) includes all the discovered protein-small molecule binding site pairs with annotations of various types (e.g., UniProt, CATH, SCOP, SCOPe, EC number and Gene ontology). PoSSuM enables rapid exploration of similar binding sites among structures with different global folds as well as similar folds. Moreover, PoSSuM is useful for predicting the binding ligand for unbound structures.", "abbreviation": "PoSSuM", "support-links": [{"url": "http://possum.cbrc.jp/PoSSuM/dataset_help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "biannual release (dependent on increase of PDB entries)", "type": "data release"}, {"name": "computer-aided predictions", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(CSV", "type": "data access"}, {"name": "XSL", "type": "data access"}, {"name": "tab-delimited)", "type": "data access"}, {"url": "http://possum.cbrc.jp/PoSSuM/drug_search/index.html", "name": "Drug Search", "type": "data access"}, {"url": "http://possum.cbrc.jp/PoSSuM/search_k.html", "name": "Search via similarity with a known ligand-binding site", "type": "data access"}, {"url": "http://possum.cbrc.jp/PoSSuM/search_p.html", "name": "Prediction of ligands which potentially bind to a site of interest", "type": "data access"}]}, "legacy-ids": ["biodbcore-000127", "bsg-d000127"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Binding site prediction", "Protein interaction", "Small molecule binding", "Ligand binding domain binding"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Pocket Similarity Search using Multiple-Sketches", "abbreviation": "PoSSuM", "url": "https://fairsharing.org/10.25504/FAIRsharing.etqbej", "doi": "10.25504/FAIRsharing.etqbej", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: POcket Similarity Search Using Multiple-Sketches (PoSSuM) includes all the discovered protein-small molecule binding site pairs with annotations of various types (e.g., UniProt, CATH, SCOP, SCOPe, EC number and Gene ontology). PoSSuM enables rapid exploration of similar binding sites among structures with different global folds as well as similar folds. Moreover, PoSSuM is useful for predicting the binding ligand for unbound structures.", "publications": [{"id": 190, "pubmed_id": 22135290, "title": "PoSSuM: a database of similar protein-ligand binding and putative pockets.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1130", "authors": "Ito J., Tabei Y., Shimizu K., Tsuda K., Tomii K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1130", "created_at": "2021-09-30T08:22:40.814Z", "updated_at": "2021-09-30T08:22:40.814Z"}, {"id": 191, "pubmed_id": 22113700, "title": "PDB-scale analysis of known and putative ligand-binding sites with structural sketches.", "year": 2011, "url": "http://doi.org/10.1002/prot.23232", "authors": "Ito J., Tabei Y., Shimizu K., Tomii K., Tsuda K.,", "journal": "Proteins", "doi": "10.1002/prot.23232", "created_at": "2021-09-30T08:22:40.916Z", "updated_at": "2021-09-30T08:22:40.916Z"}, {"id": 1579, "pubmed_id": 25404129, "title": "PoSSuM v.2.0: data update and a new function for investigating ligand analogs and target proteins of small-molecule drugs.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1144", "authors": "Ito J,Ikeda K,Yamada K,Mizuguchi K,Tomii K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1144", "created_at": "2021-09-30T08:25:17.027Z", "updated_at": "2021-09-30T11:29:14.511Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 151, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2296", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-10T12:56:26.000Z", "updated-at": "2021-11-24T13:13:32.224Z", "metadata": {"doi": "10.25504/FAIRsharing.qq9jf4", "name": "Cell Line Integrated Molecular Authentication Database", "status": "ready", "contacts": [{"contact-name": "Paolo Romano", "contact-email": "paolo.romano@hsanmartino.it", "contact-orcid": "0000-0003-4694-3883"}], "homepage": "http://bioinformatics.hsanmartino.it/clima2/", "citations": [{"doi": "10.1093/nar/gkn730", "pubmed-id": 18927105, "publication-id": 1697}], "identifier": 2296, "description": "CLIMA 2 is the result of an integration effort aimed at including all certified STR profiles of human cell lines in a unique database. The contents of the database are dynamically summarized (i.e., they are always up-to-date) in a table in the home page. CLIMA can be used to identify researcher's cell lines. Moreover, it can be searched either by name or by locus. The identification of a cell line is performed according to the standard ANSI/ATCC ASN-0002-2011 on \"Authentication of Human Cell Lines: Standardization of STR Profiling\".", "abbreviation": "CLIMA 2", "support-links": [{"url": "http://bioinformatics.hsanmartino.it/clima2/clima2_help.php", "name": "Help Page", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://bioinformatics.hsanmartino.it/clima2/#by_name", "name": "Search by Name", "type": "data access"}, {"url": "http://bioinformatics.hsanmartino.it/clima2/#by_locus", "name": "Search by Locus", "type": "data access"}], "associated-tools": [{"url": "http://bioinformatics.hsanmartino.it/clima2/#identify", "name": "Cell Line Identification"}]}, "legacy-ids": ["biodbcore-000770", "bsg-d000770"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Biomedical Science"], "domains": ["Cell line", "Short tandem repeat variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Cell Line Integrated Molecular Authentication Database", "abbreviation": "CLIMA 2", "url": "https://fairsharing.org/10.25504/FAIRsharing.qq9jf4", "doi": "10.25504/FAIRsharing.qq9jf4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CLIMA 2 is the result of an integration effort aimed at including all certified STR profiles of human cell lines in a unique database. The contents of the database are dynamically summarized (i.e., they are always up-to-date) in a table in the home page. CLIMA can be used to identify researcher's cell lines. Moreover, it can be searched either by name or by locus. The identification of a cell line is performed according to the standard ANSI/ATCC ASN-0002-2011 on \"Authentication of Human Cell Lines: Standardization of STR Profiling\".", "publications": [{"id": 1697, "pubmed_id": 18927105, "title": "Cell Line Data Base: structure and recent improvements towards molecular authentication of human cell lines.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn730", "authors": "Romano P,Manniello A,Aresu O,Armento M,Cesaro M,Parodi B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn730", "created_at": "2021-09-30T08:25:30.200Z", "updated_at": "2021-09-30T11:29:18.802Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1614", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-29T11:15:19.383Z", "metadata": {"doi": "10.25504/FAIRsharing.ekzmjp", "name": "modMine", "status": "ready", "contacts": [{"contact-name": "Gos Micklem", "contact-email": "g.micklem@gen.cam.ac.uk"}], "homepage": "http://intermine.modencode.org/", "citations": [{"doi": "10.1093/nar/gkr921", "pubmed-id": 22080565, "publication-id": 1466}], "identifier": 1614, "description": "modMine is an integrated web resource of data and tools to browse and search modENCODE data and experimental details, download results and access the GBrowse genome browser.", "abbreviation": "modMine", "access-points": [{"url": "http://intermine.modencode.org/release-33/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://www.modencode.org/publications/faq/", "name": "modMine FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.modencode.org/quickstart/", "name": "modMine Quick Start Guide", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2008, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "required metadata for experiment results", "type": "data curation"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(txt,XML,CSV)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://intermine.modencode.org/release-33/projectsSummary.do", "name": "Browse", "type": "data access"}, {"url": "http://intermine.modencode.org/release-33/templates.do", "name": "Search via Templates", "type": "data access"}, {"url": "http://intermine.modencode.org/release-33/bag.do", "name": "Search Against a List", "type": "data access"}, {"url": "http://intermine.modencode.org/release-33/spanUploadOptions.do", "name": "Search Within Genomic Regions", "type": "data access"}], "associated-tools": [{"url": "http://intermine.modencode.org/release-33/customQuery.do", "name": "Query Builder"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000070", "bsg-d000070"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Citation", "Protein domain", "DNA sequence data", "Gene Ontology enrichment", "Computational biological predictions", "Gene model annotation", "Chromatin immunoprecipitation - DNA sequencing", "Chromatin immunoprecipitation - DNA microarray", "Phenotype", "Protein", "Binding site", "Orthologous"], "taxonomies": ["Caenorhabditis elegans", "Drosophila ananassae", "Drosophila melanogaster", "Drosophila mojavensis", "Drosophila pseudoobscura", "Drosophila simulans", "Drosophila virilis", "Drosophila yakuba"], "user-defined-tags": [], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: modMine", "abbreviation": "modMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.ekzmjp", "doi": "10.25504/FAIRsharing.ekzmjp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: modMine is an integrated web resource of data and tools to browse and search modENCODE data and experimental details, download results and access the GBrowse genome browser.", "publications": [{"id": 117, "pubmed_id": 19536255, "title": "Unlocking the secrets of the genome.", "year": 2009, "url": "http://doi.org/10.1038/459927a", "authors": "Celniker SE., Dillon LA., Gerstein MB., Gunsalus KC., Henikoff S., Karpen GH., Kellis M., Lai EC., Lieb JD., MacAlpine DM., Micklem G., Piano F., Snyder M., Stein L., White KP., Waterston RH.,", "journal": "Nature", "doi": "10.1038/459927a", "created_at": "2021-09-30T08:22:32.972Z", "updated_at": "2021-09-30T08:22:32.972Z"}, {"id": 1465, "pubmed_id": 21177974, "title": "Identification of functional elements and regulatory circuits by Drosophila modENCODE.", "year": 2010, "url": "http://doi.org/10.1126/science.1198374", "authors": "Roy S., et al.", "journal": "Science", "doi": "10.1126/science.1198374", "created_at": "2021-09-30T08:25:03.987Z", "updated_at": "2021-09-30T08:25:03.987Z"}, {"id": 1466, "pubmed_id": 22080565, "title": "modMine: flexible access to modENCODE data", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr921", "authors": "Contrino S, Smith RN, Butano D, Carr A, Hu F, Lyne R, Rutherford K, Kalderimis A, Sullivan J, Carbon S, Kephart ET, Lloyd P, Stinson EO, Washington NL, Perry MD, Ruzanov P, Zha Z, Lewis SE, Stein LD, Micklem G.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr921", "created_at": "2021-09-30T08:25:04.094Z", "updated_at": "2021-09-30T08:25:04.094Z"}, {"id": 2430, "pubmed_id": 21177976, "title": "Integrative analysis of the Caenorhabditis elegans genome by the modENCODE project.", "year": 2010, "url": "http://doi.org/10.1126/science.1196914", "authors": "Gerstein MB., et al.", "journal": "Science", "doi": "10.1126/science.1196914", "created_at": "2021-09-30T08:26:58.169Z", "updated_at": "2021-09-30T08:26:58.169Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 231, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2263", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-02T05:59:46.000Z", "updated-at": "2021-12-06T10:48:27.568Z", "metadata": {"doi": "10.25504/FAIRsharing.dw22y3", "name": "Genetic and Genomic Information System", "status": "ready", "contacts": [{"contact-name": "URGI Contact", "contact-email": "urgi-contact@versailles.inra.fr", "contact-orcid": "0000-0003-3001-4908"}], "homepage": "https://urgi.versailles.inra.fr/gnpis", "identifier": 2263, "description": "GnpIS is a multispecies integrative information system dedicated to plant and fungi pests. It bridges genetic and genomic data, allowing researchers access to both genetic information (e.g. genetic maps, quantitative trait loci, association genetics, markers, polymorphisms, germplasms, phenotypes and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest. GnpIS is used by both large international projects and plant science departments at the French National Institute for Agricultural Research. It is regularly improved and released several times per year. GnpIS is accessible through a web portal and allows to browse different types of data either independently through dedicated interfaces or simultaneously using a quick search ('google like search') or advanced search (Biomart, Galaxy, Intermine) tools.", "abbreviation": "GnpIS", "access-points": [{"url": "https://urgi.versailles.inra.fr/Tools/Web-services", "name": "Several entry points to get access to genomic, genetic and phenotypic data", "type": "REST"}], "support-links": [{"url": "urgi-support@versailles.inra.fr", "type": "Support email"}], "year-creation": 2001, "data-processes": [{"url": "https://urgi.versailles.inra.fr/gnpis/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012647", "name": "re3data:r3d100012647", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000737", "bsg-d000737"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genetic map", "Genome map", "Expression data", "DNA sequence data", "Genetic polymorphism", "Phenotype", "Genotype"], "taxonomies": ["Agaricus subrefescens", "Arabidopsis thaliana", "Arabis alpina", "Botrytis cinerea B0510", "Botrytis cinerea T4", "Leptosphaeria", "Malus x domestica", "Medicago truncatula", "Microbotryum violaceum", "Oryza", "Pisum sativum L.", "Plantae", "Populus trichocarpa", "Sclerotinia sclerotiorum", "Solanum lycopersicum (ITAG 2.3)", "Triticum aestivum", "Tuber melanosporum", "Venturia inaequalis", "Vitis vinifera", "Zea mays"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Genetic and Genomic Information System", "abbreviation": "GnpIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.dw22y3", "doi": "10.25504/FAIRsharing.dw22y3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GnpIS is a multispecies integrative information system dedicated to plant and fungi pests. It bridges genetic and genomic data, allowing researchers access to both genetic information (e.g. genetic maps, quantitative trait loci, association genetics, markers, polymorphisms, germplasms, phenotypes and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest. GnpIS is used by both large international projects and plant science departments at the French National Institute for Agricultural Research. It is regularly improved and released several times per year. GnpIS is accessible through a web portal and allows to browse different types of data either independently through dedicated interfaces or simultaneously using a quick search ('google like search') or advanced search (Biomart, Galaxy, Intermine) tools.", "publications": [{"id": 2210, "pubmed_id": 23959375, "title": "GnpIS: an information system to integrate genetic and genomic data from plants and fungi", "year": 2013, "url": "http://doi.org/10.1093/database/bat058", "authors": "Delphine Steinbach, Michael Alaux, Joelle Amselem, Nathalie Choisne, Sophie Durand, Rapha\u00ebl Flores, Aminah-Olivia Keliet, Erik Kimmel, Nicolas Lapalu, Isabelle Luyten, C\u00e9lia Michotey, Nacer Mohellibi, Cyril Pommier, S\u00e9bastien Reboux, Doroth\u00e9e Valdenaire, Daphn\u00e9 Verdelet and Hadi Quesneville*", "journal": "Database", "doi": "10.1093/database/bat058", "created_at": "2021-09-30T08:26:29.074Z", "updated_at": "2021-09-30T08:26:29.074Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3064", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-06T12:59:34.000Z", "updated-at": "2022-02-08T10:41:33.341Z", "metadata": {"doi": "10.25504/FAIRsharing.30f068", "name": "Climate4Impact", "status": "ready", "contacts": [{"contact-name": "Sylvie Joussaume", "contact-email": "sylvie.joussaume@lsce.ipsl.fr"}], "homepage": "https://climate4impact.eu/impactportal/general/index.jsp", "citations": [], "identifier": 3064, "description": "Climate4Impact is a portal for climate model data. It aims to support climate change impact modelers, impact and adaptation consultants, as well anyone else wanting to use climate change data. Climate4Impact offers access to data and visualizations of global climate models (GCM), regional climate models (RCM) and downscaled high resolution climate data. It provides data transformation tooling like indices calculations, downscaling, subsetting and regridding for tailoring data to your needs. Climate4impact is the result of a collaborative effort within the European FP-7 project Infrastructure for the European Network for Earth System Modelling (IS-ENES, IS-ENES2 , IS-ENES3)", "abbreviation": "Climate4Impact", "access-points": [{"url": "https://climate4impact.eu/impactportal/account/tokenapi.jsp", "name": "Token API", "type": "Other"}], "support-links": [{"url": "https://climate4impact.eu/impactportal/help/contactexpert.jsp", "type": "Contact form"}, {"url": "https://climate4impact.eu/impactportal/help/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://climate4impact.eu/impactportal/help/howto.jsp", "name": "Getting started", "type": "Help documentation"}, {"url": "https://climate4impact.eu/impactportal/documentation/glossary.jsp", "name": "Glossary", "type": "Help documentation"}, {"url": "https://climate4impact.eu/impactportal/documentation/publications.jsp", "name": "Publications", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://climate4impact.eu/impactportal/data/esgfsearch.jsp", "name": "Search", "type": "data access"}, {"url": "https://climate4impact.eu/impactportal/data/catalogs.jsp", "name": "Browse", "type": "data access"}, {"url": "https://climate4impact.eu/impactportal/data/mapandplot.jsp", "name": "Map and Plot", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012141", "name": "re3data:r3d100012141", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001572", "bsg-d001572"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Earth Science"], "domains": ["Climate", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change"], "countries": ["Italy", "Romania", "Sweden", "France", "Netherlands"], "name": "FAIRsharing record for: Climate4Impact", "abbreviation": "Climate4Impact", "url": "https://fairsharing.org/10.25504/FAIRsharing.30f068", "doi": "10.25504/FAIRsharing.30f068", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Climate4Impact is a portal for climate model data. It aims to support climate change impact modelers, impact and adaptation consultants, as well anyone else wanting to use climate change data. Climate4Impact offers access to data and visualizations of global climate models (GCM), regional climate models (RCM) and downscaled high resolution climate data. It provides data transformation tooling like indices calculations, downscaling, subsetting and regridding for tailoring data to your needs. Climate4impact is the result of a collaborative effort within the European FP-7 project Infrastructure for the European Network for Earth System Modelling (IS-ENES, IS-ENES2 , IS-ENES3)", "publications": [], "licence-links": [{"licence-name": "Climate4Impact Disclaimer", "licence-id": 134, "link-id": 1996, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2720", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T15:17:45.000Z", "updated-at": "2021-11-24T13:20:11.868Z", "metadata": {"doi": "10.25504/FAIRsharing.xMmOCL", "name": "CORE", "status": "ready", "contacts": [{"contact-name": "Petr Knoth", "contact-email": "petr.knoth@open.ac.uk", "contact-orcid": "0000-0003-1161-7359"}], "homepage": "https://core.ac.uk", "citations": [{"publication-id": 2333}], "identifier": 2720, "description": "CORE\u2019s mission is to aggregate all open access research outputs from repositories and journals worldwide and make them available to the public. In this way CORE facilitates free unrestricted access to research for all. CORE supports the right of citizens and the general public to access the results of research towards which they contributed by paying taxes; facilitates access to open access content for all by offering services to general public, academic institutions, libraries, software developers, researchers, etc.; provides support to both content consumers and content providers by working with digital libraries, institutional and subject repositories and journals, ; enriches the research content using state-of-the-art technology and provides access to it through a set of services including search, API and analytical tools, ; contributes to a cultural change by promoting open access, a fast growing movement.", "abbreviation": "CORE", "access-points": [{"url": "https://core.ac.uk/services#api", "name": "CORE provides a free API to access metadata and full-text content of Open Access journals and repositories.", "type": "REST"}], "support-links": [{"url": "https://core.ac.uk/about#faqs", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "theteam@core.ac.uk", "name": "CORE Team Contact", "type": "Mailing list"}, {"url": "https://core.ac.uk/docs/", "name": "CORE API v2 Documentation", "type": "Help documentation"}, {"url": "https://www.fosteropenscience.eu/node/2263", "name": "Introduction to Text and Data Mining", "type": "Training documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://core.ac.uk/article-update", "name": "Article Update / Removal", "type": "data curation"}, {"url": "https://core.ac.uk/browse/latest", "name": "Browse Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001218", "bsg-d001218"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Subject Agnostic"], "domains": ["Text mining", "Journal article", "Literature curation"], "taxonomies": [], "user-defined-tags": ["Open Science", "Research object"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: CORE", "abbreviation": "CORE", "url": "https://fairsharing.org/10.25504/FAIRsharing.xMmOCL", "doi": "10.25504/FAIRsharing.xMmOCL", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CORE\u2019s mission is to aggregate all open access research outputs from repositories and journals worldwide and make them available to the public. In this way CORE facilitates free unrestricted access to research for all. CORE supports the right of citizens and the general public to access the results of research towards which they contributed by paying taxes; facilitates access to open access content for all by offering services to general public, academic institutions, libraries, software developers, researchers, etc.; provides support to both content consumers and content providers by working with digital libraries, institutional and subject repositories and journals, ; enriches the research content using state-of-the-art technology and provides access to it through a set of services including search, API and analytical tools, ; contributes to a cultural change by promoting open access, a fast growing movement.", "publications": [{"id": 2333, "pubmed_id": null, "title": "CORE: three access levels to underpin open access", "year": 2012, "url": "https://doi.org/10.1045/november2012-knoth", "authors": "Knoth, Petr and Zdrahal, Zdenek", "journal": "D-Lib Magazine, 18(11/12), article no. 4", "doi": null, "created_at": "2021-09-30T08:26:46.469Z", "updated_at": "2021-09-30T08:26:46.469Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1811", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-12T16:48:25.038Z", "metadata": {"doi": "10.25504/FAIRsharing.tbkzda", "name": "SURFACE", "status": "uncertain", "contacts": [{"contact-name": "Fabrizio Ferre", "contact-email": "fabrizio.ferre@uniroma2.it", "contact-orcid": "0000-0003-2768-5305"}], "homepage": "http://cbm.bio.uniroma2.it/surface", "identifier": 1811, "description": "SURFACE is a database containing the results of a large-scale protein annotation and local structural comparison project. The homepage of the resource has not been updated since 2003 (and the maintainer's website since 2010). Until we have confirmation of the status of this project, we have classified it as uncertain.", "abbreviation": "SURFACE", "support-links": [{"url": "surface@cbm.bio.uniroma2.it", "type": "Support email"}, {"url": "http://cbm.bio.uniroma2.it/surface/documentazione.htm", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://cbm.bio.uniroma2.it/surface/opzioni.htm", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://cbm.bio.uniroma2.it/surface/sequenza.htm", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000271", "bsg-d000271"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: SURFACE", "abbreviation": "SURFACE", "url": "https://fairsharing.org/10.25504/FAIRsharing.tbkzda", "doi": "10.25504/FAIRsharing.tbkzda", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SURFACE is a database containing the results of a large-scale protein annotation and local structural comparison project. The homepage of the resource has not been updated since 2003 (and the maintainer's website since 2010). Until we have confirmation of the status of this project, we have classified it as uncertain.", "publications": [{"id": 333, "pubmed_id": 14681403, "title": "SURFACE: a database of protein surface regions for functional annotation.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh054", "authors": "Ferr\u00e8 F., Ausiello G., Zanzoni A., Helmer-Citterich M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh054", "created_at": "2021-09-30T08:22:55.841Z", "updated_at": "2021-09-30T08:22:55.841Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1640", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:56.303Z", "metadata": {"doi": "10.25504/FAIRsharing.vebj4e", "name": "RNA Characterization of Secondary Structure Motifs", "status": "ready", "contacts": [{"contact-name": "Brent M. Znosko", "contact-email": "znoskob@slu.edu"}], "homepage": "http://cossmos.slu.edu", "identifier": 1640, "description": "RNA Characterization of Secondary Structure Motifs (RNA CoSSMos) database allows the systematic searching of all catalogued three-dimensional nucleic acid PDB structures that contain secondary structure motifs such as mismatches, (a)symmetric internal loops, hairpin loops, and bulge loops.", "abbreviation": "RNA CoSSMos", "support-links": [{"url": "http://cossmos.slu.edu/contact.php", "type": "Contact form"}, {"url": "http://viv.ec/wiki/index.php/CoSSMos_Database_Frequently_Asked_Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://en.wikipedia.org/wiki/RNA_CoSSMos", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "file download(txt,images)", "type": "data access"}, {"url": "http://cossmos.slu.edu/search.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000096", "bsg-d000096"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Ribonucleic acid", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: RNA Characterization of Secondary Structure Motifs", "abbreviation": "RNA CoSSMos", "url": "https://fairsharing.org/10.25504/FAIRsharing.vebj4e", "doi": "10.25504/FAIRsharing.vebj4e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RNA Characterization of Secondary Structure Motifs (RNA CoSSMos) database allows the systematic searching of all catalogued three-dimensional nucleic acid PDB structures that contain secondary structure motifs such as mismatches, (a)symmetric internal loops, hairpin loops, and bulge loops.", "publications": [{"id": 753, "pubmed_id": 22127861, "title": "RNA CoSSMos: Characterization of Secondary Structure Motifs--a searchable database of secondary structure motifs in RNA three-dimensional structures.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr943", "authors": "Vanegas PL, Hudson GA, Davis AR, Kelly SC, Kirkpatrick CC, Znosko BM.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/gkr943", "created_at": "2021-09-30T08:23:42.913Z", "updated_at": "2021-09-30T08:23:42.913Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2179", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:28.441Z", "metadata": {"doi": "10.25504/FAIRsharing.yk1krv", "name": "Eukaryotic Promoter Database", "status": "ready", "contacts": [{"contact-name": "Philipp Bucher", "contact-email": "ask-epd@googlegroups.com", "contact-orcid": "0000-0002-0816-7775"}], "homepage": "https://epd.epfl.ch/", "identifier": 2179, "description": "The Eukaryotic Promoter Database (EPD) provides accurate transcription start site (TSS) information for promoters of 15 model organisms, from human to yeast to the malaria parasite Plasmodium falciparum. While the original database was a manually curated database based on published experiments, new promoter collections are now produced entirely automatically (under the name \u201cEPDnew\u201d) based on high-throughput transcript mapping data and high-quality gene annotation resources. Corresponding functional genomics data can be viewed in a genome browser, queried or analyzed via web interfaces, or exported in standard formats like FASTA or BED for subsequent analysis with other tools; of note, EPD is tightly integrated with two tool suites developed by our group: ChIP-Seq (https://ccg.epfl.ch/chipseq) and Signal Search Analysis (https://ccg.epfl.ch/ssa), for analysis of chromatin context and sequence motif respectively. EPD provides promoter viewers, designed with the aim of integrating and displaying information from different sources about, for instance, histone marks, transcription factor-binding sites or SNPs with known phenotypes. These viewers rely upon the UCSC genome browser as a visualization platform, which enables users to view data tracks from EPD jointly with tracks from UCSC or public track hubs.", "abbreviation": "EPD", "support-links": [{"url": "https://epd.epfl.ch/webmail.php", "type": "Contact form"}, {"url": "http://epd.epfl.ch/documents.php", "type": "Help documentation"}], "year-creation": 1988, "data-processes": [{"url": "https://epd.epfl.ch/EPD_download.php", "name": "download", "type": "data access"}, {"url": "ftp://ccg.epfl.ch/epd/", "name": "ftp download", "type": "data access"}], "associated-tools": [{"url": "https://ccg.epfl.ch/ssa/", "name": "Signal Search Analysis 2.0"}, {"url": "https://ccg.epfl.ch/chipseq/", "name": "ChIP-Seq 1.3"}, {"url": "https://epd.epfl.ch/EPDnew_study.php", "name": "EPDnew analysis tool"}, {"url": "https://epd.epfl.ch/EPDnew_select.php", "name": "EPDnew selection tool"}, {"url": "https://www.expasy.org/genomics", "name": "ExPASy Tools"}]}, "legacy-ids": ["biodbcore-000653", "bsg-d000653"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Transcription factor", "Promoter"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Eukaryotic Promoter Database", "abbreviation": "EPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.yk1krv", "doi": "10.25504/FAIRsharing.yk1krv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Eukaryotic Promoter Database (EPD) provides accurate transcription start site (TSS) information for promoters of 15 model organisms, from human to yeast to the malaria parasite Plasmodium falciparum. While the original database was a manually curated database based on published experiments, new promoter collections are now produced entirely automatically (under the name \u201cEPDnew\u201d) based on high-throughput transcript mapping data and high-quality gene annotation resources. Corresponding functional genomics data can be viewed in a genome browser, queried or analyzed via web interfaces, or exported in standard formats like FASTA or BED for subsequent analysis with other tools; of note, EPD is tightly integrated with two tool suites developed by our group: ChIP-Seq (https://ccg.epfl.ch/chipseq) and Signal Search Analysis (https://ccg.epfl.ch/ssa), for analysis of chromatin context and sequence motif respectively. EPD provides promoter viewers, designed with the aim of integrating and displaying information from different sources about, for instance, histone marks, transcription factor-binding sites or SNPs with known phenotypes. These viewers rely upon the UCSC genome browser as a visualization platform, which enables users to view data tracks from EPD jointly with tracks from UCSC or public track hubs.", "publications": [{"id": 205, "pubmed_id": 9399872, "title": "The Eukaryotic Promoter Database EPD.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.353", "authors": "Cavin P\u00e9rier R, Junier T, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/26.1.353", "created_at": "2021-09-30T08:22:42.347Z", "updated_at": "2021-09-30T08:22:42.347Z"}, {"id": 681, "pubmed_id": 10592254, "title": "The eukaryotic promoter database (EPD).", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.302", "authors": "P\u00e9rier RC, Praz V, Junier T, Bonnard C, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/28.1.302", "created_at": "2021-09-30T08:23:35.044Z", "updated_at": "2021-09-30T08:23:35.044Z"}, {"id": 683, "pubmed_id": 9847211, "title": "The Eukaryotic Promoter Database (EPD): recent developments.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.307", "authors": "P\u00e9rier RC, Junier T, Bonnard C, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/27.1.307", "created_at": "2021-09-30T08:23:35.294Z", "updated_at": "2021-09-30T08:23:35.294Z"}, {"id": 1428, "pubmed_id": 3808945, "title": "Compilation and analysis of eukaryotic POL II promoter sequences", "year": 1986, "url": "http://doi.org/10.1093/nar/14.24.10009", "authors": "Bucher,P. and Trifonov,E.N.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/14.24.10009", "created_at": "2021-09-30T08:24:59.693Z", "updated_at": "2021-09-30T08:24:59.693Z"}, {"id": 1429, "pubmed_id": 25378343, "title": "The Eukaryotic Promoter Database: expansion of EPDnew and new promoter analysis tools.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1111", "authors": "Dreos, R., Ambrosini, G., P\u00e9rier, R., Bucher, P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/gku1111", "created_at": "2021-09-30T08:24:59.802Z", "updated_at": "2021-09-30T08:24:59.802Z"}, {"id": 2554, "pubmed_id": 23193273, "title": "EPD and EPDnew, high-quality promoter resources in the next-generation sequencing era.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1233", "authors": "Dreos R, Ambrosini G, Cavin P\u00e9rier R, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/gks1233", "created_at": "2021-09-30T08:27:13.233Z", "updated_at": "2021-09-30T08:27:13.233Z"}, {"id": 2555, "pubmed_id": 16381980, "title": "EPD in its twentieth year: towards complete promoter coverage of selected model organisms.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj146", "authors": "Schmid CD, Perier R, Praz V, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/gkj146", "created_at": "2021-09-30T08:27:13.343Z", "updated_at": "2021-09-30T08:27:13.343Z"}, {"id": 2557, "pubmed_id": 14681364, "title": "The Eukaryotic Promoter Database EPD: the impact of in silico primer extension.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh122", "authors": "Schmid CD, Praz V, Delorenzi M, P\u00e9rier R, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/gkh122", "created_at": "2021-09-30T08:27:13.678Z", "updated_at": "2021-09-30T08:27:13.678Z"}, {"id": 2559, "pubmed_id": 11752326, "title": "The Eukaryotic Promoter Database, EPD: new entry types and links to gene expression data.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.322", "authors": "Praz V, P\u00e9rier R, Bonnard C, Bucher P.", "journal": "Nucleic Acid Res.", "doi": "10.1093/nar/30.1.322", "created_at": "2021-09-30T08:27:13.894Z", "updated_at": "2021-09-30T08:27:13.894Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2151", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:07.895Z", "metadata": {"doi": "10.25504/FAIRsharing.rm14bx", "name": "NeuroVault", "status": "ready", "contacts": [{"contact-name": "Chris Gorgolewski", "contact-email": "krzysztof.gorgolewski@gmail.com", "contact-orcid": "0000-0003-3321-7583"}], "homepage": "https://neurovault.org/", "citations": [], "identifier": 2151, "description": "The purpose of this database is to collect and distribute statistical maps of the human brain. Such maps are acquired by scientist all around the world using brain imaging techniques such as MRI or PET in a combined effort to map the functions and structures of the brain.", "abbreviation": "NeuroVault", "access-points": [{"url": "http://neurovault.org/api/", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://neurovault.org/FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://neurostars.org/tag/neurovault", "type": "Forum"}], "year-creation": 2012, "data-processes": [{"url": "https://neurovault.org/collections/?q=", "name": "See all collections", "type": "data access"}, {"url": "https://neurovault.org/metaanalysis_selection/?q=", "name": "Group level maps from published studies", "type": "data access"}], "associated-tools": [{"url": "https://github.com/NeuroVault/pyneurovault", "name": "pyneurovault"}, {"url": "http://www.neurosynth.org", "name": "Neurosynth"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012842", "name": "re3data:r3d100012842", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000623", "bsg-d000623"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurobiology", "Life Science", "Biomedical Science"], "domains": ["Functional magnetic resonance imaging", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "France", "Germany"], "name": "FAIRsharing record for: NeuroVault", "abbreviation": "NeuroVault", "url": "https://fairsharing.org/10.25504/FAIRsharing.rm14bx", "doi": "10.25504/FAIRsharing.rm14bx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The purpose of this database is to collect and distribute statistical maps of the human brain. Such maps are acquired by scientist all around the world using brain imaging techniques such as MRI or PET in a combined effort to map the functions and structures of the brain.", "publications": [{"id": 778, "pubmed_id": 25914639, "title": "NeuroVault.org: a web-based repository for collecting and sharing unthresholded statistical maps of the human brain.", "year": 2015, "url": "http://doi.org/10.3389/fninf.2015.00008", "authors": "Gorgolewski KJ,Varoquaux G,Rivera G,Schwarz Y,Ghosh SS,Maumet C,Sochat VV,Nichols TE,Poldrack RA,Poline JB,Yarkoni T,Margulies DS", "journal": "Front Neuroinform", "doi": "10.3389/fninf.2015.00008", "created_at": "2021-09-30T08:23:45.728Z", "updated_at": "2021-09-30T08:23:45.728Z"}, {"id": 1020, "pubmed_id": 25869863, "title": "NeuroVault.org: A repository for sharing unthresholded statistical maps, parcellations, and atlases of the human brain.", "year": 2015, "url": "http://doi.org/S1053-8119(15)00306-7", "authors": "Gorgolewski KJ, Varoquaux G, Rivera G, Schwartz Y, Sochat VV, Ghosh SS, Maumet C, Nichols TE, Poline JB, Yarkoni T, Margulies DS, Poldrack RA", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2015.04.016", "created_at": "2021-09-30T08:24:12.965Z", "updated_at": "2021-09-30T08:24:12.965Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2433, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1575", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-14T08:23:42.216Z", "metadata": {"doi": "10.25504/FAIRsharing.tw7vf", "name": "Human Disease-Related Viral Integration Sites", "status": "deprecated", "contacts": [{"contact-name": "Haitao Zhao", "contact-email": "zhaoht@pumch.cn"}], "homepage": "http://www.bioinfo.org/drvis/index.php", "identifier": 1575, "description": "Dr.VIS collects and locates human disease-related viral integration sites. So far, about 600 sites covering 5 virus organisms and 11 human diseases are available. Integration sites in Dr.VIS are located against chromesome, cytoband, gene and refseq position as specific as possible. Viral-cellular junction sequences are extracted from papers and nucleotide databases, and linked to cooresponding integration sites Graphic views summarizing distribution of viral integration sites are generated according to chromosome maps.", "abbreviation": "Dr.VIS", "support-links": [{"url": "http://www.bioinfo.org/drvis/help.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://www.bioinfo.org/drvis/browser.php", "name": "browse", "type": "data access"}, {"url": "http://www.bioinfo.org/drvis/download.php", "name": "file download", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000030", "bsg-d000030"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Sequence position", "DNA sequence data", "Chromosomal region", "Phenotype", "Disease", "Gene"], "taxonomies": ["Barr virus", "Hepatitis b virus", "Homo sapiens", "Human papillomavirus", "Merkel cell polyomavirus", "Virus type 1"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Human Disease-Related Viral Integration Sites", "abbreviation": "Dr.VIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.tw7vf", "doi": "10.25504/FAIRsharing.tw7vf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dr.VIS collects and locates human disease-related viral integration sites. So far, about 600 sites covering 5 virus organisms and 11 human diseases are available. Integration sites in Dr.VIS are located against chromesome, cytoband, gene and refseq position as specific as possible. Viral-cellular junction sequences are extracted from papers and nucleotide databases, and linked to cooresponding integration sites Graphic views summarizing distribution of viral integration sites are generated according to chromosome maps.", "publications": [{"id": 750, "pubmed_id": 25355513, "title": "Dr.VIS v2.0: an updated database of human disease-related viral integration sites in the era of high-throughput deep sequencing.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1074", "authors": "Yang X,Li M,Liu Q,Zhang Y,Qian J,Wan X,Wang A,Zhang H,Zhu C,Lu X,Mao Y,Sang X,Zhao H,Zhao Y,Zhang X", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1074", "created_at": "2021-09-30T08:23:42.584Z", "updated_at": "2021-09-30T11:28:49.693Z"}, {"id": 1549, "pubmed_id": 22135288, "title": "Dr.VIS: a database of human disease-related viral integration sites.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1142", "authors": "Zhao X,Liu Q,Cai Q,Li Y,Xu C,Li Y,Li Z,Zhang X", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1142", "created_at": "2021-09-30T08:25:13.558Z", "updated_at": "2021-09-30T11:29:12.021Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1744", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.332Z", "metadata": {"doi": "10.25504/FAIRsharing.6v2d2h", "name": "The Arabidopsis Gene Regulatory Information Server", "status": "ready", "contacts": [{"contact-name": "Erich Grotewold", "contact-email": "grotewold.agris@gmail.com"}], "homepage": "http://arabidopsis.med.ohio-state.edu", "identifier": 1744, "description": "The Arabidopsis Gene Regulatory Information Server (AGRIS) is a new information resource of Arabidopsis promoter sequences, transcription factors and their target genes. AGRIS currently contains two databases, AtcisDB (Arabidopsis thaliana cis-regulatory database) and AtTFDB (Arabidopsis thaliana transcription factor database). The two databases, used in tandem, provide a powerful tool for use in continuous research.", "abbreviation": "AGRIS", "support-links": [{"url": "http://arabidopsis.med.ohio-state.edu/AtcisDB/AtcisDBHelp.html", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://arabidopsis.med.ohio-state.edu/downloads.html", "name": "Download", "type": "data access"}, {"url": "http://arabidopsis.med.ohio-state.edu/AtTFDB/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000202", "bsg-d000202"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Biological regulation", "Genome"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Arabidopsis Gene Regulatory Information Server", "abbreviation": "AGRIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.6v2d2h", "doi": "10.25504/FAIRsharing.6v2d2h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arabidopsis Gene Regulatory Information Server (AGRIS) is a new information resource of Arabidopsis promoter sequences, transcription factors and their target genes. AGRIS currently contains two databases, AtcisDB (Arabidopsis thaliana cis-regulatory database) and AtTFDB (Arabidopsis thaliana transcription factor database). The two databases, used in tandem, provide a powerful tool for use in continuous research.", "publications": [{"id": 1393, "pubmed_id": 21059685, "title": "AGRIS: the Arabidopsis Gene Regulatory Information Server, an update.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1120", "authors": "Yilmaz A., Mejia-Guerra MK., Kurz K., Liang X., Welch L., Grotewold E.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1120", "created_at": "2021-09-30T08:24:55.702Z", "updated_at": "2021-09-30T08:24:55.702Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2611", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-02T21:11:53.000Z", "updated-at": "2021-11-24T13:19:36.497Z", "metadata": {"doi": "10.25504/FAIRsharing.QXSgvF", "name": "MirGeneDB.org", "status": "ready", "contacts": [{"contact-name": "Bastian Fromm", "contact-email": "BastianFromm@gmail.com", "contact-orcid": "0000-0003-0352-3037"}], "homepage": "http://mirgenedb.org", "citations": [{"doi": "10.1146/annurev-genet-120213-092023", "pubmed-id": 26473382, "publication-id": 923}], "identifier": 2611, "description": "MirGeneDB is a database of microRNA genes that have been validated and annotated as described in \"A Uniform System for the Annotation of Vertebrate microRNA Genes and the Evolution of the Human microRNAome\".* The initial version contained 1,434 microRNA genes for human, mouse, chicken and zebrafish. Version 2.0 contains more than 10,000 genes from 45 organisms representing nearly every major metazoan group, and these microRNAs can be browsed, searched and downloaded.", "abbreviation": "MirGeneDB", "support-links": [{"url": "http://mirgenedb.org/information", "name": "miRNA Information", "type": "Help documentation"}, {"url": "https://twitter.com/MirGeneDB", "name": "@MirGeneDB", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "http://mirgenedb.org/search", "name": "Search Data", "type": "data access"}, {"url": "http://mirgenedb.org/browse", "name": "Browse Data", "type": "data access"}, {"url": "http://mirgenedb.org/download", "name": "Download Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001095", "bsg-d001095"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Evolutionary Biology", "Life Science"], "domains": ["Sequence annotation", "Evolution", "Micro RNA", "Pre-miRNA (pre-microRNA)"], "taxonomies": ["Aedes aegypti", "Alligator Mississippiensis", "Anolis carolinensis", "Ascaris suum", "Blattella germanica", "Bos taurus", "Branchiostoma floridae", "Caenorhabditis briggsae", "Caenorhabditis elegans", "Canis familiaris", "Capitella teleta", "Cavia porcellus", "Chrysemys picta belli", "Ciona intestinalis", "Columba livia", "Crassostrea gigas", "Danio rerio", "Daphnia pulex", "Dasypus novemcinctus", "Drosophila ananassae", "Drosophila melanogaster", "Drosophila mojavensis", "Echinops telfairi", "Eisenia fetida", "Gallus gallus", "Heliconius melpomene", "Homo sapiens", "Ixodes scapularis", "Lingula anatina", "Lottia gigantea", "Macaca mulatta", "Monodelphis domestica", "Mus musculus", "Ornithorhynchus anatinus", "Oryctolagus cuniculus", "Patiria miniata", "Ptychodera flava", "Rattus norvegicus", "Saccoglossus kowalevskii", "Sarcophilus harrisii", "Scyliorhinus torazame", "Strongylocentrotus purpuratus", "Taeniopygia guttata", "Tribolium castaneum", "Xenopus tropicalis"], "user-defined-tags": [], "countries": ["Norway", "United States", "Sweden"], "name": "FAIRsharing record for: MirGeneDB.org", "abbreviation": "MirGeneDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.QXSgvF", "doi": "10.25504/FAIRsharing.QXSgvF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MirGeneDB is a database of microRNA genes that have been validated and annotated as described in \"A Uniform System for the Annotation of Vertebrate microRNA Genes and the Evolution of the Human microRNAome\".* The initial version contained 1,434 microRNA genes for human, mouse, chicken and zebrafish. Version 2.0 contains more than 10,000 genes from 45 organisms representing nearly every major metazoan group, and these microRNAs can be browsed, searched and downloaded.", "publications": [{"id": 923, "pubmed_id": 26473382, "title": "A Uniform System for the Annotation of Vertebrate microRNA Genes and the Evolution of the Human microRNAome.", "year": 2015, "url": "http://doi.org/10.1146/annurev-genet-120213-092023", "authors": "Fromm B,Billipp T,Peck LE,Johansen M,Tarver JE,King BL,Newcomb JM,Sempere LF,Flatmark K,Hovig E,Peterson KJ", "journal": "Annu Rev Genet", "doi": "10.1146/annurev-genet-120213-092023", "created_at": "2021-09-30T08:24:01.913Z", "updated_at": "2021-09-30T08:24:01.913Z"}, {"id": 1168, "pubmed_id": null, "title": "MirGeneDB2.0: the curated microRNA Gene Database (Preprint)", "year": 2018, "url": "http://doi.org/10.1101/258749", "authors": "Bastian Fromm, Diana Domanska, Michael Hackenberg, Anthony Mathelier, Eirik Hoye, Morten Johansen, Eivind Hovig, Kjersti Flatmark, Kevin J Peterson", "journal": "BioRxiv", "doi": "10.1101/258749", "created_at": "2021-09-30T08:24:29.808Z", "updated_at": "2021-09-30T11:28:39.794Z"}, {"id": 3090, "pubmed_id": 31598695, "title": "MirGeneDB 2.0: the metazoan microRNA complement.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz885", "authors": "Fromm B,Domanska D,Hoye E,Ovchinnikov V,Kang W,Aparicio-Puerta E,Johansen M,Flatmark K,Mathelier A,Hovig E,Hackenberg M,Friedlander MR,Peterson KJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz885", "created_at": "2021-09-30T08:28:20.707Z", "updated_at": "2021-09-30T11:29:51.079Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1585", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:27.117Z", "metadata": {"doi": "10.25504/FAIRsharing.xf30yc", "name": "Fungal and Oomycete genomics resource", "status": "ready", "contacts": [{"contact-name": "Jason E. Stajich", "contact-email": "jason.stajich@ucr.edu", "contact-orcid": "0000-0002-7591-0020"}], "homepage": "http://fungidb.org", "identifier": 1585, "description": "FungiDB is an integrated genomic and functional genomic database for the kingdom Fungi. The database integrates whole genome sequence and annotation and also includes experimental and environmental isolate sequence data. The database includes comparative genomics, analysis of gene expression, and supplemental bioinformatics analyses and a web interface for data-mining.", "abbreviation": "FungiDB", "access-points": [{"url": "http://fungidb.org/fungidb/serviceList.jsp", "name": "REST Web Services", "type": "REST"}], "support-links": [{"url": "http://fungidb.org/fungidb/contact.do", "type": "Contact form"}, {"url": "https://www.genome.gov/glossary/", "type": "Help documentation"}, {"url": "http://fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.Glossary", "type": "Help documentation"}, {"url": "http://fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.Tutorials", "type": "Training documentation"}, {"url": "https://www.youtube.com/user/EuPathDB/videos?sort=dd&flow=list&view=1", "type": "Video"}, {"url": "http://workshop.eupathdb.org/current/index.php?page=schedule", "type": "Training documentation"}, {"url": "https://twitter.com/fungidb", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"name": "web interface", "type": "data versioning"}, {"name": "file download(txt)", "type": "data versioning"}, {"name": "SQL database dump", "type": "data curation"}, {"name": "biannual release or quarterly release (projected release plan)", "type": "data curation"}, {"name": "crowd-sourcing curation", "type": "data release"}, {"name": "community curation", "type": "data access"}, {"name": "no versioning policy", "type": "data access"}, {"name": "access to historical files available", "type": "data access"}, {"name": "download", "type": "data access"}, {"name": "search", "type": "data access"}, {"url": "http://fungidb.org/cgi-bin/gbrowse/fungidb/", "name": "Genome browser", "type": "data access"}], "associated-tools": [{"url": "http://grna.ctegd.uga.edu/", "name": "EuPaGDT"}, {"url": "https://companion.sanger.ac.uk/", "name": "Companion"}, {"url": "http://fungidb.org/fungidb/showQuestion.do?questionFullName=UniversalQuestions.UnifiedBlast", "name": "blast"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011906", "name": "re3data:r3d100011906", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006013", "name": "SciCrunch:RRID:SCR_006013", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000040", "bsg-d000040"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Citation", "Protein domain", "Gene name", "DNA sequence data", "Free text", "Gene Ontology enrichment", "Protein identification", "Gene model annotation", "Protein targeting", "Protein localization", "Genetic polymorphism", "RNA sequencing", "Phenotype", "Crowdsourcing", "Single nucleotide polymorphism", "Orthologous"], "taxonomies": ["Fungi", "Oomycetes"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Fungal and Oomycete genomics resource", "abbreviation": "FungiDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.xf30yc", "doi": "10.25504/FAIRsharing.xf30yc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FungiDB is an integrated genomic and functional genomic database for the kingdom Fungi. The database integrates whole genome sequence and annotation and also includes experimental and environmental isolate sequence data. The database includes comparative genomics, analysis of gene expression, and supplemental bioinformatics analyses and a web interface for data-mining.", "publications": [{"id": 798, "pubmed_id": 27259951, "title": "Database whiplash, crowdsourcing, and FungiDB.", "year": 2016, "url": "http://doi.org/10.1016/j.fgb.2016.04.002", "authors": "Momany M", "journal": "Fungal Genet Biol", "doi": "10.1016/j.fgb.2016.04.002", "created_at": "2021-09-30T08:23:47.986Z", "updated_at": "2021-09-30T08:23:47.986Z"}, {"id": 1364, "pubmed_id": 22064857, "title": "FungiDB: an integrated functional genomics database for fungi.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr918", "authors": "Stajich JE,Harris T,Brunk BP,Brestelli J,Fischer S,Harb OS,Kissinger JC,Li W,Nayak V,Pinney DF,Stoeckert CJ Jr,Roos DS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr918", "created_at": "2021-09-30T08:24:52.565Z", "updated_at": "2021-09-30T11:29:07.101Z"}, {"id": 1375, "pubmed_id": 24813190, "title": "Literature-based gene curation and proposed genetic nomenclature for cryptococcus.", "year": 2014, "url": "http://doi.org/10.1128/EC.00083-14", "authors": "Inglis DO,Skrzypek MS,Liaw E,Moktali V,Sherlock G,Stajich JE", "journal": "Eukaryot Cell", "doi": "10.1128/EC.00083-14", "created_at": "2021-09-30T08:24:53.793Z", "updated_at": "2021-09-30T08:24:53.793Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2588", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T10:47:56.000Z", "updated-at": "2021-11-24T13:17:53.402Z", "metadata": {"doi": "10.25504/FAIRsharing.KoQXUl", "name": "YamBase", "status": "ready", "homepage": "https://yambase.org/", "identifier": 2588, "description": "YamBase is a database containing breeding data for Yam (genus Dioscorea). Yam species that are being used for breeding include Dioscorea rotundata, Dioscorea cayenensis (both are native to Africa and the major cultivated species), Dioscorea aleata (native to Southeast Asia), and Dioscorea praehensilis, as well as several other species. YamBase contains phenotypic and genotypic data, as well as trial metadata from breeding programs in Africa.", "abbreviation": "YamBase", "support-links": [{"url": "https://yambase.org/contact/form", "name": "Yambase Contact Form", "type": "Contact form"}, {"url": "https://yambase.org/help/faq.pl", "name": "Yambase FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://yambase.org/forum/topics.pl", "name": "Yambase Forum", "type": "Forum"}, {"url": "https://twitter.com/solgenomics", "name": "@solgenomics", "type": "Twitter"}], "data-processes": [{"url": "ftp://ftp.yambase.org/", "name": "FTP Download", "type": "data access"}, {"url": "https://yambase.org/search/cross", "name": "Search Progenies and Crosses", "type": "data access"}, {"url": "https://yambase.org/search/stocks", "name": "Search Accessions and Plots", "type": "data access"}, {"url": "https://yambase.org/breeders/search", "name": "Search Wizard", "type": "data access"}, {"url": "https://yambase.org/search/traits", "name": "Search Traits", "type": "data access"}, {"url": "https://yambase.org/search/trials", "name": "Search Trials", "type": "data access"}, {"url": "https://yambase.org/search/images", "name": "Search Images", "type": "data access"}, {"url": "https://yambase.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://yambase.org/search/locus", "name": "Search Genes and Loci", "type": "data access"}], "associated-tools": [{"url": "https://yambase.org/solgs/search/", "name": "Genomic Selection Tool"}, {"url": "https://yambase.org/accession_usage", "name": "Accession Usage Tool"}, {"url": "https://yambase.org/pca/analysis", "name": "Population Structure Analysis"}, {"url": "https://yambase.org/tools/blast/", "name": "BLAST"}, {"url": "https://yambase.org/jbrowse", "name": "JBrowse"}]}, "legacy-ids": ["biodbcore-001071", "bsg-d001071"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Plant Breeding", "Genomics", "Agriculture", "Life Science"], "domains": ["Phenotype", "Genotype"], "taxonomies": ["Dioscorea"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: YamBase", "abbreviation": "YamBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.KoQXUl", "doi": "10.25504/FAIRsharing.KoQXUl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: YamBase is a database containing breeding data for Yam (genus Dioscorea). Yam species that are being used for breeding include Dioscorea rotundata, Dioscorea cayenensis (both are native to Africa and the major cultivated species), Dioscorea aleata (native to Southeast Asia), and Dioscorea praehensilis, as well as several other species. YamBase contains phenotypic and genotypic data, as well as trial metadata from breeding programs in Africa.", "publications": [], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 1622, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1964", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:21.779Z", "metadata": {"doi": "10.25504/FAIRsharing.w2eeqr", "name": "NCBI BioSystems Database", "status": "ready", "contacts": [{"contact-name": "General information", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/biosystems/", "citations": [], "identifier": 1964, "description": "The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources. The resource provides categorical information on genes, proteins and small molecules of biosystems.", "abbreviation": "BioSystems", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/Structure/biosystems/docs/biosystems_faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/biosystems/docs/biosystems_help.html", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/pub/biosystems/", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/flink/flink.cgi", "name": "search", "type": "data access"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/Structure/flink/flink.cgi", "name": "FLink"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011033", "name": "re3data:r3d100011033", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004690", "name": "SciCrunch:RRID:SCR_004690", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000430", "bsg-d000430"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology", "Systems Biology"], "domains": ["Molecular entity", "Small molecule", "Protein", "Pathway model", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI BioSystems Database", "abbreviation": "BioSystems", "url": "https://fairsharing.org/10.25504/FAIRsharing.w2eeqr", "doi": "10.25504/FAIRsharing.w2eeqr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources. The resource provides categorical information on genes, proteins and small molecules of biosystems.", "publications": [{"id": 448, "pubmed_id": 19854944, "title": "The NCBI BioSystems database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp858", "authors": "Geer LY., Marchler-Bauer A., Geer RC., Han L., He J., He S., Liu C., Shi W., Bryant SH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp858", "created_at": "2021-09-30T08:23:08.644Z", "updated_at": "2021-09-30T08:23:08.644Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1754, "relation": "undefined"}, {"licence-name": "BioSystems Attribution required", "licence-id": 82, "link-id": 1756, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1760, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2856", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-14T12:25:44.000Z", "updated-at": "2022-01-31T15:29:58.640Z", "metadata": {"doi": "10.25504/FAIRsharing.2cw3HU", "name": "BonaRes Repository", "status": "ready", "contacts": [{"contact-name": "Carsten Hoffmann", "contact-email": "hoffmann@zalf.de", "contact-orcid": "0000-0001-6457-4853"}], "homepage": "https://datenzentrum.bonares.de/research-data.php", "citations": [{"doi": "https://doi.org/10.1016/j.cageo.2019.07.005", "publication-id": 2633}], "identifier": 2856, "description": "The BonaRes Repository stores soil and agricultural research data from research projects and long-term field experiments which contribute significantly to the analysis of changes of soil and soil functions over the long term. Research data are described by the metadata following the BonaRes Metadata Schema (DOI: 10.20387/bonares-5pgg-8yrp) which combines international recognized standards for the description of geospatial data and research data. Metadata includes AGROVOC keywords.", "abbreviation": "BonaRes Rep", "data-curation": {"type": "manual"}, "support-links": [{"url": "specka@zalf.de", "name": "Xenia Specka", "type": "Support email"}, {"url": "https://datenzentrum.bonares.de/research-data.php", "name": "About BonaRes Data Portal", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://maps.bonares.de/mapapps/resources/apps/bonares/index.html?lang=en", "name": "Search & Browse Maps", "type": "data access"}, {"url": "https://tools.bonares.de/submission/", "name": "Submit", "type": "data curation"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013470", "name": "re3data:r3d100013470", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://tools.bonares.de/submission/", "type": "controlled"}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001357", "bsg-d001357"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Soil Science", "Agriculture"], "domains": ["Experimental measurement", "Centrally registered identifier", "Protocol", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: BonaRes Repository", "abbreviation": "BonaRes Rep", "url": "https://fairsharing.org/10.25504/FAIRsharing.2cw3HU", "doi": "10.25504/FAIRsharing.2cw3HU", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The BonaRes Repository stores soil and agricultural research data from research projects and long-term field experiments which contribute significantly to the analysis of changes of soil and soil functions over the long term. Research data are described by the metadata following the BonaRes Metadata Schema (DOI: 10.20387/bonares-5pgg-8yrp) which combines international recognized standards for the description of geospatial data and research data. Metadata includes AGROVOC keywords.", "publications": [{"id": 2633, "pubmed_id": null, "title": "The BonaRes metadata schema for geospatial soil-agricultural research data \u2013 Merging INSPIRE and DataCite metadata schemes", "year": 2019, "url": "http://doi.org/https://doi.org/10.1016/j.cageo.2019.07.005", "authors": "Specka, X.;G\u00e4rtner, P.; Hoffmann, C.; Svoboda, N.,; Stecker, M.; Einspanier, U.; Senkler, K.; Zoarder, M.A.M.; Heinrich, U.", "journal": "Computer & Geosciences", "doi": "https://doi.org/10.1016/j.cageo.2019.07.005", "created_at": "2021-09-30T08:27:23.346Z", "updated_at": "2021-09-30T08:27:23.346Z"}], "licence-links": [{"licence-name": "Creative Commons (CC) Copyright-Only Dedication (based on United States law) or Public Domain Certification", "licence-id": 197, "link-id": 2267, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2731", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T21:11:23.000Z", "updated-at": "2021-11-24T13:19:39.055Z", "metadata": {"doi": "10.25504/FAIRsharing.0oOPKg", "name": "ThaleMine", "status": "ready", "contacts": [{"contact-email": "nicholas.provart@utoronto.ca"}], "homepage": "https://bar.utoronto.ca/thalemine", "citations": [{"doi": "10.1093/nar/gku1200", "pubmed-id": 25414324, "publication-id": 2551}], "identifier": 2731, "description": "ThaleMine enables you to analyze Arabidopsis thaliana genes, proteins, gene expression, protein-protein interactions, orthologs, and more. Use plain text or structured queries for interactive gene and protein reports.", "abbreviation": "ThaleMine", "access-points": [{"url": "https://bar.utoronto.ca/thalemine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://www.araport.org/", "name": "ThaleMine FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://tess.elixir-europe.org/materials/thalemine-tutorials", "name": "Thalemine tutorials", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2014, "data-processes": [{"url": "https://bar.utoronto.ca/thalemine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "https://bar.utoronto.ca/thalemine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://bar.utoronto.ca/thalemine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://bar.utoronto.ca/thalemine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001229", "bsg-d001229"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Gene expression", "Molecular interaction", "Protein", "Gene", "Homologous"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: ThaleMine", "abbreviation": "ThaleMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.0oOPKg", "doi": "10.25504/FAIRsharing.0oOPKg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ThaleMine enables you to analyze Arabidopsis thaliana genes, proteins, gene expression, protein-protein interactions, orthologs, and more. Use plain text or structured queries for interactive gene and protein reports.", "publications": [{"id": 2551, "pubmed_id": 25414324, "title": "Araport: the Arabidopsis information portal.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1200", "authors": "Krishnakumar V,Hanlon MR,Contrino S,Ferlanti ES,Karamycheva S,Kim M,Rosen BD,Cheng CY,Moreira W,Mock SA,Stubbs J,Sullivan JM,Krampis K,Miller JR,Micklem G,Vaughn M,Town CD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1200", "created_at": "2021-09-30T08:27:12.849Z", "updated_at": "2021-09-30T11:29:39.129Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1016, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1983", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:58.936Z", "metadata": {"doi": "10.25504/FAIRsharing.5h3maw", "name": "NCBI Gene", "status": "ready", "contacts": [{"contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/gene", "identifier": 1983, "description": "Gene supplies gene-specific connections in the nexus of map, sequence, expression, structure, function, citation, and homology data. Unique identifiers are assigned to genes with defining sequences, genes with known map positions, and genes inferred from phenotypic information. These gene identifiers are used throughout NCBI's databases and tracked through updates of annotation. Gene includes genomes represented by NCBI Reference Sequences (or RefSeqs) and is integrated for indexing and query and retrieval from NCBI's Entrez and E-Utilities systems. Gene comprises sequences from thousands of distinct taxonomic identifiers, ranging from viruses to bacteria to eukaryotes. It represents chromosomes, organelles, plasmids, viruses, transcripts, and millions of proteins.", "abbreviation": "NCBI Gene", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/books/NBK3840/", "name": "NCBI Gene FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK3841/", "name": "NCBI Gene Quick Start", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/mailman/listinfo/refseq-announce", "name": "RefSeq Announce Mailing List", "type": "Mailing list"}, {"url": "https://www.ncbi.nlm.nih.gov/gene/statistics/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://ftp.ncbi.nih.gov/pub/factsheets/Factsheet_Gene.pdf", "name": "Fact Sheet", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=genenews", "name": "RSS News Feed", "type": "Blog/News"}, {"url": "https://tess.elixir-europe.org/materials/docker-tutorial-gene-regulation", "name": "Docker tutorial gene regulation", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/bioinformatics-gene-protein-structure-function", "name": "Bioinformatics gene protein structure function", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/ifb-cloud-tutorial-gene-regulation", "name": "Ifb cloud tutorial gene regulation", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/snakemake-tutorial-gene-regulation", "name": "Snakemake tutorial gene regulation", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pathway-and-network-analysis-2014-module-6-gene-function-prediction", "name": "Pathway and network analysis 2014 module 6 gene function prediction", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pathway-and-network-analysis-2014-module-3-gene-regulation-analysis", "name": "Pathway and network analysis 2014 module 3 gene regulation analysis", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/pathway-and-network-analysis-2014-module-1-introduction-to-gene-lists", "name": "Pathway and network analysis 2014 module 1 introduction to gene lists", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://ftp.ncbi.nih.gov/gene/", "name": "Download", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/gene/advanced", "name": "Search", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/gene/submit-generif", "name": "Submit GeneRIF", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/update.cgi", "name": "Suggest Corrections", "type": "data curation"}], "associated-tools": [{"url": "https://www.ncbi.nlm.nih.gov/sutils/splign/splign.cgi", "name": "Splign"}, {"url": "https://www.ncbi.nlm.nih.gov/tools/gbench/", "name": "Genome Workbench"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010650", "name": "re3data:r3d100010650", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002473", "name": "SciCrunch:RRID:SCR_002473", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000449", "bsg-d000449"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics"], "domains": ["Molecular structure", "Expression data", "DNA sequence data", "Deoxyribonucleic acid", "Chromosome", "Gene expression", "Organelle", "Plasmid", "Phenotype", "Structure", "Protein", "Transcript", "Gene", "Homologous", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Gene", "abbreviation": "NCBI Gene", "url": "https://fairsharing.org/10.25504/FAIRsharing.5h3maw", "doi": "10.25504/FAIRsharing.5h3maw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gene supplies gene-specific connections in the nexus of map, sequence, expression, structure, function, citation, and homology data. Unique identifiers are assigned to genes with defining sequences, genes with known map positions, and genes inferred from phenotypic information. These gene identifiers are used throughout NCBI's databases and tracked through updates of annotation. Gene includes genomes represented by NCBI Reference Sequences (or RefSeqs) and is integrated for indexing and query and retrieval from NCBI's Entrez and E-Utilities systems. Gene comprises sequences from thousands of distinct taxonomic identifiers, ranging from viruses to bacteria to eukaryotes. It represents chromosomes, organelles, plasmids, viruses, transcripts, and millions of proteins.", "publications": [{"id": 475, "pubmed_id": 15608257, "title": "Entrez Gene: gene-centered information at NCBI.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki031", "authors": "Maglott D., Ostell J., Pruitt KD., Tatusova T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki031", "created_at": "2021-09-30T08:23:11.618Z", "updated_at": "2021-09-30T08:23:11.618Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2387, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2747", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-18T11:31:11.000Z", "updated-at": "2021-11-24T13:17:19.108Z", "metadata": {"doi": "10.25504/FAIRsharing.Q86Asf", "name": "Regulatory Element Database for Drosophila", "status": "ready", "contacts": [{"contact-name": "Marc Halfon", "contact-email": "redflyteam@gmail.com", "contact-orcid": "0000-0002-4149-2705"}], "homepage": "http://redfly.ccr.buffalo.edu/", "citations": [{"doi": "10.1093/nar/gky957", "pubmed-id": 30329093, "publication-id": 2478}], "identifier": 2747, "description": "REDfly is a curated collection of known Drosophila transcriptional cis-regulatory modules (CRMs) and transcription factor binding sites (TFBSs). REDfly seeks to include all experimentally verified fly regulatory elements along with their DNA sequence, their associated genes, and the expression patterns they direct.", "abbreviation": "REDfly", "support-links": [{"url": "http://redfly.ccr.buffalo.edu/contact.php", "name": "Contact Form", "type": "Contact form"}, {"url": "http://redfly.ccr.buffalo.edu/help.php", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://redfly.ccr.buffalo.edu/news.php", "name": "News and Release Notes", "type": "Help documentation"}, {"url": "http://redfly.ccr.buffalo.edu/aboutus.php", "name": "About REDfly", "type": "Help documentation"}, {"url": "https://twitter.com/REDfly_database", "name": "@REDfly_database", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "http://redfly.ccr.buffalo.edu/search.php", "name": "Search", "type": "data access"}, {"url": "http://redfly.ccr.buffalo.edu/gitbook/versioning-and-updated-records.html", "name": "Access to previous versions avaialable on request", "type": "data versioning"}, {"name": "Manual curation", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001245", "bsg-d001245"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Bioinformatics", "Genetics", "Life Science", "Molecular Genetics", "Biology"], "domains": ["DNA sequence data", "Regulation of gene expression", "Biological regulation", "Transcription factor", "Gene regulatory element", "Sequence feature", "Binding site", "Sequence motif", "Regulatory region", "Literature curation"], "taxonomies": ["Drosophila"], "user-defined-tags": ["cis-regulatory modules"], "countries": ["United States"], "name": "FAIRsharing record for: Regulatory Element Database for Drosophila", "abbreviation": "REDfly", "url": "https://fairsharing.org/10.25504/FAIRsharing.Q86Asf", "doi": "10.25504/FAIRsharing.Q86Asf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: REDfly is a curated collection of known Drosophila transcriptional cis-regulatory modules (CRMs) and transcription factor binding sites (TFBSs). REDfly seeks to include all experimentally verified fly regulatory elements along with their DNA sequence, their associated genes, and the expression patterns they direct.", "publications": [{"id": 2478, "pubmed_id": 30329093, "title": "REDfly: the transcriptional regulatory element database for Drosophila.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky957", "authors": "Rivera J,Keranen SVE,Gallo SM,Halfon MS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky957", "created_at": "2021-09-30T08:27:03.820Z", "updated_at": "2021-09-30T11:29:37.428Z"}, {"id": 2479, "pubmed_id": 16303794, "title": "REDfly: a Regulatory Element Database for Drosophila.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti794", "authors": "Gallo SM,Li L,Hu Z,Halfon MS", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti794", "created_at": "2021-09-30T08:27:04.003Z", "updated_at": "2021-09-30T08:27:04.003Z"}, {"id": 2481, "pubmed_id": 18039705, "title": "REDfly 2.0: an integrated database of cis-regulatory modules and transcription factor binding sites in Drosophila.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm876", "authors": "Halfon MS,Gallo SM,Bergman CM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm876", "created_at": "2021-09-30T08:27:04.267Z", "updated_at": "2021-09-30T11:29:37.519Z"}, {"id": 2482, "pubmed_id": 20965965, "title": "REDfly v3.0: toward a comprehensive database of transcriptional regulatory elements in Drosophila.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq999", "authors": "Gallo SM,Gerrard DT,Miner D,Simich M,Des Soye B,Bergman CM,Halfon MS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq999", "created_at": "2021-09-30T08:27:04.383Z", "updated_at": "2021-09-30T11:29:37.611Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 964, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1555", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:49.578Z", "metadata": {"doi": "10.25504/FAIRsharing.d8bfx4", "name": "Bitter Compounds Database", "status": "ready", "contacts": [{"contact-email": "nivlab@agri.huji.ac.il"}], "homepage": "http://bitterdb.agri.huji.ac.il/bitterdb/dbbitter.php", "identifier": 1555, "description": "BitterDB is a free and searchable database of bitter compounds. Compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste re- ceptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness.", "abbreviation": "BitterDB", "support-links": [{"url": "nivlab@agri.huji.ac.il", "type": "Support email"}, {"url": "http://bitterdb.agri.huji.ac.il/dbbitter.php#Help", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/BitterDB", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "SQL database dump", "type": "data access"}, {"name": "file download(txt,images)", "type": "data access"}, {"name": "web interface", "type": "data access"}, {"name": "access to historical files available upon request", "type": "data versioning"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://bitterdb.agri.huji.ac.il/dbbitter.php#Upload", "name": "manual curation", "type": "data curation"}, {"name": "continuous release (live database)", "type": "data release"}]}, "legacy-ids": ["biodbcore-000009", "bsg-d000009"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Receptor"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: Bitter Compounds Database", "abbreviation": "BitterDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.d8bfx4", "doi": "10.25504/FAIRsharing.d8bfx4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BitterDB is a free and searchable database of bitter compounds. Compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste re- ceptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness.", "publications": [{"id": 892, "pubmed_id": 21940398, "title": "BitterDB: a database of bitter compounds.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr755", "authors": "Wiener A,Shudler M,Levit A,Niv MY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr755", "created_at": "2021-09-30T08:23:58.535Z", "updated_at": "2021-09-30T11:28:55.011Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 255, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1938", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:31.212Z", "metadata": {"doi": "10.25504/FAIRsharing.xtq1xf", "name": "TIGRFAMs", "status": "ready", "contacts": [{"contact-name": "Daniel H. Haft", "contact-email": "haftdh@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/genome/annotation_prok/tigrfams/", "citations": [{"doi": "33270901", "pubmed-id": 33270901, "publication-id": 2255}], "identifier": 1938, "description": "TIGRFAMs is a collection of manually curated protein families focusing primarily on prokaryotic sequences.It consists of hidden Markov models (HMMs), multiple sequence alignments, Gene Ontology (GO) terminology, Enzyme Commission (EC) numbers, gene symbols, protein family names, descriptive text, cross-references to related models in TIGRFAMs and other databases, and pointers to literature. Originally developed at The Institute for Genomic Research (TIGR) and later at its successor, the J. Craig Venter Institute (JCVI), it is now maintained by the NCBI.", "abbreviation": "TIGRFAMs", "support-links": [{"url": "https://support.nlm.nih.gov/support/create-case/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.ncbi.nlm.nih.gov/Structure/protfam/search.html", "name": "Search Help", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://ftp.ncbi.nlm.nih.gov/hmm/current/", "name": "Download", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/protfam/?term=TIGRFAM%5BFilter%5D", "name": "Browse and Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000403", "bsg-d000403"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Hidden Markov model", "Multiple sequence alignment", "Protein"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TIGRFAMs", "abbreviation": "TIGRFAMs", "url": "https://fairsharing.org/10.25504/FAIRsharing.xtq1xf", "doi": "10.25504/FAIRsharing.xtq1xf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TIGRFAMs is a collection of manually curated protein families focusing primarily on prokaryotic sequences.It consists of hidden Markov models (HMMs), multiple sequence alignments, Gene Ontology (GO) terminology, Enzyme Commission (EC) numbers, gene symbols, protein family names, descriptive text, cross-references to related models in TIGRFAMs and other databases, and pointers to literature. Originally developed at The Institute for Genomic Research (TIGR) and later at its successor, the J. Craig Venter Institute (JCVI), it is now maintained by the NCBI.", "publications": [{"id": 398, "pubmed_id": 23197656, "title": "TIGRFAMs and Genome Properties in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1234", "authors": "Haft DH,Selengut JD,Richter RA,Harkins D,Basu MK,Beck E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1234", "created_at": "2021-09-30T08:23:03.256Z", "updated_at": "2021-09-30T11:28:46.317Z"}, {"id": 409, "pubmed_id": 17151080, "title": "TIGRFAMs and Genome Properties: tools for the assignment of molecular function and biological process in prokaryotic genomes.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1043", "authors": "Selengut JD., Haft DH., Davidsen T., Ganapathy A., Gwinn-Giglio M., Nelson WC., Richter AR., White O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1043", "created_at": "2021-09-30T08:23:04.426Z", "updated_at": "2021-09-30T08:23:04.426Z"}, {"id": 2255, "pubmed_id": 33270901, "title": "RefSeq: expanding the Prokaryotic Genome Annotation Pipeline reach with protein family model curation.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1105", "authors": "Li W,O'Neill KR,Haft DH,DiCuccio M,Chetvernin V,Badretdin A,Coulouris G,Chitsaz F,Derbyshire MK,Durkin AS,Gonzales NR,Gwadz M,Lanczycki CJ,Song JS,Thanki N,Wang J,Yamashita RA,Yang M,Zheng C,Marchler-Bauer A,Thibaud-Nissen F", "journal": "Nucleic Acids Research", "doi": "33270901", "created_at": "2021-09-30T08:26:34.213Z", "updated_at": "2021-09-30T11:29:31.778Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 365, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2634", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-03T09:51:12.000Z", "updated-at": "2022-01-27T15:45:55.854Z", "metadata": {"name": "Pancreatic Expression database", "status": "deprecated", "contacts": [{"contact-name": "Claude Chelala", "contact-email": "c.chelala@qmul.ac.uk", "contact-orcid": "0000-0002-2488-0669"}], "homepage": "http://www.pancreasexpression.org/", "citations": [], "identifier": 2634, "description": "The Pancreatic Expression Database (PED) is a repository for pancreatic-derived -omics data. With a generic web-based system, the database provides the research community with an open access tool to mine currently available pancreatic cancer experimental data sets generated by using large-scale transcriptomic, genomic, proteomic, miRNA and methylomic platforms. The website also provides users with the opportunity to include their own published dataset in the database.", "abbreviation": "PED", "support-links": [{"url": "help@pancreasexpression.org.uk", "type": "Support email"}, {"url": "http://www.pancreasexpression.org/includes/help.html", "type": "Help documentation"}, {"url": "http://www.pancreasexpression.org/includes/query_examples.html", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://www.analytics.pancreasexpression.org/", "name": "browse", "type": "data access"}, {"url": "http://www.pancreasexpression.org/includes/PancreaticCancerLandscape.html", "name": "search", "type": "data access"}, {"url": "http://www.pancreasexpression.org/includes/help.html", "name": "submit", "type": "data curation"}], "deprecation-date": "2022-01-27", "deprecation-reason": "This resource no longer exists at the stated homepage, and a new homepage cannot be found. Please get in touch if you have information on this resource."}, "legacy-ids": ["biodbcore-001125", "bsg-d001125"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Proteomics", "Life Science", "Transcriptomics", "Biomedical Science"], "domains": ["Cancer", "Methylation", "Micro RNA", "Literature curation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Pancreatic Expression database", "abbreviation": "PED", "url": "https://fairsharing.org/fairsharing_records/2634", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pancreatic Expression Database (PED) is a repository for pancreatic-derived -omics data. With a generic web-based system, the database provides the research community with an open access tool to mine currently available pancreatic cancer experimental data sets generated by using large-scale transcriptomic, genomic, proteomic, miRNA and methylomic platforms. The website also provides users with the opportunity to include their own published dataset in the database.", "publications": [{"id": 516, "pubmed_id": 20959292, "title": "The Pancreatic Expression database: 2011 update.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq937", "authors": "Cutts RJ,Gadaleta E,Hahn SA,Crnogorac-Jurcevic T,Lemoine NR,Chelala C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq937", "created_at": "2021-09-30T08:23:16.316Z", "updated_at": "2021-09-30T11:28:47.067Z"}, {"id": 624, "pubmed_id": 18045474, "title": "Pancreatic Expression database: a generic model for the organization, integration and mining of complex cancer datasets.", "year": 2007, "url": "http://doi.org/10.1186/1471-2164-8-439", "authors": "Chelala C,Hahn SA,Whiteman HJ,Barry S,Hariharan D,Radon TP,Lemoine NR,Crnogorac-Jurcevic T", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-8-439", "created_at": "2021-09-30T08:23:28.627Z", "updated_at": "2021-09-30T08:23:28.627Z"}, {"id": 2701, "pubmed_id": 24163255, "title": "The pancreatic expression database: recent extensions and updates.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt959", "authors": "Dayem Ullah AZ,Cutts RJ,Ghetia M,Gadaleta E,Hahn SA,Crnogorac-Jurcevic T,Lemoine NR,Chelala C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt959", "created_at": "2021-09-30T08:27:31.762Z", "updated_at": "2021-09-30T11:29:41.186Z"}, {"id": 2702, "pubmed_id": 29059374, "title": "The Pancreatic Expression Database: 2018 update.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx955", "authors": "Marzec J,Dayem Ullah AZ,Pirro S,Gadaleta E,Crnogorac-Jurcevic T,Lemoine NR,Kocher HM,Chelala C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx955", "created_at": "2021-09-30T08:27:31.876Z", "updated_at": "2021-09-30T11:29:41.461Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2036", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.680Z", "metadata": {"doi": "10.25504/FAIRsharing.bdv7z3", "name": "PRofils pour l'Identification Automatique du Metabolisme", "status": "ready", "contacts": [{"contact-name": "Daniel Kahn", "contact-email": "dkahn@toulouse.inra.fr"}], "homepage": "http://priam.prabi.fr/", "identifier": 2036, "description": "In English, PRIAM stands for enzyme-specific profiles for metabolic pathway prediction. PRIAM is a method for automated enzyme detection in a fully sequenced genome, based on all sequences available in the ENZYME database.", "abbreviation": "PRIAM", "support-links": [{"url": "priam@listes.univ-lyon1.fr", "type": "Support email"}], "year-creation": 2001, "data-processes": [{"url": "http://priam.prabi.fr/REL_MAR15/index_mar15.html", "name": "download", "type": "data access"}, {"url": "http://priam.prabi.fr/REL_MAR15/index_mar15.html", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000503", "bsg-d000503"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme", "Pathway model"], "taxonomies": ["All"], "user-defined-tags": ["Genome Context", "Metabolic pathway prediction profile"], "countries": ["France"], "name": "FAIRsharing record for: PRofils pour l'Identification Automatique du Metabolisme", "abbreviation": "PRIAM", "url": "https://fairsharing.org/10.25504/FAIRsharing.bdv7z3", "doi": "10.25504/FAIRsharing.bdv7z3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: In English, PRIAM stands for enzyme-specific profiles for metabolic pathway prediction. PRIAM is a method for automated enzyme detection in a fully sequenced genome, based on all sequences available in the ENZYME database.", "publications": [{"id": 486, "pubmed_id": 14602924, "title": "Enzyme-specific profiles for genome annotation: PRIAM.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg847", "authors": "Claudel-Renard C., Chevalet C., Faraut T., Kahn D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg847", "created_at": "2021-09-30T08:23:12.859Z", "updated_at": "2021-09-30T08:23:12.859Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1921", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.822Z", "metadata": {"doi": "10.25504/FAIRsharing.pmz447", "name": "Mycoplasma pulmonis genome database", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "moszer@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/MypuList/", "identifier": 1921, "description": "Its purpose is to collate and integrate various aspects of the genomic information from M. pulmonis, a mollicute causal agent of murine respiratory mycoplasmosis. MypuList provides a complete dataset of DNA and protein sequences derived from the strain M. pulmonis UAB CTIP, linked to the relevant annotations and functional assignments.", "abbreviation": "MypuList", "support-links": [{"url": "http://genolist.pasteur.fr/MypuList/help/general.html", "type": "Help documentation"}], "year-creation": 2001, "associated-tools": [{"url": "http://genolist.pasteur.fr/MypuList/help/blast-search.html", "name": "BLAST"}], "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000386", "bsg-d000386"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Structure", "Protein", "Genome"], "taxonomies": ["Mycoplasma pulmonis"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Mycoplasma pulmonis genome database", "abbreviation": "MypuList", "url": "https://fairsharing.org/10.25504/FAIRsharing.pmz447", "doi": "10.25504/FAIRsharing.pmz447", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Its purpose is to collate and integrate various aspects of the genomic information from M. pulmonis, a mollicute causal agent of murine respiratory mycoplasmosis. MypuList provides a complete dataset of DNA and protein sequences derived from the strain M. pulmonis UAB CTIP, linked to the relevant annotations and functional assignments.", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2531", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-21T11:48:13.000Z", "updated-at": "2021-12-13T15:22:11.397Z", "metadata": {"doi": "10.25504/FAIRsharing.agwgmc", "name": "CloudFlame", "status": "uncertain", "contacts": [{"contact-name": "General Contact", "contact-email": "cloudflame@kaust.edu.sa"}], "homepage": "https://cloudflame.kaust.edu.sa", "identifier": 2531, "description": "CloudFlame is a cloud-based cyberinfrastructure for managing combustion research and enabling collaboration. The infrastructure includes both software and hardware components, and is freely offered to anyone with a valid professional or educational affiliation. This website provides a front-end for data search tools, web-based numerical simulations, and discussion forums. We have marked this resource as having an Uncertain status because we have been unable to confirm certain metadata with the resource contact. If you have any information about the current status of this project, please get in touch.", "abbreviation": "CloudFlame", "support-links": [{"url": "https://cloudflame.kaust.edu.sa/contact", "name": "CloudFlame Contact Form", "type": "Contact form"}, {"url": "https://cloudflame.kaust.edu.sa/Help", "name": "Help Videos", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://cloudflame.kaust.edu.sa/doidata/upload", "name": "Data Submission", "type": "data access"}], "associated-tools": [{"url": "https://cloudflame.kaust.edu.sa/Simulations", "name": "CloudFlame CANTERA"}, {"url": "https://cloudflame.kaust.edu.sa/OpenSmoke", "name": "CloudFlame OPENSMOKE++"}, {"url": "https://cloudflame.kaust.edu.sa/fuel", "name": "Fuel Tools"}, {"url": "https://cloudflame.kaust.edu.sa/thermo_tools", "name": "CloudFlame Thermo"}, {"url": "https://cloudflame.kaust.edu.sa/node/353", "name": "CFD Simulations"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013647", "name": "re3data:r3d100013647", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001014", "bsg-d001014"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry"], "domains": ["Combustion"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Saudi Arabia"], "name": "FAIRsharing record for: CloudFlame", "abbreviation": "CloudFlame", "url": "https://fairsharing.org/10.25504/FAIRsharing.agwgmc", "doi": "10.25504/FAIRsharing.agwgmc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CloudFlame is a cloud-based cyberinfrastructure for managing combustion research and enabling collaboration. The infrastructure includes both software and hardware components, and is freely offered to anyone with a valid professional or educational affiliation. This website provides a front-end for data search tools, web-based numerical simulations, and discussion forums. We have marked this resource as having an Uncertain status because we have been unable to confirm certain metadata with the resource contact. If you have any information about the current status of this project, please get in touch.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2124", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.045Z", "metadata": {"doi": "10.25504/FAIRsharing.6375zh", "name": "Olfactory Receptor Database", "status": "ready", "contacts": [{"contact-name": "Chiquito Crasto", "contact-email": "chiquito.crasto@yale.edu"}], "homepage": "http://senselab.med.yale.edu/OrDB/", "identifier": 2124, "description": "ORDB began as a database of vertebrate OR genes and proteins and continues to support sequencing and analysis of these receptors by providing a comprehensive archive with search tools for this expanding family.", "abbreviation": "ORDB", "support-links": [{"url": "https://senselab.med.yale.edu/OrDB/info/ordb_faqs", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 1995, "data-processes": [{"url": "https://senselab.med.yale.edu/OrDB/Search", "name": "search", "type": "data access"}, {"url": "https://senselab.med.yale.edu/OrDB/Summary", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000594", "bsg-d000594"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Receptor", "Protein", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Olfactory Receptor Database", "abbreviation": "ORDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.6375zh", "doi": "10.25504/FAIRsharing.6375zh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ORDB began as a database of vertebrate OR genes and proteins and continues to support sequencing and analysis of these receptors by providing a comprehensive archive with search tools for this expanding family.", "publications": [{"id": 585, "pubmed_id": 11752336, "title": "Olfactory Receptor Database: a metadata-driven automated population from sources of gene and protein sequences.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.354", "authors": "Crasto C., Marenco L., Miller P., Shepherd G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.354", "created_at": "2021-09-30T08:23:24.101Z", "updated_at": "2021-09-30T08:23:24.101Z"}, {"id": 845, "pubmed_id": 27694208, "title": "ORDB, HORDE, ODORactor and other on-line knowledge resources of olfactory receptor-odorant interactions.", "year": 2016, "url": "http://doi.org/10.1093/database/baw132", "authors": "Marenco L,Wang R,McDougal R,Olender T,Twik M,Bruford E,Liu X,Zhang J,Lancet D,Shepherd G,Crasto C", "journal": "Database (Oxford)", "doi": "10.1093/database/baw132", "created_at": "2021-09-30T08:23:53.246Z", "updated_at": "2021-09-30T08:23:53.246Z"}, {"id": 2987, "pubmed_id": 10592268, "title": "Olfactory receptor database: a sensory chemoreceptor resource.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.341", "authors": "Skoufos E., Marenco L., Nadkarni PM., Miller PL., Shepherd GM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.341", "created_at": "2021-09-30T08:28:08.217Z", "updated_at": "2021-09-30T08:28:08.217Z"}], "licence-links": [{"licence-name": "ORDB Attribution required", "licence-id": 640, "link-id": 2108, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2268", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-17T11:24:11.000Z", "updated-at": "2021-12-15T09:09:45.230Z", "metadata": {"doi": "10.25504/FAIRsharing.va62ke", "name": "BiGG Models", "status": "ready", "contacts": [{"contact-name": "Zachary A. King", "contact-email": "zaking@ucsd.edu", "contact-orcid": "0000-0003-1238-1499"}], "homepage": "http://bigg.ucsd.edu", "citations": [{"doi": "10.1093/nar/gkz1054", "pubmed-id": null, "publication-id": 3156}], "identifier": 2268, "description": "BiGG Models is a knowledgebase of genome-scale metabolic network reconstructions. BiGG Models integrates more than 70 published genome-scale metabolic networks into a single database with a set of standardized identifiers called BiGG IDs.", "abbreviation": "BiGG Models", "access-points": [{"url": "http://bigg.ucsd.edu/data_access", "name": "http://bigg.ucsd.edu/api/v2/", "type": "REST"}], "support-links": [{"url": "https://github.com/sbrg/bigg_models", "name": "GitHub Project", "type": "Github"}, {"url": "https://twitter.com/ucsd_sbrg", "name": "@ucsd_sbrg", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "http://bigg.ucsd.edu/data_access", "name": "Download", "type": "data release"}, {"url": "http://bigg.ucsd.edu/advanced_search", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "http://escher.github.io/", "name": "Escher 1.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011567", "name": "re3data:r3d100011567", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005809", "name": "SciCrunch:RRID:SCR_005809", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000742", "bsg-d000742"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Computational biological predictions", "Network model"], "taxonomies": ["All"], "user-defined-tags": ["Genome Scale Metabolic Model", "Genome-scale network"], "countries": ["United States"], "name": "FAIRsharing record for: BiGG Models", "abbreviation": "BiGG Models", "url": "https://fairsharing.org/10.25504/FAIRsharing.va62ke", "doi": "10.25504/FAIRsharing.va62ke", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BiGG Models is a knowledgebase of genome-scale metabolic network reconstructions. BiGG Models integrates more than 70 published genome-scale metabolic networks into a single database with a set of standardized identifiers called BiGG IDs.", "publications": [{"id": 568, "pubmed_id": 26476456, "title": "BiGG Models: A platform for integrating, standardizing and sharing genome-scale models.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1049", "authors": "King ZA,Lu J,Drager A,Miller P,Federowicz S,Lerman JA,Ebrahim A,Palsson BO,Lewis NE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1049", "created_at": "2021-09-30T08:23:22.107Z", "updated_at": "2021-09-30T11:28:47.342Z"}, {"id": 966, "pubmed_id": 20426874, "title": "BiGG: a Biochemical Genetic and Genomic knowledgebase of large scale metabolic reconstructions", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-213", "authors": "Schellenberger J,Park JO,Conrad TM,Palsson BO", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-213", "created_at": "2021-09-30T08:24:06.894Z", "updated_at": "2021-09-30T08:24:06.894Z"}, {"id": 3156, "pubmed_id": null, "title": "BiGG Models 2020: multi-strain genome-scale models and expansion across the phylogenetic tree", "year": 2019, "url": "http://dx.doi.org/10.1093/nar/gkz1054", "authors": "Norsigian, Charles J; Pusarla, Neha; McConn, John Luke; Yurkovich, James T; Dr\u00e4ger, Andreas; Palsson, Bernhard O; King, Zachary; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1054", "created_at": "2021-12-13T15:35:49.651Z", "updated_at": "2021-12-13T15:35:49.651Z"}], "licence-links": [{"licence-name": "BIGG Licence", "licence-id": 74, "link-id": 795, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3071", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-27T14:21:39.000Z", "updated-at": "2021-12-06T10:47:33.206Z", "metadata": {"name": "Region of Waterloo - Open Data", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "gis@regionofwaterloo.ca"}], "homepage": "https://rowopendata-rmw.opendata.arcgis.com/", "identifier": 3071, "description": "Public access to open data from the Regional Municipality of Waterloo (the cities of Kitchener, Cambridge, and Waterloo, and the townships of Wellesley, Woolwich, Wilmot, and North Dumfries).", "access-points": [{"url": "https://gis.region.waterloo.on.ca/arcgis/rest/services/Public/OpenData/FeatureServer", "name": "A map service to provide data for the Region's Open Data site", "type": "REST"}], "support-links": [{"url": "https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx", "type": "Help documentation"}], "data-processes": [{"url": "https://rowopendata-rmw.opendata.arcgis.com/", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012971", "name": "re3data:r3d100012971", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001579", "bsg-d001579"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Economics", "Geography", "Humanities and Social Science", "Social and Behavioural Science"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["City life", "event", "Map", "politics", "transportation", "Waste"], "countries": ["Canada"], "name": "FAIRsharing record for: Region of Waterloo - Open Data", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3071", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Public access to open data from the Regional Municipality of Waterloo (the cities of Kitchener, Cambridge, and Waterloo, and the townships of Wellesley, Woolwich, Wilmot, and North Dumfries).", "publications": [], "licence-links": [{"licence-name": "Region of Waterloo's Website Privacy Statement", "licence-id": 708, "link-id": 268, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2596", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-21T10:18:11.000Z", "updated-at": "2021-11-24T13:17:15.579Z", "metadata": {"doi": "10.25504/FAIRsharing.yuJ8gl", "name": "Global Information System of the International Treaty on Plant Genetic Resources for Food and Agriculture", "status": "ready", "contacts": [{"contact-name": "The ITPGRFA Secretariat", "contact-email": "pgrfa-treaty@fao.org", "contact-orcid": "0000-0003-0334-8785"}], "homepage": "https://ssl.fao.org/glis", "identifier": 2596, "description": "GLIS is made available according to Art. 17 of the International Treaty to facilitate access and exchange, based on existing information systems, on scientific, technical and environmental matters related to plant genetic resources for food and agriculture. This service assigns Digital Object Identifiers (DOIs) to Plant Genetic Resources for Food and Agriculture (PGRFA) for reference in third party systems and scientific literature. Access to the system is free and open to anyone.", "abbreviation": "GLIS of the ITPGRFA", "access-points": [{"url": "https://ssl.fao.org/glisapi/v1/pgrfas", "name": "Provides access to PGRFA records using customisable query parameters, content negotiation and rate limitation", "type": "REST"}], "support-links": [{"url": "pgrfa-treaty@fao.org", "name": "ITPGRFA email contact", "type": "Support email"}, {"url": "http://www.fao.org/plant-treaty/areas-of-work/global-information-system/faq/en/", "name": "FAQs - The GLIS Portal and Digital Object Identifiers", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.fao.org/plant-treaty/areas-of-work/global-information-system/descriptors", "name": "Document on the Data Required for Assignation of DOIs in the GLIS", "type": "Help documentation"}, {"url": "http://www.fao.org/plant-treaty/areas-of-work/global-information-system/guidelines/en/", "name": "Guidelines for the optimal use of Digital Object Identifiers as permanent unique identifiers for germplasm samples", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://ssl.fao.org/glis/entity/search", "name": "Advanced Search", "type": "data access"}, {"name": "Registration of DOIs associated to PGRFA", "type": "data access"}]}, "legacy-ids": ["biodbcore-001079", "bsg-d001079"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Agriculture", "Life Science", "Plant Genetics"], "domains": ["Food", "Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Global Information System of the International Treaty on Plant Genetic Resources for Food and Agriculture", "abbreviation": "GLIS of the ITPGRFA", "url": "https://fairsharing.org/10.25504/FAIRsharing.yuJ8gl", "doi": "10.25504/FAIRsharing.yuJ8gl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GLIS is made available according to Art. 17 of the International Treaty to facilitate access and exchange, based on existing information systems, on scientific, technical and environmental matters related to plant genetic resources for food and agriculture. This service assigns Digital Object Identifiers (DOIs) to Plant Genetic Resources for Food and Agriculture (PGRFA) for reference in third party systems and scientific literature. Access to the system is free and open to anyone.", "publications": [], "licence-links": [{"licence-name": "GLIS Terms of Use", "licence-id": 349, "link-id": 67, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2329", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-06T15:10:14.000Z", "updated-at": "2021-11-24T13:13:12.362Z", "metadata": {"doi": "10.25504/FAIRsharing.6s749p", "name": "Wikidata", "status": "in_development", "contacts": [{"contact-name": "Denny Vrande\u010di\u0107", "contact-email": "denny.vrandecic@wikimedia.de"}], "homepage": "http://wikidata.org/", "identifier": 2329, "description": "Free knowledge database project hosted by Wikimedia and edited by volunteers.", "abbreviation": "Wikidata", "access-points": [{"url": "https://query.wikidata.org/", "name": "SPARQL end point", "type": "Other"}], "support-links": [{"url": "https://www.wikidata.org/wiki/Help:Contents", "type": "Help documentation"}, {"url": "https://twitter.com/wikidata", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://www.wikidata.org/wiki/Wikidata:Database_download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://scholia.toolforge.org/", "name": "Scholia"}, {"url": "http://cool-wd.inf.unibz.it/", "name": "COOL-WD"}]}, "legacy-ids": ["biodbcore-000805", "bsg-d000805"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Proteomics", "Chemistry", "Metabolomics", "Subject Agnostic"], "domains": ["Drug structure", "Data acquisition", "Disease", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Wikidata", "abbreviation": "Wikidata", "url": "https://fairsharing.org/10.25504/FAIRsharing.6s749p", "doi": "10.25504/FAIRsharing.6s749p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Free knowledge database project hosted by Wikimedia and edited by volunteers.", "publications": [{"id": 1933, "pubmed_id": null, "title": "Wikidata: a new platform for collaborative data collection", "year": 2012, "url": "http://doi.org/10.1145/2187980.2188242", "authors": "Denny Vrande\u010di\u0107", "journal": "WWW '12 Companion Proceedings of the 21st International Conference on World Wide Web", "doi": "10.1145/2187980.2188242", "created_at": "2021-09-30T08:25:57.600Z", "updated_at": "2021-09-30T08:25:57.600Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1822, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2874", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-13T20:12:10.000Z", "updated-at": "2021-11-24T13:17:18.129Z", "metadata": {"doi": "10.25504/FAIRsharing.aI1J5W", "name": "GlyGen: Computational and Informatics Resources for Glycoscience", "status": "ready", "contacts": [{"contact-name": "GlyGen Contact Us", "contact-email": "myglygen@gmail.com"}], "homepage": "https://www.glygen.org/", "citations": [{"doi": "cwz080", "pubmed-id": 31616925, "publication-id": 2658}], "identifier": 2874, "description": "GlyGen is a data integration and dissemination project for carbohydrate and glycoconjugate related data. GlyGen retrieves information from multiple international data sources and integrates and harmonizes this data. This web portal allows exploring this data and performing unique searches that cannot be executed in any of the integrated databases alone.", "abbreviation": "GlyGen", "access-points": [{"url": "https://api.glygen.org/", "name": "Programmatic access of GlyGen data objects for glycans, proteins and glycoproteins.", "type": "REST"}, {"url": "https://sparql.glygen.org", "name": "SPARQL endpoint is built to provide programmatic access to the GlyGen triple store", "type": "Other"}], "support-links": [{"url": "https://glygen.org/contact.html", "name": "GlyGen: Contact Us", "type": "Contact form"}, {"url": "https://twitter.com/gly_gen", "name": "GlyGen Twitter", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://data.glygen.org/", "name": "GlyGen: Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001375", "bsg-d001375"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Glycosylation", "Glycosylated residue"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["glycobiology", "glycoconjugate", "glycoinformatics", "glycoprotein", "glycoscience"], "countries": ["United States"], "name": "FAIRsharing record for: GlyGen: Computational and Informatics Resources for Glycoscience", "abbreviation": "GlyGen", "url": "https://fairsharing.org/10.25504/FAIRsharing.aI1J5W", "doi": "10.25504/FAIRsharing.aI1J5W", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlyGen is a data integration and dissemination project for carbohydrate and glycoconjugate related data. GlyGen retrieves information from multiple international data sources and integrates and harmonizes this data. This web portal allows exploring this data and performing unique searches that cannot be executed in any of the integrated databases alone.", "publications": [{"id": 2658, "pubmed_id": 31616925, "title": "GlyGen: Computational and Informatics Resources for Glycoscience.", "year": 2019, "url": "http://doi.org/10.1093/glycob/cwz080", "authors": "York WS,Mazumder R,Ranzinger R,Edwards N,Kahsay R,Aoki-Kinoshita KF,Campbell MP,Cummings RD,Feizi T,Martin M,Natale DA,Packer NH,Woods RJ,Agarwal G,Arpinar S,Bhat S,Blake J,Castro LJG,Fochtman B,Gildersleeve J,Goldman R,Holmes X,Jain V,Kulkarni S,Mahadik R,Mehta A,Mousavi R,Nakarakommula S,Navelkar R,Pattabiraman N,Pierce MJ,Ross K,Vasudev P,Vora J,Williamson T,Zhang W", "journal": "Glycobiology", "doi": "cwz080", "created_at": "2021-09-30T08:27:26.380Z", "updated_at": "2021-09-30T08:27:26.380Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 36, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 37, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3050", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-24T13:59:11.000Z", "updated-at": "2021-12-06T10:48:57.386Z", "metadata": {"doi": "10.25504/FAIRsharing.OXUGmN", "name": "Earthdata powered by EOSDIS", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "support@earthdata.nasa.gov"}], "homepage": "https://earthdata.nasa.gov/", "identifier": 3050, "description": "For more than 30 years, NASA's Earth Observing System Data and Information System (EOSDIS) has provided long-term measurements of our dynamic planet. The thousands of unique data products in the EOSDIS collection come from a variety of sources including the International Space Station, satellites, airborne campaigns, field campaigns, in-situ instruments, and model outputs.", "access-points": [{"url": "https://earthdata.nasa.gov/collaborate/open-data-services-and-software/api", "name": "Application Programming Interfaces (APIs)", "type": "Other"}], "support-links": [{"url": "https://earthdata.nasa.gov/learn/getting-started", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://earthdata.nasa.gov/learn/user-resources/webinars-and-tutorials", "name": "Webinars and Tutorials", "type": "Help documentation"}, {"url": "https://asf.alaska.edu/how-to/data-recipes/data-recipe-tutorials/", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://asf.alaska.edu/how-to/get-started/", "name": "Get started", "type": "Help documentation"}], "data-processes": [{"url": "https://search.earthdata.nasa.gov/search", "name": "Find Data", "type": "data access"}, {"url": "https://worldview.earthdata.nasa.gov/", "name": "Visualize Data", "type": "data access"}, {"url": "https://earthdata.nasa.gov/collaborate/new-missions", "name": "Submit Data", "type": "data curation"}], "associated-tools": [{"url": "https://asf.alaska.edu/how-to/data-tools/data-tools/", "name": "Data Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010530", "name": "re3data:r3d100010530", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001558", "bsg-d001558"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Earth Science", "Atmospheric Science", "Oceanography"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere", "earth observation", "Satellite Data"], "countries": ["United States"], "name": "FAIRsharing record for: Earthdata powered by EOSDIS", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.OXUGmN", "doi": "10.25504/FAIRsharing.OXUGmN", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: For more than 30 years, NASA's Earth Observing System Data and Information System (EOSDIS) has provided long-term measurements of our dynamic planet. The thousands of unique data products in the EOSDIS collection come from a variety of sources including the International Space Station, satellites, airborne campaigns, field campaigns, in-situ instruments, and model outputs.", "publications": [], "licence-links": [{"licence-name": "NASA Web Privacy Policy and Important Notices", "licence-id": 541, "link-id": 997, "relation": "undefined"}, {"licence-name": "EOSDIS Data and Information Policy", "licence-id": 284, "link-id": 998, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2237", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-20T07:45:08.000Z", "updated-at": "2021-11-24T13:19:30.074Z", "metadata": {"doi": "10.25504/FAIRsharing.q33qzy", "name": "HGTree", "status": "ready", "contacts": [{"contact-name": "Arshan Nasir", "contact-email": "arshan_nasir@comsats.edu.pk", "contact-orcid": "0000-0001-7200-0788"}], "homepage": "http://hgtree.snu.ac.kr", "identifier": 2237, "description": "The HGTree database provides putative genome-wide horizontal gene transfer (HGT) information for 2,472 completely sequenced prokaryotic genomes. HGT detection is based on an explicit evolutionary model of tree reconstruction and relies on evaluating the conflicts between phylogenetic tree of each orthologous gene set and corresponding 16S rRNA species tree. The database provides quick and easy access to HGT-related genes in hundreds of prokaryotic genomes and provides functionalities to detect HGT in user-customized datasets and gene and genome sequences. The database is freely available and can be easily scaled and updated to keep pace with the rapid rise in genomic information.", "abbreviation": "HGTree", "support-links": [{"url": "http://hgtree.snu.ac.kr/tutorial.php?access=t", "type": "Training documentation"}, {"url": "https://twitter.com/NasirArshan", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://hgtree.snu.ac.kr/search.php?access=s", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000711", "bsg-d000711"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Phylogenetics", "Life Science", "Microbiology"], "domains": [], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["Pakistan", "South Korea"], "name": "FAIRsharing record for: HGTree", "abbreviation": "HGTree", "url": "https://fairsharing.org/10.25504/FAIRsharing.q33qzy", "doi": "10.25504/FAIRsharing.q33qzy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The HGTree database provides putative genome-wide horizontal gene transfer (HGT) information for 2,472 completely sequenced prokaryotic genomes. HGT detection is based on an explicit evolutionary model of tree reconstruction and relies on evaluating the conflicts between phylogenetic tree of each orthologous gene set and corresponding 16S rRNA species tree. The database provides quick and easy access to HGT-related genes in hundreds of prokaryotic genomes and provides functionalities to detect HGT in user-customized datasets and gene and genome sequences. The database is freely available and can be easily scaled and updated to keep pace with the rapid rise in genomic information.", "publications": [{"id": 872, "pubmed_id": null, "title": "HGTree: database of horizontally transferred genes determined by tree reconciliation", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1245", "authors": "Hyeonsoo Jeong, Samsun Sung, Taehyung Kwon, Minseok Seo, Kelsey Caetano-Anoll\u00e9s, Sang Ho Choi5, Seoae Cho, Arshan Nasir, and Heebal Kim", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1245", "created_at": "2021-09-30T08:23:56.321Z", "updated_at": "2021-09-30T08:23:56.321Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 917, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2845", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-01T10:09:29.000Z", "updated-at": "2021-11-24T13:16:07.271Z", "metadata": {"doi": "10.25504/FAIRsharing.rgcsW6", "name": "Chlamydiae Database", "status": "ready", "contacts": [{"contact-name": "Trestan Pillonel", "contact-email": "trestan.pillonel@chuv.ch", "contact-orcid": "0000-0002-5725-7929"}], "homepage": "https://chlamdb.ch/", "citations": [{"doi": "gkz924", "pubmed-id": 31665454, "publication-id": 2605}], "identifier": 2845, "description": "ChlamDB is a comparative genomics database covering the entire Chlamydiae phylum as well as their closest relatives belonging to the Planctomycetes-Verrucomicrobiae-Chlamydiae (PVC) superphylum. Genomes can be compared, analyzed and retrieved using accessions numbers of the most widely used databases including COG, KEGG ortholog, KEGG pathway, KEGG module, Pfam and InterPro. Candidate effectors of the Type III secretion system (T3SS) were identified using four in silico methods. The identification of orthologs among all PVC genomes allows users to perform large-scale comparative analyses and to identify orthologs of any protein in all genomes integrated in the database. Phylogenetic relationships of PVC proteins and their closest homologs in RefSeq, comparison of transmembrane domains and Pfam domains, conservation of gene neighborhood and taxonomic profiles can be visualized using dynamically generated graphs, available for download. As a central resource for researchers working on chlamydia, chlamydia-related bacteria, verrucomicrobia and planctomyces, ChlamDB facilitates the access to comprehensive annotations and integrates multiple tools for comparative genomic analyses.", "abbreviation": "ChlamDB", "support-links": [{"url": "https://github.com/metagenlab/chlamdb/issues", "name": "Report an Issue", "type": "Github"}, {"url": "https://chlamdb.ch/docs/index.html", "name": "Documentation", "type": "Help documentation"}, {"url": "https://chlamdb.ch/about", "name": "About ChlamDB", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://chlamdb.ch/extract_region/", "name": "Extract Genomic Region", "type": "data access"}, {"url": "https://chlamdb.ch/extract_orthogroup/", "name": "Extract Orthogroups", "type": "data access"}, {"url": "https://chlamdb.ch/extract_cog/", "name": "Extract COGs", "type": "data access"}, {"url": "https://chlamdb.ch/extract_pfam/", "name": "Extract Pfam Domains", "type": "data access"}, {"url": "https://chlamdb.ch/extract_interpro/", "name": "Extract InterPro Entries", "type": "data access"}, {"url": "https://chlamdb.ch/extract_ko/", "name": "Extract KEGG Orthologs", "type": "data access"}, {"url": "https://chlamdb.ch/transporters/", "name": "TCDB Annotation Search", "type": "data access"}, {"url": "https://chlamdb.ch/priam_kegg/", "name": "View KEGG Maps", "type": "data access"}, {"url": "https://chlamdb.ch/kegg_module/", "name": "View KEGG Modules", "type": "data access"}], "associated-tools": [{"url": "https://chlamdb.ch/blast/", "name": "BLAST"}, {"url": "https://chlamdb.ch/plot_region/", "name": "Plot Genomic Region"}, {"url": "https://chlamdb.ch/circos/", "name": "Circos Plots"}]}, "legacy-ids": ["biodbcore-001346", "bsg-d001346"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Phylogenomics", "Comparative Genomics"], "domains": ["Protein domain", "Conserved region", "Homologous", "Orthologous", "Genome"], "taxonomies": ["Chlamydia", "Chlamydiae", "Planctomycetes", "PVC superphylum", "Verrucomicrobia"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Chlamydiae Database", "abbreviation": "ChlamDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.rgcsW6", "doi": "10.25504/FAIRsharing.rgcsW6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChlamDB is a comparative genomics database covering the entire Chlamydiae phylum as well as their closest relatives belonging to the Planctomycetes-Verrucomicrobiae-Chlamydiae (PVC) superphylum. Genomes can be compared, analyzed and retrieved using accessions numbers of the most widely used databases including COG, KEGG ortholog, KEGG pathway, KEGG module, Pfam and InterPro. Candidate effectors of the Type III secretion system (T3SS) were identified using four in silico methods. The identification of orthologs among all PVC genomes allows users to perform large-scale comparative analyses and to identify orthologs of any protein in all genomes integrated in the database. Phylogenetic relationships of PVC proteins and their closest homologs in RefSeq, comparison of transmembrane domains and Pfam domains, conservation of gene neighborhood and taxonomic profiles can be visualized using dynamically generated graphs, available for download. As a central resource for researchers working on chlamydia, chlamydia-related bacteria, verrucomicrobia and planctomyces, ChlamDB facilitates the access to comprehensive annotations and integrates multiple tools for comparative genomic analyses.", "publications": [{"id": 2605, "pubmed_id": 31665454, "title": "ChlamDB: a comparative genomics database of the phylum Chlamydiae and other members of the Planctomycetes-Verrucomicrobiae-Chlamydiae superphylum.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz924", "authors": "Pillonel T,Tagini F,Bertelli C,Greub G", "journal": "Nucleic Acids Research", "doi": "gkz924", "created_at": "2021-09-30T08:27:19.751Z", "updated_at": "2021-09-30T11:29:40.411Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1903", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.441Z", "metadata": {"doi": "10.25504/FAIRsharing.1nwy41", "name": "Transmembrane Helices in Genome Sequences", "status": "deprecated", "contacts": [{"contact-name": "Professor K Sekar", "contact-email": "sekar@physics.iisc.ernet.in"}], "homepage": "http://pranag.physics.iisc.ernet.in/thgs/", "identifier": 1903, "description": "A web based database of Transmembrane Helices in Genome Sequences.", "abbreviation": "THGS", "year-creation": 2002, "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000368", "bsg-d000368"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Deoxyribonucleic acid", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Transmembrane Helices in Genome Sequences", "abbreviation": "THGS", "url": "https://fairsharing.org/10.25504/FAIRsharing.1nwy41", "doi": "10.25504/FAIRsharing.1nwy41", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A web based database of Transmembrane Helices in Genome Sequences.", "publications": [{"id": 1430, "pubmed_id": 14681375, "title": "THGS: a web-based database of Transmembrane Helices in Genome Sequences.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh130", "authors": "Fernando SA,Selvarani P,Das S,Kumar ChK,Mondal S,Ramakumar S,Sekar K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh130", "created_at": "2021-09-30T08:24:59.917Z", "updated_at": "2021-09-30T11:29:08.334Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 395, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1559", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:32.551Z", "metadata": {"doi": "10.25504/FAIRsharing.nj4vca", "name": "canSAR", "status": "ready", "contacts": [{"contact-name": "Bissan Al-Lazikani", "contact-email": "bissan.al-lazikani@icr.ac.uk", "contact-orcid": "0000-0003-3367-2519"}], "homepage": "http://cansar.icr.ac.uk", "identifier": 1559, "description": "canSAR is an integrated cancer research and drug discovery resource that brings together large-scale data from different disciplines and allows query and exploration to help cancer research and drug discovery.", "abbreviation": "canSAR", "support-links": [{"url": "cansar@icr.ac.uk", "type": "Support email"}, {"url": "https://cansar.icr.ac.uk/cansar/frequently-asked-questions/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cansar.icr.ac.uk/cansar/documentation/", "type": "Help documentation"}, {"url": "https://twitter.com/cansar_icr", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"name": "weekly release of 3D structural data", "type": "data release"}, {"name": "monthly release of other data", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"url": "https://cansar.icr.ac.uk/", "name": "search", "type": "data access"}, {"name": "file download(CSV,XML)", "type": "data access"}], "associated-tools": [{"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_3", "name": "Polypharmacology Map Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_4", "name": "Bioactivity Profile Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_cpat", "name": "Cancer Protein Annotation Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_6", "name": "Expression Details Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_7", "name": "Pathway/Go and Annotation Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_8", "name": "Alignment and Superposition Tool"}, {"url": "https://cansar.icr.ac.uk/cansar/tools/#main_tab_holder:tab_tools_main:tab_tools_csat", "name": "Cancer Cell Line Annotation Tool"}]}, "legacy-ids": ["biodbcore-000013", "bsg-d000013"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Drug report", "Chemical structure", "Expression data", "Annotation", "Cancer", "Cellular assay", "RNAi screening", "Chemical screen", "Drug binding", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: canSAR", "abbreviation": "canSAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.nj4vca", "doi": "10.25504/FAIRsharing.nj4vca", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: canSAR is an integrated cancer research and drug discovery resource that brings together large-scale data from different disciplines and allows query and exploration to help cancer research and drug discovery.", "publications": [{"id": 783, "pubmed_id": 22013161, "title": "canSAR: an integrated cancer public translational research and drug discovery resource.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr881", "authors": "Halling-Brown MD,Bulusu KC,Patel M,Tym JE,Al-Lazikani B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr881", "created_at": "2021-09-30T08:23:46.318Z", "updated_at": "2021-09-30T11:28:51.300Z"}, {"id": 784, "pubmed_id": 24304894, "title": "canSAR: updated cancer research and drug discovery knowledgebase.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1182", "authors": "Bulusu KC,Tym JE,Coker EA,Schierz AC,Al-Lazikani B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1182", "created_at": "2021-09-30T08:23:46.426Z", "updated_at": "2021-09-30T11:28:51.408Z"}, {"id": 1454, "pubmed_id": 26673713, "title": "canSAR: an updated cancer research and drug discovery knowledgebase.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1030", "authors": "Tym JE,Mitsopoulos C,Coker EA,Razaz P,Schierz AC,Antolin AA,Al-Lazikani B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1030", "created_at": "2021-09-30T08:25:02.499Z", "updated_at": "2021-09-30T11:29:08.878Z"}], "licence-links": [{"licence-name": "CANSAR Terms of Use", "licence-id": 101, "link-id": 92, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2530", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-03T16:37:58.000Z", "updated-at": "2021-11-24T13:17:52.921Z", "metadata": {"doi": "10.25504/FAIRsharing.6ba5fw", "name": "Alliance of Genome Resources", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "help@alliancegenome.org"}], "homepage": "https://www.alliancegenome.org", "citations": [{"doi": "10.1093/nar/gkz813", "pubmed-id": 31552413, "publication-id": 1698}], "identifier": 2530, "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "access-points": [{"url": "https://www.alliancegenome.org/api/swagger-ui/", "name": "API Information (Swagger)", "type": "REST"}], "support-links": [{"url": "https://www.alliancegenome.org/news", "name": "News", "type": "Blog/News"}, {"url": "info@alliancegenome.org", "name": "Contact", "type": "Support email"}, {"url": "https://www.alliancegenome.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.alliancegenome.org/help", "name": "Help", "type": "Help documentation"}, {"url": "https://www.alliancegenome.org/tutorials", "name": "Tutorial Listing", "type": "Help documentation"}, {"url": "https://github.com/alliance-genome/", "name": "GitHub Project", "type": "Github"}, {"url": "https://www.alliancegenome.org/about-us", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/alliancegenome", "name": "@alliancegenome", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "https://www.alliancegenome.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.alliancegenome.org/downloads", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://www.alliancegenome.org/prototypes", "name": "Prototype Tools Listing"}]}, "legacy-ids": ["biodbcore-001013", "bsg-d001013"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Genome map", "Gene name", "Gene functional annotation", "Model organism", "Disease process modeling", "Functional association", "Phenotype", "Disease", "Gene", "Homologous", "Orthologous", "Genome"], "taxonomies": ["Caenorhabditis", "Danio rerio", "Drosophila", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Alliance of Genome Resources", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.6ba5fw", "doi": "10.25504/FAIRsharing.6ba5fw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "publications": [{"id": 1698, "pubmed_id": 31552413, "title": "Alliance of Genome Resources Portal: unified model organism research platform.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz813", "authors": "Alliance of Genome Resources Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz813", "created_at": "2021-09-30T08:25:30.300Z", "updated_at": "2021-09-30T11:29:18.893Z"}, {"id": 2007, "pubmed_id": 31796553, "title": "The Alliance of Genome Resources: Building a Modern Data Ecosystem for Model Organism Databases.", "year": 2019, "url": "http://doi.org/10.1534/genetics.119.302523", "authors": "Alliance of Genome Resources Consortium", "journal": "Genetics", "doi": "10.1534/genetics.119.302523", "created_at": "2021-09-30T08:26:06.040Z", "updated_at": "2021-09-30T08:26:06.040Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2451, "relation": "undefined"}, {"licence-name": "Alliance of Genome Resources Privacy, Warranty and Licensing", "licence-id": 25, "link-id": 2452, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2493", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-04T08:40:07.000Z", "updated-at": "2021-12-06T10:49:25.902Z", "metadata": {"doi": "10.25504/FAIRsharing.x3hgaw", "name": "World Data Center for Climate at DRKZ", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "data@dkrz.de"}], "homepage": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/", "identifier": 2493, "description": "The World Data Center Climate (WDCC) at the German Climate Computing Center (DKRZ: Deutsches Klimarechenzentrum GmbH) is part of an international effort to set up domain specific data portals as a service for the scientific community. The WDCC provides a long-term archiving service for large climate or Earth System research data sets. This service includes archiving and retrieval capability of data for time periods of 10 years or longer. The WDCC focuses on climate and climate-related data products, specifically those resulting from climate simulations. Metadata and research data in WDCC is curated in collaboration with the data providers. Data in WDCC is citable and can be directly integrated into scientific publications.", "abbreviation": "WDCC", "support-links": [{"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=faq", "name": "WDCC FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/statistics_index", "name": "Statistics", "type": "Help documentation"}, {"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/docu", "name": "All Documentation", "type": "Help documentation"}, {"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=fairness", "name": "WDCC & the FAIR Principles", "type": "Help documentation"}], "data-processes": [{"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/q?query=*:*", "name": "Search", "type": "data access"}, {"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/topics", "name": "Browse Topic Hierarchy", "type": "data access"}], "associated-tools": [{"url": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=jblob", "name": "Jblob"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010299", "name": "re3data:r3d100010299", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000975", "bsg-d000975"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: World Data Center for Climate at DRKZ", "abbreviation": "WDCC", "url": "https://fairsharing.org/10.25504/FAIRsharing.x3hgaw", "doi": "10.25504/FAIRsharing.x3hgaw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The World Data Center Climate (WDCC) at the German Climate Computing Center (DKRZ: Deutsches Klimarechenzentrum GmbH) is part of an international effort to set up domain specific data portals as a service for the scientific community. The WDCC provides a long-term archiving service for large climate or Earth System research data sets. This service includes archiving and retrieval capability of data for time periods of 10 years or longer. The WDCC focuses on climate and climate-related data products, specifically those resulting from climate simulations. Metadata and research data in WDCC is curated in collaboration with the data providers. Data in WDCC is citable and can be directly integrated into scientific publications.", "publications": [], "licence-links": [{"licence-name": "WDCC Terms of Use", "licence-id": 852, "link-id": 1068, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Germany (CC BY-NC-SA 2.0 DE)", "licence-id": 180, "link-id": 1073, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1631", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.727Z", "metadata": {"doi": "10.25504/FAIRsharing.tc6df8", "name": "Pocketome: an encyclopedia of small-molecule binding sites in 4D", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "pocketome@ucsd.edu"}], "homepage": "http://pocketome.org", "citations": [], "identifier": 1631, "description": "The Pocketome is an encyclopedia of conformational ensembles of druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry describes a site on a protein surface that is involved in transient interactions with small molecules and peptides.", "abbreviation": "Pocketome", "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "automatic collection", "type": "data curation"}, {"name": "manual curation", "type": "data curation"}, {"name": "N/A", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(CSV,images)", "type": "data access"}, {"url": "http://pocketome.org/index.cgi?act=basilico", "name": "Basilico", "type": "data access"}], "associated-tools": [{"url": "http://www.molsoft.com/activeicm.html", "name": "ActiveICM technology"}], "deprecation-date": "2021-11-03", "deprecation-reason": "This resource was deprecated because the homepage is no longer functional and a new site for the resource could not be found. Please get in touch with us if you have any information about this resource."}, "legacy-ids": ["biodbcore-000087", "bsg-d000087"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Small molecule", "Structure", "Binding site", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pocketome: an encyclopedia of small-molecule binding sites in 4D", "abbreviation": "Pocketome", "url": "https://fairsharing.org/10.25504/FAIRsharing.tc6df8", "doi": "10.25504/FAIRsharing.tc6df8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pocketome is an encyclopedia of conformational ensembles of druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry describes a site on a protein surface that is involved in transient interactions with small molecules and peptides.", "publications": [{"id": 1449, "pubmed_id": 22080553, "title": "Pocketome: an encyclopedia of small-molecule binding sites in 4D.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr825", "authors": "Kufareva I,Ilatovskiy AV,Abagyan R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr825", "created_at": "2021-09-30T08:25:01.966Z", "updated_at": "2021-09-30T11:29:08.517Z"}, {"id": 2238, "pubmed_id": 19727619, "title": "The flexible pocketome engine for structural chemogenomics.", "year": 2009, "url": "http://doi.org/10.1007/978-1-60761-274-2_11", "authors": "Abagyan R., Kufareva I.,", "journal": "Methods Mol. Biol.", "doi": "10.1007/978-1-60761-274-2_11", "created_at": "2021-09-30T08:26:32.242Z", "updated_at": "2021-09-30T08:26:32.242Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2166", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:33.074Z", "metadata": {"doi": "10.25504/FAIRsharing.rhpjhv", "name": "FlyMine", "status": "ready", "contacts": [{"contact-name": "FlyMine help desk", "contact-email": "info@flymine.org"}], "homepage": "https://www.flymine.org", "citations": [{"doi": "10.1186/gb-2007-8-7-r129", "pubmed-id": 17615057, "publication-id": 1945}], "identifier": 2166, "description": "FlyMine is an integrated database of genomic, expression and protein data for Drosophila, Anopheles and C. elegans. Its main focus is genomic and proteomics data for Drosophila and other insects. It provides access to integrated data at a number of different levels, from browsing to construction of complex queries, which can be executed on either single items or lists.", "abbreviation": "FlyMine", "access-points": [{"url": "https://www.flymine.org/flymine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://intermineorg.wordpress.com/", "name": "InterMine blog", "type": "Blog/News"}, {"url": "https://intermineorg.wordpress.com/flymine/help/", "name": "FlyMine Help", "type": "Help documentation"}, {"url": "https://intermineorg.wordpress.com/flymine/about/", "name": "About FlyMine", "type": "Help documentation"}, {"url": "http://www.flymine.org/flymine/dataCategories.do", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/flymine-intro-videos", "name": "FlyMine intro videos", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2002, "data-processes": [{"url": "https://www.flymine.org/flymine/genomicRegionSearch.do", "name": "Search within genomic regions", "type": "data access"}, {"url": "https://www.flymine.org/flymine/customQuery.do", "name": "Advanced Search (query builder)", "type": "data access"}, {"url": "https://www.flymine.org/flymine/bag.do", "name": "Search against a list", "type": "data access"}, {"url": "https://www.flymine.org/flymine/templates.do", "name": "Search via pre-defined queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-000638", "bsg-d000638"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Biology"], "domains": ["Expression data", "Protein interaction", "Gene expression", "Protein", "Gene", "Genome"], "taxonomies": ["Anopheles gambiae", "Caenorhabditis elegans", "Drosophila melanogaster"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: FlyMine", "abbreviation": "FlyMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.rhpjhv", "doi": "10.25504/FAIRsharing.rhpjhv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FlyMine is an integrated database of genomic, expression and protein data for Drosophila, Anopheles and C. elegans. Its main focus is genomic and proteomics data for Drosophila and other insects. It provides access to integrated data at a number of different levels, from browsing to construction of complex queries, which can be executed on either single items or lists.", "publications": [{"id": 1945, "pubmed_id": 17615057, "title": "FlyMine: an integrated database for Drosophila and Anopheles genomics.", "year": 2007, "url": "http://doi.org/10.1186/gb-2007-8-7-r129", "authors": "Lyne R,Smith R,Rutherford K,Wakeling M,Varley A,Guillier F,Janssens H,Ji W,Mclaren P,North P,Rana D,Riley T,Sullivan J,Watkins X,Woodbridge M,Lilley K,Russell S,Ashburner M,Mizuguchi K,Micklem G", "journal": "Genome Biol", "doi": "10.1186/gb-2007-8-7-r129", "created_at": "2021-09-30T08:25:58.864Z", "updated_at": "2021-09-30T08:25:58.864Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 528, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2232", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-06T07:33:05.000Z", "updated-at": "2021-11-24T13:19:29.871Z", "metadata": {"doi": "10.25504/FAIRsharing.t6wjn7", "name": "probeBase", "status": "ready", "contacts": [{"contact-name": "Daniel J. Rigden", "contact-email": "drigden@liv.ac.uk"}], "homepage": "http://www.probebase.net", "identifier": 2232, "description": "probeBase is a manually maintained and curated database of rRNA-targeted oligonucleotide probes and primers. Contextual information and multiple options for evaluating in silico hybridization performance against the most recent rRNA sequence databases are provided for each oligonucleotide entry, which makes probeBase an important and frequently used resource for microbiology research and diagnostics. The major features of probeBase include a classification of probes and primers according to the NCBI taxonomy database, a powerful and customizable search function, which serves to query for target organisms, probe names, primers, target sites, and references. The probeBase match tool can be used to match near-full length rRNA sequences against probeBase and find all published probes targeting the query sequences. The new proxy match tool extends this analysis to partial rRNA sequences, which exploits full-length sequences in the rRNA sequence database SILVA to find published probes potentially targeting partial query sequences. A tool for submitting new or missing probe sequences or references helps to keep probeBase up-to-date.", "abbreviation": "probeBase", "support-links": [{"url": "probebase@microbial-ecology.net", "type": "Support email"}], "year-creation": 2003, "data-processes": [{"url": "http://probebase.csb.univie.ac.at/pb_search", "name": "search", "type": "data access"}, {"url": "http://probebase.csb.univie.ac.at/node/7", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://probebase.csb.univie.ac.at/pb_match", "name": "Sequence match"}, {"url": "http://probebase.csb.univie.ac.at/pb_proxy", "name": "Proxy match"}]}, "legacy-ids": ["biodbcore-000706", "bsg-d000706"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Microbiology"], "domains": ["Polymerase chain reaction primers", "Oligonucleotide probe annotation", "Ribosomal RNA", "Probe", "Curated information"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Austria"], "name": "FAIRsharing record for: probeBase", "abbreviation": "probeBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.t6wjn7", "doi": "10.25504/FAIRsharing.t6wjn7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: probeBase is a manually maintained and curated database of rRNA-targeted oligonucleotide probes and primers. Contextual information and multiple options for evaluating in silico hybridization performance against the most recent rRNA sequence databases are provided for each oligonucleotide entry, which makes probeBase an important and frequently used resource for microbiology research and diagnostics. The major features of probeBase include a classification of probes and primers according to the NCBI taxonomy database, a powerful and customizable search function, which serves to query for target organisms, probe names, primers, target sites, and references. The probeBase match tool can be used to match near-full length rRNA sequences against probeBase and find all published probes targeting the query sequences. The new proxy match tool extends this analysis to partial rRNA sequences, which exploits full-length sequences in the rRNA sequence database SILVA to find published probes potentially targeting partial query sequences. A tool for submitting new or missing probe sequences or references helps to keep probeBase up-to-date.", "publications": [{"id": 832, "pubmed_id": 12520066, "title": "probeBase: an online resource for rRNA-targeted oligonucleotide probes.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg016", "authors": "Loy A,Horn M,Wagner M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg016", "created_at": "2021-09-30T08:23:51.793Z", "updated_at": "2021-09-30T11:28:53.517Z"}, {"id": 833, "pubmed_id": 17099228, "title": "probeBase--an online resource for rRNA-targeted oligonucleotide probes: new features 2007.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl856", "authors": "Loy A,Maixner F,Wagner M,Horn M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl856", "created_at": "2021-09-30T08:23:51.943Z", "updated_at": "2021-09-30T11:28:53.600Z"}, {"id": 1244, "pubmed_id": 26586809, "title": "probeBase--an online resource for rRNA-targeted oligonucleotide probes and primers: new features 2016.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1232", "authors": "Greuter D,Loy A,Horn M,Rattei T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1232", "created_at": "2021-09-30T08:24:38.764Z", "updated_at": "2021-09-30T11:29:03.792Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2378", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-16T22:44:28.000Z", "updated-at": "2021-12-06T10:49:03.434Z", "metadata": {"doi": "10.25504/FAIRsharing.q2n5wk", "name": "SureChEMBL", "status": "ready", "contacts": [{"contact-email": "surechembl-help@ebi.ac.uk"}], "homepage": "https://www.surechembl.org", "identifier": 2378, "description": "SureChEMBL is a publicly available large-scale resource containing compounds extracted from the full text, images and attachments of patent documents. The data are extracted from the patent literature according to an automated text and image-mining pipeline on a daily basis. SureChEMBL provides access to a previously unavailable, open and timely set of annotated compound-patent associations, complemented with sophisticated combined structure and keyword-based search capabilities against the compound repository and patent document corpus. Currently, the database contains 17 million compounds extracted from 14 million patent documents.", "abbreviation": "SureChEMBL", "support-links": [{"url": "https://twitter.com/SureChEMBL", "type": "Twitter"}], "year-creation": 2014, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011037", "name": "re3data:r3d100011037", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000857", "bsg-d000857"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Mining", "Life Science", "Biomedical Science"], "domains": ["Chemical formula", "Chemical structure", "Text mining", "Image", "Patent"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: SureChEMBL", "abbreviation": "SureChEMBL", "url": "https://fairsharing.org/10.25504/FAIRsharing.q2n5wk", "doi": "10.25504/FAIRsharing.q2n5wk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SureChEMBL is a publicly available large-scale resource containing compounds extracted from the full text, images and attachments of patent documents. The data are extracted from the patent literature according to an automated text and image-mining pipeline on a daily basis. SureChEMBL provides access to a previously unavailable, open and timely set of annotated compound-patent associations, complemented with sophisticated combined structure and keyword-based search capabilities against the compound repository and patent document corpus. Currently, the database contains 17 million compounds extracted from 14 million patent documents.", "publications": [{"id": 1999, "pubmed_id": 26582922, "title": "SureChEMBL: a large-scale, chemically annotated patent document database.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1253", "authors": "Papadatos G,Davies M,Dedman N,Chambers J,Gaulton A,Siddle J,Koks R,Irvine SA,Pettersson J,Goncharoff N,Hersey A,Overington JP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1253", "created_at": "2021-09-30T08:26:05.013Z", "updated_at": "2021-09-30T11:29:25.411Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1620", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:40.820Z", "metadata": {"doi": "10.25504/FAIRsharing.hmb1f4", "name": "NONCODE", "status": "uncertain", "contacts": [{"contact-email": "biozy@ict.ac.cn"}], "homepage": "http://www.noncode.org", "citations": [{"doi": "10.1093/nar/gkx1107", "pubmed-id": 29140524, "publication-id": 2814}], "identifier": 1620, "description": "NONCODE is a database of noncoding RNAs (except tRNAs and rRNAs), including long noncoding (lnc) RNAs. Information contained within the database includes human lncRNA\u2013disease relationships and single nucleotide polymorphism-lncRNA\u2013disease relationships; human exosome lncRNA expression profiles; and predicted RNA secondary structures of human transcripts. This resource has not been updated since 2017, and therefore its status has been marked as Uncertain. Please get in touch if you have any information about the current status of this resource.", "abbreviation": "NONCODE", "support-links": [{"url": "rschen@ibp.ac.cn", "name": "RunSheng Chen", "type": "Support email"}, {"url": "http://www.noncode.org/faq.php", "name": "NONCODE FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.noncode.org/analysis.php", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.noncode.org/introduce.php", "name": "General Documentation", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/NONCODE", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2005, "data-processes": [{"url": "http://www.noncode.org/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://www.noncode.org/download.php", "name": "Download", "type": "data release"}, {"url": "http://www.noncode.org/keyword_func.php", "name": "Search Functions", "type": "data access"}, {"url": "http://www.noncode.org/keyword_cons.php", "name": "Search Conserved Status", "type": "data access"}, {"url": "http://www.noncode.org/keyword_dis.php", "name": "Search Diseases", "type": "data access"}, {"url": "http://www.noncode.org/keyword.php", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://www.noncode.org/blast.php", "name": "BLAST"}, {"url": "http://www.noncode.org/id_conversion.php", "name": "ID Convertor"}, {"url": "http://www.noncode.org/iLncRNA.php", "name": "iLncRNA (Idenfication)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012169", "name": "re3data:r3d100012169", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007822", "name": "SciCrunch:RRID:SCR_007822", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000076", "bsg-d000076"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics"], "domains": ["RNA secondary structure", "Expression data", "RNA sequence", "Function analysis", "Gene expression", "Extracellular exosome", "Long non-coding ribonucleic acid", "Non-coding RNA", "Long non-coding RNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: NONCODE", "abbreviation": "NONCODE", "url": "https://fairsharing.org/10.25504/FAIRsharing.hmb1f4", "doi": "10.25504/FAIRsharing.hmb1f4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NONCODE is a database of noncoding RNAs (except tRNAs and rRNAs), including long noncoding (lnc) RNAs. Information contained within the database includes human lncRNA\u2013disease relationships and single nucleotide polymorphism-lncRNA\u2013disease relationships; human exosome lncRNA expression profiles; and predicted RNA secondary structures of human transcripts. This resource has not been updated since 2017, and therefore its status has been marked as Uncertain. Please get in touch if you have any information about the current status of this resource.", "publications": [{"id": 111, "pubmed_id": 15608158, "title": "NONCODE: an integrated knowledge database of non-coding RNAs.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki041", "authors": "Liu C., Bai B., Skogerb\u00f8 G., Cai L., Deng W., Zhang Y., Bu D., Zhao Y., Chen R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki041", "created_at": "2021-09-30T08:22:32.282Z", "updated_at": "2021-09-30T08:22:32.282Z"}, {"id": 114, "pubmed_id": 18000000, "title": "NONCODE v2.0: decoding the non-coding.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1011", "authors": "He S., Liu C., Skogerb\u00f8 G., Zhao H., Wang J., Liu T., Bai B., Zhao Y., Chen R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm1011", "created_at": "2021-09-30T08:22:32.673Z", "updated_at": "2021-09-30T08:22:32.673Z"}, {"id": 2813, "pubmed_id": 26586799, "title": "NONCODE 2016: an informative and valuable data source of long non-coding RNAs.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1252", "authors": "Zhao Y,Li H,Fang S,Kang Y,Wu W,Hao Y,Li Z,Bu D,Sun N,Zhang MQ,Chen R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1252", "created_at": "2021-09-30T08:27:45.894Z", "updated_at": "2021-09-30T11:29:45.820Z"}, {"id": 2814, "pubmed_id": 29140524, "title": "NONCODEV5: a comprehensive annotation database for long non-coding RNAs.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1107", "authors": "Fang S,Zhang L,Guo J,Niu Y,Wu Y,Li H,Zhao L,Li X,Teng X,Sun X,Sun L,Zhang MQ,Chen R,Zhao Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1107", "created_at": "2021-09-30T08:27:46.010Z", "updated_at": "2021-09-30T11:29:46.019Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 692, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2891", "type": "fairsharing-records", "attributes": {"created-at": "2020-02-06T14:09:34.000Z", "updated-at": "2021-11-24T13:17:34.972Z", "metadata": {"doi": "10.25504/FAIRsharing.KcCjL7", "name": "RNAcentral", "status": "ready", "contacts": [{"contact-name": "Anton I Petrov", "contact-email": "apetrov@ebi.ac.uk"}], "homepage": "https://rnacentral.org", "citations": [{"doi": "10.1093/nar/gky1034", "pubmed-id": 30395267, "publication-id": 1750}], "identifier": 2891, "description": "RNAcentral is a free, public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of databases representing a broad range of organisms and RNA types.", "abbreviation": "RNAcentral", "access-points": [{"url": "https://rnacentral.org/api/v1/", "name": "RNAcentral API", "type": "REST"}], "support-links": [{"url": "https://blog.rnacentral.org/", "name": "RNAcentral Blog", "type": "Blog/News"}, {"url": "https://rnacentral.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://github.com/RNAcentral/rnacentral-webcode/issues", "name": "GitHub Issue Tracker", "type": "Github"}, {"url": "https://rnacentral.org/api", "name": "API Overview", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/genomic-mapping", "name": "Genomic Mapping Help", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/secondary-structure", "name": "Secondary Structure Help", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/rfam-annotations", "name": "Rfam Annotations Help", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/text-search", "name": "Text Search Guide", "type": "Help documentation"}, {"url": "https://rnacentral.org/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/gene-ontology-annotations", "name": "GO Annotations Help", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/rna-target-interactions", "name": "RNA Target Interactions Help", "type": "Help documentation"}, {"url": "https://rnacentral.org/help/conserved-motifs", "name": "Conserved RNA Motifs Help", "type": "Help documentation"}, {"url": "https://github.com/RNAcentral/", "name": "GitHub Repository", "type": "Github"}, {"url": "https://rnacentral.org/about-us", "name": "About RNAcentral", "type": "Help documentation"}, {"url": "https://rnacentral.org/expert-databases", "name": "Collaborating Databases", "type": "Help documentation"}, {"url": "https://blog.rnacentral.org/feeds/posts/default", "name": "News (RSS)", "type": "Blog/News"}, {"url": "https://rnacentral.org/training", "name": "RNAcentral Training", "type": "Training documentation"}, {"url": "https://twitter.com/RNAcentral", "name": "@RNAcentral", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "https://rnacentral.org/help/sequence-search", "name": "Sequence Search", "type": "data access"}, {"url": "https://rnacentral.org/help/text-search", "name": "Text Search", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/RNAcentral", "name": "Download via FTP", "type": "data release"}, {"url": "https://rnacentral.org/help/public-database", "name": "Public Postgres Database", "type": "data access"}, {"url": "https://rnacentral.org/genome-browser", "name": "Genome Browser", "type": "data access"}]}, "legacy-ids": ["biodbcore-001392", "bsg-d001392"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Biology"], "domains": ["Nucleic acid sequence", "RNA sequence", "Sequence annotation", "Non-coding RNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: RNAcentral", "abbreviation": "RNAcentral", "url": "https://fairsharing.org/10.25504/FAIRsharing.KcCjL7", "doi": "10.25504/FAIRsharing.KcCjL7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RNAcentral is a free, public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of databases representing a broad range of organisms and RNA types.", "publications": [{"id": 1750, "pubmed_id": 30395267, "title": "RNAcentral: a hub of information for non-coding RNA sequences.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1034", "authors": "The RNAcentral Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1034", "created_at": "2021-09-30T08:25:36.393Z", "updated_at": "2021-09-30T11:29:20.219Z"}, {"id": 2790, "pubmed_id": 27794554, "title": "RNAcentral: a comprehensive database of non-coding RNA sequences.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1008", "authors": "Petrov AI,Kay SJE,Kalvari I,Howe KL,Gray KA,Bruford EA,Kersey PJ,Cochrane G,Finn RD,Bateman A,Kozomara A,Griffiths-Jones S,Frankish A,Zwieb CW,Lau BY,Williams KP,Chan PP,Lowe TM,Cannone JJ,Gutell R,Machnicka MA,Bujnicki JM,Yoshihama M,Kenmochi N,Chai B,Cole JR,Szymanski M,Karlowski WM,Wood V,Huala E,Berardini TZ,Zhao Y,Chen R,Zhu W,Paraskevopoulou MD,Vlachos IS,Hatzigeorgiou AG,Ma L,Zhang Z,Puetz J,Stadler PF,McDonald D,Basu S,Fey P,Engel SR,Cherry JM,Volders PJ,Mestdagh P,Wower J,Clark MB,Quek XC,Dinger ME", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1008", "created_at": "2021-09-30T08:27:43.079Z", "updated_at": "2021-09-30T11:29:44.762Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1831, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1897", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:13.890Z", "metadata": {"doi": "10.25504/FAIRsharing.8ggr5j", "name": "PeroxisomeDB", "status": "ready", "contacts": [{"contact-email": "apujol@idibell.cat"}], "homepage": "http://www.peroxisomedb.org", "identifier": 1897, "description": "The aim of PEROXISOME database (PeroxisomeDB) is to gather, organise and integrate curated information on peroxisomal genes, their encoded proteins, their molecular function and metabolic pathway they belong to, and their related disorders.", "abbreviation": "PeroxisomeDB", "data-processes": [{"url": "http://www.peroxisomedb.org/show.php?action=download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.peroxisomedb.org/search.php", "name": "search"}, {"url": "http://www.peroxisomedb.org/show.php?action=organismPathway", "name": "browse"}, {"url": "http://www.peroxisomedb.org/search.php", "name": "search"}, {"url": "http://www.peroxisomedb.org/show.php?action=organismPathway", "name": "browse"}]}, "legacy-ids": ["biodbcore-000362", "bsg-d000362"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Molecular function", "Protein", "Pathway model", "Gene"], "taxonomies": ["Homo sapiens", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["France", "Spain"], "name": "FAIRsharing record for: PeroxisomeDB", "abbreviation": "PeroxisomeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.8ggr5j", "doi": "10.25504/FAIRsharing.8ggr5j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The aim of PEROXISOME database (PeroxisomeDB) is to gather, organise and integrate curated information on peroxisomal genes, their encoded proteins, their molecular function and metabolic pathway they belong to, and their related disorders.", "publications": [{"id": 391, "pubmed_id": 19892824, "title": "PeroxisomeDB 2.0: an integrative view of the global peroxisomal metabolome.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp935", "authors": "Schl\u00fcter A., Real-Chicharro A., Gabald\u00f3n T., S\u00e1nchez-Jim\u00e9nez F., Pujol A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp935", "created_at": "2021-09-30T08:23:02.417Z", "updated_at": "2021-09-30T08:23:02.417Z"}], "licence-links": [{"licence-name": "PeroxisomeDB Attribution required", "licence-id": 658, "link-id": 2406, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1720", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-31T15:29:16.419Z", "metadata": {"doi": "10.25504/FAIRsharing.g646hq", "name": "MetalPDB", "status": "ready", "contacts": [{"contact-name": "Claudia Andreini", "contact-email": "andreini@cerm.unifi.it", "contact-orcid": "0000-0003-4329-8225"}, {"contact-name": "Antonio Rosato", "contact-email": "rosato@cerm.unifi.it", "contact-orcid": "0000-0001-6172-0368"}], "homepage": "http://metalpdb.cerm.unifi.it/", "citations": [{"doi": "10.1093/nar/gkx989", "pubmed-id": null, "publication-id": 3191}], "identifier": 1720, "description": "MetalPDB is a resource aimed at conveying the information available on the three-dimensional structures of metal-binding biological macromolecules in a consistent and effective manner. This is achieved through the systematic and automated representation of metal-binding sites in proteins and nucleic acids by way of Minimal Functional Sites (MFSs). MFSs are three-dimensional templates that describe the local environment around the metal(s) independently of the larger context of the macromolecular structure embedding the site(s), and are the central objects of MetalPDB design. MFSs are grouped into equistructural (broadly defined as sites found in corresponding positions in similar structures) and equivalent sites (equistructural sites that contain the same metals), allowing users to easily analyze similarities and variations in metal-macromolecule interactions, and to link them to functional information.", "abbreviation": "MetalPDB", "access-points": [{"url": "http://metalpdb.cerm.unifi.it/api", "name": "MetalPDB API", "type": "REST", "example-url": "http://metalpdb.cerm.unifi.it/api?query=pdb%3A12ca", "documentation-url": "http://metalpdb.cerm.unifi.it/api_help"}], "data-curation": {}, "support-links": [{"url": "http://metalpdb.cerm.unifi.it/glossary", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"name": "monthly release", "type": "data release"}, {"url": "http://metalpdb.cerm.unifi.it/sequenceSearch", "name": "Sequence search", "type": "data access"}, {"url": "http://metalpdb.cerm.unifi.it/metalSearch", "name": "Metal search", "type": "data access"}, {"url": "http://metalpdb.cerm.unifi.it/advancedSearch", "name": "Advanced search", "type": "data access"}, {"url": "http://metalweb.cerm.unifi.it/download/first_sphere/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://metalweb.cerm.unifi.it/tools/findgeo/", "name": "FindGeo"}, {"url": "http://metalweb.cerm.unifi.it/tools/metals2/", "name": "Metals2"}, {"url": "http://metalweb.cerm.unifi.it/tools/metals3/", "name": "Metals3"}, {"url": "http://metalweb.cerm.unifi.it/tools/metalpredator/", "name": "Metal Predator"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000177", "bsg-d000177"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology"], "domains": ["Protein structure", "Ligand", "Metal ion binding", "Structure"], "taxonomies": ["All"], "user-defined-tags": ["Metal-macromolecule interaction"], "countries": ["Italy"], "name": "FAIRsharing record for: MetalPDB", "abbreviation": "MetalPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.g646hq", "doi": "10.25504/FAIRsharing.g646hq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetalPDB is a resource aimed at conveying the information available on the three-dimensional structures of metal-binding biological macromolecules in a consistent and effective manner. This is achieved through the systematic and automated representation of metal-binding sites in proteins and nucleic acids by way of Minimal Functional Sites (MFSs). MFSs are three-dimensional templates that describe the local environment around the metal(s) independently of the larger context of the macromolecular structure embedding the site(s), and are the central objects of MetalPDB design. MFSs are grouped into equistructural (broadly defined as sites found in corresponding positions in similar structures) and equivalent sites (equistructural sites that contain the same metals), allowing users to easily analyze similarities and variations in metal-macromolecule interactions, and to link them to functional information.", "publications": [{"id": 1897, "pubmed_id": 23155064, "title": "MetalPDB: a database of metal sites in biological macromolecular structures.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1063", "authors": "Andreini C,Cavallaro G,Lorenzini S,Rosato A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1063", "created_at": "2021-09-30T08:25:53.387Z", "updated_at": "2021-09-30T11:29:22.352Z"}, {"id": 3191, "pubmed_id": null, "title": "MetalPDB in 2018: a database of metal sites in biological macromolecular structures", "year": 2017, "url": "http://dx.doi.org/10.1093/nar/gkx989", "authors": "Putignano, Valeria; Rosato, Antonio; Banci, Lucia; Andreini, Claudia; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx989", "created_at": "2022-01-20T15:49:27.326Z", "updated_at": "2022-01-20T15:49:27.326Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1902", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.371Z", "metadata": {"doi": "10.25504/FAIRsharing.wyz5he", "name": "Conformation Angles Database", "status": "ready", "contacts": [{"contact-name": "K Sekar", "contact-email": "sekar@physics.iisc.ernet.in"}], "homepage": "http://cluster.physics.iisc.ernet.in/cadb/", "identifier": 1902, "description": "Conformation Angles DataBase [ CADB-3.0 ] is a comprehensive, authoritative and timely knowledge base developed to facilitate retrieval of information related to the conformational angles (main-chain and side-chain) of the amino acid residues present in the non-redundant (both 25% and 90%) data set.", "abbreviation": "CADB", "year-creation": 2002}, "legacy-ids": ["biodbcore-000367", "bsg-d000367"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Conformation Angles Database", "abbreviation": "CADB", "url": "https://fairsharing.org/10.25504/FAIRsharing.wyz5he", "doi": "10.25504/FAIRsharing.wyz5he", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Conformation Angles DataBase [ CADB-3.0 ] is a comprehensive, authoritative and timely knowledge base developed to facilitate retrieval of information related to the conformational angles (main-chain and side-chain) of the amino acid residues present in the non-redundant (both 25% and 90%) data set.", "publications": [{"id": 401, "pubmed_id": 12520049, "title": "CADB: Conformation Angles DataBase of proteins.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg084", "authors": "Sheik SS., Ananthalakshmi P., Bhargavi GR., Sekar K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg084", "created_at": "2021-09-30T08:23:03.592Z", "updated_at": "2021-09-30T08:23:03.592Z"}, {"id": 1423, "pubmed_id": 15858276, "title": "CADB-2.0: Conformation Angles Database.", "year": 2005, "url": "http://doi.org/10.1107/S0907444905005871", "authors": "Samaya Mohan K,Sheik SS,Ramesh J,Balamurugan B,Jeyasimhan M,Mayilarasi C,Sekar K", "journal": "Acta Crystallogr D Biol Crystallogr", "doi": "10.1107/S0907444905005871", "created_at": "2021-09-30T08:24:59.067Z", "updated_at": "2021-09-30T08:24:59.067Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 394, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2832", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-18T08:06:40.000Z", "updated-at": "2021-11-24T13:20:01.356Z", "metadata": {"doi": "10.25504/FAIRsharing.0Hsbor", "name": "A database for spatially resolved transcriptomes", "status": "ready", "contacts": [{"contact-name": "CHEN, Xiaowei", "contact-email": "chenxiaowei@ibp.ac.cn"}], "homepage": "https://www.spatialomics.org/SpatialDB/", "identifier": 2832, "description": "Spatially resolved transcriptomics providing gene expression profiles with positional information is key to tissue function and fundamental to disease pathology. SpatialDB is the first public database that specifically curates spatially resolved transcriptomic data from published papers, aiming to provide a comprehensive and accurate resource of spatial gene expression profiles in tissues. Currently, SpatialDB contains detailed information of 24 datasets generated by 8 spatially resolved transcriptomic techniques. SpatialDB allows users to browse the spatial gene expression profile of all the 8 techniques online and compare the spatial gene expression profile of any two datasets generated by the same or different techniques side by side. It provides spatially variable (SV) genes identified by SpatialDE and trendsceek, as well as functional enrichment annotation of SV genes.", "abbreviation": "SpatialDB", "support-links": [{"url": "https://www.spatialomics.org/SpatialDB/help.php", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.spatialomics.org/SpatialDB/about.php", "name": "About", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://www.spatialomics.org/SpatialDB/browse.php", "name": "Browse", "type": "data access"}, {"url": "https://www.spatialomics.org/SpatialDB/search.php", "name": "Search", "type": "data access"}, {"url": "https://www.spatialomics.org/SpatialDB/dataset.php", "name": "Browse Datasets", "type": "data access"}, {"url": "https://www.spatialomics.org/SpatialDB/compare.php", "name": "Compare Gene Expression", "type": "data access"}, {"url": "https://www.spatialomics.org/SpatialDB/upload.php", "name": "Submit", "type": "data curation"}, {"url": "https://www.spatialomics.org/SpatialDB/download.php", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001333", "bsg-d001333"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Transcriptomics"], "domains": ["Expression data", "Gene functional annotation", "Tissue"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Drosophila", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: A database for spatially resolved transcriptomes", "abbreviation": "SpatialDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.0Hsbor", "doi": "10.25504/FAIRsharing.0Hsbor", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Spatially resolved transcriptomics providing gene expression profiles with positional information is key to tissue function and fundamental to disease pathology. SpatialDB is the first public database that specifically curates spatially resolved transcriptomic data from published papers, aiming to provide a comprehensive and accurate resource of spatial gene expression profiles in tissues. Currently, SpatialDB contains detailed information of 24 datasets generated by 8 spatially resolved transcriptomic techniques. SpatialDB allows users to browse the spatial gene expression profile of all the 8 techniques online and compare the spatial gene expression profile of any two datasets generated by the same or different techniques side by side. It provides spatially variable (SV) genes identified by SpatialDE and trendsceek, as well as functional enrichment annotation of SV genes.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2690", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-10T13:04:44.000Z", "updated-at": "2021-11-24T13:17:34.044Z", "metadata": {"doi": "10.25504/FAIRsharing.PsyMBm", "name": "HymenopteraMine", "status": "ready", "contacts": [{"contact-email": "hymenopteragenomedatabase@gmail.com"}], "homepage": "http://hymenopteragenome.org/hymenopteramine/", "citations": [{"doi": "10.1093/nar/gkv1208", "pubmed-id": 26578564, "publication-id": 2335}], "identifier": 2690, "description": "HymenopteraMine integrates genomic data for bees, ants and the parasitoid jewel wasp. Expression and variation data are provided for A. mellifera.", "abbreviation": "HymenopteraMine", "access-points": [{"url": "http://hymenopteragenome.org/hymenopteramine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://hymenopteramine.readthedocs.io/", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://hymenopteragenome.org/hymenopteramine/network.do", "name": "Data Model", "type": "Help documentation"}, {"url": "http://hymenopteragenome.org/hymenopteramine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "http://hymenopteragenome.org/beebase/?q=node/95", "name": "About HymenopteraMine", "type": "Help documentation"}, {"url": "http://hymenopteragenome.org/hymenopteramine/updates.do", "name": "Release Documentation", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://hymenopteragenome.org/hymenopteramine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://hymenopteragenome.org/hymenopteramine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://hymenopteragenome.org/hymenopteramine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://hymenopteragenome.org/hymenopteramine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001187", "bsg-d001187"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Agriculture", "Life Science", "Biology"], "domains": ["Expression data", "Function analysis", "Gene expression", "Protein", "Gene", "Homologous", "Orthologous", "Sequence variant"], "taxonomies": ["Apis", "Apis mellifera", "Bombus", "Ceratina calcarata", "Cobria biroi", "Drosophila", "Erlandia mexicana", "Habropoda laboriosa", "Harpegnathos saltator", "Lasioglossum albipes", "Linepithema humile", "Megachile rotundata", "Melipona quadrifasciata", "Monomorium pharaonis", "Nasonia vitripennis", "Pogonomyrmex barbatus", "Solenopsis invicta", "Wasmannia auropunctata"], "user-defined-tags": ["protein homology"], "countries": ["United States"], "name": "FAIRsharing record for: HymenopteraMine", "abbreviation": "HymenopteraMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.PsyMBm", "doi": "10.25504/FAIRsharing.PsyMBm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HymenopteraMine integrates genomic data for bees, ants and the parasitoid jewel wasp. Expression and variation data are provided for A. mellifera.", "publications": [{"id": 2335, "pubmed_id": 26578564, "title": "Hymenoptera Genome Database: integrating genome annotations in HymenopteraMine.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1208", "authors": "Elsik CG,Tayal A,Diesh CM,Unni DR,Emery ML,Nguyen HN,Hagen DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1208", "created_at": "2021-09-30T08:26:46.726Z", "updated_at": "2021-09-30T11:29:33.303Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 60, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1638", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:56.196Z", "metadata": {"doi": "10.25504/FAIRsharing.3d4jx0", "name": "Protein Structure Change Database", "status": "ready", "contacts": [{"contact-name": "Takayuki Amemiya", "contact-email": "pscdb-admin@force.cs.is.nagoya-u.ac.jp"}], "homepage": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/", "identifier": 1638, "description": "The Protein Structural Change DataBase (PSCDB) presents the structural changes found in proteins, represented by pairs of ligand-free and ligand-bound structures of identical proteins, and links these changes to ligand-binding.", "abbreviation": "PSCDB", "support-links": [{"url": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/background_info.pdf", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "file download(txt)", "type": "data access"}, {"url": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", "name": "search", "type": "data access"}, {"url": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/table.html", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000094", "bsg-d000094"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme Commission number", "Protein structure", "Ligand", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Protein Structure Change Database", "abbreviation": "PSCDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.3d4jx0", "doi": "10.25504/FAIRsharing.3d4jx0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Structural Change DataBase (PSCDB) presents the structural changes found in proteins, represented by pairs of ligand-free and ligand-bound structures of identical proteins, and links these changes to ligand-binding.", "publications": [{"id": 135, "pubmed_id": 21376729, "title": "Classification and annotation of the relationship between protein structural change and ligand binding.", "year": 2011, "url": "http://doi.org/10.1016/j.jmb.2011.02.058", "authors": "Amemiya T., Koike R., Fuchigami S., Ikeguchi M., Kidera A.,", "journal": "J. Mol. Biol.", "doi": "10.1016/j.jmb.2011.02.058", "created_at": "2021-09-30T08:22:34.781Z", "updated_at": "2021-09-30T08:22:34.781Z"}, {"id": 1556, "pubmed_id": 22080505, "title": "PSCDB: a database for protein structural change upon ligand binding.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr966", "authors": "Amemiya T,Koike R,Kidera A,Ota M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr966", "created_at": "2021-09-30T08:25:14.500Z", "updated_at": "2021-09-30T11:29:13.801Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3323", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-17T20:16:33.000Z", "updated-at": "2022-02-08T10:46:39.290Z", "metadata": {"doi": "10.25504/FAIRsharing.78d3ad", "name": "(Re)Building a Kidney", "status": "ready", "contacts": [{"contact-name": "RBK Hub", "contact-email": "help@rebuildingakidney.org"}], "homepage": "https://rebuildingakidney.org", "citations": [{"doi": "10.1681/ASN.2016101077", "pubmed-id": 28096308, "publication-id": 2141}], "identifier": 3323, "description": "This site contains data generated by (Re)Building a Kidney (RBK), an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function. RBK's goal is to coordinate and support studies that will result in the ability to generate or repair nephrons that can function within the kidney. This resource includes data from both the RBK project and the GenitoUrinary Development Molecular Anatomy Project (GUDMAP). Data submission is restricted to members of the Consortium only.", "abbreviation": "RBK", "support-links": [{"url": "https://www.rebuildingakidney.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://github.com/informatics-isi-edu/gudmap-rbk/wiki/Using-the-GUDMAP-RBK-Data-Browser", "name": "Using the Data Browser", "type": "Github"}, {"url": "https://github.com/informatics-isi-edu/gudmap-rbk/wiki/Batch-Query", "name": "Batch Queries", "type": "Github"}, {"url": "https://github.com/informatics-isi-edu/gudmap-rbk/wiki", "name": "User and Submitter Guide", "type": "Github"}, {"url": "https://github.com/informatics-isi-edu/gudmap-rbk/wiki/Create-citable-datasets", "name": "Creating Citable Datasets", "type": "Github"}], "year-creation": 2015, "data-processes": [{"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/Common:Gene", "name": "Search Genes", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/Protocol:Protocol", "name": "Search Protocols", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/Common:Collection", "name": "Search Collections", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/cell-lines/", "name": "Search Available Cell Lines", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/Antibody:Antibody_Tests", "name": "Search Antibody Tests", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/RNASeq:Study/Consortium=RBK?pcid=static", "name": "Search Gene Expression Data", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/chaise/recordset/#2/RNASeq:Study", "name": "Search scRNA-Seq Visualizations", "type": "data access"}, {"url": "https://www.rebuildingakidney.org/deriva-webapps/treeview/", "name": "Browse via Mouse Anatomy Vocabulary", "type": "data access"}, {"url": "https://github.com/informatics-isi-edu/gudmap-rbk/wiki", "name": "Submission by Consortium Members only", "type": "data curation"}, {"name": "Download Available (Login Required)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001840", "bsg-d001840"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Genomics", "Developmental Biology", "Cell Biology"], "domains": ["Expression data", "Differential gene expression analysis", "Kidney disease", "Animal organ development", "Cell culture"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: (Re)Building a Kidney", "abbreviation": "RBK", "url": "https://fairsharing.org/10.25504/FAIRsharing.78d3ad", "doi": "10.25504/FAIRsharing.78d3ad", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This site contains data generated by (Re)Building a Kidney (RBK), an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function. RBK's goal is to coordinate and support studies that will result in the ability to generate or repair nephrons that can function within the kidney. This resource includes data from both the RBK project and the GenitoUrinary Development Molecular Anatomy Project (GUDMAP). Data submission is restricted to members of the Consortium only.", "publications": [{"id": 2141, "pubmed_id": 28096308, "title": "(Re)Building a Kidney.", "year": 2017, "url": "http://doi.org/10.1681/ASN.2016101077", "authors": "Oxburgh L,Carroll TJ,Cleaver O,Gossett DR,Hoshizaki DK,Hubbell JA,Humphreys BD,Jain S,Jensen J,Kaplan DL,Kesselman C,Ketchum CJ,Little MH,McMahon AP,Shankland SJ,Spence JR,Valerius MT,Wertheim JA,Wessely O,Zheng Y,Drummond IA", "journal": "J Am Soc Nephrol", "doi": "10.1681/ASN.2016101077", "created_at": "2021-09-30T08:26:21.357Z", "updated_at": "2021-09-30T08:26:21.357Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2641", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-06T06:04:10.000Z", "updated-at": "2022-01-28T13:34:50.396Z", "metadata": {"name": "Structure Function Linkage Database Archive", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "sfld-help@cgl.ucsf.edu"}], "homepage": "http://sfld.rbvi.ucsf.edu/", "citations": [{"doi": "10.1093/nar/gkt1130", "pubmed-id": 24271399, "publication-id": 1567}], "identifier": 2641, "description": "Structure Function Linkage Database (SFLD) is a database of enzymes classified by linking sequences to chemical function. A hierachical systems is used to classify enzymes by family or superfamily other category levels include functional domain, subgroup and suprafamily. The archive does not contain the interactive functionality found in the original SFLD, such as search capabilities. Instead, the archive is a static snapshot of the data in the SFLD as of April 2019, and will not be updated. Interactive features are no longer available. However, the superfamily hierarchy may be browsed, and archived alignments, sequence similarity networks, and reaction similarity networks are available for download. Though SFLD sequence sets, alignments, and networks are not being updated, they may still provide a starting point for exploration and hypothesis generation. ", "abbreviation": "SFLD", "year-creation": 2014, "data-processes": [{"url": "http://sfld.rbvi.ucsf.edu/django/superfamily/", "name": "Browse by Superfamily", "type": "data access"}, {"url": "http://sfld.rbvi.ucsf.edu/django/reactions/", "name": "Browse by Reaction", "type": "data access"}, {"url": "http://sfld.rbvi.ucsf.edu/django/search/", "name": "Search by enzyme", "type": "data access"}, {"url": "http://sfld.rbvi.ucsf.edu/django/search/reaction/", "name": "Search by reaction", "type": "data access"}], "deprecation-date": "2022-01-28", "deprecation-reason": "The archive is a static snapshot of the data in the SFLD as of April 2019, and therefore we mark the resource as deprecated. Certain archival functions (browsing and download) remain available."}, "legacy-ids": ["biodbcore-001132", "bsg-d001132"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Enzymology"], "domains": ["Hidden Markov model", "Protein structure", "Protein domain", "DNA sequence data", "Enzymatic reaction", "Functional association", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": ["Protein superfamily"], "countries": ["United States"], "name": "FAIRsharing record for: Structure Function Linkage Database Archive", "abbreviation": "SFLD", "url": "https://fairsharing.org/fairsharing_records/2641", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Structure Function Linkage Database (SFLD) is a database of enzymes classified by linking sequences to chemical function. A hierachical systems is used to classify enzymes by family or superfamily other category levels include functional domain, subgroup and suprafamily. The archive does not contain the interactive functionality found in the original SFLD, such as search capabilities. Instead, the archive is a static snapshot of the data in the SFLD as of April 2019, and will not be updated. Interactive features are no longer available. However, the superfamily hierarchy may be browsed, and archived alignments, sequence similarity networks, and reaction similarity networks are available for download. Though SFLD sequence sets, alignments, and networks are not being updated, they may still provide a starting point for exploration and hypothesis generation. ", "publications": [{"id": 1567, "pubmed_id": 24271399, "title": "The Structure-Function Linkage Database.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1130", "authors": "Akiva E,Brown S,Almonacid DE,Barber AE 2nd,Custer AF,Hicks MA,Huang CC,Lauck F,Mashiyama ST,Meng EC,Mischel D,Morris JH,Ojha S,Schnoes AM,Stryke D,Yunes JM,Ferrin TE,Holliday GL,Babbitt PC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1130", "created_at": "2021-09-30T08:25:15.691Z", "updated_at": "2021-09-30T11:29:14.010Z"}, {"id": 1568, "pubmed_id": 18428763, "title": "Using the Structure-function Linkage Database to characterize functional domains in enzymes.", "year": 2008, "url": "http://doi.org/10.1002/0471250953.bi0210s13", "authors": "Brown S,Babbitt P", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0210s13", "created_at": "2021-09-30T08:25:15.791Z", "updated_at": "2021-09-30T08:25:15.791Z"}, {"id": 2665, "pubmed_id": 16489747, "title": "Leveraging enzyme structure-function relationships for functional inference and experimental design: the structure-function linkage database.", "year": 2006, "url": "http://doi.org/10.1021/bi052101l", "authors": "Pegg SC,Brown SD,Ojha S,Seffernick J,Meng EC,Morris JH,Chang PJ,Huang CC,Ferrin TE,Babbitt PC", "journal": "Biochemistry", "doi": "10.1021/bi052101l", "created_at": "2021-09-30T08:27:27.221Z", "updated_at": "2021-09-30T08:27:27.221Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2877", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-30T11:31:59.000Z", "updated-at": "2021-09-30T11:37:49.541Z", "metadata": {"name": "re3data", "status": "ready", "contacts": [{"contact-name": "re3data contact", "contact-email": "info@re3data.org"}], "homepage": "https://www.re3data.org/", "identifier": 2877, "description": "re3data.org is a global registry of research data repositories that covers research data repositories from different academic disciplines. It presents repositories for the permanent storage and access of data sets to researchers, funding bodies, publishers and scholarly institutions. re3data.org promotes a culture of sharing, increased access and better visibility of research data.", "abbreviation": "re3data", "support-links": [{"url": "https://www.re3data.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.re3data.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.re3data.org/browse/by-subject/", "name": "Browse", "type": "data access"}, {"url": "https://www.re3data.org/search", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001378", "bsg-d001378"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States", "Germany"], "name": "FAIRsharing record for: re3data", "abbreviation": "re3data", "url": "https://fairsharing.org/fairsharing_records/2877", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: re3data.org is a global registry of research data repositories that covers research data repositories from different academic disciplines. It presents repositories for the permanent storage and access of data sets to researchers, funding bodies, publishers and scholarly institutions. re3data.org promotes a culture of sharing, increased access and better visibility of research data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2442, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2047", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:51.759Z", "metadata": {"doi": "10.25504/FAIRsharing.2s4n8r", "name": "MEROPS", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "merops@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/merops/", "identifier": 2047, "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", "abbreviation": "MEROPS", "support-links": [{"url": "http://meropsdb.wordpress.com", "type": "Blog/News"}, {"url": "https://www.ebi.ac.uk/merops/about/index.shtml", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "https://www.ebi.ac.uk/merops/download_list.shtml", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/merops/submit_searches.shtml", "name": "BLAST", "type": "data access"}, {"url": "https://www.ebi.ac.uk/merops/search.shtml", "name": "Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/merops/submissions.shtml", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012783", "name": "re3data:r3d100012783", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007777", "name": "SciCrunch:RRID:SCR_007777", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000514", "bsg-d000514"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Molecular structure", "Proteolytic digest", "Protein structure", "Protein domain", "Nucleic acid sequence", "DNA sequence data", "Enzyme", "Structure", "Protein", "Amino acid sequence", "Protease site"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: MEROPS", "abbreviation": "MEROPS", "url": "https://fairsharing.org/10.25504/FAIRsharing.2s4n8r", "doi": "10.25504/FAIRsharing.2s4n8r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", "publications": [{"id": 405, "pubmed_id": 17991683, "title": "MEROPS: the peptidase database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm954", "authors": "Rawlings ND., Morton FR., Kok CY., Kong J., Barrett AJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm954", "created_at": "2021-09-30T08:23:04.008Z", "updated_at": "2021-09-30T08:23:04.008Z"}, {"id": 1404, "pubmed_id": 29145643, "title": "The MEROPS database of proteolytic enzymes, their substrates and inhibitors in 2017 and a comparison with peptidases in the PANTHER database.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1134", "authors": "Rawlings ND,Barrett AJ,Thomas PD,Huang X,Bateman A,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1134", "created_at": "2021-09-30T08:24:56.981Z", "updated_at": "2021-09-30T11:29:07.960Z"}, {"id": 1571, "pubmed_id": 8439290, "title": "Evolutionary families of peptidases.", "year": 1993, "url": "http://doi.org/10.1042/bj2900205", "authors": "Rawlings ND,Barrett AJ", "journal": "Biochem J", "doi": "10.1042/bj2900205", "created_at": "2021-09-30T08:25:16.159Z", "updated_at": "2021-09-30T08:25:16.159Z"}, {"id": 1572, "pubmed_id": 9847218, "title": "MEROPS: the peptidase database.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.325", "authors": "Rawlings ND,Barrett AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/27.1.325", "created_at": "2021-09-30T08:25:16.257Z", "updated_at": "2021-09-30T11:29:14.110Z"}, {"id": 1573, "pubmed_id": 22086950, "title": "MEROPS: the database of proteolytic enzymes, their substrates and inhibitors.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr987", "authors": "Rawlings ND,Barrett AJ,Bateman A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr987", "created_at": "2021-09-30T08:25:16.357Z", "updated_at": "2021-09-30T11:29:14.212Z"}, {"id": 1676, "pubmed_id": 26527717, "title": "Twenty years of the MEROPS database of proteolytic enzymes, their substrates and inhibitors.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1118", "authors": "Rawlings ND,Barrett AJ,Finn R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1118", "created_at": "2021-09-30T08:25:27.768Z", "updated_at": "2021-09-30T11:29:18.418Z"}, {"id": 1742, "pubmed_id": 26455268, "title": "Peptidase specificity from the substrate cleavage collection in the MEROPS database and a tool to measure cleavage site conservation.", "year": 2015, "url": "http://doi.org/10.1016/j.biochi.2015.10.003", "authors": "Rawlings ND", "journal": "Biochimie", "doi": "10.1016/j.biochi.2015.10.003", "created_at": "2021-09-30T08:25:35.438Z", "updated_at": "2021-09-30T08:25:35.438Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1429, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2651", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-08T08:23:22.000Z", "updated-at": "2021-11-24T13:14:55.270Z", "metadata": {"name": "Morphinome", "status": "ready", "contacts": [{"contact-name": "Anna Bodzon-Kulakowska", "contact-email": "abk@agh.edu.pl", "contact-orcid": "0000-0002-0158-8059"}], "homepage": "http://addiction-proteomics.org/", "identifier": 2651, "description": "The Morphinome Database is repository for proteins regulated by morphine administration.", "abbreviation": "Morphinome", "support-links": [{"url": "psuder@agh.edu.pl", "type": "Support email"}, {"url": "http://addiction-proteomics.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://addiction-proteomics.org/for_users.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://addiction-proteomics.org/", "name": "search", "type": "data access"}, {"url": "http://addiction-proteomics.org/aghsearch,search,pol,glowna,0,0,,plus.html?s_protein_name=&accession_number=&s_structure=&s_experimental_model=&s_animal=&reset=true", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001142", "bsg-d001142"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Biological regulation", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Central nervous system"], "countries": ["Czech Republic", "Poland"], "name": "FAIRsharing record for: Morphinome", "abbreviation": "Morphinome", "url": "https://fairsharing.org/fairsharing_records/2651", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Morphinome Database is repository for proteins regulated by morphine administration.", "publications": [{"id": 2162, "pubmed_id": 29660498, "title": "Morphinome Database - The database of proteins altered by morphine administration - An update.", "year": 2018, "url": "http://doi.org/S1874-3919(18)30171-4", "authors": "Bodzon-Kulakowska A,Padrtova T,Drabik A,Ner-Kluza J,Antolak A,Kulakowski K,Suder P", "journal": "J Proteomics", "doi": "S1874-3919(18)30171-4", "created_at": "2021-09-30T08:26:23.717Z", "updated_at": "2021-09-30T08:26:23.717Z"}, {"id": 2163, "pubmed_id": 21182190, "title": "Morphinome--a meta-analysis applied to proteomics studies in morphine dependence.", "year": 2010, "url": "http://doi.org/10.1002/pmic.200900848", "authors": "Bodzon-Kulakowska A,Kulakowski K,Drabik A,Moszczynski A,Silberring J,Suder P", "journal": "Proteomics", "doi": "10.1002/pmic.200900848", "created_at": "2021-09-30T08:26:23.825Z", "updated_at": "2021-09-30T08:26:23.825Z"}, {"id": 2704, "pubmed_id": 15583963, "title": "Morphinome--proteome of the nervous system after morphine treatment.", "year": 2004, "url": "http://doi.org/10.1007/s00726-004-0144-y", "authors": "Bodzon-Kulakowska A,Bierczynska-Krzysik A,Drabik A,Noga M,Kraj A,Suder P,Silberring J", "journal": "Amino Acids", "doi": "10.1007/s00726-004-0144-y", "created_at": "2021-09-30T08:27:32.112Z", "updated_at": "2021-09-30T08:27:32.112Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1842", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.852Z", "metadata": {"doi": "10.25504/FAIRsharing.dn2c0s", "name": "Tomato Functional Genomics Database", "status": "ready", "contacts": [{"contact-name": "Zhangjun Fei", "contact-email": "zf25@cornell.edu", "contact-orcid": "0000-0001-9684-1450"}], "homepage": "http://ted.bti.cornell.edu", "identifier": 1842, "description": "The Tomato Functional Genomics Database integrates several prior databases including the Tomato Expression Database and Tomato Metabolite Database, and the Tomato Small RNA Database.", "abbreviation": "TED", "support-links": [{"url": "http://ted.bti.cornell.edu/cgi-bin/TFGD/misc/contact.cgi", "type": "Contact form"}], "year-creation": 2004, "associated-tools": [{"url": "http://ted.bti.cornell.edu/cgi-bin/TFGD/miame/home.cgi", "name": "browse"}, {"url": "http://ted.bti.cornell.edu/cgi-bin/TFGD/metabolite/compound.cgi", "name": "browse"}]}, "legacy-ids": ["biodbcore-000302", "bsg-d000302"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "RNA sequence", "Annotation", "Metabolite", "Ribonucleic acid", "Micro RNA", "Small interfering RNA", "Genome"], "taxonomies": ["Solanum lycopersicum", "Solanum pennellii"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Tomato Functional Genomics Database", "abbreviation": "TED", "url": "https://fairsharing.org/10.25504/FAIRsharing.dn2c0s", "doi": "10.25504/FAIRsharing.dn2c0s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Tomato Functional Genomics Database integrates several prior databases including the Tomato Expression Database and Tomato Metabolite Database, and the Tomato Small RNA Database.", "publications": [{"id": 359, "pubmed_id": 20965973, "title": "Tomato Functional Genomics Database: a comprehensive resource and analysis package for tomato functional genomics.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq991", "authors": "Fei Z., Joung JG., Tang X., Zheng Y., Huang M., Lee JM., McQuinn R., Tieman DM., Alba R., Klee HJ., Giovannoni JJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq991", "created_at": "2021-09-30T08:22:58.615Z", "updated_at": "2021-09-30T08:22:58.615Z"}, {"id": 1488, "pubmed_id": 16381976, "title": "Tomato Expression Database (TED): a suite of data presentation and analysis tools.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj110", "authors": "Fei Z,Tang X,Alba R,Giovannoni J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj110", "created_at": "2021-09-30T08:25:06.565Z", "updated_at": "2021-09-30T11:29:10.518Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2090", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:21.792Z", "metadata": {"doi": "10.25504/FAIRsharing.cpneh8", "name": "LIPID MAPS", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@lipidmaps.org"}], "homepage": "http://www.lipidmaps.org", "identifier": 2090, "description": "The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", "abbreviation": "LIPID MAPS", "support-links": [{"url": "http://www.lipidmaps.org/resources/tutorials/index.html", "type": "Training documentation"}, {"url": "https://twitter.com/lipidmaps", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "http://www.lipidmaps.org/resources/downloads/index.html", "name": "Download", "type": "data access"}, {"url": "http://www.lipidmaps.org/tools/index.html", "name": "analyse", "type": "data access"}, {"url": "http://www.lipidmaps.org/data/structure/LMSDSearch.php?Mode=SetupTextOntologySearch4r7", "name": "advanced search", "type": "data access"}, {"url": "http://www.lipidmaps.org/data/classification/LM_classification_exp.php", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012315", "name": "re3data:r3d100012315", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006579", "name": "SciCrunch:RRID:SCR_006579", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000559", "bsg-d000559"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Endocrinology", "Life Science", "Biomedical Science", "Systems Biology"], "domains": ["Mass spectrum", "Taxonomic classification", "Lipid", "Structure"], "taxonomies": ["Mammalia"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: LIPID MAPS", "abbreviation": "LIPID MAPS", "url": "https://fairsharing.org/10.25504/FAIRsharing.cpneh8", "doi": "10.25504/FAIRsharing.cpneh8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", "publications": [{"id": 518, "pubmed_id": 17098933, "title": "LMSD: LIPID MAPS structure database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl838", "authors": "Sud M., Fahy E., Cotter D., Brown A., Dennis EA., Glass CK., Merrill AH., Murphy RC., Raetz CR., Russell DW., Subramaniam S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl838", "created_at": "2021-09-30T08:23:16.517Z", "updated_at": "2021-09-30T08:23:16.517Z"}, {"id": 520, "pubmed_id": 17584797, "title": "LIPID MAPS online tools for lipid research.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm324", "authors": "Fahy E., Sud M., Cotter D., Subramaniam S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm324", "created_at": "2021-09-30T08:23:16.759Z", "updated_at": "2021-09-30T08:23:16.759Z"}, {"id": 2298, "pubmed_id": 19098281, "title": "Update of the LIPID MAPS comprehensive classification system for lipids.", "year": 2008, "url": "http://doi.org/10.1194/jlr.R800095-JLR200", "authors": "Fahy E,Subramaniam S,Murphy RC,Nishijima M,Raetz CR,Shimizu T,Spener F,van Meer G,Wakelam MJ,Dennis EA", "journal": "J Lipid Res", "doi": "10.1194/jlr.R800095-JLR200", "created_at": "2021-09-30T08:26:41.097Z", "updated_at": "2021-09-30T08:26:41.097Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 531, "relation": "undefined"}, {"licence-name": "LIPID MAPS Terms of Use", "licence-id": 493, "link-id": 532, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1708", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.076Z", "metadata": {"doi": "10.25504/FAIRsharing.6ktmmc", "name": "Dfam", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "help@dfam.org"}], "homepage": "http://dfam.org/", "citations": [{"doi": "10.1093/nar/gkv1272", "pubmed-id": 26612867, "publication-id": 1909}], "identifier": 1708, "description": "The Dfam database is a open collection of DNA Transposable Element sequence alignments, hidden Markov Models (HMMs), consensus sequences, and genome annotations. Dfam represents a collection of multiple sequence alignments, each containing a set of representative members of a specific transposable element family. These alignments (seed alignments) are used to generate HMMs and consensus sequences for each family. The Dfam website gives information about each family, and provides genome annotations for a collection of core genomes.", "abbreviation": "Dfam", "support-links": [{"url": "https://www.dfam.org/help/family", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.dfam.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.dfam.org/classification", "name": "Dfam Classification", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.dfam.org/releases/Dfam_3.1/", "name": "Download", "type": "data release"}, {"url": "https://www.dfam.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.dfam.org/browse", "name": "Browse", "type": "data access"}, {"url": "https://www.dfam.org/repository", "name": "Raw Dataset Repository", "type": "data release"}]}, "legacy-ids": ["biodbcore-000165", "bsg-d000165"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Hidden Markov model", "DNA sequence data", "Annotation", "Genome annotation", "Multiple sequence alignment", "Transposable element", "Genome"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Dfam", "abbreviation": "Dfam", "url": "https://fairsharing.org/10.25504/FAIRsharing.6ktmmc", "doi": "10.25504/FAIRsharing.6ktmmc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Dfam database is a open collection of DNA Transposable Element sequence alignments, hidden Markov Models (HMMs), consensus sequences, and genome annotations. Dfam represents a collection of multiple sequence alignments, each containing a set of representative members of a specific transposable element family. These alignments (seed alignments) are used to generate HMMs and consensus sequences for each family. The Dfam website gives information about each family, and provides genome annotations for a collection of core genomes.", "publications": [{"id": 1909, "pubmed_id": 26612867, "title": "The Dfam database of repetitive DNA families.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1272", "authors": "Hubley R,Finn RD,Clements J,Eddy SR,Jones TA,Bao W,Smit AF,Wheeler TJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1272", "created_at": "2021-09-30T08:25:54.670Z", "updated_at": "2021-09-30T11:29:23.035Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1578, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1810", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.431Z", "metadata": {"doi": "10.25504/FAIRsharing.x16th8", "name": "RTPrimerDB", "status": "deprecated", "contacts": [{"contact-email": "rtprimerdb@medgen.ugent.be"}], "homepage": "http://medgen.ugent.be/rtprimerdb/", "identifier": 1810, "description": "RTPrimerDB is a public database for primer and probe sequences used in real-time PCR assays employing popular chemistries (SYBR Green I, Taqman, Hybridisation Probes, Molecular Beacon) to prevent time-consuming primer design and experimental optimisation, and to introduce a certain level of uniformity and standardisation among different laboratories.", "abbreviation": "RTPrimerDB", "support-links": [{"url": "http://medgen.ugent.be/rtprimerdb/index.php?faq", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://medgen.ugent.be/rtprimerdb/index.php?downloads", "name": "Download", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and the developers have confirmed that this record should be deprecated."}, "legacy-ids": ["biodbcore-000270", "bsg-d000270"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Expression data"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: RTPrimerDB", "abbreviation": "RTPrimerDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.x16th8", "doi": "10.25504/FAIRsharing.x16th8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RTPrimerDB is a public database for primer and probe sequences used in real-time PCR assays employing popular chemistries (SYBR Green I, Taqman, Hybridisation Probes, Molecular Beacon) to prevent time-consuming primer design and experimental optimisation, and to introduce a certain level of uniformity and standardisation among different laboratories.", "publications": [{"id": 322, "pubmed_id": 17068075, "title": "qPrimerDepot: a primer database for quantitative real time PCR.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl767", "authors": "Cui W., Taub DD., Gardner K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl767", "created_at": "2021-09-30T08:22:54.574Z", "updated_at": "2021-09-30T08:22:54.574Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1854", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:59.794Z", "metadata": {"doi": "10.25504/FAIRsharing.pda11d", "name": "Integrated resource of protein families, domains and functional sites", "status": "ready", "contacts": [{"contact-name": "Robert D Finn", "contact-email": "rdf@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/interpro", "citations": [{"doi": "10.1093/nar/gky1100", "pubmed-id": 30398656, "publication-id": 1233}], "identifier": 1854, "description": "InterPro is a resource that provides functional analysis of protein sequences by classifying them into families and predicting the presence of domains and important sites. To classify proteins in this way, InterPro uses predictive models, known as signatures, provided by several different databases (referred to as member databases) that make up the InterPro consortium.", "abbreviation": "InterPro", "access-points": [{"url": "https://www.ebi.ac.uk/interpro/api/static_files/swagger/", "name": "InterPro API", "type": "REST"}], "support-links": [{"url": "https://proteinswebteam.github.io/interpro-blog/", "name": "Blog", "type": "Github"}, {"url": "https://www.ebi.ac.uk/support/interpro-general-query", "name": "InterPro Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/interpro/help/faqs/", "name": "InterPro FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/interpro/release_notes/", "name": "Release Notes", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/interpro/about/", "name": "About InterPro", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/interpro-an-introduction", "name": "Interpro an introduction", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/interpro-functional-and-structural-analysis-of-protein-sequences", "name": "Interpro functional and structural analysis of protein sequences", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/interpro-quick-tour", "name": "Interpro quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/a-critical-guide-to-interpro", "name": "A Critical Guide to InterPro", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/interpro/training.html", "name": "InterPro Training and Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/InterProDB", "name": "@InterProDB", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "http://www.ebi.ac.uk/interpro/download.html", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/interpro/search/sequence/", "name": "Sequence Search", "type": "data access"}, {"name": "Releases every 8 weeks", "type": "data release"}, {"url": "https://www.ebi.ac.uk/interpro/entry/InterPro/#table", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://github.com/ebi-pf-team/interproscan/wiki", "name": "InterProScan"}, {"url": "https://ebi-webcomponents.github.io/nightingale/#/", "name": "Nigthtingale"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010798", "name": "re3data:r3d100010798", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006695", "name": "SciCrunch:RRID:SCR_006695", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000315", "bsg-d000315"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Biology"], "domains": ["Functional domain", "Protein domain", "Computational biological predictions", "Function analysis", "Molecular function", "Binding motif", "Sequencing", "Protein", "Conserved region", "Amino acid sequence", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Integrated resource of protein families, domains and functional sites", "abbreviation": "InterPro", "url": "https://fairsharing.org/10.25504/FAIRsharing.pda11d", "doi": "10.25504/FAIRsharing.pda11d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: InterPro is a resource that provides functional analysis of protein sequences by classifying them into families and predicting the presence of domains and important sites. To classify proteins in this way, InterPro uses predictive models, known as signatures, provided by several different databases (referred to as member databases) that make up the InterPro consortium.", "publications": [{"id": 1233, "pubmed_id": 30398656, "title": "InterPro in 2019: improving coverage, classification and access to protein sequence annotations.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1100", "authors": "Mitchell AL,Attwood TK,Babbitt PC,Blum M,Bork P,Bridge A,Brown SD,Chang HY,El-Gebali S,Fraser MI,Gough J,Haft DR,Huang H,Letunic I,Lopez R,Luciani A,Madeira F,Marchler-Bauer A,Mi H,Natale DA,Necci M,Nuka G,Orengo C,Pandurangan AP,Paysan-Lafosse T,Pesseat S,Potter SC,Qureshi MA,Rawlings ND,Redaschi N,Richardson LJ,Rivoire C,Salazar GA,Sangrador-Vegas A,Sigrist CJA,Sillitoe I,Sutton GG,Thanki N,Thomas PD,Tosatto SCE,Yong SY,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1100", "created_at": "2021-09-30T08:24:37.565Z", "updated_at": "2021-09-30T11:29:03.593Z"}, {"id": 2066, "pubmed_id": 15608177, "title": "InterPro, progress and status in 2005.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki106", "authors": "Mulder NJ., Apweiler R., Attwood TK., Bairoch A., Bateman A., Binns D., Bradley P., Bork P., Bucher P., Cerutti L., Copley R., Courcelle E., Das U., Durbin R., Fleischmann W., Gough J., Haft D., Harte N., Hulo N., Kahn D., Kanapin A., Krestyaninova M., Lonsdale D., Lopez R., Letunic I., Madera M., Maslen J., McDowall J., Mitchell A., Nikolskaya AN., Orchard S., Pagni M., Ponting CP., Quevillon E., Selengut J., Sigrist CJ., Silventoinen V., Studholme DJ., Vaughan R., Wu CH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki106", "created_at": "2021-09-30T08:26:12.857Z", "updated_at": "2021-09-30T08:26:12.857Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 575, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1572", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:46.143Z", "metadata": {"doi": "10.25504/FAIRsharing.k337f0", "name": "DNA Data Bank of Japan", "status": "ready", "contacts": [{"contact-name": "Osamu Ogasawara", "contact-email": "oogasawa@nig.ac.jp"}], "homepage": "https://www.ddbj.nig.ac.jp/ddbj", "identifier": 1572, "description": "An annotated collection of all publicly available nucleotide and protein sequences. DDBJ collects sequence data mainly from Japanese researchers, as well as researchers in other countries. DDBJ is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "abbreviation": "DDBJ", "access-points": [{"url": "https://www.ddbj.nig.ac.jp/wabi.html", "name": "Web API for Biology", "type": "Other"}], "support-links": [{"url": "https://www.facebook.com/ddbjcenter/", "name": "DDBJ Facebook", "type": "Facebook"}, {"url": "https://www.ddbj.nig.ac.jp/news/en/index-e.html?db=ddbj", "name": "News", "type": "Blog/News"}, {"url": "https://www.ddbj.nig.ac.jp/contact-e.html", "name": "DDBJ Contact Form", "type": "Contact form"}, {"url": "ddbj@ddbj.nig.ac.jp", "name": "DDBJ General Contact", "type": "Support email"}, {"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/ddbj/", "name": "DDBJ GitHub", "type": "Github"}, {"url": "https://drive.google.com/drive/u/0/folders/1E0cxLbWV8RGYUdNs0oKfXMij0TzJDQVD", "name": "DDBJ Google Drive", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/ddbjvideo", "name": "DDBJ YouTube Channel", "type": "Video"}, {"url": "https://www.ddbj.nig.ac.jp/announcements-e.html", "name": "DDBJ RSS Feed", "type": "Blog/News"}, {"url": "https://twitter.com/DDBJ_topics", "name": "@DDBJ_topics", "type": "Twitter"}], "year-creation": 1987, "data-processes": [{"url": "https://www.ddbj.nig.ac.jp/ddbj/submission-e.html", "name": "Data submission", "type": "data curation"}, {"url": "https://www.ddbj.nig.ac.jp/ddbj/websub-e.html", "name": "DDBJ Nucleotide Sequence Submission System (NSSS)", "type": "data curation"}, {"url": "https://www.ddbj.nig.ac.jp/ddbj/mss-e.html", "name": "Mass Submission System", "type": "data curation"}, {"url": "https://www.ddbj.nig.ac.jp/ddbj/updt-e.html", "name": "Data Updates", "type": "data curation"}, {"name": "Data release", "type": "data release"}, {"url": "http://ddbj.nig.ac.jp/arsa/", "name": "Search (ARSA)", "type": "data access"}, {"url": "ftp://ftp.ddbj.nig.ac.jp/", "name": "Download via FTP", "type": "data release"}, {"url": "https://ddbj.nig.ac.jp/DRASearch/", "name": "DRA Search", "type": "data access"}, {"url": "http://getentry.ddbj.nig.ac.jp/top-e.html", "name": "Search (getentry)", "type": "data access"}, {"url": "http://ddbj.nig.ac.jp/tx_search/?lang=en", "name": "Search Taxonomy", "type": "data access"}], "associated-tools": [{"url": "http://clustalw.ddbj.nig.ac.jp/index.php?lang=en", "name": "ClustalW"}, {"url": "http://blast.ddbj.nig.ac.jp/blastn?lang=en", "name": "BLAST"}, {"url": "http://ddbj.nig.ac.jp/vecscreen/", "name": "VecScreen"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010218", "name": "re3data:r3d100010218", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002359", "name": "SciCrunch:RRID:SCR_002359", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000027", "bsg-d000027"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Metagenomics", "Genomics", "Bioinformatics", "Data Management", "Transcriptomics"], "domains": ["DNA sequence data", "Annotation", "Sequence annotation", "Deoxyribonucleic acid", "Nucleotide", "Sequencing", "Amino acid sequence", "Genome", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "European Union", "Japan"], "name": "FAIRsharing record for: DNA Data Bank of Japan", "abbreviation": "DDBJ", "url": "https://fairsharing.org/10.25504/FAIRsharing.k337f0", "doi": "10.25504/FAIRsharing.k337f0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: An annotated collection of all publicly available nucleotide and protein sequences. DDBJ collects sequence data mainly from Japanese researchers, as well as researchers in other countries. DDBJ is part of the International Nucleotide Sequence Database Collaboration (INSDC), which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at the NCBI. These three organizations exchange data on a daily basis.", "publications": [{"id": 655, "pubmed_id": 30357349, "title": "DDBJ update: the Genomic Expression Archive (GEA) for functional genomics data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1002", "authors": "Kodama Y,Mashima J,Kosuge T,Ogasawara O", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1002", "created_at": "2021-09-30T08:23:32.284Z", "updated_at": "2021-09-30T11:28:48.717Z"}, {"id": 2097, "pubmed_id": 29040613, "title": "DNA Data Bank of Japan: 30th anniversary.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx926", "authors": "Kodama Y,Mashima J,Kosuge T,Kaminuma E,Ogasawara O,Okubo K,Nakamura Y,Takagi T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx926", "created_at": "2021-09-30T08:26:16.313Z", "updated_at": "2021-09-30T11:29:29.128Z"}], "licence-links": [{"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 2312, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1818", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:47.033Z", "metadata": {"doi": "10.25504/FAIRsharing.1tbrdz", "name": "Coli Genetic Stock Center", "status": "ready", "contacts": [{"contact-name": "John Wertz", "contact-email": "john.wertz@yale.edu"}], "homepage": "https://cgsc.biology.yale.edu/", "citations": [], "identifier": 1818, "description": "The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", "abbreviation": "CGSC", "support-links": [{"url": "CGSC@yale.edu", "type": "Support email"}, {"url": "http://cgsc.biology.yale.edu/FAQonProcs.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cgsc.biology.yale.edu/cgsc.php", "type": "Help documentation"}], "year-creation": 1989, "data-processes": [{"url": "http://cgsc.biology.yale.edu/StrainQueryForm.php", "name": "search", "type": "data access"}, {"url": "http://cgsc.biology.yale.edu/StrainQuery.php", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010585", "name": "re3data:r3d100010585", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002303", "name": "SciCrunch:RRID:SCR_002303", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000278", "bsg-d000278"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence position", "Genome map", "Gene name", "Mutation analysis", "Gene", "Genotype", "Genetic strain"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Coli Genetic Stock Center", "abbreviation": "CGSC", "url": "https://fairsharing.org/10.25504/FAIRsharing.1tbrdz", "doi": "10.25504/FAIRsharing.1tbrdz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", "publications": [{"id": 1563, "pubmed_id": 17352909, "title": "Strain collections and genetic nomenclature.", "year": 2007, "url": "http://doi.org/10.1016/S0076-6879(06)21001-2", "authors": "Maloy SR., Hughes KT.,", "journal": "Meth. Enzymol.", "doi": "10.1016/S0076-6879(06)21001-2", "created_at": "2021-09-30T08:25:15.284Z", "updated_at": "2021-09-30T08:25:15.284Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2957", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-20T20:47:17.000Z", "updated-at": "2022-02-08T10:54:03.296Z", "metadata": {"doi": "10.25504/FAIRsharing.41b0ad", "name": "Atlas of Cancer Signalling Network", "status": "ready", "contacts": [{"contact-email": "acsn@curie.fr"}], "homepage": "https://acsn.curie.fr/ACSN2/ACSN2.html", "citations": [{"doi": "10.1038/oncsis.2015.19", "pubmed-id": 26192618, "publication-id": 2891}], "identifier": 2957, "description": "ACSN is a web-based multi-scale resource of biological maps depicting molecular processes in cancer cell and tumor microenvironment. The Atlas represents interconnected cancer-related signalling and metabolic network maps. Molecular mechanisms are depicted on the maps at the level of biochemical interactions, forming a large seamless network. The Atlas is a \"geographic-like\" interactive \"world map\" of molecular interactions leading the hallmarks of cancer as described by Hanahan and Weinberg.", "abbreviation": "ACSN", "data-curation": {}, "support-links": [{"url": "https://acsn.curie.fr/ACSN2/FAQ.html", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://acsn.curie.fr/ACSN2/guides.html", "name": "Online Guides", "type": "Help documentation"}, {"url": "https://twitter.com/acsn_curie", "name": "@acsn_curie", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://acsn.curie.fr/ACSN2/downloads.html", "name": "Download", "type": "data access"}, {"url": "https://acsn.curie.fr/ACSN2/features.html", "name": "Manual curation", "type": "data curation"}, {"url": "https://acsn.curie.fr/ACSN2/maps.html", "name": "Browse Maps", "type": "data access"}], "associated-tools": [{"url": "https://navicell.curie.fr/", "name": "NaviCell"}, {"url": "https://navicom.curie.fr/bridge.php", "name": "NaviCom"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001461", "bsg-d001461"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Medicine", "Medicines Research and Development", "Cell Biology", "Biomedical Science"], "domains": ["Cancer", "Cellular assay", "Cell morphology", "Cell cycle", "Signaling", "Tumor"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Atlas of Cancer Signalling Network", "abbreviation": "ACSN", "url": "https://fairsharing.org/10.25504/FAIRsharing.41b0ad", "doi": "10.25504/FAIRsharing.41b0ad", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ACSN is a web-based multi-scale resource of biological maps depicting molecular processes in cancer cell and tumor microenvironment. The Atlas represents interconnected cancer-related signalling and metabolic network maps. Molecular mechanisms are depicted on the maps at the level of biochemical interactions, forming a large seamless network. The Atlas is a \"geographic-like\" interactive \"world map\" of molecular interactions leading the hallmarks of cancer as described by Hanahan and Weinberg.", "publications": [{"id": 2891, "pubmed_id": 26192618, "title": "Atlas of Cancer Signalling Network: a systems biology resource for integrative analysis of cancer data with Google Maps.", "year": 2015, "url": "http://doi.org/10.1038/oncsis.2015.19", "authors": "Kuperstein I,Bonnet E,Nguyen HA,Cohen D,Viara E,Grieco L,Fourquet S,Calzone L,Russo C,Kondratova M,Dutreix M,Barillot E,Zinovyev A", "journal": "Oncogenesis", "doi": "10.1038/oncsis.2015.19", "created_at": "2021-09-30T08:27:55.982Z", "updated_at": "2021-09-30T08:27:55.982Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1956", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:52.019Z", "metadata": {"doi": "10.25504/FAIRsharing.2srshy", "name": "REFOLDdb", "status": "ready", "contacts": [{"contact-name": "General Contact - NIG", "contact-email": "webmaster@nig.ac.jp"}], "homepage": "https://pford.info/refolddb/", "identifier": 1956, "description": "REFOLDdb is a resource for the optimization of protein refolding, referring to published methods employed in the refolding of recombinant proteins. It stores a collection of published experimental approaches and records for refolding proteins. It contains data converted from the original REFOLD database that had been created and updated until 2009 by Monash University in Australia, as well as data retrieved from articles on refold technologies published since 2009.", "abbreviation": "REFOLDdb", "support-links": [{"url": "https://pford.info/refolddb/help.cgi?lang=EN", "name": "Help Pages", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://pford.info/refolddatabase/", "name": "Original REFOLD database (Read Only)", "type": "data access"}, {"name": "Download Available", "type": "data release"}, {"url": "https://pford.info/refolddb/search_array.cgi?lang=EN", "name": "BLAST Search", "type": "data access"}], "associated-tools": [{"url": "https://pford.info/refolddb/search.cgi?lang=EN", "name": "Search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010553", "name": "re3data:r3d100010553", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007889", "name": "SciCrunch:RRID:SCR_007889", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000422", "bsg-d000422"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Molecular structure", "Protein folding", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia", "Japan"], "name": "FAIRsharing record for: REFOLDdb", "abbreviation": "REFOLDdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.2srshy", "doi": "10.25504/FAIRsharing.2srshy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: REFOLDdb is a resource for the optimization of protein refolding, referring to published methods employed in the refolding of recombinant proteins. It stores a collection of published experimental approaches and records for refolding proteins. It contains data converted from the original REFOLD database that had been created and updated until 2009 by Monash University in Australia, as well as data retrieved from articles on refold technologies published since 2009.", "publications": [{"id": 427, "pubmed_id": 16381847, "title": "The REFOLD database: a tool for the optimization of protein expression and refolding.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj080", "authors": "Chow MK., Amin AA., Fulton KF., Fernando T., Kamau L., Batty C., Louca M., Ho S., Whisstock JC., Bottomley SP., Buckle AM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj080", "created_at": "2021-09-30T08:23:06.441Z", "updated_at": "2021-09-30T08:23:06.441Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1700, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2267", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-16T10:32:49.000Z", "updated-at": "2021-12-06T10:48:34.802Z", "metadata": {"doi": "10.25504/FAIRsharing.fk0z49", "name": "Host Pathogen Interaction Database", "status": "ready", "contacts": [{"contact-name": "HPIDB Administrators", "contact-email": "hpidb@igbb.msstate.edu"}], "homepage": "http://hpidb.igbb.msstate.edu/", "citations": [{"doi": "10.1093/database/baw103", "pubmed-id": 27374121, "publication-id": 1459}], "identifier": 2267, "description": "HPIDB 3.0 is a resource that helps annotate, predict and display host-pathogen interactions (HPI). HPI that underpin infectious diseases are critical for developing novel intervention strategies. HPIDB is a host-pathogen protein-protein interaction (PPI) database, which serves as a unified resource for host-pathogen interactions. HPIDB integrates experimental PPIs from several public databases into a single, non-redundant web accessible resource.", "abbreviation": "HPIDB", "support-links": [{"url": "http://hpidb.igbb.msstate.edu/help.html", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://hpidb.igbb.msstate.edu/about.html", "name": "About HPIDB", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://hpidb.igbb.msstate.edu/sequence.html", "name": "Search by Sequence", "type": "data access"}, {"url": "http://hpidb.igbb.msstate.edu/hpi.html", "name": "Search by Homologous HPIs", "type": "data access"}, {"url": "http://hpidb.igbb.msstate.edu/keyword.html", "name": "Search by Keyword", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012381", "name": "re3data:r3d100012381", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000741", "bsg-d000741"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Agriculture", "Life Science"], "domains": ["Protein interaction", "Pathogen", "Host"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Host Pathogen Interaction Database", "abbreviation": "HPIDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.fk0z49", "doi": "10.25504/FAIRsharing.fk0z49", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HPIDB 3.0 is a resource that helps annotate, predict and display host-pathogen interactions (HPI). HPI that underpin infectious diseases are critical for developing novel intervention strategies. HPIDB is a host-pathogen protein-protein interaction (PPI) database, which serves as a unified resource for host-pathogen interactions. HPIDB integrates experimental PPIs from several public databases into a single, non-redundant web accessible resource.", "publications": [{"id": 1458, "pubmed_id": 20946599, "title": "HPIDB--a unified resource for host-pathogen interactions.", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-S6-S16", "authors": "Kumar R,Nanduri B", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-S6-S16", "created_at": "2021-09-30T08:25:02.944Z", "updated_at": "2021-09-30T08:25:02.944Z"}, {"id": 1459, "pubmed_id": 27374121, "title": "HPIDB 2.0: a curated database for host-pathogen interactions.", "year": 2016, "url": "http://doi.org/10.1093/database/baw103", "authors": "Ammari MG,Gresham CR,McCarthy FM,Nanduri B", "journal": "Database (Oxford)", "doi": "10.1093/database/baw103", "created_at": "2021-09-30T08:25:03.055Z", "updated_at": "2021-09-30T08:25:03.055Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1814", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.907Z", "metadata": {"doi": "10.25504/FAIRsharing.mcqs21", "name": "Insect Microsatellite Database", "status": "ready", "contacts": [{"contact-name": "Javaregowda Nagaraju", "contact-email": "jnagaraju@cdfd.org.in"}], "homepage": "http://www.cdfd.org.in/insatdb", "identifier": 1814, "description": "InSatDb, unlike many other microsatellite databases that cater largely to the needs of microsatellites as markers, presents an interactive interface to query information regarding microsatellite characteristics of five fully sequenced insect genomes (fruit-fly, honeybee, malarial mosquito, red-flour beetle and silkworm).", "abbreviation": "InSatDb", "support-links": [{"url": "http://cdfd.org.in/INSATDB/Tutorial.php", "type": "Help documentation"}, {"url": "http://cdfd.org.in/INSATDB/Glossary.php", "type": "Help documentation"}], "data-processes": [{"url": "http://cdfd.org.in/INSATDB/download.php", "name": "Download", "type": "data access"}, {"url": "http://cdfd.org.in/INSATDB/msatform.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000274", "bsg-d000274"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Microsatellite", "Genome"], "taxonomies": ["Anopheles gambiae", "Apis", "Apis mellifera", "Bombyx mori", "Drosophila", "Drosophila melanogaster", "Tribolium castaneum"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Insect Microsatellite Database", "abbreviation": "InSatDb", "url": "https://fairsharing.org/10.25504/FAIRsharing.mcqs21", "doi": "10.25504/FAIRsharing.mcqs21", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: InSatDb, unlike many other microsatellite databases that cater largely to the needs of microsatellites as markers, presents an interactive interface to query information regarding microsatellite characteristics of five fully sequenced insect genomes (fruit-fly, honeybee, malarial mosquito, red-flour beetle and silkworm).", "publications": [{"id": 1292, "pubmed_id": 17082205, "title": "InSatDb: a microsatellite database of fully sequenced insect genomes.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl778", "authors": "Archak S., Meduri E., Kumar PS., Nagaraju J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl778", "created_at": "2021-09-30T08:24:44.201Z", "updated_at": "2021-09-30T08:24:44.201Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3109", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-08T11:17:03.000Z", "updated-at": "2022-02-08T10:54:26.297Z", "metadata": {"doi": "10.25504/FAIRsharing.f1777e", "name": "Basel Register of Thesauri, Ontologies and Classifications", "status": "ready", "contacts": [], "homepage": "https://bartoc.org/", "citations": [], "identifier": 3109, "description": "The Basel Register of Thesauri, Ontologies & Classifications (BARTOC) is a database of Knowledge Organization Systems (KOS) and KOS -related registries. Its main goal is to list as many KOS as possible in one place in order to achieve greater visibility, make them searchable and comparable, and foster knowledge sharing. BARTOC includes any kind of KOS from any subject area, in any language, any publication format, and any form of accessibility. BARTOC\u2019s search interface is available in 20 European languages.", "abbreviation": "BARTOC", "access-points": [{"url": "https://bartoc.org/api/", "name": "BARTOC JSKOS API", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "http://bartoc.org/en/contact", "name": "Editor contact details", "type": "Contact form"}, {"url": "https://bartoc.org/download", "name": "How to Download BARTOC", "type": "Help documentation"}, {"url": "http://bartoc.org/en/content/about", "name": "About page", "type": "Help documentation"}, {"url": "https://github.com/gbv/bartoc.org", "name": "GitHub Project", "type": "Github"}, {"url": "https://bartoc.org/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/BARTOC", "name": "BARTOC Wikipedia Entry", "type": "Wikipedia"}, {"url": "https://github.com/gbv/bartoc.org/issues", "name": "Report an issue", "type": "Contact form"}], "year-creation": 2013, "data-processes": [{"url": "http://bartoc.org/en", "name": "Search For/In Vocabularies", "type": "data access"}, {"url": "https://bartoc.org/data/dumps/latest.ndjson", "name": "Download (NDJSON)", "type": "data release"}, {"url": "https://bartoc.org/vocabularies", "name": "Search for Vocabularies", "type": "data access"}, {"url": "https://bartoc.org/registries", "name": "Browse Terminology Registries", "type": "data access"}], "associated-tools": [{"url": "http://ndjson.org/libraries.html", "name": "Libraries"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001617", "bsg-d001617"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Knowledge and Information Systems", "Ontology and Terminology"], "domains": ["Bibliography", "Knowledge representation"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Semantic"], "countries": ["Greece", "United Kingdom", "Norway", "United States", "Italy", "Austria", "France", "Netherlands", "South Korea", "Spain", "Switzerland"], "name": "FAIRsharing record for: Basel Register of Thesauri, Ontologies and Classifications", "abbreviation": "BARTOC", "url": "https://fairsharing.org/10.25504/FAIRsharing.f1777e", "doi": "10.25504/FAIRsharing.f1777e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Basel Register of Thesauri, Ontologies & Classifications (BARTOC) is a database of Knowledge Organization Systems (KOS) and KOS -related registries. Its main goal is to list as many KOS as possible in one place in order to achieve greater visibility, make them searchable and comparable, and foster knowledge sharing. BARTOC includes any kind of KOS from any subject area, in any language, any publication format, and any form of accessibility. BARTOC\u2019s search interface is available in 20 European languages.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1631, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2687", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T10:01:03.000Z", "updated-at": "2021-11-24T13:17:53.734Z", "metadata": {"doi": "10.25504/FAIRsharing.QMwdW8", "name": "ChickpeaMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://mines.legumeinfo.org/chickpeamine", "identifier": 2687, "description": "ChickpeaMine integrates data for chickpea varieties desi and kabuli. It is developed by LIS/NCGR, built from the LIS chado database and the Chickpea Transcriptome Atlas - I.", "abbreviation": "ChickpeaMine", "access-points": [{"url": "https://mines.legumeinfo.org/chickpeamine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/chickpeamine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/chickpeamine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/chickpeamine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/chickpeamine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/chickpeamine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001184", "bsg-d001184"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": [], "taxonomies": ["Cicer arietinum", "Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ChickpeaMine", "abbreviation": "ChickpeaMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.QMwdW8", "doi": "10.25504/FAIRsharing.QMwdW8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChickpeaMine integrates data for chickpea varieties desi and kabuli. It is developed by LIS/NCGR, built from the LIS chado database and the Chickpea Transcriptome Atlas - I.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1317, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1659", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.483Z", "metadata": {"doi": "10.25504/FAIRsharing.ngme77", "name": "Human disease methylation database", "status": "ready", "homepage": "http://bioinfo.hrbmu.edu.cn/diseasemeth", "identifier": 1659, "description": "The human disease methylation database, DiseaseMeth is a web based resource focused on the aberrant methylomes of human diseases. Until recently, bulks of large-scale data are avaible and are increasingly grown, from which more information can be mined to gain further information towards human diseases. Our mission is to provide a curated set of methylation information datasets and tools in the human genome, to support and promote research in this area. Especially, we provide a genome-scale landscape to show human methylaton information in a scalable and flexible manner.", "abbreviation": "DiseaseMeth", "support-links": [{"url": "http://www.bio-bigdata.com/diseasemeth/help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "access to historical files upon request", "type": "data versioning"}, {"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.bio-bigdata.com/diseasemeth/search.html", "name": "Search", "type": "data access"}, {"url": "http://www.bio-bigdata.com/diseasemeth/download.html", "name": "Data Download", "type": "data access"}], "associated-tools": [{"url": "http://www.bio-bigdata.com/diseasemeth/analyze.html", "name": "Analyze"}]}, "legacy-ids": ["biodbcore-000115", "bsg-d000115"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Abstract", "Methylation", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Human disease methylation database", "abbreviation": "DiseaseMeth", "url": "https://fairsharing.org/10.25504/FAIRsharing.ngme77", "doi": "10.25504/FAIRsharing.ngme77", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The human disease methylation database, DiseaseMeth is a web based resource focused on the aberrant methylomes of human diseases. Until recently, bulks of large-scale data are avaible and are increasingly grown, from which more information can be mined to gain further information towards human diseases. Our mission is to provide a curated set of methylation information datasets and tools in the human genome, to support and promote research in this area. Especially, we provide a genome-scale landscape to show human methylaton information in a scalable and flexible manner.", "publications": [{"id": 163, "pubmed_id": 22135302, "title": "DiseaseMeth: a human disease methylation database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1169", "authors": "Lv J., Liu H., Su J., Wu X., Liu H., Li B., Xiao X., Wang F., Wu Q., Zhang Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1169", "created_at": "2021-09-30T08:22:37.939Z", "updated_at": "2021-09-30T08:22:37.939Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2064", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:21.928Z", "metadata": {"doi": "10.25504/FAIRsharing.scsnja", "name": "Signaling Pathway Integrated Knowledge Engine", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "spike@post.tau.ac.il"}], "homepage": "http://www.cs.tau.ac.il/~spike/", "identifier": 2064, "description": "SPIKE (Signaling Pathway Integrated Knowledge Engine) is an interactive software environment that graphically displays biological signaling networks, allows dynamic layout and navigation through these networks, and enables the superposition of DNA microarray and other functional genomics data on interaction maps.", "abbreviation": "SPIKE", "support-links": [{"url": "http://www.cs.tau.ac.il/~spike/", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.cs.tau.ac.il/~spike/formats.html", "name": "Download", "type": "data access"}, {"url": "http://spike.cs.tau.ac.il/spike2/", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000531", "bsg-d000531"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Expression data", "Network model", "Deoxyribonucleic acid", "Signaling"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: Signaling Pathway Integrated Knowledge Engine", "abbreviation": "SPIKE", "url": "https://fairsharing.org/10.25504/FAIRsharing.scsnja", "doi": "10.25504/FAIRsharing.scsnja", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SPIKE (Signaling Pathway Integrated Knowledge Engine) is an interactive software environment that graphically displays biological signaling networks, allows dynamic layout and navigation through these networks, and enables the superposition of DNA microarray and other functional genomics data on interaction maps.", "publications": [{"id": 533, "pubmed_id": 21097778, "title": "SPIKE: a database of highly curated human signaling pathways.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1167", "authors": "Paz A., Brownstein Z., Ber Y., Bialik S., David E., Sagir D., Ulitsky I., Elkon R., Kimchi A., Avraham KB., Shiloh Y., Shamir R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1167", "created_at": "2021-09-30T08:23:18.242Z", "updated_at": "2021-09-30T08:23:18.242Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2528", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-01T22:54:31.000Z", "updated-at": "2021-11-24T13:15:38.699Z", "metadata": {"doi": "10.25504/FAIRsharing.k0kcjw", "name": "Planteome", "status": "ready", "contacts": [{"contact-name": "Pankaj Jaiswal", "contact-email": "jaiswalp@oregonstate.edu", "contact-orcid": "0000-0002-1005-8383"}], "homepage": "http://www.planteome.org", "identifier": 2528, "description": "A resource providing data on bioentities and their associated ontology terms for Plant Biology. The database provides access to ontology-based annotations of genes, phenotypes and germplasms from about 90 plant species. A number of internal and external ontologies are used to annotate the biological data available from this resource.", "abbreviation": "Planteome", "support-links": [{"url": "http://www.planteome.org/contact", "name": "Feedback and Contact", "type": "Contact form"}, {"url": "https://github.com/Planteome", "name": "Access Ontology and Software files", "type": "Github"}], "year-creation": 2013, "data-processes": [{"url": "http://browser.planteome.org/amigo/search/bioentity", "name": "Bioentity Search", "type": "data access"}], "associated-tools": [{"url": "http://planteome.org/oat/", "name": "Ontology Enrichment Analysis Tool 1.0 Beta"}, {"url": "http://noctua.planteome.org/", "name": "Planteome Noctua (community gene annotation tool) 1.0 Beta"}]}, "legacy-ids": ["biodbcore-001011", "bsg-d001011"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Life Science", "Plant Anatomy", "Ontology and Terminology"], "domains": ["Gene Ontology enrichment", "Genome annotation", "Gene functional annotation", "Phenotype", "Gene", "Quantitative trait loci", "Germplasm"], "taxonomies": ["Algae", "Arabidopsis thaliana", "Bryophyta", "Cycadophyta", "Dicotyledones", "Fabaceae", "Ginkgophyta", "Gnetophyta", "Lycopodiopsida", "Monocotyledons", "Oryza", "Pinophyta", "Plantae", "Polypodiopsida", "Solanaceae", "Viridiplantae"], "user-defined-tags": ["Plant growth stages", "Plant Phenotypes and Traits"], "countries": ["United States"], "name": "FAIRsharing record for: Planteome", "abbreviation": "Planteome", "url": "https://fairsharing.org/10.25504/FAIRsharing.k0kcjw", "doi": "10.25504/FAIRsharing.k0kcjw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A resource providing data on bioentities and their associated ontology terms for Plant Biology. The database provides access to ontology-based annotations of genes, phenotypes and germplasms from about 90 plant species. A number of internal and external ontologies are used to annotate the biological data available from this resource.", "publications": [{"id": 968, "pubmed_id": 18629207, "title": "Plant Ontology (PO): a Controlled Vocabulary of Plant Structures and Growth Stages.", "year": 2008, "url": "http://doi.org/10.1002/cfg.496", "authors": "Jaiswal P,Avraham S,Ilic K,Kellogg EA,McCouch S,Pujar A,Reiser L,Rhee SY,Sachs MM,Schaeffer M,Stein L,Stevens P,Vincent L,Ware D,Zapata F", "journal": "Comp Funct Genomics", "doi": "10.1002/cfg.496", "created_at": "2021-09-30T08:24:07.096Z", "updated_at": "2021-09-30T08:24:07.096Z"}, {"id": 1152, "pubmed_id": 15659431, "title": "Biological ontologies in rice databases. An introduction to the activities in Gramene and Oryzabase.", "year": 2005, "url": "http://doi.org/10.1093/pcp/pci505", "authors": "Yamazaki Y,Jaiswal P", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pci505", "created_at": "2021-09-30T08:24:28.124Z", "updated_at": "2021-09-30T08:24:28.124Z"}, {"id": 1161, "pubmed_id": 26519402, "title": "The Plant Ontology: A Tool for Plant Genomics.", "year": 2015, "url": "http://doi.org/10.1007/978-1-4939-3167-5_5", "authors": "Cooper L,Jaiswal P", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-3167-5_5", "created_at": "2021-09-30T08:24:29.098Z", "updated_at": "2021-09-30T08:24:29.098Z"}, {"id": 1173, "pubmed_id": 25774204, "title": "An ontology approach to comparative phenomics in plants.", "year": 2015, "url": "http://doi.org/10.1186/s13007-015-0053-y", "authors": "Oellrich A,Walls RL,Cannon EK,Cannon SB,Cooper L,Gardiner J,Gkoutos GV,Harper L,He M,Hoehndorf R,Jaiswal P,Kalberer SR,Lloyd JP,Meinke D,Menda N,Moore L,Nelson RT,Pujar A,Lawrence CJ,Huala E", "journal": "Plant Methods", "doi": "10.1186/s13007-015-0053-y", "created_at": "2021-09-30T08:24:30.390Z", "updated_at": "2021-09-30T08:24:30.390Z"}, {"id": 1325, "pubmed_id": 22847540, "title": "Ontologies as integrative tools for plant science.", "year": 2012, "url": "http://doi.org/10.3732/ajb.1200222", "authors": "Walls RL,Athreya B,Cooper L,Elser J,Gandolfo MA,Jaiswal P,Mungall CJ,Preece J,Rensing S,Smith B,Stevenson DW", "journal": "Am J Bot", "doi": "10.3732/ajb.1200222", "created_at": "2021-09-30T08:24:48.317Z", "updated_at": "2021-09-30T08:24:48.317Z"}, {"id": 1695, "pubmed_id": 23220694, "title": "The plant ontology as a tool for comparative plant anatomy and genomic analyses.", "year": 2012, "url": "http://doi.org/10.1093/pcp/pcs163", "authors": "Cooper L,Walls RL,Elser J,Gandolfo MA,Stevenson DW,Smith B,Preece J,Athreya B,Mungall CJ,Rensing S,Hiss M,Lang D,Reski R,Berardini TZ,Li D,Huala E,Schaeffer M,Menda N,Arnaud E,Shrestha R,Yamazaki Y,Jaiswal P", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcs163", "created_at": "2021-09-30T08:25:29.995Z", "updated_at": "2021-09-30T08:25:29.995Z"}, {"id": 1809, "pubmed_id": 18194960, "title": "The Plant Ontology Database: a community resource for plant structure and developmental stages controlled vocabulary and annotations.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkm908", "authors": "Avraham S,Tung CW,Ilic K,Jaiswal P,Kellogg EA,McCouch S,Pujar A,Reiser L,Rhee SY,Sachs MM,Schaeffer M,Stein L,Stevens P,Vincent L,Zapata F,Ware D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm908", "created_at": "2021-09-30T08:25:43.061Z", "updated_at": "2021-09-30T11:29:21.185Z"}, {"id": 2165, "pubmed_id": 16905665, "title": "Whole-plant growth stage ontology for angiosperms and its application in plant biology.", "year": 2006, "url": "http://doi.org/10.1104/pp.106.085720", "authors": "Pujar A,Jaiswal P,Kellogg EA,Ilic K,Vincent L,Avraham S,Stevens P,Zapata F,Reiser L,Rhee SY,Sachs MM,Schaeffer M,Stein L,Ware D,McCouch S", "journal": "Plant Physiol", "doi": "10.1104/pp.106.085720", "created_at": "2021-09-30T08:26:24.033Z", "updated_at": "2021-09-30T08:26:24.033Z"}, {"id": 2166, "pubmed_id": 29186578, "title": "The Planteome database: an integrated resource for reference ontologies, plant genomics and phenomics.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1152", "authors": "Cooper L,Meier A,Laporte MA,Elser JL,Mungall C,Sinn BT,Cavaliere D,Carbon S,Dunn NA,Smith B,Qu B,Preece J,Zhang E,Todorovic S,Gkoutos G,Doonan JH,Stevenson DW,Arnaud E,Jaiswal P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1152", "created_at": "2021-09-30T08:26:24.139Z", "updated_at": "2021-09-30T11:29:30.419Z"}, {"id": 2168, "pubmed_id": 25562316, "title": "Finding our way through phenotypes.", "year": 2015, "url": "http://doi.org/10.1371/journal.pbio.1002033", "authors": "Deans AR,Lewis SE,Huala E,Anzaldo SS,Ashburner M,Balhoff JP,Blackburn DC,Blake JA,Burleigh JG,Chanet B,Cooper LD,Courtot M,Csosz S,Cui H,Dahdul W,Das S,Dececchi TA,Dettai A,Diogo R,Druzinsky RE,Dumontier M,Franz NM,Friedrich F,Gkoutos GV,Haendel M,Harmon LJ,Hayamizu TF,He Y,Hines HM,Ibrahim N,Jackson LM,Jaiswal P,James-Zorn C,Kohler S,Lecointre G,Lapp H,Lawrence CJ,Le Novere N,Lundberg JG,Macklin J,Mast AR,Midford PE,Miko I,Mungall CJ,Oellrich A,Osumi-Sutherland D,Parkinson H,Ramirez MJ,Richter S,Robinson PN,Ruttenberg A,Schulz KS,Segerdell E,Seltmann KC,Sharkey MJ,Smith AD,Smith B,Specht CD,Squires RB,Thacker RW,Thessen A,Fernandez-Triana J,Vihinen M,Vize PD,Vogt L,Wall CE,Walls RL,Westerfeld M,Wharton RA,Wirkner CS,Woolley JB,Yoder MJ,Zorn AM,Mabee P", "journal": "PLoS Biol", "doi": "10.1371/journal.pbio.1002033", "created_at": "2021-09-30T08:26:24.351Z", "updated_at": "2021-09-30T08:26:24.351Z"}, {"id": 2169, "pubmed_id": 17142475, "title": "The plant structure ontology, a unified vocabulary of anatomy and morphology of a flowering plant.", "year": 2006, "url": "http://doi.org/10.1104/pp.106.092825", "authors": "Ilic K,Kellogg EA,Jaiswal P,Zapata F,Stevens PF,Vincent LP,Avraham S,Reiser L,Pujar A,Sachs MM,Whitman NT,McCouch SR,Schaeffer ML,Ware DH,Stein LD,Rhee SY", "journal": "Plant Physiol", "doi": "10.1104/pp.106.092825", "created_at": "2021-09-30T08:26:24.466Z", "updated_at": "2021-09-30T08:26:24.466Z"}, {"id": 2194, "pubmed_id": 25584184, "title": "AISO: Annotation of Image Segments with Ontologies.", "year": 2015, "url": "http://doi.org/10.1186/2041-1480-5-50", "authors": "Lingutla NT,Preece J,Todorovic S,Cooper L,Moore L,Jaiswal P", "journal": "J Biomed Semantics", "doi": "10.1186/2041-1480-5-50", "created_at": "2021-09-30T08:26:27.333Z", "updated_at": "2021-09-30T08:26:27.333Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 41, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2342", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T14:44:06.000Z", "updated-at": "2021-12-06T10:48:57.833Z", "metadata": {"doi": "10.25504/FAIRsharing.p7btsb", "name": "CropPAL", "status": "ready", "contacts": [{"contact-name": "Dave Edwards", "contact-email": "dave.edwards@uq.edu.au"}], "homepage": "http://crop-pal.org/", "identifier": 2342, "description": "The compendium of crop Proteins with Annotated Locations (cropPAL) collates more than 550 data sets from previously published fluorescent tagging or mass spectrometry studies and eight pre-computed subcellular predictions for barley, wheat, rice and maize proteomes. The data collection including metadata for proteins and studies can be accessed through the search portal. The reciprocal blast and EnsemblPLants homology tree allows the search for location data across the four crop species as well as compares it to Arabidopsis data from SUBA.", "abbreviation": "CropPAL", "support-links": [{"url": "http://crop-pal.org/Tutorialv1.2.pdf", "type": "Help documentation"}], "year-creation": 2012, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011637", "name": "re3data:r3d100011637", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000820", "bsg-d000820"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Mass spectrum", "Cellular localization", "Protein"], "taxonomies": ["Hordeum vulgare", "Oryza sativa", "Triticum aestivum", "Zea mays"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: CropPAL", "abbreviation": "CropPAL", "url": "https://fairsharing.org/10.25504/FAIRsharing.p7btsb", "doi": "10.25504/FAIRsharing.p7btsb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The compendium of crop Proteins with Annotated Locations (cropPAL) collates more than 550 data sets from previously published fluorescent tagging or mass spectrometry studies and eight pre-computed subcellular predictions for barley, wheat, rice and maize proteomes. The data collection including metadata for proteins and studies can be accessed through the search portal. The reciprocal blast and EnsemblPLants homology tree allows the search for location data across the four crop species as well as compares it to Arabidopsis data from SUBA.", "publications": [{"id": 1658, "pubmed_id": 26556651, "title": "Finding the Subcellular Location of Barley, Wheat, Rice and Maize Proteins: The Compendium of Crop Proteins with Annotated Locations (cropPAL).", "year": 2015, "url": "http://doi.org/10.1093/pcp/pcv170", "authors": "Hooper CM,Castleden IR,Aryamanesh N,Jacoby RP,Millar AH", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcv170", "created_at": "2021-09-30T08:25:25.711Z", "updated_at": "2021-09-30T08:25:25.711Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 371, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1794", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.927Z", "metadata": {"doi": "10.25504/FAIRsharing.er98b1", "name": "CutDB", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "pmap_info@burnham.org"}], "homepage": "http://cutdb.burnham.org", "identifier": 1794, "description": "CutDB is one of the first systematic efforts to build an easily accessible collection of documented proteolytic events for natural proteins in vivo or in vitro. A CutDB entry is defined by a unique combination of these three attributes: protease, protein substrate, and cleavage site. Currently, CutDB integrates 3,070 proteolytic events for 470 different proteases captured from public archives (such as MEROPS and HPRD) and publications.", "abbreviation": "CutDB", "year-creation": 2006, "data-processes": [{"url": "http://cutdb.burnham.org/login/download", "name": "Download", "type": "data access"}, {"url": "http://cutdb.burnham.org", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000254", "bsg-d000254"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Enzyme", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CutDB", "abbreviation": "CutDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.er98b1", "doi": "10.25504/FAIRsharing.er98b1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CutDB is one of the first systematic efforts to build an easily accessible collection of documented proteolytic events for natural proteins in vivo or in vitro. A CutDB entry is defined by a unique combination of these three attributes: protease, protein substrate, and cleavage site. Currently, CutDB integrates 3,070 proteolytic events for 470 different proteases captured from public archives (such as MEROPS and HPRD) and publications.", "publications": [{"id": 867, "pubmed_id": 17142225, "title": "CutDB: a proteolytic event database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl813", "authors": "Igarashi Y., Eroshkin A., Gramatikova S., Gramatikoff K., Zhang Y., Smith JW., Osterman AL., Godzik A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl813", "created_at": "2021-09-30T08:23:55.775Z", "updated_at": "2021-09-30T08:23:55.775Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2987", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T12:18:59.000Z", "updated-at": "2021-12-06T10:48:57.020Z", "metadata": {"doi": "10.25504/FAIRsharing.oaLCAI", "name": "PathosSystems Resource Integration Center Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "help@patricbrc.org"}], "homepage": "https://www.patricbrc.org/", "identifier": 2987, "description": "PATRIC is part of the Bacterial Bioinformatics Resource Center, and is an information system designed to support the biomedical research community\u2019s work on bacterial infectious diseases via integration of vital pathogen information with rich data and analysis tools. PATRIC provides an interface for biologists to discover data and information and conduct comprehensive comparative genomics and other analyses. PATRIC includes over 250 000 publicly available microbial genomes and tools for comparative analysis.", "abbreviation": "PATRIC", "support-links": [{"url": "https://docs.patricbrc.org/user_guides/", "name": "User Guides", "type": "Help documentation"}, {"url": "https://docs.patricbrc.org/about.html", "name": "About PATRIC", "type": "Help documentation"}, {"url": "https://docs.patricbrc.org/tutorial/", "name": "Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/PATRICBRC", "name": "@PATRICBRC", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://www.patricbrc.org/view/Taxonomy/2", "name": "Browse Bacteria", "type": "data access"}, {"url": "https://www.patricbrc.org/view/Taxonomy/2157", "name": "Browse Archaea", "type": "data access"}, {"url": "https://www.patricbrc.org/view/Taxonomy/10239", "name": "Browse Phages", "type": "data access"}, {"url": "https://www.patricbrc.org/view/Host/?eq(taxon_lineage_ids,2759)#view_tab=genomes", "name": "Browse Eukaryotic Hosts", "type": "data access"}, {"url": "ftp://ftp.patricbrc.org/", "name": "Download (FTP)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011858", "name": "re3data:r3d100011858", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004154", "name": "SciCrunch:RRID:SCR_004154", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001493", "bsg-d001493"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Molecular Infection Biology", "Phylogenomics", "Comparative Genomics"], "domains": ["Genome annotation", "Pathogen", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PathosSystems Resource Integration Center Repository", "abbreviation": "PATRIC", "url": "https://fairsharing.org/10.25504/FAIRsharing.oaLCAI", "doi": "10.25504/FAIRsharing.oaLCAI", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PATRIC is part of the Bacterial Bioinformatics Resource Center, and is an information system designed to support the biomedical research community\u2019s work on bacterial infectious diseases via integration of vital pathogen information with rich data and analysis tools. PATRIC provides an interface for biologists to discover data and information and conduct comprehensive comparative genomics and other analyses. PATRIC includes over 250 000 publicly available microbial genomes and tools for comparative analysis.", "publications": [{"id": 2968, "pubmed_id": 27899627, "title": "Improvements to PATRIC, the all-bacterial Bioinformatics Database and Analysis Resource Center.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1017", "authors": "Wattam AR,Davis JJ,Assaf R et al.", "journal": "Nucleic Acids Research", "doi": "27899627", "created_at": "2021-09-30T08:28:05.713Z", "updated_at": "2021-09-30T11:29:49.195Z"}, {"id": 2969, "pubmed_id": 31667520, "title": "The PATRIC Bioinformatics Resource Center: expanding data and analysis capabilities.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz943", "authors": "Davis JJ,Wattam AR,Aziz RK et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz943", "created_at": "2021-09-30T08:28:05.864Z", "updated_at": "2021-09-30T11:29:49.304Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2595", "type": "fairsharing-records", "attributes": {"created-at": "2018-04-10T09:13:18.000Z", "updated-at": "2021-12-06T10:48:20.033Z", "metadata": {"doi": "10.25504/FAIRsharing.BrubDI", "name": "Mechanism and Catalytic Site Atlas", "status": "ready", "contacts": [{"contact-name": "Ant\u00f3nio Ribeiro", "contact-email": "ribeiro@ebi.ac.uk", "contact-orcid": "0000-0002-2533-1231"}], "homepage": "https://www.ebi.ac.uk/thornton-srv/m-csa/", "citations": [{"doi": "10.1093/nar/gkx1012", "pubmed-id": 29106569, "publication-id": 2221}], "identifier": 2595, "description": "M-CSA is a database of enzyme reaction mechanisms. It provides annotation on the protein, catalytic residues, cofactors, and the reaction mechanisms of hundreds of enzymes. There are two kinds of entries in M-CSA: 'Detailed mechanism' entries are more complete and show the individual chemical steps of the mechanism as schemes with electron flow arrows; and 'Catalytic Site' entries annotate the catalytic residues necessary for the reaction, but do not show the mechanism.", "abbreviation": "M-CSA", "access-points": [{"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/download/", "name": "API", "type": "Other"}], "support-links": [{"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/documentation/", "name": "M-CSA Documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/about/", "name": "About M-CSA", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/stats/", "name": "M-CSA Statistics", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/browse/", "name": "Browse Data", "type": "data access"}, {"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/search/", "name": "Search Data", "type": "data access"}, {"url": "https://www.ebi.ac.uk/thornton-srv/m-csa/download/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010815", "name": "re3data:r3d100010815", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013099", "name": "SciCrunch:RRID:SCR_013099", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001078", "bsg-d001078"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Enzymology", "Biology"], "domains": ["Annotation", "Catalytic activity", "Enzymatic reaction", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Mechanism and Catalytic Site Atlas", "abbreviation": "M-CSA", "url": "https://fairsharing.org/10.25504/FAIRsharing.BrubDI", "doi": "10.25504/FAIRsharing.BrubDI", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: M-CSA is a database of enzyme reaction mechanisms. It provides annotation on the protein, catalytic residues, cofactors, and the reaction mechanisms of hundreds of enzymes. There are two kinds of entries in M-CSA: 'Detailed mechanism' entries are more complete and show the individual chemical steps of the mechanism as schemes with electron flow arrows; and 'Catalytic Site' entries annotate the catalytic residues necessary for the reaction, but do not show the mechanism.", "publications": [{"id": 2221, "pubmed_id": 29106569, "title": "Mechanism and Catalytic Site Atlas (M-CSA): a database of enzyme reaction mechanisms and active sites.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1012", "authors": "Ribeiro AJM,Holliday GL,Furnham N,Tyzack JD,Ferris K,Thornton JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1012", "created_at": "2021-09-30T08:26:30.296Z", "updated_at": "2021-09-30T11:29:31.136Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 1104, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1831", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.110Z", "metadata": {"doi": "10.25504/FAIRsharing.k1p51k", "name": "CleanEx", "status": "deprecated", "contacts": [{"contact-name": "Viviane Praz", "contact-email": "Viviane.Praz@epfl.ch"}], "homepage": "http://www.cleanex.isb-sib.ch/", "identifier": 1831, "description": "CleanEx is a database which provides access to public gene expression data via unique approved gene symbols and which represents heterogeneous expression data produced by different technologies in a way that facilitates joint analysis and cross-dataset comparisons.", "abbreviation": "CleanEx", "support-links": [{"url": "Philipp.Bucher@epfl.ch", "type": "Support email"}, {"url": "http://cleanex.vital-it.ch/tutorial", "type": "Help documentation"}, {"url": "http://cleanex.vital-it.ch/current/CleanEx_manual.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "ftp://ftp.epd.unil.ch/pub/databases/CleanEx/", "name": "Download", "type": "data access"}, {"url": "http://cleanex.vital-it.ch/cleanex_gene_and_datasets_query_form_1.html", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000291", "bsg-d000291"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: CleanEx", "abbreviation": "CleanEx", "url": "https://fairsharing.org/10.25504/FAIRsharing.k1p51k", "doi": "10.25504/FAIRsharing.k1p51k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CleanEx is a database which provides access to public gene expression data via unique approved gene symbols and which represents heterogeneous expression data produced by different technologies in a way that facilitates joint analysis and cross-dataset comparisons.", "publications": [{"id": 1165, "pubmed_id": 14681477, "title": "CleanEx: a database of heterogeneous gene expression data based on a consistent gene nomenclature.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh107", "authors": "Praz V,Jagannathan V,Bucher P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh107", "created_at": "2021-09-30T08:24:29.512Z", "updated_at": "2021-09-30T11:29:01.701Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1917", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.458Z", "metadata": {"doi": "10.25504/FAIRsharing.hbbtbj", "name": "Colibri", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "genolist@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/Colibri/", "identifier": 1917, "description": "Its purpose is to collate and integrate various aspects of the genomic information from E. coli, the paradigm of Gram-negative bacteria. Colibri provides a complete dataset of DNA and protein sequences derived from the paradigm strain E. coli K-12, linked to the relevant annotations and functional assignments. It allows one to easily browse through these data and retrieve information, using various criteria (gene names, location, keywords, etc.).", "abbreviation": "Colibri", "support-links": [{"url": "http://genolist.pasteur.fr/Colibri/help/general.html", "type": "Help documentation"}], "year-creation": 1998, "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000382", "bsg-d000382"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Protein", "Genome"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Colibri", "abbreviation": "Colibri", "url": "https://fairsharing.org/10.25504/FAIRsharing.hbbtbj", "doi": "10.25504/FAIRsharing.hbbtbj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Its purpose is to collate and integrate various aspects of the genomic information from E. coli, the paradigm of Gram-negative bacteria. Colibri provides a complete dataset of DNA and protein sequences derived from the paradigm strain E. coli K-12, linked to the relevant annotations and functional assignments. It allows one to easily browse through these data and retrieve information, using various criteria (gene names, location, keywords, etc.).", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1778", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-26T11:15:30.595Z", "metadata": {"doi": "10.25504/FAIRsharing.2c45na", "name": "PRODORIC", "status": "ready", "contacts": [{"contact-name": "Christian-Alexander Dudek", "contact-email": "c.dudek@tu-braunschweig.de", "contact-orcid": "0000-0001-9117-7909"}], "homepage": "https://www.prodoric.de/", "citations": [], "identifier": 1778, "description": "PRODORIC is a comprehensive database about gene regulation and gene expression in prokaryotes. It includes a manually curated and unique collection of transcription factor binding sites.", "abbreviation": "", "data-curation": {}, "support-links": [{"url": "https://www.prodoric.de/about.html", "name": "About", "type": "Other"}, {"url": "https://www.prodoric.de/", "type": "Blog/News"}], "year-creation": 2002, "data-processes": [{"url": "https://www.innatedb.com/doc/InnateDB_2011_curation_guide.pdf", "name": "manual curation", "type": "data curation"}, {"url": "https://www.prodoric.de/genomebrowser/", "name": "Genome browser", "type": "data access"}, {"url": "https://www.prodoric.de/prodonet/", "name": "ProdoNet", "type": "data access"}], "associated-tools": [{"url": "http://www.predisi.de", "name": "Predisi"}, {"url": "http://www.jvirgel.de", "name": "JVirgel 2.0"}, {"url": "https://www.prodoric.de/vfp/", "name": "Virtual Footprint 3.0"}, {"url": "http://www.jcat.de", "name": "JCat"}], "deprecation-date": null, "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000237", "bsg-d000237"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Biological regulation", "Protein", "Gene"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: PRODORIC", "abbreviation": "", "url": "https://fairsharing.org/10.25504/FAIRsharing.2c45na", "doi": "10.25504/FAIRsharing.2c45na", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PRODORIC is a comprehensive database about gene regulation and gene expression in prokaryotes. It includes a manually curated and unique collection of transcription factor binding sites.", "publications": [{"id": 308, "pubmed_id": 12519998, "title": "PRODORIC: prokaryotic database of gene regulation.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg037", "authors": "M\u00fcnch R., Hiller K., Barg H., Heldt D., Linz S., Wingender E., Jahn D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg037", "created_at": "2021-09-30T08:22:53.116Z", "updated_at": "2021-09-30T08:22:53.116Z"}, {"id": 310, "pubmed_id": 18974177, "title": "PRODORIC (release 2009): a database and tool platform for the analysis of gene regulation in prokaryotes.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn837", "authors": "Grote A., Klein J., Retter I., Haddad I., Behling S., Bunk B., Biegler I., Yarmolinetz S., Jahn D., M\u00fcnch R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn837", "created_at": "2021-09-30T08:22:53.307Z", "updated_at": "2021-09-30T08:22:53.307Z"}, {"id": 3192, "pubmed_id": 34850133, "title": "PRODORIC: state-of-the-art database of prokaryotic gene regulation.", "year": 2022, "url": "https://doi.org/10.1093/nar/gkab1110", "authors": "Dudek CA, Jahn D", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkab1110", "created_at": "2022-01-21T10:54:52.138Z", "updated_at": "2022-01-21T10:54:52.138Z"}], "licence-links": [{"licence-name": "PRODORIC Terms of Use", "licence-id": 682, "link-id": 210, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2575, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1699", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:36.998Z", "metadata": {"doi": "10.25504/FAIRsharing.zx1td8", "name": "WormBase", "status": "ready", "homepage": "http://www.wormbase.org/", "citations": [{"doi": "10.1093/nar/gkz920", "pubmed-id": 31642470, "publication-id": 1136}], "identifier": 1699, "description": "WormBase is an international consortium of biologists and computer scientists dedicated to providing the research community with accurate, current, accessible information concerning the genetics, genomics and biology of C. elegans and related nematodes.", "abbreviation": "WormBase", "support-links": [{"url": "http://www.wormbase.org/tools/support?url=/", "type": "Contact form"}, {"url": "help@wormbase.org", "type": "Support email"}, {"url": "http://blog.wormbase.org", "type": "Help documentation"}, {"url": "http://www.wormbase.org/about/userguide#023-1-5", "type": "Help documentation"}, {"url": "https://twitter.com/wormbase", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "http://www.wormbase.org", "name": "Website", "type": "data access"}, {"url": "ftp://ftp.wormbase.org/pub/wormbase/", "name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://www.wormbase.org/about/release_schedule", "name": "Release", "type": "data release"}], "associated-tools": [{"url": "http://www.wormbase.org/tools/genome/gbrowse/", "name": "GBrowse"}, {"url": "http://www.wormbase.org/tools/blast_blat", "name": "BLAST"}, {"url": "http://www.wormbase.org/tools/wormmine/begin.do", "name": "WormMine v1.2.1 Beta version"}, {"url": "http://www.textpresso.org/celegans/", "name": "TextPresso"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010424", "name": "re3data:r3d100010424", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003098", "name": "SciCrunch:RRID:SCR_003098", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000156", "bsg-d000156"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Life Science"], "domains": ["Mass spectrum", "Citation", "Cytogenetic map", "Genome map", "Protein domain", "Gene name", "Expression data", "Bibliography", "Free text", "Gene Ontology enrichment", "Protein interaction", "Model organism", "Clone library", "Reagent", "Regulation of gene expression", "RNA interference", "Antibody", "Image", "Molecular interaction", "Genetic interaction", "Small molecule", "Genetic polymorphism", "Protein expression", "Cross linking", "Phenotype", "Disease", "Sequence feature", "Promoter", "Untranslated region", "Pseudogene", "Binding site", "Single nucleotide polymorphism", "Gene", "Orthologous", "Trans spliced", "Genome", "Life cycle", "Genetic strain"], "taxonomies": ["Ascaris suum", "Brugia malayi", "Caenorhabditis angaria", "Caenorhabditis brenneri", "Caenorhabditis briggsae", "Caenorhabditis elegans", "Caenorhabditis japonica", "Caenorhabditis remanei", "Caenorhabditis sinica", "Caenorhabditis tropicalis", "Heterorhabditis bacteriophora", "Loa Loa", "Meloidogyne hapla", "Pristionchus pacificus", "Strongyloides ratti", "Trichinella spiralis"], "user-defined-tags": ["Researcher data"], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: WormBase", "abbreviation": "WormBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.zx1td8", "doi": "10.25504/FAIRsharing.zx1td8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WormBase is an international consortium of biologists and computer scientists dedicated to providing the research community with accurate, current, accessible information concerning the genetics, genomics and biology of C. elegans and related nematodes.", "publications": [{"id": 212, "pubmed_id": 21595960, "title": "Toward an interactive article: integrating journals and biological databases.", "year": 2011, "url": "http://doi.org/10.1186/1471-2105-12-175", "authors": "Rangarajan A., Schedl T., Yook K., Chan J., Haenel S., Otis L., Faelten S., DePellegrin-Connelly T., Isaacson R., Skrzypek MS., Marygold SJ., Stefancsik R., Cherry JM., Sternberg PW., M\u00fcller HM.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-12-175", "created_at": "2021-09-30T08:22:43.049Z", "updated_at": "2021-09-30T08:22:43.049Z"}, {"id": 213, "pubmed_id": 21071413, "title": "The BioGRID Interaction Database: 2011 update.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1116", "authors": "Stark C., Breitkreutz BJ., Chatr-Aryamontri A., Boucher L., Oughtred R., Livstone MS., Nixon J., Van Auken K., Wang X., Shi X., Reguly T., Rust JM., Winter A., Dolinski K., Tyers M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1116", "created_at": "2021-09-30T08:22:43.164Z", "updated_at": "2021-09-30T08:22:43.164Z"}, {"id": 214, "pubmed_id": 21059240, "title": "Localizing triplet periodicity in DNA and cDNA sequences.", "year": 2010, "url": "http://doi.org/10.1186/1471-2105-11-550", "authors": "Wang L., Stein LD.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-11-550", "created_at": "2021-09-30T08:22:43.256Z", "updated_at": "2021-09-30T08:22:43.256Z"}, {"id": 215, "pubmed_id": 19921742, "title": "Representing ontogeny through ontology: a developmental biologist's guide to the gene ontology.", "year": 2009, "url": "http://doi.org/10.1002/mrd.21130", "authors": "Hill DP., Berardini TZ., Howe DG., Van Auken KM.,", "journal": "Mol. Reprod. Dev.", "doi": "10.1002/mrd.21130", "created_at": "2021-09-30T08:22:43.356Z", "updated_at": "2021-09-30T08:22:43.356Z"}, {"id": 1085, "pubmed_id": 19920128, "title": "The Gene Ontology in 2010: extensions and refinements.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1018", "authors": "The Gene Ontology Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp1018", "created_at": "2021-09-30T08:24:20.203Z", "updated_at": "2021-09-30T11:28:58.186Z"}, {"id": 1113, "pubmed_id": 19910365, "title": "WormBase: a comprehensive resource for nematode research.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp952", "authors": "Harris TW., Antoshechkin I., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp952", "created_at": "2021-09-30T08:24:23.298Z", "updated_at": "2021-09-30T08:24:23.298Z"}, {"id": 1114, "pubmed_id": 19622167, "title": "Semi-automated curation of protein subcellular localization: a text mining-based approach to Gene Ontology (GO) Cellular Component curation.", "year": 2009, "url": "http://doi.org/10.1186/1471-2105-10-228", "authors": "Van Auken K., Jaffery J., Chan J., M\u00fcller HM., Sternberg PW.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-10-228", "created_at": "2021-09-30T08:24:23.407Z", "updated_at": "2021-09-30T08:24:23.407Z"}, {"id": 1130, "pubmed_id": 19578431, "title": "The Gene Ontology's Reference Genome Project: a unified framework for functional annotation across species.", "year": 2009, "url": "http://doi.org/10.1371/journal.pcbi.1000431", "authors": "The Gene Ontology Consortium", "journal": "PLoS Comput. Biol.", "doi": "10.1371/journal.pcbi.1000431", "created_at": "2021-09-30T08:24:25.389Z", "updated_at": "2021-09-30T08:24:25.389Z"}, {"id": 1132, "pubmed_id": 19099578, "title": "nGASP--the nematode genome annotation assessment project.", "year": 2008, "url": "http://doi.org/10.1186/1471-2105-9-549", "authors": "Coghlan A., Fiedler TJ., McKay SJ., Flicek P., Harris TW., Blasiar D., Stein LD.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-9-549", "created_at": "2021-09-30T08:24:25.607Z", "updated_at": "2021-09-30T08:24:25.607Z"}, {"id": 1136, "pubmed_id": 31642470, "title": "WormBase: a modern Model Organism Information Resource.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz920", "authors": "Harris TW,Arnaboldi V,Cain S,Chan J,Chen WJ,Cho J,Davis P,Gao S,Grove CA,Kishore R,Lee RYN,Muller HM,Nakamura C,Nuin P,Paulini M,Raciti D,Rodgers FH,Russell M,Schindelman G,Auken KV,Wang Q,Williams G,Wright AJ,Yook K,Howe KL,Schedl T,Stein L,Sternberg PW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz920", "created_at": "2021-09-30T08:24:26.088Z", "updated_at": "2021-09-30T11:29:00.134Z"}, {"id": 1137, "pubmed_id": 29069413, "title": "WormBase 2017: molting into a new stage.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx998", "authors": "Lee RYN,Howe KL, et al.,", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx998", "created_at": "2021-09-30T08:24:26.299Z", "updated_at": "2021-09-30T11:29:00.235Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2701", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-04T22:18:08.000Z", "updated-at": "2022-02-08T10:51:15.476Z", "metadata": {"doi": "10.25504/FAIRsharing.9c5ae7", "name": "WormQTL HD", "status": "ready", "contacts": [{"contact-name": "Basten Snoek", "contact-email": "basten.snoek@wur.nl"}], "homepage": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do", "citations": [], "identifier": 2701, "description": "WormQTLHD is an online scalable system for QTL exploration to service the worm community. WormQTLHD provides many publicly available datasets and welcomes submissions from other worm researchers", "abbreviation": "WormQTL HD", "data-curation": {}, "support-links": [{"url": "basten.snoek@wur.nl", "name": "Basten Snoek", "type": "Support email"}, {"url": "k.j.van.der.velde@umcg.nl", "name": "Joeri van der Velde", "type": "Support email"}, {"url": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do?__target=main&select=Help", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do?__target=main&select=Investigations", "name": "Browse", "type": "data access"}, {"url": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do?__target=main&select=GenomeBrowser", "name": "Genome browser", "type": "data access"}, {"url": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do?__target=main&select=QtlFinderHD", "name": "Human to Worm association", "type": "data access"}, {"url": "https://www.wormqtl-hd.org/xqtl_panacea/molgenis.do?__target=main&select=QtlFinderPublic2", "name": "Find QTLs", "type": "data access"}], "associated-tools": [{"url": "http://molgenis.github.io/", "name": "MOLGENIS"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001199", "bsg-d001199"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science", "Biology"], "domains": ["Model organism", "Disease", "Quantitative trait loci", "Gene-disease association"], "taxonomies": ["Caenorhabditis elegans"], "user-defined-tags": ["Researcher data"], "countries": ["European Union", "Netherlands"], "name": "FAIRsharing record for: WormQTL HD", "abbreviation": "WormQTL HD", "url": "https://fairsharing.org/10.25504/FAIRsharing.9c5ae7", "doi": "10.25504/FAIRsharing.9c5ae7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WormQTLHD is an online scalable system for QTL exploration to service the worm community. WormQTLHD provides many publicly available datasets and welcomes submissions from other worm researchers", "publications": [{"id": 276, "pubmed_id": 23180786, "title": "WormQTL--public archive and analysis web portal for natural variation data in Caenorhabditis spp.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1124", "authors": "Snoek LB,Van der Velde KJ,Arends D,Li Y,Beyer A,Elvin M,Fisher J,Hajnal A,Hengartner MO,Poulin GB,Rodriguez M,Schmid T,Schrimpf S,Xue F,Jansen RC,Kammenga JE,Swertz MA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1124", "created_at": "2021-09-30T08:22:49.804Z", "updated_at": "2021-09-30T11:28:44.733Z"}, {"id": 364, "pubmed_id": 22308096, "title": "xQTL workbench: a scalable web environment for multi-level QTL analysis.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts049", "authors": "Arends D,van der Velde KJ,Prins P,Broman KW,Moller S,Jansen RC,Swertz MA", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts049", "created_at": "2021-09-30T08:22:59.093Z", "updated_at": "2021-09-30T08:22:59.093Z"}, {"id": 2712, "pubmed_id": 24217915, "title": "WormQTLHD--a web database for linking human disease to natural variation data in C. elegans.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1044", "authors": "van der Velde KJ,de Haan M,Zych K,Arends D,Snoek LB,Kammenga JE,Jansen RC,Swertz MA,Li Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1044", "created_at": "2021-09-30T08:27:33.036Z", "updated_at": "2021-09-30T11:29:41.695Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1822", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.637Z", "metadata": {"doi": "10.25504/FAIRsharing.mtg4ew", "name": "The Database of Human DNA Methylation and Cancer", "status": "ready", "contacts": [{"contact-name": "Jing Wang", "contact-email": "wangjing@genomics.org.cn"}], "homepage": "http://methycancer.psych.ac.cn/", "identifier": 1822, "description": "The database of human DNA Methylation and Cancer (MethyCancer) is developed to study interplay of DNA methylation, gene expression and cancer. It hosts both highly integrated data of DNA methylation, cancer-related gene, mutation and cancer information from public resources, and the CpG Island (CGI) clones derived from our large-scale sequencing.", "abbreviation": "MethyCancer", "support-links": [{"url": "http://methycancer.psych.ac.cn/Doclinks.do", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://methycancer.psych.ac.cn/Download.do", "name": "Download", "type": "data access"}, {"url": "http://methycancer.psych.ac.cn/Upload.do", "name": "submit", "type": "data curation"}, {"url": "http://methycancer.psych.ac.cn/MethySearch.do", "name": "search", "type": "data access"}, {"url": "http://methycancer.psych.ac.cn/CpG130.do", "name": "analyze", "type": "data access"}], "associated-tools": [{"url": "http://methycancer.psych.ac.cn/Blast.do", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000282", "bsg-d000282"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Expression data", "Deoxyribonucleic acid", "Cancer", "DNA methylation", "Small molecule", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: The Database of Human DNA Methylation and Cancer", "abbreviation": "MethyCancer", "url": "https://fairsharing.org/10.25504/FAIRsharing.mtg4ew", "doi": "10.25504/FAIRsharing.mtg4ew", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database of human DNA Methylation and Cancer (MethyCancer) is developed to study interplay of DNA methylation, gene expression and cancer. It hosts both highly integrated data of DNA methylation, cancer-related gene, mutation and cancer information from public resources, and the CpG Island (CGI) clones derived from our large-scale sequencing.", "publications": [{"id": 340, "pubmed_id": 17890243, "title": "MethyCancer: the database of human DNA methylation and cancer.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm730", "authors": "He X., Chang S., Zhang J., Zhao Q., Xiang H., Kusonmano K., Yang L., Sun ZS., Yang H., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm730", "created_at": "2021-09-30T08:22:56.591Z", "updated_at": "2021-09-30T08:22:56.591Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2245", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-08T13:40:36.000Z", "updated-at": "2021-11-24T13:14:49.441Z", "metadata": {"doi": "10.25504/FAIRsharing.1jwkjn", "name": "Electronic Medical Records and Genomics", "status": "ready", "contacts": [{"contact-name": "Melissa Basford", "contact-email": "melissa.basford@vanderbilt.edu"}], "homepage": "https://emerge.mc.vanderbilt.edu/", "identifier": 2245, "description": "eMERGE is a national network organized and funded by the National Human Genome Research Institute (NHGRI) that combines DNA biorepositories with electronic medical record (EMR) systems for large scale, high-throughput genetic research in support of implementing genomic medicine.", "abbreviation": "eMERGE", "support-links": [{"url": "adam.hardebeck@vanderbilt.edu", "type": "Support email"}, {"url": "https://emerge.mc.vanderbilt.edu/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://emerge.mc.vanderbilt.edu/contact/", "type": "Mailing list"}, {"url": "https://twitter.com/eMERGENetwork_", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://emerge.mc.vanderbilt.edu/projects/", "name": "Browse", "type": "data access"}, {"url": "https://emerge.mc.vanderbilt.edu/emerge-sites/wp-login.php", "name": "Registration required", "type": "data access"}], "associated-tools": [{"url": "https://www.emergesphinx.org/", "name": "SPHINX"}, {"url": "https://biovu.vanderbilt.edu/EmergeRC/", "name": "eMERGE Record Counter"}]}, "legacy-ids": ["biodbcore-000719", "bsg-d000719"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Biomedical Science", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Electronic Medical Records and Genomics", "abbreviation": "eMERGE", "url": "https://fairsharing.org/10.25504/FAIRsharing.1jwkjn", "doi": "10.25504/FAIRsharing.1jwkjn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: eMERGE is a national network organized and funded by the National Human Genome Research Institute (NHGRI) that combines DNA biorepositories with electronic medical record (EMR) systems for large scale, high-throughput genetic research in support of implementing genomic medicine.", "publications": [{"id": 869, "pubmed_id": 23743551, "title": "The Electronic Medical Records and Genomics (eMERGE) Network: past, present, and future.", "year": 2013, "url": "http://doi.org/10.1038/gim.2013.72", "authors": "Gottesman O,Kuivaniemi H,Tromp G,Faucett WA,Li R,Manolio TA,Sanderson SC,Kannry J,Zinberg R,Basford MA,Brilliant M,Carey DJ,Chisholm RL,Chute CG,Connolly JJ,Crosslin D,Denny JC,Gallego CJ,Haines JL,Hakonarson H,Harley J,Jarvik GP,Kohane I,Kullo IJ,Larson EB,McCarty C,Ritchie MD,Roden DM,Smith ME,Bottinger EP,Williams MS", "journal": "Genet Med", "doi": "10.1038/gim.2013.72", "created_at": "2021-09-30T08:23:55.996Z", "updated_at": "2021-09-30T08:23:55.996Z"}, {"id": 870, "pubmed_id": 21269473, "title": "The eMERGE Network: a consortium of biorepositories linked to electronic medical records data for conducting genomic studies.", "year": 2011, "url": "http://doi.org/10.1186/1755-8794-4-13", "authors": "McCarty CA,Chisholm RL,Chute CG,Kullo IJ,Jarvik GP,Larson EB,Li R,Masys DR,Ritchie MD,Roden DM,Struewing JP,Wolf WA", "journal": "BMC Med Genomics", "doi": "10.1186/1755-8794-4-13", "created_at": "2021-09-30T08:23:56.104Z", "updated_at": "2021-09-30T08:23:56.104Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3055", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-16T17:35:59.000Z", "updated-at": "2022-01-31T15:28:29.341Z", "metadata": {"name": "National Microbiome Data Collaborative", "status": "in_development", "contacts": [{"contact-name": "Emiley Eloe-Fadrosh", "contact-email": "eaeloefadrosh@lbl.gov", "contact-orcid": "0000-0002-8162-1276"}], "homepage": "https://microbiomedata.org/", "citations": [{"doi": "10.1038/s41579-020-0377-0", "pubmed-id": 32350400, "publication-id": 3011}], "identifier": 3055, "description": "The National Microbiome Data Collaborative seeks to address fundamental roadblocks in microbiome data science and gaps in transdisciplinary collaboration. The NMDC's Phase I Pilot was launched in July 2019 funded by the Department of Energy\u2019s (DOE) Office of Science, Biological and Environmental Research program, with two strategic priorities \u2014 infrastructure and engagement. The infrastructure goal is to democratize microbiome data science by providing access to multidisciplinary, multi-omics data (e.g., metagenomics and metaproteomics) through distributed data resources, with seamless integration to platforms that support reproducible, cross- study analyses. The engagement goal is to enable community-driven shared ownership of microbiome data that supports open science across research teams, funders, publishers, and societies. Currently, no data are available, as this project is still in the development stage. Please sign up for our Quarterly newsletter via the website (starting in Sep 2020) for updates, feature releases, and ways to get involved.", "abbreviation": "NMDC", "data-curation": {}, "support-links": [{"url": "https://microbiomedata.org/news/", "name": "News", "type": "Blog/News"}, {"url": "support@microbiomedata.org", "name": "Contact the NMDC", "type": "Support email"}, {"url": "https://microbiomedata.org/about/", "name": "About", "type": "Help documentation"}, {"url": "https://microbiomedata.github.io/nmdc-schema/Metadata_Documentation_Overview/", "name": "NMDC Schema and Metadata Documentation", "type": "Help documentation"}, {"url": "https://github.com/microbiomedata", "name": "NMDC Github", "type": "Github"}, {"url": "https://twitter.com/MicrobiomeData", "name": "NMDC Twitter", "type": "Twitter"}, {"url": "https://edge-nmdc.org/home", "name": "NMDC EDGE", "type": "Other"}, {"url": "https://microbiomedata.org/data-management/", "name": "Data Management Plans", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://data.microbiomedata.org/", "name": "Browse and Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013542", "name": "re3data:r3d100013542", "portal": "re3data"}], "deprecation-reason": null, "data-access-condition": {"url": "https://microbiomedata.org/nmdc-data-use-policy/", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001563", "bsg-d001563"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Microbial Ecology", "Data Integration", "Applied Microbiology", "Microbial Physiology", "Data Management", "Proteomics", "Data Quality", "Transcriptomics"], "domains": ["Metagenome", "Microbiome"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Microbiome Data Collaborative", "abbreviation": "NMDC", "url": "https://fairsharing.org/fairsharing_records/3055", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Microbiome Data Collaborative seeks to address fundamental roadblocks in microbiome data science and gaps in transdisciplinary collaboration. The NMDC's Phase I Pilot was launched in July 2019 funded by the Department of Energy\u2019s (DOE) Office of Science, Biological and Environmental Research program, with two strategic priorities \u2014 infrastructure and engagement. The infrastructure goal is to democratize microbiome data science by providing access to multidisciplinary, multi-omics data (e.g., metagenomics and metaproteomics) through distributed data resources, with seamless integration to platforms that support reproducible, cross- study analyses. The engagement goal is to enable community-driven shared ownership of microbiome data that supports open science across research teams, funders, publishers, and societies. Currently, no data are available, as this project is still in the development stage. Please sign up for our Quarterly newsletter via the website (starting in Sep 2020) for updates, feature releases, and ways to get involved.", "publications": [{"id": 3011, "pubmed_id": 32350400, "title": "The National Microbiome Data Collaborative: enabling microbiome science", "year": 2020, "url": "http://doi.org/10.1038/s41579-020-0377-0", "authors": "Elisha M Wood-Charlson et al.", "journal": "Nature Reviews Microbiology", "doi": "10.1038/s41579-020-0377-0", "created_at": "2021-09-30T08:28:11.218Z", "updated_at": "2021-09-30T08:28:11.218Z"}, {"id": 3142, "pubmed_id": null, "title": "Correction for Vangay et al., \u201cMicrobiome Metadata Standards: Report of the National Microbiome Data Collaborative\u2019s Workshop and Follow-On Activities\u201d", "year": 2021, "url": "http://dx.doi.org/10.1128/mSystems.00273-21", "authors": "Vangay, Pajau; Burgin, Josephine; Johnston, Anjanette; Beck, Kristen L.; Berrios, Daniel C.; Blumberg, Kai; Canon, Shane; Chain, Patrick; Chandonia, John-Marc; Christianson, Danielle; Costes, Sylvain V.; Damerow, Joan; Duncan, William D.; Dundore-Arias, Jose Pablo; Fagnan, Kjiersten; Galazka, Jonathan M.; Gibbons, Sean M.; Hays, David; Hervey, Judson; Hu, Bin; Hurwitz, Bonnie L.; Jaiswal, Pankaj; Joachimiak, Marcin P.; Kinkel, Linda; Ladau, Joshua; Martin, Stanton L.; McCue, Lee Ann; Miller, Kayd; Mouncey, Nigel; Mungall, Chris; Pafilis, Evangelos; Reddy, T. B. K.; Richardson, Lorna; Roux, Simon; Schriml, Lynn M.; Shaffer, Justin P.; Sundaramurthi, Jagadish Chandrabose; Thompson, Luke R.; Timme, Ruth E.; Zheng, Jie; Wood-Charlson, Elisha M.; Eloe-Fadrosh, Emiley A.; ", "journal": "mSystems", "doi": "10.1128/msystems.00273-21", "created_at": "2021-12-01T15:16:43.481Z", "updated_at": "2021-12-01T15:16:43.481Z"}, {"id": 3188, "pubmed_id": null, "title": "The National Microbiome Data Collaborative Data Portal: an integrated multi-omics microbiome data resource", "year": 2022, "url": "https://academic.oup.com/nar/article-abstract/50/D1/D828/6414581", "authors": " Emiley A Eloe-Fadrosh, Faiza Ahmed, Anubhav, Michal Babinski, Jeffrey Baumes, Mark Borkum, Lisa Bramer, Shane Canon, Danielle S Christianson, Yuri E Corilo, Karen W Davenport, Brandon Davis, Meghan Drake, William D Duncan, Mark C Flynn, David Hays, Bin Hu, Marcel Huntemann, Julia Kelliher, Sofya Lebedeva, Po-E Li, Mary Lipton, Chien-Chi Lo, Stanton Martin, David Millard, Kayd Miller, Mark A Miller, Paul Piehowski, Elais Player Jackson, Samuel Purvine, T B K Reddy, Rachel Richardson, Marisa Rudolph, Setareh Sarrafan, Migun Shakya, Montana Smith, Kelly Stratton, Jagadish Chandrabose Sundaramurthi, Pajau Vangay, Donald Winston, Elisha M Wood-Charlson, Yan Xu, Patrick S G Chain, Lee Ann McCue, Douglas Mans, Christopher J Mungall, Nigel J Mouncey, Kjiersten Fagnan", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkab990", "created_at": "2022-01-18T19:57:55.305Z", "updated_at": "2022-01-18T19:58:10.151Z"}, {"id": 3193, "pubmed_id": null, "title": "Challenges in Bioinformatics Workflows for Processing Microbiome Omics Data at Scale", "year": 2022, "url": "http://dx.doi.org/10.3389/fbinf.2021.826370", "authors": "Hu, Bin; Canon, Shane; Eloe-Fadrosh, Emiley A.; Anubhav, undefined; Babinski, Michal; Corilo, Yuri; Davenport, Karen; Duncan, William D.; Fagnan, Kjiersten; Flynn, Mark; Foster, Brian; Hays, David; Huntemann, Marcel; Jackson, Elais K. Player; Kelliher, Julia; Li, Po-E.; Lo, Chien-Chi; Mans, Douglas; McCue, Lee Ann; Mouncey, Nigel; Mungall, Christopher J.; Piehowski, Paul D.; Purvine, Samuel O.; Smith, Montana; Varghese, Neha Jacob; Winston, Donald; Xu, Yan; Chain, Patrick S. G.; ", "journal": "Front. Bioinform.", "doi": "10.3389/fbinf.2021.826370", "created_at": "2022-01-21T17:57:02.073Z", "updated_at": "2022-01-21T17:57:02.073Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2571, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2224", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-05T10:43:04.000Z", "updated-at": "2021-11-24T13:17:33.659Z", "metadata": {"doi": "10.25504/FAIRsharing.ss78t4", "name": "SIGnaling Network Open Resource", "status": "ready", "contacts": [{"contact-name": "Gianni Cesareni", "contact-email": "gianni.cesareni@torvergata.it", "contact-orcid": "0000-0002-9528-6018"}], "homepage": "https://signor.uniroma2.it/user_guide.php", "identifier": 2224, "description": "SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature. The captured information is stored as binary causative relationships between biological entities and can be represented graphically as activity flow. The entire network can be freely downloaded and used to support logic modeling or to interpret high content datasets. Each relationship is linked to the literature reporting the experimental evidence. In addition each node is annotated with the chemical inhibitors that modulate its activity. The signaling information is mapped to the human proteome even if the experimental evidence is based on experiments on mammalian model organisms.", "abbreviation": "SIGNOR", "access-points": [{"url": "https://signor.uniroma2.it/APIs.php", "name": "SIGNORE API", "type": "REST"}], "support-links": [{"url": "https://signor.uniroma2.it/user_guide.php", "name": "User guide", "type": "Help documentation"}, {"url": "https://signor.uniroma2.it/statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://signor.uniroma2.it/curation.php", "name": "Manual curation", "type": "data curation"}, {"url": "https://signor.uniroma2.it/downloads.php", "name": "Download", "type": "data release"}, {"url": "https://signor.uniroma2.it/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000698", "bsg-d000698"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Computational biological predictions", "Gene functional annotation", "Protein interaction", "Network model", "Proteome", "Signaling", "Molecular interaction", "Gene-disease association", "Literature curation", "Biocuration"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["COVID-19"], "countries": ["Italy"], "name": "FAIRsharing record for: SIGnaling Network Open Resource", "abbreviation": "SIGNOR", "url": "https://fairsharing.org/10.25504/FAIRsharing.ss78t4", "doi": "10.25504/FAIRsharing.ss78t4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature. The captured information is stored as binary causative relationships between biological entities and can be represented graphically as activity flow. The entire network can be freely downloaded and used to support logic modeling or to interpret high content datasets. Each relationship is linked to the literature reporting the experimental evidence. In addition each node is annotated with the chemical inhibitors that modulate its activity. The signaling information is mapped to the human proteome even if the experimental evidence is based on experiments on mammalian model organisms.", "publications": [{"id": 1497, "pubmed_id": 26467481, "title": "SIGNOR: a database of causal relationships between biological entities.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1048", "authors": "Perfetto L,Briganti L,Calderone A,Perpetuini AC,Iannuccelli M,Langone F,Licata L,Marinkovic M,Mattioni A,Pavlidou T,Peluso D,Petrilli LL,Pirro S,Posca D,Santonico E,Silvestri A,Spada F,Castagnoli L,Cesareni G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1048", "created_at": "2021-09-30T08:25:07.684Z", "updated_at": "2021-09-30T11:29:10.978Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2665", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-24T13:03:19.000Z", "updated-at": "2021-11-24T13:18:10.568Z", "metadata": {"name": "Agrisemantics Map of Data Standards", "status": "ready", "homepage": "http://vest.agrisemantics.org/", "identifier": 2665, "description": "The Agrisemantics Map of Data Standards database is a continuation of the VEST Registry started on the FAO AIMS website and includes metadata from the AgroPortal ontology repository. The registry covers all types of vocabularies in any format, ranging from description metadata sets (XML schemas, RDFS schemas, application profiles\u2026) to KOSs of different types (classifications, thesauri, ontologies\u2026). Domain coverage is broad, ranging from food and agricultural data to generic vocabularies (for e.g. bibliographic references) to vocabularies from neighbouring disciplines (e.g. climate). Agrisemantics is conceived as a metadata catalog, providing descriptions and categorization of standards and links to the original website and original serialization of the standard.", "abbreviation": "Agrisemantics", "support-links": [{"url": "http://vest.agrisemantics.org/contact", "name": "Contact form", "type": "Contact form"}], "data-processes": [{"url": "https://vest.agrisemantics.org/vocabularies", "name": "search", "type": "data access"}, {"url": "https://vest.agrisemantics.org/advanced-browse", "name": "browse", "type": "data access"}, {"url": "https://vest.agrisemantics.org/vocabularies-table", "name": "export", "type": "data access"}, {"url": "https://vest.agrisemantics.org/content/contribute-dashboard", "name": "contribute", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001158", "bsg-d001158"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Agriculture", "Life Science", "Ontology and Terminology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Data standards"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Agrisemantics Map of Data Standards", "abbreviation": "Agrisemantics", "url": "https://fairsharing.org/fairsharing_records/2665", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Agrisemantics Map of Data Standards database is a continuation of the VEST Registry started on the FAO AIMS website and includes metadata from the AgroPortal ontology repository. The registry covers all types of vocabularies in any format, ranging from description metadata sets (XML schemas, RDFS schemas, application profiles\u2026) to KOSs of different types (classifications, thesauri, ontologies\u2026). Domain coverage is broad, ranging from food and agricultural data to generic vocabularies (for e.g. bibliographic references) to vocabularies from neighbouring disciplines (e.g. climate). Agrisemantics is conceived as a metadata catalog, providing descriptions and categorization of standards and links to the original website and original serialization of the standard.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2085", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-13T15:22:11.777Z", "metadata": {"doi": "10.25504/FAIRsharing.psn0h2", "name": "Toxin and Toxin Target Database", "status": "ready", "contacts": [{"contact-name": "David Wishart", "contact-email": "david.wishart@ualberta.ca", "contact-orcid": "0000-0002-3207-2434"}], "homepage": "http://www.t3db.ca/", "citations": [], "identifier": 2085, "description": "Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", "abbreviation": "T3DB", "data-curation": {}, "support-links": [{"url": "http://www.t3db.ca/help/fields", "name": "Documentation", "type": "Help documentation"}, {"url": "http://www.t3db.ca/about", "name": "About", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://www.t3db.ca/downloads", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012189", "name": "re3data:r3d100012189", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002672", "name": "SciCrunch:RRID:SCR_002672", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000553", "bsg-d000553"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Molecular entity", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Toxin and Toxin Target Database", "abbreviation": "T3DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.psn0h2", "doi": "10.25504/FAIRsharing.psn0h2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", "publications": [{"id": 519, "pubmed_id": 19897546, "title": "T3DB: a comprehensively annotated database of common toxins and their targets.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp934", "authors": "Lim E., Pon A., Djoumbou Y., Knox C., Shrivastava S., Guo AC., Neveu V., Wishart DS.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp934", "created_at": "2021-09-30T08:23:16.659Z", "updated_at": "2021-09-30T08:23:16.659Z"}, {"id": 1608, "pubmed_id": 25378312, "title": "T3DB: the toxic exposome database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1004", "authors": "Wishart D,Arndt D,Pon A,Sajed T,Guo AC,Djoumbou Y,Knox C,Wilson M,Liang Y,Grant J,Liu Y,Goldansaz SA,Rappaport SM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1004", "created_at": "2021-09-30T08:25:20.260Z", "updated_at": "2021-09-30T11:29:15.644Z"}], "licence-links": [{"licence-name": "T3DB Attribution required", "licence-id": 768, "link-id": 593, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1908", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.800Z", "metadata": {"doi": "10.25504/FAIRsharing.mx41z8", "name": "FusionDB", "status": "deprecated", "contacts": [{"contact-name": "Karsten Suhre", "contact-email": "karsten.suhre@igs.cnrs-mrs.fr"}], "homepage": "http://igs-server.cnrs-mrs.fr/FusionDB/", "identifier": 1908, "description": "FusionDB is a database of bacterial and archaeal gene fusion events - also known as Rosetta stones", "abbreviation": "FusionDB", "support-links": [{"url": "http://www.igs.cnrs-mrs.fr/FusionDB/help.html", "type": "Help documentation"}], "year-creation": 2003, "deprecation-date": "2015-07-28", "deprecation-reason": "This resource is no longer active."}, "legacy-ids": ["biodbcore-000373", "bsg-d000373"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: FusionDB", "abbreviation": "FusionDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.mx41z8", "doi": "10.25504/FAIRsharing.mx41z8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FusionDB is a database of bacterial and archaeal gene fusion events - also known as Rosetta stones", "publications": [{"id": 410, "pubmed_id": 14681411, "title": "FusionDB: a database for in-depth analysis of prokaryotic gene fusion events.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh053", "authors": "Suhre K., Claverie JM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh053", "created_at": "2021-09-30T08:23:04.567Z", "updated_at": "2021-09-30T08:23:04.567Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2113", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:46.929Z", "metadata": {"doi": "10.25504/FAIRsharing.k56rjs", "name": "Interologous Interaction Database", "status": "ready", "contacts": [{"contact-email": "juris@ai.utoronto.ca"}], "homepage": "http://ophid.utoronto.ca/ophidv2.204/", "identifier": 2113, "description": "The I2D (Interologous Interaction Database) is a database of known and predicted mammalian and eukaryotic protein-protein interactions (PPIs). It has been built by mapping high-throughput (HTP) data between species.", "abbreviation": "I2D", "support-links": [{"url": "http://ophid.utoronto.ca/ophidv2.204/contact.jsp", "name": "Contact Page", "type": "Contact form"}, {"url": "http://ophid.utoronto.ca/ophidv2.204/statistics.jsp", "name": "Statistics", "type": "Help documentation"}, {"url": "http://ophid.utoronto.ca/ophidv2.204/database.jsp", "name": "About", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://ophid.utoronto.ca/ophidv2.204/downloads.jsp", "name": "Download", "type": "data access"}, {"url": "http://ophid.utoronto.ca/ophidv2.204/ppi.jsp", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://ophid.utoronto.ca/navigator/", "name": "NAVIGaTOR (Visualization)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010675", "name": "re3data:r3d100010675", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002957", "name": "SciCrunch:RRID:SCR_002957", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000583", "bsg-d000583"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology", "Systems Biology"], "domains": ["Biological network analysis", "Protein interaction", "Network model", "Signaling", "Molecular interaction", "Interologs mapping", "High-throughput screening", "Protein", "Pathway model"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Interologous Interaction Database", "abbreviation": "I2D", "url": "https://fairsharing.org/10.25504/FAIRsharing.k56rjs", "doi": "10.25504/FAIRsharing.k56rjs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The I2D (Interologous Interaction Database) is a database of known and predicted mammalian and eukaryotic protein-protein interactions (PPIs). It has been built by mapping high-throughput (HTP) data between species.", "publications": [{"id": 540, "pubmed_id": 15657099, "title": "Online predicted human interaction database.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti273", "authors": "Brown KR., Jurisica I.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti273", "created_at": "2021-09-30T08:23:18.984Z", "updated_at": "2021-09-30T08:23:18.984Z"}, {"id": 1204, "pubmed_id": 17535438, "title": "Unequal evolutionary conservation of human protein interactions in interologous networks.", "year": 2007, "url": "http://doi.org/10.1186/gb-2007-8-5-r95", "authors": "Brown KR,Jurisica I", "journal": "Genome Biol", "doi": "10.1186/gb-2007-8-5-r95", "created_at": "2021-09-30T08:24:34.158Z", "updated_at": "2021-09-30T08:24:34.158Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2520", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-17T12:55:57.000Z", "updated-at": "2021-11-24T13:19:35.715Z", "metadata": {"doi": "10.25504/FAIRsharing.bwswdf", "name": "Mutual Folding Induced by Binding Database", "status": "ready", "contacts": [{"contact-name": "B\u00e1lint M\u00e9sz\u00e1ros", "contact-email": "mfib@ttk.mta.hu", "contact-orcid": "0000-0003-0919-4449"}], "homepage": "http://mfib.enzim.ttk.mta.hu", "identifier": 2520, "description": "Mutual Folding Induced by Binding (MFIB) is a repository of protein complexes for which the folding of each constituent protein chain is coupled to the interaction forming the complex. This means that while the complexes are stable enough to have their structures solved by conventional structure determination methods (such as X-ray or NMR), the proteins or protein regions involved in the interaction do not have a stable structure in their free monomeric form (i.e. they are intrinsically disordered/unstructured).", "abbreviation": "MFIB", "support-links": [{"url": "http://mfib.enzim.ttk.mta.hu/help.php", "name": "MFIB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://mfib.enzim.ttk.mta.hu/statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://mfib.enzim.ttk.mta.hu/browser.php", "name": "Browse Data", "type": "data access"}, {"url": "http://mfib.enzim.ttk.mta.hu/treemap.php", "name": "ProteinMap Browser", "type": "data access"}, {"url": "http://mfib.enzim.ttk.mta.hu/search.php", "name": "Search", "type": "data access"}, {"url": "http://mfib.enzim.ttk.mta.hu/downloads.php", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001003", "bsg-d001003"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Protein interaction", "Intrinsically disordered proteins"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Mutual Folding Induced by Binding Database", "abbreviation": "MFIB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bwswdf", "doi": "10.25504/FAIRsharing.bwswdf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mutual Folding Induced by Binding (MFIB) is a repository of protein complexes for which the folding of each constituent protein chain is coupled to the interaction forming the complex. This means that while the complexes are stable enough to have their structures solved by conventional structure determination methods (such as X-ray or NMR), the proteins or protein regions involved in the interaction do not have a stable structure in their free monomeric form (i.e. they are intrinsically disordered/unstructured).", "publications": [{"id": 300, "pubmed_id": 29036655, "title": "MFIB: a repository of protein complexes with mutual folding induced by binding.", "year": 2017, "url": "http://doi.org/10.1093/bioinformatics/btx486", "authors": "Ficho E,Remenyi I,Simon I,Meszaros B", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btx486", "created_at": "2021-09-30T08:22:52.307Z", "updated_at": "2021-09-30T08:22:52.307Z"}], "licence-links": [{"licence-name": "MFIB Free for academic and non-profit use", "licence-id": 508, "link-id": 2197, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2847", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-04T17:22:43.000Z", "updated-at": "2021-11-24T13:13:49.723Z", "metadata": {"doi": "10.25504/FAIRsharing.ZPRtfG", "name": "Agronomic Linked Data", "status": "ready", "contacts": [{"contact-name": "Pierre Larmande", "contact-email": "Pierre.larmande@ird.fr", "contact-orcid": "0000-0002-2923-9790"}], "homepage": "http://www.agrold.org/", "citations": [{"doi": "10.1371/journal.pone.0198270", "pubmed-id": 30500839, "publication-id": 2610}], "identifier": 2847, "description": "The Agronomic Linked Data (AgroLD) is a knowledge-based system relying on Semantic Web technologies and exploiting standard domain ontologies, which integrates data about plant species of high interest for the plant science community. AgroLD is an RDF knowledge base of 100M triples created by annotating and integrating more than 50 datasets from 10 data sources and linked using 10 ontologies.", "abbreviation": "AgroLD", "access-points": [{"url": "http://agrold.southgreen.fr/agrold/api-doc.jsp", "name": "AgroLD API", "type": "REST"}], "support-links": [{"url": "http://agrold.southgreen.fr/agrold/survey.jsp", "name": "Send feedback", "type": "Contact form"}, {"url": "http://agrold.southgreen.fr/agrold/documentation.jsp", "name": "Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/agro_ld", "name": "@agro_ld", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "http://agrold.southgreen.fr/agrold/quicksearch.jsp", "name": "Faceted Search", "type": "data access"}, {"url": "http://agrold.southgreen.fr/agrold/advancedSearch.jsp", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "http://agrold.southgreen.fr/agrold/relfinder.jsp", "name": "Explore Relationships / Network"}, {"url": "http://agrold.southgreen.fr/agrold/sparqleditor.jsp", "name": "SPARQL Query & Editor"}]}, "legacy-ids": ["biodbcore-001348", "bsg-d001348"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Genetics", "Agronomy", "Life Science", "Plant Genetics"], "domains": ["Phenotype", "Protein", "Pathway model", "Gene", "Germplasm"], "taxonomies": ["Arabidopsis thaliana", "Oryza barthii", "Oryza brachyantha", "Oryza glaberrima", "Oryza meridionalis", "Oryza sativa", "Oryza sativa L. ssp. Indica", "Oryza sativa L. ssp. japonica", "Sorghum bicolor", "Triticum aestivum", "Triticum urartu"], "user-defined-tags": ["Plant Phenotypes and Traits"], "countries": ["China", "France"], "name": "FAIRsharing record for: Agronomic Linked Data", "abbreviation": "AgroLD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZPRtfG", "doi": "10.25504/FAIRsharing.ZPRtfG", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Agronomic Linked Data (AgroLD) is a knowledge-based system relying on Semantic Web technologies and exploiting standard domain ontologies, which integrates data about plant species of high interest for the plant science community. AgroLD is an RDF knowledge base of 100M triples created by annotating and integrating more than 50 datasets from 10 data sources and linked using 10 ontologies.", "publications": [{"id": 2610, "pubmed_id": 30500839, "title": "Agronomic Linked Data (AgroLD): A knowledge-based system to enable integrative biology in agronomy.", "year": 2018, "url": "http://doi.org/10.1371/journal.pone.0198270", "authors": "Venkatesan A,Tagny Ngompe G,Hassouni NE,Chentli I,Guignon V,Jonquet C,Ruiz M,Larmande P", "journal": "PLoS One", "doi": "10.1371/journal.pone.0198270", "created_at": "2021-09-30T08:27:20.404Z", "updated_at": "2021-09-30T08:27:20.404Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1981", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-20T16:43:49.036Z", "metadata": {"doi": "10.25504/FAIRsharing.zqzvyc", "name": "NCBI Structure", "status": "ready", "contacts": [{"contact-name": "Thomas Madej", "contact-email": "madej@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/structure", "citations": [], "identifier": 1981, "description": "NCBI Structure, as part of the Entrez system, facilitates access to structure data by connecting them with associated literature, protein and nucleic acid sequences, chemicals, biomolecular interactions, and more.\nNote that this resource was also known as Molecular Modeling Database (MMDB).", "abbreviation": null, "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd_help.shtml", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/mmdb/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/structure", "name": "Entrez structure search"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/CN3D/cn3d.shtml", "name": "Cn3D structure viewer 4.3.1"}, {"url": "http://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE=Proteins&PROGRAM=blastp&BLAST_PROGRAMS=blastp&PAGE_TYPE=BlastSearch&DATABASE=pdb", "name": "BLAST"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/VAST/vastsearch.html", "name": "VAST Search for Similar Structures"}, {"url": "http://www.ncbi.nlm.nih.gov/Structure/vastplus/vastplus.cgi", "name": "VAST+ similar structure assemblies"}, {"url": "https://www.ncbi.nlm.nih.gov/Structure/icn3d/", "name": "iCn3D - WebGL-based 3D structure viewer 2.24.7"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010779", "name": "re3data:r3d100010779", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004218", "name": "SciCrunch:RRID:SCR_004218", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000447", "bsg-d000447"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Modeling and simulation", "Molecular interaction", "Small molecule", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Structure", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.zqzvyc", "doi": "10.25504/FAIRsharing.zqzvyc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NCBI Structure, as part of the Entrez system, facilitates access to structure data by connecting them with associated literature, protein and nucleic acid sequences, chemicals, biomolecular interactions, and more.\nNote that this resource was also known as Molecular Modeling Database (MMDB).", "publications": [{"id": 179, "pubmed_id": 24319143, "title": "MMDB and VAST+: tracking structural similarities between macromolecular complexes.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1208", "authors": "Madej T,Lanczycki CJ,Zhang D,Thiessen PA,Geer RC,Marchler-Bauer A,Bryant SH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1208", "created_at": "2021-09-30T08:22:39.578Z", "updated_at": "2021-09-30T11:28:43.658Z"}, {"id": 1504, "pubmed_id": 17135201, "title": "MMDB: annotating protein sequences with Entrez's 3D-structure database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl952", "authors": "Wang Y., Addess KJ., Chen J., Geer LY., He J., He S., Lu S., Madej T., Marchler-Bauer A., Thiessen PA., Zhang N., Bryant SH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl952", "created_at": "2021-09-30T08:25:08.378Z", "updated_at": "2021-09-30T08:25:08.378Z"}], "licence-links": [{"licence-name": "NCBI Website and Data Usage Policies and Disclaimers", "licence-id": 558, "link-id": 142, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1774", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:06.592Z", "metadata": {"doi": "10.25504/FAIRsharing.gf8yhy", "name": "Non-Ribosomal Peptides Database", "status": "ready", "contacts": [{"contact-name": "Norine team", "contact-email": "norine@univ-lille.fr"}], "homepage": "https://bioinfo.cristal.univ-lille.fr/norine", "identifier": 1774, "description": "Norine is a platform that includes a database of nonribosomal peptides together with tools for their analysis. Norine currently contains more than 1000 peptides.", "abbreviation": "NORINE", "access-points": [{"url": "https://bioinfo.cristal.univ-lille.fr/norine/service.jsp", "name": "Norine REST services", "type": "REST"}], "support-links": [{"url": "norine@univ-lille.fr", "name": "Norine team", "type": "Support email"}, {"url": "https://bioinfo.cristal.univ-lille.fr/norine/help.jsp", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://bioinfo.cristal.univ-lille.fr/norine/dform.jsp", "name": "Annotation search", "type": "data access"}, {"url": "http://bioinfo.lifl.fr/norine/form2.jsp", "name": "search by structure", "type": "data access"}, {"url": "https://bioinfo.cristal.univ-lille.fr/norine/my/mynorine.jsf", "name": "MyNorine", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000232", "bsg-d000232"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Non-Ribosomal Peptides Database", "abbreviation": "NORINE", "url": "https://fairsharing.org/10.25504/FAIRsharing.gf8yhy", "doi": "10.25504/FAIRsharing.gf8yhy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Norine is a platform that includes a database of nonribosomal peptides together with tools for their analysis. Norine currently contains more than 1000 peptides.", "publications": [{"id": 1431, "pubmed_id": 17913739, "title": "NORINE: a database of nonribosomal peptides.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm792", "authors": "Caboche S., Pupin M., Lecl\u00e8re V., Fontaine A., Jacques P., Kucherov G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm792", "created_at": "2021-09-30T08:25:00.024Z", "updated_at": "2021-09-30T08:25:00.024Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1470, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2139", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.686Z", "metadata": {"doi": "10.25504/FAIRsharing.34pfmc", "name": "CentrosomeDB", "status": "deprecated", "contacts": [{"contact-name": "Alberto Pascual Montano", "contact-email": "pascual@cnb.csic.es"}], "homepage": "http://centrosome.cnb.csic.es", "identifier": 2139, "description": "CentrosomeDB is a collection of human and drosophila centrosomal genes that were reported in the literature and other sources. The database offers the possibility to study the evolution, function, and structure of the centrosome. They have compiled information from many sources, including Gene Ontology, disease-association, single nucleotide polymorphisms, and associated gene expression experiments.", "abbreviation": "CentrosomeDB", "support-links": [{"url": "fbio@cnb.csic.es", "type": "Support email"}, {"url": "http://centrosome.cnb.csic.es/human/centrosome/help", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://centrosome.cnb.csic.es/fly/centrosome/download", "name": "download", "type": "data access"}, {"url": "http://centrosome.cnb.csic.es/human/centrosome/query?query_type=genes", "name": "search", "type": "data access"}, {"url": "http://centrosome.cnb.csic.es/human/centrosome/submit_information", "name": "submit", "type": "data access"}], "associated-tools": [{"url": "http://centrosome.cnb.csic.es/human/centrosome/query_blast", "name": "BLAST"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000609", "bsg-d000609"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein identification", "Centrosome", "Sequence"], "taxonomies": ["Drosophila melanogaster", "Homo sapiens"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: CentrosomeDB", "abbreviation": "CentrosomeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.34pfmc", "doi": "10.25504/FAIRsharing.34pfmc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CentrosomeDB is a collection of human and drosophila centrosomal genes that were reported in the literature and other sources. The database offers the possibility to study the evolution, function, and structure of the centrosome. They have compiled information from many sources, including Gene Ontology, disease-association, single nucleotide polymorphisms, and associated gene expression experiments.", "publications": [{"id": 592, "pubmed_id": 24270791, "title": "CentrosomeDB: a new generation of the centrosomal proteins database for Human and Drosophila melanogaster", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1126", "authors": "Joao Alves-Cruzeiro, Ruben Nogalales-Cadenas, Alberto Pascual-Montano", "journal": "NAR-Nucleic Acids Research", "doi": "10.1093/nar/gkt1126", "created_at": "2021-09-30T08:23:24.960Z", "updated_at": "2021-09-30T08:23:24.960Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1783", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.353Z", "metadata": {"doi": "10.25504/FAIRsharing.k6vsdr", "name": "Database of MHC Ligands and Peptide Motifs", "status": "ready", "contacts": [{"contact-name": "Stefan Stevanovic", "contact-email": "stefan.stevanovic@uni-tuebingen.de"}], "homepage": "http://www.syfpeithi.de/", "identifier": 1783, "description": "SYFPEITHI is a database comprising more than 7000 peptide sequences known to bind class I and class II MHC molecules.", "abbreviation": "SYFPEITHI", "support-links": [{"url": "http://www.syfpeithi.de/bin/MHCServer.dll/Info.htm", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://www.syfpeithi.de/bin/MHCServer.dll/EpitopePrediction.htm", "name": "analyze", "type": "data access"}, {"url": "http://www.syfpeithi.de/bin/MHCServer.dll/FindYourMotif.htm", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000243", "bsg-d000243"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide", "Small molecule", "Major histocompatibility complex", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Database of MHC Ligands and Peptide Motifs", "abbreviation": "SYFPEITHI", "url": "https://fairsharing.org/10.25504/FAIRsharing.k6vsdr", "doi": "10.25504/FAIRsharing.k6vsdr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SYFPEITHI is a database comprising more than 7000 peptide sequences known to bind class I and class II MHC molecules.", "publications": [{"id": 318, "pubmed_id": 10602881, "title": "SYFPEITHI: database for MHC ligands and peptide motifs.", "year": 1999, "url": "http://doi.org/10.1007/s002510050595", "authors": "Rammensee H., Bachmann J., Emmerich NP., Bachor OA., Stevanovi\u0107 S.,", "journal": "Immunogenetics", "doi": "10.1007/s002510050595", "created_at": "2021-09-30T08:22:54.107Z", "updated_at": "2021-09-30T08:22:54.107Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1968", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-02T08:59:08.542Z", "metadata": {"doi": "10.25504/FAIRsharing.djsbw2", "name": "Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", "status": "ready", "contacts": [{"contact-name": "Eugene V Koonin", "contact-email": "koonin@ncbi.nlm.nih.gov", "contact-orcid": "0000-0003-3943-8299"}], "homepage": "https://www.ncbi.nlm.nih.gov/research/cog/", "citations": [], "identifier": 1968, "description": "Clusters of Orthologous Groups of proteins (COGs) were delineated by comparing protein sequences encoded in complete genomes, representing major phylogenetic lineages. Each COG consists of individual proteins or groups of paralogs from at least 3 lineages and thus corresponds to an ancient conserved domain.", "abbreviation": "COG", "data-curation": {}, "year-creation": 1996, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/pub/COG/COG", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/COG", "name": "Web interface & FTP", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000434", "bsg-d000434"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Clusters of Orthologous Groups of Proteins: Phylogenetic classification of proteins encoded in complete genomes", "abbreviation": "COG", "url": "https://fairsharing.org/10.25504/FAIRsharing.djsbw2", "doi": "10.25504/FAIRsharing.djsbw2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Clusters of Orthologous Groups of proteins (COGs) were delineated by comparing protein sequences encoded in complete genomes, representing major phylogenetic lineages. Each COG consists of individual proteins or groups of paralogs from at least 3 lineages and thus corresponds to an ancient conserved domain.", "publications": [{"id": 434, "pubmed_id": 9381173, "title": "A genomic perspective on protein families.", "year": 1997, "url": "http://doi.org/10.1126/science.278.5338.631", "authors": "Tatusov RL., Koonin EV., Lipman DJ.,", "journal": "Science", "doi": "10.1126/science.278.5338.631", "created_at": "2021-09-30T08:23:07.176Z", "updated_at": "2021-09-30T08:23:07.176Z"}, {"id": 912, "pubmed_id": 25428365, "title": "Expanded microbial genome coverage and improved protein family annotation in the COG database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1223", "authors": "Galperin MY,Makarova KS,Wolf YI,Koonin EV", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1223", "created_at": "2021-09-30T08:24:00.719Z", "updated_at": "2021-09-30T11:28:55.268Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1506, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1509, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1571", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.742Z", "metadata": {"doi": "10.25504/FAIRsharing.c1q6jd", "name": "DistiLD Database: Diseases and Traits in Linkage Disequilibrium Blocks", "status": "ready", "contacts": [{"contact-name": "Support email", "contact-email": "distild@jensenlab.org"}], "homepage": "http://distild.jensenlab.org", "identifier": 1571, "description": "The DistiLD database aims to increase the usage of existing genome-wide association studies (GWAS) results by making it easy to query and visualize disease-associated SNPs and genes in their chromosomal context.", "abbreviation": "DistiLD", "year-creation": 2011, "data-processes": [{"name": "weekly release", "type": "data release"}, {"name": "Manual annotation", "type": "data curation"}, {"url": "http://distild.jensenlab.org/download.html", "name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://distild.jensenlab.org/", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000026", "bsg-d000026"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Disease", "Single nucleotide polymorphism", "Gene", "Genome-wide association study"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: DistiLD Database: Diseases and Traits in Linkage Disequilibrium Blocks", "abbreviation": "DistiLD", "url": "https://fairsharing.org/10.25504/FAIRsharing.c1q6jd", "doi": "10.25504/FAIRsharing.c1q6jd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The DistiLD database aims to increase the usage of existing genome-wide association studies (GWAS) results by making it easy to query and visualize disease-associated SNPs and genes in their chromosomal context.", "publications": [{"id": 1238, "pubmed_id": 22058129, "title": "DistiLD Database: diseases and traits in linkage disequilibrium blocks.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr899", "authors": "Palleja A,Horn H,Eliasson S,Jensen LJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr899", "created_at": "2021-09-30T08:24:38.122Z", "updated_at": "2021-09-30T11:29:03.692Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 93, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1710", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.423Z", "metadata": {"doi": "10.25504/FAIRsharing.90yw2f", "name": "Worm Developmental Dynamics Database", "status": "ready", "contacts": [{"contact-name": "Shuichi Onami", "contact-email": "sonami@riken.jp"}], "homepage": "http://so.qbic.riken.jp/wddd/cdd/index.html", "identifier": 1710, "description": "This database is a collection of quantitative information about cell division dynamics in early Caenorhabditis elegans embryos when each of all essential embryonic genes is silenced individually by RNA interference (RNAi). The information is obtained by combining four-dimensional differential contrast interference (DIC) microscopy and computer image processing. The information collection provides novel opportunities for developing quantitative and computational approaches towards understanding animal development.", "abbreviation": "WDDD", "support-links": [{"url": "http://so.qbic.riken.jp/wddd/cdd/help.html", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "adhoc release", "type": "data release"}, {"url": "http://so.qbic.riken.jp/wddd/cdd/search.html", "name": "database search", "type": "data access"}, {"url": "http://so.qbic.riken.jp/wddd/cdd/search.html?mode=all&string=", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000167", "bsg-d000167"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Bioimaging", "Microscopy", "RNA interference", "Cell division"], "taxonomies": ["Caenorhabditis elegans"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Worm Developmental Dynamics Database", "abbreviation": "WDDD", "url": "https://fairsharing.org/10.25504/FAIRsharing.90yw2f", "doi": "10.25504/FAIRsharing.90yw2f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database is a collection of quantitative information about cell division dynamics in early Caenorhabditis elegans embryos when each of all essential embryonic genes is silenced individually by RNA interference (RNAi). The information is obtained by combining four-dimensional differential contrast interference (DIC) microscopy and computer image processing. The information collection provides novel opportunities for developing quantitative and computational approaches towards understanding animal development.", "publications": [{"id": 62, "pubmed_id": 23172286, "title": "WDDD: Worm Developmental Dynamics Database.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1107", "authors": "Kyoda K., Adachi E., Masuda E., Nagai Y., Suzuki Y., Oguro T., Urai M., Arai R., Furukawa M., Shimada K., Kuramochi J., Nagai E., Onami S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1107", "created_at": "2021-09-30T08:22:26.956Z", "updated_at": "2021-09-30T08:22:26.956Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2835", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-01T12:25:45.000Z", "updated-at": "2021-11-24T13:17:08.204Z", "metadata": {"doi": "10.25504/FAIRsharing.FwFGGF", "name": "PhenoDis", "status": "ready", "contacts": [{"contact-name": "Dr. Andreas Ruepp", "contact-email": "andreas.ruepp@helmholtz-muenchen.de"}], "homepage": "http://mips.helmholtz-muenchen.de/phenodis/", "citations": [{"doi": "10.1186/s13023-018-0765-y", "pubmed-id": 29370821, "publication-id": 2567}], "identifier": 2835, "description": "PhenoDis is a manually annotated database providing symptomatic, genetic and imprinting information about rare cardiac diseases. PhenoDis is primarily concerned with the assignment of clinical symptoms to rare diseases using the biomedical literature as information source and the Human Phenotype Ontology (HPO) as vocabulary.", "abbreviation": "PhenoDis", "support-links": [{"url": "http://mips.helmholtz-muenchen.de/pheno/help/showHelp", "name": "Help", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://mips.helmholtz-muenchen.de/pheno/download/index", "name": "Download", "type": "data release"}, {"url": "http://mips.helmholtz-muenchen.de/pheno/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001336", "bsg-d001336"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cardiology", "Genetics"], "domains": ["Disease", "Cardiovascular disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: PhenoDis", "abbreviation": "PhenoDis", "url": "https://fairsharing.org/10.25504/FAIRsharing.FwFGGF", "doi": "10.25504/FAIRsharing.FwFGGF", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhenoDis is a manually annotated database providing symptomatic, genetic and imprinting information about rare cardiac diseases. PhenoDis is primarily concerned with the assignment of clinical symptoms to rare diseases using the biomedical literature as information source and the Human Phenotype Ontology (HPO) as vocabulary.", "publications": [{"id": 2567, "pubmed_id": 29370821, "title": "PhenoDis: a comprehensive database for phenotypic characterization of rare cardiac diseases.", "year": 2018, "url": "http://doi.org/10.1186/s13023-018-0765-y", "authors": "Adler A,Kirchmeier P,Reinhard J,Brauner B,Dunger I,Fobo G,Frishman G,Montrone C,Mewes HW,Arnold M,Ruepp A", "journal": "Orphanet J Rare Dis", "doi": "10.1186/s13023-018-0765-y", "created_at": "2021-09-30T08:27:14.795Z", "updated_at": "2021-09-30T08:27:14.795Z"}], "licence-links": [{"licence-name": "Helmholtz Zentrum Muenchen Imprint", "licence-id": 387, "link-id": 1272, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1949", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:34.691Z", "metadata": {"doi": "10.25504/FAIRsharing.fhcmwq", "name": "The Global Proteome Machine Database", "status": "ready", "contacts": [{"contact-email": "contact@thegpm.org"}], "homepage": "https://www.thegpm.org/GPMDB/index.html", "citations": [{"doi": "10.1021/pr049882h", "pubmed-id": 15595733, "publication-id": 1266}], "identifier": 1949, "description": "The Global Proteome Machine Database (gpmDB holds the minimum amount of information necessary for common bioinformatics-related tasks (such as sequence assignment validation) rather than being a complete record of a proteomics experiment. It was also created to aid in the process of validating peptide MS/MS spectra as well as protein coverage patterns. Most of the data is held in a set of XML files: the database serves as an index to those files, allowing for rapid lookups and reduced database storage requirements.", "abbreviation": "gpmDB", "access-points": [{"url": "https://wiki.thegpm.org/wiki/GPMDB_REST", "name": "gpmDB REST", "type": "REST"}], "support-links": [{"url": "https://www.thegpm.org/", "name": "gpmDB Blog", "type": "Blog/News"}, {"url": "https://www.thegpm.org/GPMDB/gpmdb_faq.html", "name": "gpmDB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wiki.thegpm.org/wiki/Main_Page", "name": "gpmDB Wiki", "type": "Help documentation"}, {"url": "https://www.thegpm.org/GPMDB/url_conventions.html", "name": "gpmDB URL Conventions", "type": "Help documentation"}, {"url": "https://twitter.com/GPMDB", "name": "@GPMDB", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "ftp://ftp.thegpm.org", "name": "Download", "type": "data release"}, {"url": "http://gpmdb.thegpm.org/", "name": "Search", "type": "data access"}, {"url": "http://gpmdb.thegpm.org/acc.html", "name": "Protein Accession Search", "type": "data access"}, {"url": "http://gpmdb.thegpm.org/gpmnum.html", "name": "GPM Data Accession Search", "type": "data access"}, {"url": "http://gpmdb.thegpm.org/keyword.html", "name": "Keyword Search", "type": "data access"}, {"url": "http://gpmdb.thegpm.org/go/index.html", "name": "Browse by Ontology Terms", "type": "data access"}, {"url": "http://snap.thegpm.org/SNAP/index.html", "name": "SNAP Polymorphism Interface", "type": "data access"}, {"url": "http://psyt.thegpm.org/psyt/index.html", "name": "pSYT PTM Interface", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010883", "name": "re3data:r3d100010883", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006617", "name": "SciCrunch:RRID:SCR_006617", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000415", "bsg-d000415"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Proteomics"], "domains": ["Mass spectrum", "Proteome", "Molecular interaction", "Mass spectrometry assay", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: The Global Proteome Machine Database", "abbreviation": "gpmDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.fhcmwq", "doi": "10.25504/FAIRsharing.fhcmwq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Global Proteome Machine Database (gpmDB holds the minimum amount of information necessary for common bioinformatics-related tasks (such as sequence assignment validation) rather than being a complete record of a proteomics experiment. It was also created to aid in the process of validating peptide MS/MS spectra as well as protein coverage patterns. Most of the data is held in a set of XML files: the database serves as an index to those files, allowing for rapid lookups and reduced database storage requirements.", "publications": [{"id": 1266, "pubmed_id": 15595733, "title": "Open source system for analyzing, validating, and storing protein identification data.", "year": 2004, "url": "http://doi.org/10.1021/pr049882h", "authors": "Craig R,Cortens JP,Beavis RC", "journal": "J Proteome Res", "doi": "10.1021/pr049882h", "created_at": "2021-09-30T08:24:41.275Z", "updated_at": "2021-09-30T08:24:41.275Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1933", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:31.914Z", "metadata": {"doi": "10.25504/FAIRsharing.f1dv0", "name": "IUPHAR/BPS Guide to PHARMACOLOGY", "status": "ready", "contacts": [{"contact-name": "Jamie Davies", "contact-email": "jamie.davies@ed.ac.uk"}, {"contact-name": "Simon Harding", "contact-email": "simon.harding@igmm.ed.ac.uk", "contact-orcid": "0000-0002-9262-8318"}], "homepage": "https://www.guidetopharmacology.org", "citations": [{"doi": "10.1093/nar/gkab1010", "pubmed-id": 34718737, "publication-id": 3130}], "identifier": 1933, "description": "The information in the database is presented at two levels: the initial view or landing pages for each target family provide expert-curated overviews of the key properties and selective ligands and tool compounds available. For selected targets more detailed introductory chapters for each family are available along with curated information on the pharmacological, physiological, structural, genetic and pathophysiogical properties of each target. Recent extensions to the database provide specific portals for accessing data on immunopharmacology (IUPHAR Guide to IMMUNOPHARMACOLOGY; www.guidetoimmunopharmacology.org), and on malaria pharmacology (IUPHAR/MMV Guide to MALARIA PHARMACOLOGY; www.guidetomalariapharmacology.org). The database is enhanced with hyperlinks to additional information in other databases including Ensembl, UniProt, PubChem and ChEMBL, as well as curated chemical information and literature citations in PubMed.", "abbreviation": "Guide to Pharmacology", "access-points": [{"url": "http://www.guidetopharmacology.org/webServices.jsp", "name": "REST Web Services", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://blog.guidetopharmacology.org/", "name": "guidetopharmacology blog", "type": "Blog/News"}, {"url": "enquiries@guidetopharmacology.org", "name": "enquiries@guidetopharmacology.org", "type": "Support email"}, {"url": "http://www.guidetopharmacology.org/faq.jsp", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.guidetopharmacology.org/pdfs/termsAndSymbols.pdf", "name": "Terms and Symbols", "type": "Help documentation"}, {"url": "http://www.guidetopharmacology.org/nomenclature.jsp", "name": "Nomenclature Guidelines", "type": "Help documentation"}, {"url": "http://www.guidetopharmacology.org/about.jsp", "name": "About the Site", "type": "Help documentation"}, {"url": "http://www.guidetopharmacology.org/news.jsp", "name": "Latest News", "type": "Help documentation"}, {"url": "http://www.guidetopharmacology.org/GuidetoPHARMACOLOGY_Tutorial.pdf", "name": "Tutorial", "type": "Training documentation"}, {"url": "https://twitter.com/GuidetoPHARM", "name": "@GuidetoPHARM", "type": "Twitter"}, {"url": "https://www.guidetopharmacology.org/helpPage.jsp", "name": "Help Page", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://www.guidetopharmacology.org/GRAC/searchPage.jsp", "name": "Target search", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/chemSearch.jsp", "name": "Ligand search", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/", "name": "Browse", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=GPCR", "name": "Browse G protein-coupled receptors", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=IC", "name": "Browse Ion Channels", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId=698&familyType=ENZYME", "name": "Browse Kinases", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=NHR", "name": "Browse Nuclear Hormone Receptors", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=CATALYTICRECEPTOR", "name": "Browse Catalytic Receptors", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=TRANSPORTER", "name": "Browse Transporters", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/ReceptorFamiliesForward?type=ENZYME", "name": "Browse Enzymes", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", "name": "Browse Ligands", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/LigandFamiliesForward", "name": "Browse Ligand Families and Groups", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/GRAC/DiseaseListForward", "name": "Browse Disease List", "type": "data access"}, {"url": "http://www.guidetopharmacology.org/download.jsp", "name": "Download", "type": "data access"}, {"url": "https://www.guidetopharmacology.org/GRAC/pharmacologySearch.jsp", "name": "Pharmacology Search", "type": "data access"}, {"url": "https://www.guidetomalariapharmacology.org/malaria/index.jsp", "name": "Guide to Malaria Pharmacology", "type": "data access"}, {"url": "https://www.guidetoimmunopharmacology.org/immuno/index.jsp", "name": "Guide to Immunopharmacology", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013308", "name": "re3data:r3d100013308", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000398", "bsg-d000398"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunology", "Pharmacology", "Life Science"], "domains": ["Channel", "Ligand", "Malaria", "Receptor", "Drug interaction", "Literature curation", "Target"], "taxonomies": ["Homo sapiens", "Mus musculus", "Plasmodium falciparum", "Rattus"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: IUPHAR/BPS Guide to PHARMACOLOGY", "abbreviation": "Guide to Pharmacology", "url": "https://fairsharing.org/10.25504/FAIRsharing.f1dv0", "doi": "10.25504/FAIRsharing.f1dv0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The information in the database is presented at two levels: the initial view or landing pages for each target family provide expert-curated overviews of the key properties and selective ligands and tool compounds available. For selected targets more detailed introductory chapters for each family are available along with curated information on the pharmacological, physiological, structural, genetic and pathophysiogical properties of each target. Recent extensions to the database provide specific portals for accessing data on immunopharmacology (IUPHAR Guide to IMMUNOPHARMACOLOGY; www.guidetoimmunopharmacology.org), and on malaria pharmacology (IUPHAR/MMV Guide to MALARIA PHARMACOLOGY; www.guidetomalariapharmacology.org). The database is enhanced with hyperlinks to additional information in other databases including Ensembl, UniProt, PubChem and ChEMBL, as well as curated chemical information and literature citations in PubMed.", "publications": [{"id": 91, "pubmed_id": 26464438, "title": "The IUPHAR/BPS Guide to PHARMACOLOGY in 2016: towards curated quantitative interactions between 1300 protein targets and 6000 ligands.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1037", "authors": "Southan C,Sharman JL,Benson HE,Faccenda E,Pawson AJ,Alexander SP,Buneman OP,Davenport AP,McGrath JC,Peters JA,Spedding M,Catterall WA,Fabbro D,Davies JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1037", "created_at": "2021-09-30T08:22:30.370Z", "updated_at": "2021-09-30T11:28:42.433Z"}, {"id": 1757, "pubmed_id": 31691834, "title": "The IUPHAR/BPS Guide to PHARMACOLOGY in 2020: extending immunopharmacology content and introducing the IUPHAR/MMV Guide to MALARIA PHARMACOLOGY.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz951", "authors": "Armstrong JF,Faccenda E,Harding SD,Pawson AJ,Southan C,Sharman JL,Campo B,Cavanagh DR,Alexander SPH,Davenport AP,Spedding M,Davies JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz951", "created_at": "2021-09-30T08:25:37.167Z", "updated_at": "2021-09-30T11:29:20.035Z"}, {"id": 2582, "pubmed_id": 24234439, "title": "The IUPHAR/BPS Guide to PHARMACOLOGY: an expert-driven knowledgebase of drug targets and their ligands.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1143", "authors": "Pawson AJ,Sharman JL,Benson HE,Faccenda E,Alexander SP,Buneman OP,Davenport AP,McGrath JC,Peters JA,Southan C,Spedding M,Yu W,Harmar AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1143", "created_at": "2021-09-30T08:27:16.601Z", "updated_at": "2021-09-30T11:29:39.910Z"}, {"id": 2853, "pubmed_id": 29149325, "title": "The IUPHAR/BPS Guide to PHARMACOLOGY in 2018: updates and expansion to encompass the new guide to IMMUNOPHARMACOLOGY.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1121", "authors": "Harding SD,Sharman JL,Faccenda E,Southan C,Pawson AJ,Ireland S,Gray AJG,Bruce L,Alexander SPH,Anderton S,Bryant C,Davenport AP,Doerig C,Fabbro D,Levi-Schaffer F,Spedding M,Davies JA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1121", "created_at": "2021-09-30T08:27:50.963Z", "updated_at": "2021-09-30T11:29:47.414Z"}, {"id": 3130, "pubmed_id": 34718737, "title": "The IUPHAR/BPS guide to PHARMACOLOGY in 2022: curating pharmacology for COVID-19, malaria and antibacterials.", "year": 2021, "url": "https://doi.org/10.1093/nar/gkab1010", "authors": "Harding SD, Armstrong JF, Faccenda E, Southan C, Alexander SPH, Davenport AP, Pawson AJ, Spedding M, Davies JA, NC-IUPHAR.", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkab1010", "created_at": "2021-11-12T12:36:32.635Z", "updated_at": "2021-11-12T12:36:32.635Z"}], "licence-links": [{"licence-name": "IUPHAR/BPS Guide to PHARMACOLOGY Attribution required", "licence-id": 465, "link-id": 504, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 505, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2689", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-22T16:34:31.000Z", "updated-at": "2021-11-24T13:19:38.599Z", "metadata": {"doi": "10.25504/FAIRsharing.FL1LNB", "name": "Translocatome", "status": "ready", "contacts": [{"contact-name": "Peter Csermely", "contact-email": "csermely.peter@med.semmelweis-univ.hu"}], "homepage": "http://translocatome.linkgroup.hu", "citations": [{"doi": "10.1093/nar/gky1044", "pubmed-id": 30380112, "publication-id": 328}], "identifier": 2689, "description": "Translocatome is a database that collects and characterises manually curated and predicted translocating proteins from human cells. The prediction is made by a gradient boosting based machine learning algorithm (XGBoost), using highly curated positive and negative learning sets.", "abbreviation": "Translocatome", "support-links": [{"url": "http://translocatome.linkgroup.hu/help", "name": "Translocatome Help", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://translocatome.linkgroup.hu/coredata", "name": "Browse Core Data", "type": "data access"}, {"url": "http://translocatome.linkgroup.hu/search", "name": "Search Database", "type": "data access"}, {"url": "http://translocatome.linkgroup.hu/download", "name": "Download Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001186", "bsg-d001186"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Network model", "Interactome", "Protein localization", "Signaling", "Cellular localization"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Protein translocation"], "countries": ["Hungary"], "name": "FAIRsharing record for: Translocatome", "abbreviation": "Translocatome", "url": "https://fairsharing.org/10.25504/FAIRsharing.FL1LNB", "doi": "10.25504/FAIRsharing.FL1LNB", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Translocatome is a database that collects and characterises manually curated and predicted translocating proteins from human cells. The prediction is made by a gradient boosting based machine learning algorithm (XGBoost), using highly curated positive and negative learning sets.", "publications": [{"id": 328, "pubmed_id": 30380112, "title": "Translocatome: a novel resource for the analysis of protein translocation between cellular organelles.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1044", "authors": "Mendik P,Dobronyi L,Hari F,Kerepesi C,Maia-Moco L,Buszlai D,Csermely P,Veres DV", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1044", "created_at": "2021-09-30T08:22:55.205Z", "updated_at": "2021-09-30T11:28:45.377Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 594, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2388", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T09:08:42.000Z", "updated-at": "2021-11-24T13:19:34.521Z", "metadata": {"doi": "10.25504/FAIRsharing.nn9r0d", "name": "IDSM", "status": "ready", "homepage": "https://www.elixir-europe.org/services/database/idsm", "identifier": 2388, "description": "IDSM is an integrated database of small molecules.", "abbreviation": "IDSM", "year-creation": 2016}, "legacy-ids": ["biodbcore-000869", "bsg-d000869"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Small molecule"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: IDSM", "abbreviation": "IDSM", "url": "https://fairsharing.org/10.25504/FAIRsharing.nn9r0d", "doi": "10.25504/FAIRsharing.nn9r0d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IDSM is an integrated database of small molecules.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1991", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:56.815Z", "metadata": {"doi": "10.25504/FAIRsharing.4jg0qw", "name": "Reference Sequence Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/RefSeq/", "identifier": 1991, "description": "The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant, well-annotated set of sequences, including genomic DNA, transcripts, and proteins.", "abbreviation": "RefSeq", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/books/NBK50679/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK21091/", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/refseq/release/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE=MegaBlast&PROGRAM=blastn&BLAST_PROGRAMS=megaBlast&PAGE_TYPE=BlastSearch&SHOW_DEFAULTS=on&BLAST_SPEC=RefseqGene", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010285", "name": "re3data:r3d100010285", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003496", "name": "SciCrunch:RRID:SCR_003496", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000457", "bsg-d000457"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Computational Biology", "Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Sequencing", "Protein", "Transcript", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Reference Sequence Database", "abbreviation": "RefSeq", "url": "https://fairsharing.org/10.25504/FAIRsharing.4jg0qw", "doi": "10.25504/FAIRsharing.4jg0qw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant, well-annotated set of sequences, including genomic DNA, transcripts, and proteins.", "publications": [{"id": 459, "pubmed_id": 17130148, "title": "NCBI reference sequences (RefSeq): a curated non-redundant sequence database of genomes, transcripts and proteins.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl842", "authors": "Pruitt KD., Tatusova T., Maglott DR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl842", "created_at": "2021-09-30T08:23:09.867Z", "updated_at": "2021-09-30T08:23:09.867Z"}, {"id": 1609, "pubmed_id": null, "title": "NCBI\u2019s LocusLink and RefSeq", "year": 2000, "url": "https://doi.org/10.1093/nar/28.1.126", "authors": "Maglott DR, Katz KS, Sicotte H, and Pruitta KD", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:25:20.357Z", "updated_at": "2021-09-30T11:28:41.165Z"}], "licence-links": [{"licence-name": "RefSeq Attribution required", "licence-id": 705, "link-id": 447, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 448, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 449, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2248", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-09T00:28:10.000Z", "updated-at": "2021-11-24T13:19:30.579Z", "metadata": {"doi": "10.25504/FAIRsharing.ztvs34", "name": "Database of small human non-coding RNAs", "status": "ready", "contacts": [{"contact-name": "Li-San Wang", "contact-email": "dashr@lisanwanglab.org", "contact-orcid": "0000-0002-3684-0031"}], "homepage": "http://lisanwanglab.org/DASHR", "identifier": 2248, "description": "Integrated annotation and sequencing-based expression data for all major classes of human small non-coding RNAs (sncRNAs) for both full sncRNA transcripts and mature sncRNA products derived from these larger RNAs.", "abbreviation": "DASHR", "support-links": [{"url": "http://lisanwanglab.org/DASHR/smdb.php#faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2015, "data-processes": [{"url": "http://lisanwanglab.org/DASHR/smdb.php#tabSearch", "name": "search", "type": "data access"}, {"url": "http://lisanwanglab.org/DASHR/smdb.php#tabBrowse", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000722", "bsg-d000722"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "RNA sequence", "Sequence annotation", "RNA sequencing", "Non-coding RNA"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Database of small human non-coding RNAs", "abbreviation": "DASHR", "url": "https://fairsharing.org/10.25504/FAIRsharing.ztvs34", "doi": "10.25504/FAIRsharing.ztvs34", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Integrated annotation and sequencing-based expression data for all major classes of human small non-coding RNAs (sncRNAs) for both full sncRNA transcripts and mature sncRNA products derived from these larger RNAs.", "publications": [{"id": 2341, "pubmed_id": 26553799, "title": "DASHR: database of small human noncoding RNAs.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1188", "authors": "Leung YY,Kuksa PP,Amlie-Wolf A,Valladares O,Ungar LH,Kannan S,Gregory BD,Wang LS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1188", "created_at": "2021-09-30T08:26:47.525Z", "updated_at": "2021-09-30T11:29:33.488Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2288", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-21T09:04:52.000Z", "updated-at": "2021-11-24T13:19:50.475Z", "metadata": {"doi": "10.25504/FAIRsharing.tx8cgr", "name": "RNA Binding Protein Variant Database", "status": "ready", "contacts": [{"contact-name": "Mao Fengbiao", "contact-email": "maofengbiao08@163.com"}], "homepage": "http://www.rbp-var.biols.ac.cn/", "identifier": 2288, "description": "RBP-Var is a database of functional variants involved in regulation mediated by RNA-binding proteins. Human genome variants can change the RNA structure and affect RNA-protein interactions.", "abbreviation": "RBP-Var", "support-links": [{"url": "http://159.226.67.237:6080/sun/RBP-Var/index.php/Rbp/help", "type": "Help documentation"}, {"url": "http://159.226.67.237:6080/sun/RBP-Var/index.php/Rbp/about", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://159.226.67.237:6080/sun/RBP-Var/index.php/Rbp/download", "name": "Download data", "type": "data access"}]}, "legacy-ids": ["biodbcore-000762", "bsg-d000762"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenetics"], "domains": ["Regulation of post-translational protein modification", "Sequence variant"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: RNA Binding Protein Variant Database", "abbreviation": "RBP-Var", "url": "https://fairsharing.org/10.25504/FAIRsharing.tx8cgr", "doi": "10.25504/FAIRsharing.tx8cgr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RBP-Var is a database of functional variants involved in regulation mediated by RNA-binding proteins. Human genome variants can change the RNA structure and affect RNA-protein interactions.", "publications": [{"id": 1111, "pubmed_id": 26635394, "title": "RBP-Var: a database of functional variants involved in regulation mediated by RNA-binding proteins.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1308", "authors": "Mao F, Xiao L, Li X, Liang J, Teng H, Cai W, Sun ZS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1308", "created_at": "2021-09-30T08:24:23.098Z", "updated_at": "2021-09-30T08:24:23.098Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2818", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-20T09:04:17.000Z", "updated-at": "2021-12-06T10:48:57.926Z", "metadata": {"doi": "10.25504/FAIRsharing.p7YFEc", "name": "National Biodiversity Network Atlas", "status": "ready", "contacts": [{"contact-name": "Support", "contact-email": "support@nbnatlas.org", "contact-orcid": "0000-0001-9284-7900"}], "homepage": "https://nbnatlas.org/", "identifier": 2818, "description": "The NBN Atlas is an online tool that provides a platform to engage, educate and inform people about the natural world. It will help improve biodiversity knowledge, open up research possibilities and change the way environmental management is carried out in the UK.", "abbreviation": "NBN Atlas", "access-points": [{"url": "https://api.nbnatlas.org/", "name": "Access to species and records web service", "type": "REST"}], "support-links": [{"url": "support@nbnatlas.org", "name": "General support", "type": "Support email"}, {"url": "data@nbn.org.uk", "name": "Data support", "type": "Support email"}, {"url": "https://forums.nbn.org.uk/viewforum.php?id=46", "name": "NBN Atlas forum", "type": "Forum"}, {"url": "https://docs.nbnatlas.org/", "name": "NBN Atlas Documentation and Help Portal", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "https://registry.nbnatlas.org/datasets", "name": "Datasets", "type": "data access"}, {"url": "https://species.nbnatlas.org/search?fq=idxtype%3ATAXON&q=", "name": "Species", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010338", "name": "re3data:r3d100010338", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001317", "bsg-d001317"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Ecology", "Biodiversity"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: National Biodiversity Network Atlas", "abbreviation": "NBN Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.p7YFEc", "doi": "10.25504/FAIRsharing.p7YFEc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NBN Atlas is an online tool that provides a platform to engage, educate and inform people about the natural world. It will help improve biodiversity knowledge, open up research possibilities and change the way environmental management is carried out in the UK.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1146, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 1147, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1148, "relation": "undefined"}, {"licence-name": "Open Government Licence (OGL)", "licence-id": 628, "link-id": 1158, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3030", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-18T08:45:46.000Z", "updated-at": "2021-12-06T10:47:30.847Z", "metadata": {"name": "Collaborative Climate Community Data and Processing Grid", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "data@dkrz.de"}], "homepage": "https://portal.enes.org/c3web", "identifier": 3030, "description": "The project \"Collaborative Climate Community Data and Processing Grid \u2013C3-Grid\u201c proposes to link distributed data archives in several German institutions. With the help of grid technologies we will build up an infrastructure for the scientists in climate research which provides tools for effective data discovery, data transfer and processing.", "abbreviation": "C3Grid", "support-links": [{"url": "https://portal.enes.org/c3web/documents", "name": "Publications, talks, posters", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "Login to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011344", "name": "re3data:r3d100011344", "portal": "re3data"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and the developers have confirmed that this record should be deprecated."}, "legacy-ids": ["biodbcore-001538", "bsg-d001538"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Climate change", "Forecasting", "Storm"], "countries": ["Germany"], "name": "FAIRsharing record for: Collaborative Climate Community Data and Processing Grid", "abbreviation": "C3Grid", "url": "https://fairsharing.org/fairsharing_records/3030", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The project \"Collaborative Climate Community Data and Processing Grid \u2013C3-Grid\u201c proposes to link distributed data archives in several German institutions. With the help of grid technologies we will build up an infrastructure for the scientists in climate research which provides tools for effective data discovery, data transfer and processing.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1805", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:11.306Z", "metadata": {"doi": "10.25504/FAIRsharing.d8j0eb", "name": "Database of Rice Transcription Factors", "status": "deprecated", "contacts": [{"contact-email": "drtf@mail.cbi.pku.edu.cn"}], "homepage": "http://drtf.cbi.pku.edu.cn/", "identifier": 1805, "description": "DRTF contains 2025 putative transcription factors (TFs) in Oryza sativa L. ssp. indica and 2384 in ssp. japonica, distributed in 63 families, identified by computational prediction and manual curation. It includes detailed annotations of each TF including sequence features, functional domains, Gene Ontology assignment, chromosomal localization, EST and microarray expression information, as well as multiple sequence alignment of the DNA-binding domains for each TF family.", "abbreviation": "DRTF", "year-creation": 2005, "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000265", "bsg-d000265"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Expression data", "Deoxyribonucleic acid", "Biological regulation", "Transcription factor", "Curated information", "Messenger RNA", "Transcript", "Life cycle"], "taxonomies": ["Oryza sativa"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Database of Rice Transcription Factors", "abbreviation": "DRTF", "url": "https://fairsharing.org/10.25504/FAIRsharing.d8j0eb", "doi": "10.25504/FAIRsharing.d8j0eb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DRTF contains 2025 putative transcription factors (TFs) in Oryza sativa L. ssp. indica and 2384 in ssp. japonica, distributed in 63 families, identified by computational prediction and manual curation. It includes detailed annotations of each TF including sequence features, functional domains, Gene Ontology assignment, chromosomal localization, EST and microarray expression information, as well as multiple sequence alignment of the DNA-binding domains for each TF family.", "publications": [{"id": 1222, "pubmed_id": 16551659, "title": "DRTF: a database of rice transcription factors.", "year": 2006, "url": "http://doi.org/10.1093/bioinformatics/btl107", "authors": "Gao G., Zhong Y., Guo A., Zhu Q., Tang W., Zheng W., Gu X., Wei L., Luo J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btl107", "created_at": "2021-09-30T08:24:36.183Z", "updated_at": "2021-09-30T08:24:36.183Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 252, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2648", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-07T12:58:25.000Z", "updated-at": "2021-12-08T09:38:45.681Z", "metadata": {"name": "PDZscape", "status": "uncertain", "contacts": [{"contact-name": "Kakoli Bose", "contact-email": "kbose@actrec.gov.in"}], "homepage": "http://www.actrec.gov.in:8080/pdzscape/", "citations": [], "identifier": 2648, "description": "**There have been problems connecting to the homepage for this resource, and if you have any information on its status, please get in touch.**\nPDZscape is a compilation of all existing PDZ-containing proteins on a single platform. It provides a user friendly search interface that enables the database to be queried using the names and external identifiers.\n\n", "abbreviation": "PDZscape", "support-links": [{"url": "http://www.actrec.gov.in:8080/pdzscape/Contact.jsp", "type": "Contact form"}, {"url": "http://www.actrec.gov.in:8080/pdzscape/tutorial.jsp", "type": "Help documentation"}, {"url": "http://www.actrec.gov.in:8080/pdzscape/output.jsp", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://www.actrec.gov.in:8080/pdzscape/Search.jsp", "name": "search", "type": "data access"}, {"url": "http://www.actrec.gov.in:8080/pdzscape/Downloads.jsp", "name": "download", "type": "data access"}, {"url": "http://www.actrec.gov.in:8080/pdzscape/Blast.jsp", "name": "blast", "type": "data access"}], "associated-tools": [{"url": "http://www.actrec.gov.in:8080/pdzscape/predict.jsp", "name": "PDZ-Binding Protein Finder"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001139", "bsg-d001139"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Protein", "Binding site"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: PDZscape", "abbreviation": "PDZscape", "url": "https://fairsharing.org/fairsharing_records/2648", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: **There have been problems connecting to the homepage for this resource, and if you have any information on its status, please get in touch.**\nPDZscape is a compilation of all existing PDZ-containing proteins on a single platform. It provides a user friendly search interface that enables the database to be queried using the names and external identifiers.\n\n", "publications": [{"id": 2213, "pubmed_id": 29699484, "title": "PDZscape: a comprehensive PDZ-protein database.", "year": 2018, "url": "http://doi.org/10.1186/s12859-018-2156-8", "authors": "Doshi J,Kuppili RR,Gurdasani S,Venkatakrishnan N,Saxena A,Bose K", "journal": "BMC Bioinformatics", "doi": "10.1186/s12859-018-2156-8", "created_at": "2021-09-30T08:26:29.434Z", "updated_at": "2021-09-30T08:26:29.434Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2904", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-11T13:35:34.000Z", "updated-at": "2022-02-08T10:31:54.246Z", "metadata": {"doi": "10.25504/FAIRsharing.483ea0", "name": "GWAS Atlas", "status": "ready", "contacts": [{"contact-name": "GWAS Atlas Helpdesk", "contact-email": "gwas@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/gwas/", "citations": [{"doi": "10.1093/nar/gkz828", "pubmed-id": 31566222, "publication-id": 2794}], "identifier": 2904, "description": "The GWAS Atlas is a manually curated resource of genome-wide variant-trait associations for a wide range of species.", "abbreviation": "GWAS Atlas", "support-links": [{"url": "https://bigd.big.ac.cn/gwas/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/gwas/documentation", "name": "GWAS Atlas Documentation", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://bigd.big.ac.cn/gwas/browse/species", "name": "Browse by Species", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/ontology", "name": "Browse by Ontology Term", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/associations", "name": "Browse Associations", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/traits", "name": "Browse Traits", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/variants", "name": "Browse Variants", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/genes", "name": "Browse Genes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/studies", "name": "Browse Studies", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/browse/publications", "name": "Browse Publications", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gwas/downloads", "name": "Download", "type": "data release"}, {"url": "https://bigd.big.ac.cn/gwas/search", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001405", "bsg-d001405"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Phenotype", "Genome-wide association study", "Genotype"], "taxonomies": ["Brassica napus", "Capra hircus", "Glycine max", "Gossypium hirsutum", "Oryza sativa", "Prunus mume", "Sorghum bicolor", "Sus scrofa", "Zea mays"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: GWAS Atlas", "abbreviation": "GWAS Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.483ea0", "doi": "10.25504/FAIRsharing.483ea0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GWAS Atlas is a manually curated resource of genome-wide variant-trait associations for a wide range of species.", "publications": [{"id": 2794, "pubmed_id": 31566222, "title": "GWAS Atlas: a curated resource of genome-wide variant-trait associations in plants and animals.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz828", "authors": "Tian D,Wang P,Tang B,Teng X,Li C,Liu X,Zou D,Song S,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz828", "created_at": "2021-09-30T08:27:43.544Z", "updated_at": "2021-09-30T11:29:44.953Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1134, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2037", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.763Z", "metadata": {"doi": "10.25504/FAIRsharing.c54ywe", "name": "ArachnoServer: Spider toxin database", "status": "deprecated", "contacts": [{"contact-name": "Glenn King", "contact-email": "glenn.king@imb.uq.edu.au"}], "homepage": "http://www.arachnoserver.org", "identifier": 2037, "description": "ArachnoServer is a manually curated database containing information on the sequence, three-dimensional structure, and biological activity of protein toxins derived from spider venom.", "abbreviation": "ArachnoServer", "support-links": [{"url": "support@arachnoserver.org", "type": "Support email"}, {"url": "http://www.arachnoserver.org/docs/ArachnoServerUserManual.pdf", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://www.arachnoserver.org/download.html", "name": "Download", "type": "data access"}, {"url": "http://www.arachnoserver.org/advancedsearch.html", "name": "search", "type": "data access"}, {"url": "http://www.arachnoserver.org/browse.html", "name": "browse", "type": "data access"}, {"url": "http://www.arachnoserver.org/spiderP.html", "name": "SpiderP", "type": "data curation"}], "associated-tools": [{"url": "http://www.arachnoserver.org/blastForm.html", "name": "BLAST"}, {"url": "http://www.arachnoserver.org/toxNoteMainMenu.html", "name": "ToxNote"}], "deprecation-date": "2021-06-24", "deprecation-reason": "The database is no longer available. Message on the homepage : \"Unfortunately, given the age of the database and the fact that it was no longer compliant with today\u2019s safety standards of web hosting by The University of Queensland (as exposed by recent hacker attacks), it was decided to take ArachnoServer offline, until a more permanent solution can be found to fix these issues (which might require rebuilding the entire database from scratch). As soon as we have decided how to proceed we will make an announcement in the IST newsletter. We are sorry for this inconvenience, but at least the existing toxin records should still be available via UniProt.\""}, "legacy-ids": ["biodbcore-000504", "bsg-d000504"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide", "Drug", "Protein", "Toxicity"], "taxonomies": ["Arachnida"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: ArachnoServer: Spider toxin database", "abbreviation": "ArachnoServer", "url": "https://fairsharing.org/10.25504/FAIRsharing.c54ywe", "doi": "10.25504/FAIRsharing.c54ywe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ArachnoServer is a manually curated database containing information on the sequence, three-dimensional structure, and biological activity of protein toxins derived from spider venom.", "publications": [{"id": 492, "pubmed_id": 21036864, "title": "ArachnoServer 2.0, an updated online resource for spider toxin sequences and structures.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1058", "authors": "Herzig V., Wood DL., Newell F., Chaumeil PA., Kaas Q., Binford GJ., Nicholson GM., Gorse D., King GF.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1058", "created_at": "2021-09-30T08:23:13.477Z", "updated_at": "2021-09-30T08:23:13.477Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2691", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-30T14:18:58.000Z", "updated-at": "2021-11-24T13:20:01.246Z", "metadata": {"doi": "10.25504/FAIRsharing.A0ozDj", "name": "Genome Properties", "status": "ready", "contacts": [{"contact-name": "Lorna Richardson", "contact-email": "GenProp@ebi.ac.uk", "contact-orcid": "0000-0002-3655-5660"}], "homepage": "https://www.ebi.ac.uk/interpro/genomeproperties", "citations": [{"doi": "10.1093/nar/gky1013", "pubmed-id": 30364992, "publication-id": 2762}], "identifier": 2691, "description": "Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome. This is a reimplementation at EMBL-EBI of a resource previously hosted at JCVI.", "abbreviation": "Genome Properties", "support-links": [{"url": "GenProp@ebi.ac.uk", "name": "Genome properties helpdesk", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/interpro/genomeproperties/#about", "name": "About Genome properties", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/genome-properties-quick-tour", "name": "Genome properties quick tour", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/genome-properties-tutorial", "name": "Genome properties tutorial", "type": "Training documentation"}], "year-creation": 2005, "data-processes": [{"url": "https://www.ebi.ac.uk/interpro/genomeproperties/#hierarchy", "name": "Browse Repository", "type": "data access"}, {"url": "https://www.ebi.ac.uk/interpro/genomeproperties/#viewer", "name": "Repository Viewer", "type": "data access"}]}, "legacy-ids": ["biodbcore-001188", "bsg-d001188"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics"], "domains": ["Sequence annotation", "Genome annotation", "Computational biological predictions", "Gene functional annotation", "Function analysis", "Proteome", "Protein-containing complex", "Homologous", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["protein homology", "proteome annotation"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Genome Properties", "abbreviation": "Genome Properties", "url": "https://fairsharing.org/10.25504/FAIRsharing.A0ozDj", "doi": "10.25504/FAIRsharing.A0ozDj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome. This is a reimplementation at EMBL-EBI of a resource previously hosted at JCVI.", "publications": [{"id": 398, "pubmed_id": 23197656, "title": "TIGRFAMs and Genome Properties in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1234", "authors": "Haft DH,Selengut JD,Richter RA,Harkins D,Basu MK,Beck E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1234", "created_at": "2021-09-30T08:23:03.256Z", "updated_at": "2021-09-30T11:28:46.317Z"}, {"id": 409, "pubmed_id": 17151080, "title": "TIGRFAMs and Genome Properties: tools for the assignment of molecular function and biological process in prokaryotic genomes.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1043", "authors": "Selengut JD., Haft DH., Davidsen T., Ganapathy A., Gwinn-Giglio M., Nelson WC., Richter AR., White O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1043", "created_at": "2021-09-30T08:23:04.426Z", "updated_at": "2021-09-30T08:23:04.426Z"}, {"id": 2762, "pubmed_id": 30364992, "title": "Genome properties in 2019: a new companion database to InterPro for the inference of complete functional attributes.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1013", "authors": "Richardson LJ,Rawlings ND,Salazar GA,Almeida A,Haft DR,Ducq G,Sutton GG,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1013", "created_at": "2021-09-30T08:27:39.493Z", "updated_at": "2021-09-30T11:29:43.129Z"}, {"id": 2763, "pubmed_id": 15347579, "title": "Genome Properties: a system for the investigation of prokaryotic genetic content for microbiology, genome annotation and comparative genomics.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bti015", "authors": "Haft DH,Selengut JD,Brinkac LM,Zafar N,White O", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti015", "created_at": "2021-09-30T08:27:39.604Z", "updated_at": "2021-09-30T08:27:39.604Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 735, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2130", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:38.790Z", "metadata": {"doi": "10.25504/FAIRsharing.cr410r", "name": "Soybean Knowledge Base", "status": "ready", "contacts": [{"contact-name": "Dr. Trupti Joshi", "contact-email": "joshitr@missouri.edu"}], "homepage": "http://soykb.org/", "identifier": 2130, "description": "Soybean Knowledge Base (SoyKB), is a comprehensive all-inclusive web resource developed for soybean translational genomics and molecular breeding. SoyKB stores information about genes/proteins, miRNAs/sRNAs, metabolites, SNPs, plant introduction (PI lines) and traits. It handles the management and integration of soybean genomics and multi-omics data along with gene function annotations, biological pathway and trait information. It has many useful tools including gene family search, multiple gene/metabolite analysis, motif analysis tool, protein 3D structure viewer and data download and upload capacity. It has a user-friendly web interface together with genome browser and pathway viewer, which displays data in an intuitive manner to the soybean researchers, breeders and consumers. The QTLs, SNP, GWAS and traits information is seamlessly integrated in our newly developed suite of tools for the In Silico Breeding Program. It allows integration and extraction of the data in a tabular format as well as graphical visualization in our in-house Chromosome Visualizer. It also supports integration and visualization of Genotype by Sequencing (GBS) data for molecular breeding and phenotypic inferences. In addition, SoyKB now has capacity for incorporation of DNA methylation data and fast neutron mutation datasets. It is also linked seamlessly with P3DB for phosphorylation data. We have also incorporated suite of tools for differential expression analysis for microarray, transcriptomics RNA-seq, proteomics and metabolomics datasets. It includes access to gene lists, Venn diagrams, Volcano plots, functional annotations and pathway analysis. SoyKB is now powered by the iPlant Cyber-Infrastructure. The website is hosted on the iPlant\u2019s advanced computing infrastructure established to leverage the data analysis capabilities.", "abbreviation": "SoyKB", "support-links": [{"url": "http://soykb.org/contact.php", "type": "Contact form"}, {"url": "joshitr@missouri.edu", "type": "Support email"}, {"url": "xudong@missouri.edu", "type": "Support email"}], "year-creation": 2010, "data-processes": [{"url": "http://soykb.org/download.php", "name": "Download", "type": "data access"}, {"url": "http://soykb.org/public_data.php", "name": "Public data files", "type": "data access"}], "associated-tools": [{"url": "http://soykb.org/search/gene_pathway.php", "name": "Gene Pathway Viewer"}, {"url": "http://soykb.org/search/metabolite_pathway.php", "name": "Metabolite Pathway Viewer"}, {"url": "http://soykb.org/Breeder_Tool_Box/index.php", "name": "In Silico Breeding Program Suite of Tools"}, {"url": "http://soykb.org/search/protein_structure.php", "name": "3D Protein Structure"}, {"url": "http://soykb.org/DiffExp/diffExp.php", "name": "Differential Expression Suite of Tools"}, {"url": "http://soykb.org/blast.php", "name": "Blast"}, {"url": "http://soykb.org/clustal.php", "name": "Multiple Sequence Alignment"}, {"url": "http://soykb.org/proteinbioview/protein2DImageSystem/search.php", "name": "ProteinBioView"}, {"url": "http://soykb.org/heatmap/heatmap.php", "name": "Heatmap and Hierarchical Clustering"}]}, "legacy-ids": ["biodbcore-000600", "bsg-d000600"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Proteomics", "Computational Biology", "Life Science", "Metabolomics", "Transcriptomics"], "domains": ["DNA methylation", "Germ plasm", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing", "Phenotype", "Micro RNA", "Single nucleotide polymorphism", "Genome", "Genome-wide association study"], "taxonomies": ["Glycine max"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Soybean Knowledge Base", "abbreviation": "SoyKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.cr410r", "doi": "10.25504/FAIRsharing.cr410r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Soybean Knowledge Base (SoyKB), is a comprehensive all-inclusive web resource developed for soybean translational genomics and molecular breeding. SoyKB stores information about genes/proteins, miRNAs/sRNAs, metabolites, SNPs, plant introduction (PI lines) and traits. It handles the management and integration of soybean genomics and multi-omics data along with gene function annotations, biological pathway and trait information. It has many useful tools including gene family search, multiple gene/metabolite analysis, motif analysis tool, protein 3D structure viewer and data download and upload capacity. It has a user-friendly web interface together with genome browser and pathway viewer, which displays data in an intuitive manner to the soybean researchers, breeders and consumers. The QTLs, SNP, GWAS and traits information is seamlessly integrated in our newly developed suite of tools for the In Silico Breeding Program. It allows integration and extraction of the data in a tabular format as well as graphical visualization in our in-house Chromosome Visualizer. It also supports integration and visualization of Genotype by Sequencing (GBS) data for molecular breeding and phenotypic inferences. In addition, SoyKB now has capacity for incorporation of DNA methylation data and fast neutron mutation datasets. It is also linked seamlessly with P3DB for phosphorylation data. We have also incorporated suite of tools for differential expression analysis for microarray, transcriptomics RNA-seq, proteomics and metabolomics datasets. It includes access to gene lists, Venn diagrams, Volcano plots, functional annotations and pathway analysis. SoyKB is now powered by the iPlant Cyber-Infrastructure. The website is hosted on the iPlant\u2019s advanced computing infrastructure established to leverage the data analysis capabilities.", "publications": [{"id": 231, "pubmed_id": null, "title": "Soybean Knowledge Base (SoyKB): A web resource for integration of soybean translational genomics and molecular breeding", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt905", "authors": "Joshi T, Fitzpatrick MR, Chen S, Liu Y, Zhang H, Endacott RZ, Gaudiello EC, Stacey G, Nguyen HT, Xu D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt905", "created_at": "2021-09-30T08:22:44.948Z", "updated_at": "2021-09-30T08:22:44.948Z"}, {"id": 570, "pubmed_id": 22369646, "title": "Soybean Knowledge Base (SoyKB): a web resource for soybean translational genomics.", "year": 2012, "url": "http://doi.org/10.1186/1471-2164-13-S1-S15", "authors": "Joshi T, Patil K, Fitzpatrick MR, Franklin LD, Yao Q, Cook JR, Wang Z, Libault M, Brechenmacher L, Valliyodan B, Wu X, Cheng J, Stacey G, Nguyen HT, Xu D.", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-13-S1-S15", "created_at": "2021-09-30T08:23:22.370Z", "updated_at": "2021-09-30T08:23:22.370Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2105", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:22.153Z", "metadata": {"doi": "10.25504/FAIRsharing.ctwd7b", "name": "Antimicrobial Peptide Database", "status": "deprecated", "contacts": [{"contact-name": "Guangshun Wang", "contact-email": "gwang@unmc.edu"}], "homepage": "https://wangapd3.com/main.php", "identifier": 2105, "description": "The Antimicrobial Peptide Database (APD) contains information on antimicrobial peptides from across a wide taxonomic range. It includes a glossary, nomenclature, classification, information search, prediction, design, and statistics of AMPs. The antimicrobial peptides in this database contain less than 100 amino acid residues, are in the mature and active form, and primarily from natural sources, ranging from bacteria, fungi, plants, to animals.", "abbreviation": "APD", "support-links": [{"url": "https://wangapd3.com/what_new.php", "name": "News", "type": "Blog/News"}, {"url": "https://wangapd3.com/FAQ.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://wangapd3.com/class.php", "name": "Classification", "type": "Help documentation"}, {"url": "https://wangapd3.com/structure.php", "name": "3D Structure", "type": "Help documentation"}, {"url": "https://wangapd3.com/tools.php", "name": "Additional Tools", "type": "Help documentation"}, {"url": "https://wangapd3.com/Glossary_wang.php", "name": "Glossary", "type": "Help documentation"}, {"url": "https://wangapd3.com/about.php", "name": "About", "type": "Help documentation"}, {"url": "https://wangapd3.com/naming.php", "name": "Nomenclature", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://wangapd3.com/database/query_input.php", "name": "Search", "type": "data access"}, {"url": "https://wangapd3.com/main.php", "name": "Browse", "type": "data access"}, {"url": "https://wangapd3.com/prediction/prediction_main.php", "name": "Calculation and Prediction", "type": "data access"}, {"url": "https://wangapd3.com/design/design_main.php", "name": "Peptide Designer", "type": "data access"}, {"url": "https://wangapd3.com/downloads.php", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://aps.unmc.edu/AP/prediction/prediction_main.php", "name": "analyze"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012901", "name": "re3data:r3d100012901", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006606", "name": "SciCrunch:RRID:SCR_006606", "portal": "SciCrunch"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000574", "bsg-d000574"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Computational biological predictions", "Peptide", "Antimicrobial", "Classification", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Antimicrobial Peptide Database", "abbreviation": "APD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ctwd7b", "doi": "10.25504/FAIRsharing.ctwd7b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Antimicrobial Peptide Database (APD) contains information on antimicrobial peptides from across a wide taxonomic range. It includes a glossary, nomenclature, classification, information search, prediction, design, and statistics of AMPs. The antimicrobial peptides in this database contain less than 100 amino acid residues, are in the mature and active form, and primarily from natural sources, ranging from bacteria, fungi, plants, to animals.", "publications": [{"id": 10, "pubmed_id": 18957441, "title": "APD2: the updated antimicrobial peptide database and its application in peptide design.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn823", "authors": "Wang G,Li X,Wang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn823", "created_at": "2021-09-30T08:22:21.596Z", "updated_at": "2021-09-30T11:28:41.482Z"}, {"id": 553, "pubmed_id": 14681488, "title": "APD: the Antimicrobial Peptide Database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh025", "authors": "Wang Z., Wang G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh025", "created_at": "2021-09-30T08:23:20.368Z", "updated_at": "2021-09-30T08:23:20.368Z"}, {"id": 589, "pubmed_id": 26602694, "title": "APD3: the antimicrobial peptide database as a tool for research and education.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1278", "authors": "Wang G,Li X,Wang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1278", "created_at": "2021-09-30T08:23:24.582Z", "updated_at": "2021-09-30T11:28:47.527Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1568", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:52.673Z", "metadata": {"doi": "10.25504/FAIRsharing.dzr6rp", "name": "Database of Differentially Expressed Proteins in Human Cancer", "status": "deprecated", "contacts": [{"contact-name": "dbDEPC Helpdesk", "contact-email": "dbdepc@scbit.org"}], "homepage": "https://www.scbit.org/dbdepc3/index.php", "identifier": 1568, "description": "The dbDEPC is a database of differentially expressed proteins in human cancers.", "abbreviation": "dbDEPC", "support-links": [{"url": "dbdepc@scbit.org", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "http://lifecenter.sgst.cn/dbdepc/index.do", "name": "file upload", "type": "data access"}, {"url": "http://lifecenter.sgst.cn/dbdepc/cancer.do", "name": "browse database", "type": "data access"}, {"url": "http://lifecenter.sgst.cn/dbdepc/searchPage.do", "name": "search by protein", "type": "data access"}, {"url": "http://lifecenter.sgst.cn/dbdepc/experment.do", "name": "search by experimental results", "type": "data access"}, {"name": "quarterly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "no access to historical files", "type": "data versioning"}, {"name": "file download(tab-delimited)", "type": "data access"}], "associated-tools": [{"url": "http://lifecenter.sgst.cn/dbdepc/profile.do", "name": "Draw a Cancer Profile Heatmap"}, {"url": "http://lifecenter.sgst.cn/dbdepc/toNetworkPage.do", "name": "DEPs Association Network of your Query Proteins"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000022", "bsg-d000022"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics"], "domains": ["Gene Ontology enrichment", "Differential gene expression analysis", "Differential protein expression analysis", "Cancer", "Molecular interaction", "Genetic polymorphism", "Protein"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Validation"], "countries": ["China"], "name": "FAIRsharing record for: Database of Differentially Expressed Proteins in Human Cancer", "abbreviation": "dbDEPC", "url": "https://fairsharing.org/10.25504/FAIRsharing.dzr6rp", "doi": "10.25504/FAIRsharing.dzr6rp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The dbDEPC is a database of differentially expressed proteins in human cancers.", "publications": [{"id": 764, "pubmed_id": 22096234, "title": "dbDEPC 2.0: updated database of differentially expressed proteins in human cancers.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr936", "authors": "He Y,Zhang M,Ju Y,Yu Z,Lv D,Sun H,Yuan W,He F,Zhang J,Li H,Li J,Wang-Sattler R,Li Y,Zhang G,Xie L", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr936", "created_at": "2021-09-30T08:23:44.218Z", "updated_at": "2021-09-30T11:28:50.475Z"}, {"id": 1327, "pubmed_id": 19900968, "title": "dbDEPC: a database of differentially expressed proteins in human cancers.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp933", "authors": "Li H., He Y., Ding G., Wang C., Xie L., Li Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp933", "created_at": "2021-09-30T08:24:48.567Z", "updated_at": "2021-09-30T08:24:48.567Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1823", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:53.979Z", "metadata": {"doi": "10.25504/FAIRsharing.3cswbc", "name": "MiCroKiTS", "status": "ready", "contacts": [{"contact-name": "Zexian Liu", "contact-email": "lzx.bioinfo@gmail.com", "contact-orcid": "0000-0001-9698-0610"}], "homepage": "http://microkit.biocuckoo.org/", "identifier": 1823, "description": "This resource is a collection of all proteins identified to be localized on kinetochore, centrosome, midbody, telomere and spindle from two fungi (S. cerevisiae and S. pombe) and five animals, including C. elegans, D. melanogaster, X. laevis, M. musculus and H. sapiens based on the rationale of \"Seeing is believing\" (Bloom K et al., 2005). Through ortholog searches, the proteins potentially localized at these sub-cellular regions were detected in 144 eukaryotes. Then the integrated and searchable database MiCroKiTS - Midbody, Centrosome, Kinetochore, Telomere and Spindle has been established. Currently, the MiCroKiTS 4.0 database was updated on Sep. 6, 2014, containing 87,983 unique protein entries.", "abbreviation": "MiCroKiTS", "support-links": [{"url": "http://microkit.biocuckoo.org/userguide.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2010, "data-processes": [{"url": "http://microkit.biocuckoo.org/advanced.php", "name": "Advanced search", "type": "data access"}, {"url": "http://microkit.biocuckoo.org/download.php", "name": "Download", "type": "data access"}, {"url": "http://microkit.biocuckoo.org/index.php", "name": "search", "type": "data access"}, {"url": "http://microkit.biocuckoo.org/browse.php", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010550", "name": "re3data:r3d100010550", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007052", "name": "SciCrunch:RRID:SCR_007052", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000283", "bsg-d000283"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Xenopus laevis"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: MiCroKiTS", "abbreviation": "MiCroKiTS", "url": "https://fairsharing.org/10.25504/FAIRsharing.3cswbc", "doi": "10.25504/FAIRsharing.3cswbc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource is a collection of all proteins identified to be localized on kinetochore, centrosome, midbody, telomere and spindle from two fungi (S. cerevisiae and S. pombe) and five animals, including C. elegans, D. melanogaster, X. laevis, M. musculus and H. sapiens based on the rationale of \"Seeing is believing\" (Bloom K et al., 2005). Through ortholog searches, the proteins potentially localized at these sub-cellular regions were detected in 144 eukaryotes. Then the integrated and searchable database MiCroKiTS - Midbody, Centrosome, Kinetochore, Telomere and Spindle has been established. Currently, the MiCroKiTS 4.0 database was updated on Sep. 6, 2014, containing 87,983 unique protein entries.", "publications": [{"id": 342, "pubmed_id": 19783819, "title": "MiCroKit 3.0: an integrated database of midbody, centrosome and kinetochore.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp784", "authors": "Ren J., Liu Z., Gao X., Jin C., Ye M., Zou H., Wen L., Zhang Z., Xue Y., Yao X.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp784", "created_at": "2021-09-30T08:22:56.874Z", "updated_at": "2021-09-30T08:22:56.874Z"}, {"id": 1252, "pubmed_id": 25392421, "title": "MiCroKiTS 4.0: a database of midbody, centrosome, kinetochore, telomere and spindle.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1125", "authors": "Huang Z,Ma L,Wang Y,Pan Z,Ren J,Liu Z,Xue Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1125", "created_at": "2021-09-30T08:24:39.655Z", "updated_at": "2021-09-30T11:29:04.101Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2228", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-30T22:36:04.000Z", "updated-at": "2021-11-24T13:19:29.601Z", "metadata": {"doi": "10.25504/FAIRsharing.ew61fn", "name": "WholeCellSimDB", "status": "ready", "contacts": [{"contact-name": "Jonathan Karr", "contact-email": "karr@mssm.edu", "contact-orcid": "0000-0002-2605-5080"}], "homepage": "http://www.wholecellsimdb.org", "identifier": 2228, "description": "WholeCellSimDB is a database of whole-cell model simulations designed to make it easy for researchers to explore and analyze whole-cell model predictions including predicted: - Metabolite concentrations, - DNA, RNA and protein expression, - DNA-bound protein positions, - DNA modification positions, and - Ribome positions.", "abbreviation": "WholeCellSimDB", "support-links": [{"url": "wholecell@lists.stanford.edu", "type": "Support email"}, {"url": "http://www.wholecellsimdb.org/help", "type": "Help documentation"}, {"url": "http://www.wholecellsimdb.org/about", "type": "Help documentation"}, {"url": "http://www.wholecellsimdb.org/tutorial", "type": "Training documentation"}, {"url": "https://twitter.com/jonrkarr", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://www.wholecellsimdb.org/", "name": "browse", "type": "data access"}, {"name": "Command line interface", "type": "data curation"}, {"url": "http://www.wholecellsimdb.org/search_advanced", "name": "advanced search", "type": "data access"}, {"url": "http://www.wholecellsimdb.org/", "name": "search", "type": "data access"}, {"url": "http://www.wholecellsimdb.org/download", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000702", "bsg-d000702"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Systems Biology"], "domains": ["Expression data", "Deoxyribonucleic acid", "Metabolite", "Protein"], "taxonomies": ["Escherichia coli K12", "Mycoplasma genitalium"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: WholeCellSimDB", "abbreviation": "WholeCellSimDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ew61fn", "doi": "10.25504/FAIRsharing.ew61fn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WholeCellSimDB is a database of whole-cell model simulations designed to make it easy for researchers to explore and analyze whole-cell model predictions including predicted: - Metabolite concentrations, - DNA, RNA and protein expression, - DNA-bound protein positions, - DNA modification positions, and - Ribome positions.", "publications": [{"id": 831, "pubmed_id": 25231498, "title": "WholeCellSimDB: a hybrid relational/HDF database for whole-cell model predictions.", "year": 2014, "url": "http://doi.org/10.1093/database/bau095", "authors": "Karr JR,Phillips NC,Covert MW", "journal": "Database (Oxford)", "doi": "10.1093/database/bau095", "created_at": "2021-09-30T08:23:51.688Z", "updated_at": "2021-09-30T08:23:51.688Z"}], "licence-links": [{"licence-name": "Wholecells DB MIT Licence", "licence-id": 861, "link-id": 1077, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2679", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-09T10:12:51.000Z", "updated-at": "2021-12-06T10:49:23.280Z", "metadata": {"doi": "10.25504/FAIRsharing.wP3t2L", "name": "Complex Portal", "status": "ready", "contacts": [{"contact-name": "Birgit Meldal", "contact-email": "bmeldal@ebi.ac.uk", "contact-orcid": "0000-0003-4062-6158"}], "homepage": "https://www.ebi.ac.uk/complexportal/", "citations": [{"doi": "10.1093/nar/gky1001", "pubmed-id": 30357405, "publication-id": 623}], "identifier": 2679, "description": "The Complex Portal is a manually curated, encyclopaedic resource of macromolecular complexes from a number of key model organisms. The majority of complexes are made up of proteins but may also include nucleic acids or small molecules. All data is freely available for search and download.", "abbreviation": "CP", "access-points": [{"url": "https://www.ebi.ac.uk/intact/complex-ws/", "name": "search, display and export data", "type": "REST"}], "support-links": [{"url": "complexportal@ebi.ac.uk", "name": "General Contact", "type": "Support email"}, {"url": "https://github.com/Complex-Portal/complex-portal-view/issues", "name": "GitHub Issue Tracker", "type": "Github"}, {"url": "https://www.ebi.ac.uk/support/complexportal", "name": "Complex Portal Helpdesk", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/complexportal/documentation", "name": "Documentation", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/complexportal/documentation/data_content", "name": "Curation Guidelines", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/complex-portal-webinar", "name": "Complex Portal: webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/complex-portal-quick-tour", "name": "Complex Portal: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/complexportal", "name": "@complexportal", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "ftp://ftp.ebi.ac.uk/pub/databases/intact/complex/", "name": "Download Previous Versions (FTP)", "type": "data versioning"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/intact/complex/current/", "name": "Download (FTP)", "type": "data release"}, {"url": "https://www.ebi.ac.uk/complexportal/download", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/complexportal/", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://www.npmjs.com/package/complexviewer", "name": "ComplexViewer 1.0.9"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013295", "name": "re3data:r3d100013295", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001173", "bsg-d001173"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Structural Biology", "Proteomics", "Systems Biology"], "domains": ["Evidence", "Annotation", "Computational biological predictions", "Protein interaction", "Nucleic acid", "Proteome", "Protein-containing complex", "Molecular interaction", "Amino acid sequence", "Literature curation", "Biocuration"], "taxonomies": ["Arabidopsis thaliana", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Danio rerio", "Drosophila melanogaster", "Escherichia coli K12", "Gallus gallus", "Homo sapiens", "Lymnaea stagnalis", "Mus musculus", "Oryctolagus cuniculus", "Pseudomonas aeruginosa", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Sus scrofa", "Tetronarce californica", "Torpedo marmorata", "Xenopus laevis"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Complex Portal", "abbreviation": "CP", "url": "https://fairsharing.org/10.25504/FAIRsharing.wP3t2L", "doi": "10.25504/FAIRsharing.wP3t2L", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Complex Portal is a manually curated, encyclopaedic resource of macromolecular complexes from a number of key model organisms. The majority of complexes are made up of proteins but may also include nucleic acids or small molecules. All data is freely available for search and download.", "publications": [{"id": 623, "pubmed_id": 30357405, "title": "Complex Portal 2018: extended content and enhanced visualization tools for macromolecular complexes.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1001", "authors": "Meldal BHM,Bye-A-Jee H,Gajdos L,Hammerova Z,Horackova A,Melicher F,Perfetto L,Pokorny D,Lopez MR,Turkova A,Wong ED,Xie Z,Casanova EB,Del-Toro N,Koch M,Porras P,Hermjakob H,Orchard S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1001", "created_at": "2021-09-30T08:23:28.524Z", "updated_at": "2021-09-30T11:28:48.317Z"}, {"id": 1345, "pubmed_id": 25313161, "title": "The complex portal - an encyclopaedia of macromolecular complexes.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku975", "authors": "Meldal BH., Forner-Martinez O., Costanzo MC., Dana J., Demeter J., Dumousseau M., Dwight SS., Gaulton A., Licata L., Melidoni AN., Ricard-Blum S., Roechert B., Skyzypek MS., Tiwari M., Velankar S., Wong ED., Hermjakob H., Orchard S.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku975", "created_at": "2021-09-30T08:24:50.535Z", "updated_at": "2021-09-30T08:24:50.535Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 1162, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1163, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1657", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:57.932Z", "metadata": {"doi": "10.25504/FAIRsharing.aqb4ne", "name": "CUBE-DB", "status": "deprecated", "contacts": [{"contact-name": "Ivana Mihalek", "contact-email": "ivanam@bii.a-star.edu.sg"}], "homepage": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", "identifier": 1657, "description": "Detection of functional divergence in human protein families. Cube-DB is a database of pre-evaluated conservation and specialization scores for residues in paralogous proteins belonging to multi-member families of human proteins. Protein family classification follows (largely) the classification suggested by HUGO Gene Nomenclature Committee. Sets of orthologous protein sequences were generated by mutual-best-hit strategy using full vertebrate genomes available in Ensembl. The scores, described on documentation page, are assigned to each individual residue in a protein, and presented in the form of a table (html or downloadable xls formats) and mapped, when appropriate, onto the related structure (Jmol, Pymol, Chimera).", "abbreviation": "CUBE-DB", "support-links": [{"url": "zhangzh@bii.a-star.edu.sg", "type": "Support email"}, {"url": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/doc.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "annual release", "type": "data release"}, {"name": "semi-manual curation", "type": "data curation"}, {"name": "access to historical files upon request", "type": "data versioning"}, {"url": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/db_index.html", "name": "browse", "type": "data access"}, {"url": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/workdir_help.html", "name": "file download", "type": "data access"}], "deprecation-date": "2021-9-27", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000113", "bsg-d000113"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Multiple sequence alignment", "Molecular function", "Classification", "Protein", "Amino acid sequence", "Orthologous", "Paralogous"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["Singapore"], "name": "FAIRsharing record for: CUBE-DB", "abbreviation": "CUBE-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.aqb4ne", "doi": "10.25504/FAIRsharing.aqb4ne", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Detection of functional divergence in human protein families. Cube-DB is a database of pre-evaluated conservation and specialization scores for residues in paralogous proteins belonging to multi-member families of human proteins. Protein family classification follows (largely) the classification suggested by HUGO Gene Nomenclature Committee. Sets of orthologous protein sequences were generated by mutual-best-hit strategy using full vertebrate genomes available in Ensembl. The scores, described on documentation page, are assigned to each individual residue in a protein, and presented in the form of a table (html or downloadable xls formats) and mapped, when appropriate, onto the related structure (Jmol, Pymol, Chimera).", "publications": [{"id": 156, "pubmed_id": 21931701, "title": "Determinants, discriminants, conserved residues--a heuristic approach to detection of functional divergence in protein families.", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0024382", "authors": "Bharatham K., Zhang ZH., Mihalek I.,", "journal": "PLoS ONE", "doi": "10.1371/journal.pone.0024382", "created_at": "2021-09-30T08:22:37.027Z", "updated_at": "2021-09-30T08:22:37.027Z"}, {"id": 756, "pubmed_id": 22139934, "title": "Cube-DB: detection of functional divergence in human protein families.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1129", "authors": "Zhang ZH,Bharatham K,Chee SM,Mihalek I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1129", "created_at": "2021-09-30T08:23:43.234Z", "updated_at": "2021-09-30T11:28:50.025Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2140", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:45.772Z", "metadata": {"doi": "10.25504/FAIRsharing.tgjsm4", "name": "bNAber", "status": "deprecated", "contacts": [{"contact-name": "bNAber Support", "contact-email": "support@bnaber.org"}], "homepage": "http://bnaber.org/", "citations": [{"publication-id": 609}], "identifier": 2140, "description": "Discovery of Broadly Neutralizing Antibodies (bNAbs) has given a great boost to HIV vaccine research. Study of bNAbs capable of neutralizing a broad array of different HIV strains is important for a number of reasons: (i) structures of antigens co-crystallized with bNAbs are used as templates in HIV vaccine design; (ii) bNAbs can be effective as therapeutics; (iii) preventive use of bNAbs is a promising direction in AIDS care. The goal of bNAber is to collect, analyze, compare and present bNAbs data, thus helping researchers to create HIV vaccine.", "abbreviation": "bNAber", "support-links": [{"url": "http://bnaber.org/?q=Help", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://bnaber.org/?q=node/12", "name": "Information for Biologists", "type": "Help documentation"}, {"url": "http://bnaber.org/?q=node/153", "name": "Statistics", "type": "Help documentation"}, {"url": "http://bnaber.org/?q=Use%20Cases", "name": "Use Cases", "type": "Training documentation"}, {"url": "http://bnaber.org/?q=Walkthrough%20Videos", "name": "Instructional Videos", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://bnaber.org/?q=Submit%20New%20bNAb", "name": "User Data Submission", "type": "data curation"}, {"url": "http://bnaber.org/?q=Download%20Database", "name": "Database Export (SQL)", "type": "data access"}, {"url": "http://bnaber.org/?q=node/66", "name": "Browse Solved Structures", "type": "data access"}], "associated-tools": [{"url": "http://bnaber.org/?q=node/115", "name": "Analysis Tools"}, {"url": "http://bnaber.org/?q=Structure%20Alignment%20Matrix", "name": "Structure Alignment"}, {"url": "http://bnaber.org/?q=NeutSandbox", "name": "Neutralization Workbench"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000610", "bsg-d000610"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunogenetics", "Immunology", "Biomedical Science"], "domains": ["Antibody", "Structure", "Sequence"], "taxonomies": ["Homo sapiens", "Human immunodeficiency virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: bNAber", "abbreviation": "bNAber", "url": "https://fairsharing.org/10.25504/FAIRsharing.tgjsm4", "doi": "10.25504/FAIRsharing.tgjsm4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Discovery of Broadly Neutralizing Antibodies (bNAbs) has given a great boost to HIV vaccine research. Study of bNAbs capable of neutralizing a broad array of different HIV strains is important for a number of reasons: (i) structures of antigens co-crystallized with bNAbs are used as templates in HIV vaccine design; (ii) bNAbs can be effective as therapeutics; (iii) preventive use of bNAbs is a promising direction in AIDS care. The goal of bNAber is to collect, analyze, compare and present bNAbs data, thus helping researchers to create HIV vaccine.", "publications": [{"id": 609, "pubmed_id": null, "title": "bNAber: database of broadly neutralizing HIV antibodies", "year": 2014, "url": "https://doi.org/10.1093/nar/gkt1083", "authors": "Alexey Eroshkin, Andrew LeBlanc, Dana Weekes, Kai Post, Zhanwen Li, Akhil Rajput, Sal T. Butera, Dennis R. Burton and Adam Godzik", "journal": "Nucleic Acid Res. Database Issue", "doi": null, "created_at": "2021-09-30T08:23:26.918Z", "updated_at": "2021-09-30T11:28:41.069Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1660", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.352Z", "metadata": {"doi": "10.25504/FAIRsharing.fyqk5z", "name": "Gene3D", "status": "deprecated", "contacts": [{"contact-name": "Corin Yeats", "contact-email": "yeats@biochem.ucl.ac.uk"}], "homepage": "http://gene3d.biochem.ucl.ac.uk", "citations": [{"doi": "10.1093/nar/gkx1069", "pubmed-id": 29112716, "publication-id": 1715}], "identifier": 1660, "description": "Gene3D uses the information in CATH to predict the locations of structural domains on millions of protein sequences available in public databases. Sequence data from UniProtKB and Ensembl for domains with no experimentally determined structures are scanned against CATH HMMs to predict domain sequence boundaries and make homologous superfamily assignments.", "abbreviation": "Gene3D", "support-links": [{"url": "Gene3D.Contact@gmail.com", "name": "General Contact", "type": "Support email"}, {"url": "http://gene3d.biochem.ucl.ac.uk/examples", "name": "Example Searches", "type": "Help documentation"}, {"url": "http://gene3d.biochem.ucl.ac.uk/about", "name": "About Gene3D", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/cath-gene3d", "name": "Cath gene3d", "type": "TeSS links to training materials"}], "year-creation": 2003, "data-processes": [{"url": "http://gene3d.biochem.ucl.ac.uk/searchForm?mode=protein", "name": "Protein Search", "type": "data access"}, {"url": "http://gene3d.biochem.ucl.ac.uk/searchForm?mode=family", "name": "Family Search", "type": "data access"}, {"url": "ftp://orengoftp.biochem.ucl.ac.uk/gene3d/CURRENT_RELEASE/", "name": "download", "type": "data release"}, {"url": "http://gene3d.biochem.ucl.ac.uk/compare?mode=genomes", "name": "Genome Comparison", "type": "data access"}, {"name": "Version numbers are updated on a CATH release. Point updates are made when sequence sets are updated.", "type": "data versioning"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000116", "bsg-d000116"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Hidden Markov model", "Protein structure", "Protein domain", "Annotation", "Protein interaction", "Gene", "Amino acid sequence", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Gene3D", "abbreviation": "Gene3D", "url": "https://fairsharing.org/10.25504/FAIRsharing.fyqk5z", "doi": "10.25504/FAIRsharing.fyqk5z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gene3D uses the information in CATH to predict the locations of structural domains on millions of protein sequences available in public databases. Sequence data from UniProtKB and Ensembl for domains with no experimentally determined structures are scanned against CATH HMMs to predict domain sequence boundaries and make homologous superfamily assignments.", "publications": [{"id": 357, "pubmed_id": 19906693, "title": "Gene3D: merging structure and function for a Thousand genomes.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp987", "authors": "Lees J., Yeats C., Redfern O., Clegg A., Orengo C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp987", "created_at": "2021-09-30T08:22:58.380Z", "updated_at": "2021-09-30T08:22:58.380Z"}, {"id": 1715, "pubmed_id": 29112716, "title": "Gene3D: Extensive prediction of globular domains in proteins.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1069", "authors": "Lewis TE,Sillitoe I,Dawson N,Lam SD,Clarke T,Lee D,Orengo C,Lees J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1069", "created_at": "2021-09-30T08:25:32.152Z", "updated_at": "2021-09-30T11:29:19.010Z"}, {"id": 2340, "pubmed_id": 21646335, "title": "The Gene3D Web Services: a platform for identifying, annotating and comparing structural domains in protein sequences.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr438", "authors": "Yeats C., Lees J., Carter P., Sillitoe I., Orengo C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr438", "created_at": "2021-09-30T08:26:47.426Z", "updated_at": "2021-09-30T08:26:47.426Z"}, {"id": 2342, "pubmed_id": 26139634, "title": "Functional classification of CATH superfamilies: a domain-based approach for protein function annotation.", "year": 2015, "url": "http://doi.org/10.1093/bioinformatics/btv398", "authors": "Das S,Lee D,Sillitoe I,Dawson NL,Lees JG,Orengo CA", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btv398", "created_at": "2021-09-30T08:26:47.739Z", "updated_at": "2021-09-30T08:26:47.739Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2367", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-23T00:52:17.000Z", "updated-at": "2021-11-24T13:19:33.892Z", "metadata": {"doi": "10.25504/FAIRsharing.1h7yt4", "name": "Swiss-Czech Proteomics Server", "status": "ready", "contacts": [{"contact-name": "Ing. Ji\u0159\u00ed Vohradsk\u00fd", "contact-email": "vohr@biomed.cas.cz"}], "homepage": "http://proteom.biomed.cas.cz/", "identifier": 2367, "description": "Proteomics database for streptomyces and caulobacter and neisseria. Unique database in the field, containing knowledge based data of time series of protein expression for various stages of development of the given species.", "abbreviation": "SWICZ", "year-creation": 2001, "data-processes": [{"url": "http://proteom.biomed.cas.cz/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000846", "bsg-d000846"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Developmental Biology", "Life Science"], "domains": ["Protein expression", "Life cycle stage"], "taxonomies": ["Caulobacter crescentus", "Neisseria meningitidis", "Streptomyces coelicolor", "Streptomyces granaticolor"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Swiss-Czech Proteomics Server", "abbreviation": "SWICZ", "url": "https://fairsharing.org/10.25504/FAIRsharing.1h7yt4", "doi": "10.25504/FAIRsharing.1h7yt4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Proteomics database for streptomyces and caulobacter and neisseria. Unique database in the field, containing knowledge based data of time series of protein expression for various stages of development of the given species.", "publications": [{"id": 229, "pubmed_id": 15378695, "title": "Activation and expression of proteins during synchronous germination of aerial spores of Streptomyces granaticolor.", "year": 2004, "url": "http://doi.org/10.1002/pmic.200400818", "authors": "Bobek J,Halada P,Angelis J,Vohradsky J,Mikulik K", "journal": "Proteomics", "doi": "10.1002/pmic.200400818", "created_at": "2021-09-30T08:22:44.715Z", "updated_at": "2021-09-30T08:22:44.715Z"}, {"id": 230, "pubmed_id": 17133369, "title": "The iron-regulated transcriptome and proteome of Neisseria meningitidis serogroup C.", "year": 2006, "url": "http://doi.org/10.1002/pmic.200600312", "authors": "Basler M,Linhartova I,Halada P,Novotna J,Bezouskova S,Osicka R,Weiser J,Vohradsky J,Sebo P", "journal": "Proteomics", "doi": "10.1002/pmic.200600312", "created_at": "2021-09-30T08:22:44.856Z", "updated_at": "2021-09-30T08:22:44.856Z"}, {"id": 774, "pubmed_id": 16400688, "title": "Systems level analysis of protein synthesis patterns associated with bacterial growth and metabolic transitions", "year": 2006, "url": "http://doi.org/10.1002/pmic.200500206", "authors": "Vohradsky J., Thompson C.J.", "journal": "Proteomics", "doi": "10.1002/pmic.200500206", "created_at": "2021-09-30T08:23:45.295Z", "updated_at": "2021-09-30T08:23:45.295Z"}, {"id": 1801, "pubmed_id": 14625849, "title": "Proteome of Caulobacter crescentus cell cycle publicly accessible on SWICZ server", "year": 2003, "url": "http://doi.org/10.1002/pmic.200300559", "authors": "Vohradsky J., Janda I., Gr\u00fcnenfelder B., Berndt P., R\u00f6der D., Langen H., Weiser J., Jenal U.", "journal": "Proteomics", "doi": "10.1002/pmic.200300559", "created_at": "2021-09-30T08:25:42.205Z", "updated_at": "2021-09-30T08:25:42.205Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2137", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:45.695Z", "metadata": {"doi": "10.25504/FAIRsharing.d404th", "name": "CiteAb", "status": "ready", "contacts": [{"contact-name": "Matt Helsby", "contact-email": "matt@citeab.com"}], "homepage": "http://www.citeab.com", "identifier": 2137, "description": "CiteAb is the largest citation-ranked antibody search engine and provides a simple way to find antibodies that work. We use the number of citations as a transparent method to rank antibodies. Powerful filters allow a user to further hone a search based on application, species reactivity, clonality and clone.", "abbreviation": "CiteAb", "support-links": [{"url": "http://blog.citeab.com", "type": "Blog/News"}, {"url": "http://www.citeab.com/contact", "type": "Contact form"}, {"url": "https://twitter.com/CiteAb", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://www.citeab.com/browse/suppliers", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000607", "bsg-d000607"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Citation", "Reagent", "Antibody", "Assay"], "taxonomies": ["All", "Mus musculus", "Xenopus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: CiteAb", "abbreviation": "CiteAb", "url": "https://fairsharing.org/10.25504/FAIRsharing.d404th", "doi": "10.25504/FAIRsharing.d404th", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CiteAb is the largest citation-ranked antibody search engine and provides a simple way to find antibodies that work. We use the number of citations as a transparent method to rank antibodies. Powerful filters allow a user to further hone a search based on application, species reactivity, clonality and clone.", "publications": [{"id": 611, "pubmed_id": 24528853, "title": "CiteAb: a searchable antibody database that ranks antibodies by the number of times they have been cited.", "year": 2014, "url": "http://doi.org/10.1186/1471-2121-15-6", "authors": "Helsby MA, Leader PM, Fenn JR, Gulsen T, Bryant C, Doughton G, Sharpe B, Whitley P, Caunt CJ, James K, Pope AD, Kelly DH, Chalmers AD", "journal": "BMC Cell Biology", "doi": "10.1186/1471-2121-15-6.", "created_at": "2021-09-30T08:23:27.156Z", "updated_at": "2021-09-30T08:23:27.156Z"}], "licence-links": [{"licence-name": "CiteAB Privacy and Use of Cookies", "licence-id": 127, "link-id": 820, "relation": "undefined"}, {"licence-name": "CiteAB Terms and Conditions of Use", "licence-id": 128, "link-id": 821, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2609", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-21T18:35:48.000Z", "updated-at": "2021-11-24T13:17:15.663Z", "metadata": {"doi": "10.25504/FAIRsharing.cHo2bh", "name": "Citrusgreening.org", "status": "ready", "contacts": [{"contact-name": "Surya Saha", "contact-email": "ss2489@cornell.edu", "contact-orcid": "0000-0002-1160-1413"}], "homepage": "https://citrusgreening.org", "identifier": 2609, "description": "Huanglongbing (HLB) is a tritrophic disease complex involving citrus host trees, the Asian citrus psyllid (ACP) insect and a phloem restricted, bacterial pathogen Candidatus Liberibacter asiaticus (CLas). HLB is considered to be the most devastating of all citrus diseases, and there is currently no adequate control strategy. Citrusgreening.org is a database for host, vector and pathogen involved in citrus greening disease.", "abbreviation": "Citrusgreening", "support-links": [{"url": "https://www.facebook.com/citrusgreening", "name": "CitrusGreening Facebook page", "type": "Facebook"}, {"url": "https://citrusgreening.org/contact/form", "name": "CitrusGreening Contact Form", "type": "Contact form"}, {"url": "https://citrusgreening.org/forum/topics.pl", "name": "Database Forum", "type": "Forum"}, {"url": "https://citrusgreening.org/oldnews.pl", "name": "News", "type": "Help documentation"}, {"url": "https://citrusgreening.org/disease/index", "name": "About CitrusGreening / Huanglongbing Disease", "type": "Help documentation"}, {"url": "https://citrusgreening.org/disease/impact", "name": "Impact on US Citrus Production", "type": "Help documentation"}, {"url": "https://citrusgreening.org/disease/researchhighlights/index", "name": "Research Highlights", "type": "Help documentation"}, {"url": "https://citrusgreening.org/oldpublications.pl", "name": "All Publications", "type": "Help documentation"}, {"url": "https://citrusgreening.org/organism/Citrus_clementina/genome", "name": "Citrus clementina Genome", "type": "Help documentation"}, {"url": "https://citrusgreening.org/about/index.pl", "name": "About", "type": "Help documentation"}, {"url": "https://citrusgreening.org/organism/Diaphorina_citri/genome", "name": "Diaphorina citri Genome and Transcriptome", "type": "Help documentation"}, {"url": "https://citrusgreening.org/annotation/index", "name": "Annotation of Psyllid Genome", "type": "Help documentation"}, {"url": "https://citrusgreening.org/microtomography/index", "name": "Imaging (Microtomography)", "type": "Help documentation"}, {"url": "https://citrusgreening.org/organism/Candidatus_Liberibacter_asiaticus_psy62/genome", "name": "Candidatus Liberibacter asiaticus psy62 Genome", "type": "Help documentation"}, {"url": "https://citrusgreening.org/organism/Citrus_sinensis/genome", "name": "Citrus sinensis Genome", "type": "Help documentation"}, {"url": "https://twitter.com/CitrusGreening", "name": "@CitrusGreening", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "ftp://ftp.citrusgreening.org/", "name": "Data Download (FTP)", "type": "data access"}, {"url": "https://citrusgreening.org/search", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://apollo.sgn.cornell.edu/apollo/529731/jbrowse/index.html", "name": "JBrowse"}, {"url": "http://pen.sgn.cornell.edu/expression_viewer/input", "name": "Expression Viewer"}, {"url": "https://citrusgreening.org/tools/blast", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-001092", "bsg-d001092"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Agriculture", "Life Science"], "domains": [], "taxonomies": ["Candidatus Liberibacter asiaticus", "Citrus", "Citrus clementina", "Citrus sinensis", "Diaphorina citri"], "user-defined-tags": ["Plant disease vector", "Plant-pathogen interaction"], "countries": ["United States"], "name": "FAIRsharing record for: Citrusgreening.org", "abbreviation": "Citrusgreening", "url": "https://fairsharing.org/10.25504/FAIRsharing.cHo2bh", "doi": "10.25504/FAIRsharing.cHo2bh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Huanglongbing (HLB) is a tritrophic disease complex involving citrus host trees, the Asian citrus psyllid (ACP) insect and a phloem restricted, bacterial pathogen Candidatus Liberibacter asiaticus (CLas). HLB is considered to be the most devastating of all citrus diseases, and there is currently no adequate control strategy. Citrusgreening.org is a database for host, vector and pathogen involved in citrus greening disease.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2074", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:44.342Z", "metadata": {"doi": "10.25504/FAIRsharing.9s300d", "name": "Type 1 Diabetes Database", "status": "deprecated", "contacts": [{"contact-name": "John Todd", "contact-email": "john.todd@cimr.cam.ac.uk", "contact-orcid": "0000-0003-2740-8148"}], "homepage": "http://t1dbase.org/", "identifier": 2074, "description": "T1DBase focuses on two research areas in type 1 diabetes (T1D): the genetics of T1D susceptibility and beta cell biology.", "abbreviation": "T1DBase", "support-links": [{"url": "http://www.t1dbase.org/page/ContactFormPopup/display/", "type": "Contact form"}, {"url": "t1dbase-feedback@cimr.cam.ac.uk", "type": "Support email"}, {"url": "http://www.t1dbase.org/page/FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.t1dbase.org/page/WebsiteTutorial", "type": "Training documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.t1dbase.org/downloads/", "name": "Download", "type": "data access"}, {"url": "http://www.t1dbase.org/page/MouseStrainsHome", "name": "Search", "type": "data access"}, {"url": "http://www.t1dbase.org/page/SubmitHelp", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.t1dbase.org/page/AtlasHome", "name": "Beta Cell Gene Atlas Home"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000541", "bsg-d000541"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Biomedical Science"], "domains": ["Disease", "Gene", "Diabetes mellitus"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Type 1 Diabetes Database", "abbreviation": "T1DBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.9s300d", "doi": "10.25504/FAIRsharing.9s300d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: T1DBase focuses on two research areas in type 1 diabetes (T1D): the genetics of T1D susceptibility and beta cell biology.", "publications": [{"id": 517, "pubmed_id": 20937630, "title": "T1DBase: update 2011, organization and presentation of large-scale data sets for type 1 diabetes research.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq912", "authors": "Burren OS., Adlem EC., Achuthan P., Christensen M., Coulson RM., Todd JA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq912", "created_at": "2021-09-30T08:23:16.417Z", "updated_at": "2021-09-30T08:23:16.417Z"}, {"id": 1501, "pubmed_id": 15608258, "title": "T1DBase, a community web-based resource for type 1 diabetes research.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki095", "authors": "Smink LJ,Helton EM,Healy BC,Cavnor CC,Lam AC,Flamez D,Burren OS,Wang Y,Dolman GE,Burdick DB,Everett VH,Glusman G,Laneri D,Rowen L,Schuilenburg H,Walker NM,Mychaleckyj J,Wicker LS,Eizirik DL,Todd JA,Goodman N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki095", "created_at": "2021-09-30T08:25:08.065Z", "updated_at": "2021-09-30T11:29:11.368Z"}, {"id": 1502, "pubmed_id": 17169983, "title": "T1DBase: integration and presentation of complex data for type 1 diabetes research.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl933", "authors": "Hulbert EM,Smink LJ,Adlem EC,Allen JE,Burdick DB,Burren OS,Cassen VM,Cavnor CC,Dolman GE,Flamez D,Friery KF,Healy BC,Killcoyne SA,Kutlu B,Schuilenburg H,Walker NM,Mychaleckyj J,Eizirik DL,Wicker LS,Todd JA,Goodman N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl933", "created_at": "2021-09-30T08:25:08.165Z", "updated_at": "2021-09-30T11:29:11.459Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 717, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2751", "type": "fairsharing-records", "attributes": {"created-at": "2019-02-20T15:42:39.000Z", "updated-at": "2022-02-08T10:53:00.870Z", "metadata": {"doi": "10.25504/FAIRsharing.d1a667", "name": "Orphadata", "status": "ready", "homepage": "http://www.orphadata.org/", "identifier": 2751, "description": "Orphadata provides the scientific community with comprehensive, quality datasets related to rare diseases and orphan drugs from the Orphanet knowledge base, in reusable formats.", "abbreviation": "Orphadata", "support-links": [{"url": "http://www.orphadata.org/cgi-bin/contact.html", "name": "Contact form", "type": "Contact form"}, {"url": "http://www.orphadata.org/cgi-bin/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.orphadata.org/cgi-bin/img/PDF/OrphadataFreeAccessProductsDescription.pdf", "type": "Help documentation"}, {"url": "http://www.orphadata.org/cgi-bin/ORPHAnomenclature.html", "name": "Orphanet nomenclature", "type": "Help documentation"}, {"url": "https://twitter.com/orphanet", "name": "@orphanet", "type": "Twitter"}], "data-processes": [{"url": "https://www.orpha.net/consor/cgi-bin/index.php", "name": "Access data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001249", "bsg-d001249"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Biomedical Science"], "domains": ["Drug", "Rare disease", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["European Union", "France"], "name": "FAIRsharing record for: Orphadata", "abbreviation": "Orphadata", "url": "https://fairsharing.org/10.25504/FAIRsharing.d1a667", "doi": "10.25504/FAIRsharing.d1a667", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Orphadata provides the scientific community with comprehensive, quality datasets related to rare diseases and orphan drugs from the Orphanet knowledge base, in reusable formats.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1739, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1936", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:19.836Z", "metadata": {"doi": "10.25504/FAIRsharing.vd25jp", "name": "J-GLOBAL", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "helpdesk@jst.go.jp"}], "homepage": "https://jglobal.jst.go.jp/en", "identifier": 1936, "description": "J-GLOBAL links information related to research and development, such as linking articles and patents with people (authors and inventors). It also contains other research information including chemical substances, genes, technical terms and research projects. The Japanese Chemical Substances Dictionary Web (Nikkaji Web, an organic compound dictionary database) and J-GLOBAL were integrated in March 2016, and since that time the name J-GLOBAL has been used.", "abbreviation": "J-GLOBAL", "support-links": [{"url": "https://jglobal.jst.go.jp/en/help/view/home", "name": "Help", "type": "Help documentation"}, {"url": "https://jglobal.jst.go.jp/en/aboutus/content", "name": "Content Types", "type": "Help documentation"}, {"url": "https://jglobal.jst.go.jp/en/aboutus/home", "name": "About", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://jglobal.jst.go.jp/en", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012247", "name": "re3data:r3d100012247", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000401", "bsg-d000401"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Natural Science"], "domains": ["Molecular structure", "Chemical entity", "Patent", "Structure", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: J-GLOBAL", "abbreviation": "J-GLOBAL", "url": "https://fairsharing.org/10.25504/FAIRsharing.vd25jp", "doi": "10.25504/FAIRsharing.vd25jp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: J-GLOBAL links information related to research and development, such as linking articles and patents with people (authors and inventors). It also contains other research information including chemical substances, genes, technical terms and research projects. The Japanese Chemical Substances Dictionary Web (Nikkaji Web, an organic compound dictionary database) and J-GLOBAL were integrated in March 2016, and since that time the name J-GLOBAL has been used.", "publications": [], "licence-links": [{"licence-name": "J-GLOBAL Terms of Use", "licence-id": 471, "link-id": 2100, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1642", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:12.468Z", "metadata": {"doi": "10.25504/FAIRsharing.sncr74", "name": "Syntheses, Chemicals, and Reactions In Patents DataBase", "status": "ready", "contacts": [{"contact-email": "SCRIPDB@cs.toronto.edu"}], "homepage": "http://dcv.uhnres.utoronto.ca/SCRIPDB", "citations": [], "identifier": 1642, "description": "SCRIPDB is a chemical structure database designed to make patent metadata accessible. We index public-domain chemical information contained in U.S. patents, and provide the full patent text, reactions, and relationships described within any individual patent, as well as the original CDX, MOL, and TIFF files.", "abbreviation": "SCRIPDB", "support-links": [{"url": "https://en.wikipedia.org/wiki/SCRIPDB", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"name": "ad-hoc release", "type": "data release"}, {"url": "http://dcv.uhnres.utoronto.ca/SCRIPDB/search/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012730", "name": "re3data:r3d100012730", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008922", "name": "SciCrunch:RRID:SCR_008922", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000098", "bsg-d000098"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Chemical structure", "Image", "Patent"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Syntheses, Chemicals, and Reactions In Patents DataBase", "abbreviation": "SCRIPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.sncr74", "doi": "10.25504/FAIRsharing.sncr74", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SCRIPDB is a chemical structure database designed to make patent metadata accessible. We index public-domain chemical information contained in U.S. patents, and provide the full patent text, reactions, and relationships described within any individual patent, as well as the original CDX, MOL, and TIFF files.", "publications": [{"id": 1342, "pubmed_id": 22067445, "title": "SCRIPDB: a portal for easy access to syntheses, chemicals and reactions in patents.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr919", "authors": "Heifets A,Jurisica I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr919", "created_at": "2021-09-30T08:24:50.166Z", "updated_at": "2021-09-30T11:29:06.143Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1932", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-06T14:49:24.670Z", "metadata": {"doi": "10.25504/FAIRsharing.v8se8r", "name": "MycoBank", "status": "ready", "contacts": [{"contact-name": "Vincent Robert", "contact-email": "v.robert@wi.knaw.nl"}], "homepage": "http://www.mycobank.org", "citations": [], "identifier": 1932, "description": "MycoBank was created for the mycological community (as well as scientific community more generally) to document new mycological names, combinations and associated data (such as descriptions and illustrations). Pairwise sequence alignments and polyphasic identifications of fungi and yeasts against curated references databases are available. Nomenclatural experts will be available to check the validity, legitimacy and linguistic correctness of the proposed names in order to avoid nomenclatural error. Deposited names can remain confidential until after publication as required. Once public, the names are accessible through MycoBank, Index Fungorum, GBIF and other international biodiversity initiatives, where they will further be linked to other databases. MycoBank will (when applicable) provide onward links to other databases containing, for example, living cultures, DNA data, reference specimens and pleomorphic names linked to the same holomorph. Authors intending to publish nomenclatural novelties are encouraged to contribute.", "abbreviation": "MycoBank", "data-curation": {}, "support-links": [{"url": "https://www.mycobank.org/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.mycobank.org/page/Contact", "name": "Contact Mycobank", "type": "Contact form"}, {"url": "https://www.mycobank.org/page/FAQ_and_help", "name": "FAQ and Help", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.mycobank.org/forum", "name": "Forum", "type": "Forum"}, {"url": "https://www.mycobank.org/page/Stats%20page", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.mycobank.org/page/Simple%20names%20search", "name": "Simple Taxonomy Search", "type": "data access"}, {"url": "https://www.mycobank.org/page/Advanced%20names%20search", "name": "Advanced Search", "type": "data access"}, {"url": "https://www.mycobank.org/page/Basic%20names%20search", "name": "Basic Search", "type": "data access"}, {"url": "https://www.mycobank.org/page/Type%20specimens%20search", "name": "Type Specimens Search", "type": "data access"}, {"url": "https://www.mycobank.org/page/Bibliography%20search", "name": "Search Bibliography", "type": "data access"}, {"url": "https://www.mycobank.org/page/Thesaurus%20search", "name": "Thesaurus Search", "type": "data access"}, {"url": "https://www.mycobank.org/page/Pairwise_alignment", "name": "Perform Pairwise Alignment", "type": "data access"}, {"url": "https://www.mycobank.org/images/MBList.zip", "name": "Download Available Taxa (Excel)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011222", "name": "re3data:r3d100011222", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004950", "name": "SciCrunch:RRID:SCR_004950", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://www.mycobank.org/page/Registration%20home", "type": "open"}}, "legacy-ids": ["biodbcore-000397", "bsg-d000397"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Taxonomy", "Biology"], "domains": ["Taxonomic classification", "Nucleotide", "Sequence alignment", "Classification"], "taxonomies": ["Fungi"], "user-defined-tags": ["Mycology"], "countries": ["Netherlands"], "name": "FAIRsharing record for: MycoBank", "abbreviation": "MycoBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.v8se8r", "doi": "10.25504/FAIRsharing.v8se8r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MycoBank was created for the mycological community (as well as scientific community more generally) to document new mycological names, combinations and associated data (such as descriptions and illustrations). Pairwise sequence alignments and polyphasic identifications of fungi and yeasts against curated references databases are available. Nomenclatural experts will be available to check the validity, legitimacy and linguistic correctness of the proposed names in order to avoid nomenclatural error. Deposited names can remain confidential until after publication as required. Once public, the names are accessible through MycoBank, Index Fungorum, GBIF and other international biodiversity initiatives, where they will further be linked to other databases. MycoBank will (when applicable) provide onward links to other databases containing, for example, living cultures, DNA data, reference specimens and pleomorphic names linked to the same holomorph. Authors intending to publish nomenclatural novelties are encouraged to contribute.", "publications": [{"id": 1631, "pubmed_id": 24563843, "title": "MycoBank gearing up for new horizons.", "year": 2014, "url": "http://doi.org/10.5598/imafungus.2013.04.02.16", "authors": "Robert V,Vu D,Amor AB,van de Wiele N, et al.", "journal": "IMA Fungus", "doi": "10.5598/imafungus.2013.04.02.16", "created_at": "2021-09-30T08:25:22.753Z", "updated_at": "2021-09-30T08:25:22.753Z"}, {"id": 2860, "pubmed_id": null, "title": "MycoBank: an online initiative to launch mycology into the 21st century", "year": 2004, "url": "https://studiesinmycology.org/sim/Sim50/003-MycoBank_an_online_initiative_to_launch_mycology_into_the_21st_century.pdf", "authors": "Crous PW, Gams W, Stalpers JA, Robert V and Stegehuis G", "journal": "Studies in Mycology", "doi": null, "created_at": "2021-09-30T08:27:51.848Z", "updated_at": "2021-09-30T08:27:51.848Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1866", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-20T16:43:42.975Z", "metadata": {"doi": "10.25504/FAIRsharing.tf6kj8", "name": "Reactome", "status": "ready", "contacts": [{"contact-name": "Reactome Helpdesk", "contact-email": "help@reactome.org"}], "homepage": "https://reactome.org", "citations": [{"doi": "10.1093/nar/gkz1031", "pubmed-id": 31691815, "publication-id": 2077}], "identifier": 1866, "description": "The cornerstone of Reactome is a freely available, open source relational database of signaling and metabolic molecules and their relations organized into biological pathways and processes. The core unit of the Reactome data model is the reaction. Entities (nucleic acids, proteins, complexes, vaccines, anti-cancer therapeutics and small molecules) participating in reactions form a network of biological interactions and are grouped into pathways. Examples of biological pathways in Reactome include classical intermediary metabolism, signaling, transcriptional regulation, apoptosis and disease. Inferred orthologous reactions are available for 15 non-human species including mouse, rat, chicken, zebrafish, worm, fly, and yeast.", "abbreviation": null, "access-points": [{"url": "https://reactome.org/AnalysisService/", "name": "Pathway Analysis Service API", "type": "REST"}, {"url": "https://reactome.org/ContentService/", "name": "Content Service API", "type": "REST"}], "support-links": [{"url": "https://reactome.org/content/schema/DatabaseObject", "name": "Data Schema", "type": "Help documentation"}, {"url": "https://reactome.org/documentation", "name": "Reactome User Guide", "type": "Help documentation"}, {"url": "https://reactome.org/documentation/inferred-events", "name": "Computationally-inferred Events", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/pathway-visualization-in-the-reactome-pathway-database", "name": "Pathway visualization in the Reactome pathway database", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/reactome", "name": "Reactome", "type": "TeSS links to training materials"}, {"url": "https://reactome.org/community/training", "name": "Reactome Training Material", "type": "Training documentation"}, {"url": "https://twitter.com/reactome", "name": "@reactome", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://reactome.org/download-data", "name": "Download", "type": "data access"}, {"url": "https://www.reactome.org/PathwayBrowser/", "name": "Browse", "type": "data access"}, {"url": "https://www.reactome.org/content/advanced", "name": "Advanced Search", "type": "data access"}, {"url": "https://reactome.org/cgi-bin/doi_toc?DB=current", "name": "Browse DOIs", "type": "data access"}, {"url": "http://www.reactome.org/PathwayBrowser/#TOOL=AT", "name": "Analyze with the Pathway Browser", "type": "data access"}], "associated-tools": [{"url": "https://reactome.org/tools/reactome-fiviz", "name": "ReactomeFIVIz"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010861", "name": "re3data:r3d100010861", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003485", "name": "SciCrunch:RRID:SCR_003485", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000329", "bsg-d000329"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Reaction data", "Protein interaction", "Signaling", "Biological regulation", "Molecular interaction", "Genetic interaction", "Drug interaction", "Curated information", "Disease", "Pathway model"], "taxonomies": ["Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Danio rerio", "Dictyostelium discoideum", "Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Plasmodium falciparum", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Sus scrofa", "Xenopus tropicalis"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: Reactome", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.tf6kj8", "doi": "10.25504/FAIRsharing.tf6kj8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The cornerstone of Reactome is a freely available, open source relational database of signaling and metabolic molecules and their relations organized into biological pathways and processes. The core unit of the Reactome data model is the reaction. Entities (nucleic acids, proteins, complexes, vaccines, anti-cancer therapeutics and small molecules) participating in reactions form a network of biological interactions and are grouped into pathways. Examples of biological pathways in Reactome include classical intermediary metabolism, signaling, transcriptional regulation, apoptosis and disease. Inferred orthologous reactions are available for 15 non-human species including mouse, rat, chicken, zebrafish, worm, fly, and yeast.", "publications": [{"id": 1463, "pubmed_id": 29145629, "title": "The Reactome Pathway Knowledgebase.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1132", "authors": "Fabregat A,Jupe S,Matthews L,Sidiropoulos K,Gillespie M,Garapati P,Haw R,Jassal B,Korninger F,May B,Milacic M,Roca CD,Rothfels K,Sevilla C,Shamovsky V,Shorser S,Varusai T,Viteri G,Weiser J,Wu G,Stein L,Hermjakob H,D'Eustachio P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1132", "created_at": "2021-09-30T08:25:03.473Z", "updated_at": "2021-09-30T11:29:09.176Z"}, {"id": 2077, "pubmed_id": 31691815, "title": "The reactome pathway knowledgebase.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1031", "authors": "Jassal B,Matthews L,Viteri G,Gong C,Lorente P,Fabregat A,Sidiropoulos K,Cook J,Gillespie M,Haw R,Loney F,May B,Milacic M,Rothfels K,Sevilla C,Shamovsky V,Shorser S,Varusai T,Weiser J,Wu G,Stein L,Hermjakob H,D'Eustachio P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1031", "created_at": "2021-09-30T08:26:14.155Z", "updated_at": "2021-09-30T11:29:27.977Z"}, {"id": 2895, "pubmed_id": 15608231, "title": "Reactome: a knowledgebase of biological pathways.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki072", "authors": "Joshi-Tope G., Gillespie M., Vastrik I., D'Eustachio P., Schmidt E., de Bono B., Jassal B., Gopinath GR., Wu GR., Matthews L., Lewis S., Birney E., Stein L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki072", "created_at": "2021-09-30T08:27:56.474Z", "updated_at": "2021-09-30T08:27:56.474Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1265, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1266, "relation": "undefined"}, {"licence-name": "Reactome Licence Agreement", "licence-id": 701, "link-id": 1267, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2258", "type": "fairsharing-records", "attributes": {"created-at": "2016-01-05T19:57:37.000Z", "updated-at": "2021-11-24T13:13:56.304Z", "metadata": {"doi": "10.25504/FAIRsharing.9nns5e", "name": "RegenBase", "status": "ready", "contacts": [{"contact-name": "Vance Lemmon", "contact-email": "VLemmon@med.miami.edu", "contact-orcid": "0000-0003-3550-7576"}], "homepage": "http://regenbase.org", "identifier": 2258, "description": "RegenBase is a knowledge base of SCI biology. RegenBase integrates curated literature-sourced facts and experimental details from publications, raw assay data profiling the effect of compounds on enzyme activity and cell growth, and structured SCI domain knowledge in the form of the first ontology for SCI, using Semantic Web representation languages and frameworks. RegenBase enables researchers to organize and interrogate experimental data generated by spinal cord injury (SCI) research, with the ultimate goal of translating SCI experimental findings in model organisms into human therapies.", "abbreviation": "RegenBase", "support-links": [{"url": "http://regenbase.org/team--contact.html", "type": "Contact form"}, {"url": "http://regenbase.org/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://regenbase.org/tutorials.html", "type": "Help documentation"}, {"url": "http://regenbase.org/regenbase.html", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://regenbase.org/miasci-online/", "name": "annotate", "type": "data curation"}, {"url": "http://regenbase.org/search-tool.html", "name": "search", "type": "data access"}, {"url": "http://regenbase.org/download-regenbase-data.html", "name": "download", "type": "data access"}, {"url": "http://regenbase.org/explore-regenbase-data.html", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://regenbase.stanford.edu:8890/sparql", "name": "Virtuoso SPARQL Query Editor"}]}, "legacy-ids": ["biodbcore-000732", "bsg-d000732"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Medicine", "Neurobiology", "Biomedical Science", "Translational Medicine"], "domains": ["Literature curation"], "taxonomies": ["All"], "user-defined-tags": ["Neuroinformatics", "Semantic"], "countries": ["United States"], "name": "FAIRsharing record for: RegenBase", "abbreviation": "RegenBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.9nns5e", "doi": "10.25504/FAIRsharing.9nns5e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RegenBase is a knowledge base of SCI biology. RegenBase integrates curated literature-sourced facts and experimental details from publications, raw assay data profiling the effect of compounds on enzyme activity and cell growth, and structured SCI domain knowledge in the form of the first ontology for SCI, using Semantic Web representation languages and frameworks. RegenBase enables researchers to organize and interrogate experimental data generated by spinal cord injury (SCI) research, with the ultimate goal of translating SCI experimental findings in model organisms into human therapies.", "publications": [{"id": 848, "pubmed_id": 27055827, "title": "RegenBase: a knowledge base of spinal cord injury biology for translational research.", "year": 2016, "url": "http://doi.org/10.1093/database/baw040", "authors": "Callahan A, Abeyruwan SW, Al-Ali H, Sakurai K, Ferguson AR, Popovich PG, Shah NH, Visser U, Bixby JL, Lemmon VP.", "journal": "Database (Oxford)", "doi": "10.1093/database/baw040", "created_at": "2021-09-30T08:23:53.545Z", "updated_at": "2021-09-30T08:23:53.545Z"}], "licence-links": [{"licence-name": "RegenBase Terms and Conditions", "licence-id": 707, "link-id": 1521, "relation": "undefined"}, {"licence-name": "RegenBase Privacy Policy", "licence-id": 706, "link-id": 1522, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1756", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.961Z", "metadata": {"doi": "10.25504/FAIRsharing.ff7n4h", "name": "Drosophila polymorphism database", "status": "ready", "contacts": [{"contact-name": "S\u00f2nia Casillas", "contact-email": "sonia.casillas@uab.cat", "contact-orcid": "0000-0001-8191-0062"}], "homepage": "http://dpdb.uab.es/dpdb/dpdb.asp", "identifier": 1756, "description": "Drosophila Polymorphism Database, is a secondary database designed to provide a collection of all the existing polymorphic sequences in the Drosophila genus. It allows, for the first time, the search for any polymorphic set according to different parameter values of nucleotide diversity.", "abbreviation": "DPD", "support-links": [{"url": "http://dpdb.uab.es/dpdb/help.asp", "type": "Help documentation"}], "data-processes": [{"url": "http://dpdb.uab.es/dpdb/downloads.asp", "name": "Download", "type": "data access"}, {"url": "http://dpdb.uab.es/dpdb/text_search.asp", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://dpdb.uab.es/dpdb/blast.asp", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000214", "bsg-d000214"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genetic polymorphism", "Single nucleotide polymorphism", "Genome"], "taxonomies": ["Drosophila"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Drosophila polymorphism database", "abbreviation": "DPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ff7n4h", "doi": "10.25504/FAIRsharing.ff7n4h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Drosophila Polymorphism Database, is a secondary database designed to provide a collection of all the existing polymorphic sequences in the Drosophila genus. It allows, for the first time, the search for any polymorphic set according to different parameter values of nucleotide diversity.", "publications": [{"id": 283, "pubmed_id": 16204116, "title": "DPDB: a database for the storage, representation and analysis of polymorphism in the Drosophila genus.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti1103", "authors": "Casillas S., Petit N., Barbadilla A.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti1103", "created_at": "2021-09-30T08:22:50.518Z", "updated_at": "2021-09-30T08:22:50.518Z"}, {"id": 1600, "pubmed_id": 18820438, "title": "Drosophila polymorphism database (DPDB): a portal for nucleotide polymorphism in Drosophila.", "year": 2008, "url": "http://doi.org/10.4161/fly.5043", "authors": "Casillas S,Egea R,Petit N,Bergman CM,Barbadilla A", "journal": "Fly (Austin)", "doi": "10.4161/fly.5043", "created_at": "2021-09-30T08:25:19.386Z", "updated_at": "2021-09-30T08:25:19.386Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2284", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-20T10:42:09.000Z", "updated-at": "2021-12-06T10:49:15.210Z", "metadata": {"doi": "10.25504/FAIRsharing.t98nav", "name": "Gemma", "status": "ready", "homepage": "http://www.chibi.ubc.ca/Gemma", "identifier": 2284, "description": "Gemma is a database for the meta-analysis, re-use and sharing of genomics data, currently primarily targeted at the analysis of gene expression profiles. Gemma contains data from thousands of public studies, referencing thousands of published papers. Users can search, access and visualize co-expression and differential expression results.", "abbreviation": "Gemma", "access-points": [{"url": "http://www.chibi.ubc.ca/Gemma/ws/gemma.wsdl", "name": "Gemma WSDL", "type": "REST"}], "support-links": [{"url": "http://gemma-doc.chibi.ubc.ca/about-gemma/frequently-asked-questions/", "type": "Help documentation"}, {"url": "http://gemma-doc.chibi.ubc.ca/", "type": "Help documentation"}, {"url": "http://www.chibi.ubc.ca/Gemma/rssfeed", "type": "Blog/News"}, {"url": "https://twitter.com/GemmaBioinfo", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "http://www.chibi.ubc.ca/Gemma/phenocarta/LatestEvidenceExport/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012747", "name": "re3data:r3d100012747", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008007", "name": "SciCrunch:RRID:SCR_008007", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000758", "bsg-d000758"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Differential gene expression analysis", "Co-expression"], "taxonomies": ["Danio rerio", "Drosophila", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Gemma", "abbreviation": "Gemma", "url": "https://fairsharing.org/10.25504/FAIRsharing.t98nav", "doi": "10.25504/FAIRsharing.t98nav", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gemma is a database for the meta-analysis, re-use and sharing of genomics data, currently primarily targeted at the analysis of gene expression profiles. Gemma contains data from thousands of public studies, referencing thousands of published papers. Users can search, access and visualize co-expression and differential expression results.", "publications": [{"id": 1094, "pubmed_id": 22782548, "title": "Gemma: a resource for the reuse, sharing and meta-analysis of expression profiling data.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts430", "authors": "Zoubarev A,Hamer KM,Keshav KD,McCarthy EL,Santos JR,Van Rossum T,McDonald C,Hall A,Wan X,Lim R,Gillis J,Pavlidis P", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts430", "created_at": "2021-09-30T08:24:21.132Z", "updated_at": "2021-09-30T08:24:21.132Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1698", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:47.578Z", "metadata": {"doi": "10.25504/FAIRsharing.1x53qk", "name": "WikiPathways", "status": "ready", "contacts": [{"contact-name": "Alex Pico", "contact-email": "alex.pico@gladstone.ucsf.edu", "contact-orcid": "0000-0001-5706-2163"}], "homepage": "http://wikipathways.org", "identifier": 1698, "description": "WikiPathways is an open, collaborative platform dedicated to the curation of biological pathways. WikiPathways was established to facilitate the contribution and maintenance of pathway information by the biology community.", "abbreviation": "WikiPathways", "access-points": [{"url": "http://www.biocatalogue.org/services/1935#operations", "name": "wikipathways", "type": "SOAP"}, {"url": "http://webservice.wikipathways.org/", "name": "Webservice access to WikiPathways content", "type": "REST"}], "support-links": [{"url": "http://wikipathways.org/index.php/Help:Frequently_Asked_Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://wikipathways.org/index.php/Help:Contents", "type": "Help documentation"}, {"url": "http://wikipathways.tumblr.com/", "type": "Help documentation"}, {"url": "https://groups.google.com/forum/#!forum/wikipathways-discuss", "type": "Mailing list"}, {"url": "https://twitter.com/WikiPathways", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "http://wikipathways.org/index.php/Download_Pathways", "name": "continuous release", "type": "data release"}, {"name": "versioning by revisions", "type": "data versioning"}, {"name": "access to historical files possible [by unique identifier in revision control system)", "type": "data versioning"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"url": "https://github.com/wikipathways/wikipathways-api-client-java", "name": "programmatic interface (java)", "type": "data access"}, {"url": "http://wikipathways.org/index.php/Special:BrowsePathways", "name": "browse", "type": "data access"}, {"url": "http://wikipathways.org/index.php/Download_Pathways", "name": "download", "type": "data access"}, {"url": "http://wikipathways.org/index.php/Special:CreatePathwayPage", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://pathvisio.org/", "name": "PathVisio 3.3.0"}, {"url": "http://apps.cytoscape.org/apps/wikipathways", "name": "WikiPathways App 3.3.7"}, {"url": "https://pathvisio.github.io/plugins/plugins-repo", "name": "WikiPathways Plugin"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013316", "name": "re3data:r3d100013316", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002134", "name": "SciCrunch:RRID:SCR_002134", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000155", "bsg-d000155"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Mathematical model", "Image", "Pathway model"], "taxonomies": ["Anopheles gambiae", "Arabidopsis thaliana", "Bacillus subtilis", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Danio rerio", "Drosophila melanogaster", "Equus caballus", "Escherichia coli", "Gallus gallus", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Oryza sativa", "Pan troglodytes", "Rattus norvegicus", "Saccharomyces cerevisiae", "Sus scrofa", "Xenopus laevis", "Zea mays"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States", "Netherlands"], "name": "FAIRsharing record for: WikiPathways", "abbreviation": "WikiPathways", "url": "https://fairsharing.org/10.25504/FAIRsharing.1x53qk", "doi": "10.25504/FAIRsharing.1x53qk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WikiPathways is an open, collaborative platform dedicated to the curation of biological pathways. WikiPathways was established to facilitate the contribution and maintenance of pathway information by the biology community.", "publications": [{"id": 216, "pubmed_id": 18651794, "title": "WikiPathways: pathway editing for the people.", "year": 2008, "url": "http://doi.org/10.1371/journal.pbio.0060184", "authors": "Pico AR., Kelder T., van Iersel MP., Hanspers K., Conklin BR., Evelo C.,", "journal": "PLoS Biol.", "doi": "10.1371/journal.pbio.0060184", "created_at": "2021-09-30T08:22:43.448Z", "updated_at": "2021-09-30T08:22:43.448Z"}, {"id": 1315, "pubmed_id": 19649250, "title": "Mining biological pathways using WikiPathways web services.", "year": 2009, "url": "http://doi.org/10.1371/journal.pone.0006447", "authors": "Kelder T., Pico AR., Hanspers K., van Iersel MP., Evelo C., Conklin BR.,", "journal": "PLoS ONE", "doi": "10.1371/journal.pone.0006447", "created_at": "2021-09-30T08:24:46.842Z", "updated_at": "2021-09-30T08:24:46.842Z"}, {"id": 1955, "pubmed_id": 22096230, "title": "WikiPathways: building research communities on biological pathways.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1074", "authors": "Kelder T,van Iersel MP,Hanspers K,Kutmon M,Conklin BR,Evelo CT,Pico AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1074", "created_at": "2021-09-30T08:25:59.987Z", "updated_at": "2021-09-30T11:29:24.637Z"}, {"id": 1965, "pubmed_id": 33211851, "title": "WikiPathways: connecting communities.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1024", "authors": "Martens M,Ammar A,Riutta A,Waagmeester A,Slenter DN,Hanspers K,A Miller R,Digles D,Lopes EN,Ehrhart F,Dupuis LJ,Winckers LA,Coort SL,Willighagen EL,Evelo CT,Pico AR,Kutmon M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1024", "created_at": "2021-09-30T08:26:01.186Z", "updated_at": "2021-09-30T11:29:24.819Z"}, {"id": 2847, "pubmed_id": 26481357, "title": "WikiPathways: capturing the full diversity of pathway knowledge.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1024", "authors": "Kutmon M,Riutta A,Nunes N,Hanspers K,Willighagen EL,Bohler A,Melius J,Waagmeester A,Sinha SR,Miller R,Coort SL,Cirillo E,Smeets B,Evelo CT,Pico AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1024", "created_at": "2021-09-30T08:27:50.261Z", "updated_at": "2021-09-30T11:29:47.322Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 245, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 249, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2293", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-26T13:27:00.000Z", "updated-at": "2021-12-06T10:47:57.292Z", "metadata": {"doi": "10.25504/FAIRsharing.4shj9c", "name": "dictyBase", "status": "ready", "contacts": [{"contact-name": "dictyBase Helpdesk", "contact-email": "dictybase@northwestern.edu"}], "homepage": "http://www.dictybase.org", "identifier": 2293, "description": "dictyBase is a single-access database for the complete genome sequence and expression data of four Dictyostelid species providing information on research, genome and annotations. There is also a repository of plasmids and strains held at the Dicty Stock Centre. Relevant literature is integrated into the database, and gene models and functional annotation are manually curated from experimental results and comparative multigenome analyses.", "abbreviation": "dictyBase", "support-links": [{"url": "http://dictybase.org/db/cgi-bin/dictyBase/suggestion", "name": "Suggestion and Contact Form", "type": "Contact form"}, {"url": "http://dictybase.org/FAQ/HelpFilesIndex.html", "name": "dictyBase Help", "type": "Help documentation"}, {"url": "http://dictybase.org/About_dictyBase/", "name": "About dictyBase", "type": "Help documentation"}, {"url": "http://dictybase.org/tutorial/", "name": "Tutorial", "type": "Training documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://dictybase.org/Downloads/", "name": "Data download", "type": "data access"}], "associated-tools": [{"url": "http://dictybase.org/tools/jbrowse/", "name": "JBrowse 1.11.6"}, {"url": "http://dictybase.org/browser/gbrowse/discoideum/?name=1:1..30000", "name": "Genome Browser"}, {"url": "http://dictybase.org/tools/blast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010586", "name": "re3data:r3d100010586", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006643", "name": "SciCrunch:RRID:SCR_006643", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000767", "bsg-d000767"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Life Science", "Comparative Genomics"], "domains": ["Codon usage table", "Gene functional annotation", "Cellular component", "Plasmid", "Phenotype", "Genome", "Genetic strain"], "taxonomies": ["Dictyostelium discoideum", "Dictyostelium fasciculatum", "Dictyostelium purpureum", "Polysphondylium pallidum"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: dictyBase", "abbreviation": "dictyBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.4shj9c", "doi": "10.25504/FAIRsharing.4shj9c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: dictyBase is a single-access database for the complete genome sequence and expression data of four Dictyostelid species providing information on research, genome and annotations. There is also a repository of plasmids and strains held at the Dicty Stock Centre. Relevant literature is integrated into the database, and gene models and functional annotation are manually curated from experimental results and comparative multigenome analyses.", "publications": [{"id": 2107, "pubmed_id": 23494302, "title": "One stop shop for everything Dictyostelium: dictyBase and the Dicty Stock Center in 2012.", "year": 2013, "url": "http://doi.org/10.1007/978-1-62703-302-2_4", "authors": "Fey P,Dodson RJ,Basu S,Chisholm RL", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-62703-302-2_4", "created_at": "2021-09-30T08:26:17.466Z", "updated_at": "2021-09-30T08:26:17.466Z"}, {"id": 2108, "pubmed_id": 23172289, "title": "DictyBase 2013: integrating multiple Dictyostelid species.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1064", "authors": "Basu S,Fey P,Pandit Y,Dodson R,Kibbe WA,Chisholm RL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1064", "created_at": "2021-09-30T08:26:17.572Z", "updated_at": "2021-09-30T11:29:28.586Z"}, {"id": 2109, "pubmed_id": 14681427, "title": "dictyBase: a new Dictyostelium discoideum genome database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh138", "authors": "Kreppel L,Fey P,Gaudet P,Just E,Kibbe WA,Chisholm RL,Kimmel AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh138", "created_at": "2021-09-30T08:26:17.764Z", "updated_at": "2021-09-30T11:29:28.731Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1549", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:32.435Z", "metadata": {"doi": "10.25504/FAIRsharing.m867wn", "name": "ADHDgene", "status": "ready", "contacts": [{"contact-name": "Jing Wang", "contact-email": "wangjing@psych.ac.cn"}], "homepage": "http://adhd.psych.ac.cn/", "identifier": 1549, "description": "A genetic database for attention deficit hyperactivity disorder. ADHDgene aims to provide research community with a central genetic resource and analysis platform for ADHD, to help unveil the genetic basis of ADHD and to contribute to global mental health.", "abbreviation": "ADHDgene", "support-links": [{"url": "http://adhd.psych.ac.cn/tutorial.do", "type": "Training documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "search", "type": "data access"}, {"name": "file download(XLS,tab-delimited)", "type": "data access"}, {"url": "http://adhd.psych.ac.cn/download.do", "name": "Data Download", "type": "data access"}, {"url": "http://adhd.psych.ac.cn/browser.do", "name": "browser", "type": "data access"}]}, "legacy-ids": ["biodbcore-000003", "bsg-d000003"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Biomedical Science"], "domains": ["Citation", "Chromosomal region", "Single nucleotide polymorphism", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: ADHDgene", "abbreviation": "ADHDgene", "url": "https://fairsharing.org/10.25504/FAIRsharing.m867wn", "doi": "10.25504/FAIRsharing.m867wn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A genetic database for attention deficit hyperactivity disorder. ADHDgene aims to provide research community with a central genetic resource and analysis platform for ADHD, to help unveil the genetic basis of ADHD and to contribute to global mental health.", "publications": [{"id": 1500, "pubmed_id": 22080511, "title": "ADHDgene: a genetic database for attention deficit hyperactivity disorder.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr992", "authors": "Zhang L,Chang S,Li Z,Zhang K,Du Y,Ott J,Wang J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr992", "created_at": "2021-09-30T08:25:07.966Z", "updated_at": "2021-09-30T11:29:11.276Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2216", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-21T14:16:49.000Z", "updated-at": "2022-02-03T09:17:15.934Z", "metadata": {"doi": "10.25504/FAIRsharing.k9ptv7", "name": "PlasmID", "status": "deprecated", "contacts": [{"contact-name": "PlasmID Help", "contact-email": "plasmidhelp@hms.harvard.edu"}], "homepage": "https://plasmid.med.harvard.edu/PLASMID/Home.xhtml", "citations": [], "identifier": 2216, "description": "The PlasmID Repository provides researchers with inexpensive sequencing and plasmid services, holding ~350,000 plasmids, including most human cDNAs as well as shRNA libraries. PlasmID was added to the DNA Resource Core in the spring of 2004 to reduce the burden on individual labs to store, maintain and distribute plasmid clones and supporting information.", "abbreviation": "PlasmID", "support-links": [{"url": "https://plasmid.med.harvard.edu/PLASMID/Pricing.jsp", "name": "PlasmID Pricing", "type": "Help documentation"}, {"url": "https://plasmid.med.harvard.edu/PLASMID/cloningstrategies.jsp", "name": "Learn about PlasmID", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://plasmid.med.harvard.edu/PLASMID/GetDataForRefseqSearch.do", "name": "Gene Search", "type": "data access"}, {"url": "https://plasmid.med.harvard.edu/PLASMID/Submission.jsp", "name": "Plasmid Submission", "type": "data curation"}, {"url": "https://plasmid.med.harvard.edu/PLASMID/GetCollectionList.do", "name": "Browse PlasmID Collections", "type": "data access"}, {"url": "https://plasmid.med.harvard.edu/PLASMID/GetVectorsByType.do", "name": "Browse Vectors by Type", "type": "data access"}, {"url": "https://plasmid.med.harvard.edu/PLASMID/PrepareBlast.do", "name": "BLAST", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012516", "name": "re3data:r3d100012516", "portal": "re3data"}], "deprecation-date": "2021-03-18", "deprecation-reason": "In August 2019, PlasmID suspended plasmid distribution from the collection. Since that time, the website and its contents have been shut down."}, "legacy-ids": ["biodbcore-000690", "bsg-d000690"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science", "Biology"], "domains": ["Deoxyribonucleic acid", "RNA interference", "Mutation analysis", "Plasmid", "Cloning plasmid"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Expression plasmid"], "countries": ["United States"], "name": "FAIRsharing record for: PlasmID", "abbreviation": "PlasmID", "url": "https://fairsharing.org/10.25504/FAIRsharing.k9ptv7", "doi": "10.25504/FAIRsharing.k9ptv7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PlasmID Repository provides researchers with inexpensive sequencing and plasmid services, holding ~350,000 plasmids, including most human cDNAs as well as shRNA libraries. PlasmID was added to the DNA Resource Core in the spring of 2004 to reduce the burden on individual labs to store, maintain and distribute plasmid clones and supporting information.", "publications": [], "licence-links": [{"licence-name": "PlasmID Terms and Conditions of Use", "licence-id": 672, "link-id": 624, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1963", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:21.328Z", "metadata": {"doi": "10.25504/FAIRsharing.vwmc9h", "name": "AceView genes", "status": "ready", "contacts": [{"contact-email": "mieg@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/", "citations": [], "identifier": 1963, "description": "AceView provides a curated, comprehensive and non-redundant sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These experimental cDNA sequences are first co-aligned on the genome then clustered into a minimal number of alternative transcript variants and grouped into genes.", "abbreviation": "AceView", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2000, "data-processes": [{"url": "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/Download/Downloads.html", "name": "Download", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010651", "name": "re3data:r3d100010651", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002277", "name": "SciCrunch:RRID:SCR_002277", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000429", "bsg-d000429"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Genetic polymorphism", "Messenger RNA", "Gene", "Complementary DNA"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: AceView genes", "abbreviation": "AceView", "url": "https://fairsharing.org/10.25504/FAIRsharing.vwmc9h", "doi": "10.25504/FAIRsharing.vwmc9h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AceView provides a curated, comprehensive and non-redundant sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These experimental cDNA sequences are first co-aligned on the genome then clustered into a minimal number of alternative transcript variants and grouped into genes.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1904, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1916, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1802", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:16.217Z", "metadata": {"doi": "10.25504/FAIRsharing.ac329k", "name": "The Autism Chromosome Rearrangement Database", "status": "ready", "contacts": [{"contact-name": "Christian Marshal", "contact-email": "crm@sickkids.ca"}], "homepage": "http://projects.tcag.ca/autism", "identifier": 1802, "description": "The Autism Chromosome Rearrangement Database is a collection of hand curated breakpoints and other genomic features, related to autism, taken from publicly available literature, databases and unpublished data.", "support-links": [{"url": "http://projects.tcag.ca/autism/XuJie-MS.pdf", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://projects.tcag.ca/cgi-bin/autism/gbrowse/acrd_hg18/", "name": "browse", "type": "data access"}, {"url": "http://projects.tcag.ca/autism/?source=acrd_hg18", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012092", "name": "re3data:r3d100012092", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006474", "name": "SciCrunch:RRID:SCR_006474", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000262", "bsg-d000262"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Life Science", "Biomedical Science"], "domains": ["Expression data", "Autistic disorder", "Genetic polymorphism", "DNA microarray", "Disease phenotype", "Genome", "Chromosomal aberration", "Karyotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: The Autism Chromosome Rearrangement Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ac329k", "doi": "10.25504/FAIRsharing.ac329k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Autism Chromosome Rearrangement Database is a collection of hand curated breakpoints and other genomic features, related to autism, taken from publicly available literature, databases and unpublished data.", "publications": [{"id": 1102, "pubmed_id": 18252227, "title": "Structural variation of chromosomes in autism spectrum disorder.", "year": 2008, "url": "http://doi.org/10.1016/j.ajhg.2007.12.009", "authors": "Marshall CR. et al.", "journal": "Am. J. Hum. Genet.", "doi": "10.1016/j.ajhg.2007.12.009", "created_at": "2021-09-30T08:24:21.998Z", "updated_at": "2021-09-30T08:24:21.998Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1216, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3037", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-20T13:07:26.000Z", "updated-at": "2021-11-24T13:16:22.601Z", "metadata": {"doi": "10.25504/FAIRsharing.zVIgGf", "name": "Crossref", "status": "ready", "homepage": "https://www.crossref.org/", "identifier": 3037, "description": "Crossref is a central reference linking service, providing cross-publisher citation links via an API and visualization tools. Links to funders and other related events and outputs are also available. There are additional services for members such as content registration and reference linking.", "abbreviation": "Crossref", "access-points": [{"url": "https://github.com/CrossRef/rest-api-doc", "name": "Crossref API", "type": "REST"}], "support-links": [{"url": "https://www.crossref.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.crossref.org/blog/", "name": "Crossref Blog", "type": "Blog/News"}, {"url": "https://www.crossref.org/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.crossref.org/faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.crossref.org/education/", "name": "Help", "type": "Help documentation"}, {"url": "https://twitter.com/CrossrefOrg", "name": "@CrossrefOrg", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Crossref", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2000, "data-processes": [{"url": "https://search.crossref.org", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001545", "bsg-d001545"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Management"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Crossref", "abbreviation": "Crossref", "url": "https://fairsharing.org/10.25504/FAIRsharing.zVIgGf", "doi": "10.25504/FAIRsharing.zVIgGf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Crossref is a central reference linking service, providing cross-publisher citation links via an API and visualization tools. Links to funders and other related events and outputs are also available. There are additional services for members such as content registration and reference linking.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1670", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:13.212Z", "metadata": {"doi": "10.25504/FAIRsharing.hgrpah", "name": "NRG-CING", "status": "deprecated", "homepage": "http://nmr.cmbi.ru.nl/NRG-CING", "identifier": 1670, "description": "Validated NMR structures of proteins and nucleic acids.", "abbreviation": "NRG-CING", "support-links": [{"url": "http://143.210.185.204/NRG-CING/HTML/help.html", "type": "Help documentation"}, {"url": "http://143.210.185.204/NRG-CING/HTML/helpTutorials.html", "type": "Training documentation"}], "year-creation": 2008, "data-processes": [{"name": "web interface", "type": "data access"}, {"name": "web service", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "continuous release (live database) (BMRB, PDB, PDBj-Mine)", "type": "data release"}, {"name": "weekly release of database dump", "type": "data release"}, {"name": "monthly release of database plots", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by SVN numbering", "type": "data versioning"}, {"name": "no access to historical files", "type": "data versioning"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000126", "bsg-d000126"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Protein structure", "Nucleic acid sequence", "Nuclear Magnetic Resonance (NMR) spectroscopy"], "taxonomies": ["All"], "user-defined-tags": ["Validation"], "countries": ["Netherlands"], "name": "FAIRsharing record for: NRG-CING", "abbreviation": "NRG-CING", "url": "https://fairsharing.org/10.25504/FAIRsharing.hgrpah", "doi": "10.25504/FAIRsharing.hgrpah", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Validated NMR structures of proteins and nucleic acids.", "publications": [{"id": 175, "pubmed_id": 22139937, "title": "NRG-CING: integrated validation reports of remediated experimental biomolecular NMR data and coordinates in wwPDB.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1134", "authors": "Doreleijers JF., Vranken WF., Schulte C., Markley JL., Ulrich EL., Vriend G., Vuister GW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1134", "created_at": "2021-09-30T08:22:39.156Z", "updated_at": "2021-09-30T08:22:39.156Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1658", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.056Z", "metadata": {"doi": "10.25504/FAIRsharing.mw2ekr", "name": "Death Domain Database", "status": "deprecated", "contacts": [{"contact-name": "Hyun Ho Park", "contact-email": "hyunho@ynu.ac.kr"}], "homepage": "http://www.deathdomain.org", "identifier": 1658, "description": "Death Domain Database is a manually curated database of protein-protein interactions for Death Domain Superfamily.", "support-links": [{"url": "http://www.deathdomain.org/tutorial", "type": "Training documentation"}, {"url": "https://en.wikipedia.org/wiki/Death_Domain_database", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.deathdomain.org/", "name": "search", "type": "data access"}, {"name": "file download(CSV)", "type": "data access"}, {"name": "XSL", "type": "data access"}, {"name": "tab-delimited", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000114", "bsg-d000114"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Signaling", "Molecular interaction", "Curated information"], "taxonomies": ["Canis familiaris", "Danio rerio", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Death Domain Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.mw2ekr", "doi": "10.25504/FAIRsharing.mw2ekr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Death Domain Database is a manually curated database of protein-protein interactions for Death Domain Superfamily.", "publications": [{"id": 158, "pubmed_id": 22135292, "title": "A comprehensive manually curated protein-protein interaction database for the Death Domain superfamily.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1149", "authors": "Kwon D., Yoon JH., Shin SY., Jang TH., Kim HG., So I., Jeon JH., Park HH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1149", "created_at": "2021-09-30T08:22:37.424Z", "updated_at": "2021-09-30T08:22:37.424Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2073", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:22.415Z", "metadata": {"doi": "10.25504/FAIRsharing.da6cny", "name": "ExplorEnz", "status": "ready", "contacts": [{"contact-name": "Andrew G. McDonald", "contact-email": "amcdonld@tcd.ie", "contact-orcid": "0000-0003-2727-176X"}], "homepage": "http://www.enzyme-database.org", "identifier": 2073, "description": "The Enzyme Database was developed as a new way to access the data of the IUBMB Enzyme Nomenclature List. The data, which are stored in a MySQL database, preserve the formatting of chemical names according to IUPAC standards.", "abbreviation": "ExplorEnz", "support-links": [{"url": "http://www.enzyme-database.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.enzyme-database.org/quickstart.php", "type": "Help documentation"}, {"url": "http://www.enzyme-database.org/nomenclature.php", "type": "Help documentation"}, {"url": "http://www.enzyme-database.org/advice.php", "type": "Help documentation"}], "data-processes": [{"url": "http://www.enzyme-database.org/downloads.php", "name": "Download", "type": "data access"}, {"url": "http://www.enzyme-database.org/search.php", "name": "search", "type": "data access"}, {"url": "http://www.enzyme-database.org/class.php", "name": "browse", "type": "data access"}, {"url": "http://www.enzyme-database.org/newform.php", "name": "submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000540", "bsg-d000540"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide", "Ireland"], "name": "FAIRsharing record for: ExplorEnz", "abbreviation": "ExplorEnz", "url": "https://fairsharing.org/10.25504/FAIRsharing.da6cny", "doi": "10.25504/FAIRsharing.da6cny", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Enzyme Database was developed as a new way to access the data of the IUBMB Enzyme Nomenclature List. The data, which are stored in a MySQL database, preserve the formatting of chemical names according to IUPAC standards.", "publications": [{"id": 1083, "pubmed_id": 18776214, "title": "ExplorEnz: the primary source of the IUBMB enzyme list.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn582", "authors": "McDonald AG., Boyce S., Tipton KF.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn582", "created_at": "2021-09-30T08:24:19.998Z", "updated_at": "2021-09-30T08:24:19.998Z"}], "licence-links": [{"licence-name": "ExplorEnz Attribution required", "licence-id": 306, "link-id": 987, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2111", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.572Z", "metadata": {"doi": "10.25504/FAIRsharing.bdn9br", "name": "LipidBank", "status": "ready", "contacts": [{"contact-name": "Etsuko Yasugi", "contact-email": "yasugi@ri.imcj.go.jp"}], "homepage": "http://lipidbank.jp/index.html", "identifier": 2111, "description": "LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", "abbreviation": "LipidBank", "support-links": [{"url": "metabolome@cb.k.u-tokyo.ac.jp", "type": "Support email"}, {"url": "http://lipidbank.jp/wiki/Category:LB", "type": "Help documentation"}, {"url": "http://lipidbank.jp/help/about.html", "type": "Help documentation"}], "year-creation": 1989, "data-processes": [{"url": "http://lipidbank.jp/cgi-bin/main.cgi?id=ALL", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000581", "bsg-d000581"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Lipid", "Molecular entity", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: LipidBank", "abbreviation": "LipidBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.bdn9br", "doi": "10.25504/FAIRsharing.bdn9br", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", "publications": [{"id": 542, "pubmed_id": 12058481, "title": "[LIPIDBANK for Web, the newly developed lipid database].", "year": 2002, "url": "https://www.ncbi.nlm.nih.gov/pubmed/12058481", "authors": "Yasugi E., Watanabe K.,", "journal": "Tanpakushitsu Kakusan Koso", "doi": null, "created_at": "2021-09-30T08:23:19.184Z", "updated_at": "2021-09-30T08:23:19.184Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2441, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2568", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-20T11:40:17.000Z", "updated-at": "2021-11-24T13:17:53.025Z", "metadata": {"doi": "10.25504/FAIRsharing.9btkvp", "name": "Online Resource for Community Annotation of Eukaryotes", "status": "ready", "contacts": [{"contact-name": "Lieven Sterck", "contact-email": "lieven.sterck@psb.vib-ugent.be", "contact-orcid": "0000-0001-7116-4000"}], "homepage": "http://bioinformatics.psb.ugent.be/orcae/", "identifier": 2568, "description": "The Online Resource for Community Annotation of Eukaryotes (ORCAE) is an online genome annotation resource offering users the necessary tools and information to validate and correct gene annotations. It is a gene-centric wiki-style annotation portal offering public access to a wide variety of plant, fungal and animal genomes. The basic setup of ORCAE is highly comparable to wiki systems such as MediaWiki, and the information page for each gene can be seen as a \u2018topic\u2019 page of a traditional text wiki.", "abbreviation": "ORCAE", "support-links": [{"url": "beg-orcae@psb.vib-ugent.be", "name": "BEG-orcae Support Email", "type": "Support email"}], "year-creation": 2012}, "legacy-ids": ["biodbcore-001051", "bsg-d001051"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Genome annotation"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: Online Resource for Community Annotation of Eukaryotes", "abbreviation": "ORCAE", "url": "https://fairsharing.org/10.25504/FAIRsharing.9btkvp", "doi": "10.25504/FAIRsharing.9btkvp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Online Resource for Community Annotation of Eukaryotes (ORCAE) is an online genome annotation resource offering users the necessary tools and information to validate and correct gene annotations. It is a gene-centric wiki-style annotation portal offering public access to a wide variety of plant, fungal and animal genomes. The basic setup of ORCAE is highly comparable to wiki systems such as MediaWiki, and the information page for each gene can be seen as a \u2018topic\u2019 page of a traditional text wiki.", "publications": [{"id": 2212, "pubmed_id": 23132114, "title": "ORCAE: online resource for community annotation of eukaryotes.", "year": 2012, "url": "http://doi.org/10.1038/nmeth.2242", "authors": "Sterck L,Billiau K,Abeel T,Rouze P,Van de Peer Y", "journal": "Nat Methods", "doi": "10.1038/nmeth.2242", "created_at": "2021-09-30T08:26:29.323Z", "updated_at": "2021-09-30T08:26:29.323Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2574", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-28T13:39:08.000Z", "updated-at": "2021-11-24T13:17:23.532Z", "metadata": {"doi": "10.25504/FAIRsharing.PkY7Hl", "name": "Cucurbit Genomics Database", "status": "ready", "contacts": [{"contact-email": "feibioinfolab@gmail.com"}], "homepage": "http://cucurbitgenomics.org", "citations": [{"doi": "10.1093/nar/gky944", "pubmed-id": 30321383, "publication-id": 146}], "identifier": 2574, "description": "The recent genome sequence assemblies of major cucurbit crop species, including cucumber, melon, watermelon and pumpkin have made it feasible to use advanced genomic approaches in cucurbit breeding. Under the CucCAP project (http://cuccap.org), the Cucurbit Genomics Database (CuGenDB) aims to accelerate the breeding progress of cucurbit crops. Tripal was used to help manage, store, distribute and analyze the large amount of recently generated genotype and phenotype data. CuGenDB integrates genetic, genomics, transcriptomics and other biological data.", "abbreviation": "CuGenDB", "support-links": [{"url": "http://cucurbitgenomics.org/contact", "name": "CuGenDB Contact Form", "type": "Contact form"}, {"url": "cucurbit-l@cornell.edu", "name": "CuGenDB Mailing List", "type": "Mailing list"}, {"url": "https://pag.confex.com/pag/xxvi/meetingapp.cgi/Paper/30589", "name": "Conference Presentation", "type": "Help documentation"}], "data-processes": [{"url": "http://cucurbitgenomics.org/search", "name": "Search", "type": "data access"}, {"url": "http://cucurbitgenomics.org/download", "name": "Download Data", "type": "data access"}], "associated-tools": [{"url": "http://cucurbitgenomics.org/blast", "name": "BLAST"}, {"url": "http://cucurbitgenomics.org/goenrich", "name": "GO Enrichment"}, {"url": "http://cucurbitgenomics.org/funcat", "name": "Gene Classification"}, {"url": "http://cucurbitgenomics.org/JBrowse/", "name": "JBrowse"}, {"url": "http://cucurbitgenomics.org/batchquery", "name": "Batch Query"}, {"url": "http://cucurbitgenomics.org/synview/search", "name": "Synteny Viewer"}, {"url": "http://cucurbitgenomics.org/cmaps", "name": "CMap"}, {"url": "http://cucurbitgenomics.org/pwyenrich", "name": "Pathway Enrichment"}]}, "legacy-ids": ["biodbcore-001057", "bsg-d001057"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Agriculture", "Life Science", "Transcriptomics"], "domains": ["Phenotype", "Genotype"], "taxonomies": ["Cucurbitaceae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cucurbit Genomics Database", "abbreviation": "CuGenDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.PkY7Hl", "doi": "10.25504/FAIRsharing.PkY7Hl", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The recent genome sequence assemblies of major cucurbit crop species, including cucumber, melon, watermelon and pumpkin have made it feasible to use advanced genomic approaches in cucurbit breeding. Under the CucCAP project (http://cuccap.org), the Cucurbit Genomics Database (CuGenDB) aims to accelerate the breeding progress of cucurbit crops. Tripal was used to help manage, store, distribute and analyze the large amount of recently generated genotype and phenotype data. CuGenDB integrates genetic, genomics, transcriptomics and other biological data.", "publications": [{"id": 146, "pubmed_id": 30321383, "title": "Cucurbit Genomics Database (CuGenDB): a central portal for comparative and functional genomics of cucurbit crops.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky944", "authors": "Zheng Y,Wu S,Bai Y,Sun H,Jiao C,Guo S,Zhao K,Blanca J,Zhang Z,Huang S,Xu Y,Weng Y,Mazourek M,K Reddy U,Ando K,McCreight JD,Schaffer AA,Burger J,Tadmor Y,Katzir N,Tang X,Liu Y,Giovannoni JJ,Ling KS,Wechter WP,Levi A,Garcia-Mas J,Grumet R,Fei Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky944", "created_at": "2021-09-30T08:22:35.904Z", "updated_at": "2021-09-30T11:28:43.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2908", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-16T11:54:12.000Z", "updated-at": "2021-11-24T13:17:24.688Z", "metadata": {"name": "Internal Control Genes", "status": "uncertain", "contacts": [{"contact-name": "Lili Hao", "contact-email": "haolili@big.ac.cn"}], "homepage": "http://icg.big.ac.cn/index.php/Main_Page", "citations": [{"doi": "10.1093/nar/gkx875", "pubmed-id": 29036693, "publication-id": 2808}], "identifier": 2908, "description": "Internal Control Genes (ICG) is a wiki-based knowledgebase of internal control genes (or reference genes) for RT-qPCR normalization in a variety of species across three domains of life. Based on community curation, ICG provides curated data from a large volume of literature and provides information on internal control genes corresponding to specific experimental conditions for both model and non-model organisms. The data in this resource has not been updated recently, and therefore we have marked this record as Uncertain. Please get in touch if you know the current status of this resource.", "abbreviation": "ICG", "support-links": [{"url": "zhangzhang@big.ac.cn", "name": "Zhang Zhang", "type": "Support email"}, {"url": "http://icg.big.ac.cn/index.php/ICG:FAQ", "name": "ICG FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://icg.big.ac.cn/index.php/ICG:Statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://icg.big.ac.cn/index.php/Species", "name": "Browse by Species", "type": "data access"}, {"url": "http://icg.big.ac.cn/index.php/All_Projects", "name": "Browse by Projects", "type": "data access"}, {"url": "http://icg.big.ac.cn/index.php/ICG:How_to_contribute", "name": "Contributing", "type": "data curation"}, {"url": "http://icg.big.ac.cn/index.php/Downloads", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://bigd.big.ac.cn/gen/", "name": "Gene Expression Nebulas (GEN) Data Portal"}]}, "legacy-ids": ["biodbcore-001411", "bsg-d001411"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics"], "domains": ["Expression data", "Real time polymerase chain reaction", "Gene expression"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Internal Control Genes", "abbreviation": "ICG", "url": "https://fairsharing.org/fairsharing_records/2908", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Internal Control Genes (ICG) is a wiki-based knowledgebase of internal control genes (or reference genes) for RT-qPCR normalization in a variety of species across three domains of life. Based on community curation, ICG provides curated data from a large volume of literature and provides information on internal control genes corresponding to specific experimental conditions for both model and non-model organisms. The data in this resource has not been updated recently, and therefore we have marked this record as Uncertain. Please get in touch if you know the current status of this resource.", "publications": [{"id": 2808, "pubmed_id": 29036693, "title": "ICG: a wiki-driven knowledgebase of internal control genes for RT-qPCR normalization.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx875", "authors": "Sang J,Wang Z,Li M,Cao J,Niu G,Xia L,Zou D,Wang F,Xu X,Han X,Fan J,Yang Y,Zuo W,Zhang Y,Zhao W,Bao Y,Xiao J,Hu S,Hao L,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx875", "created_at": "2021-09-30T08:27:45.286Z", "updated_at": "2021-09-30T11:29:45.520Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1605", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:22.113Z", "metadata": {"doi": "10.25504/FAIRsharing.wdbd3r", "name": "MetaCrop 2.0", "status": "ready", "contacts": [{"contact-name": "Falk Schreiber", "contact-email": "schreibe@ipk-gatersleben.de"}], "homepage": "http://metacrop.ipk-gatersleben.de", "identifier": 1605, "description": "The MetaCrop resource contains information on the major metabolic pathways mainly in crops of agricultural and economic importance. The database includes manually curated information on reactions and the kinetic data associated with these reactions. Ontology terms are used and publication identification available to ease mining the data.", "abbreviation": "MetaCrop 2.0", "year-creation": 2005, "data-processes": [{"name": "web service", "type": "data access"}, {"name": "web interface", "type": "data access"}, {"name": "internal versioning for curation", "type": "data versioning"}, {"name": "manual curation", "type": "data curation"}, {"name": "continuous release (live database)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010123", "name": "re3data:r3d100010123", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003100", "name": "SciCrunch:RRID:SCR_003100", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000060", "bsg-d000060"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Reaction data", "Kinetic model", "Cellular component", "Biological process", "Pathway model"], "taxonomies": ["Arabidopsis thaliana", "Beta vulgaris", "Brassica napus", "Hordeum vulgare", "Medicago truncatula", "Oryza sativa", "Solanum tuberosum", "Triticum aestivum", "Zea mays"], "user-defined-tags": ["Stoichiometry"], "countries": ["Germany"], "name": "FAIRsharing record for: MetaCrop 2.0", "abbreviation": "MetaCrop 2.0", "url": "https://fairsharing.org/10.25504/FAIRsharing.wdbd3r", "doi": "10.25504/FAIRsharing.wdbd3r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MetaCrop resource contains information on the major metabolic pathways mainly in crops of agricultural and economic importance. The database includes manually curated information on reactions and the kinetic data associated with these reactions. Ontology terms are used and publication identification available to ease mining the data.", "publications": [{"id": 85, "pubmed_id": 17933764, "title": "MetaCrop: a detailed database of crop plant metabolism.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm835", "authors": "Grafahrend-Belau E., Weise S., Kosch\u00fctzki D., Scholz U., Junker BH., Schreiber F.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm835", "created_at": "2021-09-30T08:22:29.190Z", "updated_at": "2021-09-30T08:22:29.190Z"}, {"id": 87, "pubmed_id": 20375443, "title": "Novel developments of the MetaCrop information system for facilitating systems biological approaches.", "year": 2010, "url": "http://doi.org/10.2390/biecoll-jib-2010-125", "authors": "Hippe K., Colmsee C., Czauderna T., Grafahrend-Belau E., Junker BH., Klukas C., Scholz U., Schreiber F., Weise S.,", "journal": "J Integr Bioinform", "doi": "10.2390/biecoll-jib-2010-125", "created_at": "2021-09-30T08:22:29.997Z", "updated_at": "2021-09-30T08:22:29.997Z"}, {"id": 1374, "pubmed_id": 17059592, "title": "Meta-All: a system for managing metabolic pathway information.", "year": 2006, "url": "http://doi.org/10.1186/1471-2105-7-465", "authors": "Weise S., Grosse I., Klukas C., Kosch\u00fctzki D., Scholz U., Schreiber F., Junker BH.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-7-465", "created_at": "2021-09-30T08:24:53.685Z", "updated_at": "2021-09-30T08:24:53.685Z"}, {"id": 2185, "pubmed_id": 22086948, "title": "MetaCrop 2.0: managing and exploring information about crop plant metabolism.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1004", "authors": "Schreiber F,Colmsee C,Czauderna T,Grafahrend-Belau E,Hartmann A,Junker A,Junker BH,Klapperstuck M,Scholz U,Weise S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1004", "created_at": "2021-09-30T08:26:26.356Z", "updated_at": "2021-09-30T11:29:30.795Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2280", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-13T16:28:43.000Z", "updated-at": "2021-11-24T13:19:50.977Z", "metadata": {"doi": "10.25504/FAIRsharing.p5f1j4", "name": "Deciphering the Mechanisms of Developmental Disorders", "status": "ready", "contacts": [{"contact-name": "Contact", "contact-email": "contact@dmdd.org.uk"}], "homepage": "https://dmdd.org.uk", "identifier": 2280, "description": "Initiated in 2013, DMDD has the ambitious goal of identifying all embryonic lethal knockout lines made at the Wellcome Trust Sanger institute, through their work as a major centre for creation of individual mouse gene knockouts. DMDD uses a combination of comprehensive 3D imaging, tissue histology, immunocytochemistry and transcriptomics to identify abnormalities in embryo and placental structure for each embryonic lethal line. All data is made freely available via this web site, enabling individual researchers to identify lines relevant to their own research. The DMDD programme is coordinating its work with similar international efforts through the umbrella of the International Mouse Phenotyping Consortium.", "abbreviation": "DMDD", "support-links": [{"url": "contact@dmdd.org.uk", "type": "Support email"}, {"url": "https://twitter.com/dmdduk", "type": "Twitter"}], "year-creation": 2013}, "legacy-ids": ["biodbcore-000754", "bsg-d000754"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Developmental Biology"], "domains": ["Imaging", "Disease phenotype"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Deciphering the Mechanisms of Developmental Disorders", "abbreviation": "DMDD", "url": "https://fairsharing.org/10.25504/FAIRsharing.p5f1j4", "doi": "10.25504/FAIRsharing.p5f1j4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Initiated in 2013, DMDD has the ambitious goal of identifying all embryonic lethal knockout lines made at the Wellcome Trust Sanger institute, through their work as a major centre for creation of individual mouse gene knockouts. DMDD uses a combination of comprehensive 3D imaging, tissue histology, immunocytochemistry and transcriptomics to identify abnormalities in embryo and placental structure for each embryonic lethal line. All data is made freely available via this web site, enabling individual researchers to identify lines relevant to their own research. The DMDD programme is coordinating its work with similar international efforts through the umbrella of the International Mouse Phenotyping Consortium.", "publications": [{"id": 1045, "pubmed_id": 26519470, "title": "Deciphering the mechanisms of developmental disorders: phenotype analysis of embryos from mutant mouse lines.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1138", "authors": "Wilson R,McGuire C,Mohun T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1138", "created_at": "2021-09-30T08:24:15.695Z", "updated_at": "2021-09-30T11:28:57.284Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 856, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2042", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:11.467Z", "metadata": {"doi": "10.25504/FAIRsharing.96f3gm", "name": "ChemSpider", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "chemspider@rsc.org"}], "homepage": "http://www.chemspider.com/", "identifier": 2042, "description": "ChemSpider is a freely available collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", "abbreviation": "ChemSpider", "access-points": [{"url": "https://developer.rsc.org/", "name": "Compound APIs", "type": "REST"}], "support-links": [{"url": "http://www.chemspider.com/blog/", "type": "Blog/News"}, {"url": "http://www.chemspider.com/FAQ.aspx", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.chemspider.com/Help.aspx?", "type": "Help documentation"}, {"url": "http://www.youtube.com/watch?v=eje0AmntuII&hd=1", "type": "Video"}, {"url": "https://twitter.com/ChemSpider", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://www.chemspider.com/FullSearch.aspx", "name": "advanced search", "type": "data access"}, {"url": "http://www.chemspider.com/Search.aspx", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010205", "name": "re3data:r3d100010205", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006360", "name": "SciCrunch:RRID:SCR_006360", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000509", "bsg-d000509"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry", "Life Science"], "domains": ["Chemical structure", "Molecular entity", "Structure"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: ChemSpider", "abbreviation": "ChemSpider", "url": "https://fairsharing.org/10.25504/FAIRsharing.96f3gm", "doi": "10.25504/FAIRsharing.96f3gm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChemSpider is a freely available collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", "publications": [{"id": 727, "pubmed_id": null, "title": "ChemSpider: An Online Chemical Information Resource", "year": 2010, "url": "http://doi.org/10.1021/ed100697w", "authors": "Harry E. Pence and Antony Williams", "journal": "Journal of Chemical Education", "doi": "10.1021/ed100697w", "created_at": "2021-09-30T08:23:40.119Z", "updated_at": "2021-09-30T08:23:40.119Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2686", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-14T13:32:40.000Z", "updated-at": "2021-11-24T13:17:53.614Z", "metadata": {"doi": "10.25504/FAIRsharing.EftAnp", "name": "BeanMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://mines.legumeinfo.org/beanmine", "identifier": 2686, "description": "This mine integrates many types of data for string bean built from the LIS chado database.", "abbreviation": "BeanMine", "access-points": [{"url": "https://mines.legumeinfo.org/beanmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/beanmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/beanmine/templates.do", "name": "Search Via Pre-defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/beanmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/beanmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/beanmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001183", "bsg-d001183"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Reaction data", "Gene expression", "Protein"], "taxonomies": ["Phaseolus vulgaris"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BeanMine", "abbreviation": "BeanMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.EftAnp", "doi": "10.25504/FAIRsharing.EftAnp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This mine integrates many types of data for string bean built from the LIS chado database.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 429, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2081", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:24.611Z", "metadata": {"doi": "10.25504/FAIRsharing.5tfcy8", "name": "A CLAssification of Mobile genetic Elements", "status": "ready", "contacts": [{"contact-email": "raphael@bigre.ulb.ac.be"}], "homepage": "http://aclame.ulb.ac.be/", "identifier": 2081, "description": "ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", "abbreviation": "ACLAME", "support-links": [{"url": "http://aclame.ulb.ac.be/Classification/description.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://aclame.ulb.ac.be/perl/Aclame/Tools/exporter.cgi", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://aclame.ulb.ac.be/perl/Aclame/show_cluster.cgi?mode=list", "name": "browse"}, {"url": "http://aclame.ulb.ac.be/Tools/blast.html", "name": "BLAST"}, {"url": "http://aclame.ulb.ac.be/Tools/Prophinder/", "name": "Prophinder"}]}, "legacy-ids": ["biodbcore-000549", "bsg-d000549"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene", "Genome"], "taxonomies": ["Viruses"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: A CLAssification of Mobile genetic Elements", "abbreviation": "ACLAME", "url": "https://fairsharing.org/10.25504/FAIRsharing.5tfcy8", "doi": "10.25504/FAIRsharing.5tfcy8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", "publications": [{"id": 1371, "pubmed_id": 14681355, "title": "ACLAME: a CLAssification of Mobile genetic Elements.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh084", "authors": "Leplae R., Hebrant A., Wodak SJ., Toussaint A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh084", "created_at": "2021-09-30T08:24:53.350Z", "updated_at": "2021-09-30T08:24:53.350Z"}, {"id": 1373, "pubmed_id": 19933762, "title": "ACLAME: a CLAssification of Mobile genetic Elements, update 2010.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp938", "authors": "Leplae R., Lima-Mendez G., Toussaint A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp938", "created_at": "2021-09-30T08:24:53.576Z", "updated_at": "2021-09-30T08:24:53.576Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 720, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1995", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.279Z", "metadata": {"doi": "10.25504/FAIRsharing.p4dtt2", "name": "UniVec", "status": "ready", "contacts": [{"contact-name": "David L. Wheeler", "contact-email": "wheeler@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/VecScreen/UniVec.html", "identifier": 1995, "description": "UniVec is a database that can be used to quickly identify segments within nucleic acid sequences which may be of vector origin (vector contamination). In addition to vector sequences, UniVec also contains sequences for those adapters, linkers, and primers commonly used in the process of cloning cDNA or genomic DNA.", "abbreviation": "UniVec", "support-links": [{"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "http://www.ncbi.nlm.nih.gov/VecScreen/UniVec.html", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/pub/UniVec/", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/VecScreen/VecScreen.html", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000461", "bsg-d000461"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Complementary DNA", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: UniVec", "abbreviation": "UniVec", "url": "https://fairsharing.org/10.25504/FAIRsharing.p4dtt2", "doi": "10.25504/FAIRsharing.p4dtt2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UniVec is a database that can be used to quickly identify segments within nucleic acid sequences which may be of vector origin (vector contamination). In addition to vector sequences, UniVec also contains sequences for those adapters, linkers, and primers commonly used in the process of cloning cDNA or genomic DNA.", "publications": [{"id": 460, "pubmed_id": 12519941, "title": "Database resources of the National Center for Biotechnology.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg033", "authors": "Wheeler DL., Church DM., Federhen S., Lash AE., Madden TL., Pontius JU., Schuler GD., Schriml LM., Sequeira E., Tatusova TA., Wagner L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg033", "created_at": "2021-09-30T08:23:09.975Z", "updated_at": "2021-09-30T08:23:09.975Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 342, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 346, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1601", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:48.305Z", "metadata": {"doi": "10.25504/FAIRsharing.44yp73", "name": "LegumeIP", "status": "ready", "contacts": [{"contact-name": "Patrick X. Zhao", "contact-email": "pzhao@noble.org"}], "homepage": "http://plantgrn.noble.org/LegumeIP/", "identifier": 1601, "description": "The LegumeIP 2.0 database hosts large-scale genomics and transcriptomics data and provides integrative bioinformatics tools for the study of gene function and evolution in legumes.", "abbreviation": "LegumeIP", "support-links": [{"url": "bioinfo@noble.org", "type": "Support email"}, {"url": "http://plantgrn.noble.org/LegumeIP/help.jsp", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "annual release (if genomic sequences or gene models are updated in the five species)", "type": "data release"}, {"name": "automated curation[comprehensive annotation tools, including BLAST, InterProscan, Dagchainer,TribeMCL,OrthoMCL]", "type": "data curation"}, {"name": "browse", "type": "data access"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "search", "type": "data access"}, {"url": "http://plantgrn.noble.org/LegumeIP/download.jsp", "name": "file download(txt,XML)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "associated-tools": [{"url": "http://plantgrn.noble.org/LegumeIP/blasttranscript.jsp", "name": "blast"}]}, "legacy-ids": ["biodbcore-000056", "bsg-d000056"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Evolutionary Biology", "Life Science", "Transcriptomics"], "domains": ["Expression data", "DNA sequence data", "Gene Ontology enrichment", "Function analysis", "Gene model annotation"], "taxonomies": ["Lotus japonicus", "Medicago truncatula"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: LegumeIP", "abbreviation": "LegumeIP", "url": "https://fairsharing.org/10.25504/FAIRsharing.44yp73", "doi": "10.25504/FAIRsharing.44yp73", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LegumeIP 2.0 database hosts large-scale genomics and transcriptomics data and provides integrative bioinformatics tools for the study of gene function and evolution in legumes.", "publications": [{"id": 1550, "pubmed_id": 22110036, "title": "LegumeIP: an integrative database for comparative genomics and transcriptomics of model legumes.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr939", "authors": "Li J,Dai X,Liu T,Zhao PX", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr939", "created_at": "2021-09-30T08:25:13.649Z", "updated_at": "2021-09-30T11:29:13.211Z"}, {"id": 2086, "pubmed_id": 26578557, "title": "LegumeIP 2.0--a platform for the study of gene function and genome evolution in legumes.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1237", "authors": "Li J,Dai X,Zhuang Z,Zhao PX", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1237", "created_at": "2021-09-30T08:26:15.154Z", "updated_at": "2021-09-30T11:29:28.345Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1876", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:37.179Z", "metadata": {"doi": "10.25504/FAIRsharing.zzaykv", "name": "Side Effect Resource", "status": "ready", "contacts": [{"contact-name": "Peer Bork", "contact-email": "bork@embl.de", "contact-orcid": "0000-0002-2627-833X"}], "homepage": "http://sideeffects.embl.de", "identifier": 1876, "description": "SIDER contains information on marketed medicines and their recorded adverse drug reactions. The information is extracted from public documents and package inserts. The available information include side effect frequency, drug and side effect classifications as well as links to further information, for example drug_target relations.", "abbreviation": "SIDER", "year-creation": 2010, "data-processes": [{"url": "http://sideeffects.embl.de/download/", "name": "Download", "type": "data access"}, {"url": "http://sideeffects.embl.de", "name": "search", "type": "data access"}, {"url": "http://sideeffects.embl.de/drugs/", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012791", "name": "re3data:r3d100012791", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004321", "name": "SciCrunch:RRID:SCR_004321", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000341", "bsg-d000341"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Biomedical Science"], "domains": ["Drug", "Adverse Reaction", "Target"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Drug Target"], "countries": ["Germany"], "name": "FAIRsharing record for: Side Effect Resource", "abbreviation": "SIDER", "url": "https://fairsharing.org/10.25504/FAIRsharing.zzaykv", "doi": "10.25504/FAIRsharing.zzaykv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SIDER contains information on marketed medicines and their recorded adverse drug reactions. The information is extracted from public documents and package inserts. The available information include side effect frequency, drug and side effect classifications as well as links to further information, for example drug_target relations.", "publications": [{"id": 1448, "pubmed_id": 20087340, "title": "A side effect resource to capture phenotypic effects of drugs.", "year": 2010, "url": "http://doi.org/10.1038/msb.2009.98", "authors": "Kuhn M., Campillos M., Letunic I., Jensen LJ., Bork P.,", "journal": "Mol. Syst. Biol.", "doi": "10.1093/nar/gkv1075", "created_at": "2021-09-30T08:25:01.860Z", "updated_at": "2021-09-30T08:25:01.860Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1570, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1965", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:40.217Z", "metadata": {"doi": "10.25504/FAIRsharing.2cyh1h", "name": "NCBI Cancer Chromosome Database", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=cancerchromosomes", "identifier": 1965, "description": "Three databases, the NCI/NCBI SKY/M-FISH & CGH Database, the NCI Mitelman Database of Chromosome Aberrations in Cancer, and the NCI Recurrent Aberrations in Cancer , are now integrated into NCBI's Entrez system as Cancer Chromosomes.", "abbreviation": "Cancer Chromosomes", "deprecation-date": "2016-12-21", "deprecation-reason": "Due to budgetary constraints, the National Center for Biotechnology Information (NCBI) has discontinued the Cancer Chromosomes database and it has been removed from the Entrez System."}, "legacy-ids": ["biodbcore-000431", "bsg-d000431"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Cancer", "Chromosomal aberration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Cancer Chromosome Database", "abbreviation": "Cancer Chromosomes", "url": "https://fairsharing.org/10.25504/FAIRsharing.2cyh1h", "doi": "10.25504/FAIRsharing.2cyh1h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Three databases, the NCI/NCBI SKY/M-FISH & CGH Database, the NCI Mitelman Database of Chromosome Aberrations in Cancer, and the NCI Recurrent Aberrations in Cancer , are now integrated into NCBI's Entrez system as Cancer Chromosomes.", "publications": [{"id": 1022, "pubmed_id": 16381840, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj158", "authors": "Barrett T., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj158", "created_at": "2021-09-30T08:24:13.181Z", "updated_at": "2021-09-30T08:24:13.181Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 954, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2123", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:38.334Z", "metadata": {"doi": "10.25504/FAIRsharing.g7jbvn", "name": "Human Gene Database", "status": "ready", "contacts": [{"contact-name": "Marilyn Safran", "contact-email": "marilyn.safran@weizmann.ac.il", "contact-orcid": "0000-0001-5424-1393"}], "homepage": "https://www.genecards.org/", "citations": [], "identifier": 2123, "description": "GeneCards is a searchable, integrated, database of human genes that provides concise genomic, transcriptomic, genetic, proteomic, functional and disease related information on all known and predicted human genes.", "abbreviation": "GeneCards", "support-links": [{"url": "http://www.genecards.org/index.php?path=/HTML/page/FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.genecards.org/index.php?path=/HTML/page/siteMap#guide", "type": "Help documentation"}], "year-creation": 1996, "data-processes": [{"url": "http://www.genecards.org/Search", "name": "Advance search", "type": "data access"}], "associated-tools": [{"url": "https://genealacart.genecards.org/", "name": "GeneALaCart"}, {"url": "http://tgex.genecards.org/", "name": "GeneCards Suite"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012015", "name": "re3data:r3d100012015", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002773", "name": "SciCrunch:RRID:SCR_002773", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000593", "bsg-d000593"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Life Science", "Transcriptomics"], "domains": ["Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: Human Gene Database", "abbreviation": "GeneCards", "url": "https://fairsharing.org/10.25504/FAIRsharing.g7jbvn", "doi": "10.25504/FAIRsharing.g7jbvn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneCards is a searchable, integrated, database of human genes that provides concise genomic, transcriptomic, genetic, proteomic, functional and disease related information on all known and predicted human genes.", "publications": [{"id": 31, "pubmed_id": null, "title": "Genic Insights From Integrated Human Proteomics in GeneCards", "year": 2016, "url": "http://doi.org/10.1093/database/baw030", "authors": "Fishilevich S, Zimmerman S, Kohn A, Iny Stein T, Safran M, and Lancet D.", "journal": "Database", "doi": "10.1093/database/baw030", "created_at": "2021-09-30T08:22:23.663Z", "updated_at": "2021-09-30T08:22:23.663Z"}, {"id": 105, "pubmed_id": null, "title": "The GeneCards Suite: From Gene Data Mining to Disease Genome Sequence Analysis", "year": 2016, "url": "http://doi.org/10.1002/cpbi.5", "authors": "Stelzer G, Rosen R, Plaschkes I, Zimmerman S, Twik M, Fishilevich S, Iny Stein T, Nudel R, Lieder I, Mazor Y, Kaplan S, Dahary, D, Warshawsky D, Guan-Golan Y, Kohn A, Rappaport N, Safran M, and Lancet D.", "journal": "Current Protocols in Bioinformatics", "doi": "10.1002/cpbi.5", "created_at": "2021-09-30T08:22:31.698Z", "updated_at": "2021-09-30T08:22:31.698Z"}, {"id": 137, "pubmed_id": null, "title": "PathCards: multi-source consolidation of human biological pathways", "year": 2015, "url": "http://doi.org/10.1093/database/bav006", "authors": "Belinky F, Nativ N, Stelzer G, Zimmerman S, Iny Stein T, Safran M, and Lancet, D.", "journal": "Database", "doi": "10.1093/database/bav006", "created_at": "2021-09-30T08:22:35.006Z", "updated_at": "2021-09-30T08:22:35.006Z"}, {"id": 767, "pubmed_id": 20689021, "title": "GeneCards Version 3: the human gene integrator.", "year": 2010, "url": "http://doi.org/10.1093/database/baq020", "authors": "Safran M., Dalah I., Alexander J., Rosen N., Iny Stein T., Shmoish M., Nativ N., Bahir I., Doniger T., Krug H., Sirota-Madi A., Olender T., Golan Y., Stelzer G., Harel A., Lancet D.,", "journal": "Database (Oxford)", "doi": "10.1093/database/baq020", "created_at": "2021-09-30T08:23:44.545Z", "updated_at": "2021-09-30T08:23:44.545Z"}, {"id": 768, "pubmed_id": 12424129, "title": "GeneCards 2002: towards a complete, object-oriented, human gene compendium.", "year": 2002, "url": "http://doi.org/10.1093/bioinformatics/18.11.1542", "authors": "Safran M,Solomon I,Shmueli O,Lapidot M,Shen-Orr S,Adato A,Ben-Dor U,Esterman N,Rosen N,Peter I,Olender T,Chalifa-Caspi V,Lancet D", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/18.11.1542", "created_at": "2021-09-30T08:23:44.653Z", "updated_at": "2021-09-30T08:23:44.653Z"}, {"id": 835, "pubmed_id": 9097728, "title": "GeneCards: integrating information about genes, proteins and diseases.", "year": 1997, "url": "http://doi.org/10.1016/s0168-9525(97)01103-7", "authors": "Rebhan M,Chalifa-Caspi V,Prilusky J,Lancet D", "journal": "Trends Genet", "doi": "10.1016/S0168-9525(97)01103-7", "created_at": "2021-09-30T08:23:52.162Z", "updated_at": "2021-09-30T08:23:52.162Z"}, {"id": 1569, "pubmed_id": null, "title": "GeneAnalytics: An integrative gene set analysis tool", "year": 2016, "url": "http://doi.org/10.1089/omi.2015.0168", "authors": "Ben-Ari Fuchs S, Lieder I, Stelzer G, Mazor Y, Buzhor E, Kaplan S, Bogoch Y, Plaschkes I, Shitrit A, Rappaport N, Kohn A, Edgar R, Shenhav L, Safran M, Lancet D, Guan-Golan Y, Warshawsky D, and Strichman R.", "journal": "OMICS", "doi": "10.1089/omi.2015.0168", "created_at": "2021-09-30T08:25:15.898Z", "updated_at": "2021-09-30T08:25:15.898Z"}, {"id": 1574, "pubmed_id": null, "title": "Non-redundant compendium of human ncRNA genes in GeneCards", "year": 2013, "url": "https://doi.org/10.1093/bioinformatics/bts676", "authors": "Belinky F, Bahir I, Stelzer G, Zimmerman S, Rosen N, Nativ N, Dalah I, Iny Stein T, Rappaport N, Mituyama M, Safran M and Lancet D.", "journal": "Bioinformatics", "doi": null, "created_at": "2021-09-30T08:25:16.460Z", "updated_at": "2021-09-30T11:28:28.819Z"}, {"id": 1937, "pubmed_id": null, "title": "VarElect: the phenotype-based variation prioritizer of the GeneCards suite", "year": 2016, "url": "http://doi.org/10.1186/s12864-016-2722-2", "authors": "Stelzer G, Plaschkes I, Oz-Levi D, Alkelai A, Olender T, Zimmerman S, Twik M., Belinky F, Fishilevich S, Nudel R, Guan-Golan Y, Warshawsky D, Dahary D, Kohn A, Mazor Y, Kaplan S, Iny Stein T, Baris H, Rappaport N, Safran M, and Lancet D.", "journal": "BMC Genomics", "doi": "10.1186/s12864-016-2722-2", "created_at": "2021-09-30T08:25:58.021Z", "updated_at": "2021-09-30T08:25:58.021Z"}], "licence-links": [{"licence-name": "GeneCards Privacy Policy", "licence-id": 329, "link-id": 2134, "relation": "undefined"}, {"licence-name": "GeneCards Suite Terms and Conditions of Use", "licence-id": 330, "link-id": 2135, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2374", "type": "fairsharing-records", "attributes": {"created-at": "2017-01-06T14:59:46.000Z", "updated-at": "2021-12-06T10:48:56.684Z", "metadata": {"doi": "10.25504/FAIRsharing.nzaz6z", "name": "Virtual Fly Brain", "status": "ready", "contacts": [{"contact-name": "Robert Court", "contact-email": "r.court@ed.ac.uk", "contact-orcid": "0000-0002-0173-9080"}], "homepage": "https://virtualflybrain.org", "citations": [], "identifier": 2374, "description": "VFB is an interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of Drosophila melanogaster. Our goal is to make it easier for researchers to find relevant anatomical information and reagents. We integrate the neuroanatomical and expression data from the published literature, as well as image datasets onto the same brain template, making it possible to run cross searches, find similar neurons and compare image data on our 3D Viewer.", "abbreviation": "VFB", "support-links": [{"url": "support@virtualflybrain.org", "type": "Support email"}, {"url": "http://www.virtualflybrain.org/site/vfb_site/faq.htm", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2009, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011373", "name": "re3data:r3d100011373", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004229", "name": "SciCrunch:RRID:SCR_004229", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000853", "bsg-d000853"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurobiology", "Life Science"], "domains": ["Expression data", "Neuron", "Cell morphology", "Structure", "Brain", "Brain imaging"], "taxonomies": ["Drosophila melanogaster"], "user-defined-tags": ["Neuroinformatics"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Virtual Fly Brain", "abbreviation": "VFB", "url": "https://fairsharing.org/10.25504/FAIRsharing.nzaz6z", "doi": "10.25504/FAIRsharing.nzaz6z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VFB is an interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of Drosophila melanogaster. Our goal is to make it easier for researchers to find relevant anatomical information and reagents. We integrate the neuroanatomical and expression data from the published literature, as well as image datasets onto the same brain template, making it possible to run cross searches, find similar neurons and compare image data on our 3D Viewer.", "publications": [{"id": 1856, "pubmed_id": 22402613, "title": "A strategy for building neuro-anatomy ontologies", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts113", "authors": "Osumi-Sutherland D., Reeve S., Mungall C., Ruttenberg A. Neuhaus F, Jefferis G.S.X.E, Armstrong J.D.", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts113", "created_at": "2021-09-30T08:25:48.506Z", "updated_at": "2021-09-30T08:25:48.506Z"}, {"id": 1858, "pubmed_id": 22180411, "title": "The Virtual Fly Brain Browser and Query Interface", "year": 2011, "url": "http://doi.org/10.1093/bioinformatics/btr677", "authors": "Milyaev N., Osumi-Sutherland D., Reeve S., Burton N., Baldock R.A., Armstrong J.D.", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btr677", "created_at": "2021-09-30T08:25:48.723Z", "updated_at": "2021-09-30T08:25:48.723Z"}, {"id": 1959, "pubmed_id": 22676296, "title": "Web tools for large-scale 3D biological images and atlases", "year": 2012, "url": "http://doi.org/10.1186/1471-2105-13-122", "authors": "Husz ZL, Burton N, Hill B, Milyaev N, Baldock RA", "journal": "BMC Bioinformatics", "doi": "doi:10.1186/1471-2105-13-122", "created_at": "2021-09-30T08:26:00.448Z", "updated_at": "2021-09-30T08:26:00.448Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 928, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 986, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1807", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:31.495Z", "metadata": {"doi": "10.25504/FAIRsharing.ex3fqk", "name": "Plant Transcription Factor Database", "status": "ready", "contacts": [{"contact-name": "Ge Gao", "contact-email": "gaog@mail.cbi.pku.edu.cn"}], "homepage": "http://planttfdb.cbi.pku.edu.cn", "identifier": 1807, "description": "Plant Transcription Factor Database (PlantTFDB) provides a comprehensive, high-quality resource of plant transcription factors (TFs), regulatory elements and interactions between them. In the latest version, It contains 320 370 TFs, classified into 58 families, from 165 species. Abundant functional and evolutionary annotations (e.g., GO, functional description, binding motifs, cis-element, regulation, references, orthologous groups and phylogenetic tree, etc.) are provided for identified TFs. In addition, multiple online tools are set up for TF identification, regulation prediction and functional enrichment analyses.", "abbreviation": "PlantTFDB", "support-links": [{"url": "planttfdb@mail.cbi.pku.edu.cn", "type": "Support email"}, {"url": "http://planttfdb.cbi.pku.edu.cn/help.php", "type": "Help documentation"}, {"url": "http://plantregmap.cbi.pku.edu.cn/help.php", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://planttfdb.cbi.pku.edu.cn/", "name": "Transcription factors and annotation", "type": "data access"}, {"url": "http://plantregmap.cbi.pku.edu.cn", "name": "Regulation resource and analysis tools", "type": "data access"}, {"url": "http://planttfdb.cbi.pku.edu.cn/download.php", "name": "Download", "type": "data release"}, {"url": "http://plantregmap.cbi.pku.edu.cn/download.php", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://planttfdb.cbi.pku.edu.cn/blast.php", "name": "BLAST"}, {"url": "http://planttfdb.cbi.pku.edu.cn/prediction.php", "name": "Transcription Factor Prediction v4.0"}, {"url": "http://plantregmap.cbi.pku.edu.cn/binding_site_prediction.php", "name": "Binding Site Prediction"}, {"url": "http://plantregmap.cbi.pku.edu.cn/regulation_prediction.php", "name": "Regulation Prediction"}, {"url": "http://plantregmap.cbi.pku.edu.cn/go.php", "name": "GO Term Enrichment"}, {"url": "http://plantregmap.cbi.pku.edu.cn/tf_enrichment.php", "name": "Transcription Factor Enrichment"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011301", "name": "re3data:r3d100011301", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003362", "name": "SciCrunch:RRID:SCR_003362", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000267", "bsg-d000267"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene Ontology enrichment", "Annotation", "Transcription factor binding site prediction", "Binding site prediction", "Biological regulation", "Binding motif", "Transcription factor", "Gene regulatory element", "Sequence motif"], "taxonomies": ["Viridiplantae"], "user-defined-tags": ["Transcription factor (TF) enrichment"], "countries": ["China"], "name": "FAIRsharing record for: Plant Transcription Factor Database", "abbreviation": "PlantTFDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.ex3fqk", "doi": "10.25504/FAIRsharing.ex3fqk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Plant Transcription Factor Database (PlantTFDB) provides a comprehensive, high-quality resource of plant transcription factors (TFs), regulatory elements and interactions between them. In the latest version, It contains 320 370 TFs, classified into 58 families, from 165 species. Abundant functional and evolutionary annotations (e.g., GO, functional description, binding motifs, cis-element, regulation, references, orthologous groups and phylogenetic tree, etc.) are provided for identified TFs. In addition, multiple online tools are set up for TF identification, regulation prediction and functional enrichment analyses.", "publications": [{"id": 1216, "pubmed_id": 25750178, "title": "An Arabidopsis Transcriptional Regulatory Map Reveals Distinct Functional and Evolutionary Features of Novel Transcription Factors", "year": 2015, "url": "http://doi.org/10.1093/molbev/msv058", "authors": "Jinpu Jin, Kun He, Xing Tang, Zhe Li, Le Lv, Yi Zhao, Jingchu Luo and Ge Gao", "journal": "Molecular Biology and Evolution", "doi": "10.1093/molbev/msv058", "created_at": "2021-09-30T08:24:35.558Z", "updated_at": "2021-09-30T08:24:35.558Z"}, {"id": 1242, "pubmed_id": 24174544, "title": "PlantTFDB 3.0: a portal for the functional and evolutionary study of plant transcription factors", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1016", "authors": "Jinpu Jin, He Zhang, Lei Kong, Ge Gao and Jingchu Luo", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1016", "created_at": "2021-09-30T08:24:38.550Z", "updated_at": "2021-09-30T08:24:38.550Z"}, {"id": 1732, "pubmed_id": null, "title": "PlantTFDB 4.0: toward a central hub for transcription factors and regulatory interactions in plants", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw982", "authors": "Jinpu Jin, Feng Tian, De-Chang Yang, Yu-Qi Meng, Lei Kong, Jingchu Luo and Ge Gao", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw982", "created_at": "2021-09-30T08:25:34.147Z", "updated_at": "2021-09-30T08:25:34.147Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 253, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2865", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-03T10:57:42.000Z", "updated-at": "2021-11-24T13:20:08.042Z", "metadata": {"doi": "10.25504/FAIRsharing.VXoFLf", "name": "Domain-centric GO", "status": "ready", "contacts": [{"contact-name": "Dr. Hai Fang", "contact-email": "hfang@cs.bris.ac.uk"}], "homepage": "http://supfam.org/SUPERFAMILY/dcGO/index.html", "citations": [{"doi": "10.1093/nar/gks1080", "publication-id": 2642}], "identifier": 2865, "description": "Domain-centric GO provides associations between ontological terms and protein domains at the superfamily and family levels. Some functional units consist of more than one domain acting together or acting at an interface between domains; therefore, ontological terms associated with pairs of domains, triplets and longer supra-domains are also provided.", "abbreviation": "dcGO", "support-links": [{"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcalgorithm.cgi", "name": "Algorithm details", "type": "Help documentation"}, {"url": "http://supfam.org/SUPERFAMILY/dcGO/background.html", "name": "Background", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcsearch.cgi", "name": "Faceted Search", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dctree.cgi", "name": "Search Species Tree of Life Hierarchy", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcpfam.cgi", "name": "Browse PFAM hierarchy", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcbo.cgi", "name": "Browse other biological ontology hierarchies", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcgo.cgi", "name": "Browse GO hierarchy", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcscop.cgi", "name": "Browse SCOP hierarchy", "type": "data access"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcdownload.cgi", "name": "Download dcGO", "type": "data release"}], "associated-tools": [{"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcpredictormain.cgi", "name": "dcGO Predictor"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcenrichment.cgi", "name": "dcGO Enrichment"}, {"url": "http://supfam.org/SUPERFAMILY/cgi-bin/dcpevo.cgi", "name": "dcGO Pevo"}]}, "legacy-ids": ["biodbcore-001366", "bsg-d001366"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics"], "domains": ["Functional domain", "Protein domain", "Annotation", "Sequence annotation", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Domain-centric GO", "abbreviation": "dcGO", "url": "https://fairsharing.org/10.25504/FAIRsharing.VXoFLf", "doi": "10.25504/FAIRsharing.VXoFLf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Domain-centric GO provides associations between ontological terms and protein domains at the superfamily and family levels. Some functional units consist of more than one domain acting together or acting at an interface between domains; therefore, ontological terms associated with pairs of domains, triplets and longer supra-domains are also provided.", "publications": [{"id": 2642, "pubmed_id": null, "title": "dcGO: database of domain-centric ontologies on functions, phenotypes, diseases and more", "year": 2013, "url": "http://doi.org/10.1093/nar/gks1080", "authors": "Hai Fang, Julian Gough", "journal": "Nucleic Acids Research, Volume 41, Issue D1, Pages D536\u2013D544", "doi": "10.1093/nar/gks1080", "created_at": "2021-09-30T08:27:24.454Z", "updated_at": "2021-09-30T08:27:24.454Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2007", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:42.067Z", "metadata": {"doi": "10.25504/FAIRsharing.znjr4p", "name": "Tumor Associated Gene database", "status": "ready", "contacts": [{"contact-name": "H. Sunny Sun", "contact-email": "hssun@mail.ncku.edu.tw"}], "homepage": "http://www.binfo.ncku.edu.tw/TAG/GeneDoc.php", "identifier": 2007, "description": "The tumor-associated gene (TAG) database was designed to utilize information from well-characterized oncogenes and tumor suppressor genes to facilitate cancer research. All target genes were identified through text-mining approach from the PubMed database.", "abbreviation": "TAG", "support-links": [{"url": "em61330@email.ncku.edu.tw", "type": "Support email"}, {"url": "http://carpedb.ua.edu/searchinstruct.cfm", "type": "Help documentation"}, {"url": "http://www.binfo.ncku.edu.tw/TAG/WeightDoc.html", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://www.binfo.ncku.edu.tw/TAG/DS/", "name": "sequence search", "type": "data access"}, {"url": "http://www.binfo.ncku.edu.tw/TAG/DS/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000473", "bsg-d000473"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Biomedical Science"], "domains": ["Text mining", "Cancer", "Tumor", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Tumor Associated Gene database", "abbreviation": "TAG", "url": "https://fairsharing.org/10.25504/FAIRsharing.znjr4p", "doi": "10.25504/FAIRsharing.znjr4p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The tumor-associated gene (TAG) database was designed to utilize information from well-characterized oncogenes and tumor suppressor genes to facilitate cancer research. All target genes were identified through text-mining approach from the PubMed database.", "publications": [{"id": 466, "pubmed_id": 23267173, "title": "In silico identification of oncogenic potential of fyn-related kinase in hepatocellular carcinoma.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts715", "authors": "Chen JS., Hung WS., Chan HH., Tsai SJ., Sun HS.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts715", "created_at": "2021-09-30T08:23:10.659Z", "updated_at": "2021-09-30T08:23:10.659Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 588, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1574", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:32.375Z", "metadata": {"doi": "10.25504/FAIRsharing.z0ea6a", "name": "doRiNA", "status": "ready", "contacts": [{"contact-name": "Altuna Akalin", "contact-email": "altuna.akalin@mdc-berlin.de"}], "homepage": "http://dorina.mdc-berlin.de", "identifier": 1574, "description": "Database of RNA interactions in post-transcriptional regulation.", "abbreviation": "doRiNA", "support-links": [{"url": "http://dorina.mdc-berlin.de/docs", "type": "Help documentation"}, {"url": "http://dorina.mdc-berlin.de/tutorials", "type": "Training documentation"}, {"url": "https://en.wikipedia.org/wiki/DoRiNA", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011087", "name": "re3data:r3d100011087", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013222", "name": "SciCrunch:RRID:SCR_013222", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000029", "bsg-d000029"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene expression", "Exon", "Micro RNA", "Micro RNA (miRNA) target site"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus"], "user-defined-tags": ["RNA-binding protein target sites"], "countries": ["Germany"], "name": "FAIRsharing record for: doRiNA", "abbreviation": "doRiNA", "url": "https://fairsharing.org/10.25504/FAIRsharing.z0ea6a", "doi": "10.25504/FAIRsharing.z0ea6a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database of RNA interactions in post-transcriptional regulation.", "publications": [{"id": 1868, "pubmed_id": 20371350, "title": "Transcriptome-wide identification of RNA-binding protein and microRNA target sites by PAR-CLIP.", "year": 2010, "url": "http://doi.org/10.1016/j.cell.2010.03.009", "authors": "Hafner M., Landthaler M., Burger L., Khorshid M., Hausser J., Berninger P., Rothballer A., Ascano M., Jungkamp AC., Munschauer M., Ulrich A., Wardle GS., Dewell S., Zavolan M., Tuschl T.,", "journal": "Cell", "doi": "10.1016/j.cell.2010.03.009", "created_at": "2021-09-30T08:25:50.061Z", "updated_at": "2021-09-30T08:25:50.061Z"}, {"id": 1869, "pubmed_id": 16458514, "title": "A genome-wide map of conserved microRNA targets in C. elegans.", "year": 2006, "url": "http://doi.org/10.1016/j.cub.2006.01.050", "authors": "Lall S., Gr\u00fcn D., Krek A., Chen K., Wang YL., Dewey CN., Sood P., Colombo T., Bray N., Macmenamin P., Kao HL., Gunsalus KC., Pachter L., Piano F., Rajewsky N.,", "journal": "Curr. Biol.", "doi": "10.1016/j.cub.2006.01.050", "created_at": "2021-09-30T08:25:50.182Z", "updated_at": "2021-09-30T08:25:50.182Z"}, {"id": 1870, "pubmed_id": 25416797, "title": "DoRiNA 2.0--upgrading the doRiNA database of RNA interactions in post-transcriptional regulation.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1180", "authors": "Blin K,Dieterich C,Wurmus R,Rajewsky N,Landthaler M,Akalin A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1180", "created_at": "2021-09-30T08:25:50.288Z", "updated_at": "2021-09-30T11:29:21.663Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1747", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:10.971Z", "metadata": {"doi": "10.25504/FAIRsharing.5gjjsg", "name": "Chemical Abstracts Service Registry", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "help@cas.org"}], "homepage": "http://www.cas.org/content/chemical-substances", "identifier": 1747, "description": "CAS (Chemical Abstracts Service) is a division of the American Chemical Society and contains databases of chemical information. CAS Registry Numbers (often referred to as CAS RNs or CAS Numbers) are universally used to provide a unique, unmistakable identifier for chemical substances. A CAS Registry Number itself has no inherent chemical significance but provides an unambiguous way to identify a chemical substance or molecular structure when there are many possible systematic, generic, proprietary or trivial names.", "abbreviation": "CAS Registry", "support-links": [{"url": "http://web.cas.org/forms/inforequest.html", "type": "Contact form"}, {"url": "http://www.cas.org/about-cas/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://commonchemistry.org/help.aspx", "type": "Help documentation"}, {"url": "http://www.cas.org/training/scifinder", "type": "Training documentation"}, {"url": "http://www.cas.org/training/stn", "type": "Training documentation"}, {"url": "https://twitter.com/CASChemistry", "type": "Twitter"}], "year-creation": 1956, "data-processes": [{"name": "Mixture of free and fee-based products", "type": "data access"}]}, "legacy-ids": ["biodbcore-000205", "bsg-d000205"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry", "Ontology and Terminology"], "domains": ["Molecular structure", "Chemical entity", "Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Chemical Abstracts Service Registry", "abbreviation": "CAS Registry", "url": "https://fairsharing.org/10.25504/FAIRsharing.5gjjsg", "doi": "10.25504/FAIRsharing.5gjjsg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CAS (Chemical Abstracts Service) is a division of the American Chemical Society and contains databases of chemical information. CAS Registry Numbers (often referred to as CAS RNs or CAS Numbers) are universally used to provide a unique, unmistakable identifier for chemical substances. A CAS Registry Number itself has no inherent chemical significance but provides an unambiguous way to identify a chemical substance or molecular structure when there are many possible systematic, generic, proprietary or trivial names.", "publications": [], "licence-links": [{"licence-name": "CAS Information Use Policies", "licence-id": 103, "link-id": 181, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1733", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:17.648Z", "metadata": {"doi": "10.25504/FAIRsharing.tfvd5r", "name": "Glycosciences.de DB", "status": "uncertain", "contacts": [{"contact-name": "Thomas Lutteke", "contact-email": "thomas.luetteke@vetmed.uni-giessen.de", "contact-orcid": "0000-0002-7140-9933"}], "homepage": "http://www.glycosciences.de/database/", "identifier": 1733, "description": "Glycan database with focus on carbohydrate 3D structures", "year-creation": 2013}, "legacy-ids": ["biodbcore-000190", "bsg-d000190"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Carbohydrate", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Glycosciences.de DB", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.tfvd5r", "doi": "10.25504/FAIRsharing.tfvd5r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Glycan database with focus on carbohydrate 3D structures", "publications": [{"id": 161, "pubmed_id": 16239495, "title": "GLYCOSCIENCES.de: an Internet portal to support glycomics and glycobiology research.", "year": 2005, "url": "http://doi.org/10.1093/glycob/cwj049", "authors": "L\u00fctteke T, Bohne-Lang A, Loss A, Goetz T, Frank M, von der Lieth CW.", "journal": "Glycobiology", "doi": "10.1093/glycob/cwj049", "created_at": "2021-09-30T08:22:37.749Z", "updated_at": "2021-09-30T08:22:37.749Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1796", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:20.967Z", "metadata": {"doi": "10.25504/FAIRsharing.vs7865", "name": "The Cambridge Structural Database", "status": "ready", "contacts": [{"contact-name": "Support Email", "contact-email": "support@ccdc.cam.ac.uk", "contact-orcid": "0000-0002-6062-7492"}], "homepage": "http://www.ccdc.cam.ac.uk/solutions/csd-system/components/csd/", "citations": [{"doi": "10.1107/S2052520616003954", "pubmed-id": 27048719, "publication-id": 771}], "identifier": 1796, "description": "Established in 1965, the Cambridge Structural Database (CSD) is the a repository for small-molecule organic and metal-organic crystal 3D structures. Database records are automatically checked and manually curated by one of our expert in-house scientific editors. Every structure is enriched with chemical representations, as well as bibliographic, chemical and physical property information, adding further value to the raw structural data.", "abbreviation": "CSD", "access-points": [{"url": "https://downloads.ccdc.cam.ac.uk/documentation/API/", "name": "CSD Python API", "type": "REST"}], "support-links": [{"url": "https://www.ccdc.cam.ac.uk/Community/blog/tags/CSD", "name": "CCDC Blog", "type": "Blog/News"}, {"url": "https://www.ccdc.cam.ac.uk/support-and-resources/ccdcresources/CSDC-Access-Structures.pdf", "name": "Search Help", "type": "Help documentation"}, {"url": "https://www.ccdc.cam.ac.uk/support-and-resources/ccdcresources/?ResourceType=&Category=&Product=0b7591ad-2201-e411-99f5-00505686f06e", "name": "CSD Documentation", "type": "Help documentation"}, {"url": "https://www.ccdc.cam.ac.uk/CCDCStats/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/ccdc_cambridge", "name": "@ccdc_cambridge", "type": "Twitter"}], "year-creation": 1965, "data-processes": [{"url": "https://www.ccdc.cam.ac.uk/Community/educationalresources/teaching-database/", "name": "Download Teaching Subset", "type": "data release"}, {"url": "https://www.ccdc.cam.ac.uk/deposit", "name": "Deposit Structures", "type": "data curation"}, {"url": "https://www.ccdc.cam.ac.uk/structures/", "name": "WebCSD Search", "type": "data access"}, {"url": "https://isostar.ccdc.cam.ac.uk/html/isostar.html", "name": "IsoStar", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010197", "name": "re3data:r3d100010197", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007310", "name": "SciCrunch:RRID:SCR_007310", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000256", "bsg-d000256"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Organic Chemistry", "Biochemistry", "Organic Molecular Chemistry", "Chemistry"], "domains": ["Molecular structure", "Protein structure", "Atomic coordinate", "X-ray diffraction", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: The Cambridge Structural Database", "abbreviation": "CSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.vs7865", "doi": "10.25504/FAIRsharing.vs7865", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Established in 1965, the Cambridge Structural Database (CSD) is the a repository for small-molecule organic and metal-organic crystal 3D structures. Database records are automatically checked and manually curated by one of our expert in-house scientific editors. Every structure is enriched with chemical representations, as well as bibliographic, chemical and physical property information, adding further value to the raw structural data.", "publications": [{"id": 660, "pubmed_id": 12037359, "title": "The Cambridge Structural Database: a quarter of a million crystal structures and rising", "year": 2002, "url": "http://doi.org/10.1107/s0108768102003890", "authors": "F. H. Allen", "journal": "Acta Crystallographica Section B", "doi": "10.1107/S0108768102003890", "created_at": "2021-09-30T08:23:32.852Z", "updated_at": "2021-09-30T08:23:32.852Z"}, {"id": 771, "pubmed_id": 27048719, "title": "The Cambridge Structural Database.", "year": 2016, "url": "http://doi.org/10.1107/S2052520616003954", "authors": "Groom CR,Bruno IJ,Lightfoot MP,Ward SC", "journal": "Acta Crystallogr B Struct Sci Cryst Eng Mater", "doi": "10.1107/S2052520616003954", "created_at": "2021-09-30T08:23:44.970Z", "updated_at": "2021-09-30T08:23:44.970Z"}], "licence-links": [{"licence-name": "CSD Terms and Conditions", "licence-id": 206, "link-id": 2330, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3203", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-20T13:28:32.000Z", "updated-at": "2021-12-06T10:47:39.028Z", "metadata": {"name": "Database of Places, Language, Culture, and Environment", "status": "ready", "contacts": [{"contact-name": "D-PLACE General Contact", "contact-email": "dplace@shh.mpg.de"}], "homepage": "https://d-place.org", "citations": [{"doi": "10.1371/journal.pone.0158391", "pubmed-id": 27391016, "publication-id": 3063}], "identifier": 3203, "description": "The Database of Places, Language, Culture, and Environment (D-PLACE) is an expandable, open-access databases that aims to describe the dispersed corpus of information describing human cultural diversity. Its goal is to make it easy for individuals to contrast their own cultural practices with those of other societies, and to consider the factors that may underlie cultural similarities and differences. D-PLACE contains cultural, linguistic, environmental and geographic information 'societies', which are groups of people in a particular locality who often share a language and cultural identity. All cultural descriptions are tagged with the date to which they refer and with the ethnographic sources that provided the descriptions. The majority of the cultural descriptions in D-PLACE are based on ethnographic work carried out in the 19th and early-20th centuries (pre-1950). D-PLACE lets you visualize cross-cultural data in three ways: as a list in a table, on a global map, or on a linguistic tree (i.e., phylogeny or classification). Data points (i.e., rows in the table, points on the map, points on the tree) represent the expression of a particular cultural feature by a particular society at a given time and place, as recorded by the Source. Data points are colour-coded to allow you to quickly assess the diversity of a cultural feature across societies in the table, map, or linguistic tree.", "abbreviation": "D-PLACE", "support-links": [{"url": "https://d-place.org/changes", "name": "News", "type": "Blog/News"}, {"url": "https://d-place.org/glossary", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://d-place.org/source", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://d-place.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://github.com/D-PLACE/dplace-data", "name": "GitHub Project", "type": "Github"}], "year-creation": 2016, "data-processes": [{"url": "https://d-place.org/societysets", "name": "Map View - Societies", "type": "data access"}, {"url": "https://github.com/D-PLACE/dplace-data/releases", "name": "Download", "type": "data release"}, {"url": "https://d-place.org/contributions", "name": "Browse & Search Datasets", "type": "data access"}, {"url": "https://d-place.org/parameters", "name": "Browse & Search Variables", "type": "data access"}, {"url": "https://d-place.org/phylogenys", "name": "Browse & Search Phylogenies", "type": "data access"}, {"url": "https://d-place.org/sources", "name": "Browse & Search Sources", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012075", "name": "re3data:r3d100012075", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001716", "bsg-d001716"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Culture", "Human Geography", "Cultural Studies", "Linguistics", "Anthropology", "Historical Linguistics"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Language"], "countries": ["United Kingdom", "Canada", "United States", "New Zealand", "Germany", "Australia", "Switzerland"], "name": "FAIRsharing record for: Database of Places, Language, Culture, and Environment", "abbreviation": "D-PLACE", "url": "https://fairsharing.org/fairsharing_records/3203", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Places, Language, Culture, and Environment (D-PLACE) is an expandable, open-access databases that aims to describe the dispersed corpus of information describing human cultural diversity. Its goal is to make it easy for individuals to contrast their own cultural practices with those of other societies, and to consider the factors that may underlie cultural similarities and differences. D-PLACE contains cultural, linguistic, environmental and geographic information 'societies', which are groups of people in a particular locality who often share a language and cultural identity. All cultural descriptions are tagged with the date to which they refer and with the ethnographic sources that provided the descriptions. The majority of the cultural descriptions in D-PLACE are based on ethnographic work carried out in the 19th and early-20th centuries (pre-1950). D-PLACE lets you visualize cross-cultural data in three ways: as a list in a table, on a global map, or on a linguistic tree (i.e., phylogeny or classification). Data points (i.e., rows in the table, points on the map, points on the tree) represent the expression of a particular cultural feature by a particular society at a given time and place, as recorded by the Source. Data points are colour-coded to allow you to quickly assess the diversity of a cultural feature across societies in the table, map, or linguistic tree.", "publications": [{"id": 3063, "pubmed_id": 27391016, "title": "D-PLACE: A Global Database of Cultural, Linguistic and Environmental Diversity.", "year": 2016, "url": "http://doi.org/10.1371/journal.pone.0158391", "authors": "Kirby KR,Gray RD,Greenhill SJ,Jordan FM,Gomes-Ng S,Bibiko HJ,Blasi DE,Botero CA,Bowern C,Ember CR,Leehr D,Low BS,McCarter J,Divale W,Gavin MC", "journal": "PLoS One", "doi": "10.1371/journal.pone.0158391", "created_at": "2021-09-30T08:28:17.450Z", "updated_at": "2021-09-30T08:28:17.450Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2109, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2167", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:50.809Z", "metadata": {"doi": "10.25504/FAIRsharing.22z3re", "name": "MouseMine @ MGI", "status": "ready", "contacts": [{"contact-name": "MouseMine support", "contact-email": "support@mousemine.org"}], "homepage": "http://www.mousemine.org", "citations": [{"doi": "10.1007/s00335-015-9573-z", "pubmed-id": 26092688, "publication-id": 1361}], "identifier": 2167, "description": "A database of integrated mouse data from MGI, powered by InterMine. MouseMine is member of InterMOD, a consortium of model organism databases dedicated to making cross-species data analysis easier through ongoing coordination and collaborative system development.", "abbreviation": "MouseMine", "access-points": [{"url": "http://www.mousemine.org/mousemine/service", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}, {"url": "http://iodocs.labs.intermine.org/mgi/docs#/", "name": "Interactive documentation", "type": "Other"}], "support-links": [{"url": "https://tess.elixir-europe.org/materials/mousemine-at-mgi", "name": "MouseMine at MGI", "type": "Help documentation"}, {"url": "http://www.mousemine.org/mousemine/api.do", "name": "Web Service Documentation", "type": "Help documentation"}, {"url": "http://www.mousemine.org/mousemine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://www.mousemine.org/mousemine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://www.mousemine.org/mousemine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://www.mousemine.org/mousemine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}], "associated-tools": [{"url": "http://proto.informatics.jax.org/prototypes/mgv/", "name": "Multiple Genome Viewer"}]}, "legacy-ids": ["biodbcore-000639", "bsg-d000639"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Expression data", "Model organism", "Disease process modeling", "Phenotype", "Disease", "Genome"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MouseMine @ MGI", "abbreviation": "MouseMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.22z3re", "doi": "10.25504/FAIRsharing.22z3re", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database of integrated mouse data from MGI, powered by InterMine. MouseMine is member of InterMOD, a consortium of model organism databases dedicated to making cross-species data analysis easier through ongoing coordination and collaborative system development.", "publications": [{"id": 1361, "pubmed_id": 26092688, "title": "MouseMine: a new data warehouse for MGI.", "year": 2015, "url": "http://doi.org/10.1007/s00335-015-9573-z", "authors": "Motenko H,Neuhauser SB,O'Keefe M,Richardson JE", "journal": "Mamm Genome", "doi": "10.1007/s00335-015-9573-z", "created_at": "2021-09-30T08:24:52.193Z", "updated_at": "2021-09-30T08:24:52.193Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 696, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1704", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.132Z", "metadata": {"doi": "10.25504/FAIRsharing.96xqbf", "name": "PTMcode", "status": "ready", "contacts": [{"contact-name": "Pablo Minguez", "contact-email": "pablominguez@gmail.com", "contact-orcid": "0000-0003-4099-9421"}], "homepage": "http://ptmcode.embl.de", "identifier": 1704, "description": "PTMCode is a resource of known and predicted functional associations between protein post-translational modifications (PTMs) within and between interacting proteins.", "abbreviation": "PTMcode", "support-links": [{"url": "letunic@biobyte.de", "type": "Support email"}, {"url": "http://ptmcode.embl.de/help.cgi", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"name": "http://ptmcode.embl.de/help.cgi", "type": "data curation"}, {"url": "http://ptmcode.embl.de/data.cgi", "name": "download", "type": "data access"}, {"url": "http://ptmcode.embl.de/version1/", "name": "PTMcode V1", "type": "data versioning"}]}, "legacy-ids": ["biodbcore-000161", "bsg-d000161"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Post-translational protein modification", "Functional association"], "taxonomies": ["Aedes aegypti", "Anopheles gambiae", "Arabidopsis thaliana", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Drosophila melanogaster", "Felis catus", "Gallus gallus", "Homo sapiens", "Macaca mulatta", "Monodelphis domestica", "Mus musculus", "Pan troglodytes", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Xenopus tropicalis"], "user-defined-tags": ["Functional associations between PTMs"], "countries": ["Germany"], "name": "FAIRsharing record for: PTMcode", "abbreviation": "PTMcode", "url": "https://fairsharing.org/10.25504/FAIRsharing.96xqbf", "doi": "10.25504/FAIRsharing.96xqbf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PTMCode is a resource of known and predicted functional associations between protein post-translational modifications (PTMs) within and between interacting proteins.", "publications": [{"id": 695, "pubmed_id": 25361965, "title": "PTMcode v2: a resource for functional associations of post- translational modifications within and between proteins.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1081", "authors": "Pablo Minguez, Ivica Letunic, Luca Parca, Luz Garcia-Alonso, Joaquin Dopazo, Jaime Huerta-Cepas and Peer Bork", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku1081", "created_at": "2021-09-30T08:23:36.595Z", "updated_at": "2021-09-30T08:23:36.595Z"}, {"id": 1925, "pubmed_id": 23193284, "title": "PTMcode: a database of known and predicted functional associations between post-translational modifications in proteins.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1230", "authors": "Minguez P., Letunic I., Parca L., Bork P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1230", "created_at": "2021-09-30T08:25:56.631Z", "updated_at": "2021-09-30T08:25:56.631Z"}, {"id": 1926, "pubmed_id": 22806145, "title": "Deciphering a global network of functionally associated post-translational modifications.", "year": 2012, "url": "http://doi.org/10.1038/msb.2012.31", "authors": "Minguez P., Parca L., Diella F., Mende DR., Kumar R., Helmer-Citterich M., Gavin AC., van Noort V., Bork P.,", "journal": "Mol. Syst. Biol.", "doi": "10.1038/msb.2012.31", "created_at": "2021-09-30T08:25:56.739Z", "updated_at": "2021-09-30T08:25:56.739Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 167, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2056", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:21.348Z", "metadata": {"doi": "10.25504/FAIRsharing.ty3dqs", "name": "Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "feedback@pantherdb.org"}], "homepage": "http://www.pantherdb.org", "citations": [{"doi": "10.1093/nar/gkw1138", "pubmed-id": 27899595, "publication-id": 1024}], "identifier": 2056, "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a unique resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence.", "abbreviation": "PANTHER", "support-links": [{"url": "http://www.pantherdb.org/feedback.jsp", "type": "Contact form"}, {"url": "http://www.pantherdb.org/help/PANTHERhelp.jsp", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://www.pantherdb.org/downloads/index.jsp", "name": "Download", "type": "data access"}, {"url": "http://www.pantherdb.org/data/", "name": "Browse", "type": "data access"}, {"url": "http://www.pantherdb.org/tools/hmmScoreForm.jsp", "name": "Panther scoring", "type": "data access"}, {"url": "http://www.pantherdb.org/", "name": "Gene List Analysis", "type": "data access"}, {"url": "http://www.pantherdb.org/tools/csnpScoreForm.jsp", "name": "Evolutionary analysis of coding SNPs", "type": "data access"}], "associated-tools": [{"url": "http://www.pantherdb.org/tools/hmmScoreForm.jsp?", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000523", "bsg-d000523"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence similarity", "Evidence", "Function analysis", "Evolution", "Classification", "Protein", "Pathway model", "Gene", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": ["Evolutionary relationship between proteins via sequence similarity"], "countries": ["United States"], "name": "FAIRsharing record for: Protein ANalysis THrough Evolutionary Relationships: Classification of Genes and Proteins", "abbreviation": "PANTHER", "url": "https://fairsharing.org/10.25504/FAIRsharing.ty3dqs", "doi": "10.25504/FAIRsharing.ty3dqs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a unique resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence.", "publications": [{"id": 487, "pubmed_id": 12952881, "title": "PANTHER: a library of protein families and subfamilies indexed by function.", "year": 2003, "url": "http://doi.org/10.1101/gr.772403", "authors": "Thomas PD., Campbell MJ., Kejariwal A., Mi H., Karlak B., Daverman R., Diemer K., Muruganujan A., Narechania A.,", "journal": "Genome Res.", "doi": "10.1101/gr.772403", "created_at": "2021-09-30T08:23:12.969Z", "updated_at": "2021-09-30T08:23:12.969Z"}, {"id": 1024, "pubmed_id": 27899595, "title": "PANTHER version 11: expanded annotation data from Gene Ontology and Reactome pathways, and data analysis tool enhancements.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1138", "authors": "Mi H,Huang X,Muruganujan A,Tang H,Mills C,Kang D,Thomas PD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1138", "created_at": "2021-09-30T08:24:13.386Z", "updated_at": "2021-09-30T11:28:56.992Z"}, {"id": 1028, "pubmed_id": 23868073, "title": "Large-scale gene function analysis with the PANTHER classification system.", "year": 2013, "url": "http://doi.org/10.1038/nprot.2013.092", "authors": "Mi H,Muruganujan A,Casagrande JT,Thomas PD", "journal": "Nat Protoc", "doi": "10.1038/nprot.2013.092", "created_at": "2021-09-30T08:24:13.815Z", "updated_at": "2021-09-30T08:24:13.815Z"}, {"id": 1029, "pubmed_id": 27193693, "title": "PANTHER-PSEP: predicting disease-causing genetic variants using position-specific evolutionary preservation.", "year": 2016, "url": "http://doi.org/10.1093/bioinformatics/btw222", "authors": "Tang H,Thomas PD", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btw222", "created_at": "2021-09-30T08:24:13.924Z", "updated_at": "2021-09-30T08:24:13.924Z"}, {"id": 1047, "pubmed_id": 19597783, "title": "PANTHER pathway: an ontology-based pathway database coupled with data analysis tools.", "year": 2009, "url": "http://doi.org/10.1007/978-1-60761-175-2_7", "authors": "Mi H,Thomas P", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-60761-175-2_7", "created_at": "2021-09-30T08:24:15.897Z", "updated_at": "2021-09-30T08:24:15.897Z"}], "licence-links": [{"licence-name": "Panther DB Data Policies and Disclaimer", "licence-id": 648, "link-id": 404, "relation": "undefined"}, {"licence-name": "Panther Website Privacy Policy", "licence-id": 649, "link-id": 406, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2694", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-31T21:47:15.000Z", "updated-at": "2021-11-24T13:13:32.870Z", "metadata": {"name": "CHD7 Database", "status": "ready", "contacts": [{"contact-name": "Nicole Corsten-Janssen", "contact-email": "charge@umcg.nl", "contact-orcid": "0000-0002-9438-2374"}], "homepage": "https://www.chd7.org/", "identifier": 2694, "description": "The CHD7 database contains locus-specific, anonymised mutation data on both published and unpublished variants of the CHD7 gene related to the CHARGE syndrome phenotype. It can be searched for patients and their clinical phenotype or for mutations. It can be used as a central, quick reference database for anyone who encounters a variant in the CHD7 gene. Mutations are numbered according to the current reference sequence (GenBank Accession no. NM017780.2).", "abbreviation": "CHD7 Database", "support-links": [{"url": "https://www.chd7.org/menu/main/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.chd7.org/menu/main/background", "name": "Background", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://www.chd7.org/menu/main/dataexplorer?entity=Patients&hideselect=true", "name": "Patient browse & search", "type": "data access"}, {"url": "https://www.chd7.org/menu/main/dataexplorer?entity=Mutations&hideselect=true", "name": "Mutation browse & search", "type": "data access"}, {"url": "https://www.chd7.org/menu/main/dataexplorer?entity=Publications&hideselect=true", "name": "Reference browse & search", "type": "data access"}, {"url": "https://www.chd7.org/menu/main/background", "name": "Submission Information", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001191", "bsg-d001191"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Genetics", "Biomedical Science", "Biology"], "domains": ["Expression data", "Mutation", "Phenotype", "Disease phenotype", "Gene", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Researcher data"], "countries": ["Netherlands"], "name": "FAIRsharing record for: CHD7 Database", "abbreviation": "CHD7 Database", "url": "https://fairsharing.org/fairsharing_records/2694", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CHD7 database contains locus-specific, anonymised mutation data on both published and unpublished variants of the CHD7 gene related to the CHARGE syndrome phenotype. It can be searched for patients and their clinical phenotype or for mutations. It can be used as a central, quick reference database for anyone who encounters a variant in the CHD7 gene. Mutations are numbered according to the current reference sequence (GenBank Accession no. NM017780.2).", "publications": [{"id": 1717, "pubmed_id": 22461308, "title": "Mutation update on the CHD7 gene involved in CHARGE syndrome.", "year": 2012, "url": "http://doi.org/10.1002/humu.22086", "authors": "Janssen N,Bergman JE,Swertz MA,Tranebjaerg L,Lodahl M,Schoots J,Hofstra RM,van Ravenswaaij-Arts CM,Hoefsloot LH", "journal": "Hum Mutat", "doi": "10.1002/humu.22086", "created_at": "2021-09-30T08:25:32.371Z", "updated_at": "2021-09-30T08:25:32.371Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2279", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-13T15:36:03.000Z", "updated-at": "2021-11-24T13:20:13.288Z", "metadata": {"doi": "10.25504/FAIRsharing.95wk6e", "name": "Type 2 Diabetes Knowledge Portal", "status": "ready", "contacts": [{"contact-name": "Maria Costanzo", "contact-email": "mariacos@broadinstitute.org", "contact-orcid": "0000-0001-9043-693X"}], "homepage": "http://www.type2diabetesgenetics.org/", "identifier": 2279, "description": "The Type 2 Diabetes Knowledge Portal is an open-access resource for human genetic information on type 2 diabetes (T2D). It is a central repository for data from large genomic studies that identify DNA variants whose presence is linked to altered risk of having T2D or related traits such as high body mass index. Pinpointing these DNA variants, and the genes they affect, will spur novel insights about how T2D develops and suggest new potential targets for drugs or other therapies to treat T2D.", "abbreviation": "T2D KP", "support-links": [{"url": "help@type2diabetesgenetics.org", "type": "Support email"}], "year-creation": 2015}, "legacy-ids": ["biodbcore-000753", "bsg-d000753"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Genetic polymorphism", "Disease", "Single nucleotide polymorphism", "Genome-wide association study", "Diabetes mellitus"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Type 2 Diabetes Knowledge Portal", "abbreviation": "T2D KP", "url": "https://fairsharing.org/10.25504/FAIRsharing.95wk6e", "doi": "10.25504/FAIRsharing.95wk6e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Type 2 Diabetes Knowledge Portal is an open-access resource for human genetic information on type 2 diabetes (T2D). It is a central repository for data from large genomic studies that identify DNA variants whose presence is linked to altered risk of having T2D or related traits such as high body mass index. Pinpointing these DNA variants, and the genes they affect, will spur novel insights about how T2D develops and suggest new potential targets for drugs or other therapies to treat T2D.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2585", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T03:58:57.000Z", "updated-at": "2021-12-06T10:48:41.449Z", "metadata": {"doi": "10.25504/FAIRsharing.HO0DyR", "name": "Animal Quantitative Trait Loci (QTL) Database", "status": "ready", "contacts": [{"contact-name": "Zhiliang Hu", "contact-email": "zhu@iastate.edu", "contact-orcid": "0000-0002-6704-7538"}], "homepage": "https://www.animalgenome.org/cgi-bin/QTLdb/index", "citations": [], "identifier": 2585, "description": "The Animal Quantitative Trait Loci (QTL) Database (Animal QTLdb) strives to collect all publicly available trait mapping data, i.e. QTL (phenotype/expression, eQTL), candidate gene and association data (GWAS), and copy number variations (CNV) mapped to livestock animal genomes, in order to facilitate locating and comparing discoveries within and between species. New data and database tools are continually developed to align various trait mapping data to map-based genome features such as annotated genes.", "abbreviation": "Animal QTLdb", "access-points": [{"url": "https://www.animalgenome.org/QTLdb/API/", "name": "The Application Program Interface (API) provides a portal for programmable access to the Animal QTLdb contents.", "type": "REST"}], "support-links": [{"url": "https://www.animalgenome.org/helpdesk?subj=QTLdb", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.animalgenome.org/QTLdb/faq", "name": "FAQ: An User Guide to the QTLdb", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.animalgenome.org/QTLdb/doc/videotut", "name": "Video Tutorials", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://www.animalgenome.org/QTLdb/doc/download", "name": "Data Download", "type": "data access"}, {"url": "https://www.animalgenome.org/QTLdb/doc/batchdata", "name": "Batch Data Submission", "type": "data curation"}], "associated-tools": [{"url": "https://www.animalgenome.org/gbrowse", "name": "GBrowse"}, {"url": "https://www.animalgenome.org/jbrowse", "name": "JBrowse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010744", "name": "re3data:r3d100010744", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001748", "name": "SciCrunch:RRID:SCR_001748", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001068", "bsg-d001068"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics", "Genomics", "Genetics", "Life Science"], "domains": ["Expression data", "Phenotype", "Quantitative trait loci", "Genome-wide association study", "Copy number variation"], "taxonomies": ["Bos taurus", "Equus caballus", "Gallus gallus", "Oncorhynchus mykiss", "Ovis aries", "Sus scrofa"], "user-defined-tags": ["Livestock"], "countries": ["United States"], "name": "FAIRsharing record for: Animal Quantitative Trait Loci (QTL) Database", "abbreviation": "Animal QTLdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.HO0DyR", "doi": "10.25504/FAIRsharing.HO0DyR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Animal Quantitative Trait Loci (QTL) Database (Animal QTLdb) strives to collect all publicly available trait mapping data, i.e. QTL (phenotype/expression, eQTL), candidate gene and association data (GWAS), and copy number variations (CNV) mapped to livestock animal genomes, in order to facilitate locating and comparing discoveries within and between species. New data and database tools are continually developed to align various trait mapping data to map-based genome features such as annotated genes.", "publications": [{"id": 2070, "pubmed_id": 26602686, "title": "Developmental progress and current status of the Animal QTLdb", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1233", "authors": "Zhi-Liang Hu, Carissa A. Park, James M. Reecy", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1233", "created_at": "2021-09-30T08:26:13.308Z", "updated_at": "2021-09-30T08:26:13.308Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1739", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-07T20:53:46.656Z", "metadata": {"doi": "10.25504/FAIRsharing.zzgvrv", "name": "RNAJunction", "status": "ready", "contacts": [{"contact-name": "Bruce Shapiro", "contact-email": "bshapiro@ncifcrf.gov"}, {"contact-name": "Voytek Kasprzak", "contact-email": "kasprzaw@mail.nih.gov", "contact-orcid": null}], "homepage": "https://rnajunction.ncifcrf.gov/", "citations": [], "identifier": 1739, "description": "RNAJunction is a database of RNA junctions and kissing loop structures. It contains structure and sequence information for RNA structural elements such as helical junctions, internal loops, bulges and loop\u2013loop interactions. It allows searching by PDB code, structural classification, sequence, keyword or inter-helix angles. RNAJunction is designed to aid analysis of RNA structures as well as design of novel RNA structures on a nanoscale. ", "abbreviation": "RNAJunction", "data-curation": {}, "support-links": [{"url": "https://rnajunction.ncifcrf.gov/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://rnajunction.ncifcrf.gov/help.php", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "https://rnajunction.ncifcrf.gov/browse.php", "name": "Browse", "type": "data access"}, {"url": "https://rnajunction.ncifcrf.gov/search.php", "name": "Search", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000197", "bsg-d000197"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology"], "domains": ["Ribonucleic acid", "Structure", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: RNAJunction", "abbreviation": "RNAJunction", "url": "https://fairsharing.org/10.25504/FAIRsharing.zzgvrv", "doi": "10.25504/FAIRsharing.zzgvrv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RNAJunction is a database of RNA junctions and kissing loop structures. It contains structure and sequence information for RNA structural elements such as helical junctions, internal loops, bulges and loop\u2013loop interactions. It allows searching by PDB code, structural classification, sequence, keyword or inter-helix angles. RNAJunction is designed to aid analysis of RNA structures as well as design of novel RNA structures on a nanoscale. ", "publications": [{"id": 299, "pubmed_id": 17947325, "title": "RNAJunction: a database of RNA junctions and kissing loops for three-dimensional structural analysis and nanodesign.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm842", "authors": "Bindewald E., Hayes R., Yingling YG., Kasprzak W., Shapiro BA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm842", "created_at": "2021-09-30T08:22:52.216Z", "updated_at": "2021-09-30T08:22:52.216Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2177", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:28.270Z", "metadata": {"doi": "10.25504/FAIRsharing.pxnqyt", "name": "RepeatsDB", "status": "ready", "contacts": [{"contact-name": "Silvio C.E. Tosatto", "contact-email": "silvio.tosatto@unipd.it", "contact-orcid": "0000-0003-4525-7793"}], "homepage": "http://repeatsdb.bio.unipd.it/", "identifier": 2177, "description": "RepeatsDB (http://repeatsdb.bio.unipd.it/) is a database of annotated tandem repeat protein structures. Tandem repeats pose a difficult problem for the analysis of protein structures, as the underlying sequence can be highly degenerate. Several repeat types haven been studied over the years, but their annotation was done in a case-by-case basis, thus making large-scale analysis difficult. We developed RepeatsDB to fill this gap. Using state-of-the-art repeat detection methods and manual curation, we systematically annotated the Protein Data Bank, predicting 10 745 repeat structures. In all, 2797 structures were classified according to a recently proposed classification schema, which was expanded to accommodate new findings. In addition, detailed annotations were performed in a subset of 321 proteins. These annotations feature information on start and end positions for the repeat regions and units. RepeatsDB is an ongoing effort to systematically classify and annotate structural protein repeats in a consistent way. It provides users with the possibility to access and download high-quality datasets either interactively or programmatically through web services.", "abbreviation": "RepeatsDB", "access-points": [{"url": "http://repeatsdb.bio.unipd.it/help#access", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://repeatsdb.bio.unipd.it/contact", "type": "Contact form"}, {"url": "biocomp@bio.unipd.it", "type": "Support email"}, {"url": "http://repeatsdb.bio.unipd.it/help", "type": "Help documentation"}, {"url": "http://repeatsdb.bio.unipd.it/help", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"name": "manual and automated curation", "type": "data curation"}, {"name": "Annual release", "type": "data release"}, {"url": "http://repeatsdb.bio.unipd.it/browse", "name": "Browse", "type": "data access"}, {"url": "http://repeatsdb.bio.unipd.it/advanced", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000650", "bsg-d000650"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein", "Tandem repeat"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: RepeatsDB", "abbreviation": "RepeatsDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pxnqyt", "doi": "10.25504/FAIRsharing.pxnqyt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RepeatsDB (http://repeatsdb.bio.unipd.it/) is a database of annotated tandem repeat protein structures. Tandem repeats pose a difficult problem for the analysis of protein structures, as the underlying sequence can be highly degenerate. Several repeat types haven been studied over the years, but their annotation was done in a case-by-case basis, thus making large-scale analysis difficult. We developed RepeatsDB to fill this gap. Using state-of-the-art repeat detection methods and manual curation, we systematically annotated the Protein Data Bank, predicting 10 745 repeat structures. In all, 2797 structures were classified according to a recently proposed classification schema, which was expanded to accommodate new findings. In addition, detailed annotations were performed in a subset of 321 proteins. These annotations feature information on start and end positions for the repeat regions and units. RepeatsDB is an ongoing effort to systematically classify and annotate structural protein repeats in a consistent way. It provides users with the possibility to access and download high-quality datasets either interactively or programmatically through web services.", "publications": [{"id": 686, "pubmed_id": 24311564, "title": "RepeatsDB: a database of tandem repeat protein structures", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1175", "authors": "Di Domenico T, Potenza E, Walsh I, Parra RG, Giollo M, Minervini G, Piovesan D, Ihsan A, Ferrari C, Kajava AV, Tosatto SC.", "journal": "Nucleic Acids Research", "doi": "doi:10.1093/nar/gkt1175", "created_at": "2021-09-30T08:23:35.611Z", "updated_at": "2021-09-30T08:23:35.611Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 852, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2173", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.929Z", "metadata": {"doi": "10.25504/FAIRsharing.f5b5j1", "name": "KnotProt: A database of proteins with knots and slipknots", "status": "ready", "contacts": [{"contact-name": "Michal Jamroz", "contact-email": "jamroz@chem.uw.edu.pl", "contact-orcid": "0000-0002-7255-6476"}], "homepage": "http://knotprot.cent.uw.edu.pl/", "identifier": 2173, "description": "KnotProt collects information about proteins with knots or slipknots. The knotting complexity of proteins is presented in the form of a matrix diagram that shows users the knot type of the entire polypeptide chain and of each of its subchains. The database presents extensive information about the biological function of proteins with non-trivial knotting and enables users to analyze new structures.", "abbreviation": "KnotProt", "support-links": [{"url": "jsulkowska@cent.uw.edu.p", "type": "Support email"}, {"url": "http://knotprot.cent.uw.edu.pl/learn_more", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://knotprot.cent.uw.edu.pl/submit", "name": "submit", "type": "data curation"}, {"url": "http://knotprot.cent.uw.edu.pl/search/", "name": "search", "type": "data access"}, {"url": "http://knotprot.cent.uw.edu.pl/browse/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000645", "bsg-d000645"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Poland", "United States", "Switzerland"], "name": "FAIRsharing record for: KnotProt: A database of proteins with knots and slipknots", "abbreviation": "KnotProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.f5b5j1", "doi": "10.25504/FAIRsharing.f5b5j1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KnotProt collects information about proteins with knots or slipknots. The knotting complexity of proteins is presented in the form of a matrix diagram that shows users the knot type of the entire polypeptide chain and of each of its subchains. The database presents extensive information about the biological function of proteins with non-trivial knotting and enables users to analyze new structures.", "publications": [{"id": 684, "pubmed_id": 22685208, "title": "Conservation of complex knotting and slipknotting patterns in proteins", "year": 2012, "url": "http://doi.org/10.1073/pnas.1205918109", "authors": "Sulkowska JI, Rawdon EJ, Millett KC, Onuchic JN and Stasiak A", "journal": "Proc. Natl. Acad. Sci. U.S.A", "doi": "10.1073/pnas.1205918109", "created_at": "2021-09-30T08:23:35.404Z", "updated_at": "2021-09-30T08:23:35.404Z"}, {"id": 687, "pubmed_id": null, "title": "KnotProt: a database of proteins with knots and slipknots", "year": 2014, "url": "https://doi.org/10.1093/nar/gku1059", "authors": "Jamroz M, Niemyska W, Rawdon EJ, Stasiak A, Millett KC, Su\u0142kowski P, Sulkowska JI", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:23:35.727Z", "updated_at": "2021-09-30T11:28:30.338Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1645", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:57.021Z", "metadata": {"doi": "10.25504/FAIRsharing.hsbpq3", "name": "Simple Modular Architecture Research Tool", "status": "ready", "contacts": [{"contact-name": "SMART Helpdesk", "contact-email": "smart@embl.de"}], "homepage": "http://smart.embl.de", "identifier": 1645, "description": "SMART (Simple Modular Architecture Research Tool) is a web resource providing simple identification and extensive annotation of protein domains and the exploration of protein domain architectures. It allows the identification and annotation of genetically mobile domains and the analysis of domain architectures. More than 500 domain families found in signalling, extracellular and chromatin-associated proteins are detectable. These domains are extensively annotated with respect to phyletic distributions, functional class, tertiary structures and functionally important residues. Each domain found in a non-redundant protein database as well as search parameters and taxonomic information are stored in a relational database system. User interfaces to this database allow searches for proteins containing specific combinations of domains in defined taxa.", "abbreviation": "SMART", "support-links": [{"url": "http://smart.embl.de/help/feedback.shtml", "name": "Contact Form", "type": "Contact form"}, {"url": "http://smart.embl.de/help/FAQ.shtml", "name": "SMART FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://smart.embl.de/help/smart_glossary.shtml", "name": "Glossary", "type": "Help documentation"}, {"url": "http://smart.embl.de/help/smart_about.shtml", "name": "About SMART", "type": "Help documentation"}, {"url": "http://smart.embl.de/help/latest.shtml", "name": "What's New", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://smart.embl.de/smart/set_mode.cgi?GENOMIC=1", "name": "GENOMIC search mode", "type": "data access"}, {"url": "http://smart.embl.de/smart/set_mode.cgi?NORMAL=1", "name": "NORMAL search mode", "type": "data access"}], "associated-tools": [{"url": "http://smart.embl.de/smart/batch.pl", "name": "Batch Access Script (Perl)"}]}, "legacy-ids": ["biodbcore-000101", "bsg-d000101"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Hidden Markov model", "Protein domain", "Multiple sequence alignment", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Simple Modular Architecture Research Tool", "abbreviation": "SMART", "url": "https://fairsharing.org/10.25504/FAIRsharing.hsbpq3", "doi": "10.25504/FAIRsharing.hsbpq3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SMART (Simple Modular Architecture Research Tool) is a web resource providing simple identification and extensive annotation of protein domains and the exploration of protein domain architectures. It allows the identification and annotation of genetically mobile domains and the analysis of domain architectures. More than 500 domain families found in signalling, extracellular and chromatin-associated proteins are detectable. These domains are extensively annotated with respect to phyletic distributions, functional class, tertiary structures and functionally important residues. Each domain found in a non-redundant protein database as well as search parameters and taxonomic information are stored in a relational database system. User interfaces to this database allow searches for proteins containing specific combinations of domains in defined taxa.", "publications": [{"id": 1097, "pubmed_id": 22053084, "title": "SMART 7: recent updates to the protein domain annotation resource.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr931", "authors": "Letunic I,Doerks T,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr931", "created_at": "2021-09-30T08:24:21.457Z", "updated_at": "2021-09-30T11:28:58.485Z"}, {"id": 1876, "pubmed_id": 10361098, "title": "Protein families in multicellular organisms.", "year": 1999, "url": "http://doi.org/10.1016/S0959-440X(99)80055-4", "authors": "Copley RR,Schultz J,Ponting CP,Bork P", "journal": "Curr Opin Struct Biol", "doi": "10.1016/S0959-440X(99)80055-4", "created_at": "2021-09-30T08:25:51.023Z", "updated_at": "2021-09-30T08:25:51.023Z"}, {"id": 1893, "pubmed_id": 18978020, "title": "SMART 6: recent updates and new developments.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn808", "authors": "Letunic I,Doerks T,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn808", "created_at": "2021-09-30T08:25:52.952Z", "updated_at": "2021-09-30T11:29:22.152Z"}, {"id": 1900, "pubmed_id": 16381859, "title": "SMART 5: domains in the context of genomes and networks.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj079", "authors": "Letunic I,Copley RR,Pils B,Pinkert S,Schultz J,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj079", "created_at": "2021-09-30T08:25:53.695Z", "updated_at": "2021-09-30T11:29:22.544Z"}, {"id": 1901, "pubmed_id": 14681379, "title": "SMART 4.0: towards genomic data integration.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh088", "authors": "Letunic I,Copley RR,Schmidt S,Ciccarelli FD,Doerks T,Schultz J,Ponting CP,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh088", "created_at": "2021-09-30T08:25:53.794Z", "updated_at": "2021-09-30T11:29:22.635Z"}, {"id": 1902, "pubmed_id": 10592234, "title": "SMART: a web-based tool for the study of genetically mobile domains.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.231", "authors": "Schultz J,Copley RR,Doerks T,Ponting CP,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.231", "created_at": "2021-09-30T08:25:53.893Z", "updated_at": "2021-09-30T11:29:22.737Z"}, {"id": 1903, "pubmed_id": 9847187, "title": "SMART: identification and annotation of domains from signalling and extracellular protein sequences.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.229", "authors": "Ponting CP,Schultz J,Milpetz F,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/27.1.229", "created_at": "2021-09-30T08:25:53.993Z", "updated_at": "2021-09-30T11:29:22.853Z"}, {"id": 1904, "pubmed_id": 11752305, "title": "Recent improvements to the SMART domain-based sequence annotation resource.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.242", "authors": "Letunic I,Goodstadt L,Dickens NJ,Doerks T,Schultz J,Mott R,Ciccarelli F,Copley RR,Ponting CP,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.242", "created_at": "2021-09-30T08:25:54.102Z", "updated_at": "2021-09-30T11:29:22.944Z"}, {"id": 2234, "pubmed_id": 29040681, "title": "20 years of the SMART protein domain annotation resource.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx922", "authors": "Letunic I,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx922", "created_at": "2021-09-30T08:26:31.755Z", "updated_at": "2021-09-30T11:29:31.379Z"}, {"id": 2261, "pubmed_id": 25300481, "title": "SMART: recent updates, new developments and status in 2015.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku949", "authors": "Letunic I,Doerks T,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku949", "created_at": "2021-09-30T08:26:35.056Z", "updated_at": "2021-09-30T11:29:31.961Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 763, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3197", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-16T10:59:22.000Z", "updated-at": "2021-12-06T10:47:38.634Z", "metadata": {"name": "Environmental Data Explorer", "status": "ready", "contacts": [{"contact-name": "Stefan Schwarzer", "contact-email": "stefan.schwarzer@unep.org"}], "homepage": "http://geodata.grid.unep.ch/", "identifier": 3197, "description": "The Environmental Data Explorer is the authoritative source for data sets used by UNEP and its partners in the Global Environment Outlook (GEO) report and other integrated environment assessments. This database holds more than 500 different variables, as national, subregional, regional and global statistics or as geospatial data sets (maps), covering themes like Freshwater, Population, Forests, Emissions, Climate, Disasters, Health and GDP.", "support-links": [{"url": "http://ede.grid.unep.ch/help/", "name": "Online help", "type": "Help documentation"}], "year-creation": 2006, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010072", "name": "re3data:r3d100010072", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001708", "bsg-d001708"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Economics", "Environmental Science", "Health Science", "Global Health", "Human Geography", "Freshwater Science", "Physical Geography", "Ecosystem Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Environmental Data Explorer", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3197", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Environmental Data Explorer is the authoritative source for data sets used by UNEP and its partners in the Global Environment Outlook (GEO) report and other integrated environment assessments. This database holds more than 500 different variables, as national, subregional, regional and global statistics or as geospatial data sets (maps), covering themes like Freshwater, Population, Forests, Emissions, Climate, Disasters, Health and GDP.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2191", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-08T20:05:05.000Z", "updated-at": "2021-11-24T13:16:27.702Z", "metadata": {"doi": "10.25504/FAIRsharing.8a0a61", "name": "Fulgoromorpha Lists On the Web", "status": "ready", "contacts": [{"contact-name": "Thierry Bourgoin", "contact-email": "bourgoin@mnhn.fr", "contact-orcid": "0000-0001-9277-2478"}], "homepage": "http://www.hemiptera-databases.org/flow/", "identifier": 2191, "description": "Fulgoromorpha Lists On the Web (FLOW) is an online database that aims to provide an easy-access summary of available biological published primary data on planthoppers (Hemiptera, Fulgoromorpha), a group of major economic importance. It includes information on taxonomy, nomenclature, bibliography, distribution and various associated biological information on host-plants and parasites (including fossils).", "abbreviation": "FLOW", "support-links": [{"url": "http://www.hemiptera-databases.org/flow/?db=flow&page=project&lang=en", "type": "Help documentation"}, {"url": "https://twitter.com/FLOWwebsite", "type": "Twitter"}], "year-creation": 1996}, "legacy-ids": ["biodbcore-000665", "bsg-d000665"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biodiversity", "Life Science"], "domains": [], "taxonomies": ["Fulgoroidea", "Fulgoromorpha", "Hemiptera", "Insecta"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Fulgoromorpha Lists On the Web", "abbreviation": "FLOW", "url": "https://fairsharing.org/10.25504/FAIRsharing.8a0a61", "doi": "10.25504/FAIRsharing.8a0a61", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Fulgoromorpha Lists On the Web (FLOW) is an online database that aims to provide an easy-access summary of available biological published primary data on planthoppers (Hemiptera, Fulgoromorpha), a group of major economic importance. It includes information on taxonomy, nomenclature, bibliography, distribution and various associated biological information on host-plants and parasites (including fossils).", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1754", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.788Z", "metadata": {"doi": "10.25504/FAIRsharing.pcmg8s", "name": "Mammalian Protein Localization Database", "status": "deprecated", "contacts": [{"contact-name": "Rohan Teasdale", "contact-email": "r.teasdale@imb.uq.edu.au", "contact-orcid": "0000-0001-7455-5269"}], "homepage": "http://locate.imb.uq.edu.au/", "identifier": 1754, "description": "LOCATE is a curated database that houses data describing the membrane organization and subcellular localization of proteins from the RIKEN FANTOM4 mouse and human protein sequence set.", "abbreviation": "LOCATE", "support-links": [{"url": "http://locate.imb.uq.edu.au/faq.shtml", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2005, "data-processes": [{"url": "http://locate.imb.uq.edu.au/downloads.shtml", "name": "Download", "type": "data access"}, {"url": "http://locate.imb.uq.edu.au", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://locate.imb.uq.edu.au/advsearch.shtml", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000212", "bsg-d000212"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Curated information", "Protein"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Mammalian Protein Localization Database", "abbreviation": "LOCATE", "url": "https://fairsharing.org/10.25504/FAIRsharing.pcmg8s", "doi": "10.25504/FAIRsharing.pcmg8s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LOCATE is a curated database that houses data describing the membrane organization and subcellular localization of proteins from the RIKEN FANTOM4 mouse and human protein sequence set.", "publications": [{"id": 281, "pubmed_id": 17986452, "title": "LOCATE: a mammalian protein subcellular localization database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm950", "authors": "Sprenger J., Lynn Fink J., Karunaratne S., Hanson K., Hamilton NA., Teasdale RD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm950", "created_at": "2021-09-30T08:22:50.281Z", "updated_at": "2021-09-30T08:22:50.281Z"}, {"id": 282, "pubmed_id": 16381849, "title": "LOCATE: a mouse protein subcellular localization database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj069", "authors": "Fink JL., Aturaliya RN., Davis MJ., Zhang F., Hanson K., Teasdale MS., Kai C., Kawai J., Carninci P., Hayashizaki Y., Teasdale RD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj069", "created_at": "2021-09-30T08:22:50.416Z", "updated_at": "2021-09-30T08:22:50.416Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 187, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2582", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T21:17:06.000Z", "updated-at": "2021-11-24T13:17:07.452Z", "metadata": {"name": "Planosphere", "status": "ready", "contacts": [{"contact-name": "Planosphere Helpdesk", "contact-email": "planosphere@stowers.org"}], "homepage": "https://planosphere.stowers.org/", "identifier": 2582, "description": "Planosphere is a Schmidtea mediterranea (freshwater triclad) molecular staging resource and atlas used for comparative studies of embryogenesis and regeneration.", "abbreviation": "Planosphere", "support-links": [{"url": "https://planosphere.stowers.org/staging", "name": "Molecular Staging Resource", "type": "Help documentation"}, {"url": "https://planosphere.stowers.org/crashcourse", "name": "Planarian Embryogenesis Crash Course", "type": "Training documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://planosphere.stowers.org/find/genes", "name": "Gene Search", "type": "data access"}, {"url": "https://planosphere.stowers.org/blast", "name": "BLAST", "type": "data access"}, {"url": "https://planosphere.stowers.org/chado/analysis", "name": "Analysis Search", "type": "data access"}], "associated-tools": [{"url": "https://planosphere.stowers.org/search/rosetta-stone-transcript-mapper", "name": "Rosetta Stone Transcription Mapper"}, {"url": "https://planosphere.stowers.org/heatmap", "name": "Custom Heat Map Generator"}]}, "legacy-ids": ["biodbcore-001065", "bsg-d001065"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Developmental Biology", "Embryology", "Life Science"], "domains": ["Organelle", "Organ", "Tissue"], "taxonomies": ["Schmidtea mediterranea"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Planosphere", "abbreviation": "Planosphere", "url": "https://fairsharing.org/fairsharing_records/2582", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Planosphere is a Schmidtea mediterranea (freshwater triclad) molecular staging resource and atlas used for comparative studies of embryogenesis and regeneration.", "publications": [{"id": 1170, "pubmed_id": 28072387, "title": "Embryonic origin of adult stem cells required for tissue homeostasis and regeneration.", "year": 2017, "url": "http://doi.org/10.7554/eLife.21052", "authors": "Davies EL,Lei K,Seidel CW,Kroesen AE,McKinney SA,Guo L,Robb SM,Ross EJ,Gotting K,Alvarado AS", "journal": "Elife", "doi": "10.7554/eLife.21052", "created_at": "2021-09-30T08:24:30.018Z", "updated_at": "2021-09-30T08:24:30.018Z"}], "licence-links": [{"licence-name": "Stowers Institute Privacy Policy", "licence-id": 760, "link-id": 1723, "relation": "undefined"}, {"licence-name": "Stowers Institute Terms of Use", "licence-id": 761, "link-id": 1724, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1681", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:59.556Z", "metadata": {"doi": "10.25504/FAIRsharing.62evqh", "name": "neXtProt", "status": "ready", "contacts": [{"contact-name": "Monique Zahn", "contact-email": "monique.zahn@sib.swiss", "contact-orcid": "0000-0001-7961-6091"}], "homepage": "https://www.nextprot.org", "citations": [{"doi": "10.1093/nar/gkz995", "pubmed-id": 31724716, "publication-id": 2777}], "identifier": 1681, "description": "neXtProt is a comprehensive human-centric discovery platform, offering its users a seamless integration of and navigation through protein-related data.", "abbreviation": "neXtProt", "access-points": [{"url": "https://snorql.nextprot.org/", "name": "SPARQL endpoint", "type": "Other"}, {"url": "https://api.nextprot.org/", "name": "neXtProt REST API", "type": "REST"}], "support-links": [{"url": "support@nextprot.org", "type": "Support email"}, {"url": "https://www.nextprot.org/help/simple-search", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/a-critical-guide-to-the-nextprot-knowledgebase-querying-using-sparql", "name": "A Critical Guide to the neXtProt knowledgebase: querying using SPARQL", "type": "TeSS links to training materials"}, {"url": "https://en.wikipedia.org/wiki/NeXtProt", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"url": "ftp://ftp.nextprot.org/pub/current_release/xml/", "name": "Current release in XML format", "type": "data access"}, {"url": "ftp://ftp.nextprot.org/pub/current_release/", "name": "FTP site", "type": "data access"}, {"url": "ftp://ftp.nextprot.org/pub/current_release/peff/", "name": "Current release in PEFF format", "type": "data access"}, {"url": "ftp://ftp.nextprot.org/pub/current_release/rdf/", "name": "Current release in ttl format", "type": "data access"}, {"url": "https://www.nextprot.org/", "name": "Data release", "type": "data release"}], "associated-tools": [{"url": "https://search.nextprot.org/proteins/search?mode=advanced", "name": "Advanced search"}, {"url": "https://www.nextprot.org/tools/unicity-checker", "name": "Peptide Unicity checker"}, {"url": "https://www.nextprot.org/tools/protein-digestion", "name": "Protein digestion"}]}, "legacy-ids": ["biodbcore-000137", "bsg-d000137"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Sequence annotation", "Genetic polymorphism", "Protein expression", "Curated information", "Sequence variant", "Tissue"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Functional impact of genetic variants"], "countries": ["Switzerland"], "name": "FAIRsharing record for: neXtProt", "abbreviation": "neXtProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.62evqh", "doi": "10.25504/FAIRsharing.62evqh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: neXtProt is a comprehensive human-centric discovery platform, offering its users a seamless integration of and navigation through protein-related data.", "publications": [{"id": 178, "pubmed_id": 22139911, "title": "neXtProt: a knowledge platform for human proteins.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1179", "authors": "Lane L., Argoud-Puy G., Britan A., Cusin I., Duek PD., Evalet O., Gateau A., Gaudet P., Gleizes A., Masselot A., Zwahlen C., Bairoch A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1179", "created_at": "2021-09-30T08:22:39.489Z", "updated_at": "2021-09-30T08:22:39.489Z"}, {"id": 1783, "pubmed_id": 25593349, "title": "The neXtProt knowledgebase on human proteins: current status.", "year": 2015, "url": "http://doi.org/10.1093/nar/gku1178", "authors": "Gaudet P, Michel PA, Zahn-Zabal M, Cusin I, Duek PD, Evalet O, Gateau A, Gleizes A, Pereira M, Teixeira D, Zhang Y, Lane L, Bairoch A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku1178.", "created_at": "2021-09-30T08:25:40.105Z", "updated_at": "2021-09-30T08:25:40.105Z"}, {"id": 2050, "pubmed_id": 27899619, "title": "The neXtProt knowledgebase on human proteins: 2017 update.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1062", "authors": "Gaudet P, Michel PA, Zahn-Zabal M, Britan A, Cusin I, Domagalski M, Duek PD, Gateau A, Gleizes A, Hinard V, Rech de Laval V, Lin J, Nikitin F, Schaeffer M, Teixeira D, Lane L, Bairoch A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkw1062.", "created_at": "2021-09-30T08:26:10.975Z", "updated_at": "2021-09-30T08:26:10.975Z"}, {"id": 2776, "pubmed_id": 23205526, "title": "neXtProt: organizing protein knowledge in the context of human proteome projects.", "year": 2012, "url": "http://doi.org/10.1021/pr300830v", "authors": "Gaudet P, Argoud-Puy G, Cusin I, Duek P, Evalet O, Gateau A, Gleizes A, Pereira M, Zahn-Zabal M, Zwahlen C, Bairoch A, Lane L.", "journal": "J Proteome Res", "doi": "10.1021/pr300830v.", "created_at": "2021-09-30T08:27:41.284Z", "updated_at": "2021-09-30T08:27:41.284Z"}, {"id": 2777, "pubmed_id": 31724716, "title": "The neXtProt knowledgebase in 2020: data, tools and usability improvements.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz995", "authors": "Zahn-Zabal M,Michel PA,Gateau A,Nikitin F,Schaeffer M,Audot E,Gaudet P,Duek PD,Teixeira D,Rech de Laval V,Samarasinghe K,Bairoch A,Lane L", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz995", "created_at": "2021-09-30T08:27:41.404Z", "updated_at": "2021-09-30T11:29:44.003Z"}], "licence-links": [{"licence-name": "NextProt Data Policies and Disclaimer", "licence-id": 574, "link-id": 165, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2299", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-19T08:21:24.000Z", "updated-at": "2021-11-24T13:13:32.295Z", "metadata": {"doi": "10.25504/FAIRsharing.tje0nv", "name": "The ITHANET Portal", "status": "ready", "contacts": [{"contact-name": "Petros Kountouris", "contact-email": "petrosk@cing.ac.cy", "contact-orcid": "0000-0003-2681-4355"}], "homepage": "http://www.ithanet.eu", "identifier": 2299, "description": "The ITHANET Portal represents an expanding resource for clinicians and researchers dealing with haemoglobinopathies and a port of call for patients in search of professional advice. The ITHANET Portal integrates information on news, events, clinical trials and thalassaemia-related organisations, research projects and other scientific networks, wiki-based content of protocols, clinical guidelines and educational articles. Most importantly, disease-specific databases are developed and maintained on the ITHANET Portal, such as databases of haemoglobin variations (IthaGenes), epidemiology (IthaMaps) and HbF inducers (IthaDrugs).", "abbreviation": "ITHANET", "support-links": [{"url": "http://www.ithanet.eu/about-us/contact-us", "type": "Contact form"}, {"url": "http://www.ithanet.eu/about-us/f-a-q", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ithanet.eu/ithapedia/index.php/Main_Page", "type": "Help documentation"}, {"url": "https://twitter.com/ithanet_portal", "type": "Twitter"}], "year-creation": 2006}, "legacy-ids": ["biodbcore-000773", "bsg-d000773"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["DNA structural variation", "Biomarker", "Mutation", "Genetic polymorphism", "Disease phenotype", "Disease", "Allele", "Genetic disorder", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Cyprus"], "name": "FAIRsharing record for: The ITHANET Portal", "abbreviation": "ITHANET", "url": "https://fairsharing.org/10.25504/FAIRsharing.tje0nv", "doi": "10.25504/FAIRsharing.tje0nv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ITHANET Portal represents an expanding resource for clinicians and researchers dealing with haemoglobinopathies and a port of call for patients in search of professional advice. The ITHANET Portal integrates information on news, events, clinical trials and thalassaemia-related organisations, research projects and other scientific networks, wiki-based content of protocols, clinical guidelines and educational articles. Most importantly, disease-specific databases are developed and maintained on the ITHANET Portal, such as databases of haemoglobin variations (IthaGenes), epidemiology (IthaMaps) and HbF inducers (IthaDrugs).", "publications": [{"id": 1154, "pubmed_id": 25058394, "title": "IthaGenes: an interactive database for haemoglobin variations and epidemiology.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0103020", "authors": "Kountouris P, Lederer CW, Fanis P, Feleki X, Old J, Kleanthous M", "journal": "PLoS One", "doi": "10.1371/journal.pone.0103020", "created_at": "2021-09-30T08:24:28.341Z", "updated_at": "2021-09-30T08:24:28.341Z"}, {"id": 1155, "pubmed_id": 19657830, "title": "An electronic infrastructure for research and treatment of the thalassemias and other hemoglobinopathies: the Euro-mediterranean ITHANET project.", "year": 2009, "url": "http://doi.org/10.1080/03630260903089177", "authors": "Lederer CW, Basak AN, Aydinok Y, Christou S, El-Beshlawy A, Eleftheriou A, Fattoum S, Felice AE, Fibach E, Galanello R, Gambari R, Gavrila L, Giordano PC, Grosveld F, Hassapopoulou H, Hladka E, Kanavakis E, Locatelli F, Old J, Patrinos GP, Romeo G, Taher A, Traeger-Synodinos J, Vassiliou P, Villegas A, Voskaridou E, Wajcman H, Zafeiropoulos A, Kleanthous M", "journal": "Hemoglobin", "doi": "10.1080/03630260903089177", "created_at": "2021-09-30T08:24:28.449Z", "updated_at": "2021-09-30T08:24:28.449Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3194", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-15T18:40:11.000Z", "updated-at": "2021-11-24T13:14:58.605Z", "metadata": {"doi": "10.25504/FAIRsharing.Q7gFA9", "name": "MitImpact", "status": "ready", "contacts": [{"contact-name": "Tommaso Mazza", "contact-email": "t.mazza@css-mendel.it", "contact-orcid": "0000-0003-0434-8533"}], "homepage": "https://mitimpact.css-mendel.it/", "citations": [{"doi": "10.1371/journal.pcbi.1005628", "pubmed-id": 28640805, "publication-id": 3056}], "identifier": 3194, "description": "MitImpact is a collection of genomic, clinical, and functional annotations for all nucleotide changes that cause non-synonymous substitutions in human mitochondrial protein-coding genes", "abbreviation": "MitImpact", "support-links": [{"url": "https://mitimpact.css-mendel.it/description", "name": "Description", "type": "Help documentation"}, {"url": "https://mitimpact.css-mendel.it/result_legend", "name": "Legend of the output", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://mitimpact.css-mendel.it/", "name": "Search", "type": "data access"}, {"name": "Download", "type": "data access"}, {"name": "MitImpact 3.0.6", "type": "data versioning"}]}, "legacy-ids": ["biodbcore-001705", "bsg-d001705"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Life Science", "Biomedical Science"], "domains": ["Sequence position"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Mitochondrial non-coding region (NCR) sequences"], "countries": ["Italy"], "name": "FAIRsharing record for: MitImpact", "abbreviation": "MitImpact", "url": "https://fairsharing.org/10.25504/FAIRsharing.Q7gFA9", "doi": "10.25504/FAIRsharing.Q7gFA9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MitImpact is a collection of genomic, clinical, and functional annotations for all nucleotide changes that cause non-synonymous substitutions in human mitochondrial protein-coding genes", "publications": [{"id": 3056, "pubmed_id": 28640805, "title": "High-confidence assessment of functional impact of human mitochondrial non-synonymous genome variations by APOGEE", "year": 2017, "url": "http://doi.org/10.1371/journal.pcbi.1005628", "authors": "Castellana S, Fusilli C, Mazzoccoli G, Biagini T, Capocefalo D, Carella M, Vescovi AL, Mazza T.", "journal": "PLoS Comput Biol", "doi": "10.1371/journal.pcbi.1005628", "created_at": "2021-09-30T08:28:16.600Z", "updated_at": "2021-09-30T08:28:16.600Z"}, {"id": 3058, "pubmed_id": 25516408, "title": "MitImpact: an exhaustive collection of pre-computed pathogenicity predictions of human mitochondrial non-synonymous variants", "year": 2014, "url": "http://doi.org/10.1002/humu.22720", "authors": "Castellana S, R\u00f3nai J, Mazza T.", "journal": "Hum Mutat.", "doi": "10.1002/humu.22720", "created_at": "2021-09-30T08:28:16.841Z", "updated_at": "2021-09-30T08:28:16.841Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2341", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T11:36:30.000Z", "updated-at": "2021-11-24T13:17:51.573Z", "metadata": {"doi": "10.25504/FAIRsharing.8yqqm4", "name": "WheatGenome.info", "status": "ready", "contacts": [{"contact-name": "Dave Edwards", "contact-email": "dave.edwards@uq.edu.au"}], "homepage": "http://www.wheatgenome.info/wheat_genome_databases.php", "identifier": 2341, "description": "An integrated database and portal for wheat genome information.", "abbreviation": "WheatGenome.info", "year-creation": 2011}, "legacy-ids": ["biodbcore-000819", "bsg-d000819"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Genome"], "taxonomies": ["Triticum"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: WheatGenome.info", "abbreviation": "WheatGenome.info", "url": "https://fairsharing.org/10.25504/FAIRsharing.8yqqm4", "doi": "10.25504/FAIRsharing.8yqqm4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: An integrated database and portal for wheat genome information.", "publications": [{"id": 1646, "pubmed_id": 22009731, "title": "WheatGenome.info: an integrated database and portal for wheat genome information.", "year": 2011, "url": "http://doi.org/10.1093/pcp/pcr141", "authors": "Lai K,Berkman PJ,Lorenc MT,Duran C,Smits L,Manoli S,Stiller J,Edwards D", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pcr141", "created_at": "2021-09-30T08:25:24.379Z", "updated_at": "2021-09-30T08:25:24.379Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1577", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.000Z", "metadata": {"doi": "10.25504/FAIRsharing.j1wj7d", "name": "Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", "status": "ready", "contacts": [{"contact-name": "Peer Bork", "contact-email": "bork@embl.de"}], "homepage": "http://eggnog.embl.de", "identifier": 1577, "description": "eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", "abbreviation": "eggNOG", "access-points": [{"url": "http://eggnogdb.embl.de/#/app/api", "name": "RESTful API", "type": "REST"}], "support-links": [{"url": "http://eggnog.embl.de/version_3.0/help.html", "type": "Help documentation"}, {"url": "http://eggnogdb.embl.de/#/app/methods", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/EggNOG_(database)", "type": "Wikipedia"}], "data-processes": [{"name": "biannual release (as in twice a year)", "type": "data release"}, {"name": "file download(txt)", "type": "data access"}, {"url": "http://eggnogdb.embl.de/#/app/downloads", "name": "Download", "type": "data access"}, {"url": "http://eggnogdb.embl.de/#/app/seqscan", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000032", "bsg-d000032"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Multiple sequence alignment", "Gene", "Orthologous"], "taxonomies": ["All"], "user-defined-tags": ["Newick tree"], "countries": ["Germany"], "name": "FAIRsharing record for: Evolutionary Genealogy of Genes: Non-supervised Orthologous Groups", "abbreviation": "eggNOG", "url": "https://fairsharing.org/10.25504/FAIRsharing.j1wj7d", "doi": "10.25504/FAIRsharing.j1wj7d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", "publications": [{"id": 52, "pubmed_id": 19900971, "title": "eggNOG v2.0: extending the evolutionary genealogy of genes with enhanced non-supervised orthologous groups, species and functional annotations.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp951", "authors": "Muller J., Szklarczyk D., Julien P., Letunic I., Roth A., Kuhn M., Powell S., von Mering C., Doerks T., Jensen LJ., Bork P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp951", "created_at": "2021-09-30T08:22:25.956Z", "updated_at": "2021-09-30T08:22:25.956Z"}, {"id": 53, "pubmed_id": 17942413, "title": "eggNOG: automated construction and annotation of orthologous groups of genes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm796", "authors": "Jensen LJ., Julien P., Kuhn M., von Mering C., Muller J., Doerks T., Bork P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm796", "created_at": "2021-09-30T08:22:26.056Z", "updated_at": "2021-09-30T08:22:26.056Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 95, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3002", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-18T06:51:51.000Z", "updated-at": "2021-12-06T10:47:29.636Z", "metadata": {"name": "South Australian Resources Information Geoserver", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "resources.customerservices@sa.gov.au"}], "homepage": "https://map.sarig.sa.gov.au/", "identifier": 3002, "description": "SARIG is an initiative of the Government of South Australia that provides access to over 130 years of South Australian minerals, petroleum and geothermal geoscientific information in an interactive online mapping format.", "abbreviation": "SARIG", "access-points": [{"url": "http://www.energymining.sa.gov.au/minerals/online_tools/free_data_delivery_and_publication_downloads/web_services", "name": "SARIG web services URL change and improved services", "type": "Other"}], "data-processes": [{"url": "https://map.sarig.sa.gov.au/", "name": "Browse & search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011369", "name": "re3data:r3d100011369", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001510", "bsg-d001510"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geochemistry", "Geology", "Paleontology", "Geography", "Earth Science", "Mineralogy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Lithology", "Petrology", "Stratigraphy", "Topography"], "countries": ["Australia"], "name": "FAIRsharing record for: South Australian Resources Information Geoserver", "abbreviation": "SARIG", "url": "https://fairsharing.org/fairsharing_records/3002", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SARIG is an initiative of the Government of South Australia that provides access to over 130 years of South Australian minerals, petroleum and geothermal geoscientific information in an interactive online mapping format.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)", "licence-id": 162, "link-id": 1100, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2772", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-04T11:11:53.000Z", "updated-at": "2021-11-24T13:14:56.588Z", "metadata": {"doi": "10.25504/FAIRsharing.L9UwAM", "name": "CLOSER Discovery", "status": "ready", "contacts": [{"contact-name": "CLOSER Support", "contact-email": "closer@ucl.ac.uk"}], "homepage": "https://www.discovery.closer.ac.uk/", "citations": [{"doi": "10.1093/ije/dyz004", "pubmed-id": 30789213, "publication-id": 2426}], "identifier": 2772, "description": "CLOSER Discovery enables researchers to search and browse questionnaires and data from eight leading UK longitudinal studies. Relevant survey questions and variables, which can be filtered by study, topic and life stage, are available. Accessing data from each study varies according to the source and data type.", "abbreviation": "CLOSER Discovery", "support-links": [{"url": "https://www.discovery.closer.ac.uk/page/faqs/1", "name": "CLOSER FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.discovery.closer.ac.uk/page/how-to-guides/6", "name": "How-To Guide", "type": "Help documentation"}, {"url": "https://www.discovery.closer.ac.uk/page/about/4", "name": "About CLOSER", "type": "Help documentation"}, {"url": "https://www.closer.ac.uk/how-to-access-the-data", "name": "How to Access Data", "type": "Help documentation"}, {"url": "https://wiki.ucl.ac.uk/display/CLOS/What+is+the+CLOSER+Technical+Wiki", "name": "Technical Wiki", "type": "Help documentation"}, {"url": "https://www.discovery.closer.ac.uk/page/data-security/3", "name": "Data Security and Metadata Licensing", "type": "Help documentation"}], "data-processes": [{"url": "https://discovery.closer.ac.uk/search", "name": "Search", "type": "data access"}, {"url": "https://discovery.closer.ac.uk/Explore", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001271", "bsg-d001271"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Social Science", "Public Health", "Social and Behavioural Science", "Biomedical Science"], "domains": ["Questionnaire"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: CLOSER Discovery", "abbreviation": "CLOSER Discovery", "url": "https://fairsharing.org/10.25504/FAIRsharing.L9UwAM", "doi": "10.25504/FAIRsharing.L9UwAM", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CLOSER Discovery enables researchers to search and browse questionnaires and data from eight leading UK longitudinal studies. Relevant survey questions and variables, which can be filtered by study, topic and life stage, are available. Accessing data from each study varies according to the source and data type.", "publications": [{"id": 2426, "pubmed_id": 30789213, "title": "Data Resource Profile: Cohort and Longitudinal Studies Enhancement Resources (CLOSER)", "year": 2019, "url": "http://doi.org/10.1093/ije/dyz004", "authors": "O'Neil, Dara", "journal": "International journal of epidemiology", "doi": "10.1093/ije/dyz004", "created_at": "2021-09-30T08:26:57.719Z", "updated_at": "2021-09-30T08:26:57.719Z"}], "licence-links": [{"licence-name": "Non-Commercial Government Licence for Public Sector Information", "licence-id": 597, "link-id": 1496, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2097", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:20.668Z", "metadata": {"doi": "10.25504/FAIRsharing.vkr57k", "name": "GWAS Central", "status": "ready", "contacts": [{"contact-name": "GWAS Central Helpdesk", "contact-email": "help@gwascentral.org"}], "homepage": "https://www.gwascentral.org/", "citations": [{"doi": "10.1093/nar/gkz895", "pubmed-id": 31612961, "publication-id": 2886}], "identifier": 2097, "description": "GWAS Central stores genome-wide association study data. The database content comprises direct submissions received from GWAS authors and consortia in addition to actively gathered data sets from various public sources. GWAS data are discoverable from the perspective of genetic markers, genes, genome regions or phenotypes, via graphical visualizations and detailed downloadable data reports.", "abbreviation": "GWAS Central", "access-points": [{"url": "https://help.gwascentral.org/web-services/", "name": "GWAS Central Web Services", "type": "REST"}], "support-links": [{"url": "tb143@leicester.ac.uk", "name": "Tim Beck", "type": "Support email"}, {"url": "https://help.gwascentral.org/how-to-guides/", "name": "How-To Guides", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://help.gwascentral.org", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://help.gwascentral.org/about/contact/", "name": "Contact Information", "type": "Help documentation"}, {"url": "https://help.gwascentral.org/about/", "name": "About GWAS Central", "type": "Help documentation"}, {"url": "https://help.gwascentral.org/category/news/", "name": "News", "type": "Help documentation"}, {"url": "http://feeds.feedburner.com/gwascentral", "name": "GWAS Central RSS", "type": "Blog/News"}], "year-creation": 2007, "data-processes": [{"url": "https://help.gwascentral.org/data/download/", "name": "Download", "type": "data release"}, {"url": "https://www.gwascentral.org/studies", "name": "Search Studies", "type": "data access"}, {"url": "https://www.gwascentral.org/phenotypes", "name": "Browse by Phenotype", "type": "data access"}, {"url": "https://help.gwascentral.org/submit-data/", "name": "submit", "type": "data curation"}, {"url": "https://www.gwascentral.org/generegion", "name": "Search by Gene / Region", "type": "data access"}, {"url": "https://www.gwascentral.org/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://www.gwascentral.org/browser", "name": "GWAS Central Browser", "type": "data access"}, {"url": "https://mart.gwascentral.org/biomart/martview", "name": "GWAS Mart", "type": "data access"}, {"url": "https://phenomap.gwascentral.org/", "name": "Browse via Ontologies in PhenoMap", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010565", "name": "re3data:r3d100010565", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006170", "name": "SciCrunch:RRID:SCR_006170", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000566", "bsg-d000566"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science", "Preclinical Studies"], "domains": ["Genetic marker", "Phenotype", "Gene", "Genome-wide association study", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: GWAS Central", "abbreviation": "GWAS Central", "url": "https://fairsharing.org/10.25504/FAIRsharing.vkr57k", "doi": "10.25504/FAIRsharing.vkr57k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GWAS Central stores genome-wide association study data. The database content comprises direct submissions received from GWAS authors and consortia in addition to actively gathered data sets from various public sources. GWAS data are discoverable from the perspective of genetic markers, genes, genome regions or phenotypes, via graphical visualizations and detailed downloadable data reports.", "publications": [{"id": 545, "pubmed_id": 18948288, "title": "HGVbaseG2P: a central genetic association database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn748", "authors": "Thorisson GA., Lancaster O., Free RC., Hastings RK., Sarmah P., Dash D., Brahmachari SK., Brookes AJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn748", "created_at": "2021-09-30T08:23:19.485Z", "updated_at": "2021-09-30T08:23:19.485Z"}, {"id": 2886, "pubmed_id": 31612961, "title": "GWAS Central: a comprehensive resource for the discovery and comparison of genotype and phenotype data from genome-wide association studies.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz895", "authors": "Beck T,Shorter T,Brookes AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz895", "created_at": "2021-09-30T08:27:55.263Z", "updated_at": "2021-09-30T11:29:48.238Z"}], "licence-links": [{"licence-name": "GWAS Central Disclaimer", "licence-id": 371, "link-id": 389, "relation": "undefined"}, {"licence-name": "GWAS Attribution required", "licence-id": 370, "link-id": 401, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 410, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2385", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T13:44:50.000Z", "updated-at": "2021-11-24T13:19:34.451Z", "metadata": {"doi": "10.25504/FAIRsharing.m58329", "name": "Database Of Local Biomolecular Conformers", "status": "ready", "contacts": [{"contact-name": "Petr \u010cech", "contact-email": "petr.cech@vscht.cz"}], "homepage": "http://dolbico.org/", "identifier": 2385, "description": "Dolbico, the Database Of Local Biomolecular Conformers, stores DNA structural data including the information about DNA local spatial arrangement. The main aim of Dolbico is the exploration of DNA structure at a local level. The analysis of local DNA structure is based on a classification system that uses 9 torsional angles (7 backbone angles and two glycosidic torsions) to categorize dinucleotides into several distinct conformational families. The implemented classification workflow is able not only to classify dinucleotides into already existing classes, but is also able to discover new classes in new solved DNA structures.", "abbreviation": "Dolbico", "support-links": [{"url": "http://dolbico.org/help", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "http://dolbico.org/search", "name": "search", "type": "data access"}, {"url": "http://dolbico.org/browse", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000865", "bsg-d000865"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Classification", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Database Of Local Biomolecular Conformers", "abbreviation": "Dolbico", "url": "https://fairsharing.org/10.25504/FAIRsharing.m58329", "doi": "10.25504/FAIRsharing.m58329", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dolbico, the Database Of Local Biomolecular Conformers, stores DNA structural data including the information about DNA local spatial arrangement. The main aim of Dolbico is the exploration of DNA structure at a local level. The analysis of local DNA structure is based on a classification system that uses 9 torsional angles (7 backbone angles and two glycosidic torsions) to categorize dinucleotides into several distinct conformational families. The implemented classification workflow is able not only to classify dinucleotides into already existing classes, but is also able to discover new classes in new solved DNA structures.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2183", "type": "fairsharing-records", "attributes": {"created-at": "2014-12-18T22:53:50.000Z", "updated-at": "2021-11-24T13:18:18.734Z", "metadata": {"doi": "10.25504/FAIRsharing.44wk5g", "name": "Open Connectome Project", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "support@neurodata.io"}], "homepage": "https://neurodata.io/project/ocp/", "identifier": 2183, "description": "Open Connectome Project: Reverse Engineering the Brain One Synapse at a Time", "abbreviation": "OCP", "access-points": [{"url": "http://openconnecto.me", "name": "REST", "type": "REST"}], "year-creation": 2011, "data-processes": [{"url": "http://openconnecto.me/graph-services/download/", "name": "Graph Download", "type": "data access"}, {"url": "http://openconnecto.me/catmaid/", "name": "2D Web View", "type": "data access"}], "associated-tools": [{"url": "http://catmaid.org/", "name": "CATMAID"}, {"url": "http://fiji.sc/BigDataViewer", "name": "BigDataViewer"}, {"url": "https://github.com/janelia-flyem/gala", "name": "GALA"}, {"url": "http://www.nitrc.org/projects/mrcap", "name": "MRCAP"}, {"url": "https://software.rc.fas.harvard.edu/lichtman/vast/", "name": "VAST"}, {"url": "http://openconnecto.me/api/", "name": "OCP API"}], "deprecation-date": "2021-03-19", "deprecation-reason": "This resource is no longer available as a database. Instead, all data are hosted in AWS on the Open NeuroData Registry https://registry.opendata.aws/open-neurodata . (The original homepage at http://openconnecto.me is no longer active.)"}, "legacy-ids": ["biodbcore-000657", "bsg-d000657"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurobiology", "Life Science"], "domains": [], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Felis catus", "Homo sapiens", "Macaca mulatta", "Mus musculus", "Pristionchus pacificus", "Rattus norvegicus", "Rhesus macaques"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Open Connectome Project", "abbreviation": "OCP", "url": "https://fairsharing.org/10.25504/FAIRsharing.44wk5g", "doi": "10.25504/FAIRsharing.44wk5g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open Connectome Project: Reverse Engineering the Brain One Synapse at a Time", "publications": [{"id": 1202, "pubmed_id": 3881956, "title": "The Open Connectome Project Data Cluster: Scalable Analysis and Vision for High-Throughput Neuroscience", "year": 1985, "url": "http://doi.org/10.1002/ajmg.1320200110", "authors": "R Burns, W Gray Roncal, D leissas, K Lillaney, P Manavalan, E Perlman, D R. Berger, D D. Bock, K Chung,L Grosenick, N Kasthuri, N C. Weiler, K Deisseroth, M Kazhdan, J Lichtman, R. C Reid, S J. Smith, A S. Szalay, J T. Vogelstein, R. J Vogelstein", "journal": "Scientific and Statistical Database Management", "doi": "10.1145/2484838.2484870", "created_at": "2021-09-30T08:24:33.940Z", "updated_at": "2021-09-30T11:28:32.042Z"}], "licence-links": [{"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 1448, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 1.0 Generic (CC BY-SA 1.0)", "licence-id": 188, "link-id": 1449, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1613", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:54.647Z", "metadata": {"doi": "10.25504/FAIRsharing.wx1yak", "name": "MitoMiner", "status": "ready", "contacts": [{"contact-name": "Alan J. Robinson", "contact-email": "ajr@mrc-mbu.cam.ac.uk"}], "homepage": "http://mitominer.mrc-mbu.cam.ac.uk", "identifier": 1613, "description": "MitoMiner is an integrated data warehouse of mammalian localisation evidence, phenotypes and diseases. This data has been integrated to allow the creation of sophisticated data mining queries spanning many different sources. It is primarily concerned with data for mammals, zebrafish and yeasts.", "abbreviation": "MitoMiner", "access-points": [{"url": "http://mitominer.mrc-mbu.cam.ac.uk/release-4.0/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "mitominer@mrc-mbu.cam.ac.uk", "name": "MitoMiner General Contact", "type": "Support email"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/support/faq", "name": "MitoMiner FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/support/tutorials", "name": "MitoMiner Tutorial", "type": "Help documentation"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/support/", "name": "MitoMiner News", "type": "Help documentation"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/release-4.0/dataCategories.do", "name": "Data Sources for MitoMiner", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2009, "data-processes": [{"url": "http://mitominer.mrc-mbu.cam.ac.uk/release-4.0/templates.do", "name": "Search via pre-defined queries", "type": "data access"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/release-4.0/bag.do", "name": "Search against a list", "type": "data access"}, {"url": "http://mitominer.mrc-mbu.cam.ac.uk/release-4.0/customQuery.do", "name": "Advanced Search (query builder)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000069", "bsg-d000069"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Phenotype", "Protein"], "taxonomies": ["Eukaryota"], "user-defined-tags": ["Mitochondrial proteomics data"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: MitoMiner", "abbreviation": "MitoMiner", "url": "https://fairsharing.org/10.25504/FAIRsharing.wx1yak", "doi": "10.25504/FAIRsharing.wx1yak", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MitoMiner is an integrated data warehouse of mammalian localisation evidence, phenotypes and diseases. This data has been integrated to allow the creation of sophisticated data mining queries spanning many different sources. It is primarily concerned with data for mammals, zebrafish and yeasts.", "publications": [{"id": 107, "pubmed_id": 19208617, "title": "MitoMiner, an integrated database for the storage and analysis of mitochondrial proteomics data.", "year": 2009, "url": "http://doi.org/10.1074/mcp.M800373-MCP200", "authors": "Smith AC., Robinson AJ.,", "journal": "Mol. Cell Proteomics", "doi": "10.1074/mcp.M800373-MCP200", "created_at": "2021-09-30T08:22:31.896Z", "updated_at": "2021-09-30T08:22:31.896Z"}, {"id": 1450, "pubmed_id": 26432830, "title": "MitoMiner v3.1, an update on the mitochondrial proteomics database.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1001", "authors": "Smith AC,Robinson AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1001", "created_at": "2021-09-30T08:25:02.075Z", "updated_at": "2021-09-30T11:29:08.609Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1244, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2218", "type": "fairsharing-records", "attributes": {"created-at": "2015-08-03T17:39:40.000Z", "updated-at": "2021-11-24T13:14:48.738Z", "metadata": {"doi": "10.25504/FAIRsharing.emcjf0", "name": "UniCarbKB", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@unicarbkb.org"}], "homepage": "http://www.unicarbkb.org", "identifier": 2218, "description": "UniCarbKB is an initiative that aims to promote the creation of an online information storage and search platform for glycomics and glycobiology research. The knowledgebase will offer a freely accessible and information-rich resource supported by querying interfaces, annotation technologies and the adoption of common standards to integrate structural, experimental and functional data.", "abbreviation": "UniCarbKB", "support-links": [{"url": "http://www.unicarbkb.org/about", "type": "Help documentation"}, {"url": "http://115.146.93.212/confluence/display/UK/UniCarbKB+Summary", "type": "Help documentation"}, {"url": "https://twitter.com/unicarbkb", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://www.unicarbkb.org/query", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000692", "bsg-d000692"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics", "Biomedical Science"], "domains": [], "taxonomies": ["Apis", "Aspergillus oryzae", "Bos taurus", "Gallus gallus", "Homo sapiens", "Leishmania", "Oryza sativa", "Rattus norvegicus", "Sus scrofa", "Trypanosoma cruzi"], "user-defined-tags": [], "countries": ["United States", "Sweden", "Germany", "Australia", "Ireland", "Switzerland", "Japan"], "name": "FAIRsharing record for: UniCarbKB", "abbreviation": "UniCarbKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.emcjf0", "doi": "10.25504/FAIRsharing.emcjf0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UniCarbKB is an initiative that aims to promote the creation of an online information storage and search platform for glycomics and glycobiology research. The knowledgebase will offer a freely accessible and information-rich resource supported by querying interfaces, annotation technologies and the adoption of common standards to integrate structural, experimental and functional data.", "publications": [{"id": 796, "pubmed_id": 24234447, "title": "UniCarbKB: building a knowledge platform for glycoproteomics.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1128", "authors": "Campbell MP,Peterson R,Mariethoz J,Gasteiger E,Akune Y,Aoki-Kinoshita KF,Lisacek F,Packer NH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1128", "created_at": "2021-09-30T08:23:47.768Z", "updated_at": "2021-09-30T11:28:51.592Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 873, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2364", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-04T17:29:42.000Z", "updated-at": "2021-11-24T13:14:52.616Z", "metadata": {"doi": "10.25504/FAIRsharing.1gn47b", "name": "Target Central Resource Database", "status": "ready", "contacts": [{"contact-name": "Tudor Oprea", "contact-email": "toprea@salud.unm.edu", "contact-orcid": "0000-0002-6195-6976"}], "homepage": "http://juniper.health.unm.edu/tcrd/", "identifier": 2364, "description": "TCRD is the central resource behind the Illuminating the Druggable Genome Knowledge Management Center (IDG-KMC). TCRD contains information about human targets, with special emphasis on four families of targets that are central to the NIH IDG initiative: GPCRs, kinases, ion channels and nuclear receptors. Olfactory GPCRs (oGPCRs) are treated as a separate family. A key aim of the KMC is to classify the development/druggability level of targets. The official public portal for TCRD is Pharos (pharos.nih.gov). Based on modern web design principles the Pharos interface provides facile access to all data types collected by the KMC. Given the complexity of the data surrounding any target, efficient and intuitive visualization has been a high priority, to enable users to quickly navigate & summarize search results and rapidly identify patterns. A critical feature of the interface is the ability to perform flexible search and subsequent drill down of search results. Underlying the interface is a RESTful API that provides programmatic access to all KMC data, allowing for easy consumption in user applications.", "abbreviation": "TCRD", "access-points": [{"url": "http://juniper.health.unm.edu/tcrd/api.html", "name": "Only GET requests are currently supported. http://juniper.health.unm.edu/tcrd/api/_info will return a brief description of the API some info on the version of the database being accessed.", "type": "REST"}, {"url": "https://pharos.nih.gov/idg/api/v1", "name": "Entry point to entity-specific APIs", "type": "REST"}], "support-links": [{"url": "pharos@mail.nih.gov", "type": "Support email"}, {"url": "https://pharos.nih.gov/idg/faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2013, "data-processes": [{"url": "http://juniper.health.unm.edu/tcrd/download/", "name": "Download Specification", "type": "data release"}], "associated-tools": [{"url": "http://pharos.nih.gov/", "name": "Pharos: UI for the Illuminating the Druggable Genome (IDG) program"}]}, "legacy-ids": ["biodbcore-000843", "bsg-d000843"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Protein name", "Sequence annotation", "Protein interaction", "Function analysis", "Protein targeting", "Protein localization", "Molecular interaction", "Phenotype", "Disease phenotype", "Disease", "Gene-disease association"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Drug Target"], "countries": ["United States"], "name": "FAIRsharing record for: Target Central Resource Database", "abbreviation": "TCRD", "url": "https://fairsharing.org/10.25504/FAIRsharing.1gn47b", "doi": "10.25504/FAIRsharing.1gn47b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TCRD is the central resource behind the Illuminating the Druggable Genome Knowledge Management Center (IDG-KMC). TCRD contains information about human targets, with special emphasis on four families of targets that are central to the NIH IDG initiative: GPCRs, kinases, ion channels and nuclear receptors. Olfactory GPCRs (oGPCRs) are treated as a separate family. A key aim of the KMC is to classify the development/druggability level of targets. The official public portal for TCRD is Pharos (pharos.nih.gov). Based on modern web design principles the Pharos interface provides facile access to all data types collected by the KMC. Given the complexity of the data surrounding any target, efficient and intuitive visualization has been a high priority, to enable users to quickly navigate & summarize search results and rapidly identify patterns. A critical feature of the interface is the ability to perform flexible search and subsequent drill down of search results. Underlying the interface is a RESTful API that provides programmatic access to all KMC data, allowing for easy consumption in user applications.", "publications": [{"id": 2171, "pubmed_id": 27903890, "title": "Pharos: Collating protein information to shed light on the druggable genome.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1072", "authors": "Nguyen DT et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1072", "created_at": "2021-09-30T08:26:24.664Z", "updated_at": "2021-09-30T11:29:30.603Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1196, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2096", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:44.799Z", "metadata": {"doi": "10.25504/FAIRsharing.ptsckv", "name": "Cancer Genome Mine", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "bbu-support@helsinki.fi"}], "homepage": "http://www.cangem.org/", "identifier": 2096, "description": "Clinical information about tumor samples and microarray data, with emphasis on array comparative genomic hybridization (aCGH) and data mining of gene copy number changes.", "abbreviation": "CanGEM", "support-links": [{"url": "http://www.cangem.org/browse.php?what=doc", "type": "Help documentation"}, {"url": "http://cabigtrainingdocs.nci.nih.gov/caNanolab/websubmission/caNanolab_websubmission.html", "type": "Training documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.cangem.org/index.php?", "name": "search", "type": "data access"}, {"url": "http://www.cangem.org/cghpower/", "name": "analyze", "type": "data access"}, {"url": "http://www.cangem.org/browse.php", "name": "browse", "type": "data access"}, {"url": "http://www.cangem.org/samplesearch.php", "name": "advanced search", "type": "data access"}], "deprecation-date": "2020-06-03", "deprecation-reason": "This database is no longer available at its listed homepage, and no further information can be found."}, "legacy-ids": ["biodbcore-000565", "bsg-d000565"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Life Science", "Biomedical Science"], "domains": ["Cancer", "Genetic polymorphism", "Chromosomal aberration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: Cancer Genome Mine", "abbreviation": "CanGEM", "url": "https://fairsharing.org/10.25504/FAIRsharing.ptsckv", "doi": "10.25504/FAIRsharing.ptsckv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Clinical information about tumor samples and microarray data, with emphasis on array comparative genomic hybridization (aCGH) and data mining of gene copy number changes.", "publications": [{"id": 554, "pubmed_id": 17932056, "title": "CanGEM: mining gene copy number changes in cancer.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm802", "authors": "Scheinin I., Myllykangas S., Borze I., B\u00f6hling T., Knuutila S., Saharinen J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm802", "created_at": "2021-09-30T08:23:20.487Z", "updated_at": "2021-09-30T08:23:20.487Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3296", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-23T14:22:52.000Z", "updated-at": "2021-12-06T10:48:55.405Z", "metadata": {"doi": "10.25504/FAIRsharing.nh1DmP", "name": "Health Data Research Innovation Gateway", "status": "ready", "contacts": [{"contact-name": "Susheel Varma", "contact-email": "susheel.varma@hdruk.ac.uk", "contact-orcid": "0000-0003-1687-2754"}], "homepage": "https://healthdatagateway.org", "identifier": 3296, "description": "The Health Data Research Innovation Gateway (the \u2018Gateway\u2019) provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access. The Gateway includes the ability to search for research projects, publications and health data tools, such as those related to COVID-19. New interactive features provide a community forum for researchers to collaborate and connect and the ability to add research projects. The Innovation Gateway does not hold or store any datasets or patient or health data but rather acts as a portal to allow discovery of datasets and to request access to them for health research. A dataset is a collection of related individual pieces of data but in the case of health data, identifiable information (e.g. name or NHS number) is removed and data is de-identified where possible. When you access the Gateway you will not be able to view or extract the data itself. Instead, you will be able to see information that describes what the different datasets are (e.g. where the dataset has come from, a description of the dataset, the time period and the geographical areas the dataset covers). In order to access the data, you will need to sign in and then follow the access request process. Only once your request has been through the process to ensure your application meets all of the requirements and is approved by the data controller will you be able to access the data. Your access to the data will be provided outside of the Gateway in line with the processes of the data controller - read through our FAQs for more information on the process. The datasets that are discoverable through the Innovation Gateway are from organisations in the NHS, research institutes and charities, which are part of the UK Health Data Research Alliance. You can find out more about its members on the UK Health Data Research Alliance website. The information provided about the datasets has been provided by the relevant data controller and is continually updated.", "abbreviation": "Innovation Gateway", "access-points": [{"url": "https://api.www.healthdatagateway.org/api-docs", "name": "HDR Innovation Gateway API", "type": "REST"}], "support-links": [{"url": "https://www.healthdatagateway.org/pages/latest-news", "name": "News", "type": "Blog/News"}, {"url": "https://www.healthdatagateway.org/pages/frequently-asked-questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://discourse.healthdatagateway.org/", "type": "Forum"}, {"url": "https://discourse.healthdatagateway.org/c/site-feedback/2", "name": "Feedback", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://web.www.healthdatagateway.org/dashboard", "name": "Dashboard", "type": "data access"}, {"url": "https://web.www.healthdatagateway.org/search?search=&tab=Datasets", "name": "Browser all datasets", "type": "data access"}, {"url": "https://www.healthdatagateway.org/covid-19", "name": "COVID-19 datasets", "type": "data access"}, {"url": "https://web.www.healthdatagateway.org/search?search=Cancer&tab=Datasets", "name": "Cancer datasets", "type": "data access"}, {"url": "https://www.healthdatagateway.org/pages/guidelines#tabs-2", "name": "Data access upon request", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013505", "name": "re3data:r3d100013505", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001811", "bsg-d001811"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cardiology", "Genomics", "Health Services Research", "Reproductive Health", "Clinical Studies", "Public Health", "Occupational Medicine", "Health Science", "Global Health", "Primary Health Care", "Community Care", "Virology", "Medical Virology", "Respiratory Medicine", "Epidemiology"], "domains": ["Cancer", "Liver disease", "Electronic health record", "Patient care", "Cardiovascular disease", "Mental health"], "taxonomies": [], "user-defined-tags": ["Breast cancer", "COVID-19", "Dashboard", "Metabolic health in adolescents", "Non-clinical trial", "Pre-clinical imaging", "respiratory disease"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Health Data Research Innovation Gateway", "abbreviation": "Innovation Gateway", "url": "https://fairsharing.org/10.25504/FAIRsharing.nh1DmP", "doi": "10.25504/FAIRsharing.nh1DmP", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Health Data Research Innovation Gateway (the \u2018Gateway\u2019) provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access. The Gateway includes the ability to search for research projects, publications and health data tools, such as those related to COVID-19. New interactive features provide a community forum for researchers to collaborate and connect and the ability to add research projects. The Innovation Gateway does not hold or store any datasets or patient or health data but rather acts as a portal to allow discovery of datasets and to request access to them for health research. A dataset is a collection of related individual pieces of data but in the case of health data, identifiable information (e.g. name or NHS number) is removed and data is de-identified where possible. When you access the Gateway you will not be able to view or extract the data itself. Instead, you will be able to see information that describes what the different datasets are (e.g. where the dataset has come from, a description of the dataset, the time period and the geographical areas the dataset covers). In order to access the data, you will need to sign in and then follow the access request process. Only once your request has been through the process to ensure your application meets all of the requirements and is approved by the data controller will you be able to access the data. Your access to the data will be provided outside of the Gateway in line with the processes of the data controller - read through our FAQs for more information on the process. The datasets that are discoverable through the Innovation Gateway are from organisations in the NHS, research institutes and charities, which are part of the UK Health Data Research Alliance. You can find out more about its members on the UK Health Data Research Alliance website. The information provided about the datasets has been provided by the relevant data controller and is continually updated.", "publications": [], "licence-links": [{"licence-name": "HDR UK Terms and Conditions", "licence-id": 384, "link-id": 2378, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1639", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:01.251Z", "metadata": {"doi": "10.25504/FAIRsharing.pn1sr5", "name": "Rhea", "status": "ready", "contacts": [{"contact-name": "Anne Morgat", "contact-email": "anne.morgat@sib.swiss", "contact-orcid": "0000-0002-1216-2969"}], "homepage": "http://www.rhea-db.org", "citations": [{"doi": "10.1093/nar/gky876", "pubmed-id": 30272209, "publication-id": 2669}], "identifier": 1639, "description": "Rhea is a comprehensive and non-redundant resource of expert-curated chemical and transport reactions of biological interest. Rhea can be used for enzyme annotation, genome-scale metabolic modeling and omics-related analysis. Rhea describes enzyme-catalyzed reactions covering the IUBMB Enzyme Nomenclature list as well as additional reactions, including spontaneously occurring reactions. Rhea is built on ChEBI (Chemical Entities of Biological Interest) ontology of small molecules to describe its reaction participants. Since December 2018, Rhea is the standard for enzyme annotation in UniProt.", "abbreviation": "Rhea", "access-points": [{"url": "https://www.rhea-db.org/webservice", "name": "Rhea Web Services", "type": "REST"}, {"url": "https://sparql.rhea-db.org/sparql", "name": "SPARQL Endpoint", "type": "Other"}], "support-links": [{"url": "https://www.rhea-db.org/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.rhea-db.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.rhea-db.org/changes", "name": "Changes", "type": "Help documentation"}, {"url": "https://www.rhea-db.org/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.rhea-db.org/documentation", "name": "Documentation", "type": "Help documentation"}, {"url": "https://sourceforge.net/p/rhea-ebi/news/feed.rss", "name": "News", "type": "Blog/News"}, {"url": "https://twitter.com/rhea_db", "name": "@rhea_db", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://www.rhea-db.org/download", "name": "Download Data", "type": "data release"}, {"name": "Expert curation", "type": "data curation"}, {"url": "https://www.rhea-db.org/submit", "name": "Data Submission", "type": "data curation"}, {"url": "https://www.rhea-db.org/advancedsearch", "name": "Advanced search", "type": "data access"}, {"url": "https://www.rhea-db.org/searchresults?q=chebi*", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://www.chemaxon.com/", "name": "ChemAxon"}, {"url": "https://cran.r-project.org/web/packages/RxnSim/index.html", "name": "RxnSim 1.0.3"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010891", "name": "re3data:r3d100010891", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000095", "bsg-d000095"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Life Science"], "domains": ["Chemical formula", "Reaction data", "Annotation", "Chemical entity", "Transport", "Small molecule", "Enzymatic reaction", "Curated information", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "Switzerland"], "name": "FAIRsharing record for: Rhea", "abbreviation": "Rhea", "url": "https://fairsharing.org/10.25504/FAIRsharing.pn1sr5", "doi": "10.25504/FAIRsharing.pn1sr5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Rhea is a comprehensive and non-redundant resource of expert-curated chemical and transport reactions of biological interest. Rhea can be used for enzyme annotation, genome-scale metabolic modeling and omics-related analysis. Rhea describes enzyme-catalyzed reactions covering the IUBMB Enzyme Nomenclature list as well as additional reactions, including spontaneously occurring reactions. Rhea is built on ChEBI (Chemical Entities of Biological Interest) ontology of small molecules to describe its reaction participants. Since December 2018, Rhea is the standard for enzyme annotation in UniProt.", "publications": [{"id": 2061, "pubmed_id": 27789701, "title": "Updates in Rhea - an expert curated resource of biochemical reactions.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw990", "authors": "Morgat A, Lombardot T, Axelsen KB, Aimo L, Niknejad A, Hyka-Nouspikel N, Coudert E, Pozzato M, Pagni M, Moretti S, Rosanoff S, Onwubiko J, Bougueleret L, Xenarios I, Redaschi N, Bridge A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkw990", "created_at": "2021-09-30T08:26:12.241Z", "updated_at": "2021-09-30T08:26:12.241Z"}, {"id": 2660, "pubmed_id": 25332395, "title": "Updates in Rhea--a manually curated resource of biochemical reactions.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku961", "authors": "Morgat A, Axelsen KB, Lombardot T, Alc\u00e1ntara R, Aimo L, Zerara M, Niknejad A, Belda E, Hyka-Nouspikel N, Coudert E, Redaschi N, Bougueleret L, Steinbeck C, Xenarios I, Bridge A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku961", "created_at": "2021-09-30T08:27:26.655Z", "updated_at": "2021-09-30T08:27:26.655Z"}, {"id": 2661, "pubmed_id": 22135291, "title": "Rhea--a manually curated resource of biochemical reactions.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1126", "authors": "Alcantara R,Axelsen KB,Morgat A,Belda E,Coudert E,Bridge A,Cao H,de Matos P,Ennis M,Turner S,Owen G,Bougueleret L,Xenarios I,Steinbeck C", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1126", "created_at": "2021-09-30T08:27:26.771Z", "updated_at": "2021-09-30T08:27:26.771Z"}, {"id": 2669, "pubmed_id": 30272209, "title": "Updates in Rhea: SPARQLing biochemical reaction data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky876", "authors": "Lombardot T, Morgat A, Axelsen KB, Aimo L, Hyka-Nouspikel N, Niknejad A, Ignatchenko A, Xenarios I, Coudert E, Redaschi N, Bridge A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky876", "created_at": "2021-09-30T08:27:27.694Z", "updated_at": "2021-09-30T11:29:41.003Z"}, {"id": 2672, "pubmed_id": 31688925, "title": "Enzyme annotation in UniProtKB using Rhea", "year": 2019, "url": "http://doi.org/10.1093/bioinformatics/btz817", "authors": "Morgat A, Lombardot T, Coudert E, Axelsen K, Neto TB, Gehant S, Bansal P, Bolleman J, Gasteiger E, de Castro E, Baratin D, Pozzato M, Xenarios I, Poux S, Redaschi N, Bridge A and the UniProt Consortium", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btz817", "created_at": "2021-09-30T08:27:28.063Z", "updated_at": "2021-09-30T08:27:28.063Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 901, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3310", "type": "fairsharing-records", "attributes": {"created-at": "2021-04-20T10:53:20.000Z", "updated-at": "2021-11-24T13:18:11.714Z", "metadata": {"name": "Establishment of primary health information in the COVID-19 epidemic", "status": "uncertain", "contacts": [{"contact-name": "Wenjing Shi", "contact-email": "swjo0111@163.com", "contact-orcid": "swjo0111@163.com"}], "homepage": "https://www.covid19dataindex.org/", "identifier": 3310, "description": "To investigate the status of public health self-examination awareness and its influencing factors during the COVID-19 epidemic, so as to establish complete health information to help the prevention and control of the COVID-19 epidemic.", "abbreviation": "EPHI", "year-creation": 2021}, "legacy-ids": ["biodbcore-001825", "bsg-d001825"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Global Health", "Infectious Disease Medicine"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Establishment of primary health information in the COVID-19 epidemic", "abbreviation": "EPHI", "url": "https://fairsharing.org/fairsharing_records/3310", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: To investigate the status of public health self-examination awareness and its influencing factors during the COVID-19 epidemic, so as to establish complete health information to help the prevention and control of the COVID-19 epidemic.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2508", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-11T11:17:07.000Z", "updated-at": "2021-12-06T10:48:34.887Z", "metadata": {"doi": "10.25504/FAIRsharing.fmc0g0", "name": "CSIRO Data Access Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "CSIROEnquiries@csiro.au"}], "homepage": "https://data.csiro.au/collections", "identifier": 2508, "description": "The CSIRO Data Access Portal provides access to research data, software and other digital assets published by CSIRO across a range of disciplines. The portal is maintained by CSIRO Information Management & Technology to facilitate sharing and reuse.", "abbreviation": "CSIRO DAP", "access-points": [{"url": "https://confluence.csiro.au/display/daphelp/Web+Services+Interface", "name": "API", "type": "Other"}], "support-links": [{"url": "https://confluence.csiro.au/public/daphelp/data-access-portal-users-guide/find-data", "name": "Online Documentation", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://data.csiro.au/dap/specificSearch", "name": "Domain-specific Search Tools", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010734", "name": "re3data:r3d100010734", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000990", "bsg-d000990"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Humanities", "Social Science", "Medicine", "Chemistry", "Astrophysics and Astronomy", "Natural Science", "Life Science", "Social and Behavioural Science", "Biomedical Science", "Physics"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: CSIRO Data Access Portal", "abbreviation": "CSIRO DAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.fmc0g0", "doi": "10.25504/FAIRsharing.fmc0g0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CSIRO Data Access Portal provides access to research data, software and other digital assets published by CSIRO across a range of disciplines. The portal is maintained by CSIRO Information Management & Technology to facilitate sharing and reuse.", "publications": [], "licence-links": [{"licence-name": "CSIRO Legal Notice and Disclaimer", "licence-id": 207, "link-id": 978, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2150", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.298Z", "metadata": {"doi": "10.25504/FAIRsharing.17z0yf", "name": "iSpyBio", "status": "ready", "contacts": [{"contact-name": "Tillmann Ziegert", "contact-email": "tillmann.ziegert@biorbyt.com"}], "homepage": "http://www.ispybio.com/", "identifier": 2150, "description": "iSpyBio is an intelligent and unbiased search engine for Life scientists. It ranks reagents by the number of data such as publications, reviews, characterization images and tested applications. It displays over 500,000 reagents such as antibodies, proteins, ELISA kits and biomolecules. iSpyBio\u2019s proprietary search algorithm is unique and rapidly analyzes the end-users search query against its large database. Powerful filters allow the user to enhance the search results, for example if they want a protein expressed in yeast or an antibody that only works in mouse. As iSpyBio syncs with supplier and other public databases, it is always up-to-date. This allows iSpyBio to exclude out of stock items but show the most recent testing results and peer-reviewed publications.", "abbreviation": "iSpyBio", "support-links": [{"url": "info@ispybio.com", "type": "Support email"}, {"url": "https://twitter.com/iSpyBio", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://www.ispybio.com/", "name": "search", "type": "data access"}, {"url": "http://www.ispybio.com/search/collection1/browse?&q=", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000622", "bsg-d000622"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Reagent", "Antibody", "Assay", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: iSpyBio", "abbreviation": "iSpyBio", "url": "https://fairsharing.org/10.25504/FAIRsharing.17z0yf", "doi": "10.25504/FAIRsharing.17z0yf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iSpyBio is an intelligent and unbiased search engine for Life scientists. It ranks reagents by the number of data such as publications, reviews, characterization images and tested applications. It displays over 500,000 reagents such as antibodies, proteins, ELISA kits and biomolecules. iSpyBio\u2019s proprietary search algorithm is unique and rapidly analyzes the end-users search query against its large database. Powerful filters allow the user to enhance the search results, for example if they want a protein expressed in yeast or an antibody that only works in mouse. As iSpyBio syncs with supplier and other public databases, it is always up-to-date. This allows iSpyBio to exclude out of stock items but show the most recent testing results and peer-reviewed publications.", "publications": [], "licence-links": [{"licence-name": "iSpyBio Privacy Policy", "licence-id": 459, "link-id": 829, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2860", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-20T12:34:45.000Z", "updated-at": "2021-11-24T13:16:50.920Z", "metadata": {"doi": "10.25504/FAIRsharing.qgMKai", "name": "DNA Modification Database", "status": "ready", "contacts": [{"contact-name": "Dr. Michael Hoffman", "contact-email": "michael.hoffman@utoronto.ca"}], "homepage": "https://dnamod.hoffmanlab.org/", "citations": [{"doi": "10.1186/s13321-019-0349-4", "pubmed-id": 31016417, "publication-id": 506}], "identifier": 2860, "description": "DNAmod is an open-source database (https://dnamod.hoffmanlab.org) that catalogues DNA modifications and provides a single source to learn about their properties. The database annotates the chemical properties and structures of all curated modified DNA bases, and a much larger list of candidate chemical entities. DNAmod includes manual annotations of available sequencing methods, descriptions of their occurrence in nature, and provides existing and suggested nomenclature. DNAmod enables researchers to rapidly review previous work, select mapping techniques, and track recent developments concerning modified bases of interest.", "abbreviation": "DNAmod", "support-links": [{"url": "https://bitbucket.org/hoffmanlab/dnamod/issues", "name": "Bitbucket Issue Tracker", "type": "Forum"}, {"url": "https://dnamod.hoffmanlab.org/about.html", "name": "About", "type": "Help documentation"}, {"url": "https://dnamod.hoffmanlab.org/contact.html", "name": "Contact Information", "type": "Help documentation"}, {"url": "https://bitbucket.org/hoffmanlab/dnamod/", "name": "Bitbucket Project Page", "type": "Help documentation"}], "year-creation": 2019}, "legacy-ids": ["biodbcore-001361", "bsg-d001361"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenomics", "Bioinformatics"], "domains": ["Nucleotide"], "taxonomies": ["All"], "user-defined-tags": ["DNA modification"], "countries": ["Canada"], "name": "FAIRsharing record for: DNA Modification Database", "abbreviation": "DNAmod", "url": "https://fairsharing.org/10.25504/FAIRsharing.qgMKai", "doi": "10.25504/FAIRsharing.qgMKai", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DNAmod is an open-source database (https://dnamod.hoffmanlab.org) that catalogues DNA modifications and provides a single source to learn about their properties. The database annotates the chemical properties and structures of all curated modified DNA bases, and a much larger list of candidate chemical entities. DNAmod includes manual annotations of available sequencing methods, descriptions of their occurrence in nature, and provides existing and suggested nomenclature. DNAmod enables researchers to rapidly review previous work, select mapping techniques, and track recent developments concerning modified bases of interest.", "publications": [{"id": 506, "pubmed_id": 31016417, "title": "DNAmod: the DNA modification database.", "year": 2019, "url": "http://doi.org/10.1186/s13321-019-0349-4", "authors": "Sood AJ,Viner C,Hoffman MM", "journal": "J Cheminform", "doi": "10.1186/s13321-019-0349-4", "created_at": "2021-09-30T08:23:15.144Z", "updated_at": "2021-09-30T08:23:15.144Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 1330, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1332, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2349", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-18T11:54:44.000Z", "updated-at": "2021-12-06T10:48:25.466Z", "metadata": {"doi": "10.25504/FAIRsharing.dk451a", "name": "MassBank Europe", "status": "ready", "contacts": [{"contact-name": "Tobias Schulze", "contact-email": "tobias.schulze@ufz.de"}], "homepage": "https://massbank.eu/MassBank/", "identifier": 2349, "description": "MassBank is the first public repository of mass spectral data for sharing them among scientific research community. MassBank data are useful for the chemical identification and structure elucidation of chemical compounds detected by mass spectrometry.", "abbreviation": "MassBank", "access-points": [{"url": "https://massbank.eu/MassBank/Index", "name": "RESTful API with simple search functions is available", "type": "REST"}], "support-links": [{"url": "massbank@massbank.eu", "name": "General contact", "type": "Support email"}, {"url": "http://massbank.jp/manuals/MassBankUserManual_en.pdf", "name": "MassBank Users Manual", "type": "Help documentation"}, {"url": "https://github.com/MassBank/MassBank-web/blob/master/Documentation/MassBankRecordFormat.md", "name": "Record Format", "type": "Github"}, {"url": "https://github.com/MassBank", "name": "MassBank community on GitHub", "type": "Github"}, {"url": "https://zenodo.org/communities/massbankeu/?page=1&size=20", "name": "MassBank community on zenodo", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "https://github.com/MassBank/MassBank-data", "name": "Data Download", "type": "data access"}, {"url": "https://massbank.eu/MassBank/RecordIndex", "name": "Record Index", "type": "data access"}, {"url": "https://massbank.eu/MassBank/Search", "name": "Spectrum Search", "type": "data access"}, {"url": "https://zenodo.org/record/4134734#.X6kp0VNKg6g", "name": "Release Version 2020.10", "type": "data release"}, {"url": "https://github.com/MassBank/MassBank-data/releases", "name": "Data Release", "type": "data release"}], "associated-tools": [{"url": "https://metabolomics-usi.ucsd.edu/", "name": "Metabolomics Spectrum Identifier Resolver Release 6.8"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011839", "name": "re3data:r3d100011839", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000827", "bsg-d000827"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry", "Life Science", "Physics"], "domains": ["Mass spectrum"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union", "Japan"], "name": "FAIRsharing record for: MassBank Europe", "abbreviation": "MassBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.dk451a", "doi": "10.25504/FAIRsharing.dk451a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MassBank is the first public repository of mass spectral data for sharing them among scientific research community. MassBank data are useful for the chemical identification and structure elucidation of chemical compounds detected by mass spectrometry.", "publications": [{"id": 1704, "pubmed_id": 20623627, "title": "MassBank: a public repository for sharing mass spectral data for life sciences.", "year": 2010, "url": "http://doi.org/10.1002/jms.1777", "authors": "Horai H et al.", "journal": "J Mass Spectrom", "doi": "10.1002/jms.1777", "created_at": "2021-09-30T08:25:30.962Z", "updated_at": "2021-09-30T08:25:30.962Z"}], "licence-links": [{"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 2095, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2420", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T16:32:03.000Z", "updated-at": "2021-12-06T10:49:21.627Z", "metadata": {"doi": "10.25504/FAIRsharing.w13xsb", "name": "National Center for Atmospheric Research Climate Data Gateway", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "esg-support@earthsystemgrid.org"}], "homepage": "https://www.earthsystemgrid.org/", "identifier": 2420, "description": "The NCAR Climate Data Gateway is a gateway to scientific data on environmental and earth science around the globe. It provides data discovery and access services for global and regional climate model data, knowledge, and software. The NCAR Climate Data Gateway supports community access to data products from many of NCAR's community modeling efforts, including the IPCC, PCM, AMPS, CESM, NARCCAP, and NMME activities.", "abbreviation": "NCAR Climate Data Gateway", "access-points": [{"url": "https://www.earthsystemgrid.org/documentation/index.html", "name": "NCAR Climate Data Gateway APi", "type": "REST"}], "support-links": [{"url": "https://www.earthsystemgrid.org/help/download-help.html", "name": "Download Help", "type": "Help documentation"}, {"url": "https://www.earthsystemgrid.org/project.html", "name": "Associated Projects", "type": "Help documentation"}, {"url": "https://www.earthsystemgrid.org/about/overview.html", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://www.earthsystemgrid.org/search.html", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012585", "name": "re3data:r3d100012585", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000902", "bsg-d000902"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Center for Atmospheric Research Climate Data Gateway", "abbreviation": "NCAR Climate Data Gateway", "url": "https://fairsharing.org/10.25504/FAIRsharing.w13xsb", "doi": "10.25504/FAIRsharing.w13xsb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NCAR Climate Data Gateway is a gateway to scientific data on environmental and earth science around the globe. It provides data discovery and access services for global and regional climate model data, knowledge, and software. The NCAR Climate Data Gateway supports community access to data products from many of NCAR's community modeling efforts, including the IPCC, PCM, AMPS, CESM, NARCCAP, and NMME activities.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2132, "relation": "undefined"}, {"licence-name": "UCAR Data Use Policy", "licence-id": 797, "link-id": 2133, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2782", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-28T08:10:55.000Z", "updated-at": "2021-11-24T13:13:14.222Z", "metadata": {"doi": "10.25504/FAIRsharing.CWzk3C", "name": "MolMeDB: Molecules on Membranes Database", "status": "ready", "contacts": [{"contact-name": "Karel Berka", "contact-email": "karel.berka@upol.cz", "contact-orcid": "0000-0001-9472-2589"}], "homepage": "http://molmedb.upol.cz", "identifier": 2782, "description": "MolMeDB is an open chemistry database concerning the interaction of molecules with membranes.", "abbreviation": "MolMeDB", "support-links": [{"url": "molmedb@upol.cz", "name": "Contact MolMeDB", "type": "Support email"}, {"url": "https://github.com/BerkaLab/MolMeDB", "name": "Github", "type": "Github"}, {"url": "http://molmedb.upol.cz/documentation", "name": "Documentation", "type": "Help documentation"}, {"url": "http://molmedb.upol.cz/stats", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://molmedb.upol.cz/search/1", "name": "Search", "type": "data access"}, {"url": "http://molmedb.upol.cz/browse/membranes", "name": "Browse Membranes", "type": "data access"}, {"url": "http://molmedb.upol.cz/browse/compounds", "name": "Browse Compounds", "type": "data access"}, {"url": "http://molmedb.upol.cz/browse/methods", "name": "Browse Methods", "type": "data access"}, {"url": "http://molmedb.upol.cz/browse/sets?IOP=5", "name": "Datasets by Publication", "type": "data access"}], "associated-tools": [{"url": "http://molmedb.upol.cz/compare", "name": "Comparator"}]}, "legacy-ids": ["biodbcore-001281", "bsg-d001281"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Cheminformatics", "Biochemistry", "Molecular Chemistry", "Chemistry", "Molecular Physical Chemistry", "Molecular Dynamics", "Computational Chemistry"], "domains": ["Chemical formula", "Molecular structure", "Chemical structure", "Molecular entity", "Chemical entity", "Molecular function", "Transport", "Small molecule binding", "Cellular localization", "Molecular interaction", "Small molecule", "Molecular weight", "Chemical descriptor"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Chemical probes", "Literature annotations defined by experimental results"], "countries": ["Czech Republic"], "name": "FAIRsharing record for: MolMeDB: Molecules on Membranes Database", "abbreviation": "MolMeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.CWzk3C", "doi": "10.25504/FAIRsharing.CWzk3C", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MolMeDB is an open chemistry database concerning the interaction of molecules with membranes.", "publications": [{"id": 2000, "pubmed_id": null, "title": "MolMeDB: Molecules on Membranes Database", "year": 2019, "url": "https://www.biorxiv.org/content/10.1101/472167v2", "authors": "Jakub Jura\u010dka, Martin \u0160rejber, Michaela Mel\u00edkov\u00e1, V\u00e1clav Bazgier, Karel Berka", "journal": "Database (Oxford)", "doi": null, "created_at": "2021-09-30T08:26:05.114Z", "updated_at": "2021-09-30T11:28:40.773Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1495, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2028", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:13.040Z", "metadata": {"doi": "10.25504/FAIRsharing.9d5f5r", "name": "Biological General Repository for Interaction Datasets", "status": "ready", "contacts": [{"contact-email": "biogridadmin@gmail.com"}], "homepage": "http://www.thebiogrid.org", "citations": [{"doi": "10.1093/nar/gkj109", "pubmed-id": 16381927, "publication-id": 485}], "identifier": 2028, "description": "The Biological General Repository for Interaction Datasets (BioGRID) is a public database that archives and disseminates genetic and protein interaction data from model organisms and humans. BioGRID currently holds over\u00a01,740,000 interactions\u00a0curated from both high-throughput datasets and individual focused studies, as derived from over 70,000+ publications in the primary literature. Complete coverage of the entire literature is maintained for budding yeast (S. cerevisiae), fission yeast (S. pombe) and thale cress (A. thaliana), and efforts to expand curation across multiple metazoan species are underway. All data are freely provided via our search index and available for download in many standardized formats.", "abbreviation": "BioGRID", "access-points": [{"url": "https://webservice.thebiogrid.org/", "name": "Retrieval of BioGRID interaction data", "type": "REST"}, {"url": "http://wiki.thebiogrid.org/doku.php/biogridrest", "name": "RESTful Web Service Listing", "type": "REST"}], "support-links": [{"url": "https://thebiogrid.org/", "name": "Latest news", "type": "Blog/News"}, {"url": "http://wiki.thebiogrid.org/doku.php", "name": "Help and Support Resources", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCIdwfNwL9gi4oLBUqDB189g", "name": "Youtube", "type": "Video"}, {"url": "https://github.com/BioGRID", "name": "GitHub", "type": "Github"}, {"url": "https://twitter.com/biogrid", "name": "@biogrid", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "http://thebiogrid.org/download.php", "name": "Download", "type": "data access"}, {"url": "http://wiki.thebiogrid.org/doku.php/advanced_search", "name": "Advanced search", "type": "data access"}, {"url": "http://wiki.thebiogrid.org/doku.php/contribute", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://prohitsms.com/Prohits_download/list.php", "name": "ProHits"}, {"url": "http://genemania.org", "name": "GeneMania"}, {"url": "http://www.cytoscape.org", "name": "Cytoscape"}, {"url": "https://orcs.thebiogrid.org/", "name": "ORCS (BioGRID Open Repository of CRISPR Screens)"}, {"url": "https://wiki.thebiogrid.org/doku.php/biogridplugin2", "name": "BioGRID Plugin 2.0"}, {"url": "https://wiki.thebiogrid.org/doku.php/biogrid_tab_file_loader_plugin", "name": "BioGRID TAB File Loader Plugin for Cytoscape"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010350", "name": "re3data:r3d100010350", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007393", "name": "SciCrunch:RRID:SCR_007393", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000495", "bsg-d000495"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Biochemistry", "Bioinformatics", "Chemical Biology", "Proteomics", "Life Science", "Systems Biology"], "domains": ["Protein interaction", "Interactome", "Protein modification", "Post-translational protein modification", "Regulation of post-translational protein modification", "Molecular interaction", "High-throughput screening", "Protein", "Gene", "Biocuration"], "taxonomies": ["Arabidopsis thaliana", "Bos taurus", "Caenorhabditis elegans", "Candida albicans", "Drosophila melanogaster", "Escherichia coli K12", "Gallus gallus", "Hepatitis C virus", "Homo sapiens", "Human immunodeficiency virus", "Mus musculus", "Plasmodium falciparum", "Rattus norvegicus", "Saccharomyces cerevisiae", "SARS-CoV-2", "Schizosaccharomyces pombe", "Xenopus laevis"], "user-defined-tags": ["Physical interaction"], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: Biological General Repository for Interaction Datasets", "abbreviation": "BioGRID", "url": "https://fairsharing.org/10.25504/FAIRsharing.9d5f5r", "doi": "10.25504/FAIRsharing.9d5f5r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Biological General Repository for Interaction Datasets (BioGRID) is a public database that archives and disseminates genetic and protein interaction data from model organisms and humans. BioGRID currently holds over\u00a01,740,000 interactions\u00a0curated from both high-throughput datasets and individual focused studies, as derived from over 70,000+ publications in the primary literature. Complete coverage of the entire literature is maintained for budding yeast (S. cerevisiae), fission yeast (S. pombe) and thale cress (A. thaliana), and efforts to expand curation across multiple metazoan species are underway. All data are freely provided via our search index and available for download in many standardized formats.", "publications": [{"id": 485, "pubmed_id": 16381927, "title": "BioGRID: a general repository for interaction datasets.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj109", "authors": "Stark C., Breitkreutz BJ., Reguly T., Boucher L., Breitkreutz A., Tyers M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj109", "created_at": "2021-09-30T08:23:12.750Z", "updated_at": "2021-09-30T08:23:12.750Z"}, {"id": 1211, "pubmed_id": 12620108, "title": "The GRID: the General Repository for Interaction Datasets.", "year": 2003, "url": "http://doi.org/10.1186/gb-2003-4-3-r23", "authors": "Breitkreutz BJ,Stark C,Tyers M", "journal": "Genome Biol", "doi": "10.1186/gb-2003-4-3-r23", "created_at": "2021-09-30T08:24:34.967Z", "updated_at": "2021-09-30T08:24:34.967Z"}, {"id": 1346, "pubmed_id": 33070389, "title": "The BioGRID database: A comprehensive biomedical resource of curated protein, genetic, and chemical interactions.", "year": 2020, "url": "http://doi.org/10.1002/pro.3978", "authors": "Oughtred R,Rust J,Chang C,Breitkreutz BJ,Stark C,Willems A,Boucher L,Leung G,Kolas N,Zhang F,Dolma S,Coulombe-Huntington J,Chatr-Aryamontri A,Dolinski K,Tyers M", "journal": "Protein Sci", "doi": "10.1002/pro.3978", "created_at": "2021-09-30T08:24:50.643Z", "updated_at": "2021-09-30T08:24:50.643Z"}, {"id": 2522, "pubmed_id": 30476227, "title": "The BioGRID interaction database: 2019 update", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1079", "authors": "Oughtred R, Stark C, Breitkreutz BJ, Rust J, Boucher L, Chang C, Kolas N, O'Donnell L, Leung G, McAdam R, Zhang F, Dolma S, Willems A, Coulombe-Huntington J, Chatr-Aryamontri A, Dolinski K, Tyers M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1079", "created_at": "2021-09-30T08:27:09.407Z", "updated_at": "2021-09-30T11:29:38.670Z"}], "licence-links": [{"licence-name": "BioGRID Terms and Conditions", "licence-id": 80, "link-id": 2393, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2141", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-14T08:23:37.523Z", "metadata": {"doi": "10.25504/FAIRsharing.7qexb2", "name": "Plant DNA C-values database", "status": "ready", "contacts": [{"contact-name": "Ilia Leitch", "contact-email": "i.leitch@kew.org", "contact-orcid": "0000-0002-3837-8186"}], "homepage": "http://data.kew.org/cvalues/", "identifier": 2141, "description": "A database containing genome size (C-value) data for all groups of land plants and red, green and brown algae.", "abbreviation": "Plant C-Values", "support-links": [{"url": "dnac-value@kew.org", "type": "Support email"}, {"url": "http://data.kew.org/cvalues/searchguide.html", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://data.kew.org/cvalues/updates.html", "name": "ad-hoc release", "type": "data release"}, {"url": "http://data.kew.org/cvalues/CvalSubmission.html", "name": "submit", "type": "data curation"}, {"url": "http://data.kew.org/cvalues/CvalServlet?querytype=1", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000612", "bsg-d000612"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genome"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Plant DNA C-values database", "abbreviation": "Plant C-Values", "url": "https://fairsharing.org/10.25504/FAIRsharing.7qexb2", "doi": "10.25504/FAIRsharing.7qexb2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database containing genome size (C-value) data for all groups of land plants and red, green and brown algae.", "publications": [{"id": 607, "pubmed_id": 17090588, "title": "Eukaryotic genome size databases", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl828", "authors": "Gregory TR, Nicol JA, Tamm H, Kullman B, Kullman K, Leitch IJ, Murray BG, Kapraun DF, Greilhuber J, Bennett MD.", "journal": "Nucleic Acids Research 35 (Database issue): D332-D338.", "doi": "10.1093/nar/gkl828", "created_at": "2021-09-30T08:23:26.578Z", "updated_at": "2021-09-30T08:23:26.578Z"}, {"id": 608, "pubmed_id": 24288377, "title": "Recent updates and developments to plant genome size databases.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1195", "authors": "Garcia S,Leitch IJ,Anadon-Rosell A,Canela MA,Galvez F,Garnatje T,Gras A,Hidalgo O,Johnston E,Mas de Xaxars G,Pellicer J,Siljak-Yakovlev S,Valles J,Vitales D,Bennett MD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1195", "created_at": "2021-09-30T08:23:26.733Z", "updated_at": "2021-09-30T11:28:48.117Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2021", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:18.550Z", "metadata": {"doi": "10.25504/FAIRsharing.bemzxg", "name": "PhysioNet", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "contact@physionet.org"}], "homepage": "https://www.physionet.org/", "citations": [{"doi": "10.1161/01.CIR.101.23.e215", "pubmed-id": 10851218, "publication-id": 1412}], "identifier": 2021, "description": "The PhysioNet Resource is intended to stimulate current research and new investigations in the study of complex biomedical and physiologic signals. It offers free web access to large collections of recorded physiologic signals and related open-source software. Data includes well-characterized digital recordings of physiologic signals, time series, and related data for use by the biomedical research community. PhysioNet includes collections of cardiopulmonary, neural, and other biomedical signals from healthy subjects and patients with a variety of conditions with major public health implications, including sudden cardiac death, congestive heart failure, epilepsy, gait disorders, sleep apnea, and aging.", "abbreviation": "PhysioNet", "support-links": [{"url": "https://www.physionet.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.physionet.org/about", "name": "About", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "https://www.physionet.org/content/?types=0", "name": "Search", "type": "data access"}, {"url": "https://www.physionet.org/about/publish/", "name": "Submitting Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011561", "name": "re3data:r3d100011561", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007345", "name": "SciCrunch:RRID:SCR_007345", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000488", "bsg-d000488"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Physiology", "Biomedical Science"], "domains": ["Epilepsy", "Aging", "Signaling", "Sleep", "Cardiovascular disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PhysioNet", "abbreviation": "PhysioNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.bemzxg", "doi": "10.25504/FAIRsharing.bemzxg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PhysioNet Resource is intended to stimulate current research and new investigations in the study of complex biomedical and physiologic signals. It offers free web access to large collections of recorded physiologic signals and related open-source software. Data includes well-characterized digital recordings of physiologic signals, time series, and related data for use by the biomedical research community. PhysioNet includes collections of cardiopulmonary, neural, and other biomedical signals from healthy subjects and patients with a variety of conditions with major public health implications, including sudden cardiac death, congestive heart failure, epilepsy, gait disorders, sleep apnea, and aging.", "publications": [{"id": 477, "pubmed_id": 14716615, "title": "PhysioNet: an NIH research resource for complex signals.", "year": 2004, "url": "http://doi.org/10.1016/j.jelectrocard.2003.09.038", "authors": "Costa M., Moody GB., Henry I., Goldberger AL.,", "journal": "J Electrocardiol", "doi": "10.1016/j.jelectrocard.2003.09.038", "created_at": "2021-09-30T08:23:11.837Z", "updated_at": "2021-09-30T08:23:11.837Z"}, {"id": 1412, "pubmed_id": 10851218, "title": "PhysioBank, PhysioToolkit, and PhysioNet: components of a new research resource for complex physiologic signals.", "year": 2000, "url": "http://doi.org/10.1161/01.cir.101.23.e215", "authors": "Goldberger AL,Amaral LA,Glass L,Hausdorff JM,Ivanov PC,Mark RG,Mietus JE,Moody GB,Peng CK,Stanley HE", "journal": "Circulation", "doi": "10.1161/01.CIR.101.23.e215", "created_at": "2021-09-30T08:24:57.826Z", "updated_at": "2021-09-30T08:24:57.826Z"}], "licence-links": [{"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 2395, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2396, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2397, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 2398, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2399, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 2400, "relation": "undefined"}, {"licence-name": "PhysioNet Credentialed Health Data License 1.5.0", "licence-id": 667, "link-id": 2401, "relation": "undefined"}, {"licence-name": "PhysioNet Restricted Health Data License 1.5.0", "licence-id": 668, "link-id": 2402, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2175", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:28.097Z", "metadata": {"doi": "10.25504/FAIRsharing.rt38zh", "name": "Compartmentalized Protein-Protein Interaction", "status": "ready", "contacts": [{"contact-name": "Daniel Veres", "contact-email": "veres.daniel1@med.semmelweis-univ.hu", "contact-orcid": "0000-0002-2968-0666"}], "homepage": "http://comppi.linkgroup.hu/", "identifier": 2175, "description": "The compartmentalized protein-protein interaction database (ComPPI), provides qualitative information on the interactions, proteins and their localizations integrated from multiple databases for protein-protein interaction network analysis.", "abbreviation": "ComPPI", "support-links": [{"url": "http://comppi.linkgroup.hu/contact", "type": "Contact form"}, {"url": "http://comppi.linkgroup.hu/help", "type": "Help documentation"}, {"url": "http://comppi.linkgroup.hu/help/tutorial", "type": "Training documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://comppi.linkgroup.hu/downloads", "name": "download", "type": "data access"}, {"url": "http://comppi.linkgroup.hu/downloads/get_release/comppi.sql", "name": "sql dump", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://comppi.linkgroup.hu/protein_search", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000648", "bsg-d000648"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Network model", "Interactome", "Cellular component", "Cellular localization", "Confidence score"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: Compartmentalized Protein-Protein Interaction", "abbreviation": "ComPPI", "url": "https://fairsharing.org/10.25504/FAIRsharing.rt38zh", "doi": "10.25504/FAIRsharing.rt38zh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The compartmentalized protein-protein interaction database (ComPPI), provides qualitative information on the interactions, proteins and their localizations integrated from multiple databases for protein-protein interaction network analysis.", "publications": [{"id": 692, "pubmed_id": null, "title": "ComPPI: a cellular compartment-specific database for protein-protein interaction network analysis", "year": 2015, "url": "https://doi.org/10.1093/nar/gku1007", "authors": "Veres, V.D., Gyurko, M.D., Thaler, B., Szalay, K., Fazekas, D., Korcsmaros, T. and Csermely, P.", "journal": "Nucleic Acid Res. Database Issue", "doi": null, "created_at": "2021-09-30T08:23:36.269Z", "updated_at": "2021-09-30T11:28:30.439Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 903, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2878", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-31T13:51:43.000Z", "updated-at": "2021-11-24T13:15:36.253Z", "metadata": {"doi": "10.25504/FAIRsharing.UiP2kL", "name": "Therapeutic Structural Antibody Database", "status": "ready", "contacts": [{"contact-name": "Professor Charlotte Deane", "contact-email": "deane@stats.ox.ac.uk", "contact-orcid": "0000-0003-1388-2252"}], "homepage": "http://opig.stats.ox.ac.uk/webapps/newsabdab/therasabdab", "identifier": 2878, "description": "The Therapeutic Structural Antibody Database tracks all antibody- and nanobody-related therapeutics recognized by the World Health Organisation (WHO), and identifies any corresponding structures in the Structural Antibody Database (SAbDab) with near-exact or exact variable domain sequence matches. Thera-SAbDab is synchronized with SAbDab to update weekly, reflecting new Protein Data Bank entries and the availability of new sequence data published by the WHO. Each therapeutic summary page lists structural coverage (with links to the appropriate SAbDab entries), alignments showing where any near-matches deviate in sequence, and accompanying metadata, such as intended target and investigated conditions. Thera-SAbDab can be queried by therapeutic name, by a combination of metadata, or by variable domain sequence - returning all therapeutics that are within a specified sequence identity over a specified region of the query. The sequences of all therapeutics listed in Thera-SAbDab are downloadable as a single file with accompanying metadata.", "abbreviation": "Thera-SAbDab", "support-links": [{"url": "opig@stats.ox.ac.uk", "name": "Webapps Maintenance/Enquiry Email", "type": "Support email"}], "year-creation": 2019, "associated-tools": [{"url": "http://opig.stats.ox.ac.uk/webapps/sabdab/", "name": "Structural Antibody Database (SAbDab)"}, {"url": "http://opig.stats.ox.ac.uk/webapps/sabpred/", "name": "Structural Antibody Prediction Tools (SAbPred)"}]}, "legacy-ids": ["biodbcore-001379", "bsg-d001379"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biotherapeutics", "Structural Biology"], "domains": ["Antibody"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "Germany"], "name": "FAIRsharing record for: Therapeutic Structural Antibody Database", "abbreviation": "Thera-SAbDab", "url": "https://fairsharing.org/10.25504/FAIRsharing.UiP2kL", "doi": "10.25504/FAIRsharing.UiP2kL", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Therapeutic Structural Antibody Database tracks all antibody- and nanobody-related therapeutics recognized by the World Health Organisation (WHO), and identifies any corresponding structures in the Structural Antibody Database (SAbDab) with near-exact or exact variable domain sequence matches. Thera-SAbDab is synchronized with SAbDab to update weekly, reflecting new Protein Data Bank entries and the availability of new sequence data published by the WHO. Each therapeutic summary page lists structural coverage (with links to the appropriate SAbDab entries), alignments showing where any near-matches deviate in sequence, and accompanying metadata, such as intended target and investigated conditions. Thera-SAbDab can be queried by therapeutic name, by a combination of metadata, or by variable domain sequence - returning all therapeutics that are within a specified sequence identity over a specified region of the query. The sequences of all therapeutics listed in Thera-SAbDab are downloadable as a single file with accompanying metadata.", "publications": [{"id": 2681, "pubmed_id": 31555805, "title": "Thera-SAbDab: the Therapeutic Structural Antibody Database", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz827", "authors": "Matthew IJ Raybould, Claire Marks, Alan P Lewis, Jiye Shi, Alexander Bujotzek, Bruck Taddese, Charlotte M Deane", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz827", "created_at": "2021-09-30T08:27:29.255Z", "updated_at": "2021-09-30T08:27:29.255Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2750", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-19T13:57:34.000Z", "updated-at": "2021-12-06T10:47:23.816Z", "metadata": {"name": "ionomicHUB", "status": "in_development", "contacts": [{"contact-name": "David E. Salt", "contact-email": "dsalt@purdue.edu"}], "homepage": "https://www.ionomicshub.org/home/PiiMS", "identifier": 2750, "description": "ionomicHUB provides curated ionomic data on many thousands of plant samples freely available to the public. It is an international collaborative cyber research environment to help identify and understand the genes and gene networks that function to control the ionome, the mineral nutrient and trace element composition of an organism or tissue. The iHUB is a collaborative workspace with components that integrate both cyberinfrastructure and human interactions to maximize both community access to ionomic resources, and knowledge extraction from these resources. An ongoing site migration has resulted in this resource being listed with an \"In development\" status.", "abbreviation": "iHUB", "support-links": [{"url": "https://www.ionomicshub.org/ionomicsatlas/quickstartguide.pdf", "name": "Ionomics Atlas Quick Start Guide", "type": "Help documentation"}, {"url": "http://ionomics.blogspot.com/feeds/posts/default?alt=rss", "name": "RSS Feed", "type": "Blog/News"}], "year-creation": 2006, "data-processes": [{"url": "https://www.ionomicshub.org/arabidopsis/piims/DataSearch.action", "name": "Search Arabidopsis", "type": "data access"}, {"url": "https://www.ionomicshub.org/rice/piims/DataSearch.action", "name": "Search Rice", "type": "data access"}, {"url": "https://www.ionomicshub.org/yeast/beta/DataSearch.action", "name": "Search Yeast", "type": "data access"}, {"url": "https://www.ionomicshub.org/soybean/piims/DataSearch.action", "name": "Search Soybean", "type": "data access"}, {"url": "https://www.ionomicshub.org/home/PiiMS/dataexchange?category=Maize", "name": "Browse Maize", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010857", "name": "re3data:r3d100010857", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001248", "bsg-d001248"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Genetics", "Life Science"], "domains": ["Protein interaction", "Gene"], "taxonomies": ["Arabidopsis thaliana", "Glycine max", "Oryza sativa", "Zea mays"], "user-defined-tags": ["Income"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: ionomicHUB", "abbreviation": "iHUB", "url": "https://fairsharing.org/fairsharing_records/2750", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ionomicHUB provides curated ionomic data on many thousands of plant samples freely available to the public. It is an international collaborative cyber research environment to help identify and understand the genes and gene networks that function to control the ionome, the mineral nutrient and trace element composition of an organism or tissue. The iHUB is a collaborative workspace with components that integrate both cyberinfrastructure and human interactions to maximize both community access to ionomic resources, and knowledge extraction from these resources. An ongoing site migration has resulted in this resource being listed with an \"In development\" status.", "publications": [{"id": 2714, "pubmed_id": 17189337, "title": "Purdue ionomics information management system. An integrated functional genomics platform.", "year": 2006, "url": "http://doi.org/10.1104/pp.106.092528", "authors": "Baxter I,Ouzzani M,Orcun S,Kennedy B,Jandhyala SS,Salt DE", "journal": "Plant Physiol", "doi": "10.1104/pp.106.092528", "created_at": "2021-09-30T08:27:33.305Z", "updated_at": "2021-09-30T08:27:33.305Z"}], "licence-links": [{"licence-name": "University of Nottingham Terms of Use", "licence-id": 825, "link-id": 1737, "relation": "undefined"}, {"licence-name": "University of Nottingham Privacy", "licence-id": 824, "link-id": 1738, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3222", "type": "fairsharing-records", "attributes": {"created-at": "2020-11-02T14:04:29.000Z", "updated-at": "2021-12-06T10:47:40.093Z", "metadata": {"name": "Linked Earth Wiki", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "linkedearth@gmail.com"}], "homepage": "http://wiki.linked.earth/Main_Page", "citations": [], "identifier": 3222, "description": "The LinkedEarth wiki provides a publicly-accessible Earth Science and Paleoclimatology database and enables curation of that database by paleoclimate experts. It aims to foster the development of standards so that paleoclimate data are easier to analyze, share, and re-use.", "abbreviation": "LinkedEarth Wiki", "support-links": [{"url": "http://linked.earth/contact-us/", "name": "Contact Form", "type": "Contact form"}, {"url": "http://wiki.linked.earth/FAQ", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://wiki.linked.earth/Get_Started_with_the_LinkedEarth_wiki", "name": "Getting Started", "type": "Help documentation"}, {"url": "https://github.com/LinkedEarth", "name": "GitHub Project", "type": "Github"}, {"url": "http://wiki.linked.earth/Linked_Earth_Wiki:About", "name": "About", "type": "Help documentation"}, {"url": "http://wiki.linked.earth/Linked_Paleo_Data", "name": "LiPD Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/linked_earth", "name": "@linked_earth", "type": "Twitter"}], "data-processes": [{"url": "http://wiki.linked.earth/Category:Compilation_(L)", "name": "Browse Compilations", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Dataset_(L)", "name": "Browse Datasets", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Publication_(L)", "name": "Browse Publications", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Person_(L)", "name": "Browse People", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Coral", "name": "Map Viewer - Coral", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Document", "name": "Map Viewer - Documentary Archives", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:LakeSediment", "name": "Map Viewer - Lake Sediment", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:MarineSediment", "name": "Map Viewer - Marine Sediment", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:Wood", "name": "Map Viewer - Wood", "type": "data access"}, {"url": "http://wiki.linked.earth/Category:GlacierIce", "name": "Map Viewer - Glacial Ice", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012894", "name": "re3data:r3d100012894", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001736", "bsg-d001736"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Meteorology", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Paleoclimatology"], "countries": ["Worldwide"], "name": "FAIRsharing record for: Linked Earth Wiki", "abbreviation": "LinkedEarth Wiki", "url": "https://fairsharing.org/fairsharing_records/3222", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The LinkedEarth wiki provides a publicly-accessible Earth Science and Paleoclimatology database and enables curation of that database by paleoclimate experts. It aims to foster the development of standards so that paleoclimate data are easier to analyze, share, and re-use.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2911", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T11:24:27.000Z", "updated-at": "2022-02-08T10:32:13.381Z", "metadata": {"doi": "10.25504/FAIRsharing.d1a9bd", "name": "MethBank", "status": "ready", "contacts": [{"contact-name": "Rujiao Li", "contact-email": "lirj@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/methbank/", "citations": [{"doi": "10.1093/nar/gkx1139", "pubmed-id": 29161430, "publication-id": 2812}], "identifier": 2911, "description": "MethBank stores DNA methylome data across a variety of species. MethBank integrates consensus reference methylomes (CRMs) compiled from healthy human samples at different ages, single-base resolution methylomes (SRMs) of both plant and animal species.", "abbreviation": "MethBank", "access-points": [{"url": "http://wbsa.big.ac.cn/", "name": "Web Service for Bisulphite Sequencing Data Analysis (WBSA)", "type": "REST"}], "support-links": [{"url": "zhangzhang@big.ac.cn", "name": "Zhang Zhang", "type": "Support email"}, {"url": "methbank@big.ac.cn", "name": "methbank@big.ac.cn", "type": "Support email"}, {"url": "https://bigd.big.ac.cn/methbank/faq", "name": "FAQ and Documentation", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/methbank/release", "name": "Release Notes", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://bigd.big.ac.cn/methbank/srms/", "name": "Browse Single-base Resolution Methylomes (SRMs)", "type": "data access"}, {"url": "https://bigd.big.ac.cn/methbank/crms/", "name": "Browse Consensus Reference Methylomes (CRMs)", "type": "data access"}, {"url": "https://bigd.big.ac.cn/methbank/jbrowse", "name": "Browse Methylome (JBrowse)", "type": "data access"}, {"url": "https://bigd.big.ac.cn/methbank/downloads", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "ftp://download.big.ac.cn/methbank/Tool/IDMP_v1.0.tar.gz", "name": "IDMP (Identification of differentially methylated promoters)"}, {"url": "https://bigd.big.ac.cn/methbank/methTool/list", "name": "Methylation Tools List"}, {"url": "http://bs-rna.big.ac.cn/", "name": "BS-RNA (Mapping and annotation tool for RNA bisulfite sequencing data)"}, {"url": "https://bigd.big.ac.cn/methbank/tools/age/predictor", "name": "Age Predictor"}]}, "legacy-ids": ["biodbcore-001414", "bsg-d001414"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenomics", "Epigenetics"], "domains": ["DNA methylation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: MethBank", "abbreviation": "MethBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.d1a9bd", "doi": "10.25504/FAIRsharing.d1a9bd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MethBank stores DNA methylome data across a variety of species. MethBank integrates consensus reference methylomes (CRMs) compiled from healthy human samples at different ages, single-base resolution methylomes (SRMs) of both plant and animal species.", "publications": [{"id": 2812, "pubmed_id": 29161430, "title": "MethBank 3.0: a database of DNA methylomes across a variety of species.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1139", "authors": "Li R,Liang F,Li M,Zou D,Sun S,Zhao Y,Zhao W,Bao Y,Xiao J,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1139", "created_at": "2021-09-30T08:27:45.777Z", "updated_at": "2021-09-30T11:29:45.720Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 435, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1737", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:03.840Z", "metadata": {"doi": "10.25504/FAIRsharing.2h8cxh", "name": "autoSNPdb", "status": "ready", "contacts": [{"contact-name": "David Edwards", "contact-email": "dave.edwards@uq.edu.au"}], "homepage": "http://autosnpdb.appliedbioinformatics.com.au", "identifier": 1737, "description": "Implemented the SNP discovery software autoSNP within a relational database to enable the efficient mining of the identified polymorphisms and the detailed interrogation of the data. AutoSNP was selected because it does not require sequence trace files and is thus applicable to a broader range of species and datasets.", "abbreviation": "autoSNPdb", "support-links": [{"url": "http://autosnpdb.appliedbioinformatics.com.au/faq.htm", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://autosnpdb.appliedbioinformatics.com.au/help.htm", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://autosnpdb.appliedbioinformatics.com.au/index.jsp?species=barley", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://autosnpdb.appliedbioinformatics.com.au/BLASTsearch.jsp?species=barley", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000194", "bsg-d000194"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Single nucleotide polymorphism", "Gene"], "taxonomies": ["Brassica", "Hordeum vulgare", "Oryza sativa", "Triticum"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: autoSNPdb", "abbreviation": "autoSNPdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.2h8cxh", "doi": "10.25504/FAIRsharing.2h8cxh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Implemented the SNP discovery software autoSNP within a relational database to enable the efficient mining of the identified polymorphisms and the detailed interrogation of the data. AutoSNP was selected because it does not require sequence trace files and is thus applicable to a broader range of species and datasets.", "publications": [{"id": 255, "pubmed_id": 18854357, "title": "AutoSNPdb: an annotated single nucleotide polymorphism database for crop plants.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn650", "authors": "Duran C., Appleby N., Clark T., Wood D., Imelfort M., Batley J., Edwards D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn650", "created_at": "2021-09-30T08:22:47.531Z", "updated_at": "2021-09-30T08:22:47.531Z"}], "licence-links": [{"licence-name": "autoSNPdb Acknowledgements, Requirements and Disclaimer", "licence-id": 51, "link-id": 173, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2566", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-14T22:07:21.000Z", "updated-at": "2021-12-06T10:47:55.776Z", "metadata": {"doi": "10.25504/FAIRsharing.3wwc0m", "name": "Neotoma Paleoecology Database", "status": "ready", "contacts": [{"contact-name": "Simon Goring", "contact-email": "goring@wisc.edu", "contact-orcid": "0000-0002-2700-4605"}], "homepage": "https://www.neotomadb.org/", "citations": [], "identifier": 2566, "description": "The mission of the Neotoma Paleoecology Database is to provide a high-quality, community-curated, and sustainable public repository for paleoecological data, spanning the last 2.5 million years, including fossil pollen, mammal, diatom, ostracode, and geochemical data. Neotoma facilitates multi-scale, multi-disciplinary research and education. It is available for use by other data cooperatives that are welcome to develop their own individualized frontends to the database, as well as remotely input and update data. The Neotoma Paleoecology Database is an international coalition of constituent databases, and provides a common data model and user-oriented services for these constituent databases. Neotoma data are public and made freely available to all.", "abbreviation": "Neotoma", "access-points": [{"url": "http://api.neotomadb.org", "name": "A data search and download tool.", "type": "REST"}], "support-links": [{"url": "https://www.neotomadb.org/news", "name": "News", "type": "Blog/News"}, {"url": "neotoma-contact@googlegroups.com", "name": "Contact email", "type": "Support email"}, {"url": "https://groups.google.com/forum/#!forum/neotoma-updates", "name": "NeotomaDB forum", "type": "Forum"}, {"url": "https://www.neotomadb.org/documents", "name": "Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/neotomadb", "name": "neotomadb on twitter", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://www.neotomadb.org/data/category/explorer", "name": "Explore Data", "type": "data access"}, {"url": "https://www.neotomadb.org/data/category/contribution", "name": "Contribute", "type": "data curation"}], "associated-tools": [{"url": "https://cran.r-project.org/web/packages/neotoma/index.html", "name": "neotoma R package 1.7.4"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011761", "name": "re3data:r3d100011761", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002190", "name": "SciCrunch:RRID:SCR_002190", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001049", "bsg-d001049"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Paleontology", "Geography", "Ecology", "Natural Science", "Earth Science", "Life Science", "Natural History"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Paleolimnology"], "countries": ["United States"], "name": "FAIRsharing record for: Neotoma Paleoecology Database", "abbreviation": "Neotoma", "url": "https://fairsharing.org/10.25504/FAIRsharing.3wwc0m", "doi": "10.25504/FAIRsharing.3wwc0m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The mission of the Neotoma Paleoecology Database is to provide a high-quality, community-curated, and sustainable public repository for paleoecological data, spanning the last 2.5 million years, including fossil pollen, mammal, diatom, ostracode, and geochemical data. Neotoma facilitates multi-scale, multi-disciplinary research and education. It is available for use by other data cooperatives that are welcome to develop their own individualized frontends to the database, as well as remotely input and update data. The Neotoma Paleoecology Database is an international coalition of constituent databases, and provides a common data model and user-oriented services for these constituent databases. Neotoma data are public and made freely available to all.", "publications": [{"id": 2227, "pubmed_id": null, "title": "The Neotoma Paleoecology Database, a multiproxy, international, community-curated data resource", "year": 2018, "url": "http://doi.org/10.1017/qua.2017.105", "authors": "J. W. Williams et al.", "journal": "Quaternary Research", "doi": "10.1017/qua.2017.105", "created_at": "2021-09-30T08:26:30.916Z", "updated_at": "2021-09-30T08:26:30.916Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2176, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3087", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-24T10:18:19.000Z", "updated-at": "2022-02-08T10:41:53.122Z", "metadata": {"doi": "10.25504/FAIRsharing.dec381", "name": "PermaSense :: GSN", "status": "ready", "contacts": [{"contact-name": "Lothar Thiele", "contact-email": "thiele@ethz.ch", "contact-orcid": "0000-0001-6139-868X"}], "homepage": "http://data.permasense.ch/", "identifier": 3087, "description": "PermaSense is a consortium of researchers and research projects bringing together different engineering and environmental research disciplines from several Swiss research institutions and companies. They develop, deploy and operate wireless sensing systems customized for long-term autonomous operation in high-mountain environments. Around this central element they develop concepts, methods and tools to investigate and to quantify the connection between climate, cryosphere (permafrost, glaciers, snow) and geomorphodynamics. Data are available on PermaSense :: GSN.", "abbreviation": "PermaSense :: GSN", "support-links": [{"url": "https://www.permasense.ch/en/news.html", "name": "News", "type": "Blog/News"}, {"url": "https://www.permasense.ch/dam/jcr:36a6e277-a10e-4a5a-bcae-5c535b236999/permasense_data_tutorial_rev1.1.pdf", "name": "Tutorial", "type": "Help documentation"}], "data-processes": [{"url": "http://data.permasense.ch/data.html#data", "name": "Browse & Search", "type": "data access"}, {"url": "http://data.permasense.ch/topology.html#topology", "name": "Network Topology", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013049", "name": "re3data:r3d100013049", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001595", "bsg-d001595"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Geophysics", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere", "Geomorphodynamics", "Glacier", "Mountain", "permafrost", "snow", "Temperature", "Topology", "weather"], "countries": ["Switzerland"], "name": "FAIRsharing record for: PermaSense :: GSN", "abbreviation": "PermaSense :: GSN", "url": "https://fairsharing.org/10.25504/FAIRsharing.dec381", "doi": "10.25504/FAIRsharing.dec381", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PermaSense is a consortium of researchers and research projects bringing together different engineering and environmental research disciplines from several Swiss research institutions and companies. They develop, deploy and operate wireless sensing systems customized for long-term autonomous operation in high-mountain environments. Around this central element they develop concepts, methods and tools to investigate and to quantify the connection between climate, cryosphere (permafrost, glaciers, snow) and geomorphodynamics. Data are available on PermaSense :: GSN.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2035", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.557Z", "metadata": {"doi": "10.25504/FAIRsharing.vssch2", "name": "PIR SuperFamily", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "pirmail@georgetown.edu"}], "homepage": "https://proteininformationresource.org/pirwww/dbinfo/pirsf.shtml", "identifier": 2035, "description": "The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", "abbreviation": "PIRSF", "support-links": [{"url": "https://proteininformationresource.org/pirwww/about/doc/tutorials/pirsftutorial.ppt", "name": "Tutorial (PPT)", "type": "Training documentation"}], "year-creation": 1984, "data-processes": [{"url": "ftp://ftp.pir.georgetown.edu/databases/pirsf/", "name": "Download", "type": "data release"}, {"url": "http://research.bioinformatics.udel.edu/peptidematch/index.jsp", "name": "advanced search", "type": "data access"}, {"url": "https://proteininformationresource.org/pirwww/search/pirsfscan.shtml", "name": "Scan", "type": "data access"}, {"url": "https://proteininformationresource.org/pirwww/search/batch_sf.shtml", "name": "Batch Retrieval", "type": "data access"}]}, "legacy-ids": ["biodbcore-000502", "bsg-d000502"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Molecular structure", "Sequence cluster", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PIR SuperFamily", "abbreviation": "PIRSF", "url": "https://fairsharing.org/10.25504/FAIRsharing.vssch2", "doi": "10.25504/FAIRsharing.vssch2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", "publications": [{"id": 2898, "pubmed_id": 14681371, "title": "PIRSF: family classification system at the Protein Information Resource.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh097", "authors": "Wu CH., Nikolskaya A., Huang H., Yeh LS., Natale DA., Vinayaka CR., Hu ZZ., Mazumder R., Kumar S., Kourtesis P., Ledley RS., Suzek BE., Arminski L., Chen Y., Zhang J., Cardenas JL., Chung S., Castro-Alvear J., Dinkov G., Barker WC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh097", "created_at": "2021-09-30T08:27:56.848Z", "updated_at": "2021-09-30T08:27:56.848Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1932, "relation": "undefined"}, {"licence-name": "PIR Terms of Use", "licence-id": 669, "link-id": 1933, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1703", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:20.162Z", "metadata": {"doi": "10.25504/FAIRsharing.bw1e90", "name": "Human Ageing Genomic Resources", "status": "ready", "contacts": [{"contact-name": "Jo\u00e3o Pedro de Magalh\u00e3es", "contact-email": "jp@senescence.info"}], "homepage": "https://genomics.senescence.info/", "citations": [], "identifier": 1703, "description": "The Human Ageing Genomic Resources (HAGR) is a collection of databases and tools for the biology and genetics of ageing. HAGR features several databases with high-quality, manually-curated data: 1) GenAge, a database of genes associated with ageing in humans and model organisms; 2) AnAge, an extensive collection of longevity records and complementary traits for over 4,000 vertebrate species; and 3) GenDR, a database containing both gene mutations that interfere with dietary restriction-mediated lifespan extension and consistent gene expression changes induced by dietary restriction.", "abbreviation": "HAGR", "support-links": [{"url": "aging@iv.ac.uk", "type": "Support email"}, {"url": "http://genomics.senescence.info/help.html", "type": "Help documentation"}, {"url": "https://twitter.com/AgingBiology", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "http://genomics.senescence.info/download.html", "name": "Data Download", "type": "data access"}, {"url": "http://genomics.senescence.info/genes/search.php?show=5&sort=1&page=1", "name": "browse", "type": "data access"}, {"url": "http://genomics.senescence.info/genes/search.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://genomics.senescence.info/software/perl.html", "name": "Ageing Research Computational Tools 0.9"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011871", "name": "re3data:r3d100011871", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007700", "name": "SciCrunch:RRID:SCR_007700", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000160", "bsg-d000160"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geriatric Medicine", "Genomics", "Biomedical Science"], "domains": ["Model organism", "Aging", "Phenotype", "Disease"], "taxonomies": ["Caenorhabditis briggsae", "Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Podospora anserina", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Human Ageing Genomic Resources", "abbreviation": "HAGR", "url": "https://fairsharing.org/10.25504/FAIRsharing.bw1e90", "doi": "10.25504/FAIRsharing.bw1e90", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Ageing Genomic Resources (HAGR) is a collection of databases and tools for the biology and genetics of ageing. HAGR features several databases with high-quality, manually-curated data: 1) GenAge, a database of genes associated with ageing in humans and model organisms; 2) AnAge, an extensive collection of longevity records and complementary traits for over 4,000 vertebrate species; and 3) GenDR, a database containing both gene mutations that interfere with dietary restriction-mediated lifespan extension and consistent gene expression changes induced by dietary restriction.", "publications": [{"id": 1924, "pubmed_id": 18986374, "title": "The Human Ageing Genomic Resources: online databases and tools for biogerontologists.", "year": 2008, "url": "http://doi.org/10.1111/j.1474-9726.2008.00442.x", "authors": "de Magalh\u00e3es JP., Budovsky A., Lehmann G., Costa J., Li Y., Fraifeld V., Church GM.,", "journal": "Aging Cell", "doi": "10.1111/j.1474-9726.2008.00442.x", "created_at": "2021-09-30T08:25:56.524Z", "updated_at": "2021-09-30T08:25:56.524Z"}], "licence-links": [{"licence-name": "HAGR Disclaimer, Credits and Copyright", "licence-id": 373, "link-id": 161, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 191, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3146", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T13:42:20.000Z", "updated-at": "2021-12-02T09:42:32.695Z", "metadata": {"name": "HydroClient", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "help@cuahsi.org"}], "homepage": "http://data.cuahsi.org/", "citations": [], "identifier": 3146, "description": "HydroClient allows the searching, preview, and downloading of time series data such as stream gauge measurements, meteorological station measurements, repeated \u201cgrab\u201d samples, and soil moisture measurements. HydroClient enables users to discover and preview plots of data from federal agencies, university researchers, and watershed organizations all in the same format.", "abbreviation": "HydroClient", "access-points": [{"url": "http://hiscentral.cuahsi.org/webservices/hiscentral.asmx", "name": "HISCentral Web Services", "type": "REST"}], "support-links": [{"url": "https://cuahsi.zendesk.com/hc/en-us/sections/201050037-HydroClient-User-Guide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://twitter.com/CUAHSI", "name": "@CUAHSI", "type": "Twitter"}], "data-processes": [{"url": "http://data.cuahsi.org/", "name": "Search", "type": "data access"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001657", "bsg-d001657"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Meteorology", "Hydrology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: HydroClient", "abbreviation": "HydroClient", "url": "https://fairsharing.org/fairsharing_records/3146", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HydroClient allows the searching, preview, and downloading of time series data such as stream gauge measurements, meteorological station measurements, repeated \u201cgrab\u201d samples, and soil moisture measurements. HydroClient enables users to discover and preview plots of data from federal agencies, university researchers, and watershed organizations all in the same format.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1590", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.474Z", "metadata": {"doi": "10.25504/FAIRsharing.1ety1h", "name": "GeneSigDB: a manually curated database and resource for analysis of gene expression signatures", "status": "deprecated", "contacts": [{"contact-name": "Aedin Culhane", "contact-email": "aedin@jimmy.harvard.edu"}], "homepage": "http://www.genesigdb.org", "identifier": 1590, "description": "Gene Signature DataBase (GeneSigDB) is a database of gene signatures (or gene sets) that have been extracted and manually curated from articles that are indexed by PubMed.", "access-points": [{"url": "http://www.genesigdb.org/genesigdb/documentation.jsp#Programmatic_Access", "name": "RESTful API functions", "type": "REST"}], "support-links": [{"url": "http://www.genesigdb.org/genesigdb/", "type": "Contact form"}, {"url": "genesigdb@jimmy.harvard.edu", "type": "Support email"}, {"url": "http://www.genesigdb.org/genesigdb/documentation.jsp", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"name": "biannual release (as in twice a year)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"url": "http://www.genesigdb.org/genesigdb/downloadall.jsp", "name": "access to historical files available", "type": "data versioning"}, {"name": "raw data, scripts and instructions provided to regenerate standardized files.", "type": "data versioning"}, {"url": "http://www.genesigdb.org/genesigdb/downloadall.jsp", "name": "file download(tab delimited)", "type": "data access"}, {"url": "http://www.genesigdb.org/genesigdb/browse.html", "name": "browse", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://www.genesigdb.org/genesigdb/advancedgenesearch.jsp", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000045", "bsg-d000045"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Bibliography", "Cancer", "Curated information", "Gene"], "taxonomies": ["All", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GeneSigDB: a manually curated database and resource for analysis of gene expression signatures", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.1ety1h", "doi": "10.25504/FAIRsharing.1ety1h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gene Signature DataBase (GeneSigDB) is a database of gene signatures (or gene sets) that have been extracted and manually curated from articles that are indexed by PubMed.", "publications": [{"id": 67, "pubmed_id": 19934259, "title": "GeneSigDB--a curated database of gene expression signatures.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1015", "authors": "Culhane AC., Schwarzl T., Sultana R., Picard KC., Picard SC., Lu TH., Franklin KR., French SJ., Papenhausen G., Correll M., Quackenbush J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp1015", "created_at": "2021-09-30T08:22:27.479Z", "updated_at": "2021-09-30T08:22:27.479Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3179", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-06T18:28:37.000Z", "updated-at": "2021-11-24T13:18:01.447Z", "metadata": {"doi": "10.25504/FAIRsharing.2KIa7T", "name": "Integrated Microbial Genomes and Microbiomes - Viral Resources", "status": "ready", "contacts": [{"contact-name": "Simon Roux", "contact-email": "sroux@lbl.gov", "contact-orcid": "0000-0002-5831-5895"}], "homepage": "https://img.jgi.doe.gov/vr/", "citations": [{"doi": "gkaa946", "pubmed-id": 33137183, "publication-id": 3060}], "identifier": 3179, "description": "Since 2016, the IMG/VR database has provided access to the largest collection of viral sequences obtained from (meta)genomes. The 3rd version of IMG/VR (Sept 2020) is composed of 18,373 cultivated and 2,314,329 uncultivated viral genomes (UViGs), nearly tripling the total number of sequences compared to the previous version. UViGs in IMG/VR are reported as single viral contigs, integrated proviruses, or genome bins, and are annotated with a new standardized pipeline including genome quality estimation using CheckV, taxonomic classification reflecting the latest ICTV update, and expanded host taxonomy prediction. The new IMG/VR interface enables users to efficiently browse, search, and select UViGs based on genome features and/or sequence similarity.", "abbreviation": "IMG/VR", "support-links": [{"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=Questions", "name": "IMG/VR contact form", "type": "Contact form"}, {"url": "https://img.jgi.doe.gov/docs/IMG-VR.pdf", "name": "IMG/VR main help", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=ViralSearch&page=searchByAttributeForm", "name": "Search by Attributes", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=ViralSearch&option=uvig", "name": "Search by ID", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=ViralSearch&option=scaffold", "name": "Search by Scaffold ID", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=ViralSearch&option=genome", "name": "Search by Genome ID", "type": "data access"}, {"url": "https://img.jgi.doe.gov/cgi-bin/vr/main.cgi?section=ViralBrowse&page=summaryStats", "name": "Browse", "type": "data access"}, {"url": "https://genome.jgi.doe.gov/portal/IMG_VR/IMG_VR.home.html", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://bitbucket.org/berkeleylab/checkv/", "name": "CheckV"}]}, "legacy-ids": ["biodbcore-001690", "bsg-d001690"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Microbial Ecology", "Metagenomics", "Virology"], "domains": ["Metagenome", "CRISPR"], "taxonomies": ["Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Integrated Microbial Genomes and Microbiomes - Viral Resources", "abbreviation": "IMG/VR", "url": "https://fairsharing.org/10.25504/FAIRsharing.2KIa7T", "doi": "10.25504/FAIRsharing.2KIa7T", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Since 2016, the IMG/VR database has provided access to the largest collection of viral sequences obtained from (meta)genomes. The 3rd version of IMG/VR (Sept 2020) is composed of 18,373 cultivated and 2,314,329 uncultivated viral genomes (UViGs), nearly tripling the total number of sequences compared to the previous version. UViGs in IMG/VR are reported as single viral contigs, integrated proviruses, or genome bins, and are annotated with a new standardized pipeline including genome quality estimation using CheckV, taxonomic classification reflecting the latest ICTV update, and expanded host taxonomy prediction. The new IMG/VR interface enables users to efficiently browse, search, and select UViGs based on genome features and/or sequence similarity.", "publications": [{"id": 3048, "pubmed_id": 27799466, "title": "IMG/VR: a database of cultured and uncultured DNA Viruses and retroviruses.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1030", "authors": "Paez-Espino D,Chen IA,Palaniappan K,Ratner A,Chu K,Szeto E,Pillay M,Huang J,Markowitz VM,Nielsen T,Huntemann M,K Reddy TB,Pavlopoulos GA,[...],Liu WT,Rivers AR,Ivanova NN,Kyrpides NC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1030", "created_at": "2021-09-30T08:28:15.614Z", "updated_at": "2021-09-30T11:29:50.037Z"}, {"id": 3059, "pubmed_id": 30407573, "title": "IMG/VR v.2.0: an integrated data management and analysis system for cultivated and environmental viral genomes.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1127", "authors": "Paez-Espino D,Roux S,Chen IA,Palaniappan K,Ratner A,Chu K,Huntemann M,Reddy TBK,Pons JC,Llabres M,Eloe-Fadrosh EA,Ivanova NN,Kyrpides NC", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1127", "created_at": "2021-09-30T08:28:16.947Z", "updated_at": "2021-09-30T11:29:50.496Z"}, {"id": 3060, "pubmed_id": 33137183, "title": "IMG/VR v3: an integrated ecological and evolutionary framework for interrogating genomes of uncultivated viruses.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa946", "authors": "Roux S,Paez-Espino D,Chen IA,Palaniappan K,Ratner A,Chu K,Reddy TBK,Nayfach S,Schulz F,Call L,Neches RY,Woyke T,Ivanova NN,Eloe-Fadrosh EA,Kyrpides NC", "journal": "Nucleic Acids Research", "doi": "gkaa946", "created_at": "2021-09-30T08:28:17.104Z", "updated_at": "2021-09-30T11:29:50.588Z"}], "licence-links": [{"licence-name": "JGI Data Management Policy, Practices & Resources", "licence-id": 469, "link-id": 2211, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 2212, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3043", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-22T10:27:36.000Z", "updated-at": "2021-12-06T10:47:31.433Z", "metadata": {"name": "Strong Motion Virtual Data Center", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "cesmd@strongmotioncenter.org"}], "homepage": "https://strongmotioncenter.org/vdc/scripts/default.plx", "identifier": 3043, "description": "The Strong Motion Virtual Data Center (VDC) is a public, web-based search engine for accessing worldwide earthquake strong ground motion data. While the primary focus of the VDC is on data of engineering interest, it is also an interactive resource for scientific research and government and emergency response professionals.", "abbreviation": "Strong Motion VDC", "support-links": [{"url": "https://strongmotioncenter.org/vdc/scripts/FAQ.plx", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://strongmotioncenter.org/vdc/CosmosVDCUserManual.pdf", "name": "COSMOS VDC User Manual", "type": "Help documentation"}, {"url": "https://strongmotioncenter.org/vdc/VDC_Factsheet2012_cmj.pdf", "name": "Fact Sheet", "type": "Help documentation"}, {"url": "https://strongmotioncenter.org/vdc/scripts/earthquakes.plx", "name": "Earthquakes within each Region", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://strongmotioncenter.org/vdc/scripts/search.plx", "name": "Search", "type": "data access"}, {"url": "https://strongmotioncenter.org/vdc/scripts/download.plx?session=1592818852.1386", "name": "Download", "type": "data access"}, {"url": "https://strongmotioncenter.org/vdc/scripts/adv_search.plx", "name": "Advanced search", "type": "data access"}], "associated-tools": [{"url": "https://strongmotioncenter.org/vdc/FormatConversion.html", "name": "COSMOS File Conversion"}, {"url": "https://strongmotioncenter.org/vdc/scripts/googleEarthKML.plx", "name": "Download a KML file for GoogleEarth"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011796", "name": "re3data:r3d100011796", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001551", "bsg-d001551"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Geophysics", "Geotechnics", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Earthquake"], "countries": ["United States"], "name": "FAIRsharing record for: Strong Motion Virtual Data Center", "abbreviation": "Strong Motion VDC", "url": "https://fairsharing.org/fairsharing_records/3043", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Strong Motion Virtual Data Center (VDC) is a public, web-based search engine for accessing worldwide earthquake strong ground motion data. While the primary focus of the VDC is on data of engineering interest, it is also an interactive resource for scientific research and government and emergency response professionals.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1716", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:39.832Z", "metadata": {"doi": "10.25504/FAIRsharing.h3tjtr", "name": "Comparative Toxicogenomics Database", "status": "ready", "contacts": [{"contact-name": "Allan Peter Davis", "contact-email": "apdavis3@ncsu.edu"}], "homepage": "http://ctdbase.org/", "citations": [{"doi": "10.1093/nar/gky868", "pubmed-id": 30247620, "publication-id": 2483}], "identifier": 1716, "description": "The Comparative Toxicogenomics Database (CTD) advances understanding of the effects of environmental chemicals on human health. Biocurators manually curate chemical-gene, chemical-disease, and gene-disease relationships from the scientific literature. This core data is then internally integrated to generate inferred chemical-gene-disease networks. Additionally, the core data is integrated with external data sets (such as Gene Ontology and pathway annotations) to predict many novel associations between different data types. A unique and powerful feature of CTD is the inferred relationships generated by data integration that helps turn knowledge into discoveries by identifying novel connections between chemicals, genes, diseases, pathways, and GO annotations that might not otherwise be apparent using other biological resources.", "abbreviation": "CTD", "support-links": [{"url": "http://ctdbase.org/help/contact.go", "type": "Contact form"}, {"url": "http://ctdbase.org/help/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://ctdbase.org/help/emailListHelp.jsp", "type": "Mailing list"}, {"url": "http://ctdbase.org/help/", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?v=KL_MpE8g0Uc", "name": "CTD Introduction video", "type": "Video"}, {"url": "http://ctdbase.org/help/tutorials.jsp", "type": "Training documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://ctdbase.org/downloads/", "name": "data download", "type": "data versioning"}, {"url": "http://ctdbase.org/about/dataStatus.go", "name": "data integration", "type": "data curation"}, {"url": "http://ctdbase.org/about/dataStatus.go", "name": "data import", "type": "data curation"}, {"url": "http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3176677/?report=classic", "name": "manual curation", "type": "data curation"}, {"url": "http://ctdbase.org/about/dataStatus.go", "name": "monthly release", "type": "data release"}], "associated-tools": [{"url": "http://ctdbase.org/search/", "name": "Search"}, {"url": "http://ctdbase.org/tools/myGeneVenn.go", "name": "MyGeneVenn"}, {"url": "http://ctdbase.org/tools/myVenn.go", "name": "MyVenn"}, {"url": "http://ctdbase.org/tools/vennViewer.go", "name": "VennViewer"}, {"url": "http://ctdbase.org/tools/batchQuery.go", "name": "Batch Query"}, {"url": "http://ctdbase.org/tools/analyzer.go", "name": "Set Analyzer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011530", "name": "re3data:r3d100011530", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006530", "name": "SciCrunch:RRID:SCR_006530", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000173", "bsg-d000173"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Anatomy", "Toxicogenomics", "Toxicology", "Biomedical Science", "Comparative Genomics", "Systems Biology"], "domains": ["Expression data", "Gene Ontology enrichment", "Annotation", "Text mining", "Protein interaction", "Network model", "Chemical entity", "Molecular interaction", "Adverse Reaction", "Drug interaction", "Curated information", "Phenotype", "Disease phenotype", "Disease", "Protein", "Pathway model", "Gene", "Gene-disease association", "Chemical-disease association", "Literature curation", "Chemical-gene association", "Exposure"], "taxonomies": ["Bos taurus", "Caenorhabditis elegans", "Canis lupus", "Danio rerio", "Drosophila", "Eumetazoa", "Gallus gallus", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": ["Adverse outcome pathways", "COVID-19", "Systems toxicology"], "countries": ["United States"], "name": "FAIRsharing record for: Comparative Toxicogenomics Database", "abbreviation": "CTD", "url": "https://fairsharing.org/10.25504/FAIRsharing.h3tjtr", "doi": "10.25504/FAIRsharing.h3tjtr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Comparative Toxicogenomics Database (CTD) advances understanding of the effects of environmental chemicals on human health. Biocurators manually curate chemical-gene, chemical-disease, and gene-disease relationships from the scientific literature. This core data is then internally integrated to generate inferred chemical-gene-disease networks. Additionally, the core data is integrated with external data sets (such as Gene Ontology and pathway annotations) to predict many novel associations between different data types. A unique and powerful feature of CTD is the inferred relationships generated by data integration that helps turn knowledge into discoveries by identifying novel connections between chemicals, genes, diseases, pathways, and GO annotations that might not otherwise be apparent using other biological resources.", "publications": [{"id": 1280, "pubmed_id": 23221299, "title": "Targeted journal curation as a method to improve data currency at the Comparative Toxicogenomics Database", "year": 2012, "url": "http://doi.org/10.1093/database/bas051", "authors": "Davis AP, Johnson RJ, Lennon-Hopkins K, Sciaky D, Rosenstein MC, Wiegers TC, Mattingly CJ", "journal": "Database (Oxford)", "doi": "10.1093/database/bas051", "created_at": "2021-09-30T08:24:42.859Z", "updated_at": "2021-09-30T08:24:42.859Z"}, {"id": 1300, "pubmed_id": 22434833, "title": "MEDIC: a practical disease vocabulary used at the Comparative Toxicogenomics Database.", "year": 2012, "url": "https://academic.oup.com/database/article/doi/10.1093/database/bar065/430135", "authors": "Davis AP., Wiegers TC., Rosenstein MC., Mattingly CJ.", "journal": "Database (Oxford)", "doi": "10.1093/database/bar065", "created_at": "2021-09-30T08:24:45.201Z", "updated_at": "2021-09-30T08:24:45.201Z"}, {"id": 1309, "pubmed_id": 23093600, "title": "The Comparative Toxicogenomics Database: update 2013", "year": 2012, "url": "http://doi.org/10.1093/nar/gks994", "authors": "Davis AP, Murphy CG, Johnson R, Lay JM, Lennon-Hopkins K, Saraceni-Richards C, Sciaky D, King BL, Rosenstein MC, Wiegers TC, Mattingly CJ.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks994", "created_at": "2021-09-30T08:24:46.167Z", "updated_at": "2021-09-30T08:24:46.167Z"}, {"id": 2441, "pubmed_id": 24288140, "title": "A CTD-Pfizer collaboration: manual curation of 88,000 scientific articles text mined for drug-disease and drug-phenotype interactions", "year": 2013, "url": "http://doi.org/10.1093/database/bat080", "authors": "Davis AP, Wiegers TC, Roberts PM, King BL, Lay JM, Lennon-Hopkins K, Sciaky D, Johnson R, Keating H, Greene N, Hernandez R, McConnell KJ, Enayetallah AE, Mattingly CJ.", "journal": "Database (Oxford)", "doi": "10.1093/database/bat080", "created_at": "2021-09-30T08:26:59.410Z", "updated_at": "2021-09-30T08:26:59.410Z"}, {"id": 2442, "pubmed_id": 23613709, "title": "Text mining effectively scores and ranks the literature for improving chemical-gene-disease curation at the Comparative Toxicogenomics Database", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0058201", "authors": "Davis AP, Wiegers TC, Johnson RJ, Lay JM, Lennon-Hopkins K, Saraceni-Richards C, Sciaky D, Murphy CG, Mattingly CJ.", "journal": "PLoS One", "doi": "10.1371/journal.pone.0058201", "created_at": "2021-09-30T08:26:59.511Z", "updated_at": "2021-09-30T08:26:59.511Z"}, {"id": 2444, "pubmed_id": 21933848, "title": "The curation paradigm and application tool used for manual curation of the scientific literature at the Comparative Toxicogenomics Database", "year": 2011, "url": "http://doi.org/10.1093/database/bar034", "authors": "Davis AP, Wiegers TC, Rosenstein MC, Murphy CG, Mattingly CJ.", "journal": "Database (Oxford)", "doi": "10.1093/database/bar034", "created_at": "2021-09-30T08:26:59.737Z", "updated_at": "2021-09-30T08:26:59.737Z"}, {"id": 2459, "pubmed_id": 22125387, "title": "DiseaseComps: a metric that discovers similar diseases based upon common toxicogenomic profiles at CTD", "year": 2011, "url": "http://doi.org/10.6026/97320630007154", "authors": "Davis AP, Rosenstein MC, Wiegers TC, Mattingly CJ.", "journal": "Bioinformation", "doi": "10.6026/97320630007154", "created_at": "2021-09-30T08:27:01.627Z", "updated_at": "2021-09-30T08:27:01.627Z"}, {"id": 2460, "pubmed_id": 20198196, "title": "GeneComps and ChemComps: a new CTD metric to identify genes and chemicals with shared toxicogenomic profiles", "year": 2009, "url": "http://doi.org/10.6026/97320630004173", "authors": "Davis AP, Murphy CG, Saraceni-Richards CA, Rosenstein MC, Wiegers TC, Hampton TH, Mattingly CJ.", "journal": "Bioinformation", "doi": "10.6026/97320630004173", "created_at": "2021-09-30T08:27:01.736Z", "updated_at": "2021-09-30T08:27:01.736Z"}, {"id": 2483, "pubmed_id": 30247620, "title": "The Comparative Toxicogenomics Database: update 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky868", "authors": "Davis AP,Grondin CJ,Johnson RJ,Sciaky D,McMorran R,Wiegers J,Wiegers TC,Mattingly CJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky868", "created_at": "2021-09-30T08:27:04.491Z", "updated_at": "2021-09-30T11:29:37.746Z"}, {"id": 2831, "pubmed_id": 18845002, "title": "The Comparative Toxicogenomics Database facilitates identification and understanding of chemical-gene-disease associations: arsenic as a case study", "year": 2008, "url": "http://doi.org/10.1186/1755-8794-1-48", "authors": "Davis AP, Murphy CG, Rosenstein MC, Wiegers TC, Mattingly CJ", "journal": "BMC Med Genomics", "doi": "10.1186/1755-8794-1-48", "created_at": "2021-09-30T08:27:48.232Z", "updated_at": "2021-09-30T08:27:48.232Z"}, {"id": 2846, "pubmed_id": 27651457, "title": "The Comparative Toxicogenomics Database: update 2017.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw838", "authors": "Davis AP,Grondin CJ,Johnson RJ,Sciaky D,King BL,McMorran R,Wiegers J,Wiegers TC,Mattingly CJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw838", "created_at": "2021-09-30T08:27:50.154Z", "updated_at": "2021-09-30T11:29:47.229Z"}, {"id": 2848, "pubmed_id": 27170236, "title": "Advancing Exposure Science through Chemical Data Curation and Integration in the Comparative Toxicogenomics Database.", "year": 2016, "url": "http://doi.org/10.1289/EHP174", "authors": "Grondin CJ,Davis AP,Wiegers TC,King BL,Wiegers JA,Reif DM,Hoppin JA,Mattingly CJ", "journal": "Environ Health Perspect", "doi": "10.1289/EHP174", "created_at": "2021-09-30T08:27:50.374Z", "updated_at": "2021-09-30T08:27:50.374Z"}, {"id": 2854, "pubmed_id": 27171405, "title": "Generating Gene Ontology-Disease Inferences to Explore Mechanisms of Human Disease at the Comparative Toxicogenomics Database.", "year": 2016, "url": "http://doi.org/10.1371/journal.pone.0155530", "authors": "Davis AP,Wiegers TC,King BL,Wiegers J,Grondin CJ,Sciaky D,Johnson RJ,Mattingly CJ", "journal": "PLoS One", "doi": "10.1371/journal.pone.0155530", "created_at": "2021-09-30T08:27:51.074Z", "updated_at": "2021-09-30T08:27:51.074Z"}, {"id": 2858, "pubmed_id": 25326323, "title": "The Comparative Toxicogenomics Database's 10th year anniversary: update 2015.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku935", "authors": "Davis AP,Grondin CJ,Lennon-Hopkins K,Saraceni-Richards C,Sciaky D,King BL,Wiegers TC,Mattingly CJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku935", "created_at": "2021-09-30T08:27:51.571Z", "updated_at": "2021-09-30T11:29:47.596Z"}, {"id": 3019, "pubmed_id": 29846728, "title": "Chemical-Induced Phenotypes at CTD Help Inform the Predisease State and Construct Adverse Outcome Pathways.", "year": 2018, "url": "http://doi.org/10.1093/toxsci/kfy131", "authors": "Davis AP,Wiegers TC,Wiegers J,Johnson RJ,Sciaky D,Grondin CJ,Mattingly CJ", "journal": "Toxicol Sci", "doi": "10.1093/toxsci/kfy131", "created_at": "2021-09-30T08:28:12.200Z", "updated_at": "2021-09-30T08:28:12.200Z"}, {"id": 3020, "pubmed_id": 29351546, "title": "Accessing an Expanded Exposure Science Module at the Comparative Toxicogenomics Database.", "year": 2018, "url": "http://doi.org/10.1289/EHP2873", "authors": "Grondin CJ,Davis AP,Wiegers TC,Wiegers JA,Mattingly CJ", "journal": "Environ Health Perspect", "doi": "10.1289/EHP2873", "created_at": "2021-09-30T08:28:12.317Z", "updated_at": "2021-09-30T08:28:12.317Z"}, {"id": 3021, "pubmed_id": 32663284, "title": "Leveraging the Comparative Toxicogenomics Database to fill in knowledge gaps for environmental health: a test case for air pollution-induced cardiovascular disease", "year": 2020, "url": "http://doi.org/10.1093/toxsci/kfaa113", "authors": "Davis AP., Wiegers TC., Grondin CJ., Johnson RJ., Sciaky D., Wiegers J., Mattingly CJ.", "journal": "Toxicological Sciences", "doi": "https://doi.org/10.1093/toxsci/kfaa113", "created_at": "2021-09-30T08:28:12.429Z", "updated_at": "2021-09-30T08:28:12.429Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1879", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:33.195Z", "metadata": {"doi": "10.25504/FAIRsharing.f94905", "name": "Eukaryotic Pathogen, Vector and Host Informatics Resource", "status": "ready", "contacts": [{"contact-name": "Christian J. Stoeckert Jr.", "contact-email": "stoeckrt@pcbi.upenn.edu"}], "homepage": "https://veupathdb.org/veupathdb/app/", "citations": [{"doi": "10.1007/978-1-4939-7737-6_5", "pubmed-id": 29761457, "publication-id": 1203}], "identifier": 1879, "description": "The Eukaryotic Pathogen, Vector and Host Informatics Resource (VEuPathDB) focuses on eukaryotic pathogens and invertebrate vectors of infectious diseases, , encompassing data from prior resources devoted to parasitic species (EuPathDB), fungi (FungiDB) and vector species (VectorBase). While each of the taxonomic groups within this resource is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all of these resources, and the opportunity to leverage orthology for searches across genera.", "abbreviation": "VEuPathDB", "access-points": [{"url": "https://veupathdb.org/veupathdb/app/static-content/content/VEuPathDB/webServices.html", "name": "VEuPathDB API", "type": "REST"}], "support-links": [{"url": "https://veupathdb.org/veupathdb/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://veupathdb.org/veupathdb/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://veupathdb.org/veupathdb/app/static-content/glossary.html", "name": "VEuPathDB Glossary", "type": "Help documentation"}, {"url": "https://static-content.veupathdb.org/documents/VEuPathDB_User_Documentation.pdf", "name": "User Documentation (PDF)", "type": "Help documentation"}, {"url": "https://veupathdb.org/veupathdb/app/search/organism/GenomeDataTypes/result", "name": "Statistics", "type": "Help documentation"}, {"url": "https://veupathdb.org/veupathdb/app/static-content/about.html", "name": "About Us", "type": "Help documentation"}, {"url": "https://veupathdb.org/pubcrawler/EuPathDB/", "name": "Related Publications", "type": "Help documentation"}, {"url": "https://veupathdb.org/veupathdb/app/static-content/methods.html", "name": "Data Analysis Methods", "type": "Help documentation"}, {"url": "https://twitter.com/VEuPathDB", "name": "@VEuPathDB", "type": "Twitter"}], "data-processes": [{"url": "https://veupathdb.org/veupathdb/app/fasta-tool", "name": "Sequence Retrieval and Download", "type": "data access"}, {"url": "https://veupathdb.org/veupathdb/app/static-content/dataSubmission.html", "name": "Submit Data", "type": "data curation"}, {"url": "https://veupathdb.org/veupathdb/app/search/genomic-sequence/SequencesBySimilarity", "name": "Identify Sequences with BLAST", "type": "data access"}, {"url": "http://companion.gla.ac.uk/", "name": "Companion: Annotate Parasite Genomes", "type": "data access"}, {"url": "http://grna.ctegd.uga.edu/", "name": "EuPaGDT Design", "type": "data access"}, {"url": "https://veupathdb.org/veupathdb/app/galaxy-orientation", "name": "Galaxy Data Analysis", "type": "data access"}, {"url": "https://veupathdb.org/veupathdb/app/search/transcript/GeneByLocusTag", "name": "Search by Gene ID", "type": "data access"}, {"url": "https://veupathdb.org/veupathdb/app/search/dataset/AllDatasets/result", "name": "Browse Data Sets", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011557", "name": "re3data:r3d100011557", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004512", "name": "SciCrunch:RRID:SCR_004512", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000344", "bsg-d000344"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Comparative Genomics", "Population Genetics"], "domains": ["Pathogen", "Phenotype", "Orthologous", "Genome"], "taxonomies": ["Anncaliia", "Babesia", "Crithidia", "Cryptosporidium", "Edhazardia", "Eimeria", "Encephalitozoon", "Endotrypanum", "Entamoeba", "Enterocytozoon", "Giardia", "Gregarina", "Hamiltosporidium", "Leishmania", "Nematocida", "Neospora", "Nosema", "Plasmodium", "Theileria", "Toxoplasma", "Trichomonas", "Trypanosoma", "Vavraia", "Vittaforma"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Uganda"], "name": "FAIRsharing record for: Eukaryotic Pathogen, Vector and Host Informatics Resource", "abbreviation": "VEuPathDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.f94905", "doi": "10.25504/FAIRsharing.f94905", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Eukaryotic Pathogen, Vector and Host Informatics Resource (VEuPathDB) focuses on eukaryotic pathogens and invertebrate vectors of infectious diseases, , encompassing data from prior resources devoted to parasitic species (EuPathDB), fungi (FungiDB) and vector species (VectorBase). While each of the taxonomic groups within this resource is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all of these resources, and the opportunity to leverage orthology for searches across genera.", "publications": [{"id": 4, "pubmed_id": 25388105, "title": "The Eukaryotic Pathogen Databases: a functional genomic resource integrating data from human and veterinary parasites.", "year": 2014, "url": "http://doi.org/10.1007/978-1-4939-1438-8_1", "authors": "Harb OS,Roos DS", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-1438-8_1", "created_at": "2021-09-30T08:22:20.997Z", "updated_at": "2021-09-30T08:22:20.997Z"}, {"id": 72, "pubmed_id": 19914931, "title": "EuPathDB: a portal to eukaryotic pathogen databases.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp941", "authors": "Aurrecoechea C., Brestelli J., Brunk BP. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp941", "created_at": "2021-09-30T08:22:27.954Z", "updated_at": "2021-09-30T08:22:27.954Z"}, {"id": 1199, "pubmed_id": 24936976, "title": "Standardized metadata for human pathogen/vector genomic sequences.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0099979", "authors": "Dugan VG,Emrich SJ,Giraldo-Calderon GI et al.", "journal": "PLoS One", "doi": "10.1371/journal.pone.0099979", "created_at": "2021-09-30T08:24:33.566Z", "updated_at": "2021-09-30T08:24:33.566Z"}, {"id": 1203, "pubmed_id": 29761457, "title": "EuPathDB: The Eukaryotic Pathogen Genomics Database Resource.", "year": 2018, "url": "http://doi.org/10.1007/978-1-4939-7737-6_5", "authors": "Warrenfeltz S,Basenko EY,Crouch K,Harb OS,Kissinger JC,Roos DS,Shanmugasundram A,Silva-Franco F", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-7737-6_5", "created_at": "2021-09-30T08:24:34.049Z", "updated_at": "2021-09-30T08:24:34.049Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2384, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1825", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.497Z", "metadata": {"doi": "10.25504/FAIRsharing.f8pqxt", "name": "GenomeTraFaC", "status": "deprecated", "contacts": [{"contact-name": "Anil Jegga", "contact-email": "anil.jegga@cchmc.org"}], "homepage": "http://genometrafac.cchmc.org", "identifier": 1825, "description": "GenomeTraFaC is a database of conserved regulatory elements obtained by systematically analyzing the orthologous set of human and mouse genes. It mainly focuses on all of the high-quality mRNA entries of mouse and human genes in the Reference Sequence (RefSeq) database of the NCBI.", "abbreviation": "GenomeTraFaC", "support-links": [{"url": "http://info.cchmc.org/help/genometrafac/index.html#faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://info.cchmc.org/help/genometrafac/index.html", "type": "Help documentation"}], "year-creation": 2002, "data-processes": [{"url": "http://genometrafac.cchmc.org/genome-trafac/xls/OrthologGeneList.xls", "name": "Download", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000285", "bsg-d000285"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Ribonucleic acid", "Biological regulation", "Gene regulatory element", "Messenger RNA"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GenomeTraFaC", "abbreviation": "GenomeTraFaC", "url": "https://fairsharing.org/10.25504/FAIRsharing.f8pqxt", "doi": "10.25504/FAIRsharing.f8pqxt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GenomeTraFaC is a database of conserved regulatory elements obtained by systematically analyzing the orthologous set of human and mouse genes. It mainly focuses on all of the high-quality mRNA entries of mouse and human genes in the Reference Sequence (RefSeq) database of the NCBI.", "publications": [{"id": 1940, "pubmed_id": 17178752, "title": "GenomeTrafac: a whole genome resource for the detection of transcription factor binding site clusters associated with conventional and microRNA encoding genes conserved between mouse and human gene orthologs.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1011", "authors": "Jegga AG., Chen J., Gowrisankar S., Deshmukh MA., Gudivada R., Kong S., Kaimal V., Aronow BJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl1011", "created_at": "2021-09-30T08:25:58.339Z", "updated_at": "2021-09-30T08:25:58.339Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2962", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T13:23:08.000Z", "updated-at": "2021-12-06T10:47:27.842Z", "metadata": {"name": "Lens COVID-19 Datasets", "status": "in_development", "contacts": [{"contact-name": "General contact", "contact-email": "support@lens.org"}], "homepage": "https://www.lens.org/", "citations": [], "identifier": 2962, "description": "The Lens is building an interactive tool for understanding the landscape of patent and research works in any domain, including human coronaviruses and COVID-19.", "support-links": [{"url": "https://www.linkedin.com/company/lens-org/", "name": "LinkedIn", "type": "Blog/News"}, {"url": "https://www.lens.org/lens/feedback?returnTo=/", "name": "Feedback", "type": "Contact form"}, {"url": "feedback@lens.org", "name": "General contact", "type": "Support email"}, {"url": "https://support.lens.org/", "type": "Help documentation"}, {"url": "https://support.lens.org/lens-video-tutorials/", "name": "Video tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/TheLensOrg", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://about.lens.org/covid-19/", "name": "Browse Patent Collection, Scholarly Works and Sequences", "type": "data access"}], "associated-tools": [{"url": "https://www.lens.org/lens/patcite", "name": "PatCite"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013309", "name": "re3data:r3d100013309", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001466", "bsg-d001466"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Biomedical Science", "Epidemiology"], "domains": ["Patent", "Disease"], "taxonomies": ["Coronaviridae", "Homo sapiens"], "user-defined-tags": ["COVID-19"], "countries": ["Australia"], "name": "FAIRsharing record for: Lens COVID-19 Datasets", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2962", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Lens is building an interactive tool for understanding the landscape of patent and research works in any domain, including human coronaviruses and COVID-19.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2543", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-30T12:31:45.000Z", "updated-at": "2021-12-06T10:48:41.581Z", "metadata": {"doi": "10.25504/FAIRsharing.hren8w", "name": "American Society of Testing and Materials - Standards Repository", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "service@astm.org"}], "homepage": "https://www.astm.org/Standard/standards-and-publications.html", "identifier": 2543, "description": "The American Society of Testing and Materials - Standards (ASTM Standards) provides an online repository of all ASTM standards, which are used worldwide to improve product quality, enhance safety and facilitate trade. These standards are accessible via a subscription model or can be individually purchased.", "abbreviation": "ASTM Standards", "support-links": [{"url": "https://www.astm.org/CONTACT/index.html", "name": "ASTM Contact Form", "type": "Contact form"}, {"url": "http://www.youtube.com/ASTMIntl", "name": "YouTube Channel", "type": "Video"}, {"url": "https://www.astm.org/RSS/index.html", "name": "RSS Feed Information", "type": "Blog/News"}, {"url": "https://twitter.com/ASTMIntl", "name": "@ASTMIntl", "type": "Twitter"}], "data-processes": [{"url": "https://www.astm.org/Standards/category_index.html", "name": "Browse by Category", "type": "data access"}, {"url": "https://www.astm.org/BOOKSTORE/COMPS/compsbycategory.htm", "name": "Browse by Compilation", "type": "data access"}, {"name": "Access via Subscription or Payment", "type": "data access"}, {"url": "https://www.astm.org/Standard/standards-and-publications.html", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010409", "name": "re3data:r3d100010409", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001026", "bsg-d001026"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Engineering Science", "Data Governance", "Materials Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: American Society of Testing and Materials - Standards Repository", "abbreviation": "ASTM Standards", "url": "https://fairsharing.org/10.25504/FAIRsharing.hren8w", "doi": "10.25504/FAIRsharing.hren8w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The American Society of Testing and Materials - Standards (ASTM Standards) provides an online repository of all ASTM standards, which are used worldwide to improve product quality, enhance safety and facilitate trade. These standards are accessible via a subscription model or can be individually purchased.", "publications": [], "licence-links": [{"licence-name": "ASTM Copyright and Permissions", "licence-id": 47, "link-id": 1182, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1757", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.045Z", "metadata": {"doi": "10.25504/FAIRsharing.4eanvm", "name": "Evolutionary Trace", "status": "ready", "contacts": [{"contact-name": "Olivier Lichtarge", "contact-email": "lichtarge@bcm.tmc.edu"}], "homepage": "http://mammoth.bcm.tmc.edu/ETserver.html", "identifier": 1757, "description": "Relative evolutionary importance of amino acids within a protein sequence.", "support-links": [{"url": "http://mammoth.bcm.tmc.edu/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://mammoth.bcm.tmc.edu/traceview/HelpDocs/ETViewerManual_2.pdf", "type": "Help documentation"}, {"url": "http://mammoth.bcm.tmc.edu/tutorial/", "type": "Training documentation"}], "year-creation": 1995, "data-processes": [{"url": "http://mammoth.bcm.tmc.edu/downloads.html", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000215", "bsg-d000215"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Evolution", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Evolutionary Trace", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.4eanvm", "doi": "10.25504/FAIRsharing.4eanvm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Relative evolutionary importance of amino acids within a protein sequence.", "publications": [{"id": 280, "pubmed_id": 22183528, "title": "Evolutionary trace for prediction and redesign of protein functional sites.", "year": 2011, "url": "http://doi.org/10.1007/978-1-61779-465-0_3", "authors": "Wilkins A., Erdin S., Lua R., Lichtarge O.,", "journal": "Methods Mol. Biol.", "doi": "10.1007/978-1-61779-465-0_3", "created_at": "2021-09-30T08:22:50.191Z", "updated_at": "2021-09-30T08:22:50.191Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3159", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T12:27:39.000Z", "updated-at": "2021-11-24T13:13:04.828Z", "metadata": {"name": "EarthExplorer", "status": "ready", "contacts": [{"contact-name": "USGS Customer Service", "contact-email": "custserv@usgs.gov"}], "homepage": "https://earthexplorer.usgs.gov/", "identifier": 3159, "description": "EarthExplorer (EE) provides online search, browse display, metadata export, and data download for earth science data from the archives of the U.S. Geological Survey (USGS). This includes aerial photography, satellite data, elevation data, land-cover products, and digitized maps.", "abbreviation": "EE", "access-points": [{"url": "https://earthexplorer.usgs.gov/inventory/documentation/json-api", "name": "EE API (Login Required)", "type": "REST"}], "support-links": [{"url": "https://ers.cr.usgs.gov/feedback?RET_ADDR=https%3A%2F%2Fearthexplorer.usgs.gov%2Ffeedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://lta.cr.usgs.gov/EEHelp/aerialfaq", "name": "Aerial FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://lta.cr.usgs.gov/EEHelp/ee_help", "name": "EE Help", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://earthexplorer.usgs.gov/", "name": "Search & Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001670", "bsg-d001670"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cartography", "Geography", "Earth Science", "Remote Sensing"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Satellite Data"], "countries": ["United States"], "name": "FAIRsharing record for: EarthExplorer", "abbreviation": "EE", "url": "https://fairsharing.org/fairsharing_records/3159", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EarthExplorer (EE) provides online search, browse display, metadata export, and data download for earth science data from the archives of the U.S. Geological Survey (USGS). This includes aerial photography, satellite data, elevation data, land-cover products, and digitized maps.", "publications": [], "licence-links": [{"licence-name": "USGS EROS Data Use and Citation", "licence-id": 833, "link-id": 2043, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2781", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-23T23:43:19.000Z", "updated-at": "2021-12-06T10:49:17.864Z", "metadata": {"doi": "10.25504/FAIRsharing.U9GXhB", "name": "National Coronial Information System", "status": "ready", "contacts": [{"contact-name": "Lauren Dunstan", "contact-email": "lauren.dunstan@ncis.org.au"}], "homepage": "https://www.ncis.org.au/", "identifier": 2781, "description": "The National Coronial Information System (NCIS) is a secure database of information on deaths reported to a coroner in Australia and New Zealand. The NCIS contains data on almost 400,000 cases, investigated by a coroner. Data includes demographic information on the deceased, contextual details on the nature of the fatality and searchable medico-legal case reports including the coronial finding, autopsy and toxicology report and police notification of death. The database is available to coroners to assist investigations and access is available on application (subject to ethics approval processes) for research projects.", "abbreviation": "NCIS", "support-links": [{"url": "ncis@ncis.org.au", "type": "Support email"}, {"url": "https://www.ncis.org.au/training-support/online-training-modules-search/", "name": "Guidelines for searching", "type": "Help documentation"}, {"url": "https://www.ncis.org.au/contact-us/general-enquiries/", "name": "General enquiries", "type": "Help documentation"}, {"url": "https://www.ncis.org.au/about-the-data/", "name": "About the data", "type": "Help documentation"}, {"url": "https://www.ncis.org.au/training-support/guidelines-for-coders/", "name": "Guidelines for coders", "type": "Help documentation"}, {"url": "https://www.ncis.org.au/training-support/online-training-modules-coding/", "name": "Online training modules coding", "type": "Training documentation"}], "year-creation": 2000, "data-processes": [{"url": "https://www.ncis.org.au/data-access/request-system-access/", "name": "Access application process", "type": "data access"}, {"url": "https://www.ncis.org.au/data-access/request-a-data-report/", "name": "Request data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012912", "name": "re3data:r3d100012912", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001280", "bsg-d001280"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Public Health", "Epidemiology"], "domains": ["Resource collection"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: National Coronial Information System", "abbreviation": "NCIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.U9GXhB", "doi": "10.25504/FAIRsharing.U9GXhB", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Coronial Information System (NCIS) is a secure database of information on deaths reported to a coroner in Australia and New Zealand. The NCIS contains data on almost 400,000 cases, investigated by a coroner. Data includes demographic information on the deceased, contextual details on the nature of the fatality and searchable medico-legal case reports including the coronial finding, autopsy and toxicology report and police notification of death. The database is available to coroners to assist investigations and access is available on application (subject to ethics approval processes) for research projects.", "publications": [{"id": 1984, "pubmed_id": 31240008, "title": "National Coronial Information System: Epidemiology and the Coroner in Australia", "year": 2017, "url": "http://doi.org/10.23907/2017.049", "authors": "Eva Saar, Lyndal Bugeja, David L. Ranson", "journal": "Academic Forensic Pathology", "doi": "10.23907/2017.049", "created_at": "2021-09-30T08:26:03.273Z", "updated_at": "2021-09-30T08:26:03.273Z"}], "licence-links": [{"licence-name": "NCIS Privacy Statement", "licence-id": 562, "link-id": 764, "relation": "undefined"}, {"licence-name": "NCIS Disclaimer", "licence-id": 561, "link-id": 765, "relation": "undefined"}, {"licence-name": "NCIS Copyright", "licence-id": 560, "link-id": 767, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3047", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-23T14:36:12.000Z", "updated-at": "2021-12-06T10:48:01.032Z", "metadata": {"doi": "10.25504/FAIRsharing.5Sfaz2", "name": "International Service of Geomagnetic Indices", "status": "ready", "contacts": [{"contact-name": "Aude Chambodut", "contact-email": "aude.chambodut@unistra.fr", "contact-orcid": "0000-0001-8793-1315"}], "homepage": "http://isgi.unistra.fr/", "identifier": 3047, "description": "The International Service of Geomagnetic Indices (ISGI) is in charge of the elaboration and dissemination of geomagnetic indices, and of tables of remarkable magnetic events, based on the report of magnetic observatories distributed all over the planet, with the help of 6 ISGI Collaborating Institutes.", "abbreviation": "ISGI", "access-points": [{"url": "http://isgi.unistra.fr/ws", "name": "Application to ISGI data web service", "type": "Other"}], "support-links": [{"url": "isgi@unistra.fr", "name": "General contact", "type": "Support email"}, {"url": "http://isgi.unistra.fr/documents.php", "type": "Help documentation"}], "year-creation": 1906, "data-processes": [{"url": "http://isgi.unistra.fr/data_download.php", "name": "Download Data endorsed by IAGA", "type": "data access"}, {"url": "http://isgi.unistra.fr/data_plot.php", "name": "Plot Data endorsed by IAGA", "type": "data access"}, {"url": "http://isgi.unistra.fr/oi_data_download.php", "name": "Download Data not officially endorsed by IAGA", "type": "data access"}, {"url": "http://isgi.unistra.fr/oi_data_plot.php", "name": "Plot Data not officially endorsed by IAGA", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010596", "name": "re3data:r3d100010596", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001555", "bsg-d001555"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geophysics", "Astrophysics and Astronomy", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geomagnetism", "ionosphere", "Magnetosphere", "space science", "space weather"], "countries": ["Denmark", "France", "Germany", "Russia", "Spain", "Japan"], "name": "FAIRsharing record for: International Service of Geomagnetic Indices", "abbreviation": "ISGI", "url": "https://fairsharing.org/10.25504/FAIRsharing.5Sfaz2", "doi": "10.25504/FAIRsharing.5Sfaz2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Service of Geomagnetic Indices (ISGI) is in charge of the elaboration and dissemination of geomagnetic indices, and of tables of remarkable magnetic events, based on the report of magnetic observatories distributed all over the planet, with the help of 6 ISGI Collaborating Institutes.", "publications": [], "licence-links": [{"licence-name": "ISGI Rules and Policy", "licence-id": 455, "link-id": 1157, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2959", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T10:20:25.000Z", "updated-at": "2022-02-08T10:39:41.284Z", "metadata": {"doi": "10.25504/FAIRsharing.ead9cc", "name": "HEP Drug Interactions", "status": "ready", "contacts": [{"contact-name": "David Back", "contact-email": "D.J.Back@liverpool.ac.uk", "contact-orcid": "0000-0002-7381-4799"}], "homepage": "https://www.hep-druginteractions.org/", "identifier": 2959, "description": "Currently 170 million people worldwide are infected with the hepatitis C virus (HCV) and >300 million with hepatitis B (HBV). Although interferon-free combination direct acting antivirals (DAAs) regimens have improved tolerability and efficacy for HCV-infected patients, drug-drug interactions (DDIs) have the potential to cause harm due to liver dysfunction, multiple comorbidities and comedications. This web site was established in 2010 by members of the Department of Pharmacology at the University of Liverpool to offer a resource for healthcare providers, researchers and patients to be able to understand and manage drug-drug interactions.", "abbreviation": null, "support-links": [{"url": "https://www.hep-druginteractions.org/site_updates", "name": "News", "type": "Blog/News"}, {"url": "https://www.hep-druginteractions.org/feedback", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.hep-druginteractions.org/prescribing-resources", "name": "Printable materials in PDF format to aid prescribing", "type": "Help documentation"}, {"url": "https://www.hep-druginteractions.org/videos", "name": "Series of mini-lectures on pharmacology and HEP", "type": "Help documentation"}, {"url": "https://twitter.com/hepinteractions", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://www.hep-druginteractions.org/checker", "name": "Drug Interaction Checker", "type": "data access"}, {"url": "https://www.hep-druginteractions.org/drug_queries/new", "name": "Drug Interaction Checker Lite", "type": "data access"}, {"url": "https://www.hep-druginteractions.org/suggestions", "name": "Suggest A Drug", "type": "data curation"}], "associated-tools": [{"url": "https://apps.apple.com/gb/app/liverpool-hep-ichart/id960012821", "name": "Liverpool HEP iChart (AppStore)"}, {"url": "https://play.google.com/store/apps/details?id=com.liverpooluni.icharthep&hl=en", "name": "Liverpool HEP iChart (Google Play)"}]}, "legacy-ids": ["biodbcore-001463", "bsg-d001463"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Development", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Liver disease", "Drug interaction", "Disease"], "taxonomies": ["Hepatitis b virus", "Hepatitis C virus", "Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: HEP Drug Interactions", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.ead9cc", "doi": "10.25504/FAIRsharing.ead9cc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Currently 170 million people worldwide are infected with the hepatitis C virus (HCV) and >300 million with hepatitis B (HBV). Although interferon-free combination direct acting antivirals (DAAs) regimens have improved tolerability and efficacy for HCV-infected patients, drug-drug interactions (DDIs) have the potential to cause harm due to liver dysfunction, multiple comorbidities and comedications. This web site was established in 2010 by members of the Department of Pharmacology at the University of Liverpool to offer a resource for healthcare providers, researchers and patients to be able to understand and manage drug-drug interactions.", "publications": [], "licence-links": [{"licence-name": "HEP Drug Interactions Terms and Conditions", "licence-id": 389, "link-id": 857, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1982", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-13T15:22:12.028Z", "metadata": {"doi": "10.25504/FAIRsharing.rtndct", "name": "The Protein Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/protein", "identifier": 1982, "description": "The Entrez Protein search and retrieval system contains protein entries that have been compiled from a variety of sources, including SwissProt, PIR, PRF, PDB, and translations from annotated coding regions in GenBank and RefSeq.", "abbreviation": "Protein", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/books/NBK49541/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK44863/", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/genbank/;ftp://ftp.ncbi.nih.gov/refseq/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://blast.ncbi.nlm.nih.gov/Blast.cgi?PROGRAM=blastp&BLAST_PROGRAMS=blastp&PAGE_TYPE=BlastSearch&SHOW_DEFAULTS=on&LINK_LOC=blasthome", "name": "BLAST"}, {"url": "http://www.ncbi.nlm.nih.gov/projects/linkout/", "name": "LinkOut"}, {"url": "http://www.ncbi.nlm.nih.gov/sites/batchentrez", "name": "Batch Entrez"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010776", "name": "re3data:r3d100010776", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003257", "name": "SciCrunch:RRID:SCR_003257", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000448", "bsg-d000448"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Translational Medicine"], "domains": ["Annotation", "Gene functional annotation", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Protein Database", "abbreviation": "Protein", "url": "https://fairsharing.org/10.25504/FAIRsharing.rtndct", "doi": "10.25504/FAIRsharing.rtndct", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Entrez Protein search and retrieval system contains protein entries that have been compiled from a variety of sources, including SwissProt, PIR, PRF, PDB, and translations from annotated coding regions in GenBank and RefSeq.", "publications": [{"id": 453, "pubmed_id": 23193264, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1189", "authors": "NCBI Resource Coordinators", "journal": "Nucleic Acids Res.", "doi": "23193264", "created_at": "2021-09-30T08:23:09.175Z", "updated_at": "2021-09-30T08:23:09.175Z"}, {"id": 1080, "pubmed_id": 26615191, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1290", "authors": "NCBI Resource Coordinators", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1290", "created_at": "2021-09-30T08:24:19.637Z", "updated_at": "2021-09-30T11:28:57.992Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2193, "relation": "undefined"}, {"licence-name": "The Protein Database Attribution required", "licence-id": 786, "link-id": 2194, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1895", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:11.923Z", "metadata": {"doi": "10.25504/FAIRsharing.sed5tq", "name": "BAliBASE", "status": "ready", "contacts": [{"contact-name": "Julie Thompson", "contact-email": "julie@igbmc.u-strasbg.fr"}], "homepage": "http://www.lbgi.fr/balibase/", "identifier": 1895, "description": "BAliBASE; a benchmark alignment database, including enhancements for repeats, transmembrane sequences and circular permutations.", "abbreviation": "BAliBASE", "year-creation": 2000, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012946", "name": "re3data:r3d100012946", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001940", "name": "SciCrunch:RRID:SCR_001940", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000360", "bsg-d000360"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Deoxyribonucleic acid", "Sequence alignment", "Sequence", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: BAliBASE", "abbreviation": "BAliBASE", "url": "https://fairsharing.org/10.25504/FAIRsharing.sed5tq", "doi": "10.25504/FAIRsharing.sed5tq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BAliBASE; a benchmark alignment database, including enhancements for repeats, transmembrane sequences and circular permutations.", "publications": [{"id": 390, "pubmed_id": 11125126, "title": "BAliBASE (Benchmark Alignment dataBASE): enhancements for repeats, transmembrane sequences and circular permutations.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.323", "authors": "Bahr A., Thompson JD., Thierry JC., Poch O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.323", "created_at": "2021-09-30T08:23:02.274Z", "updated_at": "2021-09-30T08:23:02.274Z"}, {"id": 1293, "pubmed_id": 16044462, "title": "BAliBASE 3.0: latest developments of the multiple sequence alignment benchmark.", "year": 2005, "url": "http://doi.org/10.1002/prot.20527", "authors": "Thompson JD,Koehl P,Ripp R,Poch O", "journal": "Proteins", "doi": "10.1002/prot.20527", "created_at": "2021-09-30T08:24:44.309Z", "updated_at": "2021-09-30T08:24:44.309Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 385, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3026", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-16T17:57:14.000Z", "updated-at": "2021-12-06T10:48:39.213Z", "metadata": {"doi": "10.25504/FAIRsharing.GbmifP", "name": "Repository & Open Science Access Portal", "status": "ready", "contacts": [{"contact-name": "Leighton Christiansen", "contact-email": "leighton.christiansen@dot.gov", "contact-orcid": "0000-0002-0543-4268"}], "homepage": "https://rosap.ntl.bts.gov/", "identifier": 3026, "description": "ROSA P is the United States Department of Transportation (USDOT) National Transportation Library's (NTL) Repository and Open Science Access Portal. The name ROSA P was chosen to honor the role public transportation played in the civil rights movement, along with one of the important figures, Rosa Parks. Founded as an all-digital library program, NTL\u2019s collections in ROSA P are full-text digital publications, datasets, and other resources. Legacy print materials that have been digitized are collected if they have historic, technical, or national significance. The repository is also designated as the full-text repository for USDOT-funded research under the USDOT Public Access Plan. Collections in ROSA P are available without restriction to transportation researchers, statistical organizations, the media, and the general public. NTL collects resources across all modes of transportation and related disciplines, with specific focus on information produced by USDOT, state DOTs, and other transportation organizations. Content types found in ROSA P include textual works, datasets, still image works, moving image works, other multimedia, and maps. All resources in ROSA P are in the public domain and/or explicit permission has been provided by the rights holder to NTL to make their materials available for free over the web.", "abbreviation": "ROSA P", "support-links": [{"url": "NTLDataCurator@dot.gov", "name": "Support Email", "type": "Support email"}, {"url": "https://rosap.ntl.bts.gov/help", "name": "ROSA P Help", "type": "Help documentation"}, {"url": "https://rosap.ntl.bts.gov/about", "name": "About", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://rosap.ntl.bts.gov/browse/collections", "name": "Browse and Search Collections", "type": "data access"}, {"url": "https://rosap.ntl.bts.gov/submitContent", "name": "Data Submission", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013155", "name": "re3data:r3d100013155", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001534", "bsg-d001534"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Construction Engineering", "Transportation Planning", "Urban Planning", "Civil Engineering", "Materials Science"], "domains": ["Transport"], "taxonomies": ["Not applicable"], "user-defined-tags": ["transportation", "transportation data"], "countries": ["United States"], "name": "FAIRsharing record for: Repository & Open Science Access Portal", "abbreviation": "ROSA P", "url": "https://fairsharing.org/10.25504/FAIRsharing.GbmifP", "doi": "10.25504/FAIRsharing.GbmifP", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ROSA P is the United States Department of Transportation (USDOT) National Transportation Library's (NTL) Repository and Open Science Access Portal. The name ROSA P was chosen to honor the role public transportation played in the civil rights movement, along with one of the important figures, Rosa Parks. Founded as an all-digital library program, NTL\u2019s collections in ROSA P are full-text digital publications, datasets, and other resources. Legacy print materials that have been digitized are collected if they have historic, technical, or national significance. The repository is also designated as the full-text repository for USDOT-funded research under the USDOT Public Access Plan. Collections in ROSA P are available without restriction to transportation researchers, statistical organizations, the media, and the general public. NTL collects resources across all modes of transportation and related disciplines, with specific focus on information produced by USDOT, state DOTs, and other transportation organizations. Content types found in ROSA P include textual works, datasets, still image works, moving image works, other multimedia, and maps. All resources in ROSA P are in the public domain and/or explicit permission has been provided by the rights holder to NTL to make their materials available for free over the web.", "publications": [], "licence-links": [{"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1921, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2814", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-14T09:35:09.000Z", "updated-at": "2021-11-24T13:20:10.156Z", "metadata": {"name": "Modelzoo", "status": "ready", "contacts": [{"contact-name": "Jing Yu Koh", "contact-email": "jingyu_koh@mymail.sutd.edu.sg"}], "homepage": "https://modelzoo.co/", "identifier": 2814, "description": "Model Zoo curates and provides a platform for deep learning researchers to easily find pre-trained models for a variety of platforms and uses.", "abbreviation": "Modelzoo", "support-links": [{"url": "https://modelzoo.co/blog", "name": "Blog", "type": "Blog/News"}, {"url": "info@modelzoo.co", "name": "General Contact", "type": "Support email"}], "year-creation": 2015}, "legacy-ids": ["biodbcore-001313", "bsg-d001313"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Natural language processing", "Machine learning"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Computer vision", "Generative models"], "countries": ["Singapore"], "name": "FAIRsharing record for: Modelzoo", "abbreviation": "Modelzoo", "url": "https://fairsharing.org/fairsharing_records/2814", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Model Zoo curates and provides a platform for deep learning researchers to easily find pre-trained models for a variety of platforms and uses.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2223", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-05T14:54:39.000Z", "updated-at": "2021-12-06T10:48:05.080Z", "metadata": {"doi": "10.25504/FAIRsharing.6w29qp", "name": "VirusMentha", "status": "ready", "contacts": [{"contact-name": "Alberto Calderone", "contact-email": "sinnefa@gmail.com", "contact-orcid": "0000-0003-0876-1595"}], "homepage": "http://virusmentha.uniroma2.it/", "identifier": 2223, "description": "VirusMentha is a collection of viral interactions manually curated from protein-protein databases that adhere to the IMEx consortium. This resource offers a series of tools to analyse selected proteins in the context of a network of interactions. virus mentha offers direct access to viral families such as: Orthomyxoviridae, Orthoretrovirinae and Herpesviridae plus, it offers the unique possibility of searching by host organism.", "abbreviation": "VirusMentha", "support-links": [{"url": "http://virusmentha.uniroma2.it/about.php", "name": "User Guide", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://virusmentha.uniroma2.it/download.php", "name": "Download data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010685", "name": "re3data:r3d100010685", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005987", "name": "SciCrunch:RRID:SCR_005987", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000697", "bsg-d000697"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Protein interaction", "Network model", "Protein"], "taxonomies": ["Viruses"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: VirusMentha", "abbreviation": "VirusMentha", "url": "https://fairsharing.org/10.25504/FAIRsharing.6w29qp", "doi": "10.25504/FAIRsharing.6w29qp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VirusMentha is a collection of viral interactions manually curated from protein-protein databases that adhere to the IMEx consortium. This resource offers a series of tools to analyse selected proteins in the context of a network of interactions. virus mentha offers direct access to viral families such as: Orthomyxoviridae, Orthoretrovirinae and Herpesviridae plus, it offers the unique possibility of searching by host organism.", "publications": [{"id": 820, "pubmed_id": 25217587, "title": "VirusMentha: a new resource for virus-host protein interactions.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku830", "authors": "Calderone A,Licata L,Cesareni G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku830", "created_at": "2021-09-30T08:23:50.414Z", "updated_at": "2021-09-30T11:28:52.943Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3085", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-24T09:03:05.000Z", "updated-at": "2021-12-06T10:47:33.717Z", "metadata": {"name": "Alberta Geological Survey Open Data Portal", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "AGS-Info@aer.ca"}], "homepage": "https://geology-ags-aer.opendata.arcgis.com/", "identifier": 3085, "description": "The Alberta Geological Survey (AGS) Open Data Portal features a subset of Geographic Information Systems (GIS) data related to the geology of the province of Alberta and published by the AGS. The AGS delivers geoscience in several key areas; including surficial mapping, bedrock mapping, geological modelling, resource evaluation (hydrocarbons, minerals), groundwater, and geological hazards.", "abbreviation": "AGS Open Data Portal", "year-creation": 1920, "data-processes": [{"url": "https://geology-ags-aer.opendata.arcgis.com/search", "name": "Search & Browse", "type": "data access"}], "associated-tools": [{"url": "http://www1.aer.ca/GISConversionTools/conversion_tools.html", "name": "Conversion Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013018", "name": "re3data:r3d100013018", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001593", "bsg-d001593"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Hydrogeology", "Geology", "Earth Science", "Mineralogy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Seismology"], "countries": ["Canada"], "name": "FAIRsharing record for: Alberta Geological Survey Open Data Portal", "abbreviation": "AGS Open Data Portal", "url": "https://fairsharing.org/fairsharing_records/3085", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Alberta Geological Survey (AGS) Open Data Portal features a subset of Geographic Information Systems (GIS) data related to the geology of the province of Alberta and published by the AGS. The AGS delivers geoscience in several key areas; including surficial mapping, bedrock mapping, geological modelling, resource evaluation (hydrocarbons, minerals), groundwater, and geological hazards.", "publications": [], "licence-links": [{"licence-name": "Open Government Licence - Alberta", "licence-id": 626, "link-id": 1425, "relation": "undefined"}, {"licence-name": "AGS Copyright & Legal Disclaimers", "licence-id": 20, "link-id": 1428, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2348", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-18T11:41:21.000Z", "updated-at": "2021-12-06T10:48:40.430Z", "metadata": {"doi": "10.25504/FAIRsharing.hkk309", "name": "Cellosaurus", "status": "ready", "contacts": [{"contact-name": "Amos Bairoch", "contact-email": "Amos.Bairoch@sib.swiss", "contact-orcid": "0000-0003-2826-6444"}], "homepage": "https://web.expasy.org/cellosaurus/", "citations": [{"doi": "10.7171/jbt.18-2902-002", "pubmed-id": 29805321, "publication-id": 2788}], "identifier": 2348, "description": "The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", "abbreviation": "Cellosaurus", "support-links": [{"url": "https://web.expasy.org/cgi-bin/cellosaurus/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://web.expasy.org/cellosaurus/cellosaurus_relnotes.txt", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://web.expasy.org/cgi-bin/cellosaurus/browse_by_group", "name": "Browse Data by Cell Line Group", "type": "data access"}, {"url": "https://web.expasy.org/cgi-bin/cellosaurus/browse_by_panel", "name": "Browse Data by Cell Line Panel", "type": "data access"}, {"url": "ftp://ftp.expasy.org/databases/cellosaurus", "name": "Data Download", "type": "data access"}, {"url": "https://web.expasy.org/cgi-bin/cellosaurus/search", "name": "Full text search", "type": "data access"}], "associated-tools": [{"url": "https://web.expasy.org/cellosaurus-str-search/", "name": "CLASTR 1.4.3"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013293", "name": "re3data:r3d100013293", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013869", "name": "SciCrunch:RRID:SCR_013869", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000826", "bsg-d000826"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Cell line"], "taxonomies": ["Invertebrata", "Vertebrata"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Cellosaurus", "abbreviation": "Cellosaurus", "url": "https://fairsharing.org/10.25504/FAIRsharing.hkk309", "doi": "10.25504/FAIRsharing.hkk309", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", "publications": [{"id": 2787, "pubmed_id": 31444973, "title": "CLASTR: The Cellosaurus STR similarity search tool - A precious help for cell line authentication.", "year": 2019, "url": "http://doi.org/10.1002/ijc.32639", "authors": "Robin T,Capes-Davis A,Bairoch A", "journal": "Int J Cancer", "doi": "10.1002/ijc.32639", "created_at": "2021-09-30T08:27:42.681Z", "updated_at": "2021-09-30T08:27:42.681Z"}, {"id": 2788, "pubmed_id": 29805321, "title": "The Cellosaurus, a Cell-Line Knowledge Resource.", "year": 2018, "url": "http://doi.org/10.7171/jbt.18-2902-002", "authors": "Bairoch A", "journal": "J Biomol Tech", "doi": "10.7171/jbt.18-2902-002", "created_at": "2021-09-30T08:27:42.798Z", "updated_at": "2021-09-30T08:27:42.798Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1875, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1876, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1690", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:00.527Z", "metadata": {"doi": "10.25504/FAIRsharing.2ck3st", "name": "SubtiWiki", "status": "ready", "contacts": [{"contact-name": "J\u00f6rg St\u00fclke", "contact-email": "jstuelk@gwdg.de"}], "homepage": "http://subtiwiki.uni-goettingen.de", "identifier": 1690, "description": "Collaborative resource for the Bacillus community.", "abbreviation": "SubtiWiki", "support-links": [{"url": "http://subtiwiki.uni-goettingen.de/static/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available on request", "type": "data versioning"}, {"url": "http://subtiwiki.uni-goettingen.de/query.php?id=a", "name": "download", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "web service (JSON,XML)", "type": "data access"}, {"name": "semantic media wiki API", "type": "data access"}, {"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "browse", "type": "data access"}, {"url": "http://subtiwiki.uni-goettingen.de/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000146", "bsg-d000146"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Molecular interaction", "Genetic interaction", "Plasmid", "Gene"], "taxonomies": ["Bacillus subtilis"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: SubtiWiki", "abbreviation": "SubtiWiki", "url": "https://fairsharing.org/10.25504/FAIRsharing.2ck3st", "doi": "10.25504/FAIRsharing.2ck3st", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Collaborative resource for the Bacillus community.", "publications": [{"id": 207, "pubmed_id": 20157485, "title": "A community-curated consensual annotation that is continuously updated: the Bacillus subtilis centred wiki SubtiWiki.", "year": 2010, "url": "http://doi.org/10.1093/database/bap012", "authors": "Fl\u00f3rez LA., Roppel SF., Schmeisky AG., Lammers CR., St\u00fclke J.,", "journal": "Database (Oxford)", "doi": "10.1093/database/bap012", "created_at": "2021-09-30T08:22:42.539Z", "updated_at": "2021-09-30T08:22:42.539Z"}, {"id": 1396, "pubmed_id": 19959575, "title": "Connecting parts with processes: SubtiWiki and SubtiPathways integrate gene and pathway annotation for Bacillus subtilis.", "year": 2009, "url": "http://doi.org/10.1099/mic.0.035790-0", "authors": "Lammers CR., Fl\u00f3rez LA., Schmeisky AG., Roppel SF., M\u00e4der U., Hamoen L., St\u00fclke J.,", "journal": "Microbiology (Reading, Engl.)", "doi": "10.1099/mic.0.035790-0", "created_at": "2021-09-30T08:24:56.076Z", "updated_at": "2021-09-30T08:24:56.076Z"}, {"id": 2250, "pubmed_id": 26433225, "title": "SubtiWiki 2.0--an integrated database for the model organism Bacillus subtilis.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1006", "authors": "Michna RH,Zhu B,Mader U,Stulke J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1006", "created_at": "2021-09-30T08:26:33.648Z", "updated_at": "2021-09-30T11:29:31.595Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2723", "type": "fairsharing-records", "attributes": {"created-at": "2019-01-29T10:01:33.000Z", "updated-at": "2021-12-06T10:48:51.842Z", "metadata": {"doi": "10.25504/FAIRsharing.m8AMNi", "name": "Lichenized and Non-Lichenized Ascomycetes", "status": "ready", "contacts": [{"contact-name": "Dagmar Triebel", "contact-email": "triebel@snsb.de"}], "homepage": "http://www.lias.net/", "identifier": 2723, "description": "LIAS is a global information system for Lichenized and Non-Lichenized Ascomycetes. It includes several interoperable data repositories. In recent years, the two core components \u2018LIAS names\u2019 and \u2018LIAS light\u2019 have been enlarged. LIAS light stores phenotypic trait data. The component \u2018LIAS names\u2019 is a platform for managing taxonomic names and classifications. 'LIAS names' and \u2018LIAS light\u2019 also deliver content data to the Catalogue of Life, acting as the Global Species Database (GSD) for lichens. LIAS gtm is a database for visualising the geographic distribution of lichen traits. LIAS is powered by the Diversity Workbench database framework with several interfaces for data management and publication.", "abbreviation": "LIAS", "support-links": [{"url": "http://www.lias.net/Descriptors/Definitions.html", "name": "LIAS Descriptors", "type": "Help documentation"}, {"url": "http://www.lias.net/Descriptors/Listing.html", "name": "LIAS Descriptors Master Forms", "type": "Help documentation"}, {"url": "http://www.lias.net/About/About.html", "name": "About", "type": "Help documentation"}, {"url": "http://www.lias.net/", "name": "Partners", "type": "Help documentation"}, {"url": "https://glossary.lias.net/wiki/", "name": "LIAS glossary", "type": "Help documentation"}, {"url": "http://liaslight.lias.net/About/Impressum.html", "name": "LIAS light editors and managers", "type": "Help documentation"}, {"url": "http://liasgtm.lias.net/gtm.php?p=doc&c=gtm", "name": "LIAS gtm documentation", "type": "Help documentation"}], "year-creation": 1993, "data-processes": [{"url": "http://www.lias.net/Taxa/Descriptions.html", "name": "Browse Descriptions of Taxa", "type": "data access"}, {"url": "http://www.lias.net/Taxa/DataEntry.html", "name": "Data Entry and Revision", "type": "data curation"}, {"url": "http://liaslight.lias.net/Identification/Navikey/World/en_GB/index.html", "name": "Interactive search for taxa selecting characters (interactive identification keys)", "type": "data access"}], "associated-tools": [{"url": "http://www.navikey.net/", "name": "NaviKey 5"}, {"url": "http://liaslight.lias.net/", "name": "LIAS light"}, {"url": "http://liasgtm.lias.net/gtm.php", "name": "LIAS gtm"}, {"url": "http://liasnames.lias.net/", "name": "LIAS names"}, {"url": "https://diversityworkbench.net/Portal/DiversityDescriptions", "name": "DiversityDescriptions"}, {"url": "https://diversityworkbench.net/Portal/DiversityTaxonNames", "name": "DiversityTaxonNames"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011872", "name": "re3data:r3d100011872", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001221", "bsg-d001221"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Biodiversity", "Life Science"], "domains": ["Taxonomic classification", "Geographical location", "Phenotype"], "taxonomies": ["Ascomycota", "Fungi"], "user-defined-tags": ["Plant Phenotypes and Traits"], "countries": ["Germany"], "name": "FAIRsharing record for: Lichenized and Non-Lichenized Ascomycetes", "abbreviation": "LIAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.m8AMNi", "doi": "10.25504/FAIRsharing.m8AMNi", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LIAS is a global information system for Lichenized and Non-Lichenized Ascomycetes. It includes several interoperable data repositories. In recent years, the two core components \u2018LIAS names\u2019 and \u2018LIAS light\u2019 have been enlarged. LIAS light stores phenotypic trait data. The component \u2018LIAS names\u2019 is a platform for managing taxonomic names and classifications. 'LIAS names' and \u2018LIAS light\u2019 also deliver content data to the Catalogue of Life, acting as the Global Species Database (GSD) for lichens. LIAS gtm is a database for visualising the geographic distribution of lichen traits. LIAS is powered by the Diversity Workbench database framework with several interfaces for data management and publication.", "publications": [{"id": 2384, "pubmed_id": null, "title": "LIAS light \u2013 Towards the ten thousand species milestone", "year": 2014, "url": "https://mycokeys.pensoft.net/article/1203/list/8/", "authors": "Rambold, G., Elix, J.A., Heindl-Tenhunen, B., K\u00f6hler, T., Nash, T.H. III, Neubacher, D., Reichert, W., Zedda, L. & Triebel, D.", "journal": "MycoKeys 8: 11-16", "doi": null, "created_at": "2021-09-30T08:26:52.892Z", "updated_at": "2021-09-30T08:26:52.892Z"}, {"id": 2385, "pubmed_id": null, "title": "Geographic heat maps of lichen traits derived by combining LIAS light description and GBIF occurrence data, provided on a new platform", "year": 2016, "url": "https://link.springer.com/article/10.1007/s10531-016-1199-2", "authors": "Rambold, G., Zedda, L., Coyle, J., Per\u0161oh, D., K\u00f6hler, T. & Triebel", "journal": "Biodivers. & Conservation 25(13): 2743-2751", "doi": null, "created_at": "2021-09-30T08:26:53.002Z", "updated_at": "2021-09-30T08:26:53.002Z"}, {"id": 2399, "pubmed_id": null, "title": "LIAS - an interactive database system for structured descriptive data of Ascomycetes. (in: Biodiversity Databases: Techniques, Politics, and Applications. Chapter 8. )", "year": 2007, "url": "https://www.researchgate.net/publication/215823237_Chapter_8_LIAS_-_an_interactive_database_system_for_structured_descriptive_data_of_Ascomycetes", "authors": "Triebel, D., Per\u0161oh, D., Nash, T.H. III, Zedda, L. & Rambold, G.", "journal": "Syst. Assoc. Special Vol. 73: 99-110", "doi": null, "created_at": "2021-09-30T08:26:54.560Z", "updated_at": "2021-09-30T11:28:35.678Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States (CC BY-NC-ND 3.0 US)", "licence-id": 177, "link-id": 2347, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 2349, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 2.0", "licence-id": 355, "link-id": 2361, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1702", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.048Z", "metadata": {"doi": "10.25504/FAIRsharing.qkrmth", "name": "RhesusBase", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "rhesusbase@pku.edu.cn"}], "homepage": "http://www.rhesusbase.org", "identifier": 1702, "description": "A comprehensive online knowledgebase for the monkey research community.", "abbreviation": "RhesusBase", "support-links": [{"url": "http://www.rhesusbase.org/help/FAQ.jsp", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2012, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "annual release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by database release", "type": "data versioning"}]}, "legacy-ids": ["biodbcore-000159", "bsg-d000159"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene model annotation", "Pseudogene", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rhesus macaques"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: RhesusBase", "abbreviation": "RhesusBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.qkrmth", "doi": "10.25504/FAIRsharing.qkrmth", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A comprehensive online knowledgebase for the monkey research community.", "publications": [{"id": 1298, "pubmed_id": 26882984, "title": "RhesusBase PopGateway: Genome-Wide Population Genetics Atlas in Rhesus Macaque.", "year": 2016, "url": "http://doi.org/10.1093/molbev/msw025", "authors": "Zhong X,Peng J,Shen QS,Chen JY,Gao H,Luan X,Yan S,Huang X,Zhang SJ,Xu L,Zhang X,Tan BC,Li CY", "journal": "Mol Biol Evol", "doi": "10.1093/molbev/msw025", "created_at": "2021-09-30T08:24:44.935Z", "updated_at": "2021-09-30T08:24:44.935Z"}, {"id": 1299, "pubmed_id": 24577841, "title": "Evolutionary interrogation of human biology in well-annotated genomic framework of rhesus macaque.", "year": 2014, "url": "http://doi.org/10.1093/molbev/msu084", "authors": "Zhang SJ,Liu CJ,Yu P,Zhong X,Chen JY,Yang X,Peng J,Yan S,Wang C,Zhu X,Xiong J,Zhang YE,Tan BC,Li CY", "journal": "Mol Biol Evol", "doi": "10.1093/molbev/msu084", "created_at": "2021-09-30T08:24:45.043Z", "updated_at": "2021-09-30T08:24:45.043Z"}, {"id": 1307, "pubmed_id": 22965133, "title": "RhesusBase: a knowledgebase for the monkey research community.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks835", "authors": "Zhang SJ,Liu CJ,Shi M,Kong L,Chen JY,Zhou WZ,Zhu X,Yu P,Wang J,Yang X,Hou N,Ye Z,Zhang R,Xiao R,Zhang X,Li CY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks835", "created_at": "2021-09-30T08:24:45.957Z", "updated_at": "2021-09-30T11:29:05.760Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2147", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:15.034Z", "metadata": {"doi": "10.25504/FAIRsharing.qv0f6x", "name": "Manually Curated Database of Rice Proteins", "status": "uncertain", "contacts": [{"contact-name": "Saurabh Raghuvanshi", "contact-email": "saurabh@genomeindia.org"}], "homepage": "http://www.genomeindia.org/biocuration", "identifier": 2147, "description": "The Manually Curated Database of Rice Proteins (MCDRP) is a manually-curated database based on published experimental data. The database contains data for rice proteins curated from experiments drawn from research articles. The database stores information including gene name, plant type, tissue and developmental stage. The homepage for this resource could not be loaded. Please contact us if you have any information regarding the current status of this resource.", "abbreviation": "MCDRP", "support-links": [{"url": "http://www.genomeindia.org/biocuration/usr/feedback.php", "type": "Contact form"}], "year-creation": 2013, "data-processes": [{"url": "http://www.genomeindia.org/biocuration/usr/browsepage.php", "name": "browse", "type": "data access"}, {"url": "http://www.genomeindia.org/biocuration/usr/searchmainpage.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000619", "bsg-d000619"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany"], "domains": ["Annotation", "Protein interaction", "Curated information", "Digital curation", "Protein", "Literature curation", "Biocuration"], "taxonomies": ["Oryza sativa"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Manually Curated Database of Rice Proteins", "abbreviation": "MCDRP", "url": "https://fairsharing.org/10.25504/FAIRsharing.qv0f6x", "doi": "10.25504/FAIRsharing.qv0f6x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Manually Curated Database of Rice Proteins (MCDRP) is a manually-curated database based on published experimental data. The database contains data for rice proteins curated from experiments drawn from research articles. The database stores information including gene name, plant type, tissue and developmental stage. The homepage for this resource could not be loaded. Please contact us if you have any information regarding the current status of this resource.", "publications": [{"id": 617, "pubmed_id": 24214963, "title": "Manually Curated Database of Rice Proteins", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1072", "authors": "Gour P, Garg P, Jain R, Joseph SV, Tyagi AK, Raghuvanshi S.", "journal": "Nucleic Acids Researh", "doi": "10.1093/nar/gkt1072", "created_at": "2021-09-30T08:23:27.903Z", "updated_at": "2021-09-30T08:23:27.903Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2298", "type": "fairsharing-records", "attributes": {"created-at": "2016-05-18T08:01:15.000Z", "updated-at": "2021-11-24T13:13:38.889Z", "metadata": {"doi": "10.25504/FAIRsharing.8zqzm9", "name": "Ontology and Knowledge Base of Probability Distributions", "status": "ready", "contacts": [{"contact-name": "Maciej J Swat", "contact-email": "maciej.swat@gmail.com"}], "homepage": "http://www.probonto.org", "identifier": 2298, "description": "ProbOnto, is an ontology-based knowledge base of probability distributions, featuring more than 150 uni- and multivariate distributions with their defining functions, characteristics, relationships and re-parameterization formulas. It can be used for model annotation and facilitates the encoding of distribution-based models, related functions and quantities. ProbOnto is both an ontology and a knowledge base, however its primary focus is the knowledge base.", "abbreviation": "ProbOnto", "access-points": [{"url": "https://www.ebi.ac.uk/ols/docs/api", "name": "Via OLS API", "type": "REST"}], "support-links": [{"url": "http://www.probonto.org", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://sites.google.com/site/probonto/download", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-000772", "bsg-d000772"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Statistics", "Mathematics", "Computational Biology", "Systems Biology"], "domains": ["Mathematical model", "Modeling and simulation"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Ontology and Knowledge Base of Probability Distributions", "abbreviation": "ProbOnto", "url": "https://fairsharing.org/10.25504/FAIRsharing.8zqzm9", "doi": "10.25504/FAIRsharing.8zqzm9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProbOnto, is an ontology-based knowledge base of probability distributions, featuring more than 150 uni- and multivariate distributions with their defining functions, characteristics, relationships and re-parameterization formulas. It can be used for model annotation and facilitates the encoding of distribution-based models, related functions and quantities. ProbOnto is both an ontology and a knowledge base, however its primary focus is the knowledge base.", "publications": [{"id": 1171, "pubmed_id": 27153608, "title": "ProbOnto: ontology and knowledge base of probability distributions", "year": 2016, "url": "http://doi.org/10.1093/bioinformatics/btw170", "authors": "Maciej J Swat, Pierre Grenon and Sarala M Wimalaratne", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btw170", "created_at": "2021-09-30T08:24:30.124Z", "updated_at": "2021-09-30T08:24:30.124Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2091, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3072", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-13T10:45:22.000Z", "updated-at": "2022-02-08T10:32:55.785Z", "metadata": {"doi": "10.25504/FAIRsharing.6c97bf", "name": "International Standard Name Identifier Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@isni.org"}], "homepage": "https://isni.org/page/search-database/", "identifier": 3072, "description": "The International Standard Name Identifier (ISNI) Database is used to uniquely identify persons and organizations worldwide. ISNIs are assigned when there is a high level of confidence in matching new names to existing names in the database or when sufficiently rich metadata is available to determine that the new name does not yet exist in the ISNI database.", "abbreviation": "ISNI Database", "access-points": [{"url": "https://isni.oclc.org:2443/isni/docs/ISNI%20SRU%20search%20API%20guidelines.pdf", "name": "API Access", "type": "Other"}], "support-links": [{"url": "https://isni.org/page/news/", "name": "News", "type": "Blog/News"}, {"url": "https://isni.org/page/contact/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://isni.org/page/faqs/", "name": "ISNI FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://isni.org/page/data-inputs-and-outputs/", "name": "Data Inputs and Outputs", "type": "Help documentation"}, {"url": "https://isni.org/page/technical-documentation/", "name": "Technical Documentation", "type": "Help documentation"}, {"url": "https://isni.org/page/Data-Quality-Procedures/", "name": "Data Quality Procedures", "type": "Help documentation"}, {"url": "https://twitter.com/isni_id", "name": "@isni_id", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://isni.org/page/search-database/", "name": "Search", "type": "data access"}, {"url": "https://isni.org/page/get-an-isni/", "name": "Creating an ISNI", "type": "data curation"}, {"url": "https://isni.org/page/data-inputs-and-outputs/", "name": "About Data Inputs and Outputs", "type": "data access"}]}, "legacy-ids": ["biodbcore-001580", "bsg-d001580"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Informatics"], "domains": ["Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "Worldwide"], "name": "FAIRsharing record for: International Standard Name Identifier Database", "abbreviation": "ISNI Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.6c97bf", "doi": "10.25504/FAIRsharing.6c97bf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Standard Name Identifier (ISNI) Database is used to uniquely identify persons and organizations worldwide. ISNIs are assigned when there is a high level of confidence in matching new names to existing names in the database or when sufficiently rich metadata is available to determine that the new name does not yet exist in the ISNI database.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2429", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-17T16:14:44.000Z", "updated-at": "2021-12-06T10:48:47.369Z", "metadata": {"doi": "10.25504/FAIRsharing.k9vqye", "name": "National Snow and Ice Data Center Data Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "nsidc@nsidc.org"}], "homepage": "http://nsidc.org/data/", "identifier": 2429, "description": "The National Snow and Ice Data Center (NSIDC) contains data on the cryosphere, which includes snow, ice, glaciers, frozen ground, and climate interactions. NSIDC manages and distributes scientific data, creates tools for data access, supports data users, performs scientific research, and educates the public about the cryosphere. Data are from satellites and field observations, and are from NASA, NSF, NOAA, and other programs. All data are available free of charge.", "abbreviation": "NSIDC", "access-points": [{"url": "https://nsidc.org/api/", "name": "NSIDC API Documentation", "type": "Other"}], "support-links": [{"url": "https://nsidc.org/about/contact.html", "name": "Contact Information", "type": "Contact form"}, {"url": "http://nsidc.org/cryosphere/icelights/", "name": "General Cryosphere FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://nsidc.org/the-drift/data-update/", "name": "Data Announcements", "type": "Forum"}, {"url": "https://nsidc.org/data/support", "name": "Help Center", "type": "Help documentation"}, {"url": "https://nsidc.org/about/overview", "name": "About", "type": "Help documentation"}], "year-creation": 1982, "data-processes": [{"url": "https://nsidc.org/data/search/", "name": "Search", "type": "data access"}, {"url": "https://nsidc.org/data/submit/intro", "name": "Submitting Data", "type": "data curation"}], "associated-tools": [{"url": "https://nsidc.org/data/tools/analysis-and-imaging", "name": "Data Analysis and Imaging Tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010110", "name": "re3data:r3d100010110", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002220", "name": "SciCrunch:RRID:SCR_002220", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000911", "bsg-d000911"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Cryosphere"], "countries": ["United States"], "name": "FAIRsharing record for: National Snow and Ice Data Center Data Portal", "abbreviation": "NSIDC", "url": "https://fairsharing.org/10.25504/FAIRsharing.k9vqye", "doi": "10.25504/FAIRsharing.k9vqye", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Snow and Ice Data Center (NSIDC) contains data on the cryosphere, which includes snow, ice, glaciers, frozen ground, and climate interactions. NSIDC manages and distributes scientific data, creates tools for data access, supports data users, performs scientific research, and educates the public about the cryosphere. Data are from satellites and field observations, and are from NASA, NSF, NOAA, and other programs. All data are available free of charge.", "publications": [], "licence-links": [{"licence-name": "NSIDC Use and Copyright", "licence-id": 603, "link-id": 1001, "relation": "undefined"}, {"licence-name": "NSIDC Data Policies", "licence-id": 602, "link-id": 1467, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1469, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2907", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-12T12:19:58.000Z", "updated-at": "2022-02-08T10:31:58.734Z", "metadata": {"doi": "10.25504/FAIRsharing.408108", "name": "iDog", "status": "ready", "contacts": [{"contact-name": "iDog Helpdesk", "contact-email": "idog@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/idog/", "citations": [{"doi": "10.1093/nar/gky1041", "pubmed-id": 30371881, "publication-id": 2807}], "identifier": 2907, "description": "iDog is an integrated resource for the domestic dog and wild canids. It provides information on genes, genomes, SNPs, breed/disease traits, gene expression, GO functional annotations, dog-human homolog diseases. In addition, iDog provides tools for performing genomic data visualization and analyses.", "abbreviation": "iDog", "data-curation": {}, "support-links": [{"url": "https://bigd.big.ac.cn/idog/pages/help/faq.jsp", "name": "iDog FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/idog/pages/help/tutorial.jsp", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/idog/pages/help/idog_breeds_nomenclature.jsp", "name": "Nomenclature", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://bigd.big.ac.cn/idog/pages/browse.jsp", "name": "Browse", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/reference/reference_search.jsp", "name": "Literature Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/doghdc/search.jsp", "name": "Dog-Human Disease Connection Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/go/geneontology.action?goacc=GO:0003674&type=Molecular%20Function", "name": "Browse by GO Term", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/phenotype/gwas/gwas_browser.jsp", "name": "Search GWAS", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/phenotype/disease/disease_browser.jsp", "name": "Search Diseases", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/phenotype/breed/breed_search.jsp", "name": "Search Breeds", "type": "data access"}, {"url": "https://bigd.big.ac.cn/doggd/pages/modules/search/search.jsp", "name": "Search Genomes", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/gene/gene_search.jsp", "name": "Search Genes", "type": "data access"}, {"url": "http://bigd.big.ac.cn/doggd", "name": "DogGD", "type": "data access"}, {"url": "http://bigd.big.ac.cn/dogsdv2", "name": "DogSD", "type": "data access"}, {"url": "https://bigd.big.ac.cn/idog/pages/phenotype/phenotype.jsp", "name": "DogPD", "type": "data access"}, {"url": "https://bigd.big.ac.cn/doggd/pages/modules/download/download.jsp", "name": "Download Sequence and Annotation Data", "type": "data release"}], "associated-tools": [{"url": "http://bigd.big.ac.cn/dogvisual/?data=dog", "name": "JBrowse"}, {"url": "https://bigd.big.ac.cn/doggd/pages/modules/blast/blastn_search.jsp", "name": "BLASTN"}, {"url": "https://bigd.big.ac.cn/egpscloud/data/app/egpscloud@big.ac.cn/bwa/conf/page.jsp?appId=270&appCreateBy=egpscloud@big.ac.cn&appName=bwa&fromidog=1", "name": "BWA"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001408", "bsg-d001408"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Comparative Genomics"], "domains": ["Expression data", "Genome annotation", "Genome visualization", "Gene functional annotation", "Gene expression", "Gene-disease association"], "taxonomies": ["Canis familiaris", "Cuon alpinus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: iDog", "abbreviation": "iDog", "url": "https://fairsharing.org/10.25504/FAIRsharing.408108", "doi": "10.25504/FAIRsharing.408108", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iDog is an integrated resource for the domestic dog and wild canids. It provides information on genes, genomes, SNPs, breed/disease traits, gene expression, GO functional annotations, dog-human homolog diseases. In addition, iDog provides tools for performing genomic data visualization and analyses.", "publications": [{"id": 2807, "pubmed_id": 30371881, "title": "iDog: an integrated resource for domestic dogs and wild canids.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1041", "authors": "Tang B,Zhou Q,Dong L,Li W,Zhang X,Lan L,Zhai S,Xiao J,Zhang Z,Bao Y,Zhang YP,Wang GD,Zhao W", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1041", "created_at": "2021-09-30T08:27:45.170Z", "updated_at": "2021-09-30T11:29:45.354Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 100, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3261", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-22T14:39:38.000Z", "updated-at": "2021-11-24T13:13:03.591Z", "metadata": {"name": "PREVIEW Global Risk Data Platform", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "earlywarning@unepgrid.ch"}], "homepage": "https://preview.grid.unep.ch/index.php?preview=about&lang=eng", "identifier": 3261, "description": "The PREVIEW Global Risk Data Platform is a multiple agencies effort to share spatial data information on global risk from natural hazards. Users can visualise, download or extract data on past hazardous events, human & economical hazard exposure and risk from natural hazards. Users may perform zooms, pan to a particular area, and add different layers of general data. Different backgrounds can be chosen to highlight different components reflecting vulnerability, such as population distribution, GDP per capita, elevation, and land cover. Layers of natural hazards can be added for both events and yearly average for tropical cyclones, droughts, earthquakes, biomass fires, floods, landslides and tsunamis.", "access-points": [{"url": "https://preview.grid.unep.ch/index.php?preview=services&lang=eng", "name": "Web Services Summary", "type": "REST"}], "support-links": [{"url": "https://preview.grid.unep.ch/index.php?preview=help&lang=eng", "name": "Help", "type": "Help documentation"}, {"url": "https://preview.grid.unep.ch/index.php?preview=about&lang=eng", "name": "About", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "https://preview.grid.unep.ch/index.php?preview=map&lang=eng", "name": "Map View & Search", "type": "data access"}, {"url": "https://preview.grid.unep.ch/index.php?preview=data&lang=eng", "name": "Download", "type": "data release"}, {"url": "https://preview.grid.unep.ch/index.php?preview=extract&lang=eng", "name": "Extract Subsets", "type": "data release"}, {"url": "https://preview.grid.unep.ch/index.php?preview=tools&lang=eng", "name": "Advanced Data Access & Querying", "type": "data access"}]}, "legacy-ids": ["biodbcore-001776", "bsg-d001776"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Economics", "Meteorology", "Earth Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Earthquake", "Global risk", "natural hazards"], "countries": ["Switzerland"], "name": "FAIRsharing record for: PREVIEW Global Risk Data Platform", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3261", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PREVIEW Global Risk Data Platform is a multiple agencies effort to share spatial data information on global risk from natural hazards. Users can visualise, download or extract data on past hazardous events, human & economical hazard exposure and risk from natural hazards. Users may perform zooms, pan to a particular area, and add different layers of general data. Different backgrounds can be chosen to highlight different components reflecting vulnerability, such as population distribution, GDP per capita, elevation, and land cover. Layers of natural hazards can be added for both events and yearly average for tropical cyclones, droughts, earthquakes, biomass fires, floods, landslides and tsunamis.", "publications": [], "licence-links": [{"licence-name": "PREVIEW Global Risk Platform Data Use and Disclaimers", "licence-id": 678, "link-id": 2305, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2796", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-17T11:53:09.000Z", "updated-at": "2021-11-24T13:20:07.875Z", "metadata": {"doi": "10.25504/FAIRsharing.zZHCUQ", "name": "Unimod", "status": "ready", "contacts": [{"contact-name": "John S. Cottrell", "contact-email": "jcottrell@matrixscience.com"}], "homepage": "http://www.unimod.org", "citations": [{"doi": "10.1002/pmic.200300744", "pubmed-id": 15174123, "publication-id": 809}], "identifier": 2796, "description": "Unimod is a community-supported, comprehensive database of protein modifications for mass spectrometry applications. The aim is to provide accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", "abbreviation": "Unimod", "support-links": [{"url": "http://www.unimod.org/unimod_help.html", "name": "Unimod Help", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"name": "Login Required (Guest Access Available)", "type": "data access"}, {"url": "http://www.unimod.org/modifications_list.php?", "name": "Browse", "type": "data access"}, {"url": "http://www.unimod.org/modifications_search.php", "name": "Search", "type": "data access"}, {"url": "http://www.unimod.org/downloads.html", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001295", "bsg-d001295"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics"], "domains": ["Mass spectrum", "Protein modification", "Mass spectrometry assay", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Japan"], "name": "FAIRsharing record for: Unimod", "abbreviation": "Unimod", "url": "https://fairsharing.org/10.25504/FAIRsharing.zZHCUQ", "doi": "10.25504/FAIRsharing.zZHCUQ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Unimod is a community-supported, comprehensive database of protein modifications for mass spectrometry applications. The aim is to provide accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", "publications": [{"id": 809, "pubmed_id": 15174123, "title": "Unimod: Protein modifications for mass spectrometry.", "year": 2004, "url": "http://doi.org/10.1002/pmic.200300744", "authors": "Creasy DM,Cottrell JS", "journal": "Proteomics", "doi": "10.1002/pmic.200300744", "created_at": "2021-09-30T08:23:49.262Z", "updated_at": "2021-09-30T08:23:49.262Z"}], "licence-links": [{"licence-name": "Design Science License (DSL)", "licence-id": 236, "link-id": 2318, "relation": "undefined"}, {"licence-name": "Unimod Copyleft", "licence-id": 820, "link-id": 2325, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2735", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T12:12:26.000Z", "updated-at": "2021-11-24T13:17:55.255Z", "metadata": {"doi": "10.25504/FAIRsharing.9HiHNn", "name": "WheatMine", "status": "ready", "contacts": [{"contact-email": "urgi-contact@inra.fr"}], "homepage": "https://urgi.versailles.inra.fr/WheatMine/begin.do", "identifier": 2735, "description": "WheatMine integrates many types of data for Triticum aestivum including gene model, markers, and scaffolds. You can run flexible queries, export results and analyse lists of data.", "abbreviation": "WheatMine", "access-points": [{"url": "https://urgi.versailles.inra.fr/WheatMine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://urgi.versailles.inra.fr/WheatMine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://urgi.versailles.inra.fr/WheatMine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "https://urgi.versailles.inra.fr/WheatMine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://urgi.versailles.inra.fr/WheatMine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://urgi.versailles.inra.fr/WheatMine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://urgi.versailles.inra.fr/WheatMine/keywordSearchResults.do?searchTerm=", "name": "Keyword Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001233", "bsg-d001233"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Genome"], "taxonomies": ["Triticum aestivum"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: WheatMine", "abbreviation": "WheatMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.9HiHNn", "doi": "10.25504/FAIRsharing.9HiHNn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WheatMine integrates many types of data for Triticum aestivum including gene model, markers, and scaffolds. You can run flexible queries, export results and analyse lists of data.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 697, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2238", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-24T15:42:14.000Z", "updated-at": "2021-11-24T13:14:49.193Z", "metadata": {"doi": "10.25504/FAIRsharing.8bva0r", "name": "BioXpress", "status": "ready", "contacts": [{"contact-name": "Quan Wan", "contact-email": "wanquan@gwmail.gwu.edu"}], "homepage": "https://hive.biochemistry.gwu.edu/tools/bioxpress/", "identifier": 2238, "description": "BioXpress is a curated gene expression and disease association database where the expression levels are mapped to genes.", "abbreviation": "BioXpress", "support-links": [{"url": "https://hive.biochemistry.gwu.edu/hive.cgi?cmd=contact", "type": "Contact form"}, {"url": "https://hive.biochemistry.gwu.edu/hive.cgi?cmd=main-about#training", "type": "Training documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://hive.biochemistry.gwu.edu/cgi-bin/prd/bioxpress/servlet.cgi", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000712", "bsg-d000712"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Life Science", "Biomedical Science"], "domains": ["Expression data", "Ribonucleic acid", "Next generation DNA sequencing"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: BioXpress", "abbreviation": "BioXpress", "url": "https://fairsharing.org/10.25504/FAIRsharing.8bva0r", "doi": "10.25504/FAIRsharing.8bva0r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioXpress is a curated gene expression and disease association database where the expression levels are mapped to genes.", "publications": [{"id": 880, "pubmed_id": 25819073, "title": "BioXpress: an integrated RNA-seq-derived gene expression database for pan-cancer analysis.", "year": 2015, "url": "http://doi.org/10.1093/database/bav019", "authors": "Quan Wan", "journal": "Database (Oxford).", "doi": "10.1093/database/bav019", "created_at": "2021-09-30T08:23:57.137Z", "updated_at": "2021-09-30T08:23:57.137Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 914, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1784", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.160Z", "metadata": {"doi": "10.25504/FAIRsharing.4zw0d9", "name": "Cnidarian Evolutionary Genomics Database", "status": "deprecated", "contacts": [{"contact-name": "J Fryan", "contact-email": "jfryan@bu.edu"}], "homepage": "http://cnidbase.com/index.cgi", "identifier": 1784, "description": "CnidBase, the Cnidarian Evolutionary Genomics Database, is a tool for investigating the evolutionary, developmental and ecological factors that affect gene expression and gene function in cnidarians.", "abbreviation": "CnidBase", "data-processes": [{"url": "http://cnidbase.com/index.cgi?show_gene_search=1", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://cnidbase.com/blast/", "name": "BLAST"}], "deprecation-date": "2021-9-19", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000244", "bsg-d000244"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Evolutionary Biology", "Life Science"], "domains": ["Sequence similarity", "Expression data", "DNA sequence data", "Evolution", "Gene", "Amino acid sequence", "Genome"], "taxonomies": ["Cnidaria"], "user-defined-tags": ["Evolutionary relationship between proteins via sequence similarity"], "countries": ["United States"], "name": "FAIRsharing record for: Cnidarian Evolutionary Genomics Database", "abbreviation": "CnidBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.4zw0d9", "doi": "10.25504/FAIRsharing.4zw0d9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CnidBase, the Cnidarian Evolutionary Genomics Database, is a tool for investigating the evolutionary, developmental and ecological factors that affect gene expression and gene function in cnidarians.", "publications": [{"id": 799, "pubmed_id": 12519972, "title": "CnidBase: The Cnidarian Evolutionary Genomics Database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg116", "authors": "Ryan JF., Finnerty JR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg116", "created_at": "2021-09-30T08:23:48.095Z", "updated_at": "2021-09-30T08:23:48.095Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2550", "type": "fairsharing-records", "attributes": {"created-at": "2018-01-25T18:23:37.000Z", "updated-at": "2021-11-24T13:20:07.701Z", "metadata": {"doi": "10.25504/FAIRsharing.brrt0b", "name": "Datasets2Tools", "status": "ready", "contacts": [{"contact-name": "Avi Ma'ayan", "contact-email": "avi.maayan@mssm.edu", "contact-orcid": "0000-0002-6904-1017"}], "homepage": "http://amp.pharm.mssm.edu/datasets2tools/", "identifier": 2550, "description": "Biomedical data repositories such as the Gene Expression Omnibus (GEO) enable the search and discovery of relevant biomedical digital data objects. Similarly, resources such as OMICtools index bioinformatics tools that can extract knowledge from these digital data objects. However, systematic access to pre-generated \u201ccanned\" analyses applied by bioinformatics tools to biomedical digital data objects is currently not available. Datasets2Tools is a repository indexing 31,473 canned bioinformatics analyses applied to 6,431 datasets. The Datasets2Tools repository also contains the indexing of 4,901 published bioinformatics software tools, and all the analyzed datasets. Datasets2Tools enables users to rapidly find datasets, tools, and canned analyses through an intuitive web interface, a Google Chrome extension, and an API. Furthermore, Datasets2Tools provides a platform for contributing canned analyses, datasets, and tools, as well as evaluating these digital objects according to their compliance with the findable, accessible, interoperable, and reusable (FAIR) principles. By incorporating community engagement, Datasets2Tools promotes sharing of digital resources to stimulate the extraction of knowledge from biomedical research data.", "abbreviation": "D2T", "access-points": [{"url": "http://amp.pharm.mssm.edu/datasets2tools/api", "name": "Datasets2Tools API", "type": "REST"}], "support-links": [{"url": "http://amp.pharm.mssm.edu/datasets2tools/help", "name": "Help and contact information", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://amp.pharm.mssm.edu/datasets2tools/contribute", "name": "Submit data", "type": "data curation"}], "associated-tools": [{"url": "http://amp.pharm.mssm.edu/Enrichr", "name": "Enrichr 1.0"}, {"url": "http://amp.pharm.mssm.edu/g2e/", "name": "GEO2Enrichr 1.0"}, {"url": "http://amp.pharm.mssm.edu/archs4/", "name": "ARCHS4 1.0"}]}, "legacy-ids": ["biodbcore-001033", "bsg-d001033"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics"], "domains": ["Analysis", "Software", "FAIR"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Datasets2Tools", "abbreviation": "D2T", "url": "https://fairsharing.org/10.25504/FAIRsharing.brrt0b", "doi": "10.25504/FAIRsharing.brrt0b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Biomedical data repositories such as the Gene Expression Omnibus (GEO) enable the search and discovery of relevant biomedical digital data objects. Similarly, resources such as OMICtools index bioinformatics tools that can extract knowledge from these digital data objects. However, systematic access to pre-generated \u201ccanned\" analyses applied by bioinformatics tools to biomedical digital data objects is currently not available. Datasets2Tools is a repository indexing 31,473 canned bioinformatics analyses applied to 6,431 datasets. The Datasets2Tools repository also contains the indexing of 4,901 published bioinformatics software tools, and all the analyzed datasets. Datasets2Tools enables users to rapidly find datasets, tools, and canned analyses through an intuitive web interface, a Google Chrome extension, and an API. Furthermore, Datasets2Tools provides a platform for contributing canned analyses, datasets, and tools, as well as evaluating these digital objects according to their compliance with the findable, accessible, interoperable, and reusable (FAIR) principles. By incorporating community engagement, Datasets2Tools promotes sharing of digital resources to stimulate the extraction of knowledge from biomedical research data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 602, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1663", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.728Z", "metadata": {"doi": "10.25504/FAIRsharing.vm6g21", "name": "Integrated Genomic Database of Non-Small Cell Lung Cancer", "status": "ready", "contacts": [{"contact-name": "Yuh-Shan Jou", "contact-email": "jou@ibms.sinica.edu.tw"}], "homepage": "http://igdb.nsclc.ibms.sinica.edu.tw", "identifier": 1663, "description": "Integrated Genomic Database of Non-Small Cell Lung Cancer.", "abbreviation": "IGDB.NSCLC", "support-links": [{"url": "http://igdb.nsclc.ibms.sinica.edu.tw/tutorial.php", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://igdb.nsclc.ibms.sinica.edu.tw/search.php", "name": "search", "type": "data access"}, {"name": "file download(pdf,txt,PS)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000119", "bsg-d000119"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Expression data", "MicroRNA expression analysis", "Genome", "Point mutation", "Copy number variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: Integrated Genomic Database of Non-Small Cell Lung Cancer", "abbreviation": "IGDB.NSCLC", "url": "https://fairsharing.org/10.25504/FAIRsharing.vm6g21", "doi": "10.25504/FAIRsharing.vm6g21", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Integrated Genomic Database of Non-Small Cell Lung Cancer.", "publications": [{"id": 1898, "pubmed_id": 22139933, "title": "IGDB.NSCLC: integrated genomic database of non-small cell lung cancer.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1183", "authors": "Kao S,Shiau CK,Gu DL,Ho CM,Su WH,Chen CF,Lin CH,Jou YS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1183", "created_at": "2021-09-30T08:25:53.486Z", "updated_at": "2021-09-30T11:29:22.452Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1959", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:16.089Z", "metadata": {"doi": "10.25504/FAIRsharing.ncgh1j", "name": "Pathway Interaction Database", "status": "deprecated", "contacts": [{"contact-name": "Carl F. Schaefer", "contact-email": "schaefec@mail.nih.gov"}], "homepage": "http://pid.nci.nih.gov/", "identifier": 1959, "description": "The Pathway Interaction Database is a highly-structured, curated collection of information about known biomolecular interactions and key cellular processes assembled into signaling pathways.", "abbreviation": "PID", "support-links": [{"url": "ncicb@pop.nci.nih.go", "type": "Support email"}], "year-creation": 2008, "data-processes": [{"url": "https://github.com/NCIP/pathway-interaction-database/tree/master/download", "name": "Download", "type": "data access"}], "deprecation-date": "2019-01-13", "deprecation-reason": "The NCI PID data portal has been retired. Please see https://wiki.nci.nih.gov/pages/viewpage.action?pageId=315491760 for more information."}, "legacy-ids": ["biodbcore-000425", "bsg-d000425"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Signaling", "Molecular interaction", "Small molecule", "Protein", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pathway Interaction Database", "abbreviation": "PID", "url": "https://fairsharing.org/10.25504/FAIRsharing.ncgh1j", "doi": "10.25504/FAIRsharing.ncgh1j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pathway Interaction Database is a highly-structured, curated collection of information about known biomolecular interactions and key cellular processes assembled into signaling pathways.", "publications": [{"id": 429, "pubmed_id": 18832364, "title": "PID: the Pathway Interaction Database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn653", "authors": "Schaefer CF., Anthony K., Krupa S., Buchoff J., Day M., Hannay T., Buetow KH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn653", "created_at": "2021-09-30T08:23:06.658Z", "updated_at": "2021-09-30T08:23:06.658Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2744", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-17T12:10:27.000Z", "updated-at": "2021-11-24T13:17:34.403Z", "metadata": {"name": "Human Reference Protein Interactome Mapping Project", "status": "ready", "contacts": [{"contact-name": "Michael Calderwood", "contact-email": "michael_calderwood@dfci.harvard.edu", "contact-orcid": "0000-0002-3803-0438"}], "homepage": "http://interactome.baderlab.org/", "identifier": 2744, "description": "The Human Reference Protein Interactome Mapping Project (HuRI) is a repository, created by the Center for Cancer Systems Biology (CCSB) at Dana-Farber Cancer Institute, which stores the data from the ongoing work on the first complete reference map of the human protein-protein interactome network. All pairwise combinations of human protein-coding genes are systematically being interrogated to identify which are involved in binary protein-protein interactions. HuRI has grown in several distinct stages primarily defined by the number of human protein-coding genes amenable to screening for which at least one Gateway-cloned Open Reading Frame (ORF) was available at the time of the project. Three proteome-scale human PPI datasets are available via HuRI. PPI datasets generated in systematic screens on smaller sets of our human ORF collection have also been included. Also included are all PPIs identified in screens using different protein isoforms from the same gene as generated by alternative splicing.", "abbreviation": "HuRI", "support-links": [{"url": "gary.bader@utoronto.ca", "name": "Gary Bader", "type": "Support email"}, {"url": "http://interactome.baderlab.org/faq/", "name": "HuRI FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://interactome.baderlab.org/about/", "name": "About HuRI", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://interactome.baderlab.org/search", "name": "Search", "type": "data access"}, {"url": "http://interactome.baderlab.org/download", "name": "Download", "type": "data access"}, {"url": "http://www.interactome-atlas.org/register/", "name": "Register", "type": "data access"}]}, "legacy-ids": ["biodbcore-001242", "bsg-d001242"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biology"], "domains": ["Protein interaction", "Interactome", "Alternative splicing", "High-throughput screening"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Human Reference Protein Interactome Mapping Project", "abbreviation": "HuRI", "url": "https://fairsharing.org/fairsharing_records/2744", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Reference Protein Interactome Mapping Project (HuRI) is a repository, created by the Center for Cancer Systems Biology (CCSB) at Dana-Farber Cancer Institute, which stores the data from the ongoing work on the first complete reference map of the human protein-protein interactome network. All pairwise combinations of human protein-coding genes are systematically being interrogated to identify which are involved in binary protein-protein interactions. HuRI has grown in several distinct stages primarily defined by the number of human protein-coding genes amenable to screening for which at least one Gateway-cloned Open Reading Frame (ORF) was available at the time of the project. Three proteome-scale human PPI datasets are available via HuRI. PPI datasets generated in systematic screens on smaller sets of our human ORF collection have also been included. Also included are all PPIs identified in screens using different protein isoforms from the same gene as generated by alternative splicing.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "3215", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-28T15:07:50.000Z", "updated-at": "2021-11-24T13:14:58.781Z", "metadata": {"doi": "10.25504/FAIRsharing.F3DLA1", "name": "Biomedical Entity Expansion, Ranking, and Explorations", "status": "ready", "contacts": [{"contact-name": "Zongliang Yue", "contact-email": "zongyue@uab.edu", "contact-orcid": "0000-0001-8290-123X"}], "homepage": "http://discovery.informatics.uab.edu/beere/", "citations": [{"doi": "10.1093/nar/gkz428", "pubmed-id": 31114876, "publication-id": 3076}], "identifier": 3215, "description": "BEERE (Biomedical Entity Expansion, Ranking, and Explorations) is a web-based data analysis tool to help biomedical researchers characterize any input list of genes/proteins, biomedical terms, or their combinations, i.e., \u201cbiomedical entities\u201d, in the context of existing literature. Specifically, BEERE first aims to help users examine the credibility of known entity-to-entity associative or semantic relationships supported by database or literature references from the user input of a gene/term list. Then, it will help users uncover the relative importance of each entity\u2014a gene or a term\u2014within the user input by computing the ranking scores of all entities. Lastly, it will help users hypothesize new gene functions or genotype-phenotype associations by an interactive visual interface of constructed global entity relationship network. The output from BEERE includes: a list of the original entities matched with known relationships in databases; any expanded entities that may be generated from the analysis; the ranks and ranking scores reported with statistical significance for each entity; and an interactive graphical display of the gene or term\u2019s network within data provenance annotations that link out to external data sources. The web server is free and open to all users with no login requirement and can be accessed at http://discovery.informatics.uab.edu/beere/.", "abbreviation": "BEERE", "year-creation": 2019, "data-processes": [{"url": "http://discovery.informatics.uab.edu/BEERE/index.php/pages/help", "name": "help", "type": "data access"}]}, "legacy-ids": ["biodbcore-001728", "bsg-d001728"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Gene functional annotation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Biomedical Entity Expansion, Ranking, and Explorations", "abbreviation": "BEERE", "url": "https://fairsharing.org/10.25504/FAIRsharing.F3DLA1", "doi": "10.25504/FAIRsharing.F3DLA1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BEERE (Biomedical Entity Expansion, Ranking, and Explorations) is a web-based data analysis tool to help biomedical researchers characterize any input list of genes/proteins, biomedical terms, or their combinations, i.e., \u201cbiomedical entities\u201d, in the context of existing literature. Specifically, BEERE first aims to help users examine the credibility of known entity-to-entity associative or semantic relationships supported by database or literature references from the user input of a gene/term list. Then, it will help users uncover the relative importance of each entity\u2014a gene or a term\u2014within the user input by computing the ranking scores of all entities. Lastly, it will help users hypothesize new gene functions or genotype-phenotype associations by an interactive visual interface of constructed global entity relationship network. The output from BEERE includes: a list of the original entities matched with known relationships in databases; any expanded entities that may be generated from the analysis; the ranks and ranking scores reported with statistical significance for each entity; and an interactive graphical display of the gene or term\u2019s network within data provenance annotations that link out to external data sources. The web server is free and open to all users with no login requirement and can be accessed at http://discovery.informatics.uab.edu/beere/.", "publications": [{"id": 3076, "pubmed_id": 31114876, "title": "BEERE: a Web Server for Biomedical Entity Expansion, Ranking, and Explorations", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz428", "authors": "Zongliang Yue, Christopher D Willey, Anita B Hjelmeland, Jake Y Chen", "journal": "Nucleic Acids Researcg", "doi": "10.1093/nar/gkz428", "created_at": "2021-09-30T08:28:19.017Z", "updated_at": "2021-09-30T08:28:19.017Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1729", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:45.641Z", "metadata": {"doi": "10.25504/FAIRsharing.jykmkw", "name": "Golm Metabolome Database", "status": "ready", "contacts": [{"contact-name": "Jan Hummel", "contact-email": "hummel@mpimp-golm.mpg.de"}], "homepage": "http://gmd.mpimp-golm.mpg.de/", "identifier": 1729, "description": "The Golm Metabolome Database (GMD) provides gas chromatography (GC) mass spectrometry (MS) reference spectra, reference metabolite profiles and tools for one of the most widespread routine technologies applied to the large scale screening and discovery of novel metabolic biomarkers.", "abbreviation": "GMD", "access-points": [{"url": "http://gmd.mpimp-golm.mpg.de/webservices/wsPrediction.asmx?WSDL", "name": "SOAP", "type": "SOAP"}, {"url": "http://gmd.mpimp-golm.mpg.de/webservices/wsLibrarySearch.asmx?WSDL", "name": "SOAP", "type": "SOAP"}, {"url": "http://gmd.mpimp-golm.mpg.de/webservices/wsGoBioSpace.asmx?WSDL", "name": "SOAP", "type": "SOAP"}, {"url": "http://gmd.mpimp-golm.mpg.de/REST/gmd.svc", "name": "REST", "type": "REST"}], "support-links": [{"url": "http://gmd.mpimp-golm.mpg.de/blog.aspx", "type": "Blog/News"}, {"url": "http://gmd.mpimp-golm.mpg.de/help.aspx", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"name": "internal versioning for curation", "type": "data versioning"}, {"name": "live database", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://gmd.mpimp-golm.mpg.de/download/", "name": "download", "type": "data access"}, {"url": "http://gmd.mpimp-golm.mpg.de/search.aspx", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011046", "name": "re3data:r3d100011046", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006625", "name": "SciCrunch:RRID:SCR_006625", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000186", "bsg-d000186"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Mass spectrum", "Gas chromatography", "Mass spectrometry assay"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Golm Metabolome Database", "abbreviation": "GMD", "url": "https://fairsharing.org/10.25504/FAIRsharing.jykmkw", "doi": "10.25504/FAIRsharing.jykmkw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Golm Metabolome Database (GMD) provides gas chromatography (GC) mass spectrometry (MS) reference spectra, reference metabolite profiles and tools for one of the most widespread routine technologies applied to the large scale screening and discovery of novel metabolic biomarkers.", "publications": [{"id": 1330, "pubmed_id": 20526350, "title": "Decision tree supported substructure prediction of metabolites from GC-MS profiles", "year": 2010, "url": "http://doi.org/10.1007/s11306-010-0198-7", "authors": "Hummel, J., Strehmel, N., Selbig, J., Walther, D. and Kopka, J.", "journal": "Metabolomics", "doi": "doi:10.1007/s11306-010-0198-7", "created_at": "2021-09-30T08:24:48.877Z", "updated_at": "2021-09-30T08:24:48.877Z"}], "licence-links": [{"licence-name": "GMD Custom Terms and Conditions", "licence-id": 351, "link-id": 1727, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2721", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-19T12:27:53.000Z", "updated-at": "2021-11-24T13:14:11.231Z", "metadata": {"name": "Exome Aggregation Consortium Browser", "status": "deprecated", "contacts": [{"contact-email": "exomeconsortium@gmail.com"}], "homepage": "http://exac.broadinstitute.org/", "identifier": 2721, "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The ExAC Browser spans 60,706 unrelated individuals sequenced as part of various disease-specific and population genetic studies. All of the raw data from these projects have been reprocessed through the same pipeline, and jointly variant-called to increase consistency across projects.", "abbreviation": "ExAC Browser", "support-links": [{"url": "http://exac.broadinstitute.org/faq", "name": "ExAC FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/konradjk/exac_browser/issues", "name": "Issue Tracker", "type": "Github"}, {"url": "http://exac.broadinstitute.org/about", "name": "About ExAC", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://exac.broadinstitute.org/downloads", "name": "Download", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available."}, "legacy-ids": ["biodbcore-001219", "bsg-d001219"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Population Genetics"], "domains": ["Disease", "Gene-disease association"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Exome"], "countries": ["United States"], "name": "FAIRsharing record for: Exome Aggregation Consortium Browser", "abbreviation": "ExAC Browser", "url": "https://fairsharing.org/fairsharing_records/2721", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The ExAC Browser spans 60,706 unrelated individuals sequenced as part of various disease-specific and population genetic studies. All of the raw data from these projects have been reprocessed through the same pipeline, and jointly variant-called to increase consistency across projects.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 698, "relation": "undefined"}, {"licence-name": "Fort Lauderdale Principles", "licence-id": 322, "link-id": 699, "relation": "undefined"}, {"licence-name": "ExAC Terms of Use", "licence-id": 304, "link-id": 700, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2958", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T07:59:50.000Z", "updated-at": "2022-02-08T10:39:39.422Z", "metadata": {"doi": "10.25504/FAIRsharing.8c937c", "name": "HIV Drug Interactions", "status": "ready", "contacts": [{"contact-name": "David Back", "contact-email": "D.J.Back@liverpool.ac.uk", "contact-orcid": "0000-0002-7381-4799"}], "homepage": "https://www.hiv-druginteractions.org/", "identifier": 2958, "description": "Around 37 million individuals are living worldwide with HIV and although advances in therapy have yielded effective regimens, individual antiretroviral drugs are amongst the most therapeutically risky for drug-drug interactions (DDI) presenting significant risks to patients and a challenge for health care providers to ensure safe and appropriate prescribing. In order to address this, the Liverpool Drug Interactions website was established in 1999 by members of the Department of Pharmacology at the University of Liverpool to provide a freely available drug-drug interaction resource.", "abbreviation": null, "support-links": [{"url": "https://www.hiv-druginteractions.org/site_updates", "name": "News", "type": "Blog/News"}, {"url": "https://www.hiv-druginteractions.org/feedback", "name": "Feedback", "type": "Contact form"}, {"url": "https://www.hiv-druginteractions.org/prescribing-resources", "name": "Printable materials in PDF format to aid prescribing", "type": "Help documentation"}, {"url": "https://www.hiv-druginteractions.org/videos", "name": "Series of mini-lectures on pharmacology and HIV", "type": "Help documentation"}, {"url": "https://twitter.com/hivinteractions", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "https://www.hiv-druginteractions.org/checker", "name": "Drug Interaction Checker", "type": "data access"}, {"url": "https://www.hiv-druginteractions.org/drug_queries/new", "name": "Drug Interaction Checker Lite", "type": "data access"}, {"url": "https://www.hiv-druginteractions.org/suggestions", "name": "Suggest a drug", "type": "data curation"}], "associated-tools": [{"url": "https://apps.apple.com/gb/app/liverpool-hiv-ichart/id979962744", "name": "Liverpool HIV iChart (AppStore)"}, {"url": "https://play.google.com/store/apps/details?id=com.liverpooluni.icharthiv&hl=en_GB", "name": "Liverpool HIV iChart (Google Play)"}]}, "legacy-ids": ["biodbcore-001462", "bsg-d001462"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Development", "Virology", "Biomedical Science", "Epidemiology"], "domains": ["Drug interaction", "Disease"], "taxonomies": ["Homo sapiens", "Human immunodeficiency virus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: HIV Drug Interactions", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.8c937c", "doi": "10.25504/FAIRsharing.8c937c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Around 37 million individuals are living worldwide with HIV and although advances in therapy have yielded effective regimens, individual antiretroviral drugs are amongst the most therapeutically risky for drug-drug interactions (DDI) presenting significant risks to patients and a challenge for health care providers to ensure safe and appropriate prescribing. In order to address this, the Liverpool Drug Interactions website was established in 1999 by members of the Department of Pharmacology at the University of Liverpool to provide a freely available drug-drug interaction resource.", "publications": [{"id": 2896, "pubmed_id": 27235838, "title": "HIV drug interaction resources from the University of Liverpool.", "year": 2016, "url": "http://doi.org/10.1016/j.tmaid.2016.05.013", "authors": "Chiodini J", "journal": "Travel Med Infect Dis", "doi": "10.1016/j.tmaid.2016.05.013", "created_at": "2021-09-30T08:27:56.583Z", "updated_at": "2021-09-30T08:27:56.583Z"}], "licence-links": [{"licence-name": "HIV Drug Interactions Terms and Conditions", "licence-id": 394, "link-id": 930, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1877", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:12.282Z", "metadata": {"doi": "10.25504/FAIRsharing.q7bkqr", "name": "STING", "status": "deprecated", "contacts": [{"contact-name": "Goran Neshich", "contact-email": "neshich@cnptia.embrapa.br"}], "homepage": "http://sms.cbi.cnptia.embrapa.br/SMS/index_s.html", "citations": [], "identifier": 1877, "description": "The Blue Star STING database stores information on the interactions between proteins and other bio macromolecules. Structure descriptors used in the analysis of these interactions are stored in STING DB to aid research primarily into the problems challenging Brazilian agriculture, livestock and medicine.", "abbreviation": "STING", "support-links": [{"url": "http://sms.cbi.cnptia.embrapa.br/SMS/STINGm/help/quick_modules.html#report", "type": "Help documentation"}], "year-creation": 2005, "deprecation-date": "2021-9-22", "deprecation-reason": "This resource has not been updated recently and a valid contact cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000342", "bsg-d000342"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Small molecule", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Brazil"], "name": "FAIRsharing record for: STING", "abbreviation": "STING", "url": "https://fairsharing.org/10.25504/FAIRsharing.q7bkqr", "doi": "10.25504/FAIRsharing.q7bkqr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Blue Star STING database stores information on the interactions between proteins and other bio macromolecules. Structure descriptors used in the analysis of these interactions are stored in STING DB to aid research primarily into the problems challenging Brazilian agriculture, livestock and medicine.", "publications": [{"id": 1616, "pubmed_id": 15608194, "title": "STING Report: convenient web-based application for graphic and tabular presentations of protein sequence, structure and function descriptors from the STING database.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki111", "authors": "Neshich G., Mancini AL., Yamagishi ME., Kuser PR., Fileto R., Pinto IP., Palandrani JF., Krauchenco JN., Baudet C., Montagner AJ., Higa RH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki111", "created_at": "2021-09-30T08:25:21.086Z", "updated_at": "2021-09-30T08:25:21.086Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1582", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:24.291Z", "metadata": {"doi": "10.25504/FAIRsharing.wrvze3", "name": "FlyBase", "status": "ready", "homepage": "http://flybase.org/", "citations": [], "identifier": 1582, "description": "Genetic, genomic and molecular information pertaining to the model organism Drosophila melanogaster and related sequences. This database also contains information relating to human disease models in Drosophila, the use of transgenic constructs containing sequence from other organisms in Drosophila, and information on where to buy Drosophila strains and constructs.", "abbreviation": "FlyBase", "access-points": [{"url": "http://www.biocatalogue.org/rest_methods/111", "name": "ML via ID", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/112", "name": "ML via symbol", "type": "REST"}], "support-links": [{"url": "http://flybase.org/contact/email", "type": "Contact form"}, {"url": "https://wiki.flybase.org/wiki/FlyBase:FlyBase_Help_Index", "name": "Help index", "type": "Help documentation"}, {"url": "https://www.youtube.com/c/FlyBaseTV", "name": "FlyBase TV - Youtube", "type": "Video"}, {"url": "https://twitter.com/flybasedotorg", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/FlyBase", "type": "Wikipedia"}], "year-creation": 1992, "data-processes": [{"url": "http://flybase.org/maps/chromosomes/maps", "name": "Chromosome maps", "type": "data access"}, {"url": "http://flybase.org/featuremapper", "name": "Feature Mapper", "type": "data access"}, {"url": "http://flybase.org/download/sequence/", "name": "Sequence Downloader", "type": "data access"}, {"url": "http://flybase.org/rnaseq/profile_search", "name": "RNA-Seq Profile", "type": "data access"}, {"url": "http://flybase.org/rnaseq/simsearch", "name": "RNA-Seq Similarity", "type": "data access"}, {"url": "http://flybase.org/rnaseq/region", "name": "RNA-Seq By Region", "type": "data access"}, {"url": "http://flybase.org/cgi-bin/get_interactions.pl", "name": "Interactions Browser", "type": "data access"}, {"url": "http://flybase.org/community/find", "name": "Find a Person", "type": "data access"}, {"url": "http://flybase.org/community/update", "name": "Update an Address", "type": "data curation"}, {"url": "http://flybase.org/static_pages/rna-seq/rnaseqmapper.html", "name": "RNA-Seq by Region", "type": "data access"}, {"url": "http://flybase.org/cytosearch", "name": "CytoSearch", "type": "data access"}, {"name": "every five week release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://flybase.org/static_pages/downloads/archivedata3.html", "name": "access to historical files available upon request", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}, {"name": "XML web service", "type": "data access"}, {"url": "http://flybase.org/wiki/FlyBase:FilesOverview", "name": "FTP", "type": "data access"}, {"url": "http://flybase.org/cgi-bin/qb.pl", "name": "Query builder", "type": "data access"}, {"url": "http://flybase.org/static_pages/rna-seq/rna-seq_profile_search.html", "name": "RNA-Seq profile search", "type": "data access"}, {"url": "http://flybase.org/cgi-bin/get_static_page.pl?file=imagebrowser10.html&title=ImageBrowse", "name": "Image browser", "type": "data access"}, {"url": "http://flybase.org/cgi-bin/gbrowse2/dmel/", "name": "GBrowse", "type": "data access"}, {"url": "http://flybase.org/submission/publication/", "name": "Data submission", "type": "data curation"}, {"url": "http://flybase.org/", "name": "Quick search", "type": "data access"}, {"url": "http://flybase.org/vocabularies", "name": "Vocabularies Search Page", "type": "data access"}, {"url": "http://flybase.org/batchdownload", "name": "Batch Download", "type": "data access"}, {"url": "http://flybase.org/blast/", "name": "BLAST", "type": "data access"}, {"url": "http://flybase.org/jbrowse/?data=data%2Fjson%2Fdmel&loc=2R%3A13437068..13452693&tracks=Gene%2Cprotein_domains%2CcDNA&highlight=", "name": "JBrowse", "type": "data access"}], "associated-tools": [{"url": "http://flybase.org/convert/coordinates", "name": "Coordinate Converter"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010591", "name": "re3data:r3d100010591", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006549", "name": "SciCrunch:RRID:SCR_006549", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000037", "bsg-d000037"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Anatomy", "Molecular biology", "Genomics", "Bioinformatics", "Genetics", "Life Science", "Molecular Genetics", "Comparative Genomics"], "domains": ["Citation", "Gene name", "Expression data", "Bibliography", "Gene Ontology enrichment", "Computational biological predictions", "Protein interaction", "Clone library", "Cell line", "Resource collection", "Single balancer", "Gene model annotation", "Molecular function", "RNA interference", "Image", "Molecular interaction", "Recombinant DNA", "Digital curation", "Phenotype", "Transposable element", "Sequence feature", "Gene", "Complementary DNA", "Orthologous", "Insertion sequence", "Allele", "Genome", "CRISPR", "Regulatory region", "Literature curation", "Chromosomal aberration", "Biocuration"], "taxonomies": ["Drosophila", "Drosophila ananassae", "Drosophila erecta", "Drosophila grimshawi", "Drosophila melanogaster", "Drosophila mojavensis", "Drosophila persimilis", "Drosophila pseudoobscura", "Drosophila sechellia", "Drosophila simulans", "Drosophila virilis", "Drosophila willistoni", "Drosophila yakuba"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: FlyBase", "abbreviation": "FlyBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.wrvze3", "doi": "10.25504/FAIRsharing.wrvze3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genetic, genomic and molecular information pertaining to the model organism Drosophila melanogaster and related sequences. This database also contains information relating to human disease models in Drosophila, the use of transgenic constructs containing sequence from other organisms in Drosophila, and information on where to buy Drosophila strains and constructs.", "publications": [{"id": 97, "pubmed_id": 7925011, "title": "FlyBase--the Drosophila genetic database.", "year": 1994, "url": "https://www.ncbi.nlm.nih.gov/pubmed/7925011", "authors": "Ashburner M,Drysdale R", "journal": "Development", "doi": null, "created_at": "2021-09-30T08:22:30.931Z", "updated_at": "2021-09-30T08:22:30.931Z"}, {"id": 125, "pubmed_id": 18641940, "title": "FlyBase : a database for the Drosophila research community.", "year": 2008, "url": "http://doi.org/10.1007/978-1-59745-583-1_3", "authors": "Drysdale R", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-59745-583-1_3", "created_at": "2021-09-30T08:22:33.722Z", "updated_at": "2021-09-30T08:22:33.722Z"}, {"id": 238, "pubmed_id": 9045212, "title": "FlyBase: a Drosophila database. The FlyBase consortium.", "year": 1997, "url": "http://doi.org/10.1093/nar/25.1.63", "authors": "Gelbart WM,Crosby M,Matthews B,Rindone WP,Chillemi J,Russo Twombly S,Emmert D,Ashburner M,Drysdale RA,Whitfield E,Millburn GH,de Grey A,Kaufman T,Matthews K,Gilbert D,Strelets V,Tolstoshev C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/25.1.63", "created_at": "2021-09-30T08:22:45.679Z", "updated_at": "2021-09-30T11:28:44.216Z"}, {"id": 242, "pubmed_id": 18160408, "title": "FlyBase: integration and improvements to query tools.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm930", "authors": "Wilson RJ., Goodman JL., Strelets VB.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm930", "created_at": "2021-09-30T08:22:46.191Z", "updated_at": "2021-09-30T08:22:46.191Z"}, {"id": 243, "pubmed_id": 17099233, "title": "FlyBase: genomes by the dozen.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl827", "authors": "Crosby MA., Goodman JL., Strelets VB., Zhang P., Gelbart WM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl827", "created_at": "2021-09-30T08:22:46.307Z", "updated_at": "2021-09-30T08:22:46.307Z"}, {"id": 776, "pubmed_id": 24234449, "title": "FlyBase 102--advanced approaches to interrogating FlyBase.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1092", "authors": "St Pierre SE,Ponting L,Stefancsik R,McQuilton P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1092", "created_at": "2021-09-30T08:23:45.509Z", "updated_at": "2021-09-30T11:28:50.967Z"}, {"id": 842, "pubmed_id": 11752267, "title": "The FlyBase database of the Drosophila genome projects and community literature.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.106", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.106", "created_at": "2021-09-30T08:23:52.942Z", "updated_at": "2021-09-30T11:28:53.776Z"}, {"id": 843, "pubmed_id": 9399806, "title": "FlyBase: a Drosophila database.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.85", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/26.1.85", "created_at": "2021-09-30T08:23:53.043Z", "updated_at": "2021-09-30T11:28:53.885Z"}, {"id": 857, "pubmed_id": 7937045, "title": "FlyBase--the Drosophila database", "year": 1994, "url": "http://doi.org/10.1093/nar/22.17.3456", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/22.17.3456", "created_at": "2021-09-30T08:23:54.635Z", "updated_at": "2021-09-30T11:28:54.084Z"}, {"id": 859, "pubmed_id": 9847148, "title": "The FlyBase database of the Drosophila Genome Projects and community literature.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.85", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/27.1.85", "created_at": "2021-09-30T08:23:54.902Z", "updated_at": "2021-09-30T11:28:54.176Z"}, {"id": 861, "pubmed_id": 8594600, "title": "FlyBase: the Drosophila database.", "year": 1996, "url": "http://doi.org/10.1093/nar/24.1.53", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/24.1.53", "created_at": "2021-09-30T08:23:55.118Z", "updated_at": "2021-09-30T11:28:54.267Z"}, {"id": 878, "pubmed_id": 16381917, "title": "FlyBase: anatomical data, images and queries.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj068", "authors": "Grumbling G,Strelets V", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj068", "created_at": "2021-09-30T08:23:56.919Z", "updated_at": "2021-09-30T11:28:54.635Z"}, {"id": 879, "pubmed_id": 15608223, "title": "FlyBase: genes and gene models.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki046", "authors": "Drysdale RA,Crosby MA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki046", "created_at": "2021-09-30T08:23:57.018Z", "updated_at": "2021-09-30T11:28:54.726Z"}, {"id": 881, "pubmed_id": 12519974, "title": "The FlyBase database of the Drosophila genome projects and community literature.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg094", "authors": "The FlyBase Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg094", "created_at": "2021-09-30T08:23:57.244Z", "updated_at": "2021-09-30T11:28:54.817Z"}, {"id": 1714, "pubmed_id": 18948289, "title": "FlyBase: enhancing Drosophila Gene Ontology annotations.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn788", "authors": "Tweedie S., Ashburner M., Falls K., Leyland P., McQuilton P., Marygold S., Millburn G., Osumi-Sutherland D., Schroeder A., Seal R., Zhang H.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn788.", "created_at": "2021-09-30T08:25:32.046Z", "updated_at": "2021-09-30T08:25:32.046Z"}, {"id": 1734, "pubmed_id": 22127867, "title": "FlyBase 101--the basics of navigating FlyBase.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1030", "authors": "McQuilton P,St Pierre SE,Thurmond J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1030", "created_at": "2021-09-30T08:25:34.362Z", "updated_at": "2021-09-30T11:29:19.461Z"}, {"id": 1764, "pubmed_id": 22554788, "title": "Directly e-mailing authors of newly published papers encourages community curation.", "year": 2012, "url": "http://doi.org/10.1093/database/bas024", "authors": "Bunt SM,Grumbling GB,Field HI,Marygold SJ,Brown NH,Millburn GH", "journal": "Database (Oxford)", "doi": "10.1093/database/bas024", "created_at": "2021-09-30T08:25:37.912Z", "updated_at": "2021-09-30T08:25:37.912Z"}, {"id": 1765, "pubmed_id": 26467478, "title": "FlyBase: establishing a Gene Group resource for Drosophila melanogaster.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1046", "authors": "Attrill H,Falls K,Goodman JL,Millburn GH,Antonazzo G,Rey AJ,Marygold SJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1046", "created_at": "2021-09-30T08:25:38.019Z", "updated_at": "2021-09-30T11:29:19.570Z"}, {"id": 1766, "pubmed_id": 26109357, "title": "Gene Model Annotations for Drosophila melanogaster: Impact of High-Throughput Data.", "year": 2015, "url": "http://doi.org/10.1534/g3.115.018929", "authors": "Matthews BB,Dos Santos G,Crosby MA,Emmert DB,St Pierre SE,Gramates LS,Zhou P,Schroeder AJ,Falls K,Strelets V,Russo SM,Gelbart WM", "journal": "G3 (Bethesda)", "doi": "10.1534/g3.115.018929", "created_at": "2021-09-30T08:25:38.121Z", "updated_at": "2021-09-30T08:25:38.121Z"}, {"id": 1791, "pubmed_id": 26109356, "title": "Gene Model Annotations for Drosophila melanogaster: The Rule-Benders.", "year": 2015, "url": "http://doi.org/10.1534/g3.115.018937", "authors": "Crosby MA,Gramates LS,Dos Santos G,Matthews BB,St Pierre SE,Zhou P,Schroeder AJ,Falls K,Emmert DB,Russo SM,Gelbart WM", "journal": "G3 (Bethesda)", "doi": "10.1534/g3.115.018937", "created_at": "2021-09-30T08:25:41.013Z", "updated_at": "2021-09-30T08:25:41.013Z"}, {"id": 2422, "pubmed_id": 29761468, "title": "Using FlyBase to Find Functionally Related Drosophila Genes.", "year": 2018, "url": "http://doi.org/10.1007/978-1-4939-7737-6_16", "authors": "Rey AJ,Attrill H,Marygold SJ", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-7737-6_16", "created_at": "2021-09-30T08:26:57.178Z", "updated_at": "2021-09-30T08:26:57.178Z"}, {"id": 2423, "pubmed_id": 27799470, "title": "FlyBase at 25: looking to the future.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1016", "authors": "Gramates LS,Marygold SJ,Santos GD,Urbano JM,Antonazzo G,Matthews BB,Rey AJ,Tabone CJ,Crosby MA,Emmert DB,Falls K,Goodman JL,Hu Y,Ponting L,Schroeder AJ,Strelets VB,Thurmond J,Zhou P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1016", "created_at": "2021-09-30T08:26:57.342Z", "updated_at": "2021-09-30T11:29:35.796Z"}, {"id": 2424, "pubmed_id": 30364959, "title": "FlyBase 2.0: the next generation.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1003", "authors": "Thurmond J,Goodman JL,Strelets VB,Attrill H,Gramates LS,Marygold SJ,Matthews BB,Millburn G,Antonazzo G,Trovisco V,Kaufman TC,Calvi BR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1003", "created_at": "2021-09-30T08:26:57.452Z", "updated_at": "2021-09-30T11:29:35.895Z"}, {"id": 2451, "pubmed_id": 27930807, "title": "Exploring FlyBase Data Using QuickSearch.", "year": 2016, "url": "http://doi.org/10.1002/cpbi.19", "authors": "Marygold SJ,Antonazzo G,Attrill H,Costa M,Crosby MA,Dos Santos G,Goodman JL,Gramates LS,Matthews BB,Rey AJ,Thurmond J", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/cpbi.19", "created_at": "2021-09-30T08:27:00.586Z", "updated_at": "2021-09-30T08:27:00.586Z"}, {"id": 2480, "pubmed_id": 26935103, "title": "FlyBase portals to human disease research using Drosophila models.", "year": 2016, "url": "http://doi.org/10.1242/dmm.023317", "authors": "Millburn GH,Crosby MA,Gramates LS,Tweedie S", "journal": "Dis Model Mech", "doi": "10.1242/dmm.023317", "created_at": "2021-09-30T08:27:04.120Z", "updated_at": "2021-09-30T08:27:04.120Z"}, {"id": 2497, "pubmed_id": 25398896, "title": "FlyBase: introduction of the Drosophila melanogaster Release 6 reference genome assembly and large-scale migration of genome annotations.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1099", "authors": "dos Santos G,Schroeder AJ,Goodman JL,Strelets VB,Crosby MA,Thurmond J,Emmert DB,Gelbart WM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1099", "created_at": "2021-09-30T08:27:06.173Z", "updated_at": "2021-09-30T11:29:38.070Z"}, {"id": 3137, "pubmed_id": null, "title": "FlyBase: updates to the Drosophila melanogaster knowledge base", "year": 2020, "url": "http://dx.doi.org/10.1093/nar/gkaa1026", "authors": "Larkin, Aoife; Marygold, Steven J; Antonazzo, Giulia; Attrill, Helen; dos\u00a0Santos, Gilberto; Garapati, Phani V; Goodman, Joshua\u00a0L; Gramates, L\u00a0Sian; Millburn, Gillian; Strelets, Victor B; Tabone, Christopher J; Thurmond, Jim; Perrimon, Norbert; Gelbart, Susan Russo; Agapite, Julie; Broll, Kris; Crosby, Madeline; dos Santos, Gilberto; Falls, Kathleen; Gramates, L Sian; Jenkins, Victoria; Longden, Ian; Matthews, Beverley; Sutherland, Carol; Tabone, Christopher J; Zhou, Pinglei; Zytkovicz, Mark; Brown, Nick; Antonazzo, Giulia; Attrill, Helen; Garapati, Phani; Larkin, Aoife; Marygold, Steven; McLachlan, Alex; Millburn, Gillian; Pilgrim, Clare; Ozturk-Colak, Arzu; Trovisco, Vitor; Kaufman, Thomas; Calvi, Brian; Goodman, Josh; Strelets, Victor; Thurmond, Jim; Cripps, Richard; Lovato, TyAnna; undefined, undefined; ", "journal": "Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D899\u2013D907", "doi": "10.1093/nar/gkaa1026", "created_at": "2021-11-22T13:35:10.850Z", "updated_at": "2021-11-22T13:35:10.850Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1647", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:57.261Z", "metadata": {"doi": "10.25504/FAIRsharing.ja9cdq", "name": "Statistical Torsional Angles Potentials of NMR Refinement Database", "status": "deprecated", "contacts": [{"contact-name": "Jinhyuk Lee", "contact-email": "jinhyuk@kribb.re.kr"}], "homepage": "http://psb.kobic.re.kr/stap/refinement/", "identifier": 1647, "description": "The STAP database contains refined versions of the NMR structures deposited in PDB. These refinements have been performed using statistical torsion angle potential and structurally- or experimentally- derived distance potential. The refined structures have a significantly improved structural quality compared to their initial NMR structure.", "abbreviation": "STAP", "support-links": [{"url": "webmaster@kobic.kr", "type": "Support email"}, {"url": "http://psb.kobic.re.kr/stap/refinement/help.php", "type": "Help documentation"}, {"url": "http://psb.kobic.re.kr/stap/refinement/method.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://psb.kobic.re.kr/stap/refinement/index.cgi", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000103", "bsg-d000103"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Statistics", "Life Science"], "domains": ["Protein structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Statistical Torsional Angles Potentials of NMR Refinement Database", "abbreviation": "STAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.ja9cdq", "doi": "10.25504/FAIRsharing.ja9cdq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The STAP database contains refined versions of the NMR structures deposited in PDB. These refinements have been performed using statistical torsion angle potential and structurally- or experimentally- derived distance potential. The refined structures have a significantly improved structural quality compared to their initial NMR structure.", "publications": [{"id": 1557, "pubmed_id": 22102572, "title": "STAP Refinement of the NMR database: a database of 2405 refined solution NMR structures.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1021", "authors": "Yang JS,Kim JH,Oh S,Han G,Lee S,Lee J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1021", "created_at": "2021-09-30T08:25:14.649Z", "updated_at": "2021-09-30T11:29:13.910Z"}, {"id": 1558, "pubmed_id": 23408564, "title": "Statistical torsion angle potential energy functions for protein structure modeling: a bicubic interpolation approach.", "year": 2013, "url": "http://doi.org/10.1002/prot.24265", "authors": "Kim TR,Yang JS,Shin S,Lee J", "journal": "Proteins", "doi": "10.1002/prot.24265", "created_at": "2021-09-30T08:25:14.751Z", "updated_at": "2021-09-30T08:25:14.751Z"}, {"id": 1559, "pubmed_id": 25279564, "title": "Protein NMR structures refined without NOE data.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0108888", "authors": "Ryu H,Kim TR,Ahn S,Ji S,Lee J", "journal": "PLoS One", "doi": "10.1371/journal.pone.0108888", "created_at": "2021-09-30T08:25:14.862Z", "updated_at": "2021-09-30T08:25:14.862Z"}, {"id": 1560, "pubmed_id": 26504145, "title": "NMRe: a web server for NMR protein structure refinement with high-quality structure validation scores.", "year": 2015, "url": "http://doi.org/10.1093/bioinformatics/btv595", "authors": "Ryu H,Lim G,Sung BH,Lee J", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btv595", "created_at": "2021-09-30T08:25:14.970Z", "updated_at": "2021-09-30T08:25:14.970Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2794", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-17T10:44:06.000Z", "updated-at": "2021-11-24T13:17:34.727Z", "metadata": {"doi": "10.25504/FAIRsharing.abbexa", "name": "DES-TOMATO", "status": "deprecated", "contacts": [{"contact-name": "Vladimir Bajic", "contact-email": "vladimir.bajic@kaust.edu.sa"}], "homepage": "https://www.cbrc.kaust.edu.sa/des_tomato/home/index.php", "citations": [{"doi": "10.1038/s41598-017-05448-0", "pubmed-id": 28729549, "publication-id": 2526}], "identifier": 2794, "description": "DES-TOMATO is a topic-specific literature exploration system developed to allow the exploration of information related to tomato. The information provided in DES-TOMATO is obtained through the text-mining of available scientific literature, namely full-length articles in PubMed Central and titles and abstracts in PubMed.", "abbreviation": "DES-TOMATO", "support-links": [{"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/show_help.php", "name": "Software Manual", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?time_continue=3&v=6l3g4B2aN7k", "name": "Video Tutorial", "type": "Video"}, {"url": "https://www.cbrc.kaust.edu.sa/des_tomato/about/about.php", "name": "About DES-TOMATO", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/terms.php", "name": "Browse Enriched Terms", "type": "data access"}, {"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/termpairs.php", "name": "Browse Enriched Term Pairs", "type": "data access"}, {"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/hypotheses.php", "name": "Browse Hypotheses", "type": "data access"}, {"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/kobas_enrichment.php", "name": "Browse KOBAS Pathways", "type": "data access"}, {"url": "https://www.cbrc.kaust.edu.sa/des_tomato/mykbase/showpubmed.php", "name": "Browse Literature", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001293", "bsg-d001293"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Biology"], "domains": ["Text mining", "Natural language processing", "Publication"], "taxonomies": ["Solanum lycopersicum"], "user-defined-tags": ["Knowledge Mining"], "countries": ["Saudi Arabia"], "name": "FAIRsharing record for: DES-TOMATO", "abbreviation": "DES-TOMATO", "url": "https://fairsharing.org/10.25504/FAIRsharing.abbexa", "doi": "10.25504/FAIRsharing.abbexa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DES-TOMATO is a topic-specific literature exploration system developed to allow the exploration of information related to tomato. The information provided in DES-TOMATO is obtained through the text-mining of available scientific literature, namely full-length articles in PubMed Central and titles and abstracts in PubMed.", "publications": [{"id": 2526, "pubmed_id": 28729549, "title": "DES-TOMATO: A Knowledge Exploration System Focused On Tomato Species.", "year": 2017, "url": "http://doi.org/10.1038/s41598-017-05448-0", "authors": "Salhi A,Negrao S,Essack M,Morton MJL,Bougouffa S,Razali R,Radovanovic A,Marchand B,Kulmanov M,Hoehndorf R,Tester M,Bajic VB", "journal": "Sci Rep", "doi": "10.1038/s41598-017-05448-0", "created_at": "2021-09-30T08:27:09.900Z", "updated_at": "2021-09-30T08:27:09.900Z"}], "licence-links": [{"licence-name": "KAUST Terms of Use", "licence-id": 475, "link-id": 711, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3083", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-02T17:23:05.000Z", "updated-at": "2021-11-24T13:17:24.852Z", "metadata": {"doi": "10.25504/FAIRsharing.QP9j57", "name": "Domain Interaction Graph Guided ExploreR", "status": "ready", "contacts": [{"contact-name": "Zakaria Louadi", "contact-email": "zakaria.louadi@wzw.tum.de", "contact-orcid": "0000-0003-4763-0264"}], "homepage": "https://exbio.wzw.tum.de/digger/", "citations": [{"doi": "10.1093/nar/gkaa768", "pubmed-id": 32976589, "publication-id": 3041}], "identifier": 3083, "description": "DIGGER is an essential resource for studying the mechanistic consequences of alternative splicing such as isoform-specific interaction and consequence of exon skipping. The database integrates information of domain-domain and protein-protein interactions with residue-level interaction evidence from co-resolved structures. DIGGER allows users to seamlessly switch between isoform and exon-centric views of the interactome and to extract sub-networks of relevant isoforms (isoforms specific PPIs).", "abbreviation": "DIGGER", "support-links": [{"url": "https://exbio.wzw.tum.de/digger/documentation/", "name": "documentation file", "type": "Help documentation"}, {"url": "https://exbio.wzw.tum.de/digger/about/", "name": "About", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "https://exbio.wzw.tum.de/digger/download/", "name": "Download", "type": "data release"}, {"url": "https://exbio.wzw.tum.de/digger/exon_level", "name": "Exon-Level Analysis", "type": "data access"}, {"url": "https://exbio.wzw.tum.de/digger/network_analysis/", "name": "Network-Level Analysis", "type": "data access"}, {"url": "https://exbio.wzw.tum.de/digger/isoform_level", "name": "Isoform-Level Analysis", "type": "data access"}]}, "legacy-ids": ["biodbcore-001591", "bsg-d001591"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genetics", "Molecular Genetics", "Systems Biology"], "domains": ["Protein interaction", "Network model", "Alternative splicing", "Gene expression", "Binding motif", "Exon"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Domain Interaction Graph Guided ExploreR", "abbreviation": "DIGGER", "url": "https://fairsharing.org/10.25504/FAIRsharing.QP9j57", "doi": "10.25504/FAIRsharing.QP9j57", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DIGGER is an essential resource for studying the mechanistic consequences of alternative splicing such as isoform-specific interaction and consequence of exon skipping. The database integrates information of domain-domain and protein-protein interactions with residue-level interaction evidence from co-resolved structures. DIGGER allows users to seamlessly switch between isoform and exon-centric views of the interactome and to extract sub-networks of relevant isoforms (isoforms specific PPIs).", "publications": [{"id": 3041, "pubmed_id": 32976589, "title": "DIGGER: exploring the functional role of alternative splicing in protein interactions.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa768", "authors": "Louadi Z,Yuan K,Gress A,Tsoy O,Kalinina OV,Baumbach J,Kacprowski T,List M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa768", "created_at": "2021-09-30T08:28:14.805Z", "updated_at": "2021-09-30T11:29:49.945Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1717, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1594", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:32.724Z", "metadata": {"doi": "10.25504/FAIRsharing.m90ne8", "name": "Human Mitochondrial Database", "status": "ready", "contacts": [{"contact-name": "Marcella Attimonelli", "contact-email": "marcella.attimonelli@uniba.it"}], "homepage": "http://www.hmtdb.uniba.it", "identifier": 1594, "description": "HmtDB is an open resource created to support population genetics and mitochondrial disease studies. The database hosts human mitochondrial genome sequences annotated with population and variability data, the latter being estimated through the application of the SiteVar/MitVarProt programs, based on site-specific nucleotide and aminoacid variability calculations. The annotations are manually curated thus adding value to the quality of the information provided to the end-user.", "abbreviation": "HmtDB", "support-links": [{"url": "hmtdb.update@uniba.it", "type": "Support email"}, {"url": "https://github.com/mitoNGS/MToolBox", "type": "Github"}], "year-creation": 2004, "data-processes": [{"name": "computed prediction of haplogroup", "type": "data curation"}, {"name": "computed estimation of site specific variability[SiteVar algorithm]", "type": "data curation"}, {"name": "The genome sequences their multialignments and the genome cards can be freely downloaded.", "type": "data access"}, {"name": "biannual release (as in twice a year)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.hmtdb.uniba.it/hmdb/jsp/download.html", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000049", "bsg-d000049"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Mitochondrial genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Human Mitochondrial Database", "abbreviation": "HmtDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.m90ne8", "doi": "10.25504/FAIRsharing.m90ne8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HmtDB is an open resource created to support population genetics and mitochondrial disease studies. The database hosts human mitochondrial genome sequences annotated with population and variability data, the latter being estimated through the application of the SiteVar/MitVarProt programs, based on site-specific nucleotide and aminoacid variability calculations. The annotations are manually curated thus adding value to the quality of the information provided to the end-user.", "publications": [{"id": 77, "pubmed_id": 16351753, "title": "HmtDB, a human mitochondrial genomic resource based on variability studies supporting population genetics and biomedical research.", "year": 2005, "url": "http://doi.org/10.1186/1471-2105-6-S4-S4", "authors": "Attimonelli M., Accetturo M., Santamaria M., Lascaro D., Scioscia G., Pappad\u00e0 G., Russo L., Zanchetta L., Tommaseo-Ponzetta M.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-6-S4-S4", "created_at": "2021-09-30T08:22:28.471Z", "updated_at": "2021-09-30T08:22:28.471Z"}, {"id": 81, "pubmed_id": 2012, "title": "Development of a special electrode for continuous subcutaneous pH measurement in the infant scalp.", "year": 1976, "url": "http://doi.org/10.1016/s0002-9378(16)33297-5", "authors": "Stamm O., Latscha U., Janecek P., Campana A.,", "journal": "Am. J. Obstet. Gynecol.", "doi": "10.1016/s0002-9378(16)33297-5", "created_at": "2021-09-30T08:22:28.804Z", "updated_at": "2021-09-30T08:22:28.804Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2071", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:14.362Z", "metadata": {"doi": "10.25504/FAIRsharing.t31wcb", "name": "Interaction Reference Index Web Interface", "status": "ready", "contacts": [{"contact-name": "Shoshana J. Wodak", "contact-email": "shoshana@sickkids.ca"}], "homepage": "http://wodaklab.org/iRefWeb/", "identifier": 2071, "description": "iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID.", "abbreviation": "iRefWeb", "support-links": [{"url": "support@wodaklab.org", "type": "Support email"}, {"url": "http://wodaklab.org/iRefWeb/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://blog.openhelix.com/?p=6896", "type": "Training documentation"}, {"url": "https://twitter.com/wodaklab", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://wodaklab.org/iRefWeb/search/index", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012725", "name": "re3data:r3d100012725", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008118", "name": "SciCrunch:RRID:SCR_008118", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000538", "bsg-d000538"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Molecular interaction", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Interaction Reference Index Web Interface", "abbreviation": "iRefWeb", "url": "https://fairsharing.org/10.25504/FAIRsharing.t31wcb", "doi": "10.25504/FAIRsharing.t31wcb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID.", "publications": [{"id": 510, "pubmed_id": 20940177, "title": "iRefWeb: interactive analysis of consolidated protein interaction data and their supporting evidence.", "year": 2010, "url": "http://doi.org/10.1093/database/baq023", "authors": "Turner B., Razick S., Turinsky AL., Vlasblom J., Crowdy EK., Cho E., Morrison K., Donaldson IM., Wodak SJ.,", "journal": "Database (Oxford)", "doi": "10.1093/database/baq023", "created_at": "2021-09-30T08:23:15.667Z", "updated_at": "2021-09-30T08:23:15.667Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2080", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:24.469Z", "metadata": {"doi": "10.25504/FAIRsharing.x989d5", "name": "Database of Orthologous Groups", "status": "ready", "contacts": [{"contact-name": "Evgenia V. Kriventseva", "contact-email": "evgenia.kriventseva@isb-sib.ch"}], "homepage": "http://www.orthodb.org/v9/", "identifier": 2080, "description": "OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny.", "abbreviation": "OrthoDB", "access-points": [{"url": "http://www.orthodb.org/v9/?page=api", "name": "OrthoDB API", "type": "Other"}], "support-links": [{"url": "support@orthodb.org", "type": "Support email"}, {"url": "http://www.orthodb.org/v9/?page=help", "type": "Help documentation"}, {"url": "https://listes.unige.ch/sympa/subscribe/orthodb-news", "type": "Mailing list"}], "year-creation": 2010, "data-processes": [{"url": "http://www.orthodb.org/v9/", "name": "search", "type": "data access"}, {"url": "http://www.orthodb.org/v9/?page=filelist", "name": "download", "type": "data access"}], "associated-tools": [{"url": "http://www.orthodb.org/v9/?page=software", "name": "OrthoDB Software v2.3.1"}]}, "legacy-ids": ["biodbcore-000548", "bsg-d000548"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Protein", "Orthologous"], "taxonomies": ["Bacteria", "Eukaryota", "Vertebrata"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: Database of Orthologous Groups", "abbreviation": "OrthoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.x989d5", "doi": "10.25504/FAIRsharing.x989d5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny.", "publications": [{"id": 151, "pubmed_id": 25428351, "title": "OrthoDB v8: update of the hierarchical catalog of orthologs and the underlying free software.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1220", "authors": "Kriventseva EV,Tegenfeldt F,Petty TJ,Waterhouse RM,Simao FA,Pozdnyakov IA,Ioannidis P,Zdobnov EM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1220", "created_at": "2021-09-30T08:22:36.428Z", "updated_at": "2021-09-30T11:28:43.425Z"}, {"id": 524, "pubmed_id": 20972218, "title": "OrthoDB: the hierarchical catalog of eukaryotic orthologs in 2011.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq930", "authors": "Waterhouse RM., Zdobnov EM., Tegenfeldt F., Li J., Kriventseva EV.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq930", "created_at": "2021-09-30T08:23:17.167Z", "updated_at": "2021-09-30T08:23:17.167Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 745, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1695", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:01.210Z", "metadata": {"doi": "10.25504/FAIRsharing.12yd2z", "name": "The UCSC Archaeal Genome Browser", "status": "ready", "contacts": [{"contact-name": "Todd M. Lowe", "contact-email": "lowe@soe.ucsc.edu"}], "homepage": "http://archaea.ucsc.edu", "identifier": 1695, "description": "The UCSC Archaeal Genome Browser is a window on the biology of more than 100 microbial species from the domain Archaea. Basic gene annotation is derived from NCBI Genbank/RefSeq entries, with overlays of sequence conservation across multiple species, nucleotide and protein motifs, non-coding RNA predictions, operon predictions, and other types of bioinformatic analyses. In addition, we display available gene expression data (microarray or high-throughput RNA sequencing). Direct contributions or notices of publication of functional genomic data or bioinformatic analyses from archaeal research labs are very welcome.", "support-links": [{"url": "http://archaea.ucsc.edu/FAQ/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://archaea.ucsc.edu/goldenPath/help/hgTracksHelp.html", "type": "Help documentation"}, {"url": "http://archaea.ucsc.edu/feed/", "type": "Blog/News"}], "year-creation": 2005, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by NCBI RefSeq genome release date", "type": "data versioning"}, {"name": "access to historical files available on request", "type": "data versioning"}, {"name": "file download(CSV,txt,tab-delimited)", "type": "data access"}, {"url": "http://archaea.ucsc.edu/genomes/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000151", "bsg-d000151"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["GC content", "Genome map", "Nucleic acid sequence alignment", "Expression data", "DNA sequence data", "RNA sequence", "Sequence annotation", "Operon prediction", "Transcription factor binding site prediction", "Multiple sequence alignment", "Computational biological predictions", "Gene functional annotation", "Promoter", "Non-coding RNA", "Orthologous", "Paralogous", "Insertion sequence", "CRISPR"], "taxonomies": ["Archaea", "Plasmodium falciparum"], "user-defined-tags": ["Palindromic transcription factor (TF) binding site predictions", "Poly T motifs as possible transcription termination signals"], "countries": ["United States"], "name": "FAIRsharing record for: The UCSC Archaeal Genome Browser", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.12yd2z", "doi": "10.25504/FAIRsharing.12yd2z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UCSC Archaeal Genome Browser is a window on the biology of more than 100 microbial species from the domain Archaea. Basic gene annotation is derived from NCBI Genbank/RefSeq entries, with overlays of sequence conservation across multiple species, nucleotide and protein motifs, non-coding RNA predictions, operon predictions, and other types of bioinformatic analyses. In addition, we display available gene expression data (microarray or high-throughput RNA sequencing). Direct contributions or notices of publication of functional genomic data or bioinformatic analyses from archaeal research labs are very welcome.", "publications": [{"id": 201, "pubmed_id": 16381898, "title": "The UCSC Archaeal Genome Browser.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj134", "authors": "Schneider KL., Pollard KS., Baertsch R., Pohl A., Lowe TM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj134", "created_at": "2021-09-30T08:22:41.958Z", "updated_at": "2021-09-30T08:22:41.958Z"}, {"id": 202, "pubmed_id": 14681465, "title": "The UCSC Table Browser data retrieval tool.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh103", "authors": "Karolchik D., Hinrichs AS., Furey TS., Roskin KM., Sugnet CW., Haussler D., Kent WJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh103", "created_at": "2021-09-30T08:22:42.065Z", "updated_at": "2021-09-30T08:22:42.065Z"}, {"id": 203, "pubmed_id": 11932250, "title": "BLAT--the BLAST-like alignment tool.", "year": 2002, "url": "http://doi.org/10.1101/gr.229202", "authors": "Kent WJ.,", "journal": "Genome Res.", "doi": "10.1101/gr.229202", "created_at": "2021-09-30T08:22:42.164Z", "updated_at": "2021-09-30T08:22:42.164Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1871", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:11.987Z", "metadata": {"doi": "10.25504/FAIRsharing.vfgn70", "name": "MycoBrowser marinum", "status": "deprecated", "contacts": [{"contact-name": "Stewart T. Cole", "contact-email": "stewart.cole@epfl.ch", "contact-orcid": "0000-0003-1400-5585"}], "homepage": "http://mycobrowser.epfl.ch/marinolist.html", "identifier": 1871, "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", "support-links": [{"url": "tuberculist@epfl.ch", "type": "Support email"}], "year-creation": 2009, "data-processes": [{"url": "http://mycobrowser.epfl.ch/marinoblastsearch.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://mycobrowser.epfl.ch/marinoblastsearch.php", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000334", "bsg-d000334"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence", "Genome"], "taxonomies": ["Mycobacterium marinum"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MycoBrowser marinum", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.vfgn70", "doi": "10.25504/FAIRsharing.vfgn70", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", "publications": [{"id": 387, "pubmed_id": 20980200, "title": "The MycoBrowser portal: a comprehensive and manually annotated resource for mycobacterial genomes.", "year": 2010, "url": "http://doi.org/10.1016/j.tube.2010.09.006", "authors": "Kapopoulou A., Lew JM., Cole ST.,", "journal": "Tuberculosis (Edinb)", "doi": "10.1016/j.tube.2010.09.006", "created_at": "2021-09-30T08:23:01.941Z", "updated_at": "2021-09-30T08:23:01.941Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2051", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:20.685Z", "metadata": {"doi": "10.25504/FAIRsharing.z1czxj", "name": "PeroxiBase", "status": "ready", "contacts": [{"contact-name": "Christophe Dunand", "contact-email": "dunand@lrsv.ups-tlse.fr", "contact-orcid": "0000-0003-1637-404"}], "homepage": "http://peroxibase.toulouse.inra.fr/", "identifier": 2051, "description": "Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", "abbreviation": "PeroxiBase", "year-creation": 2004, "data-processes": [{"name": "automated annotation(http://peroxibase.toulouse.inra.fr/infos/annotations.php)", "type": "data curation"}, {"url": "http://peroxibase.toulouse.inra.fr/tools/search_form_multicriteria.php", "name": "search", "type": "data access"}, {"url": "http://peroxibase.toulouse.inra.fr/browse/index.php", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://peroxibase.toulouse.inra.fr/tools/blast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000518", "bsg-d000518"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence annotation", "Biological regulation", "Enzyme", "Protein", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: PeroxiBase", "abbreviation": "PeroxiBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.z1czxj", "doi": "10.25504/FAIRsharing.z1czxj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", "publications": [{"id": 92, "pubmed_id": 23180785, "title": "PeroxiBase: a database for large-scale evolutionary analysis of peroxidases.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1083", "authors": "Fawal N., Li Q., Savelli B., Brette M., Passaia G., Fabre M., Math\u00e9 C., Dunand C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1083", "created_at": "2021-09-30T08:22:30.463Z", "updated_at": "2021-09-30T08:22:30.463Z"}, {"id": 863, "pubmed_id": 19112168, "title": "PeroxiBase: a powerful tool to collect and analyse peroxidase sequences from Viridiplantae.", "year": 2008, "url": "http://doi.org/10.1093/jxb/ern317", "authors": "Oliva M., Theiler G., Zamocky M., Koua D., Margis-Pinheiro M., Passardi F., Dunand C.,", "journal": "J. Exp. Bot.", "doi": "10.1093/jxb/ern317", "created_at": "2021-09-30T08:23:55.338Z", "updated_at": "2021-09-30T08:23:55.338Z"}], "licence-links": [{"licence-name": "PeroxiBase Attribution required", "licence-id": 657, "link-id": 988, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1901", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:39.377Z", "metadata": {"doi": "10.25504/FAIRsharing.q2ntvx", "name": "KinMutBase", "status": "deprecated", "contacts": [{"contact-name": "Jouni Valiaho", "contact-email": "Jouni.Valiaho@uta.fi"}], "homepage": "http://structure.bmc.lu.se/idbase/KinMutBase/", "identifier": 1901, "description": "KinMutBase is a comprehensive database of disease-causing mutations in protein kinase domains. This resources provides plenty of information, namely mutation statistics and display, clickable sequences with mutations and changes to restriction enzyme patterns.", "abbreviation": "KinMutBase", "year-creation": 1998, "data-processes": [{"url": "http://structure.bmc.lu.se/idbase/KinMutBase/", "name": "submit", "type": "data access"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource has not been updated since 2015 and, while a flat file is available for download, this record has been deprecated due to lack of activity. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000366", "bsg-d000366"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Protein structure", "Mutation", "Genetic polymorphism", "Enzyme", "Disease", "Protein", "Amino acid sequence", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: KinMutBase", "abbreviation": "KinMutBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.q2ntvx", "doi": "10.25504/FAIRsharing.q2ntvx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KinMutBase is a comprehensive database of disease-causing mutations in protein kinase domains. This resources provides plenty of information, namely mutation statistics and display, clickable sequences with mutations and changes to restriction enzyme patterns.", "publications": [{"id": 166, "pubmed_id": 15832311, "title": "KinMutBase: a registry of disease-causing mutations in protein kinase domains.", "year": 2005, "url": "http://doi.org/10.1002/humu.20166", "authors": "Ortutay C,Valiaho J,Stenberg K,Vihinen M", "journal": "Hum Mutat", "doi": "10.1002/humu.20166", "created_at": "2021-09-30T08:22:38.263Z", "updated_at": "2021-09-30T08:22:38.263Z"}, {"id": 218, "pubmed_id": 10592276, "title": "KinMutBase, a database of human disease-causing protein kinase mutations.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.369", "authors": "Stenberg KA,Riikonen PT,Vihinen M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.369", "created_at": "2021-09-30T08:22:43.637Z", "updated_at": "2021-09-30T11:28:44.033Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2208", "type": "fairsharing-records", "attributes": {"created-at": "2015-06-03T12:50:29.000Z", "updated-at": "2021-11-24T13:19:28.997Z", "metadata": {"doi": "10.25504/FAIRsharing.j45zag", "name": "H-Invitational Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "hinvdb@ml.tokai-u.jp"}], "homepage": "http://www.h-invitational.jp/hinv/ahg-db/index.jsp", "identifier": 2208, "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. By extensive analyses of all human transcripts, we provide curated annotations of human genes and transcripts that include gene structures, alternative splicing variants, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats) , relation with diseases, gene expression profiling, and molecular evolutionary features , protein-protein interactions (PPIs) and gene families/groups.", "abbreviation": "H-InvDB", "access-points": [{"url": "http://www.h-invitational.jp/hinv/hws/doc/en/api_list.php", "name": "REST", "type": "REST"}, {"url": "http://www.h-invitational.jp/hinv/hws/doc/en/soap_api_list.php", "name": "SOAP", "type": "SOAP"}], "support-links": [{"url": "http://h-invitational.jp/hinv/ahg-db/contact.jsp", "type": "Contact form"}, {"url": "http://www.h-invitational.jp/hinv/ahg-db/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.h-invitational.jp/hinv/help/help_index.html", "type": "Help documentation"}, {"url": "http://www.h-invitational.jp/hinv/hws/doc/index.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://www.h-invitational.jp/hinv/blast/blasttop.cgi", "name": "BLAST search", "type": "data access"}, {"url": "http://www.h-invitational.jp/hinv/dataset/download.cgi", "name": "database download", "type": "data access"}], "associated-tools": [{"url": "http://www.h-invitational.jp/hinv/blast/blasttop.cgi", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000682", "bsg-d000682"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Functional domain", "Protein structure", "Expression data", "Protein interaction", "Function analysis", "Alternative splicing", "Cellular localization", "Genetic polymorphism", "Non-coding RNA"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: H-Invitational Database", "abbreviation": "H-InvDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.j45zag", "doi": "10.25504/FAIRsharing.j45zag", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. By extensive analyses of all human transcripts, we provide curated annotations of human genes and transcripts that include gene structures, alternative splicing variants, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats) , relation with diseases, gene expression profiling, and molecular evolutionary features , protein-protein interactions (PPIs) and gene families/groups.", "publications": [{"id": 319, "pubmed_id": 18089548, "title": "The H-Invitational Database (H-InvDB), a comprehensive annotation resource for human genes and transcripts.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm999", "authors": "Yamasaki C,Murakami K,Fujii Y,Sato Y,Harada E,Takeda J,Taniya T,Sakate R,Kikugawa S,Shimada M,Tanino M,Koyanagi KO,Barrero RA,Gough C,Chun HW,Habara T,Hanaoka H,Hayakawa Y,Hilton PB,Kaneko Y,Kanno M,Kawahara Y,Kawamura T,Matsuya A,Nagata N,Nishikata K,Noda AO,Nurimoto S,Saichi N,Sakai H,Sanbonmatsu R,Shiba R,Suzuki M,Takabayashi K,Takahashi A,Tamura T,Tanaka M,Tanaka S,Todokoro F,Yamaguchi K,Yamamoto N,Okido T,Mashima J,Hashizume A,Jin L,Lee KB,Lin YC,Nozaki A,Sakai K,Tada M,Miyazaki S,Makino T,Ohyanagi H,Osato N,Tanaka N,Suzuki Y,Ikeo K,Saitou N,Sugawara H,O'Donovan C,Kulikova T,Whitfield E,Halligan B,Shimoyama M,Twigger S,Yura K,Kimura K,Yasuda T,Nishikawa T,Akiyama Y,Motono C,Mukai Y,Nagasaki H,Suwa M,Horton P,Kikuno R,Ohara O,Lancet D,Eveno E,Graudens E,Imbeaud S,Debily MA,Hayashizaki Y,Amid C,Han M,Osanger A,Endo T,Thomas MA,Hirakawa M,Makalowski W,Nakao M,Kim NS,Yoo HS,De Souza SJ,Bonaldo Mde F,Niimura Y,Kuryshev V,Schupp I,Wiemann S,Bellgard M,Shionyu M,Jia L,Thierry-Mieg D,Thierry-Mieg J,Wagner L,Zhang Q,Go M,Minoshima S,Ohtsubo M,Hanada K,Tonellato P,Isogai T,Zhang J,Lenhard B,Kim S,Chen Z,Hinz U,Estreicher A,Nakai K,Makalowska I,Hide W,Tiffin N,Wilming L,Chakraborty R,Soares MB,Chiusano ML,Suzuki Y,Auffray C,Yamaguchi-Kabata Y,Itoh T,Hishiki T,Fukuchi S,Nishikawa K,Sugano S,Nomura N,Tateno Y,Imanishi T,Gojobori T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm999", "created_at": "2021-09-30T08:22:54.264Z", "updated_at": "2021-09-30T11:28:45.109Z"}, {"id": 1063, "pubmed_id": 15103394, "title": "Integrative annotation of 21,037 human genes validated by full-length cDNA clones.", "year": 2004, "url": "http://doi.org/10.1371/journal.pbio.0020162", "authors": "Imanishi T,Itoh T,Suzuki Y,O'Donovan C,Fukuchi S,Koyanagi KO,Barrero RA,Tamura T,Yamaguchi-Kabata Y,Tanino M,Yura K,Miyazaki S,Ikeo K,Homma K,Kasprzyk A,Nishikawa T,Hirakawa M,Thierry-Mieg J,Thierry-Mieg D,Ashurst J,Jia L,Nakao M,Thomas MA,Mulder N,Karavidopoulou Y,Jin L,Kim S,Yasuda T,Lenhard B,Eveno E,Suzuki Y,Yamasaki C,Takeda J,Gough C,Hilton P,Fujii Y,Sakai H,Tanaka S,Amid C,Bellgard M,Bonaldo Mde F,Bono H,Bromberg SK,Brookes AJ,Bruford E,Carninci P,Chelala C,Couillault C,de Souza SJ,Debily MA,Devignes MD,Dubchak I,Endo T,Estreicher A,Eyras E,Fukami-Kobayashi K,Gopinath GR,Graudens E,Hahn Y,Han M,Han ZG,Hanada K,Hanaoka H,Harada E,Hashimoto K,Hinz U,Hirai M,Hishiki T,Hopkinson I,Imbeaud S,Inoko H,Kanapin A,Kaneko Y,Kasukawa T,Kelso J,Kersey P,Kikuno R,Kimura K,Korn B,Kuryshev V,Makalowska I,Makino T,Mano S,Mariage-Samson R,Mashima J,Matsuda H,Mewes HW,Minoshima S,Nagai K,Nagasaki H,Nagata N,Nigam R,Ogasawara O,Ohara O,Ohtsubo M,Okada N,Okido T,Oota S,Ota M,Ota T,Otsuki T,Piatier-Tonneau D,Poustka A,Ren SX,Saitou N,Sakai K,Sakamoto S,Sakate R,Schupp I,Servant F,Sherry S,Shiba R,Shimizu N,Shimoyama M,Simpson AJ,Soares B,Steward C,Suwa M,Suzuki M,Takahashi A,Tamiya G,Tanaka H,Taylor T,Terwilliger JD,Unneberg P,Veeramachaneni V,Watanabe S,Wilming L,Yasuda N,Yoo HS,Stodolsky M,Makalowski W,Go M,Nakai K,Takagi T,Kanehisa M,Sakaki Y,Quackenbush J,Okazaki Y,Hayashizaki Y,Hide W,Chakraborty R,Nishikawa K,Sugawara H,Tateno Y,Chen Z,Oishi M,Tonellato P,Apweiler R,Okubo K,Wagner L,Wiemann S,Strausberg RL,Isogai T,Auffray C,Nomura N,Gojobori T,Sugano S", "journal": "PLoS Biol", "doi": "10.1371/journal.pbio.0020162", "created_at": "2021-09-30T08:24:17.763Z", "updated_at": "2021-09-30T08:24:17.763Z"}, {"id": 1064, "pubmed_id": 23197657, "title": "H-InvDB in 2013: an omics study platform for human functional gene and transcript discovery.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1245", "authors": "Takeda J,Yamasaki C,Murakami K,Nagai Y,Sera M,Hara Y,Obi N,Habara T,Gojobori T,Imanishi T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1245", "created_at": "2021-09-30T08:24:17.872Z", "updated_at": "2021-09-30T11:28:57.692Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 2.1 Japan (CC BY-SA 2.1 JP)", "licence-id": 189, "link-id": 868, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1724", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-03T08:13:37.738Z", "metadata": {"doi": "10.25504/FAIRsharing.ezp87", "name": "mycoCLAP", "status": "deprecated", "contacts": [{"contact-name": "Adrian Tsang", "contact-email": "adrian.tsang@concordia.ca"}], "homepage": "http://mycoCLAP.fungalgenomics.ca", "citations": [], "identifier": 1724, "description": "mycoCLAP is a searchable resource for the knowledge and annotation of Characterized Lignocellulose-Active Proteins of fungal origin.", "abbreviation": "mycoCLAP", "support-links": [{"url": "mycoclap@concordia.ca", "type": "Support email"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/Help", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"name": "dates of changes are available on gene pages", "type": "data versioning"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/Download", "name": "file download (txt,fasta)", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"name": "every 4 months", "type": "data release"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/NewEntry", "name": "submit", "type": "data curation"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/Correction", "name": "improve the annotation", "type": "data curation"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/SummaryView", "name": "browse", "type": "data access"}, {"url": "https://mycoclap.fungalgenomics.ca/mycoCLAP/clap/Login", "name": "log in", "type": "data access"}], "associated-tools": [{"url": "http://blast.fungalgenomics.ca/blast_mycoclap.html", "name": "BLAST"}], "deprecation-date": "2021-12-02", "deprecation-reason": "This resource is obsolete, and has been subsumed into CLAE. Please use CLAE instead (https://beta.fairsharing.org/3652). For more information, see https://clae.fungalgenomics.ca/."}, "legacy-ids": ["biodbcore-000181", "bsg-d000181"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme", "Protein", "Gene"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: mycoCLAP", "abbreviation": "mycoCLAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.ezp87", "doi": "10.25504/FAIRsharing.ezp87", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: mycoCLAP is a searchable resource for the knowledge and annotation of Characterized Lignocellulose-Active Proteins of fungal origin.", "publications": [{"id": 234, "pubmed_id": 21622642, "title": "Curation of characterized glycoside hydrolases of Fungal origin", "year": 2011, "url": "http://doi.org/10.1093/database/bar020", "authors": "Caitlin Murphy, Justin Powlowski, Min Wu, Greg Butler and Adrian Tsang", "journal": "Database", "doi": "10.1093/database/bar020", "created_at": "2021-09-30T08:22:45.273Z", "updated_at": "2021-09-30T08:22:45.273Z"}], "licence-links": [{"licence-name": "Terms and conditions stated by Concordia University", "licence-id": 778, "link-id": 166, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1586", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.122Z", "metadata": {"doi": "10.25504/FAIRsharing.556qpw", "name": "FunTree: A Resource For Exploring The Functional Evolution Of Structurally Defined Enzyme Superfamilies", "status": "ready", "contacts": [{"contact-name": "Nick Furnham", "contact-email": "Nick.Furnham@lshtm.ac.uk"}], "homepage": "http://www.funtree.info/FunTree/", "identifier": 1586, "description": "A resource for exploring the evolution of protein function through relationships in sequence, structure, phylogeny and function.", "abbreviation": "FunTree", "support-links": [{"url": "http://cpmb.lshtm.ac.uk/templates/FunTree_Docs.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "access to historical files available upon request.", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://www.funtree.info/FunTree/", "name": "search", "type": "data access"}, {"url": "http://www.funtree.info/templates/browseByCATH.php", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000041", "bsg-d000041"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Protein structure", "Function analysis", "Evolution", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: FunTree: A Resource For Exploring The Functional Evolution Of Structurally Defined Enzyme Superfamilies", "abbreviation": "FunTree", "url": "https://fairsharing.org/10.25504/FAIRsharing.556qpw", "doi": "10.25504/FAIRsharing.556qpw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A resource for exploring the evolution of protein function through relationships in sequence, structure, phylogeny and function.", "publications": [{"id": 1321, "pubmed_id": 26590404, "title": "FunTree: advances in a resource for exploring and contextualising protein function evolution.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1274", "authors": "Sillitoe I,Furnham N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1274", "created_at": "2021-09-30T08:24:47.692Z", "updated_at": "2021-09-30T11:29:06.043Z"}, {"id": 1528, "pubmed_id": 22006843, "title": "FunTree: a resource for exploring the functional evolution of structurally defined enzyme superfamilies.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr852", "authors": "Furnham N,Sillitoe I,Holliday GL,Cuff AL,Rahman SA,Laskowski RA,Orengo CA,Thornton JM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr852", "created_at": "2021-09-30T08:25:11.049Z", "updated_at": "2021-09-30T11:29:12.577Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2033", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:08.305Z", "metadata": {"doi": "10.25504/FAIRsharing.qe8tz8", "name": "HOGENOM", "status": "ready", "contacts": [{"contact-name": "Simon Penel", "contact-email": "penel@biomserv.univ-lyon1.fr"}], "homepage": "http://hogenom.univ-lyon1.fr/", "identifier": 2033, "description": "HOGENOM is a phylogenomic database providing families of homologous genes and associated phylogenetic trees (and sequence alignments) for a wide set sequenced organisms.", "abbreviation": "HOGENOM", "support-links": [{"url": "http://hogenom.univ-lyon1.fr/about", "type": "Help documentation"}, {"url": "http://hogenom.univ-lyon1.fr/doc", "type": "Help documentation"}, {"url": "http://hogenom.univ-lyon1.fr/contents", "name": "Information about the content", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://hogenom.univ-lyon1.fr/query", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000500", "bsg-d000500"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Phylogenetics", "Life Science"], "domains": ["Classification", "Sequence", "Homologous", "Orthologous"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: HOGENOM", "abbreviation": "HOGENOM", "url": "https://fairsharing.org/10.25504/FAIRsharing.qe8tz8", "doi": "10.25504/FAIRsharing.qe8tz8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HOGENOM is a phylogenomic database providing families of homologous genes and associated phylogenetic trees (and sequence alignments) for a wide set sequenced organisms.", "publications": [{"id": 508, "pubmed_id": 19534752, "title": "Databases of homologous gene families for comparative genomics.", "year": 2009, "url": "http://doi.org/10.1186/1471-2105-10-S6-S3", "authors": "Penel S., Arigon AM., Dufayard JF., Sertier AS., Daubin V., Duret L., Gouy M., Perri\u00e8re G.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-10-S6-S3", "created_at": "2021-09-30T08:23:15.409Z", "updated_at": "2021-09-30T08:23:15.409Z"}], "licence-links": [{"licence-name": "CeCILL license", "licence-id": 112, "link-id": 296, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3297", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-23T15:42:33.000Z", "updated-at": "2022-02-08T10:55:08.257Z", "metadata": {"doi": "10.25504/FAIRsharing.625fde", "name": "Phylogenes", "status": "ready", "contacts": [], "homepage": "http://www.phylogenes.org/", "citations": [{"doi": "10.1002/pld3.293", "pubmed-id": 33392435, "publication-id": 1153}], "identifier": 3297, "description": "PhyloGenes displays pre-computed phylogenetic trees of gene families alongside experimental gene function data to facilitate inference of unknown gene function in plants.", "abbreviation": "Phylogenes", "data-curation": {}, "support-links": [{"url": "info@phylogenes.org", "name": "Phylogenes email", "type": "Support email"}, {"url": "https://conf.arabidopsis.org/display/PHGSUP/FAQ", "name": "Phylogenes FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://conf.arabidopsis.org/display/PHGSUP/About+PhyloGenes", "name": "About Phylogenes", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?v=UE7FJpKcP1o", "name": "Webinar (YouTube)", "type": "Video"}, {"url": "https://conf.arabidopsis.org/display/PHGSUP/User+guide", "name": "Phylogenes User Guide", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "http://www.phylogenes.org/", "name": "Search and browse", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001812", "bsg-d001812"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Phylogeny", "Phylogenetics", "Proteogenomics", "Phylogenomics"], "domains": ["Gene functional annotation"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Dictyostelium discoideum", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Mus musculus", "Plantae", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Viridiplantae"], "user-defined-tags": [], "countries": [], "name": "FAIRsharing record for: Phylogenes", "abbreviation": "Phylogenes", "url": "https://fairsharing.org/10.25504/FAIRsharing.625fde", "doi": "10.25504/FAIRsharing.625fde", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhyloGenes displays pre-computed phylogenetic trees of gene families alongside experimental gene function data to facilitate inference of unknown gene function in plants.", "publications": [{"id": 1153, "pubmed_id": 33392435, "title": "PhyloGenes: An online phylogenetics and functional genomics resource for plant gene function inference.", "year": 2021, "url": "http://doi.org/10.1002/pld3.293", "authors": "Zhang P,Berardini TZ,Ebert D,Li Q,Mi H,Muruganujan A,Prithvi T,Reiser L,Sawant S,Thomas PD,Huala E", "journal": "Plant Direct", "doi": "10.1002/pld3.293", "created_at": "2021-09-30T08:24:28.232Z", "updated_at": "2021-09-30T08:24:28.232Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3239", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-05T15:41:03.000Z", "updated-at": "2021-12-06T10:47:41.043Z", "metadata": {"name": "World Data Center for Geomagnetism, Kyoto", "status": "ready", "contacts": [{"contact-name": "Ayako\tMatsuoka", "contact-email": "matsuoka@kugi.kyoto-u.ac.jp", "contact-orcid": "0000-0001-5777-9711"}], "homepage": "http://wdc.kugi.kyoto-u.ac.jp/index.html", "identifier": 3239, "description": "The mission of the WDC for Geomagnetism, Kyoto is to provide geomagnetic field data supplied from a worldwide network of magnetic observatories, and the geomagnetic indices (AE index, ASY/SYM index, and Dst index) derived in this data center to researchers specializing mostly in solar terrestrial physics, and geomagnetism, the graduate students majoring in these academic disciplines, and citizens having an interest in those research fields.", "abbreviation": "WDC for Geomagnetism, Kyoto", "support-links": [{"url": "http://wdc.kugi.kyoto-u.ac.jp/new.html", "name": "News", "type": "Blog/News"}, {"url": "wdc-service@kugi.kyoto-u.ac.jp", "name": "WDC Data Service Contact", "type": "Support email"}, {"url": "http://wdc.kugi.kyoto-u.ac.jp/wdc/Sec2.html", "name": "What is the Earth's magnetic field?", "type": "Help documentation"}, {"url": "http://wdc.kugi.kyoto-u.ac.jp/wdc/pdf/Catalogue/Catalogue.pdf", "name": "World Data Center for Geomagnetism, Kyoto, Data Catalogue No. 32, Feb. 2020", "type": "Help documentation"}, {"url": "http://wdc.kugi.kyoto-u.ac.jp/wdc/pdf/pamphlet/wdc_pamp_e.pdf", "name": "Mission", "type": "Help documentation"}, {"url": "http://wdc.kugi.kyoto-u.ac.jp/wdc/obslink.html", "name": "Operating Geomagnetic Observatories and Institutes", "type": "Help documentation"}], "data-processes": [{"url": "http://wdc.kugi.kyoto-u.ac.jp/wdc/Sec3.html", "name": "Data Service", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010608", "name": "re3data:r3d100010608", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001753", "bsg-d001753"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Astrophysics and Astronomy", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geomagnetism", "Solar physics"], "countries": ["Japan"], "name": "FAIRsharing record for: World Data Center for Geomagnetism, Kyoto", "abbreviation": "WDC for Geomagnetism, Kyoto", "url": "https://fairsharing.org/fairsharing_records/3239", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The mission of the WDC for Geomagnetism, Kyoto is to provide geomagnetic field data supplied from a worldwide network of magnetic observatories, and the geomagnetic indices (AE index, ASY/SYM index, and Dst index) derived in this data center to researchers specializing mostly in solar terrestrial physics, and geomagnetism, the graduate students majoring in these academic disciplines, and citizens having an interest in those research fields.", "publications": [], "licence-links": [{"licence-name": "World Data System of the International Science Council (WDS) Data Sharing Principles", "licence-id": 867, "link-id": 713, "relation": "undefined"}, {"licence-name": "WDC for Geomagnetism, Kyoto Data Usage Rules", "licence-id": 853, "link-id": 716, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1834", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:56.170Z", "metadata": {"doi": "10.25504/FAIRsharing.ntyq70", "name": "The Carbohydrate-Active enZYmes Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "cazy@afmb.univ-mrs.fr"}], "homepage": "http://www.cazy.org/", "identifier": 1834, "description": "The CAZy database describes the families of structurally-related catalytic and carbohydrate-binding modules (or functional domains) of enzymes that degrade, modify, or create glycosidic bonds.", "abbreviation": "CAZy", "support-links": [{"url": "http://www.cazy.org/Help.html", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://www.cazy.org", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012321", "name": "re3data:r3d100012321", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012909", "name": "SciCrunch:RRID:SCR_012909", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000294", "bsg-d000294"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Carbohydrate", "Polysaccharide", "Enzyme", "Classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: The Carbohydrate-Active enZYmes Database", "abbreviation": "CAZy", "url": "https://fairsharing.org/10.25504/FAIRsharing.ntyq70", "doi": "10.25504/FAIRsharing.ntyq70", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CAZy database describes the families of structurally-related catalytic and carbohydrate-binding modules (or functional domains) of enzymes that degrade, modify, or create glycosidic bonds.", "publications": [{"id": 24, "pubmed_id": 18838391, "title": "The Carbohydrate-Active EnZymes database (CAZy): an expert resource for Glycogenomics.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn663", "authors": "Cantarel BL., Coutinho PM., Rancurel C., Bernard T., Lombard V., Henrissat B.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn663", "created_at": "2021-09-30T08:22:22.980Z", "updated_at": "2021-09-30T08:22:22.980Z"}, {"id": 30, "pubmed_id": 24270786, "title": "The carbohydrate-active enzymes database (CAZy) in 2013.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1178", "authors": "Lombard V,Golaconda Ramulu H,Drula E,Coutinho PM,Henrissat B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1178", "created_at": "2021-09-30T08:22:23.553Z", "updated_at": "2021-09-30T11:28:41.575Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1570", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.637Z", "metadata": {"doi": "10.25504/FAIRsharing.f21e5v", "name": "DataBase of Transcriptional Start Sites", "status": "ready", "contacts": [{"contact-name": "Yutaka Suzuki", "contact-email": "ysuzuki@ims.u-tokyo.ac.jp"}], "homepage": "http://dbtss.hgc.jp", "identifier": 1570, "description": "This database includes TSS data from adult and embryonic human tissue. DBTSS now contains 491 million TSS tag sequences for collected from a total of 20 tissues and 7 cell cultures.", "abbreviation": "DBTSS", "support-links": [{"url": "http://dbtss.hgc.jp/?doc:help_2014.html", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/DBTSS", "type": "Wikipedia"}], "year-creation": 2002, "data-processes": [{"name": "yearly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by serial numbers", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"url": "http://dbtss.hgc.jp/?doc:data_contents_2014.html", "name": "browse", "type": "data access"}, {"url": "ftp://ftp.hgc.jp/pub/hgc/db/dbtss/", "name": "file download(txt,tab-delimited)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://dbtss.hgc.jp/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000024", "bsg-d000024"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Transcription factor"], "taxonomies": ["Cyanidioschyzon merolae", "Homo sapiens", "Macaca fascicularis", "Mus musculus", "Pan troglodytes", "Plasmodium falciparum", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: DataBase of Transcriptional Start Sites", "abbreviation": "DBTSS", "url": "https://fairsharing.org/10.25504/FAIRsharing.f21e5v", "doi": "10.25504/FAIRsharing.f21e5v", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database includes TSS data from adult and embryonic human tissue. DBTSS now contains 491 million TSS tag sequences for collected from a total of 20 tissues and 7 cell cultures.", "publications": [{"id": 49, "pubmed_id": 19910371, "title": "DBTSS provides a tissue specific dynamic view of Transcription Start Sites.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1017", "authors": "Yamashita R., Wakaguri H., Sugano S., Suzuki Y., Nakai K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp1017", "created_at": "2021-09-30T08:22:25.672Z", "updated_at": "2021-09-30T08:22:25.672Z"}, {"id": 50, "pubmed_id": 17942421, "title": "DBTSS: database of transcription start sites, progress report 2008.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm901", "authors": "Wakaguri H., Yamashita R., Suzuki Y., Sugano S., Nakai K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm901", "created_at": "2021-09-30T08:22:25.762Z", "updated_at": "2021-09-30T08:22:25.762Z"}, {"id": 1273, "pubmed_id": 25378318, "title": "DBTSS as an integrative platform for transcriptome, epigenome and genome sequence variation data.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1080", "authors": "Suzuki A,Wakaguri H,Yamashita R,Kawano S,Tsuchihara K,Sugano S,Suzuki Y,Nakai K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1080", "created_at": "2021-09-30T08:24:42.156Z", "updated_at": "2021-09-30T11:29:04.868Z"}, {"id": 1545, "pubmed_id": 24069199, "title": "Identification and characterization of cancer mutations in Japanese lung adenocarcinoma without sequencing of normal tissue counterparts.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0073484", "authors": "Suzuki A,Mimaki S,Yamane Y,Kawase A,Matsushima K,Suzuki M,Goto K,Sugano S,Esumi H,Suzuki Y,Tsuchihara K", "journal": "PLoS One", "doi": "10.1371/journal.pone.0073484", "created_at": "2021-09-30T08:25:13.019Z", "updated_at": "2021-09-30T08:25:13.019Z"}, {"id": 1546, "pubmed_id": 16381981, "title": "DBTSS: DataBase of Human Transcription Start Sites, progress report 2006.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj129", "authors": "Yamashita R., Suzuki Y., Wakaguri H., Tsuritani K., Nakai K., Sugano S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj129", "created_at": "2021-09-30T08:25:13.178Z", "updated_at": "2021-09-30T08:25:13.178Z"}, {"id": 1547, "pubmed_id": 14681363, "title": "DBTSS, DataBase of Transcriptional Start Sites: progress report 2004.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh076", "authors": "Suzuki Y., Yamashita R., Sugano S., Nakai K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh076", "created_at": "2021-09-30T08:25:13.286Z", "updated_at": "2021-09-30T08:25:13.286Z"}, {"id": 1548, "pubmed_id": 11752328, "title": "DBTSS: DataBase of human Transcriptional Start Sites and full-length cDNAs.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.328", "authors": "Suzuki Y., Yamashita R., Nakai K., Sugano S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.328", "created_at": "2021-09-30T08:25:13.452Z", "updated_at": "2021-09-30T08:25:13.452Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2868", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-06T14:12:57.000Z", "updated-at": "2021-11-24T13:14:56.936Z", "metadata": {"doi": "10.25504/FAIRsharing.FnkS1A", "name": "Drug Database for Inborn Errors of Metabolism", "status": "ready", "contacts": [{"contact-name": "Robert Hoehndorf", "contact-email": "robert.hoehndorf@kaust.edu.sa", "contact-orcid": "0000-0001-8149-5890"}], "homepage": "http://ddiem.phenomebrowser.net/", "identifier": 2868, "description": "DDIEM - Drug Database for inborn errors of metabolism is a database on therapeutic strategies for inborn errors of metabolism. These strategies are classified by mechanism and outcome in DDIEM ontology. DDIEM uses this ontology to categorize the experimental treatments that have been proposed or applied. The database includes descriptions of the phenotypes addressed by the treatment and drugs participating in treatment and procedures.", "abbreviation": "DDIEM", "support-links": [{"url": "https://github.com/bio-ontology-research-group/DDIEM/issues", "name": "Github Issue Tracker", "type": "Github"}, {"url": "https://github.com/bio-ontology-research-group/DDIEM", "name": "GitHub Project", "type": "Github"}], "year-creation": 2020, "data-processes": [{"url": "http://ddiem.phenomebrowser.net/", "name": "Browse DDIEM", "type": "data access"}, {"url": "http://ddiem.phenomebrowser.net/isparql", "name": "Download DDIEM (RDF)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001369", "bsg-d001369"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science", "Biology"], "domains": ["Drug", "Rare disease", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "Saudi Arabia"], "name": "FAIRsharing record for: Drug Database for Inborn Errors of Metabolism", "abbreviation": "DDIEM", "url": "https://fairsharing.org/10.25504/FAIRsharing.FnkS1A", "doi": "10.25504/FAIRsharing.FnkS1A", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DDIEM - Drug Database for inborn errors of metabolism is a database on therapeutic strategies for inborn errors of metabolism. These strategies are classified by mechanism and outcome in DDIEM ontology. DDIEM uses this ontology to categorize the experimental treatments that have been proposed or applied. The database includes descriptions of the phenotypes addressed by the treatment and drugs participating in treatment and procedures.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1014, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1806", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:10.221Z", "metadata": {"doi": "10.25504/FAIRsharing.sjk03h", "name": "Ontology-based Knowledgebase for Cell Adhesion Molecules", "status": "deprecated", "contacts": [{"contact-email": "guhl@intra.nida.nih.gov"}], "homepage": "http://www.rhesusbase.org/drugDisc/CAM.jsp", "identifier": 1806, "description": "OKCAM (Ontology-based Knowledgebase for Cell Adhesion Molecules) is an online resource for human genes known or predicted to be related to the processes of cell adhesion. These genes include members of the cadherin, immunoglobulin/FibronectinIII (IgFn), integrin, neurexin, neuroligin, and catenin families.", "abbreviation": "OKCAM", "deprecation-date": "2018-05-08", "deprecation-reason": "Homepage (http://okcam.cbi.pku.edu.cn) states that the data within this database is now in RhesusBase (https://fairsharing.org/FAIRsharing.qkrmth) as this database is retired."}, "legacy-ids": ["biodbcore-000266", "bsg-d000266"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Cell adhesion", "Small molecule", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China", "United States"], "name": "FAIRsharing record for: Ontology-based Knowledgebase for Cell Adhesion Molecules", "abbreviation": "OKCAM", "url": "https://fairsharing.org/10.25504/FAIRsharing.sjk03h", "doi": "10.25504/FAIRsharing.sjk03h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OKCAM (Ontology-based Knowledgebase for Cell Adhesion Molecules) is an online resource for human genes known or predicted to be related to the processes of cell adhesion. These genes include members of the cadherin, immunoglobulin/FibronectinIII (IgFn), integrin, neurexin, neuroligin, and catenin families.", "publications": [{"id": 278, "pubmed_id": 18790807, "title": "OKCAM: an ontology-based, human-centered knowledgebase for cell adhesion molecules.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn568", "authors": "Li CY., Liu QR., Zhang PW., Li XM., Wei L., Uhl GR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn568", "created_at": "2021-09-30T08:22:49.990Z", "updated_at": "2021-09-30T08:22:49.990Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1679", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:59.103Z", "metadata": {"doi": "10.25504/FAIRsharing.tber4e", "name": "Human Integrated Pathway Database", "status": "deprecated", "contacts": [{"contact-name": "Sanghyuk Lee", "contact-email": "sanghyuk@kribb.re.kr"}], "homepage": "http://hipathdb.kobic.re.kr", "identifier": 1679, "description": "Human Integrated Pathway Database (hiPathDB) provides two different types of integration. The pathway-level integration is a simple collection of individual pathways as described in the original database. The entity-level integration creates a super pathway that merged all pathways by unifying redundant components.", "abbreviation": "hiPathDB", "support-links": [{"url": "hipathdb-help@kobic.kr", "type": "Support email"}, {"url": "http://hipathdb.kobic.re.kr/tutorial.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "biannual release", "type": "data release"}, {"name": "no versioning but access to historical files is possible", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited,XML)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://hipathdb.kobic.re.kr/download.php", "name": "Download Specification", "type": "data release"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000135", "bsg-d000135"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Molecular interaction"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Human Integrated Pathway Database", "abbreviation": "hiPathDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.tber4e", "doi": "10.25504/FAIRsharing.tber4e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Human Integrated Pathway Database (hiPathDB) provides two different types of integration. The pathway-level integration is a simple collection of individual pathways as described in the original database. The entity-level integration creates a super pathway that merged all pathways by unifying redundant components.", "publications": [{"id": 180, "pubmed_id": 22123737, "title": "hiPathDB: a human-integrated pathway database with facile visualization.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1127", "authors": "Yu N., Seo J., Rho K., Jang Y., Park J., Kim WK., Lee S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1127", "created_at": "2021-09-30T08:22:39.672Z", "updated_at": "2021-09-30T08:22:39.672Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2730", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T20:56:30.000Z", "updated-at": "2021-11-24T13:19:38.891Z", "metadata": {"doi": "10.25504/FAIRsharing.QXYuxK", "name": "TargetMine", "status": "ready", "homepage": "http://targetmine.mizuguchilab.org/targetmine", "citations": [{"doi": "10.1093/database/baw009", "pubmed-id": 26989145, "publication-id": 2386}], "identifier": 2730, "description": "TargetMine integrates many types of data for human, rat and mouse. Flexible queries, export of results and data analysis are available.", "abbreviation": "TargetMine", "access-points": [{"url": "https://targetmine.mizuguchilab.org/targetmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://targetmine.mizuguchilab.org/tutorials", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://targetmine.mizuguchilab.org/targetmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/targetmine-tutorials-tutorials-for-an-intermine-designed-to-help-identify-drug-targets", "name": "TargetMine tutorials Tutorials for an InterMine designed to help identify drug targets.", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2011, "data-processes": [{"url": "https://targetmine.mizuguchilab.org/targetmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://targetmine.mizuguchilab.org/targetmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://targetmine.mizuguchilab.org/targetmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001228", "bsg-d001228"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Protein structure", "Protein domain", "Protein interaction", "Chemical entity", "Molecular interaction", "High-throughput screening", "Protein", "Micro RNA", "Gene", "Gene-disease association", "Target"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: TargetMine", "abbreviation": "TargetMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.QXYuxK", "doi": "10.25504/FAIRsharing.QXYuxK", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TargetMine integrates many types of data for human, rat and mouse. Flexible queries, export of results and data analysis are available.", "publications": [{"id": 2386, "pubmed_id": 26989145, "title": "An integrative data analysis platform for gene set analysis and knowledge discovery in a data warehouse framework.", "year": 2016, "url": "http://doi.org/10.1093/database/baw009", "authors": "Chen YA,Tripathi LP,Mizuguchi K", "journal": "Database (Oxford)", "doi": "10.1093/database/baw009", "created_at": "2021-09-30T08:26:53.162Z", "updated_at": "2021-09-30T08:26:53.162Z"}, {"id": 2387, "pubmed_id": 21408081, "title": "TargetMine, an integrated data warehouse for candidate gene prioritisation and target discovery.", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0017844", "authors": "Chen YA,Tripathi LP,Mizuguchi K", "journal": "PLoS One", "doi": "10.1371/journal.pone.0017844", "created_at": "2021-09-30T08:26:53.277Z", "updated_at": "2021-09-30T08:26:53.277Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1316, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1817", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:17.424Z", "metadata": {"doi": "10.25504/FAIRsharing.rgb21", "name": "Receptor Tyrosine Kinase database", "status": "deprecated", "contacts": [{"contact-email": "perriere@biomserv.univ-lyon1.fr"}], "homepage": "http://pbil.univ-lyon1.fr/RTKdb/", "identifier": 1817, "description": "A database dedicated to the tyrosine kinase recepter.", "abbreviation": "RTKdb", "associated-tools": [{"url": "http://pbil.univ-lyon1.fr/RTKdb/", "name": "search"}, {"url": "http://pbil.univ-lyon1.fr/RTKdb/", "name": "search"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000277", "bsg-d000277"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Protein"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Xenopus laevis"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Receptor Tyrosine Kinase database", "abbreviation": "RTKdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.rgb21", "doi": "10.25504/FAIRsharing.rgb21", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database dedicated to the tyrosine kinase recepter.", "publications": [{"id": 332, "pubmed_id": 12520021, "title": "RTKdb: database of Receptor Tyrosine Kinase.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg036", "authors": "Grassot J., Mouchiroud G., Perri\u00e8re G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg036", "created_at": "2021-09-30T08:22:55.749Z", "updated_at": "2021-09-30T08:22:55.749Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2101", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.041Z", "metadata": {"doi": "10.25504/FAIRsharing.4ttw2d", "name": "Search PRINTS-S", "status": "ready", "contacts": [{"contact-name": "TK Attwood", "contact-email": "attwood@bioinf.man.ac.uk"}], "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "identifier": 2101, "description": "SPRINT provides search access to the data bank of protein family fingerprints (PRINTS).", "abbreviation": "SPRINT", "support-links": [{"url": "http://www.bioinf.man.ac.uk/dbbrowser/sprint/sprint_help.html", "type": "Help documentation"}], "data-processes": [{"url": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/sprint_search.cgi", "name": "search", "type": "data access"}, {"url": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/sprint_search_adv.cgi", "name": "advanced search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000570", "bsg-d000570"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein domain", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Search PRINTS-S", "abbreviation": "SPRINT", "url": "https://fairsharing.org/10.25504/FAIRsharing.4ttw2d", "doi": "10.25504/FAIRsharing.4ttw2d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SPRINT provides search access to the data bank of protein family fingerprints (PRINTS).", "publications": [{"id": 535, "pubmed_id": 10592232, "title": "PRINTS-S: the database formerly known as PRINTS.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.225", "authors": "Attwood TK., Croning MD., Flower DR., Lewis AP., Mabey JE., Scordis P., Selley JN., Wright W.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.225", "created_at": "2021-09-30T08:23:18.460Z", "updated_at": "2021-09-30T08:23:18.460Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2356", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-31T13:24:21.000Z", "updated-at": "2021-11-24T13:16:28.326Z", "metadata": {"doi": "10.25504/FAIRsharing.m03n8s", "name": "Reflora Virtual Herbarium", "status": "in_development", "contacts": [{"contact-name": "Rafaela Campostrini Forzza", "contact-email": "reflora@jbrj.gov.br"}], "homepage": "http://floradobrasil.jbrj.gov.br/reflora/herbarioVirtual", "identifier": 2356, "description": "The mission of this project was to built a virtual herbarium to display the images of Brazilian plants that are housed in foreign herbaria and was presented by the Brazilian Research Council (CNPq) to the Rio de Janeiro Botanical Garden (JBRJ) in December 2010. The objective was to provide capacity to store and display high quality data regarding Brazil\u2019s Flora within a public institution. The Reflora Virtual Herbarium is designed to allow taxonomists to perform similar procedures to the ones they are used to do within physical collections. In this site they will access, rather than physical specimens, high quality images that can be consulted, re-determined and typified, amongst other functionalities. In due course, the curators of partner institutes will receive periodic and on-demand system reports and will be able to update data in their own collections. There are currently (2016-10-30) 1922914 images of specimens available in the Reflora Virtual Herbarium. Amongst them, 116925 are nomenclatural types and 525348 are georeferenced records. If you are a trained taxonomist and would like to collaborate in the Reflora Virtual Herbarium, contact us by e-mail at reflora@jbrj.gov.br.", "abbreviation": "REFLORA", "support-links": [{"url": "reflora@jbrj.gov.br", "type": "Support email"}], "year-creation": 2010, "associated-tools": [{"url": "http://ipt.jbrj.gov.br/reflora/", "name": "IPT-REFLORA"}, {"url": "http://ipt.jbrj.gov.br/jbrj/", "name": "IPT-RB collection"}]}, "legacy-ids": ["biodbcore-000835", "bsg-d000835"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Biodiversity", "Ontology and Terminology"], "domains": ["Taxonomic classification", "Bioimaging", "Biological sample"], "taxonomies": ["Algae", "Fungi", "Plantae"], "user-defined-tags": [], "countries": ["Brazil"], "name": "FAIRsharing record for: Reflora Virtual Herbarium", "abbreviation": "REFLORA", "url": "https://fairsharing.org/10.25504/FAIRsharing.m03n8s", "doi": "10.25504/FAIRsharing.m03n8s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The mission of this project was to built a virtual herbarium to display the images of Brazilian plants that are housed in foreign herbaria and was presented by the Brazilian Research Council (CNPq) to the Rio de Janeiro Botanical Garden (JBRJ) in December 2010. The objective was to provide capacity to store and display high quality data regarding Brazil\u2019s Flora within a public institution. The Reflora Virtual Herbarium is designed to allow taxonomists to perform similar procedures to the ones they are used to do within physical collections. In this site they will access, rather than physical specimens, high quality images that can be consulted, re-determined and typified, amongst other functionalities. In due course, the curators of partner institutes will receive periodic and on-demand system reports and will be able to update data in their own collections. There are currently (2016-10-30) 1922914 images of specimens available in the Reflora Virtual Herbarium. Amongst them, 116925 are nomenclatural types and 525348 are georeferenced records. If you are a trained taxonomist and would like to collaborate in the Reflora Virtual Herbarium, contact us by e-mail at reflora@jbrj.gov.br.", "publications": [{"id": 1741, "pubmed_id": null, "title": "HERB\u00c1RIO VIRTUAL REFLORA Rafaela", "year": 2015, "url": "https://www.researchgate.net/project/Virtual-Herbarium-Reflora", "authors": "Rafaela Campostrini Forzza, Fabiana Luiza Ranzato Filardi, Jo\u00e3o Paulo dos Santos Condack, Marco Ant\u00f4nio Palomares Accardo Filho, Paula Leitman, Silvana Helena Nascimento Monteiro, Vitor Faria Monteiro", "journal": "Bioscience", "doi": null, "created_at": "2021-09-30T08:25:35.329Z", "updated_at": "2021-09-30T11:28:33.068Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 374, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1765", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.667Z", "metadata": {"doi": "10.25504/FAIRsharing.nmavtd", "name": "Influenza Virus Database", "status": "deprecated", "contacts": [{"contact-name": "Wang Jing", "contact-email": "wangjing@genomics.org.cn"}], "homepage": "http://influenza.psych.ac.cn/", "identifier": 1765, "description": "IVDB hosts complete genome sequences of influenza A virus generated by BGI and curates all other published influenza virus sequences after expert annotations. IVDB provides a series of tools and viewers for analyzing the viral genomes, genes, genetic polymorphisms and phylogenetic relationships comparatively.", "abbreviation": "IVDB", "support-links": [{"url": "http://influenza.psych.ac.cn/help/Help.jsp", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "ftp://ftp.genomics.org.cn/pub/influenza/", "name": "Download", "type": "data access"}, {"url": "http://influenza.psych.ac.cn/search/complexQuery.jsp", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://influenza.psych.ac.cn/tools/blast/blastall.jsp", "name": "BLAST"}, {"url": "http://influenza.psych.ac.cn/tools/Tools.jsp", "name": "analyze"}], "deprecation-date": "2021-9-22", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000223", "bsg-d000223"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Gene", "Genome"], "taxonomies": ["Influenza virus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Influenza Virus Database", "abbreviation": "IVDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.nmavtd", "doi": "10.25504/FAIRsharing.nmavtd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IVDB hosts complete genome sequences of influenza A virus generated by BGI and curates all other published influenza virus sequences after expert annotations. IVDB provides a series of tools and viewers for analyzing the viral genomes, genes, genetic polymorphisms and phylogenetic relationships comparatively.", "publications": [{"id": 1585, "pubmed_id": 17065465, "title": "Influenza Virus Database (IVDB): an integrated information resource and analysis platform for influenza virus research.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl779", "authors": "Chang S,Zhang J,Liao X,Zhu X,Wang D,Zhu J,Feng T,Zhu B,Gao GF,Wang J,Yang H,Yu J,Wang J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl779", "created_at": "2021-09-30T08:25:17.658Z", "updated_at": "2021-09-30T11:29:14.803Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2440", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-20T13:38:52.000Z", "updated-at": "2021-11-24T13:16:38.619Z", "metadata": {"doi": "10.25504/FAIRsharing.rxy5xm", "name": "Unidata Data Services", "status": "ready", "contacts": [{"contact-name": "General Support", "contact-email": "support@unidata.ucar.edu"}], "homepage": "http://www.unidata.ucar.edu/data/", "identifier": 2440, "description": "A collection of earth science-related data available to the research community.", "support-links": [{"url": "http://www.unidata.ucar.edu/data/#mailinglists", "type": "Mailing list"}, {"url": "http://www.unidata.ucar.edu/publications/factsheets/current/factsheet_data.pdf", "type": "Help documentation"}, {"url": "https://twitter.com/unidata", "type": "Twitter"}], "year-creation": 1983}, "legacy-ids": ["biodbcore-000922", "bsg-d000922"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Unidata Data Services", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.rxy5xm", "doi": "10.25504/FAIRsharing.rxy5xm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of earth science-related data available to the research community.", "publications": [], "licence-links": [{"licence-name": "UCAR Privacy Policy", "licence-id": 799, "link-id": 774, "relation": "undefined"}, {"licence-name": "UCAR Terms of Use", "licence-id": 800, "link-id": 776, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2960", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-21T10:52:19.000Z", "updated-at": "2022-02-08T10:39:43.345Z", "metadata": {"doi": "10.25504/FAIRsharing.eca8fd", "name": "Cancer Drug Interactions", "status": "ready", "contacts": [{"contact-name": "Nielka Van Erp", "contact-email": "nielka.vanerp@radboudumc.nl", "contact-orcid": "0000-0003-1553-178X"}], "homepage": "https://cancer-druginteractions.org/", "citations": [], "identifier": 2960, "description": "Nearly 60% of patients undergoing cancer treatment are estimated to have had at least one potential drug-drug interaction; for patients receiving oral anticancer therapy, up to 50% have been reported to experience a potential drug-drug interaction, with 16% experiencing a major event. Drug-drug interactions are therefore a significant issue for cancer patients and the health care professionals who treat them. Combining the internationally recognised drug-drug interactions expertise of the University of Liverpool (UK) with the clinical pharmacology in oncology and haemotology expertise of Radboud University, Nijmegen (the Netherlands), this site was established in 2017 in response to the need for improved management of DDIs with anti-cancer agents.", "abbreviation": null, "support-links": [{"url": "https://cancer-druginteractions.org/support-us", "name": "Donate", "type": "Other"}, {"url": "https://cancer-druginteractions.org/feedbacks/new", "name": "Feedback", "type": "Contact form"}, {"url": "https://cancer-druginteractions.org/site_updates", "name": "Website updates", "type": "Help documentation"}, {"url": "https://twitter.com/CancerDDIs", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "https://cancer-druginteractions.org/checker", "name": "Interaction checker", "type": "data access"}, {"url": "https://cancer-druginteractions.org/drug_queries/new", "name": "Interaction checker Lite", "type": "data access"}], "associated-tools": [{"url": "https://apps.apple.com/gb/app/cancer-ichart/id1414833100", "name": "Cancer iChart (AppStore)"}, {"url": "https://play.google.com/store/apps/details?id=com.liverpooluni.ichartoncology&hl=en_GB", "name": "Cancer iChart (Google Play)"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001464", "bsg-d001464"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Development", "Biomedical Science"], "domains": ["Cancer", "Drug interaction", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "Netherlands"], "name": "FAIRsharing record for: Cancer Drug Interactions", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.eca8fd", "doi": "10.25504/FAIRsharing.eca8fd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Nearly 60% of patients undergoing cancer treatment are estimated to have had at least one potential drug-drug interaction; for patients receiving oral anticancer therapy, up to 50% have been reported to experience a potential drug-drug interaction, with 16% experiencing a major event. Drug-drug interactions are therefore a significant issue for cancer patients and the health care professionals who treat them. Combining the internationally recognised drug-drug interactions expertise of the University of Liverpool (UK) with the clinical pharmacology in oncology and haemotology expertise of Radboud University, Nijmegen (the Netherlands), this site was established in 2017 in response to the need for improved management of DDIs with anti-cancer agents.", "publications": [], "licence-links": [{"licence-name": "Drug Interactions Terms and Conditions", "licence-id": 254, "link-id": 2326, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2745", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-17T13:06:34.000Z", "updated-at": "2022-02-08T10:29:48.556Z", "metadata": {"doi": "10.25504/FAIRsharing.0c6bc2", "name": "FlyAtlas 2", "status": "ready", "contacts": [{"contact-name": "Julian A T Dow", "contact-email": "julian.dow@glasgow.ac.uk", "contact-orcid": "0000-0002-9595-5146"}], "homepage": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html", "citations": [{"doi": "10.1093/nar/gkx976", "pubmed-id": 29069479, "publication-id": 2463}], "identifier": 2745, "description": "FlyAtlas 2 is the RNA-Seq successor to the original FlyAtlas (which was based on microarray analysis). Specifically, FlyAtlas 2 now provides access to: transcript information, sex-specific data for adult somatic tissues, and micro-RNA genes. FlyAtlas2 supports search by gene, category or tissue; and functionality has been improved through mobile support and the option to download results in spreadsheet format. Gene coverage has been extended by the inclusion of microRNAs and many of the RNA genes included in Release 6 of the Drosophila reference genome. The web interface has been modified to accommodate the extra data, but at the same time has been adapted for viewing on small mobile devices. Users also have access to the RNA-Seq reads displayed alongside the annotated Drosophila genome in the (external) UCSC browser, and are able to link out to the previous FlyAtlas resource to compare the data obtained by RNA-Seq with that obtained using microarrays.", "abbreviation": "FlyAtlas 2", "support-links": [{"url": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html?page=contact", "name": "Feedback Form", "type": "Contact form"}, {"url": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html?page=help", "name": "FlyAtlas 2 Documentation", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html?page=gene", "name": "Search via Gene Name", "type": "data access"}, {"url": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html?page=top", "name": "Search via Tissue Type", "type": "data access"}, {"url": "http://flyatlas.gla.ac.uk/FlyAtlas2/index.html?page=go", "name": "Search by Category", "type": "data access"}]}, "legacy-ids": ["biodbcore-001243", "bsg-d001243"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Transcriptomics", "Biology"], "domains": ["RNA sequencing", "Microarray experiment", "DNA microarray", "Micro RNA"], "taxonomies": ["Drosophila melanogaster"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: FlyAtlas 2", "abbreviation": "FlyAtlas 2", "url": "https://fairsharing.org/10.25504/FAIRsharing.0c6bc2", "doi": "10.25504/FAIRsharing.0c6bc2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FlyAtlas 2 is the RNA-Seq successor to the original FlyAtlas (which was based on microarray analysis). Specifically, FlyAtlas 2 now provides access to: transcript information, sex-specific data for adult somatic tissues, and micro-RNA genes. FlyAtlas2 supports search by gene, category or tissue; and functionality has been improved through mobile support and the option to download results in spreadsheet format. Gene coverage has been extended by the inclusion of microRNAs and many of the RNA genes included in Release 6 of the Drosophila reference genome. The web interface has been modified to accommodate the extra data, but at the same time has been adapted for viewing on small mobile devices. Users also have access to the RNA-Seq reads displayed alongside the annotated Drosophila genome in the (external) UCSC browser, and are able to link out to the previous FlyAtlas resource to compare the data obtained by RNA-Seq with that obtained using microarrays.", "publications": [{"id": 1460, "pubmed_id": 17534367, "title": "Using FlyAtlas to identify better Drosophila melanogaster models of human disease.", "year": 2007, "url": "http://doi.org/10.1038/ng2049", "authors": "Chintapalli VR,Wang J,Dow JA", "journal": "Nat Genet", "doi": "10.1038/ng2049", "created_at": "2021-09-30T08:25:03.161Z", "updated_at": "2021-09-30T08:25:03.161Z"}, {"id": 2463, "pubmed_id": 29069479, "title": "FlyAtlas 2: a new version of the Drosophila melanogaster expression atlas with RNA-Seq, miRNA-Seq and sex-specific data.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx976", "authors": "Leader DP,Krause SA,Pandit A,Davies SA,Dow JAT", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx976", "created_at": "2021-09-30T08:27:02.067Z", "updated_at": "2021-09-30T11:29:36.638Z"}, {"id": 2464, "pubmed_id": 23203866, "title": "FlyAtlas: database of gene expression in the tissues of Drosophila melanogaster.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1141", "authors": "Robinson SW,Herzyk P,Dow JA,Leader DP", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1141", "created_at": "2021-09-30T08:27:02.166Z", "updated_at": "2021-09-30T11:29:36.738Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1564", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.114Z", "metadata": {"doi": "10.25504/FAIRsharing.semw9e", "name": "CoryneRegNet 6.0 - Corynebacterial Regulation Network", "status": "ready", "homepage": "http://www.coryneregnet.de/", "identifier": 1564, "description": "Corynebacterial Regulation Network a reference database and analysis platform for corynebacterial transcription factors and gene regulatory networks.", "abbreviation": "CoryneRegNet", "year-creation": 2011, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "sequence logos", "type": "data access"}, {"name": "transcriptional gene regulatory networks", "type": "data access"}]}, "legacy-ids": ["biodbcore-000018", "bsg-d000018"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Gene Ontology enrichment", "Regulation of gene expression", "Transcription factor", "Gene"], "taxonomies": ["Aurimucosum ATCC 700975", "Corynebacterium efficiens", "Corynebacterium glutamicum R", "Corynebacterium jeikeium K411", "Corynebacterium pseudotuberculosis 1002", "Corynebacterium pseudotuberculosis C231", "Corynebacterium pseudotuberculosis FRC41", "Diphtheriae NCTC 13129", "Escherichia coli K12", "Glutamicum ATCC 13032", "Kroppenstedtii DSM 44385", "Urealyticum DSM 7109"], "user-defined-tags": [], "countries": ["United States", "Germany"], "name": "FAIRsharing record for: CoryneRegNet 6.0 - Corynebacterial Regulation Network", "abbreviation": "CoryneRegNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.semw9e", "doi": "10.25504/FAIRsharing.semw9e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Corynebacterial Regulation Network a reference database and analysis platform for corynebacterial transcription factors and gene regulatory networks.", "publications": [{"id": 25, "pubmed_id": 19498379, "title": "Integrated analysis and reconstruction of microbial transcriptional gene regulatory networks using CoryneRegNet.", "year": 2009, "url": "http://doi.org/10.1038/nprot.2009.81", "authors": "Baumbach J., Wittkop T., Kleindt CK., Tauch A.,", "journal": "Nat Protoc", "doi": "10.1038/nprot.2009.81", "created_at": "2021-09-30T08:22:23.085Z", "updated_at": "2021-09-30T08:22:23.085Z"}, {"id": 26, "pubmed_id": 19074493, "title": "Towards the integrated analysis, visualization and reconstruction of microbial gene regulatory networks.", "year": 2008, "url": "http://doi.org/10.1093/bib/bbn055", "authors": "Baumbach J., Tauch A., Rahmann S.,", "journal": "Brief. Bioinformatics", "doi": "10.1093/bib/bbn055", "created_at": "2021-09-30T08:22:23.179Z", "updated_at": "2021-09-30T08:22:23.179Z"}, {"id": 27, "pubmed_id": 17229482, "title": "CoryneRegNet 3.0--an interactive systems biology platform for the analysis of gene regulatory networks in corynebacteria and Escherichia coli.", "year": 2007, "url": "http://doi.org/10.1016/j.jbiotec.2006.12.012", "authors": "Baumbach J., Wittkop T., Rademacher K., Rahmann S., Brinkrolf K., Tauch A.,", "journal": "J. Biotechnol.", "doi": "10.1016/j.jbiotec.2006.12.012", "created_at": "2021-09-30T08:22:23.279Z", "updated_at": "2021-09-30T08:22:23.279Z"}, {"id": 28, "pubmed_id": 17986320, "title": "CoryneRegNet 4.0 - A reference database for corynebacterial gene regulatory networks.", "year": 2007, "url": "http://doi.org/10.1186/1471-2105-8-429", "authors": "Baumbach J.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-8-429", "created_at": "2021-09-30T08:22:23.371Z", "updated_at": "2021-09-30T08:22:23.371Z"}, {"id": 1193, "pubmed_id": 22080556, "title": "CoryneRegNet 6.0--Updated database content, new analysis methods and novel features focusing on community demands.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr883", "authors": "Pauling J,Rottger R,Tauch A,Azevedo V,Baumbach J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr883", "created_at": "2021-09-30T08:24:32.622Z", "updated_at": "2021-09-30T11:29:02.568Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2003", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:11.341Z", "metadata": {"doi": "10.25504/FAIRsharing.5949vn", "name": "ChemIDplus", "status": "ready", "contacts": [{"contact-name": "Florence Chang", "contact-email": "florence.chang@nih.gov"}], "homepage": "https://chem.nlm.nih.gov/chemidplus/", "identifier": 2003, "description": "ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", "abbreviation": "ChemIDplus", "access-points": [{"url": "https://chem.nlm.nih.gov/chemidsearch/api", "name": "API Documentation", "type": "REST"}], "support-links": [{"url": "tehip@teh.nlm.nih.gov", "name": "tehip@teh.nlm.nih.gov", "type": "Support email"}, {"url": "https://chem.nlm.nih.gov/chemidplus/faq.jsp", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://chem.nlm.nih.gov/chemidplus/jsp/chemidheavy/help.jsp", "name": "Help", "type": "Help documentation"}, {"url": "https://chem.nlm.nih.gov/chemidplus/jsp/toxnet/chemidplusfs.jsp", "name": "Fact Sheet", "type": "Help documentation"}], "year-creation": 2001, "data-processes": [{"url": "https://chem.nlm.nih.gov/chemidplus/jsp/chemidheavy/help.jsp#AdvancedSearch", "name": "Advanced Search", "type": "data access"}, {"url": "https://chem.nlm.nih.gov/chemidplus/jsp/chemidheavy/help.jsp#Browse", "name": "Browse", "type": "data access"}, {"url": "https://chem.nlm.nih.gov/chemidplus/jsp/chemidheavy/help.jsp#LiteSearch", "name": "Lite Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000469", "bsg-d000469"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Chemistry", "Biomedical Science"], "domains": ["Molecular structure", "Chemical structure", "Molecular entity", "Structure", "Chemical descriptor"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ChemIDplus", "abbreviation": "ChemIDplus", "url": "https://fairsharing.org/10.25504/FAIRsharing.5949vn", "doi": "10.25504/FAIRsharing.5949vn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", "publications": [{"id": 465, "pubmed_id": 11989279, "title": "ChemIDplus-super source for chemical and drug information.", "year": 2002, "url": "http://doi.org/10.1300/J115v21n01_04", "authors": "Tomasulo P.,", "journal": "Med Ref Serv Q", "doi": "10.1300/J115v21n01_04", "created_at": "2021-09-30T08:23:10.550Z", "updated_at": "2021-09-30T08:23:10.550Z"}], "licence-links": [{"licence-name": "NLM Copyright Information", "licence-id": 592, "link-id": 1984, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3028", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-17T10:48:49.000Z", "updated-at": "2021-12-06T10:47:30.717Z", "metadata": {"name": "Pakistan Petroleum Exploration & Production Data Repository", "status": "ready", "homepage": "http://www.ppepdr.net/", "identifier": 3028, "description": "The PPEPDR contains information regarding the availability and security of sustainable supply of oil and gas for economic development and strategic requirements of Pakistan and to coordinate development of natural resources of energy and minerals.", "abbreviation": "PPEPDR", "support-links": [{"url": "http://www.ppepdr.net/Contact.html", "name": "Contact Form", "type": "Contact form"}], "year-creation": 2001, "data-processes": [{"url": "http://www.ppepdr.net/Subscribe.html", "name": "Suscribe", "type": "data access"}, {"url": "http://www.ppepdr.net/demo.asp", "name": "Data review request", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011011", "name": "re3data:r3d100011011", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001536", "bsg-d001536"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Engineering Science", "Earth Science", "Mineralogy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Gas", "Natural Resources, Earth and Environment", "Petrology", "Seismology"], "countries": ["Pakistan"], "name": "FAIRsharing record for: Pakistan Petroleum Exploration & Production Data Repository", "abbreviation": "PPEPDR", "url": "https://fairsharing.org/fairsharing_records/3028", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PPEPDR contains information regarding the availability and security of sustainable supply of oil and gas for economic development and strategic requirements of Pakistan and to coordinate development of natural resources of energy and minerals.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1596", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:52.943Z", "metadata": {"doi": "10.25504/FAIRsharing.dz1xxr", "name": "Integrative and Conjugative Elements in Bacteria", "status": "ready", "contacts": [{"contact-name": "Hong-Yu OU", "contact-email": "hyou@sjtu.edu.cn", "contact-orcid": "0000-0001-9439-1660"}], "homepage": "http://db-mml.sjtu.edu.cn/ICEberg/", "identifier": 1596, "description": "A web-based resource for integrative and conjugative elements (ICEs) found in bacteria. It collates available data from experimental and bioinformatics analyses, and literature, about known and putative ICEs in bacteria as a PostgreSQL-based database called ICEberg. This database contains detailed information on all archived ICEs and the genes carried by each entity, including unique identifiers, species details and hyperlink-paths to other public databases, like NCBI, UniprotKB and KEGG.", "abbreviation": "ICEberg", "support-links": [{"url": "http://db-mml.sjtu.edu.cn/ICEberg/contact.html", "type": "Contact form"}, {"url": "http://db-mml.sjtu.edu.cn/ICEberg/Introduction.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://db-mml.sjtu.edu.cn/ICEberg/search.php", "name": "web interface", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/ICEberg/download.html", "name": "file download", "type": "data access"}, {"url": "http://db-mml.sjtu.edu.cn/ICEberg/submission.php", "name": "Submission", "type": "data curation"}], "associated-tools": [{"url": "http://blast.wustl.edu", "name": "BLAST 2.0"}, {"url": "http://gmod.org/wiki/Ggb/", "name": "GBrowse"}, {"url": "https://www.postgresql.org/about/", "name": "PostgreSQL"}, {"url": "http://www.drive5.com/muscle/", "name": "MUSCLE"}]}, "legacy-ids": ["biodbcore-000051", "bsg-d000051"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Conjugative transposon", "Genomic island", "Mobile genetic element"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Integrative and Conjugative Elements in Bacteria", "abbreviation": "ICEberg", "url": "https://fairsharing.org/10.25504/FAIRsharing.dz1xxr", "doi": "10.25504/FAIRsharing.dz1xxr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A web-based resource for integrative and conjugative elements (ICEs) found in bacteria. It collates available data from experimental and bioinformatics analyses, and literature, about known and putative ICEs in bacteria as a PostgreSQL-based database called ICEberg. This database contains detailed information on all archived ICEs and the genes carried by each entity, including unique identifiers, species details and hyperlink-paths to other public databases, like NCBI, UniprotKB and KEGG.", "publications": [{"id": 745, "pubmed_id": 22009673, "title": "ICEberg: a web-based resource for integrative and conjugative elements found in Bacteria.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr846", "authors": "Bi D,Xu Z,Harrison EM,Tai C,Wei Y,He X,Jia S,Deng Z,Rajakumar K,Ou HY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr846", "created_at": "2021-09-30T08:23:42.042Z", "updated_at": "2021-09-30T11:28:49.508Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1712", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.491Z", "metadata": {"doi": "10.25504/FAIRsharing.gwyrzg", "name": "Aptamer Base", "status": "deprecated", "homepage": "http://aptamerbase.semanticscience.org/", "identifier": 1712, "description": "Aptamer Base, a database that provides detailed, structured information about the experimental conditions under which aptamers were selected and their binding affinity quantified. The open collaborative nature of the Aptamer Base provides the community with a unique resource that can be updated and curated in a decentralized manner, thereby accommodating the ever evolving field of aptamer research. The Aptamer Base homepage is currently unavailable, and until we have more information from the resource, this record has been marked as uncertain.", "abbreviation": "Aptamer Base", "support-links": [{"url": "http://aptamerbase.semanticscience.org/?q=contact", "type": "Contact form"}, {"url": "http://aptamerbase.semanticscience.org/?q=about", "type": "Help documentation"}], "year-creation": 2011, "deprecation-date": "2021-9-17", "deprecation-reason": "The database has been deprecated and the data can now be downloaded at https://github.com/micheldumontier/aptamerbase"}, "legacy-ids": ["biodbcore-000169", "bsg-d000169"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Aptamer Base", "abbreviation": "Aptamer Base", "url": "https://fairsharing.org/10.25504/FAIRsharing.gwyrzg", "doi": "10.25504/FAIRsharing.gwyrzg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Aptamer Base, a database that provides detailed, structured information about the experimental conditions under which aptamers were selected and their binding affinity quantified. The open collaborative nature of the Aptamer Base provides the community with a unique resource that can be updated and curated in a decentralized manner, thereby accommodating the ever evolving field of aptamer research. The Aptamer Base homepage is currently unavailable, and until we have more information from the resource, this record has been marked as uncertain.", "publications": [{"id": 228, "pubmed_id": 22434840, "title": "Aptamer Base: a collaborative knowledge base to describe aptamers and SELEX experiments.", "year": 2012, "url": "http://doi.org/10.1093/database/bas006", "authors": "Cruz-Toledo J., McKeague M., Zhang X., Giamberardino A., McConnell E., Francis T., DeRosa MC., Dumontier M.,", "journal": "Database (Oxford)", "doi": "10.1093/database/bas006", "created_at": "2021-09-30T08:22:44.616Z", "updated_at": "2021-09-30T08:22:44.616Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2202", "type": "fairsharing-records", "attributes": {"created-at": "2015-04-29T19:59:03.000Z", "updated-at": "2021-11-24T13:14:48.047Z", "metadata": {"doi": "10.25504/FAIRsharing.ejeqy", "name": "Human Connectome Project", "status": "ready", "homepage": "http://www.humanconnectome.org", "identifier": 2202, "description": "The Human Connectome Project (HCP) houses and distributes public connectome study data for a series of studies that focus on the connections within the human brain.", "abbreviation": "HCP", "support-links": [{"url": "https://www.humanconnectome.org/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.humanconnectome.org/tutorials", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://groups.google.com/a/humanconnectome.org/d/forum/hcp-announce", "name": "HCP Announce", "type": "Mailing list"}, {"url": "https://wiki.humanconnectome.org/", "name": "HCP Wiki", "type": "Help documentation"}, {"url": "https://www.humanconnectome.org/about-ccf", "name": "CCF Overview", "type": "Help documentation"}, {"url": "https://twitter.com/HumanConnectome", "name": "@HumanConnectome", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://www.humanconnectome.org/study/hcp-young-adult", "name": "Young Adult Study", "type": "data access"}, {"url": "https://www.humanconnectome.org/lifespan-studies", "name": "Lifespan Studies", "type": "data access"}, {"url": "https://db.humanconnectome.org", "name": "ConnectomeDB (login required)", "type": "data access"}, {"url": "https://www.humanconnectome.org/disease-studies", "name": "Disease Studies", "type": "data access"}, {"url": "https://www.humanconnectome.org/related-studies", "name": "Related Studies", "type": "data access"}, {"url": "https://nda.nih.gov/general-query.html?q=query=featured-datasets:Human%20Connectome%20Projects%20(HCP)", "name": "Browse & Query with NDA (no login required)", "type": "data access"}], "associated-tools": [{"url": "https://www.humanconnectome.org/software/connectome-workbench", "name": "Connectome Workbench 1.0"}]}, "legacy-ids": ["biodbcore-000676", "bsg-d000676"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurobiology", "Life Science", "Biomedical Science"], "domains": ["Brain", "Brain imaging"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Neuroinformatics"], "countries": ["United Kingdom", "United States", "Italy", "Netherlands", "Germany"], "name": "FAIRsharing record for: Human Connectome Project", "abbreviation": "HCP", "url": "https://fairsharing.org/10.25504/FAIRsharing.ejeqy", "doi": "10.25504/FAIRsharing.ejeqy", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Connectome Project (HCP) houses and distributes public connectome study data for a series of studies that focus on the connections within the human brain.", "publications": [{"id": 2233, "pubmed_id": 21743807, "title": "Informatics and data mining tools and strategies for the human connectome project", "year": 2011, "url": "http://doi.org/10.3389/fninf.2011.00004", "authors": "Marcus DS, Harwell J, Olsen T, Hodge M, Glasser MF, Prior F, Jenkinson M, Laumann T, Curtiss SW, Van Essen DC", "journal": "Front Neuroinform", "doi": "10.3389/fninf.2011.00004", "created_at": "2021-09-30T08:26:31.642Z", "updated_at": "2021-09-30T08:26:31.642Z"}, {"id": 2677, "pubmed_id": 22366334, "title": "The Human Connectome Project: a data acquisition perspective.", "year": 2012, "url": "http://doi.org/10.1016/j.neuroimage.2012.02.018", "authors": "Van Essen DC, Ugurbil K, Auerbach E, Barch D, Behrens TE, et al.", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2012.02.018", "created_at": "2021-09-30T08:27:28.693Z", "updated_at": "2021-09-30T08:27:28.693Z"}, {"id": 2678, "pubmed_id": 25934470, "title": "ConnectomeDB - Sharing human brain connectivity data", "year": 2015, "url": "http://doi.org/S1053-8119(15)00346-8", "authors": "Hodge MR, Horton W, Brown T, Herrick R, Olsen T, Hileman ME, McKay M, Archie KA, Cler E, Harms MP, Burgess GC, Glasser MF, Elam JS, Curtiss SW, Barch DM, Oostenveld R, Larson-Prior LJ, Ugurbil K, Van Essen DC, Marcus DS", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2015.04.046", "created_at": "2021-09-30T08:27:28.863Z", "updated_at": "2021-09-30T08:27:28.863Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 2141, "relation": "undefined"}, {"licence-name": "HCP Data Use Terms", "licence-id": 382, "link-id": 2142, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2122", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:13.087Z", "metadata": {"doi": "10.25504/FAIRsharing.qrv60a", "name": "Saccharomyces cerevisiae Transcription Factor Database", "status": "ready", "contacts": [{"contact-name": "Gary D. Stormo", "contact-email": "stormo@wustl.edu"}], "homepage": "http://stormo.wustl.edu/ScerTF/", "identifier": 2122, "description": "ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", "abbreviation": "ScerTF", "support-links": [{"url": "ScerTF@genetics.wustl.edu", "type": "Support email"}, {"url": "http://stormo.wustl.edu/ScerTF/about/", "type": "Help documentation"}], "data-processes": [{"url": "http://stormo.wustl.edu/ScerTF/download/", "name": "Download", "type": "data access"}, {"url": "http://stormo.wustl.edu/ScerTF/", "name": "search", "type": "data access"}, {"url": "http://stormo.wustl.edu/ScerTF/browse/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000592", "bsg-d000592"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Protein domain", "Nucleotide", "Transcription factor", "Sequence", "Binding site"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Saccharomyces cerevisiae Transcription Factor Database", "abbreviation": "ScerTF", "url": "https://fairsharing.org/10.25504/FAIRsharing.qrv60a", "doi": "10.25504/FAIRsharing.qrv60a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", "publications": [{"id": 1811, "pubmed_id": 22140105, "title": "ScerTF: a comprehensive database of benchmarked position weight matrices for Saccharomyces species.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1180", "authors": "Spivak AT., Stormo GD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1180", "created_at": "2021-09-30T08:25:43.271Z", "updated_at": "2021-09-30T08:25:43.271Z"}], "licence-links": [{"licence-name": "ScerTF Attribution required", "licence-id": 729, "link-id": 2215, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3116", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-10T15:15:09.000Z", "updated-at": "2021-11-24T13:20:09.221Z", "metadata": {"doi": "10.25504/FAIRsharing.QMGzTm", "name": "CRISPRCasdb", "status": "ready", "contacts": [{"contact-name": "Christine Pourcel", "contact-email": "christine.pourcel@u-psud.fr"}], "homepage": "https://crisprcas.i2bc.paris-saclay.fr/", "citations": [{"doi": "10.1093/nar/gkz915", "pubmed-id": 31624845, "publication-id": 3031}], "identifier": 3116, "description": "CRISPRCasdb acts as a gateway to a publicly accessible database and software to enable the easy detection of CRISPR sequences in locally-produced data and the consultation of CRISPR sequence data present in the database. It also gives information on the presence of CRISPR-associated (cas) genes when they have been annotated as such.", "abbreviation": "CRISPRCasdb", "support-links": [{"url": "https://crisprcas.i2bc.paris-saclay.fr/Home/About", "name": "About page", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://crisprcas.i2bc.paris-saclay.fr/Home/Download", "name": "Download", "type": "data access"}, {"url": "https://crisprcas.i2bc.paris-saclay.fr/CrisprCasFinder/Index", "name": "Web Interface", "type": "data access"}, {"url": "https://crisprcas.i2bc.paris-saclay.fr/CrisprCasFinder/Index", "name": "Data submission", "type": "data curation"}, {"url": "https://crisprcas.i2bc.paris-saclay.fr/MainDb/StrainList", "name": "Browse data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001626", "bsg-d001626"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["DNA sequence data", "Annotation", "Sequence", "CRISPR"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: CRISPRCasdb", "abbreviation": "CRISPRCasdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.QMGzTm", "doi": "10.25504/FAIRsharing.QMGzTm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CRISPRCasdb acts as a gateway to a publicly accessible database and software to enable the easy detection of CRISPR sequences in locally-produced data and the consultation of CRISPR sequence data present in the database. It also gives information on the presence of CRISPR-associated (cas) genes when they have been annotated as such.", "publications": [{"id": 2044, "pubmed_id": 17537822, "title": "CRISPRFinder: a web tool to identify clustered regularly interspaced short palindromic repeats.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm360", "authors": "Grissa I,Vergnaud G,Pourcel C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm360", "created_at": "2021-09-30T08:26:10.297Z", "updated_at": "2021-09-30T11:29:27.245Z"}, {"id": 3029, "pubmed_id": 29790974, "title": "CRISPRCasFinder, an update of CRISRFinder, includes a portable version, enhanced performance and integrates search for Cas proteins.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky425", "authors": "Couvin D,Bernheim A,Toffano-Nioche C,Touchon M,Michalik J,Neron B,Rocha EPC,Vergnaud G,Gautheret D,Pourcel C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky425", "created_at": "2021-09-30T08:28:13.309Z", "updated_at": "2021-09-30T11:29:49.762Z"}, {"id": 3030, "pubmed_id": 25330359, "title": "MacSyFinder: a program to mine genomes for molecular systems with an application to CRISPR-Cas systems.", "year": 2014, "url": "http://doi.org/10.1371/journal.pone.0110726", "authors": "Abby SS,Neron B,Menager H,Touchon M,Rocha EP", "journal": "PLoS One", "doi": "10.1371/journal.pone.0110726", "created_at": "2021-09-30T08:28:13.427Z", "updated_at": "2021-09-30T08:28:13.427Z"}, {"id": 3031, "pubmed_id": 31624845, "title": "CRISPRCasdb a successor of CRISPRdb containing CRISPR arrays and cas genes from complete genome sequences, and tools to download and query lists of repeats and spacers.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz915", "authors": "Pourcel C,Touchon M,Villeriot N,Vernadet JP,Couvin D,Toffano-Nioche C,Vergnaud G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz915", "created_at": "2021-09-30T08:28:13.538Z", "updated_at": "2021-09-30T11:29:49.854Z"}], "licence-links": [{"licence-name": "CRISPRcasDB terms of use", "licence-id": 200, "link-id": 990, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2143", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.979Z", "metadata": {"doi": "10.25504/FAIRsharing.f0bxfg", "name": "miRTarBase", "status": "deprecated", "contacts": [{"contact-name": "Sheng-Da Hsu", "contact-email": "ken.sd.hsu@gmail.com", "contact-orcid": "0000-0002-8214-1696"}], "homepage": "http://miRTarBase.mbc.nctu.edu.tw", "identifier": 2143, "description": "As a database, miRTarBase has accumulated more than fifty thousand miRNA-target interactions (MTIs), which are collected by manually surveying pertinent literature after data mining of the text systematically to filter research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments. While containing the largest amount of validated MTIs, the miRTarBase provides the most updated collection by comparing with other similar, previously developed databases.", "abbreviation": "miRTarBase", "support-links": [{"url": "ken.sd.hsu@gmail.com", "type": "Support email"}, {"url": "http://mirtarbase.mbc.nctu.edu.tw/php/help.php", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"name": "bimonthly (every two months)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://mirtarbase.mbc.nctu.edu.tw/php/browse.php", "name": "browse", "type": "data access"}, {"url": "http://mirtarbase.mbc.nctu.edu.tw/php/download.php", "name": "download", "type": "data access"}, {"url": "http://mirtarbase.mbc.nctu.edu.tw/php/search.php", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000615", "bsg-d000615"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene silencing by miRNA (microRNA)", "Micro RNA"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: miRTarBase", "abbreviation": "miRTarBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.f0bxfg", "doi": "10.25504/FAIRsharing.f0bxfg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: As a database, miRTarBase has accumulated more than fifty thousand miRNA-target interactions (MTIs), which are collected by manually surveying pertinent literature after data mining of the text systematically to filter research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments. While containing the largest amount of validated MTIs, the miRTarBase provides the most updated collection by comparing with other similar, previously developed databases.", "publications": [{"id": 1072, "pubmed_id": 21071411, "title": "miRTarBase: a database curates experimentally validated microRNA-target interactions.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1107", "authors": "Hsu SD, Lin FM, Wu WY, Liang C, Huang WC, Chan WL, Tsai WT, Chen GZ, Lee CJ, Chiu CM, Chien CH, Wu MC, Huang CY, Tsou AP, Huang HD.", "journal": "Nucleic Acid Res. Database Issue", "doi": "10.1093/nar/gkq1107", "created_at": "2021-09-30T08:24:18.705Z", "updated_at": "2021-09-30T11:28:40.992Z"}], "licence-links": [{"licence-name": "MIRTAR is free for academic and non-profit use", "licence-id": 516, "link-id": 825, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2182", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:28.641Z", "metadata": {"doi": "10.25504/FAIRsharing.2wb6fv", "name": "The ribosomal RNA operon copy number database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "rrndbsupport@umich.edu"}], "homepage": "http://rrndb.umms.med.umich.edu/", "identifier": 2182, "description": "The ribosomal RNA operon copy number database is a publicly available, curated resource for ribosomal operon (rrn) copy number information for Bacteria and Archaea.", "abbreviation": "rrnDB", "support-links": [{"url": "rrndbsupport@umich.edu", "type": "Support email"}], "year-creation": 1999, "data-processes": [{"url": "http://rrndb.umms.med.umich.edu/search/", "name": "search", "type": "data access"}, {"url": "http://rrndb.umms.med.umich.edu/estimate", "name": "analyze", "type": "data access"}]}, "legacy-ids": ["biodbcore-000656", "bsg-d000656"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Nucleic acid sequence", "Ribosomal RNA", "Operon", "Gene", "Genome"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The ribosomal RNA operon copy number database", "abbreviation": "rrnDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.2wb6fv", "doi": "10.25504/FAIRsharing.2wb6fv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ribosomal RNA operon copy number database is a publicly available, curated resource for ribosomal operon (rrn) copy number information for Bacteria and Archaea.", "publications": [{"id": 706, "pubmed_id": 25414355, "title": "rrnDB: Improved tools for interpreting rRNA gene abundance in Bacteria and Archaea and a new foundation for future development", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1201", "authors": "Stoddard S.F, Smith B.J., Hein R., Roller B.R.K. and Schmidt T.M.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1201", "created_at": "2021-09-30T08:23:37.836Z", "updated_at": "2021-09-30T08:23:37.836Z"}, {"id": 1128, "pubmed_id": 11125085, "title": "rrndb: the Ribosomal RNA Operon Copy Number Database.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.181", "authors": "Klappenbach JA,Saxman PR,Cole JR,Schmidt TM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/29.1.181", "created_at": "2021-09-30T08:24:25.187Z", "updated_at": "2021-09-30T11:28:59.842Z"}, {"id": 1197, "pubmed_id": 18948294, "title": "rrnDB: documenting the number of rRNA and tRNA genes in bacteria and archaea.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn689", "authors": "Lee ZM,Bussema C 3rd,Schmidt TM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn689", "created_at": "2021-09-30T08:24:33.339Z", "updated_at": "2021-09-30T11:29:02.834Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1655", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:33.182Z", "metadata": {"doi": "10.25504/FAIRsharing.z6rbe3", "name": "BacMap", "status": "ready", "homepage": "http://bacmap.wishartlab.com", "identifier": 1655, "description": "BacMap is a picture atlas of annotated bacterial genomes. It is an interactive visual database containing hundreds of fully labeled, zoomable, and searchable maps of bacterial genomes.", "abbreviation": "BacMap", "support-links": [{"url": "http://feedback.wishartlab.com/?site=bacmap", "type": "Contact form"}, {"url": "http://bacmap.wishartlab.com/help", "type": "Help documentation"}, {"url": "http://bacmap.wishartlab.com/about", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"name": "monthly release", "type": "data release"}, {"name": "web interface", "type": "data access"}, {"name": "versioning by publication frequency", "type": "data versioning"}, {"name": "computer-aided predictions", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}], "associated-tools": [{"url": "http://bacmap.wishartlab.com/blast/new", "name": "BLAST"}, {"url": "http://bacmap.wishartlab.com/", "name": "text query"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012724", "name": "re3data:r3d100012724", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006988", "name": "SciCrunch:RRID:SCR_006988", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000111", "bsg-d000111"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Statistics", "Life Science"], "domains": ["Genome map", "Protein structure", "Taxonomic classification", "Gene name", "DNA sequence data", "Free text", "Function analysis", "Image", "Phenotype", "Amino acid sequence", "Prophage", "Genome"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": ["Physical properties", "RNA map"], "countries": ["Canada"], "name": "FAIRsharing record for: BacMap", "abbreviation": "BacMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.z6rbe3", "doi": "10.25504/FAIRsharing.z6rbe3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BacMap is a picture atlas of annotated bacterial genomes. It is an interactive visual database containing hundreds of fully labeled, zoomable, and searchable maps of bacterial genomes.", "publications": [{"id": 160, "pubmed_id": 15608206, "title": "BacMap: an interactive picture atlas of annotated bacterial genomes.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki075", "authors": "Stothard P., Van Domselaar G., Shrivastava S., Guo A., O'Neill B., Cruz J., Ellison M., Wishart DS.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki075", "created_at": "2021-09-30T08:22:37.631Z", "updated_at": "2021-09-30T08:22:37.631Z"}, {"id": 1343, "pubmed_id": 22135301, "title": "BacMap: an up-to-date electronic atlas of annotated bacterial genomes.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1105", "authors": "Cruz J., Liu Y., Liang Y., Zhou Y., Wilson M., Dennis JJ., Stothard P., Van Domselaar G., Wishart DS.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1105", "created_at": "2021-09-30T08:24:50.279Z", "updated_at": "2021-09-30T08:24:50.279Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 779, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2839", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-23T07:48:56.000Z", "updated-at": "2021-12-06T10:48:57.195Z", "metadata": {"doi": "10.25504/FAIRsharing.ohbpNw", "name": " Comprehensive Resource of Mammalian protein complexes", "status": "ready", "contacts": [{"contact-name": "Andreas Ruepp", "contact-email": "andreas.ruepp@helmholtz-muenchen.de", "contact-orcid": "0000-0003-1705-3515"}], "homepage": "https://mips.helmholtz-muenchen.de/corum/", "citations": [{"doi": "10.1093/nar/gky973", "pubmed-id": 30357367, "publication-id": 2586}], "identifier": 2839, "description": "CORUM is a database that provides a manually curated repository of experimentally characterized protein complexes from mammalian organisms, mainly human (64%), mouse (16%) and rat (12%). Each protein complex is described by a protein complex name, subunit composition, function as well as the literature reference that characterizes the respective protein complex.", "abbreviation": "CORUM", "support-links": [{"url": "http://mips.helmholtz-muenchen.de/corum/#about", "name": "About CORUM", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://mips.helmholtz-muenchen.de/corum/#browse", "name": "Browse", "type": "data access"}, {"url": "http://mips.helmholtz-muenchen.de/corum/#download", "name": "Download", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011272", "name": "re3data:r3d100011272", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002254", "name": "SciCrunch:RRID:SCR_002254", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001340", "bsg-d001340"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Biology"], "domains": ["Functional domain", "Molecular function", "Protein-containing complex"], "taxonomies": ["Mammalia"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Comprehensive Resource of Mammalian protein complexes", "abbreviation": "CORUM", "url": "https://fairsharing.org/10.25504/FAIRsharing.ohbpNw", "doi": "10.25504/FAIRsharing.ohbpNw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CORUM is a database that provides a manually curated repository of experimentally characterized protein complexes from mammalian organisms, mainly human (64%), mouse (16%) and rat (12%). Each protein complex is described by a protein complex name, subunit composition, function as well as the literature reference that characterizes the respective protein complex.", "publications": [{"id": 2586, "pubmed_id": 30357367, "title": "CORUM: the comprehensive resource of mammalian protein complexes-2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky973", "authors": "Giurgiu M, Reinhard J, Brauner B, Dunger-Kaltenbach I, Fobo G, Frishman G, Montrone C, Ruepp A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky973", "created_at": "2021-09-30T08:27:17.161Z", "updated_at": "2021-09-30T08:27:17.161Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2564", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-06T11:39:23.000Z", "updated-at": "2021-11-24T13:17:17.925Z", "metadata": {"doi": "10.25504/FAIRsharing.pn372d", "name": "FlyGlycoDB", "status": "deprecated", "contacts": [{"contact-name": "Kiyoshi Tadahisa", "contact-email": "e0656112@soka.ac.jp"}], "homepage": "http://fly.glycoinfo.org/", "identifier": 2564, "description": "The glycobiology of Drosophila has been extensively studied in recent years, and much information has accumulated regarding glycan-related genes and proteins in Drosophila. As a database for glycan-related genes in Drosophila, FlyGlycoDB provides specific access to this information.", "abbreviation": "FlyGlycoDB", "access-points": [{"url": "http://www.jsbi.org/pdfs/journal1/GIW09/Poster/GIW09P118.pdf", "name": "Query Summaries", "type": "REST"}], "support-links": [{"url": "http://www.jsbi.org/pdfs/journal1/GIW09/Poster/GIW09P118.pdf", "name": "Poster Summary", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"name": "Text Search and Data Filtering", "type": "data access"}], "deprecation-date": "2021-9-23", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001047", "bsg-d001047"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Protein", "Gene"], "taxonomies": ["Drosophila"], "user-defined-tags": ["Glycan Annotation", "Glycan sequences"], "countries": ["Japan"], "name": "FAIRsharing record for: FlyGlycoDB", "abbreviation": "FlyGlycoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pn372d", "doi": "10.25504/FAIRsharing.pn372d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The glycobiology of Drosophila has been extensively studied in recent years, and much information has accumulated regarding glycan-related genes and proteins in Drosophila. As a database for glycan-related genes in Drosophila, FlyGlycoDB provides specific access to this information.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1171, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1797", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.227Z", "metadata": {"doi": "10.25504/FAIRsharing.29qx34", "name": "BloodExpress", "status": "deprecated", "contacts": [{"contact-name": "Diego Miranda-Saavedra", "contact-email": "dm435@cam.ac.uk"}], "homepage": "http://hscl.cimr.cam.ac.uk/bloodexpress/", "identifier": 1797, "description": "BloodExpress is a database of gene expression in mouse haematopoiesis has 271 individual microarray experiments derived from 15 distinct studies done on most characterised mouse blood cell types. Gene expression information has been discretised to absent/present/unknown calls.", "abbreviation": "BloodExpress", "year-creation": 2007, "data-processes": [{"url": "http://hscl.cimr.cam.ac.uk/bloodexpress/download.html", "name": "Download", "type": "data access"}, {"url": "http://hscl.cimr.cam.ac.uk/bloodexpress/genes.html", "name": "search", "type": "data access"}], "deprecation-date": "2020-11-19", "deprecation-reason": "This resource is no longer maintained, and its homepage is now broken."}, "legacy-ids": ["biodbcore-000257", "bsg-d000257"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Expression data", "Cell", "Stem cell", "Gene expression", "Hematopoiesis", "DNA microarray", "Blood"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: BloodExpress", "abbreviation": "BloodExpress", "url": "https://fairsharing.org/10.25504/FAIRsharing.29qx34", "doi": "10.25504/FAIRsharing.29qx34", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BloodExpress is a database of gene expression in mouse haematopoiesis has 271 individual microarray experiments derived from 15 distinct studies done on most characterised mouse blood cell types. Gene expression information has been discretised to absent/present/unknown calls.", "publications": [{"id": 1015, "pubmed_id": 18987008, "title": "BloodExpress: a database of gene expression in mouse haematopoiesis.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn854", "authors": "Miranda-Saavedra D,De S,Trotter MW,Teichmann SA,Gottgens B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn854", "created_at": "2021-09-30T08:24:12.378Z", "updated_at": "2021-09-30T11:28:56.809Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1788", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:02.735Z", "metadata": {"doi": "10.25504/FAIRsharing.ssx7a2", "name": "Comparative Fungal Genomics Platform", "status": "ready", "contacts": [{"contact-name": "Yong-Hwan Lee", "contact-email": "yonglee@snu.ac.kr"}], "homepage": "http://cfgp.snu.ac.kr", "identifier": 1788, "description": "The CFGP (Comparative Fungal Genomics Platform) was designed for comparative genomics projects with diverse fungal genomes.", "abbreviation": "CFGP", "support-links": [{"url": "http://cfgp.riceblast.snu.ac.kr/guide.php", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://cfgp.riceblast.snu.ac.kr/paper.php", "name": "Articles browser", "type": "data access"}, {"url": "http://cfgp.riceblast.snu.ac.kr/interpro.php", "name": "Interpro browser", "type": "data access"}], "associated-tools": [{"url": "http://cfgp.riceblast.snu.ac.kr/blast.php?a=search", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000248", "bsg-d000248"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Genome"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["South Korea"], "name": "FAIRsharing record for: Comparative Fungal Genomics Platform", "abbreviation": "CFGP", "url": "https://fairsharing.org/10.25504/FAIRsharing.ssx7a2", "doi": "10.25504/FAIRsharing.ssx7a2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The CFGP (Comparative Fungal Genomics Platform) was designed for comparative genomics projects with diverse fungal genomes.", "publications": [{"id": 314, "pubmed_id": 17947331, "title": "CFGP: a web-based, comparative fungal genomics platform.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm758", "authors": "Park J., Park B., Jung K., Jang S., Yu K., Choi J., Kong S., Park J., Kim S., Kim H., Kim S., Kim JF., Blair JE., Lee K., Kang S., Lee YH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm758", "created_at": "2021-09-30T08:22:53.682Z", "updated_at": "2021-09-30T08:22:53.682Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1745", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:29.966Z", "metadata": {"doi": "10.25504/FAIRsharing.efp5v2", "name": "Animal Genome Size Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "database@genomesize.com"}], "homepage": "http://www.genomesize.com", "identifier": 1745, "description": "A comprehensive catalogue of animal genome size data where haploid DNA contents (C-values, in picograms) are currently available for 4972 species (3231 vertebrates and 1741 non-vertebrates) based on 6518 records from 669 published sources.", "abbreviation": "AGSD", "support-links": [{"url": "http://www.genomesize.com/faq.php", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://www.genomesize.com/submit_data.php", "name": "submit", "type": "data access"}, {"url": "http://www.genomesize.com/search.php", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012517", "name": "re3data:r3d100012517", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007551", "name": "SciCrunch:RRID:SCR_007551", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000203", "bsg-d000203"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Genome"], "taxonomies": ["Metazoa"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Animal Genome Size Database", "abbreviation": "AGSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.efp5v2", "doi": "10.25504/FAIRsharing.efp5v2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A comprehensive catalogue of animal genome size data where haploid DNA contents (C-values, in picograms) are currently available for 4972 species (3231 vertebrates and 1741 non-vertebrates) based on 6518 records from 669 published sources.", "publications": [], "licence-links": [{"licence-name": "AGSD Academic use, No commercial use, no derivatives without permission", "licence-id": 21, "link-id": 2309, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2599", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-14T12:55:07.000Z", "updated-at": "2022-02-08T10:28:17.577Z", "metadata": {"doi": "10.25504/FAIRsharing.750063", "name": "SHOGoiN", "status": "ready", "contacts": [{"contact-name": "SHOGoiN Administrators", "contact-email": "shogoin-q@cira.kyoto-u.ac.jp"}], "homepage": "http://stemcellinformatics.org/", "identifier": 2599, "description": "SHOGoiN Cell Database is a repository for accumulating and integrating diverse human cell information to support a wide range of cell research at the single-cell resolution. It is an extension of the human cell database, CELLPEDIA. The database consists of several modules that store cell lineage maps, transcriptome, methylome, cell conversions, cell type markers, and cell images with morphology data curated from public as well as contracted resources, based on sophisticated cell taxonomy.", "abbreviation": "SHOGoiN", "support-links": [{"url": "http://stemcellinformatics.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://stemcellinformatics.org/manuals", "name": "User Guide", "type": "Help documentation"}, {"url": "http://stemcellinformatics.org/release_notes", "name": "Release Notes", "type": "Help documentation"}, {"url": "http://stemcellinformatics.org/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://cellblast.stemcellinformatics.org/cgi-bin/index.cgi?page=2", "name": "CELLBLAST", "type": "data access"}, {"url": "https://stemcellinformatics.org/data_downloads", "name": "Download", "type": "data access"}, {"url": "https://stemcellinformatics.org/transcriptome/sample/single", "name": "Browse Cell Transcriptome", "type": "data access"}, {"url": "https://stemcellinformatics.org/methylome/sample/single", "name": "Browse Cell Methylome", "type": "data access"}, {"url": "https://stemcellinformatics.org/cell_conversion/differentiation", "name": "Browse Cell Lineage", "type": "data access"}, {"url": "https://stemcellinformatics.org/cell_marker/literatures", "name": "Browse Cell Marker From Literatures", "type": "data access"}], "associated-tools": [{"url": "http://gseabot.stemcellinformatics.org/", "name": "GSEABoT (Gene Set Enrichment Analysis Based on Taxonomy)"}]}, "legacy-ids": ["biodbcore-001082", "bsg-d001082"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Transcriptomics"], "domains": ["Cell", "Stem cell", "Cell morphology", "Methylation", "Image"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus", "Strongylocentrotus purpuratus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: SHOGoiN", "abbreviation": "SHOGoiN", "url": "https://fairsharing.org/10.25504/FAIRsharing.750063", "doi": "10.25504/FAIRsharing.750063", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SHOGoiN Cell Database is a repository for accumulating and integrating diverse human cell information to support a wide range of cell research at the single-cell resolution. It is an extension of the human cell database, CELLPEDIA. The database consists of several modules that store cell lineage maps, transcriptome, methylome, cell conversions, cell type markers, and cell images with morphology data curated from public as well as contracted resources, based on sophisticated cell taxonomy.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2764", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-29T17:30:27.000Z", "updated-at": "2022-02-08T10:39:07.286Z", "metadata": {"doi": "10.25504/FAIRsharing.911dc7", "name": "LncBook", "status": "ready", "contacts": [{"contact-name": "Lina Ma", "contact-email": "malina@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/lncbook/index", "citations": [{"doi": "10.1093/nar/gky960", "pubmed-id": 30329098, "publication-id": 761}], "identifier": 2764, "description": "LncBook is a curated knowledgebase of human lncRNAs that features a comprehensive collection of human lncRNAs and systematic curation of lncRNAs by multi-omics data integration, functional annotation and disease association. It integrates multi-omics data from expression, methylation, genome variation and lncRNA-miRNA interaction. A core component of LncBook is the community-curated LncRNAWiki portal, which a wiki-based, publicly editable and open-content platform for community curation of human long non-coding RNAs (lncRNAs).", "abbreviation": "LncBook", "support-links": [{"url": "https://bigd.big.ac.cn/lncbook/contact", "name": "Contact page", "type": "Contact form"}, {"url": "https://bigd.big.ac.cn/lncbook/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/lncbook/statistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://bigd.big.ac.cn/lncbook/index", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lncbook/blast", "name": "Blast", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lncbook/classification", "name": "Classification", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lncbook/idconvert", "name": "Conversion", "type": "data access"}, {"url": "ftp://download.big.ac.cn/lncbook", "name": "Download", "type": "data release"}, {"url": "https://bigd.big.ac.cn/lncbook/disease", "name": "Search Diseases", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lncbook/function", "name": "Search Functions", "type": "data access"}, {"url": "https://bigd.big.ac.cn/lncbook/lncrnas", "name": "Browse / Search lncRNAs", "type": "data access"}, {"url": "http://lncrna.big.ac.cn/index.php/Main_Page", "name": "LncRNAWiki: Community Curation", "type": "data curation"}], "associated-tools": [{"url": "http://bigd.big.ac.cn/lgc", "name": "LGC 1.0"}]}, "legacy-ids": ["biodbcore-001262", "bsg-d001262"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Omics"], "domains": ["Expression data", "Nucleic acid sequence", "Gene functional annotation", "Gene expression", "Methylation", "Long non-coding ribonucleic acid", "Curated information", "Micro RNA", "Single nucleotide polymorphism", "Long non-coding RNA", "Gene-disease association", "Biocuration"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: LncBook", "abbreviation": "LncBook", "url": "https://fairsharing.org/10.25504/FAIRsharing.911dc7", "doi": "10.25504/FAIRsharing.911dc7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LncBook is a curated knowledgebase of human lncRNAs that features a comprehensive collection of human lncRNAs and systematic curation of lncRNAs by multi-omics data integration, functional annotation and disease association. It integrates multi-omics data from expression, methylation, genome variation and lncRNA-miRNA interaction. A core component of LncBook is the community-curated LncRNAWiki portal, which a wiki-based, publicly editable and open-content platform for community curation of human long non-coding RNAs (lncRNAs).", "publications": [{"id": 761, "pubmed_id": 30329098, "title": "LncBook: a curated knowledgebase of human long non-coding RNAs.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky960", "authors": "Ma L,Cao J,Liu L,Du Q,Li Z,Zou D,Bajic VB,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky960", "created_at": "2021-09-30T08:23:43.859Z", "updated_at": "2021-09-30T11:28:50.284Z"}, {"id": 762, "pubmed_id": 25399417, "title": "LncRNAWiki: harnessing community knowledge in collaborative curation of human long non-coding RNAs.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1167", "authors": "Ma L,Li A,Zou D,Xu X,Xia L,Yu J,Bajic VB,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1167", "created_at": "2021-09-30T08:23:43.968Z", "updated_at": "2021-09-30T11:28:50.375Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1478, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3314", "type": "fairsharing-records", "attributes": {"created-at": "2021-04-02T12:40:56.000Z", "updated-at": "2021-11-24T13:14:59.361Z", "metadata": {"name": "Colecci\u00f3n Especial COVID-19", "status": "ready", "contacts": [{"contact-name": "Isabel Bernal", "contact-email": "isabel.bernal@bib.csic.es"}], "homepage": "https://digital.csic.es/handle/10261/204074", "identifier": 3314, "description": "This collection brings together the Spanish National Research Council (CSIC) research results directly associated with the study of COVID-19 or the study of coronaviruses in general as a contribution to a better and more extensive knowledge of these diseases. It also includes the results of research projects recently launched to find relationships with other diseases and possible drugs to combat COVID-19.", "year-creation": 2020, "data-processes": [{"url": "https://digital.csic.es/handle/10261/204074", "name": "Browse & filter", "type": "data access"}]}, "legacy-ids": ["biodbcore-001829", "bsg-d001829"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Virology", "Medical Virology", "Life Science", "Biomedical Science"], "domains": ["Bibliography", "Resource collection"], "taxonomies": ["Homo sapiens", "SARS-CoV-2"], "user-defined-tags": ["COVID-19"], "countries": ["Spain"], "name": "FAIRsharing record for: Colecci\u00f3n Especial COVID-19", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3314", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This collection brings together the Spanish National Research Council (CSIC) research results directly associated with the study of COVID-19 or the study of coronaviruses in general as a contribution to a better and more extensive knowledge of these diseases. It also includes the results of research projects recently launched to find relationships with other diseases and possible drugs to combat COVID-19.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1650", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.677Z", "metadata": {"doi": "10.25504/FAIRsharing.qf46ys", "name": "The Human OligoGenome Resource: A Database for Customized Targeted Resequencing Covering the Human Genome", "status": "deprecated", "homepage": "http://oligogenome.stanford.edu/", "identifier": 1650, "description": "Oligonucleotides for targeted resequencing of the human genome", "year-creation": 2011, "data-processes": [{"name": "file download", "type": "data access"}, {"name": "N/A", "type": "data release"}, {"name": "N/A", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000106", "bsg-d000106"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Oligonucleotide probe annotation", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Human OligoGenome Resource: A Database for Customized Targeted Resequencing Covering the Human Genome", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qf46ys", "doi": "10.25504/FAIRsharing.qf46ys", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Oligonucleotides for targeted resequencing of the human genome", "publications": [{"id": 139, "pubmed_id": 21738606, "title": "A flexible approach for highly multiplexed candidate gene targeted resequencing.", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0021088", "authors": "Natsoulis G., Bell JM., Xu H., Buenrostro JD., Ordonez H., Grimes S., Newburger D., Jensen M., Zahn JM., Zhang N., Ji HP.,", "journal": "PLoS ONE", "doi": "10.1371/journal.pone.0021088", "created_at": "2021-09-30T08:22:35.205Z", "updated_at": "2021-09-30T08:22:35.205Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1580", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:04.001Z", "metadata": {"doi": "10.25504/FAIRsharing.5q1k", "name": "eQuilibrator - the biochemical thermodynamics calculator", "status": "ready", "homepage": "http://equilibrator.weizmann.ac.il", "identifier": 1580, "description": "Thermodynamics calculator for biochemical reactions. eQuilibrator is a simple web interface designed to enable easy thermodynamic analysis of biochemical systems. eQuilibrator enables free-text search for biochemical compounds and reactions and provides thermodynamic estimates for both in a variety of conditions.", "support-links": [{"url": "http://equilibrator.weizmann.ac.il/faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2011, "data-processes": [{"name": "as available", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "access to historical files available upon request", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "web service (JSON and XML)", "type": "data access"}, {"name": "file download(CSV)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000035", "bsg-d000035"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Thermodynamics", "Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: eQuilibrator - the biochemical thermodynamics calculator", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.5q1k", "doi": "10.25504/FAIRsharing.5q1k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Thermodynamics calculator for biochemical reactions. eQuilibrator is a simple web interface designed to enable easy thermodynamic analysis of biochemical systems. eQuilibrator enables free-text search for biochemical compounds and reactions and provides thermodynamic estimates for both in a variety of conditions.", "publications": [{"id": 55, "pubmed_id": 18645197, "title": "Group contribution method for thermodynamic analysis of complex metabolic networks.", "year": 2008, "url": "http://doi.org/10.1529/biophysj.107.124784", "authors": "Jankowski MD., Henry CS., Broadbelt LJ., Hatzimanikatis V.,", "journal": "Biophys. J.", "doi": "10.1529/biophysj.107.124784", "created_at": "2021-09-30T08:22:26.290Z", "updated_at": "2021-09-30T08:22:26.290Z"}, {"id": 56, "pubmed_id": 16878778, "title": "Biochemical thermodynamics: applications of Mathematica.", "year": 2006, "url": "https://www.ncbi.nlm.nih.gov/pubmed/16878778", "authors": "Alberty RA.,", "journal": "Methods Biochem Anal", "doi": null, "created_at": "2021-09-30T08:22:26.395Z", "updated_at": "2021-09-30T08:22:26.395Z"}, {"id": 1866, "pubmed_id": 860983, "title": "Energy conservation in chemotrophic anaerobic bacteria.", "year": 1977, "url": "https://www.ncbi.nlm.nih.gov/pubmed/860983", "authors": "Thauer RK., Jungermann K., Decker K.,", "journal": "Bacteriol Rev", "doi": null, "created_at": "2021-09-30T08:25:49.672Z", "updated_at": "2021-09-30T08:25:49.672Z"}, {"id": 1867, "pubmed_id": 22645166, "title": "An integrated open framework for thermodynamics of reactions that combines accuracy and coverage.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts317", "authors": "Noor E,Bar-Even A,Flamholz A,Lubling Y,Davidi D,Milo R", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts317", "created_at": "2021-09-30T08:25:49.947Z", "updated_at": "2021-09-30T08:25:49.947Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2365", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-22T21:48:08.000Z", "updated-at": "2021-12-06T10:48:55.043Z", "metadata": {"doi": "10.25504/FAIRsharing.nbe4fq", "name": "The Benchmark Energy & Geometry Database", "status": "uncertain", "contacts": [{"contact-name": "Prof. Ing. Pavel Hobza, DrSc.", "contact-email": "pavel.hobza@uochb.cas.cz"}], "homepage": "http://www.begdb.org/", "identifier": 2365, "description": "The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate QM calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", "abbreviation": "BEGDB", "support-links": [{"url": "http://www.begdb.org/index.php?action=contact&state=write", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.begdb.org/index.php?action=faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.begdb.org/index.php?action=Features", "name": "Features", "type": "Help documentation"}], "year-creation": 2008, "associated-tools": [{"url": "http://www.begdb.org/index.php?action=advancedsearch", "name": "Search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011166", "name": "re3data:r3d100011166", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000844", "bsg-d000844"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular interaction"], "taxonomies": ["All"], "user-defined-tags": ["Physical interaction"], "countries": ["Czech Republic"], "name": "FAIRsharing record for: The Benchmark Energy & Geometry Database", "abbreviation": "BEGDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.nbe4fq", "doi": "10.25504/FAIRsharing.nbe4fq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate QM calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", "publications": [{"id": 2722, "pubmed_id": null, "title": "Quantum Chemical Benchmark Energy and Geometry Database for Molecular Clusters and Complex Molecular Systems (www.begdb.com): A Users Manual and Examples", "year": 2008, "url": "http://doi.org/10.1135/cccc20081261", "authors": "\u0158ez\u00e1\u010d J., Jure\u010dka P., Riley K.E., \u010cern\u00fd J., Valdes H., Pluh\u00e1\u010dkov\u00e1 K., Berka K., \u0158ez\u00e1\u010d T., Pito\u0148\u00e1k M., Vondr\u00e1\u0161ek J., Hobza P.", "journal": "Collection of Czechoslovak Chemical Communication", "doi": "10.1135/cccc20081261", "created_at": "2021-09-30T08:27:34.338Z", "updated_at": "2021-09-30T08:27:34.338Z"}], "licence-links": [{"licence-name": "BEGDB Licence", "licence-id": 65, "link-id": 2195, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2717", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T13:54:02.000Z", "updated-at": "2021-11-24T13:17:54.668Z", "metadata": {"doi": "10.25504/FAIRsharing.6YaUQm", "name": "CHOmine", "status": "ready", "contacts": [{"contact-email": "nicole.borth@boku.ac.at"}], "homepage": "https://chomine.boku.ac.at/chomine", "citations": [{"doi": "10.1093/database/bax034", "pubmed-id": 28605771, "publication-id": 2369}], "identifier": 2717, "description": "CHOmine integrates many types of data for Cricetulus griseus, and CHO cells. You can run flexible queries, export results and analyse lists of data.", "abbreviation": "CHOmine", "access-points": [{"url": "https://chomine.boku.ac.at/chomine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://chomine.boku.ac.at/chomodel/", "name": "Data Model", "type": "Help documentation"}, {"url": "https://chomine.boku.ac.at/chomine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://chomine.boku.ac.at/chomine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://chomine.boku.ac.at/chomine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://chomine.boku.ac.at/chomine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://chomine.boku.ac.at/chomine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001215", "bsg-d001215"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Protein", "Gene"], "taxonomies": ["Cricetulus griseus"], "user-defined-tags": [], "countries": ["Austria"], "name": "FAIRsharing record for: CHOmine", "abbreviation": "CHOmine", "url": "https://fairsharing.org/10.25504/FAIRsharing.6YaUQm", "doi": "10.25504/FAIRsharing.6YaUQm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CHOmine integrates many types of data for Cricetulus griseus, and CHO cells. You can run flexible queries, export results and analyse lists of data.", "publications": [{"id": 2369, "pubmed_id": 28605771, "title": "CHOmine: an integrated data warehouse for CHO systems biology and modeling.", "year": 2017, "url": "http://doi.org/10.1093/database/bax034", "authors": "Gerstl MP,Hanscho M,Ruckerbauer DE,Zanghellini J,Borth N", "journal": "Database (Oxford)", "doi": "10.1093/database/bax034", "created_at": "2021-09-30T08:26:51.268Z", "updated_at": "2021-09-30T08:26:51.268Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 425, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2363", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-04T16:01:47.000Z", "updated-at": "2021-11-24T13:14:52.430Z", "metadata": {"doi": "10.25504/FAIRsharing.3me82d", "name": "DrugCentral", "status": "ready", "contacts": [{"contact-name": "Tudor Oprea", "contact-email": "toprea@salud.unm.edu", "contact-orcid": "0000-0002-6195-6976"}], "homepage": "http://drugcentral.org/", "identifier": 2363, "description": "DrugCentral is online drug information that provides information on active ingredients, chemical entities, pharmaceutical products, drug mode of action, indications, and pharmacologic mode of action. DrugCentral monitors FDA, EMA, and PMDA for new drug approval on regular basis to ensure currency of the resource. This resource was created and is maintained by the Division of Translational Informatics at the University of New Mexico School of Medicine.", "abbreviation": "DrugCentral", "year-creation": 2011, "data-processes": [{"url": "https://drive.google.com/file/d/0B_AZcySxpZP7QU9qWFp3TnRaMVU/view", "name": "database dump", "type": "data access"}, {"url": "http://drugcentral.org/", "name": "web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000842", "bsg-d000842"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Repositioning", "Drug Development", "Pharmacy", "Pharmacology", "Biomedical Science"], "domains": ["Chemical formula", "Drug structure", "Drug name", "Drug combination effect modeling", "Adverse Reaction", "Target", "Approved drug"], "taxonomies": ["Bacteria", "Homo sapiens", "Protozoa", "Viruses"], "user-defined-tags": ["Bioactivity", "Drug Target", "Mode of action"], "countries": ["United States"], "name": "FAIRsharing record for: DrugCentral", "abbreviation": "DrugCentral", "url": "https://fairsharing.org/10.25504/FAIRsharing.3me82d", "doi": "10.25504/FAIRsharing.3me82d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DrugCentral is online drug information that provides information on active ingredients, chemical entities, pharmaceutical products, drug mode of action, indications, and pharmacologic mode of action. DrugCentral monitors FDA, EMA, and PMDA for new drug approval on regular basis to ensure currency of the resource. This resource was created and is maintained by the Division of Translational Informatics at the University of New Mexico School of Medicine.", "publications": [{"id": 1763, "pubmed_id": 27789690, "title": "DrugCentral: online drug compendium.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw993", "authors": "Ursu O,Holmes J,Knockel J,Bologa CG,Yang JJ,Mathias SL,Nelson SJ,Oprea TI", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw993", "created_at": "2021-09-30T08:25:37.810Z", "updated_at": "2021-09-30T11:29:20.127Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 2086, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1606", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.594Z", "metadata": {"doi": "10.25504/FAIRsharing.bv0zjz", "name": "Mimotope Database", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "hj@uestc.edu.cn"}], "homepage": "http://immunet.cn/mimodb", "identifier": 1606, "description": "Mimotope database, active site-mimicking peptides selected from phage-display libraries. It is a database which stores information on peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues, organs, and even entire organisms through phage display technology. Besides the peptide sequences, other information such as the corresponding target, template, library, and structures are also stored. All entries are manually extracted from published peer review articles and other public data sources such as Uniprot, GenBank and PDBSum.", "abbreviation": "MimoDB", "support-links": [{"url": "http://immunet.cn/bdb/index.php/site/contact", "type": "Contact form"}, {"url": "http://immunet.cn/mimodb/help.php", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://immunet.cn/mimodb/browse.php", "name": "web interface", "type": "data access"}, {"url": "http://immunet.cn/mimodb/download.html", "name": "file download(XLS,XML)", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"url": "http://immunet.cn/bdb/index.php/mimoset/index", "name": "Browse", "type": "data access"}], "deprecation-date": "2021-02-08", "deprecation-reason": "This resource is no longer available"}, "legacy-ids": ["biodbcore-000062", "bsg-d000062"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide", "Peptide library", "Target"], "taxonomies": ["All"], "user-defined-tags": ["Template library"], "countries": ["China"], "name": "FAIRsharing record for: Mimotope Database", "abbreviation": "MimoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.bv0zjz", "doi": "10.25504/FAIRsharing.bv0zjz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mimotope database, active site-mimicking peptides selected from phage-display libraries. It is a database which stores information on peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues, organs, and even entire organisms through phage display technology. Besides the peptide sequences, other information such as the corresponding target, template, library, and structures are also stored. All entries are manually extracted from published peer review articles and other public data sources such as Uniprot, GenBank and PDBSum.", "publications": [{"id": 98, "pubmed_id": 21079566, "title": "MimoDB: a new repository for mimotope data derived from phage display technology.", "year": 2010, "url": "http://doi.org/10.3390/molecules15118279", "authors": "Ru B., Huang J., Dai P., Li S., Xia Z., Ding H., Lin H., Guo F., Wang X.,", "journal": "Molecules", "doi": "10.3390/molecules15118279", "created_at": "2021-09-30T08:22:31.030Z", "updated_at": "2021-09-30T08:22:31.030Z"}, {"id": 754, "pubmed_id": 22053087, "title": "MimoDB 2.0: a mimotope database and beyond.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr922", "authors": "Huang J,Ru B,Zhu P,Nie F,Yang J,Wang X,Dai P,Lin H,Guo FB,Rao N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr922", "created_at": "2021-09-30T08:23:43.019Z", "updated_at": "2021-09-30T11:28:49.934Z"}, {"id": 1863, "pubmed_id": 26503249, "title": "BDB: biopanning data bank.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1100", "authors": "He B,Chai G,Duan Y,Yan Z,Qiu L,Zhang H,Liu Z,He Q,Han K,Ru B,Guo FB,Ding H,Lin H,Wang X,Rao N,Zhou P,Huang J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1100", "created_at": "2021-09-30T08:25:49.345Z", "updated_at": "2021-09-30T11:29:21.568Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2112", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:53.929Z", "metadata": {"doi": "10.25504/FAIRsharing.mx5cxe", "name": "Bacterial Protein Interaction Database", "status": "ready", "contacts": [{"contact-name": "John Parkinson", "contact-email": "jparkin@sickkids.ca"}], "homepage": "http://www.compsysbio.org/bacteriome/", "identifier": 2112, "description": "Bacteriome.org is a database integrating physical (protein-protein) and functional interactions within the context of an E. coli knowledgebase.", "abbreviation": "Bacteriome.org", "support-links": [{"url": "http://www.compsysbio.org/bacteriome/help.php", "name": "Help Pages", "type": "Help documentation"}], "data-processes": [{"url": "http://www.compsysbio.org/bacteriome/download.php", "name": "Download", "type": "data access"}, {"url": "http://www.compsysbio.org/bacteriome/sptext.php", "name": "Text Search", "type": "data access"}], "associated-tools": [{"url": "http://128.100.134.188/bacteriome/spblast.php", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012726", "name": "re3data:r3d100012726", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001934", "name": "SciCrunch:RRID:SCR_001934", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000582", "bsg-d000582"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Network model", "Molecular interaction", "Protein"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Bacterial Protein Interaction Database", "abbreviation": "Bacteriome.org", "url": "https://fairsharing.org/10.25504/FAIRsharing.mx5cxe", "doi": "10.25504/FAIRsharing.mx5cxe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bacteriome.org is a database integrating physical (protein-protein) and functional interactions within the context of an E. coli knowledgebase.", "publications": [{"id": 544, "pubmed_id": 17942431, "title": "Bacteriome.org--an integrated protein interaction database for E. coli.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm807", "authors": "Su C., Peregrin-Alvarez JM., Butland G., Phanse S., Fong V., Emili A., Parkinson J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm807", "created_at": "2021-09-30T08:23:19.387Z", "updated_at": "2021-09-30T08:23:19.387Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1913", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:20.372Z", "metadata": {"doi": "10.25504/FAIRsharing.vk3v6s", "name": "GermOnline", "status": "ready", "contacts": [{"contact-name": "Michael Primig", "contact-email": "michael.primig@inserm.fr"}], "homepage": "http://www.germonline.org/index.html", "identifier": 1913, "description": "GermOnline is a cross-species database gateway focusing on high-throughput expression data relevant for germline development, the meiotic cell cycle and mitosis in healthy versus malignant cells. The portal provides access to the Saccharomyces Genomics Viewer (SGV) which facilitates online interpretation of complex data from experiments with high-density oligonucleotide tiling microarrays that cover the entire yeast genome.", "abbreviation": "GermOnline", "support-links": [{"url": "http://wiki.germonline.org/doku.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.germonline.org/gol_4_userguide.pdf", "type": "Help documentation"}], "data-processes": [{"url": "http://www.germonline.org/info/data/download.html", "name": "Download", "type": "data access"}, {"url": "http://www.germonline.org/advanced.html", "name": "advanced search", "type": "data access"}, {"url": "http://www.germonline.org/browse.html", "name": "browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010248", "name": "re3data:r3d100010248", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002807", "name": "SciCrunch:RRID:SCR_002807", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000378", "bsg-d000378"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Meiosis I", "Meiosis II", "Gene"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Macaca mulatta", "Mus musculus", "Pan troglodytes", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GermOnline", "abbreviation": "GermOnline", "url": "https://fairsharing.org/10.25504/FAIRsharing.vk3v6s", "doi": "10.25504/FAIRsharing.vk3v6s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GermOnline is a cross-species database gateway focusing on high-throughput expression data relevant for germline development, the meiotic cell cycle and mitosis in healthy versus malignant cells. The portal provides access to the Saccharomyces Genomics Viewer (SGV) which facilitates online interpretation of complex data from experiments with high-density oligonucleotide tiling microarrays that cover the entire yeast genome.", "publications": [{"id": 417, "pubmed_id": 21149299, "title": "GermOnline 4.0 is a genomics gateway for germline development, meiosis and the mitotic cell cycle.", "year": 2010, "url": "http://doi.org/10.1093/database/baq030", "authors": "Lardenois A., Gattiker A., Collin O., Chalmel F., Primig M.,", "journal": "Database (Oxford)", "doi": "10.1093/database/baq030", "created_at": "2021-09-30T08:23:05.308Z", "updated_at": "2021-09-30T08:23:05.308Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1758", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.103Z", "metadata": {"doi": "10.25504/FAIRsharing.6e05x2", "name": "Gene Disruption Project Database", "status": "ready", "contacts": [{"contact-name": "Karen Schulze", "contact-email": "kschulze@bcm.edu"}], "homepage": "http://flypush.imgen.bcm.tmc.edu/pscreen/", "identifier": 1758, "description": "The GDP Database provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", "abbreviation": "GDP Database", "support-links": [{"url": "http://flypush.imgen.bcm.tmc.edu/pscreen/about.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://flypush.imgen.bcm.tmc.edu/pscreen/downloads.html", "name": "Download", "type": "data access"}, {"url": "http://flypush.imgen.bcm.tmc.edu/pscreen/index.php", "name": "search", "type": "data access"}, {"url": "http://flypush.imgen.bcm.tmc.edu/pscreen/order.html", "name": "order", "type": "data access"}]}, "legacy-ids": ["biodbcore-000216", "bsg-d000216"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence", "Transposable element", "Gene"], "taxonomies": ["Drosophila melanogaster"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Gene Disruption Project Database", "abbreviation": "GDP Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.6e05x2", "doi": "10.25504/FAIRsharing.6e05x2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GDP Database provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", "publications": [{"id": 325, "pubmed_id": 15238527, "title": "The BDGP gene disruption project: single transposon insertions associated with 40% of Drosophila genes.", "year": 2004, "url": "http://doi.org/10.1534/genetics.104.026427", "authors": "Bellen HJ., Levis RW., Liao G., He Y., Carlson JW., Tsang G., Evans-Holm M., Hiesinger PR., Schulze KL., Rubin GM., Hoskins RA., Spradling AC.,", "journal": "Genetics", "doi": "10.1534/genetics.104.026427", "created_at": "2021-09-30T08:22:54.890Z", "updated_at": "2021-09-30T08:22:54.890Z"}, {"id": 349, "pubmed_id": 21515576, "title": "The Drosophila gene disruption project: progress using transposons with distinctive site specificities.", "year": 2011, "url": "http://doi.org/10.1534/genetics.111.126995", "authors": "Bellen HJ,Levis RW,He Y,Carlson JW,Evans-Holm M,Bae E,Kim J,Metaxakis A,Savakis C,Schulze KL,Hoskins RA,Spradling AC", "journal": "Genetics", "doi": "10.1534/genetics.111.126995", "created_at": "2021-09-30T08:22:57.574Z", "updated_at": "2021-09-30T08:22:57.574Z"}, {"id": 373, "pubmed_id": 21985007, "title": "MiMIC: a highly versatile transposon insertion resource for engineering Drosophila melanogaster genes.", "year": 2011, "url": "http://doi.org/10.1038/nmeth.1662", "authors": "Venken KJ,Schulze KL,Haelterman NA,Pan H,He Y,Evans-Holm M,Carlson JW,Levis RW,Spradling AC,Hoskins RA,Bellen HJ", "journal": "Nat Methods", "doi": "10.1038/nmeth.1662", "created_at": "2021-09-30T08:23:00.100Z", "updated_at": "2021-09-30T08:23:00.100Z"}, {"id": 376, "pubmed_id": 25824290, "title": "A library of MiMICs allows tagging of genes and reversible, spatial and temporal knockdown of proteins in Drosophila.", "year": 2015, "url": "http://doi.org/10.7554/eLife.05338", "authors": "Nagarkar-Jaiswal S,Lee PT,Campbell ME,Chen K,Anguiano-Zarate S,Gutierrez MC,Busby T,Lin WW,He Y,Schulze KL,Booth BW,Evans-Holm M,Venken KJ,Levis RW,Spradling AC,Hoskins RA,Bellen HJ", "journal": "Elife", "doi": "10.7554/eLife.05338", "created_at": "2021-09-30T08:23:00.409Z", "updated_at": "2021-09-30T08:23:00.409Z"}, {"id": 400, "pubmed_id": 26102525, "title": "A genetic toolkit for tagging intronic MiMIC containing genes.", "year": 2015, "url": "http://doi.org/10.7554/eLife.08469", "authors": "Nagarkar-Jaiswal S,DeLuca SZ,Lee PT,Lin WW,Pan H,Zuo Z,Lv J,Spradling AC,Bellen HJ", "journal": "Elife", "doi": "10.7554/eLife.08469", "created_at": "2021-09-30T08:23:03.481Z", "updated_at": "2021-09-30T08:23:03.481Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2022", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:38.433Z", "metadata": {"doi": "10.25504/FAIRsharing.p3bzqb", "name": "Transporter Classification Database", "status": "ready", "contacts": [{"contact-name": "Milton H. Saier, Jr.", "contact-email": "msaier@ucsd.edu", "contact-orcid": "0000-0001-5530-0017"}], "homepage": "https://tcdb.org/", "citations": [{"doi": "10.1093/nar/gkaa1004", "pubmed-id": 33170213, "publication-id": 367}], "identifier": 2022, "description": "This freely accessible database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, except that it incorporates both functional and phylogenetic information for organisms of all types. As of April. 1, 2021, TCDB consists of 21,114 proteins classified in 16,558 non-redundant transport systems with 1,605 tabulated 3D structures, 19,196 reference citations describing 1,586 transporter families, of which 26% are members of 83 recognized superfamilies. Overall, this is an increase of over 50% since the last published update of the database in 2016. The most recent update of the database contents and features include (1) adoption of a chemical ontology for substrates of transporters, (2) inclusion of new superfamilies, (3) a domain-based characterization of transporter families (tcDoms) for the identification of new members as well as functional and evolutionary relationships between families, (4) development of novel software to facilitate curation and use of the database, (5) addition of new subclasses of transport systems including 11 novel types of channels and 3 types of group translocators, and (6) the inclusion of many man-made (artificial) transmembrane pores/channels and carriers.", "abbreviation": "TCDB", "support-links": [{"url": "https://www.tcdb.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2005, "data-processes": [{"url": "https://www.tcdb.org/download.php", "name": "Download data", "type": "data access"}, {"url": "https://www.tcdb.org/search/index.php", "name": "Content statistics", "type": "data access"}, {"url": "http://www.tcdb.org/browse.php", "name": "Browse the TC system", "type": "data access"}], "associated-tools": [{"url": "https://www.tcdb.org/analyze.php", "name": "Analyze"}, {"url": "https://www.tcdb.org/progs/blast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000489", "bsg-d000489"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Knowledge and Information Systems", "Phylogenetics", "Computational Biology", "Life Science", "Cell Biology"], "domains": ["Molecular structure", "Annotation", "Function analysis", "Molecular function", "Transport", "Disease", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Transporter Classification Database", "abbreviation": "TCDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.p3bzqb", "doi": "10.25504/FAIRsharing.p3bzqb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This freely accessible database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, except that it incorporates both functional and phylogenetic information for organisms of all types. As of April. 1, 2021, TCDB consists of 21,114 proteins classified in 16,558 non-redundant transport systems with 1,605 tabulated 3D structures, 19,196 reference citations describing 1,586 transporter families, of which 26% are members of 83 recognized superfamilies. Overall, this is an increase of over 50% since the last published update of the database in 2016. The most recent update of the database contents and features include (1) adoption of a chemical ontology for substrates of transporters, (2) inclusion of new superfamilies, (3) a domain-based characterization of transporter families (tcDoms) for the identification of new members as well as functional and evolutionary relationships between families, (4) development of novel software to facilitate curation and use of the database, (5) addition of new subclasses of transport systems including 11 novel types of channels and 3 types of group translocators, and (6) the inclusion of many man-made (artificial) transmembrane pores/channels and carriers.", "publications": [{"id": 271, "pubmed_id": 24225317, "title": "The transporter classification database", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1097", "authors": "Saier MH, Reddy VS, Tamang DG, Vastermark A.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1097", "created_at": "2021-09-30T08:22:49.313Z", "updated_at": "2021-09-30T11:28:44.500Z"}, {"id": 367, "pubmed_id": 33170213, "title": "The Transporter Classification Database (TCDB): 2021 update", "year": 2021, "url": "http://doi.org/10.1093/nar/gkaa1004", "authors": "Saier MH, Reddy VS, Moreno-Hagelsieb G, Hendargo KJ, Zhang Y, Iddamsetty V, Lam KJK, Tian N, Russum S, Wang J, Medrano-Soto A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkaa1004", "created_at": "2021-09-30T08:22:59.458Z", "updated_at": "2021-09-30T08:22:59.458Z"}, {"id": 472, "pubmed_id": 16381841, "title": "TCDB: the Transporter Classification Database for membrane transport protein analyses and information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj001", "authors": "Saier MH., Tran CV., Barabote RD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj001", "created_at": "2021-09-30T08:23:11.309Z", "updated_at": "2021-09-30T08:23:11.309Z"}, {"id": 482, "pubmed_id": 19022853, "title": "The Transporter Classification Database: recent advances.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn862", "authors": "Saier MH., Yen MR., Noto K., Tamang DG., Elkan C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn862", "created_at": "2021-09-30T08:23:12.425Z", "updated_at": "2021-09-30T08:23:12.425Z"}, {"id": 1530, "pubmed_id": 26546518, "title": "The Transporter Classification Database (TCDB): recent advances", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1103", "authors": "Saier MH, Reddy V S, Tsu BV, Ahmed MS, Li C, Moreno-Hagelsieb G.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1103", "created_at": "2021-09-30T08:25:11.259Z", "updated_at": "2021-09-30T11:29:12.735Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 1329, "relation": "undefined"}, {"licence-name": "GNU Free Documentation License", "licence-id": 353, "link-id": 1333, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2055", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:33.314Z", "metadata": {"doi": "10.25504/FAIRsharing.zaa7w", "name": "HumanCyc", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "biocyc-support@ai.sri.com"}], "homepage": "https://www.humancyc.org/", "citations": [], "identifier": 2055, "description": "HumanCyc is a bioinformatics database that describes human metabolic pathways and the human genome. By presenting metabolic pathways as an organizing framework for the human genome, HumanCyc provides the user with an extended dimension for functional analysis of Homo sapiens at the genomic level.", "abbreviation": "HumanCyc", "support-links": [{"url": "http://humancyc.org/contact.shtml", "type": "Contact form"}, {"url": "http://humancyc.org/help.shtml", "type": "Help documentation"}, {"url": "https://humancyc.org/subscribe.shtml", "type": "Mailing list"}, {"url": "https://twitter.com/BioCyc", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://humancyc.org/query.shtml", "name": "search", "type": "data access"}], "associated-tools": [{"url": "https://humancyc.org/HUMAN/blast.html?refdb=ALL", "name": "BLAST HumanCyc"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011286", "name": "re3data:r3d100011286", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007050", "name": "SciCrunch:RRID:SCR_007050", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000522", "bsg-d000522"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Endocrinology", "Life Science", "Systems Biology"], "domains": ["Pathway model", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: HumanCyc", "abbreviation": "HumanCyc", "url": "https://fairsharing.org/10.25504/FAIRsharing.zaa7w", "doi": "10.25504/FAIRsharing.zaa7w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HumanCyc is a bioinformatics database that describes human metabolic pathways and the human genome. By presenting metabolic pathways as an organizing framework for the human genome, HumanCyc provides the user with an extended dimension for functional analysis of Homo sapiens at the genomic level.", "publications": [{"id": 499, "pubmed_id": 15642094, "title": "Computational prediction of human metabolic pathways from the complete human genome.", "year": 2005, "url": "http://doi.org/10.1186/gb-2004-6-1-r2", "authors": "Romero P., Wagg J., Green ML., Kaiser D., Krummenacker M., Karp PD.,", "journal": "Genome Biol.", "doi": "10.1186/gb-2004-6-1-r2", "created_at": "2021-09-30T08:23:14.201Z", "updated_at": "2021-09-30T08:23:14.201Z"}], "licence-links": [{"licence-name": "BioCyc Subscription requirements", "licence-id": 79, "link-id": 877, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1584", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.724Z", "metadata": {"doi": "10.25504/FAIRsharing.qbwrtn", "name": "Networks of Functional Coupling of proteins", "status": "ready", "contacts": [{"contact-name": "Erik Sonnhammer", "contact-email": "Erik.Sonnhammer@sbc.su.se"}], "homepage": "http://funcoup.sbc.su.se/", "identifier": 1584, "description": "FunCoup is a framework to infer genome-wide functional couplings in 11 model organisms. Functional coupling, or functional association, is an unspecific form of association that encompasses direct physical interaction but also more general types of direct or indirect interaction like regulatory interaction or participation the same process or pathway.", "abbreviation": "FunCoup", "support-links": [{"url": "christoph.ogris@scilifelab.se", "type": "Support email"}, {"url": "http://funcoup.sbc.su.se/help/#FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://funcoup.sbc.su.se/help/", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://funcoup.sbc.su.se/search/", "name": "search", "type": "data access"}, {"url": "http://funcoup.sbc.su.se/downloads/", "name": "file download(XML,tab-delimited)", "type": "data access"}, {"url": "http://funcoup.sbc.su.se/downloads/", "name": "download", "type": "data access"}], "associated-tools": [{"url": "http://jsquid.sbc.su.se/", "name": "Java Applet jSquid"}, {"url": "http://funcoup.sbc.su.se/maxlink/", "name": "MaxLink"}]}, "legacy-ids": ["biodbcore-000039", "bsg-d000039"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Protein interaction", "Biological regulation", "Molecular interaction", "Genetic interaction", "Functional association", "Protein", "Genome"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Canis familiaris", "Ciona intestinalis", "Danio rerio", "Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": ["Physical interaction"], "countries": ["Sweden"], "name": "FAIRsharing record for: Networks of Functional Coupling of proteins", "abbreviation": "FunCoup", "url": "https://fairsharing.org/10.25504/FAIRsharing.qbwrtn", "doi": "10.25504/FAIRsharing.qbwrtn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FunCoup is a framework to infer genome-wide functional couplings in 11 model organisms. Functional coupling, or functional association, is an unspecific form of association that encompasses direct physical interaction but also more general types of direct or indirect interaction like regulatory interaction or participation the same process or pathway.", "publications": [{"id": 69, "pubmed_id": 19246318, "title": "Global networks of functional coupling in eukaryotes from comprehensive data integration.", "year": 2009, "url": "http://doi.org/10.1101/gr.087528.108", "authors": "Alexeyenko A., Sonnhammer EL.,", "journal": "Genome Res.", "doi": "10.1101/gr.087528.108", "created_at": "2021-09-30T08:22:27.662Z", "updated_at": "2021-09-30T08:22:27.662Z"}, {"id": 586, "pubmed_id": 22110034, "title": "Comparative interactomics with Funcoup 2.0.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1062", "authors": "Alexeyenko A., Schmitt T., Tj\u00e4rnberg A., Guala D., Frings O., Sonnhammer EL.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1062", "created_at": "2021-09-30T08:23:24.210Z", "updated_at": "2021-09-30T08:23:24.210Z"}, {"id": 1883, "pubmed_id": 24185702, "title": "FunCoup 3.0: database of genome-wide functional coupling networks", "year": 1985, "url": "http://doi.org/10.1002/1097-0142(19850101)55:1<214::aid-cncr2820550135>3.0.co;2-h", "authors": "Schmitt T., Ogris C., Sonnhammer EL.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt984", "created_at": "2021-09-30T08:25:51.836Z", "updated_at": "2021-09-30T08:25:51.836Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1674", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.935Z", "metadata": {"doi": "10.25504/FAIRsharing.a0k4cd", "name": "TarBase", "status": "ready", "contacts": [{"contact-name": "Artemis Hatzigeorgiou", "contact-email": "arhatzig@inf.uth.gr"}], "homepage": "http://www.microrna.gr/tarbase", "citations": [{"doi": "10.1093/nar/gkx1141", "pubmed-id": 29156006, "publication-id": 588}], "identifier": 1674, "description": "DIANA-TarBase is a reference database that indexes experimentally-supported microRNA (miRNA) targets. It integrates information on cell-type specific miRNA\u2013gene regulation and includes miRNA-binding locations. The target data provided by DIANA-TarBase is supported by information on methodologies, cell types/tissues and experimental conditions.", "abbreviation": "TarBase", "support-links": [{"url": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=site/contact", "name": "DIANA Contact Form", "type": "Contact form"}, {"url": "http://carolina.imis.athena-innovation.gr/diana_tools/web/index.php?r=tarbasev8%2Fhelp", "name": "Help", "type": "Help documentation"}, {"url": "http://carolina.imis.athena-innovation.gr/diana_tools/web/index.php?r=tarbasev8%2Fstatistics", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://carolina.imis.athena-innovation.gr/diana_tools/web/index.php?r=tarbasev8%2Fdownloaddataform", "name": "Bulk Download Form", "type": "data release"}, {"url": "http://carolina.imis.athena-innovation.gr/diana_tools/web/index.php?r=tarbasev8%2Findex", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000130", "bsg-d000130"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Experimental measurement", "Bibliography", "Free text", "Gene silencing by miRNA (microRNA)", "Untranslated RNA", "Protocol", "Micro RNA", "Experimentally determined", "Gene"], "taxonomies": ["Arabidopsis thaliana", "Bombyx mori", "Bos taurus", "Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Gallus gallus", "Glycine max", "Homo sapiens", "Human cytomegalovirus", "KSHV", "Medicago truncatula", "Mus musculus", "Oryza sativa", "Ovis aries", "Physcomitrella patens", "Rattus norvegicus", "Vitis vinifera", "Xenopus laevis", "Xenopus tropicalis"], "user-defined-tags": ["Experimental condition"], "countries": ["Greece"], "name": "FAIRsharing record for: TarBase", "abbreviation": "TarBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.a0k4cd", "doi": "10.25504/FAIRsharing.a0k4cd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DIANA-TarBase is a reference database that indexes experimentally-supported microRNA (miRNA) targets. It integrates information on cell-type specific miRNA\u2013gene regulation and includes miRNA-binding locations. The target data provided by DIANA-TarBase is supported by information on methodologies, cell types/tissues and experimental conditions.", "publications": [{"id": 588, "pubmed_id": 29156006, "title": "DIANA-TarBase v8: a decade-long collection of experimentally supported miRNA-gene interactions.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1141", "authors": "Karagkouni D,Paraskevopoulou MD,Chatzopoulos S,Vlachos IS,Tastsoglou S,Kanellos I,Papadimitriou D,Kavakiotis I,Maniou S,Skoufos G,Vergoulis T,Dalamagas T,Hatzigeorgiou AG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1141", "created_at": "2021-09-30T08:23:24.424Z", "updated_at": "2021-09-30T11:28:47.433Z"}, {"id": 1604, "pubmed_id": 18957447, "title": "The database of experimentally supported targets: a functional update of TarBase.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn809", "authors": "Papadopoulos GL., Reczko M., Simossis VA., Sethupathy P., Hatzigeorgiou AG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn809", "created_at": "2021-09-30T08:25:19.820Z", "updated_at": "2021-09-30T08:25:19.820Z"}, {"id": 1605, "pubmed_id": 16373484, "title": "TarBase: A comprehensive database of experimentally supported animal microRNA targets.", "year": 2005, "url": "http://doi.org/10.1261/rna.2239606", "authors": "Sethupathy P., Corda B., Hatzigeorgiou AG.,", "journal": "RNA", "doi": "10.1261/rna.2239606", "created_at": "2021-09-30T08:25:19.937Z", "updated_at": "2021-09-30T08:25:19.937Z"}, {"id": 1613, "pubmed_id": 25416803, "title": "DIANA-TarBase v7.0: indexing more than half a million experimentally supported miRNA:mRNA interactions.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1215", "authors": "Vlachos IS,Paraskevopoulou MD,Karagkouni D,Georgakilas G,Vergoulis T,Kanellos I,Anastasopoulos IL,Maniou S,Karathanou K,Kalfakakou D,Fevgas A,Dalamagas T,Hatzigeorgiou AG", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1215", "created_at": "2021-09-30T08:25:20.776Z", "updated_at": "2021-09-30T11:29:15.985Z"}], "licence-links": [{"licence-name": "DIANA-TarBase Licence Specifications", "licence-id": 238, "link-id": 1708, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3144", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T10:57:13.000Z", "updated-at": "2022-02-08T10:33:58.465Z", "metadata": {"doi": "10.25504/FAIRsharing.6069e1", "name": "Data.gov", "status": "ready", "contacts": [{"contact-name": "Data.gov General Contact", "contact-email": "datagov@gsa.gov"}], "homepage": "https://www.data.gov/", "citations": [], "identifier": 3144, "description": "Data.gov was created to improve public access to the open data generated by the US government, including federal, state, local, and tribal government data. Under the OPEN Government Data Act, government data is required to be made available in open, machine-readable formats, while continuing to ensure privacy and security.", "abbreviation": "Data.gov", "access-points": [{"url": "https://www.data.gov/developers/apis", "name": "Data.gov API Information", "type": "Other"}], "data-curation": {}, "support-links": [{"url": "https://www.data.gov/meta/", "name": "Data.gov blog", "type": "Blog/News"}, {"url": "https://www.data.gov/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.data.gov/about", "name": "About Data.gov", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://labs.data.gov/dashboard/offices/qa", "name": "Agency Dashboard: Implementing Project Open Data", "type": "Help documentation"}, {"url": "https://www.data.gov/developers/", "name": "Information for Developers", "type": "Help documentation"}, {"url": "https://twitter.com/usdatagov", "name": "@usdatagov", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Data.gov", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2009, "data-processes": [{"url": "https://resources.data.gov/", "name": "Browse Data Governance Resources", "type": "data access"}, {"url": "https://www.data.gov/climate/", "name": "Search Climate Theme", "type": "data access"}, {"url": "https://www.data.gov/energy/", "name": "Search Energy Theme", "type": "data access"}, {"url": "https://www.data.gov/local/", "name": "Search Local Government Theme", "type": "data access"}, {"url": "https://www.data.gov/maritime/", "name": "Search Maritime Theme", "type": "data access"}, {"url": "https://www.data.gov/food/", "name": "Search Agriculture Theme", "type": "data access"}, {"url": "https://www.data.gov/ocean/", "name": "Search Ocean Theme", "type": "data access"}, {"url": "https://catalog.data.gov/dataset", "name": "Browse dataset", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010078", "name": "re3data:r3d100010078", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001655", "bsg-d001655"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geriatric Medicine", "Maritime Engineering", "Energy Engineering", "Health Science", "Earth Science", "Agriculture", "Oceanography"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Data.gov", "abbreviation": "Data.gov", "url": "https://fairsharing.org/10.25504/FAIRsharing.6069e1", "doi": "10.25504/FAIRsharing.6069e1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Data.gov was created to improve public access to the open data generated by the US government, including federal, state, local, and tribal government data. Under the OPEN Government Data Act, government data is required to be made available in open, machine-readable formats, while continuing to ensure privacy and security.", "publications": [], "licence-links": [{"licence-name": "Data.gov Data Policy", "licence-id": 221, "link-id": 1872, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2088", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:44.587Z", "metadata": {"doi": "10.25504/FAIRsharing.dstf7h", "name": "The UC Irvine ChemDB", "status": "ready", "contacts": [{"contact-name": "Pierre Baldi", "contact-email": "pfbaldi@ics.uci.edu"}], "homepage": "http://cdb.ics.uci.edu", "identifier": 2088, "description": "ChemDB is a chemical database containing nearly 5M commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", "abbreviation": "ChemDB", "support-links": [{"url": "http://cdb.ics.uci.edu/cgibin/tutorial/help/ReactionTutorialHelp.htm", "type": "Training documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://cdb.ics.uci.edu/cgibin/supplement/Download.py", "name": "Download", "type": "data access"}, {"url": "http://cdb.ics.uci.edu/cgibin/ChemicalIndexWeb.py", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000557", "bsg-d000557"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Life Science", "Biomedical Science", "Systems Biology", "Preclinical Studies"], "domains": ["Drug", "Small molecule", "Target"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Drug Target"], "countries": ["United States"], "name": "FAIRsharing record for: The UC Irvine ChemDB", "abbreviation": "ChemDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.dstf7h", "doi": "10.25504/FAIRsharing.dstf7h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChemDB is a chemical database containing nearly 5M commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", "publications": [{"id": 265, "pubmed_id": 16174682, "title": "ChemDB: a public database of small molecules and related chemoinformatics resources.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti683", "authors": "Chen J,Swamidass SJ,Dou Y,Bruand J,Baldi P", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti683", "created_at": "2021-09-30T08:22:48.666Z", "updated_at": "2021-09-30T08:22:48.666Z"}, {"id": 525, "pubmed_id": 17599932, "title": "ChemDB update--full-text search and virtual chemical space.", "year": 2007, "url": "http://doi.org/10.1093/bioinformatics/btm341", "authors": "Chen JH., Linstead E., Swamidass SJ., Wang D., Baldi P.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btm341", "created_at": "2021-09-30T08:23:17.278Z", "updated_at": "2021-09-30T08:23:17.278Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1718, "relation": "undefined"}, {"licence-name": "ChemDB No commercial use without permission", "licence-id": 122, "link-id": 1719, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1634", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:17.420Z", "metadata": {"doi": "10.25504/FAIRsharing.3jp2e5", "name": "Prokaryotic Glycoproteins Database", "status": "deprecated", "contacts": [{"contact-name": "Alka Rao", "contact-email": "raoalka@imtech.res.in"}], "homepage": "http://crdd.osdd.net/raghava/proglycprot", "identifier": 1634, "description": "ProGlycProt (Prokaryotic Glycoproteins) is a manually curated, comprehensive repository of experimentally characterized eubacterial and archaeal glycoproteins, generated from an exhaustive literature search. This is the focused beginning of an effort to provide concise relevant information derived from rapidly expanding literature on prokaryotic glycoproteins, their glycosylating enzyme(s), glycosylation linked genes, and genomic context thereof, in a cross-referenced manner.", "abbreviation": "ProGlycProt", "support-links": [{"url": "http://crdd.osdd.net/raghava/proglycprot/help.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://en.wikipedia.org/wiki/ProGlycProt", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/search_ProCGP.html", "name": "Search Prokaryotic Characterized Glycoprotein", "type": "data access"}, {"name": "file download(PDF)", "type": "data access"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/search_ProUGP.html", "name": "Search Prokaryotic Uncharacterized Glycoprotein", "type": "data access"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/CrystalStructure.html", "name": "Browse Crystal Structures", "type": "data access"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/HomologyModel.html", "name": "Browse Homology Models", "type": "data access"}], "associated-tools": [{"url": "http://crdd.osdd.net/raghava/proglycprot/Mapsequon.php", "name": "Map Sequon"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/glyseq_extractor.php", "name": "Glyseq Extractor"}, {"url": "http://crdd.osdd.net/raghava/proglycprot/blast.html", "name": "Blast"}], "deprecation-date": "2021-05-27", "deprecation-reason": "This resource is no longer available."}, "legacy-ids": ["biodbcore-000090", "bsg-d000090"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Glycomics"], "domains": ["Taxonomic classification", "Gene name", "DNA sequence data", "Annotation", "Glycosylation", "Protein sequence identification", "Glycosylated residue", "Curated information", "Sequence", "Homologous"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": ["Genome Context", "Glycan Annotation"], "countries": ["India"], "name": "FAIRsharing record for: Prokaryotic Glycoproteins Database", "abbreviation": "ProGlycProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.3jp2e5", "doi": "10.25504/FAIRsharing.3jp2e5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProGlycProt (Prokaryotic Glycoproteins) is a manually curated, comprehensive repository of experimentally characterized eubacterial and archaeal glycoproteins, generated from an exhaustive literature search. This is the focused beginning of an effort to provide concise relevant information derived from rapidly expanding literature on prokaryotic glycoproteins, their glycosylating enzyme(s), glycosylation linked genes, and genomic context thereof, in a cross-referenced manner.", "publications": [{"id": 703, "pubmed_id": 22039152, "title": "ProGlycProt: a repository of experimentally characterized prokaryotic glycoproteins", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr911", "authors": "Bhat AH, Mondal H, Chauhan JS, Raghava GP, Methi A, Rao A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr911", "created_at": "2021-09-30T08:23:37.496Z", "updated_at": "2021-09-30T08:23:37.496Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.5 India (CC BY-NC-SA 2.5 IN)", "licence-id": 182, "link-id": 1189, "relation": "undefined"}, {"licence-name": "ProGlycProt Data Policies and Disclaimer", "licence-id": 683, "link-id": 1190, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2779", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-12T19:19:19.000Z", "updated-at": "2021-12-06T10:48:49.959Z", "metadata": {"doi": "10.25504/FAIRsharing.lKaOme", "name": "BioGRID Open Repository of CRISPR Screens", "status": "ready", "contacts": [{"contact-name": "Rose Oughtred", "contact-email": "biogridadmin@gmail.com", "contact-orcid": "0000-0002-6475-3373"}], "homepage": "https://orcs.thebiogrid.org/", "citations": [{"doi": "10.1093/nar/gky1079", "pubmed-id": 30476227, "publication-id": 2522}], "identifier": 2779, "description": "BioGRID ORCS is an open repository of CRISPR screens compiled through comprehensive curation efforts. Our current index is version 1.0.3 and searches more than 49 publications and 58,161 genes to return more than 895 CRISPR screens from 3 major model organism species and 629 cell lines. All screen data are freely provided through our search index and available via download in a wide variety of standardized formats.", "abbreviation": "ORCS", "support-links": [{"url": "https://wiki.thebiogrid.org/doku.php/ORCS", "name": "Help and Support", "type": "Help documentation"}, {"url": "https://wiki.thebiogrid.org/doku.php/ORCS:statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://wiki.thebiogrid.org/doku.php/ORCS:aboutus", "name": "About BioGRID ORCS", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://downloads.thebiogrid.org/BioGRID-ORCS", "name": "Download", "type": "data release"}, {"url": "http://wiki.thebiogrid.org/doku.php/ORCS:advanced_search", "name": "Advanced Search", "type": "data access"}, {"url": "http://wiki.thebiogrid.org/doku.php/ORCS:featured_screens", "name": "Browse Featured Screens", "type": "data access"}, {"url": "https://orcs.thebiogrid.org/Browse", "name": "Browse all CRISPR screens", "type": "data access"}], "associated-tools": [{"url": "https://wiki.thebiogrid.org/doku.php/ORCS:tools", "name": "Tool Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013160", "name": "re3data:r3d100013160", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001278", "bsg-d001278"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Quantitative Genetics", "Life Science", "Database Management", "Biology"], "domains": ["Cell line", "Gene knockout", "High Throughput Screening", "Phenotype", "Gene", "CRISPR"], "taxonomies": ["Drosophila melanogaster", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: BioGRID Open Repository of CRISPR Screens", "abbreviation": "ORCS", "url": "https://fairsharing.org/10.25504/FAIRsharing.lKaOme", "doi": "10.25504/FAIRsharing.lKaOme", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BioGRID ORCS is an open repository of CRISPR screens compiled through comprehensive curation efforts. Our current index is version 1.0.3 and searches more than 49 publications and 58,161 genes to return more than 895 CRISPR screens from 3 major model organism species and 629 cell lines. All screen data are freely provided through our search index and available via download in a wide variety of standardized formats.", "publications": [{"id": 2522, "pubmed_id": 30476227, "title": "The BioGRID interaction database: 2019 update", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1079", "authors": "Oughtred R, Stark C, Breitkreutz BJ, Rust J, Boucher L, Chang C, Kolas N, O'Donnell L, Leung G, McAdam R, Zhang F, Dolma S, Willems A, Coulombe-Huntington J, Chatr-Aryamontri A, Dolinski K, Tyers M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1079", "created_at": "2021-09-30T08:27:09.407Z", "updated_at": "2021-09-30T11:29:38.670Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3139", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T08:44:32.000Z", "updated-at": "2022-02-08T10:33:45.096Z", "metadata": {"doi": "10.25504/FAIRsharing.951f2b", "name": "NOAA National Centers for Environmental Information Paleoclimatology Data", "status": "ready", "contacts": [{"contact-name": "NCEI Paleoclimatology General Contact", "contact-email": "paleo@noaa.gov"}], "homepage": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data", "identifier": 3139, "description": "The NOAA National Centers for Environmental Information (NCEI) Paleoclimatology Data repository offers search and download of Paleoclimatic proxy data and Paleoclimate Reconstructions from the NOAA/World Data Service for Paleoclimatology archives. Over 10,000 data sets are available, derived from natural sources such as tree rings, ice cores, corals, and ocean and lake sediments.", "abbreviation": "NOAA NCEI Paleoclimatology Data", "access-points": [{"url": "https://www.ncdc.noaa.gov/paleo-search/api", "name": "Paleo Web Services", "type": "Other"}], "support-links": [{"url": "https://www.ncdc.noaa.gov/paleo-search/help", "name": "Search Help", "type": "Help documentation"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data", "name": "About the Data", "type": "Help documentation"}, {"url": "https://www.ncdc.noaa.gov/paleo-search/reports/all?dataTypeId=60&search=true", "name": "List of Physical Repositories", "type": "Help documentation"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/perspectives", "name": "Paleo Perspectives Articles", "type": "Help documentation"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/education-outreach", "name": "Paleoclimatology Education and Outreach", "type": "Help documentation"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/about-the-paleoclimatology-program", "name": "About the Paleoclimatology Program", "type": "Help documentation"}], "data-processes": [{"url": "https://www.ncdc.noaa.gov/paleo-search/", "name": "Search", "type": "data access"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/datasets", "name": "Browse by Dataset Type", "type": "data access"}, {"url": "https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/contributing", "name": "Contributing Data", "type": "data curation"}, {"url": "https://www.ncdc.noaa.gov/paleo-search/reports/recent", "name": "Browse Recent Submissions", "type": "data access"}, {"url": "https://gis.ncdc.noaa.gov/maps/ncei/paleo?layers=0010101000101001", "name": "Interactive Map", "type": "data access"}], "associated-tools": [{"url": "https://www.ncdc.noaa.gov/paleo-search/reports/all?dataTypeId=59&search=true", "name": "Software Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010311", "name": "re3data:r3d100010311", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012149", "name": "SciCrunch:RRID:SCR_012149", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001650", "bsg-d001650"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geophysics", "Earth Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Ecological modeling", "Paleoceanography", "Paleoclimatology", "Paleolimnology"], "countries": ["United States"], "name": "FAIRsharing record for: NOAA National Centers for Environmental Information Paleoclimatology Data", "abbreviation": "NOAA NCEI Paleoclimatology Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.951f2b", "doi": "10.25504/FAIRsharing.951f2b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NOAA National Centers for Environmental Information (NCEI) Paleoclimatology Data repository offers search and download of Paleoclimatic proxy data and Paleoclimate Reconstructions from the NOAA/World Data Service for Paleoclimatology archives. Over 10,000 data sets are available, derived from natural sources such as tree rings, ice cores, corals, and ocean and lake sediments.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2255", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T13:40:13.000Z", "updated-at": "2021-11-24T13:14:49.851Z", "metadata": {"doi": "10.25504/FAIRsharing.q04phv", "name": "NIH Human Microbiome Project", "status": "ready", "homepage": "http://hmpdacc.org/", "identifier": 2255, "description": "The NIH Common Fund Human Microbiome Project (HMP) was established in 2008, with the mission of generating resources that would enable the comprehensive characterization of the human microbiome and analysis of its role in human health and disease. The HMP has characterized the microbial communities found at several different sites on the human body: nasal passages, oral cavity, skin, gastrointestinal tract, and urogenital tract.", "abbreviation": "HMP", "support-links": [{"url": "http://hmpdacc.org/outreach/feedback.php", "type": "Contact form"}, {"url": "http://hmpdacc.org/overview/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://commonfund.nih.gov/hmp/index", "type": "Help documentation"}, {"url": "https://twitter.com/hmpdacc", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "http://hmpdacc.org/resources/osdf-query.php", "name": "OSDF Query", "type": "data access"}, {"url": "http://hmpdacc.org/resources/ftp_instructions.php", "name": "FTP download", "type": "data access"}], "associated-tools": [{"url": "http://hmpdacc.org/sp/", "name": "SitePainter"}]}, "legacy-ids": ["biodbcore-000729", "bsg-d000729"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Microbiome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NIH Human Microbiome Project", "abbreviation": "HMP", "url": "https://fairsharing.org/10.25504/FAIRsharing.q04phv", "doi": "10.25504/FAIRsharing.q04phv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NIH Common Fund Human Microbiome Project (HMP) was established in 2008, with the mission of generating resources that would enable the comprehensive characterization of the human microbiome and analysis of its role in human health and disease. The HMP has characterized the microbial communities found at several different sites on the human body: nasal passages, oral cavity, skin, gastrointestinal tract, and urogenital tract.", "publications": [{"id": 888, "pubmed_id": 22699609, "title": "Structure, function and diversity of the healthy human microbiome.", "year": 2012, "url": "http://doi.org/10.1038/nature11234", "authors": "The Human Microbiome Project Consortium", "journal": "Nature", "doi": "10.1038/nature11234", "created_at": "2021-09-30T08:23:58.052Z", "updated_at": "2021-09-30T11:28:31.185Z"}, {"id": 889, "pubmed_id": 22699610, "title": "A framework for human microbiome research.", "year": 2012, "url": "http://doi.org/10.1038/nature11209", "authors": "The Human Microbiome Project Consortium", "journal": "Nature", "doi": "10.1038/nature11209", "created_at": "2021-09-30T08:23:58.160Z", "updated_at": "2021-09-30T11:28:31.296Z"}], "licence-links": [{"licence-name": "NIH HMP Web Policies and Notices", "licence-id": 585, "link-id": 887, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1792", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:07.770Z", "metadata": {"doi": "10.25504/FAIRsharing.pxm2h8", "name": "MutDB", "status": "deprecated", "contacts": [{"contact-name": "SD Mooney", "contact-email": "smooney@buckinstitute.org"}], "homepage": "http://mutdb.org/", "identifier": 1792, "description": "The goal of MutDB is to annotate human variation data with protein structural information and other functionally relevant information, if available. The mutations are organized by gene. Click on the alphabet below to go alphabetically through the list of genes. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "MutDB", "support-links": [{"url": "http://mutdb.org/snp/help.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://mutpred.mutdb.org", "name": "analyze", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000252", "bsg-d000252"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Expression data", "Mutation analysis", "Structure", "Protein", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MutDB", "abbreviation": "MutDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pxm2h8", "doi": "10.25504/FAIRsharing.pxm2h8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of MutDB is to annotate human variation data with protein structural information and other functionally relevant information, if available. The mutations are organized by gene. Click on the alphabet below to go alphabetically through the list of genes. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 315, "pubmed_id": 15980479, "title": "MutDB services: interactive structural analysis of mutation data.", "year": 2005, "url": "http://doi.org/10.1093/nar/gki404", "authors": "Dantzer J., Moad C., Heiland R., Mooney S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki404", "created_at": "2021-09-30T08:22:53.792Z", "updated_at": "2021-09-30T08:22:53.792Z"}, {"id": 2411, "pubmed_id": 17827212, "title": "MutDB: update on development of tools for the biochemical analysis of genetic variation.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm659", "authors": "Singh A,Olowoyeye A,Baenziger PH,Dantzer J,Kann MG,Radivojac P,Heiland R,Mooney SD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm659", "created_at": "2021-09-30T08:26:55.891Z", "updated_at": "2021-09-30T11:29:35.262Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 968, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2433", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-18T10:37:25.000Z", "updated-at": "2021-12-06T10:49:03.616Z", "metadata": {"doi": "10.25504/FAIRsharing.q31z3g", "name": "Research Data Archive at NCAR", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "rdahelp@ucar.edu"}], "homepage": "https://rda.ucar.edu", "identifier": 2433, "description": "The Research Data Archive (RDA) at NCAR contains a large and diverse collection of meteorological and oceanographic observations, operational and reanalysis model outputs, and remote sensing datasets to support atmospheric and geosciences research.", "abbreviation": "NCAR CISL RDA", "access-points": [{"url": "https://rda.ucar.edu/#!apps_api_desc", "name": "RDA APPS API allows users to programmatically submit and retrieve data subset requests.", "type": "REST"}, {"url": "https://rda.ucar.edu/thredds/catalog/catalog.html", "name": "THREDDS Data Server, provided OpenDAP and OGC based access.", "type": "Other"}], "support-links": [{"url": "rdahelp@ucar.edu", "name": "RDA Help Email", "type": "Support email"}, {"url": "https://rda.ucar.edu/#!FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://helpdesk.ucar.edu/plugins/servlet/desk/site/ncarrc", "name": "RDA Help Desk (Registration Required)", "type": "Help documentation"}, {"url": "https://twitter.com/NCAR_RDA", "type": "Twitter"}], "year-creation": 1965, "data-processes": [{"url": "https://rda.ucar.edu/#!lfd?nb=y", "name": "Browse", "type": "data access"}, {"url": "https://rda.ucar.edu/#!rdadocs", "name": "RDA data curation documentation", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010050", "name": "re3data:r3d100010050", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000915", "bsg-d000915"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Earth Science", "Atmospheric Science", "Oceanography", "Hydrology"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["weather"], "countries": ["United States"], "name": "FAIRsharing record for: Research Data Archive at NCAR", "abbreviation": "NCAR CISL RDA", "url": "https://fairsharing.org/10.25504/FAIRsharing.q31z3g", "doi": "10.25504/FAIRsharing.q31z3g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Research Data Archive (RDA) at NCAR contains a large and diverse collection of meteorological and oceanographic observations, operational and reanalysis model outputs, and remote sensing datasets to support atmospheric and geosciences research.", "publications": [], "licence-links": [{"licence-name": "UCAR Terms of Use", "licence-id": 800, "link-id": 882, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3145", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-20T11:50:17.000Z", "updated-at": "2021-11-24T13:13:46.626Z", "metadata": {"doi": "10.25504/FAIRsharing.iC6iSd", "name": "Spatio-temporal cell atlas of the human brain", "status": "ready", "contacts": [{"contact-name": "Xing-Ming Zhao", "contact-email": "xmzhao@fudan.edu.cn", "contact-orcid": "0000-0002-3335-6439"}], "homepage": "http://stab.comp-sysbio.org", "citations": [{"doi": "10.1093/nar/gkaa762", "publication-id": 3028}], "identifier": 3145, "description": "STAB is a comprehensive cell atlas resource for the human brain, containing single-cell gene expression profiling of 42 cell subtypes across 20 brain regions and 11 developmental periods. With cell subtypes and their marker genes defined by a unified-pipeline, STAB resolves cell types at a finer resolution and enables one to explore the cellular compositions and transcriptome states of distinct brain regions across the development in an objective way. Furthermore, the marker genes associated with each cell subtype and the functional enrichment analysis provided by STAB make it possible to investigate the associations between cell subtypes and phenotypes of interest, e.g., neuropsychiatric disorders.", "abbreviation": "STAB", "support-links": [{"url": "http://stab.comp-sysbio.org/help/", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "http://stab.comp-sysbio.org/tools/query", "name": "Query", "type": "data access"}, {"url": "http://stab.comp-sysbio.org/explore/cell-subtype/cell_subtype", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://stab.comp-sysbio.org/tool/cellbrowser/index.html", "name": "Cell browser"}]}, "legacy-ids": ["biodbcore-001656", "bsg-d001656"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurogenetics", "Neurobiology", "Bioinformatics", "Developmental Neurobiology", "Developmental Biology", "Life Science", "Cell Biology"], "domains": ["Gene expression", "Brain"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Spatio-temporal cell atlas of the human brain", "abbreviation": "STAB", "url": "https://fairsharing.org/10.25504/FAIRsharing.iC6iSd", "doi": "10.25504/FAIRsharing.iC6iSd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: STAB is a comprehensive cell atlas resource for the human brain, containing single-cell gene expression profiling of 42 cell subtypes across 20 brain regions and 11 developmental periods. With cell subtypes and their marker genes defined by a unified-pipeline, STAB resolves cell types at a finer resolution and enables one to explore the cellular compositions and transcriptome states of distinct brain regions across the development in an objective way. Furthermore, the marker genes associated with each cell subtype and the functional enrichment analysis provided by STAB make it possible to investigate the associations between cell subtypes and phenotypes of interest, e.g., neuropsychiatric disorders.", "publications": [{"id": 3028, "pubmed_id": null, "title": "STAB: a spatio-temporal cell atlas of the human brain", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa762", "authors": "Liting Song, Shaojun Pan, Zichao Zhang, Longhao Jia, Wei-Hua Chen, and Xing-Ming Zhao", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa762", "created_at": "2021-09-30T08:28:13.200Z", "updated_at": "2021-09-30T08:28:13.200Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1626", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:19.468Z", "metadata": {"doi": "10.25504/FAIRsharing.bp5hpt", "name": "Phenomics of yeast Mutants", "status": "ready", "contacts": [{"contact-name": "Brenda Andrews", "contact-email": "brenda.andrews@utoronto.ca"}], "homepage": "http://phenom.ccbr.utoronto.ca/", "identifier": 1626, "description": "PhenoM (Phenomics of yeast Mutants) stores, retrieves, visualises and data mines the quantitative single-cell measurements extracted from micrographs of temperature-sensitive mutant cells. PhenoM allows users to rapidly search and retrieve raw images and their quantified morphological data for genes of interest. The database also provides several data-mining tools, including a PhenoBlast module for phenotypic comparison between mutant strains and a Gene Ontology module for functional enrichment analysis of gene sets showing similar morphological alterations.", "abbreviation": "PhenoM", "support-links": [{"url": "http://phenom.ccbr.utoronto.ca/help.jsp", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://phenom.ccbr.utoronto.ca/download.jsp", "name": "file download(tab-delimited,images)", "type": "data access"}, {"url": "http://phenom.ccbr.utoronto.ca/index.jsp", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012722", "name": "re3data:r3d100012722", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006970", "name": "SciCrunch:RRID:SCR_006970", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000082", "bsg-d000082"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Mining", "Life Science"], "domains": ["Gene Ontology enrichment", "Image", "Mutation", "Phenotype", "Morphology", "Gene"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Phenomics of yeast Mutants", "abbreviation": "PhenoM", "url": "https://fairsharing.org/10.25504/FAIRsharing.bp5hpt", "doi": "10.25504/FAIRsharing.bp5hpt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhenoM (Phenomics of yeast Mutants) stores, retrieves, visualises and data mines the quantitative single-cell measurements extracted from micrographs of temperature-sensitive mutant cells. PhenoM allows users to rapidly search and retrieve raw images and their quantified morphological data for genes of interest. The database also provides several data-mining tools, including a PhenoBlast module for phenotypic comparison between mutant strains and a Gene Ontology module for functional enrichment analysis of gene sets showing similar morphological alterations.", "publications": [{"id": 130, "pubmed_id": 21441928, "title": "Systematic exploration of essential yeast gene function with temperature-sensitive mutants.", "year": 2011, "url": "http://doi.org/10.1038/nbt.1832", "authors": "Li Z., Vizeacoumar FJ., Bahr S., Li J., Warringer J., Vizeacoumar FS., Min R., Vandersluis B., Bellay J., Devit M., Fleming JA., Stephens A., Haase J., Lin ZY., Baryshnikova A., Lu H., Yan Z., Jin K., Barker S., Datti A., Giaever G., Nislow C., Bulawa C., Myers CL., Costanzo M., Gingras AC., Zhang Z., Blomberg A., Bloom K., Andrews B., Boone C.,", "journal": "Nat. Biotechnol.", "doi": "10.1038/nbt.1832", "created_at": "2021-09-30T08:22:34.247Z", "updated_at": "2021-09-30T08:22:34.247Z"}, {"id": 1576, "pubmed_id": 22009677, "title": "PhenoM: a database of morphological phenotypes caused by mutation of essential genes in Saccharomyces cerevisiae.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr827", "authors": "Jin K,Li J,Vizeacoumar FS,Li Z,Min R,Zamparo L,Vizeacoumar FJ,Datti A,Andrews B,Boone C,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr827", "created_at": "2021-09-30T08:25:16.676Z", "updated_at": "2021-09-30T11:29:14.311Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1675", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.928Z", "metadata": {"doi": "10.25504/FAIRsharing.h4etg", "name": "VIRsiRNAdb", "status": "ready", "contacts": [{"contact-name": "Manoj Kumar", "contact-email": "manojk@imtech.res.in"}], "homepage": "http://crdd.osdd.net/servers/virsirnadb", "identifier": 1675, "description": "VIRsiRNAdb contains information on experimentally validated Viral siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", "abbreviation": "VIRsiRNAdb", "support-links": [{"url": "http://crdd.osdd.net/servers/virsirnadb/details.php#database", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/VIRsiRNAdb", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download", "type": "data access"}, {"name": "web service", "type": "data access"}, {"url": "http://crdd.osdd.net/servers/virsirnadb/submission.php", "name": "Submit", "type": "data access"}, {"url": "http://crdd.osdd.net/servers/virsirnadb/advance.php", "name": "Advance Search", "type": "data access"}, {"url": "http://crdd.osdd.net/servers/virsirnadb/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://crdd.osdd.net/servers/virsirnadb/siRNAmap.php", "name": "siRNAmap", "type": "data access"}, {"url": "http://crdd.osdd.net/servers/virsirnadb/siTarAlign.php", "name": "siTarAlign", "type": "data access"}], "associated-tools": [{"url": "http://crdd.osdd.net/servers/virsirnadb/VIRsiRNAblast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000131", "bsg-d000131"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "RNA interference", "Viral genome", "Small interfering RNA", "Short Hairpin RNA"], "taxonomies": ["Arenaviridae", "Bunyaviridae", "Coronaviridae", "Filoviridae", "Flaviviridae", "Hepadnaviridae", "Hepeviridae", "Herpesviridae", "Orthomyxoviridae", "Papillomaviridae", "Paramyxoviridae", "Parvoviridae", "Picornaviridae", "Polyomaviridae", "Poxviridae", "Reoviridae", "Rhabdoviridae", "Togaviridae"], "user-defined-tags": ["Virus inhibiting RNAi"], "countries": ["India"], "name": "FAIRsharing record for: VIRsiRNAdb", "abbreviation": "VIRsiRNAdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.h4etg", "doi": "10.25504/FAIRsharing.h4etg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VIRsiRNAdb contains information on experimentally validated Viral siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", "publications": [{"id": 1119, "pubmed_id": 22139916, "title": "VIRsiRNAdb: a curated database of experimentally validated viral siRNA/shRNA.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1147", "authors": "Thakur N,Qureshi A,Kumar M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1147", "created_at": "2021-09-30T08:24:23.970Z", "updated_at": "2021-09-30T11:28:59.360Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2823", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-17T02:32:43.000Z", "updated-at": "2021-11-24T13:13:07.259Z", "metadata": {"doi": "10.25504/FAIRsharing.ZKahvn", "name": "DNA Methylation Interactive Visualization Database", "status": "ready", "contacts": [{"contact-name": "Wubin Ding", "contact-email": "ding_wu_bin@163.com", "contact-orcid": "0000-0002-5355-7561"}], "homepage": "http://www.unimd.org/dnmivd/", "citations": [{"doi": "gkz830", "pubmed-id": 31598709, "publication-id": 2577}], "identifier": 2823, "description": "DNMIVD is a comprehensive annotation and interactive visualization database for DNA methylation profile of diverse human cancer constructed with high throughput microarray data from TCGA and GEO databases, and it also integrates some data from Pancan-meQTL and HACER databases.", "abbreviation": "DNMIVD", "support-links": [{"url": "http://119.3.41.228/dnmivd/Help/", "name": "Help Documentation", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "http://119.3.41.228/dnmivd/browse/", "name": "Browse Data", "type": "data access"}, {"url": "http://119.3.41.228/dnmivd/search/", "name": "Search Data", "type": "data access"}, {"url": "http://119.3.41.228/dnmivd/download/", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://119.3.41.228/dnmivd/model/", "name": "Diagnostic / Prognostic Model"}]}, "legacy-ids": ["biodbcore-001322", "bsg-d001322"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Epigenetics", "Data Visualization"], "domains": ["Cancer", "DNA methylation", "Methylation", "Tumor", "Diagnosis", "Prognosis", "Quantitative trait loci"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: DNA Methylation Interactive Visualization Database", "abbreviation": "DNMIVD", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZKahvn", "doi": "10.25504/FAIRsharing.ZKahvn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DNMIVD is a comprehensive annotation and interactive visualization database for DNA methylation profile of diverse human cancer constructed with high throughput microarray data from TCGA and GEO databases, and it also integrates some data from Pancan-meQTL and HACER databases.", "publications": [{"id": 2565, "pubmed_id": 30696380, "title": "Integrative analysis identifies potential DNA methylation biomarkers for pan-cancer diagnosis and prognosis.", "year": 2019, "url": "http://doi.org/10.1080/15592294.2019.1568178", "authors": "Ding W,Chen G,Shi T", "journal": "Epigenetics", "doi": "10.1080/15592294.2019.1568178", "created_at": "2021-09-30T08:27:14.563Z", "updated_at": "2021-09-30T08:27:14.563Z"}, {"id": 2577, "pubmed_id": 31598709, "title": "DNMIVD: DNA methylation interactive visualization database.", "year": 2019, "url": "https://doi.org/10.1093/nar/gkz830", "authors": "Ding W,Chen J,Feng G,Chen G,Wu J,Guo Y,Ni X,Shi T", "journal": "Nucleic Acids Research", "doi": "gkz830", "created_at": "2021-09-30T08:27:16.059Z", "updated_at": "2021-09-30T11:29:39.712Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2653", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-08T10:17:16.000Z", "updated-at": "2022-02-08T10:38:46.575Z", "metadata": {"doi": "10.25504/FAIRsharing.1b3329", "name": "PROtein-protein compleX MutAtion ThErmodynamics Database", "status": "ready", "contacts": [{"contact-name": "Michael Gromiha", "contact-email": "gromiha@iitm.ac.in", "contact-orcid": "0000-0002-1776-4096"}], "homepage": "http://www.iitm.ac.in/bioinfo/PROXiMATE/index.html", "citations": [{"doi": "10.1093/bioinformatics/btx312", "pubmed-id": 28498885, "publication-id": 2240}], "identifier": 2653, "description": "PROXiMATE is a database of thermodynamic data for more than 6000 missense mutations in 174 heterodimeric protein-protein complexes, supplemented with interaction network data from STRING database, solvent accessibility, sequence, structural and functional information, experimental conditions and literature information. Additional features include complex structure visualization, search and display options, download options and a provision for users to upload their data.", "abbreviation": "PROXiMATE", "support-links": [{"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/faqs.py", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/tutorial.py", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/search.py", "name": "search", "type": "data access"}, {"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/wild.py", "name": "browse", "type": "data access"}, {"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/upload.py", "name": "upload", "type": "data curation"}, {"url": "https://www.iitm.ac.in/bioinfo/cgi-bin/PROXiMATE/download.py", "name": "Download (by request)", "type": "data release"}]}, "legacy-ids": ["biodbcore-001144", "bsg-d001144"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Thermodynamics", "Biology"], "domains": ["Molecular structure", "Protein structure", "Computational biological predictions", "Protein interaction", "Protein-containing complex", "Mutation", "High-throughput screening", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: PROtein-protein compleX MutAtion ThErmodynamics Database", "abbreviation": "PROXiMATE", "url": "https://fairsharing.org/10.25504/FAIRsharing.1b3329", "doi": "10.25504/FAIRsharing.1b3329", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PROXiMATE is a database of thermodynamic data for more than 6000 missense mutations in 174 heterodimeric protein-protein complexes, supplemented with interaction network data from STRING database, solvent accessibility, sequence, structural and functional information, experimental conditions and literature information. Additional features include complex structure visualization, search and display options, download options and a provision for users to upload their data.", "publications": [{"id": 2240, "pubmed_id": 28498885, "title": "PROXiMATE: a database of mutant protein-protein complex thermodynamics and kinetics.", "year": 2017, "url": "http://doi.org/10.1093/bioinformatics/btx312", "authors": "Jemimah S,Yugandhar K,Michael Gromiha M", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btx312", "created_at": "2021-09-30T08:26:32.467Z", "updated_at": "2021-09-30T08:26:32.467Z"}], "licence-links": [{"licence-name": "PROXiMATE Disclaimer", "licence-id": 686, "link-id": 921, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2259", "type": "fairsharing-records", "attributes": {"created-at": "2016-01-06T08:30:27.000Z", "updated-at": "2021-12-06T10:49:02.465Z", "metadata": {"doi": "10.25504/FAIRsharing.pxr7x2", "name": "SwissLipids", "status": "ready", "contacts": [{"contact-name": "Alan Bridge", "contact-email": "swisslipids@isb-sib.ch", "contact-orcid": "0000-0003-2148-9135"}], "homepage": "http://www.swisslipids.org/#/", "identifier": 2259, "description": "SwissLipids is an expert-curated resource that provides a framework for the integration of lipid and lipidomic data with biological knowledge and models. SwissLipids is updated daily.", "abbreviation": "SwissLipids", "access-points": [{"url": "http://www.swisslipids.org/#/api", "name": "Programmatic access", "type": "REST"}], "support-links": [{"url": "http://www.swisslipids.org/#/about", "name": "About", "type": "Help documentation"}, {"url": "http://www.swisslipids.org/#/news", "name": "News", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://www.swisslipids.org/#/browse_species", "name": "Browse lipid analytes", "type": "data access"}, {"url": "http://www.swisslipids.org/#/browse_tree", "name": "Browse lipid classes", "type": "data access"}, {"url": "http://www.swisslipids.org/#/mapper", "name": "Lipid ID mapping", "type": "data access"}, {"url": "http://www.swisslipids.org/#/advanced", "name": "Advanced search", "type": "data access"}, {"url": "http://www.swisslipids.org/#/downloads", "name": "Download", "type": "data access"}, {"name": "Expert curated lipids", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012603", "name": "re3data:r3d100012603", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000733", "bsg-d000733"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics"], "domains": ["Mass spectrum", "Chemical structure", "Lipid", "Cellular localization", "Molecular interaction", "Enzyme", "Structure", "Literature curation", "Biocuration"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: SwissLipids", "abbreviation": "SwissLipids", "url": "https://fairsharing.org/10.25504/FAIRsharing.pxr7x2", "doi": "10.25504/FAIRsharing.pxr7x2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SwissLipids is an expert-curated resource that provides a framework for the integration of lipid and lipidomic data with biological knowledge and models. SwissLipids is updated daily.", "publications": [{"id": 187, "pubmed_id": 25943471, "title": "The SwissLipids knowledgebase for lipid biology.", "year": 2015, "url": "http://doi.org/10.1093/bioinformatics/btv285", "authors": "Aimo L,Liechti R,Hyka-Nouspikel N,Niknejad A,Gleizes A,Gotz L,Kuznetsov D,David FP,van der Goot FG,Riezman H,Bougueleret L,Xenarios I,Bridge A", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btv285", "created_at": "2021-09-30T08:22:40.522Z", "updated_at": "2021-09-30T08:22:40.522Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)", "licence-id": 173, "link-id": 871, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2215", "type": "fairsharing-records", "attributes": {"created-at": "2015-07-09T12:46:56.000Z", "updated-at": "2021-12-08T09:43:12.706Z", "metadata": {"doi": "10.25504/FAIRsharing.nv3g3d", "name": "EpiFactors", "status": "deprecated", "contacts": [{"contact-name": "Yulia Medvedeva", "contact-email": "ju.medvedeva@gmail.com"}], "homepage": "http://www.epifactors.autosome.ru/", "citations": [], "identifier": 2215, "description": "EpiFactors is a web-accessible database that provides broad information about human proteins and complexes involved in epigenetic regulation. It also lists corresponding genes and their expression levels in several samples, in particular 458 human primary cell samples, 255 different cancer cell lines and 134 human post-mortem tissues. Each protein and complex entry has been provided with links to external public resources.", "abbreviation": "EpiFactors", "support-links": [{"url": "http://epifactors.autosome.ru/description", "type": "Help documentation"}, {"url": "http://epifactors.autosome.ru/description/queries", "type": "Help documentation"}], "year-creation": 2014, "deprecation-date": "2021-12-08", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000689", "bsg-d000689"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenetics", "Life Science"], "domains": ["Expression data", "Cell", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Norway", "Sweden", "Russia", "Spain", "Japan"], "name": "FAIRsharing record for: EpiFactors", "abbreviation": "EpiFactors", "url": "https://fairsharing.org/10.25504/FAIRsharing.nv3g3d", "doi": "10.25504/FAIRsharing.nv3g3d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EpiFactors is a web-accessible database that provides broad information about human proteins and complexes involved in epigenetic regulation. It also lists corresponding genes and their expression levels in several samples, in particular 458 human primary cell samples, 255 different cancer cell lines and 134 human post-mortem tissues. Each protein and complex entry has been provided with links to external public resources.", "publications": [{"id": 1942, "pubmed_id": 26153137, "title": "EpiFactors: a comprehensive database of human epigenetic factors and complexes.", "year": 2015, "url": "http://doi.org/10.1093/database/bav067", "authors": "Medvedeva YA,Lennartsson A,Ehsani R,Kulakovskiy IV,Vorontsov IE,Panahandeh P,Khimulya G,Kasukawa T,Drablos F", "journal": "Database (Oxford)", "doi": "10.1093/database/bav067", "created_at": "2021-09-30T08:25:58.547Z", "updated_at": "2021-09-30T08:25:58.547Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2639", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-05T10:04:03.000Z", "updated-at": "2022-02-08T10:38:39.454Z", "metadata": {"doi": "10.25504/FAIRsharing.fa9ccb", "name": "Satellog", "status": "ready", "contacts": [{"contact-name": "Perseus Missirlis", "contact-email": "perseusm@bcgsc.ca"}], "homepage": "http://satellog.bcgsc.ca/", "identifier": 2639, "description": "Satellog is a database that catalogs all pure 1-16 repeat unit satellite repeats in the human genome along with supplementary data. Satellog analyzes each pure repeat in UniGene clusters for evidence of repeat polymorphism.", "abbreviation": "Satellog", "support-links": [{"url": "satellog@bcgsc.ca", "type": "Support email"}, {"url": "http://satellog.bcgsc.ca/tutorial.php", "type": "Help documentation"}, {"url": "http://satellog.bcgsc.ca/documentation.php", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://satellog.bcgsc.ca/index.php", "name": "Query", "type": "data access"}, {"url": "http://satellog.bcgsc.ca/source.php", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001130", "bsg-d001130"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Genetic polymorphism", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Satellog", "abbreviation": "Satellog", "url": "https://fairsharing.org/10.25504/FAIRsharing.fa9ccb", "doi": "10.25504/FAIRsharing.fa9ccb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Satellog is a database that catalogs all pure 1-16 repeat unit satellite repeats in the human genome along with supplementary data. Satellog analyzes each pure repeat in UniGene clusters for evidence of repeat polymorphism.", "publications": [{"id": 1291, "pubmed_id": 15949044, "title": "Satellog: a database for the identification and prioritization of satellite repeats in disease association studies.", "year": 2005, "url": "http://doi.org/10.1186/1471-2105-6-145", "authors": "Missirlis PI,Mead CL,Butland SL,Ouellette BF,Devon RS,Leavitt BR,Holt RA", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-6-145", "created_at": "2021-09-30T08:24:44.092Z", "updated_at": "2021-09-30T08:24:44.092Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3156", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-24T12:07:07.000Z", "updated-at": "2022-02-08T10:34:28.866Z", "metadata": {"doi": "10.25504/FAIRsharing.fa3c0f", "name": "Ocean Data Explorer", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@aoos.org"}], "homepage": "https://portal.aoos.org/", "identifier": 3156, "description": "The Ocean Data Explorer allows scientists, managers, and the general public to discover and access information including real-time conditions, operational and research forecasts, satellite observations, and other spatially referenced datasets that describe the regional biological, chemical, and physical characteristics. A number of functions are available including custom comparisons of datasets, instrument metadata and provenance information, and dataset download in a variety of formats.", "abbreviation": null, "support-links": [{"url": "https://portal.aoos.org/help/", "name": "Help Pages", "type": "Help documentation"}], "data-processes": [{"url": "https://portal.aoos.org/#search", "name": "Search Data Catalog", "type": "data access"}, {"url": "https://portal.aoos.org/#map/launch/8c5dd704-59ad-11e1-bb67-0019b9dae22b", "name": "Map Interface", "type": "data access"}, {"url": "https://portal.aoos.org/#search?tagId=Physical%20Oceanography&q=&page=", "name": "Browse Physical Oceanography Data", "type": "data access"}, {"url": "https://portal.aoos.org/#search?tagId=Models%20and%20Forecasts&q=&page=", "name": "Browse Models and Forecasts", "type": "data access"}, {"url": "https://portal.aoos.org/#search?tagId=Real%20Time%20Observations&q=&page=", "name": "Browse Real-Time Observations", "type": "data access"}, {"url": "https://portal.aoos.org/#search?tagId=Sea%20Ice&q=&page=", "name": "Browse Sea Ice Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001667", "bsg-d001667"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Marine Biology", "Oceanography", "Hydrology"], "domains": ["Marine environment", "Modeling and simulation"], "taxonomies": ["All"], "user-defined-tags": ["Forecasting", "Fossil Fuel", "Sea ice"], "countries": ["United States"], "name": "FAIRsharing record for: Ocean Data Explorer", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.fa3c0f", "doi": "10.25504/FAIRsharing.fa3c0f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ocean Data Explorer allows scientists, managers, and the general public to discover and access information including real-time conditions, operational and research forecasts, satellite observations, and other spatially referenced datasets that describe the regional biological, chemical, and physical characteristics. A number of functions are available including custom comparisons of datasets, instrument metadata and provenance information, and dataset download in a variety of formats.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2552", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-13T16:03:33.000Z", "updated-at": "2021-11-24T13:14:54.248Z", "metadata": {"doi": "10.25504/FAIRsharing.8gzcwa", "name": "UniCarb-DB", "status": "ready", "contacts": [{"contact-name": "Niclas Karlsson", "contact-email": "niclas.karlsson@medkem.gu.se", "contact-orcid": "0000-0002-3045-2628"}], "homepage": "http://www.unicarb-db.org", "citations": [{"doi": "10.1016/j.bbapap.2013.04.018", "pubmed-id": 23624262, "publication-id": 2188}], "identifier": 2552, "description": "UniCarb-DB is a curated database of glycomic mass spectrometry fragment data.", "abbreviation": "UniCarb-DB", "support-links": [{"url": "https://twitter.com/NG_Karlsson", "name": "@NG_Karlsson", "type": "Twitter"}, {"url": "https://twitter.com/unicarb-db", "name": "@unicarb-db", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://unicarb-db.expasy.org/search", "name": "Search", "type": "data access"}, {"url": "https://unicarb-db.expasy.org/search#tab_advanced", "name": "Advanced Search", "type": "data access"}, {"url": "https://unicarb-db.expasy.org/search#tab_msms", "name": "MS/MS Search", "type": "data access"}, {"url": "https://unicarb-db.expasy.org/library", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001035", "bsg-d001035"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Glycomics", "Biomedical Science"], "domains": ["Mass spectrum"], "taxonomies": ["All"], "user-defined-tags": ["Glycome"], "countries": ["Sweden", "Germany", "Australia", "Ireland", "Switzerland", "Japan"], "name": "FAIRsharing record for: UniCarb-DB", "abbreviation": "UniCarb-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.8gzcwa", "doi": "10.25504/FAIRsharing.8gzcwa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UniCarb-DB is a curated database of glycomic mass spectrometry fragment data.", "publications": [{"id": 2188, "pubmed_id": 23624262, "title": "Validation of the curation pipeline of UniCarb-DB: building a global glycan reference MS/MS repository.", "year": 2013, "url": "http://doi.org/10.1016/j.bbapap.2013.04.018", "authors": "Campbell MP,Nguyen-Khuong T,Hayes CA,Flowers SA,Alagesan K,Kolarich D,Packer NH,Karlsson NG", "journal": "Biochim Biophys Acta", "doi": "10.1016/j.bbapap.2013.04.018", "created_at": "2021-09-30T08:26:26.671Z", "updated_at": "2021-09-30T08:26:26.671Z"}, {"id": 2532, "pubmed_id": 27743371, "title": "Databases and Associated Tools for Glycomics and Glycoproteomics.", "year": 2016, "url": "http://doi.org/10.1007/978-1-4939-6493-2_18", "authors": "Lisacek F,Mariethoz J,Alocci D,Rudd PM,Abrahams JL,Campbell MP,Packer NH,Stahle J,Widmalm G,Mullen E,Adamczyk B,Rojas-Macias MA,Jin C,Karlsson NG", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-6493-2_18", "created_at": "2021-09-30T08:27:10.643Z", "updated_at": "2021-09-30T08:27:10.643Z"}, {"id": 2795, "pubmed_id": 21398669, "title": "UniCarb-DB: a database resource for glycomic discovery.", "year": 2011, "url": "http://doi.org/10.1093/bioinformatics/btr137", "authors": "Hayes CA,Karlsson NG,Struwe WB,Lisacek F,Rudd PM,Packer NH,Campbell MP", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btr137", "created_at": "2021-09-30T08:27:43.662Z", "updated_at": "2021-09-30T08:27:43.662Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported (CC BY-NC-ND 3.0 )", "licence-id": 178, "link-id": 205, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2629", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-01T13:08:26.000Z", "updated-at": "2021-11-24T13:19:37.155Z", "metadata": {"doi": "10.25504/FAIRsharing.2GMztk", "name": "ORTHOlogous MAmmalian Markers", "status": "ready", "contacts": [{"contact-name": "Emmanuel Douzery", "contact-email": "emmanuel.douzery@univ-montp2.fr", "contact-orcid": "0000-0001-5286-647X"}], "homepage": "http://www.orthomam.univ-montp2.fr/orthomam/html/", "identifier": 2629, "description": "ORTHOlogous MAmmalian Markers database (OrthoMaM) describes the evolutionary dynamics of orthologous genes in mammalian genomes using a phylogenetic framework.", "abbreviation": "OrthoMaM", "support-links": [{"url": "http://www.orthomam.univ-montp2.fr/orthomam/html/index.php?article=help", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.orthomam.univ-montp2.fr/orthomam/html/index.php?article=exons_tax_and_chr_list", "name": "browse", "type": "data access"}, {"url": "http://www.orthomam.univ-montp2.fr/orthomam/html/index.php?article=Request", "name": "query", "type": "data access"}, {"url": "http://www.orthomam.univ-montp2.fr/orthomam/html/index.php?article=blast_orthomam", "name": "blast", "type": "data access"}, {"url": "http://www.orthomam.univ-montp2.fr/orthomam/html/index.php?article=OrthoMammRelease", "name": "Data release", "type": "data release"}]}, "legacy-ids": ["biodbcore-001118", "bsg-d001118"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Orthologous", "Genome"], "taxonomies": ["Mammalia"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: ORTHOlogous MAmmalian Markers", "abbreviation": "OrthoMaM", "url": "https://fairsharing.org/10.25504/FAIRsharing.2GMztk", "doi": "10.25504/FAIRsharing.2GMztk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ORTHOlogous MAmmalian Markers database (OrthoMaM) describes the evolutionary dynamics of orthologous genes in mammalian genomes using a phylogenetic framework.", "publications": [{"id": 204, "pubmed_id": 24723423, "title": "OrthoMaM v8: a database of orthologous exons and coding sequences for comparative genomics in mammals.", "year": 2014, "url": "http://doi.org/10.1093/molbev/msu132", "authors": "Douzery EJ,Scornavacca C,Romiguier J,Belkhir K,Galtier N,Delsuc F,Ranwez V", "journal": "Mol Biol Evol", "doi": "10.1093/molbev/msu132", "created_at": "2021-09-30T08:22:42.256Z", "updated_at": "2021-09-30T08:22:42.256Z"}, {"id": 209, "pubmed_id": 18053139, "title": "OrthoMaM: a database of orthologous genomic markers for placental mammal phylogenetics.", "year": 2007, "url": "http://doi.org/10.1186/1471-2148-7-241", "authors": "Ranwez V,Delsuc F,Ranwez S,Belkhir K,Tilak MK,Douzery EJ", "journal": "BMC Evol Biol", "doi": "10.1186/1471-2148-7-241", "created_at": "2021-09-30T08:22:42.740Z", "updated_at": "2021-09-30T08:22:42.740Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2697", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T10:12:15.000Z", "updated-at": "2021-11-24T13:17:53.838Z", "metadata": {"doi": "10.25504/FAIRsharing.gX56qR", "name": "CowpeaMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://mines.legumeinfo.org/cowpeamine", "identifier": 2697, "description": "CowpeaMine integrates genomic and genetic data for cowpea, Vigna unguiculata. It is built from the LIS tripal.chado database as well as data from publications.", "abbreviation": "CowpeaMine", "access-points": [{"url": "https://mines.legumeinfo.org/cowpeamine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/cowpeamine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/cowpeamine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/cowpeamine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/cowpeamine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/cowpeamine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001194", "bsg-d001194"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": [], "taxonomies": ["Vigna unguiculata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CowpeaMine", "abbreviation": "CowpeaMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.gX56qR", "doi": "10.25504/FAIRsharing.gX56qR", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CowpeaMine integrates genomic and genetic data for cowpea, Vigna unguiculata. It is built from the LIS tripal.chado database as well as data from publications.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 694, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2234", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-12T08:33:32.000Z", "updated-at": "2021-11-24T13:19:30.021Z", "metadata": {"doi": "10.25504/FAIRsharing.syayhh", "name": "E. coli K antigen 3-dimensional structure database", "status": "ready", "contacts": [{"contact-name": "Thenmalarchelvi Rathinavelan", "contact-email": "tr@iith.ac.in"}], "homepage": "http://www.iith.ac.in/EK3D/", "identifier": 2234, "description": "EK3D - an E. coli K antigen 3-dimensional structure database is a repository of 72 E. coli K antigens that provides information about the sugar composition, epimeric & enantiomeric forms and linkages between the sugar monomers.", "abbreviation": "EK3D", "support-links": [{"url": "trlabservices@iith.ac.in", "type": "Support email"}, {"url": "http://www.iith.ac.in/EK3D/documentation.php", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://www.iith.ac.in/EK3D/Kantigenstructures.php", "name": "browse", "type": "data access"}, {"url": "http://www.iith.ac.in/EK3D/search.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000708", "bsg-d000708"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Antigen", "Structure"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: E. coli K antigen 3-dimensional structure database", "abbreviation": "EK3D", "url": "https://fairsharing.org/10.25504/FAIRsharing.syayhh", "doi": "10.25504/FAIRsharing.syayhh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EK3D - an E. coli K antigen 3-dimensional structure database is a repository of 72 E. coli K antigens that provides information about the sugar composition, epimeric & enantiomeric forms and linkages between the sugar monomers.", "publications": [{"id": 1297, "pubmed_id": 26615200, "title": "EK3D: an E. coli K antigen 3-dimensional structure database.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1313", "authors": "Kunduru BR,Nair SA,Rathinavelan T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1313", "created_at": "2021-09-30T08:24:44.789Z", "updated_at": "2021-09-30T11:29:05.560Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2953", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-20T09:23:05.000Z", "updated-at": "2022-02-08T10:39:33.891Z", "metadata": {"doi": "10.25504/FAIRsharing.801eea", "name": "Silkworm Pathogen Database", "status": "ready", "contacts": [{"contact-name": "Tian Li", "contact-email": "lit@swu.edu.cn"}], "homepage": "https://silkpathdb.swu.edu.cn/", "identifier": 2953, "description": "Silkworm Pathogen Database (SilkPathDB) is a comprehensive resource for studying on pathogens of silkworm, including microsporidia, fungi, bacteria and virus. SilkPathDB provides access to not only genomic data including functional annotation of genes and gene products, but also extensive biological information for gene expression data and corresponding researches. SilkPathDB will be help with researches on pathogens of silkworm as well as other Lepidoptera insects.", "abbreviation": "SilkPathDB", "support-links": [{"url": "https://biodb.swu.edu.cn/people/contact", "type": "Contact form"}, {"url": "https://silkpathdb.swu.edu.cn/about", "name": "About", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://silkpathdb.swu.edu.cn/datasets", "name": "Download dataset", "type": "data access"}, {"url": "https://silkpathdb.swu.edu.cn/organisms", "name": "Browse silkworm pathogens", "type": "data access"}, {"url": "https://silkpathdb.swu.edu.cn/blast", "name": "Blast", "type": "data access"}, {"url": "https://silkpathdb.swu.edu.cn/searchgo", "name": "Search Gene Ontology", "type": "data access"}, {"url": "https://silkpathdb.swu.edu.cn/silkpathgo", "name": "Browse Silkworm Pathogen Gene Ontology", "type": "data access"}], "associated-tools": [{"url": "https://biodb.swu.edu.cn/cgi-bin/wego/index.pl", "name": "BGI WEGO"}, {"url": "https://silkpathdb.swu.edu.cn/hmmer", "name": "HMMER Search"}, {"url": "https://silkpathdb.swu.edu.cn/eusecpred", "name": "EUkaryotic SECretome PREDiction pipeline"}, {"url": "https://silkpathdb.swu.edu.cn/prosecpred", "name": "PROkaryotic SECretome PREDiction pipeline"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012186", "name": "re3data:r3d100012186", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001457", "bsg-d001457"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Virology", "Life Science"], "domains": ["DNA sequence data", "Genomic assembly", "Pathogen", "Transposable element", "Messenger RNA", "Amino acid sequence"], "taxonomies": ["Bacteria", "Fungi", "Microsporidia", "Viruses"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Silkworm Pathogen Database", "abbreviation": "SilkPathDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.801eea", "doi": "10.25504/FAIRsharing.801eea", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Silkworm Pathogen Database (SilkPathDB) is a comprehensive resource for studying on pathogens of silkworm, including microsporidia, fungi, bacteria and virus. SilkPathDB provides access to not only genomic data including functional annotation of genes and gene products, but also extensive biological information for gene expression data and corresponding researches. SilkPathDB will be help with researches on pathogens of silkworm as well as other Lepidoptera insects.", "publications": [{"id": 2887, "pubmed_id": 28365723, "title": "SilkPathDB: a comprehensive resource for the study of silkworm pathogens.", "year": 2017, "url": "http://doi.org/10.1093/database/bax001", "authors": "Li T,Pan GQ,Vossbrinck CR,Xu JS,Li CF,Chen J,Long MX,Yang M,Xu XF,Xu C,Debrunner-Vossbrinck BA,Zhou ZY", "journal": "Database (Oxford)", "doi": "10.1093/database/bax001", "created_at": "2021-09-30T08:27:55.527Z", "updated_at": "2021-09-30T08:27:55.527Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2350", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-21T15:24:30.000Z", "updated-at": "2021-11-24T13:19:33.295Z", "metadata": {"doi": "10.25504/FAIRsharing.jhjnp0", "name": "Database of local DNA conformers", "status": "ready", "contacts": [{"contact-name": "Daniel Svozil", "contact-email": "daniel.svozil@vscht.cz", "contact-orcid": "0000-0003-2577-5163"}], "homepage": "http://ich.vscht.cz/projects/dolce/viewHome", "identifier": 2350, "description": "Dolce is a database of DNA structure motifs based on an automatic classification method consisting of the combination of supervised and unsupervised approaches. This workflow has been applied to analyze 816 X-ray and 664 NMR DNA structures released till February 2013. Dinucleotides with unassigned conformations are either classified into one of already known 24 classes or into one of six new classes among so far unclassifiable data, which were newly identified and annotated among X-ray structures by authors of this tool.", "abbreviation": "Dolce", "year-creation": 2013}, "legacy-ids": ["biodbcore-000828", "bsg-d000828"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: Database of local DNA conformers", "abbreviation": "Dolce", "url": "https://fairsharing.org/10.25504/FAIRsharing.jhjnp0", "doi": "10.25504/FAIRsharing.jhjnp0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dolce is a database of DNA structure motifs based on an automatic classification method consisting of the combination of supervised and unsupervised approaches. This workflow has been applied to analyze 816 X-ray and 664 NMR DNA structures released till February 2013. Dinucleotides with unassigned conformations are either classified into one of already known 24 classes or into one of six new classes among so far unclassifiable data, which were newly identified and annotated among X-ray structures by authors of this tool.", "publications": [{"id": 1667, "pubmed_id": 23800225, "title": "Automatic workflow for the classification of local DNA conformations.", "year": 2013, "url": "http://doi.org/10.1186/1471-2105-14-205", "authors": "Cech P,Kukal J,Cerny J,Schneider B,Svozil D", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-14-205", "created_at": "2021-09-30T08:25:26.737Z", "updated_at": "2021-09-30T08:25:26.737Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2165", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:47.059Z", "metadata": {"doi": "10.25504/FAIRsharing.8njqwk", "name": "Candidate Cancer Gene Database", "status": "ready", "contacts": [{"contact-name": "Tim Starr", "contact-email": "star0044@umn.edu", "contact-orcid": "0000-0002-6308-3451"}], "homepage": "http://ccgd-starrlab.oit.umn.edu/", "identifier": 2165, "description": "The Candidate Cancer Gene Database (CCGD) was developed to disseminate the results of transposon-based forward genetic screens in mice that identify candidate cancer genes. The purpose of the database is to allow cancer researchers to quickly determine whether or not a gene, or list of genes, has been identified as a potential cancer driver in a forward genetic screen in mice.", "abbreviation": "CCGD", "support-links": [{"url": "ccgd@umn.edu", "type": "Support email"}, {"url": "http://ccgd-starrlab.oit.umn.edu/tutorial.php", "type": "Help documentation"}, {"url": "http://ccgd-starrlab.oit.umn.edu/help.php", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://ccgd-starrlab.oit.umn.edu/search.php", "name": "search", "type": "data access"}, {"url": "http://ccgd-starrlab.oit.umn.edu/download.php", "name": "download", "type": "data access"}, {"url": "http://ccgd-starrlab.oit.umn.edu/results.php", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000637", "bsg-d000637"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Cancer", "Transposable element", "Gene"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Candidate Cancer Gene Database", "abbreviation": "CCGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.8njqwk", "doi": "10.25504/FAIRsharing.8njqwk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Candidate Cancer Gene Database (CCGD) was developed to disseminate the results of transposon-based forward genetic screens in mice that identify candidate cancer genes. The purpose of the database is to allow cancer researchers to quickly determine whether or not a gene, or list of genes, has been identified as a potential cancer driver in a forward genetic screen in mice.", "publications": [{"id": 1068, "pubmed_id": 25190456, "title": "The Candidate Cancer Gene Database: a database of cancer driver genes from forward genetic screens in mice.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku770", "authors": "Abbott KL,Nyre ET,Abrahante J,Ho YY,Isaksson Vogel R,Starr TK", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku770", "created_at": "2021-09-30T08:24:18.273Z", "updated_at": "2021-09-30T11:28:57.893Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1925", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.905Z", "metadata": {"doi": "10.25504/FAIRsharing.rxe7z2", "name": "PDZBase", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "pdzbase@med.cornell.edu"}], "homepage": "http://abc.med.cornell.edu/pdzbase", "identifier": 1925, "description": "PDZBase is a manually curated protein-protein interaction database developed specifically for interactions involving PDZ domains. PDZBase currently contains 339 experimentally determined protein protein interactions.", "abbreviation": "PDZBase", "support-links": [{"url": "http://icb.med.cornell.edu/crt/PDZBase/index.xml", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://www.innatedb.com/doc/InnateDB_2011_curation_guide.pdf", "name": "manual curation", "type": "data curation"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000390", "bsg-d000390"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein structure", "Protein domain", "Protein interaction", "Ligand", "Molecular interaction", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PDZBase", "abbreviation": "PDZBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.rxe7z2", "doi": "10.25504/FAIRsharing.rxe7z2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDZBase is a manually curated protein-protein interaction database developed specifically for interactions involving PDZ domains. PDZBase currently contains 339 experimentally determined protein protein interactions.", "publications": [{"id": 2122, "pubmed_id": 15513994, "title": "PDZBase: a protein-protein interaction database for PDZ-domains.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bti098", "authors": "Beuming T., Skrabanek L., Niv MY., Mukherjee P., Weinstein H.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti098", "created_at": "2021-09-30T08:26:19.233Z", "updated_at": "2021-09-30T08:26:19.233Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2685", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-19T01:28:55.000Z", "updated-at": "2021-11-24T13:19:38.344Z", "metadata": {"doi": "10.25504/FAIRsharing.1ong6b", "name": "TogoVar", "status": "ready", "contacts": [{"contact-email": "togovar@biosciencedbc.jp"}], "homepage": "https://togovar.biosciencedbc.jp/", "identifier": 2685, "description": "TogoVar (NBDC's integrated database of Japanese genomic variation) is a database that has collected and organized genome sequence differences between individuals (variants) in the Japanese population and disease information associated with them. TogoVar provides variant frequencies in the Japanese population that have been aggregated across research projects. Two available datasets, JGA-NGS and JGA-SNP, are obtained by aggregating individual genomic data that have been registered in the NBDC Human Database / Japanese Genotype-phenotype Archive (JGA). In addition, TogoVar integrates information related to genotypes or phenotypes that has been compiled independently in a variety of different databases and provides information for interpreting variants in a one-stop, easy-to-understand manner. TogoVar has been developed as a joint research project of National Bioscience Database Center (NBDC), Japan Science and Technology Agency (JST) and Database Center for Life Science (DBCLS), Joint Support-Center for Data Science Research, Research Organization of Information and Systems (ROIS) .", "abbreviation": "TogoVar", "support-links": [{"url": "togovar@biosciencedbc.jp", "name": "Contact", "type": "Support email"}, {"url": "https://togovar.biosciencedbc.jp/doc/help?locale=en", "name": "Help", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://togovar.biosciencedbc.jp/doc/about", "name": "About TogoVar", "type": "Help documentation"}, {"url": "https://togovar.biosciencedbc.jp/doc/datasets", "name": "TogoVar Datasets Used", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://togovar.biosciencedbc.jp/downloads", "name": "Data Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001182", "bsg-d001182"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Next generation DNA sequencing", "Single nucleotide polymorphism", "Sequence variant", "Allele frequency"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Japanese population"], "countries": ["Japan"], "name": "FAIRsharing record for: TogoVar", "abbreviation": "TogoVar", "url": "https://fairsharing.org/10.25504/FAIRsharing.1ong6b", "doi": "10.25504/FAIRsharing.1ong6b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TogoVar (NBDC's integrated database of Japanese genomic variation) is a database that has collected and organized genome sequence differences between individuals (variants) in the Japanese population and disease information associated with them. TogoVar provides variant frequencies in the Japanese population that have been aggregated across research projects. Two available datasets, JGA-NGS and JGA-SNP, are obtained by aggregating individual genomic data that have been registered in the NBDC Human Database / Japanese Genotype-phenotype Archive (JGA). In addition, TogoVar integrates information related to genotypes or phenotypes that has been compiled independently in a variety of different databases and provides information for interpreting variants in a one-stop, easy-to-understand manner. TogoVar has been developed as a joint research project of National Bioscience Database Center (NBDC), Japan Science and Technology Agency (JST) and Database Center for Life Science (DBCLS), Joint Support-Center for Data Science Research, Research Organization of Information and Systems (ROIS) .", "publications": [], "licence-links": [{"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 290, "relation": "undefined"}, {"licence-name": "TogoVar Terms of Use and Attribution", "licence-id": 788, "link-id": 291, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2327", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-29T07:45:51.000Z", "updated-at": "2021-11-24T13:19:32.615Z", "metadata": {"doi": "10.25504/FAIRsharing.txcn6k", "name": "NBDC RDF Portal", "status": "ready", "contacts": [{"contact-name": "Hideki Hatanaka", "contact-email": "hideki@biosciencedbc.jp", "contact-orcid": "0000-0002-0587-2460"}], "homepage": "http://integbio.jp/rdf/", "identifier": 2327, "description": "The NBDC RDF Portal provides a collection of life science datasets in RDF (Resource Description Framework). The portal aims to accelerate integrative utilization of the heterogeneous datasets deposited by various research institutions and groups. In this portal, each dataset comes with a summary, downloadable files and a SPARQL endpoint.", "abbreviation": "RDF Portal", "support-links": [{"url": "support@biosciencedbc.jp", "type": "Support email"}], "year-creation": 2015}, "legacy-ids": ["biodbcore-000803", "bsg-d000803"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: NBDC RDF Portal", "abbreviation": "RDF Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.txcn6k", "doi": "10.25504/FAIRsharing.txcn6k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NBDC RDF Portal provides a collection of life science datasets in RDF (Resource Description Framework). The portal aims to accelerate integrative utilization of the heterogeneous datasets deposited by various research institutions and groups. In this portal, each dataset comes with a summary, downloadable files and a SPARQL endpoint.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1576", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:48.141Z", "metadata": {"doi": "10.25504/FAIRsharing.tx95wa", "name": "EcoliWiki: A Wiki-based community resource for Escherichia coli", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ecoliwiki@gmail.com"}], "homepage": "http://ecoliwiki.net", "identifier": 1576, "description": "EcoliWiki is a community-based resource for the annotation of all non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements.", "abbreviation": "EcoliWiki", "access-points": [{"url": "http://ecoliwiki.net/colipedia/index.php/Help:Web_Services", "name": "Web services", "type": "REST"}], "support-links": [{"url": "http://ecoliwiki.net/colipedia/index.php/Category:Help", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://ecoliwiki.net/colipedia/index.php/Category:Education", "name": "Education Pages", "type": "Training documentation"}], "year-creation": 2007, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "community curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}], "associated-tools": [{"url": "http://ecoliwiki.net/colipedia/index.php/Category:BLAST", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000031", "bsg-d000031"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Bioinformatics", "Life Science", "Ontology and Terminology"], "domains": ["Cis element", "Molecular structure", "Citation", "Protein domain", "Expression data", "DNA sequence data", "Gene Ontology enrichment", "PTM site prediction", "Function analysis", "Gene model annotation", "Cellular localization", "Centrally registered identifier", "Genetic interaction", "Transcription factor", "Protocol", "Plasmid", "Cloning plasmid", "Phenotype", "Classification", "Teaching material", "Structure", "Transposable element", "Sequence feature", "Operon", "Homologous", "Orthologous", "Insertion sequence", "Prophage", "Cryptic prophage", "Allele", "Sequence motif", "Genetic strain"], "taxonomies": ["Escherichia coli"], "user-defined-tags": ["Conjugative plasmid", "Expression plasmid", "Molecules per cell", "Phantom genes", "Physical interaction", "Physical properties", "Unmapped gene", "User pages"], "countries": ["United States"], "name": "FAIRsharing record for: EcoliWiki: A Wiki-based community resource for Escherichia coli", "abbreviation": "EcoliWiki", "url": "https://fairsharing.org/10.25504/FAIRsharing.tx95wa", "doi": "10.25504/FAIRsharing.tx95wa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EcoliWiki is a community-based resource for the annotation of all non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements.", "publications": [{"id": 43, "pubmed_id": 19576778, "title": "What we can learn about Escherichia coli through application of Gene Ontology.", "year": 2009, "url": "http://doi.org/10.1016/j.tim.2009.04.004", "authors": "Hu JC., Karp PD., Keseler IM., Krummenacker M., Siegele DA.,", "journal": "Trends Microbiol.", "doi": "10.1016/j.tim.2009.04.004", "created_at": "2021-09-30T08:22:25.055Z", "updated_at": "2021-09-30T08:22:25.055Z"}], "licence-links": [{"licence-name": "EcoliWiki Privacy Policy", "licence-id": 262, "link-id": 2121, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1775", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:36.265Z", "metadata": {"doi": "10.25504/FAIRsharing.hm0s3e", "name": "Therapeutically Relevant Multiple Pathways Database", "status": "deprecated", "contacts": [{"contact-name": "LianYi Han", "contact-email": "lyhan@cz3.nus.edu.sg"}], "homepage": "http://bidd.nus.edu.sg/group/trmp/trmp_ns.asp", "identifier": 1775, "description": "The Therapeutically Relevant Multiple Pathways Database is designed to provide information about such multiple pathways and related therapeutic targets described in the literatures, the targeted disease conditions, and the corresponding drugs/ligands directed at each of these targets. This resource has been marked as Uncertain because its project home can no longer be found either with a general search or on the founding group's website at http://bidd.group/group/about.htm. Please get in touch if you have any information about this resource.", "abbreviation": "TRMP", "support-links": [{"url": "http://bidd.nus.edu.sg/group/trmp/search.asp#querylang", "type": "Help documentation"}, {"url": "http://bidd.nus.edu.sg/group/trmp/legend.html", "type": "Help documentation"}], "data-processes": [{"url": "http://bidd.nus.edu.sg/group/trmp/trmp_ns.asp", "name": "browse", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000233", "bsg-d000233"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Disease", "Pathway model", "Target"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Drug Target"], "countries": ["Singapore"], "name": "FAIRsharing record for: Therapeutically Relevant Multiple Pathways Database", "abbreviation": "TRMP", "url": "https://fairsharing.org/10.25504/FAIRsharing.hm0s3e", "doi": "10.25504/FAIRsharing.hm0s3e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Therapeutically Relevant Multiple Pathways Database is designed to provide information about such multiple pathways and related therapeutic targets described in the literatures, the targeted disease conditions, and the corresponding drugs/ligands directed at each of these targets. This resource has been marked as Uncertain because its project home can no longer be found either with a general search or on the founding group's website at http://bidd.group/group/about.htm. Please get in touch if you have any information about this resource.", "publications": [{"id": 551, "pubmed_id": 15059817, "title": "TRMP: a database of therapeutically relevant multiple pathways.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth233", "authors": "Zheng CJ., Zhou H., Xie B., Han LY., Yap CW., Chen YZ.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth233", "created_at": "2021-09-30T08:23:20.151Z", "updated_at": "2021-09-30T08:23:20.151Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2323", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-03T11:18:49.000Z", "updated-at": "2021-11-24T13:18:07.479Z", "metadata": {"doi": "10.25504/FAIRsharing.xypv6g", "name": "ViBE-Z: The Virtual Brain Explorer for Zebrafish", "status": "deprecated", "contacts": [{"contact-name": "Olaf Ronneberger", "contact-email": "ronneber@informatik.uni-freiburg.de"}], "homepage": "http://vibez.informatik.uni-freiburg.de", "identifier": 2323, "description": "ViBE-Z, the Virtual Brain Explorer for Zebrafish is an imaging and image analysis framework for virtual colocalization studies in larval zebrafish brains, currently available for 72hpf, 48hpf and 96hpf old larvae. ViBE-Z contains a database with precisely aligned gene expression patterns (1um 3 resolution), an anatomical atlas, and a software. This software creates high-quality data sets by fusing multiple confocal microscopic image stacks, and aligns these data sets to the standard larva.", "abbreviation": "ViBE-Z", "access-points": [{"url": "http://vibez.informatik.uni-freiburg.de/#software", "name": "Web interface and downloadable plugins", "type": "Other"}], "year-creation": 2013, "deprecation-date": "2021-9-24", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000799", "bsg-d000799"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy"], "domains": ["Bioimaging", "Microscopy", "Gene expression", "Brain imaging"], "taxonomies": ["Danio rerio"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: ViBE-Z: The Virtual Brain Explorer for Zebrafish", "abbreviation": "ViBE-Z", "url": "https://fairsharing.org/10.25504/FAIRsharing.xypv6g", "doi": "10.25504/FAIRsharing.xypv6g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ViBE-Z, the Virtual Brain Explorer for Zebrafish is an imaging and image analysis framework for virtual colocalization studies in larval zebrafish brains, currently available for 72hpf, 48hpf and 96hpf old larvae. ViBE-Z contains a database with precisely aligned gene expression patterns (1um 3 resolution), an anatomical atlas, and a software. This software creates high-quality data sets by fusing multiple confocal microscopic image stacks, and aligns these data sets to the standard larva.", "publications": [{"id": 1245, "pubmed_id": 22706672, "title": "ViBE-Z: a framework for 3D virtual colocalization analysis in zebrafish larval brains.", "year": 2012, "url": "http://doi.org/10.1038/nmeth.2076", "authors": "Ronneberger O,Liu K,Rath M,Ruebeta D,Mueller T,Skibbe H,Drayer B,Schmidt T,Filippi A,Nitschke R,Brox T,Burkhardt H,Driever W", "journal": "Nat Methods", "doi": "10.1038/nmeth.2076", "created_at": "2021-09-30T08:24:38.865Z", "updated_at": "2021-09-30T08:24:38.865Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3177", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-05T12:43:59.000Z", "updated-at": "2021-12-06T10:47:37.910Z", "metadata": {"name": "International Earth Rotation and Reference Systems Service", "status": "ready", "contacts": [{"contact-name": "Brian Luzum", "contact-email": "brian.luzum@navy.mil"}], "homepage": "https://www.iers.org/IERS/EN/Home/home_node.html", "identifier": 3177, "description": "The primary objectives of the IERS are to serve the astronomical, geodetic and geophysical communities by providing data and standards related to Earth rotation and reference frames.", "abbreviation": "IERS", "access-points": [{"url": "https://www.iers.org/IERS/EN/DataProducts/tools/webservices/webservice.html", "name": "Web services", "type": "SOAP"}], "support-links": [{"url": "central_bureau@iers.org", "name": "General contact", "type": "Support email"}, {"url": "https://www.iers.org/IERS/EN/Service/FAQs/faq_node.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.iers.org/IERS/EN/Service/Glossary/glossary_node.html", "name": "Glossary", "type": "Help documentation"}, {"url": "https://www.iers.org/IERS/EN/Service/Acronyms/acronyms_node.html", "name": "Acronyms", "type": "Help documentation"}], "year-creation": 1987, "data-processes": [{"url": "https://www.iers.org/IERS/EN/DataProducts/data.html", "name": "Access data", "type": "data access"}, {"url": "ftp://ftp.iers.org/", "name": "FTP download", "type": "data access"}], "associated-tools": [{"url": "https://www.iers.org/IERS/EN/DataProducts/tools/tools.html", "name": "Data analysis tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010312", "name": "re3data:r3d100010312", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001688", "bsg-d001688"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cartography", "Astrophysics and Astronomy", "Geodesy", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: International Earth Rotation and Reference Systems Service", "abbreviation": "IERS", "url": "https://fairsharing.org/fairsharing_records/3177", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The primary objectives of the IERS are to serve the astronomical, geodetic and geophysical communities by providing data and standards related to Earth rotation and reference frames.", "publications": [], "licence-links": [{"licence-name": "IERS Terms of Reference", "licence-id": 427, "link-id": 1955, "relation": "undefined"}, {"licence-name": "IERS Legal and Privacy", "licence-id": 426, "link-id": 1956, "relation": "undefined"}, {"licence-name": "IERS Data privacy statement", "licence-id": 425, "link-id": 1959, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3005", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-18T10:30:39.000Z", "updated-at": "2021-12-06T10:47:29.934Z", "metadata": {"name": "International Real-time Magnetic Observatory Network", "status": "ready", "contacts": [{"contact-name": "Alan Thomson", "contact-email": "awpt@bgs.ac.uk"}], "homepage": "https://intermagnet.github.io/", "identifier": 3005, "description": "The INTERMAGNET vision is of a global, real-time, permanent geomagnetic observatory network, which is recognized as a key earth observation system and which provides data that serves scientific research into the earth, from its deep interior to space, and supports operational services benefiting society.", "abbreviation": "INTERMAGNET", "support-links": [{"url": "https://intermagnet.github.io/faq/", "type": "Github"}, {"url": "https://www.intermagnet.org/publication-software/technicalsoft-eng.php", "name": "INTERMAGNET Technical Manual", "type": "Help documentation"}, {"url": "https://intermagnet.github.io/publications.html", "name": "Publications", "type": "Github"}, {"url": "https://intermagnet.github.io/meetings.html", "name": "Meetings", "type": "Github"}, {"url": "https://www.intermagnet.org/publication-software/yearbooks-eng.php", "name": "Yearbooks", "type": "Help documentation"}], "year-creation": 1987, "data-processes": [{"url": "ftp://ftp.seismo.nrcan.gc.ca/intermagnet/", "name": "Download", "type": "data access"}, {"url": "https://www.intermagnet.org/data-donnee/formatdata-eng.php", "name": "Data Formats", "type": "data access"}, {"url": "https://www.intermagnet.org/data-donnee/dataplot-eng.php", "name": "Data - Plotting Service", "type": "data access"}, {"url": "https://www.intermagnet.org/activitymap/activitymap-eng.php", "name": "Geomagnetic Activity Map", "type": "data access"}, {"url": "https://intermagnet.github.io/data_checkers.html", "name": "Data Quality Checking", "type": "data curation"}], "associated-tools": [{"url": "https://intermagnet.github.io/software.html", "name": "Useful applications"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011070", "name": "re3data:r3d100011070", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001513", "bsg-d001513"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["earth observation"], "countries": ["Worldwide"], "name": "FAIRsharing record for: International Real-time Magnetic Observatory Network", "abbreviation": "INTERMAGNET", "url": "https://fairsharing.org/fairsharing_records/3005", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The INTERMAGNET vision is of a global, real-time, permanent geomagnetic observatory network, which is recognized as a key earth observation system and which provides data that serves scientific research into the earth, from its deep interior to space, and supports operational services benefiting society.", "publications": [], "licence-links": [{"licence-name": "INTERMAGNET Data - conditions of use", "licence-id": 444, "link-id": 1105, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1997", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:48.896Z", "metadata": {"doi": "10.25504/FAIRsharing.ktafj3", "name": "Database of genomic structural VARiation", "status": "ready", "contacts": [], "homepage": "https://www.ncbi.nlm.nih.gov/dbvar/", "citations": [], "identifier": 1997, "description": "dbVar is a database of human genomic structural variation where users can search, view, and download data from submitted studies. dbVar stopped supporting data from non-human organisms in 2017, however existing non-human data remains available. In keeping with the common definition of structural variation, most variants are larger than 50 basepairs in length - however a handful of smaller variants may also be found. dbVar provides access to the raw data whenever available, as well as links to additional resources, from both NCBI and elsewhere. It can accept diverse types of events, including inversions, insertions and translocations. Additionally, both germline and somatic variants are accepted.", "abbreviation": "dbVar", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/help/", "name": "Help and FAQ", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/overview/", "name": "Overview of Structural Variation", "type": "Help documentation"}, {"url": "https://ftp.ncbi.nlm.nih.gov/pub/factsheets/Factsheet_dbVar.pdf", "name": "Factsheet (PDF)", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=dbvarnews", "name": "dbVar News Feed", "type": "Blog/News"}], "year-creation": 2010, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/submission", "name": "Submission Guidelines", "type": "data curation"}, {"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/var_summary/", "name": "Browse Variant Types", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/human_hub/", "name": "Browse Structural Variation Data Hub", "type": "data access"}, {"url": "https://github.com/ncbi/dbvar/tree/master/Structural_Variant_Sets/Nonredundant_Structural_Variants", "name": "Download Non-Redundant SVs", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/dbvar/studies/", "name": "Browse Studies", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/dbvar/content/ftp_manifest/", "name": "Download", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010786", "name": "re3data:r3d100010786", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003219", "name": "SciCrunch:RRID:SCR_003219", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000463", "bsg-d000463"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Structural Biology", "Structural Genomics", "Biomedical Science"], "domains": ["DNA structural variation", "Genetic polymorphism", "Insertion", "Genome", "Chromatin structure variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Database of genomic structural VARiation", "abbreviation": "dbVar", "url": "https://fairsharing.org/10.25504/FAIRsharing.ktafj3", "doi": "10.25504/FAIRsharing.ktafj3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: dbVar is a database of human genomic structural variation where users can search, view, and download data from submitted studies. dbVar stopped supporting data from non-human organisms in 2017, however existing non-human data remains available. In keeping with the common definition of structural variation, most variants are larger than 50 basepairs in length - however a handful of smaller variants may also be found. dbVar provides access to the raw data whenever available, as well as links to additional resources, from both NCBI and elsewhere. It can accept diverse types of events, including inversions, insertions and translocations. Additionally, both germline and somatic variants are accepted.", "publications": [{"id": 476, "pubmed_id": 23193291, "title": "DbVar and DGVa: public archives for genomic structural variation.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1213", "authors": "Lappalainen I., Lopez J., Skipper L., Hefferon T., Spalding JD., Garner J., Chen C., Maguire M., Corbett M., Zhou G., Paschall J., Ananiev V., Flicek P., Church DM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1213.", "created_at": "2021-09-30T08:23:11.726Z", "updated_at": "2021-09-30T08:23:11.726Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2389, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2345", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-12T12:11:34.000Z", "updated-at": "2021-11-24T13:13:56.503Z", "metadata": {"doi": "10.25504/FAIRsharing.b6asc0", "name": "General Practice Notebook", "status": "ready", "contacts": [{"contact-email": "support@gpnotebook.co.uk"}], "homepage": "http://www.gpnotebook.co.uk", "identifier": 2345, "description": "GPnotebook is a concise synopsis of the entire field of clinical medicine focused on the needs of the General Practitioner with material organised systematically to ensure rapid retrieval of information. The content of GPnotebook is based on clinical practice in the United Kingdom and provides a clinical reference for general practitioners and medical students; it may also be a useful reference resource for other health professionals. As well as being a clinical reference, GPnotebook also aims to be a tool for clinical education, clinical governance and continuing professional development.", "abbreviation": "GP Notebook", "support-links": [{"url": "http://www.gpnotebook.co.uk/contactUs.cfm", "type": "Contact form"}, {"url": "http://www.gpnotebook.co.uk/gpn_newstestimonials/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.gpnotebook.co.uk/help.cfm", "type": "Help documentation"}, {"url": "http://www.gpnotebook.co.uk/TnC.cfm", "type": "Help documentation"}, {"url": "http://www.gpnotebook.co.uk/aboutus.cfm", "type": "Help documentation"}, {"url": "http://www.gpnotebook.co.uk/app_compare.cfm", "type": "Help documentation"}], "year-creation": 1992, "associated-tools": [{"url": "http://www.gpnotebook.co.uk/web_app_info.cfm", "name": "Mobile Application (non-iPhone)"}, {"url": "https://itunes.apple.com/gb/app/gpnotebook/id492253032", "name": "iPhone App 1.1.0"}, {"url": "https://itunes.apple.com/gb/app/quickmedicine/id844158986", "name": "QUICKmedicine iPhone App 1.0.2"}]}, "legacy-ids": ["biodbcore-000823", "bsg-d000823"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Medicine", "Biomedical Science", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: General Practice Notebook", "abbreviation": "GP Notebook", "url": "https://fairsharing.org/10.25504/FAIRsharing.b6asc0", "doi": "10.25504/FAIRsharing.b6asc0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GPnotebook is a concise synopsis of the entire field of clinical medicine focused on the needs of the General Practitioner with material organised systematically to ensure rapid retrieval of information. The content of GPnotebook is based on clinical practice in the United Kingdom and provides a clinical reference for general practitioners and medical students; it may also be a useful reference resource for other health professionals. As well as being a clinical reference, GPnotebook also aims to be a tool for clinical education, clinical governance and continuing professional development.", "publications": [{"id": 1660, "pubmed_id": 24567602, "title": "20 years of GPnotebook: from a medical student project to a national resource.", "year": 2014, "url": "http://doi.org/10.3399/bjgp14X677202", "authors": "McMorran J,Crowther D,McMorran S", "journal": "Br J Gen Pract", "doi": "10.3399/bjgp14X677202", "created_at": "2021-09-30T08:25:25.954Z", "updated_at": "2021-09-30T08:25:25.954Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2846", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-04T14:32:34.000Z", "updated-at": "2021-11-24T13:19:39.784Z", "metadata": {"doi": "10.25504/FAIRsharing.ZS8uWa", "name": "MetaSRA", "status": "ready", "contacts": [{"contact-name": "Colin Dewey", "contact-email": "colin.dewey@wisc.edu", "contact-orcid": "0000-0003-1498-9254"}], "homepage": "http://metasra.biostat.wisc.edu/", "citations": [{"doi": "10.1093/bioinformatics/btx334", "pubmed-id": 28535296, "publication-id": 2604}], "identifier": 2846, "description": "MetaSRA is a database of normalized SRA human sample-specific metadata following a schema inspired by the metadata organization of the ENCODE project. This schema involves mapping samples to terms in biomedical ontologies, labeling each sample with a sample-type category, and extracting real-valued properties.", "abbreviation": "MetaSRA", "access-points": [{"url": "https://metasra.biostat.wisc.edu/supportpages/api.html", "name": "MetaSRA API", "type": "REST"}], "support-links": [{"url": "https://docs.google.com/forms/d/e/1FAIpQLSc86s4Bi_g1E0vFLpMBwty8JEE3IMFKwasPrFzBAmngILjJQg/viewform", "name": "Send feedback", "type": "Contact form"}, {"url": "http://metasra.biostat.wisc.edu/about.html", "name": "About MetaSRA & FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/forum/#!forum/metasra-users", "name": "Google Group", "type": "Forum"}, {"url": "http://metasra.biostat.wisc.edu/publication.html", "name": "Supplementary Material for Publication", "type": "Help documentation"}, {"url": "https://github.com/deweylab/metasra-pipeline", "name": "GitHub Project", "type": "Github"}], "year-creation": 2017, "data-processes": [{"url": "https://metasra.biostat.wisc.edu/supportpages/download.html", "name": "Download", "type": "data release"}, {"url": "http://metasra.biostat.wisc.edu/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001347", "bsg-d001347"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Life Science"], "domains": ["Nucleic acid sequence", "Biological sample annotation", "RNA sequencing"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Metadata standardization"], "countries": ["United States"], "name": "FAIRsharing record for: MetaSRA", "abbreviation": "MetaSRA", "url": "https://fairsharing.org/10.25504/FAIRsharing.ZS8uWa", "doi": "10.25504/FAIRsharing.ZS8uWa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaSRA is a database of normalized SRA human sample-specific metadata following a schema inspired by the metadata organization of the ENCODE project. This schema involves mapping samples to terms in biomedical ontologies, labeling each sample with a sample-type category, and extracting real-valued properties.", "publications": [{"id": 2604, "pubmed_id": 28535296, "title": "MetaSRA: normalized human sample-specific metadata for the Sequence Read Archive.", "year": 2017, "url": "http://doi.org/10.1093/bioinformatics/btx334", "authors": "Bernstein MN,Doan A,Dewey CN", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btx334", "created_at": "2021-09-30T08:27:19.646Z", "updated_at": "2021-09-30T08:27:19.646Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2980", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-07T10:22:34.000Z", "updated-at": "2022-02-08T10:39:58.327Z", "metadata": {"doi": "10.25504/FAIRsharing.0f86f9", "name": "RRUFF Database", "status": "ready", "contacts": [{"contact-name": "Bob Downs", "contact-email": "rdowns@u.arizona.edu"}], "homepage": "https://rruff.info/", "citations": [{"publication-id": 2976}], "identifier": 2980, "description": "The goal of the RRUFF Database is to store a complete set of spectral data from well characterized minerals, and to make that data publicly available. This data can be used as a standard for mineralogists, geoscientists, gemologists and the general public for the identification of minerals both on earth and in space exploration.", "abbreviation": "RRUFF Database", "support-links": [{"url": "hyang@email.arizona.edu", "name": "Hexiong Yang", "type": "Support email"}, {"url": "https://rruff.info/about/about_general.php", "name": "About", "type": "Help documentation"}, {"url": "https://rruff.info/about/about_status.php", "name": "Mineral Status Values", "type": "Help documentation"}, {"url": "https://rruff.info/about/about_photography.php", "name": "Photography for RRUFF", "type": "Help documentation"}, {"url": "https://rruff.info/about/about_sample_detail.php", "name": "About Database Records", "type": "Help documentation"}, {"url": "https://rruff.info/about/about_equipment.php", "name": "Equipment Used", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://rruff.info/", "name": "Search sample data", "type": "data access"}, {"url": "https://rruff.info/rruff_1.0/reference_search.php", "name": "Reference Search", "type": "data access"}, {"url": "https://rruff.info/zipped_data_files/", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://rruff.info/about/about_software.php", "name": "CrystalSleuth"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010766", "name": "re3data:r3d100010766", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001486", "bsg-d001486"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Gemology", "Chemistry", "Earth Science", "Mineralogy"], "domains": ["Chemical structure", "Raman spectroscopy"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Gemology"], "countries": ["United States"], "name": "FAIRsharing record for: RRUFF Database", "abbreviation": "RRUFF Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.0f86f9", "doi": "10.25504/FAIRsharing.0f86f9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goal of the RRUFF Database is to store a complete set of spectral data from well characterized minerals, and to make that data publicly available. This data can be used as a standard for mineralogists, geoscientists, gemologists and the general public for the identification of minerals both on earth and in space exploration.", "publications": [{"id": 2976, "pubmed_id": null, "title": "The power of databases: The RRUFF project", "year": 2016, "url": "https://rruff.info/about/downloads/HMC1-30.pdf", "authors": "Barbara Lafuente, Robert T Downs, Hexiong Yang, Nate Stone", "journal": "Highlights in Mineralogical Crystallography (pp. 1-29)", "doi": null, "created_at": "2021-09-30T08:28:06.692Z", "updated_at": "2021-09-30T08:28:06.692Z"}], "licence-links": [{"licence-name": "RRUFF Database Terms and Conditions", "licence-id": 715, "link-id": 631, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1919", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.771Z", "metadata": {"doi": "10.25504/FAIRsharing.dntrmf", "name": "Legionella pneumophila genome database", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "cbuch@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/LegioList/", "identifier": 1919, "description": "LegioList is a database dedicated to the analysis of the genomes of Legionella pneumophila strain Paris (endemic in France), strain Lens (epidemic isolate), strain Phildelphia 1, and strain Corby. It also includes the genome of Legionella longbeachae strain NSW150.", "abbreviation": "LegioList", "support-links": [{"url": "http://genolist.pasteur.fr/LegioList/help/general.html", "type": "Help documentation"}], "year-creation": 2004, "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000384", "bsg-d000384"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Genome"], "taxonomies": ["Legionella pneumophila"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Legionella pneumophila genome database", "abbreviation": "LegioList", "url": "https://fairsharing.org/10.25504/FAIRsharing.dntrmf", "doi": "10.25504/FAIRsharing.dntrmf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LegioList is a database dedicated to the analysis of the genomes of Legionella pneumophila strain Paris (endemic in France), strain Lens (epidemic isolate), strain Phildelphia 1, and strain Corby. It also includes the genome of Legionella longbeachae strain NSW150.", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3006", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-19T08:54:58.000Z", "updated-at": "2021-12-06T10:47:30.014Z", "metadata": {"name": "Geological and Environmental Reference Materials", "status": "ready", "contacts": [{"contact-name": "Klaus Peter Jochum", "contact-email": "k.jochum@mpic.de", "contact-orcid": "0000-0002-0135-4578"}], "homepage": "http://georem.mpch-mainz.gwdg.de/", "identifier": 3006, "description": "GeoReM is a Max Planck Institute database for reference materials of geological and environmental interest, such as rock powders, synthetic and natural glasses as well as mineral, isotopic, biological, river water and seawater reference materials. GeoReM contains published analytical data and compilation values (major and trace element concentrations and mass fractions, radiogenic and stable isotope ratios). GeoReM contains all important metadata about the analytical values such as uncertainty, analytical method and laboratory. Sample information and references are also included.", "abbreviation": "GeoReM", "year-creation": 2004, "data-processes": [{"url": "http://georem.mpch-mainz.gwdg.de/sample_query.asp", "name": "Query by Sample Criteria", "type": "data access"}, {"url": "http://georem.mpch-mainz.gwdg.de/sample_query_pref.asp", "name": "Query by Sample Criteria (GeoReM preferred Values)", "type": "data access"}, {"url": "http://georem.mpch-mainz.gwdg.de/chemical_query.asp", "name": "Query by Chemistry", "type": "data access"}, {"url": "http://georem.mpch-mainz.gwdg.de/chemical_query_biblio.asp", "name": "Chemical Criteria based on Bibliography", "type": "data access"}, {"url": "http://georem.mpch-mainz.gwdg.de/bibliographic_query.asp", "name": "Bibliographic Query", "type": "data access"}, {"url": "http://georem.mpch-mainz.gwdg.de/method_institution_query.asp", "name": "Query by Methods and Institutions", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011123", "name": "re3data:r3d100011123", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001514", "bsg-d001514"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geochemistry", "Environmental Science", "Geology", "Earth Science", "Mineralogy", "Biology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Geological and Environmental Reference Materials", "abbreviation": "GeoReM", "url": "https://fairsharing.org/fairsharing_records/3006", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeoReM is a Max Planck Institute database for reference materials of geological and environmental interest, such as rock powders, synthetic and natural glasses as well as mineral, isotopic, biological, river water and seawater reference materials. GeoReM contains published analytical data and compilation values (major and trace element concentrations and mass fractions, radiogenic and stable isotope ratios). GeoReM contains all important metadata about the analytical values such as uncertainty, analytical method and laboratory. Sample information and references are also included.", "publications": [{"id": 2983, "pubmed_id": null, "title": "GeoReM: A New Geochemical Database for Reference Materials and Isotopic Standards", "year": 2005, "url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1751-908X.2005.tb00904.x", "authors": "Klaus Peter Jochum, Uwe Nohl, Kirstin Herwig, Esin Lammel, Brigitte Stoll, Albrecht W. Hofmann", "journal": "Geostandards and Geoanalytical Research 29 (3) [2005] 333-338", "doi": null, "created_at": "2021-09-30T08:28:07.557Z", "updated_at": "2021-09-30T08:28:07.557Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2850", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-06T15:04:14.000Z", "updated-at": "2021-11-24T13:17:24.318Z", "metadata": {"doi": "10.25504/FAIRsharing.V52Eqe", "name": "PolyASite", "status": "ready", "contacts": [{"contact-name": "Mihaela Zavolan", "contact-email": "polyasite-biozentrum@unibas.ch"}], "homepage": "https://polyasite.unibas.ch/", "citations": [{"doi": "10.1093/nar/gkz918", "pubmed-id": 31617559, "publication-id": 2625}], "identifier": 2850, "description": "Alternative cleavage and polyadenylation (APA) of RNAs gives rise to isoforms with different terminal exons, which in turn determine the fate of the RNA and the encoded protein. APA has thus been implicated in the regulation of cell proliferation, differentiation and disease development. PolyASite is a portal to the curated set of poly(A) sites inferred from publicly available 3\u2019 end sequencing datasets. It allows efficient finding, exploration and export of poly(A) sites in several organisms. In constructing our poly(A) site atlas, we applied uniform quality measures, including the flagging of putative internal priming sites, to input datasets originating from different 3\u2019 end sequencing techniques, cell types or tissues. Through integrated processing of all data, we identified and clustered sites that are closely spaced and share polyadenylation signals, as these are likely the result of stochastic variations in processing. For each cluster, we identified the representative - most frequently processed - site and estimated the relative use in the transcriptome across all samples. While other existing alternative polyadenylation databases rely on a single experimental method, or on poly(A) site estimation from RNA-seq data, PolyASite is built on data from several 3\u2019 end sequencing techniques. This allows a broader coverage of cell types and poly(A) sites to support further genomics studies.", "abbreviation": "PolyASite", "support-links": [{"url": "polyasite-biozentrum@unibas.ch", "name": "polyasite-biozentrum@unibas.ch", "type": "Support email"}, {"url": "https://polyasite.unibas.ch/protocols", "name": "Protocols", "type": "Help documentation"}, {"url": "https://polyasite.unibas.ch/about", "name": "About", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://polyasite.unibas.ch/search", "name": "Search", "type": "data access"}, {"url": "https://polyasite.unibas.ch/atlas", "name": "Download / Get Custom Track", "type": "data release"}, {"url": "https://polyasite.unibas.ch/samples", "name": "Browse Samples", "type": "data access"}], "associated-tools": [{"url": "https://github.com/zavolanlab/PAQR_KAPAC", "name": "PAQR / KAPAC"}, {"url": "https://github.com/zavolanlab/TECtool", "name": "TECtool"}]}, "legacy-ids": ["biodbcore-001351", "bsg-d001351"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Genetics", "Transcriptomics"], "domains": ["Expression data", "Ribonucleic acid", "RNA polyadenylation", "RNA sequencing", "Transcript"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: PolyASite", "abbreviation": "PolyASite", "url": "https://fairsharing.org/10.25504/FAIRsharing.V52Eqe", "doi": "10.25504/FAIRsharing.V52Eqe", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Alternative cleavage and polyadenylation (APA) of RNAs gives rise to isoforms with different terminal exons, which in turn determine the fate of the RNA and the encoded protein. APA has thus been implicated in the regulation of cell proliferation, differentiation and disease development. PolyASite is a portal to the curated set of poly(A) sites inferred from publicly available 3\u2019 end sequencing datasets. It allows efficient finding, exploration and export of poly(A) sites in several organisms. In constructing our poly(A) site atlas, we applied uniform quality measures, including the flagging of putative internal priming sites, to input datasets originating from different 3\u2019 end sequencing techniques, cell types or tissues. Through integrated processing of all data, we identified and clustered sites that are closely spaced and share polyadenylation signals, as these are likely the result of stochastic variations in processing. For each cluster, we identified the representative - most frequently processed - site and estimated the relative use in the transcriptome across all samples. While other existing alternative polyadenylation databases rely on a single experimental method, or on poly(A) site estimation from RNA-seq data, PolyASite is built on data from several 3\u2019 end sequencing techniques. This allows a broader coverage of cell types and poly(A) sites to support further genomics studies.", "publications": [{"id": 2625, "pubmed_id": 31617559, "title": "PolyASite 2.0: a consolidated atlas of polyadenylation sites from 3' end sequencing.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz918", "authors": "Herrmann CJ,Schmidt R,Kanitz A,Artimo P,Gruber AJ,Zavolan M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz918", "created_at": "2021-09-30T08:27:22.310Z", "updated_at": "2021-09-30T11:29:40.729Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1886", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:18.669Z", "metadata": {"doi": "10.25504/FAIRsharing.v3jf2q", "name": "Human Oral Microbiome Database", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "homd-info@homd.org"}], "homepage": "http://www.homd.org/", "identifier": 1886, "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information.", "abbreviation": "HOMD", "support-links": [{"url": "http://www.homd.org/index.php?name=Article", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.homd.org/index.php?name=Download", "name": "Download", "type": "data access"}, {"url": "http://www.homd.org/index.php?name=GenomeTools&homdtool=JGV&top=1", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://www.homd.org/index.php?name=RNAblast&link=upload", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012898", "name": "re3data:r3d100012898", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012770", "name": "SciCrunch:RRID:SCR_012770", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000351", "bsg-d000351"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Classification"], "taxonomies": ["Bacteria", "Fungi"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Human Oral Microbiome Database", "abbreviation": "HOMD", "url": "https://fairsharing.org/10.25504/FAIRsharing.v3jf2q", "doi": "10.25504/FAIRsharing.v3jf2q", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information.", "publications": [{"id": 392, "pubmed_id": 20624719, "title": "The Human Oral Microbiome Database: a web accessible resource for investigating oral microbe taxonomic and genomic information.", "year": 2010, "url": "http://doi.org/10.1093/database/baq013", "authors": "Chen T., Yu WH., Izard J., Baranova OV., Lakshmanan A., Dewhirst FE.,", "journal": "Database (Oxford)", "doi": "10.1093/database/baq013", "created_at": "2021-09-30T08:23:02.546Z", "updated_at": "2021-09-30T08:23:02.546Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3298", "type": "fairsharing-records", "attributes": {"created-at": "2021-02-23T18:19:48.000Z", "updated-at": "2021-11-24T13:16:07.910Z", "metadata": {"doi": "10.25504/FAIRsharing.Nhfwat", "name": "The conserved clinical variation visualization tool", "status": "ready", "contacts": [{"contact-name": "Oktay Kaplan", "contact-email": "oktay.kaplan@agu.edu.tr", "contact-orcid": "0000-0002-8733-0920"}], "homepage": "http://www.convart.org/", "identifier": 3298, "description": "The availability of genetic variants, together with phenotypic annotations from model organisms, facilitates comparing these variants with equivalent variants in humans. However, existing databases and search tools do not make it easy to scan for equivalent variants, namely \u201corthologous variants,\u201d between humans and other organisms. Therefore, we developed an integrated search engine called ConVarT (http://www.convart.org/) for orthologous variants between humans, mice, and C. elegans. ConVarT incorporates annotations (including phenotypic and pathogenic) into variants, and these previously unexploited phenotypic OrthoVars from mice and C. elegans can give clues about the functional consequence of human genetic variants. Our analysis shows that many phenotypic variants in different genes from mice and C. elegans, so far, have no counterparts in humans, and thus, can be useful resources when evaluating a relationship between a new human mutation and a disease.", "abbreviation": "ConVarT", "support-links": [{"url": "https://convart.org/pages/Faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://convart.org/pages/Help.php", "type": "Help documentation"}, {"url": "https://github.com/thekaplanlab", "name": "GitHub", "type": "Github"}], "year-creation": 2021, "data-processes": [{"url": "https://convart.org/pages/Downloads.php", "name": "Download", "type": "data access"}, {"url": "https://convart.org/pages/Submit.php", "name": "Submit", "type": "data curation"}, {"url": "https://convart.org/", "name": "Search", "type": "data access"}, {"url": "https://convart.org/pages/Database.php", "name": "Download Specification", "type": "data release"}]}, "legacy-ids": ["biodbcore-001813", "bsg-d001813"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["DNA structural variation", "Orthologous", "Sequence alteration"], "taxonomies": ["Caenorhabditis elegans", "Homo sapiens", "Mus musculus"], "user-defined-tags": ["Functional impact of genetic variants", "genomic variation", "Variant"], "countries": ["Germany"], "name": "FAIRsharing record for: The conserved clinical variation visualization tool", "abbreviation": "ConVarT", "url": "https://fairsharing.org/10.25504/FAIRsharing.Nhfwat", "doi": "10.25504/FAIRsharing.Nhfwat", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The availability of genetic variants, together with phenotypic annotations from model organisms, facilitates comparing these variants with equivalent variants in humans. However, existing databases and search tools do not make it easy to scan for equivalent variants, namely \u201corthologous variants,\u201d between humans and other organisms. Therefore, we developed an integrated search engine called ConVarT (http://www.convart.org/) for orthologous variants between humans, mice, and C. elegans. ConVarT incorporates annotations (including phenotypic and pathogenic) into variants, and these previously unexploited phenotypic OrthoVars from mice and C. elegans can give clues about the functional consequence of human genetic variants. Our analysis shows that many phenotypic variants in different genes from mice and C. elegans, so far, have no counterparts in humans, and thus, can be useful resources when evaluating a relationship between a new human mutation and a disease.", "publications": [], "licence-links": [{"licence-name": "ConVarT Tems", "licence-id": 146, "link-id": 1326, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2133", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.488Z", "metadata": {"doi": "10.25504/FAIRsharing.7k8zh0", "name": "Plant Promoter Database", "status": "ready", "contacts": [{"contact-name": "Yoshiharu Y. Yamamoto", "contact-email": "ppdb@gifu-u.ac.jp", "contact-orcid": "0000-0002-9667-0572"}], "homepage": "http://ppdb.agr.gifu-u.ac.jp", "identifier": 2133, "description": "Genome-wide plant promoter database for several plant species, including Arabidopsis thaliana, rice, poplar, and Physcomitrella patens.", "abbreviation": "ppdb", "year-creation": 2007}, "legacy-ids": ["biodbcore-000603", "bsg-d000603"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Transcription factor", "Promoter"], "taxonomies": ["Arabidopsis thaliana", "Chlamydomonas reinhardtii", "Oryza sativa", "Physcomitrella patens", "Populus", "Viridiplantae"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Plant Promoter Database", "abbreviation": "ppdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.7k8zh0", "doi": "10.25504/FAIRsharing.7k8zh0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Genome-wide plant promoter database for several plant species, including Arabidopsis thaliana, rice, poplar, and Physcomitrella patens.", "publications": [{"id": 521, "pubmed_id": 17947329, "title": "ppdb: a plant promoter database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm785", "authors": "Yamamoto YY and Obokata J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm785", "created_at": "2021-09-30T08:23:16.859Z", "updated_at": "2021-09-30T08:23:16.859Z"}, {"id": 1638, "pubmed_id": 24194597, "title": "ppdb: plant promoter database version 3.0.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1027", "authors": "Hieno A,Naznin HA,Hyakumachi M,Sakurai T,Tokizawa M,Koyama H,Sato N,Nishiyama T,Hasebe M,Zimmer AD,Lang D,Reski R,Rensing SA,Obokata J,Yamamoto YY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1027", "created_at": "2021-09-30T08:25:23.493Z", "updated_at": "2021-09-30T11:29:17.453Z"}], "licence-links": [{"licence-name": "PPDB Download Licence", "licence-id": 676, "link-id": 815, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2343", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-11T15:03:45.000Z", "updated-at": "2021-11-24T13:17:51.641Z", "metadata": {"doi": "10.25504/FAIRsharing.kvee9e", "name": "Chickpea Portal", "status": "ready", "contacts": [{"contact-name": "Dave Edwards", "contact-email": "dave.edwards@uq.edu.au"}], "homepage": "http://www.cicer.info/databases.php", "identifier": 2343, "description": "This resource contains genome and gene sequences, features and isolationed chromosome alignments, while functional annotation can be searched in GBrowse. Chickpea forms a critical component of the Australian and Indian farming system, offering offer a high value alternative to cereals, an important disease break, opportunities for grass weed control and respite from high nitrogen application.", "abbreviation": "Chickpea Portal", "year-creation": 2016, "associated-tools": [{"url": "http://www.cicer.info/cgi-bin/gb2/gbrowse/", "name": "Chickpea GBrowse"}]}, "legacy-ids": ["biodbcore-000821", "bsg-d000821"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics"], "domains": ["DNA sequence data", "Annotation", "Genome"], "taxonomies": ["Cicer arietinum"], "user-defined-tags": [], "countries": ["India", "Australia"], "name": "FAIRsharing record for: Chickpea Portal", "abbreviation": "Chickpea Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.kvee9e", "doi": "10.25504/FAIRsharing.kvee9e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource contains genome and gene sequences, features and isolationed chromosome alignments, while functional annotation can be searched in GBrowse. Chickpea forms a critical component of the Australian and Indian farming system, offering offer a high value alternative to cereals, an important disease break, opportunities for grass weed control and respite from high nitrogen application.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1735", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:10.253Z", "metadata": {"doi": "10.25504/FAIRsharing.d50fb5", "name": "Encyclopedia of Hepatocellular Carcinome Genes Online II", "status": "deprecated", "contacts": [{"contact-email": "woody@iis.sinica.edu.tw"}], "homepage": "http://ehco.iis.sinica.edu.tw/", "identifier": 1735, "description": "The Encyclopedia of Hepatocellular Carcinoma genes Online, dubbed EHCO, was built to systematically collect, organize and compare the pileup of unsorted HCC-related studies by using natural language processing and softbots.", "abbreviation": "EHCO II", "data-processes": [{"url": "http://ehco.iis.sinica.edu.tw/Download.html", "name": "Download", "type": "data access"}, {"url": "http://ehco.iis.sinica.edu.tw/#", "name": "search", "type": "data access"}], "deprecation-date": "2015-09-01", "deprecation-reason": "Database no longer active."}, "legacy-ids": ["biodbcore-000192", "bsg-d000192"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Oncology", "Life Science"], "domains": ["Expression data", "Classification", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Taiwan"], "name": "FAIRsharing record for: Encyclopedia of Hepatocellular Carcinome Genes Online II", "abbreviation": "EHCO II", "url": "https://fairsharing.org/10.25504/FAIRsharing.d50fb5", "doi": "10.25504/FAIRsharing.d50fb5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Encyclopedia of Hepatocellular Carcinoma genes Online, dubbed EHCO, was built to systematically collect, organize and compare the pileup of unsorted HCC-related studies by using natural language processing and softbots.", "publications": [{"id": 2708, "pubmed_id": 17326819, "title": "Detection of the inferred interaction network in hepatocellular carcinoma from EHCO (Encyclopedia of Hepatocellular Carcinoma genes Online).", "year": 2007, "url": "http://doi.org/10.1186/1471-2105-8-66", "authors": "Hsu CN., Lai JM., Liu CH., Tseng HH., Lin CY., Lin KT., Yeh HH., Sung TY., Hsu WL., Su LJ., Lee SA., Chen CH., Lee GC., Lee DT., Shiue YL., Yeh CW., Chang CH., Kao CY., Huang CY.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-8-66", "created_at": "2021-09-30T08:27:32.588Z", "updated_at": "2021-09-30T08:27:32.588Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3187", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-13T12:39:01.000Z", "updated-at": "2021-12-06T10:47:38.233Z", "metadata": {"name": "Water Quality Portal", "status": "ready", "contacts": [{"contact-name": "WQP General Contact", "contact-email": "WQX@epa.gov"}], "homepage": "https://www.waterqualitydata.us/", "identifier": 3187, "description": "The Water Quality Portal (WQP) integrates publicly available water quality data from the USGS National Water Information System (NWIS), the EPA STOrage and RETrieval (STORET) Data Warehouse, and the USDA ARS Sustaining The Earth\u2019s Watersheds - Agricultural Research Database System (STEWARDS) .", "abbreviation": "WQP", "access-points": [{"url": "https://www.waterqualitydata.us/data/Station/search?", "name": "WQP Web Services", "type": "REST"}], "support-links": [{"url": "https://www.waterqualitydata.us/contact_us/", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.waterqualitydata.us/faqs/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.waterqualitydata.us/portal_userguide/", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.waterqualitydata.us/webservices_documentation/", "name": "Web Services Guide", "type": "Help documentation"}, {"url": "https://www.waterqualitydata.us/wqp_description/", "name": "About", "type": "Help documentation"}], "data-processes": [{"url": "https://www.waterqualitydata.us/portal/", "name": "Search", "type": "data access"}, {"url": "https://www.waterqualitydata.us/coverage/", "name": "Map Viewer (Coverage)", "type": "data access"}, {"url": "https://www.waterqualitydata.us/upload_data/", "name": "Uploading Data", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012920", "name": "re3data:r3d100012920", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001698", "bsg-d001698"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Water Management", "Water Research"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Water Quality Portal", "abbreviation": "WQP", "url": "https://fairsharing.org/fairsharing_records/3187", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Water Quality Portal (WQP) integrates publicly available water quality data from the USGS National Water Information System (NWIS), the EPA STOrage and RETrieval (STORET) Data Warehouse, and the USDA ARS Sustaining The Earth\u2019s Watersheds - Agricultural Research Database System (STEWARDS) .", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2460", "type": "fairsharing-records", "attributes": {"created-at": "2017-06-27T12:45:16.000Z", "updated-at": "2021-11-24T13:16:29.317Z", "metadata": {"doi": "10.25504/FAIRsharing.yd91ak", "name": "Belgian BIF IPT - GBIF Belgium Repository", "status": "ready", "contacts": [{"contact-name": "Andr\u00e9 Heughebaert", "contact-email": "a.heughebaert@biodiversity.be"}], "homepage": "http://ipt.biodiversity.be/", "identifier": 2460, "description": "The Belgium Biodiversity Platform maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). The Belgian Biodiversity Platform is a science-policy interface that offers a privileged access to primary biodiversity data and research information. The Platform encourages interdisciplinary cooperation among scientists and serves as an interface between researchers and science-policy organizations. It provides advice on the designation of biodiversity research priorities and promotes Belgian biodiversity research in international fora.", "year-creation": 2001}, "legacy-ids": ["biodbcore-000942", "bsg-d000942"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biodiversity", "Life Science"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: Belgian BIF IPT - GBIF Belgium Repository", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.yd91ak", "doi": "10.25504/FAIRsharing.yd91ak", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Belgium Biodiversity Platform maintains this data repository in collaboration with the GBIF Secretariat, built using an installation of the GBIF Integrated Publishing Toolkit (IPT). The Belgian Biodiversity Platform is a science-policy interface that offers a privileged access to primary biodiversity data and research information. The Platform encourages interdisciplinary cooperation among scientists and serves as an interface between researchers and science-policy organizations. It provides advice on the designation of biodiversity research priorities and promotes Belgian biodiversity research in international fora.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 387, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1032, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 1096, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1256, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1942", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:15.587Z", "metadata": {"doi": "10.25504/FAIRsharing.vdbagq", "name": "ROdent Unidentified Gene-Encoded large proteins", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "rouge@kazusa.or.jp"}], "homepage": "http://www.kazusa.or.jp/rouge/", "identifier": 1942, "description": "The ROUGE protein database is a sister database of HUGE protein database which has accumulated the results of comprehensive sequence analysis of human long cDNAs (KIAA cDNAs). The ROUGE protein database has been created to publicize the information obtained from mouse homologues of the KIAA cDNAs (mKIAA cDNAs).", "abbreviation": "ROUGE", "data-processes": [{"url": "http://www.kazusa.or.jp/rouge/keyword/keyword.html", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.kazusa.or.jp/rouge/fasta/fasta.html", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000408", "bsg-d000408"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Protein"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: ROdent Unidentified Gene-Encoded large proteins", "abbreviation": "ROUGE", "url": "https://fairsharing.org/10.25504/FAIRsharing.vdbagq", "doi": "10.25504/FAIRsharing.vdbagq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The ROUGE protein database is a sister database of HUGE protein database which has accumulated the results of comprehensive sequence analysis of human long cDNAs (KIAA cDNAs). The ROUGE protein database has been created to publicize the information obtained from mouse homologues of the KIAA cDNAs (mKIAA cDNAs).", "publications": [{"id": 403, "pubmed_id": 14681467, "title": "HUGE: a database for human KIAA proteins, a 2004 update integrating HUGEppi and ROUGE.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh035", "authors": "Kikuno R., Nagase T., Nakayama M., Koga H., Okazaki N., Nakajima D., Ohara O.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh035", "created_at": "2021-09-30T08:23:03.791Z", "updated_at": "2021-09-30T08:23:03.791Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 668, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3200", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-19T05:03:37.000Z", "updated-at": "2021-11-24T13:16:07.841Z", "metadata": {"doi": "10.25504/FAIRsharing.H3pwqc", "name": "RNA Atlas of Structure Probing", "status": "ready", "contacts": [{"contact-name": "Pan Li", "contact-email": "lip16@mails.tsinghua.edu.cn"}], "homepage": "http://rasp.zhanglab.net", "citations": [{"publication-id": 3044}], "identifier": 3200, "description": "RASP (RNA Atlas of Structure Probing) is build from 161 deduplicated transcriptome-wide RNA secondary structures from datasets culled from 38 papers. RASP covers 18 species across animals, plants, bacteria, fungi, and also viruses, and categorizes 18 experimental methods including DMS-seq, SHAPE-Seq, SHAPE-MaP, and icSHAPE, etc. Specially, RASP curates the up-to-date datasets of several RNA secondary structure probing studies for the RNA genome of SARS-CoV-2, the RNA virus that caused the on-going COVID-19 pandemic. RASP also provides a user-friendly interface to query, browse, and visualize RNA structure profiles, offering a shortcut to accessing RNA secondary structures grounded in experimental data.", "abbreviation": "RASP", "support-links": [{"url": "http://rasp.zhanglab.net/news/", "name": "News", "type": "Blog/News"}, {"url": "qczhang@tsinghua.edu.cn", "name": "Zhang Lab", "type": "Support email"}, {"url": "http://rasp.zhanglab.net/help/", "type": "Help documentation"}, {"url": "http://rasp.zhanglab.net/statistics/", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2020, "data-processes": [{"url": "http://rasp.zhanglab.net/browser/?species=hg38", "name": "Browse", "type": "data access"}, {"url": "http://rasp.zhanglab.net/download/", "name": "Download", "type": "data access"}, {"url": "http://rasp.zhanglab.net/search/", "name": "Search", "type": "data access"}, {"url": "http://rasp.zhanglab.net/upload/", "name": "Upload", "type": "data curation"}], "associated-tools": [{"url": "http://rasp.zhanglab.net/predstr/", "name": "Fold tool"}, {"url": "http://rasp.zhanglab.net/alignment/", "name": "Sequence Alignment"}]}, "legacy-ids": ["biodbcore-001712", "bsg-d001712"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Comparative Genomics"], "domains": ["RNA secondary structure", "RNA sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: RNA Atlas of Structure Probing", "abbreviation": "RASP", "url": "https://fairsharing.org/10.25504/FAIRsharing.H3pwqc", "doi": "10.25504/FAIRsharing.H3pwqc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RASP (RNA Atlas of Structure Probing) is build from 161 deduplicated transcriptome-wide RNA secondary structures from datasets culled from 38 papers. RASP covers 18 species across animals, plants, bacteria, fungi, and also viruses, and categorizes 18 experimental methods including DMS-seq, SHAPE-Seq, SHAPE-MaP, and icSHAPE, etc. Specially, RASP curates the up-to-date datasets of several RNA secondary structure probing studies for the RNA genome of SARS-CoV-2, the RNA virus that caused the on-going COVID-19 pandemic. RASP also provides a user-friendly interface to query, browse, and visualize RNA structure profiles, offering a shortcut to accessing RNA secondary structures grounded in experimental data.", "publications": [{"id": 3044, "pubmed_id": null, "title": "RASP: an atlas of transcriptome-wide RNA secondary structure probing data", "year": 2020, "url": "https://doi.org/10.1093/nar/gkaa880", "authors": "Pan Li, Xiaolin Zhou, Kui Xu and Qiangfeng Cliff Zhang", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:28:15.158Z", "updated_at": "2021-09-30T08:28:15.158Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1307, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2849", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-05T14:21:03.000Z", "updated-at": "2021-12-06T10:48:22.335Z", "metadata": {"doi": "10.25504/FAIRsharing.cUG0cV", "name": "DBpedia", "status": "ready", "contacts": [{"contact-name": "Sebastian Hellmann", "contact-email": "hellmann@informatik.uni-leipzig.de"}], "homepage": "https://www.dbpedia.org/", "citations": [{"publication-id": 2609}], "identifier": 2849, "description": "DBpedia is a crowd-sourced community effort to extract structured content from the information created in various Wikimedia projects. This structured information resembles an open knowledge graph (OKG).", "abbreviation": "DBpedia", "access-points": [{"url": "https://wiki.dbpedia.org/rest-api", "name": "DBpedia REST API", "type": "REST"}], "support-links": [{"url": "http://blog.dbpedia.org/", "name": "DBpedia Blog", "type": "Blog/News"}, {"url": "https://wiki.dbpedia.org/support", "name": "Support", "type": "Help documentation"}, {"url": "https://wiki.dbpedia.org/public-sparql-endpoint", "name": "Using the SPARQL Endpoint", "type": "Help documentation"}, {"url": "https://wiki.dbpedia.org/about/contact", "name": "Contact Information", "type": "Help documentation"}, {"url": "https://wiki.dbpedia.org/get-involved#", "name": "Getting Involved", "type": "Help documentation"}, {"url": "https://github.com/dbpedia/", "name": "GitHub Repository", "type": "Github"}, {"url": "https://twitter.com/dbpedia", "name": "@dbpedia", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://dbpedia.org/sparql", "name": "SPARQL Endpoint", "type": "data access"}, {"url": "http://dbpedia.org/snorql", "name": "SNORQL Query", "type": "data access"}, {"url": "https://wiki.dbpedia.org/develop/datasets", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://dbpedia.org/isparql", "name": "Interactive SPARQL Query Builder"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011713", "name": "re3data:r3d100011713", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003661", "name": "SciCrunch:RRID:SCR_003661", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001350", "bsg-d001350"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Knowledge and Information Systems", "Informatics", "Computer Science"], "domains": ["Network model", "Knowledge representation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: DBpedia", "abbreviation": "DBpedia", "url": "https://fairsharing.org/10.25504/FAIRsharing.cUG0cV", "doi": "10.25504/FAIRsharing.cUG0cV", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DBpedia is a crowd-sourced community effort to extract structured content from the information created in various Wikimedia projects. This structured information resembles an open knowledge graph (OKG).", "publications": [{"id": 2609, "pubmed_id": null, "title": "DBpedia - A Large-scale, Multilingual Knowledge Base Extracted from Wikipedia", "year": 2013, "url": "http://www.semantic-web-journal.net/content/dbpedia-large-scale-multilingual-knowledge-base-extracted-wikipedia-0", "authors": "Jens Lehmann, Robert Isele, Max Jakob, Anja Jentzsch, Dimitris Kontokostas, Pablo N. Mendes, Sebastian Hellmann, Mohamed Morsey, Patrick van Kleef, S\u00f6ren Auer, Christian Bizer", "journal": "Semantic Web \u2013 Interoperability, Usability, Applicability", "doi": null, "created_at": "2021-09-30T08:27:20.288Z", "updated_at": "2021-09-30T08:27:20.288Z"}], "licence-links": [{"licence-name": "GNU Free Documentation License", "licence-id": 353, "link-id": 182, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 183, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2833", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-25T19:55:03.000Z", "updated-at": "2021-12-06T10:48:59.104Z", "metadata": {"doi": "10.25504/FAIRsharing.PD1PEt", "name": "Blackfynn Discover", "status": "ready", "contacts": [{"contact-name": "joost Wagenaar", "contact-email": "joost@blackfynn.com", "contact-orcid": "0000-0003-0837-7120"}], "homepage": "https://discover.blackfynn.com", "identifier": 2833, "description": "Blackfynn Discover is a public resource for accessing large public Neuroscience datasets. Blackfynn Discover was developed through grants from the NIH NIDA, NIH CommonFund, DARPA, and others to provide a sustainable solution for fostering collaboration in the Neurosciences.", "access-points": [{"url": "https://developer.blackfynn.io/api/index.html", "name": "Blackfynn Discover and the Blackfynn Platform provide an open API to enable integrations for users who want to interact with the platform programmatically", "type": "REST"}], "support-links": [{"url": "https://www.blackfynn.com/contact/", "name": "Blackfynn Contact Form", "type": "Contact form"}, {"url": "https://help.blackfynn.com", "name": "Blackfynn Help Center", "type": "Help documentation"}, {"url": "https://www.blackfynn.com/about/", "name": "About Blackfynn", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://discover.blackfynn.com", "name": "Browse Blackfynn Discover", "type": "data access"}, {"url": "https://app.blackfynn.io", "name": "Blackfynn Platform", "type": "data curation"}, {"url": "https://app.blackfynn.io", "name": "Publish multiple versions of a dataset on Blackfynn Discover", "type": "data release"}, {"url": "https://app.blackfynn.io", "name": "Publish multiple versions of a dataset on Blackfynn Discover", "type": "data versioning"}], "associated-tools": [{"url": "https://developer.blackfynn.io/python/latest/index.html", "name": "Python Client"}, {"url": "https://developer.blackfynn.io/matlab/index.html", "name": "MATLAB Client"}, {"url": "https://developer.blackfynn.io/agent/index.html", "name": "Command Line Interface"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013148", "name": "re3data:r3d100013148", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_018068", "name": "SciCrunch:RRID:SCR_018068", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001334", "bsg-d001334"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Blackfynn Discover", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.PD1PEt", "doi": "10.25504/FAIRsharing.PD1PEt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Blackfynn Discover is a public resource for accessing large public Neuroscience datasets. Blackfynn Discover was developed through grants from the NIH NIDA, NIH CommonFund, DARPA, and others to provide a sustainable solution for fostering collaboration in the Neurosciences.", "publications": [{"id": 1040, "pubmed_id": 26044858, "title": "Data integration: Combined imaging and electrophysiology data in the cloud.", "year": 2015, "url": "http://doi.org/S1053-8119(15)00465-6", "authors": "Kini LG,Davis KA,Wagenaar JB", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2015.05.075", "created_at": "2021-09-30T08:24:15.147Z", "updated_at": "2021-09-30T08:24:15.147Z"}, {"id": 2547, "pubmed_id": 26035676, "title": "Collaborating and sharing data in epilepsy research.", "year": 2015, "url": "http://doi.org/10.1097/WNP.0000000000000159", "authors": "Wagenaar JB,Worrell GA,Ives Z,Dumpelmann M,Litt B,Schulze-Bonhage A", "journal": "J Clin Neurophysiol", "doi": "10.1097/WNP.0000000000000159", "created_at": "2021-09-30T08:27:12.309Z", "updated_at": "2021-09-30T08:27:12.309Z"}], "licence-links": [{"licence-name": "Community Data License Agreement - Permissive, Version 1.0 (CDLA-Permissive-1.0)", "licence-id": 143, "link-id": 708, "relation": "undefined"}, {"licence-name": "Community Data License Agreement - Sharing, Version 1.0 (CDLA-Sharing-1.0)", "licence-id": 144, "link-id": 725, "relation": "undefined"}, {"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 727, "relation": "undefined"}, {"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 731, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 740, "relation": "undefined"}, {"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 742, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 749, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 760, "relation": "undefined"}, {"licence-name": "Blackfynn Terms of Use", "licence-id": 83, "link-id": 827, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2587", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T10:32:40.000Z", "updated-at": "2021-11-24T13:17:15.368Z", "metadata": {"doi": "10.25504/FAIRsharing.OdYDTJ", "name": "SweetPotatoBase", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "sgn-feedback@sgn.cornell.edu"}], "homepage": "https://sweetpotatobase.org/", "identifier": 2587, "description": "SweetPotatoBase is a breeding database designed for advanced breeding methods for sweet potato crops.", "abbreviation": "SweetPotatoBase", "support-links": [{"url": "https://sweetpotatobase.org/contact/form", "name": "Contact SweetPotatoBase", "type": "Contact form"}, {"url": "https://sweetpotatobase.org/help/faq.pl", "name": "SweetPotatoBase FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://sweetpotatobase.org/forum/topics.pl", "name": "SweetPotatoBase Forum", "type": "Forum"}, {"url": "https://sweetpotatobase.org/help/index.pl", "name": "SweetPotatoBase Help Pages", "type": "Help documentation"}, {"url": "https://github.com/solgenomics/sweetpotatobase", "name": "GitHub", "type": "Github"}, {"url": "https://twitter.com/TeamGT4SP", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://sweetpotatobase.org/breeders/search", "name": "Search Wizard", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/stocks", "name": "Search Accessions and Plots", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/cross", "name": "Search Progenies and Crosses", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/trials", "name": "Search Trials", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/traits", "name": "Search Traits", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://sweetpotatobase.org/search/images", "name": "Search Images", "type": "data access"}, {"url": "https://sweetpotatobase.org/solgs/search", "name": "Genomic Selection Tool", "type": "data access"}, {"url": "https://sweetpotatobase.org/help/faq.pl", "name": "Submit", "type": "data curation"}, {"url": "https://sweetpotatobase.org/user/new", "name": "Register", "type": "data access"}, {"url": "https://sweetpotatobase.org/accession_usage", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001070", "bsg-d001070"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Plant Breeding", "Genomics", "Agriculture", "Life Science"], "domains": [], "taxonomies": ["Ipomoea"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SweetPotatoBase", "abbreviation": "SweetPotatoBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.OdYDTJ", "doi": "10.25504/FAIRsharing.OdYDTJ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SweetPotatoBase is a breeding database designed for advanced breeding methods for sweet potato crops.", "publications": [], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 1619, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2992", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-12T17:29:31.000Z", "updated-at": "2021-12-06T10:47:29.032Z", "metadata": {"name": "OceanDataPortal", "status": "ready", "contacts": [{"contact-name": "Peter Pissierssens", "contact-email": "p.pissierssens@unesco.org", "contact-orcid": "0000-0001-6713-7018"}], "homepage": "http://www.oceandataportal.net/portal/portal/odp-theme/home", "identifier": 2992, "description": "The Ocean Data Portal is to facilitates and promotes the exchange and dissemination marine data and services. The Ocean Data Portal provides seamless access to collections and inventories of marine data from the National Oceanographic Data Centres (NODCs) in the International Oceanographic Data and Information Exchange (IODE) network and allows for the discovery, evaluation (through visualisation and metadata review) and access to data via web services.", "abbreviation": "OceanDataPortal", "support-links": [{"url": "http://www.oceandataportal.net/portal/portal/odp-theme/services/feeds", "name": "Last updated datasets", "type": "Blog/News"}], "year-creation": 1999, "data-processes": [{"url": "http://www.oceandataportal.net/portal/portal/odp-theme/data/nodcs", "name": "Search & Browse Datasets", "type": "data access"}, {"url": "http://www.oceandataportal.net/portal/portal/odp-theme/data/relatedprojects", "name": "Metadata Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010532", "name": "re3data:r3d100010532", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001498", "bsg-d001498"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Paleontology", "Earth Science", "Atmospheric Science", "Oceanography"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": ["Salinity", "Satellite Data", "Temperature"], "countries": ["Worldwide"], "name": "FAIRsharing record for: OceanDataPortal", "abbreviation": "OceanDataPortal", "url": "https://fairsharing.org/fairsharing_records/2992", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ocean Data Portal is to facilitates and promotes the exchange and dissemination marine data and services. The Ocean Data Portal provides seamless access to collections and inventories of marine data from the National Oceanographic Data Centres (NODCs) in the International Oceanographic Data and Information Exchange (IODE) network and allows for the discovery, evaluation (through visualisation and metadata review) and access to data via web services.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1578", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.173Z", "metadata": {"doi": "10.25504/FAIRsharing.rj3kj5", "name": "Eukaryotic Linear Motifs", "status": "ready", "contacts": [{"contact-name": "ELM feedback email", "contact-email": "feedback@elm.eu.org"}], "homepage": "http://elm.eu.org", "identifier": 1578, "description": "This computational biology resource mainly focuses on annotation and detection of eukaryotic linear motifs (ELMs) by providing both a repository of annotated motif data and an exploratory tool for motif prediction. ELMs, or short linear motifs (SLiMs), are compact protein interaction sites composed of short stretches of adjacent amino acids.", "abbreviation": "ELM", "support-links": [{"url": "http://elm.eu.org/infos/help.html", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Eukaryotic_Linear_Motif_resource", "type": "Wikipedia"}], "year-creation": 2003, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited,images)", "type": "data access"}, {"name": "XML web service", "type": "data access"}], "associated-tools": [{"url": "http://elm.eu.org/combined_search?query=blast", "name": "BLAST"}, {"url": "http://elm.eu.org/elms/browse_instances.html", "name": "Browse"}, {"url": "http://elm.eu.org/search/", "name": "Search"}]}, "legacy-ids": ["biodbcore-000033", "bsg-d000033"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein domain", "Gene Ontology enrichment", "Computational biological predictions", "Protein interaction", "Protein", "Sequence motif"], "taxonomies": ["Eukaryota"], "user-defined-tags": ["Eukaryotic Linear Motif", "Polypeptide motif", "Short Linear Motif (SLiM)"], "countries": ["European Union", "Germany"], "name": "FAIRsharing record for: Eukaryotic Linear Motifs", "abbreviation": "ELM", "url": "https://fairsharing.org/10.25504/FAIRsharing.rj3kj5", "doi": "10.25504/FAIRsharing.rj3kj5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This computational biology resource mainly focuses on annotation and detection of eukaryotic linear motifs (ELMs) by providing both a repository of annotated motif data and an exploratory tool for motif prediction. ELMs, or short linear motifs (SLiMs), are compact protein interaction sites composed of short stretches of adjacent amino acids.", "publications": [{"id": 46, "pubmed_id": 12824381, "title": "ELM server: A new resource for investigating short functional sites in modular eukaryotic proteins.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg545", "authors": "Puntervoll P. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg545", "created_at": "2021-09-30T08:22:25.347Z", "updated_at": "2021-09-30T08:22:25.347Z"}, {"id": 291, "pubmed_id": 22110040, "title": "ELM--the database of eukaryotic linear motifs.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1064", "authors": "Dinkel H. et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1064", "created_at": "2021-09-30T08:22:51.330Z", "updated_at": "2021-09-30T11:28:44.825Z"}, {"id": 1274, "pubmed_id": 26615199, "title": "ELM 2016--data update and new functionality of the eukaryotic linear motif resource.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1291", "authors": "Dinkel H,Van Roey K,Michael S,Kumar M,Uyar B,Altenberg B,Milchevskaya V,Schneider M,Kuhn H,Behrendt A,Dahl SL,Damerell V,Diebel S,Kalman S,Klein S,Knudsen AC,Mader C,Merrill S,Staudt A,Thiel V,Welti L,Davey NE,Diella F,Gibson TJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1291", "created_at": "2021-09-30T08:24:42.247Z", "updated_at": "2021-09-30T11:29:04.976Z"}], "licence-links": [{"licence-name": "ELM Academic License Agreement", "licence-id": 265, "link-id": 963, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2732", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-12T20:56:43.000Z", "updated-at": "2021-11-24T13:17:55.095Z", "metadata": {"doi": "10.25504/FAIRsharing.iHhPe9", "name": "XenMine", "status": "deprecated", "contacts": [{"contact-email": "jbaker@stanford.edu"}], "homepage": "http://www.xenmine.org/xenmine", "citations": [{"doi": "10.1016/j.ydbio.2016.02.034", "pubmed-id": 27157655, "publication-id": 2337}], "identifier": 2732, "description": "XenMine has been created to view, search and analyze Xenopus data, and provides essential information on gene expression changes and regulatory elements present in the genome. It contains published genomic datasets from both Xenopus tropicalis and Xenopus laevis.", "abbreviation": "XenMine", "access-points": [{"url": "http://www.xenmine.org/xenmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://www.xenmine.org/xenmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2017, "data-processes": [{"url": "http://www.xenmine.org/xenmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "http://www.xenmine.org/xenmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://www.xenmine.org/xenmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://www.xenmine.org/xenmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}], "associated-tools": [{"url": "http://www.xenmine.org/jbrowse/index.html?", "name": "JBrowse (View ChIP-Seq tracks)"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is superceded by XenBase."}, "legacy-ids": ["biodbcore-001230", "bsg-d001230"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["DNA sequence data", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing", "Gene"], "taxonomies": ["Xenopus laevis", "Xenopus tropicalis"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: XenMine", "abbreviation": "XenMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.iHhPe9", "doi": "10.25504/FAIRsharing.iHhPe9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: XenMine has been created to view, search and analyze Xenopus data, and provides essential information on gene expression changes and regulatory elements present in the genome. It contains published genomic datasets from both Xenopus tropicalis and Xenopus laevis.", "publications": [{"id": 2337, "pubmed_id": 27157655, "title": "XenMine: A genomic interaction tool for the Xenopus community.", "year": 2016, "url": "http://doi.org/S0012-1606(15)30264-5", "authors": "Reid CD,Karra K,Chang J,Piskol R,Li Q,Li JB,Cherry JM,Baker JC", "journal": "Dev Biol", "doi": "10.1016/j.ydbio.2016.02.034", "created_at": "2021-09-30T08:26:46.993Z", "updated_at": "2021-09-30T08:26:46.993Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 786, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2704", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-15T14:07:28.000Z", "updated-at": "2021-11-24T13:19:38.684Z", "metadata": {"doi": "10.25504/FAIRsharing.58lHsV", "name": "OmicsDB", "status": "ready", "contacts": [{"contact-email": "contact@omicsdriven.com", "contact-orcid": "0000-0001-7620-5422"}], "homepage": "http://www.omicsdb.org/", "identifier": 2704, "description": "OmicsDB offers an integrated platform for studying biological networks in multiple organisms, as well as accessing gene expression data. By expanding the classic single species databases across species, it is possible to leverage the amount of information to an even higher level. Its main goal is to enable researchers to find omics data as well as biological networks (Coexpression, PPI etc). One of the main ideas has been to cover non-model species (Fungal plant pathogens, Sorghum, Cassava etc), to allow researchers in these fields similar oppertunities as researchers in more developed fields (Like Arabidopsis or Yeast).", "abbreviation": "OmicsDB", "support-links": [{"url": "http://www.omicsdb.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.omicsdb.org/help", "name": "OmicsDB Help", "type": "Help documentation"}, {"url": "http://www.omicsdb.org/about", "name": "About OmicsDB", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://pathogens.omicsdb.org", "name": "Browse Pathogens by Species", "type": "data access"}, {"url": "http://plants.omicsdb.org", "name": "Browse Plants", "type": "data access"}], "associated-tools": [{"url": "https://plants.omicsdb.org/tools/network", "name": "Network - Plants"}, {"url": "https://plants.omicsdb.org/tools/heatmap", "name": "Heatmap - Plants"}, {"url": "https://plants.omicsdb.org/tools/enrichment/go", "name": "GO enrichment - Plants"}, {"url": "https://plants.omicsdb.org/tools/view_expressioninfo", "name": "Sample vs Sample expression - Plants"}]}, "legacy-ids": ["biodbcore-001202", "bsg-d001202"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science", "Transcriptomics"], "domains": ["Computational biological predictions", "Protein interaction", "Network model", "Molecular function", "Co-expression", "RNA sequencing", "DNA microarray"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: OmicsDB", "abbreviation": "OmicsDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.58lHsV", "doi": "10.25504/FAIRsharing.58lHsV", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OmicsDB offers an integrated platform for studying biological networks in multiple organisms, as well as accessing gene expression data. By expanding the classic single species databases across species, it is possible to leverage the amount of information to an even higher level. Its main goal is to enable researchers to find omics data as well as biological networks (Coexpression, PPI etc). One of the main ideas has been to cover non-model species (Fungal plant pathogens, Sorghum, Cassava etc), to allow researchers in these fields similar oppertunities as researchers in more developed fields (Like Arabidopsis or Yeast).", "publications": [], "licence-links": [{"licence-name": "OmicsDB Terms of Use", "licence-id": 616, "link-id": 1643, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1779", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:02.656Z", "metadata": {"doi": "10.25504/FAIRsharing.9k5mbg", "name": "National Microbial Pathogen Data Resource", "status": "ready", "contacts": [{"contact-name": "Rick Stevens", "contact-email": "stevens@cs.uchicago.edu"}], "homepage": "http://www.nmpdr.org", "identifier": 1779, "description": "The NMPDR provided curated annotations in an environment for comparative analysis of genomes and biological subsystems, with an emphasis on the food-borne pathogens Campylobacter, Listeria, Staphylococcus, Streptococcus, and Vibrio; as well as the STD pathogens Chlamydiaceae, Haemophilus, Mycoplasma, Neisseria, Treponema, and Ureaplasma.", "abbreviation": "NMPDR", "support-links": [{"url": "help@nmpdr.org", "type": "Support email"}, {"url": "http://www.nmpdr.org/FIG/wiki/view.cgi/Main/FAQS", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.nmpdr.org/FIG/wiki/view.cgi/FIG/WebHome", "type": "Help documentation"}, {"url": "http://www.nmpdr.org/FIG/wiki/view.cgi/Main/HowToUseNMPDR", "type": "Training documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://www.nmpdr.org/FIG/wiki/view.cgi/Main/NmpdrDownloads", "name": "Download", "type": "data access"}, {"url": "http://www.nmpdr.org/FIG/wiki/view.cgi/Main/SearchNMPDR", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.nmpdr.org/FIG/wiki/rest.cgi/NmpdrPlugin/search?Class=BlastSearch", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000238", "bsg-d000238"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Pathogen", "Genome"], "taxonomies": ["Campylobacter", "Chlamydiaceae", "Haemophilus", "Listeria", "Mycoplasma", "Neisseria", "Staphylococcus", "Streptococcus", "Treponema", "Ureaplasma", "Vibrio"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Microbial Pathogen Data Resource", "abbreviation": "NMPDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.9k5mbg", "doi": "10.25504/FAIRsharing.9k5mbg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NMPDR provided curated annotations in an environment for comparative analysis of genomes and biological subsystems, with an emphasis on the food-borne pathogens Campylobacter, Listeria, Staphylococcus, Streptococcus, and Vibrio; as well as the STD pathogens Chlamydiaceae, Haemophilus, Mycoplasma, Neisseria, Treponema, and Ureaplasma.", "publications": [{"id": 1483, "pubmed_id": 17145713, "title": "The National Microbial Pathogen Database Resource (NMPDR): a genomics platform based on subsystem annotation.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl947", "authors": "McNeil LK., Reich C., Aziz RK., Bartels D., Cohoon M., Disz T., Edwards RA., Gerdes S., Hwang K., Kubal M., Margaryan GR., Meyer F., Mihalo W., Olsen GJ., Olson R., Osterman A., Paarmann D., Paczian T., Parrello B., Pusch GD., Rodionov DA., Shi X., Vassieva O., Vonstein V., Zagnitko O., Xia F., Zinner J., Overbeek R., Stevens R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl947", "created_at": "2021-09-30T08:25:06.026Z", "updated_at": "2021-09-30T08:25:06.026Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2116", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.725Z", "metadata": {"doi": "10.25504/FAIRsharing.2mayq0", "name": "Structural and functional annotation of Arabidopsis thaliana gene and protein families", "status": "deprecated", "contacts": [{"contact-email": "aubourg@evry.inra.fr"}], "homepage": "http://urgi.versailles.inra.fr/Genefarm/index.htpl", "identifier": 2116, "description": "GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", "abbreviation": "GeneFarm", "associated-tools": [{"url": "http://urgi.versailles.inra.fr/Genefarm/Search/search_frame.htpl", "name": "search"}, {"url": "http://urgi.versailles.inra.fr/Genefarm/Search/search_frame.htpl", "name": "advanced search"}, {"url": "http://urgi.versailles.inra.fr/Genefarm/Search/search_frame.htpl", "name": "BLAST"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000586", "bsg-d000586"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Nucleotide", "Sequence", "Genome"], "taxonomies": ["Arabidopsis thaliana", "Viridiplantae"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Structural and functional annotation of Arabidopsis thaliana gene and protein families", "abbreviation": "GeneFarm", "url": "https://fairsharing.org/10.25504/FAIRsharing.2mayq0", "doi": "10.25504/FAIRsharing.2mayq0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", "publications": [{"id": 587, "pubmed_id": 15608279, "title": "GeneFarm, structural and functional annotation of Arabidopsis gene and protein families by a network of experts.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki115", "authors": "Aubourg S., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki115", "created_at": "2021-09-30T08:23:24.318Z", "updated_at": "2021-09-30T08:23:24.318Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1547, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2640", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-05T11:08:24.000Z", "updated-at": "2021-11-24T13:19:37.397Z", "metadata": {"doi": "10.25504/FAIRsharing.AN3lMf", "name": "InParanoid", "status": "ready", "contacts": [{"contact-name": "Erik L.L. Sonnhammer", "contact-email": "erik.sonnhammer@scilifelab.se", "contact-orcid": "0000-0002-9015-5588"}], "homepage": "http://inparanoid.sbc.su.se/cgi-bin/index.cgi", "identifier": 2640, "description": "The InParanoid database provides a user interface to orthologs inferred by the InParanoid algorithm. InParanoid release 8 is based on the 66 reference proteomes that the 'Quest for Orthologs' community has agreed on using, plus 207 additional proteomes from the UniProt complete proteomes--in total 273 species.", "abbreviation": "InParanoid", "support-links": [{"url": "http://inparanoid.sbc.su.se/cgi-bin/faq.cgi", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://lists.su.se/mailman/listinfo/inparanoid-at-sbc.su.se", "type": "Mailing list"}], "year-creation": 2001, "data-processes": [{"url": "http://inparanoid.sbc.su.se/cgi-bin/e.cgi", "name": "browse", "type": "data access"}, {"url": "http://inparanoid.sbc.su.se/cgi-bin/gene_search.cgi", "name": "Gene search", "type": "data access"}, {"url": "http://inparanoid.sbc.su.se/cgi-bin/text_search.cgi", "name": "Text search", "type": "data access"}, {"url": "http://inparanoid.sbc.su.se/cgi-bin/blast_search.cgi", "name": "blast", "type": "data access"}, {"url": "http://inparanoid.sbc.su.se/download/", "name": "download", "type": "data access"}, {"url": "http://software.sbc.su.se/cgi-bin/request.cgi?project=inparanoid", "name": "InParanoid 4.1", "type": "data versioning"}, {"url": "http://inparanoid.sbc.su.se/cgi-bin/summary.cgi", "name": "Summary", "type": "data access"}]}, "legacy-ids": ["biodbcore-001131", "bsg-d001131"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Proteome", "Orthologous"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota"], "user-defined-tags": [], "countries": ["Sweden"], "name": "FAIRsharing record for: InParanoid", "abbreviation": "InParanoid", "url": "https://fairsharing.org/10.25504/FAIRsharing.AN3lMf", "doi": "10.25504/FAIRsharing.AN3lMf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The InParanoid database provides a user interface to orthologs inferred by the InParanoid algorithm. InParanoid release 8 is based on the 66 reference proteomes that the 'Quest for Orthologs' community has agreed on using, plus 207 additional proteomes from the UniProt complete proteomes--in total 273 species.", "publications": [{"id": 1512, "pubmed_id": 15608241, "title": "Inparanoid: a comprehensive database of eukaryotic orthologs.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki107", "authors": "O'Brien KP,Remm M,Sonnhammer EL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki107", "created_at": "2021-09-30T08:25:09.258Z", "updated_at": "2021-09-30T11:29:11.551Z"}, {"id": 1513, "pubmed_id": 18055500, "title": "InParanoid 6: eukaryotic ortholog clusters with inparalogs.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1020", "authors": "Berglund AC,Sjolund E,Ostlund G,Sonnhammer EL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm1020", "created_at": "2021-09-30T08:25:09.357Z", "updated_at": "2021-09-30T11:29:11.643Z"}, {"id": 1514, "pubmed_id": 19892828, "title": "InParanoid 7: new algorithms and tools for eukaryotic orthology analysis.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp931", "authors": "Ostlund G,Schmitt T,Forslund K,Kostler T,Messina DN,Roopra S,Frings O,Sonnhammer EL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp931", "created_at": "2021-09-30T08:25:09.457Z", "updated_at": "2021-09-30T11:29:11.735Z"}, {"id": 2383, "pubmed_id": 25429972, "title": "InParanoid 8: orthology analysis between 273 proteomes, mostly eukaryotic.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1203", "authors": "Sonnhammer EL,Ostlund G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1203", "created_at": "2021-09-30T08:26:52.782Z", "updated_at": "2021-09-30T11:29:34.595Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1880", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:29.314Z", "metadata": {"doi": "10.25504/FAIRsharing.e7skwg", "name": "GiardiaDB", "status": "ready", "contacts": [{"contact-name": "Michael Gottlieb", "contact-email": "mgottlieb@fnih.org"}], "homepage": "http://giardiadb.org", "identifier": 1880, "description": "A detailed study of Giardia lamblia's genome will provide insights into an early evolutionary stage of eukaryotic chromosome organization as well as other aspects of the prokaryotic / eukaryotic divergence.", "abbreviation": "GiardiaDB", "access-points": [{"url": "http://giardiadb.org/giardiadb/serviceList.jsp", "name": "WADLs web services", "type": "Other"}], "support-links": [{"url": "http://giardiadb.org/giardiadb/contact.do", "type": "Contact form"}, {"url": "http://giardiadb.org/giardiadb/showXmlDataContent.do?name=XmlQuestions.Tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/EuPathDB", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "http://giardiadb.org/common/downloads/", "name": "Download", "type": "data access"}, {"url": "https://plasmodb.org/plasmo/app/static-content/dataSubmission.html", "name": "Submit", "type": "data curation"}, {"url": "http://giardiadb.org/cgi-bin/gbrowse/giardiadb/", "name": "Gbrowse", "type": "data access"}], "associated-tools": [{"url": "http://giardiadb.org/giardiadb/showQuestion.do?questionFullName=UniversalQuestions.UnifiedBlast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012458", "name": "re3data:r3d100012458", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013377", "name": "SciCrunch:RRID:SCR_013377", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000345", "bsg-d000345"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Chromosome", "Genome"], "taxonomies": ["Eukaryota", "Giardia"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GiardiaDB", "abbreviation": "GiardiaDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.e7skwg", "doi": "10.25504/FAIRsharing.e7skwg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A detailed study of Giardia lamblia's genome will provide insights into an early evolutionary stage of eukaryotic chromosome organization as well as other aspects of the prokaryotic / eukaryotic divergence.", "publications": [{"id": 1523, "pubmed_id": 18824479, "title": "GiardiaDB and TrichDB: integrated genomic resources for the eukaryotic protist pathogens Giardia lamblia and Trichomonas vaginalis.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn631", "authors": "Aurrecoechea C et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn631", "created_at": "2021-09-30T08:25:10.519Z", "updated_at": "2021-09-30T08:25:10.519Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 354, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1827", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.797Z", "metadata": {"doi": "10.25504/FAIRsharing.j98570", "name": "GreenPhylDB: A phylogenomic database for plant comparative genomics", "status": "ready", "contacts": [{"contact-name": "Mathieu Rouard", "contact-email": "greenphyldb@cirad.fr"}], "homepage": "http://www.greenphyl.org", "identifier": 1827, "description": "GreenPhylDB comprises 37 full genomes from the major phylum of plant evolution. Clustering of these genomes was performed to define a consistent and extensive set of homeomorphic plant families.", "abbreviation": "GreenPhyl", "access-points": [{"url": "http://www.greenphyl.org/cgi-bin/rdf.cgi?p=families&with_sequences=1&accession=", "name": "RDF access by gene family", "type": "Other"}], "support-links": [{"url": "http://www.greenphyl.org/cgi-bin/documentation.cgi?page=faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.greenphyl.org/cgi-bin/documentation.cgi?page=overview", "type": "Help documentation"}, {"url": "http://www.greenphyl.org/cgi-bin/documentation.cgi?page=team", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.greenphyl.org/cgi-bin/documentation.cgi?page=datasource", "name": "Genome source", "type": "data release"}, {"url": "http://www.greenphyl.org/cgi-bin/custom_families.cgi?p=list&no_gp=1&listed=1", "name": "Curated Gene families", "type": "data curation"}], "associated-tools": [{"url": "http://www.greenphyl.org/cgi-bin/blast.cgi", "name": "BLAST"}, {"url": "http://www.greenphyl.org/cgi-bin/quick_search.cgi", "name": "search"}, {"url": "http://www.greenphyl.org/cgi-bin/treepattern.cgi", "name": "TreePattern"}, {"url": "http://www.greenphyl.org/cgi-bin/ipr2genomes.cgi", "name": "Interpro domain search"}, {"url": "http://www.greenphyl.org/cgi-bin/families.cgi?p=list&type=validated", "name": "browse"}, {"url": "http://www.greenphyl.org/cgi-bin/search_families.cgi", "name": "advanced search"}]}, "legacy-ids": ["biodbcore-000287", "bsg-d000287"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenomics", "Life Science"], "domains": ["Sequence cluster", "Homologous", "Orthologous", "Genome"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GreenPhylDB: A phylogenomic database for plant comparative genomics", "abbreviation": "GreenPhyl", "url": "https://fairsharing.org/10.25504/FAIRsharing.j98570", "doi": "10.25504/FAIRsharing.j98570", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GreenPhylDB comprises 37 full genomes from the major phylum of plant evolution. Clustering of these genomes was performed to define a consistent and extensive set of homeomorphic plant families.", "publications": [{"id": 346, "pubmed_id": 20864446, "title": "GreenPhylDB v2.0: comparative and functional genomics in plants.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq811", "authors": "Rouard M., Guignon V., Aluome C., Laporte MA., Droc G., Walde C., Zmasek CM., P\u00e9rin C., Conte MG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq811", "created_at": "2021-09-30T08:22:57.274Z", "updated_at": "2021-09-30T08:22:57.274Z"}], "licence-links": [{"licence-name": "GreenPhyl Terms of Service", "licence-id": 365, "link-id": 923, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1883", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:15.479Z", "metadata": {"doi": "10.25504/FAIRsharing.a08mtc", "name": "ToxoDB", "status": "ready", "contacts": [{"contact-name": "Michael Gottlieb", "contact-email": "mgottlieb@fnih.org"}], "homepage": "https://toxodb.org", "identifier": 1883, "description": "ToxoDB is a free online resource that provides access to genomic and functional genomic data for Toxoplasma and related organisms. The resource contains over 30 fully sequenced and annotated genomes, with genomic sequence from multiple strains available for variant detection and copy number variation analysis. In addition to genomic sequence data, ToxoDB contains functional genomic datasets including microarray, RNAseq, proteomics, ChIP-seq, and phenotypic data. In addition, results from a number of whole-genome analyses are incorporated, including mapping to orthology clusters, which allows users to leverage phylogenetic relationships in their analyses.", "abbreviation": "ToxoDB", "access-points": [{"url": "https://toxodb.org/toxo/app/static-content/content/ToxoDB/webServices.html", "name": "ToxoDB Web Services Documentation", "type": "REST"}], "support-links": [{"url": "https://toxodb.org/toxo/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "https://toxodb.org/toxo/app/static-content/landing.html", "name": "How to Use", "type": "Help documentation"}, {"url": "https://twitter.com/VEuPathDB", "name": "@VEuPathDB", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://toxodb.org/toxo/app/downloads/", "name": "Download", "type": "data release"}, {"url": "https://toxodb.org/toxo/app/search/transcript/GeneByLocusTag", "name": "Search by Gene ID", "type": "data access"}, {"url": "https://toxodb.org/toxo/app/static-content/dataSubmission.html", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012266", "name": "re3data:r3d100012266", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013453", "name": "SciCrunch:RRID:SCR_013453", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000348", "bsg-d000348"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Proteomics", "Phylogenetics", "Comparative Genomics"], "domains": ["Expression data", "Proteome", "Pathogen", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing", "DNA microarray", "Phenotype", "Disease", "Genome"], "taxonomies": ["Toxoplasma"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ToxoDB", "abbreviation": "ToxoDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.a08mtc", "doi": "10.25504/FAIRsharing.a08mtc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ToxoDB is a free online resource that provides access to genomic and functional genomic data for Toxoplasma and related organisms. The resource contains over 30 fully sequenced and annotated genomes, with genomic sequence from multiple strains available for variant detection and copy number variation analysis. In addition to genomic sequence data, ToxoDB contains functional genomic datasets including microarray, RNAseq, proteomics, ChIP-seq, and phenotypic data. In addition, results from a number of whole-genome analyses are incorporated, including mapping to orthology clusters, which allows users to leverage phylogenetic relationships in their analyses.", "publications": [{"id": 383, "pubmed_id": 18003657, "title": "ToxoDB: an integrated Toxoplasma gondii database resource.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm981", "authors": "Gajria B., Bahl A., Brestelli J., Dommer J., Fischer S., Gao X., Heiges M., Iodice J., Kissinger JC., Mackey AJ., Pinney DF., Roos DS., Stoeckert CJ., Wang H., Brunk BP.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm981", "created_at": "2021-09-30T08:23:01.499Z", "updated_at": "2021-09-30T08:23:01.499Z"}, {"id": 1314, "pubmed_id": 31758445, "title": "ToxoDB: Functional Genomics Resource for Toxoplasma and Related Organisms.", "year": 2019, "url": "http://doi.org/10.1007/978-1-4939-9857-9_2", "authors": "Harb OS,Roos DS", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-9857-9_2", "created_at": "2021-09-30T08:24:46.733Z", "updated_at": "2021-09-30T08:24:46.733Z"}], "licence-links": [{"licence-name": "VEuPathDB Data Submission and Release Policies", "licence-id": 843, "link-id": 2383, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1873", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:15.999Z", "metadata": {"doi": "10.25504/FAIRsharing.6s44n0", "name": "MycoBrowser tuberculosis", "status": "deprecated", "contacts": [{"contact-name": "Stewart T. Cole", "contact-email": "stewart.cole@epfl.ch", "contact-orcid": "0000-0003-1400-5585"}], "homepage": "http://tuberculist.epfl.ch/", "identifier": 1873, "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", "support-links": [{"url": "tuberculist@epfl.ch", "type": "Support email"}], "data-processes": [{"url": "http://tuberculist.epfl.ch/TubercuList_R27_FASTA.txt", "name": "Download", "type": "data access"}, {"url": "http://tuberculist.epfl.ch/#contact", "name": "submit", "type": "data access"}, {"url": "http://tuberculist.epfl.ch/", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://tuberculist.epfl.ch/blastsearch.php", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000336", "bsg-d000336"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Sequence", "Genome"], "taxonomies": ["Mycobacterium tuberculosis"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MycoBrowser tuberculosis", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.6s44n0", "doi": "10.25504/FAIRsharing.6s44n0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", "publications": [{"id": 387, "pubmed_id": 20980200, "title": "The MycoBrowser portal: a comprehensive and manually annotated resource for mycobacterial genomes.", "year": 2010, "url": "http://doi.org/10.1016/j.tube.2010.09.006", "authors": "Kapopoulou A., Lew JM., Cole ST.,", "journal": "Tuberculosis (Edinb)", "doi": "10.1016/j.tube.2010.09.006", "created_at": "2021-09-30T08:23:01.941Z", "updated_at": "2021-09-30T08:23:01.941Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2870", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-05T13:20:31.000Z", "updated-at": "2021-11-24T13:19:53.561Z", "metadata": {"doi": "10.25504/FAIRsharing.yXPvpU", "name": "TISSUES", "status": "ready", "contacts": [{"contact-name": "Jan Gorodkin", "contact-email": "gorodkin@rth.dk"}], "homepage": "https://tissues.jensenlab.org/", "citations": [{"doi": "10.1093/database/bay003", "pubmed-id": 29617745, "publication-id": 2647}], "identifier": 2870, "description": "TISSUES is a weekly updated web resource that integrates evidence on tissue expression from manually curated literature, proteomics and transcriptomics screens, and automatic text mining. All evidence to common protein identifiers and Brenda Tissue Ontology terms is mapped, and confidence scores that facilitate comparison of the different types and sources of evidence are assigned. These scores are visualized on a schematic human body to provide a convenient overview.", "abbreviation": "TISSUES", "support-links": [{"url": "lars.juhl.jensen@cpr.ku.dk", "name": "Lars Juhl Jensen", "type": "Support email"}, {"url": "https://tissues.jensenlab.org/About", "name": "About", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "https://tissues.jensenlab.org/Downloads", "name": "Download", "type": "data release"}, {"url": "https://tissues.jensenlab.org/Search", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001371", "bsg-d001371"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Proteomics", "Transcriptomics"], "domains": ["Expression data", "Text mining", "Gene expression", "RNA sequencing", "DNA microarray"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus", "Sus scrofa"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: TISSUES", "abbreviation": "TISSUES", "url": "https://fairsharing.org/10.25504/FAIRsharing.yXPvpU", "doi": "10.25504/FAIRsharing.yXPvpU", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TISSUES is a weekly updated web resource that integrates evidence on tissue expression from manually curated literature, proteomics and transcriptomics screens, and automatic text mining. All evidence to common protein identifiers and Brenda Tissue Ontology terms is mapped, and confidence scores that facilitate comparison of the different types and sources of evidence are assigned. These scores are visualized on a schematic human body to provide a convenient overview.", "publications": [{"id": 2647, "pubmed_id": 29617745, "title": "TISSUES 2.0: an integrative web resource on mammalian tissue expression.", "year": 2018, "url": "http://doi.org/10.1093/database/bay003", "authors": "Palasca O,Santos A,Stolte C,Gorodkin J,Jensen LJ", "journal": "Database (Oxford)", "doi": "10.1093/database/bay003", "created_at": "2021-09-30T08:27:25.046Z", "updated_at": "2021-09-30T08:27:25.046Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1504, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2094", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:03.952Z", "metadata": {"doi": "10.25504/FAIRsharing.qaszjp", "name": "RESID Database of Protein Modifications", "status": "ready", "contacts": [{"contact-name": "John S Garavelli", "contact-email": "jsgarave@udel.edu"}], "homepage": "http://pir.georgetown.edu/resid/", "identifier": 2094, "description": "The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", "abbreviation": "RESID", "support-links": [{"url": "http://pir.georgetown.edu/resid/faq.shtml", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://pir.georgetown.edu/resid/documentation.shtml", "type": "Help documentation"}, {"url": "http://pir.georgetown.edu/resid/documentation.shtml", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.pir.georgetown.edu/pir_databases/other_databases/resid/", "name": "Download", "type": "data access"}, {"url": "http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-page+query+-l+resid", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011306", "name": "re3data:r3d100011306", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003505", "name": "SciCrunch:RRID:SCR_003505", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000563", "bsg-d000563"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Small molecule", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "European Union", "Switzerland"], "name": "FAIRsharing record for: RESID Database of Protein Modifications", "abbreviation": "RESID", "url": "https://fairsharing.org/10.25504/FAIRsharing.qaszjp", "doi": "10.25504/FAIRsharing.qaszjp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", "publications": [{"id": 334, "pubmed_id": 12520062, "title": "The RESID Database of Protein Modifications: 2003 developments.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg038", "authors": "Garavelli JS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg038", "created_at": "2021-09-30T08:22:55.931Z", "updated_at": "2021-09-30T11:28:45.476Z"}, {"id": 347, "pubmed_id": 15174122, "title": "The RESID Database of Protein Modifications as a resource and annotation tool.", "year": 2004, "url": "http://doi.org/10.1002/pmic.200300777", "authors": "Garavelli JS", "journal": "Proteomics", "doi": "10.1002/pmic.200300777", "created_at": "2021-09-30T08:22:57.374Z", "updated_at": "2021-09-30T08:22:57.374Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 192, "relation": "undefined"}, {"licence-name": "Use/Link to PIR", "licence-id": 829, "link-id": 193, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2613", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-10T13:28:26.000Z", "updated-at": "2022-02-08T10:28:15.998Z", "metadata": {"doi": "10.25504/FAIRsharing.654822", "name": "PGDBj Ortholog Database", "status": "ready", "contacts": [{"contact-name": "Hideki Hirakawa", "contact-email": "hh@kazusa.or.jp", "contact-orcid": "0000-0002-7128-7390"}], "homepage": "http://pgdbj.jp/pages/index.html?dir=&page=od&ln=en", "identifier": 2613, "description": "The PGDBj Ortholog Database, created under the auspices of the Plant Genome Database Japan (PGDBj), contains information about orthologous genes in plants based on their corresponding amino acid sequence similarity. By placing PGDBj Ortholog Database as a 'hub' within a suite of resources and databases, the aim is to make reciprocal links between databases containing information about various organisms. Users can find orthologs in different subsets of organisms by searching the database using either amino acid information or keywords. The PGDBj 'amino acid sequence DB' contains 500,000 amino acid sequences from 20 plant species classified in Viridiplantae. The PGDBj Ortholog Database provides gene cluster information based on amino acid sequence similarity. Over 500,000 amino acid sequences of 20 Viridiplantae species were subjected to reciprocal BLAST searches and clustered. Sequences from plant genome DBs (e.g. TAIR10 and RAP-DB) were also included in the cluster with a direct link to the original DB. To provide outgroups in the Viridiplantae comparative analyses, ortholog data sets derived from Cyanobacteria and Deuterostomia are also being analyzed.", "abbreviation": null, "support-links": [{"url": "http://pgdbj.jp/pages/index.html?dir=&page=news&ln=en", "name": "News", "type": "Blog/News"}, {"url": "pgdbj@kazusa.or.jp", "type": "Support email"}, {"url": "http://pgdbj.jp/pages/index.html?dir=&page=od&ln=en", "name": "About the PGDBj Ortholog Database", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://pgdbj.jp/od2/", "name": "Basic search", "type": "data access"}, {"url": "http://pgdbj.jp/od2/search_33090.html", "name": "Advanced search", "type": "data access"}, {"url": "http://pgdbj.jp/od2/download_33090.html", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001097", "bsg-d001097"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Life Science", "Plant Genetics"], "domains": ["Sequence similarity", "Sequence alignment", "Gene", "Orthologous"], "taxonomies": ["Cyanobacteria", "Deuterostomia", "Viridiplantae"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: PGDBj Ortholog Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.654822", "doi": "10.25504/FAIRsharing.654822", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The PGDBj Ortholog Database, created under the auspices of the Plant Genome Database Japan (PGDBj), contains information about orthologous genes in plants based on their corresponding amino acid sequence similarity. By placing PGDBj Ortholog Database as a 'hub' within a suite of resources and databases, the aim is to make reciprocal links between databases containing information about various organisms. Users can find orthologs in different subsets of organisms by searching the database using either amino acid information or keywords. The PGDBj 'amino acid sequence DB' contains 500,000 amino acid sequences from 20 plant species classified in Viridiplantae. The PGDBj Ortholog Database provides gene cluster information based on amino acid sequence similarity. Over 500,000 amino acid sequences of 20 Viridiplantae species were subjected to reciprocal BLAST searches and clustered. Sequences from plant genome DBs (e.g. TAIR10 and RAP-DB) were also included in the cluster with a direct link to the original DB. To provide outgroups in the Viridiplantae comparative analyses, ortholog data sets derived from Cyanobacteria and Deuterostomia are also being analyzed.", "publications": [{"id": 2300, "pubmed_id": 24363285, "title": "Plant Genome DataBase Japan (PGDBj): a portal website for the integration of plant genome-related databases.", "year": 2013, "url": "http://doi.org/10.1093/pcp/pct189", "authors": "Asamizu E,Ichihara H,Nakaya A,Nakamura Y,Hirakawa H,Ishii T,Tamura T,Fukami-Kobayashi K,Nakajima Y,Tabata S", "journal": "Plant Cell Physiol", "doi": "10.1093/pcp/pct189", "created_at": "2021-09-30T08:26:41.572Z", "updated_at": "2021-09-30T08:26:41.572Z"}, {"id": 2595, "pubmed_id": 27987164, "title": "Plant Genome DataBase Japan (PGDBj).", "year": 2016, "url": "http://doi.org/10.1007/978-1-4939-6658-5_3", "authors": "Nakaya A,Ichihara H,Asamizu E,Shirasawa S,Nakamura Y,Tabata S,Hirakawa H", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-6658-5_3", "created_at": "2021-09-30T08:27:18.437Z", "updated_at": "2021-09-30T08:27:18.437Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3152", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-21T12:48:48.000Z", "updated-at": "2022-02-08T10:34:18.994Z", "metadata": {"doi": "10.25504/FAIRsharing.1547e3", "name": "LITTERBASE", "status": "ready", "contacts": [{"contact-name": "LITTERBASE General Contact", "contact-email": "litterbase@awi.de"}], "homepage": "https://litterbase.awi.de", "citations": [], "identifier": 3152, "description": "LITTERBASE summarises results from scientific studies in understandable global maps and figures and opens scientific knowledge on marine litter to the public. These publications form the basis of continuously updated maps and figures for policy makers, authorities, scientists, media and the general public on the global amount, distribution and composition of marine litter and its impacts on aquatic life. The portal conveys a broad, fact-based understanding of this environmental problem. It provides a text-based publication search interface as well as a map viewer to retrieve litter data in a geographical context, with further information available from the underlying publication.", "abbreviation": "LITTERBASE", "support-links": [{"url": "https://litterbase.awi.de/index_detail", "name": "About", "type": "Help documentation"}, {"url": "https://litterbase.awi.de/litter_detail", "name": "About Litter Distribution Data", "type": "Help documentation"}, {"url": "https://litterbase.awi.de/litter_graph", "name": "Summary Graphics - Litter Distribution", "type": "Help documentation"}, {"url": "https://litterbase.awi.de/interaction_detail", "name": "About Biological Impact Data", "type": "Help documentation"}, {"url": "https://litterbase.awi.de/interaction_graph", "name": "Summary Graphics - Biological Impact", "type": "Help documentation"}], "data-processes": [{"url": "https://litterbase.awi.de/litter", "name": "Map Viewer - Litter Distribution", "type": "data access"}, {"url": "https://litterbase.awi.de/litter_pub_detail", "name": "Search Publications - Litter Distribution", "type": "data access"}, {"url": "https://litterbase.awi.de/interaction", "name": "Map Viewer - Biological Impact", "type": "data access"}, {"url": "https://litterbase.awi.de/interaction_pub_detail", "name": "Search Publications - Biological Impact", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013207", "name": "re3data:r3d100013207", "portal": "re3data"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001663", "bsg-d001663"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Marine Biology"], "domains": ["Marine environment"], "taxonomies": ["All"], "user-defined-tags": ["Marine Litter"], "countries": ["Germany"], "name": "FAIRsharing record for: LITTERBASE", "abbreviation": "LITTERBASE", "url": "https://fairsharing.org/10.25504/FAIRsharing.1547e3", "doi": "10.25504/FAIRsharing.1547e3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LITTERBASE summarises results from scientific studies in understandable global maps and figures and opens scientific knowledge on marine litter to the public. These publications form the basis of continuously updated maps and figures for policy makers, authorities, scientists, media and the general public on the global amount, distribution and composition of marine litter and its impacts on aquatic life. The portal conveys a broad, fact-based understanding of this environmental problem. It provides a text-based publication search interface as well as a map viewer to retrieve litter data in a geographical context, with further information available from the underlying publication.", "publications": [], "licence-links": [{"licence-name": "AWI imprint", "licence-id": 907, "link-id": 2581, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3161", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-28T12:56:51.000Z", "updated-at": "2021-11-24T13:16:47.609Z", "metadata": {"name": "Hazards Data Distribution System", "status": "ready", "contacts": [{"contact-name": "USGS Emergency Operations Customer Services", "contact-email": "eocustserv@usgs.gov"}], "homepage": "http://HDDSExplorer.usgs.gov", "identifier": 3161, "description": "The Hazards Data Distribution System (HDDS) Explorer is a unique collection of imagery and documents designed to assist in the response to natural and man-made disasters. Like a traditional web-based interface to an imagery archive (such as EarthExplorer), HDDS provides geographic search capabilities based on latitude and longitude boundaries and other criteria. HDDS contains imagery acquired in the aftermath of a disaster as well as imagery of the same region before the event.", "abbreviation": "HDDS", "support-links": [{"url": "https://lta.cr.usgs.gov/HDDSHelp/hdds_help", "name": "HDDS Help", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "https://hddsexplorer.usgs.gov/", "name": "Search & Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001672", "bsg-d001672"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Man-made Disaster", "Natural Disaster"], "countries": ["United States"], "name": "FAIRsharing record for: Hazards Data Distribution System", "abbreviation": "HDDS", "url": "https://fairsharing.org/fairsharing_records/3161", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Hazards Data Distribution System (HDDS) Explorer is a unique collection of imagery and documents designed to assist in the response to natural and man-made disasters. Like a traditional web-based interface to an imagery archive (such as EarthExplorer), HDDS provides geographic search capabilities based on latitude and longitude boundaries and other criteria. HDDS contains imagery acquired in the aftermath of a disaster as well as imagery of the same region before the event.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2360", "type": "fairsharing-records", "attributes": {"created-at": "2016-11-04T10:14:55.000Z", "updated-at": "2021-11-24T13:16:28.435Z", "metadata": {"doi": "10.25504/FAIRsharing.kthr0s", "name": "Musa Germplasm Information System", "status": "ready", "contacts": [{"contact-email": "mgis@crop-diversity.org"}], "homepage": "https://www.crop-diversity.org/mgis/", "identifier": 2360, "description": "The Musa Germplasm Information System (MGIS) contains key information on Musa germplasm diversity, including passport data, botanical classification, morpho-taxonomic descriptors, molecular studies, plant photographs and GIS information on 4771 accessions managed in 24 collections around the world, making it the most extensive source of information on banana genetic resources.", "abbreviation": "MGIS", "access-points": [{"url": "https://www.crop-diversity.org/mgis/brapi/v1/", "name": "https://www.crop-diversity.org/mgis/brapi/overview", "type": "REST"}], "support-links": [{"url": "https://www.crop-diversity.org/mgis/contact-form", "type": "Contact form"}, {"url": "https://www.crop-diversity.org/mgis/help", "type": "Help documentation"}, {"url": "https://www.crop-diversity.org/mgis/content/release-notes", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "https://www.crop-diversity.org/mgis/organisations", "name": "Collection Data", "type": "data access"}, {"url": "https://www.crop-diversity.org/mgis/bulk-export", "name": "Data Export", "type": "data access"}], "associated-tools": [{"url": "https://www.crop-diversity.org/mgis/accession-search", "name": "Accession Search"}, {"url": "https://www.crop-diversity.org/mgis/taxonomy", "name": "Taxonomy Browser"}, {"url": "https://www.crop-diversity.org/mgis/comparator", "name": "Accession Comparison"}]}, "legacy-ids": ["biodbcore-000839", "bsg-d000839"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biodiversity", "Life Science"], "domains": ["DNA structural variation", "Phenotype", "Genotype"], "taxonomies": ["Ensete", "Musa"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Musa Germplasm Information System", "abbreviation": "MGIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.kthr0s", "doi": "10.25504/FAIRsharing.kthr0s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Musa Germplasm Information System (MGIS) contains key information on Musa germplasm diversity, including passport data, botanical classification, morpho-taxonomic descriptors, molecular studies, plant photographs and GIS information on 4771 accessions managed in 24 collections around the world, making it the most extensive source of information on banana genetic resources.", "publications": [{"id": 765, "pubmed_id": 5502358, "title": "MGIS: managing banana (Musa spp.) genetic resources information and high-throughput genotyping data", "year": 1970, "url": "http://doi.org/10.1177/18.12.893", "authors": "Ruas M, Guignon V, Sempere G, et al.", "journal": "database", "doi": "10.1093/database/bax046", "created_at": "2021-09-30T08:23:44.328Z", "updated_at": "2021-09-30T11:28:30.859Z"}], "licence-links": [{"licence-name": "MGIS Data Sharing Agreement", "licence-id": 510, "link-id": 1304, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2915", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T14:36:37.000Z", "updated-at": "2021-11-24T13:14:11.497Z", "metadata": {"name": "PGG.SNV", "status": "ready", "contacts": [{"contact-name": "PGG.SNV Helpdesk", "contact-email": "pggadmin@picb.ac.cn"}], "homepage": "https://www.pggsnv.org", "citations": [{"doi": "10.1186/s13059-019-1838-5", "pubmed-id": 31640808, "publication-id": 2820}], "identifier": 2915, "description": "PGG.SNV is database for understanding the evolutionary and medical implications of human single nucleotide variation (SNV) on a population level. It documents more than 300,000 genomes and 10 billion allele frequencies records for diverse human ethnic groups.", "abbreviation": "PGG.SNV", "support-links": [{"url": "https://www.pggsnv.org/userguide.html", "name": "User Guide", "type": "Help documentation"}, {"url": "https://www.pggsnv.org/statistics.html", "name": "Statistics", "type": "Help documentation"}, {"url": "https://www.pggsnv.org/update.html", "name": "News", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=0", "name": "Browse Variants", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=1", "name": "View Population Prevalence", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=5", "name": "Population Differentiation", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=2", "name": "Allele Frequency in Ancient Genomes", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=4", "name": "View Conservation Scores", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=7", "name": "View Genome Diversity Patterns", "type": "data access"}, {"url": "https://www.pggsnv.org/searchinfo.html?key=1-231557623-G-C&type=8", "name": "Linkage Disequilibrium", "type": "data access"}], "associated-tools": [{"url": "https://www.pggsnv.org/tools.html", "name": "Tool Listing"}]}, "legacy-ids": ["biodbcore-001418", "bsg-d001418"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Population Genetics"], "domains": ["Single nucleotide polymorphism", "Sequence variant"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: PGG.SNV", "abbreviation": "PGG.SNV", "url": "https://fairsharing.org/fairsharing_records/2915", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PGG.SNV is database for understanding the evolutionary and medical implications of human single nucleotide variation (SNV) on a population level. It documents more than 300,000 genomes and 10 billion allele frequencies records for diverse human ethnic groups.", "publications": [{"id": 2820, "pubmed_id": 31640808, "title": "PGG.SNV: understanding the evolutionary and medical implications of human single nucleotide variations in diverse populations.", "year": 2019, "url": "http://doi.org/10.1186/s13059-019-1838-5", "authors": "Zhang C,Gao Y,Ning Z,Lu Y,Zhang X,Liu J,Xie B,Xue Z,Wang X,Yuan K,Ge X,Pan Y,Liu C,Tian L,Wang Y,Lu D,Hoh BP,Xu S", "journal": "Genome Biol", "doi": "10.1186/s13059-019-1838-5", "created_at": "2021-09-30T08:27:46.797Z", "updated_at": "2021-09-30T08:27:46.797Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2924", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-20T08:01:27.000Z", "updated-at": "2022-02-08T10:39:32.356Z", "metadata": {"doi": "10.25504/FAIRsharing.a01ca1", "name": "LitCovid", "status": "ready", "contacts": [{"contact-name": "Zhiyong Lu", "contact-email": "Zhiyong.Lu@nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/research/coronavirus/", "identifier": 2924, "description": "LitCovid is a curated literature hub for tracking up-to-date scientific information about the 2019 novel Coronavirus. It is the most comprehensive resource on the subject, providing a central access to 5645 (and growing) relevant articles in PubMed. The articles are updated daily and are further categorized by different research topics and geographic locations for improved access.", "abbreviation": "LitCovid", "year-creation": 2020, "data-processes": [{"url": "https://www.ncbi.nlm.nih.gov/research/coronavirus/", "name": "Browse & search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001427", "bsg-d001427"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Text mining", "Journal article", "Curated information", "Literature curation", "Biocuration"], "taxonomies": ["Coronaviridae"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: LitCovid", "abbreviation": "LitCovid", "url": "https://fairsharing.org/10.25504/FAIRsharing.a01ca1", "doi": "10.25504/FAIRsharing.a01ca1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LitCovid is a curated literature hub for tracking up-to-date scientific information about the 2019 novel Coronavirus. It is the most comprehensive resource on the subject, providing a central access to 5645 (and growing) relevant articles in PubMed. The articles are updated daily and are further categorized by different research topics and geographic locations for improved access.", "publications": [{"id": 958, "pubmed_id": 32157233, "title": "Keep up with the latest coronavirus research.", "year": 2020, "url": "http://doi.org/10.1038/d41586-020-00694-1", "authors": "Chen Q,Allot A,Lu Z", "journal": "Nature", "doi": "10.1038/d41586-020-00694-1", "created_at": "2021-09-30T08:24:06.026Z", "updated_at": "2021-09-30T08:24:06.026Z"}], "licence-links": [{"licence-name": "NCBI Website and Data Usage Policies and Disclaimers", "licence-id": 558, "link-id": 645, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2398", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T15:55:23.000Z", "updated-at": "2021-11-24T13:19:34.919Z", "metadata": {"doi": "10.25504/FAIRsharing.7fnx38", "name": "SwissRegulon", "status": "ready", "contacts": [{"contact-name": "Erik van Nimwegen", "contact-email": "erik.vannimwegen@unibas.ch", "contact-orcid": "0000-0001-6338-1312"}], "homepage": "http://swissregulon.unibas.ch/sr/", "citations": [{"doi": "10.1093/nar/gks1145", "pubmed-id": 23180783, "publication-id": 2038}], "identifier": 2398, "description": "The Swissregulon Database contains genome-wide annotations of regulatory sites. The predictions are based on Bayesian probabilistic analysis of a combination of input information including i) Experimentally determined binding sites reported in the literature, ii) Known sequence-specificities of transcription factors, iii) ChIP-chip and ChIP-seq data, iiii) Alignments of orthologous non-coding regions.", "abbreviation": "SwissRegulon", "support-links": [{"url": "helpdesk@expasy.org", "name": "Expasy Helpdesk", "type": "Support email"}, {"url": "http://swissregulon.unibas.ch/sr/documentation", "name": "SwissRegulon documentation", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://swissregulon.unibas.ch/sr/downloads", "name": "download", "type": "data access"}, {"url": "http://swissregulon.unibas.ch/sr/annotations", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://www.swissregulon.unibas.ch/software/motevo/motevo_ver1.11.zip", "name": "Motevo 1.11"}, {"url": "http://dwt.unibas.ch/", "name": "DWT-toolbox"}, {"url": "http://ismara.unibas.ch/downloads/phylogibbs-1.2.zip", "name": "PhyloGibbs 1.2"}, {"url": "http://ismara.unibas.ch/downloads/procse2.0.zip", "name": "PROCSE 2.0"}, {"url": "http://ismara.unibas.ch/downloads/stubb_2.1.zip", "name": "STUBB 2.1"}, {"url": "http://ismara.unibas.ch/downloads/spa.zip", "name": "SPA"}]}, "legacy-ids": ["biodbcore-000879", "bsg-d000879"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome annotation", "Binding site prediction", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing", "Chromatin immunoprecipitation - DNA microarray", "Gene regulatory element", "Binding site", "Regulatory region", "Literature curation"], "taxonomies": ["Bacillus subtilis", "Brucella suis", "Burkholderia pseudomallei K96243", "Burkholderia thailandensis E264", "Chlamydophila caviae", "Corynebacterium glutamicum R", "Ehrlichia canis", "Escherichia coli", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Neisseria meningitidis", "Prochlorococcus marinus", "Pseudomonas syringae", "Ralstonia eutropha", "Rickettsia typhi wilmington", "Saccharomyces cerevisiae", "Staphylococcus aureus", "Streptococcus pneumoniae", "Vibrio cholerae"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: SwissRegulon", "abbreviation": "SwissRegulon", "url": "https://fairsharing.org/10.25504/FAIRsharing.7fnx38", "doi": "10.25504/FAIRsharing.7fnx38", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Swissregulon Database contains genome-wide annotations of regulatory sites. The predictions are based on Bayesian probabilistic analysis of a combination of input information including i) Experimentally determined binding sites reported in the literature, ii) Known sequence-specificities of transcription factors, iii) ChIP-chip and ChIP-seq data, iiii) Alignments of orthologous non-coding regions.", "publications": [{"id": 2014, "pubmed_id": 17130146, "title": "SwissRegulon: a database of genome-wide annotations of regulatory sites.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl857", "authors": "Pachkov M,Erb I,Molina N,van Nimwegen E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl857", "created_at": "2021-09-30T08:26:06.903Z", "updated_at": "2021-09-30T11:29:25.652Z"}, {"id": 2038, "pubmed_id": 23180783, "title": "SwissRegulon, a database of genome-wide annotations of regulatory sites: recent updates.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1145", "authors": "Pachkov M,Balwierz PJ,Arnold P,Ozonov E,van Nimwegen E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1145", "created_at": "2021-09-30T08:26:09.512Z", "updated_at": "2021-09-30T11:29:26.986Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2387", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-13T14:42:38.000Z", "updated-at": "2021-11-24T13:15:46.439Z", "metadata": {"doi": "10.25504/FAIRsharing.bcdtjc", "name": "Enzyme Portal", "status": "ready", "contacts": [{"contact-name": "Joseph Onwubiko", "contact-email": "joseph@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/enzymeportal/", "identifier": 2387, "description": "The Enzyme Portal is for those interested in the biology of enzymes and proteins with enzymatic activity. It integrates publicly available information about enzymes, such as small-molecule chemistry, biochemical pathways and drug compounds. It contains enzyme-related information from resources developed at the EBI, and presents it via a unified user experience. The Enzyme Portal team does not curate enzyme information and therefore is a secondary information resource or portal.", "abbreviation": "Enzyme Portal", "support-links": [{"url": "https://www.ebi.ac.uk/support/index.php?query=Enzyme+portal", "name": "Feedback Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/enzymeportal/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/uniprot/enzymeportal", "name": "GitHub Project & Docs", "type": "Github"}, {"url": "https://www.ebi.ac.uk/enzymeportal/about", "name": "About", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/enzyme-portal-quick-tour", "name": "Enzyme Portal: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/enzymeportal", "name": "@enzymeportal", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://www.ebi.ac.uk/enzymeportal/browse/enzymes", "name": "Browse by Enzyme", "type": "data access"}, {"url": "https://www.ebi.ac.uk/enzymeportal/browse/disease", "name": "Browse by Disease", "type": "data access"}, {"url": "https://www.ebi.ac.uk/enzymeportal/browse/taxonomy", "name": "Browse by Taxonomy", "type": "data access"}, {"url": "https://www.ebi.ac.uk/enzymeportal/browse/pathways", "name": "Browse by Pathway", "type": "data access"}, {"url": "http://www.ebi.ac.uk/enzymeportal/", "name": "Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/enzymeportal/browse/families", "name": "Browse by Enzyme Families", "type": "data access"}, {"url": "https://www.ebi.ac.uk/enzymeportal/browse/cofactors", "name": "Browse by Cofactors", "type": "data access"}], "associated-tools": [{"url": "https://www.ebi.ac.uk/thornton-srv/transform-miner/", "name": "Transform-MinER"}, {"url": "https://www.ebi.ac.uk/Tools/services/web/toolform.ebi?tool=ncbiblast&database=enzymeportal", "name": "NCBI BLAST+"}]}, "legacy-ids": ["biodbcore-000867", "bsg-d000867"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Enzymology"], "domains": ["Drug", "Catalytic activity", "Small molecule", "Enzyme", "Disease", "Pathway model"], "taxonomies": ["Arabidopsis thaliana", "Bacillus subtilis", "Bos taurus", "Caenorhabditis elegans", "Danio rerio", "Dictyostelium discoideum", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Mus musculus", "Mycobacterium tuberculosis", "Oryza sativa L. ssp. japonica", "Rattus norvegicus", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Enzyme Portal", "abbreviation": "Enzyme Portal", "url": "https://fairsharing.org/10.25504/FAIRsharing.bcdtjc", "doi": "10.25504/FAIRsharing.bcdtjc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Enzyme Portal is for those interested in the biology of enzymes and proteins with enzymatic activity. It integrates publicly available information about enzymes, such as small-molecule chemistry, biochemical pathways and drug compounds. It contains enzyme-related information from resources developed at the EBI, and presents it via a unified user experience. The Enzyme Portal team does not curate enzyme information and therefore is a secondary information resource or portal.", "publications": [{"id": 2053, "pubmed_id": 23175605, "title": "The EBI enzyme portal.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1112", "authors": "Alcantara R,Onwubiko J,Cao H,Matos Pd,Cham JA,Jacobsen J,Holliday GL,Fischer JD,Rahman SA,Jassal B,Goujon M,Rowland F,Velankar S,Lopez R,Overington JP,Kleywegt GJ,Hermjakob H,O'Donovan C,Martin MJ,Thornton JM,Steinbeck C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1112", "created_at": "2021-09-30T08:26:11.305Z", "updated_at": "2021-09-30T11:29:27.427Z"}], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 322, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 323, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2576", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T13:11:54.000Z", "updated-at": "2022-02-08T10:26:21.535Z", "metadata": {"doi": "10.25504/FAIRsharing.cbfbbb", "name": "GeneNet Engine", "status": "ready", "contacts": [{"contact-name": "Frank Alex Feltus", "contact-email": "ffeltus@clemson.edu", "contact-orcid": "0000-0002-2123-6114"}], "homepage": "http://gene-networks.org/", "citations": [], "identifier": 2576, "description": "GeneNet Engine is an exploratory tool to aid hypothesis and biomarker development at a systems-level for genotype-phenotype relationships. Expressed phenotypes may arise due to interactions between multiple genes in a system and effects from the surrounding environment. Therefore, a high systems-level view is needed to identify gene sets causal for a trait. The ability to predict genes that effect important traits is of great importance to agriculture and health. System biology approaches, that combine genomics, gene co-expression networks and data from genetic studies help provide a view at the systems-level of gene interactions. As co-expressed genes tend to be involved in similar processes, it is expected that co-expressed genes may work together to give rise to specific pheontypes. The network module serves as the basic unit of exploration in this site.", "abbreviation": "GeneNet Engine", "data-curation": {}, "year-creation": 2013, "data-processes": [{"url": "http://gene-networks.org/data_search/gene", "name": "Search GeneNet Engine for Genes", "type": "data access"}, {"url": "http://gene-networks.org/networks/viewer", "name": "3D Network Explorer", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001059", "bsg-d001059"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Life Science", "Systems Biology"], "domains": ["Network model", "Biomarker", "Co-expression", "Phenotype", "Genotype"], "taxonomies": ["Arabidopsis thaliana", "Oryza sativa", "Zea mays"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GeneNet Engine", "abbreviation": "GeneNet Engine", "url": "https://fairsharing.org/10.25504/FAIRsharing.cbfbbb", "doi": "10.25504/FAIRsharing.cbfbbb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GeneNet Engine is an exploratory tool to aid hypothesis and biomarker development at a systems-level for genotype-phenotype relationships. Expressed phenotypes may arise due to interactions between multiple genes in a system and effects from the surrounding environment. Therefore, a high systems-level view is needed to identify gene sets causal for a trait. The ability to predict genes that effect important traits is of great importance to agriculture and health. System biology approaches, that combine genomics, gene co-expression networks and data from genetic studies help provide a view at the systems-level of gene interactions. As co-expressed genes tend to be involved in similar processes, it is expected that co-expressed genes may work together to give rise to specific pheontypes. The network module serves as the basic unit of exploration in this site.", "publications": [{"id": 795, "pubmed_id": 23874666, "title": "A systems-genetics approach and data mining tool to assist in the discovery of genes underlying complex traits in Oryza sativa.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0068551", "authors": "Ficklin SP,Feltus FA", "journal": "PLoS One", "doi": "10.1371/journal.pone.0068551", "created_at": "2021-09-30T08:23:47.620Z", "updated_at": "2021-09-30T08:23:47.620Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3042", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-06T10:21:52.000Z", "updated-at": "2021-12-06T10:47:31.357Z", "metadata": {"name": "COSYNA data web portal", "status": "ready", "contacts": [{"contact-name": "Gisbert Breitbach", "contact-email": "gisbert.breitbach@hzg.de", "contact-orcid": "0000-0003-4373-084X"}], "homepage": "http://codm.hzg.de/codm", "identifier": 3042, "description": "The COSYNA observatory measures key physical, sedimentary, geochemical and biological parameters at high temporal resolution in the water column and at the sediment and atmospheric boundaries. COSYNA delivers spatial representation through a set of fixed and moving platforms, like tidal flats poles, FerryBoxes, gliders, ship surveys, towed devices, remote sensing, etc.. New technologies like underwater nodes, benthic landers and automated sensors for water biogeochemical parameters are further developed and tested. A great variety of parameters is measured and processed, stored, analyzed, assimilated into models and visualized.", "abbreviation": "CODM", "support-links": [{"url": "http://codm.hzg.de/codm/templates/help_start.html", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "http://codm.hzg.de/codm", "name": "Register to access data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010480", "name": "re3data:r3d100010480", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001550", "bsg-d001550"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geochemistry", "Earth Science", "Atmospheric Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Sedimentology"], "countries": ["Germany"], "name": "FAIRsharing record for: COSYNA data web portal", "abbreviation": "CODM", "url": "https://fairsharing.org/fairsharing_records/3042", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The COSYNA observatory measures key physical, sedimentary, geochemical and biological parameters at high temporal resolution in the water column and at the sediment and atmospheric boundaries. COSYNA delivers spatial representation through a set of fixed and moving platforms, like tidal flats poles, FerryBoxes, gliders, ship surveys, towed devices, remote sensing, etc.. New technologies like underwater nodes, benthic landers and automated sensors for water biogeochemical parameters are further developed and tested. A great variety of parameters is measured and processed, stored, analyzed, assimilated into models and visualized.", "publications": [{"id": 3018, "pubmed_id": null, "title": "Accessing diverse data comprehensively \u2013 CODM, the COSYNA data portal", "year": 2016, "url": "https://os.copernicus.org/articles/12/909/2016/os-12-909-2016.pdf", "authors": "Gisbert Breitbach, Hajo Krasemann, Daniel Behr, Steffen Beringer, Uwe Lange, Nhan Vo, and Friedhelm Schroeder", "journal": "Ocean Science", "doi": null, "created_at": "2021-09-30T08:28:12.082Z", "updated_at": "2021-09-30T08:28:12.082Z"}], "licence-links": [{"licence-name": "COSYNA Data Policies", "licence-id": 152, "link-id": 2445, "relation": "undefined"}, {"licence-name": "Helmholtz-Zentrum Geesthacht Data Privacy", "licence-id": 386, "link-id": 2446, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3132", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-16T10:37:32.000Z", "updated-at": "2022-02-08T10:42:28.198Z", "metadata": {"doi": "10.25504/FAIRsharing.a7abca", "name": "Keck Observatory Archive", "status": "ready", "homepage": "https://nexsci.caltech.edu/archives/koa/", "identifier": 3132, "description": "The Keck Observatory Archive takes advantage of the Observatory\u2019s expertise with instrumentation, operations, and data organization, and of NExScI/IPAC\u2019s expertise and infrastructure for archiving and serving large and complex data sets. KOA archives all science and calibration observations obtained since the Observatory started operations in 1994.", "abbreviation": "KOA", "access-points": [{"url": "https://koa.ipac.caltech.edu/UserGuide/program_interface_guide.html", "name": "KOA Program-Friendly Image Access Service", "type": "Other"}], "support-links": [{"url": "https://koa.ipac.caltech.edu/news.html", "name": "News", "type": "Blog/News"}, {"url": "https://koa.ipac.caltech.edu/cgi-bin/Helpdesk/nph-genTicketForm?projname=KOA", "name": "Contact KOA User Support", "type": "Contact form"}, {"url": "https://www2.keck.hawaii.edu/koa/public/faq/koa_faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://koa.ipac.caltech.edu/UserGuide/about.html", "name": "Getting started", "type": "Help documentation"}, {"url": "https://koa.ipac.caltech.edu/UserGuide/", "name": "User Guide", "type": "Help documentation"}], "year-creation": 1994, "data-processes": [{"url": "https://koa.ipac.caltech.edu/cgi-bin/KOA/nph-KOAlogin", "name": "KOA Search Form", "type": "data access"}, {"url": "https://koa.ipac.caltech.edu/applications/KI/", "name": "KI Search Form", "type": "data access"}, {"url": "https://koa.ipac.caltech.edu/cgi-bin/KOA/nph-KOArel", "name": "Browse Public Data", "type": "data access"}, {"url": "https://koa.ipac.caltech.edu/Datasets/", "name": "Submit Dataset", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010526", "name": "re3data:r3d100010526", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001643", "bsg-d001643"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geophysics", "Astrophysics and Astronomy", "Earth Science"], "domains": ["Spectroscopy"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Keck Observatory Archive", "abbreviation": "KOA", "url": "https://fairsharing.org/10.25504/FAIRsharing.a7abca", "doi": "10.25504/FAIRsharing.a7abca", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Keck Observatory Archive takes advantage of the Observatory\u2019s expertise with instrumentation, operations, and data organization, and of NExScI/IPAC\u2019s expertise and infrastructure for archiving and serving large and complex data sets. KOA archives all science and calibration observations obtained since the Observatory started operations in 1994.", "publications": [], "licence-links": [{"licence-name": "KOA Data Release Policy", "licence-id": 481, "link-id": 1889, "relation": "undefined"}, {"licence-name": "KOA Privacy Policy", "licence-id": 483, "link-id": 1890, "relation": "undefined"}, {"licence-name": "KOA Image Use Policy", "licence-id": 482, "link-id": 1891, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1548", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-01-13T13:18:13.625Z", "metadata": {"doi": "10.25504/FAIRsharing.wvp1t7", "name": "GlycoNAVI", "status": "ready", "contacts": [{"contact-name": "Issaku Yamada", "contact-email": "issaku@noguchi.or.jp", "contact-orcid": "0000-0001-9504-189X"}], "homepage": "https://glyconavi.org/", "identifier": 1548, "description": "GlycoNAVI is a repository of data relevant to carbohydrate research. It contains a free suite of carbohydrate research tools organized by domain, including glycans, proteins, lipids, genes, diseases and samples.", "abbreviation": "GlycoNAVI", "support-links": [{"url": "glyconavi@noguchi.or.jp", "name": "General Contact", "type": "Support email"}, {"url": "https://glyconavi.github.io/doc/", "name": "Documentation", "type": "Github"}], "year-creation": 2010, "data-processes": [{"name": "live continuous release", "type": "data curation"}, {"name": "manual curation", "type": "data release"}, {"url": "https://glyconavi.org/TCarp/", "name": "search", "type": "data access"}, {"url": "https://glyconavi.org/", "name": "browse", "type": "data access"}, {"url": "https://glyconavi.org/Glycans/", "name": "Glycans", "type": "data access"}, {"url": "https://glyconavi.org/Proteins/", "name": "Proteins", "type": "data access"}, {"url": "https://glyconavi.org/Genes/", "name": "Genes", "type": "data access"}, {"url": "https://glyconavi.org/Diseases/", "name": "Diseases", "type": "data access"}, {"url": "https://glyconavi.org/Samples/", "name": "Samples", "type": "data access"}, {"url": "https://glyconavi.org/Chemistry/", "name": "Chemistry", "type": "data access"}, {"url": "https://glyconavi.org/Pharmacy/", "name": "Pharmacy", "type": "data access"}], "associated-tools": [{"url": "https://glyconavi.org/TCarp/", "name": "TCarp 0.9.0"}]}, "legacy-ids": ["biodbcore-000002", "bsg-d000002"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Organic Chemistry", "Chemistry", "Life Science", "Glycomics"], "domains": ["Protecting group"], "taxonomies": ["All"], "user-defined-tags": ["Non-carbohydrate moieties"], "countries": ["Japan"], "name": "FAIRsharing record for: GlycoNAVI", "abbreviation": "GlycoNAVI", "url": "https://fairsharing.org/10.25504/FAIRsharing.wvp1t7", "doi": "10.25504/FAIRsharing.wvp1t7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlycoNAVI is a repository of data relevant to carbohydrate research. It contains a free suite of carbohydrate research tools organized by domain, including glycans, proteins, lipids, genes, diseases and samples.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2025, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1561", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-03T09:19:59.206Z", "metadata": {"doi": "10.25504/FAIRsharing.m3jtpg", "name": "ChEMBL", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "chembl-help@ebi.ac.uk"}], "homepage": "https://www.ebi.ac.uk/chembl", "citations": [{"doi": "10.1093/nar/gky1075", "pubmed-id": 30398643, "publication-id": 712}], "identifier": 1561, "description": "ChEMBL is an open, manually-curated, large-scale bioactivity database containing information from medicinal chemistry literature. It brings together chemical, bioactivity and genomic data to aid the translation of genomic information into effective new drugs. Information regarding the compounds tested (including their structures), the biological or physicochemical assays performed on these and the targets of these assays are recorded in a structured form, allowing users to address a broad range of drug discovery questions.", "abbreviation": "ChEMBL", "access-points": [{"url": "http://www.biocatalogue.org/rest_methods/174", "name": "Compound record bioactivities", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/173", "name": "Compound Record", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/175", "name": "target record", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/176", "name": "target bioactivities", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/177", "name": "all targets", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/178", "name": "Fetch assay", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/179", "name": "Fetch assay bioactivities", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/180", "name": "target record by RefSeq accession identifier", "type": "REST"}, {"url": "https://chembl.gitbook.io/chembl-interface-documentation/web-services", "name": "ChEMBL Web Services", "type": "REST"}, {"url": "http://www.biocatalogue.org/rest_methods/181", "name": "ChEMBLdb target record by UniProt accession identifier", "type": "REST"}], "support-links": [{"url": "https://chembl.blogspot.com/", "name": "ChEMBL Blog", "type": "Blog/News"}, {"url": "https://chembl.gitbook.io/chembl-interface-documentation/frequently-asked-questions", "name": "ChEMBL FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://listserver.ebi.ac.uk/mailman/listinfo/chembl-announce", "name": "ChEMBL Announce", "type": "Mailing list"}, {"url": "https://chembl.gitbook.io/chembl-interface-documentation/web-services", "name": "Guide to Web Services", "type": "Help documentation"}, {"url": "https://chembl.gitbook.io/chembl-interface-documentation/", "name": "ChEMBL interface documentation", "type": "Help documentation"}, {"url": "https://github.com/chembl/GLaDOS", "name": "ChEMBL Front-End GitHub Project", "type": "Github"}, {"url": "https://tess.elixir-europe.org/materials/chembl-quick-tour", "name": "Chembl quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/chembl-exploring-bioactive-drug-like-molecules", "name": "Chembl exploring bioactive drug like molecules", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/chembl-walkthrough-webinar", "name": "Chembl walkthrough webinar", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/chembl", "name": "@chembl", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/ChEMBL", "name": "ChEMBL Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2009, "data-processes": [{"url": "https://chembl.gitbook.io/chembl-interface-documentation/downloads", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/chembl/g/#search_results/all", "name": "Browse", "type": "data access"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBLdb/latest/", "name": "Download", "type": "data release"}, {"url": "https://chembl.gitbook.io/chembl-ntd/", "name": "Browse ChEMBL-NTD", "type": "data access"}, {"url": "https://www.ebi.ac.uk/chembl/visualise/", "name": "Browse via Visualization", "type": "data access"}, {"url": "https://www.surechembl.org/search/", "name": "SureChEMBL Query", "type": "data access"}, {"url": "https://www.ebi.ac.uk/unichem/", "name": "UniChem Query", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010539", "name": "re3data:r3d100010539", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_014042", "name": "SciCrunch:RRID:SCR_014042", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000015", "bsg-d000015"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Biochemistry", "Genomics", "Medicinal Chemistry"], "domains": ["Chemical structure", "Drug", "Chemical entity", "Bioactivity", "Small molecule", "Genome", "Tissue"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: ChEMBL", "abbreviation": "ChEMBL", "url": "https://fairsharing.org/10.25504/FAIRsharing.m3jtpg", "doi": "10.25504/FAIRsharing.m3jtpg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChEMBL is an open, manually-curated, large-scale bioactivity database containing information from medicinal chemistry literature. It brings together chemical, bioactivity and genomic data to aid the translation of genomic information into effective new drugs. Information regarding the compounds tested (including their structures), the biological or physicochemical assays performed on these and the targets of these assays are recorded in a structured form, allowing users to address a broad range of drug discovery questions.", "publications": [{"id": 694, "pubmed_id": 21948594, "title": "ChEMBL: a large-scale bioactivity database for drug discovery.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr777", "authors": "Gaulton A., Bellis LJ., Bento AP., Chambers J., Davies M., Hersey A., Light Y., McGlinchey S., Michalovich D., Al-Lazikani B., Overington JP.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr777", "created_at": "2021-09-30T08:23:36.488Z", "updated_at": "2021-09-30T08:23:36.488Z"}, {"id": 712, "pubmed_id": 30398643, "title": "ChEMBL: towards direct deposition of bioassay data.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1075", "authors": "Mendez D,Gaulton A,Bento AP,Chambers J,De Veij M,Felix E,Magarinos MP,Mosquera JF,Mutowo P,Nowotka M,Gordillo-Maranon M,Hunter F,Junco L,Mugumbate G,Rodriguez-Lopez M,Atkinson F,Bosc N,Radoux CJ,Segura-Cabrera A,Hersey A,Leach AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1075", "created_at": "2021-09-30T08:23:38.484Z", "updated_at": "2021-09-30T11:28:49.142Z"}, {"id": 738, "pubmed_id": 24214965, "title": "The ChEMBL bioactivity database: an update", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1031", "authors": "Bento AP, Gaulton A, Hersey A, Bellis LJ, Chambers J, Davies M, Kr\u00fcger FA, Light Y, Mak L, McGlinchey S, Nowotka M, Papadatos G, Santos R, Overington JP.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1031", "created_at": "2021-09-30T08:23:41.295Z", "updated_at": "2021-09-30T08:23:41.295Z"}, {"id": 2768, "pubmed_id": 27899562, "title": "The ChEMBL database in 2017.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1074", "authors": "Gaulton A,Hersey A,Nowotka M,Bento AP,Chambers J,Mendez D,Mutowo P,Atkinson F,Bellis LJ,Cibrian-Uhalte E,Davies M,Dedman N,Karlsson A,Magarinos MP,Overington JP,Papadatos G,Smit I,Leach AR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1074", "created_at": "2021-09-30T08:27:40.195Z", "updated_at": "2021-09-30T11:29:43.495Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 2429, "relation": "undefined"}, {"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2430, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1581", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:51.503Z", "metadata": {"doi": "10.25504/FAIRsharing.2z0e8b", "name": "ExoCarta", "status": "ready", "contacts": [{"contact-name": "Suresh Mathivanan", "contact-email": "s.mathivanan@latrobe.edu.au", "contact-orcid": "0000-0002-7290-5795"}], "homepage": "http://www.exocarta.org", "identifier": 1581, "description": "A database of exosomes, membrane vesicles of endocytic origin released by diverse cell types.", "abbreviation": "ExoCarta", "support-links": [{"url": "https://en.wikipedia.org/wiki/ExoCarta", "type": "Wikipedia"}], "year-creation": 2009, "data-processes": [{"name": "access to historical files available", "type": "data versioning"}, {"url": "http://exocarta.org/data_submission", "name": "submit", "type": "data curation"}, {"name": "file download(txt)", "type": "data access"}, {"url": "http://exocarta.org/browse", "name": "browse", "type": "data access"}, {"url": "http://exocarta.org/query.html", "name": "search", "type": "data access"}, {"name": "continuous release (live database)", "type": "data release"}, {"name": "quarterly release of database dump", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}]}, "legacy-ids": ["biodbcore-000036", "bsg-d000036"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Lipid", "Extracellular exosome", "Protein", "Messenger RNA", "Micro RNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: ExoCarta", "abbreviation": "ExoCarta", "url": "https://fairsharing.org/10.25504/FAIRsharing.2z0e8b", "doi": "10.25504/FAIRsharing.2z0e8b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database of exosomes, membrane vesicles of endocytic origin released by diverse cell types.", "publications": [{"id": 54, "pubmed_id": 19810033, "title": "ExoCarta: A compendium of exosomal proteins and RNA.", "year": 2009, "url": "http://doi.org/10.1002/pmic.200900351", "authors": "Mathivanan S., Simpson RJ.,", "journal": "Proteomics", "doi": "10.1002/pmic.200900351", "created_at": "2021-09-30T08:22:26.189Z", "updated_at": "2021-09-30T08:22:26.189Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1588", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:32.565Z", "metadata": {"doi": "10.25504/FAIRsharing.f5zx00", "name": "Expression Atlas", "status": "ready", "contacts": [{"contact-email": "atlas-feedback@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/gxa", "citations": [{"doi": "0.1093/nar/gkz947", "pubmed-id": 31665515, "publication-id": 2607}], "identifier": 1588, "description": "The Expression Atlas is a free resource providing information on gene expression patterns under different biological conditions in a variety of species. Gene expression data is re-analysed in-house to detect genes showing interesting baseline and differential expression patterns, allowing a user to ask questions such as \"what are the genes expressed in normal human liver\" and \"what genes are differentially expressed between water-stressed rice plants and controls with normal watering?\" The resource features proteomics data sets provided by collaborators for corroboration between gene- and protein-level expression results. The latest component, Single Cell Expression Atlas, systematically reanalyses and visualises single cell RNA-sequencing datasets and helps answer questions such as what cell population a gene can act as a marker gene.", "abbreviation": "Expression Atlas", "access-points": [{"url": "https://www.ebi.ac.uk/fg/rnaseq/api/", "name": "RNASeq-er API", "type": "REST"}], "support-links": [{"url": "https://www.ebi.ac.uk/support/gxa", "name": "GXA Contact Form", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/gxa/FAQ.html", "name": "Expression Atlas FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/gxa/help/index.html", "name": "Expression Atlas Help", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gxa/sc/help.html", "name": "Single Cell Expression Atlas Help", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/gxa/about.html", "name": "About Expression Atlas", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/expression-atlas-quick-tour", "name": "Expression atlas quick tour", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/training/online/course/life-cell-cell-introduction-single-cell-expression-atlas", "name": "Webinar Single Cell Expression Atlas", "type": "Training documentation"}, {"url": "https://www.ebi.ac.uk/training/online/course/explore-gene-expression-across-species-expression-atlas", "name": "Webinar Bulk Expression Atlas", "type": "Training documentation"}, {"url": "https://twitter.com/ExpressionAtlas", "name": "@ExpressionAtlas", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Expression_Atlas", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"url": "https://www.ebi.ac.uk/gxa/download.html", "name": "Data Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/gxa/release-notes.html", "name": "Release Notes", "type": "data release"}, {"url": "https://www.ebi.ac.uk/gxa/experiments", "name": "Browse Bulk Data", "type": "data access"}, {"url": "https://www.ebi.ac.uk/gxa/sc/experiments", "name": "Browse Single Cell Data", "type": "data access"}], "associated-tools": [{"url": "http://nunofonseca.github.io/irap/", "name": "iRAP"}, {"url": "https://www.bioconductor.org/packages/release/bioc/html/ExpressionAtlas.html", "name": "ExpressionAtlas R Package on Bioconductor"}, {"url": "https://github.com/ebi-gene-expression-group/atlas-heatmap", "name": "Expression Atlas Heatmap"}, {"url": "https://github.com/ebi-gene-expression-group/atlas-web-core", "name": "Expression Atlas web application (core components)"}, {"url": "https://github.com/ebi-gene-expression-group/atlas-web-bulk", "name": "Expression Atlas web application (bulk components)"}, {"url": "https://github.com/ebi-gene-expression-group/atlas-web-single-cell", "name": "Expression Atlas web application (single cell components)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010223", "name": "re3data:r3d100010223", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007989", "name": "SciCrunch:RRID:SCR_007989", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000043", "bsg-d000043"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Transcriptomics"], "domains": ["Expression data", "Differential gene expression analysis", "Gene expression", "RNA sequencing"], "taxonomies": ["All"], "user-defined-tags": ["Single cell gene expression"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Expression Atlas", "abbreviation": "Expression Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.f5zx00", "doi": "10.25504/FAIRsharing.f5zx00", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Expression Atlas is a free resource providing information on gene expression patterns under different biological conditions in a variety of species. Gene expression data is re-analysed in-house to detect genes showing interesting baseline and differential expression patterns, allowing a user to ask questions such as \"what are the genes expressed in normal human liver\" and \"what genes are differentially expressed between water-stressed rice plants and controls with normal watering?\" The resource features proteomics data sets provided by collaborators for corroboration between gene- and protein-level expression results. The latest component, Single Cell Expression Atlas, systematically reanalyses and visualises single cell RNA-sequencing datasets and helps answer questions such as what cell population a gene can act as a marker gene.", "publications": [{"id": 65, "pubmed_id": 19906730, "title": "Gene expression atlas at the European bioinformatics institute.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp936", "authors": "Kapushesky M., Emam I., Holloway E., Kurnosov P., Zorin A., Malone J., Rustici G., Williams E., Parkinson H., Brazma A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp936", "created_at": "2021-09-30T08:22:27.289Z", "updated_at": "2021-09-30T08:22:27.289Z"}, {"id": 382, "pubmed_id": 29165655, "title": "Expression Atlas: gene and protein expression across multiple studies and organisms.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1158", "authors": "Papatheodorou I,Fonseca NA,Keays M,Tang YA,Barrera E,Bazant W,Burke M,Fullgrabe A,Fuentes AM,George N,Huerta L,Koskinen S,Mohammed S,Geniza M,Preece J,Jaiswal P,Jarnuczak AF,Huber W,Stegle O,Vizcaino JA,Brazma A,Petryszak R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1158", "created_at": "2021-09-30T08:23:01.406Z", "updated_at": "2021-09-30T11:28:46.133Z"}, {"id": 817, "pubmed_id": 24304889, "title": "Expression Atlas update--a database of gene and transcript expression from microarray- and sequencing-based functional genomics experiments.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1270", "authors": "Petryszak R, Burdett T, Fiorelli B, Fonseca NA, Gonzalez-Porta M, Hastings E, Huber W, Jupp S, Keays M, Kryvych N, McMurry J, Marioni JC, Malone J, Megy K, Rustici G, Tang AY, Taubert J, Williams E, Mannion O, Parkinson HE, Brazma A.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1270", "created_at": "2021-09-30T08:23:50.113Z", "updated_at": "2021-09-30T08:23:50.113Z"}, {"id": 2596, "pubmed_id": 26481351, "title": "Expression Atlas update--an integrated database of gene and protein expression in humans, animals and plants.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1045", "authors": "Petryszak R,Keays M,Tang YA,Fonseca NA,Barrera E,Burdett T,Fullgrabe A,Fuentes AM,Jupp S,Koskinen S,Mannion O,Huerta L,Megy K,Snow C,Williams E,Barzine M,Hastings E,Weisser H,Wright J,Jaiswal P,Huber W,Choudhary J,Parkinson HE,Brazma A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1045", "created_at": "2021-09-30T08:27:18.568Z", "updated_at": "2021-09-30T11:29:40.311Z"}, {"id": 2607, "pubmed_id": 31665515, "title": "Expression Atlas update: from tissues to single cells", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz947", "authors": "Irene Papatheodorou, Pablo Moreno, Jonathan Manning, Alfonso Mu\u00f1oz-Pomer Fuentes, Nancy George, Silvie Fexova et al.,", "journal": "Nucleic Acids Research", "doi": "0.1093/nar/gkz947", "created_at": "2021-09-30T08:27:20.014Z", "updated_at": "2021-09-30T08:27:20.014Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2313, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2314, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1551", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:49.168Z", "metadata": {"doi": "10.25504/FAIRsharing.e65js", "name": "Animal Transcription Factor Database", "status": "ready", "contacts": [{"contact-name": "An-Yuan Guo", "contact-email": "guoay@hust.edu.cn", "contact-orcid": "0000-0002-5099-7465"}], "homepage": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/", "identifier": 1551, "description": "AnimalTFDB is a comprehensive animal transcription factor database. The resource is classification of transcription factors from 50 genomes from species including Homo sapiens and Caenorhabditis elegans. The database also has information on co-transcription factors and chromatin remodelling factors.", "abbreviation": "AnimalTFDB", "support-links": [{"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/document", "name": "Document", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"url": "https://www.innatedb.com/doc/InnateDB_2011_curation_guide.pdf", "name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/family", "name": "browse by family", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/download", "name": "file download(txt)", "type": "data access"}, {"name": "MySQL database dump", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/search", "name": "Search", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/species", "name": "browse by species", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/predict", "name": "Transcription Factor Prediction", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/tfbs_predict", "name": "TF binding site Prediction", "type": "data access"}, {"url": "http://bioinfo.life.hust.edu.cn/AnimalTFDB/#!/blast", "name": "Blast", "type": "data access"}]}, "legacy-ids": ["biodbcore-000005", "bsg-d000005"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Gene Ontology enrichment", "Annotation", "Protein interaction", "Molecular interaction", "Binding motif", "Gene feature", "Transcription factor", "Micro RNA", "Gene", "Orthologous", "Paralogous"], "taxonomies": ["Anas platyrhynchos", "Anolis carolinensis", "Astyanax mexicanus", "Caenorhabditis elegans", "Choloepus hoffmanni", "Ciona intestinalis", "Ciona savignyi", "Danio rerio", "Dasypus novemcinctus", "Drosophila melanogaster", "Echinops telfairi", "Ficedula albicollis", "Gadus morhua", "Gallus gallus", "Gasterosteus aculeatus", "Latimeria chalumnae", "Laurasiatheria", "Lepisosteus oculatus", "Loxodonta africana", "Meleagris gallopavo", "Monodelphis domestica", "Notamacropus eugenii", "Oreochromis niloticus", "Ornithorhynchus anatinus", "Oryzias latipes", "Pelodiscus sinensis", "Petromyzon marinus", "Poecilia formosa", "Primate", "Procavia capensis", "Rodentia", "Sarcophilus harrisii", "Taeniopygia guttata", "Takifugu rubripes", "Tetraodon nigroviridis", "Xenopus tropicalis", "Xiphophorus maculatus"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Animal Transcription Factor Database", "abbreviation": "AnimalTFDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.e65js", "doi": "10.25504/FAIRsharing.e65js", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: AnimalTFDB is a comprehensive animal transcription factor database. The resource is classification of transcription factors from 50 genomes from species including Homo sapiens and Caenorhabditis elegans. The database also has information on co-transcription factors and chromatin remodelling factors.", "publications": [{"id": 57, "pubmed_id": 25262351, "title": "AnimalTFDB 2.0: a resource for expression, prediction and functional study of animal transcription factors.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku887", "authors": "Zhang HM,Liu T,Liu CJ,Song S,Zhang X,Liu W,Jia H,Xue Y,Guo AY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku887", "created_at": "2021-09-30T08:22:26.495Z", "updated_at": "2021-09-30T11:28:41.850Z"}, {"id": 58, "pubmed_id": 22080564, "title": "AnimalTFDB: a comprehensive animal transcription factor database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr965", "authors": "Zhang HM,Chen H,Liu W,Liu H,Gong J,Wang H,Guo AY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr965", "created_at": "2021-09-30T08:22:26.586Z", "updated_at": "2021-09-30T11:28:41.941Z"}, {"id": 100, "pubmed_id": 30204897, "title": "AnimalTFDB 3.0: a comprehensive resource for annotation and prediction of animal transcription factors.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky822", "authors": "Hu H,Miao YR,Jia LH,Yu QY,Zhang Q,Guo AY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky822", "created_at": "2021-09-30T08:22:31.211Z", "updated_at": "2021-09-30T11:28:42.533Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1553", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:13.745Z", "metadata": {"doi": "10.25504/FAIRsharing.9k7at4", "name": "Aspergillus Genome Database", "status": "ready", "contacts": [{"contact-email": "aspergillus-curator@lists.stanford.edu"}], "homepage": "http://www.aspgd.org", "identifier": 1553, "description": "The Aspergillus Genome Database is a resource for genomic sequence data as well as gene and protein information for Aspergilli. This publicly available repository is a central point of access to genome, transcriptome and polymorphism data for the fungal research community.", "abbreviation": "ASPGD", "support-links": [{"url": "http://www.aspergillusgenome.org/HelpContents.shtml", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://www.aspergillusgenome.org/download/sequence/;http://www.aspgd.org/download/gff/;http://www.aspgd.org/download/chromosomal_feature_files/", "name": "Download", "type": "data access"}, {"name": "file download", "type": "data access"}, {"name": "current and historical archived versions are available for download", "type": "data versioning"}, {"name": "sequence and gene model structural annotation versions are incremented when changes are made, informational annotation version is updated weekly if changes have been made (system described at http//www.aspgd.org/help/SequenceHelp.shtml#versions)", "type": "data versioning"}, {"name": "N/A", "type": "data curation"}, {"name": "daily release", "type": "data release"}, {"name": "weekly release", "type": "data release"}, {"name": "continuous release (live database)", "type": "data release"}, {"url": "http://www.aspergillusgenome.org/cgi-bin/batchDownload", "name": "AspGD Batch Download Tool", "type": "data access"}], "associated-tools": [{"url": "http://www.aspergillusgenome.org/cgi-bin/compute/blast_clade.pl", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011253", "name": "re3data:r3d100011253", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001880", "name": "SciCrunch:RRID:SCR_001880", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000007", "bsg-d000007"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene model annotation", "Curated information", "Protein", "Sequence", "Gene", "Genome"], "taxonomies": ["Aspergillus", "Aspergillus clavatus", "Aspergillus flavus", "Aspergillus fumigatus", "Aspergillus niger", "Aspergillus oryzae", "Aspergillus terreus", "Emericella nidulans", "Neosartorya fischeri"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Aspergillus Genome Database", "abbreviation": "ASPGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.9k7at4", "doi": "10.25504/FAIRsharing.9k7at4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Aspergillus Genome Database is a resource for genomic sequence data as well as gene and protein information for Aspergilli. This publicly available repository is a central point of access to genome, transcriptome and polymorphism data for the fungal research community.", "publications": [{"id": 29, "pubmed_id": 19773420, "title": "The Aspergillus Genome Database, a curated comparative genomics resource for gene, protein and sequence information for the Aspergillus research community.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp751", "authors": "Arnaud MB., Chibucos MC., Costanzo MC., Crabtree J., Inglis DO., Lotia A., Orvis J., Shah P., Skrzypek MS., Binkley G., Miyasato SR., Wortman JR., Sherlock G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp751", "created_at": "2021-09-30T08:22:23.463Z", "updated_at": "2021-09-30T08:22:23.463Z"}, {"id": 1365, "pubmed_id": 22080559, "title": "The Aspergillus Genome Database (AspGD): recent developments in comprehensive multispecies curation, comparative genomics and community resources.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr875", "authors": "Arnaud MB., Cerqueira GC., Inglis DO., Skrzypek MS., Binkley J., Chibucos MC., Crabtree J., Howarth C., Orvis J., Shah P., Wymore F., Binkley G., Miyasato SR., Simison M., Sherlock G., Wortman JR.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr875", "created_at": "2021-09-30T08:24:52.667Z", "updated_at": "2021-09-30T08:24:52.667Z"}, {"id": 1366, "pubmed_id": 24194595, "title": "The Aspergillus Genome Database: multispecies curation and incorporation of RNA-Seq data to improve structural gene annotations.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1029", "authors": "Cerqueira GC,Arnaud MB,Inglis DO,Skrzypek MS,Binkley G,Simison M,Miyasato SR,Binkley J,Orvis J,Shah P,Wymore F,Sherlock G,Wortman JR", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1029", "created_at": "2021-09-30T08:24:52.774Z", "updated_at": "2021-09-30T11:29:07.193Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 310, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1558", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:49.898Z", "metadata": {"doi": "10.25504/FAIRsharing.7x7ha7", "name": "Central Aspergillus Data REpository", "status": "ready", "contacts": [{"contact-name": "CADRE Help Desk", "contact-email": "helpdesk@cadre-genomes.org.uk"}], "homepage": "http://www.cadre-genomes.org.uk", "identifier": 1558, "description": "This project aims to support the international Aspergillus research community by gathering all genomic information regarding this significant genus into one resource - The Central Aspergillus REsource (CADRE). CADRE facilitates visualisation and analyses of data using the Ensembl software suite. Much of our data has been extracted from Genbank and augmented with the consent of the original sequencing groups. This additional work has been carried out using both automated and manual efforts, with support from specific annotation projects and the general Aspergillus community.", "abbreviation": "CADRE", "support-links": [{"url": "http://www.cadre-genomes.org.uk/info/about/contact/index.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.cadre-genomes.org.uk/info/about/ProjectInformation.html", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"name": "file download(images,tab-delimited,CSV)", "type": "data access"}, {"name": "access to historical files upon request", "type": "data versioning"}, {"name": "versioning by release", "type": "data versioning"}, {"url": "http://www.ebi.ac.uk/pdbe/deposition", "name": "Manual curation", "type": "data curation"}, {"url": "http://www.cadre-genomes.org.uk/index.html", "name": "search", "type": "data access"}, {"name": "biannual release", "type": "data release"}, {"name": "ad-hoc release", "type": "data release"}]}, "legacy-ids": ["biodbcore-000012", "bsg-d000012"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Protein domain", "Gene name", "DNA sequence data", "Gene Ontology enrichment", "Genome alignment", "Gene model annotation", "Orthologous", "Karyotype", "Genetic strain"], "taxonomies": ["Aspergillus", "Neosartorya fischeri"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Central Aspergillus Data REpository", "abbreviation": "CADRE", "url": "https://fairsharing.org/10.25504/FAIRsharing.7x7ha7", "doi": "10.25504/FAIRsharing.7x7ha7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This project aims to support the international Aspergillus research community by gathering all genomic information regarding this significant genus into one resource - The Central Aspergillus REsource (CADRE). CADRE facilitates visualisation and analyses of data using the Ensembl software suite. Much of our data has been extracted from Genbank and augmented with the consent of the original sequencing groups. This additional work has been carried out using both automated and manual efforts, with support from specific annotation projects and the general Aspergillus community.", "publications": [{"id": 128, "pubmed_id": 19039001, "title": "Aspergillus genomes and the Aspergillus cloud.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn876", "authors": "Mabey Gilsenan JE., Atherton G., Bartholomew J., Giles PF., Attwood TK., Denning DW., Bowyer P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn876", "created_at": "2021-09-30T08:22:34.064Z", "updated_at": "2021-09-30T08:22:34.064Z"}, {"id": 1320, "pubmed_id": 14681443, "title": "CADRE: the Central Aspergillus Data REpository.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh009", "authors": "Mabey JE., Anderson MJ., Giles PF., Miller CJ., Attwood TK., Paton NW., Bornberg-Bauer E., Robson GD., Oliver SG., Denning DW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh009", "created_at": "2021-09-30T08:24:47.559Z", "updated_at": "2021-09-30T08:24:47.559Z"}, {"id": 2634, "pubmed_id": 19146970, "title": "The 2008 update of the Aspergillus nidulans genome annotation: a community effort.", "year": 2009, "url": "http://doi.org/10.1016/j.fgb.2008.12.003", "authors": "Wortman JR. et al.", "journal": "Fungal Genet. Biol.", "doi": "10.1016/j.fgb.2008.12.003", "created_at": "2021-09-30T08:27:23.471Z", "updated_at": "2021-09-30T08:27:23.471Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1560", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.028Z", "metadata": {"doi": "10.25504/FAIRsharing.r3pbp3", "name": "CAPS-DB : a structural classification of helix-capping motifs", "status": "ready", "contacts": [{"contact-name": "Narcis Fernandez-Fuentes", "contact-email": "N.Fernandez-Fuentes@leeds.ac.uk", "contact-orcid": "0000-0002-6421-1080"}], "homepage": "http://www.bioinsilico.org/CAPSDB", "identifier": 1560, "description": "CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", "abbreviation": "CAPS-DB", "support-links": [{"url": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/help", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "biannual release", "type": "data release"}, {"name": "automated classification", "type": "data curation"}, {"name": "manual curation (post-classification quality control)", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "file download(txt)", "type": "data access"}, {"name": "Java applets", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "MySQL database dump", "type": "data access"}, {"url": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/browse", "name": "browse", "type": "data access"}, {"url": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/query", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/blast_query", "name": "blast"}]}, "legacy-ids": ["biodbcore-000014", "bsg-d000014"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Atomic coordinate", "Sequence annotation", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Spain"], "name": "FAIRsharing record for: CAPS-DB : a structural classification of helix-capping motifs", "abbreviation": "CAPS-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.r3pbp3", "doi": "10.25504/FAIRsharing.r3pbp3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", "publications": [{"id": 32, "pubmed_id": 9514257, "title": "Helix capping.", "year": 1998, "url": "http://doi.org/10.1002/pro.5560070103", "authors": "Aurora R., Rose GD.,", "journal": "Protein Sci.", "doi": "10.1002/pro.5560070103", "created_at": "2021-09-30T08:22:23.756Z", "updated_at": "2021-09-30T08:22:23.756Z"}, {"id": 33, "pubmed_id": 9102471, "title": "An automated classification of the structure of protein loops.", "year": 1997, "url": "http://doi.org/10.1006/jmbi.1996.0819", "authors": "Oliva B., Bates PA., Querol E., Avil\u00e9s FX., Sternberg MJ.,", "journal": "J. Mol. Biol.", "doi": "10.1006/jmbi.1996.0819", "created_at": "2021-09-30T08:22:23.889Z", "updated_at": "2021-09-30T08:22:23.889Z"}, {"id": 1367, "pubmed_id": 22021380, "title": "CAPS-DB: a structural classification of helix-capping motifs.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr879", "authors": "Segura J,Oliva B,Fernandez-Fuentes N", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr879", "created_at": "2021-09-30T08:24:52.881Z", "updated_at": "2021-09-30T11:29:07.284Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2946", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T15:52:00.000Z", "updated-at": "2021-11-24T13:17:03.684Z", "metadata": {"doi": "10.25504/FAIRsharing.mihb12", "name": "Kinase-Ligand Interaction Fingerprints and Structures database", "status": "ready", "contacts": [{"contact-name": "Albert J. Kooistra", "contact-email": "info@klifs.net", "contact-orcid": "0000-0001-5514-6021"}], "homepage": "https://klifs.net", "citations": [{"doi": "gkaa895", "pubmed-id": 33084889, "publication-id": 3071}], "identifier": 2946, "description": "Kinase-Ligand Interaction Fingerprints and Structures database (KLIFS) is a database that revolves around the protein structure of catalytic kinase domains and the way kinase inhibitors can interact with them. Based on the underlying systematic and consistent protocol all (currently human and mouse) kinase structures and the binding mode of kinase ligands can be directly compared to each other. Moreover, because of the classification of an all-encompassing binding site of 85 residues it is possible to compare the interaction patterns of kinase-inhibitors to each other to, for example, identify crucial interactions determining kinase-inhibitor selectivity.", "abbreviation": "KLIFS", "access-points": [{"url": "https://klifs.net/swagger/", "name": "OpenAPI description", "type": "REST"}], "support-links": [{"url": "https://klifs.net/news.php", "name": "News", "type": "Blog/News"}, {"url": "https://klifs.net/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://klifs.net/stats.php", "name": "Statistics", "type": "Help documentation"}, {"url": "https://klifs.net/tutorial.php", "name": "Tutorial", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://klifs.net/browse.php", "name": "Browse", "type": "data access"}, {"url": "https://klifs.net/search.php", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "https://www.knime.com/3d-e-chem-nodes-for-knime", "name": "KLIFS nodes for KNIME 1.4.2"}]}, "legacy-ids": ["biodbcore-001450", "bsg-d001450"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Pharmacology", "Life Science", "Pharmacogenomics"], "domains": ["Protein structure", "Structure alignment (pair)", "Structure-based sequence alignment", "Multiple sequence alignment", "Protein interaction", "Ligand", "Bioactivity", "Binding", "Molecular interaction", "Protein"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Chemogenomics", "Interaction fingerprints", "Interaction similarity", "Kinases", "Ligand similarity"], "countries": ["Denmark", "Netherlands"], "name": "FAIRsharing record for: Kinase-Ligand Interaction Fingerprints and Structures database", "abbreviation": "KLIFS", "url": "https://fairsharing.org/10.25504/FAIRsharing.mihb12", "doi": "10.25504/FAIRsharing.mihb12", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Kinase-Ligand Interaction Fingerprints and Structures database (KLIFS) is a database that revolves around the protein structure of catalytic kinase domains and the way kinase inhibitors can interact with them. Based on the underlying systematic and consistent protocol all (currently human and mouse) kinase structures and the binding mode of kinase ligands can be directly compared to each other. Moreover, because of the classification of an all-encompassing binding site of 85 residues it is possible to compare the interaction patterns of kinase-inhibitors to each other to, for example, identify crucial interactions determining kinase-inhibitor selectivity.", "publications": [{"id": 2855, "pubmed_id": 26496949, "title": "KLIFS: a structural kinase-ligand interaction database.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1082", "authors": "Kooistra AJ,Kanev GK,van Linden OP,Leurs R,de Esch IJ,de Graaf C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1082", "created_at": "2021-09-30T08:27:51.188Z", "updated_at": "2021-09-30T11:29:47.504Z"}, {"id": 2856, "pubmed_id": 23941661, "title": "KLIFS: a knowledge-based structural database to navigate kinase-ligand interaction space.", "year": 2013, "url": "http://doi.org/10.1021/jm400378w", "authors": "van Linden OP,Kooistra AJ,Leurs R,de Esch IJ,de Graaf C", "journal": "J Med Chem", "doi": "10.1021/jm400378w", "created_at": "2021-09-30T08:27:51.297Z", "updated_at": "2021-09-30T08:27:51.297Z"}, {"id": 2857, "pubmed_id": 31677919, "title": "The Landscape of Atypical and Eukaryotic Protein Kinases.", "year": 2019, "url": "http://doi.org/S0165-6147(19)30213-5", "authors": "Kanev GK,de Graaf C,de Esch IJP,Leurs R,Wurdinger T,Westerman BA,Kooistra AJ", "journal": "Trends Pharmacol Sci", "doi": "S0165-6147(19)30213-5", "created_at": "2021-09-30T08:27:51.457Z", "updated_at": "2021-09-30T08:27:51.457Z"}, {"id": 3071, "pubmed_id": 33084889, "title": "KLIFS: an overhaul after the first 5 years of supporting kinase research.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa895", "authors": "Kanev GK,de Graaf C,Westerman BA,de Esch IJP,Kooistra AJ", "journal": "Nucleic Acids Research", "doi": "gkaa895", "created_at": "2021-09-30T08:28:18.431Z", "updated_at": "2021-09-30T11:29:50.820Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1565", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.273Z", "metadata": {"doi": "10.25504/FAIRsharing.f1m3bb", "name": "Dragon Antimicrobial Peptide Database", "status": "deprecated", "contacts": [{"contact-name": "Vlad Bajic", "contact-email": "vlad@sanbi.ac.za"}], "homepage": "http://apps.sanbi.ac.za/dampd/", "identifier": 1565, "description": "Dragon Antimicrobial Peptide Database is a manually curated database of known and putative antimicrobial peptides (AMPs). It covers both prokaryotes and eukaryotes organisms.", "abbreviation": "DAMPD", "support-links": [{"url": "http://apps.sanbi.ac.za/dampd/Faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://apps.sanbi.ac.za/dampd/Help.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "2nd level re-curated and validated by bio-curator expert]", "type": "data curation"}, {"name": "manual curation [1st level by independent groups & results merged", "type": "data curation"}, {"name": "bimonthly release (as in every 2 months)", "type": "data release"}, {"name": "MySQL database dump", "type": "data access"}, {"name": "file download(txt,images)", "type": "data access"}, {"url": "http://apps.sanbi.ac.za/dampd/Select.php", "name": "browse", "type": "data access"}, {"name": "access to historical files available upon request", "type": "data versioning"}], "associated-tools": [{"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "SVM Prediction"}, {"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "SignalP"}, {"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "Hydrocalculator"}, {"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "HMMER"}, {"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "ClustalW"}, {"url": "http://apps.sanbi.ac.za/dampd/BioTools.php", "name": "Blast"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000019", "bsg-d000019"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide", "Antimicrobial", "Curated information"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["South Africa"], "name": "FAIRsharing record for: Dragon Antimicrobial Peptide Database", "abbreviation": "DAMPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.f1m3bb", "doi": "10.25504/FAIRsharing.f1m3bb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Dragon Antimicrobial Peptide Database is a manually curated database of known and putative antimicrobial peptides (AMPs). It covers both prokaryotes and eukaryotes organisms.", "publications": [{"id": 45, "pubmed_id": 14681487, "title": "ANTIMIC: a database of antimicrobial sequences.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh032", "authors": "Brahmachary M., Krishnan SP., Koh JL., Khan AM., Seah SH., Tan TW., Brusic V., Bajic VB.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh032", "created_at": "2021-09-30T08:22:25.238Z", "updated_at": "2021-09-30T08:22:25.238Z"}, {"id": 1377, "pubmed_id": 17254313, "title": "Computational promoter analysis of mouse, rat and human antimicrobial peptide-coding genes.", "year": 2007, "url": "http://doi.org/10.1186/1471-2105-7-S5-S8", "authors": "Brahmachary M., Sch\u00f6nbach C., Yang L., Huang E., Tan SL., Chowdhary R., Krishnan SP., Lin CY., Hume DA., Kai C., Kawai J., Carninci P., Hayashizaki Y., Bajic VB.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-7-S5-S8", "created_at": "2021-09-30T08:24:54.009Z", "updated_at": "2021-09-30T08:24:54.009Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1569", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.545Z", "metadata": {"doi": "10.25504/FAIRsharing.z1ars2", "name": "Database of Bacterial Exotoxins for Human", "status": "ready", "contacts": [{"contact-name": "Saikat Chakrabarti", "contact-email": "saikat@iicb.res.in"}], "homepage": "http://www.hpppi.iicb.res.in/btox/", "identifier": 1569, "description": "DBETH is the Database of Bacterial Exotoxins for Human. The aim of this database is to assemble information on the toxins responsible for causing bacterial pathogenesis in humans.", "abbreviation": "DBETH", "support-links": [{"url": "http://www.hpppi.iicb.res.in/btox/Faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.hpppi.iicb.res.in/btox/About_DBETH.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.hpppi.iicb.res.in/btox/cgi-bin2/download-list.cgi?name=download", "name": "Data Download", "type": "data access"}, {"url": "http://www.hpppi.iicb.res.in/btox/cgi-bin2/search.cgi?name=search", "name": "search", "type": "data access"}, {"url": "http://www.hpppi.iicb.res.in/btox/", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000023", "bsg-d000023"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Exotoxin", "Structure", "Amino acid sequence"], "taxonomies": ["Actinobacillus", "Aeromonas", "Arcanobacterium", "Bacillus", "Bordetella", "Campylobacter", "Clostridium", "Corynebacterium", "Escherichia", "Gardnerella", "Helicobacter", "Kingella", "Legionella", "Listeria", "Mycobacterium", "Neisseria", "Paenibacillus", "Pasteurella", "Pseudomonas", "Rickettsia", "Salmonella", "Shigella", "Staphylococcus", "Streptococcus", "Vibrio", "Yersinia"], "user-defined-tags": ["Pathogenic bacterial exotoxin"], "countries": ["India"], "name": "FAIRsharing record for: Database of Bacterial Exotoxins for Human", "abbreviation": "DBETH", "url": "https://fairsharing.org/10.25504/FAIRsharing.z1ars2", "doi": "10.25504/FAIRsharing.z1ars2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DBETH is the Database of Bacterial Exotoxins for Human. The aim of this database is to assemble information on the toxins responsible for causing bacterial pathogenesis in humans.", "publications": [{"id": 42, "pubmed_id": 17090593, "title": "MvirDB--a microbial database of protein toxins, virulence factors and antibiotic resistance genes for bio-defence applications.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl791", "authors": "Zhou CE., Smith J., Lam M., Zemla A., Dyer MD., Slezak T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl791", "created_at": "2021-09-30T08:22:24.963Z", "updated_at": "2021-09-30T08:22:24.963Z"}, {"id": 44, "pubmed_id": 15608208, "title": "VFDB: a reference database for bacterial virulence factors.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki008", "authors": "Chen L., Yang J., Yu J., Yao Z., Sun L., Shen Y., Jin Q.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki008", "created_at": "2021-09-30T08:22:25.146Z", "updated_at": "2021-09-30T08:22:25.146Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2104", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.312Z", "metadata": {"doi": "10.25504/FAIRsharing.f0awr5", "name": "RegulonDB", "status": "ready", "contacts": [{"contact-name": "Julio Collado Vides", "contact-email": "regulondb@ccg.unam.mx"}], "homepage": "http://regulondb.ccg.unam.mx/", "identifier": 2104, "description": "RegulonDB is a model of the complex regulation of transcription initiation or regulatory network of the cell. On the other hand, it is also a model of the organization of the genes in transcription units, operons and simple and complex regulons. In this regard, RegulonDB is a computational model of mechanisms of transcriptional regulation.", "abbreviation": "RegulonDB", "support-links": [{"url": "http://regulondb.ccg.unam.mx/menu/about_regulondb/contact_us/index.jsp", "type": "Contact form"}, {"url": "regulondb@ccg.unam.mx", "name": "RegulonDB Team", "type": "Support email"}, {"url": "https://en.wikipedia.org/wiki/RegulonDB", "name": "RegulonDB wikipedia", "type": "Wikipedia"}], "year-creation": 1998}, "legacy-ids": ["biodbcore-000573", "bsg-d000573"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Regulation of gene expression", "Biological regulation", "Transcription factor"], "taxonomies": ["Escherichia coli"], "user-defined-tags": [], "countries": ["Mexico"], "name": "FAIRsharing record for: RegulonDB", "abbreviation": "RegulonDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.f0awr5", "doi": "10.25504/FAIRsharing.f0awr5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RegulonDB is a model of the complex regulation of transcription initiation or regulatory network of the cell. On the other hand, it is also a model of the organization of the genes in transcription units, operons and simple and complex regulons. In this regard, RegulonDB is a computational model of mechanisms of transcriptional regulation.", "publications": [{"id": 2023, "pubmed_id": 26527724, "title": "RegulonDB version 9.0: high-level integration of gene regulation, coexpression, motif clustering and beyond.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1156", "authors": "Gama-Castro S, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1156", "created_at": "2021-09-30T08:26:07.869Z", "updated_at": "2021-09-30T11:29:26.087Z"}, {"id": 2392, "pubmed_id": 23203884, "title": "RegulonDB v8.0: omics data sets, evolutionary conservation, regulatory phrases, cross-validated gold standards and more.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1201", "authors": "Salgado H, et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1201", "created_at": "2021-09-30T08:26:53.783Z", "updated_at": "2021-09-30T11:29:34.779Z"}, {"id": 2830, "pubmed_id": 21051347, "title": "RegulonDB version 7.0: transcriptional regulation of Escherichia coli K-12 integrated within genetic sensory response units (Gensor Units).", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1110", "authors": "Gama-Castro S., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1110", "created_at": "2021-09-30T08:27:48.115Z", "updated_at": "2021-09-30T08:27:48.115Z"}], "licence-links": [{"licence-name": "RegulonDB End User Agreement and Licence", "licence-id": 709, "link-id": 2026, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2752", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-21T10:27:46.000Z", "updated-at": "2022-02-08T10:29:53.900Z", "metadata": {"doi": "10.25504/FAIRsharing.ef9ca3", "name": "SignaLink", "status": "ready", "contacts": [{"contact-name": "Tamas Korcsmaros", "contact-email": "korcsmaros@netbiol.elte.hu", "contact-orcid": "0000-0003-1717-996X"}], "homepage": "http://signalink.org/", "citations": [{"doi": "10.1186/1752-0509-7-7", "pubmed-id": 23331499, "publication-id": 2721}], "identifier": 2752, "description": "SignaLink is an integrated resource to analyze signaling pathway cross-talks, transcription factors, miRNAs and regulatory enzymes. it allows browsing of signaling pathways, cross-talks and multi-pathway proteins; selection of transcriptional, post- transcriptional and post translational regulators of a signaling pathway; downloading of species- and pathway-specific information in several formats; designing of genetic/biochemical experiments to verify predicted pathway member proteins; modeling of tissue- or disease-specific signaling processes by merging SignaLink with expression data; and the discovering of novel signaling drug target candidates.", "abbreviation": "SignaLink", "data-curation": {}, "support-links": [{"url": "http://signalink.org/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2010, "data-processes": [{"url": "http://signalink.org/", "name": "Search", "type": "data access"}, {"url": "http://signalink.org/download", "name": "Download", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001250", "bsg-d001250"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Life Science", "Biomedical Science"], "domains": ["Protein interaction", "Network model", "Signaling", "Biological regulation", "Transcription factor", "Enzyme", "Micro RNA"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens"], "user-defined-tags": [], "countries": ["Hungary"], "name": "FAIRsharing record for: SignaLink", "abbreviation": "SignaLink", "url": "https://fairsharing.org/10.25504/FAIRsharing.ef9ca3", "doi": "10.25504/FAIRsharing.ef9ca3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SignaLink is an integrated resource to analyze signaling pathway cross-talks, transcription factors, miRNAs and regulatory enzymes. it allows browsing of signaling pathways, cross-talks and multi-pathway proteins; selection of transcriptional, post- transcriptional and post translational regulators of a signaling pathway; downloading of species- and pathway-specific information in several formats; designing of genetic/biochemical experiments to verify predicted pathway member proteins; modeling of tissue- or disease-specific signaling processes by merging SignaLink with expression data; and the discovering of novel signaling drug target candidates.", "publications": [{"id": 59, "pubmed_id": 20542890, "title": "Uniformly curated signaling pathways reveal tissue-specific cross-talks and support drug target discovery.", "year": 2010, "url": "http://doi.org/10.1093/bioinformatics/btq310", "authors": "Korcsmaros T,Farkas IJ,Szalay MS,Rovo P,Fazekas D,Spiro Z,Bode C,Lenti K,Vellai T,Csermely P", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq310", "created_at": "2021-09-30T08:22:26.680Z", "updated_at": "2021-09-30T08:22:26.680Z"}, {"id": 2721, "pubmed_id": 23331499, "title": "SignaLink 2 - a signaling pathway resource with multi-layered regulatory networks.", "year": 2013, "url": "http://doi.org/10.1186/1752-0509-7-7", "authors": "Fazekas D,Koltai M,Turei D,Modos D,Palfy M,Dul Z,Zsakai L,Szalay-Beko M,Lenti K,Farkas IJ,Vellai T,Csermely P,Korcsmaros T", "journal": "BMC Syst Biol", "doi": "10.1186/1752-0509-7-7", "created_at": "2021-09-30T08:27:34.179Z", "updated_at": "2021-09-30T08:27:34.179Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1627", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:05.570Z", "metadata": {"doi": "10.25504/FAIRsharing.7q4gsz", "name": "Protein Interaction Network Analysis platform", "status": "ready", "contacts": [{"contact-name": "Jianmin Wu", "contact-email": "wujm@bjmu.edu.cn", "contact-orcid": "0000-0002-8876-128X"}], "homepage": "http://omics.bjcancer.org/pina/", "identifier": 1627, "description": "Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization, and management. It integrates protein-protein interaction (PPI) data from public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms. In particular, it provides a variety of built-in tools to filter and analyze the networks for gaining biological and functional insights into the network.", "abbreviation": "PINA", "support-links": [{"url": "https://omics.bjcancer.org/pina/tutorial.action", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"name": "file download(XML,tab-delimited)", "type": "data access"}, {"name": "web service", "type": "data access"}, {"name": "quarterly release", "type": "data release"}, {"name": "manual curation of protein-protein interaction", "type": "data curation"}, {"name": "computational prediction of interactome modules", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000083", "bsg-d000083"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Data Visualization"], "domains": ["Gene Ontology enrichment", "Protein interaction", "Network model", "Interactome"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["China", "Finland", "Australia"], "name": "FAIRsharing record for: Protein Interaction Network Analysis platform", "abbreviation": "PINA", "url": "https://fairsharing.org/10.25504/FAIRsharing.7q4gsz", "doi": "10.25504/FAIRsharing.7q4gsz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization, and management. It integrates protein-protein interaction (PPI) data from public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms. In particular, it provides a variety of built-in tools to filter and analyze the networks for gaining biological and functional insights into the network.", "publications": [{"id": 127, "pubmed_id": 19079255, "title": "Integrated network analysis platform for protein-protein interactions.", "year": 2008, "url": "http://doi.org/10.1038/nmeth.1282", "authors": "Wu J., Vallenius T., Ovaska K., Westermarck J., M\u00e4kel\u00e4 TP., Hautaniemi S.,", "journal": "Nature Methods", "doi": "10.1038/nmeth.1282", "created_at": "2021-09-30T08:22:33.957Z", "updated_at": "2021-09-30T08:22:33.957Z"}, {"id": 775, "pubmed_id": 22067443, "title": "PINA v2.0: mining interactome modules.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr967", "authors": "Cowley MJ,Pinese M,Kassahn KS,Waddell N,Pearson JV,Grimmond SM,Biankin AV,Hautaniemi S,Wu J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr967", "created_at": "2021-09-30T08:23:45.403Z", "updated_at": "2021-09-30T08:23:45.403Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1610", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:54.150Z", "metadata": {"doi": "10.25504/FAIRsharing.yd76dk", "name": "Major Intrinsic Proteins Modification Database", "status": "ready", "contacts": [{"contact-name": "R. SankaraRamakrishnan", "contact-email": "rsankar@iitk.ac.in"}], "homepage": "http://bioinfo.iitk.ac.in/MIPModDB/", "citations": [{"doi": "10.1093/nar/gkr914", "pubmed-id": 22080560, "publication-id": 2418}], "identifier": 1610, "description": "This is a database of comparative protein structure models of the MIP (Major Intrinsic Protein) family of proteins. The MIPs have been identified from the completed genome sequence of organisms available at NCBI.", "abbreviation": "MIPModDB", "support-links": [{"url": "http://bioinfo.iitk.ac.in/MIPModDB/feedback.html", "name": "Contact Form", "type": "Contact form"}, {"url": "http://bioinfo.iitk.ac.in/MIPModDB/help.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://bioinfo.iitk.ac.in/MIPModDB/statistics.php", "name": "Statistics", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/MIPModDB", "name": "Wikipedia entry", "type": "Wikipedia"}], "year-creation": 2007, "data-processes": [{"url": "http://bioinfo.iitk.ac.in/MIPModDB/search.php", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000066", "bsg-d000066"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogenetics", "Life Science"], "domains": ["Structure-based sequence alignment", "Gene feature", "Gene", "Homologous"], "taxonomies": ["All"], "user-defined-tags": ["Channel radius profile", "NPA substitution", "Selectively filter residues"], "countries": ["India"], "name": "FAIRsharing record for: Major Intrinsic Proteins Modification Database", "abbreviation": "MIPModDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.yd76dk", "doi": "10.25504/FAIRsharing.yd76dk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This is a database of comparative protein structure models of the MIP (Major Intrinsic Protein) family of proteins. The MIPs have been identified from the completed genome sequence of organisms available at NCBI.", "publications": [{"id": 1317, "pubmed_id": 19930558, "title": "Genome-wide analysis of major intrinsic proteins in the tree plant Populus trichocarpa: characterization of XIP subfamily of aquaporins from evolutionary perspective.", "year": 2009, "url": "http://doi.org/10.1186/1471-2229-9-134", "authors": "Gupta AB., Sankararamakrishnan R.,", "journal": "BMC Plant Biol.", "doi": "10.1186/1471-2229-9-134", "created_at": "2021-09-30T08:24:47.126Z", "updated_at": "2021-09-30T08:24:47.126Z"}, {"id": 1948, "pubmed_id": 17445256, "title": "Homology modeling of major intrinsic proteins in rice, maize and Arabidopsis: comparative analysis of transmembrane helix association and aromatic/arginine selectivity filters.", "year": 2007, "url": "http://doi.org/10.1186/1472-6807-7-27", "authors": "Bansal A., Sankararamakrishnan R.,", "journal": "BMC Struct. Biol.", "doi": "10.1186/1472-6807-7-27", "created_at": "2021-09-30T08:25:59.180Z", "updated_at": "2021-09-30T08:25:59.180Z"}, {"id": 2418, "pubmed_id": 22080560, "title": "MIPModDB: a central resource for the superfamily of major intrinsic proteins.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr914", "authors": "Gupta AB,Verma RK,Agarwal V,Vajpai M,Bansal V,Sankararamakrishnan R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr914", "created_at": "2021-09-30T08:26:56.750Z", "updated_at": "2021-09-30T11:29:35.444Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1661", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:00.766Z", "metadata": {"doi": "10.25504/FAIRsharing.5q1p14", "name": "Genomes OnLine Database", "status": "ready", "contacts": [{"contact-name": "T.B.K. Reddy", "contact-email": "tbreddy@lbl.gov"}], "homepage": "https://gold.jgi.doe.gov/", "citations": [{"doi": "10.1093/nar/gky977", "pubmed-id": 30357420, "publication-id": 3081}], "identifier": 1661, "description": "The Genomes Online Database provides access to information regarding genome and metagenome sequencing projects, and their associated metadata, around the world. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", "abbreviation": "GOLD", "support-links": [{"url": "https://gold.jgi.doe.gov/news", "name": "News", "type": "Blog/News"}, {"url": "https://gold.jgi.doe.gov/help", "name": "Help", "type": "Help documentation"}, {"url": "https://gold.jgi.doe.gov/distribution", "name": "Distribution Graphs", "type": "Help documentation"}, {"url": "https://gold.jgi.doe.gov/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Genomes_OnLine_Database", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1997, "data-processes": [{"url": "https://gold.jgi.doe.gov/downloads", "name": "Download", "type": "data release"}, {"url": "https://gold.jgi.doe.gov/sraexplorer", "name": "SRA Explorer", "type": "data access"}, {"url": "https://gold.jgi.doe.gov/organismmap", "name": "Organism Distribution Map", "type": "data access"}, {"url": "https://gold.jgi.doe.gov/biosamplemap", "name": "Biosample Distribution Map", "type": "data access"}, {"url": "https://gold.jgi.doe.gov/search", "name": "Search", "type": "data access"}, {"url": "https://gold.jgi.doe.gov/metadatasearch", "name": "Metadata Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010808", "name": "re3data:r3d100010808", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002817", "name": "SciCrunch:RRID:SCR_002817", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000117", "bsg-d000117"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Metagenomics", "Genomics", "Phylogenetics", "Metabolomics"], "domains": ["Genome map", "Taxonomic classification", "Biological sample", "Protocol", "Study design", "Phenotype", "Sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genomes OnLine Database", "abbreviation": "GOLD", "url": "https://fairsharing.org/10.25504/FAIRsharing.5q1p14", "doi": "10.25504/FAIRsharing.5q1p14", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genomes Online Database provides access to information regarding genome and metagenome sequencing projects, and their associated metadata, around the world. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", "publications": [{"id": 152, "pubmed_id": 11125068, "title": "Genomes OnLine Database (GOLD): a monitor of genome projects world-wide.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.126", "authors": "Bernal A., Ear U., Kyrpides N.,", "journal": "Nucleic Acids Res.", "doi": "11125068", "created_at": "2021-09-30T08:22:36.522Z", "updated_at": "2021-09-30T08:22:36.522Z"}, {"id": 164, "pubmed_id": 17981842, "title": "The Genomes On Line Database (GOLD) in 2007: status of genomic and metagenomic projects and their associated metadata.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm884", "authors": "Liolios K., Mavromatis K., Tavernarakis N., Kyrpides NC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm884", "created_at": "2021-09-30T08:22:38.080Z", "updated_at": "2021-09-30T08:22:38.080Z"}, {"id": 1543, "pubmed_id": 10498782, "title": "Genomes OnLine Database (GOLD 1.0): a monitor of complete and ongoing genome projects world-wide.", "year": 1999, "url": "http://doi.org/10.1093/bioinformatics/15.9.773", "authors": "Kyrpides NC.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/15.9.773", "created_at": "2021-09-30T08:25:12.802Z", "updated_at": "2021-09-30T08:25:12.802Z"}, {"id": 3075, "pubmed_id": 19914934, "title": "The Genomes On Line Database (GOLD) in 2009: status of genomic and metagenomic projects and their associated metadata.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp848", "authors": "Liolios K., Chen IM., Mavromatis K., Tavernarakis N., Hugenholtz P., Markowitz VM., Kyrpides NC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp848", "created_at": "2021-09-30T08:28:18.900Z", "updated_at": "2021-09-30T08:28:18.900Z"}, {"id": 3081, "pubmed_id": 30357420, "title": "Genomes OnLine database (GOLD) v.7: updates and new features.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky977", "authors": "Mukherjee S,Stamatis D,Bertsch J,Ovchinnikova G,Katta HY,Mojica A,Chen IA,Kyrpides NC,Reddy T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky977", "created_at": "2021-09-30T08:28:19.614Z", "updated_at": "2021-09-30T11:29:50.979Z"}], "licence-links": [{"licence-name": "GOLD Data Usage Policy", "licence-id": 359, "link-id": 1607, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1597", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:28.082Z", "metadata": {"doi": "10.25504/FAIRsharing.h3y42f", "name": "Intrinsically Disordered proteins with Extensive Annotations and Literature", "status": "ready", "contacts": [{"contact-name": "Satoshi Fukuchi", "contact-email": "sfukuchi@maebashi-it.ac.jp"}], "homepage": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", "citations": [{"doi": "10.1093/nar/gkt1010", "pubmed-id": 24178034, "publication-id": 2728}], "identifier": 1597, "description": "IDEAL (Intrinsically Disordered proteins with Extensive Annotations and Literature) is a collection of experimentally-verified intrinsically disordered proteins (IDPs) that cannot adopt stable globular structures under physiological conditions. IDEAL contains manually curated annotations on IDPs in locations, structures, and functional sites such as protein binding regions and post-translational modification sites together with references and structural domain assignments.", "abbreviation": "IDEAL", "support-links": [{"url": "ideal-admin@force.cs.is.nagoya-u.ac.jp", "name": "General Enquiries", "type": "Support email"}, {"url": "mota@i.nagoya-u.ac.jp", "name": "Motonori Ota", "type": "Support email"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/help.pdf", "name": "User Manual", "type": "Help documentation"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/statistics.html", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/whatsnew.html", "name": "News", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "manual curation", "type": "data curation"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php", "name": "Browse", "type": "data access"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/download/current/IDEAL_20190426.xml.gz", "name": "Download (XML)", "type": "data release"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/download/", "name": "download", "type": "data release"}, {"name": "quarterly release", "type": "data release"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/download/current/IDEAL.ttl.gz", "name": "Download (RDF)", "type": "data release"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/download/current/IDEAL.phosphorylation.zip", "name": "Download Phosphorylation Files", "type": "data release"}], "associated-tools": [{"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/blast.html", "name": "BLAST Search"}, {"url": "https://ideal-rdf.dbcls.jp/sparql", "name": "SPARQL Query Builder"}, {"url": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/dichot", "name": "Ordered/disordered Region Prediction"}]}, "legacy-ids": ["biodbcore-000052", "bsg-d000052"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Post-translational protein modification", "Molecular interaction", "Intrinsically disordered proteins"], "taxonomies": ["All"], "user-defined-tags": ["Ordered regions in proteins"], "countries": ["Japan"], "name": "FAIRsharing record for: Intrinsically Disordered proteins with Extensive Annotations and Literature", "abbreviation": "IDEAL", "url": "https://fairsharing.org/10.25504/FAIRsharing.h3y42f", "doi": "10.25504/FAIRsharing.h3y42f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IDEAL (Intrinsically Disordered proteins with Extensive Annotations and Literature) is a collection of experimentally-verified intrinsically disordered proteins (IDPs) that cannot adopt stable globular structures under physiological conditions. IDEAL contains manually curated annotations on IDPs in locations, structures, and functional sites such as protein binding regions and post-translational modification sites together with references and structural domain assignments.", "publications": [{"id": 2728, "pubmed_id": 24178034, "title": "IDEAL in 2014 illustrates interaction networks composed of intrinsically disordered proteins and their binding partners.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1010", "authors": "Fukuchi S,Amemiya T,Sakamoto S,Nobe Y,Hosoda K,Kado Y,Murakami SD,Koike R,Hiroaki H,Ota M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1010", "created_at": "2021-09-30T08:27:35.076Z", "updated_at": "2021-09-30T11:29:42.154Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1767, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1593", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-20T09:33:28.107Z", "metadata": {"doi": "10.25504/FAIRsharing.g56qnp", "name": "Histone Infobase", "status": "ready", "contacts": [{"contact-name": "Sanjeev Galande", "contact-email": "sanjeev@iiserpune.ac.in"}], "homepage": "http://www.iiserpune.ac.in/~coee/histome/", "citations": [], "identifier": 1593, "description": "HIstome (Human histone database) is a freely available, specialist, electronic database dedicated to display information about human histone variants, sites of their post-translational modifications and about various histone modifying enzymes.", "abbreviation": "HIstome", "support-links": [{"url": "https://en.wikipedia.org/wiki/HIstome", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "quarterly release", "type": "data release"}, {"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning using git version control", "type": "data versioning"}, {"name": "access to historical files available upon request", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "MySQL database dump", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010977", "name": "re3data:r3d100010977", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006972", "name": "SciCrunch:RRID:SCR_006972", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000048", "bsg-d000048"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenetics", "Life Science"], "domains": ["Citation", "Gene name", "Free text", "Histone", "Post-translational protein modification", "Enzyme", "Cross linking", "Promoter", "Amino acid sequence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Histone Infobase", "abbreviation": "HIstome", "url": "https://fairsharing.org/10.25504/FAIRsharing.g56qnp", "doi": "10.25504/FAIRsharing.g56qnp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HIstome (Human histone database) is a freely available, specialist, electronic database dedicated to display information about human histone variants, sites of their post-translational modifications and about various histone modifying enzymes.", "publications": [{"id": 1084, "pubmed_id": 22140112, "title": "HIstome--a relational knowledgebase of human histone proteins and histone modifying enzymes.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1125", "authors": "Khare SP,Habib F,Sharma R,Gadewal N,Gupta S,Galande S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1125", "created_at": "2021-09-30T08:24:20.096Z", "updated_at": "2021-09-30T11:28:58.084Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1914", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:51.030Z", "metadata": {"doi": "10.25504/FAIRsharing.m3316t", "name": "VirHostNet 2.0", "status": "ready", "contacts": [{"contact-name": "Vincent Navratil", "contact-email": "vincent.navratil@univ-lyon1.fr", "contact-orcid": "0000-0001-9974-1877"}], "homepage": "http://virhostnet.prabi.fr", "identifier": 1914, "description": "VirHostNet 2.0 integrates an extensive and original literature-curated dataset of virus/virus and virus/host protein-protein interactions complemented with publicly available data.", "abbreviation": "VirHostNet", "support-links": [{"url": "vincent.navratil@univ-lyon1.fr", "type": "Support email"}, {"url": "https://pbil.univ-lyon1.fr/redmine/projects/virhostscape/wiki", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://virhostnet.prabi.fr/index.html", "name": "virhostscape", "type": "data access"}, {"url": "http://virhostnet.prabi.fr:9090/psicquic/webservices/current/search/query/*", "name": "download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013315", "name": "re3data:r3d100013315", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000379", "bsg-d000379"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Virology", "Life Science", "Systems Biology"], "domains": ["Protein interaction", "Network model", "Molecular interaction", "Interologs mapping", "Curated information", "Biocuration"], "taxonomies": ["Bacteria", "Homo sapiens", "Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["France"], "name": "FAIRsharing record for: VirHostNet 2.0", "abbreviation": "VirHostNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.m3316t", "doi": "10.25504/FAIRsharing.m3316t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VirHostNet 2.0 integrates an extensive and original literature-curated dataset of virus/virus and virus/host protein-protein interactions complemented with publicly available data.", "publications": [{"id": 162, "pubmed_id": 25392406, "title": "VirHostNet 2.0: surfing on the web of virus/host molecular interactions data.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1121", "authors": "Guirimand T,Delmotte S,Navratil V", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1121", "created_at": "2021-09-30T08:22:37.845Z", "updated_at": "2021-09-30T11:28:43.517Z"}, {"id": 2307, "pubmed_id": 18984613, "title": "VirHostNet: a knowledge base for the management and the analysis of proteome-wide virus-host interaction networks.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn794", "authors": "Navratil V., de Chassey B., Meyniel L., Delmotte S., Gautier C., Andr\u00e9 P., Lotteau V., Rabourdin-Combe C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn794", "created_at": "2021-09-30T08:26:42.976Z", "updated_at": "2021-09-30T08:26:42.976Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2369", "type": "fairsharing-records", "attributes": {"created-at": "2016-12-01T10:34:17.000Z", "updated-at": "2021-11-24T13:13:32.556Z", "metadata": {"doi": "10.25504/FAIRsharing.3f9n4y", "name": "Open Targets", "status": "ready", "contacts": [{"contact-name": "Open Targets Team", "contact-email": "helpdesk@opentargets.org"}], "homepage": "https://platform.opentargets.org/", "citations": [{"doi": "10.1093/nar/gkaa1027", "pubmed-id": 33196847, "publication-id": 2054}], "identifier": 2369, "description": "Open Targets is a data integration platform for access to and visualisation of potential drug targets associated with disease. Each drug target is linked to a disease using integrated genome-wide data from a broad range of data sources.", "abbreviation": "Open Targets", "access-points": [{"url": "https://platform-docs.opentargets.org/data-access/graphql-api", "name": "GraphQL API documentation", "type": "Other"}], "support-links": [{"url": "http://blog.opentargets.org/", "name": "Open Targets Blog", "type": "Blog/News"}, {"url": "https://www.opentargets.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://community.opentargets.org/", "name": "Community Forum", "type": "Forum"}, {"url": "https://platform-docs.opentargets.org/", "name": "Documentation", "type": "Help documentation"}, {"url": "https://github.com/opentargets", "name": "GitHub Repository", "type": "Github"}, {"url": "https://tess.elixir-europe.org/materials/text-mining-key-concepts-and-applications", "name": "Text mining: Key concepts and applications", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/opentargets", "name": "@opentargets", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "https://platform.opentargets.org/downloads", "name": "Download", "type": "data release"}, {"url": "https://platform.opentargets.org/", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000848", "bsg-d000848"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Molecular biology", "Genomics", "Epigenetics", "Genetics", "Human Genetics", "Transcriptomics", "Biomedical Science"], "domains": ["Gene report", "Abstract", "Text mining", "Disease process modeling", "Rare disease", "Phenotype", "Disease phenotype", "Disease", "Gene-disease association", "Target", "Approved drug"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China", "United Kingdom", "United States"], "name": "FAIRsharing record for: Open Targets", "abbreviation": "Open Targets", "url": "https://fairsharing.org/10.25504/FAIRsharing.3f9n4y", "doi": "10.25504/FAIRsharing.3f9n4y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Open Targets is a data integration platform for access to and visualisation of potential drug targets associated with disease. Each drug target is linked to a disease using integrated genome-wide data from a broad range of data sources.", "publications": [{"id": 1231, "pubmed_id": 27899665, "title": "Open Targets: a platform for therapeutic target identification and validation.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1055", "authors": "Koscielny G,An P,Carvalho-Silva D et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1055", "created_at": "2021-09-30T08:24:37.306Z", "updated_at": "2021-09-30T11:29:03.495Z"}, {"id": 2054, "pubmed_id": 33196847, "title": "Open Targets Platform: supporting systematic drug-target identification and prioritisation.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1027", "authors": "Ochoa D,Hercules A,Carmona M et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1027", "created_at": "2021-09-30T08:26:11.404Z", "updated_at": "2021-09-30T11:29:27.520Z"}, {"id": 2571, "pubmed_id": 30462303, "title": "Open Targets Platform: new developments and updates two years on.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1133", "authors": "Carvalho-Silva D,Pierleoni A,Pignatelli M,Ong C,Fumis L,Karamanis N,Carmona M,Faulconbridge A,Hercules A,McAuley E,Miranda A,Peat G,Spitzer M,Barrett J,Hulcoop DG,Papa E,Koscielny G,Dunham I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1133", "created_at": "2021-09-30T08:27:15.259Z", "updated_at": "2021-09-30T11:29:39.612Z"}], "licence-links": [{"licence-name": "Open Target Terms of Use", "licence-id": 632, "link-id": 808, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1600", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.043Z", "metadata": {"doi": "10.25504/FAIRsharing.smqf7y", "name": "InterEvol database : Diving into the structure and evolution of protein complex interfaces", "status": "ready", "contacts": [{"contact-name": "Raphael Guerois - Coordinator", "contact-email": "raphael.guerois@cea.fr"}], "homepage": "http://biodev.cea.fr/interevol/", "identifier": 1600, "description": "Evolution of protein-protein Interfaces InterEvol is a resource for researchers to investigate the structural interaction of protein molecules and sequences using a variety of tools and resources.", "support-links": [{"url": "http://biodev.cea.fr/interevol/faq/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://biodev.cea.fr/interevol/help/help.html", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "monthly release", "type": "data release"}, {"name": "automated annotation", "type": "data curation"}], "associated-tools": [{"url": "http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE=Proteins&PROGRAM=blastp&RUN_PSIBLAST=on", "name": "BLAST"}, {"url": "http://www.drive5.com/muscle/", "name": "MUSCLE"}, {"url": "http://www.jalview.org", "name": "Jalview"}]}, "legacy-ids": ["biodbcore-000055", "bsg-d000055"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Multiple sequence alignment", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: InterEvol database : Diving into the structure and evolution of protein complex interfaces", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.smqf7y", "doi": "10.25504/FAIRsharing.smqf7y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Evolution of protein-protein Interfaces InterEvol is a resource for researchers to investigate the structural interaction of protein molecules and sequences using a variety of tools and resources.", "publications": [{"id": 1443, "pubmed_id": null, "title": "InterEvol database: exploring the structure and evolution of protein complex interfaces", "year": 2012, "url": "https://doi.org/10.1093/nar/gkr845", "authors": "Faure G, Andreani J, and Guerois R", "journal": "Nucleic Acids Research", "doi": null, "created_at": "2021-09-30T08:25:01.341Z", "updated_at": "2021-09-30T11:28:41.375Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1607", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:44.666Z", "metadata": {"doi": "10.25504/FAIRsharing.wqtfkv", "name": "MINAS - A Database of Metal Ions in Nucleic AcidS", "status": "uncertain", "contacts": [{"contact-name": "Joachim Schnabl", "contact-email": "joachim.schnabl@aci.uzh.ch", "contact-orcid": "0000-0003-2452-9892"}], "homepage": "http://www.minas.uzh.ch", "identifier": 1607, "description": "MINAS contains the exact geometric information on the first and second-shell coordinating ligands of every metal ion present in nucleic acid structures that are deposited in the PDB and NDB. Containing also the sequence information of the binding pocket-proximal nucleotides, this database allows for a detailed search of all combinations of potential ligands and of coordination environments of metal ions. MINAS is therefore a perfect new tool to classify metal ion binding pockets in nucleic acids by statistics and to draw general conclusions about the different coordination properties of these ions. This record has been marked as Uncertain because the homepage for this resource is no longer active, and we have not been able to get in touch with the owners of the resource. Please contact us if you have any information regarding MINAS.", "abbreviation": "MINAS", "year-creation": 2009, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "file download(CSV)", "type": "data access"}, {"url": "http://www.minas.uzh.ch/search/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000063", "bsg-d000063"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Life Science"], "domains": ["Atomic coordinate", "Deoxyribonucleic acid", "Ligand", "Metal ion binding", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MINAS - A Database of Metal Ions in Nucleic AcidS", "abbreviation": "MINAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.wqtfkv", "doi": "10.25504/FAIRsharing.wqtfkv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MINAS contains the exact geometric information on the first and second-shell coordinating ligands of every metal ion present in nucleic acid structures that are deposited in the PDB and NDB. Containing also the sequence information of the binding pocket-proximal nucleotides, this database allows for a detailed search of all combinations of potential ligands and of coordination environments of metal ions. MINAS is therefore a perfect new tool to classify metal ion binding pockets in nucleic acids by statistics and to draw general conclusions about the different coordination properties of these ions. This record has been marked as Uncertain because the homepage for this resource is no longer active, and we have not been able to get in touch with the owners of the resource. Please contact us if you have any information regarding MINAS.", "publications": [{"id": 102, "pubmed_id": 20047851, "title": "Controlling ribozyme activity by metal ions.", "year": 2010, "url": "http://doi.org/10.1016/j.cbpa.2009.11.024", "authors": "Schnabl J., Sigel RK.,", "journal": "Curr Opin Chem Biol", "doi": "10.1016/j.cbpa.2009.11.024", "created_at": "2021-09-30T08:22:31.414Z", "updated_at": "2021-09-30T08:22:31.414Z"}, {"id": 2282, "pubmed_id": null, "title": "Digitoxin metabolism by rat liver microsomes.", "year": 1975, "url": "http://doi.org/DOI:10.1016/j.ccr.2007.03.008", "authors": "Schmoldt A., Benthe HF., Haberland G.,", "journal": "Biochem. Pharmacol.", "doi": "DOI:10.1016/j.ccr.2007.03.008", "created_at": "2021-09-30T08:26:37.992Z", "updated_at": "2021-09-30T08:26:37.992Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1776", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:10.129Z", "metadata": {"doi": "10.25504/FAIRsharing.8ye60e", "name": "Agile Protein Interactomes Dataserver", "status": "ready", "contacts": [{"contact-name": "Javier De Las Rivas", "contact-email": "jrivas@usal.es", "contact-orcid": "0000-0002-0984-9946"}], "homepage": "http://apid.dep.usal.es/", "citations": [{"doi": "10.1093/nar/gkw363", "pubmed-id": 27131791, "publication-id": 1804}], "identifier": 1776, "description": "APID Interactomes (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). The interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", "abbreviation": "APID Interactomes", "support-links": [{"url": "http://cicblade.dep.usal.es:8080/APID/init.action#tabr4", "type": "Help documentation"}], "year-creation": 2016, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012339", "name": "re3data:r3d100012339", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008871", "name": "SciCrunch:RRID:SCR_008871", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000234", "bsg-d000234"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein interaction", "Interactome", "Molecular interaction", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Agile Protein Interactomes Dataserver", "abbreviation": "APID Interactomes", "url": "https://fairsharing.org/10.25504/FAIRsharing.8ye60e", "doi": "10.25504/FAIRsharing.8ye60e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: APID Interactomes (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). The interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", "publications": [{"id": 1082, "pubmed_id": 17644818, "title": "APID2NET: unified interactome graphic analyzer.", "year": 2007, "url": "http://doi.org/10.1093/bioinformatics/btm373", "authors": "Hernandez-Toro J,Prieto C,De las Rivas J", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btm373", "created_at": "2021-09-30T08:24:19.889Z", "updated_at": "2021-09-30T08:24:19.889Z"}, {"id": 1804, "pubmed_id": 27131791, "title": "APID interactomes: providing proteome-based interactomes with controlled quality for multiple species and derived networks.", "year": 2016, "url": "https://academic.oup.com/nar/article/44/W1/W529/2499348", "authors": "Alonso-Lopez D,Gutierrez MA,Lopes KP,Prieto C,Santamaria R,De Las Rivas J", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkw363", "created_at": "2021-09-30T08:25:42.546Z", "updated_at": "2021-09-30T08:25:42.546Z"}, {"id": 1910, "pubmed_id": 16845013, "title": "APID: Agile Protein Interaction DataAnalyzer.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl128", "authors": "Prieto C., De Las Rivas J.,", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkl128", "created_at": "2021-09-30T08:25:54.769Z", "updated_at": "2021-09-30T11:29:23.441Z"}, {"id": 2090, "pubmed_id": 30715274, "title": "APID database: redefining protein-protein interaction experimental evidences and binary interactomes.", "year": 2019, "url": "https://academic.oup.com/database/article/doi/10.1093/database/baz005/5304002", "authors": "Alonso-Lopez D,Campos-Laborie FJ,Gutierrez MA,Lambourne L,Calderwood MA,Vidal M,De Las Rivas J", "journal": "Database (Oxford)", "doi": "10.1093/database/baz005", "created_at": "2021-09-30T08:26:15.566Z", "updated_at": "2021-09-30T08:26:15.566Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2419", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-13T12:03:41.000Z", "updated-at": "2021-12-06T10:48:42.933Z", "metadata": {"doi": "10.25504/FAIRsharing.j1eyq2", "name": "mentha", "status": "ready", "contacts": [{"contact-name": "Alberto Calderone", "contact-email": "sinnefa@gmail.com"}], "homepage": "http://mentha.uniroma2.it/", "identifier": 2419, "description": "mentha archives evidence collected from different sources and presents these data in a complete and comprehensive way. Its data comes from manually curated protein-protein interaction databases that have adhered to the IMEx consortium. The aggregated data forms an interactome which includes many organisms. mentha is a resource that offers a series of tools to analyse selected proteins in the context of a network of interactions.", "abbreviation": "mentha", "access-points": [{"url": "http://mentha.uniroma2.it:8080/server/", "name": "http://mentha.uniroma2.it/developers.php", "type": "REST"}], "year-creation": 2013, "associated-tools": [{"url": "http://mentha.uniroma2.it/beta-tools/index.php", "name": "mentha tools"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011124", "name": "re3data:r3d100011124", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_016148", "name": "SciCrunch:RRID:SCR_016148", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000901", "bsg-d000901"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": [], "taxonomies": [], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: mentha", "abbreviation": "mentha", "url": "https://fairsharing.org/10.25504/FAIRsharing.j1eyq2", "doi": "10.25504/FAIRsharing.j1eyq2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: mentha archives evidence collected from different sources and presents these data in a complete and comprehensive way. Its data comes from manually curated protein-protein interaction databases that have adhered to the IMEx consortium. The aggregated data forms an interactome which includes many organisms. mentha is a resource that offers a series of tools to analyse selected proteins in the context of a network of interactions.", "publications": [{"id": 1507, "pubmed_id": 23900247, "title": "mentha: a resource for browsing integrated protein-interaction networks.", "year": 2013, "url": "http://doi.org/10.1038/nmeth.2561", "authors": "Calderone A, Castagnoli L, Cesareni G.", "journal": "Nat Methods", "doi": "10.1038/nmeth.2561", "created_at": "2021-09-30T08:25:08.703Z", "updated_at": "2021-09-30T08:25:08.703Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1612", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:54.359Z", "metadata": {"doi": "10.25504/FAIRsharing.n14rc8", "name": "Identifiers.org Central Registry", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "identifiers-org@ebi.ac.uk"}], "homepage": "https://registry.identifiers.org/", "citations": [{"doi": "10.1038/sdata.2018.29", "pubmed-id": 29737976, "publication-id": 2751}], "identifier": 1612, "description": "The Identifiers.org Central Registry provides the necessary information for the generation and resolution of unique and perennial identifiers for life science data. Those identifiers are both in URI and compact form, and make use of Identifiers.org to provide direct access to the identified data records on the Web. Resource maintainers request an Identifiers.org prefix for their databases or services.", "access-points": [{"url": "https://docs.identifiers.org/articles/services.html", "name": "Resolution Service and Central Registry", "type": "REST"}, {"url": "https://docs.identifiers.org/articles/docs/sparql.html", "name": "SPARQL Endpoint", "type": "Other"}], "support-links": [{"url": "https://docs.identifiers.org/articles/docs/faq.html", "name": "Identifiers.org FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/identifiers-org/identifiers-org.github.io/issues/", "name": "GitHub Issue Tracker", "type": "Github"}, {"url": "https://docs.identifiers.org/articles/docs/metadata_service.html", "name": "Metadata Service", "type": "Help documentation"}, {"url": "https://docs.identifiers.org/", "name": "Documentation", "type": "Help documentation"}, {"url": "https://docs.identifiers.org/articles/docs/key_facts.html", "name": "Key Facts", "type": "Help documentation"}, {"url": "https://docs.identifiers.org/articles/docs/identification_scheme.html", "name": "Identification Scheme", "type": "Help documentation"}, {"url": "https://docs.identifiers.org/articles/docs/resolving_mechanisms.html", "name": "Resolving Mechanisms", "type": "Help documentation"}, {"url": "https://twitter.com/IdentifiersOrg", "name": "@IdentifiersOrg", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "https://n2t.net/ark:/13030/c7xk84q2j", "name": "Download Prefixes", "type": "data release"}, {"url": "https://registry.identifiers.org/prefixregistrationrequest", "name": "Request a prefix", "type": "data curation"}, {"url": "https://registry.identifiers.org/registry", "name": "Browse", "type": "data access"}, {"url": "https://registry.identifiers.org/", "name": "Search", "type": "data access"}, {"url": "https://registry.identifiers.org/resourceregistrationrequest", "name": "Register resource", "type": "data curation"}], "associated-tools": [{"url": "https://identifiers.org/info", "name": ".info service"}, {"url": "https://github.com/identifiers-org/cloud-libapi", "name": "Java library for identifiers.org Web Services"}]}, "legacy-ids": ["biodbcore-000068", "bsg-d000068"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Resource metadata", "Data identity and mapping", "Centrally registered identifier"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Identifiers.org Central Registry", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.n14rc8", "doi": "10.25504/FAIRsharing.n14rc8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Identifiers.org Central Registry provides the necessary information for the generation and resolution of unique and perennial identifiers for life science data. Those identifiers are both in URI and compact form, and make use of Identifiers.org to provide direct access to the identified data records on the Web. Resource maintainers request an Identifiers.org prefix for their databases or services.", "publications": [{"id": 362, "pubmed_id": 18078503, "title": "MIRIAM Resources: tools to generate and resolve robust cross-references in Systems Biology.", "year": 2007, "url": "http://doi.org/10.1186/1752-0509-1-58", "authors": "Laibe C., Le Novere N.,", "journal": "BMC Syst Biol", "doi": "10.1186/1752-0509-1-58", "created_at": "2021-09-30T08:22:58.900Z", "updated_at": "2021-09-30T08:22:58.900Z"}, {"id": 1282, "pubmed_id": 22140103, "title": "Identifiers.org and MIRIAM Registry: community resources to provide persistent identification.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1097", "authors": "Juty N,Le Novere N,Laibe C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1097", "created_at": "2021-09-30T08:24:43.090Z", "updated_at": "2021-09-30T11:29:05.368Z"}, {"id": 2751, "pubmed_id": 29737976, "title": "Uniform resolution of compact identifiers for biomedical data.", "year": 2018, "url": "http://doi.org/10.1038/sdata.2018.29", "authors": "Wimalaratne SM,Juty N,Kunze J,Janee G,McMurry JA,Beard N,Jimenez R,Grethe JS,Hermjakob H,Martone ME,Clark T", "journal": "Sci Data", "doi": "10.1038/sdata.2018.29", "created_at": "2021-09-30T08:27:38.148Z", "updated_at": "2021-09-30T08:27:38.148Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 38, "relation": "undefined"}, {"licence-name": "Identifiers.org Licence and Disclaimer", "licence-id": 422, "link-id": 42, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1618", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.085Z", "metadata": {"doi": "10.25504/FAIRsharing.8gwskw", "name": "Network of Cancer Genes", "status": "ready", "contacts": [{"contact-name": "Thanos Mourikis", "contact-email": "athanasios.mourikis@kcl.ac.uk"}], "homepage": "http://ncg.kcl.ac.uk/", "citations": [{"publication-id": 2454}], "identifier": 1618, "description": "The Network of Cancer Genes (NCG) contains information on duplicability, evolution, protein-protein and microRNA-gene interaction, function, expression and essentiality of cancer genes from manually curated publications . NCG also provides information on the experimental validation that supports the role of these genes in cancer and annotates their properties (duplicability, evolutionary origin, expression profile, function and interactions with proteins and miRNAs).", "abbreviation": "NCG", "support-links": [{"url": "francesca.ciccarelli@crick.ac.uk", "name": "francesca.ciccarelli@crick.ac.uk", "type": "Support email"}, {"url": "http://ncg.kcl.ac.uk/help.php", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://ncg.kcl.ac.uk/statistics.php", "name": "Statistics", "type": "Help documentation"}, {"url": "http://ncg.kcl.ac.uk/citation.php", "name": "Citations", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Network_of_Cancer_Genes", "name": "Wikipedia page", "type": "Wikipedia"}], "year-creation": 2010, "data-processes": [{"url": "http://ncg.kcl.ac.uk/cancer_genes.php", "name": "Browse Cancer Genes", "type": "data access"}, {"url": "http://ncg.kcl.ac.uk/screenings.php", "name": "Browse Screenings", "type": "data access"}, {"url": "http://ncg.kcl.ac.uk/false_positives.php", "name": "Browse Possible False Positives", "type": "data access"}, {"url": "http://ncg.kcl.ac.uk/download.php", "name": "file download(txt,tab-delimited)", "type": "data access"}, {"url": "http://ncg.kcl.ac.uk/advanced_search.php", "name": "Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000074", "bsg-d000074"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Evolutionary Biology", "Biomedical Science"], "domains": ["Expression data", "Protein interaction", "Function analysis", "Cancer", "Gene silencing by miRNA (microRNA)", "High Throughput Screening", "Whole genome sequencing", "Micro RNA", "Experimentally determined", "Orthologous", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Network of Cancer Genes", "abbreviation": "NCG", "url": "https://fairsharing.org/10.25504/FAIRsharing.8gwskw", "doi": "10.25504/FAIRsharing.8gwskw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Network of Cancer Genes (NCG) contains information on duplicability, evolution, protein-protein and microRNA-gene interaction, function, expression and essentiality of cancer genes from manually curated publications . NCG also provides information on the experimental validation that supports the role of these genes in cancer and annotates their properties (duplicability, evolutionary origin, expression profile, function and interactions with proteins and miRNAs).", "publications": [{"id": 108, "pubmed_id": 21490719, "title": "Modification of gene duplicability during the evolution of protein interaction network.", "year": 2011, "url": "http://doi.org/10.1371/journal.pcbi.1002029", "authors": "D'Antonio M., Ciccarelli FD.,", "journal": "PLoS Comput. Biol.", "doi": "10.1371/journal.pcbi.1002029", "created_at": "2021-09-30T08:22:31.997Z", "updated_at": "2021-09-30T08:22:31.997Z"}, {"id": 421, "pubmed_id": 19906700, "title": "Network of Cancer Genes: a web resource to analyze duplicability, orthology and network properties of cancer genes.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp957", "authors": "Syed AS., D'Antonio M., Ciccarelli FD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp957", "created_at": "2021-09-30T08:23:05.767Z", "updated_at": "2021-09-30T08:23:05.767Z"}, {"id": 1593, "pubmed_id": 18675489, "title": "Low duplicability and network fragility of cancer genes.", "year": 2008, "url": "http://doi.org/10.1016/j.tig.2008.06.003", "authors": "Rambaldi D., Giorgi FM., Capuani F., Ciliberto A., Ciccarelli FD.,", "journal": "Trends Genet.", "doi": "10.1016/j.tig.2008.06.003", "created_at": "2021-09-30T08:25:18.585Z", "updated_at": "2021-09-30T08:25:18.585Z"}, {"id": 1947, "pubmed_id": 26516186, "title": "NCG 5.0: updates of a manually curated repository of cancer genes and associated properties from cancer mutational screenings.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1123", "authors": "An O,Dall'Olio GM,Mourikis TP,Ciccarelli FD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1123", "created_at": "2021-09-30T08:25:59.079Z", "updated_at": "2021-09-30T11:29:24.493Z"}, {"id": 2454, "pubmed_id": null, "title": "The Network of Cancer Genes (NCG): a comprehensive catalogue of known and candidate cancer genes from cancer sequencing screens.", "year": 2018, "url": "https://doi.org/10.1101/389858", "authors": "Dimitra Repana, Joel Nulsen, Lisa Dressler, Michele Bortolomeazzi, Santhilata Kuppili Venkata, Aikaterini Tourna, Anna Yakovleva, Tommaso Palmieri, View ORCID ProfileFrancesca D Ciccarelli", "journal": "BioRxiv", "doi": null, "created_at": "2021-09-30T08:27:01.019Z", "updated_at": "2021-09-30T11:28:40.203Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1625", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:30.542Z", "metadata": {"doi": "10.25504/FAIRsharing.y3scf6", "name": "Protein Families", "status": "ready", "contacts": [{"contact-name": "Robert D Finn", "contact-email": "rdf@ebi.ac.uk"}], "homepage": "http://pfam.xfam.org/", "citations": [{"doi": "10.1093/nar/gky995", "pubmed-id": 30357350, "publication-id": 2380}], "identifier": 1625, "description": "The Pfam database is a large collection of protein families, each represented by multiple sequence alignments and hidden Markov models (HMMs). Pfam also generates higher-level groupings of related entries, known as clans. A clan is a collection of Pfam entries which are related by similarity of sequence, structure or profile-HMM.", "abbreviation": "Pfam", "access-points": [{"url": "http://pfam.xfam.org/help#tabview=tab11", "name": "REST web service", "type": "REST"}], "support-links": [{"url": "http://xfam.wordpress.com/tag/pfam/", "name": "Pfam Blog", "type": "Blog/News"}, {"url": "pfam-help@ebi.ac.uk", "name": "HelpDesk", "type": "Support email"}, {"url": "http://pfam.xfam.org/help#tabview=tab4", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://pfam.xfam.org/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "pfamlist-subscribe@ebi.ac.uk", "type": "Mailing list"}, {"url": "http://pfam.xfam.org/about", "name": "About", "type": "Help documentation"}, {"url": "http://pfam.xfam.org/about", "name": "About Pfam", "type": "Help documentation"}, {"url": "http://xfam.wordpress.com/tag/pfam/feed/", "name": "RSS Feed", "type": "Blog/News"}, {"url": "https://tess.elixir-europe.org/materials/bioinformatics-gene-protein-structure-function", "name": "Bioinformatics: Gene-protein-structure-function", "type": "TeSS links to training materials"}, {"url": "http://pfam.xfam.org/help#tabview=tab3", "name": "Online Training", "type": "Training documentation"}, {"url": "https://twitter.com/Xfam_EBI", "name": "@Xfam_EBI", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Pfam", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1996, "data-processes": [{"url": "ftp://ftp.ebi.ac.uk/pub/databases/Pfam", "name": "Download via FTP", "type": "data release"}, {"url": "http://pfam.xfam.org/browse", "name": "Browse", "type": "data access"}, {"url": "http://pfam.xfam.org/search", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://hmmer.org", "name": "HMMER3 v3.2.1"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012850", "name": "re3data:r3d100012850", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004726", "name": "SciCrunch:RRID:SCR_004726", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000081", "bsg-d000081"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Functional domain", "Hidden Markov model", "Sequence similarity", "Protein domain", "Multiple sequence alignment", "Computational biological predictions", "Function analysis", "Proteome", "Binding motif", "Evolution", "Sequence alignment", "Protein", "Amino acid sequence", "Sequence motif", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": ["Evolutionary relationship between proteins via sequence similarity"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "United States", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Protein Families", "abbreviation": "Pfam", "url": "https://fairsharing.org/10.25504/FAIRsharing.y3scf6", "doi": "10.25504/FAIRsharing.y3scf6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pfam database is a large collection of protein families, each represented by multiple sequence alignments and hidden Markov models (HMMs). Pfam also generates higher-level groupings of related entries, known as clans. A clan is a collection of Pfam entries which are related by similarity of sequence, structure or profile-HMM.", "publications": [{"id": 664, "pubmed_id": 22127870, "title": "The Pfam protein families database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1065", "authors": "Punta M., Coggill PC., Eberhardt RY., Mistry J., Tate J., Boursnell C., Pang N., Forslund K., Ceric G., Clements J., Heger A., Holm L., Sonnhammer EL., Eddy SR., Bateman A., Finn RD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1065", "created_at": "2021-09-30T08:23:33.296Z", "updated_at": "2021-09-30T08:23:33.296Z"}, {"id": 904, "pubmed_id": 33125078, "title": "Pfam: The protein families database in 2021.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa913", "authors": "Mistry J,Chuguransky S,Williams L,Qureshi M,Salazar GA,Sonnhammer ELL,Tosatto SCE,Paladin L,Raj S,Richardson LJ,Finn RD,Bateman A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa913", "created_at": "2021-09-30T08:23:59.836Z", "updated_at": "2021-09-30T11:28:55.101Z"}, {"id": 911, "pubmed_id": 19920124, "title": "The Pfam protein families database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp985", "authors": "Finn RD., Mistry J., Tate J., Coggill P., Heger A., Pollington JE., Gavin OL., Gunasekaran P., Ceric G., Forslund K., Holm L., Sonnhammer EL., Eddy SR., Bateman A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp985", "created_at": "2021-09-30T08:24:00.612Z", "updated_at": "2021-09-30T08:24:00.612Z"}, {"id": 1073, "pubmed_id": 9223186, "title": "Pfam: a comprehensive database of protein domain families based on seed alignments.", "year": 1997, "url": "http://doi.org/10.1002/(sici)1097-0134(199707)28:3<405::aid-prot10>3.0.co;2-l", "authors": "Sonnhammer EL,Eddy SR,Durbin R", "journal": "Proteins", "doi": "10.1002/(sici)1097-0134(199707)28:3<405::aid-prot10>3.0.co;2-l", "created_at": "2021-09-30T08:24:18.829Z", "updated_at": "2021-09-30T08:24:18.829Z"}, {"id": 2295, "pubmed_id": 26673716, "title": "The Pfam protein families database: towards a more sustainable future.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1344", "authors": "Finn RD,Coggill P,Eberhardt RY,Eddy SR,Mistry J,Mitchell AL,Potter SC,Punta M,Qureshi M,Sangrador-Vegas A,Salazar GA,Tate J,Bateman A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1344", "created_at": "2021-09-30T08:26:40.209Z", "updated_at": "2021-09-30T11:29:32.562Z"}, {"id": 2296, "pubmed_id": 24288371, "title": "Pfam: the protein families database.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1223", "authors": "Finn RD,Bateman A,Clements J,Coggill P,Eberhardt RY,Eddy SR,Heger A,Hetherington K,Holm L,Mistry J,Sonnhammer EL,Tate J,Punta M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1223", "created_at": "2021-09-30T08:26:40.493Z", "updated_at": "2021-09-30T11:29:32.662Z"}, {"id": 2327, "pubmed_id": 18039703, "title": "The Pfam protein families database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm960", "authors": "Finn RD,Tate J,Mistry J,Coggill PC,Sammut SJ,Hotz HR,Ceric G,Forslund K,Eddy SR,Sonnhammer EL,Bateman A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm960", "created_at": "2021-09-30T08:26:45.675Z", "updated_at": "2021-09-30T11:29:33.119Z"}, {"id": 2328, "pubmed_id": 16381856, "title": "Pfam: clans, web tools and services.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj149", "authors": "Finn RD,Mistry J,Schuster-Bockler B,Griffiths-Jones S,Hollich V,Lassmann T,Moxon S,Marshall M,Khanna A,Durbin R,Eddy SR,Sonnhammer EL,Bateman A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj149", "created_at": "2021-09-30T08:26:45.841Z", "updated_at": "2021-09-30T11:29:33.211Z"}, {"id": 2380, "pubmed_id": 30357350, "title": "The Pfam protein families database in 2019.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky995", "authors": "El-Gebali S,Mistry J,Bateman A,Eddy SR,Luciani A,Potter SC,Qureshi M,Richardson LJ,Salazar GA,Smart A,Sonnhammer ELL,Hirsh L,Paladin L,Piovesan D,Tosatto SCE,Finn RD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky995", "created_at": "2021-09-30T08:26:52.458Z", "updated_at": "2021-09-30T11:29:34.411Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2321, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1621", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:31.062Z", "metadata": {"doi": "10.25504/FAIRsharing.8ecbxx", "name": "NucleaRDB", "status": "deprecated", "contacts": [{"contact-name": "Florence Horn", "contact-email": "horn@cmpharm.ucsf.edu"}], "homepage": "http://www.receptors.org/nucleardb", "identifier": 1621, "description": "Families of nuclear hormone receptors", "abbreviation": "NucleaRDB", "support-links": [{"url": "https://en.wikipedia.org/wiki/NucleaRDB", "type": "Wikipedia"}], "year-creation": 2000, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "web interface", "type": "data access"}, {"name": "web service", "type": "data access"}, {"name": "file download(tab-delimited,XML)", "type": "data access"}], "deprecation-date": "2021-9-20", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000077", "bsg-d000077"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Life Science"], "domains": ["Sequence annotation", "Multiple sequence alignment", "Ligand binding domain binding", "Mutation analysis", "Nuclear receptor", "Structure", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: NucleaRDB", "abbreviation": "NucleaRDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.8ecbxx", "doi": "10.25504/FAIRsharing.8ecbxx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Families of nuclear hormone receptors", "publications": [{"id": 119, "pubmed_id": 11125133, "title": "Collecting and harvesting biological data: the GPCRDB and NucleaRDB information systems.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.346", "authors": "Horn F., Vriend G., Cohen FE.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.346", "created_at": "2021-09-30T08:22:33.155Z", "updated_at": "2021-09-30T08:22:33.155Z"}, {"id": 875, "pubmed_id": 22064856, "title": "NucleaRDB: information system for nuclear receptors.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr960", "authors": "Vroling B,Thorne D,McDermott P,Joosten HJ,Attwood TK,Pettifer S,Vriend G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr960", "created_at": "2021-09-30T08:23:56.618Z", "updated_at": "2021-09-30T11:28:54.542Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1622", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:48.412Z", "metadata": {"doi": "10.25504/FAIRsharing.hsy066", "name": "Online GEne Essentiality database", "status": "ready", "contacts": [{"contact-name": "Wei-Hua Chen", "contact-email": "weihuachen@hust.edu.cn"}], "homepage": "http://ogeedb.embl.de", "identifier": 1622, "description": "Online GEne Essentiality database", "abbreviation": "OGEE", "year-creation": 2011, "data-processes": [{"name": "MySQL database dump", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"name": "annual release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files is available", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000078", "bsg-d000078"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Text mining", "Publication", "Curated information"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: Online GEne Essentiality database", "abbreviation": "OGEE", "url": "https://fairsharing.org/10.25504/FAIRsharing.hsy066", "doi": "10.25504/FAIRsharing.hsy066", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Online GEne Essentiality database", "publications": [{"id": 1805, "pubmed_id": 27799467, "title": "OGEE v2: an update of the online gene essentiality database with special focus on differentially essential genes in human cancer cell lines.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1013", "authors": "Chen WH,Lu G,Chen X,Zhao XM,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1013", "created_at": "2021-09-30T08:25:42.653Z", "updated_at": "2021-09-30T11:29:21.002Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1646", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:57.135Z", "metadata": {"doi": "10.25504/FAIRsharing.qbt1gh", "name": "SNPeffect", "status": "ready", "contacts": [{"contact-name": "Frederic Rousseau", "contact-email": "frederic.rousseau@vub.ac.be"}], "homepage": "http://snpeffect.switchlab.org", "identifier": 1646, "description": "SNPeffect is a database for phenotyping human single nucleotide polymorphisms (SNPs). SNPeffect primarily focuses on the molecular characterization and annotation of disease and polymorphism variants in the human proteome. Further, SNPeffect holds per-variant annotations on functional sites, structural features and post-translational modification.", "abbreviation": "SNPeffect", "support-links": [{"url": "http://snpeffect.switchlab.org/contact", "type": "Contact form"}, {"url": "http://snpeffect.switchlab.org/help", "type": "Help documentation"}, {"url": "http://snpeffect.switchlab.org/about", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://snpeffect.switchlab.org/user", "name": "Log in", "type": "data access"}, {"url": "http://snpeffect.switchlab.org/sequences", "name": "browse", "type": "data access"}, {"url": "http://snpeffect.switchlab.org/about#Downloads", "name": "file download (CSV, XLS)", "type": "data access"}, {"name": "monthly release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}], "associated-tools": [{"url": "http://snpeffect.switchlab.org/meta_analysis", "name": "Meta analysis: large scale mining and visualization of SNPeffect data"}, {"url": "http://snpeffect.switchlab.org/snpeffect_jobs", "name": "Phenotypic analysis of custom single protein variants"}]}, "legacy-ids": ["biodbcore-000102", "bsg-d000102"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene Ontology enrichment", "Chaperone binding", "Mutation analysis", "Phenotype", "Disease", "Structure", "Single nucleotide polymorphism", "Amino acid sequence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Free energy prediction", "Protein aggregation"], "countries": ["Belgium"], "name": "FAIRsharing record for: SNPeffect", "abbreviation": "SNPeffect", "url": "https://fairsharing.org/10.25504/FAIRsharing.qbt1gh", "doi": "10.25504/FAIRsharing.qbt1gh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SNPeffect is a database for phenotyping human single nucleotide polymorphisms (SNPs). SNPeffect primarily focuses on the molecular characterization and annotation of disease and polymorphism variants in the human proteome. Further, SNPeffect holds per-variant annotations on functional sites, structural features and post-translational modification.", "publications": [{"id": 1172, "pubmed_id": 22075996, "title": "SNPeffect 4.0: on-line prediction of molecular and structural effects of protein-coding variants.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr996", "authors": "De Baets G,Van Durme J,Reumers J,Maurer-Stroh S,Vanhee P,Dopazo J,Schymkowitz J,Rousseau F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr996", "created_at": "2021-09-30T08:24:30.280Z", "updated_at": "2021-09-30T11:29:01.892Z"}, {"id": 1477, "pubmed_id": 15608254, "title": "SNPeffect: a database mapping molecular phenotypic effects of human non-synonymous coding SNPs.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki086", "authors": "Reumers J., Schymkowitz J., Ferkinghoff-Borg J., Stricher F., Serrano L., Rousseau F.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki086", "created_at": "2021-09-30T08:25:05.344Z", "updated_at": "2021-09-30T08:25:05.344Z"}, {"id": 1478, "pubmed_id": 16809394, "title": "SNPeffect v2.0: a new step in investigating the molecular phenotypic effects of human non-synonymous SNPs.", "year": 2006, "url": "http://doi.org/10.1093/bioinformatics/btl348", "authors": "Reumers J., Maurer-Stroh S., Schymkowitz J., Rousseau F.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btl348", "created_at": "2021-09-30T08:25:05.452Z", "updated_at": "2021-09-30T08:25:05.452Z"}, {"id": 1479, "pubmed_id": 18086700, "title": "Joint annotation of coding and non-coding single nucleotide polymorphisms and mutations in the SNPeffect and PupaSuite databases.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm979", "authors": "Reumers J., Conde L., Medina I., Maurer-Stroh S., Van Durme J., Dopazo J., Rousseau F., Schymkowitz J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm979", "created_at": "2021-09-30T08:25:05.611Z", "updated_at": "2021-09-30T08:25:05.611Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1904", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:27.122Z", "metadata": {"doi": "10.25504/FAIRsharing.dt9z89", "name": "Database of Protein Disorder", "status": "ready", "contacts": [{"contact-name": "Silvio C.E. Tosatto", "contact-email": "silvio.tosatto@unipd.it", "contact-orcid": "0000-0003-4525-7793"}], "homepage": "http://www.disprot.org/", "citations": [{"doi": "10.1093/nar/gkz975", "pubmed-id": 31713636, "publication-id": 1920}], "identifier": 1904, "description": "The Database of Protein Disorder (DisProt) is a curated database that provides information about intrinsically disordered proteins that lack fixed 3D structure in their putatively native states, either in their entirety or in part. Disordered regions are manually curated from literature. DisProt annotations cover both structural and functional aspects of disorder detected by specific experimental methods.", "abbreviation": "DisProt", "access-points": [{"url": "https://www.disprot.org/help#api", "name": "DisProt API Documentation", "type": "REST"}, {"url": "https://disprot.org/sitemap.xml", "name": "Bioschemas DataCatalog Profile", "type": "Bioschemas", "example-url": "https://www.disprot.org/", "documentation-url": null}, {"url": "https://disprot.org/sitemap.xml", "name": "Bioschemas Dataset Profile", "type": "Bioschemas", "example-url": "https://www.disprot.org/", "documentation-url": null}, {"url": "https://disprot.org/sitemap.xml", "name": "Bioschemas Protein Profile", "type": "Bioschemas", "example-url": "https://www.disprot.org/DP00086", "documentation-url": null}], "data-curation": {}, "support-links": [{"url": "https://disprot.github.io/", "name": "DisProt Blog", "type": "Github"}, {"url": "https://www.disprot.org/feedback", "name": "Feedback Form", "type": "Contact form"}, {"url": "disprot@ngp-net.bio.unipd.it", "name": "General Contact", "type": "Support email"}, {"url": "https://www.disprot.org/help", "name": "Help", "type": "Help documentation"}, {"url": "https://www.disprot.org/about", "name": "About", "type": "Help documentation"}, {"url": "https://www.disprot.org/release-notes", "name": "Release Notes", "type": "Help documentation"}, {"url": "https://twitter.com/disprot_db", "name": "@disprot_db", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "https://www.disprot.org/download", "name": "Download", "type": "data release"}, {"url": "https://www.disprot.org/browse", "name": "Browse and Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010561", "name": "re3data:r3d100010561", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007097", "name": "SciCrunch:RRID:SCR_007097", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000369", "bsg-d000369"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Protein structure", "Disease", "Intrinsically disordered proteins", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "European Union"], "name": "FAIRsharing record for: Database of Protein Disorder", "abbreviation": "DisProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.dt9z89", "doi": "10.25504/FAIRsharing.dt9z89", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Protein Disorder (DisProt) is a curated database that provides information about intrinsically disordered proteins that lack fixed 3D structure in their putatively native states, either in their entirety or in part. Disordered regions are manually curated from literature. DisProt annotations cover both structural and functional aspects of disorder detected by specific experimental methods.", "publications": [{"id": 424, "pubmed_id": 17145717, "title": "DisProt: the Database of Disordered Proteins.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl893", "authors": "Sickmeier M., Hamilton JA., LeGall T., Vacic V., Cortese MS., Tantos A., Szabo B., Tompa P., Chen J., Uversky VN., Obradovic Z., Dunker AK.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl893", "created_at": "2021-09-30T08:23:06.075Z", "updated_at": "2021-09-30T08:23:06.075Z"}, {"id": 1919, "pubmed_id": 27899601, "title": "DisProt 7.0: a major update of the database of disordered proteins.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1056", "authors": "Piovesan D,Tabaro F,Micetic I et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1056", "created_at": "2021-09-30T08:25:55.954Z", "updated_at": "2021-09-30T11:29:23.978Z"}, {"id": 1920, "pubmed_id": 31713636, "title": "DisProt: intrinsic protein disorder annotation in 2020.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz975", "authors": "Hatos A,Hajdu-Soltesz B,Monzon AM et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz975", "created_at": "2021-09-30T08:25:56.051Z", "updated_at": "2021-09-30T11:29:24.077Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2440, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1633", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:55.825Z", "metadata": {"doi": "10.25504/FAIRsharing.4bt49f", "name": "Polymorphism in microRNAs and their TargetSites", "status": "ready", "contacts": [{"contact-name": "Yan Cui", "contact-email": "ycui2@uthsc.edu"}], "homepage": "http://compbio.uthsc.edu/miRSNP/", "identifier": 1633, "description": "PolymiRTS (Polymorphism in microRNAs and their TargetSites) is a database of naturally occurring DNA variations in microRNA (miRNA) seed regions and miRNA target sites. MicroRNAs pair to the transcripts of protein-coding genes and cause translational repression or mRNA destabilization. SNPs and INDELs in miRNAs and their target sites may affect miRNA-mRNA interaction, and hence affect miRNA-mediated gene repression.", "abbreviation": "PolymiRTS", "support-links": [{"url": "http://compbio.uthsc.edu/miRSNP/help.php", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/PolymiRTS", "type": "Wikipedia"}], "year-creation": 2006, "data-processes": [{"url": "http://compbio.uthsc.edu/miRSNP/download/", "name": "Data download", "type": "data access"}, {"url": "http://compbio.uthsc.edu/miRSNP/compare.php", "name": "search", "type": "data access"}, {"url": "http://compbio.uthsc.edu/miRSNP/search.php", "name": "search", "type": "data access"}, {"url": "http://compbio.uthsc.edu/miRSNP/mainbrowse.php", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://compbio.uthsc.edu/miRSNP/batchsearch.php", "name": "Batch Search"}]}, "legacy-ids": ["biodbcore-000089", "bsg-d000089"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene silencing by miRNA (microRNA)", "Genetic polymorphism", "Micro RNA"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Polymorphism in microRNAs and their TargetSites", "abbreviation": "PolymiRTS", "url": "https://fairsharing.org/10.25504/FAIRsharing.4bt49f", "doi": "10.25504/FAIRsharing.4bt49f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PolymiRTS (Polymorphism in microRNAs and their TargetSites) is a database of naturally occurring DNA variations in microRNA (miRNA) seed regions and miRNA target sites. MicroRNAs pair to the transcripts of protein-coding genes and cause translational repression or mRNA destabilization. SNPs and INDELs in miRNAs and their target sites may affect miRNA-mRNA interaction, and hence affect miRNA-mediated gene repression.", "publications": [{"id": 1257, "pubmed_id": 17099235, "title": "PolymiRTS Database: linking polymorphisms in microRNA target sites with complex traits.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl797", "authors": "Bao L., Zhou M., Wu L., Lu L., Goldowitz D., Williams RW., Cui Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl797", "created_at": "2021-09-30T08:24:40.250Z", "updated_at": "2021-09-30T08:24:40.250Z"}, {"id": 1261, "pubmed_id": 24163105, "title": "PolymiRTS Database 3.0: linking polymorphisms in microRNAs and their target sites with human diseases and biological pathways.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1028", "authors": "Bhattacharya A,Ziebarth JD,Cui Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1028", "created_at": "2021-09-30T08:24:40.700Z", "updated_at": "2021-09-30T11:29:04.342Z"}, {"id": 1879, "pubmed_id": 22080514, "title": "PolymiRTS Database 2.0: linking polymorphisms in microRNA target sites with human diseases and complex traits.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1026", "authors": "Ziebarth JD,Bhattacharya A,Chen A,Cui Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1026", "created_at": "2021-09-30T08:25:51.345Z", "updated_at": "2021-09-30T11:29:21.860Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1636", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:44.859Z", "metadata": {"doi": "10.25504/FAIRsharing.6zk9ea", "name": "Protein-Chemical Structural Interactions", "status": "ready", "contacts": [{"contact-name": "Olga Kalinina", "contact-email": "olga.kalinina@bioquant.uni-heidelberg.de"}], "homepage": "http://pcidb.russelllab.org/", "identifier": 1636, "description": "Protein-Chemical Structural Interactions provides information on the 3-dimensional chemical structures of protein interactions with low molecular weight.", "abbreviation": "ProtChemSI", "year-creation": 2011, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "access to historical files available (will be made available in future)", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000092", "bsg-d000092"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biochemistry", "Life Science"], "domains": ["Chemical structure", "Protein interaction", "Ligand", "Molecular interaction", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Protein-Chemical Structural Interactions", "abbreviation": "ProtChemSI", "url": "https://fairsharing.org/10.25504/FAIRsharing.6zk9ea", "doi": "10.25504/FAIRsharing.6zk9ea", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Protein-Chemical Structural Interactions provides information on the 3-dimensional chemical structures of protein interactions with low molecular weight.", "publications": [{"id": 954, "pubmed_id": 21573205, "title": "Combinations of protein-chemical complex structures reveal new targets for established drugs.", "year": 2011, "url": "http://doi.org/10.1371/journal.pcbi.1002043", "authors": "Kalinina OV., Wichmann O., Apic G., Russell RB.,", "journal": "PLoS Comput. Biol.", "doi": "10.1371/journal.pcbi.1002043", "created_at": "2021-09-30T08:24:05.530Z", "updated_at": "2021-09-30T08:24:05.530Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1637", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:56.122Z", "metadata": {"doi": "10.25504/FAIRsharing.wv5q9d", "name": "ProtoNet", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "proto@cs.huji.ac.il"}], "homepage": "http://www.protonet.cs.huji.ac.il/", "identifier": 1637, "description": "This resource is a hierarchical clustering of UniProt protein sequences into hierarchical trees. This resource allows for the study of sub-family and super-family of a protein, using UniRef50 clusters.", "abbreviation": "ProtoNet", "support-links": [{"url": "http://www.protonet.cs.huji.ac.il/feedback.php", "type": "Contact form"}], "year-creation": 2002, "data-processes": [{"name": "yearly release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(CSV,txt,tab-delimited)", "type": "data access"}], "associated-tools": [{"url": "http://www.protonet.cs.huji.ac.il/tool_blast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000093", "bsg-d000093"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Peptide property", "Gene Ontology enrichment", "Enzyme", "Cross linking"], "taxonomies": ["All"], "user-defined-tags": ["Protein superfamily"], "countries": ["Israel"], "name": "FAIRsharing record for: ProtoNet", "abbreviation": "ProtoNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.wv5q9d", "doi": "10.25504/FAIRsharing.wv5q9d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource is a hierarchical clustering of UniProt protein sequences into hierarchical trees. This resource allows for the study of sub-family and super-family of a protein, using UniRef50 clusters.", "publications": [{"id": 131, "pubmed_id": 12520020, "title": "ProtoNet: hierarchical classification of the protein space.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg096", "authors": "Sasson O., Vaaknin A., Fleischer H., Portugaly E., Bilu Y., Linial N., Linial M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg096", "created_at": "2021-09-30T08:22:34.356Z", "updated_at": "2021-09-30T08:22:34.356Z"}, {"id": 1322, "pubmed_id": 23563419, "title": "ProtoNet: charting the expanding universe of protein sequences.", "year": 2013, "url": "http://doi.org/10.1038/nbt.2553", "authors": "Rappoport N,Linial N,Linial M", "journal": "Nat Biotechnol", "doi": "10.1038/nbt.2553", "created_at": "2021-09-30T08:24:47.874Z", "updated_at": "2021-09-30T08:24:47.874Z"}, {"id": 1456, "pubmed_id": 18689824, "title": "Connect the dots: exposing hidden protein family connections from the entire sequence tree.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn301", "authors": "Loewenstein Y., Linial M.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn301", "created_at": "2021-09-30T08:25:02.727Z", "updated_at": "2021-09-30T08:25:02.727Z"}, {"id": 1457, "pubmed_id": 18586742, "title": "Efficient algorithms for accurate hierarchical clustering of huge datasets: tackling the entire protein space.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn174", "authors": "Loewenstein Y., Portugaly E., Fromer M., Linial M.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn174", "created_at": "2021-09-30T08:25:02.835Z", "updated_at": "2021-09-30T08:25:02.835Z"}, {"id": 1936, "pubmed_id": 18629007, "title": "Fishing with (Proto)Net-a principled approach to protein target selection.", "year": 2008, "url": "http://doi.org/10.1002/cfg.328", "authors": "Linial M.,", "journal": "Comp. Funct. Genomics", "doi": "10.1002/cfg.328", "created_at": "2021-09-30T08:25:57.919Z", "updated_at": "2021-09-30T08:25:57.919Z"}, {"id": 2012, "pubmed_id": 16672244, "title": "Functional annotation prediction: all for one and one for all.", "year": 2006, "url": "http://doi.org/10.1110/ps.062185706", "authors": "Sasson O., Kaplan N., Linial M.,", "journal": "Protein Sci.", "doi": "10.1110/ps.062185706", "created_at": "2021-09-30T08:26:06.682Z", "updated_at": "2021-09-30T08:26:06.682Z"}, {"id": 2028, "pubmed_id": 15596019, "title": "A functional hierarchical organization of the protein sequence space.", "year": 2004, "url": "http://doi.org/10.1186/1471-2105-5-196", "authors": "Kaplan N., Friedlich M., Fromer M., Linial M.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-5-196", "created_at": "2021-09-30T08:26:08.382Z", "updated_at": "2021-09-30T08:26:08.382Z"}, {"id": 2030, "pubmed_id": 15382232, "title": "A robust method to detect structural and functional remote homologues.", "year": 2004, "url": "http://doi.org/10.1002/prot.20235", "authors": "Shachar O., Linial M.,", "journal": "Proteins", "doi": "10.1002/prot.20235", "created_at": "2021-09-30T08:26:08.606Z", "updated_at": "2021-09-30T08:26:08.606Z"}, {"id": 2031, "pubmed_id": 22121228, "title": "ProtoNet 6.0: organizing 10 million protein sequences in a compact hierarchical family tree.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1027", "authors": "Rappoport N,Karsenty S,Stern A,Linial N,Linial M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1027", "created_at": "2021-09-30T08:26:08.755Z", "updated_at": "2021-09-30T11:29:26.411Z"}, {"id": 2099, "pubmed_id": 15608180, "title": "ProtoNet 4.0: a hierarchical classification of one million protein sequences.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki007", "authors": "Kaplan N., Sasson O., Inbar U., Friedlich M., Fromer M., Fleischer H., Portugaly E., Linial N., Linial M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki007", "created_at": "2021-09-30T08:26:16.523Z", "updated_at": "2021-09-30T08:26:16.523Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2100", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:41.157Z", "metadata": {"doi": "10.25504/FAIRsharing.hmgte8", "name": "miRBase", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "mirbase@manchester.ac.uk"}], "homepage": "http://www.mirbase.org/", "citations": [{"doi": "10.1093/nar/gky1141", "pubmed-id": 30423142, "publication-id": 1614}], "identifier": 2100, "description": "The miRBase database is a searchable database of published miRNA sequences and annotation. Each entry in miRBase represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR). Both hairpin and mature sequences are available for searching and browsing, and entries can also be retrieved by name, keyword, references and annotation.", "abbreviation": "miRBase", "support-links": [{"url": "http://www.mirbase.org/help/", "name": "Help Pages", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "http://www.mirbase.org/ftp.shtml", "name": "Download Summary", "type": "data release"}, {"url": "ftp://mirbase.org/pub/mirbase/CURRENT/", "name": "Download", "type": "data release"}, {"url": "http://www.mirbase.org/cgi-bin/browse.pl", "name": "Browse", "type": "data access"}, {"url": "http://www.mirbase.org/search.shtml", "name": "Search", "type": "data access"}, {"url": "http://www.mirbase.org/registry.shtml", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010566", "name": "re3data:r3d100010566", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003152", "name": "SciCrunch:RRID:SCR_003152", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000569", "bsg-d000569"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["RNA sequence", "Ribonucleic acid", "Crowdsourcing", "Micro RNA", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: miRBase", "abbreviation": "miRBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.hmgte8", "doi": "10.25504/FAIRsharing.hmgte8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The miRBase database is a searchable database of published miRNA sequences and annotation. Each entry in miRBase represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR). Both hairpin and mature sequences are available for searching and browsing, and entries can also be retrieved by name, keyword, references and annotation.", "publications": [{"id": 555, "pubmed_id": 14681370, "title": "The microRNA Registry.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh023", "authors": "Griffiths-Jones S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh023", "created_at": "2021-09-30T08:23:20.601Z", "updated_at": "2021-09-30T08:23:20.601Z"}, {"id": 1614, "pubmed_id": 30423142, "title": "miRBase: from microRNA sequences to function.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1141", "authors": "Kozomara A,Birgaoanu M,Griffiths-Jones S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1141", "created_at": "2021-09-30T08:25:20.875Z", "updated_at": "2021-09-30T11:29:16.128Z"}, {"id": 1626, "pubmed_id": 24275495, "title": "miRBase: annotating high confidence microRNAs using deep sequencing data.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1181", "authors": "Kozomara A,Griffiths-Jones S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1181", "created_at": "2021-09-30T08:25:22.251Z", "updated_at": "2021-09-30T11:29:16.737Z"}, {"id": 1627, "pubmed_id": 21037258, "title": "miRBase: integrating microRNA annotation and deep-sequencing data.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1027", "authors": "Kozomara A,Griffiths-Jones S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1027", "created_at": "2021-09-30T08:25:22.352Z", "updated_at": "2021-09-30T11:29:16.844Z"}, {"id": 1628, "pubmed_id": 17991681, "title": "miRBase: tools for microRNA genomics.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm952", "authors": "Griffiths-Jones S,Saini HK,van Dongen S,Enright AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm952", "created_at": "2021-09-30T08:25:22.450Z", "updated_at": "2021-09-30T11:29:16.944Z"}, {"id": 1629, "pubmed_id": 16381832, "title": "miRBase: microRNA sequences, targets and gene nomenclature.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj112", "authors": "Griffiths-Jones S,Grocock RJ,van Dongen S,Bateman A,Enright AJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj112", "created_at": "2021-09-30T08:25:22.550Z", "updated_at": "2021-09-30T11:29:17.035Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1644", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:03.007Z", "metadata": {"doi": "10.25504/FAIRsharing.pzvw40", "name": "Saccharomyces Genome Database", "status": "ready", "contacts": [{"contact-name": "Helpdesk", "contact-email": "sgd-helpdesk@lists.stanford.edu"}], "homepage": "http://www.yeastgenome.org/", "identifier": 1644, "description": "The Saccharomyces Genome Database (SGD) provides comprehensive integrated biological information for the budding yeast Saccharomyces cerevisiae along with search and analysis tools to explore these data, enabling the discovery of functional relationships between sequence and gene products in fungi and higher organisms.", "abbreviation": "SGD", "support-links": [{"url": "http://www.yeastgenome.org/blog", "type": "Blog/News"}, {"url": "http://www.yeastgenome.org/help", "type": "Help documentation"}, {"url": "http://www.yeastgenome.org/about/technical-specifications", "type": "Help documentation"}, {"url": "http://www.yeastgenome.org/help/video-tutorials/yeastmine", "type": "Training documentation"}, {"url": "https://twitter.com/yeastgenome", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Saccharomyces_Genome_Database", "type": "Wikipedia"}], "year-creation": 1993, "data-processes": [{"url": "http://www.yeastgenome.org/download-data", "name": "Download", "type": "data access"}, {"name": "daily release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "no versioning policy", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(txt,tab-delimited)", "type": "data access"}], "associated-tools": [{"url": "https://www.intermine.org", "name": "InterMine"}, {"url": "http://www.yeastgenome.org/cgi-bin/seqTools", "name": "search"}, {"url": "http://www.yeastgenome.org/cgi-bin/blast-sgd.pl", "name": "BLAST"}, {"url": "http://yeastmine.yeastgenome.org/yeastmine/begin.do", "name": "analyze"}, {"url": "http://www.yeastgenome.org/cgi-bin/registry/geneRegistry", "name": "submit"}, {"url": "http://www.yeastgenome.org/cache/PhenotypeTree.html", "name": "browse"}, {"url": "http://www.yeastgenome.org/help/sequence/synteny-viewer", "name": "visualize"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010419", "name": "re3data:r3d100010419", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004694", "name": "SciCrunch:RRID:SCR_004694", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000100", "bsg-d000100"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenetics", "Proteomics", "Life Science", "Transcriptomics"], "domains": ["Citation", "Protein domain", "Gene name", "Expression data", "Free text", "Gene Ontology enrichment", "Nucleotide", "Gene model annotation", "Centromere", "Chromatin remodeling", "Image", "Molecular interaction", "Plasmid", "Phenotype", "Transposable element", "Sequence feature", "Pseudogene", "Autonomously replicating sequence", "Orthologous", "Genome", "Reference genome", "Gene array", "Systematic name", "Genetic strain"], "taxonomies": ["Saccharomyces", "Saccharomyces cerevisiae"], "user-defined-tags": ["Chromosomal element nomenclature", "Literature annotations defined by experimental results", "Synthetic genetic array"], "countries": ["United States"], "name": "FAIRsharing record for: Saccharomyces Genome Database", "abbreviation": "SGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.pzvw40", "doi": "10.25504/FAIRsharing.pzvw40", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Saccharomyces Genome Database (SGD) provides comprehensive integrated biological information for the budding yeast Saccharomyces cerevisiae along with search and analysis tools to explore these data, enabling the discovery of functional relationships between sequence and gene products in fungi and higher organisms.", "publications": [{"id": 129, "pubmed_id": 25052702, "title": "Standardized description of scientific evidence using the Evidence Ontology (ECO).", "year": 2014, "url": "http://doi.org/10.1093/database/bau075", "authors": "Chibucos MC., Mungall CJ., Balakrishnan R., Christie KR., Huntley RP., White O., Blake JA., Lewis SE., Giglio M.", "journal": "Database (Oxford).", "doi": "10.1093/database/bau075", "created_at": "2021-09-30T08:22:34.156Z", "updated_at": "2021-09-30T08:22:34.156Z"}, {"id": 177, "pubmed_id": 23842463, "title": "A guide to best practices for Gene Ontology (GO) manual annotation.", "year": 2013, "url": "http://doi.org/10.1093/database/bat054", "authors": "Balakrishnan R., Harris MA., Huntley R., Van Auken K., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/bat054", "created_at": "2021-09-30T08:22:39.389Z", "updated_at": "2021-09-30T08:22:39.389Z"}, {"id": 244, "pubmed_id": 22434836, "title": "CvManGO, a method for leveraging computational predictions to improve literature-based Gene Ontology annotations.", "year": 2012, "url": "http://doi.org/10.1093/database/bas001", "authors": "Park J., Costanzo MC., Balakrishnan R., Cherry JM., Hong EL.", "journal": "Database (Oxford).", "doi": "10.1093/database/bas001", "created_at": "2021-09-30T08:22:46.406Z", "updated_at": "2021-09-30T08:22:46.406Z"}, {"id": 307, "pubmed_id": 22110037, "title": "Saccharomyces Genome Database: the genomics resource of budding yeast.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1029", "authors": "Cherry JM., Hong EL., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1029", "created_at": "2021-09-30T08:22:53.024Z", "updated_at": "2021-09-30T08:22:53.024Z"}, {"id": 397, "pubmed_id": null, "title": "Using Model Organism Databases (MODs).", "year": 2009, "url": "http://doi.org/10.1002/9780470089941.et1104s01", "authors": "Engel SR.", "journal": "Current Protocols Essential Laboratory Techniques", "doi": "10.1002/9780470089941.et1104s01", "created_at": "2021-09-30T08:23:03.150Z", "updated_at": "2021-09-30T08:23:03.150Z"}, {"id": 428, "pubmed_id": 20157474, "title": "New mutant phenotype data curation system in the Saccharomyces Genome Database.", "year": 2010, "url": "http://doi.org/10.1093/database/bap001", "authors": "Costanzo MC., Skrzypek MS., Nash R., Wong E., Binkley G, Engel SR., Hitz B., Hong EL., Cherry JM., and the Saccharomyces Genome Database Project.", "journal": "Database (Oxford).", "doi": "10.1093/database/bap001", "created_at": "2021-09-30T08:23:06.552Z", "updated_at": "2021-09-30T08:23:06.552Z"}, {"id": 547, "pubmed_id": 17142221, "title": "Expanded protein information at SGD: new pages and proteome browser.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl931", "authors": "Nash R., Weng S., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl931", "created_at": "2021-09-30T08:23:19.685Z", "updated_at": "2021-09-30T08:23:19.685Z"}, {"id": 584, "pubmed_id": 17001629, "title": "Saccharomyces cerevisiae S288C genome annotation: a working hypothesis.", "year": 2006, "url": "http://doi.org/10.1002/yea.1400", "authors": "Fisk DG., Ball CA., Dolinski K., Engel SR., Hong EL., Issel-Tarver L., Schwartz K., Sethuraman A., Botstein D., Cherry JM.", "journal": "Yeast.", "doi": "10.1002/yea.1400", "created_at": "2021-09-30T08:23:23.993Z", "updated_at": "2021-09-30T08:23:23.993Z"}, {"id": 690, "pubmed_id": 16381907, "title": "Genome Snapshot: a new resource at the Saccharomyces Genome Database (SGD) presenting an overview of the Saccharomyces cerevisiae genome.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj117", "authors": "Hirschman JE., Balakrishnan R., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj117", "created_at": "2021-09-30T08:23:36.052Z", "updated_at": "2021-09-30T08:23:36.052Z"}, {"id": 755, "pubmed_id": 15153302, "title": "Saccharomyces genome database: underlying principles and organisation.", "year": 2004, "url": "http://doi.org/10.1093/bib/5.1.9", "authors": "Dwight SS., Balakrishnan R., et al.,", "journal": "Brief Bioinform.", "doi": "10.1093/bib/5.1.9", "created_at": "2021-09-30T08:23:43.127Z", "updated_at": "2021-09-30T08:23:43.127Z"}, {"id": 942, "pubmed_id": 24265222, "title": "Saccharomyces Genome Database provides new regulation data.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1158", "authors": "Costanzo MC., Engel SR., Wong ED., Lloyd P., Karra K., Chan ET., Weng S., Paskov KM., Roe GR., Binkley G., Hitz BC., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1158", "created_at": "2021-09-30T08:24:04.237Z", "updated_at": "2021-09-30T08:24:04.237Z"}, {"id": 943, "pubmed_id": 24374639, "title": "The reference genome sequence of Saccharomyces cerevisiae: then and now.", "year": 2014, "url": "http://doi.org/10.1534/g3.113.008995", "authors": "Engel SR., Dietrich FS., Fisk DG., Binkley G., Balakrishnan R., Costanzo MC., Dwight SS., Hitz BC., Karra K., Nash RS., Weng S., Wong ED., Lloyd P., Skrzypek MS., Miyasato SR., Simison M., Cherry JM.", "journal": "G3 (Bethesda).", "doi": "10.1534/g3.113.008995", "created_at": "2021-09-30T08:24:04.356Z", "updated_at": "2021-09-30T08:24:04.356Z"}, {"id": 948, "pubmed_id": 23487186, "title": "The new modern era of yeast genomics: community sequencing and the resulting annotation of multiple Saccharomyces cerevisiae strains at the Saccharomyces Genome Database.", "year": 2013, "url": "http://doi.org/10.1093/database/bat012", "authors": "Engel SR., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/bat012", "created_at": "2021-09-30T08:24:04.879Z", "updated_at": "2021-09-30T08:24:04.879Z"}, {"id": 949, "pubmed_id": 23396302, "title": "The YeastGenome app: the Saccharomyces Genome Database at your fingertips.", "year": 2013, "url": "http://doi.org/10.1093/database/bat004", "authors": "Wong ED., Karra K., Hitz BC., Hong EL., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/bat004", "created_at": "2021-09-30T08:24:05.029Z", "updated_at": "2021-09-30T08:24:05.029Z"}, {"id": 963, "pubmed_id": 22434830, "title": "YeastMine - An integrated data warehouse for S. cerevisiae data as a multi-purpose tool-kit.", "year": 2012, "url": "http://doi.org/10.1093/database/bar062", "authors": "Balakrishnan R., Park J., Karra K., Hitz BC., Binkley G., Hong EL., Sullivan J., Micklem G., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/bar062", "created_at": "2021-09-30T08:24:06.580Z", "updated_at": "2021-09-30T08:24:06.580Z"}, {"id": 967, "pubmed_id": 22434826, "title": "Considerations for creating and annotating the budding yeast Genome Map at SGD: a progress report.", "year": 2012, "url": "http://doi.org/10.1093/database/bar057", "authors": "Chan ET., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/bar057", "created_at": "2021-09-30T08:24:06.994Z", "updated_at": "2021-09-30T08:24:06.994Z"}, {"id": 995, "pubmed_id": 21411447, "title": "Using computational predictions to improve literature-based Gene Ontology annotations: a feasibility study.", "year": 2011, "url": "http://doi.org/10.1093/database/bar004", "authors": "Costanzo MC., Park J., Balakrishnan R., Cherry JM., Hong EL.", "journal": "Database (Oxford).", "doi": "10.1093/database/bar004", "created_at": "2021-09-30T08:24:10.138Z", "updated_at": "2021-09-30T08:24:10.138Z"}, {"id": 1000, "pubmed_id": 19906697, "title": "Saccharomyces Genome Database provides mutant phenotype data.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp917", "authors": "Engel SR., Balakrishnan R., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp917", "created_at": "2021-09-30T08:24:10.690Z", "updated_at": "2021-09-30T08:24:10.690Z"}, {"id": 1004, "pubmed_id": 19577472, "title": "Functional annotations for the Saccharomyces cerevisiae genome: the knowns and the known unknowns.", "year": 2009, "url": "http://doi.org/10.1016/j.tim.2009.04.005", "authors": "Christie KR., Hong EL., Cherry JM.", "journal": "Trends Microbiol.", "doi": "10.1016/j.tim.2009.04.005", "created_at": "2021-09-30T08:24:11.105Z", "updated_at": "2021-09-30T08:24:11.105Z"}, {"id": 1012, "pubmed_id": 17982175, "title": "Gene Ontology annotations at SGD: new data sources and annotation methods.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm909", "authors": "Hong EL., Balakrishnan R., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm909", "created_at": "2021-09-30T08:24:12.055Z", "updated_at": "2021-09-30T08:24:12.055Z"}, {"id": 1013, "pubmed_id": 15608219, "title": "Fungal BLAST and Model Organism BLASTP Best Hits: new comparison resources at the Saccharomyces Genome Database (SGD).", "year": 2004, "url": "http://doi.org/10.1093/nar/gki023", "authors": "Balakrishnan R., Christie KR., Costanzo MC., Dolinski K., Dwight SS., Engel SR., Fisk DG., Hirschman JE., Hong EL., Nash R., Oughtred R., Skrzypek M., Theesfeld CL., Binkley G., Dong Q., Lane C., Sethuraman A., Weng S., Botstein D., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki023", "created_at": "2021-09-30T08:24:12.163Z", "updated_at": "2021-09-30T08:24:12.163Z"}, {"id": 1019, "pubmed_id": 14681421, "title": "Saccharomyces Genome Database (SGD) provides tools to identify and analyze sequences from Saccharomyces cerevisiae and related sequences from other organisms.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh033", "authors": "Christie KR., Weng S., et al.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh033", "created_at": "2021-09-30T08:24:12.857Z", "updated_at": "2021-09-30T08:24:12.857Z"}, {"id": 1041, "pubmed_id": 26989152, "title": "From one to many: expanding the Saccharomyces cerevisiae reference genome panel.", "year": 2016, "url": "http://doi.org/10.1093/database/baw020", "authors": "Engel SR., Weng S., Binkley G., Paskov K., Song G., Cherry JM.", "journal": "Database (Oxford).", "doi": "10.1093/database/baw020", "created_at": "2021-09-30T08:24:15.256Z", "updated_at": "2021-09-30T08:24:15.256Z"}, {"id": 1043, "pubmed_id": 12519985, "title": "Saccharomyces Genome Database (SGD) provides biochemical and structural information for budding yeast proteins.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg054", "authors": "Weng S., Dong Q., Balakrishnan R., Christie K., Costanzo M., Dolinski K., Dwight SS., Engel S., Fisk DG., Hong E., Issel-Tarver L., Sethuraman A., Theesfeld C., Andrada R., Binkley G., Lane C., Schroeder M., Botstein D., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg054", "created_at": "2021-09-30T08:24:15.481Z", "updated_at": "2021-09-30T08:24:15.481Z"}, {"id": 1044, "pubmed_id": 12073322, "title": "Saccharomyces Genome Database", "year": 2002, "url": "http://doi.org/10.1016/s0076-6879(02)50972-1", "authors": "Issel-Tarver L., Christie KR., Dolinski K., Andrada R., Balakrishnan R., Ball CA., Binkley G., Dong S., Dwight SS., Fisk DG., Harris M., Schroeder M., Sethuraman A., Tse K., Weng S., Botstein D., Cherry JM.", "journal": "Methods Enzymol.", "doi": "10.1016/s0076-6879(02)50972-1", "created_at": "2021-09-30T08:24:15.589Z", "updated_at": "2021-09-30T08:24:15.589Z"}, {"id": 1049, "pubmed_id": 26631132, "title": "The Saccharomyces Genome Database: A Tool for Discovery.", "year": 2015, "url": "http://doi.org/10.1101/pdb.top083840", "authors": "Cherry JM.", "journal": "Cold Spring Harb Protoc.", "doi": "10.1101/pdb.top083840", "created_at": "2021-09-30T08:24:16.157Z", "updated_at": "2021-09-30T08:24:16.157Z"}, {"id": 1075, "pubmed_id": 11752257, "title": "Saccharomyces Genome Database (SGD) provides secondary gene annotation using the Gene Ontology (GO).", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.69", "authors": "Dwight SS., Harris MA., Dolinski K., Ball CA., Binkley G., Christie KR., Fisk DG., Issel-Tarver L., Schroeder M., Sherlock G., Sethuraman A., Weng S., Botstein D., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.69", "created_at": "2021-09-30T08:24:19.039Z", "updated_at": "2021-09-30T08:24:19.039Z"}, {"id": 1077, "pubmed_id": 26578556, "title": "The Saccharomyces Genome Database Variant Viewer.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1250", "authors": "Sheppard TK., Hitz BC., Engel SR., Song G., Balakrishnan R., Binkley G., Costanzo MC., Dalusag KS., Demeter J., Hellerstedt ST., Karra K., Nash RS., Paskov KM., Skrzypek MS., Weng S., Wong ED., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkv1250", "created_at": "2021-09-30T08:24:19.269Z", "updated_at": "2021-09-30T08:24:19.269Z"}, {"id": 1078, "pubmed_id": 26631126, "title": "The Saccharomyces Genome Database: Exploring Genome Features and Their Annotations.", "year": 2015, "url": "http://doi.org/10.1101/pdb.prot088922", "authors": "Cherry JM.", "journal": "Cold Spring Harb Protoc.", "doi": "10.1101/pdb.prot088922", "created_at": "2021-09-30T08:24:19.374Z", "updated_at": "2021-09-30T08:24:19.374Z"}, {"id": 1079, "pubmed_id": 9169866, "title": "Genetic and physical maps of Saccharomyces cerevisiae.", "year": 1997, "url": "https://www.ncbi.nlm.nih.gov/pubmed/9169866", "authors": "Cherry JM., Ball C., Weng S., Juvik G., Schmidt R., Adler C., Dunn B., Dwight S., Riles L., Mortimer RK., Botstein D.", "journal": "Nature", "doi": null, "created_at": "2021-09-30T08:24:19.521Z", "updated_at": "2021-09-30T11:28:40.876Z"}, {"id": 1100, "pubmed_id": 9885151, "title": "Expanding yeast knowledge online.", "year": 1999, "url": "http://doi.org/10.1002/(SICI)1097-0061(199812)14:16<1453::AID-YEA348>3.0.CO;2-G", "authors": "Dolinski K., Ball CA., Chervitz SA., Dwight SS., Harris MA., Roberts S., Roe T., Cherry JM., Botstein D.", "journal": "Yeast.", "doi": "10.1002/(SICI)1097-0061(199812)14:16<1453::AID-YEA348>3.0.CO;2-G", "created_at": "2021-09-30T08:24:21.782Z", "updated_at": "2021-09-30T08:24:21.782Z"}, {"id": 1338, "pubmed_id": 26631123, "title": "The Saccharomyces Genome Database: Exploring Biochemical Pathways and Mutant Phenotypes.", "year": 2015, "url": "http://doi.org/10.1101/pdb.prot088898", "authors": "Cherry JM.", "journal": "Cold Spring Harb Protoc.", "doi": "10.1101/pdb.prot088898", "created_at": "2021-09-30T08:24:49.735Z", "updated_at": "2021-09-30T08:24:49.735Z"}, {"id": 1341, "pubmed_id": 25997651, "title": "Biocuration at the Saccharomyces Genome Database.", "year": 2015, "url": "http://doi.org/10.1002/dvg.22862", "authors": "Skrzypek MS., Nash RS.", "journal": "Genesis.", "doi": "10.1002/dvg.22862", "created_at": "2021-09-30T08:24:50.060Z", "updated_at": "2021-09-30T08:24:50.060Z"}, {"id": 1344, "pubmed_id": 25781462, "title": "AGAPE (Automated Genome Analysis PipelinE) for Pan-Genome Analysis of Saccharomyces cerevisiae.", "year": 2015, "url": "http://doi.org/10.1371/journal.pone.0120671", "authors": "Song G., Dickins BJ., Demeter J., Engel S., Dunn B., Cherry JM.", "journal": "PLoS One.", "doi": "10.1371/journal.pone.0120671", "created_at": "2021-09-30T08:24:50.381Z", "updated_at": "2021-09-30T08:24:50.381Z"}, {"id": 1345, "pubmed_id": 25313161, "title": "The complex portal - an encyclopaedia of macromolecular complexes.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku975", "authors": "Meldal BH., Forner-Martinez O., Costanzo MC., Dana J., Demeter J., Dumousseau M., Dwight SS., Gaulton A., Licata L., Melidoni AN., Ricard-Blum S., Roechert B., Skyzypek MS., Tiwari M., Velankar S., Wong ED., Hermjakob H., Orchard S.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku975", "created_at": "2021-09-30T08:24:50.535Z", "updated_at": "2021-09-30T08:24:50.535Z"}, {"id": 1432, "pubmed_id": 26631125, "title": "The Saccharomyces Genome Database: Gene Product Annotation of Function, Process, and Component.", "year": 2015, "url": "http://doi.org/10.1101/pdb.prot088914", "authors": "Cherry JM.", "journal": "Cold Spring Harb Protoc.", "doi": "10.1101/pdb.prot088914", "created_at": "2021-09-30T08:25:00.124Z", "updated_at": "2021-09-30T08:25:00.124Z"}, {"id": 1445, "pubmed_id": 26631124, "title": "The Saccharomyces Genome Database: Advanced Searching Methods and Data Mining.", "year": 2015, "url": "http://doi.org/10.1101/pdb.prot088906", "authors": "Cherry JM.", "journal": "Cold Spring Harb Protoc.", "doi": "10.1101/pdb.prot088906", "created_at": "2021-09-30T08:25:01.552Z", "updated_at": "2021-09-30T08:25:01.552Z"}, {"id": 1475, "pubmed_id": 11125055, "title": "Saccharomyces Genome Database provides tools to survey gene expression and functional analysis data.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.80", "authors": "Ball CA., Jin H., Sherlock G., Weng S., Matese JC., Andrada R., Binkley G., Dolinski K., Dwight SS., Harris MA., Issel-Tarver L., Schroeder M., Botstein D., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.80", "created_at": "2021-09-30T08:25:05.083Z", "updated_at": "2021-09-30T08:25:05.083Z"}, {"id": 1480, "pubmed_id": 9399804, "title": "SGD: Saccharomyces Genome Database.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.73", "authors": "Cherry JM., Adler C., Ball C., Chervitz SA., Dwight SS., Hester ET., Jia Y., Juvik G., Roe T., Schroeder M., Weng S., Botstein D.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/26.1.73", "created_at": "2021-09-30T08:25:05.720Z", "updated_at": "2021-09-30T08:25:05.720Z"}, {"id": 2095, "pubmed_id": 9847146, "title": "Using the Saccharomyces Genome Database (SGD) for analysis of protein similarities and structure.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.74", "authors": "Chervitz SA., Hester ET., Ball CA., Dolinski K., Dwight SS., Harris MA., Juvik G., Malekian A., Roberts S., Roe T., Scafe C., Schroeder M., Sherlock G., Weng S., Zhu Y., Cherry JM., Botstein D.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/27.1.74", "created_at": "2021-09-30T08:26:16.090Z", "updated_at": "2021-09-30T08:26:16.090Z"}, {"id": 2104, "pubmed_id": 9851918, "title": "Comparison of the complete protein sets of worm and yeast: orthology and divergence.", "year": 1998, "url": "http://doi.org/10.1126/science.282.5396.2022", "authors": "Chervitz SA., Aravind L., Sherlock G., Ball CA., Koonin EV., Dwight SS., Harris MA., Dolinski K., Mohr S., Smith T., Weng S., Cherry JM., Botstein D.", "journal": "Science.", "doi": "10.1126/science.282.5396.2022", "created_at": "2021-09-30T08:26:17.157Z", "updated_at": "2021-09-30T08:26:17.157Z"}, {"id": 2110, "pubmed_id": 9297238, "title": "Yeast as a model organism.", "year": 1997, "url": "http://doi.org/10.1126/science.277.5330.1259", "authors": "Botstein D., Chervitz SA., Cherry JM.", "journal": "Science.", "doi": "10.1126/science.277.5330.1259", "created_at": "2021-09-30T08:26:17.886Z", "updated_at": "2021-09-30T08:26:17.886Z"}, {"id": 2117, "pubmed_id": 10592186, "title": "Integrating functional genomic information into the Saccharomyces genome database.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.77", "authors": "Ball CA., Dolinski K., Dwight SS., Harris MA., Issel-Tarver L., Kasarskis A., Scafe CR., Sherlock G., Binkley G., Jin H., Kaloper M., Orr SD., Schroeder M., Weng S., Zhu Y., Botstein D., Cherry JM.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.77", "created_at": "2021-09-30T08:26:18.681Z", "updated_at": "2021-09-30T08:26:18.681Z"}, {"id": 2119, "pubmed_id": 9159100, "title": "Molecular linguistics: extracting information from gene and protein sequences.", "year": 1997, "url": "http://doi.org/10.1073/pnas.94.11.5506", "authors": "Botstein D., Cherry JM.", "journal": "Proc Natl Acad Sci U S A.", "doi": "10.1073/pnas.94.11.5506", "created_at": "2021-09-30T08:26:18.891Z", "updated_at": "2021-09-30T08:26:18.891Z"}, {"id": 2121, "pubmed_id": 7660459, "title": "Genetic nomenclature guide. Saccharomyces cerevisiae.", "year": 1995, "url": "https://www.ncbi.nlm.nih.gov/pubmed/7660459", "authors": "Cherry JM.", "journal": "Trends Genet.", "doi": null, "created_at": "2021-09-30T08:26:19.124Z", "updated_at": "2021-09-30T08:26:19.124Z"}], "licence-links": [{"licence-name": "Stanford University Terms of Use", "licence-id": 758, "link-id": 2332, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2333, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1957", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:15.868Z", "metadata": {"doi": "10.25504/FAIRsharing.wjzty", "name": "Structural Classification Of Proteins", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "scop@mrc-lmb.cam.ac.uk"}], "homepage": "http://scop.mrc-lmb.cam.ac.uk/scop", "identifier": 1957, "description": "The SCOP database is a curated both manually and with the use of automated tools. This freely available resource aims to provide a comprehensive description of the structural and evolutionary relationships between all proteins whose structure is known.", "abbreviation": "SCOP", "support-links": [{"url": "http://scop.mrc-lmb.cam.ac.uk/scop/help.html", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/scop", "name": "Scop", "type": "TeSS links to training materials"}], "year-creation": 1994, "data-processes": [{"url": "http://scop.mrc-lmb.cam.ac.uk/scop/parse/index.html", "name": "Download", "type": "data access"}, {"url": "http://scop.mrc-lmb.cam.ac.uk/scop/data/scop.b.html", "name": "browse", "type": "data access"}, {"url": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000423", "bsg-d000423"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Structure", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Structural Classification Of Proteins", "abbreviation": "SCOP", "url": "https://fairsharing.org/10.25504/FAIRsharing.wjzty", "doi": "10.25504/FAIRsharing.wjzty", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SCOP database is a curated both manually and with the use of automated tools. This freely available resource aims to provide a comprehensive description of the structural and evolutionary relationships between all proteins whose structure is known.", "publications": [{"id": 436, "pubmed_id": 9016544, "title": "SCOP: a structural classification of proteins database.", "year": 1997, "url": "http://doi.org/10.1093/nar/25.1.236", "authors": "Hubbard TJ., Murzin AG., Brenner SE., Chothia C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/25.1.236", "created_at": "2021-09-30T08:23:07.383Z", "updated_at": "2021-09-30T08:23:07.383Z"}, {"id": 440, "pubmed_id": 9847194, "title": "SCOP: a Structural Classification of Proteins database.", "year": 1998, "url": "http://doi.org/10.1093/nar/27.1.254", "authors": "Hubbard TJ., Ailey B., Brenner SE., Murzin AG., Chothia C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/27.1.254", "created_at": "2021-09-30T08:23:07.783Z", "updated_at": "2021-09-30T08:23:07.783Z"}, {"id": 452, "pubmed_id": 10089491, "title": "SCOP, Structural Classification of Proteins database: applications to evaluation of the effectiveness of sequence alignment methods and statistics of protein structural data.", "year": 1999, "url": "http://doi.org/10.1107/s0907444998009172", "authors": "Hubbard TJ., Ailey B., Brenner SE., Murzin AG., Chothia C.,", "journal": "Acta Crystallogr. D Biol. Crystallogr.", "doi": "10.1107/s0907444998009172", "created_at": "2021-09-30T08:23:09.067Z", "updated_at": "2021-09-30T08:23:09.067Z"}, {"id": 1622, "pubmed_id": 10592240, "title": "SCOP: a structural classification of proteins database.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.257", "authors": "Lo Conte L., Ailey B., Hubbard TJ., Brenner SE., Murzin AG., Chothia C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.257", "created_at": "2021-09-30T08:25:21.769Z", "updated_at": "2021-09-30T08:25:21.769Z"}], "licence-links": [{"licence-name": "SCOP Attribution required", "licence-id": 738, "link-id": 2093, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1654", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:33.385Z", "metadata": {"doi": "10.25504/FAIRsharing.990a1b", "name": "Autism Knowledgebase", "status": "deprecated", "contacts": [{"contact-name": "Liping Wei", "contact-email": "weilp@mail.cbi.pku.edu.cn"}], "homepage": "http://autismkb.cbi.pku.edu.cn/", "identifier": 1654, "description": "Autism genetics KnowledgeBase, an evidence-based knowledgebase of autism genetics.", "abbreviation": "Autism KB", "support-links": [{"url": "http://autismkb.cbi.pku.edu.cn/contact.php", "type": "Contact form"}, {"url": "AutismKB@mail.cbi.pku.ed.cn", "type": "Support email"}, {"url": "http://autismkb.cbi.pku.edu.cn/document.php", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historic data available", "type": "data versioning"}, {"url": "http://autismkb.cbi.pku.edu.cn/search.php", "name": "search", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://autismkb.cbi.pku.edu.cn/download.php", "name": "Data Download", "type": "data access"}, {"url": "http://autismkb.cbi.pku.edu.cn/dataset.php", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://autismkb.cbi.pku.edu.cn/rank.php", "name": "Ranking Tool"}, {"url": "http://autismkb.cbi.pku.edu.cn/blast.php", "name": "Blast"}], "deprecation-date": "2021-9-27", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000110", "bsg-d000110"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Autistic disorder", "Genetic polymorphism", "Disease", "Gene", "Copy number variation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Autism Knowledgebase", "abbreviation": "Autism KB", "url": "https://fairsharing.org/10.25504/FAIRsharing.990a1b", "doi": "10.25504/FAIRsharing.990a1b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Autism genetics KnowledgeBase, an evidence-based knowledgebase of autism genetics.", "publications": [{"id": 167, "pubmed_id": 22139918, "title": "AutismKB: an evidence-based knowledgebase of autism genetics.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1145", "authors": "Xu LM., Li JR., Huang Y., Zhao M., Tang X., Wei L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1145", "created_at": "2021-09-30T08:22:38.355Z", "updated_at": "2021-09-30T08:22:38.355Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1664", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.459Z", "metadata": {"doi": "10.25504/FAIRsharing.a4ybgg", "name": "Indel Flanking Region Database", "status": "deprecated", "contacts": [{"contact-name": "Bin Gong", "contact-email": "gb@sdu.edu.cn"}], "homepage": "http://indel.bioinfo.sdu.edu.cn", "identifier": 1664, "description": "Indel Flanking Region Database is an online resource for indels (insertion/deletions) and the flanking regions of proteins in SCOP superfamilies. It aims at providing a comprehensive dataset for analyzing the qualities of amino acid indels, substitutions and the relationship between them.", "abbreviation": "IndelFR", "support-links": [{"url": "http://indel.bioinfo.sdu.edu.cn/gridsphere/gridsphere?cid=contact", "type": "Contact form"}, {"url": "http://indel.bioinfo.sdu.edu.cn/gridsphere/gridsphere?cid=help", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"name": "yearly release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://indel.bioinfo.sdu.edu.cn/gridsphere/gridsphere?cid=match", "name": "database match search", "type": "data access"}, {"url": "http://indel.bioinfo.sdu.edu.cn/gridsphere/gridsphere?cid=download", "name": "file download", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://indel.bioinfo.sdu.edu.cn/gridsphere/gridsphere?cid=gap", "name": "database indel search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000120", "bsg-d000120"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Structure", "Hydrophobicity", "Hydrophilicity", "Amino acid sequence", "Indel"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Indel Flanking Region Database", "abbreviation": "IndelFR", "url": "https://fairsharing.org/10.25504/FAIRsharing.a4ybgg", "doi": "10.25504/FAIRsharing.a4ybgg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Indel Flanking Region Database is an online resource for indels (insertion/deletions) and the flanking regions of proteins in SCOP superfamilies. It aims at providing a comprehensive dataset for analyzing the qualities of amino acid indels, substitutions and the relationship between them.", "publications": [{"id": 464, "pubmed_id": 20671041, "title": "Impact of indels on the flanking regions in structural domains.", "year": 2010, "url": "http://doi.org/10.1093/molbev/msq196", "authors": "Zhang Z., Huang J., Wang Z., Wang L., Gao P.,", "journal": "Mol. Biol. Evol.", "doi": "10.1093/molbev/msq196", "created_at": "2021-09-30T08:23:10.450Z", "updated_at": "2021-09-30T08:23:10.450Z"}, {"id": 758, "pubmed_id": 22127860, "title": "IndelFR: a database of indels in protein structures and their flanking regions.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1107", "authors": "Zhang Z,Xing C,Wang L,Gong B,Liu H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1107", "created_at": "2021-09-30T08:23:43.501Z", "updated_at": "2021-09-30T11:28:50.175Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1668", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.635Z", "metadata": {"doi": "10.25504/FAIRsharing.26pqv5", "name": "MitoZoa", "status": "ready", "contacts": [{"contact-name": "Carmela Gissi", "contact-email": "carmela.gissi@unimi.it", "contact-orcid": "0000-0002-2269-079X"}], "homepage": "http://srv00.recas.ba.infn.it/mitozoa/", "identifier": 1668, "description": "MitoZoa is a specialized database collecting complete and nearly-complete (longer than 7 kb) mtDNA entries of metazoan species, excluding Placozoa. MitoZoa contains curated entries, whose gene annotation has been significantly improved using a semi-automatic reannotation pipeline and by manual curation of mitogenomics experts. MitoZoa has been specifically designed to address comparative analyses of mitochondrial genomic features in a given metazoan group or in species belonging to the same genus (congeneric species). MitoZoa focuses on mitochondrial gene order, non-coding regions, gene content, and gene sequences.", "abbreviation": "MitoZoa", "support-links": [{"url": "http://srv00.recas.ba.infn.it/mitozoa/help.htm", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"name": "quaterly release (depending on the number of complete mtDNA sequences newly submitted to EMBL)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historic data available", "type": "data versioning"}, {"url": "http://srv00.recas.ba.infn.it/mitozoa/ftp_download.php", "name": "download", "type": "data access"}, {"url": "http://srv00.recas.ba.infn.it/mitozoa/search.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://srv00.recas.ba.infn.it/mitozoa/blast.php", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000124", "bsg-d000124"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Citation", "Gene functional annotation", "Mitochondrion", "Curated information", "Mitochondrial genome", "Transfer RNA", "Coding sequence"], "taxonomies": ["Metazoa", "Placozoa"], "user-defined-tags": ["Mitochondrial gene annotation correction", "Mitochondrial gene nomenclature", "Mitochondrial gene order", "Mitochondrial introns", "Mitochondrial non-coding region (NCR) sequences", "Mitochondrial pseudogenes", "Mitochondrial tRNA"], "countries": ["Italy"], "name": "FAIRsharing record for: MitoZoa", "abbreviation": "MitoZoa", "url": "https://fairsharing.org/10.25504/FAIRsharing.26pqv5", "doi": "10.25504/FAIRsharing.26pqv5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MitoZoa is a specialized database collecting complete and nearly-complete (longer than 7 kb) mtDNA entries of metazoan species, excluding Placozoa. MitoZoa contains curated entries, whose gene annotation has been significantly improved using a semi-automatic reannotation pipeline and by manual curation of mitogenomics experts. MitoZoa has been specifically designed to address comparative analyses of mitochondrial genomic features in a given metazoan group or in species belonging to the same genus (congeneric species). MitoZoa focuses on mitochondrial gene order, non-coding regions, gene content, and gene sequences.", "publications": [{"id": 159, "pubmed_id": 20080208, "title": "MitoZoa: a curated mitochondrial genome database of metazoans for comparative genomics studies.", "year": 2010, "url": "http://doi.org/10.1016/j.mito.2010.01.004", "authors": "Lupi R., de Meo PD., Picardi E., D'Antonio M., Paoletti D., Castrignan\u00f2 T., Pesole G., Gissi C.,", "journal": "Mitochondrion", "doi": "10.1016/j.mito.2010.01.004", "created_at": "2021-09-30T08:22:37.531Z", "updated_at": "2021-09-30T08:22:37.531Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1672", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:58.833Z", "metadata": {"doi": "10.25504/FAIRsharing.5mr9c5", "name": "SitEx database of eukaryotic protein functional sites", "status": "deprecated", "contacts": [{"contact-name": "Irina Medvedeva", "contact-email": "brukaro@bionet.nsc.ru"}], "homepage": "http://www-bionet.sscc.ru/sitex/", "identifier": 1672, "description": "SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", "abbreviation": "SitEx", "support-links": [{"url": "http://www-bionet.sscc.ru/sitex/help.php", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/SitEx", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"name": "annual release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "file download(txt)", "type": "data access"}, {"name": "SQL database dump", "type": "data access"}, {"url": "http://www-bionet.sscc.ru/sitex/search.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www-bionet.sscc.ru/sitex/blast.php", "name": "blast"}], "deprecation-date": "2021-06-25", "deprecation-reason": "This resource's homepage no longer exists and a new project page cannot be found."}, "legacy-ids": ["biodbcore-000128", "bsg-d000128"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Protein domain", "Binding motif", "Structure", "Sequence", "Coding sequence", "Amino acid sequence"], "taxonomies": ["Anopheles gambiae", "Ascaris suum", "Bos taurus", "Caenorhabditis elegans", "Canis familiaris", "Cavia porcellus", "Danio rerio", "Echis multisquamatus", "Equus caballus", "Eukaryota", "Gallus gallus", "Homo sapiens", "Mus musculus", "Oryctolagus cuniculus", "Protobothrops flavoviridis", "Rattus norvegicus", "Sus scrofa", "Xenopus tropicalis"], "user-defined-tags": ["Discontinuity coefficient"], "countries": ["Russia"], "name": "FAIRsharing record for: SitEx database of eukaryotic protein functional sites", "abbreviation": "SitEx", "url": "https://fairsharing.org/10.25504/FAIRsharing.5mr9c5", "doi": "10.25504/FAIRsharing.5mr9c5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", "publications": [{"id": 196, "pubmed_id": 22139920, "title": "SitEx: a computer system for analysis of projections of protein functional sites on eukaryotic genes.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1187", "authors": "Medvedeva I., Demenkov P., Kolchanov N., Ivanisenko V.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1187", "created_at": "2021-09-30T08:22:41.439Z", "updated_at": "2021-09-30T08:22:41.439Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1768", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:47.542Z", "metadata": {"doi": "10.25504/FAIRsharing.kap6gp", "name": "Berkeley Drosophila Genome Project EST database", "status": "ready", "contacts": [{"contact-name": "Susan Celniker", "contact-email": "celniker@fruitfly.org"}], "homepage": "http://www.fruitfly.org/EST/index.shtml", "identifier": 1768, "description": "The goals of the Drosophila Genome Center are to finish the sequence of the euchromatic genome of Drosophila melanogaster to high quality and to generate and maintain biological annotations of this sequence.", "abbreviation": "BDGP", "support-links": [{"url": "bdgp@fruitfly.org", "type": "Support email"}, {"url": "http://www.fruitfly.org/EST/faq.html", "type": "Frequently Asked Questions (FAQs)"}], "data-processes": [{"url": "http://www.fruitfly.org/sequence/download.html", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010624", "name": "re3data:r3d100010624", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013094", "name": "SciCrunch:RRID:SCR_013094", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000226", "bsg-d000226"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Sequence annotation", "Genome"], "taxonomies": ["Drosophila melanogaster"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Berkeley Drosophila Genome Project EST database", "abbreviation": "BDGP", "url": "https://fairsharing.org/10.25504/FAIRsharing.kap6gp", "doi": "10.25504/FAIRsharing.kap6gp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The goals of the Drosophila Genome Center are to finish the sequence of the euchromatic genome of Drosophila melanogaster to high quality and to generate and maintain biological annotations of this sequence.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2281", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-15T11:12:20.000Z", "updated-at": "2021-11-24T13:15:46.295Z", "metadata": {"doi": "10.25504/FAIRsharing.szs7pn", "name": "MetaNetX", "status": "ready", "contacts": [{"contact-name": "Sebastien Moretti", "contact-email": "help@metanetx.org", "contact-orcid": "0000-0003-3947-488X"}], "homepage": "https://www.metanetx.org/", "identifier": 2281, "description": "MetaNetX/MNXref is a database for reconciliation of metabolites and biochemical reactions to bring together genome-scale metabolic networks. The tools developed at MetaNetX are useful for accessing, analysing and manipulating metabolic networks. MetaNetX goal is to automate model construction and genome annotation for large-scale metabolic networks.", "abbreviation": "MNXref", "access-points": [{"url": "https://metanetx.org/cgi-bin/mnxweb/search", "name": "MetaNetX/MNXref namespace search", "type": "REST"}, {"url": "https://rdf.metanetx.org/", "name": "SPARQL endpoint", "type": "Other"}], "support-links": [{"url": "help@metanetx.org", "type": "Support email"}, {"url": "https://metanetx.org/mnxdoc/mnxref.html", "type": "Help documentation"}, {"url": "https://twitter.com/MetaNetX_org", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "ftp://ftp.vital-it.ch/databases/metanetx/MNXref/", "name": "FTP", "type": "data access"}]}, "legacy-ids": ["biodbcore-000755", "bsg-d000755"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Biochemistry", "Systems Biology"], "domains": ["Network model", "Molecular interaction"], "taxonomies": ["Animalia", "Archaea", "Bacteria", "Fungi", "Plantae"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: MetaNetX", "abbreviation": "MNXref", "url": "https://fairsharing.org/10.25504/FAIRsharing.szs7pn", "doi": "10.25504/FAIRsharing.szs7pn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaNetX/MNXref is a database for reconciliation of metabolites and biochemical reactions to bring together genome-scale metabolic networks. The tools developed at MetaNetX are useful for accessing, analysing and manipulating metabolic networks. MetaNetX goal is to automate model construction and genome annotation for large-scale metabolic networks.", "publications": [{"id": 411, "pubmed_id": 23357920, "title": "MetaNetX.org: a website and repository for accessing, analysing and manipulating metabolic networks.", "year": 2013, "url": "http://doi.org/10.1093/bioinformatics/btt036", "authors": "Ganter M,Bernard T,Moretti S,Stelling J,Pagni M", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btt036", "created_at": "2021-09-30T08:23:04.666Z", "updated_at": "2021-09-30T08:23:04.666Z"}, {"id": 628, "pubmed_id": 33156326, "title": "MetaNetX/MNXref: unified namespace for metabolites and biochemical reactions in the context of metabolic models.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa992", "authors": "Moretti S,Tran VDT,Mehl F,Ibberson M,Pagni M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa992", "created_at": "2021-09-30T08:23:29.030Z", "updated_at": "2021-09-30T11:28:48.517Z"}, {"id": 1109, "pubmed_id": 26527720, "title": "MetaNetX/MNXref - reconciliation of metabolites and biochemical reactions to bring together genome-scale metabolic networks.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1117", "authors": "Moretti S,Martin O,Van Du Tran T,Bridge A,Morgat A,Pagni M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1117", "created_at": "2021-09-30T08:24:22.904Z", "updated_at": "2021-09-30T11:28:59.060Z"}, {"id": 1110, "pubmed_id": 23172809, "title": "Reconciliation of metabolites and biochemical reactions for metabolic networks.", "year": 2012, "url": "http://doi.org/10.1093/bib/bbs058", "authors": "Bernard T,Bridge A,Morgat A,Moretti S,Xenarios I,Pagni M", "journal": "Brief Bioinform", "doi": "10.1093/bib/bbs058", "created_at": "2021-09-30T08:24:22.997Z", "updated_at": "2021-09-30T08:24:22.997Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1646, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1682", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:59.716Z", "metadata": {"doi": "10.25504/FAIRsharing.htzwqf", "name": "PASS2", "status": "ready", "contacts": [{"contact-name": "R. Sowdhamini", "contact-email": "mini@ncbs.res.in"}], "homepage": "http://caps.ncbs.res.in/pass2/", "identifier": 1682, "description": "PASS2 contains alignments of structural motifs of protein superfamilies. PASS2 is an automatic version of the original superfamily alignment database, CAMPASS (CAMbridge database of Protein Alignments organised as Structural Superfamilies). PASS2 contains alignments of protein structures at the superfamily level and is in direct correspondence with SCOPe 2.04 release.", "abbreviation": "PASS2", "support-links": [{"url": "http://caps.ncbs.res.in/cgi-bin/pass2/help.py", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"name": "According to SCOP release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by scop release and year of update. Access to historical files possible.", "type": "data versioning"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://caps.ncbs.res.in/cgi-bin/pass2/browse.py", "name": "browse", "type": "data access"}, {"url": "http://caps.ncbs.res.in/pass2/", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://caps.ncbs.res.in/cgi-bin/pass2/tools.py", "name": "blast"}, {"url": "http://caps.ncbs.res.in/cgi-bin/pass2/tools.py", "name": "HMM search"}]}, "legacy-ids": ["biodbcore-000138", "bsg-d000138"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Hidden Markov model", "Structure-based sequence alignment", "Protein", "Sequence motif"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: PASS2", "abbreviation": "PASS2", "url": "https://fairsharing.org/10.25504/FAIRsharing.htzwqf", "doi": "10.25504/FAIRsharing.htzwqf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PASS2 contains alignments of structural motifs of protein superfamilies. PASS2 is an automatic version of the original superfamily alignment database, CAMPASS (CAMbridge database of Protein Alignments organised as Structural Superfamilies). PASS2 contains alignments of protein structures at the superfamily level and is in direct correspondence with SCOPe 2.04 release.", "publications": [{"id": 174, "pubmed_id": 2181150, "title": "Definition of general topological equivalence in protein structures. A procedure involving comparison of properties and relationships through simulated annealing and dynamic programming.", "year": 1990, "url": "http://doi.org/10.1016/0022-2836(90)90134-8", "authors": "Sali A., Blundell TL.,", "journal": "J. Mol. Biol.", "doi": "10.1016/0022-2836(90)90134-8", "created_at": "2021-09-30T08:22:39.064Z", "updated_at": "2021-09-30T08:22:39.064Z"}, {"id": 184, "pubmed_id": 10089493, "title": "Protein three-dimensional structural databases: domains, structurally aligned homologues and superfamilies.", "year": 1999, "url": "http://doi.org/10.1107/s0907444998007148", "authors": "Sowdhamini R., Burke DF., Deane C., Huang JF., Mizuguchi K., Nagarajaram HA., Overington JP., Srinivasan N., Steward RE., Blundell TL.,", "journal": "Acta Crystallogr. D Biol. Crystallogr.", "doi": "10.1107/s0907444998007148", "created_at": "2021-09-30T08:22:40.173Z", "updated_at": "2021-09-30T08:22:40.173Z"}, {"id": 1378, "pubmed_id": 9730927, "title": "JOY: protein sequence-structure representation and analysis.", "year": 1998, "url": "http://doi.org/10.1093/bioinformatics/14.7.617", "authors": "Mizuguchi K., Deane CM., Blundell TL., Johnson MS., Overington JP.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/14.7.617", "created_at": "2021-09-30T08:24:54.117Z", "updated_at": "2021-09-30T08:24:54.117Z"}, {"id": 2245, "pubmed_id": 11752316, "title": "PASS2: a semi-automated database of protein alignments organised as structural superfamilies.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.284", "authors": "Mallika V., Bhaduri A., Sowdhamini R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.284", "created_at": "2021-09-30T08:26:33.089Z", "updated_at": "2021-09-30T08:26:33.089Z"}, {"id": 2246, "pubmed_id": 15059245, "title": "PASS2: an automated database of protein alignments organised as structural superfamilies.", "year": 2004, "url": "http://doi.org/10.1186/1471-2105-5-35", "authors": "Bhaduri A., Pugalenthi G., Sowdhamini R.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-5-35", "created_at": "2021-09-30T08:26:33.190Z", "updated_at": "2021-09-30T08:26:33.190Z"}, {"id": 2247, "pubmed_id": 9753697, "title": "CAMPASS: a database of structurally aligned protein superfamilies.", "year": 1998, "url": "http://doi.org/10.1016/s0969-2126(98)00110-5", "authors": "Sowdhamini R., Burke DF., Huang JF., Mizuguchi K., Nagarajaram HA., Srinivasan N., Steward RE., Blundell TL.,", "journal": "Structure", "doi": "10.1016/S0969-2126(98)00110-5", "created_at": "2021-09-30T08:26:33.290Z", "updated_at": "2021-09-30T08:26:33.290Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1692", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:08.735Z", "metadata": {"doi": "10.25504/FAIRsharing.6c4fvf", "name": "TDR Targets", "status": "ready", "contacts": [{"contact-name": "Fern\u00e1n Ag\u00fcero", "contact-email": "fernan@unsam.edu.ar", "contact-orcid": "0000-0003-1331-5741"}], "homepage": "https://tdrtargets.org", "identifier": 1692, "description": "TDR Targets integrates chemical and genomic information and allows users to prioritize targets and compounds to develop and repurpose new drugs and chemical tools for human pathogens. The TDR Target Project was started in 2005 after a call for applications was launched by TDR (Special Programme for Research and Training in Tropical Diseases). As a result, the TDR Targets Database was established to help develop a portfolio of candidate drug targets for 5 major human pathogens. This then became a resource for prioritizing targets for neglected tropical diseases. TDR Targets is led and run by the Trypanosomatics group at IIB-UNSAM (Argentina, https://trypanosomatics.org) with help with external collaborators worldwide.", "abbreviation": "TDR Targets", "support-links": [{"url": "info@tdrtargets.org", "name": "General Support Email", "type": "Support email"}, {"url": "https://tdrtargets.org/tutorials", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://tdrtargets.org/manual", "name": "Manual", "type": "Help documentation"}, {"url": "https://tdrtargets.org/datasummary", "name": "Data Summary", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/TDR_Targets", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2007, "data-processes": [{"url": "https://tdrtargets.org/user/register", "name": "register", "type": "data access"}, {"url": "https://tdrtargets.org/drugs", "name": "Search for Drugs/Compounds", "type": "data access"}, {"url": "https://tdrtargets.org/targets/search", "name": "Targets Search", "type": "data access"}, {"url": "https://tdrtargets.org/releases", "name": "Release Information", "type": "data release"}]}, "legacy-ids": ["biodbcore-000148", "bsg-d000148"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Discovery", "Drug Repositioning", "Drug Development", "Life Science"], "domains": ["Molecular structure", "Enzyme Commission number", "Sequence length", "Gene name", "Expression data", "DNA sequence data", "Gene Ontology enrichment", "Annotation", "Genome annotation", "Computational biological predictions", "Acceptor", "Donor", "Drug", "Chemical entity", "Proton", "Antigen", "Bioactivity", "Glycosylphosphatidylinositol anchor", "Molecular weight", "Disease", "Structure", "Signal peptide", "Gene", "Chemical descriptor", "logP"], "taxonomies": ["Brugia malayi", "Chlamydia trachomatis", "Echinococcus granulosus", "Echinococcus multilocularis", "Entamoeba histolytica", "Giardia lamblia", "Leishmania major", "Loa Loa", "Mycobacterium leprae", "Mycobacterium tuberculosis", "Mycobacterium ulcerans", "Onchocerca volvulus", "Plasmodium falciparum", "Plasmodium vivax", "Schistosoma mansoni", "Toxoplasma gondii", "Treponema pallidum", "Trichomonas vaginalis", "Trypanosoma brucei", "Trypanosoma cruzi", "Wolbachia (Brugia malayi)"], "user-defined-tags": ["Atomic composition", "Drug-like compound", "Drug Target", "Number of flexible bonds", "Rule of five compliance"], "countries": ["Argentina"], "name": "FAIRsharing record for: TDR Targets", "abbreviation": "TDR Targets", "url": "https://fairsharing.org/10.25504/FAIRsharing.6c4fvf", "doi": "10.25504/FAIRsharing.6c4fvf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TDR Targets integrates chemical and genomic information and allows users to prioritize targets and compounds to develop and repurpose new drugs and chemical tools for human pathogens. The TDR Target Project was started in 2005 after a call for applications was launched by TDR (Special Programme for Research and Training in Tropical Diseases). As a result, the TDR Targets Database was established to help develop a portfolio of candidate drug targets for 5 major human pathogens. This then became a resource for prioritizing targets for neglected tropical diseases. TDR Targets is led and run by the Trypanosomatics group at IIB-UNSAM (Argentina, https://trypanosomatics.org) with help with external collaborators worldwide.", "publications": [{"id": 206, "pubmed_id": 18927591, "title": "Genomic-scale prioritization of drug targets: the TDR Targets database.", "year": 2008, "url": "http://doi.org/10.1038/nrd2684", "authors": "Ag\u00fcero F., Al-Lazikani B., Aslett M., et al.", "journal": "Nat Rev Drug Discov", "doi": "10.1038/nrd2684", "created_at": "2021-09-30T08:22:42.439Z", "updated_at": "2021-09-30T08:22:42.439Z"}, {"id": 2569, "pubmed_id": 20808766, "title": "Identification of attractive drug targets in neglected-disease pathogens using an in silico approach.", "year": 2010, "url": "http://doi.org/10.1371/journal.pntd.0000804", "authors": "Crowther GJ., Shanmugam D., Carmona SJ., Doyle MA., Hertz-Fowler C., Berriman M., Nwaka S., Ralph SA., Roos DS., Van Voorhis WC., Ag\u00fcero F.,", "journal": "PLoS Negl Trop Dis", "doi": "10.1371/journal.pntd.0000804", "created_at": "2021-09-30T08:27:15.029Z", "updated_at": "2021-09-30T08:27:15.029Z"}, {"id": 2570, "pubmed_id": 22116064, "title": "TDR Targets: a chemogenomics resource for neglected diseases.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1053", "authors": "Magarinos MP,Carmona SJ,Crowther GJ,Ralph SA,Roos DS,Shanmugam D,Van Voorhis WC,Aguero F", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1053", "created_at": "2021-09-30T08:27:15.143Z", "updated_at": "2021-09-30T11:29:39.514Z"}], "licence-links": [{"licence-name": "TDR Targets Data Access Policy", "licence-id": 776, "link-id": 1900, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1696", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:21.308Z", "metadata": {"doi": "10.25504/FAIRsharing.x2vch3", "name": "Virulence Factor Database", "status": "ready", "contacts": [{"contact-name": "Jian Yang", "contact-email": "yangj@ipbcams.ac.cn"}], "homepage": "http://www.mgc.ac.cn/VFs/", "identifier": 1696, "description": "VFDB is an integrated and comprehensive database of virulence factors for bacterial pathogens (also including Chlamydia and Mycoplasma).", "abbreviation": "VFDB", "support-links": [{"url": "http://www.mgc.ac.cn/VFs/faq.htm", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.mgc.ac.cn/VFs/help.htm", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "ad-hoc release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.mgc.ac.cn/VFs/search_VFs.htm", "name": "database search", "type": "data access"}, {"url": "http://www.mgc.ac.cn/VFs/download.htm", "name": "file download(CSV,txt,tab-delimited)", "type": "data access"}]}, "legacy-ids": ["biodbcore-000153", "bsg-d000153"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Citation", "DNA sequence data", "Gene model annotation", "Pathogen", "Disease", "Classification", "Virulence", "Pseudogene"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Virulence Factor Database", "abbreviation": "VFDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.x2vch3", "doi": "10.25504/FAIRsharing.x2vch3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VFDB is an integrated and comprehensive database of virulence factors for bacterial pathogens (also including Chlamydia and Mycoplasma).", "publications": [{"id": 44, "pubmed_id": 15608208, "title": "VFDB: a reference database for bacterial virulence factors.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki008", "authors": "Chen L., Yang J., Yu J., Yao Z., Sun L., Shen Y., Jin Q.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki008", "created_at": "2021-09-30T08:22:25.146Z", "updated_at": "2021-09-30T08:22:25.146Z"}, {"id": 217, "pubmed_id": 17984080, "title": "VFDB 2008 release: an enhanced web-based resource for comparative pathogenomics.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm951", "authors": "Yang J., Chen L., Sun L., Yu J., Jin Q.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm951", "created_at": "2021-09-30T08:22:43.539Z", "updated_at": "2021-09-30T08:22:43.539Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2084", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:13.252Z", "metadata": {"doi": "10.25504/FAIRsharing.sye5js", "name": "The Human Metabolome Database", "status": "ready", "contacts": [{"contact-email": "david.wishart@ualberta.ca"}], "homepage": "https://hmdb.ca/", "citations": [], "identifier": 2084, "description": "The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", "abbreviation": "HMDB", "support-links": [{"url": "http://www.hmdb.ca/about", "type": "Help documentation"}, {"url": "https://twitter.com/WishartLab", "type": "Twitter"}], "data-processes": [{"url": "http://www.hmdb.ca/downloads", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.hmdb.ca/textquery", "name": "search"}, {"url": "http://www.hmdb.ca/advanced_search", "name": "advanced search"}, {"url": "http://www.hmdb.ca/seqsearch", "name": "BLAST"}, {"url": "http://www.hmdb.ca/spectra/ms/search", "name": "spectral search"}, {"url": "http://www.hmdb.ca/chemquery", "name": "chemical search"}, {"url": "http://www.hmdb.ca/metabolites", "name": "browse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011285", "name": "re3data:r3d100011285", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013647", "name": "SciCrunch:RRID:SCR_013647", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000552", "bsg-d000552"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Biochemistry", "Life Science", "Metabolomics"], "domains": ["Chemical entity", "Metabolite", "Small molecule"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: The Human Metabolome Database", "abbreviation": "HMDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.sye5js", "doi": "10.25504/FAIRsharing.sye5js", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", "publications": [{"id": 532, "pubmed_id": 23161693, "title": "HMDB 3.0--The Human Metabolome Database in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1065", "authors": "Wishart DS., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1065", "created_at": "2021-09-30T08:23:18.134Z", "updated_at": "2021-09-30T08:23:18.134Z"}, {"id": 2370, "pubmed_id": 17202168, "title": "HMDB: the Human Metabolome Database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkl923", "authors": "Wishart DS., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl923", "created_at": "2021-09-30T08:26:51.369Z", "updated_at": "2021-09-30T08:26:51.369Z"}, {"id": 2371, "pubmed_id": 18953024, "title": "HMDB: a knowledgebase for the human metabolome.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn810", "authors": "Wishart DS., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn810", "created_at": "2021-09-30T08:26:51.478Z", "updated_at": "2021-09-30T08:26:51.478Z"}], "licence-links": [{"licence-name": "HMDB Attribution required", "licence-id": 399, "link-id": 1629, "relation": "undefined"}, {"licence-name": "HMDB No derivatives without permission", "licence-id": 400, "link-id": 1630, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1718", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:02.816Z", "metadata": {"doi": "10.25504/FAIRsharing.3qh2tg", "name": "MODOMICS", "status": "ready", "contacts": [{"contact-name": "Magdalena Machnicka", "contact-email": "mmika@genesilico.pl"}], "homepage": "http://modomics.genesilico.pl/", "identifier": 1718, "description": "MODOMICS is the first comprehensive database system for biology of RNA modification. It integrates information about the chemical structure of modified nucleosides, their localization in RNA sequences, pathways of their biosynthesis and enzymes that carry out the respective reactions (together with their protein cofactors). Also included are the protein sequences, the structure data (if available), selected references from scientific literature, and links to other databases allowing to obtain comprehensive information about individual modified residues and proteins involved in their biosynthesis.", "abbreviation": "MODOMICS", "support-links": [{"url": "kaja@genesilico.pl", "type": "Support email"}, {"url": "http://modomics.genesilico.pl/help/", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://modomics.genesilico.pl/search/keyword/", "name": "search", "type": "data access"}, {"url": "http://modomics.genesilico.pl/modifications/", "name": "browse", "type": "data access"}, {"url": "http://modomics.genesilico.pl/downloads/", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000175", "bsg-d000175"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["RNA sequence", "Ribonucleic acid", "RNA modification"], "taxonomies": ["Aquifex aeolicus", "Arabidopsis thaliana", "Archaeoglobus fulgidus", "Bacillus subtilis", "Chlorobium tepidum", "Clostridium thermocellum", "Enterococcus faecium", "Escherichia coli", "Geobacillus kaustophilus", "Geobacter sulfurreducens", "Giardia", "Haemophilus influenzae", "Haloferax volcanii", "Homo sapiens", "Methanocaldococcus jannaschii", "Methanopyrus kandleri", "Micromonospora zionensis", "Mus musculus", "Mycobacterium tuberculosis", "Mycoplasma capricolum", "Nostoc", "Pyrococcus abyssi", "Pyrococcus furiosus", "Pyrococcus horikoshii", "Saccharomyces cerevisiae", "Salmonella typhimurium", "Schizosaccharomyces pombe", "Staphylococcus sciuri", "Streptococcus pneumoniae", "Streptomyces actuosus", "Streptomyces cyaneus", "Streptomyces fradiae", "Streptomyces sp. DSM 40477", "Streptomyces viridochromogenes", "Sulfolobus acidocaldarius", "Sulfolobus solfataricus", "Thermotoga maritima", "Thermus thermophilus", "Trypanosoma brucei", "Yersinia pestis", "Zymomonas mobilis"], "user-defined-tags": [], "countries": ["Poland"], "name": "FAIRsharing record for: MODOMICS", "abbreviation": "MODOMICS", "url": "https://fairsharing.org/10.25504/FAIRsharing.3qh2tg", "doi": "10.25504/FAIRsharing.3qh2tg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MODOMICS is the first comprehensive database system for biology of RNA modification. It integrates information about the chemical structure of modified nucleosides, their localization in RNA sequences, pathways of their biosynthesis and enzymes that carry out the respective reactions (together with their protein cofactors). Also included are the protein sequences, the structure data (if available), selected references from scientific literature, and links to other databases allowing to obtain comprehensive information about individual modified residues and proteins involved in their biosynthesis.", "publications": [{"id": 1894, "pubmed_id": 16381833, "title": "MODOMICS: a database of RNA modification pathways.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj084", "authors": "Dunin-Horkawicz S., Czerwoniec A., Gajda MJ., Feder M., Grosjean H., Bujnicki JM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj084", "created_at": "2021-09-30T08:25:53.054Z", "updated_at": "2021-09-30T08:25:53.054Z"}, {"id": 1895, "pubmed_id": 18854352, "title": "MODOMICS: a database of RNA modification pathways. 2008 update.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn710", "authors": "Czerwoniec A., Dunin-Horkawicz S., Purta E., Kaminska KH., Kasprzak JM., Bujnicki JM., Grosjean H., Rother K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn710", "created_at": "2021-09-30T08:25:53.164Z", "updated_at": "2021-09-30T08:25:53.164Z"}, {"id": 1896, "pubmed_id": 23118484, "title": "MODOMICS: a database of RNA modification pathways--2013 update.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1007", "authors": "Machnicka MA,Milanowska K,Osman Oglou O,Purta E,Kurkowska M,Olchowik A,Januszewski W,Kalinowski S,Dunin-Horkawicz S,Rother KM,Helm M,Bujnicki JM,Grosjean H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1007", "created_at": "2021-09-30T08:25:53.272Z", "updated_at": "2021-09-30T11:29:22.253Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1731", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:03.722Z", "metadata": {"doi": "10.25504/FAIRsharing.mt6057", "name": "CellFinder", "status": "ready", "contacts": [{"contact-name": "Andreas Kurtz", "contact-email": "contact@cellfinder.de"}], "homepage": "http://cellfinder.org/", "identifier": 1731, "description": "CellFinder maps validated gene and protein expression, phenotype and images related to cell types.The data allow characterization and comparison of cell types and can be browsed by using the body browser and by searching for cells or genes. All cells are related to more complex systems such as tissues, organs and organisms and arranged according to their position in development. CellFinder provides long-term data storage for validated and curated primary research data and provides additional expert-validation through relevant information extracted from text.", "abbreviation": "CellFinder", "support-links": [{"url": "http://cellfinder.de/contact", "type": "Contact form"}, {"url": "http://cellfinder.org/help/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.youtube.com/watch?v=14oGjsLsE0I", "type": "Video"}], "year-creation": 2011, "data-processes": [{"url": "http://cellfinder.de/search/?name", "name": "search", "type": "data access"}, {"url": "http://cellfinder.de/browse/", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://sbb.cellfinder.org", "name": "semantic body browser"}, {"url": "http://cellfinder.org/analysis/compare", "name": "Compare Tool"}, {"url": "http://cellfinder.org/analysis/marker", "name": "Marker Tool"}]}, "legacy-ids": ["biodbcore-000188", "bsg-d000188"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Expression data", "Cell", "Image", "Curated information", "Phenotype"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: CellFinder", "abbreviation": "CellFinder", "url": "https://fairsharing.org/10.25504/FAIRsharing.mt6057", "doi": "10.25504/FAIRsharing.mt6057", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CellFinder maps validated gene and protein expression, phenotype and images related to cell types.The data allow characterization and comparison of cell types and can be browsed by using the body browser and by searching for cells or genes. All cells are related to more complex systems such as tissues, organs and organisms and arranged according to their position in development. CellFinder provides long-term data storage for validated and curated primary research data and provides additional expert-validation through relevant information extracted from text.", "publications": [{"id": 1397, "pubmed_id": 23599415, "title": "Preliminary evaluation of the CellFinder literature curation pipeline for gene expression in kidney cells and anatomical parts.", "year": 2013, "url": "http://doi.org/10.1093/database/bat020", "authors": "Neves M, Damaschun A, Mah N, Lekschas F, Seltmann S, Stachelscheid H, Fontaine JF, Kurtz A, Leser U.", "journal": "Database", "doi": "10.1093/database/bat020", "created_at": "2021-09-30T08:24:56.185Z", "updated_at": "2021-09-30T08:24:56.185Z"}, {"id": 1398, "pubmed_id": 24304896, "title": "CellFinder: a cell data repository.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1264", "authors": "Stachelscheid H,Seltmann S,Lekschas F,Fontaine JF,Mah N,Neves M,Andrade-Navarro MA,Leser U,Kurtz A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1264", "created_at": "2021-09-30T08:24:56.290Z", "updated_at": "2021-09-30T11:29:07.770Z"}, {"id": 1420, "pubmed_id": 25344497, "title": "Semantic Body Browser: graphical exploration of an organism and spatially resolved expression data visualization.", "year": 2014, "url": "http://doi.org/10.1093/bioinformatics/btu707", "authors": "Lekschas F,Stachelscheid H,Seltmann S,Kurtz A", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btu707", "created_at": "2021-09-30T08:24:58.720Z", "updated_at": "2021-09-30T08:24:58.720Z"}], "licence-links": [{"licence-name": "Cell Finder Copyright", "licence-id": 116, "link-id": 169, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 170, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1746", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:13:55.817Z", "metadata": {"doi": "10.25504/FAIRsharing.w6cxgb", "name": "Allergome", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "allergome@allergome.org"}], "homepage": "http://www.allergome.org/", "identifier": 1746, "description": "Allergome aims to supply information on Allergenic Molecules (Allergens) causing an IgE-mediated (allergic, atopic) disease (anaphylaxis, asthma, atopic dermatitis, conjunctivitis, rhinitis, urticaria). The resource is funded through the Allergen Data Laboratories via unrestricted grants from companies and institutions.", "abbreviation": "Allergome", "support-links": [{"url": "http://www.allergome.org/script/help.php", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.allergome.org/script/history.php", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.allergome.org/script/search_step1.php?clear=1", "name": "search"}, {"url": "http://www.allergome.org/script/search_advanced_step1.php?clear=1", "name": "advanced search"}, {"url": "http://www.allergome.org/script/tools.php?tool=blaster", "name": "BLAST"}, {"url": "http://www.allergome.org/script/search_step1.php?clear=1", "name": "search"}, {"url": "http://www.allergome.org/script/search_advanced_step1.php?clear=1", "name": "advanced search"}, {"url": "http://www.allergome.org/script/tools.php?tool=blaster", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000204", "bsg-d000204"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Medicine", "Health Science", "Life Science", "Biomedical Science"], "domains": ["Allergen", "Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Allergome", "abbreviation": "Allergome", "url": "https://fairsharing.org/10.25504/FAIRsharing.w6cxgb", "doi": "10.25504/FAIRsharing.w6cxgb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Allergome aims to supply information on Allergenic Molecules (Allergens) causing an IgE-mediated (allergic, atopic) disease (anaphylaxis, asthma, atopic dermatitis, conjunctivitis, rhinitis, urticaria). The resource is funded through the Allergen Data Laboratories via unrestricted grants from companies and institutions.", "publications": [{"id": 286, "pubmed_id": 17393720, "title": "Allergome: a unifying platform.", "year": 2007, "url": "https://www.ncbi.nlm.nih.gov/pubmed/17393720", "authors": "Mari A., Scala E.,", "journal": "Arb Paul Ehrlich Inst Bundesamt Sera Impfstoffe Frankf A M", "doi": null, "created_at": "2021-09-30T08:22:50.827Z", "updated_at": "2021-09-30T08:22:50.827Z"}, {"id": 1583, "pubmed_id": 17434469, "title": "Bioinformatics applied to allergy: allergen databases, from collecting sequence information to data integration. The Allergome platform as a model.", "year": 2007, "url": "http://doi.org/10.1016/j.cellimm.2007.02.012", "authors": "Mari A,Scala E,Palazzo P,Ridolfi S,Zennaro D,Carabella G", "journal": "Cell Immunol", "doi": "10.1016/j.cellimm.2007.02.012", "created_at": "2021-09-30T08:25:17.453Z", "updated_at": "2021-09-30T08:25:17.453Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.5 Generic (CC BY-NC-SA 2.5)", "licence-id": 181, "link-id": 180, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1748", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:16:02.569Z", "metadata": {"doi": "10.25504/FAIRsharing.jp89d1", "name": "Evolutionary Annotation Database", "status": "ready", "contacts": [{"contact-name": "Ryuichi Sakate", "contact-email": "rsakate@ni.aist.go.jp"}], "homepage": "http://www.h-invitational.jp/evola/search.html", "identifier": 1748, "description": "Evola contains ortholog information of all human genes among vertebrates. Orthologs are a pair of genes in different species that evolved from a common ancestral gene by speciation. In Evola, orthologs were detected by comparative genomics and amino acid sequence analysis (Computational analysis).", "abbreviation": "Evola", "support-links": [{"url": "hinvdb@ml.u-tokai.ac.jp", "type": "Support email"}, {"url": "http://www.h-invitational.jp/hinv/help/contents6/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.h-invitational.jp/hinv/help/help_Evola.html", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.h-invitational.jp/hinv/dataset/download.cgi", "name": "Download", "type": "data access"}, {"name": "manual curation", "type": "data curation"}, {"url": "http://www.h-invitational.jp/evola/search.html", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://www.h-invitational.jp/hinv/blast/blasttop.cgi", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000206", "bsg-d000206"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Amino acid sequence", "Orthologous", "Genome"], "taxonomies": ["Homo sapiens", "Vertebrata"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Evolutionary Annotation Database", "abbreviation": "Evola", "url": "https://fairsharing.org/10.25504/FAIRsharing.jp89d1", "doi": "10.25504/FAIRsharing.jp89d1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Evola contains ortholog information of all human genes among vertebrates. Orthologs are a pair of genes in different species that evolved from a common ancestral gene by speciation. In Evola, orthologs were detected by comparative genomics and amino acid sequence analysis (Computational analysis).", "publications": [{"id": 275, "pubmed_id": 17982176, "title": "Evola: Ortholog database of all human genes in H-InvDB with manual curation of phylogenetic trees.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm878", "authors": "Matsuya A., et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm878", "created_at": "2021-09-30T08:22:49.716Z", "updated_at": "2021-09-30T08:22:49.716Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 11, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1751", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:04.583Z", "metadata": {"doi": "10.25504/FAIRsharing.fqcrpt", "name": "Telomerase Database", "status": "ready", "contacts": [{"contact-name": "Julian J-L Chen", "contact-email": "JLChen@asu.edu", "contact-orcid": "0000-0002-7253-2722"}], "homepage": "http://telomerase.asu.edu", "identifier": 1751, "description": "The Telomerase Database is a Web-based tool for the study of structure, function, and evolution of the telomerase ribonucleoprotein. The objective of this database is to serve the research community by providing a comprehensive compilation of information known about telomerase enzyme and its substrate, telomeres.", "support-links": [{"url": "http://telomerase.asu.edu/overview.html", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://telomerase.asu.edu/sequences.html", "name": "browse sequences", "type": "data access"}, {"url": "http://telomerase.asu.edu/alignments.html", "name": "browse alignments", "type": "data access"}, {"url": "http://telomerase.asu.edu/structures.html", "name": "browse structures", "type": "data access"}, {"url": "http://telomerase.asu.edu/diseases.html", "name": "browse diseases", "type": "data access"}]}, "legacy-ids": ["biodbcore-000209", "bsg-d000209"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Small molecule", "Enzyme", "Disease", "Structure", "Protein"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Telomerase Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.fqcrpt", "doi": "10.25504/FAIRsharing.fqcrpt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Telomerase Database is a Web-based tool for the study of structure, function, and evolution of the telomerase ribonucleoprotein. The objective of this database is to serve the research community by providing a comprehensive compilation of information known about telomerase enzyme and its substrate, telomeres.", "publications": [{"id": 287, "pubmed_id": 18073191, "title": "The telomerase database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm700", "authors": "Podlevsky JD., Bley CJ., Omana RV., Qi X., Chen JJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm700", "created_at": "2021-09-30T08:22:50.933Z", "updated_at": "2021-09-30T08:22:50.933Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1766", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:05.748Z", "metadata": {"doi": "10.25504/FAIRsharing.snnfj7", "name": "Pig Genomic Informatics System", "status": "deprecated", "contacts": [{"contact-name": "Jun Wang", "contact-email": "wangj@genomics.org.cn"}], "homepage": "http://pig.genomics.org.cn/", "identifier": 1766, "description": "The Pig Genomic Informatics System (PigGIS) presents accurate pig gene annotations in all sequenced genomic regions. It integrates various available pig sequence data, including 3.84 million whole-genome-shortgun (WGS) reads and 0.7 million Expressed Sequence Tags (ESTs) generated by Sino-Danish Pig Genome Project, and 1 million miscellaneous GenBank records.", "abbreviation": "PigGIS", "support-links": [{"url": "piggis@genomics.org.cn", "type": "Support email"}, {"url": "http://pig.genomics.org.cn/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2006, "data-processes": [{"url": "http://pig.genomics.org.cn/download.jsp", "name": "Download", "type": "data access"}, {"url": "http://pig.genomics.org.cn/search.jsp", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://pig.genomics.org.cn/blast.jsp", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000224", "bsg-d000224"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Ribonucleic acid", "Structure", "Gene", "Genome"], "taxonomies": ["Sus scrofa"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Pig Genomic Informatics System", "abbreviation": "PigGIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.snnfj7", "doi": "10.25504/FAIRsharing.snnfj7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pig Genomic Informatics System (PigGIS) presents accurate pig gene annotations in all sequenced genomic regions. It integrates various available pig sequence data, including 3.84 million whole-genome-shortgun (WGS) reads and 0.7 million Expressed Sequence Tags (ESTs) generated by Sino-Danish Pig Genome Project, and 1 million miscellaneous GenBank records.", "publications": [{"id": 285, "pubmed_id": 17090590, "title": "PigGIS: Pig Genomic Informatics System.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl808", "authors": "Ruan J., Guo Y., Li H., Hu Y., Song F., Huang X., Kristiensen K., Bolund L., Wang J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl808", "created_at": "2021-09-30T08:22:50.724Z", "updated_at": "2021-09-30T08:22:50.724Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1801", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.327Z", "metadata": {"doi": "10.25504/FAIRsharing.x8xt3k", "name": "PhosphoSite Plus", "status": "ready", "contacts": [{"contact-name": "general contact", "contact-email": "EditorPhosphoSite@cellsignal.com"}], "homepage": "http://www.phosphosite.org", "identifier": 1801, "description": "PhosphoSite Plus provides extensive information on mammalian post-translational modifications (PTMs). The resource supersedes PhosphoSite a mammalian protein database that provides information about in vivo phosphorylation sites.", "abbreviation": "PSP", "support-links": [{"url": "http://www.phosphosite.org/staticContact.do", "type": "Contact form"}, {"url": "http://www.phosphosite.org/staticUsingPhosphosite.do", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://www.phosphosite.org/staticDownloads.do", "name": "Download", "type": "data access"}, {"name": "http://www.phosphosite.org/staticCurationProcess.do", "type": "data curation"}, {"url": "http://www.phosphosite.org/sequenceLogoAction.do", "name": "search", "type": "data access"}, {"url": "http://www.phosphosite.org/browseTissueAction.do", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000261", "bsg-d000261"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Phosphorylation", "Signaling", "Small molecule", "Structure", "Protein"], "taxonomies": ["Drosophila", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PhosphoSite Plus", "abbreviation": "PSP", "url": "https://fairsharing.org/10.25504/FAIRsharing.x8xt3k", "doi": "10.25504/FAIRsharing.x8xt3k", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhosphoSite Plus provides extensive information on mammalian post-translational modifications (PTMs). The resource supersedes PhosphoSite a mammalian protein database that provides information about in vivo phosphorylation sites.", "publications": [{"id": 313, "pubmed_id": 12478304, "title": "The Molecule Pages database.", "year": 2002, "url": "http://doi.org/10.1038/nature01307", "authors": "Li J., Ning Y., Hedley W., Saunders B., Chen Y., Tindill N., Hannay T., Subramaniam S.,", "journal": "Nature", "doi": "10.1038/nature01307", "created_at": "2021-09-30T08:22:53.582Z", "updated_at": "2021-09-30T08:22:53.582Z"}, {"id": 1589, "pubmed_id": 15174125, "title": "PhosphoSite: A bioinformatics resource dedicated to physiological protein phosphorylation.", "year": 2004, "url": "http://doi.org/10.1002/pmic.200300772", "authors": "Hornbeck PV,Chabra I,Kornhauser JM,Skrzypek E,Zhang B", "journal": "Proteomics", "doi": "10.1002/pmic.200300772", "created_at": "2021-09-30T08:25:18.178Z", "updated_at": "2021-09-30T08:25:18.178Z"}, {"id": 1633, "pubmed_id": 25514926, "title": "PhosphoSitePlus, 2014: mutations, PTMs and recalibrations.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1267", "authors": "Hornbeck PV,Zhang B,Murray B,Kornhauser JM,Latham V,Skrzypek E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1267", "created_at": "2021-09-30T08:25:22.958Z", "updated_at": "2021-09-30T11:29:17.354Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 295, "relation": "undefined"}, {"licence-name": "PhosphoSitePlus Privacy Policy", "licence-id": 665, "link-id": 300, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)", "licence-id": 171, "link-id": 301, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1952", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:50.051Z", "metadata": {"doi": "10.25504/FAIRsharing.frryvx", "name": "SUPERFAMILY", "status": "ready", "contacts": [{"contact-email": "apandura@mrc-lmb.cam.ac.uk"}], "homepage": "http://supfam.org", "citations": [{"doi": "10.1093/nar/gky1130", "pubmed-id": 30445555, "publication-id": 2649}], "identifier": 1952, "description": "SUPERFAMILY is a database of structural and functional annotation for all proteins and genomes.", "abbreviation": "SUPERFAMILY", "support-links": [{"url": "http://supfam.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "gough@mrc-lmb.cam.ac.uk", "name": "Julian Gough", "type": "Support email"}, {"url": "http://supfam.org/genome/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/superfamily", "name": "Superfamily", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/SUPERFAMILY", "name": "@SUPERFAMILY", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "http://supfam.org/sequence/search", "name": "Search", "type": "data access"}, {"url": "http://supfam.org/scop", "name": "Browse SCOP hierarchy", "type": "data access"}, {"url": "http://supfam.org/genome/hierarchy", "name": "Browse Taxonomy hierarchy", "type": "data access"}]}, "legacy-ids": ["biodbcore-000418", "bsg-d000418"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Life Science"], "domains": ["Molecular structure", "Hidden Markov model", "Classification", "Structure", "Protein", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: SUPERFAMILY", "abbreviation": "SUPERFAMILY", "url": "https://fairsharing.org/10.25504/FAIRsharing.frryvx", "doi": "10.25504/FAIRsharing.frryvx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SUPERFAMILY is a database of structural and functional annotation for all proteins and genomes.", "publications": [{"id": 443, "pubmed_id": 17098927, "title": "The SUPERFAMILY database in 2007: families and functions.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl910", "authors": "Wilson D., Madera M., Vogel C., Chothia C., Gough J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl910", "created_at": "2021-09-30T08:23:08.083Z", "updated_at": "2021-09-30T08:23:08.083Z"}, {"id": 1810, "pubmed_id": 19036790, "title": "SUPERFAMILY--sophisticated comparative genomics, data mining, visualization and phylogeny.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn762", "authors": "Wilson D., Pethica R., Zhou Y., Talbot C., Vogel C., Madera M., Chothia C., Gough J.,", "journal": "Nucleic Acids Res.", "doi": "19036790", "created_at": "2021-09-30T08:25:43.162Z", "updated_at": "2021-09-30T08:25:43.162Z"}, {"id": 1840, "pubmed_id": 11697912, "title": "Assignment of homology to genome sequences using a library of hidden Markov models that represent all proteins of known structure.", "year": 2001, "url": "http://doi.org/10.1006/jmbi.2001.5080", "authors": "Gough J,Karplus K,Hughey R,Chothia C", "journal": "J Mol Biol", "doi": "10.1006/jmbi.2001.5080", "created_at": "2021-09-30T08:25:46.655Z", "updated_at": "2021-09-30T08:25:46.655Z"}, {"id": 2649, "pubmed_id": 30445555, "title": "The SUPERFAMILY 2.0 database: a significant proteome update and a new webserver.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1130", "authors": "Pandurangan AP,Stahlhacke J,Oates ME,Smithers B,Gough J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1130", "created_at": "2021-09-30T08:27:25.301Z", "updated_at": "2021-09-30T11:29:40.913Z"}, {"id": 2977, "pubmed_id": 21062816, "title": "SUPERFAMILY 1.75 including a domain-centric gene ontology method.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1130", "authors": "de Lima Morais DA., Fang H., Rackham OJ., Wilson D., Pethica R., Chothia C., Gough J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1130", "created_at": "2021-09-30T08:28:06.808Z", "updated_at": "2021-09-30T08:28:06.808Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 801, "relation": "undefined"}, {"licence-name": "SUPERFAMILY Attribution required", "licence-id": 762, "link-id": 802, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1816", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:43.740Z", "metadata": {"doi": "10.25504/FAIRsharing.j7j53", "name": "Candida Genome Database", "status": "ready", "contacts": [{"contact-name": "Martha B. Arnaud", "contact-email": "arnaudm@stanford.edu"}], "homepage": "http://www.candidagenome.org/", "identifier": 1816, "description": "The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", "abbreviation": "CGD", "support-links": [{"url": "http://www.candidagenome.org/cgi-bin/suggestion", "type": "Contact form"}, {"url": "candida-curator@lists.stanford.edu", "type": "Support email"}, {"url": "http://www.candidagenome.org/HelpContents.shtml", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://www.candidagenome.org/DownloadContents.shtml", "name": "Download", "type": "data access"}, {"url": "http://www.candidagenome.org/SearchContents.shtml", "name": "search", "type": "data access"}, {"url": "http://www.candidagenome.org/GBrowseContents.shtml", "name": "Gbrowse", "type": "data access"}, {"url": "http://www.candidagenome.org/JBrowseContents.shtml", "name": "Jbrowse", "type": "data access"}, {"url": "http://www.candidagenome.org/cache/PhenotypeTree.html", "name": "Phenotype ontology browser", "type": "data access"}], "associated-tools": [{"url": "http://www.candidagenome.org/cgi-bin/compute/blast_clade.pl", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010617", "name": "re3data:r3d100010617", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002036", "name": "SciCrunch:RRID:SCR_002036", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000276", "bsg-d000276"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Nucleotide", "Pathogen", "Curated information", "Genome"], "taxonomies": ["Candida"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Candida Genome Database", "abbreviation": "CGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.j7j53", "doi": "10.25504/FAIRsharing.j7j53", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", "publications": [{"id": 329, "pubmed_id": 15608216, "title": "The Candida Genome Database (CGD), a community resource for Candida albicans gene and protein information.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki003", "authors": "Arnaud MB., Costanzo MC., Skrzypek MS., Binkley G., Lane C., Miyasato SR., Sherlock G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki003", "created_at": "2021-09-30T08:22:55.307Z", "updated_at": "2021-09-30T08:22:55.307Z"}, {"id": 1489, "pubmed_id": 22064862, "title": "The Candida genome database incorporates multiple Candida species: multispecies search and analysis tools with curated gene and protein information for Candida albicans and Candida glabrata.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr945", "authors": "Inglis DO., Arnaud MB., Binkley J., Shah P., Skrzypek MS., Wymore F., Binkley G., Miyasato SR., Simison M., Sherlock G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr945", "created_at": "2021-09-30T08:25:06.676Z", "updated_at": "2021-09-30T08:25:06.676Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1861", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:34.212Z", "metadata": {"doi": "10.25504/FAIRsharing.7vjq5t", "name": "PDBsum; at-a-glance overview of macromolecular structures", "status": "ready", "contacts": [{"contact-name": "Roman Laskowski", "contact-email": "roman@ebi.ac.uk", "contact-orcid": "0000-0001-5528-0087"}], "homepage": "http://www.ebi.ac.uk/pdbsum", "citations": [{"doi": "10.1002/pro.3289", "pubmed-id": 28875543, "publication-id": 1601}], "identifier": 1861, "description": "PDBsum provides an overview of every macromolecular structure deposited in the Protein Data Bank (PDB), giving schematic diagrams of the molecules in each structure and of the interactions between them.", "abbreviation": "PDBsum", "support-links": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?pdbcode=n/a&template=doc_about.html", "name": "About PDBsum", "type": "Help documentation"}], "year-creation": 1997, "data-processes": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?doc=TRUE&template=downloads.html&pdbcode=n/a", "name": "Download", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?pdbcode=n/a&template=pdb_index.html&s=1", "name": "Browse PDB Codes", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?pdbcode=n/a&template=hetletters.html&s=1", "name": "Browse Het Groups", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?pdbcode=n/a&template=ligletters.html&s=1", "name": "Browse Ligands", "type": "data access"}, {"url": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/drugport/GetPage.pl?template=drugindex_pdb.html", "name": "Browse Drugs", "type": "data access"}], "associated-tools": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/pdbsum/Generate.html", "name": "PDBsum Generate"}]}, "legacy-ids": ["biodbcore-000323", "bsg-d000323"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology"], "domains": ["Molecular interaction", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: PDBsum; at-a-glance overview of macromolecular structures", "abbreviation": "PDBsum", "url": "https://fairsharing.org/10.25504/FAIRsharing.7vjq5t", "doi": "10.25504/FAIRsharing.7vjq5t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDBsum provides an overview of every macromolecular structure deposited in the Protein Data Bank (PDB), giving schematic diagrams of the molecules in each structure and of the interactions between them.", "publications": [{"id": 1491, "pubmed_id": 24153109, "title": "PDBsum additions.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt940", "authors": "de Beer TA,Berka K,Thornton JM,Laskowski RA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt940", "created_at": "2021-09-30T08:25:06.942Z", "updated_at": "2021-09-30T11:29:10.676Z"}, {"id": 1601, "pubmed_id": 28875543, "title": "PDBsum: Structural summaries of PDB entries.", "year": 2017, "url": "http://doi.org/10.1002/pro.3289", "authors": "Laskowski RA,Jablonska J,Pravda L,Varekova RS,Thornton JM", "journal": "Protein Sci", "doi": "10.1002/pro.3289", "created_at": "2021-09-30T08:25:19.495Z", "updated_at": "2021-09-30T08:25:19.495Z"}, {"id": 1602, "pubmed_id": 18996896, "title": "PDBsum new things.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn860", "authors": "Laskowski RA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn860", "created_at": "2021-09-30T08:25:19.601Z", "updated_at": "2021-09-30T11:29:15.403Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 398, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2714", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T11:02:12.000Z", "updated-at": "2021-11-24T13:17:24.241Z", "metadata": {"doi": "10.25504/FAIRsharing.KoKgH7", "name": "SoyMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://mines.legumeinfo.org/soymine", "identifier": 2714, "description": "This mine integrates many types of data for soybean. It is currently under development by LIS, built from the LIS chado database (genomic data) and the SoyBase database (genetic data) as well as other resources", "abbreviation": "SoyMine", "access-points": [{"url": "https://mines.legumeinfo.org/soymine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/soymine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/soymine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/soymine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/soymine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/soymine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001212", "bsg-d001212"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Life Science"], "domains": [], "taxonomies": ["Glycine max"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SoyMine", "abbreviation": "SoyMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.KoKgH7", "doi": "10.25504/FAIRsharing.KoKgH7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This mine integrates many types of data for soybean. It is currently under development by LIS, built from the LIS chado database (genomic data) and the SoyBase database (genetic data) as well as other resources", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1319, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1839", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.620Z", "metadata": {"doi": "10.25504/FAIRsharing.k4sp7m", "name": "PDB-REPRDB", "status": "deprecated", "contacts": [{"contact-name": "General Enquiries", "contact-email": "papia-help@cbrc.jp"}], "homepage": "http://mbs.cbrc.jp/pdbreprdb-cgi/reprdb_menu.pl", "identifier": 1839, "description": "PDB-REPRDB is a reorganized database of protein chains from PDB(Protein Data Bank), and provides 'the list of the representative protein chains' and 'the list of similar protein chain groups'.", "abbreviation": "PDB-REPRDB", "support-links": [{"url": "http://mbs.cbrc.jp/pdbreprdb/howtouse/howtouse_pdbreprdb_dynamic.html", "type": "Help documentation"}], "year-creation": 2002, "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000299", "bsg-d000299"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein structure", "Structure", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: PDB-REPRDB", "abbreviation": "PDB-REPRDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.k4sp7m", "doi": "10.25504/FAIRsharing.k4sp7m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDB-REPRDB is a reorganized database of protein chains from PDB(Protein Data Bank), and provides 'the list of the representative protein chains' and 'the list of similar protein chain groups'.", "publications": [{"id": 360, "pubmed_id": 12520060, "title": "PDB-REPRDB: a database of representative protein chains from the Protein Data Bank (PDB) in 2003.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg022", "authors": "Noguchi T., Akiyama Y.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg022", "created_at": "2021-09-30T08:22:58.707Z", "updated_at": "2021-09-30T08:22:58.707Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 297, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1844", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:53.679Z", "metadata": {"doi": "10.25504/FAIRsharing.353yat", "name": "DrugBank", "status": "ready", "contacts": [{"contact-name": "David Wishart", "contact-email": "david.wishart@ualberta.ca", "contact-orcid": "0000-0002-3207-2434"}], "homepage": "http://www.drugbank.ca/", "identifier": 1844, "description": "The DrugBank database is a freely available bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information.", "abbreviation": "DrugBank", "support-links": [{"url": "http://feedback.wishartlab.com/?site=drugbank", "type": "Contact form"}, {"url": "http://www.drugbank.ca/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.drugbank.ca/help", "type": "Help documentation"}, {"url": "http://www.drugbank.ca/documentation", "type": "Help documentation"}, {"url": "https://twitter.com/DrugBankDB", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "http://www.drugbank.ca/downloads", "name": "Download", "type": "data access"}, {"url": "http://www.drugbank.ca/drugs?type=approved", "name": "Browse", "type": "data access"}, {"url": "http://www.drugbank.ca/documentation/search", "name": "Advanced Search", "type": "data access"}, {"url": "http://www.drugbank.ca/search/textquery", "name": "Text Query", "type": "data access"}, {"url": "http://www.drugbank.ca/search/chemquery", "name": "ChemQuery", "type": "data access"}, {"url": "http://www.drugbank.ca/pharmabrowse", "name": "PharmaBrowse", "type": "data access"}], "associated-tools": [{"url": "http://www.drugbank.ca/search/seqquery", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010544", "name": "re3data:r3d100010544", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002700", "name": "SciCrunch:RRID:SCR_002700", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000304", "bsg-d000304"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Drug", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: DrugBank", "abbreviation": "DrugBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.353yat", "doi": "10.25504/FAIRsharing.353yat", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The DrugBank database is a freely available bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information.", "publications": [{"id": 1156, "pubmed_id": 24203711, "title": "DrugBank 4.0: shedding new light on drug metabolism.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1068", "authors": "Law V,Knox C,Djoumbou Y,Jewison T,Guo AC,Liu Y,Maciejewski A,Arndt D,Wilson M,Neveu V,Tang A,Gabriel G,Ly C,Adamjee S,Dame ZT,Han B,Zhou Y,Wishart DS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1068", "created_at": "2021-09-30T08:24:28.555Z", "updated_at": "2021-09-30T11:29:01.009Z"}, {"id": 1481, "pubmed_id": 21059682, "title": "DrugBank 3.0: a comprehensive resource for 'omics' research on drugs.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1126", "authors": "Knox C,Law V,Jewison T,Liu P,Ly S,Frolkis A,Pon A,Banco K,Mak C,Neveu V,Djoumbou Y,Eisner R,Guo AC,Wishart DS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1126", "created_at": "2021-09-30T08:25:05.824Z", "updated_at": "2021-09-30T11:29:10.168Z"}, {"id": 1482, "pubmed_id": 18048412, "title": "DrugBank: a knowledgebase for drugs, drug actions and drug targets.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm958", "authors": "Wishart DS,Knox C,Guo AC,Cheng D,Shrivastava S,Tzur D,Gautam B,Hassanali M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm958", "created_at": "2021-09-30T08:25:05.923Z", "updated_at": "2021-09-30T11:29:10.276Z"}, {"id": 1494, "pubmed_id": 16381955, "title": "DrugBank: a comprehensive resource for in silico drug discovery and exploration.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj067", "authors": "Wishart DS,Knox C,Guo AC,Shrivastava S,Hassanali M,Stothard P,Chang Z,Woolsey J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj067", "created_at": "2021-09-30T08:25:07.300Z", "updated_at": "2021-09-30T11:29:10.876Z"}], "licence-links": [{"licence-name": "Drugbank - License required for commercial use", "licence-id": 253, "link-id": 529, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2534", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-14T14:58:18.000Z", "updated-at": "2021-11-24T13:19:36.009Z", "metadata": {"doi": "10.25504/FAIRsharing.d33rx4", "name": "ChannelsDB", "status": "deprecated", "contacts": [{"contact-name": "Karel Berka", "contact-email": "karel.berka@upol.cz", "contact-orcid": "0000-0001-9472-2589"}], "homepage": "https://ncbr.muni.cz/ChannelsDB/", "citations": [], "identifier": 2534, "description": "ChannelsDB is a comprehensive and regularly updated resource of channels, pores and tunnels found in biomacromolecules deposited in the Protein Data Bank.", "abbreviation": "ChannelsDB", "access-points": [{"url": "https://webchemdev.ncbr.muni.cz/ChannelsDB/documentation.html#db-api", "name": "Information for REST Access", "type": "REST"}], "support-links": [{"url": "https://webchemdev.ncbr.muni.cz/ChannelsDB/documentation.html", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://webchemdev.ncbr.muni.cz/ChannelsDB/contribute.html", "name": "web interface", "type": "data curation"}], "associated-tools": [{"url": "http://mole.upol.cz/", "name": "MOLE 2.5"}, {"url": "https://litemol.org/", "name": "Litemol"}], "deprecation-date": "2021-11-08", "deprecation-reason": "This resource does not have an active homepage, and a new one is unavailable. Please get in touch with us if you have more information."}, "legacy-ids": ["biodbcore-001017", "bsg-d001017"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Channel", "Molecular structure", "Protein structure", "Molecular function", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": ["Physical properties"], "countries": ["Czech Republic"], "name": "FAIRsharing record for: ChannelsDB", "abbreviation": "ChannelsDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.d33rx4", "doi": "10.25504/FAIRsharing.d33rx4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChannelsDB is a comprehensive and regularly updated resource of channels, pores and tunnels found in biomacromolecules deposited in the Protein Data Bank.", "publications": [{"id": 1970, "pubmed_id": 29036719, "title": "ChannelsDB: database of biomacromolecular tunnels and pores.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx868", "authors": "Pravda L,Sehnal D,Svobodova Varekova R,Navratilova V,Tousek D,Berka K,Otyepka M,Koca J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx868", "created_at": "2021-09-30T08:26:01.713Z", "updated_at": "2021-09-30T11:29:25.010Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2854", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-12T13:32:59.000Z", "updated-at": "2021-11-24T13:20:01.467Z", "metadata": {"doi": "10.25504/FAIRsharing.uxwZ3f", "name": "LocustMine", "status": "ready", "contacts": [{"contact-name": "Pengcheng Yang", "contact-email": "yangpc@biols.ac.cn", "contact-orcid": "0000-0001-5496-8357"}], "homepage": "http://locustmine.org:8080/locustmine/begin.do", "citations": [{"doi": "10.1007/s13238-019-0648-6", "pubmed-id": 31292921, "publication-id": 648}], "identifier": 2854, "description": "An integrated Omics data warehouse for Locust, Locusta migratoria", "abbreviation": "LocustMine", "access-points": [{"url": "http://locustmine.org:8080/locustmine/api.do", "name": "API (Perl, Ruby, Python, Java)", "type": "REST"}], "year-creation": 2019, "data-processes": [{"url": "http://locustmine.org:8080/locustmine/templates.do", "name": "Browse Templates", "type": "data access"}, {"url": "http://locustmine.org:8080/locustmine/bag.do", "name": "Create Lists", "type": "data access"}, {"url": "http://locustmine.org:8080/locustmine/genomicRegionSearch.do", "name": "Genomic Region Search", "type": "data access"}], "associated-tools": [{"url": "http://locustmine.org:8080/locustmine/customQuery.do", "name": "QueryBuilder"}, {"url": "http://www.locustmine.org/viroblast/viroblast.php", "name": "BLAST"}, {"url": "http://locustmine.org/jbrowse/JBrowse-1.16.3/", "name": "JBrowse"}]}, "legacy-ids": ["biodbcore-001355", "bsg-d001355"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Bioinformatics", "Transcriptomics"], "domains": ["Expression data", "Gene functional annotation", "Protein interaction", "Gene expression", "Biological regulation", "Gene", "Homologous", "Genome"], "taxonomies": ["Locusta migratoria"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: LocustMine", "abbreviation": "LocustMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.uxwZ3f", "doi": "10.25504/FAIRsharing.uxwZ3f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: An integrated Omics data warehouse for Locust, Locusta migratoria", "publications": [{"id": 648, "pubmed_id": 31292921, "title": "Core transcriptional signatures of phase change in the migratory locust.", "year": 2019, "url": "http://doi.org/10.1007/s13238-019-0648-6", "authors": "Yang P,Hou L,Wang X,Kang L", "journal": "Protein Cell", "doi": "10.1007/s13238-019-0648-6", "created_at": "2021-09-30T08:23:31.311Z", "updated_at": "2021-09-30T08:23:31.311Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 194, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2715", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T13:13:34.000Z", "updated-at": "2021-11-24T13:17:54.311Z", "metadata": {"doi": "10.25504/FAIRsharing.sDwGp9", "name": "MedicMine", "status": "ready", "contacts": [{"contact-email": "support@medicagogenome.org"}], "homepage": "http://medicmine.jcvi.org/medicmine", "identifier": 2715, "description": "MedicMine integrates many types of data for Medicago truncatula. You can run flexible queries, export results and analyse lists of genes.", "abbreviation": "MedicMine", "access-points": [{"url": "http://medicmine.jcvi.org/medicmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://medicmine.jcvi.org/medicmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2014, "data-processes": [{"url": "http://medicmine.jcvi.org/medicmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://medicmine.jcvi.org/medicmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://medicmine.jcvi.org/medicmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://medicmine.jcvi.org/medicmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001213", "bsg-d001213"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Molecular function", "Gene expression", "Protein", "Homologous"], "taxonomies": ["Medicago truncatula"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MedicMine", "abbreviation": "MedicMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.sDwGp9", "doi": "10.25504/FAIRsharing.sDwGp9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MedicMine integrates many types of data for Medicago truncatula. You can run flexible queries, export results and analyse lists of genes.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 788, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1852", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:29.751Z", "metadata": {"doi": "10.25504/FAIRsharing.7zffgc", "name": "Gene Ontology Annotation Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "goa@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/GOA", "citations": [{"doi": "10.1093/nar/gku1113", "pubmed-id": 25378336, "publication-id": 1578}], "identifier": 1852, "description": "The GO Annotation Database (GOA) provides Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB), RNA molecules from RNACentral and protein complexes from the Complex Portal. GOA files contain a mixture of manual annotation supplied by members of the Gene Onotology Consortium and computationally assigned GO terms describing gene products. Annotation type is clearly indicated by associated evidence codes and there are links to the source data.", "abbreviation": "GOA", "support-links": [{"url": "http://www.ebi.ac.uk/GOA/contactus", "name": "Contact GOA", "type": "Contact form"}, {"url": "https://www.ebi.ac.uk/GOA/faq", "name": "GOA FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ebi.ac.uk/GOA/newto", "name": "GOA Annotation Guide", "type": "Help documentation"}], "data-processes": [{"name": "Manual and automated curation", "type": "data curation"}, {"url": "ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/", "name": "Download (FTP)", "type": "data release"}, {"url": "http://www.ebi.ac.uk/GOA/searching", "name": "Search Options", "type": "data access"}, {"url": "http://www.ebi.ac.uk/GOA/contribute", "name": "Contributing to GOA", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/GOA/downloads", "name": "Download Options", "type": "data release"}, {"name": "releases approximately every four weeks", "type": "data release"}]}, "legacy-ids": ["biodbcore-000313", "bsg-d000313"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biology"], "domains": ["Gene Ontology enrichment", "Annotation", "Ribonucleic acid", "Protein-containing complex", "Protein", "Gene"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Gene Ontology Annotation Database", "abbreviation": "GOA", "url": "https://fairsharing.org/10.25504/FAIRsharing.7zffgc", "doi": "10.25504/FAIRsharing.7zffgc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GO Annotation Database (GOA) provides Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB), RNA molecules from RNACentral and protein complexes from the Complex Portal. GOA files contain a mixture of manual annotation supplied by members of the Gene Onotology Consortium and computationally assigned GO terms describing gene products. Annotation type is clearly indicated by associated evidence codes and there are links to the source data.", "publications": [{"id": 350, "pubmed_id": 18957448, "title": "The GOA database in 2009--an integrated Gene Ontology Annotation resource.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn803", "authors": "Barrell D., Dimmer E., Huntley RP., Binns D., O'Donovan C., Apweiler R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn803", "created_at": "2021-09-30T08:22:57.674Z", "updated_at": "2021-09-30T08:22:57.674Z"}, {"id": 1578, "pubmed_id": 25378336, "title": "The GOA database: gene Ontology annotation updates for 2015.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1113", "authors": "Huntley RP,Sawford T,Mutowo-Meullenet P,Shypitsyna A,Bonilla C,Martin MJ,O'Donovan C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1113", "created_at": "2021-09-30T08:25:16.884Z", "updated_at": "2021-09-30T11:29:14.411Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2368, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2099", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:34.573Z", "metadata": {"doi": "10.25504/FAIRsharing.h8r843", "name": "PRINTS", "status": "ready", "contacts": [{"contact-name": "Teresa K Attwood", "contact-email": "teresa.k.attwood@manchester.ac.uk"}], "homepage": "http://www.bioinf.manchester.ac.uk/dbbrowser/PRINTS/PRINTS.html", "citations": [{"doi": "10.1093/nar/gkg030", "pubmed-id": 12520033, "publication-id": 1584}], "identifier": 2099, "description": "PRINTS is a collection of groups of conserved protein motifs, called fingerprints, used to define a protein family. A fingerprint is a group of conserved motifs used to characterize a protein family. Usually, the motifs do not overlap, though they may be contiguous in 3D space. Fingerprints can encode protein folds and functionalities more flexibly than single motifs. Please note that the last release of this database on the PRINTS website was in 2007.", "abbreviation": "PRINTS", "support-links": [{"url": "http://130.88.97.239/PRINTS/printsman.html", "name": "User Guide", "type": "Help documentation"}, {"url": "http://130.88.97.239/PRINTS/relnotes.html", "name": "Release Notes", "type": "Help documentation"}, {"url": "http://130.88.97.239/PRINTS/whatsnew.html", "name": "What's New", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/prints-a-protein-family-database-with-a-difference", "name": "Prints a protein family database with a difference", "type": "TeSS links to training materials"}, {"url": "https://en.wikipedia.org/wiki/PRINTS", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1994, "data-processes": [{"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_accession_number.html", "name": "Search by Accession", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_text.html", "name": "Search by Text", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_database_title_line.html", "name": "Search by Database Titles", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_PRINTS_code.html", "name": "Search by PRINTS code", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_sequence.html", "name": "Search by Sequence", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_SMITE.html", "name": "Search by Query Language", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_database_code.html", "name": "Search by Database Code", "type": "data access"}, {"url": "http://130.88.97.239/PRINTS/PRINTS_search_via_number_of_motifs.html", "name": "Search by Number of Motifs", "type": "data access"}, {"url": "http://ftp.ebi.ac.uk/pub/databases/prints/", "name": "Download (EBI FTP)", "type": "data release"}], "associated-tools": [{"url": "http://www.bioinf.manchester.ac.uk/dbbrowser/fingerPRINTScan/", "name": "FingerPRINTScan"}]}, "legacy-ids": ["biodbcore-000568", "bsg-d000568"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Structural Biology", "Biology"], "domains": ["Protein domain", "Binding motif", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["Polypeptide motif"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: PRINTS", "abbreviation": "PRINTS", "url": "https://fairsharing.org/10.25504/FAIRsharing.h8r843", "doi": "10.25504/FAIRsharing.h8r843", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PRINTS is a collection of groups of conserved protein motifs, called fingerprints, used to define a protein family. A fingerprint is a group of conserved motifs used to characterize a protein family. Usually, the motifs do not overlap, though they may be contiguous in 3D space. Fingerprints can encode protein folds and functionalities more flexibly than single motifs. Please note that the last release of this database on the PRINTS website was in 2007.", "publications": [{"id": 1570, "pubmed_id": 10705433, "title": "FingerPRINTScan: intelligent searching of the PRINTS motif database.", "year": 2000, "url": "http://doi.org/10.1093/bioinformatics/15.10.799", "authors": "Scordis P., Flower DR., Attwood TK.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/15.10.799", "created_at": "2021-09-30T08:25:16.003Z", "updated_at": "2021-09-30T08:25:16.003Z"}, {"id": 1584, "pubmed_id": 12520033, "title": "PRINTS and its automatic supplement, prePRINTS.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg030", "authors": "Attwood TK,Bradley P,Flower DR,Gaulton A,Maudling N,Mitchell AL,Moulton G,Nordle A,Paine K,Taylor P,Uddin A,Zygouri C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg030", "created_at": "2021-09-30T08:25:17.559Z", "updated_at": "2021-09-30T11:29:14.711Z"}, {"id": 1586, "pubmed_id": 22508994, "title": "The PRINTS database: a fine-grained protein sequence annotation and analysis resource--its status in 2012.", "year": 2012, "url": "http://doi.org/10.1093/database/bas019", "authors": "Attwood TK,Coletta A,Muirhead G,Pavlopoulou A,Philippou PB,Popov I,Roma-Mateo C,Theodosiou A,Mitchell AL", "journal": "Database (Oxford)", "doi": "10.1093/database/bas019", "created_at": "2021-09-30T08:25:17.852Z", "updated_at": "2021-09-30T08:25:17.852Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2716", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T13:35:26.000Z", "updated-at": "2021-11-24T13:17:54.518Z", "metadata": {"doi": "10.25504/FAIRsharing.2Fwl0E", "name": "BovineMine", "status": "ready", "contacts": [{"contact-name": "Bovine Genome Database Administrator", "contact-email": "bovinegenome@gmail.com"}], "homepage": "http://bovinegenome.org/bovinemine", "identifier": 2716, "description": "BovineMine integrates the bovine reference genome assembly with many other biological data sets, including genomes of other species. The sheep and goat genomes allow comparison across ruminants. Model organism data (human, mouse, rat) allow well-curated data sets to be applied to ruminants using orthology.", "abbreviation": "BovineMine", "access-points": [{"url": "http://bovinegenome.org/bovinemine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://bovinegenome.org/bovinemine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "http://bovinegenome.org/bovinemine/network.do", "name": "Data Model", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://bovinegenome.org/bovinemine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://bovinegenome.org/bovinemine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://bovinegenome.org/bovinemine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://bovinegenome.org/bovinemine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001214", "bsg-d001214"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics"], "domains": ["Model organism", "Molecular function", "Molecular interaction", "Protein", "Gene", "Homologous", "Orthologous"], "taxonomies": ["Bos taurus", "Capra hircus", "Homo sapiens", "Mus musculus", "Ovis aries", "Rattus norvegicus"], "user-defined-tags": ["genomic variation"], "countries": ["United States"], "name": "FAIRsharing record for: BovineMine", "abbreviation": "BovineMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.2Fwl0E", "doi": "10.25504/FAIRsharing.2Fwl0E", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BovineMine integrates the bovine reference genome assembly with many other biological data sets, including genomes of other species. The sheep and goat genomes allow comparison across ruminants. Model organism data (human, mouse, rat) allow well-curated data sets to be applied to ruminants using orthology.", "publications": [{"id": 2272, "pubmed_id": 26481361, "title": "Bovine Genome Database: new tools for gleaning function from the Bos taurus genome.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1077", "authors": "Elsik CG,Unni DR,Diesh CM,Tayal A,Emery ML,Nguyen HN,Hagen DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1077", "created_at": "2021-09-30T08:26:36.705Z", "updated_at": "2021-09-30T11:29:32.194Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 463, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3189", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-14T11:46:42.000Z", "updated-at": "2021-12-06T10:47:38.373Z", "metadata": {"name": "MycoCosm", "status": "ready", "contacts": [{"contact-name": "Igor Grigoriev", "contact-email": "ivgrigoriev@lbl.gov"}], "homepage": "https://mycocosm.jgi.doe.gov/mycocosm/home", "citations": [{"doi": "10.1093/nar/gkt1183", "pubmed-id": 24297253, "publication-id": 3052}], "identifier": 3189, "description": "MycoCosm provides data access, visualization, and analysis tools for comparative genomics of fungi. MycoCosm enables users to navigate across sequenced fungal genomes, and to conduct comparative and genome-centric analyses of fungi and community annotation.", "abbreviation": "MycoCosm", "support-links": [{"url": "ishabalov@lbl.gov", "name": "Igor Shabalov", "type": "Support email"}, {"url": "https://jgi.doe.gov/our-science/science-programs/fungal-genomics/mycocosm-jgi-fungal-portal/", "name": "About", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://mycocosm.jgi.doe.gov/mycocosm/home", "name": "Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011751", "name": "re3data:r3d100011751", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005312", "name": "SciCrunch:RRID:SCR_005312", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001700", "bsg-d001700"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Comparative Genomics"], "domains": ["Annotation"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MycoCosm", "abbreviation": "MycoCosm", "url": "https://fairsharing.org/fairsharing_records/3189", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MycoCosm provides data access, visualization, and analysis tools for comparative genomics of fungi. MycoCosm enables users to navigate across sequenced fungal genomes, and to conduct comparative and genome-centric analyses of fungi and community annotation.", "publications": [{"id": 3052, "pubmed_id": 24297253, "title": "MycoCosm portal: gearing up for 1000 fungal genomes.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1183", "authors": "Grigoriev IV,Nikitin R,Haridas S,Kuo A,Ohm R,Otillar R,Riley R,Salamov A,Zhao X,Korzeniewski F,Smirnova T,Nordberg H,Dubchak I,Shabalov I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1183", "created_at": "2021-09-30T08:28:16.097Z", "updated_at": "2021-09-30T11:29:50.220Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2336", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-29T09:03:20.000Z", "updated-at": "2021-11-24T13:19:32.765Z", "metadata": {"doi": "10.25504/FAIRsharing.c9psgb", "name": "ValidatorDB", "status": "ready", "contacts": [{"contact-name": "David Sehnal", "contact-email": "david.sehnal@gmail.com", "contact-orcid": "0000-0002-0682-3089"}], "homepage": "http://webchem.ncbr.muni.cz/Platform/ValidatorDB", "identifier": 2336, "description": "ValidatorDB is a collection of validation results for the entire Protein Data Bank. Annotation (3-letter code) of HET residues larger than 6 heavy atoms is inspected, i.e. if the residue has the same topology and stereochemistry as the model ligand or residue stored in the wwCCD. Validation reports for the entire database can be inspected as well as for the arbitrary set of PDB entries or PDB annotations (3-letter residue code). Results are available in graphical form via Web UI and can be downloaded in the form of CSV files for further inspection.", "abbreviation": "ValidatorDB", "support-links": [{"url": "http://webchem.ncbr.muni.cz/Wiki/ValidatorDB:UserManual", "type": "Help documentation"}, {"url": "https://www.slideshare.net/lukypravda/validatordb-first-time-user-guide-37728902", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"name": "addition of new validation for new PDBID", "type": "data curation"}, {"url": "http://webchem.ncbr.muni.cz/Platform/ValidatorDB", "name": "browse & search", "type": "data access"}], "associated-tools": [{"url": "http://webchem.ncbr.muni.cz/Platform/MotiveValidator", "name": "MotiveValidator 1"}]}, "legacy-ids": ["biodbcore-000813", "bsg-d000813"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Ligand", "Small molecule", "Structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: ValidatorDB", "abbreviation": "ValidatorDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.c9psgb", "doi": "10.25504/FAIRsharing.c9psgb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ValidatorDB is a collection of validation results for the entire Protein Data Bank. Annotation (3-letter code) of HET residues larger than 6 heavy atoms is inspected, i.e. if the residue has the same topology and stereochemistry as the model ligand or residue stored in the wwCCD. Validation reports for the entire database can be inspected as well as for the arbitrary set of PDB entries or PDB annotations (3-letter residue code). Results are available in graphical form via Web UI and can be downloaded in the form of CSV files for further inspection.", "publications": [{"id": 1620, "pubmed_id": 25392418, "title": "ValidatorDB: database of up-to-date validation results for ligands and non-standard residues from the Protein Data Bank.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1118", "authors": "Sehnal D,Svobodova Varekova R,Pravda L,Ionescu CM,Geidl S,Horsky V,Jaiswal D,Wimmerova M,Koca J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1118", "created_at": "2021-09-30T08:25:21.517Z", "updated_at": "2021-09-30T11:29:16.420Z"}], "licence-links": [{"licence-name": "ValidatorDB Terms of Use", "licence-id": 837, "link-id": 1523, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2642", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-06T08:28:25.000Z", "updated-at": "2022-02-08T10:38:41.167Z", "metadata": {"doi": "10.25504/FAIRsharing.8f0be4", "name": "MitoProteome", "status": "ready", "contacts": [{"contact-name": "Eoin Fahy", "contact-email": "efahy@ucsd.edu"}], "homepage": "http://www.mitoproteome.org/", "identifier": 2642, "description": "MitoProteome is a mitochondrial protein sequence database and annotation system. The initial release contains 847 human mitochondrial protein sequences, derived from public sequence databases and mass spectrometric analysis of highly purified human heart mitochondria.", "abbreviation": "MitoProteome", "year-creation": 2003, "data-processes": [{"url": "http://www.mitoproteome.org/", "name": "search", "type": "data access"}, {"url": "http://www.mitoproteome.org/MITO_table.php", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001133", "bsg-d001133"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Mitochondrion", "Mass spectrometry assay", "Protein", "Amino acid sequence"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Mitochondrial gene annotation correction"], "countries": ["United States"], "name": "FAIRsharing record for: MitoProteome", "abbreviation": "MitoProteome", "url": "https://fairsharing.org/10.25504/FAIRsharing.8f0be4", "doi": "10.25504/FAIRsharing.8f0be4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MitoProteome is a mitochondrial protein sequence database and annotation system. The initial release contains 847 human mitochondrial protein sequences, derived from public sequence databases and mass spectrometric analysis of highly purified human heart mitochondria.", "publications": [{"id": 1592, "pubmed_id": 14681458, "title": "MitoProteome: mitochondrial protein sequence database and annotation system.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh048", "authors": "Cotter D,Guda P,Fahy E,Subramaniam S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh048", "created_at": "2021-09-30T08:25:18.482Z", "updated_at": "2021-09-30T11:29:15.135Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1966", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:16.344Z", "metadata": {"doi": "10.25504/FAIRsharing.46s4nt", "name": "The Consensus CDS", "status": "ready", "contacts": [{"contact-name": "Kim D. Pruitt", "contact-email": "Pruitt@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/CCDS/", "identifier": 1966, "description": "The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The long term goal is to support convergence towards a standard set of gene annotations.", "abbreviation": "CCDS", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/projects/CCDS/UserRequest/UserRequest.cgi", "type": "Contact form"}, {"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}], "year-creation": 2005, "data-processes": [{"url": "ftp://ftp.ncbi.nlm.nih.gov/pub/CCDS/", "name": "download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000432", "bsg-d000432"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Consensus CDS", "abbreviation": "CCDS", "url": "https://fairsharing.org/10.25504/FAIRsharing.46s4nt", "doi": "10.25504/FAIRsharing.46s4nt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The long term goal is to support convergence towards a standard set of gene annotations.", "publications": [{"id": 1930, "pubmed_id": 19498102, "title": "The consensus coding sequence (CCDS) project: Identifying a common protein-coding gene set for the human and mouse genomes.", "year": 2009, "url": "http://doi.org/10.1101/gr.080531.108", "authors": "Pruitt KD. et al.", "journal": "Genome Res.", "doi": "10.1101/gr.080531.108", "created_at": "2021-09-30T08:25:57.214Z", "updated_at": "2021-09-30T08:25:57.214Z"}], "licence-links": [{"licence-name": "CCDS Attribution required", "licence-id": 107, "link-id": 1635, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1636, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1637, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2626", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-31T13:19:25.000Z", "updated-at": "2022-02-08T10:38:27.595Z", "metadata": {"doi": "10.25504/FAIRsharing.fc7b9f", "name": "Vertebrate Secretome Database", "status": "ready", "contacts": [{"contact-name": "Jos\u00e9 L. Lav\u00edn", "contact-email": "jllavin@cicbiogune.es", "contact-orcid": "0000-0003-0914-3211"}], "homepage": "http://genomics.cicbiogune.es/VerSeDa/index.php", "identifier": 2626, "description": "Vertebrate Secretome Database (VerSeDa) stores information about proteins that are predicted to be secreted through the classical and non-classical mechanisms, for the wide range of vertebrate species deposited at the NCBI, UCSC and ENSEMBL sites.", "abbreviation": "VerSeDa", "support-links": [{"url": "http://genomics.cicbiogune.es/VerSeDa/ContactUs.php", "type": "Contact form"}, {"url": "gap@cicbiogune.es", "type": "Support email"}, {"url": "http://genomics.cicbiogune.es/VerSeDa/Help.php", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://genomics.cicbiogune.es/VerSeDa/FullOrganisms.php", "name": "Search", "type": "data access"}, {"url": "http://genomics.cicbiogune.es/VerSeDa/UserQuery.php", "name": "Query", "type": "data access"}, {"url": "http://genomics.cicbiogune.es/VerSeDa/Blast.php", "name": "Blast", "type": "data access"}, {"url": "http://genomics.cicbiogune.es/VerSeDa/downloads.php", "name": "Download", "type": "data access"}, {"url": "http://genomics.cicbiogune.es/VerSeDa/SubmitInfo.php", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001115", "bsg-d001115"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Protein secretion", "Protein", "Amino acid sequence"], "taxonomies": ["Vertebrata"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Vertebrate Secretome Database", "abbreviation": "VerSeDa", "url": "https://fairsharing.org/10.25504/FAIRsharing.fc7b9f", "doi": "10.25504/FAIRsharing.fc7b9f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Vertebrate Secretome Database (VerSeDa) stores information about proteins that are predicted to be secreted through the classical and non-classical mechanisms, for the wide range of vertebrate species deposited at the NCBI, UCSC and ENSEMBL sites.", "publications": [{"id": 224, "pubmed_id": 28365718, "title": "VerSeDa: vertebrate secretome database.", "year": 2017, "url": "http://doi.org/10.1093/database/baw171", "authors": "Cortazar AR,Oguiza JA,Aransay AM,Lavin JL", "journal": "Database (Oxford)", "doi": "10.1093/database/baw171", "created_at": "2021-09-30T08:22:44.247Z", "updated_at": "2021-09-30T08:22:44.247Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1881", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:20.249Z", "metadata": {"doi": "10.25504/FAIRsharing.vk0ax6", "name": "MicrosporidiaDB", "status": "ready", "contacts": [{"contact-name": "Michael Gottlieb", "contact-email": "mgottlieb@fnih.org"}], "homepage": "http://microsporidiadb.org/micro/", "identifier": 1881, "description": "MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "abbreviation": "MicrosporidiaDB", "access-points": [{"url": "http://microsporidiadb.org/micro/serviceList.jsp", "name": "WADLs web services", "type": "Other"}], "support-links": [{"url": "http://microsporidiadb.org/micro/contact.do", "type": "Contact form"}, {"url": "http://microsporidiadb.org/micro/showXmlDataContent.do?name=XmlQuestions.Tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/EuPathDB", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://plasmodb.org/plasmo/app/static-content/dataSubmission.html", "name": "Submit", "type": "data curation"}, {"url": "http://microsporidiadb.org/common/downloads/", "name": "Download", "type": "data access"}, {"url": "http://microsporidiadb.org/cgi-bin/gbrowse/microsporidiadb/", "name": "Gbrowse", "type": "data access"}], "associated-tools": [{"url": "http://microsporidiadb.org/micro/showQuestion.do?questionFullName=UniversalQuestions.UnifiedBlast", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012459", "name": "re3data:r3d100012459", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000346", "bsg-d000346"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Pathogen", "Genome"], "taxonomies": ["Eukaryota", "Microsporidia"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MicrosporidiaDB", "abbreviation": "MicrosporidiaDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.vk0ax6", "doi": "10.25504/FAIRsharing.vk0ax6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "publications": [{"id": 72, "pubmed_id": 19914931, "title": "EuPathDB: a portal to eukaryotic pathogen databases.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp941", "authors": "Aurrecoechea C., Brestelli J., Brunk BP. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp941", "created_at": "2021-09-30T08:22:27.954Z", "updated_at": "2021-09-30T08:22:27.954Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 355, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3070", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-10T17:18:47.000Z", "updated-at": "2021-11-24T13:17:00.689Z", "metadata": {"doi": "10.25504/FAIRsharing.EZZFFd", "name": "ClinEpiDB", "status": "ready", "contacts": [{"contact-name": "ClinEpiDB help desk", "contact-email": "help@clinepidb.org"}], "homepage": "https://clinepidb.org", "citations": [{"doi": "10.12688/gatesopenres.13087.2", "pubmed-id": 32047873, "publication-id": 3008}], "identifier": 3070, "description": "ClinEpiDB is an open-access online resource for clinical and epidemiologic studies. The website allows users to visualize and subset data directly in the ClinEpiDB browser and explore potential associations. Supporting study documentation aids contextualization, and data can be downloaded for advanced analyses. By facilitating access and interrogation of large-scale data sets, ClinEpiDB aims to spur collaboration and discovery to improve global health.", "abbreviation": "ClinEpiDB", "support-links": [{"url": "https://clinepidb.org/ce/app/static-content/ClinEpiDB/news.html", "name": "News", "type": "Blog/News"}, {"url": "https://clinepidb.org/ce/app/contact-us", "name": "Contact Form", "type": "Contact form"}, {"url": "help@clinepidb.org", "name": "ClinEpiDB help desk email", "type": "Support email"}, {"url": "https://clinepidb.org/ce/app/static-content/ClinEpiDB/faq.html", "name": "ClinEpiDB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://clinepidb.org/ce/app/static-content/ClinEpiDB/resources.html", "name": "ClinEpiDB Tutorials and Resources", "type": "Training documentation"}, {"url": "https://twitter.com/ClinEpiDB", "name": "@ClinEpiDB", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://clinepidb.org/ce/app/search/dataset/Studies/result", "name": "Browse & Search Studies", "type": "data access"}]}, "legacy-ids": ["biodbcore-001578", "bsg-d001578"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Clinical Studies", "Public Health", "Health Science", "Epidemiology"], "domains": ["Infection"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom", "United States", "Uganda"], "name": "FAIRsharing record for: ClinEpiDB", "abbreviation": "ClinEpiDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.EZZFFd", "doi": "10.25504/FAIRsharing.EZZFFd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ClinEpiDB is an open-access online resource for clinical and epidemiologic studies. The website allows users to visualize and subset data directly in the ClinEpiDB browser and explore potential associations. Supporting study documentation aids contextualization, and data can be downloaded for advanced analyses. By facilitating access and interrogation of large-scale data sets, ClinEpiDB aims to spur collaboration and discovery to improve global health.", "publications": [{"id": 3008, "pubmed_id": 32047873, "title": "ClinEpiDB: an open-access clinical epidemiology database resource encouraging online exploration of complex studies.", "year": 2020, "url": "http://doi.org/10.12688/gatesopenres.13087.2", "authors": "Ruhamyankaka E,Brunk BP,Dorsey G,Harb OS,Helb DA,Judkins J,Kissinger JC,Lindsay B,Roos DS,San EJ,Stoeckert CJ,Zheng J,Tomko SS", "journal": "Gates Open Res", "doi": "10.12688/gatesopenres.13087.2", "created_at": "2021-09-30T08:28:10.866Z", "updated_at": "2021-09-30T08:28:10.866Z"}], "licence-links": [{"licence-name": "ClinEpiDB Data Access and Use Policy", "licence-id": 135, "link-id": 2021, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1899", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:36.349Z", "metadata": {"doi": "10.25504/FAIRsharing.7mnebr", "name": "Annotated regulatory Binding Sites from Orthologous Promoters", "status": "ready", "contacts": [{"contact-name": "Enrique Blanco", "contact-email": "enrique.blanco@crg.eu", "contact-orcid": "0000-0001-6261-7370"}, {"contact-name": "Emilio Palumbo", "contact-email": "emilio.palumbo@crg.eu", "contact-orcid": null}, {"contact-name": "Roderic Guigo Serra", "contact-email": "roderic.guigo@crg.eu", "contact-orcid": null}], "homepage": "https://genome.crg.es/datasets/abs2005/", "citations": [], "identifier": 1899, "description": "ABS is a database of Annotated regulatory Binding Sites from known binding sites identified in promoters of orthologous vertebrate genes.", "abbreviation": "ABS", "support-links": [{"url": "http://genome.crg.es/datasets/abs2005/docs.html", "type": "Help documentation"}, {"url": "http://genome.crg.es/datasets/abs2005/tour.html", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://genome.crg.es/datasets/abs2005/downloads.html", "name": "Download", "type": "data access"}, {"url": "http://genome.crg.es/datasets/abs2005/abs.html", "name": "Browse", "type": "data access"}, {"url": "http://genome.crg.es/datasets/abs2005/searchsites.html", "name": "Search", "type": "data access"}], "associated-tools": [{"url": "http://genome.crg.es/datasets/abs2005/constructor.html", "name": "analyze"}], "deprecation-date": null, "deprecation-reason": null}, "legacy-ids": ["biodbcore-000364", "bsg-d000364"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Regulation of gene expression", "Biological regulation", "Molecular interaction", "Promoter", "Binding site", "Gene"], "taxonomies": ["Gallus gallus", "Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: Annotated regulatory Binding Sites from Orthologous Promoters", "abbreviation": "ABS", "url": "https://fairsharing.org/10.25504/FAIRsharing.7mnebr", "doi": "10.25504/FAIRsharing.7mnebr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ABS is a database of Annotated regulatory Binding Sites from known binding sites identified in promoters of orthologous vertebrate genes.", "publications": [{"id": 381, "pubmed_id": 16381947, "title": "ABS: a database of Annotated regulatory Binding Sites from orthologous promoters.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj116", "authors": "Blanco E., Farr\u00e9 D., Alb\u00e0 MM., Messeguer X., Guig\u00f3 R.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj116", "created_at": "2021-09-30T08:23:01.309Z", "updated_at": "2021-09-30T08:23:01.309Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 405, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1906", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:13.713Z", "metadata": {"doi": "10.25504/FAIRsharing.7fc5y6", "name": "Eukaryotic Genes", "status": "ready", "contacts": [{"contact-name": "Don Gilbert", "contact-email": "eugenes@iubio.bio.indiana.edu", "contact-orcid": "0000-0002-6646-7274"}], "homepage": "http://eugenes.org/", "identifier": 1906, "description": "euGenes provides a common summary of gene and genomic information from eukaryotic organism databases including gene symbol and full name, chromosome, genetic and molecular map information, Gene Ontology (Function/Location/Process) and gene homology, product information.", "abbreviation": "euGenes", "support-links": [{"url": "http://eugenes.org/docs/", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "ftp://iubio.bio.indiana.edu/eugenes/", "name": "Download", "type": "data access"}, {"url": "http://eugenes.org", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "http://eugenes.org/tools/", "name": "euGenes Tools"}]}, "legacy-ids": ["biodbcore-000371", "bsg-d000371"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Gene name", "Gene Ontology enrichment", "Gene", "Genome"], "taxonomies": ["Anopheles gambiae", "Arabidopsis thaliana", "Caenorhabditis elegans", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Eukaryotic Genes", "abbreviation": "euGenes", "url": "https://fairsharing.org/10.25504/FAIRsharing.7fc5y6", "doi": "10.25504/FAIRsharing.7fc5y6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: euGenes provides a common summary of gene and genomic information from eukaryotic organism databases including gene symbol and full name, chromosome, genetic and molecular map information, Gene Ontology (Function/Location/Process) and gene homology, product information.", "publications": [{"id": 777, "pubmed_id": 11752277, "title": "euGenes: a eukaryote genome information system.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.145", "authors": "Gilbert, D.G.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.145", "created_at": "2021-09-30T08:23:45.619Z", "updated_at": "2021-09-30T08:23:45.619Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1984", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:50.153Z", "metadata": {"doi": "10.25504/FAIRsharing.qt5ky7", "name": "NCBI Viral Genomes Resource", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "genomes@ncbi.nlm.nih.gov"}], "homepage": "http://www.ncbi.nlm.nih.gov/genomes/VIRUSES/viruses.html", "citations": [{"doi": "10.1093/nar/gku1207", "pubmed-id": 25428358, "publication-id": 1516}], "identifier": 1984, "description": "NCBI Viral Genomes Resource is a collection of virus genomic sequences that provides curated sequence data, related information and tools. It includes all complete viral genome sequences deposited in the International Nucleotide Sequence Database Collaboration (INSDC) databases, i.e. DDBJ, EMBL, and GenBank. Data are organized by viral taxonomy, and reference sequence records (RefSeqs) from one or more genome sequences for each viral species. After a RefSeq has been created for a species, other complete genomes from that same species are indexed as neighbors to the RefSeq.", "support-links": [{"url": "info@ncbi.nlm.nih.gov", "name": "NCBI Info", "type": "Support email"}, {"url": "https://www.ncbi.nlm.nih.gov/books/NBK153522/", "name": "NCBI Handbook", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/genome/viruses/about/HowTo/", "name": "How-To Guide", "type": "Help documentation"}, {"url": "https://www.ncbi.nlm.nih.gov/genome/viruses/about/", "name": "About", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://ftp.ncbi.nlm.nih.gov/refseq/release/viral/", "name": "Download", "type": "data release"}, {"url": "https://www.ncbi.nlm.nih.gov/genomes/GenomesGroup.cgi?taxid=10239&sort=taxonomy", "name": "Browse Genomes by Family", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/genomes/GenomesGroup.cgi?taxid=10239", "name": "Browse Genomes", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/genomes/GenomesGroup.cgi?taxid=10239&cmd=download2", "name": "Download Accession Numbers", "type": "data release"}]}, "legacy-ids": ["biodbcore-000450", "bsg-d000450"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Virology"], "domains": ["Deoxyribonucleic acid", "Ribonucleic acid", "Viral genome", "Genome"], "taxonomies": ["Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Viral Genomes Resource", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.qt5ky7", "doi": "10.25504/FAIRsharing.qt5ky7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NCBI Viral Genomes Resource is a collection of virus genomic sequences that provides curated sequence data, related information and tools. It includes all complete viral genome sequences deposited in the International Nucleotide Sequence Database Collaboration (INSDC) databases, i.e. DDBJ, EMBL, and GenBank. Data are organized by viral taxonomy, and reference sequence records (RefSeqs) from one or more genome sequences for each viral species. After a RefSeq has been created for a species, other complete genomes from that same species are indexed as neighbors to the RefSeq.", "publications": [{"id": 1516, "pubmed_id": 25428358, "title": "NCBI viral genomes resource.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1207", "authors": "Brister JR,Ako-Adjei D,Bao Y,Blinkova O", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1207", "created_at": "2021-09-30T08:25:09.665Z", "updated_at": "2021-09-30T11:29:11.834Z"}], "licence-links": [{"licence-name": "NCBI Viral Genomes Resource Attribution required", "licence-id": 557, "link-id": 2027, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2030, "relation": "undefined"}, {"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 2031, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2053", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:06.706Z", "metadata": {"doi": "10.25504/FAIRsharing.rb2drw", "name": "InnateDB", "status": "ready", "contacts": [{"contact-name": "David Lynn", "contact-email": "David.Lynn@sahmri.com"}], "homepage": "http://www.innatedb.com/", "identifier": 2053, "description": "InnateDB has been developed to facilitate systems level investigations of the mammalian (human, mouse and bovine) innate immune response. Its goal is to provide a manually-curated knowledgebase of the genes, proteins, and particularly, the interactions and signaling responses involved in mammalian innate immunity. InnateDB incorporates information of the whole human, mouse and bovine interactomes by integrating interaction and pathway information from several of the major publicly available databases but aims to capture an improved coverage of the innate immunity interactome through manual curation.", "abbreviation": "InnateDB", "access-points": [{"url": "http://www.innatedb.com/accessViaWS.jsp", "name": "PSICQUIC web services", "type": "Other"}], "support-links": [{"url": "https://www.innatedb.com/news.jsp", "name": "News", "type": "Blog/News"}, {"url": "innatedb-mail@sfu.ca", "type": "Support email"}, {"url": "http://www.innatedb.com/redirect.do?go=helpfaq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.innatedb.com/redirect.do?go=helpgeneral", "type": "Help documentation"}, {"url": "https://twitter.com/innatedb", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://www.innatedb.com/doc/InnateDB_2011_curation_guide.pdf", "name": "manual curation", "type": "data curation"}, {"url": "http://www.innatedb.com/redirect.do?go=downloadCurated", "name": "Download InnateDB Curated Interactions", "type": "data access"}, {"url": "http://www.innatedb.com/browse.jsp", "name": "Browse", "type": "data access"}, {"url": "http://www.innatedb.com/redirect.do?go=searchMols", "name": "Advanced Search for Genes and Proteins", "type": "data access"}, {"url": "http://www.innatedb.com/redirect.do?go=searchIntxs", "name": "Advanced Search for Interactions", "type": "data access"}, {"url": "http://www.innatedb.com/redirect.do?go=searchPws", "name": "Pathway Advanced Search", "type": "data access"}, {"url": "http://www.innatedb.com/redirect.do?go=downloadImported", "name": "Download Imported Experimentally Validated Interactions", "type": "data access"}, {"url": "https://www.innatedb.com/annotatedGenes.do?type=innatedb", "name": "InnateDB Innate Immunity Genes", "type": "data access"}], "associated-tools": [{"url": "http://www.innatedb.com/redirect.do?go=batchPw", "name": "analyze"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010676", "name": "re3data:r3d100010676", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006714", "name": "SciCrunch:RRID:SCR_006714", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000520", "bsg-d000520"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunology", "Life Science"], "domains": ["Protein interaction", "Interactome", "Molecular interaction", "Immunity", "Curated information", "Protein", "Pathway model"], "taxonomies": ["Bos taurus", "Homo sapiens", "Mammalia", "Mus musculus"], "user-defined-tags": [], "countries": ["Canada", "Australia", "Ireland"], "name": "FAIRsharing record for: InnateDB", "abbreviation": "InnateDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.rb2drw", "doi": "10.25504/FAIRsharing.rb2drw", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: InnateDB has been developed to facilitate systems level investigations of the mammalian (human, mouse and bovine) innate immune response. Its goal is to provide a manually-curated knowledgebase of the genes, proteins, and particularly, the interactions and signaling responses involved in mammalian innate immunity. InnateDB incorporates information of the whole human, mouse and bovine interactomes by integrating interaction and pathway information from several of the major publicly available databases but aims to capture an improved coverage of the innate immunity interactome through manual curation.", "publications": [{"id": 596, "pubmed_id": 23180781, "title": "InnateDB: systems biology of innate immunity and beyond--recent updates and continuing curation.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1147", "authors": "Breuer K., Foroushani AK., Laird MR., Chen C., Sribnaia A., Lo R., Winsor GL., Hancock RE., Brinkman FS., Lynn DJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1147", "created_at": "2021-09-30T08:23:25.387Z", "updated_at": "2021-09-30T08:23:25.387Z"}], "licence-links": [{"licence-name": "InnateDB attribution required", "licence-id": 442, "link-id": 1193, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1916", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.673Z", "metadata": {"doi": "10.25504/FAIRsharing.jrjqc7", "name": "Buruli ulcer bacillus Database", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "genolist@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/BuruList/", "identifier": 1916, "description": "A database dedicated to the analysis of the genome of Mycobacterium ulcerans, the Buruli ulcer bacillus. It provides a complete dataset of DNA and protein sequences derived from the epidemic strain Agy99, linked to the relevant annotations and functional assignments.", "abbreviation": "BuruList", "year-creation": 2001, "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000381", "bsg-d000381"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Protein", "Genome"], "taxonomies": ["Mycobacterium ulcerans"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Buruli ulcer bacillus Database", "abbreviation": "BuruList", "url": "https://fairsharing.org/10.25504/FAIRsharing.jrjqc7", "doi": "10.25504/FAIRsharing.jrjqc7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database dedicated to the analysis of the genome of Mycobacterium ulcerans, the Buruli ulcer bacillus. It provides a complete dataset of DNA and protein sequences derived from the epidemic strain Agy99, linked to the relevant annotations and functional assignments.", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1918", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:14.635Z", "metadata": {"doi": "10.25504/FAIRsharing.amxd1s", "name": "GenoList Genome Browser", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "genolist@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/", "identifier": 1918, "description": "GenoList is an integrated environment for comparative exploration of microbial genomes. The current release integrates genome data for over 700 species (Genome Reviews). The query and navigation user interface includes specialized tools for subtractive genome analysis and dynamic synteny visualization.", "abbreviation": "GenoList", "data-processes": [{"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Listeria", "name": "Browse all Listeria", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Campylobacterales", "name": "Browse all Campylobacterales", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Mycobacterium", "name": "Browse all Mycobacteria", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Escherichia", "name": "Browse all Escherichia", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Bacillus", "name": "Browse all Bacillus", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Streptococcus", "name": "Browse all Streptococcus", "type": "data access"}, {"url": "http://genodb.pasteur.fr/cgi-bin/WebObjects/GenoList.woa/1/wa/goToTaxoRank?level=Legionella", "name": "Browse all Legionella", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000383", "bsg-d000383"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: GenoList Genome Browser", "abbreviation": "GenoList", "url": "https://fairsharing.org/10.25504/FAIRsharing.amxd1s", "doi": "10.25504/FAIRsharing.amxd1s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GenoList is an integrated environment for comparative exploration of microbial genomes. The current release integrates genome data for over 700 species (Genome Reviews). The query and navigation user interface includes specialized tools for subtractive genome analysis and dynamic synteny visualization.", "publications": [{"id": 2297, "pubmed_id": 18032431, "title": "GenoList: an integrated environment for comparative analysis of microbial genomes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm1042", "authors": "Lechat P,Hummel L,Rousseau S,Moszer I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm1042", "created_at": "2021-09-30T08:26:40.690Z", "updated_at": "2021-09-30T11:29:32.753Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1923", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:49.930Z", "metadata": {"doi": "10.25504/FAIRsharing.x54ymh", "name": "Streptococcus agalactiae NEM316 / Serotype III genome database", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "pglaser@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/SagaList/", "identifier": 1923, "description": "SagaList contains a database dedicated to the analysis of the genomes of the food-borne pathogen, Streptococcus agalactiae.", "abbreviation": "SagaList", "support-links": [{"url": "http://genolist.pasteur.fr/SagaList/help/general.html", "type": "Help documentation"}], "year-creation": 2002, "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000388", "bsg-d000388"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Deoxyribonucleic acid", "Protein", "Genome"], "taxonomies": ["Streptococcus agalactiae"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Streptococcus agalactiae NEM316 / Serotype III genome database", "abbreviation": "SagaList", "url": "https://fairsharing.org/10.25504/FAIRsharing.x54ymh", "doi": "10.25504/FAIRsharing.x54ymh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SagaList contains a database dedicated to the analysis of the genomes of the food-borne pathogen, Streptococcus agalactiae.", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1924", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:20:16.079Z", "metadata": {"doi": "10.25504/FAIRsharing.40j2vd", "name": "Bacillus subtilis strain 168 genome", "status": "deprecated", "contacts": [{"contact-name": "General contact", "contact-email": "moszer@pasteur.fr"}], "homepage": "http://genolist.pasteur.fr/SubtiList/", "identifier": 1924, "description": "Its purpose is to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria. SubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments", "abbreviation": "SubtiList", "support-links": [{"url": "http://genolist.pasteur.fr/SubtiList/help/general.html", "type": "Help documentation"}], "year-creation": 1996, "associated-tools": [{"url": "http://genolist.pasteur.fr/SubtiList/help/blast-search.html", "name": "BLAST"}], "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now deprecated due to the creation of the GenoList multi-genome browser, which contains updated annotations and comparative functionalities across hundreds of genomes."}, "legacy-ids": ["biodbcore-000389", "bsg-d000389"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Deoxyribonucleic acid", "Protein", "Genome"], "taxonomies": ["Bacillus subtilis"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Bacillus subtilis strain 168 genome", "abbreviation": "SubtiList", "url": "https://fairsharing.org/10.25504/FAIRsharing.40j2vd", "doi": "10.25504/FAIRsharing.40j2vd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Its purpose is to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria. SubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments", "publications": [{"id": 415, "pubmed_id": 11752255, "title": "SubtiList: the reference database for the Bacillus subtilis genome.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.62", "authors": "Moszer I., Jones LM., Moreira S., Fabry C., Danchin A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/30.1.62", "created_at": "2021-09-30T08:23:05.108Z", "updated_at": "2021-09-30T08:23:05.108Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2324", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-10T13:30:46.000Z", "updated-at": "2021-09-30T11:36:51.268Z", "metadata": {"doi": "10.25504/FAIRsharing.7ynng", "name": "Collection of Anti Microbial Petides R3", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "biomedinfo@nirrh.res.in"}], "homepage": "http://www.camp.bicnirrh.res.in", "identifier": 2324, "description": "CAMPR3 (Collection of Anti-Microbial Peptides) has been generated to enhance research into AMP families. The collection is compatible with well-known databases such as PubMed and Uniprot with information like sequence, protein definition, accession numbers, structures as well as relevant organisms. Making this database a useful tool in AMP studies.", "abbreviation": "CAMP R3", "year-creation": 2014, "associated-tools": [{"url": "http://www.campsign.bicnirrh.res.in", "name": "CampSign"}]}, "legacy-ids": ["biodbcore-000800", "bsg-d000800"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": [], "taxonomies": ["Bacteria", "Escherichia coli", "Microbiota"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: Collection of Anti Microbial Petides R3", "abbreviation": "CAMP R3", "url": "https://fairsharing.org/10.25504/FAIRsharing.7ynng", "doi": "10.25504/FAIRsharing.7ynng", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CAMPR3 (Collection of Anti-Microbial Peptides) has been generated to enhance research into AMP families. The collection is compatible with well-known databases such as PubMed and Uniprot with information like sequence, protein definition, accession numbers, structures as well as relevant organisms. Making this database a useful tool in AMP studies.", "publications": [{"id": 358, "pubmed_id": 19923233, "title": "CAMP: a useful resource for research on antimicrobial peptides.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1021", "authors": "Thomas S,Karnik S,Barai RS,Jayaraman VK,Idicula-Thomas S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp1021", "created_at": "2021-09-30T08:22:58.471Z", "updated_at": "2021-09-30T11:28:45.800Z"}, {"id": 370, "pubmed_id": 27089856, "title": "Leveraging family-specific signatures for AMP discovery and high-throughput annotation.", "year": 2016, "url": "http://doi.org/10.1038/srep24684", "authors": "Waghu FH, Barai RS, Idicula-Thomas S.", "journal": "Scientific Reports", "doi": "10.1038/srep24684", "created_at": "2021-09-30T08:22:59.758Z", "updated_at": "2021-09-30T08:22:59.758Z"}, {"id": 744, "pubmed_id": 26467475, "title": "CAMPR3: a database on sequences, structures and signatures of antimicrobial peptides.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1051", "authors": "Waghu FH,Barai RS,Gurung P,Idicula-Thomas S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1051", "created_at": "2021-09-30T08:23:41.935Z", "updated_at": "2021-09-30T11:28:49.417Z"}, {"id": 1664, "pubmed_id": 24265220, "title": "CAMP: Collection of sequences and structures of antimicrobial peptides.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1157", "authors": "Waghu FH,Gopi L,Barai RS,Ramteke P,Nizami B,Idicula-Thomas S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1157", "created_at": "2021-09-30T08:25:26.368Z", "updated_at": "2021-09-30T11:29:18.303Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2484", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-18T17:09:57.000Z", "updated-at": "2021-11-24T13:19:35.461Z", "metadata": {"doi": "10.25504/FAIRsharing.3pt56w", "name": "Human Protein-Protein Interaction rEference", "status": "ready", "contacts": [{"contact-name": "Martin Schaefer", "contact-email": "martin.schaefer@crg.eu", "contact-orcid": "0000-0001-7503-6364"}], "homepage": "http://cbdm.uni-mainz.de/hippie/", "identifier": 2484, "description": "HIPPIE integrates human protein-protein interactions from several manually curated source databases. It provides a web tool to query the interaction data, generate highly reliable, context-specific interaction networks and to make sense out of them.", "abbreviation": "HIPPIE", "access-points": [{"url": "http://cbdm-01.zdv.uni-mainz.de/~mschaefer/hippie/queryHIPPIE.php", "name": "Interactions can be retrieved via REST", "type": "REST"}], "year-creation": 2011}, "legacy-ids": ["biodbcore-000966", "bsg-d000966"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany", "Spain"], "name": "FAIRsharing record for: Human Protein-Protein Interaction rEference", "abbreviation": "HIPPIE", "url": "https://fairsharing.org/10.25504/FAIRsharing.3pt56w", "doi": "10.25504/FAIRsharing.3pt56w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HIPPIE integrates human protein-protein interactions from several manually curated source databases. It provides a web tool to query the interaction data, generate highly reliable, context-specific interaction networks and to make sense out of them.", "publications": [{"id": 2251, "pubmed_id": 27794551, "title": "HIPPIE v2.0: enhancing meaningfulness and reliability of protein-protein interaction networks.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw985", "authors": "Alanis-Lobato G,Andrade-Navarro MA,Schaefer MH", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw985", "created_at": "2021-09-30T08:26:33.755Z", "updated_at": "2021-09-30T11:29:31.686Z"}, {"id": 2252, "pubmed_id": 23300433, "title": "Adding protein context to the human protein-protein interaction network to reveal meaningful interactions.", "year": 2013, "url": "http://doi.org/10.1371/journal.pcbi.1002860", "authors": "Schaefer MH,Lopes TJ,Mah N,Shoemaker JE,Matsuoka Y,Fontaine JF,Louis-Jeune C,Eisfeld AJ,Neumann G,Perez-Iratxeta C,Kawaoka Y,Kitano H,Andrade-Navarro MA", "journal": "PLoS Comput Biol", "doi": "10.1371/journal.pcbi.1002860", "created_at": "2021-09-30T08:26:33.857Z", "updated_at": "2021-09-30T08:26:33.857Z"}, {"id": 2253, "pubmed_id": 22348130, "title": "HIPPIE: Integrating protein interaction networks with experiment based quality scores.", "year": 2012, "url": "http://doi.org/10.1371/journal.pone.0031826", "authors": "Schaefer MH,Fontaine JF,Vinayagam A,Porras P,Wanker EE,Andrade-Navarro MA", "journal": "PLoS One", "doi": "10.1371/journal.pone.0031826", "created_at": "2021-09-30T08:26:33.957Z", "updated_at": "2021-09-30T08:26:33.957Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1930", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:29.541Z", "metadata": {"doi": "10.25504/FAIRsharing.y2qws7", "name": "Human Protein Reference Database", "status": "ready", "contacts": [{"contact-name": "Akhilesh Pandey", "contact-email": "pandey@jhmi.edu", "contact-orcid": "0000-0001-9943-6127"}], "homepage": "http://www.hprd.org/", "identifier": 1930, "description": "The Human Protein Reference Database represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", "abbreviation": "HPRD", "support-links": [{"url": "http://www.hprd.org/help", "type": "Contact form"}, {"url": "http://www.hprd.org/FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2008, "data-processes": [{"url": "http://www.hprd.org/download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.hprd.org/blast_page", "name": "BLAST"}, {"url": "http://www.hprd.org/query", "name": "search"}, {"url": "http://www.hprd.org/blast_page", "name": "BLAST"}, {"url": "http://www.hprd.org/query", "name": "search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010978", "name": "re3data:r3d100010978", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007027", "name": "SciCrunch:RRID:SCR_007027", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000395", "bsg-d000395"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": [], "domains": ["Structure", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["India", "United States"], "name": "FAIRsharing record for: Human Protein Reference Database", "abbreviation": "HPRD", "url": "https://fairsharing.org/10.25504/FAIRsharing.y2qws7", "doi": "10.25504/FAIRsharing.y2qws7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Protein Reference Database represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", "publications": [{"id": 1347, "pubmed_id": 18988627, "title": "Human Protein Reference Database--2009 update.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn892", "authors": "Keshava Prasad TS., Goel R., Kandasamy K., Keerthikumar S., Kumar S., Mathivanan S., Telikicherla D., Raju R., Shafreen B., Venugopal A., Balakrishnan L., Marimuthu A., Banerjee S., Somanathan DS., Sebastian A., Rani S., Ray S., Harrys Kishore CJ., Kanth S., Ahmed M., Kashyap MK., Mohmood R., Ramachandra YL., Krishna V., Rahiman BA., Mohan S., Ranganathan P., Ramabadran S., Chaerkady R., Pandey A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn892", "created_at": "2021-09-30T08:24:50.752Z", "updated_at": "2021-09-30T08:24:50.752Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1937", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:15.497Z", "metadata": {"doi": "10.25504/FAIRsharing.eyjkws", "name": "Microbial Protein Interaction Database", "status": "deprecated", "contacts": [{"contact-name": "Johannes Goll", "contact-email": "jgoll@jcvi.org"}], "homepage": "http://www.jcvi.org/mpidb/about.php", "identifier": 1937, "description": "The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "abbreviation": "MPIDB", "support-links": [{"url": "http://www.jcvi.org/mpidb/contact.php", "type": "Contact form"}, {"url": "http://www.jcvi.org/mpidb/help.php", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.jcvi.org/mpidb/search.php", "name": "Download", "type": "data access"}, {"url": "http://www.jcvi.org/mpidb/search.php", "name": "Search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000402", "bsg-d000402"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein interaction", "Small molecule", "Curated information", "Protein"], "taxonomies": ["Bacteria", "Fungi"], "user-defined-tags": ["Physical interaction"], "countries": ["United States"], "name": "FAIRsharing record for: Microbial Protein Interaction Database", "abbreviation": "MPIDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.eyjkws", "doi": "10.25504/FAIRsharing.eyjkws", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts. This resource has been marked as Uncertain because its project home can no longer be found. Please get in touch if you have any information about this resource.", "publications": [{"id": 402, "pubmed_id": 18556668, "title": "MPIDB: the microbial protein interaction database.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn285", "authors": "Goll J., Rajagopala SV., Shiau SC., Wu H., Lamb BT., Uetz P.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn285", "created_at": "2021-09-30T08:23:03.691Z", "updated_at": "2021-09-30T08:23:03.691Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2220", "type": "fairsharing-records", "attributes": {"created-at": "2015-10-08T15:22:51.000Z", "updated-at": "2021-11-24T13:19:29.503Z", "metadata": {"doi": "10.25504/FAIRsharing.c8dxsv", "name": "ReMap", "status": "deprecated", "contacts": [{"contact-name": "Benoit Ballester", "contact-email": "benoit.ballester@inserm.fr", "contact-orcid": "0000-0002-0834-7135"}], "homepage": "http://tagc.univ-mrs.fr/remap/", "identifier": 2220, "description": "ReMap is an integrative analysis of transcription factor ChIP-seq experiments publicly available, merged with the Encode dataset. The resource is an extensive regulatory catalogue of transcription factor binding sites from transcription factors (TFs). The data is available to browse or download either for a given transcription factor or for the entire dataset.", "abbreviation": "ReMap", "support-links": [{"url": "http://tagc.univ-mrs.fr/remap/index.php?page=about", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://tagc.univ-mrs.fr/remap/index.php?page=about", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://tagc.univ-mrs.fr/remap/index.php?page=annotation", "name": "Annotation Tool", "type": "data curation"}], "associated-tools": [{"url": "http://genome-euro.ucsc.edu/cgi-bin/hgTracks?db=hg19&position=chr18%3A48493295-48497350&hgsid=209791310_qlUWcxlOAdmrXkAXTRadwAEW1LYn", "name": "UCSC Genome Browser tracks"}], "deprecation-date": "2021-9-18", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000694", "bsg-d000694"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Cell line", "Cancer", "Transcription factor", "Chromatin immunoprecipitation - DNA sequencing"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: ReMap", "abbreviation": "ReMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.c8dxsv", "doi": "10.25504/FAIRsharing.c8dxsv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ReMap is an integrative analysis of transcription factor ChIP-seq experiments publicly available, merged with the Encode dataset. The resource is an extensive regulatory catalogue of transcription factor binding sites from transcription factors (TFs). The data is available to browse or download either for a given transcription factor or for the entire dataset.", "publications": [{"id": 827, "pubmed_id": 25477382, "title": "Integrative analysis of public ChIP-seq experiments reveals a complex multi-cell regulatory landscape.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1280", "authors": "Griffon A,Barbier Q,Dalino J,van Helden J,Spicuglia S,Ballester B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1280", "created_at": "2021-09-30T08:23:51.210Z", "updated_at": "2021-09-30T11:28:53.417Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1944", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:26.037Z", "metadata": {"doi": "10.25504/FAIRsharing.drcy7r", "name": "NeuroMorpho.Org", "status": "ready", "contacts": [{"contact-name": "NeuroMorpho Admin", "contact-email": "nmadmin@gmu.edu"}], "homepage": "http://neuromorpho.org/", "citations": [{"doi": "10.1038/nrn1885", "pubmed-id": 16552417, "publication-id": 423}], "identifier": 1944, "description": "NeuroMorpho.Org is a centrally curated inventory of 3D digitally reconstructed neurons associated with peer-reviewed publications. The goal of NeuroMorpho.Org is to provide dense coverage of available reconstruction data for the neuroscience community.", "abbreviation": "NeuroMorpho.Org", "access-points": [{"url": "http://neuromorpho.org/api.jsp", "name": "NeuroMorpho API Documentation and Access", "type": "REST"}], "support-links": [{"url": "http://neuromorpho.org/myfaq.jsp", "name": "NeuroMorpho FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://neuromorpho.org/main_help.jsp", "name": "Quick Start", "type": "Help documentation"}, {"url": "https://twitter.com/NeuroMorphoOrg", "name": "@NeuroMorphoOrg", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "http://neuromorpho.org/DownloadNeuronRelatedFiles.jsp", "name": "Download via Cart", "type": "data release"}, {"url": "http://neuromorpho.org/LS.jsp", "name": "Literature Search", "type": "data access"}, {"url": "http://neuromorpho.org/MetaData.jsp", "name": "Metadata Search", "type": "data access"}, {"url": "http://neuromorpho.org/MorphometrySearch.jsp", "name": "Morphometry Search", "type": "data access"}, {"url": "http://neuromorpho.org/KeywordSearch.jsp", "name": "Keyword Search", "type": "data access"}, {"url": "http://neuromorpho.org/OntoSearch.jsp", "name": "Ontology Search", "type": "data access"}, {"url": "http://neuromorpho.org/LS_Video.jsp", "name": "Interactive 3d Visualization", "type": "data access"}, {"url": "http://neuromorpho.org/byRandom.jsp", "name": "Browse Random Neurons", "type": "data access"}, {"url": "http://neuromorpho.org/bylab.jsp", "name": "Browse by Lab", "type": "data access"}, {"url": "http://neuromorpho.org/bycell.jsp", "name": "Browse by Cell Type", "type": "data access"}, {"url": "http://neuromorpho.org/byregion.jsp", "name": "Browse by Brain Region", "type": "data access"}, {"url": "http://neuromorpho.org/byspecies.jsp", "name": "Browse by Species", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010107", "name": "re3data:r3d100010107", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002145", "name": "SciCrunch:RRID:SCR_002145", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000410", "bsg-d000410"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Computational Neuroscience", "Neuroscience"], "domains": ["Molecular structure", "Neuron", "Cell morphology", "Structure"], "taxonomies": ["Metazoa"], "user-defined-tags": ["Digital reconstruction", "Metadata standardization"], "countries": ["United States"], "name": "FAIRsharing record for: NeuroMorpho.Org", "abbreviation": "NeuroMorpho.Org", "url": "https://fairsharing.org/10.25504/FAIRsharing.drcy7r", "doi": "10.25504/FAIRsharing.drcy7r", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NeuroMorpho.Org is a centrally curated inventory of 3D digitally reconstructed neurons associated with peer-reviewed publications. The goal of NeuroMorpho.Org is to provide dense coverage of available reconstruction data for the neuroscience community.", "publications": [{"id": 423, "pubmed_id": 16552417, "title": "Mobilizing the base of neuroscience data: the case of neuronal morphologies.", "year": 2006, "url": "http://doi.org/10.1038/nrn1885", "authors": "Ascoli GA.", "journal": "Nat. Rev. Neurosci.", "doi": "10.1038/nrn1885", "created_at": "2021-09-30T08:23:05.974Z", "updated_at": "2021-09-30T08:23:05.974Z"}, {"id": 663, "pubmed_id": 22536169, "title": "Digital reconstructions of neuronal morphology: three decades of research trends", "year": 2012, "url": "http://doi.org/10.3389/fnins.2012.00049", "authors": "Halavi M, Hamilton KA, Parekh R, Ascoli GA.", "journal": "Frontiers in Neuroscience", "doi": "10.3389/fnins.2012.00049", "created_at": "2021-09-30T08:23:33.186Z", "updated_at": "2021-09-30T08:23:33.186Z"}, {"id": 699, "pubmed_id": 25653123, "title": "The importance of metadata to assess information content in digital reconstructions of neuronal morphology.", "year": 2015, "url": "http://doi.org/10.1007/s00441-014-2103-6", "authors": "Parekh R., Armananzas R., Ascoli GA.", "journal": "Cell and Tissue Research", "doi": "10.1007/s00441-014-2103-6", "created_at": "2021-09-30T08:23:37.077Z", "updated_at": "2021-09-30T08:23:37.077Z"}, {"id": 700, "pubmed_id": 24972604, "title": "Quantitative investigations of axonal and dendritic arbors: development, structure, function, and pathology", "year": 2014, "url": "http://doi.org/10.1177/1073858414540216", "authors": "Parekh R, Ascoli GA", "journal": "Neuroscientist", "doi": "10.1177/1073858414540216", "created_at": "2021-09-30T08:23:37.186Z", "updated_at": "2021-09-30T08:23:37.186Z"}, {"id": 705, "pubmed_id": 23522039, "title": "Neuronal morphology goes digital: A research hub for cellular and system neuroscience.", "year": 2013, "url": "http://doi.org/10.1016/j.neuron.2013.03.008", "authors": "Parekh R, Ascoli GA", "journal": "Neuron", "doi": "10.1016/j.neuron.2013.03.008", "created_at": "2021-09-30T08:23:37.695Z", "updated_at": "2021-09-30T08:23:37.695Z"}, {"id": 707, "pubmed_id": 25576225, "title": "Doubling up on the Fly: NeuroMorpho.Org Meets Big Data", "year": 2015, "url": "http://doi.org/10.1007/s12021-014-9257-y", "authors": "Nanda S, Allaham MM, Bergamino M, Polavaram S, Arma\u00f1anzas R, Ascoli GA, Parekh R.", "journal": "Neuroinformatics", "doi": "10.1007/s12021-014-9257-y", "created_at": "2021-09-30T08:23:37.936Z", "updated_at": "2021-09-30T08:23:37.936Z"}, {"id": 1167, "pubmed_id": 18949582, "title": "NeuroMorpho.Org implementation of digital neuroscience: dense coverage and integration with the NIF.", "year": 2008, "url": "http://doi.org/10.1007/s12021-008-9030-1", "authors": "Halavi M,Polavaram S,Donohue DE,Hamilton G,Hoyt J,Smith KP,Ascoli GA", "journal": "Neuroinformatics", "doi": "10.1007/s12021-008-9030-1", "created_at": "2021-09-30T08:24:29.708Z", "updated_at": "2021-09-30T08:24:29.708Z"}], "licence-links": [{"licence-name": "NeuroMorpho Terms of Use", "licence-id": 572, "link-id": 2376, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3039", "type": "fairsharing-records", "attributes": {"created-at": "2020-06-20T13:56:17.000Z", "updated-at": "2021-11-24T13:16:22.800Z", "metadata": {"doi": "10.25504/FAIRsharing.1jKfji", "name": "Research Organization Registry", "status": "ready", "contacts": [{"contact-name": "Maria Gould", "contact-email": "info@ror.org", "contact-orcid": "0000-0002-2916-3423"}], "homepage": "https://ror.org", "identifier": 3039, "description": "ROR is a community-led project to develop an open, sustainable, usable, and unique identifier for every research organization in the world. Implementation of ROR IDs in scholarly infrastructure and metadata will enable more efficient discovery and tracking of research outputs across institutions and funding bodies.", "abbreviation": "ROR", "access-points": [{"url": "https://api.ror.org/organizations", "name": "ROR API", "type": "Other"}], "support-links": [{"url": "https://ror.org/blog/", "name": "ROR Blog", "type": "Blog/News"}, {"url": "https://ror.org/about/", "name": "About", "type": "Help documentation"}, {"url": "https://ror.org/resources/", "name": "Resources", "type": "Help documentation"}, {"url": "https://github.com/ror-community", "name": "GitHub Project", "type": "Github"}, {"url": "https://ror.org/facts/", "name": "Statistics / Facts", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://ror.org/search", "name": "Search", "type": "data access"}, {"url": "https://ror.org/curation", "name": "Curation Form", "type": "data curation"}, {"url": "https://doi.org/10.6084/m9.figshare.c.4596503.v4", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001547", "bsg-d001547"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Management"], "domains": ["Data identity and mapping", "Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United Kingdom", "South Africa", "United States", "Germany", "Japan"], "name": "FAIRsharing record for: Research Organization Registry", "abbreviation": "ROR", "url": "https://fairsharing.org/10.25504/FAIRsharing.1jKfji", "doi": "10.25504/FAIRsharing.1jKfji", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ROR is a community-led project to develop an open, sustainable, usable, and unique identifier for every research organization in the world. Implementation of ROR IDs in scholarly infrastructure and metadata will enable more efficient discovery and tracking of research outputs across institutions and funding bodies.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1961, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1962, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1963, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1954", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:01.502Z", "metadata": {"doi": "10.25504/FAIRsharing.5y3gdd", "name": "Pathway Commons", "status": "ready", "contacts": [{"contact-name": "Gary Bader", "contact-email": "pathway-commons-help@googlegroups.com"}], "homepage": "http://www.pathwaycommons.org", "identifier": 1954, "description": "Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases. Information is sourced from public pathway databases and is readily searched, visualized, and downloaded. The data is freely available under the license terms of each contributing database.", "abbreviation": "PC", "access-points": [{"url": "http://rdf.pathwaycommons.org/sparql/", "name": "PC2 SPARQL endpoint", "type": "Other"}, {"url": "http://www.pathwaycommons.org/pc2/", "name": "PC2 web services (BioPAX db)", "type": "REST"}, {"url": "http://rdf.pathwaycommons.org/fct/", "name": "PC2 faceted browser (FCT, RDF)", "type": "Other"}, {"url": "http://www.pathwaycommons.org/pc/", "name": "Old PC portal and web services", "type": "REST"}], "support-links": [{"url": "http://www.pathwaycommons.org/#faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://groups.google.com/forum/#!forum/pathway-commons-help", "type": "Forum"}, {"url": "pathway-commons-help@googlegroups.com", "type": "Mailing list"}, {"url": "https://twitter.com/PathwayCommons", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://www.pathwaycommons.org/archives/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://apps.cytoscape.org/apps/cypath2", "name": "CyPathwayCommons 2"}, {"url": "http://www.sanderlab.org/pcviz/", "name": "PCViz"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012731", "name": "re3data:r3d100012731", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002103", "name": "SciCrunch:RRID:SCR_002103", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000420", "bsg-d000420"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Computational Biology", "Life Science", "Systems Biology"], "domains": ["Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: Pathway Commons", "abbreviation": "PC", "url": "https://fairsharing.org/10.25504/FAIRsharing.5y3gdd", "doi": "10.25504/FAIRsharing.5y3gdd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases. Information is sourced from public pathway databases and is readily searched, visualized, and downloaded. The data is freely available under the license terms of each contributing database.", "publications": [{"id": 51, "pubmed_id": 21071392, "title": "Pathway Commons, a web resource for biological pathway data.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1039", "authors": "Cerami EG., Gross BE., Demir E., Rodchenkov I., Babur O., Anwar N., Schultz N., Bader GD., Sander C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1039", "created_at": "2021-09-30T08:22:25.855Z", "updated_at": "2021-09-30T08:22:25.855Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2354", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-28T18:46:21.000Z", "updated-at": "2021-12-06T10:48:13.171Z", "metadata": {"doi": "10.25504/FAIRsharing.9dbmwg", "name": "Comprehensive Antibiotic Resistance Database", "status": "ready", "contacts": [{"contact-name": "Andrew McArthur", "contact-email": "card@mcmaster.ca", "contact-orcid": "0000-0002-1142-3063"}], "homepage": "http://arpcard.mcmaster.ca", "identifier": 2354, "description": "A bioinformatic database of antimicrobial resistance genes, their products and associated phenotypes.", "abbreviation": "CARD", "support-links": [{"url": "https://card.mcmaster.ca/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://github.com/arpcard/amr_curation", "name": "GitHub curation issues", "type": "Github"}, {"url": "https://github.com/arpcard/rgi", "name": "GitHub software issues", "type": "Github"}, {"url": "https://github.com/arpcard", "name": "GitHub other issues", "type": "Github"}, {"url": "https://mailman.mcmaster.ca/mailman/listinfo/card-l", "type": "Mailing list"}, {"url": "https://twitter.com/arpcard", "type": "Twitter"}], "year-creation": 2013, "data-processes": [{"url": "https://card.mcmaster.ca/download", "name": "download", "type": "data access"}, {"url": "https://card.mcmaster.ca/browse", "name": "browse", "type": "data access"}, {"url": "https://card.mcmaster.ca/analyze/blast", "name": "blast", "type": "data access"}], "associated-tools": [{"url": "https://card.mcmaster.ca/analyze/rgi", "name": "Resistance Gene Identifier 5.1.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012727", "name": "re3data:r3d100012727", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000833", "bsg-d000833"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Antimicrobial", "Phenotype", "Amino acid sequence"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Comprehensive Antibiotic Resistance Database", "abbreviation": "CARD", "url": "https://fairsharing.org/10.25504/FAIRsharing.9dbmwg", "doi": "10.25504/FAIRsharing.9dbmwg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A bioinformatic database of antimicrobial resistance genes, their products and associated phenotypes.", "publications": [{"id": 1745, "pubmed_id": 23650175, "title": "The comprehensive antibiotic resistance database.", "year": 2013, "url": "http://doi.org/10.1128/AAC.00419-13", "authors": "McArthur AG,Waglechner N,Nizam F,Yan A,Azad MA,Baylay AJ,Bhullar K,Canova MJ,De Pascale G,Ejim L,Kalan L,King AM,Koteva K,Morar M,Mulvey MR,O'Brien JS,Pawlowski AC,Piddock LJ,Spanogiannopoulos P,Sutherland AD,Tang I,Taylor PL,Thaker M,Wang W,Yan M,Yu T,Wright GD", "journal": "Antimicrob Agents Chemother", "doi": "10.1128/AAC.00419-13", "created_at": "2021-09-30T08:25:35.830Z", "updated_at": "2021-09-30T08:25:35.830Z"}], "licence-links": [{"licence-name": "CARD Copyright and Disclaimer", "licence-id": 102, "link-id": 51, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2912", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-17T12:58:02.000Z", "updated-at": "2022-02-08T10:32:15.315Z", "metadata": {"doi": "10.25504/FAIRsharing.436c95", "name": "NucMap", "status": "ready", "contacts": [{"contact-name": "NucMap Helpdesk", "contact-email": "nucmap@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/nucmap/", "citations": [{"doi": "10.1093/nar/gky980", "pubmed-id": 30335176, "publication-id": 2815}], "identifier": 2912, "description": "NucMap is a database of genome-wide nucleosome positioning across multiple species. Based on raw sequence data from published studies, NucMap integrates, analyzes, and visualizes nucleosome positioning data across species.", "abbreviation": "NucMap", "support-links": [{"url": "https://bigd.big.ac.cn/nucmap/Faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/nucmap/Data_statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://bigd.big.ac.cn/nucmap/Download.php", "name": "Download", "type": "data release"}, {"url": "https://bigd.big.ac.cn/nucmap/Sample_Search.php", "name": "Sample Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/nucmap/Gene_Search.php", "name": "Gene Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/nucmap/Browse-species.php?species=Caenorhabditis_elegans", "name": "Browse by Species", "type": "data access"}], "associated-tools": [{"url": "https://bigd.big.ac.cn/nucmap/Analysis.php", "name": "Enrichment analysis of nucleosome occupancy"}]}, "legacy-ids": ["biodbcore-001415", "bsg-d001415"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Structural Biology"], "domains": ["Molecular structure", "DNA structural variation", "Histone"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Candida albicans", "Danio rerio", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Neurospora crassa", "Oryza sativa", "Plasmodium falciparum", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Trypanosoma brucei", "Xenopus laevis", "Zea mays"], "user-defined-tags": ["Nucleosome"], "countries": ["China"], "name": "FAIRsharing record for: NucMap", "abbreviation": "NucMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.436c95", "doi": "10.25504/FAIRsharing.436c95", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NucMap is a database of genome-wide nucleosome positioning across multiple species. Based on raw sequence data from published studies, NucMap integrates, analyzes, and visualizes nucleosome positioning data across species.", "publications": [{"id": 2815, "pubmed_id": 30335176, "title": "NucMap: a database of genome-wide nucleosome positioning map across species.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky980", "authors": "Zhao Y,Wang J,Liang F,Liu Y,Wang Q,Zhang H,Jiang M,Zhang Z,Zhao W,Bao Y,Zhang Z,Wu J,Asmann YW,Li R,Xiao J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky980", "created_at": "2021-09-30T08:27:46.169Z", "updated_at": "2021-09-30T11:29:46.119Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1136, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2909", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-16T13:55:06.000Z", "updated-at": "2021-12-06T10:47:25.870Z", "metadata": {"name": "Mammalian Transcriptomic Database", "status": "uncertain", "contacts": [{"contact-email": "junyu@big.ac.cn"}], "homepage": "http://mtd.cbi.ac.cn/", "citations": [{"doi": "10.1093/bib/bbv117", "pubmed-id": 26822098, "publication-id": 2810}], "identifier": 2909, "description": "The Mammalian Transcriptomic Database (MTD) was created to store information on mammalian transcriptomes. The MTD allows browsing of genes based on their neighboring genomic coordinates or joint KEGG pathway and provides expression information on exons, transcripts and genes via a genome browser. The MTD also allows comparative transcriptomic analyses. The data in this resource has not been updated recently, and therefore we have marked this record as Uncertain. Please get in touch if you know the current status of this resource.", "abbreviation": "MTD", "support-links": [{"url": "xiaojingfa@big.ac.cn", "name": "xiaojingfa@big.ac.cn", "type": "Support email"}, {"url": "http://mtd.cbi.ac.cn/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://mtd.cbi.ac.cn/tutorial.php", "name": "User Guide", "type": "Help documentation"}, {"url": "http://mtd.cbi.ac.cn/contact.php", "name": "Contact Details", "type": "Help documentation"}, {"url": "http://mtd.cbi.ac.cn/pipeline.php", "name": "Data Pipeline", "type": "Help documentation"}, {"url": "http://mtd.cbi.ac.cn/statistics.php", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://mtd.cbi.ac.cn/download.php", "name": "Download", "type": "data release"}, {"url": "http://mtd.cbi.ac.cn/search.php", "name": "Search", "type": "data access"}, {"url": "http://mtd.cbi.ac.cn/housekeeping.php", "name": "Search by Gene Feature", "type": "data access"}, {"url": "http://mtd.cbi.ac.cn/mRNA.php", "name": "Search by Isoform Feature", "type": "data access"}, {"url": "http://mtd.cbi.ac.cn/browse.php", "name": "Browse by Chromosome", "type": "data access"}, {"url": "http://mtd.cbi.ac.cn/gbrowse.php", "name": "Browse by Region (GBrowse)", "type": "data access"}, {"url": "http://mtd.cbi.ac.cn/pathway.php", "name": "Browse by Pathway", "type": "data access"}], "associated-tools": [{"url": "https://bigd.big.ac.cn/gen/", "name": "Gene Expression Nebulas (GEN) Data Portal"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012214", "name": "re3data:r3d100012214", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001412", "bsg-d001412"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Transcriptomics"], "domains": ["Expression data", "Gene expression", "RNA sequencing"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus", "Sus scrofa"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Mammalian Transcriptomic Database", "abbreviation": "MTD", "url": "https://fairsharing.org/fairsharing_records/2909", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Mammalian Transcriptomic Database (MTD) was created to store information on mammalian transcriptomes. The MTD allows browsing of genes based on their neighboring genomic coordinates or joint KEGG pathway and provides expression information on exons, transcripts and genes via a genome browser. The MTD also allows comparative transcriptomic analyses. The data in this resource has not been updated recently, and therefore we have marked this record as Uncertain. Please get in touch if you know the current status of this resource.", "publications": [{"id": 2810, "pubmed_id": 26822098, "title": "MTD: a mammalian transcriptomic database to explore gene expression and regulation.", "year": 2016, "url": "http://doi.org/10.1093/bib/bbv117", "authors": "Sheng X,Wu J,Sun Q,Li X,Xian F,Sun M,Fang W,Chen M,Yu J,Xiao J", "journal": "Brief Bioinform", "doi": "10.1093/bib/bbv117", "created_at": "2021-09-30T08:27:45.523Z", "updated_at": "2021-09-30T08:27:45.523Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 1135, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2061", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:21.536Z", "metadata": {"doi": "10.25504/FAIRsharing.vxz9pn", "name": "SWISS-MODEL Repository of 3D protein structure models", "status": "ready", "contacts": [{"contact-name": "Torsten Schwede", "contact-email": "help-swissmodel@unibas.ch", "contact-orcid": "0000-0003-2715-335X"}], "homepage": "https://swissmodel.expasy.org/repository/", "identifier": 2061, "description": "The SWISS-MODEL Repository is a database of annotated 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for protein sequences of selected model organisms.", "abbreviation": "SWISS-MODEL", "access-points": [{"url": "https://swissmodel.expasy.org/repository/uniprot/P07900.json", "name": "Query of available models and structures by UniProt Accession code, e.g. P07900", "type": "REST"}], "support-links": [{"url": "help-swissmodel@unibas.ch", "type": "Support email"}, {"url": "https://swissmodel.expasy.org/docs/help", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/qmean/help", "name": "QMEAN help", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/lddt/help/", "name": "lDDT web server documentation", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/assess/help", "name": "Structure Assessment help", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/comparison/help", "name": "Structure Comparison", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/docs/examples", "name": "Examples", "type": "Help documentation"}, {"url": "https://swissmodel.expasy.org/course", "name": "Protein structure course", "type": "Training documentation"}, {"url": "https://swissmodel.expasy.org/docs/tutorial", "name": "Video tutorial", "type": "Training documentation"}, {"url": "https://twitter.com/SWISS_MODEL", "type": "Twitter"}], "year-creation": 1993, "data-processes": [{"url": "https://swissmodel.expasy.org/repository", "name": "Database entries for core organism proteomes are updated on a regular schedule - see release statistics.", "type": "data release"}, {"name": "Entries for individual proteins (UniProt entries) modelled on interactive user request are released continously.", "type": "data access"}, {"url": "https://www.ncbi.nlm.nih.gov/pubmed/21134891", "name": "Model quality estimates are provided based on QMEAN.", "type": "data curation"}, {"url": "http://swissmodel.expasy.org/repository/", "name": "Search and browse SWISS-MODEL Repository", "type": "data access"}], "associated-tools": [{"url": "https://swissmodel.expasy.org/qmean/", "name": "QMEAN"}, {"url": "https://swissmodel.expasy.org/interactive", "name": "SWISS-MODEL Workspace"}, {"url": "https://swissmodel.expasy.org/lddt", "name": "lDDT"}, {"url": "https://swissmodel.expasy.org/assess", "name": "Structure Assessment"}, {"url": "https://swissmodel.expasy.org/comparison/", "name": "Structure Comparison"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010605", "name": "re3data:r3d100010605", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013032", "name": "SciCrunch:RRID:SCR_013032", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000528", "bsg-d000528"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Molecular structure", "Mathematical model", "Protein structure", "Structure", "Protein"], "taxonomies": ["All", "Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["Switzerland"], "name": "FAIRsharing record for: SWISS-MODEL Repository of 3D protein structure models", "abbreviation": "SWISS-MODEL", "url": "https://fairsharing.org/10.25504/FAIRsharing.vxz9pn", "doi": "10.25504/FAIRsharing.vxz9pn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The SWISS-MODEL Repository is a database of annotated 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for protein sequences of selected model organisms.", "publications": [{"id": 885, "pubmed_id": 18931379, "title": "The SWISS-MODEL Repository and associated resources.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn750", "authors": "Kiefer F,Arnold K,Kunzli M,Bordoli L,Schwede T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn750", "created_at": "2021-09-30T08:23:57.727Z", "updated_at": "2021-09-30T11:28:54.909Z"}, {"id": 1499, "pubmed_id": 24782522, "title": "SWISS-MODEL: modelling protein tertiary and quaternary structure using evolutionary information.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku340", "authors": "Biasini M,Bienert S,Waterhouse A,Arnold K,Studer G,Schmidt T,Kiefer F,Cassarino TG,Bertoni M,Bordoli L,Schwede T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku340", "created_at": "2021-09-30T08:25:07.865Z", "updated_at": "2021-09-30T11:29:11.185Z"}, {"id": 1934, "pubmed_id": 27899672, "title": "The SWISS-MODEL Repository-new features and functionality.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1132", "authors": "Bienert S,Waterhouse A,de Beer TA,Tauriello G,Studer G,Bordoli L,Schwede T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1132", "created_at": "2021-09-30T08:25:57.712Z", "updated_at": "2021-09-30T11:29:24.311Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 43, "relation": "undefined"}, {"licence-name": "SWISS-MODEL Terms of Use", "licence-id": 764, "link-id": 47, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1988", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:23.786Z", "metadata": {"doi": "10.25504/FAIRsharing.da493y", "name": "NCBI Protein Clusters Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/proteinclusters", "citations": [], "identifier": 1988, "description": "ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", "abbreviation": "ProtClustDB", "support-links": [{"url": "https://www.ncbi.nlm.nih.gov/proteinclusters/faq/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/books/NBK3797/", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/genomes/CLUSTERS/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/genomes/prokhits.cgi", "name": "BLAST"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010784", "name": "re3data:r3d100010784", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003459", "name": "SciCrunch:RRID:SCR_003459", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000454", "bsg-d000454"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Life Science"], "domains": ["Molecular structure", "Structure", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI Protein Clusters Database", "abbreviation": "ProtClustDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.da493y", "doi": "10.25504/FAIRsharing.da493y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", "publications": [{"id": 462, "pubmed_id": 18940865, "title": "The National Center for Biotechnology Information's Protein Clusters Database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn734", "authors": "Klimke W., Agarwala R., Badretdin A., Chetvernin S., Ciufo S., Fedorov B., Kiryutin B., O'Neill K., Resch W., Resenchuk S., Schafer S., Tolstoy I., Tatusova T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn734", "created_at": "2021-09-30T08:23:10.235Z", "updated_at": "2021-09-30T08:23:10.235Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 623, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 627, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2043", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:20.049Z", "metadata": {"doi": "10.25504/FAIRsharing.2ma4gq", "name": "Ligand Expo", "status": "ready", "contacts": [{"contact-name": "John Westbrook", "contact-email": "jwest@rcsb.rutgers.edu", "contact-orcid": "0000-0002-6686-5475"}], "homepage": "http://ligand-depot.rutgers.edu/", "identifier": 2043, "description": "Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids. Tools are provided to search the PDB dictionary for chemical components, to identify structure entries containing particular small molecules, and to download the 3D structures of the small molecule components in the PDB entry.", "abbreviation": "Ligand Expo", "support-links": [{"url": "deposit@deposit.rcsb.org", "type": "Support email"}, {"url": "http://ligand-depot.rutgers.edu/help.html", "type": "Help documentation"}], "data-processes": [{"url": "http://ligand-depot.rutgers.edu/ld-download.html", "name": "Download", "type": "data access"}, {"url": "http://ligand-depot.rutgers.edu/ld-search.html", "name": "Search", "type": "data access"}, {"url": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-browse-search&operation=smiles&target=$&category=aa&first=1", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000510", "bsg-d000510"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Nucleic acid sequence", "Protein interaction", "Chemical entity", "Small molecule binding", "Molecular interaction", "Small molecule", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Ligand Expo", "abbreviation": "Ligand Expo", "url": "https://fairsharing.org/10.25504/FAIRsharing.2ma4gq", "doi": "10.25504/FAIRsharing.2ma4gq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids. Tools are provided to search the PDB dictionary for chemical components, to identify structure entries containing particular small molecules, and to download the 3D structures of the small molecule components in the PDB entry.", "publications": [{"id": 504, "pubmed_id": 15059838, "title": "Ligand Depot: a data warehouse for ligands bound to macromolecules.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth214", "authors": "Feng Z., Chen L., Maddula H., Akcan O., Oughtred R., Berman HM., Westbrook J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth214", "created_at": "2021-09-30T08:23:14.852Z", "updated_at": "2021-09-30T08:23:14.852Z"}], "licence-links": [{"licence-name": "Ligand Expo Attribution required", "licence-id": 491, "link-id": 1720, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3344", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-28T21:07:30.000Z", "updated-at": "2021-11-24T13:13:34.073Z", "metadata": {"name": "DatumKB: A Database of Biological Experimental Results", "status": "ready", "contacts": [{"contact-name": "Merrill Knapp", "contact-email": "merrill.knapp@sri.com", "contact-orcid": "0000-0003-1939-8672"}], "homepage": "https://datum.csl.sri.com", "identifier": 3344, "description": "DatumKB is a freely accessible database of experimental results involving the function and regulation of human proteins in cultured cells. The results are manually curated from biological research literature using a shorthand language and stored as datums.", "abbreviation": "DatumKB", "support-links": [{"url": "http://datum.csl.sri.com", "name": "help", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"name": "manual", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001867", "bsg-d001867"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Computational Biology", "Life Science", "Cell Biology", "Human Biology", "Biology", "Systems Biology"], "domains": ["Text mining"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Data Curation", "Experimental Data"], "countries": ["United States"], "name": "FAIRsharing record for: DatumKB: A Database of Biological Experimental Results", "abbreviation": "DatumKB", "url": "https://fairsharing.org/fairsharing_records/3344", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DatumKB is a freely accessible database of experimental results involving the function and regulation of human proteins in cultured cells. The results are manually curated from biological research literature using a shorthand language and stored as datums.", "publications": [{"id": 2872, "pubmed_id": null, "title": "DatumKB: A Database of Biological Experimental Results", "year": 2021, "url": "https://doi.org/10.1101/2021.06.25.449966", "authors": "Merrill Knapp, Tim McCarthy, Carolyn Talcott", "journal": "BioRxiv", "doi": null, "created_at": "2021-09-30T08:27:53.530Z", "updated_at": "2021-09-30T08:27:53.530Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2006", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:41.988Z", "metadata": {"doi": "10.25504/FAIRsharing.v2f7t2", "name": "Drug Adverse Reaction Target", "status": "deprecated", "contacts": [{"contact-name": "Dr. Chen Yuzong", "contact-email": "yzchen@cz3.nus.edu.sg"}], "homepage": "http://bidd.nus.edu.sg/group/drt/dart.asp", "identifier": 2006, "description": "A database for facilitating the search for drug adverse reaction target. DART contains information about known drug adverse reaction targets, functions and properties.", "abbreviation": "DART", "support-links": [{"url": "http://bidd.cz3.nus.edu.sg/TTDtanimoto/", "type": "Help documentation"}], "year-creation": 2003, "deprecation-date": "2016-03-16", "deprecation-reason": "This resource is no longer maintained."}, "legacy-ids": ["biodbcore-000472", "bsg-d000472"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Adverse Reaction", "Drug interaction", "Disease", "Protein", "Target"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Drug target in DNA network"], "countries": ["Singapore"], "name": "FAIRsharing record for: Drug Adverse Reaction Target", "abbreviation": "DART", "url": "https://fairsharing.org/10.25504/FAIRsharing.v2f7t2", "doi": "10.25504/FAIRsharing.v2f7t2", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A database for facilitating the search for drug adverse reaction target. DART contains information about known drug adverse reaction targets, functions and properties.", "publications": [{"id": 479, "pubmed_id": 12862503, "title": "Drug Adverse Reaction Target Database (DART) : proteins related to adverse drug reactions.", "year": 2003, "url": "http://doi.org/10.2165/00002018-200326100-00002", "authors": "Ji ZL., Han LY., Yap CW., Sun LZ., Chen X., Chen YZ.,", "journal": "Drug Saf", "doi": "10.2165/00002018-200326100-00002", "created_at": "2021-09-30T08:23:12.050Z", "updated_at": "2021-09-30T08:23:12.050Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2027", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.170Z", "metadata": {"doi": "10.25504/FAIRsharing.mbgt2n", "name": "Oryzabase", "status": "ready", "contacts": [{"contact-name": "Nori Kurata", "contact-email": "nkurata@lab.nig.ac.jp"}], "homepage": "http://www.shigen.nig.ac.jp/rice/oryzabase/", "identifier": 2027, "description": "The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan. The Oryzabase consists of five parts, (1) genetic resource stock information, (2) gene dictionary, (3) chromosome maps, (4) mutant images, and (5) fundamental knowledge of rice science.", "abbreviation": "Oryzabase", "support-links": [{"url": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/about/contactUs", "type": "Contact form"}, {"url": "http://shigen.nig.ac.jp/rice/oryzabase/about/updateInfo", "type": "Help documentation"}], "year-creation": 2000, "data-processes": [{"url": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/download/strain", "name": "Download", "type": "data access"}, {"url": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/search", "name": "search", "type": "data access"}, {"url": "http://shigen.nig.ac.jp/rice/oryzabase_submission/gene_nomenclature/", "name": "submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/blast/search", "name": "BLAST"}, {"url": "http://shigen.nig.ac.jp/rice/seganalysis/", "name": "SegAnalysis"}]}, "legacy-ids": ["biodbcore-000494", "bsg-d000494"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Classification", "Structure", "Gene", "Genome"], "taxonomies": ["Oryza"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Oryzabase", "abbreviation": "Oryzabase", "url": "https://fairsharing.org/10.25504/FAIRsharing.mbgt2n", "doi": "10.25504/FAIRsharing.mbgt2n", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan. The Oryzabase consists of five parts, (1) genetic resource stock information, (2) gene dictionary, (3) chromosome maps, (4) mutant images, and (5) fundamental knowledge of rice science.", "publications": [{"id": 339, "pubmed_id": 16403737, "title": "Oryzabase. An integrated biological and genome information database for rice.", "year": 2006, "url": "http://doi.org/10.1104/pp.105.063008", "authors": "Kurata N., Yamazaki Y.,", "journal": "Plant Physiol.", "doi": "10.1104/pp.105.063008", "created_at": "2021-09-30T08:22:56.483Z", "updated_at": "2021-09-30T08:22:56.483Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2674", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-05T14:25:10.000Z", "updated-at": "2021-12-06T10:48:17.503Z", "metadata": {"doi": "10.25504/FAIRsharing.aSszvY", "name": "Bacterial Diversity Metadatabase", "status": "ready", "contacts": [{"contact-name": "Lorenz Reimer", "contact-email": "contact@bacdive.de", "contact-orcid": "0000-0002-7805-0660"}], "homepage": "https://bacdive.dsmz.de/", "citations": [{"doi": "10.1093/nar/gky879", "pubmed-id": 30256983, "publication-id": 2504}], "identifier": 2674, "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity. BacDive contains entries for over 63,000 strains and provides information on their taxonomy, morphology, physiology, sampling and concomitant environmental conditions as well as molecular biology.", "abbreviation": "BacDive", "access-points": [{"url": "https://bacdive.dsmz.de/api/bacdive/", "name": "Access data from the Bacterial Diversity Metadata", "type": "REST"}, {"url": "https://bacdive.dsmz.de/api/pnu/", "name": "Access data from the Prokaryotic Nomenclature Up-to-date database", "type": "REST"}], "support-links": [{"url": "https://youtu.be/n1aw3iEGxbA", "name": "Advanced Search Video Tutorial", "type": "Help documentation"}, {"url": "https://youtu.be/YQ66nz4h_5I", "name": "BacDive API Strip Test Finder Video Tutorial", "type": "Help documentation"}, {"url": "https://bacdive.dsmz.de/help", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://youtu.be/aqpUiDEIcn4", "name": "Quickstart Video Tutorial", "type": "Help documentation"}, {"url": "https://bacdive.dsmz.de/contact", "name": "Contact Form", "type": "Help documentation"}, {"url": "https://bacdive.dsmz.de/news", "name": "News", "type": "Help documentation"}, {"url": "https://bacdive.dsmz.de/about", "name": "About BacDive", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://bacdive.dsmz.de/taxplorer", "name": "Browse by Taxonomy", "type": "data access"}, {"url": "https://bacdive.dsmz.de/advsearch", "name": "Advanced Search", "type": "data access"}, {"url": "https://bacdive.dsmz.de/isolation-sources", "name": "Microbial Isolation Sources Search", "type": "data access"}], "associated-tools": [{"url": "https://bacdive.dsmz.de/api-test-finder", "name": "API Test Finder"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013060", "name": "re3data:r3d100013060", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001168", "bsg-d001168"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biodiversity", "Life Science", "Microbiology"], "domains": ["Resource metadata", "Antimicrobial", "Phenotype", "Morphology"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": ["Metadata standardization", "Species-environment interaction"], "countries": ["Germany"], "name": "FAIRsharing record for: Bacterial Diversity Metadatabase", "abbreviation": "BacDive", "url": "https://fairsharing.org/10.25504/FAIRsharing.aSszvY", "doi": "10.25504/FAIRsharing.aSszvY", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity. BacDive contains entries for over 63,000 strains and provides information on their taxonomy, morphology, physiology, sampling and concomitant environmental conditions as well as molecular biology.", "publications": [{"id": 2466, "pubmed_id": 26424852, "title": "BacDive--The Bacterial Diversity Metadatabase in 2016.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv983", "authors": "Sohngen C,Podstawka A,Bunk B,Gleim D,Vetcininova A,Reimer LC,Ebeling C,Pendarovski C,Overmann J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv983", "created_at": "2021-09-30T08:27:02.374Z", "updated_at": "2021-09-30T11:29:36.966Z"}, {"id": 2467, "pubmed_id": 28487186, "title": "Mobilization and integration of bacterial phenotypic data-Enabling next generation biodiversity analysis through the BacDive metadatabase.", "year": 2017, "url": "http://doi.org/S0168-1656(17)30206-7", "authors": "Reimer LC,Sohngen C,Vetcininova A,Overmann J", "journal": "J Biotechnol", "doi": "10.1016/j.jbiotec.2017.05.004", "created_at": "2021-09-30T08:27:02.527Z", "updated_at": "2021-09-30T08:27:02.527Z"}, {"id": 2475, "pubmed_id": 24214959, "title": "BacDive--the Bacterial Diversity Metadatabase.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1058", "authors": "Sohngen C,Bunk B,Podstawka A,Gleim D,Overmann J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1058", "created_at": "2021-09-30T08:27:03.465Z", "updated_at": "2021-09-30T11:29:37.336Z"}, {"id": 2504, "pubmed_id": 30256983, "title": "BacDive in 2019: bacterial phenotypic data for High-throughput biodiversity analysis.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky879", "authors": "Reimer LC,Vetcininova A,Carbasse JS,Sohngen C,Gleim D,Ebeling C,Overmann J", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky879", "created_at": "2021-09-30T08:27:07.315Z", "updated_at": "2021-09-30T11:29:38.254Z"}], "licence-links": [{"licence-name": "BacDive Privacy Policy, Terms of use & Copyright", "licence-id": 53, "link-id": 317, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 321, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2669", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-05T14:02:46.000Z", "updated-at": "2021-12-06T10:48:01.220Z", "metadata": {"doi": "10.25504/FAIRsharing.5vtYGG", "name": "SILVA", "status": "ready", "contacts": [{"contact-name": "Frank Oliver Gl\u00f6ckner", "contact-email": "fog@mpi-bremen.de", "contact-orcid": "0000-0001-8528-9023"}], "homepage": "https://www.arb-silva.de", "citations": [{"doi": "10.1093/nar/gks1219", "pubmed-id": 23193283, "publication-id": 2453}], "identifier": 2669, "description": "SILVA is a comprehensive, quality-controlled web resource for up-to-date aligned ribosomal RNA (rRNA) gene sequences from the Bacteria, Archaea and Eukaryota domains alongside supplementary online services. In addition to data products, SILVA provides various online tools such as alignment and classification, phylogenetic tree calculation and viewer, probe/primer matching, and an amplicon analysis pipeline. With every full release a curated guide tree is provided that contains the latest taxonomy and nomenclature based on multiple references. The SILVA curation team is now part of Bergey\u2019s Trustees and the Protist Reference Taxonomy Project UniEuk, which will further improve the quality of SILVA taxonomy. In order to cope with the dramatic expansion of bacterial and archaeal phyla, we have also teamed up with phylogenomic taxonomy efforts (i.e. Genome Taxonomy Database). SILVA is an ELIXIR Core Data Resource.", "abbreviation": "SILVA", "support-links": [{"url": "contact@arb-silva.de", "name": "Helpdesk", "type": "Support email"}, {"url": "https://www.arb-silva.de/documentation/faqs/", "name": "SILVA FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.arb-silva.de/documentation/act-tutorial/", "name": "SILVA ACT Tutorial", "type": "Help documentation"}, {"url": "https://www.arb-silva.de/documentation/search-tutorial/", "name": "Search Tutorial", "type": "Help documentation"}, {"url": "https://www.arb-silva.de/documentation/testprobe-tutorial/", "name": "TestProbe Tutorial", "type": "Help documentation"}, {"url": "https://www.arb-silva.de/documentation/testprime-tutorial/", "name": "TestPrime Tutorial", "type": "Help documentation"}, {"url": "https://www.arb-silva.de/documentation/", "name": "Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/ARB_SILVA", "name": "@ARB_SILVA", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "https://www.arb-silva.de/download/archive/", "name": "Data Download", "type": "data release"}, {"url": "https://www.arb-silva.de/search/", "name": "Search", "type": "data access"}, {"url": "https://www.arb-silva.de/browser/", "name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://www.arb-silva.de/ngs", "name": "SILVAngs"}, {"url": "https://www.arb-silva.de/search/testprobe/", "name": "TestProbe"}, {"url": "https://www.arb-silva.de/search/testprime/", "name": "TestPrime"}, {"url": "https://www.arb-silva.de/act", "name": "ACT: Alignment, Classification and Tree Service"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011323", "name": "re3data:r3d100011323", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006423", "name": "SciCrunch:RRID:SCR_006423", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001162", "bsg-d001162"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Phylogeny", "Life Science"], "domains": ["Taxonomic classification", "Oligonucleotide probe annotation", "Multiple sequence alignment", "Ribosomal RNA", "Next generation DNA sequencing"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: SILVA", "abbreviation": "SILVA", "url": "https://fairsharing.org/10.25504/FAIRsharing.5vtYGG", "doi": "10.25504/FAIRsharing.5vtYGG", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SILVA is a comprehensive, quality-controlled web resource for up-to-date aligned ribosomal RNA (rRNA) gene sequences from the Bacteria, Archaea and Eukaryota domains alongside supplementary online services. In addition to data products, SILVA provides various online tools such as alignment and classification, phylogenetic tree calculation and viewer, probe/primer matching, and an amplicon analysis pipeline. With every full release a curated guide tree is provided that contains the latest taxonomy and nomenclature based on multiple references. The SILVA curation team is now part of Bergey\u2019s Trustees and the Protist Reference Taxonomy Project UniEuk, which will further improve the quality of SILVA taxonomy. In order to cope with the dramatic expansion of bacterial and archaeal phyla, we have also teamed up with phylogenomic taxonomy efforts (i.e. Genome Taxonomy Database). SILVA is an ELIXIR Core Data Resource.", "publications": [{"id": 2453, "pubmed_id": 23193283, "title": "The SILVA ribosomal RNA gene database project: improved data processing and web-based tools.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1219", "authors": "Quast C,Pruesse E,Yilmaz P,Gerken J,Schweer T,Yarza P,Peplies J,Glockner FO", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1219", "created_at": "2021-09-30T08:27:00.909Z", "updated_at": "2021-09-30T11:29:36.186Z"}, {"id": 2489, "pubmed_id": 24293649, "title": "The SILVA and \"All-species Living Tree Project (LTP)\" taxonomic frameworks.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1209", "authors": "Yilmaz P,Parfrey LW,Yarza P,Gerken J,Pruesse E,Quast C,Schweer T,Peplies J,Ludwig W,Glockner FO", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1209", "created_at": "2021-09-30T08:27:05.209Z", "updated_at": "2021-09-30T11:29:37.837Z"}, {"id": 2491, "pubmed_id": 28648396, "title": "25 years of serving the community with ribosomal RNA gene reference databases and tools.", "year": 2017, "url": "http://doi.org/S0168-1656(17)31494-3", "authors": "Glockner FO,Yilmaz P,Quast C,Gerken J,Beccati A,Ciuprina A,Bruns G,Yarza P,Peplies J,Westram R,Ludwig W", "journal": "J Biotechnol", "doi": "10.1016/j.jbiotec.2017.06.1198", "created_at": "2021-09-30T08:27:05.477Z", "updated_at": "2021-09-30T08:27:05.477Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 433, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2709", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-19T10:39:03.000Z", "updated-at": "2021-11-24T13:17:54.004Z", "metadata": {"doi": "10.25504/FAIRsharing.KhTFtY", "name": "YeastMine", "status": "ready", "contacts": [{"contact-email": "sgd-helpdesk@lists.stanford.edu"}], "homepage": "http://yeastmine.yeastgenome.org/yeastmine", "identifier": 2709, "description": "Search and retrieve S. cerevisiae data with YeastMine, populated by SGD and powered by InterMine.", "abbreviation": "YeastMine", "access-points": [{"url": "https://yeastmine.yeastgenome.org/yeastmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://www.yeastgenome.org/suggestion", "name": "SGD Contact Form", "type": "Contact form"}, {"url": "https://sites.google.com/view/yeastgenome-help/video-tutorials/yeastmine", "name": "Video Tutorials", "type": "Help documentation"}, {"url": "https://sites.google.com/view/yeastgenome-help/analyze-help/yeastmine", "name": "YeastMine Help", "type": "Help documentation"}, {"url": "https://yeastmine.yeastgenome.org/yeastmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/yeastmine-videos", "name": "YeastMine videos", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://yeastmine.yeastgenome.org/yeastmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "https://yeastmine.yeastgenome.org/yeastmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://yeastmine.yeastgenome.org/yeastmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://yeastmine.yeastgenome.org/yeastmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001207", "bsg-d001207"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Life Science"], "domains": ["Molecular function", "Gene expression", "Biological regulation", "Molecular interaction", "Protein", "Homologous", "Orthologous", "Paralogous"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: YeastMine", "abbreviation": "YeastMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.KhTFtY", "doi": "10.25504/FAIRsharing.KhTFtY", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Search and retrieve S. cerevisiae data with YeastMine, populated by SGD and powered by InterMine.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 603, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2034", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:19.449Z", "metadata": {"doi": "10.25504/FAIRsharing.dg1f0e", "name": "Homologous Vertebrate Genes Database", "status": "ready", "contacts": [{"contact-name": "Laurent Duret", "contact-email": "duret@biomserv.univ-lyon1.fr", "contact-orcid": "0000-0003-2836-3463"}], "homepage": "http://pbil.univ-lyon1.fr/databases/hovergen.html", "identifier": 2034, "description": "HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", "abbreviation": "HOVERGEN", "data-processes": [{"url": "ftp://pbil.univ-lyon1.fr/pub/hovergen/", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000501", "bsg-d000501"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Protein", "Gene"], "taxonomies": ["Archaea", "Bacteria", "Eukaryota"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Homologous Vertebrate Genes Database", "abbreviation": "HOVERGEN", "url": "https://fairsharing.org/10.25504/FAIRsharing.dg1f0e", "doi": "10.25504/FAIRsharing.dg1f0e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", "publications": [{"id": 495, "pubmed_id": 15713731, "title": "Tree pattern matching in phylogenetic trees: automatic search for orthologs or paralogs in homologous gene sequence databases.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti325", "authors": "Dufayard JF., Duret L., Penel S., Gouy M., Rechenmann F., Perri\u00e8re G.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti325", "created_at": "2021-09-30T08:23:13.791Z", "updated_at": "2021-09-30T08:23:13.791Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1253, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2480", "type": "fairsharing-records", "attributes": {"created-at": "2017-07-13T01:56:29.000Z", "updated-at": "2021-11-24T13:13:12.775Z", "metadata": {"doi": "10.25504/FAIRsharing.tfj7gt", "name": "EPA Comptox Chemicals Dashboard", "status": "ready", "contacts": [{"contact-name": "Antony Williams", "contact-email": "williams.antony@epa.gov", "contact-orcid": "0000-0002-2668-4821"}], "homepage": "https://comptox.epa.gov/dashboard", "identifier": 2480, "description": "The foundation of chemical safety testing relies on chemistry information such as high-quality chemical structures and physical chemical properties. This information is used by scientists to predict the potential health risks of chemicals. The Dashboard is part of a suite of dashboards developed by EPA to help evaluate the safety of chemicals. It provides access to a variety of information on over 700,000 chemicals currently in use. Within the Dashboard, users can access chemical structures, experimental and predicted physicochemical and toxicity data, and additional links to relevant websites and applications. It maps curated physicochemical property data associated with chemical substances to their corresponding chemical structures. These data are compiled from sources including the EPA\u2019s computational toxicology research databases, and public domain databases such as the National Center for Biotechnology Information\u2019s PubChem database.", "support-links": [{"url": "https://comptox.epa.gov/dashboard/contact_us", "name": "Contact Us", "type": "Contact form"}, {"url": "https://comptox.epa.gov/dashboard/help", "name": "Help Manual", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://comptox.epa.gov/dashboard/downloads", "name": "Data Download", "type": "data access"}], "associated-tools": [{"url": "https://itunes.apple.com/us/app/comptox-mobile/id1179517689?mt=8", "name": "CompTox Mobile 1"}, {"url": "https://itunes.apple.com/us/app/m-z-epa-comptox/id1148436331?mt=8", "name": "m/Z EPA CompTox 1"}]}, "legacy-ids": ["biodbcore-000962", "bsg-d000962"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Toxicology", "Chemistry"], "domains": ["Environmental contaminant", "Spectroscopy", "Bioactivity", "Exposure"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Physical properties"], "countries": ["United States"], "name": "FAIRsharing record for: EPA Comptox Chemicals Dashboard", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.tfj7gt", "doi": "10.25504/FAIRsharing.tfj7gt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The foundation of chemical safety testing relies on chemistry information such as high-quality chemical structures and physical chemical properties. This information is used by scientists to predict the potential health risks of chemicals. The Dashboard is part of a suite of dashboards developed by EPA to help evaluate the safety of chemicals. It provides access to a variety of information on over 700,000 chemicals currently in use. Within the Dashboard, users can access chemical structures, experimental and predicted physicochemical and toxicity data, and additional links to relevant websites and applications. It maps curated physicochemical property data associated with chemical substances to their corresponding chemical structures. These data are compiled from sources including the EPA\u2019s computational toxicology research databases, and public domain databases such as the National Center for Biotechnology Information\u2019s PubChem database.", "publications": [{"id": 35, "pubmed_id": 26812473, "title": "Linking high resolution mass spectrometry data with exposure and toxicity forecasts to advance high-throughput environmental monitoring.", "year": 2016, "url": "http://doi.org/S0160-4120(15)30111-2", "authors": "Rager JE,Strynar MJ,Liang S,McMahen RL,Richard AM,Grulke CM,Wambaugh JF,Isaacs KK,Judson R,Williams AJ,Sobus JR", "journal": "Environ Int", "doi": "10.1016/j.envint.2015.12.008", "created_at": "2021-09-30T08:22:24.088Z", "updated_at": "2021-09-30T08:22:24.088Z"}, {"id": 2149, "pubmed_id": 28475325, "title": "Open Science for Identifying \"Known Unknown\" Chemicals.", "year": 2017, "url": "http://doi.org/10.1021/acs.est.7b01908", "authors": "Schymanski EL,Williams AJ", "journal": "Environ Sci Technol", "doi": "10.1021/acs.est.7b01908", "created_at": "2021-09-30T08:26:22.169Z", "updated_at": "2021-09-30T08:26:22.169Z"}, {"id": 2157, "pubmed_id": 27367298, "title": "ToxCast Chemical Landscape: Paving the Road to 21st Century Toxicology.", "year": 2016, "url": "http://doi.org/10.1021/acs.chemrestox.6b00135", "authors": "Richard AM,Judson RS,Houck KA,Grulke CM,Volarath P,Thillainadarajah I,Yang C,Rathman J,Martin MT,Wambaugh JF,Knudsen TB,Kancherla J,Mansouri K,Patlewicz G,Williams AJ,Little SB,Crofton KM,Thomas RS", "journal": "Chem Res Toxicol", "doi": "10.1021/acs.chemrestox.6b00135", "created_at": "2021-09-30T08:26:23.175Z", "updated_at": "2021-09-30T08:26:23.175Z"}, {"id": 2178, "pubmed_id": 27885862, "title": "An automated curation procedure for addressing chemical errors and inconsistencies in public datasets used in QSAR modelling.", "year": 2016, "url": "http://doi.org/10.1080/1062936X.2016.1253611", "authors": "Mansouri K,Grulke CM,Richard AM,Judson RS,Williams AJ", "journal": "SAR QSAR Environ Res", "doi": "10.1080/1062936X.2016.1253611", "created_at": "2021-09-30T08:26:25.484Z", "updated_at": "2021-09-30T08:26:25.484Z"}, {"id": 2181, "pubmed_id": 27987027, "title": "Identifying known unknowns using the US EPA's CompTox Chemistry Dashboard.", "year": 2016, "url": "http://doi.org/10.1007/s00216-016-0139-z", "authors": "McEachran AD,Sobus JR,Williams AJ", "journal": "Anal Bioanal Chem", "doi": "10.1007/s00216-016-0139-z", "created_at": "2021-09-30T08:26:25.898Z", "updated_at": "2021-09-30T08:26:25.898Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2045", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:20.172Z", "metadata": {"doi": "10.25504/FAIRsharing.2p1gn5", "name": "TargetTrack", "status": "ready", "contacts": [{"contact-name": "Helen M. Berman", "contact-email": "berman@rcsb.rutgers.edu"}], "homepage": "http://sbkb.org/tt/", "identifier": 2045, "description": "TargetTrack, a target registration database, provides information on the experimental progress and status of targets selected for structure determination.", "abbreviation": "TargetTrack", "support-links": [{"url": "target-help@sbkb.org", "type": "Support email"}, {"url": "http://sbkb.org/tt/guidelines.html", "type": "Help documentation"}], "year-creation": 2003, "data-processes": [{"url": "http://sbkb.org/tt/downloads.html", "name": "Download", "type": "data access"}, {"url": "http://sbkb.org/tt/deposition.html", "name": "submit", "type": "data access"}, {"url": "http://sbkb.org/tt/", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000512", "bsg-d000512"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Structure", "Sequence"], "taxonomies": ["Arabidopsis thaliana", "Caenorhabditis elegans", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TargetTrack", "abbreviation": "TargetTrack", "url": "https://fairsharing.org/10.25504/FAIRsharing.2p1gn5", "doi": "10.25504/FAIRsharing.2p1gn5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TargetTrack, a target registration database, provides information on the experimental progress and status of targets selected for structure determination.", "publications": [{"id": 502, "pubmed_id": 15130928, "title": "TargetDB: a target registration database for structural genomics projects.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth300", "authors": "Chen L., Oughtred R., Berman HM., Westbrook J.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth300", "created_at": "2021-09-30T08:23:14.552Z", "updated_at": "2021-09-30T08:23:14.552Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1310, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2048", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:20.269Z", "metadata": {"doi": "10.25504/FAIRsharing.xshwbf", "name": "Sanger Pfam Mirror", "status": "deprecated", "contacts": [{"contact-name": "General Help", "contact-email": "pfam-help@sanger.ac.uk"}], "homepage": "http://pfam.sanger.ac.uk/", "identifier": 2048, "description": "The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", "abbreviation": "Sanger Pfam", "support-links": [{"url": "http://pfam.sanger.ac.uk/help", "type": "Help documentation"}, {"url": "http://pfam.sanger.ac.uk/help#tabview=tab2", "type": "Help documentation"}, {"url": "http://pfam.sanger.ac.uk/help#tabview=tab3", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.sanger.ac.uk/pub/databases/Pfam", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://pfam.sanger.ac.uk/search", "name": "search"}, {"url": "http://pfam.sanger.ac.uk/browse", "name": "browse"}, {"url": "http://pfam.sanger.ac.uk/search#tabview=tab2", "name": "BLAST"}], "deprecation-date": "2016-05-10", "deprecation-reason": "This resource is no longer provided by the associated maintainers, The Sanger Institute. Please see the BioSharing record for Pfam (https://biosharing.org/biodbcore-000081) instead."}, "legacy-ids": ["biodbcore-000515", "bsg-d000515"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein domain", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Sanger Pfam Mirror", "abbreviation": "Sanger Pfam", "url": "https://fairsharing.org/10.25504/FAIRsharing.xshwbf", "doi": "10.25504/FAIRsharing.xshwbf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", "publications": [{"id": 664, "pubmed_id": 22127870, "title": "The Pfam protein families database.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1065", "authors": "Punta M., Coggill PC., Eberhardt RY., Mistry J., Tate J., Boursnell C., Pang N., Forslund K., Ceric G., Clements J., Heger A., Holm L., Sonnhammer EL., Eddy SR., Bateman A., Finn RD.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1065", "created_at": "2021-09-30T08:23:33.296Z", "updated_at": "2021-09-30T08:23:33.296Z"}, {"id": 911, "pubmed_id": 19920124, "title": "The Pfam protein families database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp985", "authors": "Finn RD., Mistry J., Tate J., Coggill P., Heger A., Pollington JE., Gavin OL., Gunasekaran P., Ceric G., Forslund K., Holm L., Sonnhammer EL., Eddy SR., Bateman A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp985", "created_at": "2021-09-30T08:24:00.612Z", "updated_at": "2021-09-30T08:24:00.612Z"}, {"id": 2296, "pubmed_id": 24288371, "title": "Pfam: the protein families database.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1223", "authors": "Finn RD,Bateman A,Clements J,Coggill P,Eberhardt RY,Eddy SR,Heger A,Hetherington K,Holm L,Mistry J,Sonnhammer EL,Tate J,Punta M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1223", "created_at": "2021-09-30T08:26:40.493Z", "updated_at": "2021-09-30T11:29:32.662Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1603, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2712", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T10:21:22.000Z", "updated-at": "2021-11-24T13:17:24.152Z", "metadata": {"doi": "10.25504/FAIRsharing.IIn0TH", "name": "LegumeMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://intermine.legumefederation.org/legumemine", "identifier": 2712, "description": "This mine integrates data for multiple legume species. It is under development by NCGR and is built from the LIS and PeanutBase chado databases as well as exports from other sources.", "abbreviation": "LegumeMine", "access-points": [{"url": "https://mines.legumeinfo.org/legumemine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/legumemine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/legumemine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/legumemine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/legumemine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/legumemine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001210", "bsg-d001210"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Genetics", "Life Science"], "domains": ["Expression data"], "taxonomies": ["Fabaceae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: LegumeMine", "abbreviation": "LegumeMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.IIn0TH", "doi": "10.25504/FAIRsharing.IIn0TH", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This mine integrates data for multiple legume species. It is under development by NCGR and is built from the LIS and PeanutBase chado databases as well as exports from other sources.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 695, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2050", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:20.622Z", "metadata": {"doi": "10.25504/FAIRsharing.jptb1m", "name": "3D interacting domains", "status": "ready", "contacts": [{"contact-name": "Patrick Aloy", "contact-email": "patrick.aloy@irbbarcelona.org", "contact-orcid": "0000-0002-3557-0236"}], "homepage": "http://3did.irbbarcelona.org/", "identifier": 2050, "description": "The database of 3D Interaction Domains (3did) is a collection of domain-domain interactions in proteins for which high-resolution three-dimensional structures are known. 3did exploits structural information to provide critical molecular details necessary for understanding how interactions occur.", "abbreviation": "3DID", "support-links": [{"url": "3did@irbbarcelona.org", "type": "Support email"}], "year-creation": 2010, "data-processes": [{"url": "http://3did.irbbarcelona.org/download.php", "name": "download", "type": "data access"}, {"url": "http://3did.irbbarcelona.org/search.php", "name": "search", "type": "data access"}, {"url": "http://3did.irbbarcelona.org/browse.php", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://3did.irbbarcelona.org/iquery.html", "name": "search"}]}, "legacy-ids": ["biodbcore-000517", "bsg-d000517"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Molecular structure", "Protein structure", "Protein interaction", "Molecular interaction", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Spain"], "name": "FAIRsharing record for: 3D interacting domains", "abbreviation": "3DID", "url": "https://fairsharing.org/10.25504/FAIRsharing.jptb1m", "doi": "10.25504/FAIRsharing.jptb1m", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database of 3D Interaction Domains (3did) is a collection of domain-domain interactions in proteins for which high-resolution three-dimensional structures are known. 3did exploits structural information to provide critical molecular details necessary for understanding how interactions occur.", "publications": [{"id": 491, "pubmed_id": 20965963, "title": "3did: identification and classification of domain-based interactions of known three-dimensional structure.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq962", "authors": "Stein A., C\u00e9ol A., Aloy P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq962", "created_at": "2021-09-30T08:23:13.376Z", "updated_at": "2021-09-30T08:23:13.376Z"}, {"id": 1370, "pubmed_id": 24081580, "title": "3did: a catalog of domain-based interactions of known three-dimensional structure.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt887", "authors": "Mosca R, Ceol A, Stein A, Olivella R, Aloy P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt887", "created_at": "2021-09-30T08:24:53.248Z", "updated_at": "2021-09-30T11:29:07.376Z"}], "licence-links": [{"licence-name": "3D interacting domains Attribution required", "licence-id": 3, "link-id": 1938, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2052", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:53.402Z", "metadata": {"doi": "10.25504/FAIRsharing.mn5m1p", "name": "Pseudomonas Genome DB", "status": "ready", "contacts": [{"contact-email": "pseudocap-mail@sfu.ca"}], "homepage": "http://www.pseudomonas.com/", "identifier": 2052, "description": "The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", "abbreviation": "PGDB", "support-links": [{"url": "pseudocap-mail@sfu.ca", "type": "Support email"}, {"url": "http://www.pseudomonas.com/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/pseudocap", "type": "Twitter"}], "year-creation": 2000, "data-processes": [{"url": "http://www.pseudomonas.com/strain/browser", "name": "browse", "type": "data access"}, {"url": "http://www.pseudomonas.com/search/sequences", "name": "sequence search", "type": "data access"}, {"url": "http://www.pseudomonas.com/search/annotations", "name": "annotation search", "type": "data access"}, {"url": "http://www.pseudomonas.com/strain/download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.pseudomonas.com/blast/set", "name": "BLAST"}, {"url": "http://www.pseudomonas.com/jbrowse/Pseudomonas_aeruginosa_PAO1_107.html", "name": "JBrowse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012086", "name": "re3data:r3d100012086", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006590", "name": "SciCrunch:RRID:SCR_006590", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000519", "bsg-d000519"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Protein", "Gene"], "taxonomies": ["Pseudomonas aeruginosa"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Pseudomonas Genome DB", "abbreviation": "PGDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.mn5m1p", "doi": "10.25504/FAIRsharing.mn5m1p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", "publications": [{"id": 1352, "pubmed_id": 24818923, "title": "Mining the Pseudomonas genome.", "year": 2014, "url": "http://doi.org/10.1007/978-1-4939-0473-0_33", "authors": "Winsor GL,Brinkman FS", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-0473-0_33", "created_at": "2021-09-30T08:24:51.289Z", "updated_at": "2021-09-30T08:24:51.289Z"}, {"id": 1382, "pubmed_id": 18978025, "title": "Pseudomonas Genome Database: facilitating user-friendly, comprehensive comparisons of microbial genomes.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn861", "authors": "Winsor GL., Van Rossum T., Lo R., Khaira B., Whiteside MD., Hancock RE., Brinkman FS.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn861", "created_at": "2021-09-30T08:24:54.553Z", "updated_at": "2021-09-30T08:24:54.553Z"}, {"id": 3015, "pubmed_id": 20929876, "title": "Pseudomonas Genome Database: improved comparative analysis and population genomics capability for Pseudomonas genomes.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq869", "authors": "Winsor GL,Lam DK,Fleming L,Lo R,Whiteside MD,Yu NY,Hancock RE,Brinkman FS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq869", "created_at": "2021-09-30T08:28:11.689Z", "updated_at": "2021-09-30T11:29:49.579Z"}, {"id": 3017, "pubmed_id": 15608211, "title": "Pseudomonas aeruginosa Genome Database and PseudoCAP: facilitating community-based, continually updated, genome annotation.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki047", "authors": "Winsor GL,Lo R,Ho Sui SJ,Ung KS,Huang S,Cheng D,Ching WK,Hancock RE,Brinkman FS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki047", "created_at": "2021-09-30T08:28:11.963Z", "updated_at": "2021-09-30T11:29:49.670Z"}], "licence-links": [{"licence-name": "PGDB Attribution required", "licence-id": 659, "link-id": 803, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2054", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:02.392Z", "metadata": {"doi": "10.25504/FAIRsharing.65dmtr", "name": "EcoCyc E. coli Database", "status": "ready", "contacts": [{"contact-name": "BioCyc Support", "contact-email": "biocyc-support@ai.sri.com"}], "homepage": "https://ecocyc.org/", "citations": [], "identifier": 2054, "description": "EcoCyc is a model organism database for Escherichia coli K-12 MG1655. EcoCyc curation captures literature-based information on the functions of individual E. coli gene products, metabolic pathways, and regulation of E. coli gene expression. EcoCyc has been curated from 37,000 publications as of 2019. Updates to EcoCyc content continue to improve the comprehensive picture of E. coli biology. The utility of EcoCyc is enhanced by new tools available on the EcoCyc web site, and the development of EcoCyc as a teaching tool is increasing the impact of the knowledge collected in EcoCyc.", "abbreviation": "EcoCyc", "support-links": [{"url": "https://ecocyc.org/PToolsWebsiteHowto.shtml", "name": "EcoCyc User Guide", "type": "Help documentation"}], "data-processes": [{"url": "https://bioinformatics.ai.sri.com/ptools/curatorsguide.pdf", "name": "Curator Guide for Pathway/Genome Databases", "type": "data curation"}], "associated-tools": [{"url": "https://ecocyc.org/query.shtml", "name": "Advanced search"}, {"url": "https://ecocyc.org/ECOLI/blast.html", "name": "BLAST"}, {"url": "https://ecocyc.org/ECOLI/select-gen-el", "name": "Browse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011277", "name": "re3data:r3d100011277", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002433", "name": "SciCrunch:RRID:SCR_002433", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000521", "bsg-d000521"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Gene expression", "Regulation of gene expression", "Regulation of post-translational protein modification", "Publication", "Molecular interaction", "Enzyme", "Protein", "Pathway model", "Genome"], "taxonomies": ["Escherichia coli"], "user-defined-tags": ["Allosteric regulation"], "countries": ["United States"], "name": "FAIRsharing record for: EcoCyc E. coli Database", "abbreviation": "EcoCyc", "url": "https://fairsharing.org/10.25504/FAIRsharing.65dmtr", "doi": "10.25504/FAIRsharing.65dmtr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EcoCyc is a model organism database for Escherichia coli K-12 MG1655. EcoCyc curation captures literature-based information on the functions of individual E. coli gene products, metabolic pathways, and regulation of E. coli gene expression. EcoCyc has been curated from 37,000 publications as of 2019. Updates to EcoCyc content continue to improve the comprehensive picture of E. coli biology. The utility of EcoCyc is enhanced by new tools available on the EcoCyc web site, and the development of EcoCyc as a teaching tool is increasing the impact of the knowledge collected in EcoCyc.", "publications": [{"id": 2137, "pubmed_id": 23143106, "title": "EcoCyc: fusing model organism databases with systems biology.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1027", "authors": "Keseler IM., Mackie A., Peralta-Gil M. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1027", "created_at": "2021-09-30T08:26:20.933Z", "updated_at": "2021-09-30T08:26:20.933Z"}, {"id": 2180, "pubmed_id": 27899573, "title": "The EcoCyc database: reflecting new knowledge about Escherichia coli K-12.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1003", "authors": "Keseler IM,Mackie A,Santos-Zavaleta A et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1003", "created_at": "2021-09-30T08:26:25.789Z", "updated_at": "2021-09-30T11:29:30.703Z"}, {"id": 2590, "pubmed_id": 26442933, "title": "The EcoCyc Database.", "year": 2014, "url": "http://doi.org/10.1128/ecosalplus.ESP-0009-2013", "authors": "Karp PD,Weaver D,Paley S et al.", "journal": "EcoSal Plus", "doi": "10.1128/ecosalplus.ESP-0009-2013", "created_at": "2021-09-30T08:27:17.817Z", "updated_at": "2021-09-30T08:27:17.817Z"}], "licence-links": [{"licence-name": "BioCyc Database License", "licence-id": 78, "link-id": 1445, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2062", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:22.538Z", "metadata": {"doi": "10.25504/FAIRsharing.1m6pt7", "name": "UniPathway", "status": "deprecated", "contacts": [{"contact-name": "Alain Viari", "contact-email": "alain.viari@inria.fr"}], "homepage": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "identifier": 2062, "description": "UniPathway is a manually curated resource of metabolic pathways for the UniProtKB/Swiss-Prot knowledgebase. It provides a structured controlled vocabulary to describe the role of a protein in a metabolic pathway.", "abbreviation": "UniPathway", "support-links": [{"url": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/welcome/about/documentation/documentation_overview", "type": "Help documentation"}], "data-processes": [{"url": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "name": "browse", "type": "data access"}, {"url": "http://www.unipathway.org/download/unipathway", "name": "Download", "type": "data access"}, {"url": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "name": "search", "type": "data access"}], "deprecation-date": "2016-12-28", "deprecation-reason": "Due to technical and financial reasons this website is no longer being maintained."}, "legacy-ids": ["biodbcore-000529", "bsg-d000529"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Pathway model"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France", "Switzerland"], "name": "FAIRsharing record for: UniPathway", "abbreviation": "UniPathway", "url": "https://fairsharing.org/10.25504/FAIRsharing.1m6pt7", "doi": "10.25504/FAIRsharing.1m6pt7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UniPathway is a manually curated resource of metabolic pathways for the UniProtKB/Swiss-Prot knowledgebase. It provides a structured controlled vocabulary to describe the role of a protein in a metabolic pathway.", "publications": [{"id": 454, "pubmed_id": 22102589, "title": "UniPathway: a resource for the exploration and annotation of metabolic pathways.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1023", "authors": "Morgat A., Coissac E., Coudert E., Axelsen KB., Keller G., Bairoch A., Bridge A., Bougueleret L., Xenarios I., Viari A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr1023", "created_at": "2021-09-30T08:23:09.275Z", "updated_at": "2021-09-30T08:23:09.275Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2399", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T16:27:59.000Z", "updated-at": "2021-12-06T10:49:17.249Z", "metadata": {"doi": "10.25504/FAIRsharing.tppk10", "name": "ViralZone", "status": "ready", "contacts": [{"contact-name": "Philippe Le Mercier", "contact-email": "Philippe.Lemercier@sib.swiss", "contact-orcid": "0000-0001-8528-090X"}], "homepage": "http://viralzone.expasy.org/", "identifier": 2399, "description": "ViralZone is a web resource for viral genes and families, providing detailed molecular and epidemiological information, along with virion and genome figures. Each virus or family page gives easy access to UniProtKB/Swiss-Prot viral protein entries.", "abbreviation": "ViralZone", "support-links": [{"url": "http://viralzone.expasy.org/contact", "type": "Contact form"}, {"url": "viralzone@isb-sib.ch", "type": "Support email"}, {"url": "http://viralzone.expasy.org/all_by_species/5576.html", "type": "Training documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://viralzone.expasy.org/", "name": "browse", "type": "data access"}, {"url": "https://viralzone.expasy.org/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013314", "name": "re3data:r3d100013314", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006563", "name": "SciCrunch:RRID:SCR_006563", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000880", "bsg-d000880"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Virology", "Life Science", "Epidemiology"], "domains": ["Gene expression", "Host", "Gene", "Genome", "Viral sequence"], "taxonomies": ["Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["Switzerland"], "name": "FAIRsharing record for: ViralZone", "abbreviation": "ViralZone", "url": "https://fairsharing.org/10.25504/FAIRsharing.tppk10", "doi": "10.25504/FAIRsharing.tppk10", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ViralZone is a web resource for viral genes and families, providing detailed molecular and epidemiological information, along with virion and genome figures. Each virus or family page gives easy access to UniProtKB/Swiss-Prot viral protein entries.", "publications": [{"id": 2032, "pubmed_id": 23193299, "title": "ViralZone: recent updates to the virus knowledge resource.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1220", "authors": "Masson P,Hulo C,De Castro E,Bitter H,Gruenbaum L,Essioux L,Bougueleret L,Xenarios I,Le Mercier P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1220", "created_at": "2021-09-30T08:26:08.853Z", "updated_at": "2021-09-30T11:29:26.502Z"}, {"id": 2041, "pubmed_id": 20947564, "title": "ViralZone: a knowledge resource to understand virus diversity.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq901", "authors": "Hulo C,de Castro E,Masson P,Bougueleret L,Bairoch A,Xenarios I,Le Mercier P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq901", "created_at": "2021-09-30T08:26:09.922Z", "updated_at": "2021-09-30T11:29:27.153Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1871, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3180", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-07T11:17:10.000Z", "updated-at": "2021-11-24T13:13:33.661Z", "metadata": {"doi": "10.25504/FAIRsharing.pmdtmg", "name": "ADPriboDB", "status": "ready", "contacts": [{"contact-name": "Anthony Leung", "contact-email": "adpribodb@leunglab.org", "contact-orcid": "0000-0001-5569-4036"}], "homepage": "http://adpribodb.leunglab.org/", "citations": [{"doi": "10.1093/nar/gkaa941", "pubmed-id": 33137182, "publication-id": 147}], "identifier": 3180, "description": "ADPriboDB is a database of ADP-ribosylated proteins and their literature-identified ADP-ribosylated residues. The database includes a variety of information for each entry, including any drug treatments performed to obtain the identification of the modification, cell lines and species, the ADP-ribosyltransferases responsible for synthesizing the modification (if known), as well as the site of modification (if identified).", "abbreviation": "ADPriboDB", "support-links": [{"url": "http://adpribodb.leunglab.org/contact.html", "name": "Feedback Form", "type": "Contact form"}, {"url": "http://adpribodb.leunglab.org/tutorial.html", "name": "Tutorial", "type": "Help documentation"}, {"url": "http://adpribodb.leunglab.org/about.html", "name": "About", "type": "Help documentation"}, {"url": "http://adpribodb.leunglab.org/new-features.html", "name": "New Features", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://adpribodb.leunglab.org/search.html", "name": "Search", "type": "data access"}, {"url": "http://adpribodb.leunglab.org/data-upload.html", "name": "Data Submission", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001691", "bsg-d001691"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular biology", "Proteomics"], "domains": ["Protein domain", "PTM site prediction", "Computational biological predictions", "Protein interaction", "Phosphorylation", "Methylation", "Post-translational protein modification", "Algorithm", "Binding motif", "High-throughput screening", "Protein", "Sequence motif"], "taxonomies": ["Arabidopsis lyrata subsp. lyrata", "Arabidopsis thaliana", "Azospirillum brasilense", "Bos taurus", "Camelus bactrianus", "Camelus dromedarius", "Canis lupus", "Chlorocebus aethiops", "Coprinellus congregatus", "Coturnix coturnix", "Cricetulus griseus", "Drosophila grimshawi", "Drosophila melanogaster", "Entamoeba histolytica", "Felis catus", "Gallus gallus", "Helix pomatia", "Homo sapiens", "Hymenolepis diminuta", "Macaca fascicularis", "Macaca mulatta", "Mus musculus", "Nicotiana tabacum", "Octopus vulgaris", "Oncorhynchus mykiss", "Oryctolagus cuniculus", "Oryza sativa L. ssp. japonica", "Ovis aries", "Pongo abelii", "Rattus norvegicus", "Rhodospirillum rubrum", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe", "Spisula solidissima", "Spodoptera frugiperda", "Streptomyces coelicolor", "Streptomyces thermoviolaceus", "Sus scrofa", "Tetrapygus niger", "Triticum aestivum"], "user-defined-tags": ["ADP-ribosylation"], "countries": ["United States"], "name": "FAIRsharing record for: ADPriboDB", "abbreviation": "ADPriboDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.pmdtmg", "doi": "10.25504/FAIRsharing.pmdtmg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ADPriboDB is a database of ADP-ribosylated proteins and their literature-identified ADP-ribosylated residues. The database includes a variety of information for each entry, including any drug treatments performed to obtain the identification of the modification, cell lines and species, the ADP-ribosyltransferases responsible for synthesizing the modification (if known), as well as the site of modification (if identified).", "publications": [{"id": 143, "pubmed_id": 27507885, "title": "ADPriboDB: The database of ADP-ribosylated proteins", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw706", "authors": "Christina A. Vivelo, Ricky Wat, Charul Agrawal, Hui Yi Tee, and Anthony K. L. Leung", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw706", "created_at": "2021-09-30T08:22:35.615Z", "updated_at": "2021-09-30T08:22:35.615Z"}, {"id": 147, "pubmed_id": 33137182, "title": "ADPriboDB 2.0: an updated database of ADP-ribosylated proteins.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa941", "authors": "Ayyappan V,Wat R,Barber C,Vivelo CA,Gauch K,Visanpattanasin P,Cook G,Sazeides C,Leung AKL", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa941", "created_at": "2021-09-30T08:22:35.996Z", "updated_at": "2021-09-30T11:28:43.200Z"}, {"id": 3047, "pubmed_id": null, "title": "ADPriboDB v2.0: An Updated Database of ADP-ribosylated Proteins", "year": 2020, "url": "https://www.biorxiv.org/content/10.1101/2020.09.24.298851v1.full", "authors": "Vinay Ayyappan, Ricky Wat, Calvin Barber, Christina A. Vivelo, Kathryn Gauch, Pat Visanpattanasin, Garth Cook, Christos Sazeides, Anthony K. L. Leung", "journal": "BioRxiv", "doi": null, "created_at": "2021-09-30T08:28:15.509Z", "updated_at": "2021-09-30T08:28:15.509Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2086", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:24.695Z", "metadata": {"doi": "10.25504/FAIRsharing.wfrsvq", "name": "gpDB", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "contactbiodb@biol.uoa.gr"}], "homepage": "http://bioinformatics.biol.uoa.gr/gpDB", "identifier": 2086, "description": "GpDB is a publicly accessible, relational database of G-proteins and their interactions with GPCRs and effector molecules. The sequences are classified according to a hierarchy of different classes, families and sub-families, based on extensive literature search.", "abbreviation": "gpDB", "support-links": [{"url": "http://bioinformatics.biol.uoa.gr/gpDB/help/manual.htm", "type": "Help documentation"}, {"url": "http://bioinformatics.biol.uoa.gr/gpDB/help/manual.htm", "type": "Help documentation"}], "year-creation": 2003, "associated-tools": [{"url": "http://bioinformatics.biol.uoa.gr/gpDB/retrieveBla.jsp", "name": "BLAST"}]}, "legacy-ids": ["biodbcore-000554", "bsg-d000554"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Small molecule", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece"], "name": "FAIRsharing record for: gpDB", "abbreviation": "gpDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.wfrsvq", "doi": "10.25504/FAIRsharing.wfrsvq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GpDB is a publicly accessible, relational database of G-proteins and their interactions with GPCRs and effector molecules. The sequences are classified according to a hierarchy of different classes, families and sub-families, based on extensive literature search.", "publications": [{"id": 511, "pubmed_id": 18441001, "title": "gpDB: a database of GPCRs, G-proteins, effectors and their interactions.", "year": 2008, "url": "http://doi.org/10.1093/bioinformatics/btn206", "authors": "Theodoropoulou MC., Bagos PG., Spyropoulos IC., Hamodrakas SJ.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btn206", "created_at": "2021-09-30T08:23:15.775Z", "updated_at": "2021-09-30T08:23:15.775Z"}, {"id": 534, "pubmed_id": 15619328, "title": "A database for G proteins and their interaction with GPCRs.", "year": 2004, "url": "http://doi.org/10.1186/1471-2105-5-208", "authors": "Elefsinioti AL., Bagos PG., Spyropoulos IC., Hamodrakas SJ.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-5-208", "created_at": "2021-09-30T08:23:18.353Z", "updated_at": "2021-09-30T08:23:18.353Z"}], "licence-links": [{"licence-name": "GpDB Attribution required", "licence-id": 363, "link-id": 520, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2117", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:25.822Z", "metadata": {"doi": "10.25504/FAIRsharing.bn6jba", "name": "Poxvirus Bioinformatics Resource Center", "status": "deprecated", "contacts": [{"contact-name": "Elliot Lefkowitz", "contact-email": "elliotl@uab.edu"}], "homepage": "http://www.poxvirus.org", "identifier": 2117, "description": "Poxvirus Bioinformatics Resource Center has been established to provide specialized web-based resources to the scientific community studying poxviruses. This resource is no longer being maintained. For tools and data supporting virus genomics, especially related to poxviruses and other large DNA viruses, please visit the Viral Bioinformatics site maintained by our collaborator, Chris Upton: http://virology.ca For information on virus taxonomy, please visit the ICTV web site at http://www.ictvonline.org/ For updated sequence data and analytical tools, please visit http://www.viprbrc.org", "data-processes": [{"url": "ftp://ftp.genome.uab.edu/vbrc", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.poxvirus.org/blast.asp", "name": "BLAST"}], "deprecation-date": "2016-12-28", "deprecation-reason": "This resource is no longer being maintained due to lack of resources to maintain the website."}, "legacy-ids": ["biodbcore-000587", "bsg-d000587"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Structure", "Protein", "Genome"], "taxonomies": ["Poxviridae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Poxvirus Bioinformatics Resource Center", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.bn6jba", "doi": "10.25504/FAIRsharing.bn6jba", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Poxvirus Bioinformatics Resource Center has been established to provide specialized web-based resources to the scientific community studying poxviruses. This resource is no longer being maintained. For tools and data supporting virus genomics, especially related to poxviruses and other large DNA viruses, please visit the Viral Bioinformatics site maintained by our collaborator, Chris Upton: http://virology.ca For information on virus taxonomy, please visit the ICTV web site at http://www.ictvonline.org/ For updated sequence data and analytical tools, please visit http://www.viprbrc.org", "publications": [{"id": 577, "pubmed_id": 15608205, "title": "Poxvirus Bioinformatics Resource Center: a comprehensive Poxviridae informational and analytical resource.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki110", "authors": "Lefkowitz EJ., Upton C., Changayil SS., Buck C., Traktman P., Buller RM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki110", "created_at": "2021-09-30T08:23:23.152Z", "updated_at": "2021-09-30T08:23:23.152Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 781, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2149", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.225Z", "metadata": {"doi": "10.25504/FAIRsharing.qw7qtk", "name": "The MOuse NOnCode Lung database", "status": "ready", "contacts": [{"contact-email": "support@monocldb.org"}], "homepage": "http://www.monocldb.org/", "identifier": 2149, "description": "MONOCLdb is an integrative and interactive database designed to retrieve and visualize annotations and expression profiles of long-non coding RNAs (lncRNAs) expressed in Collaborative Cross (http://compgen.unc.edu/) founder mice in response to respiratory influenza and SARS infections.", "abbreviation": "MONOCLdb", "access-points": [{"url": "http://www.monocldb.org/web-service.php", "name": "Custom protocol", "type": "Other"}], "support-links": [{"url": "http://www.monocldb.org/About", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://www.monocldb.org:9000/das/", "name": "Distributed Annotation System", "type": "data access"}, {"url": "http://www.monocldb.org/web-service.php", "name": "Web service", "type": "data access"}, {"url": "http://www.monocldb.org", "name": "Web Interface", "type": "data access"}], "associated-tools": [{"url": "http://www.monocldb.org/ExpressionHeatmap", "name": "Expression Heatmap"}, {"url": "http://www.monocldb.org/Module-basedEnrichment", "name": "Module-based Enrichment"}, {"url": "http://www.monocldb.org/Rank-basedEnrichment", "name": "Rank-based Enrichment"}, {"url": "http://www.monocldb.org/Co-expressionNetwork", "name": "Co-expression Network"}, {"url": "http://www.monocldb.org/GenomicAnnotations", "name": "Genomic Annotations"}, {"url": "http://www.monocldb.org/PathogenicityAssociation", "name": "Pathogenicity Association"}, {"url": "http://www.monocldb.org:9000/das/", "name": "Distributed Annotation System"}]}, "legacy-ids": ["biodbcore-000621", "bsg-d000621"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Life Science"], "domains": ["RNA sequence", "Gene Ontology enrichment", "Molecular interaction", "Genetic interaction", "Genome", "Long non-coding RNA"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States", "European Union"], "name": "FAIRsharing record for: The MOuse NOnCode Lung database", "abbreviation": "MONOCLdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.qw7qtk", "doi": "10.25504/FAIRsharing.qw7qtk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MONOCLdb is an integrative and interactive database designed to retrieve and visualize annotations and expression profiles of long-non coding RNAs (lncRNAs) expressed in Collaborative Cross (http://compgen.unc.edu/) founder mice in response to respiratory influenza and SARS infections.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2138", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.579Z", "metadata": {"doi": "10.25504/FAIRsharing.jwhdyr", "name": "ModBase database of comparative protein structure models", "status": "ready", "contacts": [{"contact-name": "ModBase Contact", "contact-email": "modbase@salilab.org"}], "homepage": "http://salilab.org/modbase", "identifier": 2138, "description": "ModBase (http://salilab.org/modbase) is a database of annotated comparative protein structure models. The models are calculated by ModPipe, an automated modeling pipeline that relies primarily on Modeller for fold assignment, sequence-structure alignment, model building, and model assessment (http://salilab.org/modeller/). ModBase currently contains almost 30 million reliable models for domains in 4.7 million unique protein sequences. ModBase allows users to compute or update comparative models on demand, through an interface to the ModWeb modeling server (http://salilab.org/modweb). ModBase models are also available through the Protein Model Portal (http://www.proteinmodelportal.org/).", "abbreviation": "ModBase", "support-links": [{"url": "http://salilab.org/modbase", "type": "Help documentation"}], "year-creation": 1998, "associated-tools": [{"url": "http://salilab.org/modpipe", "name": "ModPipe 2.2"}]}, "legacy-ids": ["biodbcore-000608", "bsg-d000608"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ModBase database of comparative protein structure models", "abbreviation": "ModBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.jwhdyr", "doi": "10.25504/FAIRsharing.jwhdyr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ModBase (http://salilab.org/modbase) is a database of annotated comparative protein structure models. The models are calculated by ModPipe, an automated modeling pipeline that relies primarily on Modeller for fold assignment, sequence-structure alignment, model building, and model assessment (http://salilab.org/modeller/). ModBase currently contains almost 30 million reliable models for domains in 4.7 million unique protein sequences. ModBase allows users to compute or update comparative models on demand, through an interface to the ModWeb modeling server (http://salilab.org/modweb). ModBase models are also available through the Protein Model Portal (http://www.proteinmodelportal.org/).", "publications": [{"id": 591, "pubmed_id": 21097780, "title": "ModBase, a database of annotated comparative protein structure models, and associated resources.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1091", "authors": "Pieper U, Webb BM, Barkan DT, Schneidman-Duhovny D, Schlessinger A, Braberg H, Yang Z, Meng EC, Pettersen EF, Huang CC, Datta RS, Sampathkumar P, Madhusudhan MS, Sj\u00f6lander K, Ferrin TE, Burley SK, Sali A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq1091", "created_at": "2021-09-30T08:23:24.800Z", "updated_at": "2021-09-30T11:28:47.734Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2663", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-21T10:56:48.000Z", "updated-at": "2022-02-08T10:38:48.320Z", "metadata": {"doi": "10.25504/FAIRsharing.76044b", "name": "Database of Genomic Variants", "status": "ready", "contacts": [{"contact-name": "Stephen W. Scherer", "contact-email": "stephen.scherer@sickkids.ca", "contact-orcid": "0000-0002-8326-1999"}], "homepage": "http://dgv.tcag.ca/dgv/app/home", "citations": [], "identifier": 2663, "description": "The Database of Genomic Variants (DGV) is a publicly accessible, comprehensive curated catalogue of structural variation (SV) found in the genomes of control individuals from worldwide populations.", "abbreviation": "DGV", "support-links": [{"url": "dgv-contact@sickkids.ca", "type": "Support email"}, {"url": "http://dgv.tcag.ca/dgv/app/faq?ref=", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://dgv.tcag.ca/dgv/app/contacts?ref=", "type": "Mailing list"}, {"url": "http://dgv.tcag.ca/dgv/app/statistics?ref=", "name": "Statistics", "type": "Help documentation"}, {"url": "http://dgv.tcag.ca/dgv/app/resources?ref=", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://dgv.tcag.ca/dgv/app/downloads?ref=", "name": "Download", "type": "data access"}, {"url": "http://dgv.tcag.ca/dgv/app/submissions?ref=", "name": "Submit", "type": "data curation"}, {"url": "http://dgv.tcag.ca/dgv/app/search?ref=#tabs-view_all_info_study", "name": "Browse", "type": "data access"}, {"url": "http://dgv.tcag.ca/gb2/gbrowse/dgv2_ref=", "name": "Genome browser", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010346", "name": "re3data:r3d100010346", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007000", "name": "SciCrunch:RRID:SCR_007000", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001156", "bsg-d001156"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Biomedical Science"], "domains": ["Sequence variant"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Functional impact of genetic variants"], "countries": ["Canada"], "name": "FAIRsharing record for: Database of Genomic Variants", "abbreviation": "DGV", "url": "https://fairsharing.org/10.25504/FAIRsharing.76044b", "doi": "10.25504/FAIRsharing.76044b", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Genomic Variants (DGV) is a publicly accessible, comprehensive curated catalogue of structural variation (SV) found in the genomes of control individuals from worldwide populations.", "publications": [{"id": 2382, "pubmed_id": 24174537, "title": "The Database of Genomic Variants: a curated collection of structural variation in the human genome.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt958", "authors": "MacDonald JR,Ziman R,Yuen RK,Feuk L,Scherer SW", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt958", "created_at": "2021-09-30T08:26:52.674Z", "updated_at": "2021-09-30T11:29:34.505Z"}], "licence-links": [{"licence-name": "TCAG Disclaimer", "licence-id": 772, "link-id": 109, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2888", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-21T13:23:13.000Z", "updated-at": "2021-12-06T10:47:54.797Z", "metadata": {"doi": "10.25504/FAIRsharing.3J6NYn", "name": "Encyclopedia of Life", "status": "ready", "contacts": [{"contact-name": "EOL Secretariat", "contact-email": "secretariat@eol.org", "contact-orcid": "0000-0002-9943-2342"}], "homepage": "https://eol.org/", "identifier": 2888, "description": "The Encyclopedia of Life (EOL) is a collaborative encyclopedia to describe all known living species. It identifies sources of biodiversity knowledge that are legally and practically shareable; integrates them with other sources and adds metadata; provides searching and other services; and collaborates with other projects to support data sharing.", "abbreviation": "EOL", "access-points": [{"url": "https://eol.org/docs/what-is-eol/data-services", "name": "EOL media and article APIs", "type": "REST"}, {"url": "https://github.com/EOL/eol_website/blob/master/doc/api.md", "name": "EOL trait and structured data APIs", "type": "Other"}], "support-links": [{"url": "secretariat@eol.org", "name": "Jen Hammock", "type": "Support email"}, {"url": "https://discuss.eol.org/", "name": "EOL Open Forum", "type": "Forum"}, {"url": "https://eol.org/docs/what-is-eol", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/eol", "name": "@eol", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://opendata.eol.org/", "name": "Download platform", "type": "data release"}, {"url": "https://eol.org/terms/search", "name": "Advanced Search", "type": "data access"}], "associated-tools": [{"url": "http://vera.cc.gatech.edu/docs/example", "name": "VERA Modelling 1.1.3"}, {"url": "https://education.eol.org/card_maker", "name": "EOL Biodiversity Cards 2020"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010229", "name": "re3data:r3d100010229", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005905", "name": "SciCrunch:RRID:SCR_005905", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001389", "bsg-d001389"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Taxonomy", "Ecology", "Biodiversity", "Biology"], "domains": ["Taxonomic classification"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States", "Australia", "Mexico", "Egypt"], "name": "FAIRsharing record for: Encyclopedia of Life", "abbreviation": "EOL", "url": "https://fairsharing.org/10.25504/FAIRsharing.3J6NYn", "doi": "10.25504/FAIRsharing.3J6NYn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Encyclopedia of Life (EOL) is a collaborative encyclopedia to describe all known living species. It identifies sources of biodiversity knowledge that are legally and practically shareable; integrates them with other sources and adds metadata; provides searching and other services; and collaborates with other projects to support data sharing.", "publications": [], "licence-links": [{"licence-name": "Various Creative Commons licenses", "licence-id": 838, "link-id": 1721, "relation": "undefined"}, {"licence-name": "MIT Licence", "licence-id": 517, "link-id": 1722, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2706", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-15T14:55:06.000Z", "updated-at": "2021-11-24T13:17:53.938Z", "metadata": {"doi": "10.25504/FAIRsharing.wmZz9V", "name": "WormMine", "status": "ready", "contacts": [{"contact-email": "help@wormbase.org"}], "homepage": "http://intermine.wormbase.org/tools/wormmine/begin.do", "identifier": 2706, "description": "WormMine integrates many types of data for C. elegans and related nematodes. You can run flexible queries, export results and analyse lists of data.", "abbreviation": "WormMine", "access-points": [{"url": "http://intermine.wormbase.org/tools/wormmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://intermine.wormbase.org/tools/wormmine/dataCategories.do", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://intermine.wormbase.org/tools/wormmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://intermine.wormbase.org/tools/wormmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://intermine.wormbase.org/tools/wormmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://intermine.wormbase.org/tools/wormmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001204", "bsg-d001204"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Reagent", "Gene expression", "Phenotype", "Protein"], "taxonomies": ["Caenorhabditis elegans"], "user-defined-tags": ["genomic variation"], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: WormMine", "abbreviation": "WormMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.wmZz9V", "doi": "10.25504/FAIRsharing.wmZz9V", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: WormMine integrates many types of data for C. elegans and related nematodes. You can run flexible queries, export results and analyse lists of data.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 428, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2840", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-24T10:14:25.000Z", "updated-at": "2021-11-24T13:14:56.807Z", "metadata": {"doi": "10.25504/FAIRsharing.YmkBZX", "name": "Pathogen-Host Interaction Data integration and Analysis System", "status": "ready", "contacts": [{"contact-name": "Yongqun \"Oliver\" He", "contact-email": "yongqunh@med.umich.edu", "contact-orcid": "0000-0001-9189-9661"}], "homepage": "http://www.phidias.us/index.php", "citations": [{"doi": "10.1186/gb-2007-8-7-r150", "pubmed-id": 17663773, "publication-id": 372}], "identifier": 2840, "description": "PHIDIAS is a web-based database and analysis system that aims to manually curate, computationally analyze, and address different scientific issues in the areas of pathogen-host interactions (PHI, or called host-pathogen interactions or HPI). PHIDIAS has emphasized the study of those pathogens that cause various infectious diseases in humans and animals. The recently published Victors analysis program is a relatively independent system within the PHIDIAS database and analysis resource.", "abbreviation": "PHIDIAS", "support-links": [{"url": "http://www.phidias.us/faqs.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.phidias.us/docs/docs.php", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "http://www.phidias.us/victors/index.php", "name": "Victors Search", "type": "data access"}, {"url": "http://www.phidias.us/phinfo/index.php", "name": "Phinfo Search", "type": "data access"}, {"url": "http://www.phidias.us/phinet/index.php", "name": "Browse Phinet", "type": "data access"}, {"url": "http://www.phidias.us/hazard/index.php", "name": "Search HazARD", "type": "data access"}, {"url": "http://www.phidias.us/phigen/index.php", "name": "Gene Search", "type": "data access"}, {"url": "http://www.phidias.us/blast/index.php", "name": "BLAST", "type": "data access"}, {"url": "http://www.phidias.us/phigen/index.php", "name": "Annotate Gene", "type": "data curation"}, {"url": "http://www.phidias.us/datasubmission/index.php", "name": "Submit", "type": "data curation"}], "associated-tools": [{"url": "http://www.phidias.us/pacodom/index.php", "name": "Pacodom"}]}, "legacy-ids": ["biodbcore-001341", "bsg-d001341"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Life Science", "Biomedical Science"], "domains": ["Pathogen", "Host", "Curated information", "Infection"], "taxonomies": ["Bacteria", "Brucella"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pathogen-Host Interaction Data integration and Analysis System", "abbreviation": "PHIDIAS", "url": "https://fairsharing.org/10.25504/FAIRsharing.YmkBZX", "doi": "10.25504/FAIRsharing.YmkBZX", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PHIDIAS is a web-based database and analysis system that aims to manually curate, computationally analyze, and address different scientific issues in the areas of pathogen-host interactions (PHI, or called host-pathogen interactions or HPI). PHIDIAS has emphasized the study of those pathogens that cause various infectious diseases in humans and animals. The recently published Victors analysis program is a relatively independent system within the PHIDIAS database and analysis resource.", "publications": [{"id": 372, "pubmed_id": 17663773, "title": "PHIDIAS: a pathogen-host interaction data integration and analysis system.", "year": 2007, "url": "http://doi.org/10.1186/gb-2007-8-7-r150", "authors": "Xiang Z,Tian Y,He Y", "journal": "Genome Biol", "doi": "10.1186/gb-2007-8-7-r150", "created_at": "2021-09-30T08:22:59.999Z", "updated_at": "2021-09-30T08:22:59.999Z"}], "licence-links": [{"licence-name": "PHIDIAS Disclaimer", "licence-id": 663, "link-id": 1797, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2170", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.850Z", "metadata": {"doi": "10.25504/FAIRsharing.6gz84c", "name": "Bio2RDF", "status": "ready", "contacts": [{"contact-name": "Michel Dumontier", "contact-email": "michel.dumontier@gmail.com", "contact-orcid": "0000-0003-4727-9435"}], "homepage": "http://bio2rdf.org", "identifier": 2170, "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "abbreviation": "Bio2RDF", "support-links": [{"url": "https://groups.google.com/forum/?fromgroups#!forum/bio2rdf", "type": "Forum"}, {"url": "https://github.com/bio2rdf/bio2rdf-scripts/wiki/Bio2RDF-Tutorials", "type": "Github"}, {"url": "https://twitter.com/bio2rdf", "type": "Twitter"}], "year-creation": 2004}, "legacy-ids": ["biodbcore-000642", "bsg-d000642"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Bio2RDF", "abbreviation": "Bio2RDF", "url": "https://fairsharing.org/10.25504/FAIRsharing.6gz84c", "doi": "10.25504/FAIRsharing.6gz84c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "publications": [{"id": 1639, "pubmed_id": 18472304, "title": "Bio2RDF: towards a mashup to build bioinformatics knowledge systems.", "year": 2008, "url": "http://doi.org/10.1016/j.jbi.2008.03.004", "authors": "Belleau F,Nolin MA,Tourigny N,Rigault P,Morissette J", "journal": "J Biomed Inform", "doi": "10.1016/j.jbi.2008.03.004", "created_at": "2021-09-30T08:25:23.595Z", "updated_at": "2021-09-30T08:25:23.595Z"}], "licence-links": [{"licence-name": "bio2rdf Terms of Use", "licence-id": 75, "link-id": 849, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 916, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2205", "type": "fairsharing-records", "attributes": {"created-at": "2015-05-07T21:54:42.000Z", "updated-at": "2021-11-24T13:19:28.913Z", "metadata": {"doi": "10.25504/FAIRsharing.djyk2c", "name": "MoonProt", "status": "ready", "contacts": [{"contact-name": "Constance Jeffery", "contact-email": "cjeffery@uic.edu", "contact-orcid": "0000-0002-2147-3638"}], "homepage": "http://www.moonlightingproteins.org", "identifier": 2205, "description": "MoonProt Database is a manually curated, searchable, internet-based resource with information about the over 200 proteins that have been experimentally verified to be moonlighting proteins. Moonlighting proteins comprise a class of multifunctional proteins in which a single polypeptide chain performs multiple biochemical functions that are not due to gene fusions, multiple RNA splice variants or pleiotropic effects. The availability of this organized information provides a more complete picture of what is currently known about moonlighting proteins. The database will also aid researchers in other fields, including determining the functions of genes identified in genome sequencing projects, interpreting data from proteomics projects and annotating protein sequence and structural databases. In addition, information about the structures and functions of moonlighting proteins can be helpful in understanding how novel protein functional sites evolved on an ancient protein scaffold, which can also help in the design of proteins with novel functions.", "abbreviation": "MoonProt", "support-links": [{"url": "http://www.moonlightingproteins.org/faqs.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2008}, "legacy-ids": ["biodbcore-000679", "bsg-d000679"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein structure", "Protein identification", "Function analysis"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MoonProt", "abbreviation": "MoonProt", "url": "https://fairsharing.org/10.25504/FAIRsharing.djyk2c", "doi": "10.25504/FAIRsharing.djyk2c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MoonProt Database is a manually curated, searchable, internet-based resource with information about the over 200 proteins that have been experimentally verified to be moonlighting proteins. Moonlighting proteins comprise a class of multifunctional proteins in which a single polypeptide chain performs multiple biochemical functions that are not due to gene fusions, multiple RNA splice variants or pleiotropic effects. The availability of this organized information provides a more complete picture of what is currently known about moonlighting proteins. The database will also aid researchers in other fields, including determining the functions of genes identified in genome sequencing projects, interpreting data from proteomics projects and annotating protein sequence and structural databases. In addition, information about the structures and functions of moonlighting proteins can be helpful in understanding how novel protein functional sites evolved on an ancient protein scaffold, which can also help in the design of proteins with novel functions.", "publications": [{"id": 1951, "pubmed_id": 25324305, "title": "MoonProt: a database for proteins that are known to moonlight.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku954", "authors": "Mani M, Chen C, Amblee V, Liu H, Mathur T, Zwicke G, Zabad S, Patel B, Thakkar J, Jeffery CJ.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku954", "created_at": "2021-09-30T08:25:59.557Z", "updated_at": "2021-09-30T08:25:59.557Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2286", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-20T11:55:17.000Z", "updated-at": "2021-12-06T10:48:04.862Z", "metadata": {"doi": "10.25504/FAIRsharing.6qr9jp", "name": "e-Mouse Atlas of Gene Expression", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "emage@emouseatlas.org"}], "homepage": "https://www.emouseatlas.org/emage/home.php", "citations": [{"doi": "10.1093/nar/gkt1155", "pubmed-id": 24265223, "publication-id": 1108}], "identifier": 2286, "description": "The e-Mouse Atlas of Gene Expression (EMAGE) is a freely available database of in situ gene expression patterns that allows users to perform online queries of mouse developmental gene expression. EMAGE is unique in providing both text-based descriptions of gene expression plus spatial maps of gene expression patterns. This mapping allows spatial queries to be accomplished alongside more traditional text-based queries.", "abbreviation": "EMAGE", "access-points": [{"url": "https://www.emouseatlas.org/emage/search/json.php", "name": "General Access with JSON results", "type": "Other"}, {"url": "https://www.emouseatlas.org/emage/search/webservice.php", "name": "EMAGE API Documentation", "type": "REST"}], "support-links": [{"url": "https://www.emouseatlas.org/emage/help/contact.php", "name": "Contact Information", "type": "Contact form"}, {"url": "https://www.emouseatlas.org/emage/help/faqs.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.emouseatlas.org/emage/help/all_help.php", "name": "All Help Pages", "type": "Help documentation"}], "data-processes": [{"url": "https://www.emouseatlas.org/emage/about/data_curation.php", "name": "Data Curation Guide", "type": "data curation"}, {"url": "https://www.emouseatlas.org/emage/search/all_search_tools.php", "name": "All Search Options", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010564", "name": "re3data:r3d100010564", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005391", "name": "SciCrunch:RRID:SCR_005391", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000760", "bsg-d000760"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Developmental Biology", "Transcriptomics"], "domains": ["Expression data", "Model organism", "Gene expression", "In situ hybridization", "Immunohistochemistry", "Life cycle stage"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: e-Mouse Atlas of Gene Expression", "abbreviation": "EMAGE", "url": "https://fairsharing.org/10.25504/FAIRsharing.6qr9jp", "doi": "10.25504/FAIRsharing.6qr9jp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The e-Mouse Atlas of Gene Expression (EMAGE) is a freely available database of in situ gene expression patterns that allows users to perform online queries of mouse developmental gene expression. EMAGE is unique in providing both text-based descriptions of gene expression plus spatial maps of gene expression patterns. This mapping allows spatial queries to be accomplished alongside more traditional text-based queries.", "publications": [{"id": 1108, "pubmed_id": 24265223, "title": "EMAGE mouse embryo spatial gene expression database: 2014 update.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1155", "authors": "Richardson L,Venkataraman S,Stevenson P,Yang Y,Moss J,Graham L,Burton N,Hill B,Rao J,Baldock RA,Armit C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1155", "created_at": "2021-09-30T08:24:22.755Z", "updated_at": "2021-09-30T11:28:58.918Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 1639, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2285", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-20T11:48:19.000Z", "updated-at": "2021-11-24T13:18:07.291Z", "metadata": {"doi": "10.25504/FAIRsharing.xhxe2j", "name": "e-Mouse Atlas", "status": "ready", "contacts": [{"contact-name": "Richard Baldock", "contact-email": "Richard.Baldock@igmm.ed.ac.uk"}], "homepage": "http://www.emouseatlas.org/emap/ema/home.php", "identifier": 2285, "description": "The e-Mouse Atlas (EMA) is a detailed model of the developing mouse. Its purpose is not only to provide information about the shape, gross anatomy and detailed histological structure of the mouse, but also to provide a framework into which information about gene function can be mapped. The spatial, temporal and anatomical integration achieved by mapping diverse data to the organism itself rather than simply to database tables, allows powerful computational analyses. The website presents 3D volumetric models of the embryo linked, in most cases, to comprehensive and detailed images of histological structure. The embryo models and anatomy in EMA are organized by standard developmental stage (TS. after Theiler, 1989) and age of the embryo in days post coitum (dpc.). Gene-expression and other image data is also available.", "abbreviation": "EMA", "access-points": [{"url": "http://www.emouseatlas.org/emage/search/webservice.html", "name": "RESTful webservices for EMAGE images using a URL", "type": "REST"}], "support-links": [{"url": "http://www.emouseatlas.org/emage/help/contact.html", "type": "Contact form"}, {"url": "http://www.emouseatlas.org/emage/help/all_help.html", "type": "Help documentation"}, {"url": "http://www.emouseatlas.org/emage/help/documentation.html", "type": "Help documentation"}, {"url": "http://www.emouseatlas.org/emage/help/tutorials.html", "type": "Training documentation"}], "year-creation": 2000, "associated-tools": [{"url": "https://github.com/ma-tech", "name": "Image manipulation and visualisation code"}, {"url": "http://www.emouseatlas.org/emap/analysis_tools_resources/software.html", "name": "Image manipulation and visualisation tools"}]}, "legacy-ids": ["biodbcore-000759", "bsg-d000759"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Anatomy", "Life Science"], "domains": ["Bioimaging", "Gene expression", "Image", "Life cycle stage"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: e-Mouse Atlas", "abbreviation": "EMA", "url": "https://fairsharing.org/10.25504/FAIRsharing.xhxe2j", "doi": "10.25504/FAIRsharing.xhxe2j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The e-Mouse Atlas (EMA) is a detailed model of the developing mouse. Its purpose is not only to provide information about the shape, gross anatomy and detailed histological structure of the mouse, but also to provide a framework into which information about gene function can be mapped. The spatial, temporal and anatomical integration achieved by mapping diverse data to the organism itself rather than simply to database tables, allows powerful computational analyses. The website presents 3D volumetric models of the embryo linked, in most cases, to comprehensive and detailed images of histological structure. The embryo models and anatomy in EMA are organized by standard developmental stage (TS. after Theiler, 1989) and age of the embryo in days post coitum (dpc.). Gene-expression and other image data is also available.", "publications": [{"id": 1108, "pubmed_id": 24265223, "title": "EMAGE mouse embryo spatial gene expression database: 2014 update.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1155", "authors": "Richardson L,Venkataraman S,Stevenson P,Yang Y,Moss J,Graham L,Burton N,Hill B,Rao J,Baldock RA,Armit C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1155", "created_at": "2021-09-30T08:24:22.755Z", "updated_at": "2021-09-30T11:28:58.918Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 555, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2305", "type": "fairsharing-records", "attributes": {"created-at": "2016-06-14T09:37:07.000Z", "updated-at": "2021-11-24T13:14:51.374Z", "metadata": {"doi": "10.25504/FAIRsharing.e5y0j0", "name": "Clinical Knowledgebase", "status": "ready", "contacts": [{"contact-name": "Susan Mockus", "contact-email": "ckbsupport@jax.org", "contact-orcid": "0000-0002-1939-5132"}], "homepage": "https://jax.org/ckb", "identifier": 2305, "description": "The Jackson Laboratory Clinical Knowledgebase (CKB) is a semi-automated/manually curated database of gene/variant annotations, therapy knowledge, diagnostic/prognostic information, and clinical trials related to oncology. CKB not only contains current information on the protein effect of somatic gene variants, but also connects the variant to targeted therapies through an efficacy evidence annotation. In addition, CKB captures clinical trial patient eligibility criteria that include genomic alterations (genotype-specific). The public access version of CKB encompasses 82 commonly known driver genes. Users can search CKB via gene, gene variants, drug, drug class, indication, and clinical trials. The web-based version of CKB is designed to interrogate the knowledgebase for specific data attributes while also enabling a robust browse like feature when the desired content is unknown.", "abbreviation": "JAX-CKB", "support-links": [{"url": "ckbsupport@jax.org", "name": "ckbsupport@jax.org", "type": "Support email"}], "year-creation": 2014}, "legacy-ids": ["biodbcore-000781", "bsg-d000781"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Biomedical Science", "Preclinical Studies"], "domains": ["Drug report", "DNA structural variation", "Drug", "Cancer", "Next generation DNA sequencing", "Somatic mutation", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Clinical Knowledgebase", "abbreviation": "JAX-CKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.e5y0j0", "doi": "10.25504/FAIRsharing.e5y0j0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Jackson Laboratory Clinical Knowledgebase (CKB) is a semi-automated/manually curated database of gene/variant annotations, therapy knowledge, diagnostic/prognostic information, and clinical trials related to oncology. CKB not only contains current information on the protein effect of somatic gene variants, but also connects the variant to targeted therapies through an efficacy evidence annotation. In addition, CKB captures clinical trial patient eligibility criteria that include genomic alterations (genotype-specific). The public access version of CKB encompasses 82 commonly known driver genes. Users can search CKB via gene, gene variants, drug, drug class, indication, and clinical trials. The web-based version of CKB is designed to interrogate the knowledgebase for specific data attributes while also enabling a robust browse like feature when the desired content is unknown.", "publications": [{"id": 1180, "pubmed_id": 26772741, "title": "The clinical trial landscape in oncology and connectivity of somatic mutational profiles to targeted therapies.", "year": 2016, "url": "http://doi.org/10.1186/s40246-016-0061-7", "authors": "Patterson SE1, Liu R2, Statz CM3, Durkin D4, Lakshminarayana A5, Mockus SM6.", "journal": "Hum Genomics", "doi": "10.1186/s40246-016-0061-7", "created_at": "2021-09-30T08:24:31.183Z", "updated_at": "2021-09-30T08:24:31.183Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3018", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-26T14:19:53.000Z", "updated-at": "2021-11-24T13:14:58.455Z", "metadata": {"name": "Reframedb", "status": "ready", "contacts": [{"contact-name": "Arnab K. Chatterjee", "contact-email": "achatterjee@calibr.org", "contact-orcid": "0000-0001-5171-7982"}], "homepage": "https://reframedb.org/", "identifier": 3018, "description": "Reframedb is a comprehensive open-access, drug repositioning screening set of 12,000 compounds that was assembled by combining three widely-used commercial drug competitive intelligence databases (Clarivate Integrity, GVK Excelra GoStar and Citeline Pharmaprojects), together with extensive patent mining of small molecules that have been dosed in humans. To date ~12,000 compounds (~80% of compounds identified from data mining) have been purchased or synthesized, and subsequently plated for screening.", "abbreviation": "Reframedb", "support-links": [{"url": "help@reframedb.org", "name": "General contact", "type": "Support email"}, {"url": "https://github.com/sebotic/repurpos.us", "name": "GitHub", "type": "Github"}], "data-processes": [{"url": "https://reframedb.org/", "name": "Search", "type": "data access"}, {"url": "https://reframedb.org/assays", "name": "Browse assays", "type": "data access"}]}, "legacy-ids": ["biodbcore-001526", "bsg-d001526"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Drug Repositioning", "Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Reframedb", "abbreviation": "Reframedb", "url": "https://fairsharing.org/fairsharing_records/3018", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Reframedb is a comprehensive open-access, drug repositioning screening set of 12,000 compounds that was assembled by combining three widely-used commercial drug competitive intelligence databases (Clarivate Integrity, GVK Excelra GoStar and Citeline Pharmaprojects), together with extensive patent mining of small molecules that have been dosed in humans. To date ~12,000 compounds (~80% of compounds identified from data mining) have been purchased or synthesized, and subsequently plated for screening.", "publications": [{"id": 2981, "pubmed_id": 30282735, "title": "The ReFRAME library as a comprehensive drug repurposing library and its application to the treatment of cryptosporidiosis.", "year": 2018, "url": "http://doi.org/10.1073/pnas.1810137115", "authors": "Janes J,Young ME,Chen E,Rogers NH,Burgstaller-Muehlbacher S,Hughes LD,Love MS,Hull MV,Kuhen KL,Woods AK,Joseph SB,Petrassi HM,McNamara CW,Tremblay MS,Su AI,Schultz PG,Chatterjee AK", "journal": "Proc Natl Acad Sci U S A", "doi": "10.1073/pnas.1810137115", "created_at": "2021-09-30T08:28:07.325Z", "updated_at": "2021-09-30T08:28:07.325Z"}], "licence-links": [{"licence-name": "Reframedb Terms of Use", "licence-id": 704, "link-id": 899, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2310", "type": "fairsharing-records", "attributes": {"created-at": "2016-08-02T11:22:53.000Z", "updated-at": "2021-11-24T13:13:46.226Z", "metadata": {"doi": "10.25504/FAIRsharing.we2r5a", "name": "SSBD: Systems Science of Biological Dynamics", "status": "ready", "contacts": [{"contact-name": "Shuichi Onami", "contact-email": "sonami@riken.jp"}], "homepage": "http://ssbd.qbic.riken.jp", "identifier": 2310, "description": "SSBD is a database that collects and shares quantitative biological dynamics data, microscopy images, and software tools. SSBD provides a rich set of resources for analyzing quantitative biological data, such as single-molecule, cell, and gene expression nuclei. Quantitative biological data are collected from a variety of species, sources and methods. These include data obtained from both experiment and computational simulation.", "abbreviation": "SSBD", "access-points": [{"url": "http://ssbd.qbic.riken.jp/restfulapi/", "name": "REST API", "type": "REST"}], "support-links": [{"url": "http://ssbd.qbic.riken.jp/manuals/", "name": "Documentation", "type": "Help documentation"}, {"url": "http://ssbd.qbic.riken.jp/news/", "name": "News", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "http://ssbd.qbic.riken.jp/resources/", "name": "Browse", "type": "data access"}, {"url": "http://ssbd.qbic.riken.jp/image/search/", "name": "Image Search", "type": "data access"}, {"url": "http://ssbd.qbic.riken.jp/search3/", "name": "Data Search", "type": "data access"}], "associated-tools": [{"url": "https://github.com/openssbd/OpenSSBD/", "name": "Open source version of the SSBD software platform"}, {"url": "http://ssbd.qbic.riken.jp/software/", "name": "List of software tools available for download"}, {"url": "http://www.openmicroscopy.org/info/omero", "name": "OMERO client-server software"}]}, "legacy-ids": ["biodbcore-000786", "bsg-d000786"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Molecular Dynamics", "Developmental Biology", "Cell Biology"], "domains": ["Bioimaging", "Microscopy", "High-content screen"], "taxonomies": ["Caenorhabditis elegans", "Danio rerio", "Dictyostelium discoideum", "Drosophila melanogaster", "Escherichia coli", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: SSBD: Systems Science of Biological Dynamics", "abbreviation": "SSBD", "url": "https://fairsharing.org/10.25504/FAIRsharing.we2r5a", "doi": "10.25504/FAIRsharing.we2r5a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SSBD is a database that collects and shares quantitative biological dynamics data, microscopy images, and software tools. SSBD provides a rich set of resources for analyzing quantitative biological data, such as single-molecule, cell, and gene expression nuclei. Quantitative biological data are collected from a variety of species, sources and methods. These include data obtained from both experiment and computational simulation.", "publications": [{"id": 1383, "pubmed_id": 27412095, "title": "SSBD: a database of quantitative data of spatiotemporal dynamics of biological phenomena.", "year": 2016, "url": "http://doi.org/10.1093/bioinformatics/btw417", "authors": "Tohsato Y,Ho KH,Kyoda K,Onami S", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btw417", "created_at": "2021-09-30T08:24:54.660Z", "updated_at": "2021-09-30T08:24:54.660Z"}], "licence-links": [{"licence-name": "Individual licenses based on creative commons are annotated to each dataset", "licence-id": 436, "link-id": 2357, "relation": "undefined"}, {"licence-name": "SSBD Copyright Notice", "licence-id": 757, "link-id": 2358, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2346", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-12T12:42:44.000Z", "updated-at": "2021-12-06T10:48:21.023Z", "metadata": {"doi": "10.25504/FAIRsharing.c886cd", "name": "Immune Epitope Database", "status": "ready", "homepage": "http://www.iedb.org/", "identifier": 2346, "description": "The IEDB provides the scientific community with a central repository of freely accessible epitope data and epitope prediction and analysis resources. The IEDB is a publicly accessible, comprehensive immune epitope database containing peptidic linear and conformational epitopes and non peptidic epitopes such as lipids, metals, drugs, carbohydrates, etc, with published or submitted antibody, T cell, MHC binding or MHC ligand elution experimental assays. Epitope data related to infectious diseases, allergy, autoimmunity and transplant tested in humans, non human primates, and any other species can be found in the IEDB.", "abbreviation": "IEDB", "support-links": [{"url": "http://iedb.zendesk.com/anonymous_requests/new", "type": "Contact form"}, {"url": "http://iedb.zendesk.com/forums", "type": "Forum"}, {"url": "http://help.iedb.org/home", "type": "Help documentation"}, {"url": "http://www.iedb.org/acknowledgements_v3.php", "type": "Help documentation"}, {"url": "http://www.iedb.org/terms_of_use_v3.php", "type": "Help documentation"}, {"url": "http://curationwiki.iedb.org/wiki/index.php/Data_Field_Descriptions", "type": "Help documentation"}], "year-creation": 2003, "associated-tools": [{"url": "http://tools.iedb.org/mhci/", "name": "MHC-I Binding Predictions"}, {"url": "http://tools.iedb.org/mhcii/", "name": "MHC-II Binding Predictions"}, {"url": "http://tools.iedb.org/main/tcell/", "name": "T Cell Epitope Prediction Tools"}, {"url": "http://tools.iedb.org/immunogenicity/", "name": "Class I Immunogenicity"}, {"url": "http://tools.iedb.org/bcell/", "name": "Antibody Epitope Prediction"}, {"url": "http://tools.iedb.org/discotope/", "name": "DiscoTope: Structure-based Antibody Prediction"}, {"url": "http://tools.iedb.org/ellipro/", "name": "ElliPro: Antibody Epitope Prediction"}, {"url": "http://tools.iedb.org/tools/population/iedb_input", "name": "Population Coverage Calculation"}, {"url": "http://tools.iedb.org/conservancy/", "name": "Epitope Conservancy Analysis"}, {"url": "http://tools.iedb.org/cluster/", "name": "Epitope Cluster Analysis"}, {"url": "http://tools.iedb.org/esm/userMappingFrontP.jsp", "name": "Epitope Sequence and 3D Structural Homology Mapping"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012702", "name": "re3data:r3d100012702", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006604", "name": "SciCrunch:RRID:SCR_006604", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000824", "bsg-d000824"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Immunology", "Life Science"], "domains": ["Computational biological predictions", "Antigen", "T cell", "Antibody", "Immunity", "Infection", "Major histocompatibility complex", "Literature curation"], "taxonomies": ["Bacteria", "Homo sapiens", "Mus musculus", "Oryctolagus cuniculus", "Plantae", "Primate", "Vertebrata", "Viruses"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Immune Epitope Database", "abbreviation": "IEDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.c886cd", "doi": "10.25504/FAIRsharing.c886cd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IEDB provides the scientific community with a central repository of freely accessible epitope data and epitope prediction and analysis resources. The IEDB is a publicly accessible, comprehensive immune epitope database containing peptidic linear and conformational epitopes and non peptidic epitopes such as lipids, metals, drugs, carbohydrates, etc, with published or submitted antibody, T cell, MHC binding or MHC ligand elution experimental assays. Epitope data related to infectious diseases, allergy, autoimmunity and transplant tested in humans, non human primates, and any other species can be found in the IEDB.", "publications": [{"id": 1668, "pubmed_id": 16312048, "title": "The immune epitope database and analysis resource: from vision to blueprint.", "year": 2005, "url": "https://www.ncbi.nlm.nih.gov/pubmed/16312048", "authors": "Sette A", "journal": "Genome Inform", "doi": null, "created_at": "2021-09-30T08:25:26.845Z", "updated_at": "2021-09-30T08:25:26.845Z"}, {"id": 1685, "pubmed_id": 25300482, "title": "The immune epitope database (IEDB) 3.0.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku938", "authors": "Vita R,Overton JA,Greenbaum JA,Ponomarenko J,Clark JD,Cantrell JR,Wheeler DK,Gabbard JL,Hix D,Sette A,Peters B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku938", "created_at": "2021-09-30T08:25:28.784Z", "updated_at": "2021-09-30T11:29:18.014Z"}, {"id": 2841, "pubmed_id": 19906713, "title": "The immune epitope database 2.0.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1004", "authors": "Vita R,Zarebski L,Greenbaum JA,Emami H,Hoof I,Salimi N,Damle R,Sette A,Peters B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp1004", "created_at": "2021-09-30T08:27:49.487Z", "updated_at": "2021-09-30T11:29:47.137Z"}, {"id": 2842, "pubmed_id": 22681406, "title": "The immune epitope database: a historical retrospective of the first decade.", "year": 2012, "url": "http://doi.org/10.1111/j.1365-2567.2012.03611.x", "authors": "Salimi N,Fleri W,Peters B,Sette A", "journal": "Immunology", "doi": "10.1111/j.1365-2567.2012.03611.x", "created_at": "2021-09-30T08:27:49.605Z", "updated_at": "2021-09-30T08:27:49.605Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2371", "type": "fairsharing-records", "attributes": {"created-at": "2016-12-05T09:50:22.000Z", "updated-at": "2021-12-06T10:48:29.059Z", "metadata": {"doi": "10.25504/FAIRsharing.e4r5nj", "name": "MalaCards", "status": "ready", "contacts": [{"contact-name": "Doron Lancet", "contact-email": "doron.lancet@weizmann.ac.il", "contact-orcid": "0000-0001-8643-2055"}], "homepage": "http://www.malacards.org/", "identifier": 2371, "description": "The MalaCards human disease database (http://www. malacards.org/) is an integrated compendium of annotated diseases mined from 68 data sources. MalaCards has a web card for each of \u223c20 000 disease entries, in six global categories. It portrays a broad array of annotation topics in 15 sections, including Summaries, Symptoms, Anatomical Context, Drugs, Genetic Tests, Variations and Publications. The Aliases and Classifications section reflects an algorithm for disease name integration across often-conflicting sources, providing effective annotation consolidation. A central feature is a balanced Genes section, with scores reflecting the strength of disease-gene associations. This is accompanied by other gene-related disease information such as pathways, mouse phenotypes and GO-terms, stemming from MalaCards\u2019 affiliation with the GeneCards Suite of databases. MalaCards\u2019 capacity to inter-link information from complementary sources, along with its elaborate search function, relational database infrastructure and convenient data dumps, allows it to tackle its rich disease annotation landscape, and facilitates systems analyses and genome sequence interpretation. MalaCards adopts a \u2018flat\u2019 disease-card approach, but each card is mapped to popular hierarchical ontologies (e.g. International Classification of Diseases, Human Phenotype Ontology and Unified Medical Language System) and also contains information about multi-level relations among diseases, thereby providing an optimal tool for disease representation and scrutiny.", "abbreviation": "MalaCards", "support-links": [{"url": "http://www.malacards.org/pages/info#whats_in_a_malacard", "type": "Help documentation"}, {"url": "http://www.malacards.org/pages/searchguide", "type": "Help documentation"}], "year-creation": 2013, "associated-tools": [{"url": "http://www.malacards.org/categories", "name": "View by Category"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012018", "name": "re3data:r3d100012018", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005817", "name": "SciCrunch:RRID:SCR_005817", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000850", "bsg-d000850"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Israel"], "name": "FAIRsharing record for: MalaCards", "abbreviation": "MalaCards", "url": "https://fairsharing.org/10.25504/FAIRsharing.e4r5nj", "doi": "10.25504/FAIRsharing.e4r5nj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MalaCards human disease database (http://www. malacards.org/) is an integrated compendium of annotated diseases mined from 68 data sources. MalaCards has a web card for each of \u223c20 000 disease entries, in six global categories. It portrays a broad array of annotation topics in 15 sections, including Summaries, Symptoms, Anatomical Context, Drugs, Genetic Tests, Variations and Publications. The Aliases and Classifications section reflects an algorithm for disease name integration across often-conflicting sources, providing effective annotation consolidation. A central feature is a balanced Genes section, with scores reflecting the strength of disease-gene associations. This is accompanied by other gene-related disease information such as pathways, mouse phenotypes and GO-terms, stemming from MalaCards\u2019 affiliation with the GeneCards Suite of databases. MalaCards\u2019 capacity to inter-link information from complementary sources, along with its elaborate search function, relational database infrastructure and convenient data dumps, allows it to tackle its rich disease annotation landscape, and facilitates systems analyses and genome sequence interpretation. MalaCards adopts a \u2018flat\u2019 disease-card approach, but each card is mapped to popular hierarchical ontologies (e.g. International Classification of Diseases, Human Phenotype Ontology and Unified Medical Language System) and also contains information about multi-level relations among diseases, thereby providing an optimal tool for disease representation and scrutiny.", "publications": [{"id": 1086, "pubmed_id": 27899610, "title": "MalaCards: an amalgamated human disease compendium with diverse clinical and genetic annotation and structured search.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1012", "authors": "Rappaport N,Twik M,Plaschkes I,Nudel R,Iny Stein T,Levitt J,Gershoni M,Morrey CP,Safran M,Lancet D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1012", "created_at": "2021-09-30T08:24:20.304Z", "updated_at": "2021-09-30T11:28:58.285Z"}], "licence-links": [{"licence-name": "GeneCards Academic License", "licence-id": 328, "link-id": 925, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2590", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T16:16:20.000Z", "updated-at": "2021-11-24T13:13:13.489Z", "metadata": {"doi": "10.25504/FAIRsharing.hjxSpv", "name": "SuperDRUG2 - A One Stop Resource for Approved/Marketed Drugs", "status": "ready", "contacts": [{"contact-name": "Vishal Siramshetty", "contact-email": "vishal-babu.sriamshetty@charite.de", "contact-orcid": "0000-0002-5980-8288"}], "homepage": "http://cheminfo.charite.de/superdrug2/", "identifier": 2590, "description": "SuperDRUG2, an update of the previous SuperDrug database, is a unique, one-stop resource for approved/marketed drugs, containing more than 4,600 active pharmaceutical ingredients. Drugs are annotated with regulatory details, chemical structures (2D and 3D), dosage, biological targets, physicochemical properties, external identifiers, side-effects and pharmacokinetic data. Different search mechanisms allow navigation through the chemical space of approved drugs. A 2D chemical structure search is provided in addition to a 3D superposition feature that superposes a drug with ligands already known to be found in the experimentally determined protein-ligand complexes. For the first time, we introduced simulation of \"physiologically-based\" pharmacokinetics of drugs. Our interaction check feature not only identifies potential drug-drug interactions but also provides alternative recommendations for elderly patients. Drug structures (2D and 3D), links to external registries (e.g. WHO ATC) and drug/compound databases (e.g. DrugBank, ChEMBL, PubChem), physicochemical properties are provided for download.", "abbreviation": "SuperDRUG2", "support-links": [{"url": "http://cheminfo.charite.de/superdrug2/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cheminfo.charite.de/superdrug2/statistics.html", "name": "Statistics", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://cheminfo.charite.de/superdrug2/drug_search.html", "name": "Search Drugs", "type": "data access"}, {"url": "http://cheminfo.charite.de/superdrug2/downloads.html", "name": "Data Download", "type": "data access"}, {"url": "http://cheminfo.charite.de/superdrug2/drug_interact.jsp", "name": "Search Drug Interactions", "type": "data access"}], "associated-tools": [{"url": "http://cheminfo.charite.de/superdrug2/pharmacokinetics.jsp", "name": "Pharmacokinetics Simulation"}, {"url": "http://cheminfo.charite.de/superdrug2/superpose_3d.html", "name": "3D Superposition"}]}, "legacy-ids": ["biodbcore-001073", "bsg-d001073"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Health Science", "Chemistry", "Pharmacology", "Biomedical Science"], "domains": ["Chemical structure", "Small molecule", "Adverse Reaction", "Drug interaction", "Approved drug"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Drug Target"], "countries": ["Germany"], "name": "FAIRsharing record for: SuperDRUG2 - A One Stop Resource for Approved/Marketed Drugs", "abbreviation": "SuperDRUG2", "url": "https://fairsharing.org/10.25504/FAIRsharing.hjxSpv", "doi": "10.25504/FAIRsharing.hjxSpv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SuperDRUG2, an update of the previous SuperDrug database, is a unique, one-stop resource for approved/marketed drugs, containing more than 4,600 active pharmaceutical ingredients. Drugs are annotated with regulatory details, chemical structures (2D and 3D), dosage, biological targets, physicochemical properties, external identifiers, side-effects and pharmacokinetic data. Different search mechanisms allow navigation through the chemical space of approved drugs. A 2D chemical structure search is provided in addition to a 3D superposition feature that superposes a drug with ligands already known to be found in the experimentally determined protein-ligand complexes. For the first time, we introduced simulation of \"physiologically-based\" pharmacokinetics of drugs. Our interaction check feature not only identifies potential drug-drug interactions but also provides alternative recommendations for elderly patients. Drug structures (2D and 3D), links to external registries (e.g. WHO ATC) and drug/compound databases (e.g. DrugBank, ChEMBL, PubChem), physicochemical properties are provided for download.", "publications": [{"id": 2114, "pubmed_id": 29140469, "title": "SuperDRUG2: a one stop resource for approved/marketed drugs", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1088", "authors": "Siramshetty VB, Eckert OA, Gohlke BO, Goede A, Chen Q, Devarakonda P, Preissner S, Preissner R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1088", "created_at": "2021-09-30T08:26:18.365Z", "updated_at": "2021-09-30T08:26:18.365Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 1571, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2389", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T10:49:36.000Z", "updated-at": "2021-12-06T10:48:20.743Z", "metadata": {"doi": "10.25504/FAIRsharing.c7w81a", "name": "LiceBase", "status": "ready", "contacts": [{"contact-name": "Inge Jonassen", "contact-email": "Inge.Jonassen@uib.no", "contact-orcid": "0000-0003-4110-0748"}], "homepage": "https://licebase.org/", "identifier": 2389, "description": "LiceBase is a database for sea lice genomics. LiceBase provides the genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, Blast functionality and access to related high-thoughput genomics data.", "abbreviation": "LiceBase", "support-links": [{"url": "https://licebase.org/?q=node/760957", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://licebase.org/forum", "type": "Forum"}, {"url": "https://licebase.org/?q=documentation", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://licebase.org/browse_rnai", "name": "browse RNAi", "type": "data access"}, {"url": "https://licebase.org/fgb2/gbrowse/lsalmonis/", "name": "Gbrowse", "type": "data access"}, {"url": "https://licebase.org/chado", "name": "search", "type": "data access"}, {"url": "https://licebase.org/?q=organism/Lepeophtheirus/salmonis&pane=resource-0", "name": "download", "type": "data access"}, {"url": "https://licebase.org/blast", "name": "blast", "type": "data access"}, {"url": "https://licebase.org/in-situ-images", "name": "browse in-situ images", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013547", "name": "re3data:r3d100013547", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000870", "bsg-d000870"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Genome annotation", "Imaging", "Gene expression", "RNA interference", "RNA sequencing", "Genome"], "taxonomies": ["Anopheles gambiae", "Calanus finmarchicus", "Drosophila melanogaster", "Gadus morhua", "Lepeophtheirus salmonis"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: LiceBase", "abbreviation": "LiceBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.c7w81a", "doi": "10.25504/FAIRsharing.c7w81a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LiceBase is a database for sea lice genomics. LiceBase provides the genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, Blast functionality and access to related high-thoughput genomics data.", "publications": [], "licence-links": [{"licence-name": "Phibase Data Policies and Disclaimer", "licence-id": 662, "link-id": 564, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2414", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-12T19:33:44.000Z", "updated-at": "2021-12-06T10:49:31.886Z", "metadata": {"doi": "10.25504/FAIRsharing.yyf78h", "name": "DataONE", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "support@dataone.org"}], "homepage": "https://www.dataone.org", "identifier": 2414, "description": "DataONE is a community driven project providing access to data across multiple member repositories, supporting enhanced search and discovery of Earth and environmental data.", "abbreviation": "DataONE", "access-points": [{"url": "https://cn.dataone.org/cn/v2/node", "name": "Entrypoint for the DataONE API REST Service", "type": "REST"}], "support-links": [{"url": "https://www.dataone.org/portals-tutorial/", "name": "Portals Tutorial", "type": "Help documentation"}, {"url": "https://www.dataone.org/", "type": "Mailing list"}, {"url": "https://vimeo.com/channels/dataone", "name": "Vimeo", "type": "Help documentation"}, {"url": "https://www.dataone.org/webinars/", "name": "Webinars", "type": "Help documentation"}, {"url": "https://dataoneorg.github.io/Education/", "name": "Data Management Skillbuilding Hub", "type": "Github"}, {"url": "https://www.dataone.org/training/", "name": "Online Training", "type": "Training documentation"}, {"url": "https://twitter.com/DataONEorg", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "https://search.dataone.org/data", "name": "Search", "type": "data access"}, {"url": "https://www.dataone.org/contribute-data", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000045", "name": "re3data:r3d100000045", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003999", "name": "SciCrunch:RRID:SCR_003999", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000896", "bsg-d000896"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geochemistry", "Environmental Science", "Microbial Ecology", "Geology", "Geography", "Geophysics", "Population Dynamics", "Biochemistry", "Bioinformatics", "Marine Biology", "Ecology", "Biodiversity", "Earth Science", "Evolutionary Biology", "Life Science", "Oceanography", "Biology", "Population Genetics"], "domains": ["Climate"], "taxonomies": ["Animalia", "Archaea", "Bacteria", "Eukaryota", "Fungi", "Plantae", "Protozoa"], "user-defined-tags": ["biogeochemistry", "Climate change", "Geospatial Data", "permafrost"], "countries": ["United States"], "name": "FAIRsharing record for: DataONE", "abbreviation": "DataONE", "url": "https://fairsharing.org/10.25504/FAIRsharing.yyf78h", "doi": "10.25504/FAIRsharing.yyf78h", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DataONE is a community driven project providing access to data across multiple member repositories, supporting enhanced search and discovery of Earth and environmental data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2123, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2124, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2765", "type": "fairsharing-records", "attributes": {"created-at": "2019-03-29T17:54:51.000Z", "updated-at": "2022-02-08T10:39:08.918Z", "metadata": {"doi": "10.25504/FAIRsharing.23bdba", "name": "DISNOR", "status": "ready", "contacts": [{"contact-name": "Gianni Cesareni", "contact-email": "cesareni@uniroma2.it", "contact-orcid": "0000-0002-9528-6018"}], "homepage": "https://disnor.uniroma2.it/", "citations": [{"doi": "10.1093/nar/gkx876", "pubmed-id": 29036667, "publication-id": 770}], "identifier": 2765, "description": "DISNOR is a resource that uses a comprehensive collection of disease associated genes, as annotated in DisGeNET, to interrogate SIGNOR (https://signor.uniroma2.it) in order to assemble disease-specific logic networks linking disease associated genes by causal relationships. DISNOR is an open resource where more than 4000 disease-networks, linking ~ 2800 disease genes, can be explored. For each disease curated in DisGeNET, DISNOR links disease genes through manually annotated causal relationships and the inferred 'patho-pathways' can be visualised at different level of complexity.", "abbreviation": "DISNOR", "support-links": [{"url": "https://disnor.uniroma2.it/#documentation", "name": "Documentation", "type": "Help documentation"}, {"url": "https://disnor.uniroma2.it/#about-disnor", "name": "About", "type": "Help documentation"}, {"url": "https://disnor.uniroma2.it/#tutorial", "name": "Tutorial", "type": "Training documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://disnor.uniroma2.it/#mainContent", "name": "Browse & search", "type": "data access"}, {"url": "https://disnor.uniroma2.it/#downloads", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-001263", "bsg-d001263"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Computational biological predictions", "Network model", "Curated information", "Disease", "Single nucleotide polymorphism", "Gene-disease association"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: DISNOR", "abbreviation": "DISNOR", "url": "https://fairsharing.org/10.25504/FAIRsharing.23bdba", "doi": "10.25504/FAIRsharing.23bdba", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DISNOR is a resource that uses a comprehensive collection of disease associated genes, as annotated in DisGeNET, to interrogate SIGNOR (https://signor.uniroma2.it) in order to assemble disease-specific logic networks linking disease associated genes by causal relationships. DISNOR is an open resource where more than 4000 disease-networks, linking ~ 2800 disease genes, can be explored. For each disease curated in DisGeNET, DISNOR links disease genes through manually annotated causal relationships and the inferred 'patho-pathways' can be visualised at different level of complexity.", "publications": [{"id": 770, "pubmed_id": 29036667, "title": "DISNOR: a disease network open resource.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx876", "authors": "Lo Surdo P,Calderone A,Iannuccelli M,Licata L,Peluso D,Castagnoli L,Cesareni G,Perfetto L", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx876", "created_at": "2021-09-30T08:23:44.859Z", "updated_at": "2021-09-30T11:28:50.667Z"}], "licence-links": [{"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 883, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2456", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-09T18:11:49.000Z", "updated-at": "2021-11-24T13:14:53.409Z", "metadata": {"doi": "10.25504/FAIRsharing.5epybt", "name": "Apollo Library", "status": "deprecated", "contacts": [{"contact-name": "Michael Wagner", "contact-email": "mmw1@pitt.edu", "contact-orcid": "0000-0002-4437-7016"}], "homepage": "https://apollodev.github.io/", "identifier": 2456, "description": "The Apollo Library contains machine interpretable representations of epidemics, infectious disease scenarios, and case series.", "abbreviation": "Apollo Library", "access-points": [{"url": "https://research.rods.pitt.edu/broker-service-war-4.0.1/services/apolloservice?wsdl", "name": "Provides a single point of access for end user applications to multiple web services that support infectious disease modeling.", "type": "SOAP"}, {"url": "https://research.rods.pitt.edu/broker-service-rest-frontend-4.0.1", "name": "Rest documentation is at https://research.rods.pitt.edu/broker-service-rest-frontend-4.0.1/sdoc.jsp", "type": "REST"}], "year-creation": 2016, "deprecation-date": "2021-05-24", "deprecation-reason": "This resource no longer exists as a database, but rather as a schema, web service and controlled vocabulary. As such it is no longer within FAIRsharing's remit."}, "legacy-ids": ["biodbcore-000938", "bsg-d000938"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Infection", "Disease"], "taxonomies": ["Chikungunya virus", "ebolavirus", "rabies virus", "Zika virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Apollo Library", "abbreviation": "Apollo Library", "url": "https://fairsharing.org/10.25504/FAIRsharing.5epybt", "doi": "10.25504/FAIRsharing.5epybt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Apollo Library contains machine interpretable representations of epidemics, infectious disease scenarios, and case series.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 United States (CC BY 3.0 US)", "licence-id": 165, "link-id": 1004, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2491", "type": "fairsharing-records", "attributes": {"created-at": "2017-09-05T08:59:58.000Z", "updated-at": "2021-11-24T13:14:07.652Z", "metadata": {"doi": "10.25504/FAIRsharing.anxqkv", "name": "e-ReColNat", "status": "ready", "contacts": [{"contact-email": "contact@recolnat.org"}], "homepage": "https://explore.recolnat.org", "identifier": 2491, "description": "The aim of e-ReColNat is to build a huge database consisting of species occurrence records through time, which will feed all kind of research and expertise in biodiversity survey, modelling global change, etc.", "abbreviation": "e-ReColNat", "access-points": [{"url": "https://api.recolnat.org/erecolnat/apidoc/", "name": "Full access to all the data", "type": "REST"}], "year-creation": 2013, "associated-tools": [{"url": "https://lab.recolnat.org", "name": "Virtual lab 0.9.3beta"}, {"url": "http://lesherbonautes.mnhn.fr/", "name": "Les Herbonautes v2"}]}, "legacy-ids": ["biodbcore-000973", "bsg-d000973"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Paleontology", "Biodiversity", "Life Science", "Natural History"], "domains": ["Geographical location"], "taxonomies": ["All"], "user-defined-tags": ["Geological mapping"], "countries": ["France"], "name": "FAIRsharing record for: e-ReColNat", "abbreviation": "e-ReColNat", "url": "https://fairsharing.org/10.25504/FAIRsharing.anxqkv", "doi": "10.25504/FAIRsharing.anxqkv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The aim of e-ReColNat is to build a huge database consisting of species occurrence records through time, which will feed all kind of research and expertise in biodiversity survey, modelling global change, etc.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2713", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-20T10:50:12.000Z", "updated-at": "2021-11-24T13:17:54.219Z", "metadata": {"doi": "10.25504/FAIRsharing.Pupa1p", "name": "PeanutMine", "status": "ready", "contacts": [{"contact-name": "Sam Hokin", "contact-email": "shokin@ncgr.org"}], "homepage": "https://mines.legumeinfo.org/peanutmine", "identifier": 2713, "description": "PeanutMine integrates peanut data from LIS PeanutBase and other sources.", "abbreviation": "PeanutMine", "access-points": [{"url": "https://mines.legumeinfo.org/peanutmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://mines.legumeinfo.org/peanutmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://mines.legumeinfo.org/peanutmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://mines.legumeinfo.org/peanutmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://mines.legumeinfo.org/peanutmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://mines.legumeinfo.org/peanutmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}]}, "legacy-ids": ["biodbcore-001211", "bsg-d001211"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Gene expression"], "taxonomies": ["Arachis", "Arachis duranensis", "Arachis hypogaea"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PeanutMine", "abbreviation": "PeanutMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.Pupa1p", "doi": "10.25504/FAIRsharing.Pupa1p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PeanutMine integrates peanut data from LIS PeanutBase and other sources.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 789, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2539", "type": "fairsharing-records", "attributes": {"created-at": "2017-11-20T21:08:22.000Z", "updated-at": "2021-12-06T10:48:17.842Z", "metadata": {"doi": "10.25504/FAIRsharing.b952rv", "name": "NASA/IPAC Extragalactic Database", "status": "ready", "contacts": [{"contact-name": "Joseph M. Mazzarella", "contact-email": "mazz@ipac.caltech.edu"}], "homepage": "https://ned.ipac.caltech.edu/", "identifier": 2539, "description": "NASA/IPAC Extragalactic Database (NED) is a comprehensive database of multiwavelength data for extragalactic objects, providing a systematic, ongoing fusion of information integrated from hundreds of large sky surveys and tens of thousands of research publications. The contents and services span the entire observed spectrum from gamma rays through radio frequencies. As new observations are published, they are cross- identified or statistically associated with previous data and integrated into a unified database to simplify queries and retrieval.", "abbreviation": "NED", "support-links": [{"url": "https://ned.ipac.caltech.edu/contact/NED", "name": "NED Contact Form", "type": "Contact form"}, {"url": "https://ned.ipac.caltech.edu/Documents/Guides", "name": "User Guides", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?v=BCW6awQ2o4Q", "name": "Video Overview", "type": "Video"}, {"url": "https://www.youtube.com/channel/UCogUNzCeGRfCr2gYi0sqbOg", "name": "YouTube Channel", "type": "Video"}, {"url": "https://ned.ipac.caltech.edu/Documents/Overview/Release", "name": "Release Notes", "type": "Help documentation"}, {"url": "https://ned.ipac.caltech.edu/Documents/Overview", "name": "About NED", "type": "Help documentation"}], "year-creation": 1988, "data-processes": [{"url": "https://ned.ipac.caltech.edu/byname", "name": "Search by Name", "type": "data access"}, {"url": "https://ned.ipac.caltech.edu/forms/nearname.html", "name": "Search by Near Name", "type": "data access"}, {"url": "https://ned.ipac.caltech.edu/conesearch", "name": "Search by Near Position", "type": "data access"}, {"url": "https://ned.ipac.caltech.edu/inrefcode", "name": "Search Objects in Refcode", "type": "data access"}, {"url": "https://ned.ipac.caltech.edu/byparams", "name": "Galaxy Sample Construction by Parameter Constraints", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010525", "name": "re3data:r3d100010525", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001022", "bsg-d001022"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Astrophysics and Astronomy"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["Extragalactic objects"], "countries": ["United States"], "name": "FAIRsharing record for: NASA/IPAC Extragalactic Database", "abbreviation": "NED", "url": "https://fairsharing.org/10.25504/FAIRsharing.b952rv", "doi": "10.25504/FAIRsharing.b952rv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: NASA/IPAC Extragalactic Database (NED) is a comprehensive database of multiwavelength data for extragalactic objects, providing a systematic, ongoing fusion of information integrated from hundreds of large sky surveys and tens of thousands of research publications. The contents and services span the entire observed spectrum from gamma rays through radio frequencies. As new observations are published, they are cross- identified or statistically associated with previous data and integrated into a unified database to simplify queries and retrieval.", "publications": [{"id": 2102, "pubmed_id": null, "title": "Evolution of the NASA/IPAC Extragalactic Database (NED) into a Data Mining Discovery Engine", "year": 2016, "url": "https://doi.org/10.1017/S1743921316013132", "authors": "Mazzarella, Joseph M.; NED Team", "journal": "Proceedings of the International Astronomical Union", "doi": null, "created_at": "2021-09-30T08:26:16.884Z", "updated_at": "2021-09-30T08:26:16.884Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2866", "type": "fairsharing-records", "attributes": {"created-at": "2019-12-03T14:02:09.000Z", "updated-at": "2021-11-24T13:17:24.414Z", "metadata": {"doi": "10.25504/FAIRsharing.CFLgLo", "name": "Chickspress", "status": "ready", "contacts": [{"contact-email": "agbase@email.arizona.edu"}], "homepage": "http://geneatlas.arl.arizona.edu/", "citations": [{"doi": "10.1093/database/baz058", "pubmed-id": 31210271, "publication-id": 2643}], "identifier": 2866, "description": "Chickspress is a gene expression database for chicken tissues. Chickspress incorporates both NCBI and Ensembl gene models and links these gene sets with experimental gene expression data and QTL information. By linking gene models from both NCBI and Ensembl gene prediction pipelines, researchers can compare gene models from each of these prediction workflows to available experimental data. We use Chickspress data to show the differences between these gene annotation pipelines. Chickspress also provides rapid search, visualization and download capacity for chicken gene sets based upon tissue type, developmental stage and experiment type. Chickspress includes a core set of Red Jungle Fowl RNA and peptide data collected across multiple tissues from both male and female birds and public expression data sets.", "abbreviation": "Chickspress", "support-links": [{"url": "fionamcc@email.arizona.edu", "name": "Fiona M McCarthy", "type": "Support email"}, {"url": "http://geneatlas.arl.arizona.edu/sra_data.php", "name": "Links to SRA data", "type": "Help documentation"}], "year-creation": 2015, "data-processes": [{"url": "http://geneatlas.arl.arizona.edu/cgi-bin/GeneAtlas/chickspress_genes.cgi", "name": "Search and Download Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-001367", "bsg-d001367"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Proteomics"], "domains": ["Expression data", "Computational biological predictions", "Gene prediction", "MicroRNA expression analysis", "Gene expression", "Protein expression", "RNA sequencing", "Messenger RNA", "Micro RNA", "Gene", "Tissue"], "taxonomies": ["Gallus gallus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Chickspress", "abbreviation": "Chickspress", "url": "https://fairsharing.org/10.25504/FAIRsharing.CFLgLo", "doi": "10.25504/FAIRsharing.CFLgLo", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Chickspress is a gene expression database for chicken tissues. Chickspress incorporates both NCBI and Ensembl gene models and links these gene sets with experimental gene expression data and QTL information. By linking gene models from both NCBI and Ensembl gene prediction pipelines, researchers can compare gene models from each of these prediction workflows to available experimental data. We use Chickspress data to show the differences between these gene annotation pipelines. Chickspress also provides rapid search, visualization and download capacity for chicken gene sets based upon tissue type, developmental stage and experiment type. Chickspress includes a core set of Red Jungle Fowl RNA and peptide data collected across multiple tissues from both male and female birds and public expression data sets.", "publications": [{"id": 2643, "pubmed_id": 31210271, "title": "Chickspress: a resource for chicken gene expression.", "year": 2019, "url": "http://doi.org/baz058", "authors": "McCarthy FM,Pendarvis K,Cooksey AM,Gresham CR,Bomhoff M,Davey S,Lyons E,Sonstegard TS,Bridges SM,Burgess SC", "journal": "Database (Oxford)", "doi": "10.1093/database/baz058", "created_at": "2021-09-30T08:27:24.563Z", "updated_at": "2021-09-30T08:27:24.563Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1602", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:53.195Z", "metadata": {"doi": "10.25504/FAIRsharing.7xkx69", "name": "Mechanism, Annotation and Classification in Enzymes", "status": "deprecated", "contacts": [{"contact-name": "Gemma L. Holliday", "contact-email": "gemma@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE", "identifier": 1602, "description": "MACiE is an electronic database of well-characterised enzymatic reactions. MACiE is the result of more than three years' collaboration between the Mitchell and Murray-Rust groups in the Unilever Centre and Prof. Janet Thornton at the European Bioinformatics Institute. The database contains the reaction mechanisms for 100 individual enzymes; this includes the overall reactions and the multiple steps that constitute them.", "abbreviation": "MACiE", "support-links": [{"url": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE/FAQ.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE/documentation/index.html", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"name": "annual release", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by release", "type": "data versioning"}, {"name": "access to historical files available upon request.", "type": "data versioning"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/MACiE/queryMACiE.html", "name": "search", "type": "data access"}, {"name": "file download(images)", "type": "data access"}, {"name": "MySQL dump on request", "type": "data access"}, {"url": "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/listBy.pl?by=entry", "name": "browse", "type": "data access"}], "deprecation-date": "2018-04-10", "deprecation-reason": "This resource is now obsolete and, together with CSA (https://fairsharing.org/FAIRsharing.2ajtcf), has formed the basis of the M-CSA resource."}, "legacy-ids": ["biodbcore-000057", "bsg-d000057"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Enzyme Commission number", "Reaction data", "Molecular interaction", "Enzymatic reaction", "Enzyme"], "taxonomies": ["All"], "user-defined-tags": ["Chemical bond modification"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Mechanism, Annotation and Classification in Enzymes", "abbreviation": "MACiE", "url": "https://fairsharing.org/10.25504/FAIRsharing.7xkx69", "doi": "10.25504/FAIRsharing.7xkx69", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MACiE is an electronic database of well-characterised enzymatic reactions. MACiE is the result of more than three years' collaboration between the Mitchell and Murray-Rust groups in the Unilever Centre and Prof. Janet Thornton at the European Bioinformatics Institute. The database contains the reaction mechanisms for 100 individual enzymes; this includes the overall reactions and the multiple steps that constitute them.", "publications": [{"id": 90, "pubmed_id": 16188925, "title": "MACiE: a database of enzyme reaction mechanisms.", "year": 2005, "url": "http://doi.org/10.1093/bioinformatics/bti693", "authors": "Holliday GL., Bartlett GJ., Almonacid DE., O'Boyle NM., Murray-Rust P., Thornton JM., Mitchell JB.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bti693", "created_at": "2021-09-30T08:22:30.280Z", "updated_at": "2021-09-30T08:22:30.280Z"}, {"id": 104, "pubmed_id": 17082206, "title": "MACiE (Mechanism, Annotation and Classification in Enzymes): novel tools for searching catalytic mechanisms.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl774", "authors": "Holliday GL., Almonacid DE., Bartlett GJ., O'Boyle NM., Torrance JW., Murray-Rust P., Mitchell JB., Thornton JM.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl774", "created_at": "2021-09-30T08:22:31.588Z", "updated_at": "2021-09-30T08:22:31.588Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2591", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-07T14:03:45.000Z", "updated-at": "2021-12-06T10:48:42.220Z", "metadata": {"doi": "10.25504/FAIRsharing.IziuCK", "name": "Animal Trait Correlation Database", "status": "ready", "contacts": [{"contact-name": "Zhiliang Hu", "contact-email": "zhu@iastate.edu", "contact-orcid": "0000-0002-6704-7538"}], "homepage": "https://www.animalgenome.org/cgi-bin/CorrDB/index", "citations": [], "identifier": 2591, "description": "A genetic correlation is the proportion of shared variance between two traits that is due to genetic causes; a phenotypic correlation is the degree to which two traits co-vary among individuals in a population. In the genomics era, while gene expression, genetic association, and network analysis provide unprecedented means to decode the genetic basis of complex phenotypes, it is important to recognize the possible effects genetic progress in one trait can have on other traits. This database is designed to collect all published livestock genetic/phenotypic trait correlation data, aimed at facilitating genetic network analysis or systems biology studies", "abbreviation": "CorrDB", "support-links": [{"url": "https://www.animalgenome.org/bioinfo/services/helpdesk", "name": "Help Desk", "type": "Contact form"}, {"url": "https://www.animalgenome.org/CorrDB/faq", "name": "CorrDB FAQ", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2010, "data-processes": [{"url": "https://www.animalgenome.org/cgi-bin/CorrDB/view?corr_type=phenotypic&limit=60", "name": "Browse Phenotypic Correlations", "type": "data access"}, {"url": "https://www.animalgenome.org/cgi-bin/CorrDB/view?corr_type=genetic&limit=60", "name": "Browse Genetic Correlations", "type": "data access"}, {"url": "https://www.animalgenome.org/cgi-bin/CorrDB/herit", "name": "Browse Trait Heritabilities", "type": "data access"}, {"url": "https://www.animalgenome.org/CorrDB/release/", "name": "Release Information", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011496", "name": "re3data:r3d100011496", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001074", "bsg-d001074"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics", "Genetics", "Life Science", "Systems Biology"], "domains": ["Network model", "Phenotype", "Genotype"], "taxonomies": ["Bos taurus", "Gallus gallus", "Ovis aries", "Sus scrofa"], "user-defined-tags": ["Livestock"], "countries": ["United States"], "name": "FAIRsharing record for: Animal Trait Correlation Database", "abbreviation": "CorrDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.IziuCK", "doi": "10.25504/FAIRsharing.IziuCK", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A genetic correlation is the proportion of shared variance between two traits that is due to genetic causes; a phenotypic correlation is the degree to which two traits co-vary among individuals in a population. In the genomics era, while gene expression, genetic association, and network analysis provide unprecedented means to decode the genetic basis of complex phenotypes, it is important to recognize the possible effects genetic progress in one trait can have on other traits. This database is designed to collect all published livestock genetic/phenotypic trait correlation data, aimed at facilitating genetic network analysis or systems biology studies", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2625", "type": "fairsharing-records", "attributes": {"created-at": "2018-07-26T16:37:30.000Z", "updated-at": "2022-02-08T10:38:25.930Z", "metadata": {"doi": "10.25504/FAIRsharing.6e817a", "name": "Metabolomic Repository Bordeaux", "status": "ready", "contacts": [{"contact-name": "Daniel Jacob", "contact-email": "daniel.jacob@u-bordeaux.fr", "contact-orcid": "0000-0002-6687-7169"}], "homepage": "http://services.cbib.u-bordeaux.fr/MERYB/home/home.php?popup=0", "identifier": 2625, "description": "MeRy-B is a plant metabolomics platform allowing the storage and visualisation of Nuclear Magnetic Resonance (NMR) metabolic profiles from plants.", "abbreviation": "MeRy-B", "support-links": [{"url": "http://services.cbib.u-bordeaux.fr/MERYB/Documentation/user_manual/index.php?popup=0", "type": "Help documentation"}, {"url": "http://services.cbib.u-bordeaux.fr/MERYB/vocabulary/home.php?popup=0", "name": "Section of controlled vocabulary", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://services.cbib.u-bordeaux.fr/MERYB/projects/home.php?R=1&popup=0", "name": "browse", "type": "data access"}, {"url": "http://services.cbib.u-bordeaux.fr/MERYB/tools/home.php?popup=0", "name": "Query builder", "type": "data access"}]}, "legacy-ids": ["biodbcore-001113", "bsg-d001113"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Metabolomics", "Data Visualization"], "domains": ["Nuclear Magnetic Resonance (NMR) spectroscopy"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Metabolomic Repository Bordeaux", "abbreviation": "MeRy-B", "url": "https://fairsharing.org/10.25504/FAIRsharing.6e817a", "doi": "10.25504/FAIRsharing.6e817a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MeRy-B is a plant metabolomics platform allowing the storage and visualisation of Nuclear Magnetic Resonance (NMR) metabolic profiles from plants.", "publications": [{"id": 2364, "pubmed_id": 21668943, "title": "MeRy-B: a web knowledgebase for the storage, visualization, analysis and annotation of plant NMR metabolomic profiles.", "year": 2011, "url": "http://doi.org/10.1186/1471-2229-11-104", "authors": "Ferry-Dumazet H,Gil L,Deborde C,Moing A,Bernillon S,Rolin D,Nikolski M,de Daruvar A,Jacob D", "journal": "BMC Plant Biol", "doi": "10.1186/1471-2229-11-104", "created_at": "2021-09-30T08:26:50.635Z", "updated_at": "2021-09-30T08:26:50.635Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2693", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-31T20:46:57.000Z", "updated-at": "2021-11-24T13:16:39.767Z", "metadata": {"name": "UKEOF Catalogue", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "office@ukeof.org.uk"}], "homepage": "https://catalogue.ukeof.org.uk", "identifier": 2693, "description": "This catalogue provides United Kingdom environmental observations.", "abbreviation": "UKEOF Catalogue", "support-links": [{"url": "http://www.ukeof.org.uk/catalogue/help", "name": "Help", "type": "Help documentation"}], "year-creation": 2009}, "legacy-ids": ["biodbcore-001190", "bsg-d001190"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Geology", "Earth Science", "Freshwater Science", "Oceanography", "Water Research"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Grassland Research"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: UKEOF Catalogue", "abbreviation": "UKEOF Catalogue", "url": "https://fairsharing.org/fairsharing_records/2693", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This catalogue provides United Kingdom environmental observations.", "publications": [], "licence-links": [{"licence-name": "Open Government Licence (OGL)", "licence-id": 628, "link-id": 1610, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2705", "type": "fairsharing-records", "attributes": {"created-at": "2018-11-15T14:46:13.000Z", "updated-at": "2021-11-24T13:16:06.685Z", "metadata": {"doi": "10.25504/FAIRsharing.TFhZ4P", "name": "RatMine", "status": "ready", "homepage": "http://ratmine.mcw.edu/ratmine/begin.do", "identifier": 2705, "description": "RatMine integrates many types of data for Rattus Norvegicus, Homo Sapiens, Mus Musculus and other organisms. You can run flexible queries, export results and analyse lists of data.", "abbreviation": "RatMine", "access-points": [{"url": "http://ratmine.mcw.edu/ratmine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://ratmine.mcw.edu/ratmine/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://ratmine.mcw.edu/ratmine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://ratmine.mcw.edu/ratmine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "http://ratmine.mcw.edu/ratmine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://ratmine.mcw.edu/ratmine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001203", "bsg-d001203"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Comparative Genomics"], "domains": ["Expression data", "Molecular interaction", "Homologous"], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: RatMine", "abbreviation": "RatMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.TFhZ4P", "doi": "10.25504/FAIRsharing.TFhZ4P", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RatMine integrates many types of data for Rattus Norvegicus, Homo Sapiens, Mus Musculus and other organisms. You can run flexible queries, export results and analyse lists of data.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1246, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2786", "type": "fairsharing-records", "attributes": {"created-at": "2019-06-25T09:43:53.000Z", "updated-at": "2021-11-24T13:16:40.071Z", "metadata": {"doi": "10.25504/FAIRsharing.1jihTO", "name": "International Ocean Discovery Program Janus Web Database", "status": "ready", "contacts": [{"contact-name": "Lorri Peters", "contact-email": "information@iodp.tamu.edu", "contact-orcid": "0000-0003-4951-0223"}], "homepage": "http://www-odp.tamu.edu/database/", "identifier": 2786, "description": "The Janus database contains data from DSDP, ODP, and Phase I of the Integrated Ocean Drilling Program. This includes data gathered between 1968 and 2008 as a result of Deep Sea Drilling Project (DSDP; 1968\u20131984) Legs 1\u201396, Ocean Drilling Program (ODP; 1985\u20132003) Legs 101\u2013210, and IODP-I Expeditions 301\u2013312.", "abbreviation": "Janus", "year-creation": 1968, "data-processes": [{"url": "http://web.iodp.tamu.edu/OVERVIEW/?&set=1", "name": "Browse Data", "type": "data access"}, {"url": "http://iodp.tamu.edu/janusweb/links/links_all.shtml", "name": "Query Data", "type": "data access"}, {"url": "http://iodp.tamu.edu/janusweb/coring_summaries/metadata.shtml", "name": "Metadata Request Form", "type": "data access"}, {"url": "http://iodp.tamu.edu/janusweb/imaging/primedataimages.shtml?dataType=VCD", "name": "Search Prime Data Images", "type": "data access"}, {"url": "http://iodp.tamu.edu/janusweb/imaging/photo.shtml", "name": "Search Core Photos", "type": "data access"}, {"url": "http://iodp.tamu.edu/janusweb/coring_summaries/legsum.shtml", "name": "Search Leg Summaries", "type": "data access"}]}, "legacy-ids": ["biodbcore-001285", "bsg-d001285"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Geology", "Geophysics", "Earth Science"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: International Ocean Discovery Program Janus Web Database", "abbreviation": "Janus", "url": "https://fairsharing.org/10.25504/FAIRsharing.1jihTO", "doi": "10.25504/FAIRsharing.1jihTO", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Janus database contains data from DSDP, ODP, and Phase I of the Integrated Ocean Drilling Program. This includes data gathered between 1968 and 2008 as a result of Deep Sea Drilling Project (DSDP; 1968\u20131984) Legs 1\u201396, Ocean Drilling Program (ODP; 1985\u20132003) Legs 101\u2013210, and IODP-I Expeditions 301\u2013312.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2828", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-14T14:11:48.000Z", "updated-at": "2021-11-24T13:16:10.754Z", "metadata": {"doi": "10.25504/FAIRsharing.FiYkCp", "name": "EMODnet Seabed Habitats", "status": "ready", "contacts": [{"contact-name": "JNCC Marine Monitoring and Evidence Team", "contact-email": "emodnetseabedhabitats@jncc.gov.uk"}], "homepage": "https://www.emodnet-seabedhabitats.eu/", "identifier": 2828, "description": "The EMODnet Seabed Habitats data portal provides free access to data and data products on the extent and distribution of seabed habitats in all European regional seas. The European Marine Observation and Data Network (EMODnet) is financed by the European Union under Regulation (EU) No 508/2014 of the European Parliament and of the Council of 15 May 2014 on the European Maritime and Fisheries Fund.", "access-points": [{"url": "https://www.emodnet-seabedhabitats.eu/access-data/web-services/", "name": "OGC web services: web map service, web feature service, etc.", "type": "Other"}], "support-links": [{"url": "https://www.emodnet-seabedhabitats.eu/helpdesk/contact-us/", "name": "Contact form", "type": "Contact form"}, {"url": "https://www.emodnet-seabedhabitats.eu/helpdesk/", "name": "Portal help desk", "type": "Help documentation"}, {"url": "https://www.emodnet-seabedhabitats.eu/contribute-data/", "name": "Contributing data", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://www.emodnet-seabedhabitats.eu/access-data/search-metadata/", "name": "Search metadata", "type": "data access"}, {"url": "https://www.emodnet-seabedhabitats.eu/access-data/download-data/", "name": "Download spatial data", "type": "data release"}, {"url": "https://www.emodnet-seabedhabitats.eu/access-data/launch-map-viewer/", "name": "Online interactive map", "type": "data access"}, {"url": "https://www.emodnet-seabedhabitats.eu/contribute-data/data-submission-process/", "name": "Data Submission", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001328", "bsg-d001328"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Geography", "Geophysics", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography", "Physical Geography"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["United Kingdom", "European Union"], "name": "FAIRsharing record for: EMODnet Seabed Habitats", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.FiYkCp", "doi": "10.25504/FAIRsharing.FiYkCp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The EMODnet Seabed Habitats data portal provides free access to data and data products on the extent and distribution of seabed habitats in all European regional seas. The European Marine Observation and Data Network (EMODnet) is financed by the European Union under Regulation (EU) No 508/2014 of the European Parliament and of the Council of 15 May 2014 on the European Maritime and Fisheries Fund.", "publications": [], "licence-links": [{"licence-name": "EMODnet Seabed Habitats Terms of Use", "licence-id": 277, "link-id": 1172, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2792", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-10T10:41:45.000Z", "updated-at": "2021-11-24T13:13:46.445Z", "metadata": {"doi": "10.25504/FAIRsharing.wFo3UE", "name": "SCPortalen", "status": "ready", "contacts": [{"contact-name": "Takeya Kasukawa", "contact-email": "takeya.kasukawa@riken.jp", "contact-orcid": "0000-0001-5085-0802"}], "homepage": "http://single-cell.clst.riken.jp/", "citations": [{"doi": "10.1093/nar/gkx949", "pubmed-id": 29045713, "publication-id": 1201}], "identifier": 2792, "description": "SCPortalen is a single-cell database created to facilitate and enable researchers to access and explore published single-cell datasets. It integrates human and mouse single-cell transcriptomics datasets, single-cell metadata, cell images and sequence information.", "abbreviation": "SCPortalen", "support-links": [{"url": "single-cell-db-help@riken.jp", "name": "General contact", "type": "Support email"}, {"url": "http://single-cell.clst.riken.jp/quick_search_guide.htm", "name": "Quick Search Guide", "type": "Help documentation"}, {"url": "http://single-cell.clst.riken.jp/single-cell_database_workflow.pdf", "name": "About the Platform (Presentation)", "type": "Help documentation"}, {"url": "http://single-cell.clst.riken.jp/scdb_data_model.htm", "name": "Data Model", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://single-cell.clst.riken.jp/riken_data/Fucci_cell_metadata_list.php", "name": "Browse single-cell images", "type": "data access"}, {"url": "http://single-cell.clst.riken.jp/non_riken_data/study_meta_info_list.php", "name": "Browse single-cell transcriptomics data", "type": "data access"}, {"url": "http://single-cell.clst.riken.jp/non_riken_data/Single_cell_samples1_search.php?menuItemId=82", "name": "Search single-cell sample", "type": "data access"}, {"url": "http://single-cell.clst.riken.jp/non_riken_data/study_meta_info_search.php?menuItemId=83", "name": "Search single-cell study", "type": "data access"}]}, "legacy-ids": ["biodbcore-001291", "bsg-d001291"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Transcriptomics", "Cell Biology"], "domains": ["Cell", "Cellular assay", "Image", "Sequencing", "Sequence"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Single cell gene expression"], "countries": ["Japan"], "name": "FAIRsharing record for: SCPortalen", "abbreviation": "SCPortalen", "url": "https://fairsharing.org/10.25504/FAIRsharing.wFo3UE", "doi": "10.25504/FAIRsharing.wFo3UE", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SCPortalen is a single-cell database created to facilitate and enable researchers to access and explore published single-cell datasets. It integrates human and mouse single-cell transcriptomics datasets, single-cell metadata, cell images and sequence information.", "publications": [{"id": 1201, "pubmed_id": 29045713, "title": "SCPortalen: human and mouse single-cell centric database.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx949", "authors": "Abugessaisa I,Noguchi S,Bottcher M,Hasegawa A,Kouno T,Kato S,Tada Y,Ura H,Abe K,Shin JW,Plessy C,Carninci P,Kasukawa T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx949", "created_at": "2021-09-30T08:24:33.830Z", "updated_at": "2021-09-30T11:29:02.926Z"}], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1782, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2824", "type": "fairsharing-records", "attributes": {"created-at": "2019-08-27T18:57:15.000Z", "updated-at": "2021-12-10T14:39:38.971Z", "metadata": {"doi": "10.25504/FAIRsharing.SnTbUa", "name": "MAR databases", "status": "ready", "contacts": [{"contact-name": "Nils Peder Willassen", "contact-email": "nils-peder.willassen@uit.no", "contact-orcid": "0000-0002-4397-8020"}], "homepage": "https://mmp2.sfb.uit.no/databases/", "citations": [{"doi": "10.1093/nar/gkx1036", "pubmed-id": 29106641, "publication-id": 2562}], "identifier": 2824, "description": "The MAR databases is a collection of manually curated marine microbial contextual and sequence databases, based at the Marine Metagenomics Portal. This was developed as a part of the ELIXIR EXCELERATE project in 2017 and is maintained by The Center for Bioinformatics (SfB) at the UiT The Arctic University of Norway. SfB is hosting the UiT node of ELIXIR Norway. The MarRef, MarDb, MarFun and MarCat contextual databases are built by compiling data from a number of public available sequence, taxonomy and literature databases in a semi-automatic fashion.", "abbreviation": "MAR", "support-links": [{"url": "https://mmp.sfb.uit.no/help/#/", "name": "Help", "type": "Help documentation"}, {"url": "https://mmp.sfb.uit.no/documentation/#/", "name": "Online documentation", "type": "Help documentation"}, {"url": "https://mmp.sfb.uit.no/community/", "name": "Community page", "type": "Help documentation"}], "year-creation": 2017, "deprecation-reason": null}, "legacy-ids": ["biodbcore-001323", "bsg-d001323"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Metagenomics", "Genomics", "Marine Biology"], "domains": ["DNA sequence data", "Genome annotation", "Marine environment", "Marine metagenome", "Metagenome"], "taxonomies": ["Bacteria", "Fungi"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: MAR databases", "abbreviation": "MAR", "url": "https://fairsharing.org/10.25504/FAIRsharing.SnTbUa", "doi": "10.25504/FAIRsharing.SnTbUa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The MAR databases is a collection of manually curated marine microbial contextual and sequence databases, based at the Marine Metagenomics Portal. This was developed as a part of the ELIXIR EXCELERATE project in 2017 and is maintained by The Center for Bioinformatics (SfB) at the UiT The Arctic University of Norway. SfB is hosting the UiT node of ELIXIR Norway. The MarRef, MarDb, MarFun and MarCat contextual databases are built by compiling data from a number of public available sequence, taxonomy and literature databases in a semi-automatic fashion.", "publications": [{"id": 2562, "pubmed_id": 29106641, "title": "The MAR databases: development and implementation of databases specific for marine metagenomics", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1036", "authors": "Klemetsen T, Raknes IA, Fu J, Agafonov A, Balasundaram SV, Tartari G, Robertsen E, Willassen NP", "journal": "NAR", "doi": "10.1093/nar/gkx1036", "created_at": "2021-09-30T08:27:14.220Z", "updated_at": "2021-09-30T08:27:14.220Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)", "licence-id": 168, "link-id": 331, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2859", "type": "fairsharing-records", "attributes": {"created-at": "2019-11-19T15:04:40.000Z", "updated-at": "2021-11-24T13:17:55.663Z", "metadata": {"doi": "10.25504/FAIRsharing.dOFQ7p", "name": "Cyclebase", "status": "ready", "contacts": [{"contact-name": "Lars Juhl Jensen", "contact-email": "lars.juhl.jensen@cpr.ku.dk"}], "homepage": "https://cyclebase.org/", "citations": [{"doi": "10.1093/nar/gku1092", "pubmed-id": 25378319, "publication-id": 2630}], "identifier": 2859, "description": "Cyclebase is a database to visualize and download results from genome-wide cell-cycle-related experiments. In addition to genome annotation, Cyclebase also provides mRNA data, protein expression data, and integrated cell-cycle phenotype information from high-content screens and model organism databases.", "abbreviation": "Cyclebase", "year-creation": 2008, "data-processes": [{"url": "https://cyclebase.org/Advanced%20Search", "name": "Advanced Search", "type": "data access"}, {"url": "https://cyclebase.org/Sequence%20Search", "name": "Sequence Search", "type": "data access"}, {"url": "https://cyclebase.org/Downloads", "name": "Download", "type": "data release"}, {"url": "https://cyclebase.org/CyclebaseSearch", "name": "General Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001360", "bsg-d001360"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Bioinformatics"], "domains": ["Model organism", "Cell cycle", "Post-translational protein modification", "Protein expression", "Phenotype", "Messenger RNA", "Genome"], "taxonomies": ["Arabidopsis thaliana", "Homo sapiens", "Saccharomyces cerevisiae", "Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: Cyclebase", "abbreviation": "Cyclebase", "url": "https://fairsharing.org/10.25504/FAIRsharing.dOFQ7p", "doi": "10.25504/FAIRsharing.dOFQ7p", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Cyclebase is a database to visualize and download results from genome-wide cell-cycle-related experiments. In addition to genome annotation, Cyclebase also provides mRNA data, protein expression data, and integrated cell-cycle phenotype information from high-content screens and model organism databases.", "publications": [{"id": 2630, "pubmed_id": 25378319, "title": "Cyclebase 3.0: a multi-organism database on cell-cycle regulation and phenotypes.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1092", "authors": "Santos A,Wernersson R,Jensen LJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1092", "created_at": "2021-09-30T08:27:22.893Z", "updated_at": "2021-09-30T11:29:40.821Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1018, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2902", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-10T13:54:47.000Z", "updated-at": "2022-02-08T10:31:49.530Z", "metadata": {"doi": "10.25504/FAIRsharing.50387f", "name": "Epigenome-Wide Association Study Atlas", "status": "ready", "contacts": [{"contact-name": "EWAS Atlas Helpdesk", "contact-email": "ewas-user@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/ewas", "citations": [{"doi": "10.1093/nar/gky1027", "pubmed-id": 30364969, "publication-id": 2805}], "identifier": 2902, "description": "The Epigenome-Wide Association Study Atlas (EWAS) Atlas is a curated knowledgebase of EWAS data. EWAS Atlas focuses on DNA methylation and provides a trait enrichment analysis tool, which is capable of profiling trait-trait and trait-epigenome relationships. Incorporation of more epigenetic markers is planned.", "abbreviation": "EWAS Atlas", "access-points": [{"url": "https://bigd.big.ac.cn/ewas/api", "name": "EWAS API", "type": "REST"}], "support-links": [{"url": "https://bigd.big.ac.cn/ewas/documentation#/", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/ewas/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://twitter.com/AtlasEwas", "name": "@AtlasEwas", "type": "Twitter"}], "year-creation": 2018, "data-processes": [{"url": "https://bigd.big.ac.cn/ewas/browse", "name": "Browse", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ewas/toolkit", "name": "Trait Enrichment", "type": "data access"}, {"url": "https://bigd.big.ac.cn/ewas/downloads", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001403", "bsg-d001403"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Epigenomics", "Epigenetics"], "domains": ["DNA methylation"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Epigenome-Wide Association Study Atlas", "abbreviation": "EWAS Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.50387f", "doi": "10.25504/FAIRsharing.50387f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Epigenome-Wide Association Study Atlas (EWAS) Atlas is a curated knowledgebase of EWAS data. EWAS Atlas focuses on DNA methylation and provides a trait enrichment analysis tool, which is capable of profiling trait-trait and trait-epigenome relationships. Incorporation of more epigenetic markers is planned.", "publications": [{"id": 2805, "pubmed_id": 30364969, "title": "EWAS Atlas: a curated knowledgebase of epigenome-wide association studies.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1027", "authors": "Li M,Zou D,Li Z,Gao R,Sang J,Zhang Y,Li R,Xia L,Zhang T,Niu G,Bao Y,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1027", "created_at": "2021-09-30T08:27:44.952Z", "updated_at": "2021-09-30T11:29:45.255Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 686, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2919", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-18T13:34:03.000Z", "updated-at": "2022-02-08T10:32:22.336Z", "metadata": {"doi": "10.25504/FAIRsharing.18e4a6", "name": "piRBase", "status": "ready", "contacts": [{"contact-name": "Shunmin He", "contact-email": "heshunmin@ibp.ac.cn"}], "homepage": "http://www.regulatoryrna.org/database/piRNA/", "citations": [{"doi": "10.1093/nar/gky1043", "pubmed-id": 30371818, "publication-id": 2536}], "identifier": 2919, "description": "piRBase stores information on piRNAs and piRNA-associated data to support piRNA functional analysis.", "abbreviation": "piRBase", "support-links": [{"url": "crs@ibp.ac.cn", "name": "Runsheng Chen", "type": "Support email"}, {"url": "http://www.regulatoryrna.org/database/piRNA/faq.html", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.regulatoryrna.org/database/piRNA/about1.html", "name": "About piRNAs", "type": "Help documentation"}, {"url": "http://www.regulatoryrna.org/database/piRNA/about2.html", "name": "About piRBase", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "http://www.regulatoryrna.org/database/piRNA/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://www.regulatoryrna.org/database/piRNA/search.php", "name": "Search", "type": "data access"}, {"url": "http://www.regulatoryrna.org/database/piRNA/function.php", "name": "piRNA Function Search", "type": "data access"}, {"url": "http://www.regulatoryrna.org/database/piRNA/methylation.php", "name": "DNA Methylation Search", "type": "data access"}, {"url": "http://www.regulatoryrna.org/database/piRNA/download.html", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "http://www.regulatoryrna.org/database/piRNA/genome.php", "name": "UCSC Genome Browser"}, {"url": "http://www.regulatoryrna.org/database/piRNA/tools.html", "name": "Tool list"}]}, "legacy-ids": ["biodbcore-001422", "bsg-d001422"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics"], "domains": ["Function analysis", "Non-coding RNA"], "taxonomies": ["Bombyx mori", "Bos taurus", "Caenorhabditis elegans", "Callithrix jacchus", "Danio rerio", "Drosophila erecta", "Drosophila melanogaster", "Drosophila virilis", "Drosophila yakuba", "Gallus gallus", "Homo sapiens", "Macaca fascicularis", "Macaca mulatta", "Mus musculus", "Nematostella vectensis", "Oryctolagus cuniculus", "Rattus norvegicus", "Tupaia belangeri", "Xenopus tropicalis"], "user-defined-tags": ["Piwi-interacting RNA (piRNA)"], "countries": ["China"], "name": "FAIRsharing record for: piRBase", "abbreviation": "piRBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.18e4a6", "doi": "10.25504/FAIRsharing.18e4a6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: piRBase stores information on piRNAs and piRNA-associated data to support piRNA functional analysis.", "publications": [{"id": 2536, "pubmed_id": 30371818, "title": "piRBase: a comprehensive database of piRNA sequences.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1043", "authors": "Wang J,Zhang P,Lu Y,Li Y,Zheng Y,Kan Y,Chen R,He S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1043", "created_at": "2021-09-30T08:27:11.073Z", "updated_at": "2021-09-30T11:29:38.987Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2109", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:17.113Z", "metadata": {"doi": "10.25504/FAIRsharing.tpey2t", "name": "Online Mendelian Inheritance in Animals", "status": "ready", "contacts": [{"contact-name": "Frank Nicholas", "contact-email": "frank.nicholas@sydney.edu.au"}], "homepage": "https://omia.org/home/", "identifier": 2109, "description": "Online Mendelian Inheritance in Animals is a a database of inherited disorders, other (single-locus) traits, and genes in animal species (other than human and mouse).", "abbreviation": "OMIA", "support-links": [{"url": "https://omia.org/news/", "name": "News", "type": "Blog/News"}], "year-creation": 1978, "data-processes": [{"url": "https://omia.org/download/", "name": "Download", "type": "data access"}, {"url": "https://omia.org/browse/", "name": "Browse", "type": "data access"}, {"url": "https://omia.org/search/", "name": "Search", "type": "data access"}, {"url": "https://omia.org/curate/", "name": "Curate", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010772", "name": "re3data:r3d100010772", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006436", "name": "SciCrunch:RRID:SCR_006436", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000579", "bsg-d000579"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics", "Biology"], "domains": ["Phenotype", "Disorder", "Classification", "Gene", "Genetic disorder"], "taxonomies": ["Metazoa"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Online Mendelian Inheritance in Animals", "abbreviation": "OMIA", "url": "https://fairsharing.org/10.25504/FAIRsharing.tpey2t", "doi": "10.25504/FAIRsharing.tpey2t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Online Mendelian Inheritance in Animals is a a database of inherited disorders, other (single-locus) traits, and genes in animal species (other than human and mouse).", "publications": [{"id": 557, "pubmed_id": 16381939, "title": "OMIA (Online Mendelian Inheritance in Animals): an enhanced platform and integration into the Entrez search interface at NCBI.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj152", "authors": "Lenffer J., Nicholas FW., Castle K., Rao A., Gregory S., Poidinger M., Mailman MD., Ranganathan S.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj152", "created_at": "2021-09-30T08:23:20.868Z", "updated_at": "2021-09-30T08:23:20.868Z"}, {"id": 2080, "pubmed_id": 12520001, "title": "Online Mendelian Inheritance in Animals (OMIA): a comparative knowledgebase of genetic disorders and other familial traits in non-laboratory animals.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg074", "authors": "Nicholas FW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkg074", "created_at": "2021-09-30T08:26:14.533Z", "updated_at": "2021-09-30T08:26:14.533Z"}, {"id": 2101, "pubmed_id": 33156546, "title": "Online Mendelian Inheritance in Animals (OMIA): a record of advances in animal genetics, freely available on the Internet for 25 years.", "year": 2020, "url": "http://doi.org/10.1111/age.13010", "authors": "Nicholas FW", "journal": "Anim Genet", "doi": "10.1111/age.13010", "created_at": "2021-09-30T08:26:16.749Z", "updated_at": "2021-09-30T08:26:16.749Z"}], "licence-links": [{"licence-name": "Sydney University Data Policies and Disclaimer", "licence-id": 765, "link-id": 258, "relation": "undefined"}, {"licence-name": "The University of Sydney Privacy Policy", "licence-id": 787, "link-id": 280, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1841", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:56.020Z", "metadata": {"doi": "10.25504/FAIRsharing.3zqvaf", "name": "Sol Genomics Network", "status": "ready", "contacts": [{"contact-email": "sgn-feedback@solgenomics.net"}], "homepage": "https://solgenomics.net", "citations": [{"doi": "10.1093/nar/gku1195", "pubmed-id": 25428362, "publication-id": 1263}], "identifier": 1841, "description": "The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the Solanaceae family, which includes species such as tomato, potato, pepper, petunia and eggplant.", "abbreviation": "SGN", "support-links": [{"url": "https://solgenomics.net/contact/form/", "name": "Contact SGN", "type": "Contact form"}, {"url": "https://solgenomics.net/help/faq.pl", "name": "SGN FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://solgenomics.net/forum/topics.pl", "name": "SGN Forum", "type": "Forum"}, {"url": "https://solgenomics.net/help/index.pl", "name": "SGN Help", "type": "Help documentation"}, {"url": "https://twitter.com/solgenomics", "name": "@solgenomics", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://solgenomics.net/tools/bulk?mode=ftp", "name": "Download (Various Methods)", "type": "data release"}, {"url": "https://solgenomics.net/search/features", "name": "Search Genomic Features", "type": "data access"}, {"url": "https://solgenomics.net/search/locus", "name": "Search Loci", "type": "data access"}, {"url": "https://solgenomics.net/search/organisms", "name": "Search Organisms", "type": "data access"}, {"url": "https://solgenomics.net/search/expression", "name": "Expression Search", "type": "data access"}, {"url": "https://solgenomics.net/search/stocks", "name": "Search Accessions and Plots", "type": "data access"}, {"url": "https://solgenomics.net/search/phenotypes/qtl", "name": "Search QTLs", "type": "data access"}, {"url": "https://solgenomics.net/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://solgenomics.net/search/genomic/clones", "name": "Search Genomic Clones", "type": "data access"}, {"url": "https://solgenomics.net/search/transcripts/unigene", "name": "Unigene Search", "type": "data access"}, {"url": "https://solgenomics.net/search/transcripts/est", "name": "Search ESTs", "type": "data access"}, {"url": "https://solgenomics.net/search/family", "name": "Search Unigene Families", "type": "data access"}, {"url": "https://solgenomics.net/search/images", "name": "Image Search", "type": "data access"}, {"url": "https://solgenomics.net/cview/index.pl", "name": "Interactive Maps", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012078", "name": "re3data:r3d100012078", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004933", "name": "SciCrunch:RRID:SCR_004933", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000301", "bsg-d000301"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Genomics", "Agriculture", "Comparative Genomics"], "domains": ["Network model", "Small molecule", "Pathway model", "Genome"], "taxonomies": ["Rubiaceae", "Solanaceae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Sol Genomics Network", "abbreviation": "SGN", "url": "https://fairsharing.org/10.25504/FAIRsharing.3zqvaf", "doi": "10.25504/FAIRsharing.3zqvaf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the Solanaceae family, which includes species such as tomato, potato, pepper, petunia and eggplant.", "publications": [{"id": 355, "pubmed_id": 20935049, "title": "The Sol Genomics Network (solgenomics.net): growing tomatoes using Perl.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq866", "authors": "Bombarely A., Menda N., Tecle IY., Buels RM., Strickler S., Fischer-York T., Pujar A., Leto J., Gosselin J., Mueller LA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq866", "created_at": "2021-09-30T08:22:58.192Z", "updated_at": "2021-09-30T08:22:58.192Z"}, {"id": 1263, "pubmed_id": 25428362, "title": "The Sol Genomics Network (SGN)--from genotype to phenotype to breeding.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1195", "authors": "Fernandez-Pozo N,Menda N,Edwards JD,Saha S,Tecle IY,Strickler SR,Bombarely A,Fisher-York T,Pujar A,Foerster H,Yan A,Mueller LA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1195", "created_at": "2021-09-30T08:24:40.915Z", "updated_at": "2021-09-30T11:29:04.434Z"}], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 2370, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1977", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:54.681Z", "metadata": {"doi": "10.25504/FAIRsharing.mzc066", "name": "NCBI HomoloGene Database", "status": "ready", "contacts": [{"contact-name": "General information", "contact-email": "info@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/homologene", "citations": [], "identifier": 1977, "description": "HomoloGene is an automated system for the detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes. HomoloGene takes protein sequences from differing species and compares them to one another (using blastp) and matches are placed into groups, using a tree built from sequence similarity to guide the process, where closer related organisms are matched up first, and then further organisms are added as the tree is traversed toward the root. The protein alignments are mapped back to their corresponding DNA sequences, where distance metrics can be calculated (e.g. molecular distance, Ka/Ks ratio). Sequences are matched using synteny when applicable. Remaining sequences are matched up by using an algorithm for maximizing the score globally, rather than locally, in a bipartite matching. Cutoffs on bits per position and Ks values are set to prevent unlikely \"orthologs\" from being grouped together. These cutoffs are calculated based on the respective score distribution for the given groups of organisms. Paralogs are identified by finding sequences that are closer within species than other species.", "abbreviation": "HomoloGene", "support-links": [{"url": "http://www.ncbi.nlm.nih.gov/homologene/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.ncbi.nlm.nih.gov/HomoloGene/HTML/homologene_querytips.html", "type": "Help documentation"}], "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/pub/HomoloGene/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010781", "name": "re3data:r3d100010781", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002924", "name": "SciCrunch:RRID:SCR_002924", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000443", "bsg-d000443"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Annotation", "Genome annotation", "Gene", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: NCBI HomoloGene Database", "abbreviation": "HomoloGene", "url": "https://fairsharing.org/10.25504/FAIRsharing.mzc066", "doi": "10.25504/FAIRsharing.mzc066", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HomoloGene is an automated system for the detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes. HomoloGene takes protein sequences from differing species and compares them to one another (using blastp) and matches are placed into groups, using a tree built from sequence similarity to guide the process, where closer related organisms are matched up first, and then further organisms are added as the tree is traversed toward the root. The protein alignments are mapped back to their corresponding DNA sequences, where distance metrics can be calculated (e.g. molecular distance, Ka/Ks ratio). Sequences are matched using synteny when applicable. Remaining sequences are matched up by using an algorithm for maximizing the score globally, rather than locally, in a bipartite matching. Cutoffs on bits per position and Ks values are set to prevent unlikely \"orthologs\" from being grouped together. These cutoffs are calculated based on the respective score distribution for the given groups of organisms. Paralogs are identified by finding sequences that are closer within species than other species.", "publications": [{"id": 2200, "pubmed_id": 21097890, "title": "Database resources of the National Center for Biotechnology Information.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1172", "authors": "Sayers EW., Barrett T., Benson DA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1172", "created_at": "2021-09-30T08:26:27.948Z", "updated_at": "2021-09-30T08:26:27.948Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 1042, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1061, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2438", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-19T11:11:53.000Z", "updated-at": "2021-12-06T10:47:54.944Z", "metadata": {"doi": "10.25504/FAIRsharing.3nm6zq", "name": "UNAVCO Data", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "data@unavco.org"}], "homepage": "https://www.unavco.org/data/data.html", "identifier": 2438, "description": "UNAVCO provides access to data that the community of geodetic scientists can use for quantifying the motions of rock, ice and water that are monitored by a variety of sensor types at or near the Earth's surface. The data types include GPS/GNSS, imaging data such as from SAR and TLS, strain and seismic borehole data, and meteorological data. Most of these can be accessed via web services. In addition, GPS/GNSS datasets, TLS datasets, and InSAR products are assigned digital object identifiers.", "abbreviation": "UNAVCO Data", "access-points": [{"url": "https://www.unavco.org/data/web-services/web-services.html", "name": "Web Services Documentation", "type": "REST"}], "support-links": [{"url": "https://www.unavco.org/news/news-feed/", "name": "News", "type": "Blog/News"}, {"url": "https://www.unavco.org/data/data-help/data-help.html", "name": "Data Help", "type": "Help documentation"}, {"url": "https://www.unavco.org/data/gps-gnss/ftp/ftp.html", "name": "FTP Server Layout", "type": "Help documentation"}, {"url": "https://www.unavco.org/data/data-help/about-data/about-data.html", "name": "About", "type": "Help documentation"}, {"url": "https://twitter.com/UNAVCO", "name": "@UNAVCO", "type": "Twitter"}], "year-creation": 1984, "data-processes": [{"url": "https://www.unavco.org/data/dai/", "name": "Search GPS/GNSS (Map)", "type": "data access"}, {"url": "ftp://data-out.unavco.org/pub", "name": "Download", "type": "data release"}, {"url": "https://web-services.unavco.org/brokered/ssara/gui", "name": "Search Synthetic Aperture Radar Data (Map)", "type": "data access"}, {"url": "https://tls.unavco.org/projects/", "name": "Search Terrestrial Laser Scanning Data", "type": "data access"}, {"url": "https://www.unavco.org/data/strain-seismic/pore-pressure-data/pore-pressure-data.html", "name": "Search Borehole Pore Pressure Data", "type": "data access"}, {"url": "https://www.unavco.org/data/strain-seismic/tilt-data/tilt-data.html", "name": "Search Borehole Tilt Data", "type": "data access"}, {"url": "https://www.unavco.org/data/strain-seismic/bsm-data/bsm-data.html", "name": "Borehole Strainmeter Data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010872", "name": "re3data:r3d100010872", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006706", "name": "SciCrunch:RRID:SCR_006706", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000920", "bsg-d000920"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Environmental Science", "Geology", "Geodesy", "Earth Science"], "domains": ["Geographical location", "Centrally registered identifier"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geological mapping", "Global Positioning System", "Troposphere"], "countries": ["United States"], "name": "FAIRsharing record for: UNAVCO Data", "abbreviation": "UNAVCO Data", "url": "https://fairsharing.org/10.25504/FAIRsharing.3nm6zq", "doi": "10.25504/FAIRsharing.3nm6zq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: UNAVCO provides access to data that the community of geodetic scientists can use for quantifying the motions of rock, ice and water that are monitored by a variety of sensor types at or near the Earth's surface. The data types include GPS/GNSS, imaging data such as from SAR and TLS, strain and seismic borehole data, and meteorological data. Most of these can be accessed via web services. In addition, GPS/GNSS datasets, TLS datasets, and InSAR products are assigned digital object identifiers.", "publications": [], "licence-links": [{"licence-name": "UNAVCO Data Policy", "licence-id": 814, "link-id": 1982, "relation": "undefined"}, {"licence-name": "UNAVCO Data Attribution Policy", "licence-id": 813, "link-id": 1983, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2449", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-22T21:41:16.000Z", "updated-at": "2021-12-06T10:47:48.119Z", "metadata": {"doi": "10.25504/FAIRsharing.21tjj7", "name": "Leiden Open Variation Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@LOVD.nl"}], "homepage": "https://www.lovd.nl/3.0/home", "citations": [{"doi": "10.1002/humu.21438", "pubmed-id": 21520333, "publication-id": 2177}], "identifier": 2449, "description": "The Leiden Open Variation Database (LOVD) provides a flexible, freely available tool for gene-centered collection and display of DNA variations. LOVD also stores patient-centered data, NGS data, and variants outside of genes.", "abbreviation": "LOVD", "access-points": [{"url": "https://www.lovd.nl/3.0/docs/manual.html", "name": "Data Retrieval API Documentation (Section 11.1)", "type": "REST"}, {"url": "https://www.lovd.nl/3.0/docs/manual.html", "name": "Data Submision API Documentation (Section 11.2)", "type": "REST"}], "support-links": [{"url": "https://www.lovd.nl/3.0/news", "name": "News", "type": "Blog/News"}, {"url": "https://www.lovd.nl/3.0/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.lovd.nl/3.0/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.lovd.nl/3.0/docs/manual.html", "name": "User Guide", "type": "Help documentation"}, {"url": "https://twitter.com/LOVD", "name": "@LOVD", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Leiden_Open_Variation_Database", "name": "LOVD Wikipedia Page", "type": "Wikipedia"}], "year-creation": 2004, "data-processes": [{"url": "https://www.lovd.nl/3.0/search", "name": "Search All Installations", "type": "data access"}, {"url": "https://www.lovd.nl/3.0/public_list", "name": "Search and Browse All Installation Locations", "type": "data access"}, {"url": "https://www.lovd.nl/3.0/public_list?format=text/plain", "name": "Download Gene List", "type": "data release"}, {"url": "https://grenada.lumc.nl/LSDB_list/lsdbs", "name": "Search and Browse Gene List by Location", "type": "data access"}, {"url": "https://databases.lovd.nl/shared/genes", "name": "Browse Genes", "type": "data access"}, {"url": "https://databases.lovd.nl/whole_genome/transcripts", "name": "Browse Transcripts", "type": "data access"}, {"url": "https://databases.lovd.nl/whole_genome/variants", "name": "Browse Variants", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011905", "name": "re3data:r3d100011905", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006566", "name": "SciCrunch:RRID:SCR_006566", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000931", "bsg-d000931"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Human Genetics", "Biomedical Science"], "domains": ["Deoxyribonucleic acid", "Genetic polymorphism", "Phenotype", "Disease", "Gene", "Sequence variant", "Genetic disorder"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Functional impact of genetic variants"], "countries": ["Netherlands"], "name": "FAIRsharing record for: Leiden Open Variation Database", "abbreviation": "LOVD", "url": "https://fairsharing.org/10.25504/FAIRsharing.21tjj7", "doi": "10.25504/FAIRsharing.21tjj7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Leiden Open Variation Database (LOVD) provides a flexible, freely available tool for gene-centered collection and display of DNA variations. LOVD also stores patient-centered data, NGS data, and variants outside of genes.", "publications": [{"id": 2134, "pubmed_id": 15977173, "title": "LOVD: easy creation of a locus-specific sequence variation database using an \"LSDB-in-a-box\" approach.", "year": 2005, "url": "http://doi.org/10.1002/humu.20201", "authors": "Fokkema IF, den Dunnen JT, Taschner PE", "journal": "Human Mutation", "doi": "10.1002/humu.20201", "created_at": "2021-09-30T08:26:20.624Z", "updated_at": "2021-09-30T08:26:20.624Z"}, {"id": 2177, "pubmed_id": 21520333, "title": "LOVD v.2.0: the next generation in gene variant databases.", "year": 2011, "url": "http://doi.org/10.1002/humu.21438", "authors": "Fokkema IF, Taschner PE, Schaafsma GC, Celli J, Laros JF, den Dunnen JT", "journal": "Human Mutation", "doi": "10.1002/humu.21438", "created_at": "2021-09-30T08:26:25.377Z", "updated_at": "2021-09-30T08:26:25.377Z"}], "licence-links": [{"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 162, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1893", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:10.575Z", "metadata": {"doi": "10.25504/FAIRsharing.91yrz6", "name": "Extracellular Matrix Interaction Database", "status": "ready", "contacts": [{"contact-name": "Sylvie Ricard-Blum", "contact-email": "sylvie.ricard-blum@univ-lyon1.fr"}], "homepage": "http://matrixdb.univ-lyon1.fr", "citations": [{"doi": "10.1093/nar/gky1035", "pubmed-id": 30371822, "publication-id": 1662}], "identifier": 1893, "description": "MatrixDB stores experimental data established by full-length proteins, matricryptins, glycosaminoglycans, lipids and cations. MatrixDB reports interactions with individual polypeptide chains or with multimers (e.g. collagens, laminins, thrombospondins) when appropriate. Multimers are treated as permanent complexes, referencing EBI identifiers when possible. Human interactions were inferred from non-human homologous interactions when available.", "abbreviation": "MatrixDB", "support-links": [{"url": "http://matrixdb.univ-lyon1.fr/data/Tutorial_MatrixDB_v3.pdf", "name": "Tutorial", "type": "Help documentation"}, {"url": "https://www.youtube.com/watch?list=PLw61Ua8TujDRLFSZMZChqmqX7yFBYLaz0&v=BCHp12lefK4", "name": "Help Video", "type": "Video"}], "year-creation": 2008, "data-processes": [{"url": "http://matrixdb.univ-lyon1.fr/queries.html", "name": "Advanced Search", "type": "data access"}, {"url": "http://matrixdb.univ-lyon1.fr/download/matrixdb_CORE.tab.gz", "name": "Download Core (PSI-MI Tab)", "type": "data release"}, {"url": "http://matrixdb.univ-lyon1.fr/download/matrixdb_FULL.tab.gz", "name": "Download IMEx Extended (PSI-MI Tab)", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010672", "name": "re3data:r3d100010672", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001727", "name": "SciCrunch:RRID:SCR_001727", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000358", "bsg-d000358"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Protein interaction", "Carbohydrate", "Lipid", "Molecular interaction", "Small molecule", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Extracellular matrix proteins"], "countries": ["France"], "name": "FAIRsharing record for: Extracellular Matrix Interaction Database", "abbreviation": "MatrixDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.91yrz6", "doi": "10.25504/FAIRsharing.91yrz6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MatrixDB stores experimental data established by full-length proteins, matricryptins, glycosaminoglycans, lipids and cations. MatrixDB reports interactions with individual polypeptide chains or with multimers (e.g. collagens, laminins, thrombospondins) when appropriate. Multimers are treated as permanent complexes, referencing EBI identifiers when possible. Human interactions were inferred from non-human homologous interactions when available.", "publications": [{"id": 385, "pubmed_id": 19147664, "title": "MatrixDB, a database focused on extracellular protein-protein and protein-carbohydrate interactions.", "year": 2009, "url": "http://doi.org/10.1093/bioinformatics/btp025", "authors": "Chautard E., Ballut L., Thierry-Mieg N., Ricard-Blum S.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btp025", "created_at": "2021-09-30T08:23:01.750Z", "updated_at": "2021-09-30T08:23:01.750Z"}, {"id": 1267, "pubmed_id": 25378329, "title": "MatrixDB, the extracellular matrix interaction database: updated content, a new navigator and expanded functionalities.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1091", "authors": "Launay G,Salza R,Multedo D,Thierry-Mieg N,Ricard-Blum S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1091", "created_at": "2021-09-30T08:24:41.381Z", "updated_at": "2021-09-30T11:29:04.635Z"}, {"id": 1661, "pubmed_id": 20852260, "title": "MatrixDB, the extracellular matrix interaction database.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq830", "authors": "Chautard E,Fatoux-Ardore M,Ballut L,Thierry-Mieg N,Ricard-Blum S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq830", "created_at": "2021-09-30T08:25:26.059Z", "updated_at": "2021-09-30T11:29:18.111Z"}, {"id": 1662, "pubmed_id": 30371822, "title": "MatrixDB: integration of new data with a focus on glycosaminoglycan interactions.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1035", "authors": "Clerc O,Deniaud M,Vallet SD,Naba A,Rivet A,Perez S,Thierry-Mieg N,Ricard-Blum S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1035", "created_at": "2021-09-30T08:25:26.158Z", "updated_at": "2021-09-30T11:29:18.211Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2374, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1609", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:50.451Z", "metadata": {"doi": "10.25504/FAIRsharing.2bdvmk", "name": "Molecular INTeraction Database", "status": "ready", "contacts": [{"contact-name": "Luana Licata", "contact-email": "luana.licata@gmail.com", "contact-orcid": "0000-0001-5084-9000"}], "homepage": "http://mint.bio.uniroma2.it", "citations": [{"doi": "10.1093/nar/gkr930", "pubmed-id": 22096227, "publication-id": 1747}], "identifier": 1609, "description": "MINT focuses on experimentally verified protein-protein interactions mined from the scientific literature by expert curators. This resource uses the IntAct database framework to help reduce the effort of scientists and improve on IT development. MINT is an ELIXIR Core Resource.", "abbreviation": "MINT", "access-points": [{"url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/mint/webservices/current/search/", "name": "MINT REST API", "type": "REST", "example-url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/mint/webservices/current/search/query/p53", "documentation-url": "https://mint.bio.uniroma2.it/index.php/developers/"}, {"url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/mint/webservices/psicquic", "name": "MINT SOAP API", "type": "SOAP", "documentation-url": "https://mint.bio.uniroma2.it/index.php/developers/"}], "data-curation": {}, "support-links": [{"url": "mint@mint.bio.uniroma2.it", "name": "MINT Helpdesk", "type": "Support email"}, {"url": "https://mint.bio.uniroma2.it/index.php/statistics/", "name": "Statistics", "type": "Help documentation"}, {"url": "https://mint.bio.uniroma2.it/index.php/sample-page/", "name": "About MINT", "type": "Help documentation"}, {"url": "https://twitter.com/MINT_database", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"name": "continuous release (live database)", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by date", "type": "data versioning"}, {"name": "access to historical files available", "type": "data versioning"}, {"url": "https://mint.bio.uniroma2.it/index.php/advanced-search/", "name": "advanced search", "type": "data access"}, {"url": "https://mint.bio.uniroma2.it/index.php/download/", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/view/main.xhtml", "name": "PSICQUIC"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010414", "name": "re3data:r3d100010414", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001523", "name": "SciCrunch:RRID:SCR_001523", "portal": "SciCrunch"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-000065", "bsg-d000065"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Proteomics", "Life Science"], "domains": ["Protein interaction", "Molecular interaction"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: Molecular INTeraction Database", "abbreviation": "MINT", "url": "https://fairsharing.org/10.25504/FAIRsharing.2bdvmk", "doi": "10.25504/FAIRsharing.2bdvmk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MINT focuses on experimentally verified protein-protein interactions mined from the scientific literature by expert curators. This resource uses the IntAct database framework to help reduce the effort of scientists and improve on IT development. MINT is an ELIXIR Core Resource.", "publications": [{"id": 262, "pubmed_id": 11911893, "title": "MINT: a Molecular INTeraction database.", "year": 2002, "url": "http://doi.org/10.1016/s0014-5793(01)03293-8", "authors": "Zanzoni A., Montecchi-Palazzi L., Quondam M., Ausiello G., Helmer-Citterich M., Cesareni G.,", "journal": "FEBS Lett.", "doi": "10.1016/s0014-5793(01)03293-8", "created_at": "2021-09-30T08:22:48.303Z", "updated_at": "2021-09-30T08:22:48.303Z"}, {"id": 264, "pubmed_id": 17135203, "title": "MINT: the Molecular INTeraction database.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl950", "authors": "Chatr-aryamontri A., Ceol A., Palazzi LM., Nardelli G., Schneider MV., Castagnoli L., Cesareni G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl950", "created_at": "2021-09-30T08:22:48.541Z", "updated_at": "2021-09-30T08:22:48.541Z"}, {"id": 918, "pubmed_id": 19897547, "title": "MINT, the molecular interaction database: 2009 update.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp983", "authors": "Ceol A., Chatr Aryamontri A., Licata L., Peluso D., Briganti L., Perfetto L., Castagnoli L., Cesareni G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp983", "created_at": "2021-09-30T08:24:01.371Z", "updated_at": "2021-09-30T08:24:01.371Z"}, {"id": 1747, "pubmed_id": 22096227, "title": "MINT, the molecular interaction database: 2012 update.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr930", "authors": "Licata L,Briganti L,Peluso D,Perfetto L,Iannuccelli M,Galeota E,Sacco F,Palma A,Nardozza AP,Santonico E,Castagnoli L,Cesareni G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr930", "created_at": "2021-09-30T08:25:36.060Z", "updated_at": "2021-09-30T11:29:19.669Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 2.5 Generic (CC BY 2.5)", "licence-id": 161, "link-id": 149, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2287", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-20T19:58:57.000Z", "updated-at": "2021-12-06T10:48:15.189Z", "metadata": {"doi": "10.25504/FAIRsharing.9qkaz9", "name": "Online Mendelian Inheritance in Man", "status": "ready", "homepage": "https://omim.org/", "identifier": 2287, "description": "Online Mendelian Inheritance in Man (OMIM) is a comprehensive, authoritative compendium of human genes and genetic phenotypes that is freely available and updated daily. The full-text, referenced overviews in OMIM contain information on all known mendelian disorders and over 15,000 genes. OMIM focuses on the relationship between phenotype and genotype.", "abbreviation": "OMIM", "access-points": [{"url": "https://omim.org/api", "name": "API Access (Registration Required)", "type": "REST"}], "support-links": [{"url": "https://omim.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://omim.org/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://omim.org/help/search", "name": "Search Help", "type": "Help documentation"}, {"url": "https://omim.org/help/linking", "name": "Linking Help", "type": "Help documentation"}, {"url": "https://omim.org/help/api", "name": "API Documentation", "type": "Help documentation"}], "year-creation": 1966, "data-processes": [{"url": "https://omim.org/search/advanced/entry", "name": "Advanced Search", "type": "data access"}, {"url": "https://omim.org/downloads", "name": "Download (Registration Required)", "type": "data release"}, {"url": "https://omim.org/mimmatch/", "name": "MIMmatch (Watch Records)", "type": "data access"}, {"url": "https://omim.org/search/advanced/clinicalSynopsis", "name": "Clinical Synopsis Search", "type": "data access"}, {"url": "https://omim.org/search/advanced/geneMap", "name": "Gene Map Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010416", "name": "re3data:r3d100010416", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006437", "name": "SciCrunch:RRID:SCR_006437", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000761", "bsg-d000761"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Human Genetics"], "domains": ["Phenotype", "Disease", "Gene", "Genetic disorder", "Genotype"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Online Mendelian Inheritance in Man", "abbreviation": "OMIM", "url": "https://fairsharing.org/10.25504/FAIRsharing.9qkaz9", "doi": "10.25504/FAIRsharing.9qkaz9", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Online Mendelian Inheritance in Man (OMIM) is a comprehensive, authoritative compendium of human genes and genetic phenotypes that is freely available and updated daily. The full-text, referenced overviews in OMIM contain information on all known mendelian disorders and over 15,000 genes. OMIM focuses on the relationship between phenotype and genotype.", "publications": [{"id": 1115, "pubmed_id": 15608251, "title": "Online Mendelian Inheritance in Man (OMIM), a knowledgebase of human genes and genetic disorders.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki033", "authors": "Hamosh A,Scott AF,Amberger JS,Bocchini CA,McKusick VA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki033", "created_at": "2021-09-30T08:24:23.557Z", "updated_at": "2021-09-30T11:28:59.162Z"}, {"id": 1129, "pubmed_id": 25428349, "title": "OMIM.org: Online Mendelian Inheritance in Man (OMIM(R)), an online catalog of human genes and genetic disorders.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1205", "authors": "Amberger JS,Bocchini CA,Schiettecatte F,Scott AF,Hamosh A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1205", "created_at": "2021-09-30T08:24:25.287Z", "updated_at": "2021-09-30T11:28:59.934Z"}, {"id": 2244, "pubmed_id": 30445645, "title": "OMIM.org: leveraging knowledge across phenotype-gene relationships.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1151", "authors": "Amberger JS,Bocchini CA,Scott AF,Hamosh A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1151", "created_at": "2021-09-30T08:26:32.988Z", "updated_at": "2021-09-30T11:29:31.478Z"}], "licence-links": [{"licence-name": "OMIM Copyright", "licence-id": 617, "link-id": 734, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2253", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T12:40:33.000Z", "updated-at": "2021-12-06T10:48:21.888Z", "metadata": {"doi": "10.25504/FAIRsharing.crjxwd", "name": "National Sleep Research Resource", "status": "ready", "contacts": [{"contact-name": "Dan Mobley", "contact-email": "support@sleepdata.org"}], "homepage": "https://sleepdata.org/", "identifier": 2253, "description": "The National Sleep Research Resource (NSRR) offers free web access to large collections of de-identified physiological signals and clinical data elements collected in well-characterized research cohorts and clinical trials. Using the tools provided, the researcher can search across thousands of data elements, identify those data of most relevance for given needs, explore the statistical distributions of each, and download the data as CSV files. Data include demographic, physiological, clinical, and other data types collected by each study. Physiologic signals from overnight polysomnograms (sleep studies) are available by downloading European Data Format (EDF) files. The researcher can load summary measures of standardly scored sleep data. Specific scored annotations can be accessed by downloading XML files and can be viewed offline using the EDF Viewer.", "abbreviation": "NSRR", "support-links": [{"url": "https://sleepdata.org/blog", "name": "NSRR Blog", "type": "Blog/News"}, {"url": "https://sleepdata.org/contact", "name": "Contact Information", "type": "Contact form"}, {"url": "https://sleepdata.org/forum", "name": "NSRR Forum", "type": "Forum"}, {"url": "https://sleepdata.org/demo", "name": "How-To Guides", "type": "Training documentation"}, {"url": "https://sleepdata.org/showcase", "name": "Resource Showcase", "type": "Training documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://sleepdata.org/join", "name": "Download (Registration and User Agreement Required)", "type": "data access"}, {"url": "https://sleepdata.org/datasets", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://github.com/nsrr/nsrr-gem", "name": "NSRR Gem (Ruby)"}, {"url": "https://sleepdata.org/blog/2019/03/download-from-the-nsrr-directly-through-r", "name": "NSRR R library"}, {"url": "https://github.com/nsrr/spout", "name": "Spout"}, {"url": "http://zzz.bwh.harvard.edu/luna/", "name": "Luna"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011861", "name": "re3data:r3d100011861", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000727", "bsg-d000727"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Physiology", "Biomedical Science", "Preclinical Studies"], "domains": ["Polysomnography", "Sleep"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: National Sleep Research Resource", "abbreviation": "NSRR", "url": "https://fairsharing.org/10.25504/FAIRsharing.crjxwd", "doi": "10.25504/FAIRsharing.crjxwd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The National Sleep Research Resource (NSRR) offers free web access to large collections of de-identified physiological signals and clinical data elements collected in well-characterized research cohorts and clinical trials. Using the tools provided, the researcher can search across thousands of data elements, identify those data of most relevance for given needs, explore the statistical distributions of each, and download the data as CSV files. Data include demographic, physiological, clinical, and other data types collected by each study. Physiologic signals from overnight polysomnograms (sleep studies) are available by downloading European Data Format (EDF) files. The researcher can load summary measures of standardly scored sleep data. Specific scored annotations can be accessed by downloading XML files and can be viewed offline using the EDF Viewer.", "publications": [{"id": 1099, "pubmed_id": 27070134, "title": "Scaling Up Scientific Discovery in Sleep Medicine: The National Sleep Research Resource.", "year": 2016, "url": "http://doi.org/10.5665/sleep.5774", "authors": "Dean DA,Goldberger AL,Mueller R,Kim M,Rueschman M,Mobley D,Sahoo SS,Jayapandian CP,Cui L,Morrical MG,Surovec S,Zhang GQ,Redline S", "journal": "Sleep", "doi": "10.5665/sleep.5774", "created_at": "2021-09-30T08:24:21.674Z", "updated_at": "2021-09-30T08:24:21.674Z"}, {"id": 2970, "pubmed_id": 29860441, "title": "The National Sleep Research Resource: towards a sleep data commons.", "year": 2018, "url": "http://doi.org/10.1093/jamia/ocy064", "authors": "Zhang GQ,Cui L,Mueller R,Tao S,Kim M,Rueschman M,Mariani S,Mobley D,Redline S", "journal": "J Am Med Inform Assoc", "doi": "10.1093/jamia/ocy064", "created_at": "2021-09-30T08:28:05.982Z", "updated_at": "2021-09-30T08:28:05.982Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1837", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:35.075Z", "metadata": {"doi": "10.25504/FAIRsharing.zjdfxz", "name": "Gramene: A curated, open-source, integrated data resource for comparative functional genomics in plants", "status": "ready", "contacts": [{"contact-name": "The Gramene Project", "contact-email": "gramene@gramene.org"}], "homepage": "http://www.gramene.org", "citations": [{"doi": "10.1093/nar/gkx1111", "pubmed-id": 29165610, "publication-id": 444}], "identifier": 1837, "description": "Gramene's purpose is to provide added value to plant genomics data sets available within the public sector, which will facilitate researchers' ability to understand the plant genomes and take advantage of genomic sequence known in one species for identifying and understanding corresponding genes, pathways and phenotypes in other plant species. It represents a broad spectrum of species ranging from unicellular photo-autotrophs, algae, monocots, dicots and other important taxonomic clades. Within Plant Reactome, a database portal of Gramene, there are over 60 plant genomes as well as pathways for more than 80 species.", "abbreviation": "Gramene", "access-points": [{"url": "http://www.gramene.org/web-services", "name": "Gramene Web Services", "type": "Other"}, {"url": "http://rest.ensemblgenomes.org/", "name": "Ensembl Genomes REST API Endpoints", "type": "REST"}, {"url": "https://plantreactome.gramene.org/ContentService/", "name": "Plant Reactome: Content and RESTFul Service", "type": "REST"}], "support-links": [{"url": "http://www.gramene.org/db/help", "name": "Help", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCMtmq20XMccsNUaACuqQJ-w", "name": "Gramene YouTube Channel", "type": "Video"}, {"url": "https://twitter.com/GrameneDatabase", "name": "@GrameneDatabase", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"url": "http://www.gramene.org/download/index.html", "name": "Download", "type": "data access"}, {"url": "http://search.gramene.org/", "name": "search", "type": "data access"}, {"url": "http://www.gramene.org/ftp-download", "name": "ftp download", "type": "data access"}], "associated-tools": [{"url": "http://ensembl.gramene.org/common/Tools/Blast?db=core", "name": "BLAST"}, {"url": "http://ensembl.gramene.org/Oryza_sativa/Tools/VEP?db=core", "name": "Variant Effect Predictor"}, {"url": "http://ensembl.gramene.org/hmmer/index.html", "name": "HMMER"}, {"url": "http://ensembl.gramene.org/biomart/martview/15e087eebdfcf6b8aea253bf840b6cca", "name": "Biomart"}, {"url": "http://ensembl.gramene.org/Oryza_sativa/Tools/AssemblyConverter?db=core", "name": "Assembly converter"}, {"url": "http://ensembl.gramene.org/Oryza_sativa/Tools/IDMapper?db=core", "name": "ID History Converter"}, {"url": "https://plantreactome.gramene.org", "name": "Plant Reactome: A knowledgebase and resource for comparative plant pathway analysis"}, {"url": "https://plantreactome.gramene.org/PathwayBrowser/#TOOL=AT", "name": "Plant Reactome: Pathway analysis | OMICs data analysis | pathway comparison between species |pathway enrichment"}, {"url": "https://plantreactome.gramene.org/PathwayBrowser/", "name": "Plant Reactome: Pathway browser"}, {"url": "https://plantreactome.gramene.org/ContentService/", "name": "Plant Reactome: Content and RESTFul Service"}, {"url": "http://www.gramene.org/ftp-download", "name": "Gramene: Bulk download"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010856", "name": "re3data:r3d100010856", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002829", "name": "SciCrunch:RRID:SCR_002829", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000297", "bsg-d000297"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Epigenomics", "Genomics", "Structural Genomics", "Phylogenomics", "Life Science", "Comparative Genomics", "Ontology and Terminology", "Plant Genetics"], "domains": ["Gene report", "Genetic map", "Nucleic acid sequence alignment", "Gene name", "Expression data", "Nucleic acid sequence", "DNA sequence data", "RNA sequence", "Gene Ontology enrichment", "Sequence annotation", "Multiple sequence alignment", "Genomic assembly", "Computational biological predictions", "Gene prediction", "Differential gene expression analysis", "Gene functional annotation", "Gene model annotation", "Gene expression", "Protein sequence identification", "Genetic interaction", "Gene feature", "Sequence alignment", "Genetic marker", "Pathway model", "Sequence", "Sequence feature", "Coding sequence", "Gene", "Mitochondrial sequence", "Plastid sequence", "Chloroplast sequence", "Amino acid sequence", "Genome", "Sequence variant"], "taxonomies": ["Algae", "Amborella", "Arabidopsis thaliana", "Brachypodium dystachyon", "Bryophyta", "Coffea", "Cyanobacteria", "Dicotyledones", "Embryophyta", "Hordeum", "Lycopodiopsida", "Medicago truncatula", "Monocotyledons", "Oryza", "Populus trichocarpa", "Solanum lycopersicum", "Solanum tuberosum", "Triticum", "Viridiplantae", "Zea mays"], "user-defined-tags": ["Genome-scale network", "Metabolic pathway prediction profile", "Pathway Diagram"], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: Gramene: A curated, open-source, integrated data resource for comparative functional genomics in plants", "abbreviation": "Gramene", "url": "https://fairsharing.org/10.25504/FAIRsharing.zjdfxz", "doi": "10.25504/FAIRsharing.zjdfxz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Gramene's purpose is to provide added value to plant genomics data sets available within the public sector, which will facilitate researchers' ability to understand the plant genomes and take advantage of genomic sequence known in one species for identifying and understanding corresponding genes, pathways and phenotypes in other plant species. It represents a broad spectrum of species ranging from unicellular photo-autotrophs, algae, monocots, dicots and other important taxonomic clades. Within Plant Reactome, a database portal of Gramene, there are over 60 plant genomes as well as pathways for more than 80 species.", "publications": [{"id": 176, "pubmed_id": 30649295, "title": "Involving community in genes and pathway curation.", "year": 2019, "url": "http://doi.org/10.1093/database/bay146", "authors": "Naithani S,Gupta P,Preece J,Garg P,Fraser V,Padgitt-Cobb LK,Martin M,Vining K,Jaiswal P", "journal": "Database (Oxford)", "doi": "10.1093/database/bay146", "created_at": "2021-09-30T08:22:39.297Z", "updated_at": "2021-09-30T08:22:39.297Z"}, {"id": 293, "pubmed_id": 27799469, "title": "Plant Reactome: a resource for plant pathways and comparative analysis.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw932", "authors": "Naithani S, Preece J, D'Eustachio P, Gupta P, Amarasinghe V, Dharmawardhana PD, Wu G, Fabregat A, Elser JL, Weiser J, Keays M, Fuentes AM, Petryszak R, Stein LD, Ware D, Jaiswal P.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkw932", "created_at": "2021-09-30T08:22:51.532Z", "updated_at": "2021-09-30T08:22:51.532Z"}, {"id": 295, "pubmed_id": 27987178, "title": "Variant Effect Prediction Analysis Using Resources Available at Gramene Database.", "year": 2016, "url": "http://doi.org/10.1007/978-1-4939-6658-5_17", "authors": "Naithani S, Geniza M, Jaiswal P", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-6658-5_17", "created_at": "2021-09-30T08:22:51.749Z", "updated_at": "2021-09-30T08:22:51.749Z"}, {"id": 363, "pubmed_id": 31680153, "title": "Plant Reactome: a knowledgebase and resource for comparative pathway analysis.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz996", "authors": "Naithani S,Gupta P,Preece J,D'Eustachio P,Elser JL,Garg P,Dikeman DA,Kiff J,Cook J,Olson A,Wei S,Tello-Ruiz MK,Mundo AF,Munoz-Pomer A,Mohammed S,Cheng T,Bolton E,Papatheodorou I,Stein L,Ware D,Jaiswal P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz996", "created_at": "2021-09-30T08:22:58.989Z", "updated_at": "2021-09-30T11:28:45.891Z"}, {"id": 382, "pubmed_id": 29165655, "title": "Expression Atlas: gene and protein expression across multiple studies and organisms.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1158", "authors": "Papatheodorou I,Fonseca NA,Keays M,Tang YA,Barrera E,Bazant W,Burke M,Fullgrabe A,Fuentes AM,George N,Huerta L,Koskinen S,Mohammed S,Geniza M,Preece J,Jaiswal P,Jarnuczak AF,Huber W,Stegle O,Vizcaino JA,Brazma A,Petryszak R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1158", "created_at": "2021-09-30T08:23:01.406Z", "updated_at": "2021-09-30T11:28:46.133Z"}, {"id": 444, "pubmed_id": 29165610, "title": "Gramene 2018: unifying comparative genomics and pathway resources for plant research.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1111", "authors": "Tello-Ruiz MK,Naithani S,Stein JC,Gupta P,Campbell M,Wei S,Preece J,Geniza MJ,Jiao Y,Lee YK,Wang B,Mulvaney J,Chougule K,Elser J,Al-Bader N,Kumari S,Bolser DM,Naamati G,Huerta L,Keays M,D'Eustachio P,Stein LD,Papatheodorou I,Taylor C,Jaiswal P,Ware D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1111", "created_at": "2021-09-30T08:23:08.181Z", "updated_at": "2021-09-30T11:28:46.609Z"}, {"id": 447, "pubmed_id": 30239679, "title": "AgBioData consortium recommendations for sustainable genomics and genetics databases for agriculture.", "year": 2018, "url": "http://doi.org/10.1093/database/bay088", "authors": "AgBioData consortium", "journal": "Database (Oxford)", "doi": "10.1093/database/bay088", "created_at": "2021-09-30T08:23:08.533Z", "updated_at": "2021-09-30T08:23:08.533Z"}, {"id": 478, "pubmed_id": 27987175, "title": "Pathway Analysis and Omics Data Visualization Using Pathway Genome Databases: FragariaCyc, a Case Study.", "year": 2016, "url": "http://doi.org/10.1007/978-1-4939-6658-5_14", "authors": "Naithani S,Jaiswal P", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-4939-6658-5_14", "created_at": "2021-09-30T08:23:11.943Z", "updated_at": "2021-09-30T08:23:11.943Z"}, {"id": 1050, "pubmed_id": 26553803, "title": "Gramene 2016: comparative plant genomics and pathway resources.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1179", "authors": "Tello-Ruiz MK,Stein J,Wei S et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1179", "created_at": "2021-09-30T08:24:16.262Z", "updated_at": "2021-09-30T11:28:57.475Z"}, {"id": 1081, "pubmed_id": 31598706, "title": "Ensembl Genomes 2020-enabling non-vertebrate genomic research.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz890", "authors": "Howe KL et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz890", "created_at": "2021-09-30T08:24:19.787Z", "updated_at": "2021-09-30T11:28:56.442Z"}, {"id": 2581, "pubmed_id": 21076153, "title": "Gramene database in 2010: updates and extensions.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1148", "authors": "Youens-Clark K., Buckler E., Casstevens T., Chen C., Declerck G., Derwent P., Dharmawardhana P., Jaiswal P., Kersey P., Karthikeyan AS., Lu J., McCouch SR., Ren L., Spooner W., Stein JC., Thomason J., Wei S., Ware D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1148", "created_at": "2021-09-30T08:27:16.494Z", "updated_at": "2021-09-30T08:27:16.494Z"}, {"id": 2612, "pubmed_id": 17984077, "title": "Gramene: a growing plant comparative genomics resource.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm968", "authors": "Liang C., Jaiswal P., Hebbard C., Avraham S., Buckler ES., Casstevens T., Hurwitz B., McCouch S., Ni J., Pujar A., Ravenscroft D., Ren L., Spooner W., Tecle I., Thomason J., Tung CW., Wei X., Yap I., Youens-Clark K., Ware D., Stein L.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm968", "created_at": "2021-09-30T08:27:20.638Z", "updated_at": "2021-09-30T08:27:20.638Z"}, {"id": 2774, "pubmed_id": 28713666, "title": "Gramene Database: Navigating Plant Comparative Genomics Resources.", "year": 2017, "url": "http://doi.org/10.1016/j.cpb.2016.12.005", "authors": "Gupta P,Naithani S,Tello-Ruiz MK,Chougule K,D'Eustachio P,Fabregat A,Jiao Y,Keays M,Lee YK,Kumari S,Mulvaney J,Olson A,Preece J,Stein J,Wei S,Weiser J,Huerta L,Petryszak R,Kersey P,Stein LD,Ware D,Jaiswal P", "journal": "Curr Plant Biol", "doi": "10.1016/j.cpb.2016.12.005", "created_at": "2021-09-30T08:27:40.996Z", "updated_at": "2021-09-30T08:27:40.996Z"}, {"id": 2775, "pubmed_id": 33170273, "title": "Gramene 2021: harnessing the power of comparative genomics and pathways for plant research.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa979", "authors": "Tello-Ruiz MK,Naithani S,Gupta P,Olson A,Wei S,Preece J,Jiao Y,Wang B,Chougule K,Garg P,Elser J,Kumari S,Kumar V, George N,Cook J,Bolser D,D'Eustachio P,Stein LD,Gupta A,Xu W, Papatheodorou I,Kersey PJ,Flicek P,Taylor C,Jaiswal P,Ware D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa979", "created_at": "2021-09-30T08:27:41.161Z", "updated_at": "2021-09-30T11:29:43.862Z"}], "licence-links": [{"licence-name": "Gramene Copyright Statement", "licence-id": 364, "link-id": 1309, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1563", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:15:40.466Z", "metadata": {"doi": "10.25504/FAIRsharing.y00hz4", "name": "ConoServer", "status": "ready", "contacts": [{"contact-name": "David Craik", "contact-email": "d.craik@imb.uq.edu.au", "contact-orcid": "0000-0003-0007-6796"}], "homepage": "http://www.conoserver.org", "citations": [{"doi": "10.1093/bioinformatics/btm596", "pubmed-id": 18065428, "publication-id": 2372}], "identifier": 1563, "description": "ConoServer is a database specializing in sequences and structures of peptides expressed by marine cone snails. The database gives access to protein sequences, nucleic acid sequences and structural information on conopeptides. ConoServer's data are first collected from the peer reviewed literature and from publicly available databases, including UniProtKB/Swiss-Prot, NCBI nucleotide (nt), and the World Wide Protein Data Bank. The data are then curated manually, which include the addition of references, the analysis of sequence regions, the identification of cysteine frameworks and gene superfamilies, and the identification of mature peptides in the precusor sequences.", "abbreviation": "ConoServer", "support-links": [{"url": "http://www.conoserver.org/?page=classification", "name": "Classification Schemes", "type": "Help documentation"}, {"url": "http://www.conoserver.org/?page=help", "name": "Help Pages", "type": "Help documentation"}, {"url": "http://www.conoserver.org/?page=stats", "name": "ConoServer Statistics", "type": "Help documentation"}, {"url": "http://www.conoserver.org/?page=about_conoserver", "name": "About ConoServer", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/ConoServer", "name": "ConoServer (Wikipedia)", "type": "Wikipedia"}], "year-creation": 2007, "data-processes": [{"url": "http://www.conoserver.org/?page=download", "name": "download", "type": "data access"}, {"url": "http://www.conoserver.org/?page=search&table=protein", "name": "Protein Search", "type": "data access"}], "associated-tools": [{"url": "http://www.conoserver.org/?page=conoprec", "name": "ConoPrec: analyse conopeptide prosequences"}, {"url": "http://www.conoserver.org/?page=ptmdiffmass", "name": "ConoMass (step 1): differential PTM mass computation"}, {"url": "http://www.conoserver.org/?page=identifymasslist", "name": "ConoMass (step 2): identify peptides in mass list"}, {"url": "http://www.conoserver.org/?page=comparemasses", "name": "Compare mass lists"}, {"url": "http://www.conoserver.org/?page=uniquemasses", "name": "Remove replicate masses in mass list"}]}, "legacy-ids": ["biodbcore-000017", "bsg-d000017"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Neurophysiology", "Statistics", "Life Science", "Synthetic Biology"], "domains": ["Protein structure", "Nucleic acid sequence", "Peptide", "Patent", "Classification", "Protein", "Amino acid sequence", "Sequence variant"], "taxonomies": ["Conus"], "user-defined-tags": ["Conopeptide activity", "Conopeptide mass", "Conotoxin", "Cysteine framework classification", "Gene superfamily classification", "Pharmacological family classification", "Protein precursor organization", "Statistics on classification schemes"], "countries": ["Australia"], "name": "FAIRsharing record for: ConoServer", "abbreviation": "ConoServer", "url": "https://fairsharing.org/10.25504/FAIRsharing.y00hz4", "doi": "10.25504/FAIRsharing.y00hz4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ConoServer is a database specializing in sequences and structures of peptides expressed by marine cone snails. The database gives access to protein sequences, nucleic acid sequences and structural information on conopeptides. ConoServer's data are first collected from the peer reviewed literature and from publicly available databases, including UniProtKB/Swiss-Prot, NCBI nucleotide (nt), and the World Wide Protein Data Bank. The data are then curated manually, which include the addition of references, the analysis of sequence regions, the identification of cysteine frameworks and gene superfamilies, and the identification of mature peptides in the precusor sequences.", "publications": [{"id": 549, "pubmed_id": 20211197, "title": "Conopeptide characterization and classifications: an analysis using ConoServer.", "year": 2010, "url": "http://doi.org/10.1016/j.toxicon.2010.03.002", "authors": "Kaas Q., Westermann JC., Craik DJ.,", "journal": "Toxicon", "doi": "10.1016/j.toxicon.2010.03.002", "created_at": "2021-09-30T08:23:19.893Z", "updated_at": "2021-09-30T08:23:19.893Z"}, {"id": 560, "pubmed_id": 14715910, "title": "Conus venoms: a rich source of novel ion channel-targeted peptides.", "year": 2004, "url": "http://doi.org/10.1152/physrev.00020.2003", "authors": "Terlau H., Olivera BM.,", "journal": "Physiol. Rev.", "doi": "10.1152/physrev.00020.2003", "created_at": "2021-09-30T08:23:21.193Z", "updated_at": "2021-09-30T08:23:21.193Z"}, {"id": 561, "pubmed_id": 17649970, "title": "Chemical modification of conotoxins to improve stability and activity.", "year": 2007, "url": "http://doi.org/10.1021/cb700091j", "authors": "Craik DJ., Adams DJ.,", "journal": "ACS Chem. Biol.", "doi": "10.1021/cb700091j", "created_at": "2021-09-30T08:23:21.301Z", "updated_at": "2021-09-30T08:23:21.301Z"}, {"id": 2372, "pubmed_id": 18065428, "title": "ConoServer, a database for conopeptide sequences and structures.", "year": 2007, "url": "http://doi.org/10.1093/bioinformatics/btm596", "authors": "Kaas Q., Westermann JC., Halai R., Wang CK., Craik DJ.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btm596", "created_at": "2021-09-30T08:26:51.585Z", "updated_at": "2021-09-30T08:26:51.585Z"}], "licence-links": [{"licence-name": "ConoServer Permission required for commercial use", "licence-id": 145, "link-id": 1807, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2059", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:21.630Z", "metadata": {"doi": "10.25504/FAIRsharing.63m4ss", "name": "HAMAP database of microbial protein families", "status": "ready", "contacts": [{"contact-name": "Alan Bridge", "contact-email": "alan.bridge@isb-sib.ch", "contact-orcid": "0000-0003-2148-9135"}], "homepage": "https://hamap.expasy.org/", "identifier": 2059, "description": "HAMAP is a system, based on manual protein annotation, that identifies and semi-automatically annotates proteins that are part of well-conserved families or subfamilies: the HAMAP families. HAMAP is based on manually created family rules and is applied to bacterial, archaeal and plastid-encoded proteins.", "abbreviation": "HAMAP", "support-links": [{"url": "https://hamap.expasy.org/contact", "type": "Contact form"}, {"url": "http://hamap.expasy.org/unirule/unirule.html", "type": "Help documentation"}, {"url": "http://hamap.expasy.org/hamap_doc.html", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"name": "Automated annotation ; manual curation", "type": "data curation"}, {"url": "ftp://ftp.expasy.org/databases/hamap/", "name": "Download", "type": "data access"}, {"url": "https://hamap.expasy.org/cgi-bin/unirule/unirule_browse.cgi?browse=description&context=HAMAP", "name": "Browse annotation rules", "type": "data access"}, {"url": "http://hamap.expasy.org/proteomes.html", "name": "Browse proteomes", "type": "data access"}], "associated-tools": [{"url": "http://hamap.expasy.org/hamap_scan.html", "name": "analyze"}]}, "legacy-ids": ["biodbcore-000526", "bsg-d000526"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Sequence annotation", "Protein", "Amino acid sequence"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: HAMAP database of microbial protein families", "abbreviation": "HAMAP", "url": "https://fairsharing.org/10.25504/FAIRsharing.63m4ss", "doi": "10.25504/FAIRsharing.63m4ss", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HAMAP is a system, based on manual protein annotation, that identifies and semi-automatically annotates proteins that are part of well-conserved families or subfamilies: the HAMAP families. HAMAP is based on manually created family rules and is applied to bacterial, archaeal and plastid-encoded proteins.", "publications": [{"id": 1511, "pubmed_id": 23193261, "title": "HAMAP in 2013, new developments in the protein family classification and annotation system.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1157", "authors": "Pedruzzi I., Rivoire C., Auchincloss AH., Coudert E., Keller G., de Castro E., Baratin D., Cuche BA., Bougueleret L., Poux S., Redaschi N., Xenarios I., Bridge A.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1157", "created_at": "2021-09-30T08:25:09.153Z", "updated_at": "2021-09-30T08:25:09.153Z"}, {"id": 1976, "pubmed_id": 25348399, "title": "HAMAP in 2015: updates to the protein family classification and annotation system.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1002", "authors": "Pedruzzi I,Rivoire C,Auchincloss AH,Coudert E,Keller G,de Castro E,Baratin D,Cuche BA,Bougueleret L,Poux S,Redaschi N,Xenarios I,Bridge A", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1002", "created_at": "2021-09-30T08:26:02.346Z", "updated_at": "2021-09-30T11:29:25.111Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 854, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 855, "relation": "undefined"}, {"licence-name": "ExPASy Terms of Use", "licence-id": 305, "link-id": 859, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2120", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-09T15:03:40.196Z", "metadata": {"doi": "10.25504/FAIRsharing.6v96ma", "name": "Genome Database for Rosaceae", "status": "ready", "contacts": [{"contact-name": "Dorrie Main", "contact-email": "dorrie@wsu.edu"}], "homepage": "http://www.rosaceae.org/", "citations": [], "identifier": 2120, "description": "The Genome Database for Rosaceae (GDR) is a curated and integrated web-based relational database providing centralized access to Rosaceae genomics and genetics data and analysis tools to facilitate basic, translational and applied research in Rosaceae.", "abbreviation": "GDR", "data-curation": {}, "support-links": [{"url": "http://www.rosaceae.org/contact", "type": "Contact form"}, {"url": "https://www.rosaceae.org/gdr_faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.rosaceae.org/community/mailing_lists", "type": "Mailing list"}, {"url": "https://www.rosaceae.org/nomenclature/gene", "type": "Help documentation"}, {"url": "https://www.rosaceae.org/nomenclature/genome", "type": "Help documentation"}, {"url": "http://www.rosaceae.org/tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/GDR_news", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "http://www.rosaceae.org/node/58", "name": "Download", "type": "data access"}, {"url": "http://www.rosaceae.org/node/11", "name": "search", "type": "data access"}, {"url": "https://www.rosaceae.org/data/submission", "name": "submit", "type": "data curation"}, {"url": "https://www.rosaceae.org/tools/jbrowse", "name": "JBrowse", "type": "data access"}], "associated-tools": [{"url": "http://www.rosaceae.org/bio/content?title=&url=%2Fcgi-bin%2Fgdr%2Fgdr_blast", "name": "BLAST"}, {"url": "https://www.rosaceae.org/tools/batch_blast", "name": "Batch BLAST"}, {"url": "https://www.rosaceae.org/legacy/", "name": "Breeders Toolbox"}, {"url": "http://pathways.rosaceae.org/", "name": "GDR Cyc Pathways"}, {"url": "https://www.rosaceae.org/tools/primer3", "name": "Primer3 4.0.0"}, {"url": "https://www.rosaceae.org/retrieve/sequences", "name": "Sequence Retrieval"}, {"url": "https://www.rosaceae.org/synteny_viewer", "name": "Synteny Viewer"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000590", "bsg-d000590"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Plant Breeding", "Genomics", "Comparative Genomics", "Plant Genetics"], "domains": ["DNA sequence data", "Annotation", "Publication", "Phenotype", "Messenger RNA", "Transcript", "Gene", "Genome", "Genotype"], "taxonomies": ["Fragaria vesca", "Malus domestica", "Malus x domestica", "Prunus mume", "Prunus persica", "Prunus serotina", "Pyrus communis", "Rosaceae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Genome Database for Rosaceae", "abbreviation": "GDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.6v96ma", "doi": "10.25504/FAIRsharing.6v96ma", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genome Database for Rosaceae (GDR) is a curated and integrated web-based relational database providing centralized access to Rosaceae genomics and genetics data and analysis tools to facilitate basic, translational and applied research in Rosaceae.", "publications": [{"id": 1337, "pubmed_id": 17932055, "title": "GDR (Genome Database for Rosaceae): integrated web-database for Rosaceae genomics and genetics data.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm803", "authors": "Jung S., Staton M., Lee T., Blenda A., Svancara R., Abbott A., Main D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm803", "created_at": "2021-09-30T08:24:49.627Z", "updated_at": "2021-09-30T08:24:49.627Z"}, {"id": 1351, "pubmed_id": 15357877, "title": "GDR (Genome Database for Rosaceae): integrated web resources for Rosaceae genomics and genetics research.", "year": 2004, "url": "http://doi.org/10.1186/1471-2105-5-130", "authors": "Jung S., Jesudurai C., Staton M., Du Z., Ficklin S., Cho I., Abbott A., Tomkins J., Main D.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-5-130", "created_at": "2021-09-30T08:24:51.176Z", "updated_at": "2021-09-30T08:24:51.176Z"}], "licence-links": [{"licence-name": "GDR Attribution required", "licence-id": 326, "link-id": 2367, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2729", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T20:27:49.000Z", "updated-at": "2021-11-24T13:17:55.024Z", "metadata": {"doi": "10.25504/FAIRsharing.sM5t5c", "name": "RepetDB", "status": "ready", "contacts": [{"contact-email": "urgi-contact@inra.fr"}], "homepage": "http://urgi.versailles.inra.fr/repetdb", "identifier": 2729, "description": "RepetDB provides repeat consensus detected and classified by TEdenovo and used by TEannot to annotate copies in genomes.", "abbreviation": "RepetDB", "access-points": [{"url": "http://urgi.versailles.inra.fr/repetdb/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://urgi.versailles.inra.fr/repetdb/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "data-processes": [{"url": "http://urgi.versailles.inra.fr/repetdb/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "http://urgi.versailles.inra.fr/repetdb/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://urgi.versailles.inra.fr/repetdb/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}]}, "legacy-ids": ["biodbcore-001227", "bsg-d001227"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science"], "domains": ["Genome annotation"], "taxonomies": ["Arabidopsis lyrata subsp. lyrata", "Arabidopsis thaliana", "Arabis alpina", "Blumeria graminis f. sp. hordei DH14", "Botrytis cinerea B05.10", "Botrytis cinerea T4", "Brassica rapa", "Capsella rubella", "Colletotrichum higginsianum IMI 349063", "Fragaria vesca", "Magnaporthe oryzae 70-15", "Malus domestica", "Melampsora larici-populina 98AG31", "Microbotryum lychnidis-dioicae p1A1 Lamole", "Prunus persica", "Puccinia graminis f. sp. tritici CRL 75-36-700-3", "Pyrus communis", "Schrenkiella parvula", "Sclerotinia sclerotiorum 1980 UF-70", "Triticum aestivum", "Tuber melanosporum", "Vitis vinifera", "Zea mays"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: RepetDB", "abbreviation": "RepetDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.sM5t5c", "doi": "10.25504/FAIRsharing.sM5t5c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RepetDB provides repeat consensus detected and classified by TEdenovo and used by TEannot to annotate copies in genomes.", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 430, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2516", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-21T19:24:07.000Z", "updated-at": "2021-11-24T13:13:38.962Z", "metadata": {"doi": "10.25504/FAIRsharing.7zfq1a", "name": "FlavorDB", "status": "ready", "contacts": [{"contact-name": "Ganesh Bagler", "contact-email": "bagler@iiitd.ac.in", "contact-orcid": "0000-0003-1924-6070"}], "homepage": "http://cosylab.iiitd.edu.in/flavordb", "identifier": 2516, "description": "Flavor is an expression of olfactory and gustatory sensations experienced through a multitude of chemical processes triggered by molecules. Beyond their key role in defining taste and smell, flavor molecules also regulate metabolic processes with consequences to health. Such molecules present in natural sources have been an integral part of human history with limited success in attempts to create synthetic alternatives. Given their utility in various spheres of life such as food and fragrances, it is valuable to have a repository of flavor molecules, their natural sources, physicochemical properties, and sensory responses. FlavorDB (http://cosylab.iiitd.edu.in/flavordb) comprises of 25,595 flavor molecules representing an array of tastes and odors. Among these 2254 molecules are associated with 936 natural ingredients belonging to 34 categories. The dynamic, user-friendly interface of the resource facilitates exploration of flavor molecules for divergent applications: finding molecules matching a desired flavor or structure; exploring molecules of an ingredient; discovering novel food pairings; finding the molecular essence of food ingredients; associating chemical features with a flavor and more. Data-driven studies based on FlavorDB can pave the way for an improved understanding of flavor mechanisms.", "abbreviation": "FlavorDB", "support-links": [{"url": "http://cosylab.iiitd.edu.in/flavordb/contact", "name": "Contact Us", "type": "Contact form"}, {"url": "http://cosylab.iiitd.edu.in/flavordb/faq", "name": "FlavorDB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://cosylab.iiitd.edu.in/flavordb/how_to_use", "name": "How to Use", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "http://cosylab.iiitd.edu.in/flavordb/receptors", "name": "Browse Receptors", "type": "data access"}, {"url": "http://cosylab.iiitd.edu.in/flavordb/search", "name": "Search", "type": "data access"}, {"url": "http://cosylab.iiitd.edu.in/flavordb/#visual_search", "name": "Visual Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000999", "bsg-d000999"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Biochemistry", "Bioinformatics", "Computational Biology", "Life Science"], "domains": ["Food", "Sense of smell", "Sense of taste", "Flavor", "Odor", "Gustatory system"], "taxonomies": ["All"], "user-defined-tags": ["Food pairing"], "countries": ["India"], "name": "FAIRsharing record for: FlavorDB", "abbreviation": "FlavorDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.7zfq1a", "doi": "10.25504/FAIRsharing.7zfq1a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Flavor is an expression of olfactory and gustatory sensations experienced through a multitude of chemical processes triggered by molecules. Beyond their key role in defining taste and smell, flavor molecules also regulate metabolic processes with consequences to health. Such molecules present in natural sources have been an integral part of human history with limited success in attempts to create synthetic alternatives. Given their utility in various spheres of life such as food and fragrances, it is valuable to have a repository of flavor molecules, their natural sources, physicochemical properties, and sensory responses. FlavorDB (http://cosylab.iiitd.edu.in/flavordb) comprises of 25,595 flavor molecules representing an array of tastes and odors. Among these 2254 molecules are associated with 936 natural ingredients belonging to 34 categories. The dynamic, user-friendly interface of the resource facilitates exploration of flavor molecules for divergent applications: finding molecules matching a desired flavor or structure; exploring molecules of an ingredient; discovering novel food pairings; finding the molecular essence of food ingredients; associating chemical features with a flavor and more. Data-driven studies based on FlavorDB can pave the way for an improved understanding of flavor mechanisms.", "publications": [{"id": 1065, "pubmed_id": null, "title": "FlavorDB: a database of flavor molecules", "year": 2017, "url": "http://doi.org/https://doi.org/10.1093/nar/gkx957", "authors": "Neelansh Garg, Apuroop Sethupathy, Rudraksh Tuwani, Rakhi NK, Shubham Dokania, Arvind Iyer, Ayushi Gupta, Shubhra, Agrawal, Navjot Singh, Shubham Shukla, Kriti Kathuria, Rahul Badhwar, Rakesh Kanji, Anupam Jain, Avneet Kaur, Rashmi Nagpal, Ganesh Bagler", "journal": "Nucleic Acids Research", "doi": "https://doi.org/10.1093/nar/gkx957", "created_at": "2021-09-30T08:24:17.973Z", "updated_at": "2021-09-30T08:24:17.973Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0)", "licence-id": 186, "link-id": 643, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2571", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-28T12:19:22.000Z", "updated-at": "2021-11-24T13:17:15.179Z", "metadata": {"name": "Cacao Genome Database", "status": "ready", "homepage": "https://www.cacaogenomedb.org/", "identifier": 2571, "description": "The Cacao Genome Database (CGD) is a database storing information on the genome of Theobroma cacao. The release of the cacao genome sequence provides researchers with access to the latest genomic tools, enabling more efficient research and accelerating the breeding process, thereby expediting the release of superior cacao cultivars. The sequenced genotype, Matina 1-6, is representative of the genetic background most commonly found in the cacao producing countries, enabling results to be applied immediately and broadly to current commercial cultivars. Matina 1-6 is highly homozygous which greatly reduces the complexity of the sequence assembly process. While the sequence provided is a preliminary release, it already covers 92% of the genome, with approximately 35,000 genes. Work continues on the refinement of the assembly and annotation, working toward a complete finished sequence. Public access to the genome is available permanently without patent via this resource. Before viewing the data, users have to agree that they will not seek any intellectual property protection over the data, including gene sequences contained in the database. The Information Access Agreement allows any cacao breeders and other researchers to freely use the genome information to develop new cacao varieties. This allows for a level playing field and a healthy competitive environment that will ultimately benefit the sustainability of cacao production in the long term.", "abbreviation": "CGD", "support-links": [{"url": "https://www.cacaogenomedb.org/contact", "name": "CGD Contact Form", "type": "Contact form"}, {"url": "https://www.cacaogenomedb.org/faq", "name": "CGD Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.cacaogenomedb.org/mailing_lists", "name": "CGD mailing list", "type": "Mailing list"}, {"url": "https://www.cacaogenomedb.org/sites/default/files/CGD_brochure_2012.pdf", "name": "CGD Brochure", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://www.cacaogenomedb.org/search", "name": "Search", "type": "data access"}, {"url": "https://www.cacaogenomedb.org/download", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://www.cacaogenomedb.org/tools/cmap", "name": "CMAP"}, {"url": "https://www.cacaogenomedb.org/tools/gbrowse_syn", "name": "GBrowse_syn"}, {"url": "https://www.cacaogenomedb.org/tools/gbrowse", "name": "GBrowse"}, {"url": "https://www.cacaogenomedb.org/tools/blast", "name": "BLAST"}, {"url": "https://www.cacaogenomedb.org/tools/webfpc", "name": "WebFPC"}]}, "legacy-ids": ["biodbcore-001054", "bsg-d001054"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Botany", "Plant Breeding", "Genomics", "Agriculture", "Life Science", "Plant Genetics"], "domains": [], "taxonomies": ["Theobroma cacao"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Cacao Genome Database", "abbreviation": "CGD", "url": "https://fairsharing.org/fairsharing_records/2571", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cacao Genome Database (CGD) is a database storing information on the genome of Theobroma cacao. The release of the cacao genome sequence provides researchers with access to the latest genomic tools, enabling more efficient research and accelerating the breeding process, thereby expediting the release of superior cacao cultivars. The sequenced genotype, Matina 1-6, is representative of the genetic background most commonly found in the cacao producing countries, enabling results to be applied immediately and broadly to current commercial cultivars. Matina 1-6 is highly homozygous which greatly reduces the complexity of the sequence assembly process. While the sequence provided is a preliminary release, it already covers 92% of the genome, with approximately 35,000 genes. Work continues on the refinement of the assembly and annotation, working toward a complete finished sequence. Public access to the genome is available permanently without patent via this resource. Before viewing the data, users have to agree that they will not seek any intellectual property protection over the data, including gene sequences contained in the database. The Information Access Agreement allows any cacao breeders and other researchers to freely use the genome information to develop new cacao varieties. This allows for a level playing field and a healthy competitive environment that will ultimately benefit the sustainability of cacao production in the long term.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2146", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:35.560Z", "metadata": {"doi": "10.25504/FAIRsharing.fssydn", "name": "DisGeNET", "status": "ready", "contacts": [{"contact-name": "Laura I. Furlong", "contact-email": "laura.furlong@upf.edu", "contact-orcid": "0000-0002-9383-528X"}], "homepage": "http://www.disgenet.org", "citations": [{"doi": null, "pubmed-id": null, "publication-id": 2593}], "identifier": 2146, "description": "DisGeNET is a discovery platform containing one of the largest collections available of genes and variants involved in human diseases. DisGeNET integrates data from expert curated repositories, GWAS catalogues, animal models, and the scientific literature, and covers the whole landscape of human diseases. The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associations (GDAs), between 21,671 genes and 30,170 diseases, disorders, traits, and clinical or abnormal human phenotypes, and 369,554 variant-disease associations (VDAs), between 194,515 variants and 14,155 diseases, traits, and phenotypes. The data are homogeneously annotated with controlled vocabularies and community-driven ontologies. Additionally, several original metrics are provided to assist the prioritization of genotype-phenotype relationships. The information is accessible through a web interface, a Cytoscape App, an RDF SPARQL endpoint, a REST API, and an R package.", "abbreviation": "DisGeNET", "access-points": [{"url": "http://rdf.disgenet.org/sparql/", "name": "SPARQL", "type": "Other"}], "support-links": [{"url": "support@disgenet.org", "name": "Support", "type": "Support email"}, {"url": "http://www.disgenet.org/help", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.disgenet.org/dbinfo", "type": "Help documentation"}, {"url": "https://twitter.com/DisGeNET", "type": "Twitter"}], "year-creation": 2009, "associated-tools": [{"url": "http://www.disgenet.org", "name": "browse"}, {"url": "http://rdf.disgenet.org/fct/", "name": "Faceted Browser"}, {"url": "https://apps.cytoscape.org/apps/disgenetapp", "name": "DisGeNET Cytoscape App 7.0"}, {"url": "https://bitbucket.org/ibi_group/disgenet2r", "name": "disgenet2r 0.99.0"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013301", "name": "re3data:r3d100013301", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006178", "name": "SciCrunch:RRID:SCR_006178", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000618", "bsg-d000618"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Human Genetics", "Life Science", "Biomedical Science"], "domains": ["Mutation", "Genetic polymorphism", "Disease", "Gene"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["COVID-19", "Interoperability"], "countries": ["Spain"], "name": "FAIRsharing record for: DisGeNET", "abbreviation": "DisGeNET", "url": "https://fairsharing.org/10.25504/FAIRsharing.fssydn", "doi": "10.25504/FAIRsharing.fssydn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DisGeNET is a discovery platform containing one of the largest collections available of genes and variants involved in human diseases. DisGeNET integrates data from expert curated repositories, GWAS catalogues, animal models, and the scientific literature, and covers the whole landscape of human diseases. The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associations (GDAs), between 21,671 genes and 30,170 diseases, disorders, traits, and clinical or abnormal human phenotypes, and 369,554 variant-disease associations (VDAs), between 194,515 variants and 14,155 diseases, traits, and phenotypes. The data are homogeneously annotated with controlled vocabularies and community-driven ontologies. Additionally, several original metrics are provided to assist the prioritization of genotype-phenotype relationships. The information is accessible through a web interface, a Cytoscape App, an RDF SPARQL endpoint, a REST API, and an R package.", "publications": [{"id": 791, "pubmed_id": 25877637, "title": "DisGeNET: a discovery platform for the dynamical exploration of human diseases and their genes", "year": 2015, "url": "http://doi.org/10.1093/database/bav028", "authors": "Pi\u00f1ero J, Queralt-Rosinach N, Bravo A, Deu-Pons J, Bauer-Mehren A, Baron M, Sanz F, Furlong LI", "journal": "Database", "doi": "10.1093/database/bav028", "created_at": "2021-09-30T08:23:47.179Z", "updated_at": "2021-09-30T08:23:47.179Z"}, {"id": 1424, "pubmed_id": 20861032, "title": "DisGeNET: a Cytoscape plugin to visualize, integrate, search and analyze gene\u2013disease networks", "year": 2010, "url": "http://doi.org/10.1093/bioinformatics/btq538", "authors": "Bauer-Mehren A, Rautschka M, Sanz F, Furlong LI.", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq538", "created_at": "2021-09-30T08:24:59.173Z", "updated_at": "2021-09-30T11:28:40.674Z"}, {"id": 1649, "pubmed_id": 21695124, "title": "Gene-disease network analysis reveals functional modules in mendelian, complex and environmental diseases", "year": 2011, "url": "http://doi.org/10.1371/journal.pone.0020284", "authors": "Bauer-Mehren A, Bundschus M, Rautschka M, Mayer MA, Sanz F, Furlong LI.", "journal": "PLoS One", "doi": "10.1371/journal.pone.0020284", "created_at": "2021-09-30T08:25:24.754Z", "updated_at": "2021-09-30T08:25:24.754Z"}, {"id": 2488, "pubmed_id": 27924018, "title": "DisGeNET: a comprehensive platform integrating information on human disease-associated genes and variants", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw943", "authors": "Pi\u00f1ero J, Bravo \u00c0, Queralt-Rosinach N, Guti\u00e9rrez-Sacrist\u00e1n A, Deu-Pons J, Centeno E, Garc\u00eda-Garc\u00eda J, Sanz F, Furlong LI.", "journal": "Nucleic Acid Research", "doi": "10.1093/nar/gkw943", "created_at": "2021-09-30T08:27:05.045Z", "updated_at": "2021-09-30T08:27:05.045Z"}, {"id": 2593, "pubmed_id": null, "title": "The DisGeNET cytoscape app: Exploring and visualizing disease genomics data", "year": 2021, "url": "https://doi.org/10.1016/j.csbj.2021.05.015", "authors": "Janet Pi\u00f1ero, Josep Sa\u00fcch, Ferran Sanz, Laura I.Furlong", "journal": "Computational and Structural Biotechnology Journal", "doi": null, "created_at": "2021-09-30T08:27:18.179Z", "updated_at": "2021-09-30T08:27:18.179Z"}, {"id": 3002, "pubmed_id": 31680165, "title": "The DisGeNET knowledge platform for disease genomics: 2019 update.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1021", "authors": "Pinero J,Ramirez-Anguita JM,Sauch-Pitarch J,Ronzano F,Centeno E,Sanz F,Furlong LI", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1021", "created_at": "2021-09-30T08:28:10.114Z", "updated_at": "2021-09-30T11:29:49.489Z"}], "licence-links": [{"licence-name": "Disgenet Open Database License", "licence-id": 245, "link-id": 1701, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 1702, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3137", "type": "fairsharing-records", "attributes": {"created-at": "2020-09-18T11:41:35.000Z", "updated-at": "2021-11-24T13:13:07.523Z", "metadata": {"doi": "10.25504/FAIRsharing.vx5OEv", "name": "ViruSurf", "status": "ready", "contacts": [{"contact-name": "Arif Canakoglu", "contact-email": "acanak@gmail.com", "contact-orcid": "0000-0003-4528-6586"}], "homepage": "http://gmql.eu/virusurf/", "citations": [{"doi": "https://doi.org/10.1093/nar/gkaa846", "pubmed-id": 33045721, "publication-id": 3066}], "identifier": 3137, "description": "ViruSurf is a large public database of viral sequences and integrated and curated metadata from heterogeneous sources (RefSeq, GenBank, COG-UK and NMDC); it also exposes computed nucleotide and amino acid variants, called from original sequences. A GISAID-specific ViruSurf database offers a subset of these functionalities. Given the current pandemic outbreak, SARS-CoV-2 data are collected from the four sources; but ViruSurf contains other virus species harmful to humans, including SARS-CoV, MERS-CoV, Ebola, and Dengue. The database is centered on sequences, described from their biological, technological, and organizational dimensions. In addition, the analytical dimension characterizes the sequence in terms of its annotations and variants. The web interface enables expressing complex search queries in a simple way; arbitrary search queries can freely combine conditions on attributes from the four dimensions, extracting the resulting sequences. Several example queries on the database confirm and possibly improve results from recent research papers; results can be recomputed over time and upon selected populations. Effective search over large and curated sequence data may enable faster responses to future threats that could arise from new viruses.", "abbreviation": "ViruSurf", "support-links": [{"url": "https://www.youtube.com/watch?v=ljo4WWZ1rU0&list=PLfWxoOMC6swIkqfLc3G4H-hW_pdmI1jFF", "name": "Video Presentation", "type": "Video"}, {"url": "https://github.com/DEIB-GECO/vue-metadata/wiki", "name": "GitHub", "type": "Github"}], "year-creation": 2020, "data-processes": [{"url": "http://geco.deib.polimi.it/virusurf/repo_static/datacuration.html", "name": "Curation principles", "type": "data curation"}, {"url": "http://geco.deib.polimi.it/virusurf/", "name": "Search & browse", "type": "data access"}, {"url": "http://geco.deib.polimi.it/virusurf_gisaid/", "name": "Search & Browse Sequences of the virus responsible for COVID-19", "type": "data access"}]}, "legacy-ids": ["biodbcore-001648", "bsg-d001648"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Data Management", "Data Quality", "Virology", "Life Science", "Microbiology", "Data Visualization"], "domains": ["Mutation analysis", "Mutation", "Data model", "Viral sequence", "Sequence variant"], "taxonomies": ["Dengue virus", "ebolavirus", "HCoV-SARS", "MERS-CoV", "SARS-CoV-2"], "user-defined-tags": ["COVID-19"], "countries": ["Italy"], "name": "FAIRsharing record for: ViruSurf", "abbreviation": "ViruSurf", "url": "https://fairsharing.org/10.25504/FAIRsharing.vx5OEv", "doi": "10.25504/FAIRsharing.vx5OEv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ViruSurf is a large public database of viral sequences and integrated and curated metadata from heterogeneous sources (RefSeq, GenBank, COG-UK and NMDC); it also exposes computed nucleotide and amino acid variants, called from original sequences. A GISAID-specific ViruSurf database offers a subset of these functionalities. Given the current pandemic outbreak, SARS-CoV-2 data are collected from the four sources; but ViruSurf contains other virus species harmful to humans, including SARS-CoV, MERS-CoV, Ebola, and Dengue. The database is centered on sequences, described from their biological, technological, and organizational dimensions. In addition, the analytical dimension characterizes the sequence in terms of its annotations and variants. The web interface enables expressing complex search queries in a simple way; arbitrary search queries can freely combine conditions on attributes from the four dimensions, extracting the resulting sequences. Several example queries on the database confirm and possibly improve results from recent research papers; results can be recomputed over time and upon selected populations. Effective search over large and curated sequence data may enable faster responses to future threats that could arise from new viruses.", "publications": [{"id": 3066, "pubmed_id": 33045721, "title": "ViruSurf: an integrated database to investigate viral sequences.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa846", "authors": "Canakoglu A,Pinoli P,Bernasconi A,Alfonsi T,Melidis DP,Ceri S", "journal": "Nucleic Acids Research", "doi": "https://doi.org/10.1093/nar/gkaa846", "created_at": "2021-09-30T08:28:17.847Z", "updated_at": "2021-09-30T11:29:50.730Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1566", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:50.375Z", "metadata": {"doi": "10.25504/FAIRsharing.evfe2s", "name": "Database of Aligned Ribosomal Complexes", "status": "deprecated", "contacts": [{"contact-name": "Roland Beckmann", "contact-email": "Beckmann@lmb.uni-muenchen.de"}], "homepage": "http://darcsite.genzentrum.lmu.de/darc/", "identifier": 1566, "description": "The Database for Aligned Ribosomal Complexes (DARC) site provides a resource for directly comparing the structures of available ribosomal complexes.", "abbreviation": "DARC", "support-links": [{"url": "darcsite@genzentrum.lmu.de", "type": "Support email"}], "year-creation": 2011, "data-processes": [{"name": "file download", "type": "data access"}, {"name": "monthly release", "type": "data release"}, {"name": "versioning by date", "type": "data versioning"}, {"url": "http://darcsite.genzentrum.lmu.de/darc/", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000020", "bsg-d000020"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Protein structure", "Ribosomal RNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Database of Aligned Ribosomal Complexes", "abbreviation": "DARC", "url": "https://fairsharing.org/10.25504/FAIRsharing.evfe2s", "doi": "10.25504/FAIRsharing.evfe2s", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database for Aligned Ribosomal Complexes (DARC) site provides a resource for directly comparing the structures of available ribosomal complexes.", "publications": [{"id": 1452, "pubmed_id": 22009674, "title": "The DARC site: a database of aligned ribosomal complexes.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr824", "authors": "Jarasch A,Dziuk P,Becker T,Armache JP,Hauser A,Wilson DN,Beckmann R", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr824", "created_at": "2021-09-30T08:25:02.290Z", "updated_at": "2021-09-30T11:29:08.785Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1706", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:02.791Z", "metadata": {"doi": "10.25504/FAIRsharing.675y92", "name": "OrtholugeDB", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "ortholugedb-mail@sfu.ca"}], "homepage": "http://www.pathogenomics.sfu.ca/ortholugedb", "identifier": 1706, "description": "OrtholugeDB contains Ortholuge-based orthology predictions for completely sequenced bacterial and archaeal genomes. It is also a resource for reciprocal best BLAST-based ortholog predictions, in-paralog predictions (recently duplicated genes) and ortholog groups in Bacteria and Archaea. The Ortholuge method improves the specificity of high-throughput orthology prediction.", "abbreviation": "OrtholugeDB", "support-links": [{"url": "http://www.pathogenomics.sfu.ca/ortholugedb/?page=faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2012, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012728", "name": "re3data:r3d100012728", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000163", "bsg-d000163"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genetics", "Phylogenomics", "Life Science"], "domains": ["Orthologous"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: OrtholugeDB", "abbreviation": "OrtholugeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.675y92", "doi": "10.25504/FAIRsharing.675y92", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: OrtholugeDB contains Ortholuge-based orthology predictions for completely sequenced bacterial and archaeal genomes. It is also a resource for reciprocal best BLAST-based ortholog predictions, in-paralog predictions (recently duplicated genes) and ortholog groups in Bacteria and Archaea. The Ortholuge method improves the specificity of high-throughput orthology prediction.", "publications": [{"id": 1889, "pubmed_id": 16729895, "title": "Improving the specificity of high-throughput ortholog prediction.", "year": 2006, "url": "http://doi.org/10.1186/1471-2105-7-270", "authors": "Fulton DL., Li YY., Laird MR., Horsman BG., Roche FM., Brinkman FS.,", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-7-270", "created_at": "2021-09-30T08:25:52.548Z", "updated_at": "2021-09-30T08:25:52.548Z"}, {"id": 1890, "pubmed_id": 23203876, "title": "OrtholugeDB: a bacterial and archaeal orthology resource for improved comparative genomic analysis.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1241", "authors": "Whiteside MD,Winsor GL,Laird MR,Brinkman FS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1241", "created_at": "2021-09-30T08:25:52.653Z", "updated_at": "2021-09-30T11:29:21.961Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2060", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:31.420Z", "metadata": {"doi": "10.25504/FAIRsharing.vwc6bd", "name": "PROSITE", "status": "ready", "contacts": [{"contact-name": "PROSITE Group Contact", "contact-email": "prosite-group@isb-sib.ch"}], "homepage": "https://prosite.expasy.org/", "citations": [{"doi": "10.1093/nar/gks1067", "pubmed-id": 23161676, "publication-id": 1455}], "identifier": 2060, "description": "PROSITE is a database of protein families and domains. PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", "abbreviation": "PROSITE", "support-links": [{"url": "https://prosite.expasy.org/contact", "name": "Contact Form", "type": "Contact form"}, {"url": "https://prosite.expasy.org/prosite_doc.html", "name": "PROSITE Documentation", "type": "Help documentation"}, {"url": "https://prosite.expasy.org/prosite_details.html", "name": "About PROSITE", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/bioinformatics-gene-protein-structure-function", "name": "Bioinformatics: Gene-protein-structure-function", "type": "TeSS links to training materials"}], "year-creation": 1988, "data-processes": [{"url": "ftp://ftp.expasy.org/databases/prosite", "name": "Download", "type": "data release"}, {"url": "https://prosite.expasy.org/prorule.html", "name": "Search ProRule", "type": "data access"}, {"url": "http://prosite.expasy.org/scanprosite/", "name": "ScanProsite", "type": "data access"}, {"url": "https://prosite.expasy.org/prosite.html", "name": "Search , Quick Scan and Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000527", "bsg-d000527"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Functional domain", "Molecular structure", "Protein domain", "Protein identification", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: PROSITE", "abbreviation": "PROSITE", "url": "https://fairsharing.org/10.25504/FAIRsharing.vwc6bd", "doi": "10.25504/FAIRsharing.vwc6bd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PROSITE is a database of protein families and domains. PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", "publications": [{"id": 496, "pubmed_id": 16381852, "title": "The PROSITE database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj063", "authors": "Hulo N., Bairoch A., Bulliard V., Cerutti L., De Castro E., Langendijk-Genevaux PS., Pagni M., Sigrist CJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj063", "created_at": "2021-09-30T08:23:13.893Z", "updated_at": "2021-09-30T08:23:13.893Z"}, {"id": 916, "pubmed_id": 23505298, "title": "pfsearchV3: a code acceleration and heuristic to search PROSITE profiles.", "year": 2013, "url": "http://doi.org/10.1093/bioinformatics/btt129", "authors": "Schuepbach T,Pagni M,Bridge A,Bougueleret L,Xenarios I,Cerutti L", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btt129", "created_at": "2021-09-30T08:24:01.157Z", "updated_at": "2021-09-30T08:24:01.157Z"}, {"id": 1455, "pubmed_id": 23161676, "title": "New and continuing developments at PROSITE.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1067", "authors": "Sigrist CJ,de Castro E,Cerutti L,Cuche BA,Hulo N,Bridge A,Bougueleret L,Xenarios I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1067", "created_at": "2021-09-30T08:25:02.621Z", "updated_at": "2021-09-30T11:29:08.985Z"}], "licence-links": [{"licence-name": "PROSITE Commercial Licence", "licence-id": 685, "link-id": 1057, "relation": "undefined"}, {"licence-name": "ExPASy Terms of Use", "licence-id": 305, "link-id": 1060, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2058", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:15.035Z", "metadata": {"doi": "10.25504/FAIRsharing.t7yckc", "name": "Pharmacogenomics Knowledge Base", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "feedback@pharmgkb.org"}], "homepage": "https://www.pharmgkb.org/", "identifier": 2058, "description": "PharmGKB curates primary genotype and phenotype data, annotates gene variants and gene-drug-disease relationships via literature review, and summarizes important PGx genes and drug pathways. PharmGKB collects, curates and disseminates knowledge about the impact of human genetic variation on drug responses.", "abbreviation": "PharmGKB", "access-points": [{"url": "https://api.pharmgkb.org", "name": "PharmGKB REST API", "type": "REST"}], "support-links": [{"url": "http://pharmgkb.blogspot.com", "type": "Blog/News"}, {"url": "https://www.pharmgkb.org/feedback", "type": "Contact form"}, {"url": "http://www.pharmgkb.org/page/faqs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://twitter.com/pharmgkb", "type": "Twitter"}], "year-creation": 2001, "data-processes": [{"url": "http://www.pharmgkb.org/downloads/", "name": "Download", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012325", "name": "re3data:r3d100012325", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002689", "name": "SciCrunch:RRID:SCR_002689", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000525", "bsg-d000525"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Expression data", "Drug", "Phenotype", "Classification", "Pathway model", "Gene", "Sequence variant", "Gene-disease association", "Genotype", "Approved drug"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Pharmacogenomics Knowledge Base", "abbreviation": "PharmGKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.t7yckc", "doi": "10.25504/FAIRsharing.t7yckc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PharmGKB curates primary genotype and phenotype data, annotates gene variants and gene-drug-disease relationships via literature review, and summarizes important PGx genes and drug pathways. PharmGKB collects, curates and disseminates knowledge about the impact of human genetic variation on drug responses.", "publications": [{"id": 498, "pubmed_id": 11908751, "title": "Integrating genotype and phenotype information: an overview of the PharmGKB project. Pharmacogenetics Research Network and Knowledge Base.", "year": 2002, "url": "http://doi.org/10.1038/sj.tpj.6500035", "authors": "Klein TE., Chang JT., Cho MK., Easton KL., Fergerson R., Hewett M., Lin Z., Liu Y., Liu S., Oliver DE., Rubin DL., Shafa F., Stuart JM., Altman RB.,", "journal": "Pharmacogenomics J.", "doi": "10.1038/sj.tpj.6500035", "created_at": "2021-09-30T08:23:14.101Z", "updated_at": "2021-09-30T08:23:14.101Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)", "licence-id": 195, "link-id": 1084, "relation": "undefined"}, {"licence-name": "PharmGKB Data Usage Policy", "licence-id": 661, "link-id": 1085, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2076", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:22.611Z", "metadata": {"doi": "10.25504/FAIRsharing.kz6vpp", "name": "Domain mapping of disease mutations", "status": "deprecated", "contacts": [{"contact-name": "Maricel Kann", "contact-email": "DMDM_info@umbc.edu"}], "homepage": "http://bioinf.umbc.edu/dmdm/", "identifier": 2076, "description": "Domain mapping of disease mutations (DMDM) is a database in which each disease mutation can be displayed by its gene, protein or domain location.", "abbreviation": "DMDM", "year-creation": 2009, "data-processes": [{"url": "http://bioinf.umbc.edu/dmdm", "name": "search", "type": "data access"}], "deprecation-date": "2021-9-27", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000543", "bsg-d000543"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science"], "domains": ["Hidden Markov model", "Protein domain", "Mutation analysis", "Disease", "Protein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Domain mapping of disease mutations", "abbreviation": "DMDM", "url": "https://fairsharing.org/10.25504/FAIRsharing.kz6vpp", "doi": "10.25504/FAIRsharing.kz6vpp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Domain mapping of disease mutations (DMDM) is a database in which each disease mutation can be displayed by its gene, protein or domain location.", "publications": [{"id": 522, "pubmed_id": 20685956, "title": "DMDM: domain mapping of disease mutations.", "year": 2010, "url": "http://doi.org/10.1093/bioinformatics/btq447", "authors": "Peterson TA., Adadey A., Santana-Cruz I., Sun Y., Winder A., Kann MG.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btq447", "created_at": "2021-09-30T08:23:16.959Z", "updated_at": "2021-09-30T08:23:16.959Z"}], "licence-links": [{"licence-name": "DMDM Attribution required", "licence-id": 248, "link-id": 679, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2726", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T14:01:28.000Z", "updated-at": "2021-11-24T13:17:18.927Z", "metadata": {"doi": "10.25504/FAIRsharing.oAJNHO", "name": "An INtegrated Data warehouse of mIcrobial GenOmes", "status": "ready", "contacts": [{"contact-name": "Intikhab Alam", "contact-email": "intikhab.alam@kaust.edu.sa"}], "homepage": "http://www.cbrc.kaust.edu.sa/indigo", "citations": [{"doi": "10.1371/journal.pone.0082210", "pubmed-id": 24324765, "publication-id": 2493}], "identifier": 2726, "description": "INDIGO enables the integration of annotations for the exploration and analysis of newly sequenced microbial genomes.", "abbreviation": "INDIGO", "access-points": [{"url": "http://www.cbrc.kaust.edu.sa/indigo/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "http://www.cbrc.kaust.edu.sa/indigo/team.do", "name": "INDIGO Team", "type": "Help documentation"}, {"url": "http://www.cbrc.kaust.edu.sa/indigo/dataCategories.do", "name": "Data Categories", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}], "year-creation": 2013, "data-processes": [{"url": "http://www.cbrc.kaust.edu.sa/indigo/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "http://www.cbrc.kaust.edu.sa/indigo/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "http://www.cbrc.kaust.edu.sa/indigo/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "http://www.cbrc.kaust.edu.sa/indigo/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}], "associated-tools": [{"url": "http://www.cbrc.kaust.edu.sa/indigo/blast.do", "name": "BLAST Interface to INDIGO"}]}, "legacy-ids": ["biodbcore-001224", "bsg-d001224"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Data Integration", "Genomics", "Life Science", "Microbiology"], "domains": ["Genome annotation", "Gene", "Genome"], "taxonomies": ["Haloplasma contractile", "Halorhabdus tiamatea", "Salinisphaera shabanensis"], "user-defined-tags": [], "countries": ["Saudi Arabia"], "name": "FAIRsharing record for: An INtegrated Data warehouse of mIcrobial GenOmes", "abbreviation": "INDIGO", "url": "https://fairsharing.org/10.25504/FAIRsharing.oAJNHO", "doi": "10.25504/FAIRsharing.oAJNHO", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: INDIGO enables the integration of annotations for the exploration and analysis of newly sequenced microbial genomes.", "publications": [{"id": 2493, "pubmed_id": 24324765, "title": "INDIGO - INtegrated data warehouse of microbial genomes with examples from the red sea extremophiles.", "year": 2013, "url": "http://doi.org/10.1371/journal.pone.0082210", "authors": "Alam I,Antunes A,Kamau AA,Ba Alawi W,Kalkatawi M,Stingl U,Bajic VB", "journal": "PLoS One", "doi": "10.1371/journal.pone.0082210", "created_at": "2021-09-30T08:27:05.745Z", "updated_at": "2021-09-30T08:27:05.745Z"}], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1475, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2727", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-11T14:24:21.000Z", "updated-at": "2021-11-24T13:17:54.858Z", "metadata": {"doi": "10.25504/FAIRsharing.w7Yuyx", "name": "PhytoMine", "status": "ready", "homepage": "https://phytozome.jgi.doe.gov/phytomine/", "identifier": 2727, "description": "An InterMine interface to data from Phytozome", "abbreviation": "PhytoMine", "access-points": [{"url": "https://phytozome.jgi.doe.gov/phytomine/api.do", "name": "Web Service Client (Perl, Python, Ruby, Java)", "type": "REST"}], "support-links": [{"url": "https://phytozome.jgi.doe.gov/intermine/start.html", "name": "PhytoMine Help Pages", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-manual", "name": "InterMine user manual", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intermine-user-tutorial", "name": "InterMine user tutorial", "type": "TeSS links to training materials"}], "data-processes": [{"url": "https://phytozome.jgi.doe.gov/phytomine/templates.do", "name": "Search Via Pre-Defined Queries", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/phytomine/bag.do", "name": "Search Against A List", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/phytomine/genomicRegionSearch.do", "name": "Search Within Genomic Regions", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/phytomine/customQuery.do", "name": "Advanced Search (Query Builder)", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/phytomine/dataCategories.do", "name": "Data Categories", "type": "data access"}]}, "legacy-ids": ["biodbcore-001225", "bsg-d001225"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Genomics", "Life Science", "Transcriptomics"], "domains": ["Expression data", "Gene expression", "Protein", "Transcript", "Amino acid sequence", "Orthologous", "Paralogous"], "taxonomies": ["Plantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: PhytoMine", "abbreviation": "PhytoMine", "url": "https://fairsharing.org/10.25504/FAIRsharing.w7Yuyx", "doi": "10.25504/FAIRsharing.w7Yuyx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: An InterMine interface to data from Phytozome", "publications": [], "licence-links": [{"licence-name": "GNU Lesser General Public License (LGPL) 2.1", "licence-id": 357, "link-id": 1248, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2766", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-09T14:46:29.000Z", "updated-at": "2022-02-09T16:51:31.085Z", "metadata": {"doi": "10.25504/FAIRsharing.wBOua0", "name": "PLAZA", "status": "ready", "contacts": [{"contact-name": "Klaas Vandepoele", "contact-email": "plaza@psb.vib-ugent.be", "contact-orcid": "0000-0003-4790-2725"}, {"contact-name": "General Contact", "contact-email": "plaza@psb.vib-ugent.be", "contact-orcid": null}], "homepage": "https://bioinformatics.psb.ugent.be/plaza/", "citations": [{"doi": "10.1093/nar/gkx1002", "pubmed-id": 29069403, "publication-id": 193}, {"doi": "10.1093/nar/gkab1024", "pubmed-id": null, "publication-id": 3232}], "identifier": 2766, "description": "PLAZA is a platform for comparative, evolutionary, and functional genomics. It makes a broad set of genomes, data types and analysis tools available to researchers through a user-friendly website, an API, and bulk downloads. The platform consists of multiple instances, where each instance contains additional genomes, improved genome annotations, new software tools, and similar.", "abbreviation": "PLAZA", "access-points": [{"url": "https://bioinformatics.psb.ugent.be/plaza/api/get_species_data_links", "name": "Retrieve the links to the API calls of the various PLAZA instances", "type": "REST", "example-url": "https://bioinformatics.psb.ugent.be/plaza/api/get_species_data_links", "documentation-url": "https://bioinformatics.psb.ugent.be/plaza/documentation/api"}, {"url": "https://bioinformatics.psb.ugent.be/plaza/api/get_species_data", "name": "This API call performs the /api/get_species_data for all available PLAZA instances, merges the results, removes double entries, and returns the data and meta-data for the species in the available PLAZA instances.", "type": "REST", "documentation-url": "https://bioinformatics.psb.ugent.be/plaza/documentation/api"}, {"url": "https://bioinformatics.psb.ugent.be/plaza/api/available_instances", "name": "Retrieve the available PLAZA instances", "type": "REST", "documentation-url": "https://bioinformatics.psb.ugent.be/plaza/documentation/api"}], "data-curation": {}, "support-links": [{"url": "https://bioinformatics.psb.ugent.be/plaza_development/documentation/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bioinformatics.psb.ugent.be/plaza_development/pages/fair_data", "name": "PLAZA and FAIR data", "type": "Help documentation"}, {"url": "https://bioinformatics.psb.ugent.be/plaza_development/documentation", "name": "PLAZA Documentation", "type": "Help documentation"}, {"url": "https://bioinformatics.psb.ugent.be/plaza_development/news", "name": "News", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/plant-bioinformatics", "name": "Plant Bioinformatics", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/plaza-is-a-plant-oriented-online-resource-for-comparative-evolutionary-and-functional-genomics", "name": "PLAZA is a plant-oriented online resource for comparative, evolutionary and functional genomics", "type": "TeSS links to training materials"}, {"url": "https://bioinformatics.psb.ugent.be/plaza_development/documentation/tutorial", "name": "PLAZA Tutorials", "type": "Training documentation"}, {"url": "https://twitter.com/plaza_genomics", "name": "@plaza_genomics", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "https://bioinformatics.psb.ugent.be/plaza", "name": "Main website for data access", "type": "data access"}, {"url": "https://bioinformatics.psb.ugent.be/plaza/instance/instances_locate", "name": "Locate Instances by Species", "type": "data access"}, {"name": "Download available for all instances", "type": "data release"}], "associated-tools": [{"url": "https://phyd3.bits.vib.be", "name": "PhyD3 v1.0"}, {"url": "https://bioinformatics.psb.ugent.be/plaza_development/documentation/intro_tutorial#navigation_table_tools", "name": "PLAZA Tool Listing"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001265", "bsg-d001265"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Functional Genomics", "Genomics", "Phylogenetics", "Evolutionary Biology", "Life Science", "Communication Science"], "domains": ["Protein domain", "Gene Ontology enrichment", "Genome annotation", "Function analysis", "Protein Analysis", "Classification", "Amino acid sequence", "Genome", "FAIR"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: PLAZA", "abbreviation": "PLAZA", "url": "https://fairsharing.org/10.25504/FAIRsharing.wBOua0", "doi": "10.25504/FAIRsharing.wBOua0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PLAZA is a platform for comparative, evolutionary, and functional genomics. It makes a broad set of genomes, data types and analysis tools available to researchers through a user-friendly website, an API, and bulk downloads. The platform consists of multiple instances, where each instance contains additional genomes, improved genome annotations, new software tools, and similar.", "publications": [{"id": 193, "pubmed_id": 29069403, "title": "PLAZA 4.0: an integrative resource for functional, evolutionary and comparative plant genomics.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1002", "authors": "Van Bel M,Diels T,Vancaester E,Kreft L,Botzki A,Van de Peer Y,Coppens F,Vandepoele K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1002", "created_at": "2021-09-30T08:22:41.112Z", "updated_at": "2021-09-30T11:28:43.841Z"}, {"id": 1983, "pubmed_id": 20040540, "title": "PLAZA: a comparative genomics resource to study gene and genome evolution in plants.", "year": 2009, "url": "http://doi.org/10.1105/tpc.109.071506", "authors": "Proost S,Van Bel M,Sterck L,Billiau K,Van Parys T,Van de Peer Y,Vandepoele K", "journal": "Plant Cell", "doi": "10.1105/tpc.109.071506", "created_at": "2021-09-30T08:26:03.165Z", "updated_at": "2021-09-30T08:26:03.165Z"}, {"id": 1993, "pubmed_id": 22198273, "title": "Dissecting plant genomes with the PLAZA comparative genomics platform.", "year": 2011, "url": "http://doi.org/10.1104/pp.111.189514", "authors": "Van Bel M,Proost S,Wischnitzki E,Movahedi S,Scheerlinck C,Van de Peer Y,Vandepoele K", "journal": "Plant Physiol", "doi": "10.1104/pp.111.189514", "created_at": "2021-09-30T08:26:04.357Z", "updated_at": "2021-09-30T08:26:04.357Z"}, {"id": 1996, "pubmed_id": 25324309, "title": "PLAZA 3.0: an access point for plant comparative genomics.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku986", "authors": "Proost S,Van Bel M,Vaneechoutte D,Van de Peer Y,Inze D,Mueller-Roeber B,Vandepoele K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku986", "created_at": "2021-09-30T08:26:04.680Z", "updated_at": "2021-09-30T11:29:25.303Z"}, {"id": 3232, "pubmed_id": null, "title": "PLAZA 5.0: extending the scope and power of comparative and functional genomics in plants", "year": 2021, "url": "http://dx.doi.org/10.1093/nar/gkab1024", "authors": "Van\u00a0Bel, Michiel; Silvestri, Francesca; Weitz, Eric M; Kreft, Lukasz; Botzki, Alexander; Coppens, Frederik; Vandepoele, Klaas; ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkab1024", "created_at": "2022-02-09T16:44:14.946Z", "updated_at": "2022-02-09T16:44:14.946Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1477, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBMUT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--cb01755ba6bb5c53ce38e8fd85a7b2461135c028/plaza.png?disposition=inline"}} +{"id": "2895", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-19T09:42:00.000Z", "updated-at": "2021-11-24T13:14:11.309Z", "metadata": {"name": "Virtual Chinese Genome Database", "status": "uncertain", "homepage": "https://bigd.big.ac.cn/vcg/", "citations": [{"doi": "10.1186/1471-2164-15-265", "pubmed-id": 24708222, "publication-id": 2614}], "identifier": 2895, "description": "Virtual Chinese Genome Database (VCGDB) is a genome database of the Chinese population based on the whole genome sequencing data of 194 individuals. We are unsure when this database was last updated, and as such we have marked this record as Uncertain. Please contact us if you have any information on its current status.", "abbreviation": "VCGDB", "data-processes": [{"url": "https://bigd.big.ac.cn/vcg/search.php", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/vcg/vcgui.php", "name": "Genome Browser", "type": "data access"}, {"url": "https://bigd.big.ac.cn/vcg/download.html", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001396", "bsg-d001396"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Comparative Genomics", "Population Genetics"], "domains": ["Whole genome sequencing", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Virtual Chinese Genome Database", "abbreviation": "VCGDB", "url": "https://fairsharing.org/fairsharing_records/2895", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Virtual Chinese Genome Database (VCGDB) is a genome database of the Chinese population based on the whole genome sequencing data of 194 individuals. We are unsure when this database was last updated, and as such we have marked this record as Uncertain. Please contact us if you have any information on its current status.", "publications": [{"id": 2614, "pubmed_id": 24708222, "title": "VCGDB: a dynamic genome database of the Chinese population.", "year": 2014, "url": "http://doi.org/10.1186/1471-2164-15-265", "authors": "Ling Y,Jin Z,Su M,Zhong J,Zhao Y,Yu J,Wu J,Xiao J", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-15-265", "created_at": "2021-09-30T08:27:20.912Z", "updated_at": "2021-09-30T08:27:20.912Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2825", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-19T14:57:20.000Z", "updated-at": "2021-11-24T13:15:39.874Z", "metadata": {"doi": "10.25504/FAIRsharing.O7UKUm", "name": "Heart Diseases related Noncoding RNA Database", "status": "deprecated", "contacts": [{"contact-name": "Li Li", "contact-email": "lilirz@tongji.edu.cn"}], "homepage": "http://hdncrna.cardiacdev.com", "citations": [{"doi": "10.1093/database/bay067.", "pubmed-id": 30053237, "publication-id": 2568}], "identifier": 2825, "description": "The Heart Disease-related Non-coding RNAs Database (HDncRNA) provides information about common heart diseases and their related noncoding RNAs. The HDncRNA database contains manually annotated associations of ncRNAs with heart disease. Sources of data in this database are published articles, ncRNA databases and public RNA-seq datasets.", "abbreviation": "HDncRNA", "support-links": [{"url": "https://hdncrna.cardiacdev.com/pages/help.html", "name": "Help Manual", "type": "Help documentation"}, {"url": "https://hdncrna.cardiacdev.com/pages/about.html", "name": "About", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://hdncrna.cardiacdev.com/pages/search.html", "name": "Search", "type": "data access"}, {"url": "https://hdncrna.cardiacdev.com/pages/download.html", "name": "Download", "type": "data release"}], "deprecation-date": "2021-9-21", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-001325", "bsg-d001325"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Animal Genetics", "Genetics", "Life Science"], "domains": ["Expression data", "Gene expression", "RNA sequencing", "Non-coding RNA", "Long non-coding RNA", "Heart", "Cardiovascular disease"], "taxonomies": ["Bos taurus", "Canis lupus", "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Sus scrofa"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Heart Diseases related Noncoding RNA Database", "abbreviation": "HDncRNA", "url": "https://fairsharing.org/10.25504/FAIRsharing.O7UKUm", "doi": "10.25504/FAIRsharing.O7UKUm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Heart Disease-related Non-coding RNAs Database (HDncRNA) provides information about common heart diseases and their related noncoding RNAs. The HDncRNA database contains manually annotated associations of ncRNAs with heart disease. Sources of data in this database are published articles, ncRNA databases and public RNA-seq datasets.", "publications": [{"id": 2568, "pubmed_id": 30053237, "title": "HDncRNA: a comprehensive database of non-coding RNAs associated with heart diseases.", "year": 2018, "url": "http://doi.org/10.1093/database/bay067", "authors": "Wang WJ,Wang YM,Hu Y,Lin Q,Chen R,Liu H,Cao WZ,Zhu HF,Tong C,Li L,Peng LY", "journal": "Database (Oxford)", "doi": "10.1093/database/bay067.", "created_at": "2021-09-30T08:27:14.912Z", "updated_at": "2021-09-30T08:27:14.912Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2941", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T09:02:15.000Z", "updated-at": "2021-12-06T10:47:27.229Z", "metadata": {"name": "Facebook Data for Good", "status": "ready", "contacts": [{"contact-email": "press@fb.com"}], "homepage": "https://dataforgood.fb.com/", "identifier": 2941, "description": "Through our Data for Good partnerships, Facebook works with many of the world's leading humanitarian organizations to help them act more quickly and reach more people during natural disasters and disease outbreaks data for disaster response, health, connectivity, energy access, and economic growth.", "year-creation": 2017, "data-processes": [{"url": "https://dataforgood.fb.com/research/", "name": "Browse data search report", "type": "data access"}, {"url": "https://dataforgood.fb.com/impact/", "name": "Browse all case studies", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013305", "name": "re3data:r3d100013305", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001445", "bsg-d001445"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Demographics", "Social Science", "Virology", "Epidemiology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Facebook Data for Good", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2941", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Through our Data for Good partnerships, Facebook works with many of the world's leading humanitarian organizations to help them act more quickly and reach more people during natural disasters and disease outbreaks data for disaster response, health, connectivity, energy access, and economic growth.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2947", "type": "fairsharing-records", "attributes": {"created-at": "2020-04-14T15:55:21.000Z", "updated-at": "2021-12-06T10:47:27.364Z", "metadata": {"name": "European Union Open Data Portal", "status": "ready", "homepage": "https://data.europa.eu/euodp/en/home", "identifier": 2947, "description": "The European Union Open Data Portal (EU ODP) gives you access to open data published by EU institutions and bodies. All the data you can find via this catalogue are free to use and reuse for commercial or non-commercial purposes.", "abbreviation": "EU ODP", "access-points": [{"url": "https://data.europa.eu/euodp/en/linked-data", "name": "SPARQL endpoint query editor", "type": "Other"}, {"url": "https://data.europa.eu/euodp/en/developerscorner", "name": "REST API", "type": "REST"}], "support-links": [{"url": "https://data.europa.eu/euodp/en/search", "name": "How the search function works", "type": "Help documentation"}, {"url": "https://data.europa.eu/euodp/en/providers", "name": "Who provide the data?", "type": "Help documentation"}, {"url": "https://data.europa.eu/euodp/en/glossary", "name": "Glossary", "type": "Help documentation"}, {"url": "https://data.europa.eu/euodp/en/data/publisher", "name": "Publishers", "type": "Help documentation"}, {"url": "https://twitter.com/ECDC_EU", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "https://data.europa.eu/euodp/en/data", "name": "Browse & search", "type": "data access"}, {"url": "https://data.europa.eu/euodp/en/suggestDataSet", "name": "Suggest a dataset", "type": "data curation"}, {"url": "https://data.europa.eu/euodp/en/node/add/application", "name": "Share your application", "type": "data curation"}], "associated-tools": [{"url": "https://data.europa.eu/euodp/en/apps", "name": "List of applications developed by the European Institutions, agencies and other bodies (identified by the EU flag) as well as third parties"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011728", "name": "re3data:r3d100011728", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001451", "bsg-d001451"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Economic and Social History", "Humanities and Social Science", "Virology", "Subject Agnostic", "Epidemiology"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": ["COVID-19"], "countries": ["European Union"], "name": "FAIRsharing record for: European Union Open Data Portal", "abbreviation": "EU ODP", "url": "https://fairsharing.org/fairsharing_records/2947", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The European Union Open Data Portal (EU ODP) gives you access to open data published by EU institutions and bodies. All the data you can find via this catalogue are free to use and reuse for commercial or non-commercial purposes.", "publications": [], "licence-links": [{"licence-name": "European Union Open Data Portal Legal notices", "licence-id": 303, "link-id": 537, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3577", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-12T07:40:37.232Z", "updated-at": "2021-12-02T10:59:06.077Z", "metadata": {"name": "Toolbox for Sensitive Data Objects", "status": "in_development", "contacts": [{"contact-name": "Maria Panagiotopoulou", "contact-email": "Maria.Panagiotopoulou@ecrin.org", "contact-orcid": "0000-0002-4221-7254"}, {"contact-name": "Sergei Gorianin", "contact-email": "sergei.gorianin@ecrin.org", "contact-orcid": "0000-0003-3321-2918"}], "homepage": "https://tsdo.ecrin-rms.org/", "citations": [], "identifier": 3577, "description": "The Horizon 2020 project EOSC-Life (https://www.eosc-life.eu/) brings together the 13 Life Science \u2018ESFRI\u2019 research infrastructures to create an open, digital and collaborative space for biological and medical research. Sharing sensitive data is a specific challenge within EOSC-Life. For that reason, a toolbox was developed in Work Package 4, providing information to researchers who wish to share sensitive data or to use sensitive data. The sensitivity of the data may arise from its personal nature but can also be caused by intellectual property considerations, biohazard concerns, or the Nagoya protocol. \nThe outline for the toolbox, as well as its basic principles regarding content and sustainability are summarised in a publication (https://zenodo.org/record/4483694#.YTmohZ0zaUk). The toolbox will not create new content, instead, it will allow researchers to find existing resources that are relevant for sharing sensitive data across all participating research infrastructures (F in FAIR). The toolbox will provide links to recommendations, procedures, and best practices, as well as to software (tools) to support sensitive data sharing and reuse. \n\nThe Toolbox aims to provide guidance to: \n1) Researchers or other data providers (e.g., sponsors, institutions or private organisations) wishing to make their sensitive data available for future reuse, i.e., enabling future sharing of data; \n2) Researchers and data providers in the case where a researcher wishes to make use of sensitive data made available by the data provider, i.e., enabling actual sharing of data.", "abbreviation": "TSDO", "year-creation": 2021, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Bioinformatics", "Data Management", "Data Quality"], "domains": ["Biobank", "Medical imaging", "Hospital"], "taxonomies": ["Animalia", "Bacteria", "Fungi", "Homo sapiens", "Plantae", "Viruses"], "user-defined-tags": ["data sharing", "Data standards", "Researcher data"], "countries": ["Italy", "Austria", "France", "Netherlands", "Germany"], "name": "FAIRsharing record for: Toolbox for Sensitive Data Objects", "abbreviation": "TSDO", "url": "https://fairsharing.org/fairsharing_records/3577", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Horizon 2020 project EOSC-Life (https://www.eosc-life.eu/) brings together the 13 Life Science \u2018ESFRI\u2019 research infrastructures to create an open, digital and collaborative space for biological and medical research. Sharing sensitive data is a specific challenge within EOSC-Life. For that reason, a toolbox was developed in Work Package 4, providing information to researchers who wish to share sensitive data or to use sensitive data. The sensitivity of the data may arise from its personal nature but can also be caused by intellectual property considerations, biohazard concerns, or the Nagoya protocol. \nThe outline for the toolbox, as well as its basic principles regarding content and sustainability are summarised in a publication (https://zenodo.org/record/4483694#.YTmohZ0zaUk). The toolbox will not create new content, instead, it will allow researchers to find existing resources that are relevant for sharing sensitive data across all participating research infrastructures (F in FAIR). The toolbox will provide links to recommendations, procedures, and best practices, as well as to software (tools) to support sensitive data sharing and reuse. \n\nThe Toolbox aims to provide guidance to: \n1) Researchers or other data providers (e.g., sponsors, institutions or private organisations) wishing to make their sensitive data available for future reuse, i.e., enabling future sharing of data; \n2) Researchers and data providers in the case where a researcher wishes to make use of sensitive data made available by the data provider, i.e., enabling actual sharing of data.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1838", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:02.339Z", "metadata": {"doi": "10.25504/FAIRsharing.7hxxc4", "name": "PhylomeDB", "status": "ready", "contacts": [{"contact-name": "Toni Gabaldon", "contact-email": "tgabaldon@crg.es"}], "homepage": "http://phylomedb.org", "citations": [{"doi": "10.1093/nar/gkab966", "pubmed-id": 34718760, "publication-id": 3126}], "identifier": 1838, "description": "PhylomeDB is a unique knowledge base providing public access to minable and browsable catalogues of pre-computed, genome-wide collections of annotated sequences, alignments and phylogenies (i.e. phylomes) of homologous genes, as well as to their corresponding phylogeny-based orthology and paralogy relationships. In addition, PhylomeDB trees and alignments can be downloaded for further processing to detect and date gene duplication events, infer past events of inter-species hybridization and horizontal gene transfer, as well as to uncover footprints of selection, introgression, gene conversion, or other relevant evolutionary processes in the genes and organisms of interests. The v5 release also represents a significant core data expansion, with the database providing access to 534 phylomes, comprising over 8 million trees, and homology relationships for genes in over 6000 species. This makes PhylomeDB the largest and most comprehensive public repository of gene phylogenies ", "abbreviation": "PhylomeDB", "data-curation": {}, "support-links": [{"url": "http://phylomedb.org/faq", "name": "FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://phylomedb.org/help", "name": "Help", "type": "Help documentation"}, {"url": "https://twitter.com/phylomedb", "name": "@phylomedb", "type": "Twitter"}], "year-creation": 2008, "data-processes": [{"url": "ftp://phylomedb.org/phylomedb/", "name": "Download", "type": "data access"}, {"url": "http://phylomedb.org/search_phylome", "name": "Search", "type": "data access"}, {"url": "http://phylomedb.org/phylomes?s=phy", "name": "Browse Phylomes", "type": "data access"}], "associated-tools": [], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000298", "bsg-d000298"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Taxonomy", "Phylogeny", "Phylogenetics", "Phylogenomics", "Life Science"], "domains": ["Protein name", "Sequence similarity", "Taxonomic classification", "Gene functional annotation", "Model organism", "Proteome", "Conserved region", "Orthologous", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["phylome", "phylogenetic tree"], "countries": ["Spain"], "name": "FAIRsharing record for: PhylomeDB", "abbreviation": "PhylomeDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.7hxxc4", "doi": "10.25504/FAIRsharing.7hxxc4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PhylomeDB is a unique knowledge base providing public access to minable and browsable catalogues of pre-computed, genome-wide collections of annotated sequences, alignments and phylogenies (i.e. phylomes) of homologous genes, as well as to their corresponding phylogeny-based orthology and paralogy relationships. In addition, PhylomeDB trees and alignments can be downloaded for further processing to detect and date gene duplication events, infer past events of inter-species hybridization and horizontal gene transfer, as well as to uncover footprints of selection, introgression, gene conversion, or other relevant evolutionary processes in the genes and organisms of interests. The v5 release also represents a significant core data expansion, with the database providing access to 534 phylomes, comprising over 8 million trees, and homology relationships for genes in over 6000 species. This makes PhylomeDB the largest and most comprehensive public repository of gene phylogenies ", "publications": [{"id": 365, "pubmed_id": 17962297, "title": "PhylomeDB: a database for genome-wide collections of gene phylogenies.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm899", "authors": "Huerta-Cepas J., Bueno A., Dopazo J., Gabald\u00f3n T.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm899", "created_at": "2021-09-30T08:22:59.258Z", "updated_at": "2021-09-30T08:22:59.258Z"}, {"id": 600, "pubmed_id": 21075798, "title": "PhylomeDB v3.0: an expanding repository of genome-wide collections of trees, alignments and phylogeny-based orthology and paralogy predictions.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1109", "authors": "Huerta-Cepas J, Capella-Gutierrez S, Pryszcz LP, Denisov I, Kormes D, Marcet-Houben M, Gabald\u00f3n T. - See more at: http://www.biosharing.org/biodbcore-000611#sthash.SMMBBe07.dpuf", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1109", "created_at": "2021-09-30T08:23:25.795Z", "updated_at": "2021-09-30T08:23:25.795Z"}, {"id": 1606, "pubmed_id": 24275491, "title": "PhylomeDB v4: zooming into the plurality of evolutionary histories of a genome.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1177", "authors": "Huerta-Cepas J,Capella-Gutierrez S,Pryszcz LP,Marcet-Houben M,Gabaldon T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1177", "created_at": "2021-09-30T08:25:20.051Z", "updated_at": "2021-09-30T11:29:15.502Z"}, {"id": 3126, "pubmed_id": 34718760, "title": "PhylomeDB V5: an expanding repository for genome-wide catalogues of annotated gene phylogenies.", "year": 2021, "url": "https://doi.org/10.1093/nar/gkab966", "authors": "Fuentes D, Molina M, Chorostecki U, Capella-Guti\u00e9rrez S, Marcet-Houben M, Gabald\u00f3n T", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkab966", "created_at": "2021-11-03T15:02:44.379Z", "updated_at": "2021-11-03T15:02:44.379Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)", "licence-id": 179, "link-id": 2462, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2176", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:17:33.278Z", "metadata": {"doi": "10.25504/FAIRsharing.jwra3e", "name": "MobiDB", "status": "ready", "contacts": [{"contact-name": "Silvio C.E. Tosatto", "contact-email": "silvio.tosatto@unipd.it", "contact-orcid": "0000-0003-4525-7793"}], "homepage": "https://mobidb.bio.unipd.it", "citations": [{"doi": "10.1093/nar/gkaa1058", "pubmed-id": 33237329, "publication-id": 2019}], "identifier": 2176, "description": "MobiDB is a database of intrinsically disordered regions (IDRs) and related features from various sources and prediction tools. Different levels of reliability and different features are reported as different and independent annotations. The database features three levels of annotation: manually curated, indirect and predicted. MobiDB annotates the binding modes of disordered proteins, whether they undergo disorder-to-order transitions or remain disordered in the bound state. In addition, disordered regions undergoing liquid-liquid phase separation or post-translational modifications are defined.", "abbreviation": "MobiDB", "access-points": [{"url": "https://mobidb.bio.unipd.it/help/apidoc", "name": "API Documentation", "type": "REST"}, {"url": "https://mobidb.bio.unipd.it/sitemap.xml", "name": "Bioschemas DataCatalog Profile", "type": "Bioschemas", "example-url": "http://mobidb.bio.unipd.it/", "documentation-url": null}, {"url": "https://mobidb.bio.unipd.it/sitemap.xml", "name": "Bioschemas Dataset Profile", "type": "Bioschemas", "example-url": "http://mobidb.bio.unipd.it/", "documentation-url": null}], "data-curation": {}, "support-links": [{"url": "MobiDB@ngp-net.bio.unipd.it", "name": "General Contact", "type": "Support email"}, {"url": "https://mobidb.bio.unipd.it/help/output", "name": "Output Formats", "type": "Help documentation"}, {"url": "https://mobidb.bio.unipd.it/statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://mobidb.bio.unipd.it/about", "name": "About MobiDB", "type": "Help documentation"}, {"url": "https://mobidb.bio.unipd.it/releaseNotes", "name": "Release Notes", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/MobiDB", "name": "MobiDB Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"url": "https://mobidb.bio.unipd.it/browse", "name": "Browse and Search", "type": "data access"}], "associated-tools": [{"url": "https://github.com/BioComputingUP/MobiDB-lite", "name": "MobiDB-lite"}, {"url": "https://github.com/BioComputingUP/FLIPPER", "name": "FLIPPER"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000649", "bsg-d000649"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Biology"], "domains": ["Molecular structure", "Binding", "Post-translational protein modification", "Curated information", "Intrinsically disordered proteins", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Italy"], "name": "FAIRsharing record for: MobiDB", "abbreviation": "MobiDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.jwra3e", "doi": "10.25504/FAIRsharing.jwra3e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MobiDB is a database of intrinsically disordered regions (IDRs) and related features from various sources and prediction tools. Different levels of reliability and different features are reported as different and independent annotations. The database features three levels of annotation: manually curated, indirect and predicted. MobiDB annotates the binding modes of disordered proteins, whether they undergo disorder-to-order transitions or remain disordered in the bound state. In addition, disordered regions undergoing liquid-liquid phase separation or post-translational modifications are defined.", "publications": [{"id": 241, "pubmed_id": 29136219, "title": "MobiDB 3.0: More annotations for intrinsic disorder, conformational diversity and interactions in proteins", "year": 2017, "url": "https://doi.org/10.1093/nar/gkx1071", "authors": "Piovesan, D, Tabaro, F, Paladin, F, Necci, M, Mi\u010deti\u0107, I, Camilloni, C, Davey, N, Dosztanyi, Z, Meszaros, B, Monzon, A, Parisi, G, Schad, E, Sormanni, P, Tompa, P, Vendruscolo, M, Vranken, W, Tosatto, SCE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1071", "created_at": "2021-09-30T08:22:46.041Z", "updated_at": "2021-09-30T11:28:29.062Z"}, {"id": 685, "pubmed_id": 22661649, "title": "MobiDB: a comprehensive database of intrinsic protein disorder annotations.", "year": 2012, "url": "http://doi.org/10.1093/bioinformatics/bts327", "authors": "Di Domenico T, Walsh I, Martin AJ, Tosatto SC.", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bts327", "created_at": "2021-09-30T08:23:35.504Z", "updated_at": "2021-09-30T08:23:35.504Z"}, {"id": 688, "pubmed_id": 25361972, "title": "MobiDB 2.0: an improved database of intrinsically disordered and mobile proteins.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku982", "authors": "Emilio Potenza, Tom\u00e1s Di Domenico, Ian Walsh, and Silvio C.E. Tosatto", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku982", "created_at": "2021-09-30T08:23:35.836Z", "updated_at": "2021-09-30T08:23:35.836Z"}, {"id": 2019, "pubmed_id": 33237329, "title": "MobiDB: intrinsically disordered proteins in 2021.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1058", "authors": "Piovesan D,Necci M,Escobedo N,Monzon AM,Hatos A,Micetic I,Quaglia F,Paladin L,Ramasamy P,Dosztanyi Z,Vranken WF,Davey NE,Parisi G,Fuxreiter M,Tosatto SCE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1058", "created_at": "2021-09-30T08:26:07.452Z", "updated_at": "2021-09-30T11:29:25.835Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 482, "relation": "undefined"}, {"licence-name": "MobiDB Licence Information", "licence-id": 519, "link-id": 483, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1875", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:12.184Z", "metadata": {"doi": "10.25504/FAIRsharing.9b7wvk", "name": "STRING", "status": "ready", "contacts": [{"contact-name": "Peer Bork", "contact-email": "bork@embl.de", "contact-orcid": "0000-0002-2627-833X"}], "homepage": "https://string-db.org/", "citations": [{"doi": "10.1093/nar/gku1003", "pubmed-id": 25352553, "publication-id": 2035}], "identifier": 1875, "description": "STRING is a database of known and predicted protein interactions. The interactions include direct (physical) and indirect (functional) associations.", "abbreviation": "STRING", "access-points": [{"url": "https://string-db.org/help/api/", "name": "REST and other APIs", "type": "REST"}], "data-curation": {}, "support-links": [{"url": "https://string-db.org/cgi/support.pl", "name": "Contact Support", "type": "Contact form"}, {"url": "https://string-db.org/cgi/info?footer_active_subpage=faqs", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://string-db.org/cgi/help", "name": "STRING Help", "type": "Help documentation"}, {"url": "https://string-db.org/cgi/info.pl?footer_active_subpage=scores", "name": "About Interaction Scores", "type": "Help documentation"}, {"url": "https://string-db.org/cgi/about?footer_active_subpage=statistics", "name": "Statistics", "type": "Help documentation"}, {"url": "https://string-db.org/cgi/about.pl?footer_active_subpage=content", "name": "About STRING", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/cytoscape-stringapp-exercises", "name": "Cytoscape stringApp exercises", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/string-exercises", "name": "STRING exercises", "type": "TeSS links to training materials"}], "year-creation": 2000, "data-processes": [{"url": "https://string-db.org/cgi/download", "name": "Download", "type": "data release"}, {"url": "https://string-db.org/cgi/input", "name": "Search", "type": "data access"}, {"url": "https://string-db.org/cgi/register", "name": "Register", "type": "data access"}, {"url": "https://string-db.org/cgi/access?footer_active_subpage=archive", "name": "Version Information", "type": "data versioning"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010604", "name": "re3data:r3d100010604", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005223", "name": "SciCrunch:RRID:SCR_005223", "portal": "SciCrunch"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-000340", "bsg-d000340"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Life Science", "Biology"], "domains": ["Computational biological predictions", "Protein interaction", "Functional association", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: STRING", "abbreviation": "STRING", "url": "https://fairsharing.org/10.25504/FAIRsharing.9b7wvk", "doi": "10.25504/FAIRsharing.9b7wvk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: STRING is a database of known and predicted protein interactions. The interactions include direct (physical) and indirect (functional) associations.", "publications": [{"id": 1413, "pubmed_id": 26614125, "title": "SVD-phy: improved prediction of protein functional associations through singular value decomposition of phylogenetic profiles.", "year": 2015, "url": "http://doi.org/10.1093/bioinformatics/btv696", "authors": "Franceschini A,Lin J,von Mering C,Jensen LJ", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btv696", "created_at": "2021-09-30T08:24:57.935Z", "updated_at": "2021-09-30T08:24:57.935Z"}, {"id": 1415, "pubmed_id": 23203871, "title": "STRING v9.1: protein-protein interaction networks, with increased coverage and integration.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1094", "authors": "Franceschini A,Szklarczyk D,Frankild S,Kuhn M,Simonovic M,Roth A,Lin J,Minguez P,Bork P,von Mering C,Jensen LJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1094", "created_at": "2021-09-30T08:24:58.141Z", "updated_at": "2021-09-30T11:29:08.151Z"}, {"id": 2035, "pubmed_id": 25352553, "title": "STRING v10: protein-protein interaction networks, integrated over the tree of life.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1003", "authors": "Szklarczyk D,Franceschini A,Wyder S,Forslund K,Heller D,Huerta-Cepas J,Simonovic M,Roth A,Santos A,Tsafou KP,Kuhn M,Bork P,Jensen LJ,von Mering C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1003", "created_at": "2021-09-30T08:26:09.154Z", "updated_at": "2021-09-30T11:29:26.803Z"}, {"id": 2096, "pubmed_id": 30476243, "title": "STRING v11: protein-protein association networks with increased coverage, supporting functional discovery in genome-wide experimental datasets.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1131", "authors": "Szklarczyk D,Gable AL,Lyon D,Junge A,Wyder S,Huerta-Cepas J,Simonovic M,Doncheva NT,Morris JH,Bork P,Jensen LJ,Mering CV", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1131", "created_at": "2021-09-30T08:26:16.206Z", "updated_at": "2021-09-30T11:29:29.036Z"}, {"id": 2098, "pubmed_id": 27924014, "title": "The STRING database in 2017: quality-controlled protein-protein association networks, made broadly accessible.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw937", "authors": "Szklarczyk D,Morris JH,Cook H,Kuhn M,Wyder S,Simonovic M,Santos A,Doncheva NT,Roth A,Bork P,Jensen LJ,von Mering C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw937", "created_at": "2021-09-30T08:26:16.412Z", "updated_at": "2021-09-30T11:29:29.221Z"}, {"id": 2174, "pubmed_id": 18940858, "title": "STRING 8--a global view on proteins and their functional interactions in 630 organisms.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn760", "authors": "Jensen LJ., Kuhn M., Stark M., Chaffron S., Creevey C., Muller J., Doerks T., Julien P., Roth A., Simonovic M., Bork P., von Mering C.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn760", "created_at": "2021-09-30T08:26:24.966Z", "updated_at": "2021-09-30T08:26:24.966Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1388, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3274", "type": "fairsharing-records", "attributes": {"created-at": "2021-01-14T17:22:50.000Z", "updated-at": "2021-11-24T13:17:03.794Z", "metadata": {"doi": "10.25504/FAIRsharing.1C9Boz", "name": "iPPI-DB - Inhibitors of Protein-Protein Interaction Database", "status": "ready", "contacts": [{"contact-name": "Olivier Sperandio", "contact-email": "olivier.sperandio@pasteur.fr", "contact-orcid": "0000-0001-6610-2729"}], "homepage": "https://ippidb.pasteur.fr", "identifier": 3274, "description": "IPPI-DB is a database of modulators of protein-protein interactions. It contains exclusively small molecules and therefore no peptides. The data are retrieved from the literature either peer reviewed scientific articles or world patents. A large variety of data is stored within IPPI-DB: structural, pharmacological, binding and activity profile, pharmacokinetic and cytotoxicity when available, as well as some data about the PPI targets themselves.", "abbreviation": "iPPI-DB", "support-links": [{"url": "https://ippidb.pasteur.fr/tutorials", "name": "Tutorials", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://ippidb.pasteur.fr/compounds/", "name": "Query compounds", "type": "data access"}, {"url": "https://ippidb.pasteur.fr/accounts/login/?next=/contribute", "name": "Contribute", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001789", "bsg-d001789"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Cheminformatics", "Pharmacology", "Life Science"], "domains": ["Molecular structure", "Binding", "High-throughput screening", "Structure", "Toxicity"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: iPPI-DB - Inhibitors of Protein-Protein Interaction Database", "abbreviation": "iPPI-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.1C9Boz", "doi": "10.25504/FAIRsharing.1C9Boz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IPPI-DB is a database of modulators of protein-protein interactions. It contains exclusively small molecules and therefore no peptides. The data are retrieved from the literature either peer reviewed scientific articles or world patents. A large variety of data is stored within IPPI-DB: structural, pharmacological, binding and activity profile, pharmacokinetic and cytotoxicity when available, as well as some data about the PPI targets themselves.", "publications": [{"id": 21, "pubmed_id": 33416858, "title": "The iPPI-DB initiative: A Community-centered database of Protein-Protein Interaction modulators", "year": 2021, "url": "http://doi.org/btaa1091", "authors": "Rachel Torchet, Karen Druart, Luis Checa Ruano, Alexandra Moine-Franel, H\u00e9l\u00e8ne Borges, Olivia Doppelt-Azeroual, Bryan Brancotte, Fabien Mareuil, Michael Nilges, Herv\u00e9 M\u00e9nager, Olivier Sperandio", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btaa1091", "created_at": "2021-09-30T08:22:22.647Z", "updated_at": "2021-09-30T08:22:22.647Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1678", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:18:59.016Z", "metadata": {"doi": "10.25504/FAIRsharing.dd4j8j", "name": "Ebola and Hemorrhagic Fever Virus Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "hfv-info@lanl.gov"}], "homepage": "http://hfv.lanl.gov/content/index", "identifier": 1678, "description": "The Ebola and Hemorrhagic Fever Virus Database stems from the Hemorrhagic Fever Viruses (HFV) Database Project founded by Dr. Carla Kuiken in 2009 at the Los Alamos National Laboratory (LANL). The HFV Database was modeled on the Los Alamos HIV Database, led by Dr. Bette Korber, and translated much of its tools, infrastructure and philosophy from HIV to HFV.", "abbreviation": "HFV Database", "year-creation": 2009, "data-processes": [{"name": "monthly release", "type": "data release"}, {"name": "automated curation", "type": "data curation"}]}, "legacy-ids": ["biodbcore-000134", "bsg-d000134"], "fairsharing-registry": "Database", "record-type": "knowledgebase", "subjects": ["Immunology", "Life Science"], "domains": ["Sequence alignment", "Viral sequence"], "taxonomies": ["Nairovirus", "Viruses", "Zika virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Ebola and Hemorrhagic Fever Virus Database", "abbreviation": "HFV Database", "url": "https://fairsharing.org/10.25504/FAIRsharing.dd4j8j", "doi": "10.25504/FAIRsharing.dd4j8j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Ebola and Hemorrhagic Fever Virus Database stems from the Hemorrhagic Fever Viruses (HFV) Database Project founded by Dr. Carla Kuiken in 2009 at the Los Alamos National Laboratory (LANL). The HFV Database was modeled on the Los Alamos HIV Database, led by Dr. Bette Korber, and translated much of its tools, infrastructure and philosophy from HIV to HFV.", "publications": [{"id": 1625, "pubmed_id": 22064861, "title": "The LANL hemorrhagic fever virus database, a new platform for analyzing biothreat viruses.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr898", "authors": "Kuiken C., Thurmond J., Dimitrijevic M., Yoon H.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr898", "created_at": "2021-09-30T08:25:22.145Z", "updated_at": "2021-09-30T08:25:22.145Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2646", "type": "fairsharing-records", "attributes": {"created-at": "2018-09-11T17:33:00.000Z", "updated-at": "2021-11-24T13:13:06.945Z", "metadata": {"doi": "10.25504/FAIRsharing.xcvp6a", "name": "Extracellular RNA Atlas", "status": "ready", "contacts": [{"contact-name": "William Thistlethwaite", "contact-email": "thistlew@bcm.edu", "contact-orcid": "0000-0001-7692-3731"}], "homepage": "https://exrna-atlas.org", "citations": [{"doi": "10.1016/j.cell.2019.02.018", "pubmed-id": 30951672, "publication-id": 2334}], "identifier": 2646, "description": "The exRNA Atlas is the data and metadata repository of the Extracellular RNA Communication Consortium (ERCC), an NIH Common Fund initiative to learn more about exRNAs in a variety of different contexts. The exRNA Atlas includes small RNA sequencing and qPCR-derived exRNA profiles from human and mouse biofluids. All RNA-seq datasets are processed using version 4 of the exceRpt small RNA-seq pipeline. ERCC-developed quality metrics are uniformly applied to the datasets. The exRNA Atlas accepts submissions for RNA-seq or qPCR data.", "abbreviation": "exRNA Atlas", "access-points": [{"url": "https://exrna-atlas.docs.stoplight.io/", "name": "exRNA Atlas JSON-LD API", "type": "REST"}], "support-links": [{"url": "thistlew@bcm.edu", "name": "William Thistlethwaite", "type": "Support email"}, {"url": "http://genboree.org/theCommons/projects/exrna-mads/wiki/exRNA%20Atlas", "name": "exRNA Atlas Documentation", "type": "Help documentation"}, {"url": "https://exrna.org/resources/data/data-quality-control-standards/", "name": "Quality Control Metrics", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"name": "Web Interface", "type": "data access"}, {"name": "Automated Pipeline", "type": "data curation"}, {"name": "Manual Curation", "type": "data curation"}, {"name": "Manual Release", "type": "data release"}, {"url": "https://exrna-atlas.org/exat/versionHistory", "name": "Version History", "type": "data versioning"}, {"url": "http://genboree.org/theCommons/projects/exrna-mads/wiki/Data%20Submission%20to%20DCC%20using%20FTP", "name": "Data Submission", "type": "data curation"}, {"url": "https://exrna.org/resources/data/data-quality-control-standards/", "name": "exRNA Atlas Quality Control Metrics", "type": "data curation"}], "associated-tools": [{"url": "https://gersteinlab.github.io/exceRpt/", "name": "extra-cellular RNA processing toolkit (exceRpt) 4.6.2"}, {"url": "https://github.com/BRL-BCM/XDec", "name": "XDec (Expression Deconvolution) 1.0.2"}]}, "legacy-ids": ["biodbcore-001137", "bsg-d001137"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Data Visualization"], "domains": ["Differential gene expression analysis", "Real time polymerase chain reaction", "RNA sequencing", "Pathway model"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Extracellular RNA Atlas", "abbreviation": "exRNA Atlas", "url": "https://fairsharing.org/10.25504/FAIRsharing.xcvp6a", "doi": "10.25504/FAIRsharing.xcvp6a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The exRNA Atlas is the data and metadata repository of the Extracellular RNA Communication Consortium (ERCC), an NIH Common Fund initiative to learn more about exRNAs in a variety of different contexts. The exRNA Atlas includes small RNA sequencing and qPCR-derived exRNA profiles from human and mouse biofluids. All RNA-seq datasets are processed using version 4 of the exceRpt small RNA-seq pipeline. ERCC-developed quality metrics are uniformly applied to the datasets. The exRNA Atlas accepts submissions for RNA-seq or qPCR data.", "publications": [{"id": 2334, "pubmed_id": 30951672, "title": "exRNA Atlas Analysis Reveals Distinct Extracellular RNA Cargo Types and Their Carriers Present across Human Biofluids.", "year": 2019, "url": "http://doi.org/S0092-8674(19)30167-9", "authors": "Murillo OD. et al.", "journal": "Cell", "doi": "10.1016/j.cell.2019.02.018", "created_at": "2021-09-30T08:26:46.626Z", "updated_at": "2021-09-30T08:26:46.626Z"}, {"id": 2443, "pubmed_id": 26320941, "title": "Integration of extracellular RNA profiling data using metadata, biomedical ontologies and Linked Data technologies.", "year": 2015, "url": "http://doi.org/10.3402/jev.v4.27497", "authors": "Subramanian SL, Kitchen RR, Alexander R, Carter BS, Cheung KH, Laurent LC, Pico A, Roberts LR, Roth ME, Rozowsky JS, Su AI, Gerstein MB, Milosavljevic A", "journal": "Journal of Extracellular Vesicles", "doi": "10.3402/jev.v4.27497", "created_at": "2021-09-30T08:26:59.620Z", "updated_at": "2021-09-30T08:26:59.620Z"}], "licence-links": [{"licence-name": "exRNA Atlas Data Access Policy", "licence-id": 307, "link-id": 332, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2131", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:26.327Z", "metadata": {"doi": "10.25504/FAIRsharing.8fy3bn", "name": "The mitochondrial DNA breakpoints database", "status": "ready", "contacts": [{"contact-name": "Filipe Pereira", "contact-email": "mitobreak@gmail.com", "contact-orcid": "0000-0001-8950-1036"}], "homepage": "http://mitobreak.portugene.com", "identifier": 2131, "description": "A comprehensive on-line resource with curated datasets of mitochondrial DNA (mtDNA) rearrangements.", "abbreviation": "MitoBreak", "support-links": [{"url": "http://mitobreak.portugene.com/MitoBreak_contact.html", "type": "Contact form"}, {"url": "http://mitobreak.portugene.com/MitoBreak_help.html", "type": "Help documentation"}, {"url": "http://mitobreak.portugene.com/MitoBreak_documentation.html", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"name": "Continuous release", "type": "data release"}, {"name": "Manual curation", "type": "data curation"}, {"url": "http://mitobreak.portugene.com/cgi-bin/Mitobreak_submission.cgi", "name": "submit", "type": "data curation"}, {"url": "http://mitobreak.portugene.com/cgi-bin/Mitobreak_select.cgi", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://mitobreak.portugene.com/cgi-bin/Mitobreak_classifier_input.cgi", "name": "Classifier"}]}, "legacy-ids": ["biodbcore-000601", "bsg-d000601"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Chromosome fragile site", "Mitochondrial genome", "Chromosome breakpoint", "Nucleotide duplication", "Deletions", "Mitochondrial disease"], "taxonomies": ["Caenorhabditis elegans", "Drosophila melanogaster", "Homo sapiens", "Macaca mulatta", "Mus musculus", "Podospora anserina", "Rattus norvegicus"], "user-defined-tags": ["Genomic rearrangement"], "countries": ["Portugal"], "name": "FAIRsharing record for: The mitochondrial DNA breakpoints database", "abbreviation": "MitoBreak", "url": "https://fairsharing.org/10.25504/FAIRsharing.8fy3bn", "doi": "10.25504/FAIRsharing.8fy3bn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A comprehensive on-line resource with curated datasets of mitochondrial DNA (mtDNA) rearrangements.", "publications": [{"id": 566, "pubmed_id": 24170808, "title": "MitoBreak: The mitochondrial DNA breakpoints database", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt982", "authors": "Joana Damas, Jo\u00e3o Carneiro, Ant\u00f3nio Amorim and Filipe Pereira", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt982", "created_at": "2021-09-30T08:23:21.893Z", "updated_at": "2021-09-30T08:23:21.893Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2521", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-06T14:42:11.000Z", "updated-at": "2022-02-02T10:39:13.379Z", "metadata": {"doi": "10.25504/FAIRsharing.2abjs5", "name": "FAIRsharing", "status": "ready", "contacts": [{"contact-name": "FAIRsharing Team", "contact-email": "contact@fairsharing.org"}], "homepage": "https://www.FAIRsharing.org", "citations": [{"doi": "10.1038/s41587-019-0080-8", "pubmed-id": 30940948, "publication-id": 1932}], "identifier": 2521, "description": "FAIRsharing is a FAIR-supporting resource that provides an informative and educational registry on data standards, databases, repositories and policy, alongside search and visualization tools and services that interoperate with other FAIR-enabling resources. FAIRsharing guides consumers to discover, select and use standards, databases, repositories and policy with confidence, and producers to make their resources more discoverable, more widely adopted and cited. Each record in FAIRsharing is curated in collaboration with the maintainers of the resource themselves, ensuring that the metadata in the FAIRsharing registry is accurate and timely. Every record is manually reviewed at least once a year. Records can be collated into collections, based on a project, society or organisation, or Recommendations, where they are collated around a policy, such as a journal or funder data policy.", "abbreviation": "FAIRsharing", "access-points": [{"url": "https://fairsharing.org/api", "name": "API", "type": "REST"}], "support-links": [{"url": "contact@fairsharing.org", "name": "Contact email", "type": "Support email"}, {"url": "https://fairsharing.org/educational/", "name": "Educational Documentation", "type": "Help documentation"}, {"url": "https://twitter.com/fairsharing_org", "name": "@FAIRsharing_org", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "https://www.fairsharing.org", "name": "Search", "type": "data access"}, {"url": "https://fairsharing.org/advanced-search", "name": "Advanced Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010142", "name": "re3data:r3d100010142", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004177", "name": "SciCrunch:RRID:SCR_004177", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001004", "bsg-d001004"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Humanities", "Natural Science", "Earth Science", "Agriculture", "Life Science", "Biomedical Science"], "domains": ["FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: FAIRsharing", "abbreviation": "FAIRsharing", "url": "https://fairsharing.org/10.25504/FAIRsharing.2abjs5", "doi": "10.25504/FAIRsharing.2abjs5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FAIRsharing is a FAIR-supporting resource that provides an informative and educational registry on data standards, databases, repositories and policy, alongside search and visualization tools and services that interoperate with other FAIR-enabling resources. FAIRsharing guides consumers to discover, select and use standards, databases, repositories and policy with confidence, and producers to make their resources more discoverable, more widely adopted and cited. Each record in FAIRsharing is curated in collaboration with the maintainers of the resource themselves, ensuring that the metadata in the FAIRsharing registry is accurate and timely. Every record is manually reviewed at least once a year. Records can be collated into collections, based on a project, society or organisation, or Recommendations, where they are collated around a policy, such as a journal or funder data policy.", "publications": [{"id": 1932, "pubmed_id": 30940948, "title": "FAIRsharing as a community approach to standards, repositories and policies.", "year": 2019, "url": "http://doi.org/10.1038/s41587-019-0080-8", "authors": "Sansone SA,McQuilton P,Rocca-Serra P,Gonzalez-Beltran A,Izzo M,Lister AL,Thurston M", "journal": "Nat Biotechnol", "doi": "10.1038/s41587-019-0080-8", "created_at": "2021-09-30T08:25:57.481Z", "updated_at": "2021-09-30T08:25:57.481Z"}, {"id": 2594, "pubmed_id": 27189610, "title": "BioSharing: curated and crowd-sourced metadata standards, databases and data policies in the life sciences.", "year": 2016, "url": "http://doi.org/10.1093/database/baw075", "authors": "McQuilton P,Gonzalez-Beltran A,Rocca-Serra P,Thurston M,Lister A,Maguire E,Sansone SA", "journal": "Database (Oxford)", "doi": "10.1093/database/baw075", "created_at": "2021-09-30T08:27:18.329Z", "updated_at": "2021-09-30T08:27:18.329Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2101, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3636", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-19T15:41:25.570Z", "updated-at": "2022-02-08T10:46:32.266Z", "metadata": {"doi": "10.25504/FAIRsharing.97da30", "name": "A Comprehensive Database of Published Microbial Signatures", "status": "ready", "contacts": [{"contact-name": "Levi Waldron", "contact-email": "levi.waldron@sph.cuny.edu", "contact-orcid": "0000-0003-2725-0694"}], "homepage": "https://bugsigdb.org", "citations": [], "identifier": 3636, "description": "BugSigDB is a Semantic MediaWiki for manually-curated summaries of the design, execution, and signatures resulting from human microbiome studies. It standardizes microbial taxa using the NCBI taxonomy, study conditions using the Experimental Factor Ontology, and sampled body sites using the Uberon Anatomy Ontology. It also collects information on study design, sample size, experimental methods, statistical analysis, and microbial diversity. Data can be viewed on the site or exported for bulk analysis. ", "abbreviation": "BugSigDB", "data-curation": {"url": "https://bugsigdb.org/Help:Contents", "type": "manual"}, "support-links": [{"url": "https://bugsigdb.org/Special:MyLanguage/Help:Contents", "type": "Help documentation"}, {"url": "https://github.com/waldronlab/BugSigDB/discussions", "type": "Forum"}, {"url": "https://github.com/waldronlab/BugSigDB/issues", "name": "Report an issue", "type": "Contact form"}, {"url": "https://bugsigdb.org/Project:About", "name": "About", "type": "Help documentation"}], "year-creation": 2021, "data-processes": [{"url": "https://bugsigdb.org/Special:RunQuery/Drilldown?_run=1", "name": "Filter & browse projects", "type": "data access"}, {"url": "https://bugsigdb.org/Special:FormEdit/Study", "name": "Create a study", "type": "data curation"}], "deprecation-reason": "", "data-access-condition": {"url": "https://bugsigdb.org/Main_Page", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://bugsigdb.org/Help:Contents", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Taxonomy", "Health Science", "Epidemiology"], "domains": ["Taxonomic classification", "Microbiome"], "taxonomies": ["Microbiota"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: A Comprehensive Database of Published Microbial Signatures", "abbreviation": "BugSigDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.97da30", "doi": "10.25504/FAIRsharing.97da30", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: BugSigDB is a Semantic MediaWiki for manually-curated summaries of the design, execution, and signatures resulting from human microbiome studies. It standardizes microbial taxa using the NCBI taxonomy, study conditions using the Experimental Factor Ontology, and sampled body sites using the Uberon Anatomy Ontology. It also collects information on study design, sample size, experimental methods, statistical analysis, and microbial diversity. Data can be viewed on the site or exported for bulk analysis. ", "publications": [], "licence-links": [{"licence-name": "Open Data Commons Attribution License (ODC-BY)", "licence-id": 619, "link-id": 2511, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2106", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:31.059Z", "metadata": {"doi": "10.25504/FAIRsharing.ybxnhg", "name": "The Zebrafish Information Network", "status": "ready", "contacts": [{"contact-name": "Doug Howe", "contact-email": "dhowe@zfin.org", "contact-orcid": "0000-0001-5831-7439"}], "homepage": "https://zfin.org/", "citations": [{"doi": "10.1093/nar/gky1090", "pubmed-id": 30407545, "publication-id": 2073}], "identifier": 2106, "description": "The Zebrafish Information Network, ZFIN, serves as the primary community database resource for the laboratory use of zebrafish. We develop and support integrated zebrafish genetic, genomic, developmental and physiological information and link this information extensively to corresponding data in other model organism and human databases.", "abbreviation": "ZFIN", "support-links": [{"url": "zfinadmn@zfin.org", "name": "General Contact", "type": "Support email"}, {"url": "zfinadmin@uoregon.edu", "name": "General Contact", "type": "Support email"}, {"url": "https://wiki.zfin.org/display/general/ZFIN+Tips", "name": "Help and Tips", "type": "Help documentation"}, {"url": "https://zfin.org/zf_info/glossary.html", "name": "ZFIN Glossary", "type": "Help documentation"}, {"url": "https://zfin.atlassian.net/wiki/spaces/news/overview", "name": "News", "type": "Help documentation"}, {"url": "https://wiki.zfin.org/display/general/ZFIN+Zebrafish+Nomenclature+Conventions", "name": "Zebrafish Nomenclature Conventions", "type": "Help documentation"}, {"url": "https://twitter.com/zfinmod", "name": "@zfinmod", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Zebrafish_Information_Network", "name": "Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 1997, "data-processes": [{"url": "https://zfin.org/downloads", "name": "Download", "type": "data release"}, {"url": "https://zfin.org/action/blast/blast", "name": "BLAST", "type": "data access"}, {"url": "https://zfin.org/action/gbrowse/", "name": "GBrowse", "type": "data access"}, {"url": "https://zfin.org/action/submit-data", "name": "Submit", "type": "data curation"}, {"url": "https://zfin.org/search?category=&q=", "name": "Search", "type": "data access"}, {"url": "https://zfin.org/action/marker/search", "name": "Gene Search", "type": "data access"}, {"url": "https://zfin.org/action/fish/search", "name": "Mutant Search", "type": "data access"}, {"url": "https://zfin.org/action/expression/search", "name": "Gene Expression Data Search", "type": "data access"}, {"url": "https://zfin.org/action/antibody/search", "name": "Antibody Search", "type": "data access"}, {"url": "https://zfin.org/action/publication/search", "name": "Publication Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010421", "name": "re3data:r3d100010421", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002560", "name": "SciCrunch:RRID:SCR_002560", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000575", "bsg-d000575"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Animal Physiology", "Genetics", "Developmental Biology"], "domains": ["Expression data", "Bibliography", "Model organism", "Disease process modeling", "Mutation", "Phenotype", "Gene", "Allele", "Genome"], "taxonomies": ["Danio rerio"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Zebrafish Information Network", "abbreviation": "ZFIN", "url": "https://fairsharing.org/10.25504/FAIRsharing.ybxnhg", "doi": "10.25504/FAIRsharing.ybxnhg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Zebrafish Information Network, ZFIN, serves as the primary community database resource for the laboratory use of zebrafish. We develop and support integrated zebrafish genetic, genomic, developmental and physiological information and link this information extensively to corresponding data in other model organism and human databases.", "publications": [{"id": 644, "pubmed_id": 16381936, "title": "The Zebrafish Information Network: the zebrafish model organism database.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj086", "authors": "Sprague J, Bayraktaroglu L, Clements D, Conlin T, Fashena D, Frazer K, Haendel M, Howe DG, Mani P, Ramachandran S, Schaper K, Segerdell E, Song P, Sprunger B, Taylor S, Van Slyke CE, Westerfield M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj086", "created_at": "2021-09-30T08:23:30.887Z", "updated_at": "2021-09-30T08:23:30.887Z"}, {"id": 651, "pubmed_id": 21036866, "title": "ZFIN: enhancements and updates to the Zebrafish Model Organism Database.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1077", "authors": "Bradford Y, Conlin T, Dunn N, Fashena D, Frazer K, Howe DG, Knight J, Mani P, Martin R, Moxon SA, Paddock H, Pich C, Ramachandran S, Ruef BJ, Ruzicka L, Bauer Schaper H, Schaper K, Shao X, Singer A, Sprague J, Sprunger B, Van Slyke C, Westerfield M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1077", "created_at": "2021-09-30T08:23:31.835Z", "updated_at": "2021-09-30T08:23:31.835Z"}, {"id": 1190, "pubmed_id": 12519991, "title": "The Zebrafish Information Network (ZFIN): the zebrafish model organism database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg027", "authors": "Sprague J,Clements D,Conlin T,Edwards P,Frazer K,Schaper K,Segerdell E,Song P,Sprunger B,Westerfield M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg027", "created_at": "2021-09-30T08:24:32.330Z", "updated_at": "2021-09-30T11:29:02.478Z"}, {"id": 1195, "pubmed_id": 10354586, "title": "Zebrafish in the Net.", "year": 1999, "url": "http://doi.org/10.1016/s0168-9525(99)01741-2", "authors": "Westerfield M,Doerry E,Douglas S", "journal": "Trends Genet", "doi": "10.1016/s0168-9525(99)01741-2", "created_at": "2021-09-30T08:24:32.815Z", "updated_at": "2021-09-30T08:24:32.815Z"}, {"id": 1212, "pubmed_id": 20836073, "title": "Exploring zebrafish genomic, functional and phenotypic data using ZFIN.", "year": 2010, "url": "http://doi.org/10.1002/0471250953.bi0118s31", "authors": "Ramachandran S,Ruef B,Pich C,Sprague J", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0118s31.", "created_at": "2021-09-30T08:24:35.075Z", "updated_at": "2021-09-30T08:24:35.075Z"}, {"id": 2072, "pubmed_id": 21924170, "title": "Data extraction, transformation, and dissemination through ZFIN.", "year": 2011, "url": "http://doi.org/10.1016/B978-0-12-374814-0.00017-3", "authors": "Howe DG, Frazer K, Fashena D, Ruzicka L, Bradford Y, Ramachandran S, Ruef BJ, Van Slyke C, Singer A, Westerfield M.", "journal": "Methods Cell Biol.", "doi": "10.1016/B978-0-12-374814-0.00017-3", "created_at": "2021-09-30T08:26:13.601Z", "updated_at": "2021-09-30T08:26:13.601Z"}, {"id": 2073, "pubmed_id": 30407545, "title": "The Zebrafish Information Network: new support for non-coding genes, richer Gene Ontology annotations and the Alliance of Genome Resources.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1090", "authors": "Ruzicka L,Howe DG,Ramachandran S,Toro S,Van Slyke CE,Bradford YM,Eagle A,Fashena D,Frazer K,Kalita P,Mani P,Martin R,Moxon ST,Paddock H,Pich C,Schaper K,Shao X,Singer A,Westerfield M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1090", "created_at": "2021-09-30T08:26:13.722Z", "updated_at": "2021-09-30T11:29:27.886Z"}, {"id": 2100, "pubmed_id": 23074187, "title": "ZFIN, the Zebrafish Model Organism Database: increased support for mutants and transgenics.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks938", "authors": "Howe DG, Bradford YM, Conlin T, Eagle AE, Fashena D, Frazer K, Knight J, Mani P, Martin R, Moxon SA, Paddock H, Pich C, Ramachandran S, Ruef BJ, Ruzicka L, Schaper K, Shao X, Singer A, Sprunger B, Van Slyke CE, Westerfield M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks938", "created_at": "2021-09-30T08:26:16.633Z", "updated_at": "2021-09-30T08:26:16.633Z"}, {"id": 2170, "pubmed_id": 17991680, "title": "The Zebrafish Information Network: the zebrafish model organism database provides expanded support for genotypes and phenotypes.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm956", "authors": "Sprague J., Bayraktaroglu L., Bradford Y. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm956", "created_at": "2021-09-30T08:26:24.566Z", "updated_at": "2021-09-30T08:26:24.566Z"}], "licence-links": [{"licence-name": "ZFIN Terms of Use", "licence-id": 882, "link-id": 48, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2242", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-30T17:56:25.000Z", "updated-at": "2021-12-06T10:48:37.283Z", "metadata": {"doi": "10.25504/FAIRsharing.g0c5qn", "name": "enviPath", "status": "ready", "contacts": [{"contact-name": "J\u00f6rg Wicker", "contact-email": "admin@envipath.org", "contact-orcid": "0000-0003-0533-3368"}], "homepage": "https://envipath.org", "identifier": 2242, "description": "enviPath is both a database and a prediction system, for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways, and supports the annotation of pathways with experimental and environmental conditions. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "abbreviation": "enviPath", "support-links": [{"url": "https://lists.sourceforge.net/lists/listinfo/envipath-user", "type": "Mailing list"}, {"url": "https://envipath.org/wiki/index.php/Main_Page", "type": "Help documentation"}, {"url": "https://twitter.com/envipath", "type": "Twitter"}], "year-creation": 2015, "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012715", "name": "re3data:r3d100012715", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000716", "bsg-d000716"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science"], "domains": ["Environmental contaminant", "Biotransformation"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["Germany", "Switzerland"], "name": "FAIRsharing record for: enviPath", "abbreviation": "enviPath", "url": "https://fairsharing.org/10.25504/FAIRsharing.g0c5qn", "doi": "10.25504/FAIRsharing.g0c5qn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: enviPath is both a database and a prediction system, for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways, and supports the annotation of pathways with experimental and environmental conditions. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "publications": [{"id": 1807, "pubmed_id": 26582924, "title": "enviPath - The environmental contaminant biotransformation pathway resource.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1229", "authors": "Wicker J,Lorsbach T,Gutlein M,Schmid E,Latino D,Kramer S,Fenner K", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1229", "created_at": "2021-09-30T08:25:42.861Z", "updated_at": "2021-09-30T11:29:21.094Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2903", "type": "fairsharing-records", "attributes": {"created-at": "2020-03-11T10:27:30.000Z", "updated-at": "2022-02-08T10:31:51.385Z", "metadata": {"doi": "10.25504/FAIRsharing.91c279", "name": "Genome Variation Map", "status": "ready", "contacts": [{"contact-name": "GVM Helpdesk", "contact-email": "gvm@big.ac.cn"}], "homepage": "https://bigd.big.ac.cn/gvm/", "citations": [{"doi": "10.1093/nar/gkx986", "pubmed-id": 29069473, "publication-id": 723}], "identifier": 2903, "description": "The Genome Variation Map (GVM) is a public data repository of genome variations, including single nucleotide polymorphisms (SNP) and small insertions and deletions (INDEL), with particular focuses on human as well as cultivated plants and domesticated animals. GVM collects, integrates and visualizes genome variations for a wide variety of species, accepts submissions of different types of genome variations from all over the world and provides open access for all publicly available data. Based on a large collection of raw sequence data from public repositories, GVM integrates a large number of genome variants for a number of species and provides web interfaces for data submission, search, browse and visualization.", "abbreviation": "GVM", "support-links": [{"url": "https://bigd.big.ac.cn/gvm/faq", "name": "GVM FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://bigd.big.ac.cn/gvm/instruction", "name": "Submission Instructions", "type": "Help documentation"}, {"url": "https://bigd.big.ac.cn/gvm/contact", "name": "Contact Information", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://bigd.big.ac.cn/gvm/search", "name": "Search", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gvm/gbrowse", "name": "Genome Browser", "type": "data access"}, {"url": "https://bigd.big.ac.cn/gvm/submit/usersubmit", "name": "Submit", "type": "data curation"}, {"url": "https://bigd.big.ac.cn/gvm/download", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001404", "bsg-d001404"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics"], "domains": ["Nucleic acid sequence", "Single nucleotide polymorphism", "Indel"], "taxonomies": ["Ailuropoda melanoleuca", "Anas platyrhynchos", "Bos taurus", "Brassica napus", "Canis familiaris", "Cannabis sativa", "Capra hircus", "Catharanthus roseus", "Cucumis sativus", "Daucus carota", "Equus caballus", "Equus ferus", "Felis catus", "Gallus gallus", "Ganoderma lucidum", "Glycine max", "Gossypium hirsutum", "Hevea brasiliensis", "Homo sapiens", "Jatropha curcus", "Manihot esculenta", "Orcinus orca", "Oryza sativa", "Ovis aries", "Phaseolus vulgaris", "Phoenix dactylifera", "Phyllostachys heterocycle", "Populus trichocarpa", "Prunus mume", "Salvia miltiorrhiza", "Solanum lycopersicum", "Sorghum bicolor", "Sus scrofa", "Triticum aestivum", "Triticum urartu", "Vitis vinifera", "Zea mays"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: Genome Variation Map", "abbreviation": "GVM", "url": "https://fairsharing.org/10.25504/FAIRsharing.91c279", "doi": "10.25504/FAIRsharing.91c279", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Genome Variation Map (GVM) is a public data repository of genome variations, including single nucleotide polymorphisms (SNP) and small insertions and deletions (INDEL), with particular focuses on human as well as cultivated plants and domesticated animals. GVM collects, integrates and visualizes genome variations for a wide variety of species, accepts submissions of different types of genome variations from all over the world and provides open access for all publicly available data. Based on a large collection of raw sequence data from public repositories, GVM integrates a large number of genome variants for a number of species and provides web interfaces for data submission, search, browse and visualization.", "publications": [{"id": 723, "pubmed_id": 29069473, "title": "Genome Variation Map: a data repository of genome variations in BIG Data Center.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx986", "authors": "Song S,Tian D,Li C,Tang B,Dong L,Xiao J,Bao Y,Zhao W,He H,Zhang Z", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx986", "created_at": "2021-09-30T08:23:39.676Z", "updated_at": "2021-09-30T11:28:49.325Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 China Mainland (CC BY 3.0 CN)", "licence-id": 163, "link-id": 427, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3013", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-22T10:27:21.000Z", "updated-at": "2022-02-08T10:40:38.648Z", "metadata": {"doi": "10.25504/FAIRsharing.23823e", "name": "DDBJ Sequence Read Archive", "status": "ready", "contacts": [], "homepage": "https://www.ddbj.nig.ac.jp/dra/index-e.html", "citations": [], "identifier": 3013, "description": "DDBJ Sequence Read Archive (DRA) is an archive database for output data generated by next-generation sequencing machines including Roche 454 GS System\u00ae, Illumina Genome Analyzer\u00ae, Applied Biosystems SOLiD\u00ae System, and others. DRA is a member of the International Nucleotide Sequence Database Collaboration (INSDC) and archiving the data in a close collaboration with NCBI Sequence Read Archive (SRA) and EBI Sequence Read Archive (ERA).", "abbreviation": "DRA", "support-links": [{"url": "https://www.ddbj.nig.ac.jp/faq/en/index-e.html?tag=dra", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://docs.google.com/spreadsheets/d/1DTdUQ-WWOMjOA2eYQWmFYUB24hJysuwhvHLJoDFX4rc/edit#gid=0", "name": "DRA metadata examples", "type": "Help documentation"}, {"url": "https://www.ddbj.nig.ac.jp/dra/example-e.html", "name": "XML examples", "type": "Help documentation"}, {"url": "https://github.com/ddbj/pub/tree/master/docs/dra", "name": "DDBJ Sequence Read Archive (DRA) XML Schema", "type": "Github"}], "data-processes": [{"url": "ftp://ftp.ddbj.nig.ac.jp/ddbj_database/dra/fastq", "name": "Download FastQ", "type": "data access"}, {"url": "ftp://ftp.ddbj.nig.ac.jp/ddbj_database/dra/sralite/ByExp/litesra/", "name": "Download SRA", "type": "data access"}, {"url": "https://github.com/ddbj/pub/tree/master/docs/dra/xsd", "name": "Download XML", "type": "data access"}, {"url": "https://ddbj.nig.ac.jp/DRASearch/", "name": "Search", "type": "data access"}, {"url": "https://www.ddbj.nig.ac.jp/dra/submission-e.html", "name": "Submit", "type": "data curation"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001521", "bsg-d001521"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Functional Genomics", "Metagenomics", "Genomics", "Bioinformatics", "Data Management", "Virology", "Life Science", "Epidemiology"], "domains": ["Nucleic acid sequence", "DNA sequence data", "Annotation", "Sequence annotation", "Genomic assembly", "Genome alignment", "Nucleotide", "Next generation DNA sequencing", "Allele"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Japan"], "name": "FAIRsharing record for: DDBJ Sequence Read Archive", "abbreviation": "DRA", "url": "https://fairsharing.org/10.25504/FAIRsharing.23823e", "doi": "10.25504/FAIRsharing.23823e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DDBJ Sequence Read Archive (DRA) is an archive database for output data generated by next-generation sequencing machines including Roche 454 GS System\u00ae, Illumina Genome Analyzer\u00ae, Applied Biosystems SOLiD\u00ae System, and others. DRA is a member of the International Nucleotide Sequence Database Collaboration (INSDC) and archiving the data in a close collaboration with NCBI Sequence Read Archive (SRA) and EBI Sequence Read Archive (ERA).", "publications": [], "licence-links": [{"licence-name": "DDBJ Policies and Disclaimers", "licence-id": 230, "link-id": 1842, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2741", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-14T12:15:28.000Z", "updated-at": "2022-02-08T10:29:38.551Z", "metadata": {"doi": "10.25504/FAIRsharing.33269d", "name": "Human Transcriptional Regulation Interactions database", "status": "ready", "contacts": [], "homepage": "http://www.lbbc.ibb.unesp.br/htri/index.jsp", "citations": [{"doi": "10.1186/1471-2164-13-405", "pubmed-id": 22900683, "publication-id": 2487}], "identifier": 2741, "description": "The Human Transcriptional Regulation Interactions database (HTRIdb) is a repository of experimentally verified interactions among human transcription factors (TFs) and their respective target genes. It has been constructed to be an open-access and user-friendly database from which data on regulatory interactions among human TFs and their respective target genes can be easily extracted and then used, among other purposes, for building a global or a biological process-specific network of human transcriptional regulation interactions.", "abbreviation": "HTRIdb", "support-links": [{"url": "http://www.lbbc.ibb.unesp.br/htri/ava.jsp?f=n", "name": "Contact Form", "type": "Contact form"}, {"url": "http://www.lbbc.ibb.unesp.br/htri/statistics.jsp", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.lbbc.ibb.unesp.br/htri/tutorial.jsp", "name": "Tutorial", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "http://www.lbbc.ibb.unesp.br/htri/search.jsp", "name": "Search", "type": "data access"}, {"url": "http://www.lbbc.ibb.unesp.br/htri/pagdown.jsp", "name": "Download", "type": "data access"}, {"url": "http://www.lbbc.ibb.unesp.br/htri/up.jsp?f=n", "name": "Data Upload", "type": "data curation"}], "deprecation-reason": ""}, "legacy-ids": ["biodbcore-001239", "bsg-d001239"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Life Science"], "domains": ["Experimental measurement", "Regulation of gene expression", "Biological regulation", "Molecular interaction", "Transcription factor", "Experimentally determined", "Regulatory region", "Target"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Brazil"], "name": "FAIRsharing record for: Human Transcriptional Regulation Interactions database", "abbreviation": "HTRIdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.33269d", "doi": "10.25504/FAIRsharing.33269d", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Human Transcriptional Regulation Interactions database (HTRIdb) is a repository of experimentally verified interactions among human transcription factors (TFs) and their respective target genes. It has been constructed to be an open-access and user-friendly database from which data on regulatory interactions among human TFs and their respective target genes can be easily extracted and then used, among other purposes, for building a global or a biological process-specific network of human transcriptional regulation interactions.", "publications": [{"id": 2487, "pubmed_id": 22900683, "title": "HTRIdb: an open-access database for experimentally verified human transcriptional regulation interactions.", "year": 2012, "url": "http://doi.org/10.1186/1471-2164-13-405", "authors": "Bovolenta LA,Acencio ML,Lemke N", "journal": "BMC Genomics", "doi": "10.1186/1471-2164-13-405", "created_at": "2021-09-30T08:27:04.930Z", "updated_at": "2021-09-30T08:27:04.930Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3295", "type": "fairsharing-records", "attributes": {"created-at": "2021-03-05T14:22:44.000Z", "updated-at": "2022-02-08T10:36:42.632Z", "metadata": {"doi": "10.25504/FAIRsharing.b9e4bd", "name": "AIP Mutation Database", "status": "ready", "contacts": [{"contact-name": "Dr Serban Radian", "contact-email": "s.radian@qmul.ac.uk"}], "homepage": "https://aip.fipapatients.org", "identifier": 3295, "description": "The AIP Mutation Database collects variants (both pathogenic, non-pathogenic and with unknown significance) related to pituitary adenoma predisposition (PAP) and to familial isolated pituitary adenoma (FIPA) syndromes and their clinical information in order to understand better the molecular and clinical details of the disease. Variants are reported according to the GRCh37/hg19 assembly of the human genome and the reference sequence used is the AIP Locus Reference Genomic.", "abbreviation": null, "support-links": [{"url": "giampaolo.trivellin@gmail.com", "name": "Dr Giampaolo Trivellin", "type": "Support email"}, {"url": "mary.dang@nhs.net", "name": "Dr Mary Dang", "type": "Support email"}, {"url": "m.korbonits@qmul.ac.uk", "name": "Prof Mrta Korbonits", "type": "Support email"}, {"url": "https://aip.fipapatients.org/menu/main/background", "name": "AIP Background", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://aip.fipapatients.org/menu/data/dataexplorer?entity=aip_patients&hideselect=true", "name": "Browse Patient Data", "type": "data access"}, {"url": "https://aip.fipapatients.org/menu/data/dataexplorer?entity=aip_mutations&hideselect=true", "name": "Browse Mutations", "type": "data access"}, {"url": "https://aip.fipapatients.org/menu/plugins/contact", "name": "View Reference Sequences", "type": "data access"}]}, "legacy-ids": ["biodbcore-001810", "bsg-d001810"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Biomedical Science"], "domains": ["Mutation", "Disease", "Genome"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: AIP Mutation Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.b9e4bd", "doi": "10.25504/FAIRsharing.b9e4bd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AIP Mutation Database collects variants (both pathogenic, non-pathogenic and with unknown significance) related to pituitary adenoma predisposition (PAP) and to familial isolated pituitary adenoma (FIPA) syndromes and their clinical information in order to understand better the molecular and clinical details of the disease. Variants are reported according to the GRCh37/hg19 assembly of the human genome and the reference sequence used is the AIP Locus Reference Genomic.", "publications": [], "licence-links": [{"licence-name": "AIP Copyright and Disclaimer", "licence-id": 24, "link-id": 2421, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3691", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-17T10:11:20.507Z", "updated-at": "2022-01-07T10:15:26.052Z", "metadata": {"name": "GlobalFungi", "status": "ready", "contacts": [{"contact-name": "General Information", "contact-email": "info@globalfungi.com", "contact-orcid": null}, {"contact-name": "Petr Baldrian", "contact-email": "baldrian@biomed.cas.cz", "contact-orcid": "0000-0002-8983-2721"}], "homepage": "https://globalfungi.com/", "citations": [{"doi": "10.1038/s41597-020-0567-7", "pubmed-id": null, "publication-id": 3179}], "identifier": 3691, "description": "GlobalFungi is a collection and validation of data published on the composition of fungal communities in terrestrial environments including soil and plant-associated habitats. Users can search for individual sequences, fungal species hypotheses, species or genera, to get a visual representation of their distribution in the environment and to access and download sequence data and metadata. In addition, the user interface also allows authors to submit data from studies not yet covered and in this way to help to build the resource for the community of researchers in systematics, biogeography, and ecology of fungi.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "https://github.com/VetrovskyTomas/GlobalFungi", "name": "GitHub Repository", "type": "Github"}, {"url": "https://twitter.com/GlobalFungi", "name": "@globalfungi ", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://globalfungi.com", "name": "Search and Browse Available", "type": "data access"}, {"url": "https://globalfungi.com", "name": "Submission Available", "type": "data curation"}], "deprecation-reason": null, "data-access-condition": {"url": "https://globalfungi.com/", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://globalfungi.com/", "type": "open"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Ecology"], "domains": ["Geographical location", "Climate", "Sequence"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Czech Republic", "Norway", "Italy", "Japan"], "name": "FAIRsharing record for: GlobalFungi", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3691", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: GlobalFungi is a collection and validation of data published on the composition of fungal communities in terrestrial environments including soil and plant-associated habitats. Users can search for individual sequences, fungal species hypotheses, species or genera, to get a visual representation of their distribution in the environment and to access and download sequence data and metadata. In addition, the user interface also allows authors to submit data from studies not yet covered and in this way to help to build the resource for the community of researchers in systematics, biogeography, and ecology of fungi.", "publications": [{"id": 3179, "pubmed_id": null, "title": "GlobalFungi, a global database of fungal occurrences from high-throughput-sequencing metabarcoding studies", "year": 2020, "url": "http://dx.doi.org/10.1038/s41597-020-0567-7", "authors": "V\u011btrovsk\u00fd, Tom\u00e1\u0161; Morais, Daniel; Kohout, Petr; Lepinay, Cl\u00e9mentine; Algora, Camelia; Awokunle Holl\u00e1, Sandra; Bahnmann, Barbara Doreen; B\u00edlohn\u011bd\u00e1, Kv\u011bta; Brabcov\u00e1, Vendula; D\u2019Al\u00f2, Federica; Human, Zander Rainier; Jomura, Mayuko; Kola\u0159\u00edk, Miroslav; Kvasni\u010dkov\u00e1, Jana; Llad\u00f3, Salvador; L\u00f3pez-Mond\u00e9jar, Rub\u00e9n; Martinovi\u0107, Tijana; Ma\u0161\u00ednov\u00e1, Tereza; Mesz\u00e1ro\u0161ov\u00e1, Lenka; Michal\u010d\u00edkov\u00e1, Lenka; Michalov\u00e1, Tereza; Mundra, Sunil; Navr\u00e1tilov\u00e1, Diana; Odriozola, I\u00f1aki; Pich\u00e9-Choquette, Sarah; \u0160tursov\u00e1, Martina; \u0160vec, Karel; Tl\u00e1skal, Vojt\u011bch; Urbanov\u00e1, Michaela; Vlk, Luk\u00e1\u0161; Vo\u0159\u00ed\u0161kov\u00e1, Jana; \u017dif\u010d\u00e1kov\u00e1, Lucia; Baldrian, Petr; ", "journal": "Sci Data", "doi": "10.1038/s41597-020-0567-7", "created_at": "2022-01-07T09:42:47.945Z", "updated_at": "2022-01-07T09:42:47.945Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3320", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-15T13:27:47.000Z", "updated-at": "2022-02-08T10:37:44.184Z", "metadata": {"doi": "10.25504/FAIRsharing.11c072", "name": "Brain Analysis Library of Spatial maps and Atlases", "status": "ready", "contacts": [{"contact-name": "David Van Essen", "contact-email": "vanessen@wustl.edu"}], "homepage": "https://balsa.wustl.edu", "citations": [{"doi": "10.1016/j.neuroimage.2016.04.002", "pubmed-id": 27074495, "publication-id": 1977}], "identifier": 3320, "description": "Brain Analysis Library of Spatial maps and Atlases (BALSA) is a database for hosting and sharing neuroimaging and neuroanatomical datasets for human and primate species. BALSA houses curated, user-created Study datasets, extensively analyzed neuroimaging data associated with published figures and Reference datasets mapped to brain atlas surfaces and volumes in human and nonhuman primates as a general resource (e.g., published cortical parcellations).", "abbreviation": "BALSA", "support-links": [{"url": "https://balsa.wustl.edu/about/submission", "name": "How To Submit Data", "type": "Help documentation"}, {"url": "https://balsa.wustl.edu/about/help", "name": "Help", "type": "Help documentation"}, {"url": "http://www.humanconnectome.org/contact/#subscribe", "name": "Human Connectome Project Mailing List", "type": "Mailing list"}, {"url": "https://balsa.wustl.edu/about", "name": "About", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "https://balsa.wustl.edu/study/index", "name": "Browse Studies", "type": "data access"}, {"url": "https://balsa.wustl.edu/", "name": "Browse and Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013646", "name": "re3data:r3d100013646", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001835", "bsg-d001835"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Neurobiology"], "domains": ["Bioimaging", "Magnetic resonance imaging", "Functional magnetic resonance imaging", "Image", "Brain imaging"], "taxonomies": ["Primate"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Brain Analysis Library of Spatial maps and Atlases", "abbreviation": "BALSA", "url": "https://fairsharing.org/10.25504/FAIRsharing.11c072", "doi": "10.25504/FAIRsharing.11c072", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Brain Analysis Library of Spatial maps and Atlases (BALSA) is a database for hosting and sharing neuroimaging and neuroanatomical datasets for human and primate species. BALSA houses curated, user-created Study datasets, extensively analyzed neuroimaging data associated with published figures and Reference datasets mapped to brain atlas surfaces and volumes in human and nonhuman primates as a general resource (e.g., published cortical parcellations).", "publications": [{"id": 1977, "pubmed_id": 27074495, "title": "The Brain Analysis Library of Spatial maps and Atlases (BALSA) database.", "year": 2016, "url": "http://doi.org/10.1016/j.neuroimage.2016.04.002", "authors": "Van Essen DC,Smith J,Glasser MF,Elam J,Donahue CJ,Dierker DL,Reid EK,Coalson T,Harwell J", "journal": "Neuroimage", "doi": "10.1016/j.neuroimage.2016.04.002", "created_at": "2021-09-30T08:26:02.449Z", "updated_at": "2021-09-30T08:26:02.449Z"}], "licence-links": [{"licence-name": "BALSA: Data Access varies depending on dataset", "licence-id": 55, "link-id": 441, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3015", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-25T13:15:00.000Z", "updated-at": "2022-02-08T10:40:57.044Z", "metadata": {"doi": "10.25504/FAIRsharing.04fcf5", "name": "EMDataResource", "status": "ready", "contacts": [{"contact-name": "Catherine L. Lawson", "contact-email": "cathy.lawson@rutgers.edu"}], "homepage": "http://www.emdataresource.org/", "identifier": 3015, "description": "Three-dimensional Electron Microscopy (3DEM) has become a key experimental method in structural biology for a broad spectrum of biological specimens from molecules to cells. The EMDataResource project provides a unified portal for deposition, retrieval and analysis of 3DEM density maps, atomic models and associated metadata.", "abbreviation": "EMDataResource", "access-points": [{"url": "https://www.ebi.ac.uk/pdbe/api/doc/emdb.html", "name": "REST calls based on EMDB data", "type": "REST"}], "support-links": [{"url": "https://www.facebook.com/emdataresource", "name": "Facebook", "type": "Facebook"}, {"url": "http://www.emdataresource.org/allnews.html", "name": "News", "type": "Blog/News"}, {"url": "help@emdataresource.org", "name": "General contact", "type": "Support email"}, {"url": "http://www.emdataresource.org/faq.html", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.emdataresource.org/dictionaries.html", "name": "3DEM Dictionaries", "type": "Help documentation"}, {"url": "http://www.emdataresource.org/conventions.html", "name": "3DEM conventions", "type": "Help documentation"}, {"url": "http://www.emdataresource.org/validation.html", "name": "Electron Microscopy Validation Task Force", "type": "Help documentation"}, {"url": "http://www.emdataresource.org/rss.xml", "type": "Blog/News"}], "year-creation": 2007, "data-processes": [{"url": "http://www.emdataresource.org/solrsearch.html", "name": "Search", "type": "data access"}, {"url": "http://www.emdataresource.org/coronavirus_search.html", "name": "EMDB holdings for Coronavirus-Related Structures", "type": "data access"}, {"url": "http://www.emdataresource.org/search.html", "name": "Search for 3DEM Structures and Data", "type": "data access"}, {"url": "http://www.emdataresource.org/emdbaccess.html", "name": "Download", "type": "data access"}, {"url": "http://www.emdataresource.org/deposit.html", "name": "Deposit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010882", "name": "re3data:r3d100010882", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003207", "name": "SciCrunch:RRID:SCR_003207", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001523", "bsg-d001523"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Virology", "Life Science", "Epidemiology"], "domains": ["Validation", "Nucleic acid", "Cell", "Electron microscopy", "Data model", "Viral sequence", "Tissue"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States"], "name": "FAIRsharing record for: EMDataResource", "abbreviation": "EMDataResource", "url": "https://fairsharing.org/10.25504/FAIRsharing.04fcf5", "doi": "10.25504/FAIRsharing.04fcf5", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Three-dimensional Electron Microscopy (3DEM) has become a key experimental method in structural biology for a broad spectrum of biological specimens from molecules to cells. The EMDataResource project provides a unified portal for deposition, retrieval and analysis of 3DEM density maps, atomic models and associated metadata.", "publications": [{"id": 2978, "pubmed_id": 26578576, "title": "EMDataBank unified data resource for 3DEM.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1126", "authors": "Lawson CL,Patwardhan A,Baker ML,Hryc C,Garcia ES,Hudson BP,Lagerstedt I,Ludtke SJ,Pintilie G,Sala R,Westbrook JD,Berman HM,Kleywegt GJ,Chiu W", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1126", "created_at": "2021-09-30T08:28:06.973Z", "updated_at": "2021-09-30T11:29:49.395Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3697", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-26T15:17:51.387Z", "updated-at": "2022-01-05T11:51:54.165Z", "metadata": {"name": "Fast Evidence Interoperability Resources (FEvIR) Platform", "status": "in_development", "contacts": [{"contact-name": "General Contact", "contact-email": "support@computablepublishing.com", "contact-orcid": null}], "homepage": "https://fevir.net/", "citations": [], "identifier": 3697, "description": "The Fast Evidence Interoperability Resources (FEvIR) Platform is a website and cloud-based system for creating, editing, viewing, and sharing scientific knowledge in an electronic form designed to standardize data exchange using the Health Level Seven International (HL7\u00ae) Fast Healthcare Interoperability Resources (FHIR\u00ae) standard. The FEvIR Platform is in development to support living systematic reviews, living guidelines, sharing across citation repositories, knowledge portals, and other projects related to scientific communication. The FEvIR Platform includes Builder, Viewer and Converter tools that support the creation and visualization of FHIR Resources for representing evidence, evidence variables, evidence reports, citations, and knowledge artifact assessments. For example, you can use the Citation Builder to create a citation by entering data in easy-to-use data entry fields (like Title, Abstract, Last revision date, etc.) and the system will automatically create a citation record in a FHIR Citation Resource form for machine use. You can use the Citation Viewer to view any citation in the FHIR form and view it in an easy-to-understand form. And you can use the MEDLINE-to-FEvIR Converter to submit the PubMed Identifier (PMID) and the system will create a full FHIR Citation Resource for you automatically. To support standard terminologies (called Code Systems) we built a CodeSystem Builder and CodeSystem Viewer on the FEvIR Platform.", "abbreviation": "FEvIR", "data-curation": {}, "support-links": [{"url": "https://fevir.net/resources/Project/29394", "name": "FEvIR Platform Project Page", "type": "Other"}, {"url": "https://fevir.net/resources/Citation/29812", "name": "FEvIR Platform Citation", "type": "Other"}], "year-creation": 2021, "data-processes": [{"url": "https://fevir.net/createproject", "name": "Project Builder (login required)", "type": "data curation"}, {"url": "https://fevir.net/createcitation", "name": "Citation Builder (login required)", "type": "data curation"}, {"url": "https://fevir.net/createevidence", "name": "Evidence Builder (login required)", "type": "data curation"}, {"url": "https://fevir.net/creategroup", "name": "Group Builder (login required)", "type": "data curation"}, {"url": "https://fevir.net/createcodeableconcept", "name": "Codeable Concept Builder (login required)", "type": "data curation"}, {"url": "https://fevir.net/knowledgeportaldemo", "name": "Knowledge Portal", "type": "data access"}, {"url": "https://fevir.net/recommendationtableviewer", "name": "Recommendations Viewer", "type": "data access"}, {"url": "https://fevir.net/recommendation_builder.html", "name": "Recommendation Builder", "type": "data curation"}, {"url": "https://fevir.net/content/resources", "name": "Browse Resource List", "type": "data access"}, {"url": "https://fevir.net/fhirentry", "name": "Add JSON", "type": "data curation"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Medicine", "Biomedical Science", "Preclinical Studies"], "domains": ["Evidence"], "taxonomies": ["All"], "user-defined-tags": ["Interoperability"], "countries": ["United States"], "name": "FAIRsharing record for: Fast Evidence Interoperability Resources (FEvIR) Platform", "abbreviation": "FEvIR", "url": "https://fairsharing.org/fairsharing_records/3697", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Fast Evidence Interoperability Resources (FEvIR) Platform is a website and cloud-based system for creating, editing, viewing, and sharing scientific knowledge in an electronic form designed to standardize data exchange using the Health Level Seven International (HL7\u00ae) Fast Healthcare Interoperability Resources (FHIR\u00ae) standard. The FEvIR Platform is in development to support living systematic reviews, living guidelines, sharing across citation repositories, knowledge portals, and other projects related to scientific communication. The FEvIR Platform includes Builder, Viewer and Converter tools that support the creation and visualization of FHIR Resources for representing evidence, evidence variables, evidence reports, citations, and knowledge artifact assessments. For example, you can use the Citation Builder to create a citation by entering data in easy-to-use data entry fields (like Title, Abstract, Last revision date, etc.) and the system will automatically create a citation record in a FHIR Citation Resource form for machine use. You can use the Citation Viewer to view any citation in the FHIR form and view it in an easy-to-understand form. And you can use the MEDLINE-to-FEvIR Converter to submit the PubMed Identifier (PMID) and the system will create a full FHIR Citation Resource for you automatically. To support standard terminologies (called Code Systems) we built a CodeSystem Builder and CodeSystem Viewer on the FEvIR Platform.", "publications": [{"id": 3170, "pubmed_id": null, "title": "Making Science Computable: Advancing Evidence-Based Health Care with Standard Terminologies.", "year": 2021, "url": "https://mailchi.mp/3a6a1fbb8958/30th-isebhc-newsletter-dec-2021-5946756", "authors": "o\tAlper BS, Dehnbostel J, Shahin K, Soares A, Tristan M, Tufte J, for the COVID-19 Knowledge Accelerator (COKA) Initiative", "journal": "ISEHC Newsletter", "doi": "", "created_at": "2021-12-26T15:23:06.671Z", "updated_at": "2021-12-26T15:23:06.671Z"}], "licence-links": [{"licence-name": "FEvIR Acceptable Use Policy", "licence-id": 899, "link-id": 2547, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3569", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-06T09:26:04.665Z", "updated-at": "2022-02-08T10:46:06.512Z", "metadata": {"doi": "10.25504/FAIRsharing.fa85ba", "name": "MetaPhOrs", "status": "ready", "contacts": [{"contact-name": "Toni Gabald\u00f3n ", "contact-email": "toni.gabaldon@bsc.es", "contact-orcid": "0000-0003-0019-1735"}], "homepage": "http://orthology.phylomedb.org/", "citations": [{"doi": "10.1093/nar/gkaa282", "pubmed-id": 32343307, "publication-id": 3113}], "identifier": 3569, "description": "MetaPhOrs is a web server that integrates phylogenetic information from different sources to provide orthology and paralogy relationships based on a common phylogeny-based predictive algorithm and associated with a consistency-based confidence score.", "abbreviation": null, "data-curation": {}, "support-links": [{"url": "http://orthology.phylomedb.org/help", "type": "Help documentation"}, {"url": "http://orthology.phylomedb.org/contact", "type": "Contact form"}, {"url": "https://twitter.com/orthologs", "name": "@orthologs", "type": "Twitter"}, {"url": "https://www.loom.com/share/7a583cf53fe54a1683fbb0fb2d536326", "name": "Tutorial", "type": "Video"}], "year-creation": 2011, "data-processes": [{"url": "http://orthology.phylomedb.org/download", "name": "Download", "type": "data access"}, {"url": "http://orthology.phylomedb.org/search", "name": "Text search", "type": "data access"}, {"url": "http://orthology.phylomedb.org/search", "name": "Similarity search", "type": "data access"}, {"url": "http://orthology.phylomedb.org/search", "name": "Search between species", "type": "data access"}], "deprecation-reason": "", "data-access-condition": {"url": "http://orthology.phylomedb.org", "type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Taxonomy", "Phylogeny", "Phylogenetics", "Phylogenomics"], "domains": ["Protein name", "Sequence similarity", "Taxonomic classification", "Gene functional annotation", "Proteome", "Homologous", "Orthologous", "Paralogous"], "taxonomies": ["All"], "user-defined-tags": ["phylome"], "countries": ["Spain"], "name": "FAIRsharing record for: MetaPhOrs", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.fa85ba", "doi": "10.25504/FAIRsharing.fa85ba", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MetaPhOrs is a web server that integrates phylogenetic information from different sources to provide orthology and paralogy relationships based on a common phylogeny-based predictive algorithm and associated with a consistency-based confidence score.", "publications": [{"id": 3113, "pubmed_id": 32343307, "title": "MetaPhOrs 2.0: integrative, phylogeny-based inference of orthology and paralogy across the tree of life.", "year": 2020, "url": "https://doi.org/10.1093/nar/gkaa282", "authors": "Chorostecki U, Molina M, Pryszcz LP, Gabald\u00f3n T", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkaa282", "created_at": "2021-10-06T10:03:02.998Z", "updated_at": "2021-10-06T10:03:02.998Z"}, {"id": 3114, "pubmed_id": 21149260, "title": "MetaPhOrs: orthology and paralogy predictions from multiple phylogenetic evidence using a consistency-based confidence score.", "year": 2011, "url": "https://doi.org/10.1093/nar/gkq953", "authors": "Pryszcz LP, Huerta-Cepas J, Gabald\u00f3n T", "journal": "Nucleic acids research", "doi": "10.1093/nar/gkq953", "created_at": "2021-10-06T10:03:34.044Z", "updated_at": "2021-10-06T10:03:34.044Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 2.0 Generic (CC BY 2.0)", "licence-id": 157, "link-id": 2459, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2809", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-30T18:51:07.000Z", "updated-at": "2022-02-08T10:52:02.073Z", "metadata": {"doi": "10.25504/FAIRsharing.52d9fa", "name": "China Meterological Data Service Centre", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "datacenter@cma.gov.cn"}], "homepage": "http://data.cma.cn/en", "citations": [], "identifier": 2809, "description": "This resource is developed by the Chinese government to collect and share meteorological data from domestic and global sources.", "abbreviation": "CDMC", "data-curation": {}, "support-links": [{"url": "http://data.cma.cn/en/?r=article/getLeft/id/343/keyIndex/30", "name": "How to access data", "type": "Help documentation"}, {"url": "http://data.cma.cn/en/?r=article/feedback", "name": "User feedback", "type": "Contact form"}], "year-creation": 2005, "data-processes": [{"url": "http://data.cma.cn/en/?r=data/index&cid=0b9164954813c573", "name": "Browse and search", "type": "data access"}, {"url": "http://data.cma.cn/dataGis/static/gridEng/#/", "name": "Visualize the data", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011141", "name": "re3data:r3d100011141", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001308", "bsg-d001308"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Geology", "Earth Science", "Atmospheric Science"], "domains": ["Climate"], "taxonomies": ["Not applicable"], "user-defined-tags": ["weather"], "countries": ["China"], "name": "FAIRsharing record for: China Meterological Data Service Centre", "abbreviation": "CDMC", "url": "https://fairsharing.org/10.25504/FAIRsharing.52d9fa", "doi": "10.25504/FAIRsharing.52d9fa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource is developed by the Chinese government to collect and share meteorological data from domestic and global sources.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1648", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:34.427Z", "metadata": {"doi": "10.25504/FAIRsharing.zhwa8x", "name": "Search Tool for Interactions of Chemicals", "status": "ready", "contacts": [{"contact-name": "Lars J. Jensen", "contact-email": "jensen@embl.de"}], "homepage": "http://stitch.embl.de", "identifier": 1648, "description": "STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", "abbreviation": "STITCH", "support-links": [{"url": "http://stitch.embl.de/cgi/show_info_page.pl?", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"name": "yearly release", "type": "data release"}, {"name": "every 2 year release", "type": "data release"}, {"name": "access to historical files available", "type": "data versioning"}, {"name": "programatic interface", "type": "data access"}, {"name": "file download(tab-delimited)", "type": "data access"}, {"url": "http://stitch.embl.de/cgi/show_download_page.pl?", "name": "download", "type": "data access"}, {"url": "http://stitch.embl.de/", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012165", "name": "re3data:r3d100012165", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007947", "name": "SciCrunch:RRID:SCR_007947", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000104", "bsg-d000104"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Computational biological predictions", "Chemical entity", "Molecular interaction", "Small molecule", "Protein", "Literature curation"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Search Tool for Interactions of Chemicals", "abbreviation": "STITCH", "url": "https://fairsharing.org/10.25504/FAIRsharing.zhwa8x", "doi": "10.25504/FAIRsharing.zhwa8x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", "publications": [{"id": 140, "pubmed_id": 18084021, "title": "STITCH: interaction networks of chemicals and proteins.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm795", "authors": "Kuhn M., von Mering C., Campillos M., Jensen LJ., Bork P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm795", "created_at": "2021-09-30T08:22:35.305Z", "updated_at": "2021-09-30T08:22:35.305Z"}, {"id": 141, "pubmed_id": 19897548, "title": "STITCH 2: an interaction network database for small molecules and proteins.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp937", "authors": "Kuhn M., Szklarczyk D., Franceschini A., Campillos M., von Mering C., Jensen LJ., Beyer A., Bork P.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp937", "created_at": "2021-09-30T08:22:35.406Z", "updated_at": "2021-09-30T08:22:35.406Z"}, {"id": 1551, "pubmed_id": 24293645, "title": "STITCH 4: integration of protein-chemical interactions with user data.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1207", "authors": "Kuhn M,Szklarczyk D,Pletscher-Frankild S,Blicher TH,von Mering C,Jensen LJ,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1207", "created_at": "2021-09-30T08:25:13.744Z", "updated_at": "2021-09-30T11:29:13.310Z"}, {"id": 1553, "pubmed_id": 22075997, "title": "STITCH 3: zooming in on protein-chemical interactions.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1011", "authors": "Kuhn M,Szklarczyk D,Franceschini A,von Mering C,Jensen LJ,Bork P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1011", "created_at": "2021-09-30T08:25:14.191Z", "updated_at": "2021-09-30T11:29:13.510Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 147, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 324, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3780", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-29T16:42:06.185Z", "updated-at": "2022-01-29T18:28:52.189Z", "metadata": {"name": "ATCC Genome Portal", "status": "ready", "contacts": [], "homepage": "https://genomes.atcc.org", "citations": [{"doi": "10.1128/mra.00818-21", "pubmed-id": 34817215, "publication-id": 3199}], "identifier": 3780, "description": "Database and knowledgebase of authenticated microbial genomics data with full data provenance to physical materials held within American Type Culture Collection's (ATCC) biorepository and culture collections. Data includes whole genome sequencing data for bacterial, viral and fungal strains at ATCC, their genome assemblies, metadata, drug susceptibility data, and more. All data is freely available for non-commercial research use only (RUO) applications via the web portal interface or via a REST-API. The goal is to provide the research community with provenance information and authentication between the biological source materials and reference genome assemblies derived from them.", "abbreviation": null, "access-points": [{"url": "https://genomes.atcc.org/api", "name": "ATCC Genome Portal API", "type": "REST", "example-url": "https://genomes.atcc.org/api/genomes", "documentation-url": "https://docs.onecodex.com/en/articles/5812163-atcc-genome-portal-api-guide"}], "data-curation": {"type": "manual"}, "support-links": [{"url": "https://docs.onecodex.com/en/collections/2314023-the-atcc-genome-portal", "name": "ATCC Genome Portal Documentation", "type": "Help documentation"}, {"url": "https://github.com/ATCC-Bioinformatics", "name": "ATCC Genome Portal Github group", "type": "Github"}, {"url": "https://twitter.com/ATCCgenomics", "name": "ATCC Genomics Twitter profile", "type": "Twitter"}], "year-creation": 2019, "data-processes": [{"url": "https://genomes.atcc.org/genomes", "name": "Search & Browse", "type": "data access"}, {"url": "https://genomes.atcc.org/sequence-search", "name": "Sequence Search", "type": "data access"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Data Quality", "Microbial Genetics", "Virology", "Comparative Genomics", "Microbiology"], "domains": ["Genome annotation", "Next generation DNA sequencing", "Whole genome sequencing", "Sequencing", "Genome", "Reference genome", "FAIR"], "taxonomies": ["Bacteria", "Fungi", "Viruses"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: ATCC Genome Portal", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3780", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Database and knowledgebase of authenticated microbial genomics data with full data provenance to physical materials held within American Type Culture Collection's (ATCC) biorepository and culture collections. Data includes whole genome sequencing data for bacterial, viral and fungal strains at ATCC, their genome assemblies, metadata, drug susceptibility data, and more. All data is freely available for non-commercial research use only (RUO) applications via the web portal interface or via a REST-API. The goal is to provide the research community with provenance information and authentication between the biological source materials and reference genome assemblies derived from them.", "publications": [{"id": 3199, "pubmed_id": 34817215, "title": "The ATCC Genome Portal: Microbial Genome Reference Standards with Data Provenance", "year": 2021, "url": "http://dx.doi.org/10.1128/MRA.00818-21", "authors": "Benton, Briana; King, Stephen; Greenfield, Samuel R.; Puthuveetil, Nikhita; Reese, Amy L.; Duncan, James; Marlow, Robert; Tabron, Corina; Pierola, Amanda E.; Yarmosh, David A.; Combs, Patrick Ford; Riojas, Marco A.; Bagnoli, John; Jacobs, Jonathan L.; ", "journal": "Microbiol Resour Announc", "doi": "10.1128/mra.00818-21", "created_at": "2022-01-29T16:47:29.203Z", "updated_at": "2022-01-29T16:47:29.203Z"}, {"id": 3200, "pubmed_id": null, "title": "Comparative Analysis and Data Provenance for 1,113 Bacterial Genome Assemblies", "year": 2021, "url": "http://dx.doi.org/10.1101/2021.12.14.472616", "authors": "Yarmosh, David A.; Lopera, Juan G.; Puthuveetil, Nikhita P.; Combs, Patrick Ford; Reese, Amy L.; Tabron, Corina; Pierola, Amanda E.; Duncan, James; Greenfield, Samuel R.; Marlow, Robert; King, Stephen; Riojas, Marco A.; Bagnoli, John; Benton, Briana; Jacobs, Jonathan L.; ", "journal": "BioRxiv", "doi": "10.1101/2021.12.14.472616", "created_at": "2022-01-29T16:48:32.818Z", "updated_at": "2022-01-29T16:48:32.818Z"}], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--4f4c0df6ed7efdf7b8e12715b0aee8bb5fb42ccb/Picture1.jpg?disposition=inline"}} +{"id": "1777", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:06.923Z", "metadata": {"doi": "10.25504/FAIRsharing.pep8cs", "name": "Ciona intestinalis Protein Database", "status": "deprecated", "contacts": [{"contact-name": "Toshinori Endo", "contact-email": "endo@ibio.jp"}], "homepage": "http://cipro.ibio.jp/current/", "identifier": 1777, "description": "CIPRO is an integrated protein that has been developed to provide widespread information of the proteins expressed in the ascidian Ciona intestinalis, especially for the researcher who wants to get advance and useful information for starting biological and biomedical research. The protein information in CIPRO directly links to gene expression, a tool for peptide mass fingerprinting (PMF), intracellular localization, 3D image of early development, and transgenic resources.", "abbreviation": "CIPRO", "year-creation": 2006, "data-processes": [{"url": "http://cipro.ibio.jp/2.0/download/", "name": "Download", "type": "data access"}, {"url": "http://cipro.ibio.jp/2.0/#SEARCH", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://cipro.ibio.jp/2.0/#SEARCH", "name": "BLAST"}], "deprecation-date": "2021-9-17", "deprecation-reason": "This resource is no longer available at the stated homepage, and an updated homepage cannot be found. Please get in touch with us if you have updates for this record."}, "legacy-ids": ["biodbcore-000236", "bsg-d000236"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Protein"], "taxonomies": ["Ciona intestinalis"], "user-defined-tags": [], "countries": ["Japan"], "name": "FAIRsharing record for: Ciona intestinalis Protein Database", "abbreviation": "CIPRO", "url": "https://fairsharing.org/10.25504/FAIRsharing.pep8cs", "doi": "10.25504/FAIRsharing.pep8cs", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CIPRO is an integrated protein that has been developed to provide widespread information of the proteins expressed in the ascidian Ciona intestinalis, especially for the researcher who wants to get advance and useful information for starting biological and biomedical research. The protein information in CIPRO directly links to gene expression, a tool for peptide mass fingerprinting (PMF), intracellular localization, 3D image of early development, and transgenic resources.", "publications": [{"id": 309, "pubmed_id": 21071393, "title": "CIPRO 2.5: Ciona intestinalis protein database, a unique integrated repository of large-scale omics data, bioinformatic analyses and curated annotation, with user rating and reviewing functionality.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1144", "authors": "Endo T., Ueno K., Yonezawa K., Mineta K., Hotta K., Satou Y., Yamada L., Ogasawara M., Takahashi H., Nakajima A., Nakachi M., Nomura M., Yaguchi J., Sasakura Y., Yamasaki C., Sera M., Yoshizawa AC., Imanishi T., Taniguchi H., Inaba K.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1144", "created_at": "2021-09-30T08:22:53.207Z", "updated_at": "2021-09-30T08:22:53.207Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2241", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-30T16:54:38.000Z", "updated-at": "2021-11-24T13:15:46.185Z", "metadata": {"doi": "10.25504/FAIRsharing.p7ev6e", "name": "SigMol", "status": "ready", "contacts": [{"contact-name": "Manoj Kumar", "contact-email": "manojk@imtech.res.in", "contact-orcid": "0000-0003-3769-052X"}], "homepage": "http://bioinfo.imtech.res.in/manojk/sigmol/", "identifier": 2241, "description": "SigMol is a specialized repository of quorom sensing signaling molecules (QSSMs) in prokaryotes. SigMol harbors information on QSSMs pertaining to different quorum sensing signaling systems namely acylated homoserine lactones (AHLs), diketopiperazines (DKPs), 4- hydroxy-2-alkylquinolines (HAQs), diffusible signal factors (DSFs), autoinducer-2 (AI-2) and others. The database includes biological as well as chemical aspects of signaling molecules. Biological information includes genes, preliminary bioassays, identification assays and applications, while chemical detail comprises of IUPAC name, SMILES and structure.", "abbreviation": "SigMol", "support-links": [{"url": "http://bioinfo.imtech.res.in/manojk/sigmol/faqs.php", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2015, "data-processes": [{"url": "http://bioinfo.imtech.res.in/manojk/sigmol/draw.php", "name": "Draw QSSMs", "type": "data access"}, {"url": "http://bioinfo.imtech.res.in/manojk/sigmol/compare.php", "name": "Compare QSSMs", "type": "data access"}, {"url": "http://bioinfo.imtech.res.in/manojk/sigmol/search.php", "name": "search", "type": "data access"}, {"url": "http://bioinfo.imtech.res.in/manojk/sigmol/search.php#", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000715", "bsg-d000715"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biochemistry", "Life Science"], "domains": ["Signaling", "Assay", "Structure", "Gene"], "taxonomies": ["Archaea", "Bacteria"], "user-defined-tags": [], "countries": ["India"], "name": "FAIRsharing record for: SigMol", "abbreviation": "SigMol", "url": "https://fairsharing.org/10.25504/FAIRsharing.p7ev6e", "doi": "10.25504/FAIRsharing.p7ev6e", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SigMol is a specialized repository of quorom sensing signaling molecules (QSSMs) in prokaryotes. SigMol harbors information on QSSMs pertaining to different quorum sensing signaling systems namely acylated homoserine lactones (AHLs), diketopiperazines (DKPs), 4- hydroxy-2-alkylquinolines (HAQs), diffusible signal factors (DSFs), autoinducer-2 (AI-2) and others. The database includes biological as well as chemical aspects of signaling molecules. Biological information includes genes, preliminary bioassays, identification assays and applications, while chemical detail comprises of IUPAC name, SMILES and structure.", "publications": [{"id": 837, "pubmed_id": 26490957, "title": "SigMol: repertoire of quorum sensing signaling molecules in prokaryotes", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1076", "authors": "Akanksha Rajput, Karambir Kaur and Manoj Kumar*", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1076", "created_at": "2021-09-30T08:23:52.379Z", "updated_at": "2021-09-30T08:23:52.379Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "3765", "type": "fairsharing-records", "attributes": {"created-at": "2022-01-23T16:33:12.623Z", "updated-at": "2022-01-31T15:26:38.155Z", "metadata": {"name": "Catalog of Agrogeophysical Studies", "status": "in_development", "contacts": [{"contact-name": "Benjamin Mary", "contact-email": "hello.agrogeophy@gmail.com", "contact-orcid": "0000-0001-7199-2885"}], "homepage": "https://agrogeophy.github.io/catalog/", "citations": [], "identifier": 3765, "description": "A platform putting together a database/catalog of agrogeophysical surveys in order to promote FAIR practicies and boost future research", "abbreviation": "CAGS", "data-curation": {"url": "https://github.com/agrogeophy/catalog/blob/master/.github/workflows/check_new_contribution.yml", "type": "manual/automated"}, "support-links": [{"url": "https://agrogeophy.github.io/catalog/#contact", "type": "Contact form"}], "year-creation": 2021, "data-processes": [{"url": "https://agrogeophy.github.io/catalog/#subm_dataset", "name": "Contribute", "type": "data curation"}], "associated-tools": [{"url": "https://share.streamlit.io/benjmy/ert_swc_board/main/app.py", "name": "Pedophysical relationships in Agrogeophysics app"}], "deprecation-reason": "", "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {"url": "https://github.com/agrogeophy/catalog", "type": "controlled"}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Farming Systems Research", "Soil Science", "Geophysics", "Agronomy", "Water Management"], "domains": ["Imaging", "FAIR"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Catalog of Agrogeophysical Studies", "abbreviation": "CAGS", "url": "https://fairsharing.org/fairsharing_records/3765", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A platform putting together a database/catalog of agrogeophysical surveys in order to promote FAIR practicies and boost future research", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 1.0 Generic (CC BY 1.0)", "licence-id": 156, "link-id": 2577, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3814", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T09:27:45.800Z", "updated-at": "2022-02-10T09:49:33.732Z", "metadata": {"name": "PlutoF", "status": "ready", "contacts": [], "homepage": "https://plutof.ut.ee/", "citations": [], "identifier": 3814, "description": "PlutoF platform has been designed for storing and managing biodiversity data over the web. PlutoF provides database and computing services for the taxonomical, ecological, phylogenetical, etc. research. \u200b The purpose of the platform is to provide synergy through common modules for the classifications, taxon names, analytical tools, etc.", "abbreviation": null, "access-points": [{"url": "https://api.plutof.ut.ee/v1/public/specimens", "name": "Specimen API", "type": "REST", "example-url": null, "documentation-url": "https://plutof.docs.apiary.io/#reference/0/specimens-api/list-all-specimens"}, {"url": "https://api.plutof.ut.ee/v1/public/dshclusters/search/", "name": "UNITE species hypothesis API", "type": "REST", "example-url": "https://api.plutof.ut.ee/v1/public/dshclusters/search/?q=SH000010.07FU&name=SH000010.07FU", "documentation-url": "https://plutof.docs.apiary.io/#reference/0/unite-species-hypotheses-api/search-shs"}], "data-curation": {}, "year-creation": null, "data-versioning": "yes", "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Metagenomics", "Genomics", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "Annotation", "Software", "Web service", "FAIR"], "taxonomies": ["Fungi"], "user-defined-tags": [], "countries": ["Estonia"], "name": "FAIRsharing record for: PlutoF", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/3814", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PlutoF platform has been designed for storing and managing biodiversity data over the web. PlutoF provides database and computing services for the taxonomical, ecological, phylogenetical, etc. research. \u200b The purpose of the platform is to provide synergy through common modules for the classifications, taxon names, analytical tools, etc.", "publications": [{"id": 3234, "pubmed_id": 0, "title": "PlutoF\u2014a Web Based Workbench for Ecological and Taxonomic Research, with an Online Implementation for Fungal ITS Sequences", "year": 2010, "url": "http://dx.doi.org/10.4137/EBO.S6271", "authors": "Abarenkov, Kessy; Tedersoo, Leho; Nilsson, R. Henrik; Vellak, Kai; Saar, Irja; Veldre, Vilmar; Parmasto, Erast; Prous, Marko; Aan, Anne; Ots, Margus; Kurina, Olavi; Ostonen, Ivika; J\u00f5geva, Janno; Halapuu, Siim; P\u00f5ldmaa, Kadri; Toots, M\u00e4rt; Truu, Jaak; Larsson, Karl-Henrik; K\u00f5ljalg, Urmas; ", "journal": "Evol Bioinform Online", "doi": "10.4137/ebo.s6271", "created_at": "2022-02-10T09:42:40.349Z", "updated_at": "2022-02-10T09:42:40.349Z"}], "licence-links": [], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBMdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--d665dd9eeed2513eb63d0b6066bbafbd99c6b37a/plutof-logo-green-large.png?disposition=inline"}} +{"id": "2586", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-06T10:17:55.000Z", "updated-at": "2021-11-24T13:17:53.319Z", "metadata": {"doi": "10.25504/FAIRsharing.d5BjMU", "name": "MusaBase", "status": "ready", "contacts": [{"contact-name": "Guillaume Bauchet", "contact-email": "gjb99@cornell.du"}], "homepage": "https://musabase.org/", "identifier": 2586, "description": "MusaBase is a breeding database designed for advanced breeding methods in banana breeding. It focuses on bananas that are important food crops in Africa, such as Mchare and Matooke bananas. Data in MusaBase comes mainly from breeding programs in Uganda (NARO Kawanda, IITA Sendusu) as well as Tanzania (IITA Arusha, newly located at Nelson Mandela University).", "abbreviation": "MusaBase", "support-links": [{"url": "https://www.facebook.com/solgenomics", "name": "Facebook", "type": "Facebook"}, {"url": "https://musabase.org/contact/form", "name": "Musabase Contact Form", "type": "Contact form"}, {"url": "https://musabase.org/help/faq.pl", "name": "Musabase FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://musabase.org/forum/topics.pl", "name": "Musabase forum", "type": "Forum"}, {"url": "https://docs.google.com/document/d/1ZJjxsarGqGTv4HgJTt-EodOoaEmJ3lgSeV0Qq_YKJaY", "name": "User Manual", "type": "Help documentation"}, {"url": "sgn-announce@rubisco.sgn.cornell.edu", "name": "Sol Genomics Network Announcement Mailing List", "type": "Mailing list"}, {"url": "https://fr.slideshare.net/solgenomics/musabase-pag-2018", "name": "SlideShare", "type": "Help documentation"}, {"url": "https://twitter.com/solgenomics", "name": "@solgenomics", "type": "Twitter"}], "data-processes": [{"url": "https://musabase.org/search/stocks", "name": "Search Accessions and Plots", "type": "data access"}, {"url": "https://musabase.org/search/images", "name": "Search Images", "type": "data access"}, {"url": "https://musabase.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://musabase.org/breeders/search", "name": "Search Wizard", "type": "data access"}, {"url": "https://musabase.org/search/traits", "name": "Trait Search", "type": "data access"}, {"url": "https://musabase.org/search/trials", "name": "Trial Search", "type": "data access"}, {"url": "https://musabase.org/search/cross", "name": "Search Progenies and Crosses", "type": "data access"}, {"url": "https://musabase.org/solgs/search", "name": "Genomic Selection Tool", "type": "data access"}, {"url": "https://musabase.org/accession_usage", "name": "Accession Usage Tool", "type": "data access"}, {"url": "https://musabase.org/tools/blast/", "name": "BLAST", "type": "data access"}, {"url": "https://musabase.org/user/new", "name": "Login", "type": "data access"}]}, "legacy-ids": ["biodbcore-001069", "bsg-d001069"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Plant Breeding", "Genomics", "Agriculture", "Life Science"], "domains": ["Phenotype"], "taxonomies": ["Musa"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MusaBase", "abbreviation": "MusaBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.d5BjMU", "doi": "10.25504/FAIRsharing.d5BjMU", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MusaBase is a breeding database designed for advanced breeding methods in banana breeding. It focuses on bananas that are important food crops in Africa, such as Mchare and Matooke bananas. Data in MusaBase comes mainly from breeding programs in Uganda (NARO Kawanda, IITA Sendusu) as well as Tanzania (IITA Arusha, newly located at Nelson Mandela University).", "publications": [], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 1621, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2512", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-17T21:09:55.000Z", "updated-at": "2021-12-06T10:49:00.815Z", "metadata": {"doi": "10.25504/FAIRsharing.pjj4gd", "name": "Biological and Chemical Oceanography Data Management Office", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "info@bco-dmo.org"}], "homepage": "https://www.bco-dmo.org/", "identifier": 2512, "description": "The Biological and Chemical Oceanography Data Management Office (BCO-DMO) is a publicly accessible earth science data repository created to curate, publicly serve (publish), and archive digital data and information from biological, chemical and biogeochemical research conducted in coastal, marine, great lakes and laboratory environments. The BCO-DMO repository works closely with investigators funded through the NSF OCE Division\u2019s Biological and Chemical Sections and the Division of Polar Programs Arctic Sciences and Antarctic Organisms & Ecosystems. The office provides services that span the full data life cycle, from data management planning support and DOI creation, to archive with appropriate national facilities.", "abbreviation": "BCO-DMO", "support-links": [{"url": "https://blog.bco-dmo.org/", "name": "BCO-DMO Blog", "type": "Blog/News"}, {"url": "https://www.bco-dmo.org/faq-page", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.linkedin.com/company/biological-and-chemical-oceanography-data-management-office", "name": "LinkedIn", "type": "Forum"}, {"url": "https://www.bco-dmo.org/files/bcodmo/BCO-DMO_Quick_Start_Guide.pdf", "name": "Quick Start Guide", "type": "Help documentation"}, {"url": "https://www.bco-dmo.org/how-get-started", "name": "How to Contribute", "type": "Help documentation"}, {"url": "https://www.bco-dmo.org/resources", "name": "Resources", "type": "Help documentation"}, {"url": "http://www.bco-dmo.org/files/bcodmo/BCO-DMO_Tutorial.pdf", "name": "BCO-DMO Tutorial", "type": "Training documentation"}, {"url": "https://twitter.com/BCODMO", "name": "@BCODMO", "type": "Twitter"}], "year-creation": 2006, "data-processes": [{"url": "https://www.bco-dmo.org/search/dataset", "name": "Data search", "type": "data access"}, {"url": "http://mapservice.bco-dmo.org/mapserver/maps-ol/index.php", "name": "MapServer Geospatial Interface (Map Search)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100000012", "name": "re3data:r3d100000012", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000994", "bsg-d000994"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Geography", "Limnology", "Biochemistry", "Genomics", "Proteomics", "Ecology", "Biodiversity", "Atmospheric Science", "Life Science", "Microbiology", "Oceanography", "Biology"], "domains": ["Climate"], "taxonomies": ["All"], "user-defined-tags": ["Ecological modeling"], "countries": ["United States"], "name": "FAIRsharing record for: Biological and Chemical Oceanography Data Management Office", "abbreviation": "BCO-DMO", "url": "https://fairsharing.org/10.25504/FAIRsharing.pjj4gd", "doi": "10.25504/FAIRsharing.pjj4gd", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Biological and Chemical Oceanography Data Management Office (BCO-DMO) is a publicly accessible earth science data repository created to curate, publicly serve (publish), and archive digital data and information from biological, chemical and biogeochemical research conducted in coastal, marine, great lakes and laboratory environments. The BCO-DMO repository works closely with investigators funded through the NSF OCE Division\u2019s Biological and Chemical Sections and the Division of Polar Programs Arctic Sciences and Antarctic Organisms & Ecosystems. The office provides services that span the full data life cycle, from data management planning support and DOI creation, to archive with appropriate national facilities.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2420, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1934", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2022-02-07T10:28:16.764Z", "metadata": {"doi": "10.25504/FAIRsharing.z4agsr", "name": "SoyBase", "status": "ready", "contacts": [{"contact-name": "Jacqueline Campbell", "contact-email": "Jacqueline.Campbell@usda.gov", "contact-orcid": "0000-0003-2787-3955"}, {"contact-name": "Rex Nelson", "contact-email": "rex.nelson@usda.gov", "contact-orcid": "0000-0001-6222-3347"}], "homepage": "https://soybase.org/", "citations": [], "identifier": 1934, "description": "SoyBase, the USDA-ARS soybean genetic database, is a comprehensive repository for professionally curated genetics, genomics and related data resources for soybean. SoyBase contains genetic, physical and genomic sequence maps integrated with qualitative and quantitative traits. The quantitative trait loci (QTL) represent more than 18 years of QTL mapping of more than 90 unique traits. SoyBase also contains the well-annotated 'Williams 82' genomic sequence and associated data mining tools. The genetic and sequence views of the soybean chromosomes and the extensive data on traits and phenotypes are extensively interlinked. This allows entry to the database using almost any kind of available information, such as genetic map symbols, soybean gene names or phenotypic traits. SoyBase is the repository for controlled vocabularies for soybean growth, development and trait terms, which are also linked to the more general plant ontologies.", "abbreviation": "SoyBase", "support-links": [{"url": "http://bit.ly/SoyBase-Contact-Us", "name": "https://soybase.org/include/antispam.php", "type": "Contact form"}, {"url": "https://soybase.org/tutorials/", "name": "Help and Tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/SoyBaseDatabase", "name": "Twitter", "type": "Twitter"}], "year-creation": 1990, "data-processes": [{"url": "http://bit.ly/Submit-Data", "name": "submit", "type": "data curation"}, {"url": "https://soybase.org/SequenceIntro.php", "name": "Genome Browser", "type": "data access"}, {"url": "http://soybase.org/search/", "name": "search", "type": "data access"}, {"url": "https://soybase.org/dlpages/", "name": "Download", "type": "data release"}, {"url": "https://soybase.org/correspondence/index.php", "name": "Gene Model Correspondence Lookup", "type": "data access"}, {"url": "https://soybase.org/GlycineBlastPages/", "name": "BLAST Search", "type": "data access"}, {"url": "https://soybase.org/grindata/", "name": "GRIN Data Explorer", "type": "data access"}], "associated-tools": [{"url": "https://soybase.org/tools.php", "name": "Tools Listing"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010846", "name": "re3data:r3d100010846", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005096", "name": "SciCrunch:RRID:SCR_005096", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000399", "bsg-d000399"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Plant Breeding", "Agriculture", "Life Science", "Comparative Genomics"], "domains": ["Computational biological predictions", "Differential gene expression analysis", "Deoxyribonucleic acid", "Image", "Phenotype", "Protein", "Transposable element", "Single nucleotide polymorphism", "Quantitative trait loci", "Genome"], "taxonomies": ["Glycine max", "Glycine soja"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: SoyBase", "abbreviation": "SoyBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.z4agsr", "doi": "10.25504/FAIRsharing.z4agsr", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SoyBase, the USDA-ARS soybean genetic database, is a comprehensive repository for professionally curated genetics, genomics and related data resources for soybean. SoyBase contains genetic, physical and genomic sequence maps integrated with qualitative and quantitative traits. The quantitative trait loci (QTL) represent more than 18 years of QTL mapping of more than 90 unique traits. SoyBase also contains the well-annotated 'Williams 82' genomic sequence and associated data mining tools. The genetic and sequence views of the soybean chromosomes and the extensive data on traits and phenotypes are extensively interlinked. This allows entry to the database using almost any kind of available information, such as genetic map symbols, soybean gene names or phenotypic traits. SoyBase is the repository for controlled vocabularies for soybean growth, development and trait terms, which are also linked to the more general plant ontologies.", "publications": [{"id": 1336, "pubmed_id": 20008513, "title": "SoyBase, the USDA-ARS soybean genetics and genomics database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp798", "authors": "Grant D., Nelson RT., Cannon SB., Shoemaker RC.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp798", "created_at": "2021-09-30T08:24:49.518Z", "updated_at": "2021-09-30T08:24:49.518Z"}], "licence-links": [{"licence-name": "U.S. Public Domain", "licence-id": 835, "link-id": 1567, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBKZz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--37bca68f66078c71c44cc54cc0fa116887180660/SoyBase_logo.png?disposition=inline"}} +{"id": "2831", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-24T18:19:15.000Z", "updated-at": "2021-11-24T13:13:33.252Z", "metadata": {"doi": "10.25504/FAIRsharing.3xwMon", "name": "PathBank", "status": "ready", "contacts": [{"contact-name": "PathBank Team", "contact-email": "pathbank@wishartlab.com"}], "homepage": "http://pathbank.org/", "identifier": 2831, "description": "PathBank is an interactive, visual database containing more than 100 000 machine-readable pathways found in model organisms such as humans, mice, E. coli, yeast, and Arabidopsis thaliana. The majority of these pathways are not found in any other pathway database. PathBank is designed specifically to support pathway elucidation and pathway discovery in metabolomics, transcriptomics, proteomics, and systems biology. All PathBank pathways include information on the relevant organelles, subcellular compartments, protein complex cofactors, protein complex locations, metabolite locations, chemical structures, and protein complex quaternary structures. The database is easily browsed and supports full text, sequence, and chemical structure searching.", "abbreviation": "PathBank", "support-links": [{"url": "http://pathbank.org/pathwhiz/style_guide", "name": "Pathway Style Guide", "type": "Help documentation"}, {"url": "http://pathbank.org/legend", "name": "Pathway Legend", "type": "Help documentation"}, {"url": "http://pathbank.org/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "http://pathbank.org/about", "name": "About PathBank", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://pathbank.org/view", "name": "Browse Pathways", "type": "data access"}, {"url": "http://pathbank.org/tocs", "name": "Table of Primary Pathways", "type": "data access"}, {"url": "http://pathbank.org/compounds", "name": "Browse by Compound", "type": "data access"}, {"url": "http://pathbank.org/proteins", "name": "Browse by Protein", "type": "data access"}, {"url": "http://pathbank.org/text_query", "name": "Text Search", "type": "data access"}, {"url": "http://pathbank.org/map", "name": "Path-MAP Advanced Search", "type": "data access"}, {"url": "http://pathbank.org/structures/search/compounds/structure", "name": "Search by Structure", "type": "data access"}, {"url": "http://pathbank.org/structures/search/compounds/mass", "name": "Search by Molecular Weight", "type": "data access"}, {"url": "http://pathbank.org/search/sequence", "name": "Sequence Search", "type": "data access"}, {"url": "http://pathbank.org/downloads", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001331", "bsg-d001331"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Endocrinology", "Molecular biology", "Animal Genetics", "Cheminformatics", "Bioinformatics", "Genetics", "Proteomics", "Drug Metabolism", "Human Genetics", "Molecular Microbiology", "Metabolomics", "Transcriptomics", "Cell Biology", "Database Management", "Microbiology", "Biology", "Systems Biology", "Medical Informatics", "Plant Genetics"], "domains": ["Protein name", "Protein structure", "Gene name", "Drug name", "Reaction data", "Protein interaction", "Drug", "Metabolite", "Catalytic activity", "Glucose metabolic process", "Regulation of gene expression", "Drug metabolic process", "Signaling", "Enzymatic reaction", "Receptor", "High-throughput screening", "Drug interaction", "Enzyme", "Disease", "Protein", "Pathway model", "Gene", "Amino acid sequence", "Genetic disorder"], "taxonomies": ["Arabidopsis thaliana", "Bos taurus", "Caenorhabditis elegans", "Drosophila melanogaster", "Escherichia coli", "Homo sapiens", "Mus musculus", "Pseudomonas aeruginosa", "Rattus norvegicus", "Saccharomyces cerevisiae"], "user-defined-tags": ["Drug Target", "Pathway Diagram"], "countries": ["Canada"], "name": "FAIRsharing record for: PathBank", "abbreviation": "PathBank", "url": "https://fairsharing.org/10.25504/FAIRsharing.3xwMon", "doi": "10.25504/FAIRsharing.3xwMon", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PathBank is an interactive, visual database containing more than 100 000 machine-readable pathways found in model organisms such as humans, mice, E. coli, yeast, and Arabidopsis thaliana. The majority of these pathways are not found in any other pathway database. PathBank is designed specifically to support pathway elucidation and pathway discovery in metabolomics, transcriptomics, proteomics, and systems biology. All PathBank pathways include information on the relevant organelles, subcellular compartments, protein complex cofactors, protein complex locations, metabolite locations, chemical structures, and protein complex quaternary structures. The database is easily browsed and supports full text, sequence, and chemical structure searching.", "publications": [], "licence-links": [{"licence-name": "Open Data Commons Open Database License (ODC ODbL)", "licence-id": 621, "link-id": 1228, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2204", "type": "fairsharing-records", "attributes": {"created-at": "2015-05-05T15:02:47.000Z", "updated-at": "2021-11-24T13:14:48.282Z", "metadata": {"doi": "10.25504/FAIRsharing.s5zmbp", "name": "Catalogue of Somatic Mutations in Cancer", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "cosmic@sanger.ac.uk"}], "homepage": "http://cancer.sanger.ac.uk", "citations": [{"doi": "10.1093/nar/gky1015", "pubmed-id": 30371878, "publication-id": 1822}], "identifier": 2204, "description": "The Catalogue of Somatic Mutations in Cancer (COSMIC) is a database of manually-curated somatic mutation information relating to human cancers. The COSMIC database combines manually-curated data and genome-wide screen data.", "abbreviation": "COSMIC", "access-points": [{"url": "https://cancer.sanger.ac.uk/cosmic/help/beacon", "name": "Beacon Access Documentation", "type": "REST"}], "support-links": [{"url": "https://cosmic-blog.sanger.ac.uk/", "name": "COSMIC News", "type": "Blog/News"}, {"url": "https://cancer.sanger.ac.uk/cosmic/help/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://cancer.sanger.ac.uk/cosmic/help/tutorials", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://cancer.sanger.ac.uk/cosmic/help", "name": "Help", "type": "Help documentation"}, {"url": "https://cancer.sanger.ac.uk/cosmic/register", "name": "COSMIC Mailing List", "type": "Mailing list"}, {"url": "https://cancer.sanger.ac.uk/cosmic/curation", "name": "About COSMIC Curation", "type": "Help documentation"}, {"url": "https://cancer.sanger.ac.uk/cosmic/analyses", "name": "Annotation and Analysis Release Pipeline", "type": "Help documentation"}], "year-creation": 2004, "data-processes": [{"url": "https://cancer.sanger.ac.uk/cosmic/download", "name": "Downloads", "type": "data release"}, {"url": "https://cancer.sanger.ac.uk/cosmic/browse/tissue", "name": "Cancer browser", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/browse/genome", "name": "Genome Browser", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/conan/search", "name": "Copy number analysis (CONAN)", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/beacon", "name": "GA4GH Beacon Search", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/fusion", "name": "Browse Gene Fusions", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/papers", "name": "Browse Genome Screens", "type": "data access"}, {"url": "https://cancer.sanger.ac.uk/cosmic/drug_resistance", "name": "Browse Drug Resistance Data", "type": "data access"}]}, "legacy-ids": ["biodbcore-000678", "bsg-d000678"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genetics", "Biomedical Science"], "domains": ["Genome annotation", "Cancer", "Somatic mutation", "Tumor"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Catalogue of Somatic Mutations in Cancer", "abbreviation": "COSMIC", "url": "https://fairsharing.org/10.25504/FAIRsharing.s5zmbp", "doi": "10.25504/FAIRsharing.s5zmbp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Catalogue of Somatic Mutations in Cancer (COSMIC) is a database of manually-curated somatic mutation information relating to human cancers. The COSMIC database combines manually-curated data and genome-wide screen data.", "publications": [{"id": 60, "pubmed_id": 25355519, "title": "COSMIC: exploring the world's knowledge of somatic mutations in human cancer.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1075", "authors": "Forbes SA,Beare D,Gunasekaran P,Leung K,Bindal N,Boutselakis H,Ding M,Bamford S,Cole C,Ward S,Kok CY,Jia M,De T,Teague JW,Stratton MR,McDermott U,Campbell PJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1075", "created_at": "2021-09-30T08:22:26.769Z", "updated_at": "2021-09-30T11:28:42.033Z"}, {"id": 66, "pubmed_id": 20952405, "title": "COSMIC: mining complete cancer genomes in the Catalogue of Somatic Mutations in Cancer.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq929", "authors": "Forbes SA,Bindal N,Bamford S,Cole C,Kok CY,Beare D,Jia M,Shepherd R,Leung K,Menzies A,Teague JW,Campbell PJ,Stratton MR,Futreal PA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkq929", "created_at": "2021-09-30T08:22:27.377Z", "updated_at": "2021-09-30T11:28:42.276Z"}, {"id": 1798, "pubmed_id": 15188009, "title": "The COSMIC (Catalogue of Somatic Mutations in Cancer) database and website.", "year": 2004, "url": "http://doi.org/10.1038/sj.bjc.6601894", "authors": "Bamford S,Dawson E,Forbes S,Clements J,Pettett R,Dogan A,Flanagan A,Teague J,Futreal PA,Stratton MR,Wooster R", "journal": "Br J Cancer", "doi": "10.1038/sj.bjc.6601894", "created_at": "2021-09-30T08:25:41.863Z", "updated_at": "2021-09-30T08:25:41.863Z"}, {"id": 1822, "pubmed_id": 30371878, "title": "COSMIC: the Catalogue Of Somatic Mutations In Cancer.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1015", "authors": "Tate JG,Bamford S,Jubb HC,Sondka Z,Beare DM,Bindal N,Boutselakis H,Cole CG,Creatore C,Dawson E,Fish P,Harsha B,Hathaway C,Jupe SC,Kok CY,Noble K,Ponting L,Ramshaw CC,Rye CE,Speedy HE,Stefancsik R,Thompson SL,Wang S,Ward S,Campbell PJ,Forbes SA", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1015", "created_at": "2021-09-30T08:25:44.669Z", "updated_at": "2021-09-30T11:29:21.278Z"}], "licence-links": [{"licence-name": "COSMIC Terms of Use and Licence", "licence-id": 151, "link-id": 2434, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2988", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-11T13:08:39.000Z", "updated-at": "2021-11-24T13:14:58.321Z", "metadata": {"doi": "10.25504/FAIRsharing.l9GDBz", "name": "AD Knowledge Portal", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "ampadportal@sagebionetworks.org"}], "homepage": "https://adknowledgeportal.synapse.org/", "identifier": 2988, "description": "The AD Knowledge Portal is a platform for accessing data, analyses, and tools that the National Institute on Aging\u2019s (NIA) Alzheimer's Disease Translational Research Program generates through several initiatives. The program encourages open-science collaborations that share resources early in the research life cycle. The AD Knowledge Portal initially hosted data from the Accelerating Medicines Partnership in Alzheimer\u2019s Disease (AMP-AD) Target Discovery and Preclinical Validation Project. The AD Knowledge Portal now includes \u201comics\u201d data from human samples and experimental model systems, as well as bioinformatic analyses from research teams and cross-consortium working groups. Please note that, while the data are publicly searchable, a login is required to download data sets.", "support-links": [{"url": "https://adknowledgeportal.synapse.org/News", "name": "News", "type": "Blog/News"}, {"url": "https://www.synapse.org/#!Synapse:syn2580853/discussion/default", "name": "Forum", "type": "Forum"}, {"url": "https://adknowledgeportal.synapse.org/About", "name": "About", "type": "Help documentation"}, {"url": "https://adknowledgeportal.synapse.org/DataAccess/Instructions", "name": "Data Access Instructions", "type": "Help documentation"}, {"url": "https://adknowledgeportal.synapse.org/DataAccess/AcknowledgementStatements", "name": "Data Acknowledgements", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "https://adknowledgeportal.synapse.org/Explore/Studies", "name": "Browse & Search Studies", "type": "data access"}, {"url": "https://adknowledgeportal.synapse.org/Explore/Data", "name": "Browse & Search Data", "type": "data access"}, {"url": "https://adknowledgeportal.synapse.org/Explore/Publications", "name": "Browse & Search Publications", "type": "data access"}], "associated-tools": [{"url": "https://adknowledgeportal.synapse.org/Explore/Tools", "name": "Tool Listing"}, {"url": "https://agora.adknowledgeportal.org/", "name": "Agora"}]}, "legacy-ids": ["biodbcore-001494", "bsg-d001494"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biomedical Science", "Translational Medicine"], "domains": ["Disease"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: AD Knowledge Portal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.l9GDBz", "doi": "10.25504/FAIRsharing.l9GDBz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The AD Knowledge Portal is a platform for accessing data, analyses, and tools that the National Institute on Aging\u2019s (NIA) Alzheimer's Disease Translational Research Program generates through several initiatives. The program encourages open-science collaborations that share resources early in the research life cycle. The AD Knowledge Portal initially hosted data from the Accelerating Medicines Partnership in Alzheimer\u2019s Disease (AMP-AD) Target Discovery and Preclinical Validation Project. The AD Knowledge Portal now includes \u201comics\u201d data from human samples and experimental model systems, as well as bioinformatic analyses from research teams and cross-consortium working groups. Please note that, while the data are publicly searchable, a login is required to download data sets.", "publications": [], "licence-links": [{"licence-name": "AD Knowledge Portal Governance", "licence-id": 9, "link-id": 1860, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3680", "type": "fairsharing-records", "attributes": {"created-at": "2021-12-13T13:53:53.300Z", "updated-at": "2021-12-14T19:24:24.693Z", "metadata": {"name": "Bioregistry", "status": "ready", "contacts": [{"contact-name": "Charles Tapley Hoyt", "contact-email": "cthoyt@gmail.com", "contact-orcid": "0000-0003-4423-4370"}], "homepage": "https://bioregistry.io", "citations": [], "identifier": 3680, "description": "The Bioregistry is an open source, community curated registry, meta-registry, and compact identifier resolver.", "abbreviation": "bioregistry", "access-points": [{"url": "https://bioregistry.io/api/registry", "name": "Bioregistry API", "type": "REST", "example-url": "https://bioregistry.io/api/reference/chebi:138488", "documentation-url": "https://bioregistry.io/usage"}], "data-curation": {"type": "manual"}, "support-links": [{"url": "https://github.com/biopragmatics/bioregistry", "name": "Source Code Repository", "type": "Github"}, {"url": "https://github.com/biopragmatics/bioregistry/issues/new/choose", "name": "Issue Tracker", "type": "Contact form"}, {"url": "https://twitter.com/bioregistry", "name": "@bioregistry", "type": "Twitter"}], "year-creation": 2020, "data-processes": [{"url": "https://bioregistry.io/download", "name": "Download", "type": "data release"}, {"url": "https://bioregistry.io/registry/", "name": "Search and Browse", "type": "data access"}], "data-versioning": "yes", "associated-tools": [{"url": "https://github.com/biopragmatics/bioregistry", "name": "Python Library"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Cheminformatics", "Bioinformatics", "Computational Biology", "Life Science", "Ontology and Terminology", "Computational Chemistry"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States", "Germany"], "name": "FAIRsharing record for: Bioregistry", "abbreviation": "bioregistry", "url": "https://fairsharing.org/fairsharing_records/3680", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Bioregistry is an open source, community curated registry, meta-registry, and compact identifier resolver.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2534, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "3820", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T11:53:34.368Z", "updated-at": "2022-02-10T13:28:52.516Z", "metadata": {"name": "LifeWatch ERIC. Biodiversity and Ecosystem Virtual Research Environments (BER_VREs)", "status": "ready", "contacts": [], "homepage": "https://www.lifewatch.eu/catalogue-of-virtual-labs/", "citations": [], "identifier": 3820, "description": "LW ERIC is the e-Science European Research Infrastructure for Biodiversity and Ecosystem Research. It provides access to a multitude of datasets, e-Services and tools enabling the construction and operation of Virtual Research Environments (VREs) through innovative technologies, which permit the accelerated capture of data, their analysis and knowledge-based decision-making support for biodiversity and ecosystem management. It can be split into 2 groups of services: BER_e-Infra & BER_VREs.\n\nBER_VREs consists of 3 cutting-edge technologies:\n\nLifeBlock, a Blockchain technology for transparency and immutability, guaranteeing FAIR-compliant data.\nTesseract, the technical composability layer to integrate web services, enabling the development of VREs for users to combine and arrange services and software into multiple workflows.\nThe Artificial Intelligence virtual laboratory (vLab), an online service allowing users to locate others working on similar subjects and the hubs that link them.\nWithin BiCiKL, LW ERIC will support virtual access to BER_VREs.", "abbreviation": "Lifewatch ERIC VRE", "year-creation": 2021, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "Software", "Web service", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["European Union"], "name": "FAIRsharing record for: LifeWatch ERIC. Biodiversity and Ecosystem Virtual Research Environments (BER_VREs)", "abbreviation": "Lifewatch ERIC VRE", "url": "https://fairsharing.org/fairsharing_records/3820", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LW ERIC is the e-Science European Research Infrastructure for Biodiversity and Ecosystem Research. It provides access to a multitude of datasets, e-Services and tools enabling the construction and operation of Virtual Research Environments (VREs) through innovative technologies, which permit the accelerated capture of data, their analysis and knowledge-based decision-making support for biodiversity and ecosystem management. It can be split into 2 groups of services: BER_e-Infra & BER_VREs.\n\nBER_VREs consists of 3 cutting-edge technologies:\n\nLifeBlock, a Blockchain technology for transparency and immutability, guaranteeing FAIR-compliant data.\nTesseract, the technical composability layer to integrate web services, enabling the development of VREs for users to combine and arrange services and software into multiple workflows.\nThe Artificial Intelligence virtual laboratory (vLab), an online service allowing users to locate others working on similar subjects and the hubs that link them.\nWithin BiCiKL, LW ERIC will support virtual access to BER_VREs.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "1120", "type": "fairsharing-records", "attributes": {"created-at": "2015-06-10T13:37:27.000Z", "updated-at": "2022-02-10T13:28:13.484Z", "metadata": {"doi": "10.25504/FAIRsharing.7g1bzj", "name": "World Register of Marine Species", "status": "ready", "contacts": [{"contact-name": "Leen Vandepitte", "contact-email": "leen.vandepitte@vliz.be", "contact-orcid": "0000-0002-8160-7941"}], "homepage": "http://www.marinespecies.org", "citations": [], "identifier": 1120, "description": "The aim of a World Register of Marine Species (WoRMS) is to provide an authoritative and comprehensive list of names of marine organisms, including information on synonymy. While highest priority goes to valid names, other names in use are included so that this register can serve as a guide to interpret taxonomic literature.", "abbreviation": "WoRMS", "access-points": [{"url": "http://www.marinespecies.org/aphia.php?p=soap&wsdl=1", "name": "AphiaNameService", "type": "SOAP"}, {"url": "http://www.marinespecies.org/aphia.php?p=webservice", "name": "WoRMS webservice", "type": "Other"}, {"url": "http://www.marinespecies.org/rest/", "name": "WoRMS REST webservice", "type": "REST"}], "support-links": [{"url": "info@marinespecies.org", "type": "Support email"}, {"url": "http://www.marinespecies.org/aphia.php?p=stats", "type": "Help documentation"}, {"url": "http://www.marinespecies.org/documents.php", "type": "Help documentation"}, {"url": "http://www.marinespecies.org/tutorial.php", "type": "Training documentation"}, {"url": "https://twitter.com/WRMarineSpecies", "type": "Twitter"}], "year-creation": 2007, "data-processes": [{"url": "http://www.marinespecies.org/aphia.php?p=browser", "name": "browse", "type": "data access"}, {"url": "http://www.marinespecies.org/aphia.php?p=search", "name": "search", "type": "data access"}, {"url": "http://www.marinespecies.org/contribute.php", "name": "submit", "type": "data curation"}], "deprecation-reason": null}, "legacy-ids": ["bsg-000594", "bsg-s000594"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "Marine environment", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: World Register of Marine Species", "abbreviation": "WoRMS", "url": "https://fairsharing.org/10.25504/FAIRsharing.7g1bzj", "doi": "10.25504/FAIRsharing.7g1bzj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The aim of a World Register of Marine Species (WoRMS) is to provide an authoritative and comprehensive list of names of marine organisms, including information on synonymy. While highest priority goes to valid names, other names in use are included so that this register can serve as a guide to interpret taxonomic literature.", "publications": [{"id": 2749, "pubmed_id": 29624577, "title": "A decade of the World Register of Marine Species - General insights and experiences from the Data Management Team: Where are we, what have we learned and how can we continue?", "year": 2018, "url": "http://doi.org/10.1371/journal.pone.0194599", "authors": "Vandepitte L,Vanhoorne B,Decock W,Vranken S,Lanssens T,Dekeyzer S,Verfaille K,Horton T,Kroh A,Hernandez F,Mees J", "journal": "PLoS One", "doi": "10.1371/journal.pone.0194599", "created_at": "2021-09-30T08:27:37.863Z", "updated_at": "2021-09-30T08:27:37.863Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2365, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1649", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:56.338Z", "metadata": {"doi": "10.25504/FAIRsharing.4dqw0", "name": "The Arabidopsis Information Resource", "status": "ready", "contacts": [{"contact-email": "curator@arabidopsis.org"}], "homepage": "http://www.arabidopsis.org/", "identifier": 1649, "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. Data available from TAIR includes the complete genome sequence along with gene structure, gene product information, gene expression, DNA and seed stocks, genome maps, genetic and physical markers, publications, and information about the Arabidopsis research community. Gene product function data is updated every week from the latest published research literature and community data submissions.", "abbreviation": "TAIR", "support-links": [{"url": "curator@arabidopsis.org", "type": "Support email"}, {"url": "http://www.arabidopsis.org/help/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.arabidopsis.org/help/index.jsp", "type": "Help documentation"}, {"url": "http://www.arabidopsis.org/help/tutorials/index.jsp", "type": "Training documentation"}, {"url": "https://www.youtube.com/user/TAIRinfo/featured", "name": "TAIR You Tube Channel", "type": "Video"}, {"url": "https://en.wikipedia.org/wiki/The_Arabidopsis_Information_Resource", "type": "Wikipedia"}], "year-creation": 2000, "data-processes": [{"url": "http://arabidopsis.org", "name": "weekly release of gene function annotation", "type": "data release"}, {"url": "https://www.arabidopsis.org/servlets/tools/gbrowse/arabidopsis", "name": "Gbrowse", "type": "data access"}, {"url": "https://www.arabidopsis.org/servlets/Search?action=new_search&type=keyword", "name": "GO Annotation Search: search GO annotations", "type": "data access"}, {"url": "http://www.arabidopsis.org/submit/index.jsp", "name": "submit", "type": "data curation"}, {"name": "manual curation", "type": "data curation"}, {"name": "versioning by genome assembly", "type": "data versioning"}, {"name": "versioning by data of functional annotation", "type": "data versioning"}, {"url": "http://www.arabidopsis.org/download/index-auto.jsp?dir=/download_files/Public_Data_Releases", "name": "access to historical files possible", "type": "data versioning"}], "associated-tools": [{"url": "https://www.arabidopsis.org/servlets/tools/synteny", "name": "Synteny viewer: compare syntenic regions between two or more genomes"}, {"url": "https://www.arabidopsis.org/servlets/tools/sv", "name": "SeqViewer: a genome browser developed at TAIR for viewing Arabidopsis sequence and annotation"}, {"url": "https://www.arabidopsis.org/tools/nbrowse.jsp", "name": "NBrowse: an interactive graphical browser for biological networks such as protein-protein interactions"}, {"url": "https://www.arabidopsis.org/biocyc/index.jsp", "name": "AraCyc Pathways: Arabidopsis biochemical pathways visualization and querying tool"}, {"url": "http://www.textpresso.org/arabidopsis/", "name": "Textpresso Full Text: literature full text search"}, {"url": "http://www.arabidopsis.org/tools/index.jsp", "name": "analyze"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010185", "name": "re3data:r3d100010185", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004618", "name": "SciCrunch:RRID:SCR_004618", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000105", "bsg-d000105"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Metabolomics"], "domains": ["Molecular structure", "Genetic map", "Physical map", "Genome map", "Expression data", "DNA sequence data", "Publication", "Structure", "Gene"], "taxonomies": ["Arabidopsis thaliana"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Arabidopsis Information Resource", "abbreviation": "TAIR", "url": "https://fairsharing.org/10.25504/FAIRsharing.4dqw0", "doi": "10.25504/FAIRsharing.4dqw0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. Data available from TAIR includes the complete genome sequence along with gene structure, gene product information, gene expression, DNA and seed stocks, genome maps, genetic and physical markers, publications, and information about the Arabidopsis research community. Gene product function data is updated every week from the latest published research literature and community data submissions.", "publications": [{"id": 1096, "pubmed_id": 17986450, "title": "The Arabidopsis Information Resource (TAIR): gene structure and function annotation.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm965", "authors": "Swarbreck D., Wilks C., Lamesch P., Berardini TZ., Garcia-Hernandez M., Foerster H., Li D., Meyer T., Muller R., Ploetz L., Radenbaugh A., Singh S., Swing V., Tissier C., Zhang P., Huala E.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm965", "created_at": "2021-09-30T08:24:21.347Z", "updated_at": "2021-09-30T08:24:21.347Z"}, {"id": 1098, "pubmed_id": 20521243, "title": "Using the Arabidopsis information resource (TAIR) to find information about Arabidopsis genes.", "year": 2010, "url": "http://doi.org/10.1002/0471250953.bi0111s30", "authors": "Lamesch P., Dreher K., Swarbreck D., Sasidharan R., Reiser L., Huala E.,", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0111s30", "created_at": "2021-09-30T08:24:21.567Z", "updated_at": "2021-09-30T08:24:21.567Z"}, {"id": 1106, "pubmed_id": 22140109, "title": "The Arabidopsis Information Resource (TAIR): improved gene annotation and new tools.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1090", "authors": "Lamesch P,Berardini TZ,Li D,Swarbreck D,Wilks C,Sasidharan R,Muller R,Dreher K,Alexander DL,Garcia-Hernandez M,Karthikeyan AS,Lee CH,Nelson WD,Ploetz L,Singh S,Wensel A,Huala E", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1090", "created_at": "2021-09-30T08:24:22.539Z", "updated_at": "2021-09-30T11:28:58.818Z"}, {"id": 1724, "pubmed_id": 26201819, "title": "The Arabidopsis information resource: Making and mining the \"gold standard\" annotated reference plant genome.", "year": 2015, "url": "http://doi.org/10.1002/dvg.22877", "authors": "Berardini TZ,Reiser L,Li D,Mezheritsky Y,Muller R,Strait E,Huala E", "journal": "Genesis", "doi": "10.1002/dvg.22877", "created_at": "2021-09-30T08:25:33.170Z", "updated_at": "2021-09-30T08:25:33.170Z"}, {"id": 1864, "pubmed_id": 29220077, "title": "Using the Arabidopsis Information Resource (TAIR) to Find Information About Arabidopsis Genes.", "year": 2017, "url": "http://doi.org/10.1002/cpbi.36", "authors": "Reiser L,Subramaniam S,Li D,Huala E", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/cpbi.36", "created_at": "2021-09-30T08:25:49.455Z", "updated_at": "2021-09-30T08:25:49.455Z"}, {"id": 1865, "pubmed_id": 26989150, "title": "Sustainable funding for biocuration: The Arabidopsis Information Resource (TAIR) as a case study of a subscription-based funding model.", "year": 2016, "url": "http://doi.org/10.1093/database/baw018", "authors": "Reiser L,Berardini TZ,Li D,Muller R,Strait EM,Li Q,Mezheritsky Y,Vetushko A,Huala E", "journal": "Database (Oxford)", "doi": "10.1093/database/baw018", "created_at": "2021-09-30T08:25:49.564Z", "updated_at": "2021-09-30T08:25:49.564Z"}], "licence-links": [{"licence-name": "TAIR Terms of Use", "licence-id": 770, "link-id": 2334, "relation": "undefined"}, {"licence-name": "TAIR Software License", "licence-id": 769, "link-id": 2335, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 2336, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3819", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T11:27:16.243Z", "updated-at": "2022-02-10T13:12:03.724Z", "metadata": {"name": "Checklistbank", "status": "in_development", "contacts": [{"contact-name": "Joe Miller", "contact-email": "jmiller@gbif.org", "contact-orcid": "0000-0002-5788-9010"}], "homepage": "https://data.catalogueoflife.org/tools/name-match", "citations": [], "identifier": 3819, "description": "ChecklistBank as a repository for its community to share checklist data. COL and GBIF have united their capabilities to make ChecklistBank a consistent foundation and repository for all COL datasets and any other publicly published species lists.\n\nJust a Start", "abbreviation": "Checklistbank", "year-creation": 2022, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: Checklistbank", "abbreviation": "Checklistbank", "url": "https://fairsharing.org/fairsharing_records/3819", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ChecklistBank as a repository for its community to share checklist data. COL and GBIF have united their capabilities to make ChecklistBank a consistent foundation and repository for all COL datasets and any other publicly published species lists.\n\nJust a Start", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2264", "type": "fairsharing-records", "attributes": {"created-at": "2016-03-08T19:07:34.000Z", "updated-at": "2021-11-24T13:19:31.167Z", "metadata": {"doi": "10.25504/FAIRsharing.j97pjn", "name": "Validated Antibody Database", "status": "ready", "contacts": [{"contact-name": "Hanqing Xie", "contact-email": "han@labome.com"}], "homepage": "http://www.labome.com", "identifier": 2264, "description": "Labome organizes reagent information from high quality suppliers. The reagents include antibodies, siRNA/shRNA, ELISA kits, cDNA clones, proteins/peptides, and biochemicals. To help solve the antibody quality problem, Labome manually curates antibody information from formal publications\u00a0and develops Validated Antibody Database (VAD).", "abbreviation": "VAD", "support-links": [{"url": "https://twitter.com/labome", "type": "Twitter"}], "year-creation": 2015, "data-processes": [{"url": "http://www.labome.com", "name": "web interface", "type": "data access"}]}, "legacy-ids": ["biodbcore-000738", "bsg-d000738"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Peptide", "Reagent", "Antibody", "Protein", "Complementary DNA"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Validated Antibody Database", "abbreviation": "VAD", "url": "https://fairsharing.org/10.25504/FAIRsharing.j97pjn", "doi": "10.25504/FAIRsharing.j97pjn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Labome organizes reagent information from high quality suppliers. The reagents include antibodies, siRNA/shRNA, ELISA kits, cDNA clones, proteins/peptides, and biochemicals. To help solve the antibody quality problem, Labome manually curates antibody information from formal publications\u00a0and develops Validated Antibody Database (VAD).", "publications": [], "licence-links": [{"licence-name": "Labome Copyright", "licence-id": 484, "link-id": 891, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1809", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:08.746Z", "metadata": {"doi": "10.25504/FAIRsharing.x5f7dq", "name": "RNAiDB", "status": "ready", "contacts": [{"contact-name": "Kristin C. Gunsalus", "contact-email": "kcg1@nyu.edu"}], "homepage": "http://www.rnai.org/", "identifier": 1809, "description": "RNAiDB provides access to results from RNAi interference studies in C. elegans , including images, movies, phenotypes, and graphical maps.", "abbreviation": "RNAiDB", "support-links": [{"url": "admin@rnai.org", "type": "Support email"}, {"url": "http://aquila.bio.nyu.edu/cgi-bin/rnaidb/info?topic=help", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "http://aquila.bio.nyu.edu/cgi-bin/rnaidb/search_index.cgi", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://aquila.bio.nyu.edu/cgi-bin/rnaidb/browse/phenoblast.cgi", "name": "Phenoblast"}]}, "legacy-ids": ["biodbcore-000269", "bsg-d000269"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Ribonucleic acid", "Imaging", "RNA interference", "Phenotype"], "taxonomies": ["Caenorhabditis elegans"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: RNAiDB", "abbreviation": "RNAiDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.x5f7dq", "doi": "10.25504/FAIRsharing.x5f7dq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: RNAiDB provides access to results from RNAi interference studies in C. elegans , including images, movies, phenotypes, and graphical maps.", "publications": [{"id": 335, "pubmed_id": 14681444, "title": "RNAiDB and PhenoBlast: web tools for genome-wide phenotypic mapping projects.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh110", "authors": "Gunsalus KC., Yueh WC., MacMenamin P., Piano F.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh110", "created_at": "2021-09-30T08:22:56.032Z", "updated_at": "2021-09-30T08:22:56.032Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1951", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:00.535Z", "metadata": {"doi": "10.25504/FAIRsharing.pfg82t", "name": "Rat Genome Database", "status": "ready", "contacts": [{"contact-name": "Jennifer R Smith", "contact-email": "jrsmith@mcw.edu"}], "homepage": "https://rgd.mcw.edu/", "citations": [{"doi": "10.1093/nar/gkz1041", "pubmed-id": 31713623, "publication-id": 1220}], "identifier": 1951, "description": "The Rat Genome Database stores genetic, genomic, phenotype, and disease data generated from rat research. It provides access to corresponding data for eight other species, allowing cross-species comparison. Data curation is performed both manually and via an automated pipeline, giving RGD users integrated access to a wide variety of data to support their research.", "abbreviation": "RGD", "access-points": [{"url": "https://rest.rgd.mcw.edu/rgdws/swagger-ui.html", "name": "RGD API", "type": "REST"}], "support-links": [{"url": "https://rgd.mcw.edu/wg/news2/", "name": "News", "type": "Blog/News"}, {"url": "https://rgd.mcw.edu/contact/index.shtml", "name": "RGD Contact Form", "type": "Contact form"}, {"url": "https://rgd.mcw.edu/wg/help3/", "name": "General Help", "type": "Help documentation"}, {"url": "http://mailman.mcw.edu/mailman/listinfo/rat-forum", "name": "Rat Community Forum", "type": "Mailing list"}, {"url": "https://rgd.mcw.edu/wg/home/pathway2/", "name": "Molecular Pathway Diagrams", "type": "Help documentation"}, {"url": "https://rgd.mcw.edu/wg/home/rgd_rat_community_videos/", "name": "Video Tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/ratgenome", "name": "@ratgenome", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "ftp://rgd.mcw.edu/pub", "name": "Download", "type": "data release"}, {"url": "https://rgd.mcw.edu/wg/tool-menu/", "name": "Visualization and Analysis", "type": "data access"}, {"url": "https://rgd.mcw.edu/wg/general-search/", "name": "Search", "type": "data access"}, {"url": "https://rgd.mcw.edu/registration-entry.shtml", "name": "Submit and Register Data", "type": "data curation"}, {"url": "https://rgd.mcw.edu/rgdweb/search/genes.html", "name": "Gene Search", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/report/genomeInformation/genomeInformation.html", "name": "Browse Genome Information", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/search/qtls.html", "name": "QTL Search", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/search/markers.html", "name": "SSLP / SNP Marker Search", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/search/cellLines.html", "name": "Browse Cell Lines", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/search/references.html", "name": "Search References", "type": "data access"}, {"url": "https://rgd.mcw.edu/rgdweb/ontology/search.html", "name": "Ontology Search", "type": "data access"}, {"url": "https://rgd.mcw.edu/wg/physiology/", "name": "Seach Phenotypes and Models", "type": "data access"}, {"url": "https://rgd.mcw.edu/wg/portals/", "name": "Search Diseases", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010417", "name": "re3data:r3d100010417", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006444", "name": "SciCrunch:RRID:SCR_006444", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000417", "bsg-d000417"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Comparative Genomics"], "domains": ["Deoxyribonucleic acid", "Disease process modeling", "Phenotype", "Disease", "Gene", "Quantitative trait loci", "Genome"], "taxonomies": ["Canis lupus familiaris", "Chinchilla lanigera", "Homo sapiens", "Ictidomys tridecemlineatus", "Mus musculus", "Rattus norvegicus", "Sus scrofa"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Rat Genome Database", "abbreviation": "RGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.pfg82t", "doi": "10.25504/FAIRsharing.pfg82t", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Rat Genome Database stores genetic, genomic, phenotype, and disease data generated from rat research. It provides access to corresponding data for eight other species, allowing cross-species comparison. Data curation is performed both manually and via an automated pipeline, giving RGD users integrated access to a wide variety of data to support their research.", "publications": [{"id": 445, "pubmed_id": 17151068, "title": "The Rat Genome Database, update 2007--easing the path from disease to data and back again.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl988", "authors": "Twigger SN., Shimoyama M., Bromberg S., Kwitek AE., Jacob HJ.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkl988", "created_at": "2021-09-30T08:23:08.325Z", "updated_at": "2021-09-30T08:23:08.325Z"}, {"id": 1219, "pubmed_id": 25355511, "title": "The Rat Genome Database 2015: genomic, phenotypic and environmental variations and disease.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1026", "authors": "Shimoyama M,De Pons J,Hayman GT,Laulederkind SJ,Liu W,Nigam R,Petri V,Smith JR,Tutaj M,Wang SJ,Worthey E,Dwinell M,Jacob H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1026", "created_at": "2021-09-30T08:24:35.880Z", "updated_at": "2021-09-30T11:29:03.193Z"}, {"id": 1220, "pubmed_id": 31713623, "title": "The Year of the Rat: The Rat Genome Database at 20: a multi-species knowledgebase and analysis platform.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz1041", "authors": "Smith JR,Hayman GT,Wang SJ,Laulederkind SJF,Hoffman MJ,Kaldunski ML,Tutaj M,Thota J,Nalabolu HS,Ellanki SLR,Tutaj MA,De Pons JL,Kwitek AE,Dwinell MR,Shimoyama ME", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz1041", "created_at": "2021-09-30T08:24:35.988Z", "updated_at": "2021-09-30T11:29:03.292Z"}, {"id": 2145, "pubmed_id": 27009807, "title": "The Disease Portals, disease-gene annotation and the RGD disease ontology at the Rat Genome Database.", "year": 2016, "url": "http://doi.org/10.1093/database/baw034", "authors": "Hayman GT,Laulederkind SJ,Smith JR,Wang SJ,Petri V,Nigam R,Tutaj M,De Pons J,Dwinell MR,Shimoyama M", "journal": "Database (Oxford)", "doi": "10.1093/database/baw034", "created_at": "2021-09-30T08:26:21.766Z", "updated_at": "2021-09-30T08:26:21.766Z"}, {"id": 2147, "pubmed_id": 10400928, "title": "A high-density integrated genetic linkage and radiation hybrid map of the laboratory rat.", "year": 1999, "url": "https://www.ncbi.nlm.nih.gov/pubmed/10400928", "authors": "Steen RG,Kwitek-Black AE,Glenn C,Gullings-Handley J,Van Etten W,Atkinson OS,Appel D,Twigger S,Muir M,Mull T,Granados M,Kissebah M,Russo K,Crane R,Popp M,Peden M,Matise T,Brown DM,Lu J,Kingsmore S,Tonellato PJ,Rozen S,Slonim D,Young P,Jacob HJ", "journal": "Genome Res", "doi": null, "created_at": "2021-09-30T08:26:21.965Z", "updated_at": "2021-09-30T08:26:21.965Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2380, "relation": "undefined"}, {"licence-name": "RGD Data Licence", "licence-id": 711, "link-id": 2381, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3823", "type": "fairsharing-records", "attributes": {"created-at": "2022-02-10T12:43:11.727Z", "updated-at": "2022-02-10T13:17:32.119Z", "metadata": {"name": "Global Registry of Scientific Collections", "status": "ready", "contacts": [{"contact-name": "Marie Grosjean", "contact-email": "mgrosjean@gbif.org", "contact-orcid": null}], "homepage": "https://www.gbif.org/grscicoll", "citations": [], "identifier": 3823, "description": "This registry of scientific collections builds on GRSciColl, a comprehensive, community-curated clearinghouse of collections information originally developed by Consortium of the Barcode of Life (CBOL).\n\nThe collections registry includes data on institutions, collections and associated staff members and spans all scientific disciplines, including earth and space sciences, anthropology, archaeology, biology and biomedicine, as well as applied fields like agriculture, veterinary medicine and technology.\n\nThe collections registry also serves as the registry for InstitutionCodes and CollectionCodes\u2014elements used in the DarwinCore data standard used in the biodiversity informatics community. Use of these terms enables publications and databases to point unambiguously to collections and their contents.", "abbreviation": "GRSciColl", "year-creation": null, "deprecation-reason": null}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Bioinformatics", "Taxonomy", "Biodiversity"], "domains": ["Taxonomic classification", "Annotation", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Denmark"], "name": "FAIRsharing record for: Global Registry of Scientific Collections", "abbreviation": "GRSciColl", "url": "https://fairsharing.org/fairsharing_records/3823", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This registry of scientific collections builds on GRSciColl, a comprehensive, community-curated clearinghouse of collections information originally developed by Consortium of the Barcode of Life (CBOL).\n\nThe collections registry includes data on institutions, collections and associated staff members and spans all scientific disciplines, including earth and space sciences, anthropology, archaeology, biology and biomedicine, as well as applied fields like agriculture, veterinary medicine and technology.\n\nThe collections registry also serves as the registry for InstitutionCodes and CollectionCodes\u2014elements used in the DarwinCore data standard used in the biodiversity informatics community. Use of these terms enables publications and databases to point unambiguously to collections and their contents.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2087", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:45.209Z", "metadata": {"doi": "10.25504/FAIRsharing.jrv6wj", "name": "Xenopus laevis and tropicalis biology and genomics resource", "status": "ready", "contacts": [{"contact-name": "Aaron Zorn", "contact-email": "xenbase@ucalgary.ca", "contact-orcid": "0000-0003-3217-3590"}], "homepage": "http://www.xenbase.org", "identifier": 2087, "description": "Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis which was created to improve knowledge of developmental and disease processes. Through curation and automated data provisioning from various sources, Xenbase aims to integrate the body of knowledge on Xenopus genomics and biology together with the visualization of biologically-significant interactions.", "abbreviation": "Xenbase", "support-links": [{"url": "https://www.youtube.com/user/XenbaseTips", "name": "Video Tutorials (YouTube)", "type": "Video"}, {"url": "http://wiki.xenbase.org/xenwiki", "name": "Xenbase Community Wiki", "type": "Help documentation"}, {"url": "http://www.xenbase.org/other/statistics.do", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.xenbase.org/entry/doNewsRead.do?id=610", "name": "Anatomy and Histology Atlas", "type": "Help documentation"}, {"url": "http://www.xenbase.org/anatomy/static/xenbasefate.jsp", "name": "Fate Maps", "type": "Help documentation"}, {"url": "http://www.xenbase.org/anatomy/static/movies.jsp", "name": "Development Videos", "type": "Help documentation"}, {"url": "https://twitter.com/Xenbase", "name": "@Xenbase", "type": "Twitter"}, {"url": "https://en.wikipedia.org/wiki/Xenbase", "name": "Xenbase Wikipedia Entry", "type": "Wikipedia"}], "year-creation": 2007, "data-processes": [{"url": "http://ftp.xenbase.org/pub/", "name": "Download", "type": "data release"}, {"url": "http://www.xenbase.org/common/submitData.do", "name": "Submit Data", "type": "data curation"}, {"url": "http://www.xenbase.org/common/displayJBrowse.do", "name": "Genome browser (JBrowse)", "type": "data access"}, {"url": "http://www.xenbase.org/geneExpression/gseCurationSearch.do?method=search", "name": "Search Hight-Throughput Sequencing Data", "type": "data access"}, {"url": "http://www.xenbase.org/genomes/blast.do", "name": "BLAST", "type": "data access"}, {"url": "http://www.xenbase.org/geneExpression/geneExpressionSearch.do?method=display", "name": "Gene Expression Search", "type": "data access"}, {"url": "http://www.xenbase.org/anatomy/anatomy.do?method=display&tabId=2", "name": "Anatomy Search", "type": "data access"}, {"url": "http://www.xenbase.org/gene/static/rna_seq_view.jsp", "name": "View RNA-seq Data", "type": "data access"}, {"url": "http://www.xenbase.org/gene/geneExpressionChart.do?method=drawProtein", "name": "Embryonic Protein Expression", "type": "data access"}, {"url": "http://www.xenbase.org/geneExpression/static/miRNA/body/mirTable.jsp", "name": "Browse miRNA Catalog", "type": "data access"}, {"url": "http://www.xenbase.org/common/searchPhenotype.do?method=display", "name": "Phenotype Search", "type": "data access"}, {"url": "http://www.xenbase.org/stockCenter/searchLines.do?searchIn=1&searchValue=&searchSpecies=11&mutant=true&orderBy=NAME&orderDirection=DESC&method=searchLines", "name": "Search Lines and Strains", "type": "data access"}, {"url": "http://www.xenbase.org/common/disease.do?method=search&searchIn=10", "name": "Search Diseases", "type": "data access"}, {"url": "http://www.xenbase.org/cgi-bin/textpresso/xenopus/home", "name": "Search Xenopus Literature", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011331", "name": "re3data:r3d100011331", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003280", "name": "SciCrunch:RRID:SCR_003280", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000556", "bsg-d000556"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Functional Genomics", "Anatomy", "Genomics", "Genetics", "Proteomics", "Developmental Biology", "Cell Biology"], "domains": ["Expression data", "Bibliography", "Gene Ontology enrichment", "Differential gene expression analysis", "Differential protein expression analysis", "Model organism", "Reagent", "Next generation DNA sequencing", "Disease process modeling", "Gene expression", "Antibody", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing", "Phenotype", "Micro RNA", "Genome", "Genetic strain"], "taxonomies": ["Xenopus", "Xenopus laevis", "Xenopus tropicalis"], "user-defined-tags": [], "countries": ["Canada", "United States"], "name": "FAIRsharing record for: Xenopus laevis and tropicalis biology and genomics resource", "abbreviation": "Xenbase", "url": "https://fairsharing.org/10.25504/FAIRsharing.jrv6wj", "doi": "10.25504/FAIRsharing.jrv6wj", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis which was created to improve knowledge of developmental and disease processes. Through curation and automated data provisioning from various sources, Xenbase aims to integrate the body of knowledge on Xenopus genomics and biology together with the visualization of biologically-significant interactions.", "publications": [{"id": 708, "pubmed_id": 25380782, "title": "The Virtual Xenbase: transitioning an online bioinformatics resource to a private cloud", "year": 2014, "url": "http://doi.org/10.1093/database/bau108", "authors": "K Karimi and PD Vize", "journal": "Database", "doi": "10.1093/database/bau108", "created_at": "2021-09-30T08:23:38.086Z", "updated_at": "2021-09-30T08:23:38.086Z"}, {"id": 970, "pubmed_id": 24139024, "title": "Enhanced XAO: the ontology of Xenopus anatomy and development underpins more accurate annotation of gene expression and queries on Xenbase.", "year": 2013, "url": "http://doi.org/10.1186/2041-1480-4-31", "authors": "Segerdell E,Ponferrada VG,James-Zorn C,Burns KA,Fortriede JD,Dahdul WM,Vize PD,Zorn AM", "journal": "J Biomed Semantics", "doi": "10.1186/2041-1480-4-31", "created_at": "2021-09-30T08:24:07.313Z", "updated_at": "2021-09-30T08:24:07.313Z"}, {"id": 1194, "pubmed_id": 19884130, "title": "Xenbase: gene expression and improved integration.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp953", "authors": "Bowes JB,Snyder KA,Segerdell E,Jarabek CJ,Azam K,Zorn AM,Vize PD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp953", "created_at": "2021-09-30T08:24:32.721Z", "updated_at": "2021-09-30T11:29:02.734Z"}, {"id": 1196, "pubmed_id": 27039265, "title": "Xenopus genomic data and browser resources.", "year": 2016, "url": "http://doi.org/S0012-1606(15)30357-2", "authors": "Vize PD,Zorn AM", "journal": "Dev Biol", "doi": "10.1016/j.ydbio.2016.03.030", "created_at": "2021-09-30T08:24:32.925Z", "updated_at": "2021-09-30T08:24:32.925Z"}, {"id": 1485, "pubmed_id": 25313157, "title": "Xenbase, the Xenopus model organism database; new virtualized system, data types and genomes", "year": 2014, "url": "http://doi.org/10.1093/nar/gku956", "authors": "\u2022JB Karpinka, JD Fortriede, KA Burns, C James-Zorn; VG Ponferrada; J Lee; K Karimi; AM Zorn; PD Vize", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku956", "created_at": "2021-09-30T08:25:06.254Z", "updated_at": "2021-09-30T08:25:06.254Z"}, {"id": 1486, "pubmed_id": 30863320, "title": "Xenbase: Facilitating the Use of Xenopus to Model Human Disease.", "year": 2019, "url": "http://doi.org/10.3389/fphys.2019.00154", "authors": "Nenni MJ, Fisher ME, James-Zorn C, Pells TJ, Ponferrada V, Chu S, Fortriede JD, Burns KA, Wang Y, Lotay VS, Wang DZ, Segerdell E, Chaturvedi P, Karimi K, Vize PD, Zorn AM.", "journal": "Front Physiol. 2019 Feb 26;10:154", "doi": "doi:10.3389/fphys.2019.00154", "created_at": "2021-09-30T08:25:06.361Z", "updated_at": "2021-09-30T08:25:06.361Z"}, {"id": 1498, "pubmed_id": 31733057, "title": "Xenbase: deep integration of GEO & SRA RNA-seq and ChIP-seq data in a model organism database.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz933", "authors": "Fortriede JD,Pells TJ,Chu S,Chaturvedi P,Wang D,Fisher ME,James-Zorn C,Wang Y,Nenni MJ,Burns KA,Lotay VS,Ponferrada VG,Karimi K,Zorn AM,Vize PD", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz933", "created_at": "2021-09-30T08:25:07.774Z", "updated_at": "2021-09-30T11:29:11.085Z"}, {"id": 2336, "pubmed_id": 29761462, "title": "Navigating Xenbase: An Integrated Xenopus Genomics and Gene Expression Database.", "year": 2018, "url": "http://doi.org/10.1007/978-1-4939-7737-6_10", "authors": "James-Zorn C, Ponferrada V, Fisher ME, Burns K, Fortriede J, Segerdell E, Karimi K, Lotay V, Wang DZ, Chu S, Pells T, Wang Y, Vize PD, Zorn A.", "journal": "Methods Mol Biol. 2018;1757:251-305.", "doi": "doi:10.1007/978-1-4939-7737-6_10.", "created_at": "2021-09-30T08:26:46.893Z", "updated_at": "2021-09-30T08:26:46.893Z"}], "licence-links": [{"licence-name": "Xenbase Credits and Copyright", "licence-id": 877, "link-id": 2410, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 2411, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1979", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:45.645Z", "metadata": {"doi": "10.25504/FAIRsharing.13cdzp", "name": "Influenza Virus Resource", "status": "ready", "contacts": [{"contact-name": "Yiming Bao", "contact-email": "bao@ncbi.nlm.nih.gov"}], "homepage": "https://www.ncbi.nlm.nih.gov/genomes/FLU/Database/nph-select.cgi?go=database", "identifier": 1979, "description": "Influenza Virus Resource presents data obtained from the NIAID Influenza Genome Sequencing Project as well as from GenBank, combined with tools for flu sequence analysis, annotation and submission to GenBank. In addition, it provides links to other resources that contain flu sequences, publications and general information about flu viruses.", "support-links": [{"url": "genomes@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "info@ncbi.nlm.nih.gov", "type": "Support email"}, {"url": "http://www.ncbi.nlm.nih.gov/genomes/FLU/help.html", "type": "Help documentation"}], "year-creation": 2006, "data-processes": [{"url": "ftp://ftp.ncbi.nih.gov/genomes/INFLUENZA/", "name": "Download", "type": "data access"}, {"url": "http://www.ncbi.nlm.nih.gov/genomes/FLU/submission.html", "name": "submit", "type": "data curation"}, {"url": "http://www.ncbi.nlm.nih.gov/genomes/FLU/Database/annotation.cgi", "name": "annotate", "type": "data access"}], "associated-tools": [{"url": "http://www.ncbi.nlm.nih.gov/genomes/FLU/Database/nph-select.cgi?go=alignment", "name": "Align"}, {"url": "http://www.ncbi.nlm.nih.gov/genomes/FLU/Database/nph-select.cgi?go=tree", "name": "cluster"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011004", "name": "re3data:r3d100011004", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002984", "name": "SciCrunch:RRID:SCR_002984", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000445", "bsg-d000445"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["DNA sequence data", "Annotation", "Deoxyribonucleic acid", "Genome"], "taxonomies": ["Influenza virus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Influenza Virus Resource", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.13cdzp", "doi": "10.25504/FAIRsharing.13cdzp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Influenza Virus Resource presents data obtained from the NIAID Influenza Genome Sequencing Project as well as from GenBank, combined with tools for flu sequence analysis, annotation and submission to GenBank. In addition, it provides links to other resources that contain flu sequences, publications and general information about flu viruses.", "publications": [{"id": 433, "pubmed_id": 17942553, "title": "The influenza virus resource at the National Center for Biotechnology Information.", "year": 2007, "url": "http://doi.org/10.1128/JVI.02005-07", "authors": "Bao Y., Bolotov P., Dernovoy D., Kiryutin B., Zaslavsky L., Tatusova T., Ostell J., Lipman D.,", "journal": "J. Virol.", "doi": "10.1128/JVI.02005-07", "created_at": "2021-09-30T08:23:07.074Z", "updated_at": "2021-09-30T08:23:07.074Z"}], "licence-links": [{"licence-name": "NCBI Data Policies and Disclaimer", "licence-id": 556, "link-id": 920, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 922, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3643", "type": "fairsharing-records", "attributes": {"created-at": "2021-11-26T12:06:49.589Z", "updated-at": "2022-02-08T10:46:23.924Z", "metadata": {"doi": "10.25504/FAIRsharing.71a10c", "name": "Multi-Omics Research Factory", "status": "ready", "contacts": [{"contact-name": "Joyce Bennett", "contact-email": "joyce.bennett@york.ac.uk", "contact-orcid": null}], "homepage": "https://morf-db.org/", "citations": [], "identifier": 3643, "description": "MORF (Multi-Omics Research Factory) was initially created by the BBSRC-funded DETOX project, led by Prof. Gavin Thomas at the University of York, to manage large and complex multi-omics datasets. Built by biologists for biologists, it allows the whole team to access the data securely from their browser, without the need for programming skills. As data becomes publicly available, it can be accessed and further analysed here. MORF's tools are also freely-available and include the MORF genome browser, which incorporates over 100 microbial genomes, and MORFlux, a flux balance analysis (FBA) modelling tool.", "abbreviation": "MORF", "data-curation": {}, "support-links": [{"url": "https://github.com/MORFdb", "name": "MORFdb GitHub Repository", "type": "Github"}, {"url": "https://morf-db.org/#contact", "name": "Contact Form", "type": "Contact form"}], "year-creation": 2019, "data-processes": [{"url": "https://morf-db.org/projects/home", "name": "Browse", "type": "data access"}, {"url": "https://morf-db.org/tools/genome-browser", "name": "Genome Browser", "type": "data access"}], "associated-tools": [{"url": "https://morf-db.org/tools/morflux/fba", "name": "MORFlux Flux Balance Analysis (FBA) Tool"}], "deprecation-reason": null, "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Proteomics", "Metabolomics", "Transcriptomics", "Microbiology"], "domains": ["Genome map", "Differential protein expression analysis", "Network model", "Omics data analysis", "Pathway model"], "taxonomies": ["Bacteria"], "user-defined-tags": ["Metabolic pathway prediction profile"], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Multi-Omics Research Factory", "abbreviation": "MORF", "url": "https://fairsharing.org/10.25504/FAIRsharing.71a10c", "doi": "10.25504/FAIRsharing.71a10c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MORF (Multi-Omics Research Factory) was initially created by the BBSRC-funded DETOX project, led by Prof. Gavin Thomas at the University of York, to manage large and complex multi-omics datasets. Built by biologists for biologists, it allows the whole team to access the data securely from their browser, without the need for programming skills. As data becomes publicly available, it can be accessed and further analysed here. MORF's tools are also freely-available and include the MORF genome browser, which incorporates over 100 microbial genomes, and MORFlux, a flux balance analysis (FBA) modelling tool.", "publications": [{"id": 3140, "pubmed_id": null, "title": "MORF: An online tool for exploring microbial cell responses using multi-omics analysis", "year": 2020, "url": "http://dx.doi.org/10.1099/acmi.ac2020.po0656", "authors": "Springthorpe, Vicki; Leaman, Rosalyn; Sifouna, Despoina; Bennett, Joyce; Thomas, Gavin; ", "journal": "Access Microbiology", "doi": "10.1099/acmi.ac2020.po0656", "created_at": "2021-11-26T14:52:34.659Z", "updated_at": "2021-11-26T14:52:34.659Z"}], "licence-links": [{"licence-name": "MORF Terms of Use", "licence-id": 892, "link-id": 2519, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "1599", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:23.280Z", "metadata": {"doi": "10.25504/FAIRsharing.d05nwx", "name": "IntAct molecular interaction database", "status": "ready", "contacts": [{"contact-name": "Sandra Orchard", "contact-email": "orchard@ebi.ac.uk", "contact-orcid": "0000-0002-8878-3972"}], "homepage": "https://www.ebi.ac.uk/intact/home", "citations": [{"doi": "10.1093/nar/gkt1115", "pubmed-id": 24234451, "publication-id": 2765}], "identifier": 1599, "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data. All interactions are derived from literature curation or direct user submissions and are freely available.", "abbreviation": "IntAct", "access-points": [{"url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/intact/webservices", "name": "SOAP services", "type": "SOAP"}, {"url": "http://www.ebi.ac.uk/Tools/webservices/psicquic/intact/webservices", "name": "RESTful services", "type": "REST"}], "support-links": [{"url": "http://www.ebi.ac.uk/support/index.php?query=intact", "name": "IntAct Contact Form", "type": "Contact form"}, {"url": "http://www.ebi.ac.uk/intact/pages/faq/faq.xhtml", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.ebi.ac.uk/intact/resources/datasets", "name": "Dataset Information", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/intact-quick-tour", "name": "Intact quick tour", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intact-the-molecular-interactions-database-at-embl-ebi-webinar", "name": "Intact the molecular interactions database at embl ebi webinar", "type": "TeSS links to training materials"}, {"url": "https://tess.elixir-europe.org/materials/intact-molecular-interactions-at-embl-ebi", "name": "Intact molecular interactions at embl ebi", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/intact/resources/training", "name": "Training", "type": "Training documentation"}, {"url": "https://twitter.com/intact_project", "name": "@intact_project", "type": "Twitter"}], "year-creation": 2003, "data-processes": [{"url": "https://www.ebi.ac.uk/intact/downloads", "name": "Download", "type": "data access"}, {"url": "https://www.ebi.ac.uk/intact/search", "name": "Search", "type": "data access"}, {"url": "https://www.ebi.ac.uk/intact/resources/curation_manual", "name": "Manual curation", "type": "data curation"}, {"url": "http://www.ebi.ac.uk/ontology-lookup/?termId=MI:0469", "name": "Browse", "type": "data access"}, {"url": "https://www.ebi.ac.uk/intact/submission", "name": "Submit", "type": "data curation"}, {"name": "RDF export", "type": "data access"}], "associated-tools": [{"url": "http://wiki.cytoscape.org/Cytoscape_User_Manual/ImportingNetworksFromWebServices", "name": "Cytoscape"}, {"url": "http://www.ebi.ac.uk/intact/validator", "name": "PSI-MI Semantic Validator"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010671", "name": "re3data:r3d100010671", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006944", "name": "SciCrunch:RRID:SCR_006944", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000054", "bsg-d000054"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biology"], "domains": ["Citation", "Protein domain", "Gene name", "Experimental measurement", "Free text", "Gene Ontology enrichment", "Protein interaction", "Binding", "Molecular interaction", "Protein", "Experimentally determined"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: IntAct molecular interaction database", "abbreviation": "IntAct", "url": "https://fairsharing.org/10.25504/FAIRsharing.d05nwx", "doi": "10.25504/FAIRsharing.d05nwx", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IntAct provides a freely available, open source database system and analysis tools for protein interaction data. All interactions are derived from literature curation or direct user submissions and are freely available.", "publications": [{"id": 351, "pubmed_id": 14681455, "title": "IntAct: an open source molecular interaction database.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh052", "authors": "Hermjakob H., Montecchi-Palazzi L., Lewington C. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkh052", "created_at": "2021-09-30T08:22:57.774Z", "updated_at": "2021-09-30T08:22:57.774Z"}, {"id": 865, "pubmed_id": 19850723, "title": "The IntAct molecular interaction database in 2010.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp878", "authors": "Aranda B., Achuthan P., Alam-Faruque Y. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp878", "created_at": "2021-09-30T08:23:55.555Z", "updated_at": "2021-09-30T08:23:55.555Z"}, {"id": 868, "pubmed_id": 17925023, "title": "Broadening the horizon--level 2.5 of the HUPO-PSI format for molecular interactions.", "year": 2007, "url": "http://doi.org/10.1186/1741-7007-5-44", "authors": "Kerrien S., Orchard S., Montecchi-Palazzi L. et al.", "journal": "BMC Biol.", "doi": "10.1186/1741-7007-5-44", "created_at": "2021-09-30T08:23:55.889Z", "updated_at": "2021-09-30T08:23:55.889Z"}, {"id": 2294, "pubmed_id": 21716279, "title": "PSICQUIC and PSISCORE: accessing and scoring molecular interactions.", "year": 2011, "url": "http://doi.org/10.1038/nmeth.1637", "authors": "Aranda B., Blankenburg H., Kerrien S. et al.", "journal": "Nat. Methods", "doi": "10.1038/nmeth.1637", "created_at": "2021-09-30T08:26:39.956Z", "updated_at": "2021-09-30T08:26:39.956Z"}, {"id": 2765, "pubmed_id": 24234451, "title": "The MIntAct project--IntAct as a common curation platform for 11 molecular interaction databases.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1115", "authors": "Orchard S,Ammari M,Aranda B et al.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1115", "created_at": "2021-09-30T08:27:39.836Z", "updated_at": "2021-09-30T11:29:43.311Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 2241, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2242, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2254", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-16T13:25:03.000Z", "updated-at": "2022-01-19T16:20:08.048Z", "metadata": {"doi": "10.25504/FAIRsharing.mqvqde", "name": "FaceBase", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "help@facebase.org"}], "homepage": "https://www.facebase.org/", "identifier": 2254, "description": "FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", "abbreviation": "FaceBase", "support-links": [{"url": "https://www.facebase.org/help/faqs/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.facebase.org/help/", "type": "Help documentation"}, {"url": "https://www.facebase.org/about/", "type": "Help documentation"}], "year-creation": 2009, "data-processes": [{"url": "https://www.facebase.org/data/search/", "name": "Search (Registration required for download)", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013263", "name": "re3data:r3d100013263", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_005998", "name": "SciCrunch:RRID:SCR_005998", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000728", "bsg-d000728"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Anatomy", "Medicine", "Epigenetics", "Genetics", "Developmental Biology"], "domains": ["Expression data", "Imaging", "Abnormal craniofacial development", "Craniofacial phenotype", "Chromatin immunoprecipitation - DNA sequencing", "RNA sequencing"], "taxonomies": ["Danio rerio", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: FaceBase", "abbreviation": "FaceBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.mqvqde", "doi": "10.25504/FAIRsharing.mqvqde", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", "publications": [{"id": 3189, "pubmed_id": null, "title": "FaceBase 3: analytical tools and FAIR resources for craniofacial and dental research", "year": 2020, "url": "http://dx.doi.org/10.1242/dev.191213", "authors": "Samuels, Bridget D.; Aho, Robert; Brinkley, James F.; Bugacov, Alejandro; Feingold, Eleanor; Fisher, Shannon; Gonzalez-Reiche, Ana S.; Hacia, Joseph G.; Hallgrimsson, Benedikt; Hansen, Karissa; Harris, Matthew P.; Ho, Thach-Vu; Holmes, Greg; Hooper, Joan E.; Jabs, Ethylin Wang; Jones, Kenneth L.; Kesselman, Carl; Klein, Ophir D.; Leslie, Elizabeth J.; Li, Hong; Liao, Eric C.; Long, Hannah; Lu, Na; Maas, Richard L.; Marazita, Mary L.; Mohammed, Jaaved; Prescott, Sara; Schuler, Robert; Selleri, Licia; Spritz, Richard A.; Swigut, Tomek; van Bakel, Harm; Visel, Axel; Welsh, Ian; Williams, Cristina; Williams, Trevor J.; Wysocka, Joanna; Yuan, Yuan; Chai, Yang; ", "journal": "Development", "doi": "10.1242/dev.191213", "created_at": "2022-01-19T16:15:06.449Z", "updated_at": "2022-01-19T16:15:06.449Z"}], "licence-links": [{"licence-name": "Facebase open and restricted access", "licence-id": 309, "link-id": 40, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3196", "type": "fairsharing-records", "attributes": {"created-at": "2020-10-16T08:25:23.000Z", "updated-at": "2021-11-24T13:18:19.397Z", "metadata": {"doi": "10.25504/FAIRsharing.AYegqK", "name": "Pharmacokinetics Database", "status": "ready", "contacts": [{"contact-name": "Matthias K\u00f6nig", "contact-email": "konigmatt@googlemail.com", "contact-orcid": "0000-0003-1725-179X"}], "homepage": "https://pk-db.com", "citations": [{"doi": "10.1093/nar/gkaa990", "pubmed-id": 33151297, "publication-id": 3051}], "identifier": 3196, "description": "PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration.", "abbreviation": "PK-DB", "access-points": [{"url": "https://pk-db.com/api/v1/", "name": "https://pk-db.com/api/v1/swagger/", "type": "REST"}], "support-links": [{"url": "https://github.com/matthiaskoenig/pkdb/issues", "name": "Issue tracker", "type": "Github"}], "year-creation": 2019, "data-processes": [{"url": "https://pk-db.com/data?tab=studies", "name": "Browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001707", "bsg-d001707"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Clinical Veterinary Medicine", "Clinical Studies", "Personalized Medicine", "Pharmacology", "Life Science", "Pharmacogenomics", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens", "Mus musculus", "Rattus norvegicus"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: Pharmacokinetics Database", "abbreviation": "PK-DB", "url": "https://fairsharing.org/10.25504/FAIRsharing.AYegqK", "doi": "10.25504/FAIRsharing.AYegqK", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration.", "publications": [{"id": 3051, "pubmed_id": 33151297, "title": "PK-DB: pharmacokinetics database for individualized and stratified computational modeling", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa990", "authors": "Jan Grzegorzewski, Janosch Brandhorst, Kathleen Green, Dimitra Eleftheriadou, Yannick Duport, Florian Barthorscht, Adrian K\u00f6ller, Danny Yu Jia Ke, Sara De Angelis, Matthias K\u00f6nig", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa990", "created_at": "2021-09-30T08:28:15.949Z", "updated_at": "2021-09-30T08:28:15.949Z"}], "licence-links": [{"licence-name": "PK-DB's Terms of use", "licence-id": 670, "link-id": 2225, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2798", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-18T14:54:06.000Z", "updated-at": "2021-12-06T10:47:58.021Z", "metadata": {"doi": "10.25504/FAIRsharing.50cFTB", "name": "Shared Platform for Antibiotic Research and Knowledge", "status": "ready", "contacts": [{"contact-name": "Katie Prosen", "contact-email": "kprosen@pewtrusts.org"}], "homepage": "https://www.pewtrusts.org/en/research-and-analysis/articles/2018/09/21/the-shared-platform-for-antibiotic-research-and-knowledge", "citations": [{"doi": "10.1021/acsinfecdis.8b00193", "pubmed-id": 30240184, "publication-id": 2525}], "identifier": 2798, "description": "SPARK is a free, openly accessible resource for scientists studying antibiotics for Gram-negative bacteria.", "abbreviation": "SPARK", "access-points": [], "data-curation": {}, "support-links": [{"url": "SPARK-access@pewtrusts.org", "name": "General contact", "type": "Support email"}, {"url": "SPARK-data@pewtrusts.org", "name": "Data contribution", "type": "Support email"}, {"url": "support@collaborativedrug.com", "name": "Technical assistance", "type": "Support email"}], "year-creation": 2018, "data-processes": [{"url": "https://www.collaborativedrug.com/SPARK-data-downloads/", "name": "Dowload", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013100", "name": "re3data:r3d100013100", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001297", "bsg-d001297"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Molecular Infection Biology", "Life Science", "Microbiology"], "domains": ["Antimicrobial", "Quantitative structure-activity relationship"], "taxonomies": ["Gram-negative bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Shared Platform for Antibiotic Research and Knowledge", "abbreviation": "SPARK", "url": "https://fairsharing.org/10.25504/FAIRsharing.50cFTB", "doi": "10.25504/FAIRsharing.50cFTB", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SPARK is a free, openly accessible resource for scientists studying antibiotics for Gram-negative bacteria.", "publications": [{"id": 2525, "pubmed_id": 30240184, "title": "Shared Platform for Antibiotic Research and Knowledge: A Collaborative Tool to SPARK Antibiotic Discovery", "year": 2018, "url": "http://doi.org/10.1021/acsinfecdis.8b00193", "authors": "Joe Thomas, Marc Navre, Aileen Rubio, Allan Coukell", "journal": "ACS Infectious Diseases", "doi": "10.1021/acsinfecdis.8b00193", "created_at": "2021-09-30T08:27:09.786Z", "updated_at": "2021-09-30T08:27:09.786Z"}], "licence-links": [{"licence-name": "SPARK Data Terms of Use", "licence-id": 888, "link-id": 2496, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2816", "type": "fairsharing-records", "attributes": {"created-at": "2019-09-23T15:14:51.000Z", "updated-at": "2021-11-24T13:17:10.326Z", "metadata": {"doi": "10.25504/FAIRsharing.fr95Qm", "name": "The database of eukaryotic RNA binding proteins", "status": "ready", "contacts": [{"contact-name": "Jian-You Liao", "contact-email": "liaojy3@mail.sysu.edu.cn", "contact-orcid": "liaojy3@mail.sysu.edu.cn"}], "homepage": "http://eurbpdb.syshospital.org/", "identifier": 2816, "description": "EuRBPDB is a comprehensive and user-friendly database for classifying and annotating eukaryotic RNA binding proteins (RBPs) drawn from various public databases. Over 100 eukaryotic species such as human, mouse, fly, worm and yeast are included. EuRBPDB also provides information on known and potential cancer-associated RBPs.", "abbreviation": "EuRBPDB", "support-links": [{"url": "http://eurbpdb.syshospital.org/contact.html", "name": "Contact", "type": "Contact form"}, {"url": "http://eurbpdb.syshospital.org/help.html", "name": "Help Page", "type": "Help documentation"}], "year-creation": 2019, "data-processes": [{"url": "http://eurbpdb.syshospital.org/rbp.information.html", "name": "Search by Species", "type": "data access"}, {"url": "http://eurbpdb.syshospital.org/download.html", "name": "Download", "type": "data release"}, {"url": "http://eurbpdb.syshospital.org/submit.html", "name": "Submit", "type": "data curation"}, {"url": "http://eurbpdb.syshospital.org/rbpDisease.php", "name": "Browse Cancer Data", "type": "data access"}, {"url": "http://eurbpdb.syshospital.org/Family_domainInfo.php", "name": "Browse by Family", "type": "data access"}, {"url": "http://eurbpdb.syshospital.org/species.php.html", "name": "Browse by Species", "type": "data access"}], "associated-tools": [{"url": "http://eurbpdb.syshospital.org/tools.html", "name": "RBPredictor"}]}, "legacy-ids": ["biodbcore-001315", "bsg-d001315"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Oncology", "Life Science", "Biology"], "domains": ["Binding site prediction", "Ribonucleic acid", "Binding", "Protein Analysis", "Protein"], "taxonomies": ["Eukaryota"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: The database of eukaryotic RNA binding proteins", "abbreviation": "EuRBPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.fr95Qm", "doi": "10.25504/FAIRsharing.fr95Qm", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EuRBPDB is a comprehensive and user-friendly database for classifying and annotating eukaryotic RNA binding proteins (RBPs) drawn from various public databases. Over 100 eukaryotic species such as human, mouse, fly, worm and yeast are included. EuRBPDB also provides information on known and potential cancer-associated RBPs.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2662", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-21T09:52:48.000Z", "updated-at": "2021-12-06T10:47:22.948Z", "metadata": {"name": "Magnetics Information Consortium", "status": "ready", "contacts": [{"contact-name": "Nick Jarboe", "contact-email": "njarboe@ucsd.edu"}], "homepage": "https://www2.earthref.org/MagIC", "identifier": 2662, "description": "The Magnetics Information Consortium (MagIC) is an open community digital data archive for rock and paleomagnetic data with portals that allow users access to archive, search, visualize, and download these data.", "abbreviation": "MagIC", "support-links": [{"url": "webmaster@earthref.org", "type": "Support email"}, {"url": "https://www2.earthref.org/MagIC/help", "type": "Help documentation"}, {"url": "https://github.com/earthref/MagIC/issues", "name": "GitHub", "type": "Github"}, {"url": "https://www2.earthref.org/MagIC/method-codes", "name": "MagIC Method Codes", "type": "Help documentation"}, {"url": "https://www2.earthref.org/vocabularies/controlled", "name": "EarthRef Vocabularies", "type": "Help documentation"}, {"url": "https://www2.earthref.org/MagIC/data-models/3.0", "name": "MagIC Data Models", "type": "Help documentation"}], "data-processes": [{"url": "https://www2.earthref.org/MagIC/search", "name": "search", "type": "data access"}, {"url": "https://www2.earthref.org/MagIC/upload", "name": "login", "type": "data access"}], "associated-tools": [{"url": "https://earthref.org/PmagPy/cookbook/", "name": "PmagPy"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011910", "name": "re3data:r3d100011910", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007098", "name": "SciCrunch:RRID:SCR_007098", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001155", "bsg-d001155"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Geology", "Paleontology", "Earth Science", "Oceanography"], "domains": [], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Magnetics Information Consortium", "abbreviation": "MagIC", "url": "https://fairsharing.org/fairsharing_records/2662", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Magnetics Information Consortium (MagIC) is an open community digital data archive for rock and paleomagnetic data with portals that allow users access to archive, search, visualize, and download these data.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 1206, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1820", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:09.287Z", "metadata": {"doi": "10.25504/FAIRsharing.kd39j4", "name": "IRESite", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "ires@iresite.org"}], "homepage": "http://www.iresite.org", "identifier": 1820, "description": "The IRESite database presents information about experimentally studied IRES (Internal Ribosome Entry Site) segments. IRES regions are known to attract the eukaryotic ribosomal translation initiation complex and thus promote translation initiation independently of the presence of the commonly utilized 5'-terminal 7mG cap structure.", "abbreviation": "IRESite", "support-links": [{"url": "http://www.iresite.org/IRESite_web.php?page=faq", "type": "Frequently Asked Questions (FAQs)"}], "year-creation": 2006, "data-processes": [{"url": "http://www.iresite.org/IRESite_web.php?page=search", "name": "search", "type": "data access"}, {"url": "http://www.iresite.org/IRESite_web.php?page=insert", "name": "submit", "type": "data access"}, {"url": "http://www.iresite.org/IRESite_web.php?page=browse_plasmids", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000280", "bsg-d000280"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "Peptide", "Ribosomal RNA", "Ribonucleic acid", "Biological regulation", "Plasmid"], "taxonomies": ["Eukaryota", "Viruses"], "user-defined-tags": [], "countries": ["Czech Republic"], "name": "FAIRsharing record for: IRESite", "abbreviation": "IRESite", "url": "https://fairsharing.org/10.25504/FAIRsharing.kd39j4", "doi": "10.25504/FAIRsharing.kd39j4", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The IRESite database presents information about experimentally studied IRES (Internal Ribosome Entry Site) segments. IRES regions are known to attract the eukaryotic ribosomal translation initiation complex and thus promote translation initiation independently of the presence of the commonly utilized 5'-terminal 7mG cap structure.", "publications": [{"id": 1597, "pubmed_id": 16381829, "title": "IRESite: the database of experimentally verified IRES structures (www.iresite.org).", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj081", "authors": "Mokrejs M., Vop\u00e1lensk\u00fd V., Kolenaty O., Masek T., Feketov\u00e1 Z., Sekyrov\u00e1 P., Skaloudov\u00e1 B., Kr\u00edz V., Posp\u00edsek M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj081", "created_at": "2021-09-30T08:25:19.079Z", "updated_at": "2021-09-30T08:25:19.079Z"}, {"id": 1615, "pubmed_id": 19917642, "title": "IRESite--a tool for the examination of viral and cellular internal ribosome entry sites.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp981", "authors": "Mokrejs M., Masek T., Vop\u00e1lensky V., Hlubucek P., Delbos P., Posp\u00edsek M.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkp981", "created_at": "2021-09-30T08:25:20.977Z", "updated_at": "2021-09-30T08:25:20.977Z"}], "licence-links": [{"licence-name": "NIH Web Policies and Notices", "licence-id": 587, "link-id": 278, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1943", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:15.724Z", "metadata": {"doi": "10.25504/FAIRsharing.mphj4z", "name": "Yeast Searching for Transcriptional Regulators and Consensus Tracking", "status": "ready", "contacts": [{"contact-name": "Isabel S\u00e1-Correia", "contact-email": "isacorreia@tecnico.ulisboa.pt"}], "homepage": "http://www.yeastract.com", "identifier": 1943, "description": "YEASTRACT (Yeast Search for Transcriptional Regulators And Consensus Tracking) is a curated repository of more than 48333 regulatory associations between transcription factors (TF) and target genes in Saccharomyces cerevisiae, based on more than 1200 bibliographic references.", "abbreviation": "YEASTRACT", "support-links": [{"url": "http://www.yeastract.com/contactus.php", "type": "Contact form"}, {"url": "http://www.yeastract.com/help/", "type": "Help documentation"}, {"url": "http://www.yeastract.com/tutorial.php", "type": "Training documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.yeastract.com/download.php", "name": "Download", "type": "data access"}, {"url": "http://www.yeastract.com/formfindregulators.php", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://www.yeastract.com/formorftogene.php", "name": "Transform an ORF List into a Gene List"}, {"url": "http://www.yeastract.com/iupacgeneration.php", "name": "IUPAC Code Generation for DNA Sequences"}, {"url": "http://www.yeastract.com/formgenerateregulationmatrix.php", "name": "Generate Regulation Matrix"}]}, "legacy-ids": ["biodbcore-000409", "bsg-d000409"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Deoxyribonucleic acid", "Regulation of gene expression", "Biological regulation", "Small molecule", "Transcription factor", "Transcript", "Gene"], "taxonomies": ["Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Portugal"], "name": "FAIRsharing record for: Yeast Searching for Transcriptional Regulators and Consensus Tracking", "abbreviation": "YEASTRACT", "url": "https://fairsharing.org/10.25504/FAIRsharing.mphj4z", "doi": "10.25504/FAIRsharing.mphj4z", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: YEASTRACT (Yeast Search for Transcriptional Regulators And Consensus Tracking) is a curated repository of more than 48333 regulatory associations between transcription factors (TF) and target genes in Saccharomyces cerevisiae, based on more than 1200 bibliographic references.", "publications": [{"id": 1392, "pubmed_id": 24170807, "title": "The YEASTRACT database: an upgraded information system for the analysis of gene and genomic transcription regulation in Saccharomyces cerevisiae.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1015", "authors": "Teixeira MC,Monteiro PT,Guerreiro JF,Goncalves JP,Mira NP,dos Santos SC,Cabrito TR,Palma M,Costa C,Francisco AP,Madeira SC,Oliveira AL,Freitas AT,Sa-Correia I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1015", "created_at": "2021-09-30T08:24:55.584Z", "updated_at": "2021-09-30T11:29:07.668Z"}, {"id": 1446, "pubmed_id": 16381908, "title": "The YEASTRACT database: a tool for the analysis of transcription regulatory associations in Saccharomyces cerevisiae.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj013", "authors": "Teixeira MC,Monteiro P,Jain P,Tenreiro S,Fernandes AR,Mira NP,Alenquer M,Freitas AT,Oliveira AL,Sa-Correia I", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj013", "created_at": "2021-09-30T08:25:01.650Z", "updated_at": "2021-09-30T11:29:08.426Z"}, {"id": 3033, "pubmed_id": 20972212, "title": "YEASTRACT: providing a programmatic access to curated transcriptional regulatory associations in Saccharomyces cerevisiae through a web services interface.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq964", "authors": "Abdulrehman D., Monteiro PT., Teixeira MC., Mira NP., Louren\u00e7o AB., dos Santos SC., Cabrito TR., Francisco AP., Madeira SC., Aires RS., Oliveira AL., S\u00e1-Correia I., Freitas AT.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq964", "created_at": "2021-09-30T08:28:13.783Z", "updated_at": "2021-09-30T08:28:13.783Z"}, {"id": 3055, "pubmed_id": 18032429, "title": "YEASTRACT-DISCOVERER: new tools to improve the analysis of transcriptional regulatory associations in Saccharomyces cerevisiae.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm976", "authors": "Monteiro PT,Mendes ND,Teixeira MC,d'Orey S,Tenreiro S,Mira NP,Pais H,Francisco AP,Carvalho AM,Lourenco AB,Sa-Correia I,Oliveira AL,Freitas AT", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm976", "created_at": "2021-09-30T08:28:16.446Z", "updated_at": "2021-09-30T11:29:50.403Z"}], "licence-links": [{"licence-name": "YEASTRACT Attribution required", "licence-id": 879, "link-id": 2307, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2771", "type": "fairsharing-records", "attributes": {"created-at": "2019-04-17T15:59:52.000Z", "updated-at": "2021-11-24T13:19:39.402Z", "metadata": {"doi": "10.25504/FAIRsharing.CugtbQ", "name": "4DNucleome Data Portal", "status": "ready", "contacts": [{"contact-name": "4DN Helpdesk", "contact-email": "support@4dnucleome.org"}], "homepage": "https://data.4dnucleome.org/", "identifier": 2771, "description": "The 4D Nucleome Data Portal (4DN) hosts data generated by the 4DN Network and other reference nucleomics data sets, and an expanding tool set for open data processing and visualization. It is a platform to search, visualize, and download nucleomics data.", "abbreviation": "4DN", "access-points": [{"url": "https://data.4dnucleome.org/help/user-guide/rest-api", "name": "4DN REST API", "type": "REST"}], "support-links": [{"url": "https://data.4dnucleome.org/help/user-guide", "name": "User Guide", "type": "Help documentation"}, {"url": "https://data.4dnucleome.org/help/user-guide/rest-api", "name": "Rest API Documentation", "type": "Help documentation"}, {"url": "https://data.4dnucleome.org/help/about/about-dcic", "name": "About DCIC", "type": "Help documentation"}, {"url": "https://data.4dnucleome.org/help/user-guide/biosample-metadata", "name": "Biosample metadata", "type": "Help documentation"}, {"url": "https://twitter.com/4dn_dcic", "name": "@4dn_dcic", "type": "Twitter"}], "year-creation": 2016, "data-processes": [{"url": "https://data.4dnucleome.org/help/submitter-guide/online-submission", "name": "Submit Data", "type": "data curation"}, {"url": "https://data.4dnucleome.org/help/analysis-and-visualization", "name": "Analysis and Visualization", "type": "data access"}, {"url": "https://data.4dnucleome.org/browse/?award.project=4DN&experimentset_type=replicate&type=ExperimentSetReplicate", "name": "Browse Data", "type": "data access"}], "associated-tools": [{"url": "https://github.com/4dn-dcic/submit4dn", "name": "Submit 4DN 1.1.0"}]}, "legacy-ids": ["biodbcore-001270", "bsg-d001270"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Nucleic acid sequence", "Experimental measurement", "Chromosome", "Workflow", "Data transformation"], "taxonomies": ["Drosophila melanogaster", "Gallus gallus", "Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: 4DNucleome Data Portal", "abbreviation": "4DN", "url": "https://fairsharing.org/10.25504/FAIRsharing.CugtbQ", "doi": "10.25504/FAIRsharing.CugtbQ", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The 4D Nucleome Data Portal (4DN) hosts data generated by the 4DN Network and other reference nucleomics data sets, and an expanding tool set for open data processing and visualization. It is a platform to search, visualize, and download nucleomics data.", "publications": [{"id": 2321, "pubmed_id": 28905911, "title": "The 4D nucleome project.", "year": 2017, "url": "http://doi.org/10.1038/nature23884", "authors": "Dekker J,Belmont AS,Guttman M,Leshyk VO,Lis JT,Lomvardas S,Mirny LA,O'Shea CC,Park PJ,Ren B,Politz JCR,Shendure J,Zhong S", "journal": "Nature", "doi": "10.1038/nature23884", "created_at": "2021-09-30T08:26:44.827Z", "updated_at": "2021-09-30T08:26:44.827Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2834", "type": "fairsharing-records", "attributes": {"created-at": "2019-10-01T10:41:36.000Z", "updated-at": "2021-11-24T13:19:53.484Z", "metadata": {"doi": "10.25504/FAIRsharing.4Sj3vE", "name": "iProX", "status": "ready", "contacts": [{"contact-name": "Yunping Zhu", "contact-email": "zhuyunping@gmail.com"}], "homepage": "https://www.iprox.org/", "citations": [{"doi": "10.1093/nar/gky869", "pubmed-id": 30252093, "publication-id": 2580}], "identifier": 2834, "description": "iProX is a public platform for collecting and sharing raw data, analysis results and metadata obtained from proteomics experiments. The iProX repository employs a web-based proteome data submission process and open sharing of mass spectrometry-based proteomics datasets. iProX is a member of the ProteomeXchange (PX) consortium.", "abbreviation": "iProX", "access-points": [{"url": "https://www.iprox.org/page/helpApi.html", "name": "iProX API", "type": "REST"}], "support-links": [{"url": "iprox@iprox.org", "type": "Support email"}, {"url": "https://www.iprox.org/page/helpEn.html", "name": "User Manual", "type": "Help documentation"}, {"url": "https://www.iprox.org/page/exampleDataset.html", "name": "Example Datasets", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.iprox.org/page/BWV016.html", "name": "Browse Data", "type": "data access"}, {"url": "https://www.iprox.org/page/SCV017.html", "name": "Search Data", "type": "data access"}, {"url": "https://www.iprox.org/page/PCV010.html", "name": "Submit Data", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001335", "bsg-d001335"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Proteomics"], "domains": ["Peptide", "Mass spectrometry assay", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: iProX", "abbreviation": "iProX", "url": "https://fairsharing.org/10.25504/FAIRsharing.4Sj3vE", "doi": "10.25504/FAIRsharing.4Sj3vE", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: iProX is a public platform for collecting and sharing raw data, analysis results and metadata obtained from proteomics experiments. The iProX repository employs a web-based proteome data submission process and open sharing of mass spectrometry-based proteomics datasets. iProX is a member of the ProteomeXchange (PX) consortium.", "publications": [{"id": 2580, "pubmed_id": 30252093, "title": "iProX: an integrated proteome resource.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky869", "authors": "Ma J,Chen T,Wu S,Yang C,Bai M,Shu K,Li K,Zhang G,Jin Z,He F,Hermjakob H,Zhu Y", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky869", "created_at": "2021-09-30T08:27:16.384Z", "updated_at": "2021-09-30T11:29:39.812Z"}], "licence-links": [{"licence-name": "iProX Data Licence", "licence-id": 452, "link-id": 1796, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3097", "type": "fairsharing-records", "attributes": {"created-at": "2020-07-30T13:07:52.000Z", "updated-at": "2022-01-11T13:00:05.608Z", "metadata": {"doi": "10.25504/FAIRsharing.48ZQkn", "name": "Integrated Marine Information System", "status": "ready", "contacts": [{"contact-name": "IMIS helpdesk", "contact-email": "data@vliz.be"}], "homepage": "http://www.vliz.be/en/integrated-marine-information-system", "identifier": 3097, "description": "IMIS is an online information system to provide an overview of the marine scientific landscape in Flanders and beyond. IMIS provides catalogues for: datasets, publications, maps, persons, and institutions, which are are stored in a structured and linked manner. Anyone can submit their own dataset, publication, etc to be added as a record in IMIS, and datasets can be published and given a DOI. Our goal is to be a FAIR data system that is integrated into the European marine community.", "abbreviation": "IMIS", "access-points": [{"url": "http://www.vliz.be/en/imis", "name": "Custom webservice, to search the IMIS catalogues. For manual see: http://www.vliz.be/en/imis?module=webservices)", "type": "REST"}], "support-links": [{"url": "data@vliz.be", "name": "IMIS support", "type": "Support email"}], "year-creation": 2003}, "legacy-ids": ["biodbcore-001605", "bsg-d001605"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Taxonomy", "Marine Biology", "Biodiversity", "Earth Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": [], "user-defined-tags": ["maritime policy"], "countries": ["Belgium"], "name": "FAIRsharing record for: Integrated Marine Information System", "abbreviation": "IMIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.48ZQkn", "doi": "10.25504/FAIRsharing.48ZQkn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: IMIS is an online information system to provide an overview of the marine scientific landscape in Flanders and beyond. IMIS provides catalogues for: datasets, publications, maps, persons, and institutions, which are are stored in a structured and linked manner. Anyone can submit their own dataset, publication, etc to be added as a record in IMIS, and datasets can be published and given a DOI. Our goal is to be a FAIR data system that is integrated into the European marine community.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2229", "type": "fairsharing-records", "attributes": {"created-at": "2015-11-02T17:37:53.000Z", "updated-at": "2021-11-24T13:19:29.695Z", "metadata": {"doi": "10.25504/FAIRsharing.pp67qc", "name": "Interferome", "status": "ready", "contacts": [{"contact-name": "Samuel Forster", "contact-email": "sf15@sanger.ac.uk", "contact-orcid": "0000-0003-4144-2537"}], "homepage": "http://www.interferome.org", "identifier": 2229, "description": "This database enables the reliable identification of an individual Interferon Regulated Gene (IRG) or IRG signatures from high-throughput data sets (i.e. microarray, proteomic data etc.). It also assists in identifying regulatory elements, chromosomal location and tissue expression of IRGs in human and mouse. This upgraded version, Interferome v2.0 has quantitative data, more detailed annotation and search capabilities and can be queried for one to a thousand genes, such as from from a microarray experiment.", "abbreviation": "Interferome", "support-links": [{"url": "http://www.interferome.org/interferome/site/showContactUs.jspx", "type": "Contact form"}, {"url": "http://www.interferome.org/interferome/site/showHelp.jspx", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "http://www.interferome.org/interferome/site/showSubmitData.jspx", "name": "submit", "type": "data curation"}, {"url": "http://www.interferome.org/interferome/search/showSearch.jspx", "name": "search", "type": "data access"}]}, "legacy-ids": ["biodbcore-000703", "bsg-d000703"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Annotation", "Computational biological predictions", "Regulation of gene expression", "Interferon", "Gene"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Australia"], "name": "FAIRsharing record for: Interferome", "abbreviation": "Interferome", "url": "https://fairsharing.org/10.25504/FAIRsharing.pp67qc", "doi": "10.25504/FAIRsharing.pp67qc", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This database enables the reliable identification of an individual Interferon Regulated Gene (IRG) or IRG signatures from high-throughput data sets (i.e. microarray, proteomic data etc.). It also assists in identifying regulatory elements, chromosomal location and tissue expression of IRGs in human and mouse. This upgraded version, Interferome v2.0 has quantitative data, more detailed annotation and search capabilities and can be queried for one to a thousand genes, such as from from a microarray experiment.", "publications": [{"id": 818, "pubmed_id": 23203888, "title": "Interferome v2.0: an updated database of annotated interferon-regulated genes.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1215", "authors": "Rusinova I,Forster S,Yu S,Kannan A,Masse M,Cumming H,Chapman R,Hertzog PJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1215", "created_at": "2021-09-30T08:23:50.210Z", "updated_at": "2021-09-30T11:28:52.626Z"}, {"id": 819, "pubmed_id": 18996892, "title": "INTERFEROME: the database of interferon regulated genes.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn732", "authors": "Samarajiwa SA,Forster S,Auchettl K,Hertzog PJ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn732", "created_at": "2021-09-30T08:23:50.309Z", "updated_at": "2021-09-30T11:28:52.843Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2514", "type": "fairsharing-records", "attributes": {"created-at": "2017-08-20T18:01:53.000Z", "updated-at": "2021-11-24T13:13:56.758Z", "metadata": {"doi": "10.25504/FAIRsharing.nwz68", "name": "VDJdb: a curated database of T-cell receptors with known antigen specificity", "status": "ready", "contacts": [{"contact-name": "Mikhail Shugay", "contact-email": "mikhail.shugay@gmail.com", "contact-orcid": "0000-0001-7826-7942"}], "homepage": "https://vdjdb.cdr3.net", "identifier": 2514, "description": "The primary goal of VDJdb is to facilitate access to existing information on T-cell receptor antigen specificities, i.e. the ability to recognize certain epitopes in certain MHC contexts. Our mission is to both aggregate the scarce TCR specificity information available so far and to create a curated repository to store such data. In addition to routine database updates providing the most up-to-date information, we make our best to ensure data consistency and fight irregularities in TCR specificity reporting with a complex database validation scheme.", "abbreviation": "VDJdb", "support-links": [{"url": "https://github.com/antigenomics/vdjdb-db/issues", "name": "Issue tracker", "type": "Github"}, {"url": "https://gitter.im/antigenomics/vdjdb-db", "name": "Interactive chat", "type": "Help documentation"}, {"url": "https://zenodo.org/record/838663#.WZq4IsaZOwI", "name": "Documentation", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://github.com/antigenomics/vdjdb-db", "name": "Database specification", "type": "data curation"}], "associated-tools": [{"url": "https://github.com/antigenomics/vdjdb-standalone", "name": "VDJdb-standalone"}]}, "legacy-ids": ["biodbcore-000996", "bsg-d000996"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Medicine", "Bioinformatics", "Immunogenetics", "Health Science", "Biomedical Science"], "domains": [], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": ["Immunogenomics"], "countries": ["Czech Republic", "European Union", "Russia"], "name": "FAIRsharing record for: VDJdb: a curated database of T-cell receptors with known antigen specificity", "abbreviation": "VDJdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.nwz68", "doi": "10.25504/FAIRsharing.nwz68", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The primary goal of VDJdb is to facilitate access to existing information on T-cell receptor antigen specificities, i.e. the ability to recognize certain epitopes in certain MHC contexts. Our mission is to both aggregate the scarce TCR specificity information available so far and to create a curated repository to store such data. In addition to routine database updates providing the most up-to-date information, we make our best to ensure data consistency and fight irregularities in TCR specificity reporting with a complex database validation scheme.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 1074, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1760", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:06.160Z", "metadata": {"doi": "10.25504/FAIRsharing.73cqdk", "name": "Pathogen Host Interactions", "status": "ready", "contacts": [{"contact-name": "Martin Urban", "contact-email": "martin.urban@rothamsted.ac.uk", "contact-orcid": "0000-0002-9100-6672"}], "homepage": "http://www.phi-base.org/", "citations": [{"doi": "10.1093/nar/gkw1089", "pubmed-id": 27915230, "publication-id": 2501}], "identifier": 1760, "description": "PHI-Base contains expertly curated molecular and biological information on genes proven to affect the outcome of pathogen-host interactions. PHI-base catalogues experimentally verified pathogenicity, virulence and effector genes from fungal, Oomycete and bacterial pathogens, which infect animal, plant, fungal and insect hosts.", "abbreviation": "PHI-base", "support-links": [{"url": "rothamsted.phibase@rothamsted.ac.uk", "name": "Contact Email", "type": "Support email"}, {"url": "contact@phi-base.org", "name": "Contact Email", "type": "Support email"}, {"url": "http://www.phi-base.org/helpLink.htm", "name": "PHI-base Help Pages", "type": "Help documentation"}, {"url": "http://www.phi-base.org/aboutUs.htm", "name": "About Phi-base", "type": "Help documentation"}, {"url": "http://www.phi-base.org/consortium.htm", "name": "PHI-base Community", "type": "Help documentation"}, {"url": "https://twitter.com/phi_base", "name": "@phi_base", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "http://www.phi-base.org/downloadLink.htm", "name": "Download", "type": "data access"}, {"url": "http://www.phi-base.org/errorContribution.htm", "name": "Users contribition", "type": "data curation"}, {"url": "http://www.phi-base.org/searchFacet.htm?queryTerm=", "name": "search", "type": "data access"}, {"url": "http://phi-blast.phi-base.org/", "name": "Blast", "type": "data access"}, {"url": "http://www.phi-base.org/releaseNote.htm", "name": "Data release", "type": "data release"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010570", "name": "re3data:r3d100010570", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003331", "name": "SciCrunch:RRID:SCR_003331", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000218", "bsg-d000218"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Pathogen", "Mutation", "Host", "Phenotype", "Disease phenotype", "Disease", "Microbe-host interaction phenotype", "Virulence", "Gene", "Gene-disease association", "Literature curation", "Biocuration"], "taxonomies": ["Bacteria", "Fungi", "Metazoa", "Viridiplantae"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: Pathogen Host Interactions", "abbreviation": "PHI-base", "url": "https://fairsharing.org/10.25504/FAIRsharing.73cqdk", "doi": "10.25504/FAIRsharing.73cqdk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PHI-Base contains expertly curated molecular and biological information on genes proven to affect the outcome of pathogen-host interactions. PHI-base catalogues experimentally verified pathogenicity, virulence and effector genes from fungal, Oomycete and bacterial pathogens, which infect animal, plant, fungal and insect hosts.", "publications": [{"id": 1588, "pubmed_id": 16381911, "title": "PHI-base: a new database for pathogen host interactions.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj047", "authors": "Winnenburg R., Baldwin TK., Urban M., Rawlings C., K\u00f6hler J., Hammond-Kosack KE.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkj047", "created_at": "2021-09-30T08:25:18.071Z", "updated_at": "2021-09-30T08:25:18.071Z"}, {"id": 2091, "pubmed_id": 17942425, "title": "PHI-base update: additions to the pathogen host interaction database.", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm858", "authors": "Winnenburg R., Urban M., Beacham A., Baldwin TK., Holland S., Lindeberg M., Hansen H., Rawlings C., Hammond-Kosack KE., K\u00f6hler J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkm858", "created_at": "2021-09-30T08:26:15.674Z", "updated_at": "2021-09-30T08:26:15.674Z"}, {"id": 2092, "pubmed_id": 25414340, "title": "The Pathogen-Host Interactions database (PHI-base): additions and future developments.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1165", "authors": "Urban M,Pant R,Raghunath A,Irvine AG,Pedro H,Hammond-Kosack KE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1165", "created_at": "2021-09-30T08:26:15.775Z", "updated_at": "2021-09-30T11:29:28.945Z"}, {"id": 2501, "pubmed_id": 27915230, "title": "PHI-base: a new interface and further additions for the multi-species pathogen-host interactions database.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1089", "authors": "Urban M,Cuzick A,Rutherford K,Irvine A,Pedro H,Pant R,Sadanadan V,Khamari L,Billal S,Mohanty S,Hammond-Kosack KE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1089", "created_at": "2021-09-30T08:27:06.865Z", "updated_at": "2021-09-30T11:29:38.163Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 70, "relation": "undefined"}, {"licence-name": "Phibase Data Policies and Disclaimer", "licence-id": 662, "link-id": 73, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2672", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-10T20:11:35.000Z", "updated-at": "2021-12-06T10:49:08.585Z", "metadata": {"doi": "10.25504/FAIRsharing.S09se7", "name": "CaltechDATA", "status": "ready", "contacts": [{"contact-name": "Caltech Library", "contact-email": "data@caltech.edu"}], "homepage": "https://data.caltech.edu", "citations": [], "identifier": 2672, "description": "CaltechDATA is an institutional data repository for Caltech. Caltech library runs the repository to preserve the accomplishments of Caltech researchers and share their results with the world. Caltech-associated researchers can upload data, link data with their publications, and assign a permanent DOI so that others can reference the data set. The repository also preserves software and has automatic Github integration. All files present in the repository are open access or embargoed, and all metadata is always available to the public.", "abbreviation": "CaltechDATA", "access-points": [{"url": "https://data.caltech.edu/api/records/", "name": "API records listing", "type": "REST"}, {"url": "https://github.com/caltechlibrary/caltechdata_api/releases/tag/v0.0.4", "name": "CaltechDATA API v0.0.4", "type": "Other"}], "support-links": [{"url": "data@caltech.edu", "name": "Email", "type": "Support email"}, {"url": "https://www.library.caltech.edu/caltechdata/faq", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.library.caltech.edu/caltechdata", "name": "Information", "type": "Help documentation"}, {"url": "https://twitter.com/CaltechData", "name": "@CaltechData", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "https://data.caltech.edu/search?page=1&size=25&ln=en&q=&cal_resource_type=dataset", "name": "Browse Data Sets", "type": "data access"}, {"url": "https://data.caltech.edu/search?page=1&size=25&ln=en&q=&cal_resource_type=software", "name": "Browse Software", "type": "data access"}, {"url": "https://data.caltech.edu/submit/form/beae3039-29ed-4e20-bd21-6ed6e994afa5/", "name": "Submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012384", "name": "re3data:r3d100012384", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001165", "bsg-d001165"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Data Management", "Atmospheric Science", "Subject Agnostic"], "domains": ["Experimental measurement", "Spectroscopy", "Protocol", "Study design"], "taxonomies": ["All"], "user-defined-tags": ["institutional repository", "Researcher data"], "countries": ["United States"], "name": "FAIRsharing record for: CaltechDATA", "abbreviation": "CaltechDATA", "url": "https://fairsharing.org/10.25504/FAIRsharing.S09se7", "doi": "10.25504/FAIRsharing.S09se7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CaltechDATA is an institutional data repository for Caltech. Caltech library runs the repository to preserve the accomplishments of Caltech researchers and share their results with the world. Caltech-associated researchers can upload data, link data with their publications, and assign a permanent DOI so that others can reference the data set. The repository also preserves software and has automatic Github integration. All files present in the repository are open access or embargoed, and all metadata is always available to the public.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 2255, "relation": "undefined"}, {"licence-name": "Creative Commons (CC) Public Domain Mark (PDM)", "licence-id": 198, "link-id": 2256, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2257, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 2259, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 2260, "relation": "undefined"}, {"licence-name": "GNU Lesser General Public License (LGPL) 3.0", "licence-id": 358, "link-id": 2261, "relation": "undefined"}, {"licence-name": "BSD-3-Clause License (Modified BSD License) (New BSD License)", "licence-id": 88, "link-id": 2262, "relation": "undefined"}, {"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2263, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2579", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T14:55:45.000Z", "updated-at": "2021-11-24T13:17:23.926Z", "metadata": {"doi": "10.25504/FAIRsharing.BZKHEH", "name": "Legume Information System", "status": "ready", "contacts": [{"contact-name": "Steven B. Cannon", "contact-email": "steven.cannon@ars.usda.gov", "contact-orcid": "0000-0003-2777-8034"}], "homepage": "https://legumeinfo.org/", "citations": [], "identifier": 2579, "description": "The Legume Information System (LIS) is a collaborative, community resource to facilitate crop improvement by integrating genetic, genomic, and trait data across legume species.", "abbreviation": "LIS", "support-links": [{"url": "https://legumeinfo.org/contact", "name": "LIS Contact Form", "type": "Contact form"}, {"url": "https://legumeinfo.org/help", "name": "LIS Help Pages", "type": "Help documentation"}, {"url": "https://legumeinfo.org/germplasm", "name": "Germplasm Resources", "type": "Help documentation"}, {"url": "https://legumeinfo.org/traits_maps", "name": "Traits and Maps Available at LIS", "type": "Help documentation"}, {"url": "https://us13.list-manage.com/subscribe?u=ff3fe0b89e836dfc80515dd83&id=2ef4c06119", "name": "Newsletter", "type": "Help documentation"}, {"url": "https://twitter.com/legumefed", "name": "@legumefed", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://legumeinfo.org/keyword_search", "name": "Keyword search", "type": "data access"}, {"url": "https://legumeinfo.org/search", "name": "All Searches", "type": "data access"}, {"url": "https://legumeinfo.org/download", "name": "Download Data", "type": "data access"}, {"url": "https://legumeinfo.org/submit_data", "name": "Submit Data", "type": "data curation"}, {"url": "https://legumeinfo.org/genomes", "name": "Browse Genomes", "type": "data access"}, {"url": "https://legumeinfo.org/blast", "name": "Blast", "type": "data access"}, {"url": "https://legumeinfo.org/blat", "name": "Blat", "type": "data access"}], "associated-tools": [{"url": "https://legumeinfo.org/annot", "name": "Annotation Tool"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001062", "bsg-d001062"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Genetics", "Agriculture", "Life Science"], "domains": ["Phenotype"], "taxonomies": ["Arachis duranensis", "Arachis hypogaea", "Arachis ipaensis", "Cajanus cajan", "Cicer arietinum", "Glycine max", "Lotus japonicus", "Lupinus angustifolius", "Medicago sativa", "Medicago truncatula", "Phaseolus vulgaris", "Pisum sativum", "Trifolium pratense", "Trifolium repens", "Vigna angularis", "Vigna radiata", "Vigna unguiculata"], "user-defined-tags": ["Plant Phenotypes and Traits"], "countries": ["United States"], "name": "FAIRsharing record for: Legume Information System", "abbreviation": "LIS", "url": "https://fairsharing.org/10.25504/FAIRsharing.BZKHEH", "doi": "10.25504/FAIRsharing.BZKHEH", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Legume Information System (LIS) is a collaborative, community resource to facilitate crop improvement by integrating genetic, genomic, and trait data across legume species.", "publications": [{"id": 930, "pubmed_id": 26546515, "title": "Legume information system (LegumeInfo.org): a key component of a set of federated data resources for the legume family.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1159", "authors": "Dash S,Campbell JD,Cannon EK,Cleary AM,Huang W,Kalberer SR,Karingula V,Rice AG,Singh J,Umale PE,Weeks NT,Wilkey AP,Farmer AD,Cannon SB", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1159", "created_at": "2021-09-30T08:24:02.866Z", "updated_at": "2021-09-30T11:28:55.500Z"}, {"id": 936, "pubmed_id": 15608283, "title": "The Legume Information System (LIS): an integrated information resource for comparative legume biology.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki128", "authors": "Gonzales MD,Archuleta E,Farmer A,Gajendran K,Grant D,Shoemaker R,Beavis WD,Waugh ME", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki128", "created_at": "2021-09-30T08:24:03.560Z", "updated_at": "2021-09-30T11:28:55.601Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1887", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:29.284Z", "metadata": {"doi": "10.25504/FAIRsharing.y1zyaq", "name": "Small Molecule Pathway Database", "status": "ready", "contacts": [{"contact-name": "David Wishart", "contact-email": "david.wishart@ualberta.ca"}], "homepage": "http://www.smpdb.ca/", "identifier": 1887, "description": "The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", "abbreviation": "SMPDB", "support-links": [{"url": "http://feedback.wishartlab.com/?site=small%20molecule%20pathway%20database", "type": "Contact form"}, {"url": "http://smpdb.ca/legend", "type": "Help documentation"}, {"url": "https://twitter.com/WishartLab", "name": "@WishartLab", "type": "Twitter"}], "year-creation": 2009, "data-processes": [{"url": "http://www.smpdb.ca/downloads", "name": "Download", "type": "data access"}, {"url": "http://smpdb.ca/structures/search/compounds/structure", "name": "Search", "type": "data access"}, {"url": "http://smpdb.ca/view", "name": "Browse", "type": "data access"}, {"url": "http://smpdb.ca/smp_map", "name": "Advanced search", "type": "data access"}], "associated-tools": [{"url": "http://smpdb.ca/search/sequence", "name": "Blast"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012753", "name": "re3data:r3d100012753", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004844", "name": "SciCrunch:RRID:SCR_004844", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000352", "bsg-d000352"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Protein structure", "Chemical structure", "Chemical entity", "Metabolite", "Small molecule", "Pathway model"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Small Molecule Pathway Database", "abbreviation": "SMPDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.y1zyaq", "doi": "10.25504/FAIRsharing.y1zyaq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", "publications": [{"id": 374, "pubmed_id": 19948758, "title": "SMPDB: The Small Molecule Pathway Database.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp1002", "authors": "Frolkis A., Knox C., Lim E., Jewison T., Law V., Hau DD., Liu P., Gautam B., Ly S., Guo AC., Xia J., Liang Y., Shrivastava S., Wishart DS.,", "journal": "Nucleic Acids Res.", "doi": "doi:10.1093/nar/gkp1002", "created_at": "2021-09-30T08:23:00.202Z", "updated_at": "2021-09-30T08:23:00.202Z"}, {"id": 2208, "pubmed_id": 24203708, "title": "SMPDB 2.0: big improvements to the Small Molecule Pathway Database.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1067", "authors": "Jewison T,Su Y,Disfany FM,Liang Y,Knox C,Maciejewski A,Poelzer J,Huynh J,Zhou Y,Arndt D,Djoumbou Y,Liu Y,Deng L,Guo AC,Han B,Pon A,Wilson M,Rafatnia S,Liu P,Wishart DS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1067", "created_at": "2021-09-30T08:26:28.854Z", "updated_at": "2021-09-30T11:29:30.986Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2594", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-15T13:31:08.000Z", "updated-at": "2021-12-06T10:48:49.569Z", "metadata": {"doi": "10.25504/FAIRsharing.lCVfCv", "name": "TreeGenes", "status": "ready", "contacts": [{"contact-name": "TreeGenes Helpdesk", "contact-email": "treegenesdb@gmail.com"}], "homepage": "https://treegenesdb.org/", "identifier": 2594, "description": "TreeGenes is focused on connecting genomic, phenotypic, and environmental data for forest tree populations across the world. The database provides a custom informatics tools to manage the flood of information resulting from high-throughput genomics projects in forest trees from sample collection to downstream analysis. This resource is enhanced with systems that are well connected with federated databases, automated data flows, machine learning analysis, standardized annotations and quality control processes. The TreeGenes database contains several curated modules that support the storage of data and provide the foundation for web-based searches and visualization tools.", "abbreviation": "TreeGenes", "support-links": [{"url": "https://twitter.com/TreeGenes", "name": "@TreeGenes", "type": "Twitter"}], "data-processes": [{"url": "https://treegenesdb.org/Drupal/species_directory/main", "name": "Browse Species", "type": "data access"}, {"url": "https://treegenesdb.org/Drupal/Diamond/submit", "name": "Similarity Searches", "type": "data access"}, {"url": "https://treegenesdb.org/Drupal/node/2665", "name": "Data Submission", "type": "data curation"}, {"url": "https://treegenesdb.org/FTP/", "name": "Download Data", "type": "data access"}], "associated-tools": [{"url": "https://treegenesdb.org/DiversiTree", "name": "DiversiTree"}, {"url": "https://treegenesdb.org/cartogratree", "name": "CartograTree"}, {"url": "https://treegenesdb.org/Drupal/jbrowse", "name": "JBrowse"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012352", "name": "re3data:r3d100012352", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001077", "bsg-d001077"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Botany", "Genomics", "Life Science", "Data Visualization"], "domains": [], "taxonomies": ["Acacieae", "Anacardiaceae", "Apocynaceae", "Araucariaceae", "Betulaceae", "Cassieae", "Cephalotaxaceae", "Cupressaceae", "Dalbergieae", "Detarieae", "Dipterocarpaceae", "Ericaceae", "Euphorbiaceae", "Eupteleaceae", "Fabaceae", "Fagaceae", "Gnetaceae", "Ixoreae", "Jatropheae", "Juglandacea", "Juglandaceae", "Lamiaceae", "Lauraceae", "Leguminosae", "Meliaceae", "Myristicaceae", "Myrtaceae", "Oleaceae", "Parasitaxus", "Pinaceae", "Podocarpaceae", "Rosaceae", "Salicaceae", "Sapotaceae", "Sciadopityaceae", "Tamaricaceae", "Taxaceae", "Vitaceae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: TreeGenes", "abbreviation": "TreeGenes", "url": "https://fairsharing.org/10.25504/FAIRsharing.lCVfCv", "doi": "10.25504/FAIRsharing.lCVfCv", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: TreeGenes is focused on connecting genomic, phenotypic, and environmental data for forest tree populations across the world. The database provides a custom informatics tools to manage the flood of information resulting from high-throughput genomics projects in forest trees from sample collection to downstream analysis. This resource is enhanced with systems that are well connected with federated databases, automated data flows, machine learning analysis, standardized annotations and quality control processes. The TreeGenes database contains several curated modules that support the storage of data and provide the foundation for web-based searches and visualization tools.", "publications": [{"id": 579, "pubmed_id": 18725987, "title": "TreeGenes: A forest tree genome database.", "year": 2008, "url": "http://doi.org/10.1155/2008/412875", "authors": "Wegrzyn JL,Lee JM,Tearse BR,Neale DB", "journal": "Int J Plant Genomics", "doi": "10.1155/2008/412875", "created_at": "2021-09-30T08:23:23.351Z", "updated_at": "2021-09-30T08:23:23.351Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2518", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-22T16:30:15.000Z", "updated-at": "2021-12-06T10:48:05.466Z", "metadata": {"doi": "10.25504/FAIRsharing.6y9h91", "name": "ProteomicsDB", "status": "ready", "contacts": [{"contact-email": "proteomicsdb@wzw.tum.de"}], "homepage": "https://www.proteomicsdb.org/", "identifier": 2518, "description": "ProteomicsDB is a protein-centric in-memory database for the exploration of large collections of quantitative mass spectrometry-based proteomics data. ProteomicsDB was first released in 2014 to enable the interactive exploration of the first draft of the human proteome. To date, it contains quantitative data from 78 projects totalling over 19k LC-MS/MS experiments. A standardized analysis pipeline enables comparisons between multiple datasets to facilitate the exploration of protein expression across hundreds of tissues, body fluids and cell lines. We recently extended the data model to enable the storage and integrated visualization of other quantitative omics data. This includes transcriptomics data from e. g. NCBI GEO, protein-protein interaction information from STRING, functional annotations from KEGG, drug-sensitivity/selectivity data from several public sources and reference mass spectra from the ProteomeTools project. The extended functionality transforms ProteomicsDB into a multi-purpose resource connecting quantification and meta-data for each protein. The rich user interface helps researchers to navigate all data sources in either a protein-centric or multi-protein-centric manner. Several options are available to download data manually, while our application programming interface enables accessing quantitative data systematically.", "abbreviation": "PrDB", "support-links": [{"url": "https://www.proteomicsdb.org/proteomicsdb/#faq", "name": "Proteomics DB FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.proteomicsdb.org/proteomicsdb/#analytics", "name": "Analytics", "type": "Help documentation"}], "year-creation": 2014, "data-processes": [{"url": "https://www.proteomicsdb.org/proteomicsdb/#api", "name": "API Access", "type": "data access"}, {"url": "https://www.proteomicsdb.org/proteomicsdb/#proteinCoverage", "name": "Chromosome View", "type": "data access"}, {"url": "https://www.proteomicsdb.org/proteomicsdb/#peptideSearch", "name": "Search Peptides", "type": "data access"}, {"url": "https://www.proteomicsdb.org/proteomicsdb/#human", "name": "Search Proteins", "type": "data access"}, {"url": "https://www.proteomicsdb.org/proteomicsdb/#search", "name": "Search Projects", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013408", "name": "re3data:r3d100013408", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001001", "bsg-d001001"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Proteomics", "Life Science", "Transcriptomics"], "domains": ["Mass spectrum", "Molecular interaction"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: ProteomicsDB", "abbreviation": "PrDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.6y9h91", "doi": "10.25504/FAIRsharing.6y9h91", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ProteomicsDB is a protein-centric in-memory database for the exploration of large collections of quantitative mass spectrometry-based proteomics data. ProteomicsDB was first released in 2014 to enable the interactive exploration of the first draft of the human proteome. To date, it contains quantitative data from 78 projects totalling over 19k LC-MS/MS experiments. A standardized analysis pipeline enables comparisons between multiple datasets to facilitate the exploration of protein expression across hundreds of tissues, body fluids and cell lines. We recently extended the data model to enable the storage and integrated visualization of other quantitative omics data. This includes transcriptomics data from e. g. NCBI GEO, protein-protein interaction information from STRING, functional annotations from KEGG, drug-sensitivity/selectivity data from several public sources and reference mass spectra from the ProteomeTools project. The extended functionality transforms ProteomicsDB into a multi-purpose resource connecting quantification and meta-data for each protein. The rich user interface helps researchers to navigate all data sources in either a protein-centric or multi-protein-centric manner. Several options are available to download data manually, while our application programming interface enables accessing quantitative data systematically.", "publications": [{"id": 1095, "pubmed_id": 24870543, "title": "Mass-spectrometry-based draft of the human proteome.", "year": 2014, "url": "http://doi.org/10.1038/nature13319", "authors": "Wilhelm M,Schlegl J,Hahne H,Gholami AM,Lieberenz M,Savitski MM,Ziegler E,Butzmann L,Gessulat S,Marx H,Mathieson T,Lemeer S,Schnatbaum K,Reimer U,Wenschuh H,Mollenhauer M,Slotta-Huspenina J,Boese JH,Bantscheff M,Gerstmair A,Faerber F,Kuster B", "journal": "Nature", "doi": "10.1038/nature13319", "created_at": "2021-09-30T08:24:21.245Z", "updated_at": "2021-09-30T08:24:21.245Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2206", "type": "fairsharing-records", "attributes": {"created-at": "2015-05-08T14:04:42.000Z", "updated-at": "2021-12-06T10:49:27.511Z", "metadata": {"doi": "10.25504/FAIRsharing.xfrgsf", "name": "Metabolomics Workbench", "status": "ready", "contacts": [{"contact-name": "Eoin Fahy", "contact-email": "efahy@ucsd.edu"}], "homepage": "https://www.metabolomicsworkbench.org/", "citations": [{"doi": "10.1093/nar/gkv1042", "pubmed-id": 26467476, "publication-id": 1225}], "identifier": 2206, "description": "The Metabolomics Workbench serves as a national and international repository for metabolomics data and metadata and provides analysis tools and access to metabolite standards, protocols, tutorials, training, and more.", "abbreviation": "MW", "access-points": [{"url": "https://www.metabolomicsworkbench.org/tools/mw_rest.php", "name": "MW REST API", "type": "REST"}], "support-links": [{"url": "http://www.metabolomicsworkbench.org/about/contact.php", "name": "Contact Form", "type": "Contact form"}, {"url": "shankar@ucsd.edu", "name": "Dr. Shankar Subramaniam", "type": "Support email"}, {"url": "https://www.metabolomicsworkbench.org/data/faq.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.metabolomicsworkbench.org/data/tutorials.php", "name": "Tutorials", "type": "Help documentation"}, {"url": "https://twitter.com/MetabolomicsWB", "name": "@MetabolomicsWB", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://www.metabolomicsworkbench.org/data/browse.php", "name": "Browse", "type": "data access"}, {"url": "http://www.metabolomicsworkbench.org/data/browse.php", "name": "Search", "type": "data access"}, {"url": "https://www.metabolomicsworkbench.org/data/analyze.php", "name": "Analyze Studies", "type": "data access"}, {"url": "https://www.metabolomicsworkbench.org/data/DRCCDataDeposit.php", "name": "Upload", "type": "data curation"}, {"url": "https://www.metabolomicsworkbench.org/data/browse.php", "name": "Browse & Search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012314", "name": "re3data:r3d100012314", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_013794", "name": "SciCrunch:RRID:SCR_013794", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000680", "bsg-d000680"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Metabolomics"], "domains": ["Metabolite", "Protocol"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Metabolomics Workbench", "abbreviation": "MW", "url": "https://fairsharing.org/10.25504/FAIRsharing.xfrgsf", "doi": "10.25504/FAIRsharing.xfrgsf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Metabolomics Workbench serves as a national and international repository for metabolomics data and metadata and provides analysis tools and access to metabolite standards, protocols, tutorials, training, and more.", "publications": [{"id": 1225, "pubmed_id": 26467476, "title": "Metabolomics Workbench: An international repository for metabolomics data and metadata, metabolite standards, protocols, tutorials and training, and analysis tools.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1042", "authors": "Sud M,Fahy E,Cotter D,Azam K,Vadivelu I,Burant C,Edison A,Fiehn O,Higashi R,Nair KS,Sumner S,Subramaniam S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1042", "created_at": "2021-09-30T08:24:36.598Z", "updated_at": "2021-09-30T11:29:03.392Z"}], "licence-links": [{"licence-name": "Metabolomics Workbench Terms of Use", "licence-id": 506, "link-id": 356, "relation": "undefined"}, {"licence-name": "NIH Common Fund Metabolomics Data Sharing Plan", "licence-id": 582, "link-id": 359, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3057", "type": "fairsharing-records", "attributes": {"created-at": "2020-08-04T07:54:10.000Z", "updated-at": "2021-11-24T13:18:20.380Z", "metadata": {"doi": "10.25504/FAIRsharing.wmB5Os", "name": "Archive of Data on Disability to Enable Policy and research", "status": "ready", "contacts": [{"contact-name": "ICPSR Helpdesk", "contact-email": "icpsr-help@umich.edu"}], "homepage": "https://www.icpsr.umich.edu/web/pages/ADDEP/index.html", "identifier": 3057, "description": "The Archive of Data on Disability to Enable Policy and research (ADDEP) is a repository of data on disability and rehabilitation. ADDEP was created to provide access to disability and rehabilitation data; provide technical assistance for data users; and build a connection between research data, community outreach, and activism. Types of data in ADDEP include disability status, health care, rehabilitation services and medicine, disability employment, income, education, and disability policies.", "abbreviation": "ADDEP", "support-links": [{"url": "icpsr-addep@umich.edu", "name": "ADDEP General Contact", "type": "Support email"}, {"url": "http://www.youtube.com/user/icpsrweb?feature=results_main", "name": "Video Tutorials", "type": "Video"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/help.html", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/about.html", "name": "About ADDEP", "type": "Help documentation"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/training.html", "name": "ADDEP Training", "type": "Training documentation"}], "data-processes": [{"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/data.html", "name": "Search", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/publications.html", "name": "Search Publications", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/variables.html", "name": "Find and Compare Variables", "type": "data access"}, {"url": "https://www.icpsr.umich.edu/web/pages/ADDEP/deposit.html", "name": "Submit Data", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001565", "bsg-d001565"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Health Science", "Social Policy"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Disability Employment", "Disability Status", "Education", "Employment", "Income", "Rehabilitation Medicine", "Rehabilitation Services"], "countries": ["United States"], "name": "FAIRsharing record for: Archive of Data on Disability to Enable Policy and research", "abbreviation": "ADDEP", "url": "https://fairsharing.org/10.25504/FAIRsharing.wmB5Os", "doi": "10.25504/FAIRsharing.wmB5Os", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Archive of Data on Disability to Enable Policy and research (ADDEP) is a repository of data on disability and rehabilitation. ADDEP was created to provide access to disability and rehabilitation data; provide technical assistance for data users; and build a connection between research data, community outreach, and activism. Types of data in ADDEP include disability status, health care, rehabilitation services and medicine, disability employment, income, education, and disability policies.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2334", "type": "fairsharing-records", "attributes": {"created-at": "2016-09-27T17:52:47.000Z", "updated-at": "2021-12-06T10:49:31.403Z", "metadata": {"doi": "10.25504/FAIRsharing.yrkkbt", "name": "The Chemical Probes Portal", "status": "in_development", "contacts": [{"contact-name": "Heather King", "contact-email": "heather.king@chemprobes.org", "contact-orcid": "0000-0001-8237-5823"}], "homepage": "http://www.chemicalprobes.org", "identifier": 2334, "description": "The Chemical Probes Portal is an online open access catalog of annotated small molecule inhibitors, agonists and other chemical tools for biological research and preclinical drug discovery. Annotations for are extensive and distinguish between activity in cells and model organisms. Probe records also include ratings and commentary from our Scientific Advisory Board, which consists of known experts in medicinal chemistry, chemical biology, pharmacology and related fields.", "support-links": [{"url": "http://www.chemicalprobes.org/news", "type": "Blog/News"}, {"url": "http://www.chemicalprobes.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.chemicalprobes.org/feedback", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://www.chemicalprobes.org/browse_probes", "name": "search and browse", "type": "data access"}, {"url": "http://www.chemicalprobes.org/submit-probes", "name": "submit", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012756", "name": "re3data:r3d100012756", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000811", "bsg-d000811"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Preclinical Studies"], "domains": ["Protein interaction", "Drug", "Probe", "Target"], "taxonomies": ["All"], "user-defined-tags": ["Chemical probes", "Validation"], "countries": ["United Kingdom", "Canada", "United States"], "name": "FAIRsharing record for: The Chemical Probes Portal", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.yrkkbt", "doi": "10.25504/FAIRsharing.yrkkbt", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Chemical Probes Portal is an online open access catalog of annotated small molecule inhibitors, agonists and other chemical tools for biological research and preclinical drug discovery. Annotations for are extensive and distinguish between activity in cells and model organisms. Probe records also include ratings and commentary from our Scientific Advisory Board, which consists of known experts in medicinal chemistry, chemical biology, pharmacology and related fields.", "publications": [{"id": 1587, "pubmed_id": 26196764, "title": "The promise and peril of chemical probes", "year": 2015, "url": "http://doi.org/10.1038/nchembio.1867", "authors": "Arrowsmith et al", "journal": "Nature Chemical Biology", "doi": "10.1038/nchembio.1867", "created_at": "2021-09-30T08:25:17.961Z", "updated_at": "2021-09-30T08:25:17.961Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)", "licence-id": 194, "link-id": 1989, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2439", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-19T15:45:15.000Z", "updated-at": "2021-12-06T10:49:12.602Z", "metadata": {"doi": "10.25504/FAIRsharing.srgkaf", "name": "Hardwood Genomics Project", "status": "ready", "homepage": "http://www.hardwoodgenomics.org/", "identifier": 2439, "description": "The Hardwood Genomics Project is a databases for expressed genes, genetic markers, genetic linkage maps, and reference populations. It provides lasting genomic and biological resources for the discovery and conservation of genes in hardwood trees for growth, adaptation and responses to environmental stresses such as drought, heat, insect pests and disease. All original sequence data is being deposited in NCBI's Sequence Read Archive and the genetic linkage maps and associated marker data will be available at the Dendrome database.", "abbreviation": "HWG", "support-links": [{"url": "http://www.hardwoodgenomics.org/contact", "type": "Contact form"}, {"url": "http://www.hardwoodgenomics.org/content/about", "type": "Help documentation"}], "year-creation": 2016, "associated-tools": [{"url": "http://www.hardwoodgenomics.org/content/expression-visualization", "name": "Expression Visualization"}, {"url": "http://www.hardwoodgenomics.org/blast", "name": "BLAST Search"}, {"url": "http://www.hardwoodgenomics.org/wa2app/jbrowse/index.html?organism=19", "name": "JBrowse - Chinese Chesnut"}, {"url": "http://www.hardwoodgenomics.org/wa2app/jbrowse/index.html?organism=231202", "name": "JBrowse - English Walnut"}, {"url": "http://www.hardwoodgenomics.org/elastic_search", "name": "Transcript Search"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012351", "name": "re3data:r3d100012351", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000921", "bsg-d000921"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Genetic map", "Genome map", "Expression data", "Nucleic acid sequence"], "taxonomies": ["Acer saccharum", "Alnus rhombifolia", "Alnus rubra", "Castanea crenata", "Castanea dentata", "Castanea mollissima", "Castanea sativa", "Cornus florida", "Fagus grandifolia", "Fraxinus americana", "Fraxinus pennsylvanica", "Gleditsia triacanthos", "Hydrangea macrophylla", "Juglans nigra", "Juglans regia", "Liquidambar styraciflua", "Liriodendron tulipifera", "Nyssa sylvatica", "Persea borbonia", "Prunus serotina", "Quercus alba", "Quercus robur", "Quercus rubra"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Hardwood Genomics Project", "abbreviation": "HWG", "url": "https://fairsharing.org/10.25504/FAIRsharing.srgkaf", "doi": "10.25504/FAIRsharing.srgkaf", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Hardwood Genomics Project is a databases for expressed genes, genetic markers, genetic linkage maps, and reference populations. It provides lasting genomic and biological resources for the discovery and conservation of genes in hardwood trees for growth, adaptation and responses to environmental stresses such as drought, heat, insect pests and disease. All original sequence data is being deposited in NCBI's Sequence Read Archive and the genetic linkage maps and associated marker data will be available at the Dendrome database.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2733", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T11:09:42.000Z", "updated-at": "2022-02-08T10:29:24.816Z", "metadata": {"doi": "10.25504/FAIRsharing.250fc8", "name": "Hymenoptera Genome Database", "status": "ready", "contacts": [{"contact-email": "hymenopteragenomedatabase@gmail.com"}], "homepage": "http://hymenopteragenome.org/", "citations": [{"doi": "10.1093/nar/gkv1208", "pubmed-id": 26578564, "publication-id": 2335}], "identifier": 2733, "description": "The Hymenoptera Genome Database (HGD) is a genome informatics resource that supports the research of insects of the order Hymenoptera (e.g. bees, wasps, ants). HGD is divided into three main divisions: BeeBase, which hosts bee genomes and the Bee Pests and Pathogens resource; NasoniaBase, which hosts the genome of the Jewel wasp (Nasonia vitripennis); and the Ant Genomes Portal, which hosts the genomes of several ant species.", "abbreviation": "HGD", "data-curation": {}, "support-links": [{"url": "http://hymenopteragenome.org/?q=about", "name": "About HGD", "type": "Help documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://hymenopteragenome.org/Apollo2/3233525/jbrowse/", "name": "JBrowse NasoniaBase", "type": "data access"}, {"url": "http://hymenopteragenome.org/Apollo2/1683838/jbrowse/index.html", "name": "JBrowse Ant Genomes Portal", "type": "data access"}, {"url": "http://hymenopteragenome.org/beebase/?q=node/103", "name": "JBrowse BeeBase", "type": "data access"}], "associated-tools": [{"url": "http://hymenopteragenome.org/ant_genomes/", "name": "Ant Genomes Portal"}, {"url": "http://hymenopteragenome.org/nasonia/", "name": "NasoniaBase"}, {"url": "http://hymenopteragenome.org/beebase/", "name": "BeeBase"}, {"url": "http://hymenopteragenome.org/hymenopteramine/begin.do", "name": "HymenopteraMine v1.4"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}}, "legacy-ids": ["biodbcore-001231", "bsg-d001231"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Life Science"], "domains": ["Genome visualization", "Genome"], "taxonomies": ["Acromyrmex echinatior", "Apis", "Apis cerana", "Apis dorsata", "Apis florea", "Apis mellifera", "Atta Cephalotes", "Bombus", "Bombus impatiens", "Bombus terrestris", "Camponotus floridanus", "Cardiocondyla obscurior", "Ceratina calcarata", "Cobria biroi", "Drosophila", "Dufourea novaeangliae", "Erlandia mexicana", "Habropoda laboriosa", "Harpegnathos saltator", "Lasioglossum albipes", "Linepithema humile", "Megachile rotundata", "Melipona quadrifasciata", "Monomorium pharaonis", "Nasonia vitripennis", "Pogonomyrmex barbatus", "Solenopsis invicta", "Wasmannia auropunctata"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Hymenoptera Genome Database", "abbreviation": "HGD", "url": "https://fairsharing.org/10.25504/FAIRsharing.250fc8", "doi": "10.25504/FAIRsharing.250fc8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Hymenoptera Genome Database (HGD) is a genome informatics resource that supports the research of insects of the order Hymenoptera (e.g. bees, wasps, ants). HGD is divided into three main divisions: BeeBase, which hosts bee genomes and the Bee Pests and Pathogens resource; NasoniaBase, which hosts the genome of the Jewel wasp (Nasonia vitripennis); and the Ant Genomes Portal, which hosts the genomes of several ant species.", "publications": [{"id": 2335, "pubmed_id": 26578564, "title": "Hymenoptera Genome Database: integrating genome annotations in HymenopteraMine.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1208", "authors": "Elsik CG,Tayal A,Diesh CM,Unni DR,Emery ML,Nguyen HN,Hagen DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1208", "created_at": "2021-09-30T08:26:46.726Z", "updated_at": "2021-09-30T11:29:33.303Z"}], "licence-links": [{"licence-name": "HGD Data Usage Policy", "licence-id": 390, "link-id": 1443, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2683", "type": "fairsharing-records", "attributes": {"created-at": "2018-10-17T04:18:30.000Z", "updated-at": "2021-12-06T10:47:45.486Z", "metadata": {"doi": "10.25504/FAIRsharing.0VV4KB", "name": "Environmental Data Portal", "status": "ready", "contacts": [{"contact-name": "Ionu\u021b Iosifescu", "contact-email": "ionut.iosifescu@wsl.ch", "contact-orcid": "0000-0002-1770-7833"}], "homepage": "https://www.envidat.ch/", "identifier": 2683, "description": "EnviDat is the environmental data portal and repository developed by the Swiss Federal Research Institute WSL. The portal provides unified and managed access to environmental monitoring and research data. The portal has the capability to host and publish data sets.\u00a0While sharing of data is centrally facilitated, data management remains decentralised and the know-how and responsibility to curate research data remains with the original data providers.", "abbreviation": "EnviDat", "access-points": [{"url": "https://docs.ckan.org/en/2.8/api/", "name": "CKANs API Guide", "type": "REST"}], "support-links": [{"url": "envidat@wsl.ch", "name": "EnviDat General Contact", "type": "Support email"}, {"url": "https://www.envidat.ch/#/about/policies", "name": "EnviDat Policies", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.envidat.ch/#/about/guidelines", "name": "EnviDat Guidelines for Publishing Research Data", "type": "Help documentation"}, {"url": "https://www.envidat.ch/#/about/about", "name": "About EnviDat", "type": "Help documentation"}], "year-creation": 2017, "data-processes": [{"url": "https://www.envidat.ch/group", "name": "Browse by Project", "type": "data access"}, {"url": "https://www.envidat.ch/organization", "name": "Browse by Organization", "type": "data access"}, {"url": "https://www.envidat.ch/dataset", "name": "Browse and Search Data", "type": "data access"}, {"url": "https://www.envidat.ch/#/browse", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012587", "name": "re3data:r3d100012587", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001178", "bsg-d001178"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Forest Management", "Population Dynamics", "Landscape Planning", "Biodiversity", "Earth Science", "Biology", "Plant Genetics"], "domains": [], "taxonomies": ["All"], "user-defined-tags": ["Applied Forest Research", "natural hazards", "Natural Resources, Earth and Environment", "permafrost", "Plant growth stages", "Plant-pathogen interaction", "Plant Phenotypes and Traits", "snow"], "countries": ["Switzerland"], "name": "FAIRsharing record for: Environmental Data Portal", "abbreviation": "EnviDat", "url": "https://fairsharing.org/10.25504/FAIRsharing.0VV4KB", "doi": "10.25504/FAIRsharing.0VV4KB", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EnviDat is the environmental data portal and repository developed by the Swiss Federal Research Institute WSL. The portal provides unified and managed access to environmental monitoring and research data. The portal has the capability to host and publish data sets.\u00a0While sharing of data is centrally facilitated, data management remains decentralised and the know-how and responsibility to curate research data remains with the original data providers.", "publications": [{"id": 2709, "pubmed_id": null, "title": "The EnviDat Concept for an Institutional Environmental Data Portal", "year": 2018, "url": "https://doi.org/10.5334/dsj-2018-028", "authors": "Ionu\u021b Iosifescu Enescu, Gian-Kasper Plattner, Lucia Espona Pernas, Dominik Haas-Artho, Sandro Bischof, Michael Lehning, Konrad Steffen", "journal": "Data Science Journal", "doi": null, "created_at": "2021-09-30T08:27:32.706Z", "updated_at": "2021-09-30T08:27:32.706Z"}], "licence-links": [{"licence-name": "Open Definition 2.1", "licence-id": 622, "link-id": 2057, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2975", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-05T11:37:01.000Z", "updated-at": "2021-12-06T10:49:28.508Z", "metadata": {"doi": "10.25504/FAIRsharing.XO6ppp", "name": "EBRAINS", "status": "ready", "contacts": [{"contact-name": "EBRAINS data curation team", "contact-email": "support@ebrains.eu"}], "homepage": "https://ebrains.eu", "identifier": 2975, "description": "EBRAINS is a platform for sharing brain research data ranging in type as well as spatial and temporal scale. The EBRAINS data curation service aims to provide maximum impact, visibility, reusability, and longevity. The user interface of the EBRAINS Knowledge Graph allows you to easily find data of interest. EBRAINS hosts a wide range of data types and models from different species. All data are well described and can be accessed immediately for further analysis.", "abbreviation": "EBRAINS", "support-links": [{"url": "https://nettskjema.no/a/104328#/", "name": "Curation request form", "type": "Contact form"}, {"url": "https://ebrains.eu/support/", "name": "High-Level Support Team (HLST)", "type": "Help documentation"}, {"url": "https://ebrains.eu/about", "name": "About", "type": "Help documentation"}, {"url": "https://ebrains.eu/services", "name": "Services", "type": "Help documentation"}, {"url": "https://twitter.com/ebrains_eu", "name": "@ebrains_eu", "type": "Twitter"}], "year-creation": 2019, "data-processes": [{"url": "https://ebrains.eu/services/data-knowledge/share-data", "name": "EBRAINS Share Data service", "type": "data curation"}, {"url": "https://kg.ebrains.eu/search/", "name": "EBRAINS Find Data service", "type": "data access"}], "associated-tools": [{"url": "https://wiki.ebrains.eu/", "name": "Collaboratory.wiki"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013325", "name": "re3data:r3d100013325", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001481", "bsg-d001481"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Neurophysiology", "Computational Neuroscience", "Neurology", "Neuroscience"], "domains": ["Brain"], "taxonomies": ["All", "Homo sapiens", "Primate", "Rodentia"], "user-defined-tags": [], "countries": ["United Kingdom", "Norway", "Sweden", "France", "Germany", "Switzerland"], "name": "FAIRsharing record for: EBRAINS", "abbreviation": "EBRAINS", "url": "https://fairsharing.org/10.25504/FAIRsharing.XO6ppp", "doi": "10.25504/FAIRsharing.XO6ppp", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EBRAINS is a platform for sharing brain research data ranging in type as well as spatial and temporal scale. The EBRAINS data curation service aims to provide maximum impact, visibility, reusability, and longevity. The user interface of the EBRAINS Knowledge Graph allows you to easily find data of interest. EBRAINS hosts a wide range of data types and models from different species. All data are well described and can be accessed immediately for further analysis.", "publications": [], "licence-links": [{"licence-name": "EBRAINS Terms & Conditions for Service", "licence-id": 259, "link-id": 2196, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2098", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:58.438Z", "metadata": {"doi": "10.25504/FAIRsharing.5ey5w6", "name": "PseudoBase", "status": "ready", "contacts": [{"contact-name": "Eke van Batenburg", "contact-email": "EkevanBatenburg2009@live.com"}], "homepage": "http://www.ekevanbatenburg.nl/pb", "identifier": 2098, "description": "PseudoBase is a collection of RNA pseudoknots that have been made available for retrieval to the scientific community.", "abbreviation": "PseudoBase", "year-creation": 1997, "data-processes": [{"url": "http://www.ekevanbatenburg.nl/PKBASE/PKBPUT.HTML", "name": "submit", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010563", "name": "re3data:r3d100010563", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000567", "bsg-d000567"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Ribonucleic acid", "Pathogen", "Pseudoknot"], "taxonomies": ["Anopheles gambiae", "Bacillus subtilis", "Bombyx mori", "Bordetella pertussis", "Bos taurus", "Drosophila", "Escherichia coli", "Homo sapiens", "Neurospora intermedia", "Rattus rattus", "Viruses"], "user-defined-tags": [], "countries": ["Netherlands"], "name": "FAIRsharing record for: PseudoBase", "abbreviation": "PseudoBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.5ey5w6", "doi": "10.25504/FAIRsharing.5ey5w6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PseudoBase is a collection of RNA pseudoknots that have been made available for retrieval to the scientific community.", "publications": [{"id": 414, "pubmed_id": 18988624, "title": "PseudoBase++: an extension of PseudoBase for easy searching, formatting and visualization of pseudoknots.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn806", "authors": "Taufer M,Licon A,Araiza R,Mireles D,van Batenburg FH,Gultyaev AP,Leung MY", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn806", "created_at": "2021-09-30T08:23:05.006Z", "updated_at": "2021-09-30T11:28:46.426Z"}, {"id": 548, "pubmed_id": 10592225, "title": "PseudoBase: a database with RNA pseudoknots.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.201", "authors": "van Batenburg FH., Gultyaev AP., Pleij CW., Ng J., Oliehoek J.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.201", "created_at": "2021-09-30T08:23:19.785Z", "updated_at": "2021-09-30T08:23:19.785Z"}, {"id": 559, "pubmed_id": 11125088, "title": "PseudoBase: structural information on RNA pseudoknots.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.194", "authors": "van Batenburg FH., Gultyaev AP., Pleij CW.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.194", "created_at": "2021-09-30T08:23:21.085Z", "updated_at": "2021-09-30T08:23:21.085Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2172", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:14:47.221Z", "metadata": {"doi": "10.25504/FAIRsharing.ekrvbq", "name": "euL1db, the European database of L1-HS retrotransposon insertions in humans", "status": "ready", "contacts": [{"contact-name": "Gael Cristofari", "contact-email": "Gael.Cristofari@unice.fr", "contact-orcid": "0000-0001-5620-3091"}], "homepage": "http://eul1db.unice.fr", "identifier": 2172, "description": "Retrotransposons, which comprises LINE, SINE and LTR-containing elements, accounts for almost half of our genome (Fig. 1). They are mobile genetics elements - also known as jumping genes - but only the L1-HS subfamily has retained the ability to jump autonomously in modern humans. Their mobilization in germline - but also some somatic tissues - contributes to human genetic diversity and to diseases, such as cancer. euL1db provides a curated and comprehensive summary of L1-HS insertion polymorphisms identified in healthy or pathological human samples and published in peer-reviewed journals. It will help understanding the link between L1 retrotransposon insertion polymorphisms and phenotype or disease.", "abbreviation": "euL1db", "support-links": [{"url": "http://eul1db.unice.fr/db/faq.jsp", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://eul1db.unice.fr/db/Help.jsp", "type": "Help documentation"}, {"url": "https://twitter.com/retrogenomics", "type": "Twitter"}], "year-creation": 2014, "data-processes": [{"url": "http://eul1db.unice.fr/db/searchmenu.jsp", "name": "search", "type": "data access"}, {"url": "http://eul1db.unice.fr/db/Browse.jsp", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-000644", "bsg-d000644"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Genetics", "Biomedical Science"], "domains": ["DNA sequence data", "Genetic polymorphism", "Structure", "Transposable element", "Retrotransposon"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: euL1db, the European database of L1-HS retrotransposon insertions in humans", "abbreviation": "euL1db", "url": "https://fairsharing.org/10.25504/FAIRsharing.ekrvbq", "doi": "10.25504/FAIRsharing.ekrvbq", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Retrotransposons, which comprises LINE, SINE and LTR-containing elements, accounts for almost half of our genome (Fig. 1). They are mobile genetics elements - also known as jumping genes - but only the L1-HS subfamily has retained the ability to jump autonomously in modern humans. Their mobilization in germline - but also some somatic tissues - contributes to human genetic diversity and to diseases, such as cancer. euL1db provides a curated and comprehensive summary of L1-HS insertion polymorphisms identified in healthy or pathological human samples and published in peer-reviewed journals. It will help understanding the link between L1 retrotransposon insertion polymorphisms and phenotype or disease.", "publications": [{"id": 679, "pubmed_id": 25352549, "title": "euL1db: the European database of L1HS retrotransposon insertions in humans", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1043", "authors": "Mir AA, Philippe C, Cristofari G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1043", "created_at": "2021-09-30T08:23:34.844Z", "updated_at": "2021-09-30T08:23:34.844Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2178", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:03.699Z", "metadata": {"doi": "10.25504/FAIRsharing.q9j2e3", "name": "The human DEPhOsphorylation Database", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "depod@embl.de", "contact-orcid": "0000-0003-3562-7869"}], "homepage": "http://www.depod.org/", "identifier": 2178, "description": "DEPOD - the human DEPhOsphorylation Database is a manually curated database collecting human active and inactive phosphatases, their experimentally verified protein and non-protein substrates, and dephosphorylation site information, and pathways in which they are involved. It also provides links to popular kinase databases and protein-protein interaction databases for these phosphatases and substrates.", "abbreviation": "DEPOD", "support-links": [{"url": "http://www.koehn.embl.de/depod/feedback.php", "type": "Contact form"}], "year-creation": 2012, "data-processes": [{"url": "http://www.koehn.embl.de/depod/deposit.php", "name": "submit", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011936", "name": "re3data:r3d100011936", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000651", "bsg-d000651"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Phosphorylation", "Post-translational protein modification", "Regulation of post-translational protein modification", "Protein expression profiling", "Protein", "Phosphoprotein"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Germany"], "name": "FAIRsharing record for: The human DEPhOsphorylation Database", "abbreviation": "DEPOD", "url": "https://fairsharing.org/10.25504/FAIRsharing.q9j2e3", "doi": "10.25504/FAIRsharing.q9j2e3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: DEPOD - the human DEPhOsphorylation Database is a manually curated database collecting human active and inactive phosphatases, their experimentally verified protein and non-protein substrates, and dephosphorylation site information, and pathways in which they are involved. It also provides links to popular kinase databases and protein-protein interaction databases for these phosphatases and substrates.", "publications": [{"id": 1402, "pubmed_id": 25332398, "title": "The human DEPhOsphorylation database DEPOD: a 2015 update.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1009", "authors": "Duan G,Li X,Kohn M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1009", "created_at": "2021-09-30T08:24:56.766Z", "updated_at": "2021-09-30T11:29:07.868Z"}, {"id": 1403, "pubmed_id": 23674824, "title": "Elucidating human phosphatase-substrate networks.", "year": 2013, "url": "http://doi.org/10.1126/scisignal.2003203", "authors": "Li X,Wilmanns M,Thornton J,Kohn M", "journal": "Sci Signal", "doi": "10.1126/scisignal.2003203", "created_at": "2021-09-30T08:24:56.882Z", "updated_at": "2021-09-30T08:24:56.882Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2997", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-14T11:16:37.000Z", "updated-at": "2021-12-06T10:47:51.247Z", "metadata": {"doi": "10.25504/FAIRsharing.2okP6D", "name": "Finnish Social Science Data Archive", "status": "ready", "contacts": [{"contact-name": "Office", "contact-email": "fsd@tuni.fi"}], "homepage": "https://www.fsd.tuni.fi", "identifier": 2997, "description": "The Finnish Social Science Data Archive (FSD) is a national-level service resource for research and teaching in Finland. FSD promotes data sharing and curates and disseminates digital research data for research, teaching and studying purposes. FSD serves both Finnish and international users. FSD is an expert in the curation and preservation of digital research data collected to study society, people and culture. FSD focuses on acquiring Social Science data, but data from other relevant fields (Arts and Humanities, Education, and Health Science) is also archived. FSD is Finland's service provider for CESSDA ERIC, the Consortium of European Social Science Data Archives.", "abbreviation": "FSD", "access-points": [{"url": "http://services.fsd.tuni.fi/v0/oai", "name": "Study descriptions in DDI Codebook, OAI Dublin Core, and EAD3 formats in Kuha2, OAI-PMH metadata server", "type": "Other"}], "support-links": [{"url": "http://tietoarkistoblogi.blogspot.com", "name": "Tietoarkistoblogi", "type": "Blog/News"}, {"url": "https://www.fsd.tuni.fi/en/contact/", "name": "Contact", "type": "Contact form"}, {"url": "user-services.fsd@tuni.fi", "name": "User Services", "type": "Support email"}, {"url": "https://www.fsd.tuni.fi/en/services/faq/", "name": "Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.fsd.tuni.fi/en/data-archive/documents/records-management-and-archives-formation-plan/", "name": "Records Management and Archives Formation Plan", "type": "Help documentation"}, {"url": "https://www.fsd.tuni.fi/en/data/downloading-and-using-data/citing-data/", "name": "Citing Data", "type": "Help documentation"}, {"url": "https://www.fsd.tuni.fi/en/data/misc/ddi-records/", "name": "APIs and Machine-Readable Metadata Records", "type": "Help documentation"}, {"url": "https://twitter.com/tietoarkisto", "name": "@tietoarkisto", "type": "Twitter"}], "year-creation": 1999, "data-processes": [{"url": "https://services.fsd.uta.fi", "name": "Aila Data Service", "type": "data access"}, {"url": "https://www.fsd.tuni.fi/en/services/depositing-data/", "name": "Data Submission", "type": "data curation"}, {"url": "https://www.fsd.tuni.fi/en/data/#datasets-grouped-by-type", "name": "Browse by Data Type", "type": "data access"}, {"url": "https://www.fsd.tuni.fi/en/data/by-theme/", "name": "Browse by Theme", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010490", "name": "re3data:r3d100010490", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001503", "bsg-d001503"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Social Science", "Education Science", "Health Science", "Humanities and Social Science", "Social and Behavioural Science"], "domains": ["Curated information", "Digital curation", "Data storage"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["Finland"], "name": "FAIRsharing record for: Finnish Social Science Data Archive", "abbreviation": "FSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.2okP6D", "doi": "10.25504/FAIRsharing.2okP6D", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Finnish Social Science Data Archive (FSD) is a national-level service resource for research and teaching in Finland. FSD promotes data sharing and curates and disseminates digital research data for research, teaching and studying purposes. FSD serves both Finnish and international users. FSD is an expert in the curation and preservation of digital research data collected to study society, people and culture. FSD focuses on acquiring Social Science data, but data from other relevant fields (Arts and Humanities, Education, and Health Science) is also archived. FSD is Finland's service provider for CESSDA ERIC, the Consortium of European Social Science Data Archives.", "publications": [], "licence-links": [{"licence-name": "FSD General Terms and Conditions for Data Use", "licence-id": 324, "link-id": 35, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 39, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2044", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:52.327Z", "metadata": {"doi": "10.25504/FAIRsharing.2t35ja", "name": "RCSB Protein Data Bank", "status": "ready", "contacts": [{"contact-email": "info@rcsb.org"}], "homepage": "https://www.rcsb.org/", "citations": [], "identifier": 2044, "description": "This resource is powered by the Protein Data Bank archive-information about the 3D shapes of proteins, nucleic acids, and complex assemblies that helps students and researchers understand all aspects of biomedicine and agriculture, from protein synthesis to health and disease. As a member of the wwPDB, the RCSB PDB curates and annotates PDB data. The RCSB PDB builds upon the data by creating tools and resources for research and education in molecular biology, structural biology, computational biology, and beyond.", "abbreviation": "RCSB PDB", "access-points": [{"url": "http://www.rcsb.org/pdb/software/rest.do", "name": "https://www.rcsb.org/pages/webservices", "type": "REST"}], "support-links": [{"url": "https://www.facebook.com/RCSBPDB", "name": "Facebook", "type": "Facebook"}, {"url": "https://www.rcsb.org/pages/contactus", "type": "Contact form"}, {"url": "https://www.rcsb.org/pages/help/index", "type": "Help documentation"}, {"url": "https://lists.sdsc.edu/mailman/listinfo/pdb-l", "type": "Mailing list"}, {"url": "https://github.com/rcsb", "name": "GitHub", "type": "Github"}, {"url": "https://www.rcsb.org/pages/about-us/index", "type": "Help documentation"}, {"url": "https://www.youtube.com/user/RCSBProteinDataBank", "name": "Youtube", "type": "Video"}, {"url": "https://twitter.com/buildmodels", "type": "Twitter"}], "year-creation": 1971, "data-processes": [{"url": "https://www.rcsb.org/#Category-search", "name": "Search", "type": "data access"}, {"url": "https://www.rcsb.org/search/advanced", "name": "Advanced search", "type": "data access"}, {"url": "https://www.rcsb.org/search/browse/", "name": "Ontology browser", "type": "data access"}, {"url": "https://www.rcsb.org/#Category-deposit", "name": "Submit", "type": "data curation"}, {"url": "https://www.rcsb.org/downloads", "name": "Download", "type": "data access"}, {"url": "https://www.rcsb.org/#Category-visualize", "name": "Visualize", "type": "data access"}, {"url": "https://www.rcsb.org/#Category-analyze", "name": "Analyze", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010327", "name": "re3data:r3d100010327", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012820", "name": "SciCrunch:RRID:SCR_012820", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000511", "bsg-d000511"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Ribonucleic acid", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: RCSB Protein Data Bank", "abbreviation": "RCSB PDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.2t35ja", "doi": "10.25504/FAIRsharing.2t35ja", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This resource is powered by the Protein Data Bank archive-information about the 3D shapes of proteins, nucleic acids, and complex assemblies that helps students and researchers understand all aspects of biomedicine and agriculture, from protein synthesis to health and disease. As a member of the wwPDB, the RCSB PDB curates and annotates PDB data. The RCSB PDB builds upon the data by creating tools and resources for research and education in molecular biology, structural biology, computational biology, and beyond.", "publications": [{"id": 3042, "pubmed_id": 10592235, "title": "The Protein Data Bank", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.235", "authors": "Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/28.1.235", "created_at": "2021-09-30T08:28:14.923Z", "updated_at": "2021-09-30T08:28:14.923Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1229, "relation": "undefined"}, {"licence-name": "RCSB PDB Policies", "licence-id": 698, "link-id": 1230, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2144", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:27.068Z", "metadata": {"doi": "10.25504/FAIRsharing.g2cf4x", "name": "CollecTF", "status": "ready", "contacts": [{"contact-name": "Ivan Erill", "contact-email": "erill@umbc.edu", "contact-orcid": "0000-0002-7280-7191"}], "homepage": "http://collectf.umbc.edu", "identifier": 2144, "description": "CollecTF is a database of transcription factor binding sites (TFBS) in the Bacteria domain. It aims at becoming a reference, highly-accessed database by relying on its ability to customize navigation and data extraction, its relevance to the community, the quality and detail of the stored data and the up-to-date nature of the stored information.", "abbreviation": "CollecTF", "support-links": [{"url": "http://collectf.umbc.edu/browse/feedback/", "type": "Contact form"}, {"url": "collectfdb@umbc.edu", "type": "Support email"}], "year-creation": 2013, "data-processes": [{"url": "http://collectf.umbc.edu/browse/contribute/", "name": "submit", "type": "data curation"}, {"url": "http://collectf.umbc.edu/browse/release_history/", "name": "database release", "type": "data release"}, {"url": "http://collectf.umbc.edu/browse/list_all_curations/", "name": "data curation", "type": "data curation"}, {"url": "http://collectf.umbc.edu/browse/search_motifs/", "name": "search", "type": "data access"}, {"url": "http://collectf.umbc.edu/browse/browse/", "name": "browse", "type": "data access"}, {"url": "http://collectf.umbc.edu/accounts/register/", "name": "Register / Login", "type": "data curation"}], "associated-tools": [{"url": "http://collectf.umbc.edu/browse/compare_motifs/", "name": "Motif Comparison"}]}, "legacy-ids": ["biodbcore-000616", "bsg-d000616"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Developmental Biology", "Life Science", "Transcriptomics"], "domains": ["Regulation of gene expression", "Binding motif", "Transcription factor", "Experimentally determined", "Binding site"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CollecTF", "abbreviation": "CollecTF", "url": "https://fairsharing.org/10.25504/FAIRsharing.g2cf4x", "doi": "10.25504/FAIRsharing.g2cf4x", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CollecTF is a database of transcription factor binding sites (TFBS) in the Bacteria domain. It aims at becoming a reference, highly-accessed database by relying on its ability to customize navigation and data extraction, its relevance to the community, the quality and detail of the stored data and the up-to-date nature of the stored information.", "publications": [{"id": 621, "pubmed_id": 24234444, "title": "CollecTF: a database of experimentally validated transcription factor-binding sites in Bacteria", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1123", "authors": "Kilic, Sefa; White, Elliot; Sagitova, Dinara; Cornish, Joseph; Erill, Ivan", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1123", "created_at": "2021-09-30T08:23:28.327Z", "updated_at": "2021-09-30T08:23:28.327Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2185", "type": "fairsharing-records", "attributes": {"created-at": "2015-01-26T10:34:51.000Z", "updated-at": "2021-11-24T13:17:22.992Z", "metadata": {"doi": "10.25504/FAIRsharing.q9neh8", "name": "MGI Mouse Gene Expression Database", "status": "ready", "contacts": [{"contact-name": "General Contact", "contact-email": "mgi-help@jax.org"}], "homepage": "http://www.informatics.jax.org/expression.shtml", "citations": [{"doi": "10.1093/nar/gkaa914", "pubmed-id": 33104772, "publication-id": 1721}], "identifier": 2185, "description": "The Gene Expression Database (GXD) is a community resource for gene expression information from the laboratory mouse. GXD stores and integrates different types of expression data and makes these data freely available in formats appropriate for comprehensive analysis. There is particular emphasis on endogenous gene expression during mouse development.", "abbreviation": "GXD", "access-points": [{"url": "http://www.mousemine.org/mousemine/begin.do#Expression", "name": "Mousemine API Access", "type": "REST"}], "support-links": [{"url": "http://www.informatics.jax.org/mgihome/GXD/FirstTimeUsers.shtml", "name": "Help for First-Time Users", "type": "Help documentation"}, {"url": "http://www.informatics.jax.org/mgihome/homepages/stats/all_stats.shtml#allstats_gxd", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.informatics.jax.org/mgihome/GXD/aboutGXD.shtml", "name": "About GXD", "type": "Help documentation"}], "year-creation": 1998, "data-processes": [{"url": "http://www.informatics.jax.org/gxd", "name": "Search", "type": "data access"}, {"url": "http://www.informatics.jax.org/downloads/reports/index.html#expression", "name": "Download", "type": "data release"}, {"url": "http://www.informatics.jax.org/mgihome/GXD/GEN/gxd_submission_guidelines.shtml", "name": "Submit", "type": "data curation"}, {"url": "http://www.informatics.jax.org/gxd/differential", "name": "Differential Expression Search", "type": "data access"}, {"url": "http://www.informatics.jax.org/gxd/batchSearch", "name": "Gene List Search", "type": "data access"}, {"url": "http://www.informatics.jax.org/vocab/gxd/anatomy/EMAPA:16039", "name": "Mouse Developmental Anatomy Browser", "type": "data access"}, {"url": "http://www.informatics.jax.org/gxd/htexp_index", "name": "RNA-Seq and Microarray Search", "type": "data access"}, {"url": "http://www.informatics.jax.org/gxdlit", "name": "Literature Search", "type": "data access"}, {"url": "http://www.informatics.jax.org/gxd/tissue_matrix", "name": "Tissue x Stage Matrix", "type": "data access"}]}, "legacy-ids": ["biodbcore-000659", "bsg-d000659"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Genetics", "Transcriptomics"], "domains": ["Expression data", "Model organism", "RNA sequencing", "Genome"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: MGI Mouse Gene Expression Database", "abbreviation": "GXD", "url": "https://fairsharing.org/10.25504/FAIRsharing.q9neh8", "doi": "10.25504/FAIRsharing.q9neh8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Gene Expression Database (GXD) is a community resource for gene expression information from the laboratory mouse. GXD stores and integrates different types of expression data and makes these data freely available in formats appropriate for comprehensive analysis. There is particular emphasis on endogenous gene expression during mouse development.", "publications": [{"id": 719, "pubmed_id": 24958384, "title": "The gene expression database for mouse development (GXD): Putting developmental expression information at your fingertips.", "year": 2014, "url": "http://doi.org/10.1002/dvdy.24155", "authors": "Smith CM, Finger JH, Kadin JA, Richardson JE, Ringwald M.", "journal": "Developmental Dynamics", "doi": "10.1002/dvdy.24155", "created_at": "2021-09-30T08:23:39.244Z", "updated_at": "2021-09-30T08:23:39.244Z"}, {"id": 720, "pubmed_id": 24163257, "title": "The mouse Gene Expression Database (GXD): 2014 update.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt954", "authors": "Smith CM, Finger JH, Hayamizu TF, McCright IJ, Xu J, Berghout J, Campbell J, Corbani LE, Forthofer KL, Frost PJ, Miers D, Shaw DR, Stone KR, Eppig JT, Kadin JA, Richardson JE, Ringwald M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt954", "created_at": "2021-09-30T08:23:39.353Z", "updated_at": "2021-09-30T08:23:39.353Z"}, {"id": 721, "pubmed_id": 21062809, "title": "The mouse Gene Expression Database (GXD): 2011 update.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1132", "authors": "Finger JH, Smith CM, Hayamizu TF, McCright IJ, Eppig JT, Kadin JA, Richardson JE, Ringwald M.", "journal": "Nucleic Acids Res 39 (suppl. 1)", "doi": "10.1093/nar/gkq1132", "created_at": "2021-09-30T08:23:39.461Z", "updated_at": "2021-09-30T08:23:39.461Z"}, {"id": 1721, "pubmed_id": 33104772, "title": "The mouse Gene Expression Database (GXD): 2021 update.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa914", "authors": "Baldarelli RM,Smith CM,Finger JH,Hayamizu TF,McCright IJ,Xu J,Shaw DR,Beal JS,Blodgett O,Campbell J,Corbani LE,Frost PJ,Giannatto SC,Miers DB,Kadin JA,Richardson JE,Ringwald M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa914", "created_at": "2021-09-30T08:25:32.860Z", "updated_at": "2021-09-30T11:29:19.260Z"}, {"id": 2128, "pubmed_id": 17130151, "title": "The mouse Gene Expression Database (GXD): 2007 update.", "year": 2006, "url": "http://doi.org/10.1093/nar/gkl1003", "authors": "Smith CM, Finger JH, Hayamizu TF, McCright IJ, Eppig JT, Kadin JA, Richardson JE, Ringwald, M.", "journal": "Nucleic Acids Res. (Database Issue)", "doi": "10.1093/nar/gkl1003", "created_at": "2021-09-30T08:26:19.991Z", "updated_at": "2021-09-30T08:26:19.991Z"}, {"id": 2138, "pubmed_id": 11125060, "title": "The Mouse Gene Expression Database (GXD).", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.98", "authors": "Ringwald M, Eppig JT, Begley DA, Corradi JP, McCright IJ, Hayamizu TF, Hill DP, Kadin JA, Richardson JE.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/29.1.98", "created_at": "2021-09-30T08:26:21.032Z", "updated_at": "2021-09-30T08:26:21.032Z"}, {"id": 2140, "pubmed_id": 30335138, "title": "The mouse Gene Expression Database (GXD): 2019 update.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky922", "authors": "Smith CM,Hayamizu TF,Finger JH,Bello SM,McCright IJ,Xu J,Baldarelli RM,Beal JS,Campbell J,Corbani LE,Frost PJ,Lewis JR,Giannatto SC,Miers D,Shaw DR,Kadin JA,Richardson JE,Smith CL,Ringwald M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky922", "created_at": "2021-09-30T08:26:21.256Z", "updated_at": "2021-09-30T11:29:29.994Z"}], "licence-links": [{"licence-name": "MGI Warranty Disclaimer and Copyright Notice", "licence-id": 511, "link-id": 493, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1697", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:47:51.592Z", "metadata": {"doi": "10.25504/FAIRsharing.2qx8n8", "name": "Virus Pathogen Database and Analysis Resource", "status": "ready", "contacts": [{"contact-name": "Richard Scheuermann", "contact-email": "rscheuermann@jcvi.org", "contact-orcid": "0000-0003-1355-892X"}], "homepage": "http://www.viprbrc.org", "identifier": 1697, "description": "The Virus Pathogen Database and Analysis Resource (ViPR) is an integrated repository of data and analysis tools for multiple virus families, supported by the National Institute of Allergy and Infectious Diseases (NIAID) Bioinformatics Resource Centers (BRC) program. ViPR captures various types of information, including sequence records, gene and protein annotations, 3D protein structures, immune epitope locations, clinical and surveillance metadata and novel data derived from comparative genomics analysis. The database is available without charge as a service to the virology research community to help facilitate the development of diagnostics, prophylactics and therapeutics for priority pathogens and other viruses.", "abbreviation": "ViPR", "support-links": [{"url": "http://www.viprbrc.org/brc/staticContent.do?decorator=vipr&type=ViprInfo&subtype=Contact", "type": "Contact form"}, {"url": "feedback@virusbrc.org", "type": "Support email"}, {"url": "https://www.viprbrc.org/brc/staticContent.spg?decorator=vipr&type=ViprInfo&subtype=FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.viprbrc.org/brcDocs/ViPRHelp/ViPRhelpfile.htm", "type": "Help documentation"}, {"url": "http://www.viprbrc.org/brc/viprTutorials.do?decorator=vipr", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"name": "daily", "type": "data release"}, {"name": "manual curation", "type": "data curation"}, {"name": "automated curation", "type": "data curation"}, {"name": "Outdated records from public resources, as well as derived data, are replaced with the most current information.", "type": "data versioning"}, {"name": "web interface", "type": "data access"}, {"name": "file download(CSV,images)", "type": "data access"}], "associated-tools": [{"url": "http://www.viprbrc.org/brc/mgc.spg?method=ShowCleanInputPage&", "name": "Metadata-driven Comparative Analysis Tool for Sequences (meta-CATS)"}, {"url": "http://www.viprbrc.org/brc/msa.spg?method=ShowCleanInputPage&", "name": "Multiple sequence alignment calculation and visualization"}, {"url": "http://www.viprbrc.org/brc/tree.spg?method=ShowCleanInputPage&", "name": "Phylogenetic tree calculation and visualization"}, {"url": "http://www.viprbrc.org/brc/blast.spg?method=ShowCleanInputPage&", "name": "BLAST"}, {"url": "http://www.viprbrc.org/brc/snpAnalysis.spg?method=ShowCleanInputPage&decorator=bunya", "name": "calculation of sequence variation"}, {"url": "http://www.viprbrc.org/brc/sssearch.spg?method=ShowCleanInputPage&decorator=bunya&preSelectDB=true", "name": "identify short peptides in proteins"}, {"url": "http://www.viprbrc.org/brc/gatuStart.spg?decorator=bunya", "name": "genome annotator tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011931", "name": "re3data:r3d100011931", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_012983", "name": "SciCrunch:RRID:SCR_012983", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000154", "bsg-d000154"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Proteomics", "Virology", "Life Science", "Biomedical Science", "Epidemiology"], "domains": ["Expression data", "Structure", "Sequence feature"], "taxonomies": ["Arenaviridae", "Bunyaviridae", "Caliciviridae", "Coronaviridae", "Filoviridae", "Flaviviridae", "Hepeviridae", "Herpesviridae", "Paramyxoviridae", "Picornaviridae", "Poxviridae", "Reoviridae", "Rhabdoviridae", "Togaviridae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Virus Pathogen Database and Analysis Resource", "abbreviation": "ViPR", "url": "https://fairsharing.org/10.25504/FAIRsharing.2qx8n8", "doi": "10.25504/FAIRsharing.2qx8n8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Virus Pathogen Database and Analysis Resource (ViPR) is an integrated repository of data and analysis tools for multiple virus families, supported by the National Institute of Allergy and Infectious Diseases (NIAID) Bioinformatics Resource Centers (BRC) program. ViPR captures various types of information, including sequence records, gene and protein annotations, 3D protein structures, immune epitope locations, clinical and surveillance metadata and novel data derived from comparative genomics analysis. The database is available without charge as a service to the virology research community to help facilitate the development of diagnostics, prophylactics and therapeutics for priority pathogens and other viruses.", "publications": [{"id": 1310, "pubmed_id": 22006842, "title": "ViPR: an open bioinformatics database and analysis resource for virology research.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr859", "authors": "Pickett BE., Sadat EL., Zhang Y., Noronha JM., Squires RB., Hunt V., Liu M., Kumar S., Zaremba S., Gu Z., Zhou L., Larson CN., Dietrich J., Klem EB., Scheuermann RH.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr859", "created_at": "2021-09-30T08:24:46.267Z", "updated_at": "2021-09-30T08:24:46.267Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2977", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-28T14:51:48.000Z", "updated-at": "2021-12-06T10:48:49.714Z", "metadata": {"doi": "10.25504/FAIRsharing.LdoU1I", "name": "International Mouse Phenotyping Consortium", "status": "ready", "contacts": [{"contact-name": "IMPC helpdesk", "contact-email": "mouse-helpdesk@ebi.ac.uk"}], "homepage": "https://www.mousephenotype.org/", "citations": [{"doi": "10.1038/nature19356", "pubmed-id": 27626380, "publication-id": 2985}], "identifier": 2977, "description": "The International Mouse Phenotyping Consortium (IMPC) produces a publicly-available repository that stores information on IMPC processes, data and annotations. The IMPC is an international effort by 19 research institutions to identify the function of every protein-coding gene in the mouse genome by switching off or \u2018knocking out\u2019 each of the roughly 20,000 genes that make up the mouse genome.", "abbreviation": "IMPC", "access-points": [{"url": "https://www.mousephenotype.org/help/programmatic-data-access/", "name": "Programmatic data access", "type": "Other"}], "support-links": [{"url": "https://www.mousephenotype.org/news/", "name": "News", "type": "Blog/News"}, {"url": "https://www.mousephenotype.org/blog/", "name": "Blog", "type": "Blog/News"}, {"url": "https://www.mousephenotype.org/contact-us/", "name": "Contact IMPC", "type": "Contact form"}, {"url": "https://www.mousephenotype.org/help/faqs/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.mousephenotype.org/help/", "name": "General Help", "type": "Help documentation"}, {"url": "https://www.mousephenotype.org/understand/the-data/how-we-generate-the-data/", "name": "How Data is Generated", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/impc-using-the-mouse-phenotyping-portal", "name": "IMPC: Using the mouse phenotyping portal", "type": "TeSS links to training materials"}, {"url": "https://twitter.com/impc", "name": "@impc", "type": "Twitter"}], "year-creation": 2012, "data-processes": [{"url": "http://ftp.ebi.ac.uk/pub/databases/impc/", "name": "Download", "type": "data release"}, {"url": "https://www.mousephenotype.org/data/batchQuery", "name": "Batch Query", "type": "data access"}], "associated-tools": [{"url": "https://www.mousephenotype.org/data/parallel", "name": "KO effect comparator"}, {"url": "https://www.mousephenotype.org/phenodcc/", "name": "PhenoDCC"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010636", "name": "re3data:r3d100010636", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006158", "name": "SciCrunch:RRID:SCR_006158", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001483", "bsg-d001483"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Functional Genomics", "Phenomics"], "domains": ["Phenotype", "Protein", "Genome"], "taxonomies": ["Homo sapiens", "Mus musculus"], "user-defined-tags": [], "countries": ["Czech Republic", "China", "United Kingdom", "Canada", "South Africa", "India", "United States", "Italy", "France", "Germany", "Australia", "Taiwan", "South Korea", "Spain", "Japan"], "name": "FAIRsharing record for: International Mouse Phenotyping Consortium", "abbreviation": "IMPC", "url": "https://fairsharing.org/10.25504/FAIRsharing.LdoU1I", "doi": "10.25504/FAIRsharing.LdoU1I", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The International Mouse Phenotyping Consortium (IMPC) produces a publicly-available repository that stores information on IMPC processes, data and annotations. The IMPC is an international effort by 19 research institutions to identify the function of every protein-coding gene in the mouse genome by switching off or \u2018knocking out\u2019 each of the roughly 20,000 genes that make up the mouse genome.", "publications": [{"id": 2985, "pubmed_id": 27626380, "title": "High-throughput Discovery of Novel Developmental Phenotypes", "year": 2016, "url": "http://doi.org/10.1038/nature19356", "authors": "Dickinson ME, Flenniken AM, Ji X, et al.", "journal": "Nature", "doi": "10.1038/nature19356", "created_at": "2021-09-30T08:28:07.791Z", "updated_at": "2021-09-30T08:28:07.791Z"}], "licence-links": [{"licence-name": "IMPC Terms of Use", "licence-id": 433, "link-id": 1684, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2023", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.997Z", "metadata": {"doi": "10.25504/FAIRsharing.2g4cfa", "name": "Quantitative Trait Loci Archive", "status": "ready", "contacts": [{"contact-email": "qtlarchive@jax.org"}], "homepage": "http://phenome.jax.org/db/q?rtn=qtl/home", "identifier": 2023, "description": "This site provides access to raw data from various QTL (quantitative trait loci) studies using rodent inbred line crosses. Data are available in the .csv format used by R/qtl and pseudomarker programs. In some cases analysis scripts and/or results are posted to accompany the data.", "abbreviation": "QTL Archive", "support-links": [{"url": "http://phenome.jax.org/db/q?rtn=uin/sugg", "type": "Contact form"}, {"url": "phenome@jax.org", "type": "Support email"}, {"url": "http://phenome.jax.org/db/q?rtn=docs/aboutmpd", "type": "Help documentation"}], "data-processes": [{"url": "http://qtlarchive.org/db/q?pg=search", "name": "Search", "type": "data access"}, {"url": "http://qtlarchive.org/db/q?pg=allcats", "name": "Browse", "type": "data access"}, {"url": "http://qtlarchive.org/download/", "name": "Download", "type": "data access"}]}, "legacy-ids": ["biodbcore-000490", "bsg-d000490"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Curated information", "Phenotype", "Quantitative trait loci", "Genotype"], "taxonomies": ["Mus musculus"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Quantitative Trait Loci Archive", "abbreviation": "QTL Archive", "url": "https://fairsharing.org/10.25504/FAIRsharing.2g4cfa", "doi": "10.25504/FAIRsharing.2g4cfa", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: This site provides access to raw data from various QTL (quantitative trait loci) studies using rodent inbred line crosses. Data are available in the .csv format used by R/qtl and pseudomarker programs. In some cases analysis scripts and/or results are posted to accompany the data.", "publications": [], "licence-links": [{"licence-name": "MPD Attribution required", "licence-id": 526, "link-id": 1942, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 1943, "relation": "undefined"}, {"licence-name": "MPD Terms of Use", "licence-id": 527, "link-id": 1944, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2009", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.792Z", "metadata": {"doi": "10.25504/FAIRsharing.9sb9qh", "name": "Restriction enzymes and methylases database", "status": "ready", "contacts": [{"contact-name": "Dana Macelis", "contact-email": "macelis@neb.com"}], "homepage": "http://rebase.neb.com", "identifier": 2009, "description": "A collection of information about restriction enzymes and related proteins. It contains published and unpublished references, recognition and cleavage sites, isoschizomers, commercial availability, methylation sensitivity, crystal, genome, and sequence data.", "abbreviation": "REBASE", "support-links": [{"url": "http://rebase.neb.com/rebase/rebstaff.html", "type": "Contact form"}, {"url": "macelis@neb.com", "type": "Support email"}, {"url": "http://rebase.neb.com/rebase/rebhelp.html", "type": "Help documentation"}], "year-creation": 1994, "data-processes": [{"url": "http://rebase.neb.com/rebase/rebase.charts.html", "name": "browse", "type": "data access"}], "associated-tools": [{"url": "http://nc2.neb.com/NEBcutter2/", "name": "NEBcutter 2.0"}, {"url": "http://tools.neb.com/~vincze/blast/", "name": "BLAST"}, {"url": "http://tools.neb.com/REBsites/", "name": "REBsites"}]}, "legacy-ids": ["biodbcore-000475", "bsg-d000475"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Molecular structure", "Deoxyribonucleic acid", "Ribonucleic acid", "Small molecule", "Enzyme", "Structure", "Protein", "Genome"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Restriction enzymes and methylases database", "abbreviation": "REBASE", "url": "https://fairsharing.org/10.25504/FAIRsharing.9sb9qh", "doi": "10.25504/FAIRsharing.9sb9qh", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A collection of information about restriction enzymes and related proteins. It contains published and unpublished references, recognition and cleavage sites, isoschizomers, commercial availability, methylation sensitivity, crystal, genome, and sequence data.", "publications": [{"id": 461, "pubmed_id": 25378308, "title": "REBASE-a database for DNA restriction and modification: enzymes, genes and genomes.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1046", "authors": "Roberts RJ., Vincze T., Posfai J., Macelis D.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku1046", "created_at": "2021-09-30T08:23:10.084Z", "updated_at": "2021-09-30T08:23:10.084Z"}, {"id": 782, "pubmed_id": 19846593, "title": "REBASE--a database for DNA restriction and modification: enzymes, genes and genomes.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp874", "authors": "Roberts RJ,Vincze T,Posfai J,Macelis D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp874", "created_at": "2021-09-30T08:23:46.161Z", "updated_at": "2021-09-30T11:28:51.159Z"}], "licence-links": [{"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 6, "relation": "undefined"}, {"licence-name": "REBASE Attribution required", "licence-id": 702, "link-id": 7, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2246", "type": "fairsharing-records", "attributes": {"created-at": "2015-12-08T14:10:54.000Z", "updated-at": "2021-12-06T10:48:47.893Z", "metadata": {"doi": "10.25504/FAIRsharing.kcpnmb", "name": "HealthData.gov", "status": "ready", "contacts": [{"contact-name": "General Enquiries", "contact-email": "HealthData@HHS.gov"}], "homepage": "https://www.healthdata.gov/", "citations": [], "identifier": 2246, "description": "HealthData.gov makes high value health data more accessible to entrepreneurs, researchers, and policy makers in the hopes of better health outcomes for all. Data is drawn from CMS, CDC, FDA and NIH, among others that are easily available and accessible to the public and to innovators across the country. This information includes clinical care provider quality information, nationwide health service provider directories, databases of the latest medical and scientific knowledge, consumer product data, community health performance information, government spending data and much more.", "abbreviation": "HealthData.gov", "support-links": [{"url": "http://www.healthdata.gov/content/about", "type": "Help documentation"}], "year-creation": 2010, "data-processes": [{"url": "http://www.healthdata.gov/search/type/dataset", "name": "Web interface", "type": "data access"}], "associated-tools": [{"url": "http://www.healthdata.gov/content/data-api", "name": "Data API"}, {"url": "http://www.healthdata.gov/api", "name": "HealthData.gov API"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010593", "name": "re3data:r3d100010593", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004386", "name": "SciCrunch:RRID:SCR_004386", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000720", "bsg-d000720"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Medicine", "Health Science", "Biomedical Science", "Preclinical Studies"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: HealthData.gov", "abbreviation": "HealthData.gov", "url": "https://fairsharing.org/10.25504/FAIRsharing.kcpnmb", "doi": "10.25504/FAIRsharing.kcpnmb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: HealthData.gov makes high value health data more accessible to entrepreneurs, researchers, and policy makers in the hopes of better health outcomes for all. Data is drawn from CMS, CDC, FDA and NIH, among others that are easily available and accessible to the public and to innovators across the country. This information includes clinical care provider quality information, nationwide health service provider directories, databases of the latest medical and scientific knowledge, consumer product data, community health performance information, government spending data and much more.", "publications": [], "licence-links": [{"licence-name": "HHS Privacy Policy", "licence-id": 392, "link-id": 881, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2278", "type": "fairsharing-records", "attributes": {"created-at": "2016-04-13T15:31:23.000Z", "updated-at": "2022-01-28T16:33:08.083Z", "metadata": {"doi": "10.25504/FAIRsharing.xp1x9c", "name": "Ascidian Network for In Situ Expression and Embryological Data", "status": "ready", "contacts": [{"contact-name": "Delphine Dauga", "contact-email": "contac@bioself-communication.com", "contact-orcid": "0000-0003-3152-1194"}], "homepage": "https://www.aniseed.cnrs.fr/", "citations": [], "identifier": 2278, "description": "ANISEED is a database designed to offer a representation of ascidian embryonic development at the level of the genome (cis-regulatory sequences, spatial gene expression, protein annotation), of the cell (cell shapes, fate, lineage) or of the whole embryo (anatomy, morphogenesis).", "abbreviation": "ANISEED", "access-points": [{"url": "https://www.aniseed.cnrs.fr/api", "name": "JSON API", "type": "Other"}], "data-curation": {"type": "manual/automated"}, "support-links": [{"url": "https://www.facebook.com/TunicateCommunity/", "name": "Facebook", "type": "Facebook"}, {"url": "contact@aniseed.cnrs.fr", "name": "Aniseed team", "type": "Support email"}, {"url": "https://groupes.renater.fr/sympa/subscribe/aniseed_news", "name": "Aniseed diffusion list", "type": "Mailing list"}, {"url": "https://www.youtube.com/channel/UCgF5wx-X37NgtAjlSXr7lWw", "name": "Youtube tutoriel", "type": "Video"}, {"url": "https://twitter.com/Aniseed_DB", "type": "Twitter"}], "year-creation": 2004, "data-processes": [{"url": "https://www.aniseed.cnrs.fr/browser/", "name": "WashU Genome Browser", "type": "data access"}, {"url": "http://www.aniseed.cnrs.fr/aniseed/default/blast_search", "name": "Blast", "type": "data access"}, {"url": "https://www.aniseed.cnrs.fr/aniseed/default/submit_data", "name": "Submit", "type": "data curation"}, {"url": "https://www.aniseed.cnrs.fr/aniseed/download/download_data", "name": "Download", "type": "data versioning"}, {"url": "https://www.aniseed.cnrs.fr/aniseed/", "name": "Developmental browser", "type": "data access"}, {"url": "https://www.aniseed.cnrs.fr/aniseed/download/download_data", "name": "Download", "type": "data access"}, {"url": "https://www.aniseed.cnrs.fr/aniseed/download/download_embryo", "name": "Download 3D embryo", "type": "data access"}], "data-versioning": "yes", "associated-tools": [{"url": "https://www.aniseed.cnrs.fr/aniseed/download/download_3dve", "name": "3D Virtual Embryo version 2013-08-01"}], "cross-references": [{"url": "https://bioportal.bioontology.org/ontologies/CIINTEADO", "name": "Ciona intestinalis Anatomy and Development Ontology", "portal": "BioPortal"}, {"url": "https://bioportal.bioontology.org/ontologies/BSAO", "name": "Botryllus schlosseri anatomy and development ontology", "portal": "BioPortal"}], "deprecation-reason": null, "data-access-condition": {"type": "open"}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "open"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": ["biodbcore-000752", "bsg-d000752"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Functional Genomics", "Anatomy", "Epigenomics", "Genomics", "Developmental Biology", "Phylogenomics", "Embryology", "Life Science", "Transcriptomics", "Comparative Genomics", "Ontology and Terminology"], "domains": ["Expression data", "Mutation", "Curated information", "Phenotype", "Gene", "Genome", "Life cycle stage", "Literature curation"], "taxonomies": ["Botryllus leachii", "Botryllus schlosseri", "Ciona intestinalis", "Ciona robusta", "Ciona savignyi", "Corella inflata", "Halocynthia aurantium", "Halocynthia roretzi", "Molgula occidentalis", "Molgula occulta", "Molgula oculata", "Oikopleura dioica", "Phallusia fumigata", "Phallusia mammillata"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Ascidian Network for In Situ Expression and Embryological Data", "abbreviation": "ANISEED", "url": "https://fairsharing.org/10.25504/FAIRsharing.xp1x9c", "doi": "10.25504/FAIRsharing.xp1x9c", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: ANISEED is a database designed to offer a representation of ascidian embryonic development at the level of the genome (cis-regulatory sequences, spatial gene expression, protein annotation), of the cell (cell shapes, fate, lineage) or of the whole embryo (anatomy, morphogenesis).", "publications": [{"id": 1, "pubmed_id": 2781285, "title": "A common language for physical mapping of the human genome.", "year": 1989, "url": "http://doi.org/10.1126/science.2781285", "authors": "Olson M,Hood L,Cantor C,Botstein D", "journal": "Science", "doi": "10.1126/science.2781285", "created_at": "2021-09-30T08:22:20.699Z", "updated_at": "2021-09-30T08:22:20.699Z"}, {"id": 1014, "pubmed_id": 20647237, "title": "The ANISEED database: digital representation, formalization, and elucidation of a chordate developmental program.", "year": 2010, "url": "http://doi.org/10.1101/gr.108175.110", "authors": "Tassy O,Dauga D,Daian F,Sobral D,Lemaire P et al.", "journal": "Genome Res", "doi": "10.1101/gr.108175.110", "created_at": "2021-09-30T08:24:12.272Z", "updated_at": "2021-09-30T08:24:12.272Z"}, {"id": 2469, "pubmed_id": 26420834, "title": "ANISEED 2015: a digital framework for the comparative developmental biology of ascidians.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv966", "authors": "Brozovic M,Martin C,Dantec C,Dauga D,Mendez M,Simion P,Percher M,Laporte B,Scornavacca C,Di Gregorio A,Fujiwara S,Gineste M,Lowe EK,Piette J,Racioppi C,Ristoratore F,Sasakura Y,Takatori N,Brown TC,Delsuc F,Douzery E,Gissi C,McDougall A,Nishida H,Sawada H,Swalla BJ,Yasuo H,Lemaire P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv966", "created_at": "2021-09-30T08:27:02.794Z", "updated_at": "2021-09-30T11:29:37.153Z"}, {"id": 2553, "pubmed_id": 29149270, "title": "ANISEED 2017: extending the integrated ascidian database to the exploration and evolutionary comparison of genome-scale datasets.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1108", "authors": "Brozovic M,Dantec C,Dardaillon J,Dauga D,Faure E,Gineste M,Louis A,Naville M,Nitta KR,Piette J,Reeves W,Scornavacca C,Simion P,Vincentelli R,Bellec M,Aicha SB,Fagotto M,Gueroult-Bellone M,Haeussler M,Jacox E,Lowe EK,Mendez M,Roberge A,Stolfi A,Yokomori R,Brown CT,Cambillau C,Christiaen L,Delsuc F,Douzery E,Dumollard R,Kusakabe T,Nakai K,Nishida H,Satou Y,Swalla B,Veeman M,Volff JN,Lemaire P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1108", "created_at": "2021-09-30T08:27:13.125Z", "updated_at": "2021-09-30T11:29:39.222Z"}], "licence-links": [{"licence-name": "ANISEED Privacy Policy", "licence-id": 31, "link-id": 495, "relation": "undefined"}, {"licence-name": "ANISEED Terms of use", "licence-id": 32, "link-id": 496, "relation": "undefined"}, {"licence-name": "GNU General Public License (GPL) 3.0", "licence-id": 356, "link-id": 497, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBCdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--a18b2af07391dced59f066306f03e95797c21874/ANISEED-logo.png?disposition=inline"}} +{"id": "1616", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:40.077Z", "metadata": {"doi": "10.25504/FAIRsharing.h6enr1", "name": "Mouse Phenome Database", "status": "ready", "contacts": [{"contact-name": "Molly Bogue", "contact-email": "phenome@jax.org"}], "homepage": "http://phenome.jax.org", "identifier": 1616, "description": "Characterizations of hundreds of strains of laboratory mice to facilitate translational discoveries and to assist in selection of strains for experimental studies. Data sets are voluntarily contributed by researchers or retrieved by us from public sources. MPD has three major types of strain-centric data sets: phenotype strain surveys, SNP and variation data, and gene expression strain surveys.", "abbreviation": "MPD", "support-links": [{"url": "http://phenome.jax.org/db/q?rtn=docs/contact", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/Mouse_Phenome_Database", "type": "Wikipedia"}], "year-creation": 2001, "data-processes": [{"url": "http://phenome.jax.org/", "name": "B", "type": "data access"}, {"url": "http://physics.nist.gov/cuu/Units/", "name": "measurement units conformance to SI", "type": "data curation"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010552", "name": "re3data:r3d100010552", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003212", "name": "SciCrunch:RRID:SCR_003212", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000072", "bsg-d000072"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Biomedical Science"], "domains": ["Expression data", "DNA structural variation", "Genetic polymorphism", "Phenotype", "Structure", "Single nucleotide polymorphism", "Indel", "Genotype"], "taxonomies": ["Mus musculus"], "user-defined-tags": ["Gene expression strain survey data", "Phenotype strain survey data"], "countries": ["United States"], "name": "FAIRsharing record for: Mouse Phenome Database", "abbreviation": "MPD", "url": "https://fairsharing.org/10.25504/FAIRsharing.h6enr1", "doi": "10.25504/FAIRsharing.h6enr1", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Characterizations of hundreds of strains of laboratory mice to facilitate translational discoveries and to assist in selection of strains for experimental studies. Data sets are voluntarily contributed by researchers or retrieved by us from public sources. MPD has three major types of strain-centric data sets: phenotype strain surveys, SNP and variation data, and gene expression strain surveys.", "publications": [{"id": 120, "pubmed_id": 18987003, "title": "Mouse phenome database.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn778", "authors": "Grubb SC., Maddatu TP., Bult CJ., Bogue MA.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkn778", "created_at": "2021-09-30T08:22:33.247Z", "updated_at": "2021-09-30T08:22:33.247Z"}, {"id": 121, "pubmed_id": 15619963, "title": "The Mouse Phenome Project.", "year": 2004, "url": "http://doi.org/10.1007/s10709-004-1438-4", "authors": "Bogue MA., Grubb SC.,", "journal": "Genetica", "doi": "10.1007/s10709-004-1438-4", "created_at": "2021-09-30T08:22:33.338Z", "updated_at": "2021-09-30T08:22:33.338Z"}, {"id": 122, "pubmed_id": 15130929, "title": "A collaborative database of inbred mouse strain characteristics.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth299", "authors": "Grubb SC., Churchill GA., Bogue MA.,", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth299", "created_at": "2021-09-30T08:22:33.440Z", "updated_at": "2021-09-30T08:22:33.440Z"}, {"id": 1198, "pubmed_id": 10967127, "title": "A mouse phenome project.", "year": 2000, "url": "http://doi.org/10.1007/s003350010152", "authors": "Paigen K,Eppig JT", "journal": "Mamm Genome", "doi": "10.1007/s003350010152", "created_at": "2021-09-30T08:24:33.457Z", "updated_at": "2021-09-30T08:24:33.457Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2812", "type": "fairsharing-records", "attributes": {"created-at": "2019-07-31T21:51:58.000Z", "updated-at": "2022-02-08T10:52:11.819Z", "metadata": {"doi": "10.25504/FAIRsharing.278768", "name": "coastMap", "status": "ready", "contacts": [{"contact-name": "Kay-Christian Emeis", "contact-email": "kay.emeis@hzg.de", "contact-orcid": "0000-0003-0459-913X"}], "homepage": "https://www.hzg.de/institutes_platforms/coastmap/index.php.en", "identifier": 2812, "description": "coastMap is a collection of data based on the observations of the seafloor and water conditions and atmosphere of mainly the North Sea. This information can be used for analysis and modelling by researchers.", "abbreviation": "coastMap", "support-links": [{"url": "marcus.lange@hzg.de", "name": "Marcus Lange (Scientific Coordination, Website)", "type": "Support email"}, {"url": "https://www.hzg.de/institutes_platforms/coastmap/data/tutorials/index.php.en", "name": "Tutorials", "type": "Help documentation"}], "data-processes": [{"url": "https://coastmap.hzg.de/coastmap/dbdata/public/#/download", "name": "Search for campaign data", "type": "data access"}, {"url": "https://coastmap.hzg.de/coastmap/modeldata/model1/#/residualcurrents", "name": "Access to Residual Currents in the North Sea", "type": "data access"}, {"url": "https://coastmap.hzg.de/portal/apps/PublicGallery/index.html?appid=9e4b37b4b3cb41cf85518cb6214be9bf", "name": "coastMap North Sea Explorer", "type": "data access"}, {"url": "https://coastmap.hzg.de/portal/apps/PublicGallery/index.html?appid=175aff24bee04c97bc27a0d63c7dbe66", "name": "Map Gallery", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012648", "name": "re3data:r3d100012648", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001311", "bsg-d001311"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Geology", "Marine Biology", "Atmospheric Science", "Oceanography"], "domains": ["Marine environment"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Natural Resources, Earth and Environment", "Sedimentology"], "countries": ["Germany"], "name": "FAIRsharing record for: coastMap", "abbreviation": "coastMap", "url": "https://fairsharing.org/10.25504/FAIRsharing.278768", "doi": "10.25504/FAIRsharing.278768", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: coastMap is a collection of data based on the observations of the seafloor and water conditions and atmosphere of mainly the North Sea. This information can be used for analysis and modelling by researchers.", "publications": [], "licence-links": [{"licence-name": "Helmholtz-Zentrum Geesthacht Data Privacy", "licence-id": 386, "link-id": 942, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", "licence-id": 172, "link-id": 943, "relation": "undefined"}, {"licence-name": "coastMap Disclaimer", "licence-id": 140, "link-id": 945, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2156", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:17.544Z", "metadata": {"doi": "10.25504/FAIRsharing.txkh36", "name": "Database of Genomic Variants Archive", "status": "deprecated", "contacts": [{"contact-name": "General Contact", "contact-email": "eva-helpdesk@ebi.ac.uk"}], "homepage": "http://www.ebi.ac.uk/dgva/", "identifier": 2156, "description": "The Database of Genomic Variants archive (DGVa) is a repository that provides archiving, accessioning and distribution of publicly available genomic structural variants, in all species.", "abbreviation": "DGVa", "support-links": [{"url": "https://tess.elixir-europe.org/materials/dgva-quick-tour", "name": "DGVa: Quick tour", "type": "TeSS links to training materials"}, {"url": "https://www.ebi.ac.uk/dgva/dgva-quick-tour-ebi-train-online", "name": "DGVa: Quick tour (EBI)", "type": "Training documentation"}], "data-processes": [{"url": "https://www.ebi.ac.uk/dgva/data-download", "name": "Download", "type": "data release"}, {"url": "https://www.ebi.ac.uk/dgva/data-submission", "name": "Submit", "type": "data curation"}, {"url": "https://www.ebi.ac.uk/eva/?Study-Browser&browserType=sv", "name": "Browse", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010814", "name": "re3data:r3d100010814", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004896", "name": "SciCrunch:RRID:SCR_004896", "portal": "SciCrunch"}], "deprecation-date": "2020-02-10", "deprecation-reason": "This resource has been deprecated, with read-only access being available for a period of time."}, "legacy-ids": ["biodbcore-000628", "bsg-d000628"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics"], "domains": ["Genetic polymorphism", "Curated information", "Structure", "Sequence variant"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Database of Genomic Variants Archive", "abbreviation": "DGVa", "url": "https://fairsharing.org/10.25504/FAIRsharing.txkh36", "doi": "10.25504/FAIRsharing.txkh36", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Database of Genomic Variants archive (DGVa) is a repository that provides archiving, accessioning and distribution of publicly available genomic structural variants, in all species.", "publications": [], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 616, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2655", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-11T13:04:01.000Z", "updated-at": "2022-02-08T10:47:08.507Z", "metadata": {"doi": "10.25504/FAIRsharing.60127f", "name": "Refractive Index Database", "status": "ready", "contacts": [{"contact-name": "Mikhail Polyanskiy", "contact-email": "polyanskiy@refractiveindex.info", "contact-orcid": "0000-0002-6043-0008"}], "homepage": "https://refractiveindex.info", "identifier": 2655, "description": "Refractive Index database hosted on the refractiveindex.info website is a searchable database of refractive constants for different elements and materials.", "abbreviation": null, "support-links": [{"url": "https://refractiveindex.info/about", "name": "About", "type": "Help documentation"}], "year-creation": 2008, "data-processes": [{"url": "https://refractiveindex.info/about", "name": "submit", "type": "data curation"}, {"url": "https://refractiveindex.info/download/database/rii-database-2019-02-11.zip", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://www.codeseeder.com", "name": "BeamLAB"}, {"url": "https://www.gpvdm.com", "name": "gpvdm"}, {"url": "https://www.optilayer.com/", "name": "Optilayer"}, {"url": "https://github.com/kitchenknif/PyTMM", "name": "PyTMM"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011874", "name": "re3data:r3d100011874", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001147", "bsg-d001147"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Natural Science", "Materials Science", "Physics"], "domains": ["Chromatography", "Light-sheet illumination"], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": [], "name": "FAIRsharing record for: Refractive Index Database", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.60127f", "doi": "10.25504/FAIRsharing.60127f", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Refractive Index database hosted on the refractiveindex.info website is a searchable database of refractive constants for different elements and materials.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1698, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2979", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-06T21:04:06.000Z", "updated-at": "2021-12-06T10:47:28.450Z", "metadata": {"name": "NanoCommons Knowledge Base", "status": "in_development", "contacts": [{"contact-name": "Helpdesk", "contact-email": "helpdesk@nanocommons.eu"}], "homepage": "https://www.nanocommons.eu/nanocommons-knowledge-base/", "identifier": 2979, "description": "The NanoCommons Knowledge Base is a data source provided by the NanoCommons project. It is based on the BioXM TM Knowledge Management Environment, developed over the last 15 years by Biomax Informatics AG and applied in multiple collaborative research projects and commercial environments. This database requires registration. NanoCommons provides a community framework and infrastructure for reproducible science and in-silico workflows for nanomaterials safety assessment", "year-creation": 2019, "data-processes": [{"url": "https://ssl.biomax.de/nanocommons/bioxm_portal/bin/view/BioXM/DataAccess", "name": "Searching + Browsing", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100013329", "name": "re3data:r3d100013329", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001485", "bsg-d001485"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Toxicogenomics", "Composite Materials", "Nanotechnology", "Materials Informatics", "Materials Engineering", "Occupational Medicine", "Toxicology", "Chemistry", "Safety Science", "Analytical Chemistry", "Biology"], "domains": ["Nanoparticle", "Toxicity"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Nanosafety", "Systems toxicology"], "countries": ["Germany"], "name": "FAIRsharing record for: NanoCommons Knowledge Base", "abbreviation": null, "url": "https://fairsharing.org/fairsharing_records/2979", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The NanoCommons Knowledge Base is a data source provided by the NanoCommons project. It is based on the BioXM TM Knowledge Management Environment, developed over the last 15 years by Biomax Informatics AG and applied in multiple collaborative research projects and commercial environments. This database requires registration. NanoCommons provides a community framework and infrastructure for reproducible science and in-silico workflows for nanomaterials safety assessment", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2597", "type": "fairsharing-records", "attributes": {"created-at": "2018-05-04T12:58:09.000Z", "updated-at": "2021-12-06T10:48:53.044Z", "metadata": {"doi": "10.25504/FAIRsharing.mKDii0", "name": "Norwegian Centre for Research Data", "status": "ready", "contacts": [{"contact-name": "\u00d8rnulf Risnes", "contact-email": "nsd@nsd.uib.no"}], "homepage": "https://nsd.no/en/", "citations": [], "identifier": 2597, "description": "The Norwegian Centre for Research Data (NSD) is one of the largest archives for research data of its kind and provides data to researchers and students in Norway and abroad. Additionally, the NSD is a resource centre which assists researchers with regard to data gathering, data analysis, and issues of methodology, privacy and research ethics. The NSD is a certified archive (certified with the Core Trust Seal), and a member of DataCite. The NSD is also the data processor, data distributor and archive for the ESS \u2013 European Social Survey (http://www.europeansocialsurvey.org). The NSD is the Norwegian Service Provider for CESSDA (http://cessda.eu)", "abbreviation": "NSD", "support-links": [{"url": "http://www.nsd.uib.no/arkivering/en/005_faq.html", "name": "Frequently asked questions - data management", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.nsd.uib.no/personvernombud/en/help/faq.html", "name": "Frequently asked questions - personal data", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.nsd.no/opplaring", "name": "Training webpage (under development)", "type": "Training documentation"}], "year-creation": 2016, "data-processes": [{"url": "http://search.nsd.no", "name": "search.nsd.no", "type": "data access"}], "associated-tools": [{"url": "http://www.nesstar.com/", "name": "Nesstar"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010493", "name": "re3data:r3d100010493", "portal": "re3data"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001080", "bsg-d001080"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Humanities", "Social Science", "Medicine", "Health Science", "Natural Science", "Earth Science", "Life Science", "Social and Behavioural Science", "Subject Agnostic"], "domains": [], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Norway"], "name": "FAIRsharing record for: Norwegian Centre for Research Data", "abbreviation": "NSD", "url": "https://fairsharing.org/10.25504/FAIRsharing.mKDii0", "doi": "10.25504/FAIRsharing.mKDii0", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Norwegian Centre for Research Data (NSD) is one of the largest archives for research data of its kind and provides data to researchers and students in Norway and abroad. Additionally, the NSD is a resource centre which assists researchers with regard to data gathering, data analysis, and issues of methodology, privacy and research ethics. The NSD is a certified archive (certified with the Core Trust Seal), and a member of DataCite. The NSD is also the data processor, data distributor and archive for the ESS \u2013 European Social Survey (http://www.europeansocialsurvey.org). The NSD is the Norwegian Service Provider for CESSDA (http://cessda.eu)", "publications": [], "licence-links": [{"licence-name": "open, embargoed, restricted", "licence-id": 623, "link-id": 2058, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2190", "type": "fairsharing-records", "attributes": {"created-at": "2015-03-08T19:50:25.000Z", "updated-at": "2021-12-06T10:48:21.988Z", "metadata": {"doi": "10.25504/FAIRsharing.ctdss6", "name": "VertNet", "status": "ready", "contacts": [{"contact-name": "Robert Guralnick", "contact-email": "robert.guralnick@colorado.edu"}], "homepage": "http://www.vertnet.org/", "identifier": 2190, "description": "VertNet is a NSF-funded collaborative project that makes biodiversity data free and available on the web. VertNet is a tool designed to help people discover, capture, and publish biodiversity data. It is also the core of a collaboration between hundreds of biocollections that contribute biodiversity data and work together to improve it. VertNet is an engine for training current and future professionals to use and build upon best practices in data quality, curation, research, and data publishing.", "abbreviation": "VertNet", "access-points": [{"url": "https://github.com/VertNet/webapp/wiki/Introduction-to-the-VertNet-API", "name": "VertNet API", "type": "REST"}], "support-links": [{"url": "http://form.jotform.us/form/31397097595166", "name": "Feedback Form", "type": "Contact form"}, {"url": "http://www.vertnet.org/resources/help.html", "name": "How-To Document", "type": "Help documentation"}, {"url": "http://portal.vertnet.org/stats", "name": "Statistics", "type": "Help documentation"}, {"url": "http://www.vertnet.org/resources/publications.html", "name": "Publications and Videos", "type": "Help documentation"}, {"url": "http://www.vertnet.org/resources/norms.html", "name": "Data Use and Publication", "type": "Help documentation"}, {"url": "http://www.vertnet.org/resources/georef.html", "name": "Georeferencing", "type": "Help documentation"}, {"url": "http://www.vertnet.org/resources/workshops.html", "name": "Training Workshops", "type": "Training documentation"}, {"url": "https://twitter.com/VertNetOrg", "name": "@VertNetOrg", "type": "Twitter"}], "data-processes": [{"url": "http://portal.vertnet.org/search", "name": "Web Access", "type": "data access"}, {"url": "http://www.vertnet.org/resources/datatoolscode.html#t-tab1", "name": "Download Data", "type": "data release"}], "associated-tools": [{"url": "https://cran.r-project.org/web/packages/rvertnet/index.html", "name": "VertNet Packages (CRAN)"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011058", "name": "re3data:r3d100011058", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000664", "bsg-d000664"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biodiversity", "Life Science"], "domains": ["Geographical location"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: VertNet", "abbreviation": "VertNet", "url": "https://fairsharing.org/10.25504/FAIRsharing.ctdss6", "doi": "10.25504/FAIRsharing.ctdss6", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: VertNet is a NSF-funded collaborative project that makes biodiversity data free and available on the web. VertNet is a tool designed to help people discover, capture, and publish biodiversity data. It is also the core of a collaboration between hundreds of biocollections that contribute biodiversity data and work together to improve it. VertNet is an engine for training current and future professionals to use and build upon best practices in data quality, curation, research, and data publishing.", "publications": [{"id": 1534, "pubmed_id": 20169109, "title": "VertNet: a new model for biodiversity data sharing.", "year": 2010, "url": "http://doi.org/10.1371/journal.pbio.1000309", "authors": "Constable H,Guralnick R,Wieczorek J,Spencer C,Peterson AT", "journal": "PLoS Biol", "doi": "10.1371/journal.pbio.1000309", "created_at": "2021-09-30T08:25:11.752Z", "updated_at": "2021-09-30T08:25:11.752Z"}], "licence-links": [{"licence-name": "VertNet Data Licensing Guide", "licence-id": 841, "link-id": 1598, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2734", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-13T11:20:18.000Z", "updated-at": "2021-12-06T10:47:23.677Z", "metadata": {"name": "Phytozome", "status": "ready", "contacts": [{"contact-name": "David M Goodstein", "contact-email": "dmgoodstein@lbl.gov", "contact-orcid": "0000-0001-6287-2697"}], "homepage": "https://phytozome.jgi.doe.gov/pz/portal.html", "identifier": 2734, "description": "Phytozome, the Plant Comparative Genomics portal of the Department of Energy's Joint Genome Institute, provides JGI users and the broader plant science community a hub for accessing, visualizing and analyzing JGI-sequenced plant genomes, as well as selected genomes and datasets that have been sequenced elsewhere. Search and visualization tools let users quickly find and analyze genes or genomic regions of interest.", "abbreviation": "Phytozome", "support-links": [{"url": "https://phytozome.jgi.doe.gov/pz/portal.html#!news", "name": "Phytozome News", "type": "Blog/News"}, {"url": "jschmutz@hudsonalpha.org", "name": "Jeremy Schmutz", "type": "Support email"}, {"url": "phytozome@jgi-psf.org", "name": "General Contact", "type": "Support email"}, {"url": "https://phytozome.jgi.doe.gov/pz/FAQ.html", "name": "Phytozome FAQs", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://phytozome.jgi.doe.gov/pz/QuickStart.html", "name": "Phytozome Quick Start", "type": "Help documentation"}, {"url": "sympa@lists.lbl.gov", "name": "LBL Mailing list", "type": "Mailing list"}, {"url": "https://phytozome.jgi.doe.gov/pz/portal.html#!releaseNotes", "name": "Phytozome Release Notes", "type": "Help documentation"}], "year-creation": 2011, "data-processes": [{"url": "https://phytozome.jgi.doe.gov/pz/portal.html#!search?show=KEYWORD", "name": "Keyword Search", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/jbrowse/index.html", "name": "JBrowse", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/pz/portal.html#!search?show=BLAST", "name": "BLAST", "type": "data access"}, {"url": "https://phytozome.jgi.doe.gov/phytomine/begin.do", "name": "PhytoMine InterMine Interface", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010850", "name": "re3data:r3d100010850", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006507", "name": "SciCrunch:RRID:SCR_006507", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-001232", "bsg-d001232"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Life Science", "Comparative Genomics"], "domains": ["Genome visualization", "Gene", "Genome"], "taxonomies": ["Viridiplantae"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Phytozome", "abbreviation": "Phytozome", "url": "https://fairsharing.org/fairsharing_records/2734", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Phytozome, the Plant Comparative Genomics portal of the Department of Energy's Joint Genome Institute, provides JGI users and the broader plant science community a hub for accessing, visualizing and analyzing JGI-sequenced plant genomes, as well as selected genomes and datasets that have been sequenced elsewhere. Search and visualization tools let users quickly find and analyze genes or genomic regions of interest.", "publications": [{"id": 2715, "pubmed_id": 22110026, "title": "Phytozome: a comparative platform for green plant genomics.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr944", "authors": "Goodstein DM,Shu S,Howson R,Neupane R,Hayes RD,Fazo J,Mitros T,Dirks W,Hellsten U,Putnam N,Rokhsar DS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr944", "created_at": "2021-09-30T08:27:33.411Z", "updated_at": "2021-09-30T11:29:41.786Z"}], "licence-links": [{"licence-name": "JGI disclaimer", "licence-id": 470, "link-id": 1905, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2581", "type": "fairsharing-records", "attributes": {"created-at": "2018-03-01T20:56:09.000Z", "updated-at": "2021-12-06T10:48:37.176Z", "metadata": {"doi": "10.25504/FAIRsharing.fYFurb", "name": "PeanutBase", "status": "ready", "contacts": [{"contact-name": "Ethalinda Cannon", "contact-email": "ekcannon@iastate.edu", "contact-orcid": "0000-0002-0678-8754"}], "homepage": "https://peanutbase.org/", "identifier": 2581, "description": "Large-scale genomic data for the peanut have only become available in the last few years, with the advent of low-cost sequencing technologies. To make the data accessible to researchers and to integrate across diverse types of data, the International Peanut Genomics Consortium funded the development of PeanutBase. This database provides access to genetic maps and markers, locations of quantitative trait loci (QTLs), genome sequences, gene locations and sequences, gene families and correspondences with genes in other species, and descriptions of traits and growth characteristics. It also provides tools for exploration and analysis, including sequence of genomic and genic sequences, and keyword searches of genes, gene families, and QTL studies. These resources should facilitate breeding advancements in peanut, helping improve crop productivity and there are a variety of resources for peanut research around the web, ranging from tools for basic plant biology to information for growers and various sectors of the peanut industry to resources for plant breeders.", "abbreviation": "PeanutBase", "support-links": [{"url": "https://peanutbase.org/contact", "name": "PeanutBase Contact Form", "type": "Contact form"}, {"url": "https://peanutbase.org/help", "name": "Site Overview and Guide", "type": "Help documentation"}, {"url": "https://peanutbase.org/germplasm", "name": "Germplasm Resources at PeanutBase", "type": "Help documentation"}, {"url": "https://peanutbase.org/traits_maps", "name": "Traits and Maps Related Resources", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://peanutbase.org/submit_data", "name": "Submit Data", "type": "data access"}, {"url": "https://peanutbase.org/data/public", "name": "Data store", "type": "data access"}, {"url": "https://peanutbase.org/browse_search", "name": "Search Tools", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012355", "name": "re3data:r3d100012355", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001064", "bsg-d001064"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Agriculture", "Life Science"], "domains": ["Genetic map", "Genetic marker", "Phenotype", "Quantitative trait loci"], "taxonomies": ["Arachis", "Arachis duranensis", "Arachis hypogaea", "Arachis ipaensis"], "user-defined-tags": ["Marker Assisted Selection", "Plant Phenotypes and Traits"], "countries": ["United States"], "name": "FAIRsharing record for: PeanutBase", "abbreviation": "PeanutBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.fYFurb", "doi": "10.25504/FAIRsharing.fYFurb", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Large-scale genomic data for the peanut have only become available in the last few years, with the advent of low-cost sequencing technologies. To make the data accessible to researchers and to integrate across diverse types of data, the International Peanut Genomics Consortium funded the development of PeanutBase. This database provides access to genetic maps and markers, locations of quantitative trait loci (QTLs), genome sequences, gene locations and sequences, gene families and correspondences with genes in other species, and descriptions of traits and growth characteristics. It also provides tools for exploration and analysis, including sequence of genomic and genic sequences, and keyword searches of genes, gene families, and QTL studies. These resources should facilitate breeding advancements in peanut, helping improve crop productivity and there are a variety of resources for peanut research around the web, ranging from tools for basic plant biology to information for growers and various sectors of the peanut industry to resources for plant breeders.", "publications": [{"id": 1149, "pubmed_id": null, "title": "PeanutBase and Other Bioinformatic Resources for Peanut", "year": 2016, "url": "http://doi.org/10.1016/B978-1-63067-038-2.00008-3", "authors": "Sudhansu Dash, Ethalinda K.S. Cannon, Scott R. Kalberer, Andrew D. Farmer and Steven B. Cannon", "journal": "Chapter 8, In Peanuts Genetics, Processing, and Utilization, edited by H. Thomas Stalker and Richard F. Wilson, AOCS Press, Pages 241-252. (ISBN 9781630670382)", "doi": "10.1016/B978-1-63067-038-2.00008-3", "created_at": "2021-09-30T08:24:27.732Z", "updated_at": "2021-09-30T08:24:27.732Z"}], "licence-links": [{"licence-name": "Fort Lauderdale Principles", "licence-id": 322, "link-id": 818, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3316", "type": "fairsharing-records", "attributes": {"created-at": "2021-06-14T13:24:14.000Z", "updated-at": "2021-11-24T13:18:09.030Z", "metadata": {"name": "Drug Target Commons", "status": "ready", "contacts": [{"contact-name": "Jing Tang", "contact-email": "jing.tang@helsinki.fi", "contact-orcid": "0000-0001-7480-7710"}], "homepage": "http://www.drugtargetcommons.org", "citations": [{"doi": "S2451-9456(17)30426-9", "pubmed-id": 29276046, "publication-id": 1797}], "identifier": 3316, "description": "Drug Target Commons (DTC) is a crowd-sourcing platform to improve the consensus and use of drug-target interactions. The end users can search, view and download bioactivity data using various compound, target and publications identifiers. Expert users may also submit suggestions to edit and upload new bioactivity data, as well as participate in the assay annotation and data curation processes.", "abbreviation": "DTC", "access-points": [{"url": "http://drugtargetcommons.fimm.fi/static/Excell_files/Api_documentation.pdf", "name": "API Documentation (PDF)", "type": "REST"}], "support-links": [{"url": "http://drugtargetcommons.fimm.fi/userguide/", "name": "User Guide", "type": "Help documentation"}, {"url": "http://drugtargetcommons.fimm.fi/glossary/", "name": "Glossary", "type": "Help documentation"}, {"url": "http://drugtargetcommons.fimm.fi/annotation_guidlines/", "name": "Annotation Guidelines", "type": "Help documentation"}, {"url": "http://drugtargetcommons.fimm.fi/static/img/DTC_ER_diagram.png", "name": "Entity Relationship Diagram", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "http://drugtargetcommons.fimm.fi/bulk_import/", "name": "Bulk Import", "type": "data curation"}, {"url": "http://drugtargetcommons.fimm.fi/static/Excell_files/DTC_data.csv", "name": "Download Bioactivity Data", "type": "data release"}, {"url": "http://drugtargetcommons.fimm.fi/static/Excell_files/DTC_dump.tgz", "name": "Download SQL Dump", "type": "data release"}]}, "legacy-ids": ["biodbcore-001831", "bsg-d001831"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Drug Discovery"], "domains": ["Bioactivity"], "taxonomies": ["All"], "user-defined-tags": ["Drug Target"], "countries": ["Finland"], "name": "FAIRsharing record for: Drug Target Commons", "abbreviation": "DTC", "url": "https://fairsharing.org/fairsharing_records/3316", "doi": null, "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: Drug Target Commons (DTC) is a crowd-sourcing platform to improve the consensus and use of drug-target interactions. The end users can search, view and download bioactivity data using various compound, target and publications identifiers. Expert users may also submit suggestions to edit and upload new bioactivity data, as well as participate in the assay annotation and data curation processes.", "publications": [{"id": 1797, "pubmed_id": 29276046, "title": "Drug Target Commons: A Community Effort to Build a Consensus Knowledge Base for Drug-Target Interactions.", "year": 2017, "url": "http://doi.org/S2451-9456(17)30426-9", "authors": "Tang J,Tanoli ZU,Ravikumar B et al.", "journal": "Cell Chem Biol", "doi": "S2451-9456(17)30426-9", "created_at": "2021-09-30T08:25:41.754Z", "updated_at": "2021-09-30T08:25:41.754Z"}, {"id": 1836, "pubmed_id": 30219839, "title": "Drug Target Commons 2.0: a community platform for systematic analysis of drug-target interaction profiles.", "year": 2018, "url": "http://doi.org/10.1093/database/bay083", "authors": "Tanoli Z,Alam Z,Vaha-Koskela M,Ravikumar B,Malyutina A,Jaiswal A,Tang J,Wennerberg K,Aittokallio T", "journal": "Database (Oxford)", "doi": "10.1093/database/bay083", "created_at": "2021-09-30T08:25:46.172Z", "updated_at": "2021-09-30T08:25:46.172Z"}], "licence-links": [{"licence-name": "Various Creative Commons licenses", "licence-id": 838, "link-id": 2143, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2775", "type": "fairsharing-records", "attributes": {"created-at": "2019-05-13T13:42:34.000Z", "updated-at": "2021-11-24T13:15:36.019Z", "metadata": {"doi": "10.25504/FAIRsharing.sFzdV7", "name": "Protein Data Bank in Europe - Knowledge Base", "status": "ready", "contacts": [{"contact-name": "Mihaly Varadi", "contact-email": "mvaradi@ebi.ac.uk"}], "homepage": "http://pdbe-kb.org", "citations": [{"doi": "10.1093/nar/gkz853", "pubmed-id": 31584092, "publication-id": 1453}], "identifier": 2775, "description": "PDBe-KB (Protein Data Bank in Europe - Knowledge Base) is a community-driven resource managed by the PDBe team, collating functional annotations and predictions for structure data in the PDB archive. PDBe-KB is a collaborative effort between PDBe and a diverse group of bioinformatics resources and research teams. The goal of PDBe-KB is two-fold: (i) to increase the visibility and reduce the fragmentation of annotations contributed by specialist data resources, and to make these data more findable, accessible, interoperable and reusable (FAIR) and (ii) to place macromolecular structure data in their biological context, thus facilitating their use by the broader scientific community in fundamental and applied research.", "abbreviation": "PDBe-KB", "access-points": [{"url": "https://www.ebi.ac.uk/pdbe/graph-api/pdbe_doc/", "name": "PDBe API for PDBe-KB", "type": "REST"}], "support-links": [{"url": "pdbehelp@ebi.ac.uk", "name": "PDBe Helpdesk", "type": "Support email"}, {"url": "https://www.ebi.ac.uk/pdbe/pdbe-kb/news", "name": "News", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/pdbe-kb/guidelines", "name": "Collaboration Guidelines", "type": "Help documentation"}, {"url": "https://www.ebi.ac.uk/pdbe/pdbe-kb/partners", "name": "Collaborators", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://www.ebi.ac.uk/pdbe/pdbe-kb/protein", "name": "Search: Aggregated View of Proteins", "type": "data access"}, {"url": "https://www.ebi.ac.uk/pdbe/pdbe-kb/graph-download", "name": "Download", "type": "data release"}]}, "legacy-ids": ["biodbcore-001274", "bsg-d001274"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Bioinformatics", "Structural Biology"], "domains": ["Protein structure", "Protein folding", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Greece", "Czech Republic", "United Kingdom", "Iceland", "Denmark", "Norway", "Belgium", "Italy", "Austria", "Finland", "Sweden", "France", "Netherlands", "Germany", "Lithuania", "Malta", "Portugal", "Luxembourg", "Ireland", "Slovakia", "Croatia", "Spain", "Switzerland", "Montenegro", "Israel", "Hungary"], "name": "FAIRsharing record for: Protein Data Bank in Europe - Knowledge Base", "abbreviation": "PDBe-KB", "url": "https://fairsharing.org/10.25504/FAIRsharing.sFzdV7", "doi": "10.25504/FAIRsharing.sFzdV7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PDBe-KB (Protein Data Bank in Europe - Knowledge Base) is a community-driven resource managed by the PDBe team, collating functional annotations and predictions for structure data in the PDB archive. PDBe-KB is a collaborative effort between PDBe and a diverse group of bioinformatics resources and research teams. The goal of PDBe-KB is two-fold: (i) to increase the visibility and reduce the fragmentation of annotations contributed by specialist data resources, and to make these data more findable, accessible, interoperable and reusable (FAIR) and (ii) to place macromolecular structure data in their biological context, thus facilitating their use by the broader scientific community in fundamental and applied research.", "publications": [{"id": 1178, "pubmed_id": 30445541, "title": "SIFTS: updated Structure Integration with Function, Taxonomy and Sequences resource allows 40-fold increase in coverage of structure-based annotations for proteins.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1114", "authors": "Dana JM,Gutmanas A,Tyagi N,Qi G,O'Donovan C,Martin M,Velankar S", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1114", "created_at": "2021-09-30T08:24:30.972Z", "updated_at": "2021-09-30T11:29:02.267Z"}, {"id": 1453, "pubmed_id": 31584092, "title": "PDBe-KB: a community-driven resource for structural and functional annotations.", "year": 2019, "url": "http://doi.org/10.1093/nar/gkz853", "authors": "PDBe-KB consortium ", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkz853", "created_at": "2021-09-30T08:25:02.392Z", "updated_at": "2021-09-30T11:29:51.378Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 299, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2189", "type": "fairsharing-records", "attributes": {"created-at": "2015-02-16T12:21:44.000Z", "updated-at": "2021-12-06T10:47:53.232Z", "metadata": {"doi": "10.25504/FAIRsharing.327nbg", "name": "Kyoto Encyclopedia of Genes and Genomes", "status": "ready", "contacts": [{"contact-name": "Minoru Kanehisa", "contact-email": "kanehisa@kuicr.kyoto-u.ac.jp", "contact-orcid": "0000-0001-6123-540X"}], "homepage": "http://www.genome.jp/kegg/", "identifier": 2189, "description": "KEGG is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", "abbreviation": "KEGG", "access-points": [{"url": "http://www.kegg.jp/kegg/rest/keggapi.html", "name": "REST-style KEGG API", "type": "REST"}], "support-links": [{"url": "http://www.kegg.jp/feedback/", "type": "Contact form"}, {"url": "http://www.kegg.jp/kegg/document/help_kegg_search.html", "type": "Help documentation"}], "year-creation": 1995, "data-processes": [{"url": "http://www.kegg.jp/kegg/kegg1d.html", "name": "Browse", "type": "data access"}, {"url": "http://www.kegg.jp/kegg/download/", "name": "FTP", "type": "data access"}], "associated-tools": [{"url": "http://www.kegg.jp/kegg/download/kegtools.html", "name": "KegHier 1.1.1"}, {"url": "http://www.kegg.jp/kegg/download/kegtools.html", "name": "KegArray 1.2.4"}, {"url": "http://www.kegg.jp/kegg/download/kegtools.html", "name": "KegDraw 0.1.14beta"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011570", "name": "re3data:r3d100011570", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_001120", "name": "SciCrunch:RRID:SCR_001120", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000663", "bsg-d000663"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Molecular biology", "Virology", "Life Science", "Epidemiology", "Systems Biology"], "domains": ["Molecular interaction", "RNA sequencing", "Genome"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Japan"], "name": "FAIRsharing record for: Kyoto Encyclopedia of Genes and Genomes", "abbreviation": "KEGG", "url": "https://fairsharing.org/10.25504/FAIRsharing.327nbg", "doi": "10.25504/FAIRsharing.327nbg", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: KEGG is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", "publications": [{"id": 635, "pubmed_id": 24214961, "title": "Data, information, knowledge and principle: back to metabolism in KEGG", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1076", "authors": "Kanehisa M, Goto S, Sato Y, Kawashima M, Furumichi M, Tanabe M.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkt1076", "created_at": "2021-09-30T08:23:29.910Z", "updated_at": "2021-09-30T08:23:29.910Z"}, {"id": 713, "pubmed_id": 22700311, "title": "Using the KEGG database resource", "year": 2012, "url": "http://doi.org/10.1002/0471250953.bi0112s38", "authors": "Tanabe M, Kanehisa M.", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0112s38", "created_at": "2021-09-30T08:23:38.586Z", "updated_at": "2021-09-30T08:23:38.586Z"}, {"id": 715, "pubmed_id": 22080510, "title": "KEGG for integration and interpretation of large-scale molecular data sets", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr988", "authors": "Kanehisa M1, Goto S, Sato Y, Furumichi M, Tanabe M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr988", "created_at": "2021-09-30T08:23:38.809Z", "updated_at": "2021-09-30T11:28:41.264Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1683", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:09.435Z", "metadata": {"doi": "10.25504/FAIRsharing.8jsya3", "name": "PomBase", "status": "ready", "contacts": [{"contact-name": "PomBase Helpdesk", "contact-email": "helpdesk@pombase.org"}], "homepage": "http://www.pombase.org", "identifier": 1683, "description": "PomBase is a model organism database that provides organization of and access to scientific data for the fission yeast Schizosaccharomyces pombe. PomBase supports genomic sequence and features, genome-wide datasets and manual literature curation as well as providing structural and functional annotation and access to large-scale data sets.", "abbreviation": "PomBase", "support-links": [{"url": "http://www.pombase.org/feedback", "type": "Contact form"}, {"url": "http://www.pombase.org/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.pombase.org/submit-data/help-desk-for", "type": "Help documentation"}, {"url": "http://listserver.ebi.ac.uk/mailman/listinfo/pombelist", "name": "Pombelist mailing list", "type": "Mailing list"}, {"url": "http://www.pombase.org/documentation", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/PomBase", "type": "Wikipedia"}], "year-creation": 2010, "data-processes": [{"url": "https://www.pombase.org/status/sequencing-updates", "name": "versioning by genome sequence update", "type": "data versioning"}, {"url": "https://www.pombase.org", "name": "daily updates", "type": "data versioning"}, {"url": "https://www.pombase.org", "name": "web interface", "type": "data access"}, {"url": "http://curation.pombase.org/dumps/releases/", "name": "Monthly Chado database dumps (PostgresQL) are available to download", "type": "data access"}, {"url": "http://curation.pombase.org/dumps/releases/", "name": "Monthly Chado database dumps (PostgresQL) are available to download", "type": "data versioning"}, {"url": "https://www.pombase.org/about/version-history", "name": "Historical data versions September 2012 - January 2017", "type": "data versioning"}], "associated-tools": [{"url": "http://genomebrowser.pombase.org/Multi/blastview", "name": "BLAST"}, {"url": "http://curation.pombase.org/pombe/", "name": "Canto - Community annotation tool"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011478", "name": "re3data:r3d100011478", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006586", "name": "SciCrunch:RRID:SCR_006586", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000139", "bsg-d000139"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Citation", "Protein domain", "Gene name", "Expression data", "DNA sequence data", "Gene Ontology enrichment", "Model organism", "Centromere", "Protein modification", "Cellular localization", "Curated information", "Phenotype", "Orthologous", "Literature curation"], "taxonomies": ["Schizosaccharomyces pombe"], "user-defined-tags": [], "countries": ["United Kingdom"], "name": "FAIRsharing record for: PomBase", "abbreviation": "PomBase", "url": "https://fairsharing.org/10.25504/FAIRsharing.8jsya3", "doi": "10.25504/FAIRsharing.8jsya3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: PomBase is a model organism database that provides organization of and access to scientific data for the fission yeast Schizosaccharomyces pombe. PomBase supports genomic sequence and features, genome-wide datasets and manual literature curation as well as providing structural and functional annotation and access to large-scale data sets.", "publications": [{"id": 192, "pubmed_id": 22039153, "title": "PomBase: a comprehensive online resource for fission yeast.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr853", "authors": "Wood V., Harris MA., McDowall MD., Rutherford K., Vaughan BW., Staines DM., Aslett M., Lock A., B\u00e4hler J., Kersey PJ., Oliver SG.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr853", "created_at": "2021-09-30T08:22:41.023Z", "updated_at": "2021-09-30T08:22:41.023Z"}, {"id": 1034, "pubmed_id": 22102568, "title": "The Gene Ontology: enhancements for 2011.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1028", "authors": "The Gene Ontology Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1028", "created_at": "2021-09-30T08:24:14.488Z", "updated_at": "2021-09-30T11:28:57.193Z"}, {"id": 1134, "pubmed_id": 23658422, "title": "FYPO: the fission yeast phenotype ontology.", "year": 2013, "url": "http://doi.org/10.1093/bioinformatics/btt266", "authors": "Harris MA,Lock A,Bahler J,Oliver SG,Wood V", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btt266", "created_at": "2021-09-30T08:24:25.823Z", "updated_at": "2021-09-30T08:24:25.823Z"}, {"id": 2055, "pubmed_id": 25361970, "title": "PomBase 2015: updates to the fission yeast database.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1040", "authors": "McDowall MD,Harris MA,Lock A,Rutherford K,Staines DM,Bahler J,Kersey PJ,Oliver SG,Wood V", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1040", "created_at": "2021-09-30T08:26:11.564Z", "updated_at": "2021-09-30T11:29:27.613Z"}, {"id": 2056, "pubmed_id": 24574118, "title": "Canto: an online tool for community literature curation.", "year": 2014, "url": "http://doi.org/10.1093/bioinformatics/btu103", "authors": "Rutherford KM,Harris MA,Lock A,Oliver SG,Wood V", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/btu103", "created_at": "2021-09-30T08:26:11.715Z", "updated_at": "2021-09-30T08:26:11.715Z"}, {"id": 2057, "pubmed_id": 24885854, "title": "A method for increasing expressivity of Gene Ontology annotations using a compositional approach.", "year": 2014, "url": "http://doi.org/10.1186/1471-2105-15-155", "authors": "Huntley RP,Harris MA,Alam-Faruque Y,Blake JA,Carbon S,Dietze H,Dimmer EC,Foulger RE,Hill DP,Khodiyar VK,Lock A,Lomax J,Lovering RC,Mutowo-Meullenet P,Sawford T,Van Auken K,Wood V,Mungall CJ", "journal": "BMC Bioinformatics", "doi": "10.1186/1471-2105-15-155", "created_at": "2021-09-30T08:26:11.815Z", "updated_at": "2021-09-30T08:26:11.815Z"}, {"id": 2167, "pubmed_id": 23161678, "title": "Gene Ontology annotations and resources.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1050", "authors": "Blake JA,Dolan M,Drabkin H,Hill DP,Li N,Sitnikov D,Bridges S,Burgess S,Buza T,McCarthy F,Peddinti D,Pillai L,Carbon S,Dietze H,Ireland A,Lewis SE,Mungall CJ,Gaudet P,Chrisholm RL,Fey P,Kibbe WA,Basu S,Siegele DA,McIntosh BK,Renfro DP,Zweifel AE,Hu JC,Brown NH,Tweedie S,Alam-Faruque Y,Apweiler R,Auchinchloss A,Axelsen K,Bely B,Blatter M-,Bonilla C,Bouguerleret L,Boutet E,Breuza L,Bridge A,Chan WM,Chavali G,Coudert E,Dimmer E,Estreicher A,Famiglietti L,Feuermann M,Gos A,Gruaz-Gumowski N,Hieta R,Hinz C,Hulo C,Huntley R,James J,Jungo F,Keller G,Laiho K,Legge D,Lemercier P,Lieberherr D,Magrane M,Martin MJ,Masson P,Mutowo-Muellenet P,O'Donovan C,Pedruzzi I,Pichler K,Poggioli D,Porras Millan P,Poux S,Rivoire C,Roechert B,Sawford T,Schneider M,Stutz A,Sundaram S,Tognolli M,Xenarios I,Foulgar R,Lomax J,Roncaglia P,Khodiyar VK,Lovering RC,Talmud PJ,Chibucos M,Giglio MG,Chang H-,Hunter S,McAnulla C,Mitchell A,Sangrador A,Stephan R,Harris MA,Oliver SG,Rutherford K,Wood V,Bahler J,Lock A,Kersey PJ,McDowall DM,Staines DM,Dwinell M,Shimoyama M,Laulederkind S,Hayman T,Wang S-,Petri V,Lowry T,D'Eustachio P,Matthews L,Balakrishnan R,Binkley G,Cherry JM,Costanzo MC,Dwight SS,Engel SR,Fisk DG,Hitz BC,Hong EL,Karra K,Miyasato SR,Nash RS,Park J,Skrzypek MS,Weng S,Wong ED,Berardini TZ,Huala E,Mi H,Thomas PD,Chan J,Kishore R,Sternberg P,Van Auken K,Howe D,Westerfield M", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1050", "created_at": "2021-09-30T08:26:24.239Z", "updated_at": "2021-09-30T11:29:30.513Z"}, {"id": 2214, "pubmed_id": 27334346, "title": "Model organism databases: essential resources that need the support of both funders and users.", "year": 2016, "url": "http://doi.org/10.1186/s12915-016-0276-z", "authors": "Oliver SG,Lock A,Harris MA,Nurse P,Wood V", "journal": "BMC Biol", "doi": "10.1186/s12915-016-0276-z", "created_at": "2021-09-30T08:26:29.542Z", "updated_at": "2021-09-30T08:26:29.542Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 204, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1832", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:10.222Z", "metadata": {"doi": "10.25504/FAIRsharing.e4n3an", "name": "Information system for G protein-coupled receptors", "status": "ready", "contacts": [{"contact-name": "David Gloriam", "contact-email": "david.gloriam@sund.ku.dk", "contact-orcid": "0000-0002-4299-7561"}], "homepage": "http://gpcrdb.org/", "citations": [{"doi": "10.1093/nar/gkaa1080", "pubmed-id": 33270898, "publication-id": 103}], "identifier": 1832, "description": "The GPCRDB is a molecular-class information system that collects, combines, validates and stores large amounts of heterogenous data on G protein-coupled receptors (GPCRs). The GPCRDB contains data on sequences, ligand binding constants and mutations. In addition, many different types of computationally derived data are stored such as multiple sequence alignments and homology models.", "abbreviation": "GPCRdb", "access-points": [{"url": "https://gpcrdb.org/services/reference/", "name": "API reference", "type": "REST"}], "support-links": [{"url": "info@gpcrdb.org", "name": "General GPCRdb contact address", "type": "Support email"}, {"url": "http://docs.gpcrdb.org/index.html", "name": "GPCRdb documentation and help pages", "type": "Help documentation"}, {"url": "https://www.youtube.com/channel/UCy_OEfBkOdshK9Tsl08nvAw", "name": "GPCRdb YouTube channel with updates and demonstrations", "type": "Video"}], "year-creation": 1997, "data-processes": [{"url": "http://gpcrdb.org/protein/", "name": "search", "type": "data access"}, {"url": "https://github.com/protwis/gpcrdb_data/", "name": "Repository for GPCRdb data", "type": "data release"}, {"url": "https://github.com/protwis/protwis/", "name": "Source code for GPCRdb platform", "type": "data release"}], "associated-tools": [{"url": "http://gpcrdb.org/alignment/blastsearch", "name": "blast"}, {"url": "https://gpcrdb.org/construct/design", "name": "Construct Design Tool"}]}, "legacy-ids": ["biodbcore-000292", "bsg-d000292"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Protein structure", "Structure-based sequence alignment", "Drug", "Bioactivity", "Mutation", "Small molecule", "Sequence alignment", "Protein", "Single nucleotide polymorphism", "Homologous", "Orthologous"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Denmark", "Netherlands"], "name": "FAIRsharing record for: Information system for G protein-coupled receptors", "abbreviation": "GPCRdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.e4n3an", "doi": "10.25504/FAIRsharing.e4n3an", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GPCRDB is a molecular-class information system that collects, combines, validates and stores large amounts of heterogenous data on G protein-coupled receptors (GPCRs). The GPCRDB contains data on sequences, ligand binding constants and mutations. In addition, many different types of computationally derived data are stored such as multiple sequence alignments and homology models.", "publications": [{"id": 103, "pubmed_id": 33270898, "title": "GPCRdb in 2021: integrating GPCR sequence, structure and function.", "year": 2020, "url": "http://doi.org/10.1093/nar/gkaa1080", "authors": "Kooistra AJ,Mordalski S,Pandy-Szekeres G,Esguerra M,Mamyrbekov A,Munk C,Keseru GM,Gloriam DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkaa1080", "created_at": "2021-09-30T08:22:31.494Z", "updated_at": "2021-09-30T11:28:42.733Z"}, {"id": 337, "pubmed_id": 21045054, "title": "GPCRDB: information system for G protein-coupled receptors.", "year": 2010, "url": "http://doi.org/10.1093/nar/gkq1009", "authors": "Vroling B., Sanders M., Baakman C., Borrmann A., Verhoeven S., Klomp J., Oliveira L., de Vlieg J., Vriend G.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkq1009", "created_at": "2021-09-30T08:22:56.275Z", "updated_at": "2021-09-30T08:22:56.275Z"}, {"id": 1621, "pubmed_id": 9399852, "title": "GPCRDB: an information system for G protein-coupled receptors.", "year": 1998, "url": "http://doi.org/10.1093/nar/26.1.275", "authors": "Horn F,Weare J,Beukers MW,Horsch S,Bairoch A,Chen W,Edvardsen O,Campagne F,Vriend G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/26.1.275", "created_at": "2021-09-30T08:25:21.666Z", "updated_at": "2021-09-30T11:29:16.530Z"}, {"id": 1623, "pubmed_id": 12520006, "title": "GPCRDB information system for G protein-coupled receptors.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkg103", "authors": "Horn F,Bettler E,Oliveira L,Campagne F,Cohen FE,Vriend G", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkg103", "created_at": "2021-09-30T08:25:21.934Z", "updated_at": "2021-09-30T11:29:16.630Z"}, {"id": 1632, "pubmed_id": 24304901, "title": "GPCRDB: an information system for G protein-coupled receptors.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1255", "authors": "Isberg V,Vroling B,van der Kant R,Li K,Vriend G,Gloriam D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1255", "created_at": "2021-09-30T08:25:22.860Z", "updated_at": "2021-09-30T11:29:17.218Z"}, {"id": 2883, "pubmed_id": 26582914, "title": "GPCRdb: an information system for G protein-coupled receptors.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1178", "authors": "Isberg V,Mordalski S,Munk C,Rataj K,Harpsoe K,Hauser AS,Vroling B,Bojarski AJ,Vriend G,Gloriam DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1178", "created_at": "2021-09-30T08:27:54.913Z", "updated_at": "2021-09-30T11:29:48.037Z"}, {"id": 2884, "pubmed_id": 27155948, "title": "GPCRdb: the G protein-coupled receptor database - an introduction.", "year": 2016, "url": "http://doi.org/10.1111/bph.13509", "authors": "Munk C,Isberg V,Mordalski S,Harpsoe K,Rataj K,Hauser AS,Kolb P,Bojarski AJ,Vriend G,Gloriam DE", "journal": "Br J Pharmacol", "doi": "10.1111/bph.13509", "created_at": "2021-09-30T08:27:55.031Z", "updated_at": "2021-09-30T08:27:55.031Z"}, {"id": 2885, "pubmed_id": 29155946, "title": "GPCRdb in 2018: adding GPCR structure models and ligands.", "year": 2017, "url": "http://doi.org/10.1093/nar/gkx1109", "authors": "Pandy-Szekeres G,Munk C,Tsonkov TM,Mordalski S,Harpsoe K,Hauser AS,Bojarski AJ,Gloriam DE", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkx1109", "created_at": "2021-09-30T08:27:55.147Z", "updated_at": "2021-09-30T11:29:48.137Z"}], "licence-links": [{"licence-name": "Apache License 2.0", "licence-id": 35, "link-id": 2098, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2031", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:08.231Z", "metadata": {"doi": "10.25504/FAIRsharing.rs2815", "name": "Protein Data Bank Japan", "status": "ready", "contacts": [{"contact-name": "Haruki Nakamura", "contact-email": "harukin@protein.osaka-u.ac.jp", "contact-orcid": "0000-0001-6690-5863"}], "homepage": "http://www.pdbj.org/", "identifier": 2031, "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", "support-links": [{"url": "http://pdbj.org/#!contact?tab=PDBjmaster", "type": "Contact form"}, {"url": "http://pdbj.org/#!help?PID=5", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://pdbj.org/help/", "type": "Help documentation"}, {"url": "https://twitter.com/PDBj_en", "type": "Twitter"}], "year-creation": 2011, "data-processes": [{"url": "http://pdbj.org/#!showBlogPost?PID=8", "name": "Download", "type": "data access"}, {"url": "http://pdbj.org/#!advancedSearch", "name": "Advanced search", "type": "data access"}, {"url": "http://pdbj.org/#!mine", "name": "search", "type": "data access"}], "associated-tools": [{"url": "http://sysimm.ifrec.osaka-u.ac.jp/ash_service/", "name": "ASH"}, {"url": "http://pdbj.org/emnavi/viewtop.php", "name": "Yorodumi"}, {"url": "http://sysimm.ifrec.osaka-u.ac.jp/MAFFTash/", "name": "MAFFTash 4.1"}, {"url": "http://bmrbdep.pdbj.org/en/nmrtoolbox/", "name": "NMR Tool Box"}, {"url": "http://pdbj.org/gmfit/", "name": "Pairwise gmfit"}, {"url": "http://pdbj.org/crnpred/", "name": "CRNPRED"}, {"url": "http://pdbj.org/spanner/", "name": "Spanner"}, {"url": "https://sysimm.ifrec.osaka-u.ac.jp/pipeline7/", "name": "SFAS"}, {"url": "http://homcos.pdbj.org/?LANG=en", "name": "HOMCOS"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010910", "name": "re3data:r3d100010910", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008912", "name": "SciCrunch:RRID:SCR_008912", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000498", "bsg-d000498"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Proteomics", "Virology", "Life Science", "Epidemiology"], "domains": ["Molecular structure", "Function analysis", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["Japan"], "name": "FAIRsharing record for: Protein Data Bank Japan", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.rs2815", "doi": "10.25504/FAIRsharing.rs2815", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", "publications": [{"id": 915, "pubmed_id": 28815765, "title": "New tools and functions in data-out activities at Protein Data Bank Japan (PDBj).", "year": 2017, "url": "http://doi.org/10.1002/pro.3273", "authors": "Kinjo AR,Bekker GJ,Wako H,Endo S,Tsuchiya Y,Sato H,Nishi H,Kinoshita K,Suzuki H,Kawabata T,Yokochi M,Iwata T,Kobayashi N,Fujiwara T,Kurisu G,Nakamura H", "journal": "Protein Sci", "doi": "10.1002/pro.3273", "created_at": "2021-09-30T08:24:01.046Z", "updated_at": "2021-09-30T08:24:01.046Z"}, {"id": 1350, "pubmed_id": 21976737, "title": "Protein Data Bank Japan (PDBj): maintaining a structural data archive and resource description framework format.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr811", "authors": "Kinjo AR., Suzuki H., Yamashita R., Ikegawa Y., Kudou T., Igarashi R., Kengaku Y., Cho H., Standley DM., Nakagawa A., Nakamura H.,", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr811", "created_at": "2021-09-30T08:24:51.067Z", "updated_at": "2021-09-30T08:24:51.067Z"}, {"id": 2913, "pubmed_id": 12099029, "title": "[Development of PDBj: Advanced database for protein structures].", "year": 2002, "url": "https://www.ncbi.nlm.nih.gov/pubmed/12099029", "authors": "Nakamura H,Ito N,Kusunoki M", "journal": "Tanpakushitsu Kakusan Koso", "doi": null, "created_at": "2021-09-30T08:27:58.798Z", "updated_at": "2021-09-30T08:27:58.798Z"}, {"id": 2914, "pubmed_id": 20798081, "title": "PDBj Mine: design and implementation of relational database interface for Protein Data Bank Japan.", "year": 2010, "url": "http://doi.org/10.1093/database/baq021", "authors": "Kinjo AR,Yamashita R,Nakamura H", "journal": "Database (Oxford)", "doi": "10.1093/database/baq021", "created_at": "2021-09-30T08:27:58.907Z", "updated_at": "2021-09-30T08:27:58.907Z"}, {"id": 2915, "pubmed_id": 21796434, "title": "Protein Data Bank Japan (PDBj): an interview with Haruki Nakamura of Osaka University by Wendy A. Warr.", "year": 2011, "url": "http://doi.org/10.1007/s10822-011-9460-y", "authors": "Nakamura H", "journal": "J Comput Aided Mol Des", "doi": "10.1007/s10822-011-9460-y", "created_at": "2021-09-30T08:27:59.016Z", "updated_at": "2021-09-30T08:27:59.016Z"}, {"id": 2916, "pubmed_id": 27789697, "title": "Protein Data Bank Japan (PDBj): updated user interfaces, resource description framework, analysis tools for large structures.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw962", "authors": "Kinjo AR,Bekker GJ,Suzuki H,Tsuchiya Y,Kawabata T,Ikegawa Y,Nakamura H", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw962", "created_at": "2021-09-30T08:27:59.122Z", "updated_at": "2021-09-30T11:29:48.770Z"}], "licence-links": [{"licence-name": "PDBJ Attribution required", "licence-id": 652, "link-id": 2424, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 2425, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2647", "type": "fairsharing-records", "attributes": {"created-at": "2018-08-07T09:42:43.000Z", "updated-at": "2022-02-08T10:38:44.727Z", "metadata": {"doi": "10.25504/FAIRsharing.84c1a7", "name": "LNCipedia", "status": "ready", "contacts": [{"contact-name": "Pieter Mestdagh", "contact-email": "Pieter.Mestdagh@UGent.be"}], "homepage": "https://lncipedia.org/", "identifier": 2647, "description": "LNCipedia is a database for human long non-coding RNA (lncRNA) transcripts and genes. In addition to basic transcript information and gene structure, several statistics are determined for each entry in the database, such as secondary structure information, protein coding potential and microRNA binding sites. Available literature on specific lncRNAs is linked, and users or authors can submit articles through a web interface. LNCipedia is publicly available and allows users to query and download lncRNA sequences and structures based on different search criteria.", "abbreviation": "LNCipedia", "access-points": [{"url": "https://lncipedia.org/api", "name": "REST API (Beta)", "type": "REST"}], "support-links": [{"url": "https://lncipedia.org/contact", "type": "Contact form"}, {"url": "https://lncipedia.org/info", "name": "Infos", "type": "Help documentation"}], "year-creation": 2012, "data-processes": [{"url": "https://lncipedia.org/submit", "name": "submit transcript", "type": "data curation"}, {"url": "https://lncipedia.org/submit/reference", "name": "submit reference", "type": "data curation"}, {"url": "https://lncipedia.org/download", "name": "download", "type": "data access"}, {"url": "https://lncipedia.org/", "name": "search", "type": "data access"}, {"url": "https://lncipedia.org/admin/register", "name": "register", "type": "data access"}, {"url": "https://lncipedia.org/db/search?search_id=", "name": "browse", "type": "data access"}]}, "legacy-ids": ["biodbcore-001138", "bsg-d001138"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Long non-coding ribonucleic acid", "Micro RNA (miRNA) target site", "Long non-coding RNA"], "taxonomies": ["Homo sapiens"], "user-defined-tags": [], "countries": ["Belgium"], "name": "FAIRsharing record for: LNCipedia", "abbreviation": "LNCipedia", "url": "https://fairsharing.org/10.25504/FAIRsharing.84c1a7", "doi": "10.25504/FAIRsharing.84c1a7", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: LNCipedia is a database for human long non-coding RNA (lncRNA) transcripts and genes. In addition to basic transcript information and gene structure, several statistics are determined for each entry in the database, such as secondary structure information, protein coding potential and microRNA binding sites. Available literature on specific lncRNAs is linked, and users or authors can submit articles through a web interface. LNCipedia is publicly available and allows users to query and download lncRNA sequences and structures based on different search criteria.", "publications": [{"id": 2129, "pubmed_id": 25378313, "title": "An update on LNCipedia: a database for annotated human lncRNA sequences.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1060", "authors": "Volders PJ,Verheggen K,Menschaert G,Vandepoele K,Martens L,Vandesompele J,Mestdagh P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1060", "created_at": "2021-09-30T08:26:20.115Z", "updated_at": "2021-09-30T11:29:29.761Z"}, {"id": 2130, "pubmed_id": 25829178, "title": "An update on LNCipedia: a database for annotated human lncRNA sequences.", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv295", "authors": "Volders PJ,Verheggen K,Menschaert G,Vandepoele K,Martens L,Vandesompele J,Mestdagh P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv295", "created_at": "2021-09-30T08:26:20.213Z", "updated_at": "2021-09-30T11:29:29.902Z"}, {"id": 2154, "pubmed_id": 23042674, "title": "LNCipedia: a database for annotated human lncRNA transcript sequences and structures.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks915", "authors": "Volders PJ,Helsens K,Wang X,Menten B,Martens L,Gevaert K,Vandesompele J,Mestdagh P", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks915", "created_at": "2021-09-30T08:26:22.814Z", "updated_at": "2021-09-30T11:29:30.136Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1948", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:17.165Z", "metadata": {"doi": "10.25504/FAIRsharing.aq280w", "name": "Maize Genetics and Genomics Database", "status": "ready", "contacts": [{"contact-name": "Carson Andorf", "contact-email": "carson.andorf@ars.usda.gov"}], "homepage": "https://www.maizegdb.org", "citations": [{"doi": "10.1093/nar/gky1046", "pubmed-id": 30407532, "publication-id": 2975}], "identifier": 1948, "description": "MaizeGDB is the maize research community's central repository for genetics and genomics information.", "abbreviation": "MaizeGDB", "support-links": [{"url": "https://maizegdb.org/contact", "type": "Contact form"}, {"url": "http://www.maizegdb.org/faq.php", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://outreach.maizegdb.org", "type": "Training documentation"}], "year-creation": 2003, "data-processes": [{"url": "https://download.maizegdb.org", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "https://blast.maizegdb.org", "name": "BLAST"}, {"url": "https://corncyc-b73-v4.maizegdb.org", "name": "CornCyc"}, {"url": "https://www.maizegdb.org/snpversity", "name": "SNPversity"}, {"url": "https://maizegdb.org/gbrowse", "name": "Genome browser - GBrowse"}, {"url": "https://qteller.maizegdb.org/", "name": "qTeller"}, {"url": "https://jbrowse.maizegdb.org", "name": "Genome Browser - JBrowse"}, {"url": "https://maizegdb.org/breeders_toolbox", "name": "Pedigree Viewer"}, {"url": "https://genomeqc.maizegdb.org", "name": "GenomeQC"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010795", "name": "re3data:r3d100010795", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006600", "name": "SciCrunch:RRID:SCR_006600", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000414", "bsg-d000414"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Genetics", "Life Science"], "domains": ["Cytogenetic map", "Expression data", "Deoxyribonucleic acid", "Genetic polymorphism", "Phenotype", "Pathway model", "Genome", "Germplasm"], "taxonomies": ["Zea mays"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Maize Genetics and Genomics Database", "abbreviation": "MaizeGDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.aq280w", "doi": "10.25504/FAIRsharing.aq280w", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MaizeGDB is the maize research community's central repository for genetics and genomics information.", "publications": [{"id": 1411, "pubmed_id": 18769488, "title": "MaizeGDB: The maize model organism database for basic, translational, and applied research.", "year": 2008, "url": "http://doi.org/10.1155/2008/496957", "authors": "Lawrence CJ., Harper LC., Schaeffer ML., Sen TZ., Seigfried TE., Campbell DA.,", "journal": "Int J Plant Genomics", "doi": "10.1155/2008/496957", "created_at": "2021-09-30T08:24:57.719Z", "updated_at": "2021-09-30T08:24:57.719Z"}, {"id": 2924, "pubmed_id": 26519406, "title": "MaizeGDB: The Maize Genetics and Genomics Database", "year": 2015, "url": "http://doi.org/10.1007/978-1-4939-3167-5_9", "authors": "Harper L, Gardiner J, Andorf C, Lawrence CJ.", "journal": "Methods Mol Biol.", "doi": "10.1007/978-1-4939-3167-5_9", "created_at": "2021-09-30T08:28:00.114Z", "updated_at": "2021-09-30T08:28:00.114Z"}, {"id": 2925, "pubmed_id": 26432828, "title": "MaizeGDB update: new tools, data and interface for the maize model organism database", "year": 2015, "url": "http://doi.org/10.1093/nar/gkv1007", "authors": "Andorf CM, Cannon EK, Portwood JL 2nd, Gardiner JM, Harper LC, Schaeffer ML, Braun BL, Campbell DA, Vinnakota AG, Sribalusu VV, Huerta M, Cho KT, Wimalanathan K, Richter JD, Mauch ED, Rao BS, Birkett SM, Sen TZ, Lawrence-Dill CJ.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkv1007", "created_at": "2021-09-30T08:28:00.230Z", "updated_at": "2021-09-30T11:29:49.105Z"}, {"id": 2926, "pubmed_id": 31555312, "title": "MaizeDIG: Maize Database of Images and Genomes.", "year": 2019, "url": "http://doi.org/10.3389/fpls.2019.01050", "authors": "Cho KT, Portwood JL 2nd, Gardiner JM, Harper LC, Lawrence-Dill CJ, Friedberg I, Andorf CM", "journal": "Frontiers in Plant Science", "doi": "10.3389/fpls.2019.01050", "created_at": "2021-09-30T08:28:00.347Z", "updated_at": "2021-09-30T08:28:00.347Z"}, {"id": 2975, "pubmed_id": 30407532, "title": "MaizeGDB 2018: the maize multi-genome genetics and genomics database", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1046", "authors": "Portwood JL II, Woodhouse MR, Cannon EK, Gardiner JM, Harper LC, Schaeffer ML, Walsh JR, Sen TZ, Cho KT, Schott DA, Braun BL, Dietze M, Dunfee B, Elsik CG, Manchanda N, Coe E, Sachs M, Stinard P, Tolbert J, Zimmerman S, Andorf CM.", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1046", "created_at": "2021-09-30T08:28:06.583Z", "updated_at": "2021-09-30T08:28:06.583Z"}], "licence-links": [{"licence-name": "MaizeGDB Attribution required", "licence-id": 501, "link-id": 519, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2519", "type": "fairsharing-records", "attributes": {"created-at": "2017-10-05T13:47:35.000Z", "updated-at": "2021-11-24T13:17:18.744Z", "metadata": {"doi": "10.25504/FAIRsharing.re1278", "name": "Omics Discovery Index", "status": "ready", "contacts": [{"contact-name": "Dr Yasset Perez-Riverol", "contact-email": "yperez@ebi.ac.uk"}], "homepage": "http://www.omicsdi.org/home", "citations": [{"doi": "10.1038/nbt.3790", "pubmed-id": 28486464, "publication-id": 233}], "identifier": 2519, "description": "The Omics Discovery Index (OmicsDI) provides dataset discovery across a heterogeneous, distributed group of Transcriptomics, Genomics, Proteomics and Metabolomics data resources, including both open and controlled access data resources. The resource provides a short description of every dataset, including accession, description, sample/data protocols biological evidences, and publication. Based on these metadata, OmicsDI provides extensive search capabilities, as well as identification of related datasets by metadata and data content where possible. In particular, OmicsDI identifies groups of related, multi-omics datasets across repositories by shared identifiers.", "abbreviation": "OmicsDI", "access-points": [{"url": "http://blog.omicsdi.org/post/introduction-api/", "name": "API Documentation", "type": "REST"}, {"url": "https://www.omicsdi.org/ws/", "name": "API Access", "type": "REST"}], "support-links": [{"url": "http://blog.omicsdi.org", "name": "OmicsDI Blog", "type": "Blog/News"}, {"url": "omicsdi-support@ebi.ac.uk", "name": "OmicsDI Support", "type": "Support email"}, {"url": "https://github.com/OmicsDI", "name": "Github Page", "type": "Github"}, {"url": "https://twitter.com/OmicsDI", "name": "@OmicsDI", "type": "Twitter"}], "year-creation": 2017, "data-processes": [{"url": "https://www.ebi.ac.uk/biostudies/", "name": "Submit", "type": "data curation"}, {"url": "https://www.omicsdi.org/search", "name": "Browse / Search", "type": "data access"}]}, "legacy-ids": ["biodbcore-001002", "bsg-d001002"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Data Integration", "Genomics", "Proteomics", "Life Science", "Metabolomics", "Transcriptomics"], "domains": ["Data identity and mapping"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China", "United Kingdom", "European Union"], "name": "FAIRsharing record for: Omics Discovery Index", "abbreviation": "OmicsDI", "url": "https://fairsharing.org/10.25504/FAIRsharing.re1278", "doi": "10.25504/FAIRsharing.re1278", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Omics Discovery Index (OmicsDI) provides dataset discovery across a heterogeneous, distributed group of Transcriptomics, Genomics, Proteomics and Metabolomics data resources, including both open and controlled access data resources. The resource provides a short description of every dataset, including accession, description, sample/data protocols biological evidences, and publication. Based on these metadata, OmicsDI provides extensive search capabilities, as well as identification of related datasets by metadata and data content where possible. In particular, OmicsDI identifies groups of related, multi-omics datasets across repositories by shared identifiers.", "publications": [{"id": 233, "pubmed_id": 28486464, "title": "Discovering and linking public omics data sets using the Omics Discovery Index.", "year": 2017, "url": "http://doi.org/10.1038/nbt.3790", "authors": "Perez-Riverol Y,Bai M,da Veiga Leprevost F,Squizzato S,Park YM,Haug K,Carroll AJ,Spalding D,Paschall J,Wang M,Del-Toro N,Ternent T,Zhang P,Buso N,Bandeira N,Deutsch EW,Campbell DS,Beavis RC,Salek RM,Sarkans U,Petryszak R,Keays M,Fahy E,Sud M,Subramaniam S,Barbera A,Jimenez RC,Nesvizhskii AI,Sansone SA,Steinbeck C,Lopez R,Vizcaino JA,Ping P,Hermjakob H", "journal": "Nat Biotechnol", "doi": "10.1038/nbt.3790", "created_at": "2021-09-30T08:22:45.133Z", "updated_at": "2021-09-30T08:22:45.133Z"}], "licence-links": [{"licence-name": "EMBL-EBI Terms of Use", "licence-id": 273, "link-id": 707, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2020", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:18.909Z", "metadata": {"doi": "10.25504/FAIRsharing.t5ha5j", "name": "Cell Centered Database", "status": "deprecated", "contacts": [{"contact-name": "CCDB Webmaster", "contact-email": "webmaster@ccdb.ucsd.edu"}], "homepage": "http://ccdb.ucsd.edu/home", "identifier": 2020, "description": "The Cell Centered Database (CCDB) is a web accessible database for high resolution 2D, 3D and 4D data from light and electron microscopy, including correlated imaging.", "abbreviation": "CCDB", "support-links": [{"url": "http://ccdb.ucsd.edu/help/index.shtm", "type": "Help documentation"}, {"url": "https://twitter.com/ccdbuser", "type": "Twitter"}], "year-creation": 1998, "data-processes": [{"url": "http://ccdb.ucsd.edu/sand/main?event=viewMyLabBench&action=download", "name": "Download", "type": "data access"}, {"url": "http://ccdb.ucsd.edu/pivot.html", "name": "Browse", "type": "data access"}, {"url": "http://ccdb.ucsd.edu/sand/main?typeid=0&event=showMPByType&start=1", "name": "Browse", "type": "data access"}, {"url": "http://ccdb.ucsd.edu/sand/jsp/lite_search.jsp", "name": "Advanced search", "type": "data access"}], "associated-tools": [{"url": "http://ccdb.ucsd.edu/sand/jsp/lite_search.jsp", "name": "advanced search"}], "deprecation-date": "2017-01-01", "deprecation-reason": "The contents of this resource were merged with the Cell Image Library in 2017."}, "legacy-ids": ["biodbcore-000487", "bsg-d000487"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Cell", "Microscopy", "Imaging", "Image"], "taxonomies": ["Homo sapiens"], "user-defined-tags": ["Digital reconstruction"], "countries": ["United States"], "name": "FAIRsharing record for: Cell Centered Database", "abbreviation": "CCDB", "url": "https://fairsharing.org/10.25504/FAIRsharing.t5ha5j", "doi": "10.25504/FAIRsharing.t5ha5j", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Cell Centered Database (CCDB) is a web accessible database for high resolution 2D, 3D and 4D data from light and electron microscopy, including correlated imaging.", "publications": [{"id": 455, "pubmed_id": 15043222, "title": "The cell-centered database: a database for multiscale structural and protein localization data from light and electron microscopy.", "year": 2004, "url": "http://doi.org/10.1385/NI:1:4:379", "authors": "Martone ME., Zhang S., Gupta A., Qian X., He H., Price DL., Wong M., Santini S., Ellisman MH.,", "journal": "Neuroinformatics", "doi": "10.1385/NI:1:4:379", "created_at": "2021-09-30T08:23:09.384Z", "updated_at": "2021-09-30T08:23:09.384Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 3.0 Unported (CC BY 3.0)", "licence-id": 166, "link-id": 17, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 19, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2063", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-11-24T13:19:21.850Z", "metadata": {"doi": "10.25504/FAIRsharing.we178a", "name": "World-2DPAGE Repository", "status": "ready", "homepage": "https://world-2dpage.expasy.org/repository/", "identifier": 2063, "description": "A public standards-compliant repository for gel-based proteomics data linked to protein identification published in the literature. The repository is continuously extended, putting together a large collection of multi-species reference maps, with thousands of identified spots..", "abbreviation": "World-2DPAGE", "support-links": [{"url": "https://world-2dpage.expasy.org/contact", "type": "Contact form"}, {"url": "https://world-2dpage.expasy.org/swiss-2dpage/docs/manch2d.html", "name": "SWISS-2DPAGE User Manual", "type": "Help documentation"}], "year-creation": 2007, "data-processes": [{"url": "ftp://ftp.expasy.org/databases/swiss-2dpage", "name": "Download", "type": "data access"}, {"url": "https://world-2dpage.expasy.org/submission/", "name": "Data Submission", "type": "data curation"}], "associated-tools": [{"url": "https://world-2dpage.expasy.org/make2ddb/", "name": "Make 2D-DB II 3.10.2"}]}, "legacy-ids": ["biodbcore-000530", "bsg-d000530"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Proteomics", "Life Science"], "domains": ["Molecular structure", "2D PAGE image", "Protein identification", "Structure", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Switzerland"], "name": "FAIRsharing record for: World-2DPAGE Repository", "abbreviation": "World-2DPAGE", "url": "https://fairsharing.org/10.25504/FAIRsharing.we178a", "doi": "10.25504/FAIRsharing.we178a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: A public standards-compliant repository for gel-based proteomics data linked to protein identification published in the literature. The repository is continuously extended, putting together a large collection of multi-species reference maps, with thousands of identified spots..", "publications": [{"id": 1841, "pubmed_id": 18617148, "title": "The World-2DPAGE Constellation to promote and publish gel-based proteomics data through the ExPASy server.", "year": 2008, "url": "http://doi.org/10.1016/j.jprot.2008.02.005", "authors": "Hoogland C,Mostaguir K,Appel RD,Lisacek F", "journal": "J Proteomics", "doi": "10.1016/j.jprot.2008.02.005", "created_at": "2021-09-30T08:25:46.763Z", "updated_at": "2021-09-30T08:25:46.763Z"}], "licence-links": [{"licence-name": "ExPASy Terms of Use", "licence-id": 305, "link-id": 769, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2390", "type": "fairsharing-records", "attributes": {"created-at": "2017-03-14T11:46:55.000Z", "updated-at": "2021-12-06T10:47:55.367Z", "metadata": {"doi": "10.25504/FAIRsharing.3t5qc3", "name": "Microbial Genome Annotation & Analysis Platform", "status": "ready", "contacts": [{"contact-name": "Claudine M\u00e9digue", "contact-email": "cmedigue@genoscope.cns.fr"}], "homepage": "http://www.genoscope.cns.fr/agc/microscope/home/", "identifier": 2390, "description": "MicroScope is a web-based platform for microbial comparative genome analysis and manual functional annotation. Its relational database schema stores precalculated results of syntactic and functional annotation pipelines as well as Pathway Tools and metabolic analysis specific to each genome.", "abbreviation": "MicroScope", "support-links": [{"url": "http://www.genoscope.cns.fr/agc/microscope/about/contact.php?&wwwpkgdb=8ec24c15145b8f4e86bd2473d359a5f3", "type": "Contact form"}, {"url": "https://microscope.readthedocs.io/en/latest/", "type": "Help documentation"}, {"url": "https://www.genoscope.cns.fr/agc/website/spip.php?page=forma_dates&lang=en", "type": "Training documentation"}], "year-creation": 2004, "data-processes": [{"url": "http://www.genoscope.cns.fr/agc/microscope/search/keywords.php?", "name": "search", "type": "data access"}, {"url": "http://www.genoscope.cns.fr/agc/microscope/search/exportForm.php?", "name": "download", "type": "data access"}, {"url": "http://www.genoscope.cns.fr/agc/microscope/mage/viewer.php?", "name": "Gbrowse", "type": "data access"}], "associated-tools": [{"url": "http://www.genoscope.cns.fr/agc/microscope/search/blast.php?", "name": "blast"}, {"url": "http://www.genoscope.cns.fr/agc/microscope/genomic/cgview.php?part=all", "name": "Circular Genome Viewer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012928", "name": "re3data:r3d100012928", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000871", "bsg-d000871"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Comparative Genomics"], "domains": ["Annotation", "Genome annotation", "Gene functional annotation", "Molecular interaction"], "taxonomies": ["Bacteria"], "user-defined-tags": [], "countries": ["France"], "name": "FAIRsharing record for: Microbial Genome Annotation & Analysis Platform", "abbreviation": "MicroScope", "url": "https://fairsharing.org/10.25504/FAIRsharing.3t5qc3", "doi": "10.25504/FAIRsharing.3t5qc3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MicroScope is a web-based platform for microbial comparative genome analysis and manual functional annotation. Its relational database schema stores precalculated results of syntactic and functional annotation pipelines as well as Pathway Tools and metabolic analysis specific to each genome.", "publications": [{"id": 2033, "pubmed_id": 23193269, "title": "MicroScope--an integrated microbial resource for the curation and comparative analysis of genomic and metabolic data.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1194", "authors": "Vallenet D,Belda E,Calteau A,Cruveiller S,Engelen S,Lajus A,Le Fevre F,Longin C,Mornico D,Roche D,Rouy Z,Salvignol G,Scarpelli C,Thil Smith AA,Weiman M,Medigue C", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1194", "created_at": "2021-09-30T08:26:08.954Z", "updated_at": "2021-09-30T11:29:26.596Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "2748", "type": "fairsharing-records", "attributes": {"created-at": "2018-12-19T08:39:20.000Z", "updated-at": "2021-12-06T10:48:12.412Z", "metadata": {"doi": "10.25504/FAIRsharing.9btRvC", "name": "China National GeneBank DataBase", "status": "ready", "contacts": [{"contact-name": "Vincent Wei", "contact-email": "weixiaofeng@cngb.org"}], "homepage": "https://db.cngb.org/", "identifier": 2748, "description": "The China National GeneBank database (CNGBdb) is a unified platform for biological big data sharing and application services. At present, CNGBdb has integrated a large amount of internal and external biological data from resources such as CNGB, NCBI, and the EBI. There are a number of sub databases in CNGBdb, including literature, variation, gene, genome, protein, sequence, organism, project, sample, experiment, run, and assembly. Based on underlying big data and cloud computing technologies, it provides various data services, including archive, analysis, knowledge search, management authorization of biological data. CNGBdb adopts data structures and standards of international omics, health, and medicine, such as The International Nucleotide Sequence Database Collaboration (INSDC), The Global Alliance for Genomics and Health GA4GH (GA4GH), Global Genome Biodiversity Network (GGBN), American College of Medical Genetics and Genomics (ACMG), and constructs standardized data and structures with wide compatibility. All public data and data services provided by CNGBdb are freely available to all users worldwide.", "abbreviation": "CNGBdb", "support-links": [{"url": "NGB_DC@genomics.cn", "name": "CNGB", "type": "Support email"}, {"url": "https://db.cngb.org/faq/", "name": "faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://db.cngb.org/handbook/", "name": "Handbook", "type": "Help documentation"}, {"url": "https://db.cngb.org/data_standard/", "name": "Data Standards Used", "type": "Help documentation"}, {"url": "https://db.cngb.org/news/", "name": "News", "type": "Help documentation"}, {"url": "https://db.cngb.org/about/", "name": "About Us", "type": "Help documentation"}], "year-creation": 2018, "data-processes": [{"url": "https://db.cngb.org/cnsa/curate/?", "name": "curation", "type": "data curation"}, {"url": "https://db.cngb.org/download/", "name": "download", "type": "data access"}, {"url": "https://db.cngb.org/cnsa/submit/", "name": "Submitting Data", "type": "data curation"}, {"url": "https://db.cngb.org/data_access/", "name": "Access to Restricted Data", "type": "data access"}], "associated-tools": [{"url": "https://db.cngb.org/blast/blast/blastn/", "name": "BLAST"}, {"url": "https://db.cngb.org/pvd/", "name": "Pathogen Variation"}, {"url": "https://db.cngb.org/dissect/", "name": "DISSECT"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012917", "name": "re3data:r3d100012917", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-001246", "bsg-d001246"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Data Integration", "Data Management", "Life Science"], "domains": ["Experimental measurement", "Data storage"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["China"], "name": "FAIRsharing record for: China National GeneBank DataBase", "abbreviation": "CNGBdb", "url": "https://fairsharing.org/10.25504/FAIRsharing.9btRvC", "doi": "10.25504/FAIRsharing.9btRvC", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The China National GeneBank database (CNGBdb) is a unified platform for biological big data sharing and application services. At present, CNGBdb has integrated a large amount of internal and external biological data from resources such as CNGB, NCBI, and the EBI. There are a number of sub databases in CNGBdb, including literature, variation, gene, genome, protein, sequence, organism, project, sample, experiment, run, and assembly. Based on underlying big data and cloud computing technologies, it provides various data services, including archive, analysis, knowledge search, management authorization of biological data. CNGBdb adopts data structures and standards of international omics, health, and medicine, such as The International Nucleotide Sequence Database Collaboration (INSDC), The Global Alliance for Genomics and Health GA4GH (GA4GH), Global Genome Biodiversity Network (GGBN), American College of Medical Genetics and Genomics (ACMG), and constructs standardized data and structures with wide compatibility. All public data and data services provided by CNGBdb are freely available to all users worldwide.", "publications": [], "licence-links": [{"licence-name": "CNGB User notice", "licence-id": 139, "link-id": 2264, "relation": "undefined"}, {"licence-name": "CNGB Privacy and security policy", "licence-id": 137, "link-id": 2265, "relation": "undefined"}, {"licence-name": "CNGB Terms and conditions", "licence-id": 138, "link-id": 2266, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2442", "type": "fairsharing-records", "attributes": {"created-at": "2017-05-03T16:58:00.000Z", "updated-at": "2021-12-06T10:47:58.176Z", "metadata": {"doi": "10.25504/FAIRsharing.55ev2y", "name": "The Triticeae Toolbox", "status": "ready", "contacts": [{"contact-email": "tht_curator@graingenes.org", "contact-orcid": "0000-0003-4849-628X"}], "homepage": "https://triticeaetoolbox.org/", "identifier": 2442, "description": "The Triticeae Toolbox (T3) is a repository for public wheat data generated by the Wheat Coordinated Agricultural Project (Wheat CAP). Funding is provided by the National Institute for Food and Agriculture (NIFA) and the United States Department of Agriculture (USDA). The current project is funded through NIFA's International Wheat Yield Partnership (IWYP) and part of the Agriculture and Food Research Initiative (AFRI).", "abbreviation": "T3", "access-points": [{"url": "https://triticeaetoolbox.org/wheat/brapi/v1/", "name": "https://github.com/plantbreeding/API", "type": "REST"}], "support-links": [{"url": "https://triticeaetoolbox.org/feedback.php", "type": "Contact form"}, {"url": "tht_curator@graingenes.org", "type": "Support email"}], "year-creation": 2006, "data-processes": [{"url": "https://triticeaetoolbox.org/jbrowse/", "name": "JBrowse", "type": "data access"}, {"name": "Search", "type": "data access"}, {"name": "Download", "type": "data access"}, {"name": "Browse", "type": "data access"}], "associated-tools": [{"url": "https://triticeaetoolbox.org/wheat/analyze/cluster_lines.php", "name": "Cluster"}, {"url": "https://triticeaetoolbox.org/wheat/gensel.php", "name": "Genomic Association and Prediction"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012396", "name": "re3data:r3d100012396", "portal": "re3data"}]}, "legacy-ids": ["biodbcore-000924", "bsg-d000924"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Proteomics", "Phenomics"], "domains": ["Gene report", "Phenotype", "Protein", "Single nucleotide polymorphism", "Genotype"], "taxonomies": ["Avena", "Hordeum vulgare", "Triticum aestivum"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: The Triticeae Toolbox", "abbreviation": "T3", "url": "https://fairsharing.org/10.25504/FAIRsharing.55ev2y", "doi": "10.25504/FAIRsharing.55ev2y", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Triticeae Toolbox (T3) is a repository for public wheat data generated by the Wheat Coordinated Agricultural Project (Wheat CAP). Funding is provided by the National Institute for Food and Agriculture (NIFA) and the United States Department of Agriculture (USDA). The current project is funded through NIFA's International Wheat Yield Partnership (IWYP) and part of the Agriculture and Food Research Initiative (AFRI).", "publications": [{"id": 1733, "pubmed_id": 27898834, "title": "The Triticeae Toolbox: Combining Phenotype and Genotype Data to Advance Small-Grains Breeding", "year": 2016, "url": "http://doi.org/10.3835/plantgenome2014.12.0099", "authors": "Blake VC, Birkett C, Matthews DE, Hane DL, Bradbury P, Jannink JL.", "journal": "Plant Genome", "doi": "10.3835/plantgenome2014.12.0099", "created_at": "2021-09-30T08:25:34.255Z", "updated_at": "2021-09-30T08:25:34.255Z"}], "licence-links": [{"licence-name": "2009 Toronto Statement on Benefits and Best Practices of Rapid Pre-Publication Data Release", "licence-id": 1, "link-id": 1572, "relation": "undefined"}, {"licence-name": "Triticase Toolbox License", "licence-id": 794, "link-id": 1573, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2447", "type": "fairsharing-records", "attributes": {"created-at": "2017-04-22T14:27:08.000Z", "updated-at": "2021-12-06T10:49:31.581Z", "metadata": {"doi": "10.25504/FAIRsharing.ys5ta3", "name": "System for Earth Sample Registration Catalog", "status": "ready", "contacts": [{"contact-name": "Kerstin Lehnert", "contact-email": "info@geosamples.org"}], "homepage": "http://www.geosamples.org", "identifier": 2447, "description": "SESAR operates a registry that distributes the International Geo Sample Number IGSN. SESAR catalogs and preserves metadata profiles of physical samples, and provides access to the sample catalog via the Global Sample Search.", "abbreviation": "SESAR Catalog", "access-points": [{"url": "http://www.geosamples.org/interop", "name": "SESAR's web services enable seamless communication (interoperability) with remote client systems.", "type": "REST"}], "support-links": [{"url": "http://www.geosamples.org/help/faq", "type": "Frequently Asked Questions (FAQs)"}, {"url": "http://www.geosamples.org/help", "type": "Help documentation"}], "year-creation": 2005, "data-processes": [{"url": "http://www.geosamples.org/catalogsearch", "name": "search", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010420", "name": "re3data:r3d100010420", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_002222", "name": "SciCrunch:RRID:SCR_002222", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000929", "bsg-d000929"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Environmental Science", "Earth Science"], "domains": [], "taxonomies": ["Not applicable"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: System for Earth Sample Registration Catalog", "abbreviation": "SESAR Catalog", "url": "https://fairsharing.org/10.25504/FAIRsharing.ys5ta3", "doi": "10.25504/FAIRsharing.ys5ta3", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: SESAR operates a registry that distributes the International Geo Sample Number IGSN. SESAR catalogs and preserves metadata profiles of physical samples, and provides access to the sample catalog via the Global Sample Search.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2981", "type": "fairsharing-records", "attributes": {"created-at": "2020-05-09T08:14:25.000Z", "updated-at": "2021-11-24T13:14:09.496Z", "metadata": {"doi": "10.25504/FAIRsharing.VErHgW", "name": "EMODnet Human Activities", "status": "ready", "homepage": "https://www.emodnet-humanactivities.eu/", "identifier": 2981, "description": "EMODnet Human Activities provides access to existing marine data on activities carried out in EU waters by building a single entry point for geographic information on 14 different themes. The portal includes information on geographical position, spatial extent of a series of activities related to the sea, their temporal variation, time when data was provided, and attributes to indicate the intensity of each activity. The data are aggregated and presented so as to preserve personal privacy and commercially-sensitive information. The data also include a time interval so that historic as well as current activities can be included.", "support-links": [{"url": "https://www.emodnet-humanactivities.eu/blog/", "name": "EMODnet Human Activities Blog", "type": "Blog/News"}, {"url": "https://www.emodnet-humanactivities.eu/contact-us.php", "name": "Contact Form", "type": "Contact form"}, {"url": "https://www.emodnet-humanactivities.eu/support.php", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.emodnet-humanactivities.eu/about-ha.php", "name": "About", "type": "Help documentation"}, {"url": "https://www.emodnet-humanactivities.eu/documents.php", "name": "Publications", "type": "Help documentation"}, {"url": "https://www.emodnet-humanactivities.eu/sources.php", "name": "Data Sources", "type": "Help documentation"}, {"url": "https://www.emodnet-humanactivities.eu/partners.php", "name": "Partners", "type": "Help documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://www.emodnet-humanactivities.eu/view-data.php", "name": "View Data", "type": "data access"}, {"url": "https://www.emodnet-humanactivities.eu/search.php", "name": "Search Data", "type": "data access"}, {"url": "https://www.emodnet-ingestion.eu/", "name": "Submit", "type": "data curation"}]}, "legacy-ids": ["biodbcore-001487", "bsg-d001487"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Geography", "Maritime Engineering", "Aquaculture", "Earth Science"], "domains": ["Geographical location", "Marine environment"], "taxonomies": ["All"], "user-defined-tags": ["Geographic Information System (GIS)"], "countries": ["European Union"], "name": "FAIRsharing record for: EMODnet Human Activities", "abbreviation": null, "url": "https://fairsharing.org/10.25504/FAIRsharing.VErHgW", "doi": "10.25504/FAIRsharing.VErHgW", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: EMODnet Human Activities provides access to existing marine data on activities carried out in EU waters by building a single entry point for geographic information on 14 different themes. The portal includes information on geographical position, spatial extent of a series of activities related to the sea, their temporal variation, time when data was provided, and attributes to indicate the intensity of each activity. The data are aggregated and presented so as to preserve personal privacy and commercially-sensitive information. The data also include a time interval so that historic as well as current activities can be included.", "publications": [], "licence-links": [], "url-for-logo": null}} +{"id": "2886", "type": "fairsharing-records", "attributes": {"created-at": "2020-01-21T12:49:11.000Z", "updated-at": "2022-02-10T11:09:52.496Z", "metadata": {"doi": "10.25504/FAIRsharing.yNNTvk", "name": "Biodiversity Heritage Library", "status": "ready", "contacts": [{"contact-name": "BHL Feedback", "contact-email": "feedback@biodiversitylibrary.org"}], "homepage": "https://biodiversitylibrary.org/", "citations": [], "identifier": 2886, "description": "The Biodiversity Heritage Library (BHL) is the world\u2019s largest open access digital library for biodiversity literature and archives. Operating as an international library consortium, BHL provides free access to millions of pages, representing over 500 years of scientific research, alongside services like data exports, APIs, and taxonomic intelligence tools to facilitate discovery and reuse of data and collections.", "abbreviation": "BHL", "access-points": [{"url": "https://about.biodiversitylibrary.org/tools-and-services/developer-and-data-tools/", "name": "BHL API", "type": "REST"}], "support-links": [{"url": "https://blog.biodiversitylibrary.org/", "name": "BHL Blog", "type": "Blog/News"}, {"url": "https://about.biodiversitylibrary.org/help/faq/", "name": "FAQ", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://about.biodiversitylibrary.org/help/", "name": "Help Pages", "type": "Help documentation"}, {"url": "https://about.biodiversitylibrary.org/about/bhl-community/#Altmetric", "name": "Altmetrics", "type": "Help documentation"}, {"url": "https://about.biodiversitylibrary.org/", "name": "About", "type": "Help documentation"}, {"url": "https://about.biodiversitylibrary.org/ufaq-category/dois_uris/", "name": "DOI Generation", "type": "Help documentation"}, {"url": "https://about.biodiversitylibrary.org/about/bhl-consortium/#BHLparticipatingInstitutions", "name": "BHL Members", "type": "Help documentation"}, {"url": "https://about.biodiversitylibrary.org/about/bhl-funding/", "name": "Funding Details", "type": "Help documentation"}, {"url": "https://github.com/gbhl/bhl-us", "name": "GitHub Project", "type": "Github"}, {"url": "https://twitter.com/BioDivLibrary", "name": "@BioDivLibrary", "type": "Twitter"}], "year-creation": 2005, "data-processes": [{"url": "https://about.biodiversitylibrary.org/ufaq-category/download/", "name": "Download", "type": "data release"}], "associated-tools": [{"url": "https://about.biodiversitylibrary.org/ufaq-category/scinames/", "name": "Scientific Names Tools"}, {"url": "https://about.biodiversitylibrary.org/ufaq-category/reftools/", "name": "Reference Management Tools"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-001387", "bsg-d001387"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biodiversity"], "domains": ["Citation", "Bibliography", "Journal article", "Publication", "Data storage", "FAIR"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["Worldwide"], "name": "FAIRsharing record for: Biodiversity Heritage Library", "abbreviation": "BHL", "url": "https://fairsharing.org/10.25504/FAIRsharing.yNNTvk", "doi": "10.25504/FAIRsharing.yNNTvk", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Biodiversity Heritage Library (BHL) is the world\u2019s largest open access digital library for biodiversity literature and archives. Operating as an international library consortium, BHL provides free access to millions of pages, representing over 500 years of scientific research, alongside services like data exports, APIs, and taxonomic intelligence tools to facilitate discovery and reuse of data and collections.", "publications": [], "licence-links": [{"licence-name": "Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "licence-id": 196, "link-id": 1054, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)", "licence-id": 187, "link-id": 1055, "relation": "undefined"}], "url-for-logo": "/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBOQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--c9415e38b0982a51ce15cad62af378015b0fdd76/BHL-Combined-About-300x97.png?disposition=inline"}} +{"id": "2089", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:04.299Z", "metadata": {"doi": "10.25504/FAIRsharing.qje0v8", "name": "Database of Interacting Proteins", "status": "ready", "contacts": [{"contact-name": "DIP General Contact", "contact-email": "dip@mbi.ucla.edu"}], "homepage": "https://dip.doe-mbi.ucla.edu/dip/Main.cgi", "citations": [{"doi": "10.1093/nar/gkh086", "pubmed-id": 14681454, "publication-id": 1531}], "identifier": 2089, "description": "The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions. The data stored within the DIP database were curated, both manually by expert curators and automatically using computational approaches that utilize the the knowledge about the protein-protein interaction networks extracted from the core DIP data.", "abbreviation": "DIP", "support-links": [{"url": "https://dip.doe-mbi.ucla.edu/dip/Guide.cgi", "name": "User Guide", "type": "Help documentation"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Stat.cgi", "name": "Statistics", "type": "Help documentation"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Articles.cgi", "name": "DIP-related Publications", "type": "Help documentation"}], "year-creation": 1999, "data-processes": [{"url": "https://dip.doe-mbi.ucla.edu/dip/Download.cgi", "name": "Download", "type": "data release"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Submissions.cgi", "name": "Submit Data", "type": "data curation"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Search.cgi", "name": "Search", "type": "data access"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Services.cgi?SM=1", "name": "Expression Profile Reliability (EPR) index", "type": "data access"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Services.cgi?SM=2", "name": "The Paralogous Verification Method (PVM) Tool", "type": "data access"}, {"url": "https://dip.doe-mbi.ucla.edu/dip/Services.cgi?SM=3", "name": "The Domain Pair Verification (DPV) Tool", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010670", "name": "re3data:r3d100010670", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_003167", "name": "SciCrunch:RRID:SCR_003167", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000558", "bsg-d000558"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Biology"], "domains": ["Protein interaction", "Network model", "High-throughput screening", "Protein"], "taxonomies": ["All"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: Database of Interacting Proteins", "abbreviation": "DIP", "url": "https://fairsharing.org/10.25504/FAIRsharing.qje0v8", "doi": "10.25504/FAIRsharing.qje0v8", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions. The data stored within the DIP database were curated, both manually by expert curators and automatically using computational approaches that utilize the the knowledge about the protein-protein interaction networks extracted from the core DIP data.", "publications": [{"id": 1355, "pubmed_id": 11125102, "title": "DIP: The Database of Interacting Proteins: 2001 update.", "year": 2000, "url": "http://doi.org/10.1093/nar/29.1.239", "authors": "Xenarios I,Fernandez E,Salwinski L,Duan XJ,Thompson MJ,Marcotte EM,Eisenberg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/29.1.239", "created_at": "2021-09-30T08:24:51.598Z", "updated_at": "2021-09-30T11:29:06.443Z"}, {"id": 1356, "pubmed_id": 10592249, "title": "DIP: the database of interacting proteins.", "year": 1999, "url": "http://doi.org/10.1093/nar/28.1.289", "authors": "Xenarios I,Rice DW,Salwinski L,Baron MK,Marcotte EM,Eisenberg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/28.1.289", "created_at": "2021-09-30T08:24:51.689Z", "updated_at": "2021-09-30T11:29:06.584Z"}, {"id": 1527, "pubmed_id": 11752321, "title": "DIP, the Database of Interacting Proteins: a research tool for studying cellular networks of protein interactions.", "year": 2001, "url": "http://doi.org/10.1093/nar/30.1.303", "authors": "Xenarios I,Salwinski L,Duan XJ,Higney P,Kim SM,Eisenberg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/30.1.303", "created_at": "2021-09-30T08:25:10.949Z", "updated_at": "2021-09-30T11:29:12.485Z"}, {"id": 1531, "pubmed_id": 14681454, "title": "The Database of Interacting Proteins: 2004 update.", "year": 2003, "url": "http://doi.org/10.1093/nar/gkh086", "authors": "Salwinski L,Miller CS,Smith AJ,Pettit FK,Bowie JU,Eisenberg D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkh086", "created_at": "2021-09-30T08:25:11.391Z", "updated_at": "2021-09-30T11:29:12.826Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 118, "relation": "undefined"}, {"licence-name": "DIP Terms of Use", "licence-id": 244, "link-id": 126, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2077", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:10.262Z", "metadata": {"doi": "10.25504/FAIRsharing.s1ne3g", "name": "UniProt Knowledgebase", "status": "ready", "contacts": [{"contact-name": "General contact", "contact-email": "help@uniprot.org"}], "homepage": "https://www.uniprot.org/uniprot/", "citations": [{"doi": "10.1093/nar/gkw1099", "pubmed-id": 27899622, "publication-id": 1031}], "identifier": 2077, "description": "The UniProt Knowledgebase (UniProtKB) is the central hub for the collection of functional information on proteins, with accurate, consistent and rich annotation. In addition to capturing the core data mandatory for each UniProtKB entry (mainly, the amino acid sequence, protein name or description, taxonomic data and citation information), as much annotation information as possible is added. This includes widely accepted biological ontologies, classifications and cross-references, and clear indications of the quality of annotation in the form of evidence attribution of experimental and computational data. The UniProt Knowledgebase consists of two sections: a reviewed section containing manually-annotated records with information extracted from literature and curator-evaluated computational analysis (aka \"UniProtKB/Swiss-Prot\"), and an unreviewed section with computationally analyzed records that await full manual annotation (aka \"UniProtKB/TrEMBL\").", "abbreviation": "UniProtKB", "access-points": [{"url": "https://www.uniprot.org/help/api", "name": "REST API", "type": "REST"}, {"url": "https://www.ebi.ac.uk/uniprot/japi/index.html", "name": "Java remote API", "type": "Other"}, {"url": "https://sparql.uniprot.org/sparql", "name": "SPARQL", "type": "Other"}], "support-links": [{"url": "https://www.uniprot.org/contact", "name": "Contact", "type": "Contact form"}, {"url": "http://www.uniprot.org/help/", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.uniprot.org/help/uniprotkb", "type": "Help documentation"}, {"url": "https://tess.elixir-europe.org/materials/a-critical-guide-to-uniprotkb", "name": "A Critical Guide to UniProtKB", "type": "TeSS links to training materials"}, {"url": "https://www.youtube.com/channel/UCkCR5RJZCZZoVTQzTYY92aw", "name": "Youtube channel", "type": "Video"}, {"url": "https://twitter.com/uniprot", "type": "Twitter"}], "year-creation": 2002, "data-processes": [{"url": "http://www.uniprot.org/help/biocuration", "name": "Biocuration", "type": "data curation"}, {"url": "http://www.uniprot.org/downloads", "name": "Download", "type": "data access"}, {"url": "https://www.uniprot.org/uniprot/", "name": "Browse", "type": "data access"}, {"url": "https://www.uniprot.org/uniprot/", "name": "Text search", "type": "data access"}, {"url": "http://www.uniprot.org/blast/", "name": "BLAST", "type": "data access"}], "associated-tools": [{"url": "https://sparql.uniprot.org", "name": "SPARQL Endpoint"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011521", "name": "re3data:r3d100011521", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_004426", "name": "SciCrunch:RRID:SCR_004426", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000544", "bsg-d000544"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Functional Genomics", "Life Science"], "domains": ["Molecular structure", "Sequence similarity", "Expression data", "Annotation", "Sequence annotation", "Gene functional annotation", "Function analysis", "Proteome", "Cellular component", "Binding motif", "Structure", "Protein", "Amino acid sequence", "Literature curation", "Biocuration"], "taxonomies": ["All"], "user-defined-tags": ["COVID-19"], "countries": ["United Kingdom", "United States", "Switzerland"], "name": "FAIRsharing record for: UniProt Knowledgebase", "abbreviation": "UniProtKB", "url": "https://fairsharing.org/10.25504/FAIRsharing.s1ne3g", "doi": "10.25504/FAIRsharing.s1ne3g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The UniProt Knowledgebase (UniProtKB) is the central hub for the collection of functional information on proteins, with accurate, consistent and rich annotation. In addition to capturing the core data mandatory for each UniProtKB entry (mainly, the amino acid sequence, protein name or description, taxonomic data and citation information), as much annotation information as possible is added. This includes widely accepted biological ontologies, classifications and cross-references, and clear indications of the quality of annotation in the form of evidence attribution of experimental and computational data. The UniProt Knowledgebase consists of two sections: a reviewed section containing manually-annotated records with information extracted from literature and curator-evaluated computational analysis (aka \"UniProtKB/Swiss-Prot\"), and an unreviewed section with computationally analyzed records that await full manual annotation (aka \"UniProtKB/TrEMBL\").", "publications": [{"id": 249, "pubmed_id": 23161681, "title": "Update on activities at the Universal Protein Resource (UniProt) in 2013.", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1068", "authors": "UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gks1068", "created_at": "2021-09-30T08:22:46.912Z", "updated_at": "2021-09-30T11:28:44.409Z"}, {"id": 638, "pubmed_id": 25348405, "title": "UniProt: a hub for protein information", "year": 2014, "url": "http://doi.org/10.1093/nar/gku989", "authors": "The UniProt Consortium", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gku989", "created_at": "2021-09-30T08:23:30.235Z", "updated_at": "2021-09-30T08:23:30.235Z"}, {"id": 946, "pubmed_id": 18287689, "title": "UniProtKB/Swiss-Prot.", "year": 2008, "url": "http://doi.org/10.1007/978-1-59745-535-0_4", "authors": "Boutet E,Lieberherr D,Tognolli M,Schneider M,Bairoch A", "journal": "Methods Mol Biol", "doi": "10.1007/978-1-59745-535-0_4", "created_at": "2021-09-30T08:24:04.678Z", "updated_at": "2021-09-30T08:24:04.678Z"}, {"id": 1023, "pubmed_id": 29425356, "title": "UniProt: the universal protein knowledgebase.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky092", "authors": "UniProt Consortium T", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky092", "created_at": "2021-09-30T08:24:13.286Z", "updated_at": "2021-09-30T11:28:56.900Z"}, {"id": 1031, "pubmed_id": 27899622, "title": "UniProt: the universal protein knowledgebase.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1099", "authors": "The UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkw1099", "created_at": "2021-09-30T08:24:14.170Z", "updated_at": "2021-09-30T11:28:57.092Z"}, {"id": 1226, "pubmed_id": 21447597, "title": "UniProt Knowledgebase: a hub of integrated protein data.", "year": 2011, "url": "http://doi.org/10.1093/database/bar009", "authors": "Magrane M", "journal": "Database (Oxford)", "doi": "10.1093/database/bar009", "created_at": "2021-09-30T08:24:36.707Z", "updated_at": "2021-09-30T08:24:36.707Z"}, {"id": 1269, "pubmed_id": 19843607, "title": "The Universal Protein Resource (UniProt) in 2010.", "year": 2009, "url": "http://doi.org/10.1093/nar/gkp846", "authors": "UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkp846", "created_at": "2021-09-30T08:24:41.648Z", "updated_at": "2021-09-30T11:29:04.767Z"}, {"id": 1462, "pubmed_id": 16381842, "title": "The Universal Protein Resource (UniProt): an expanding universe of protein information.", "year": 2005, "url": "http://doi.org/10.1093/nar/gkj161", "authors": "Wu CH,Apweiler R,Bairoch A,Natale DA,Barker WC,Boeckmann B,Ferro S,Gasteiger E,Huang H,Lopez R,Magrane M,Martin MJ,Mazumder R,O'Donovan C,Redaschi N,Suzek B", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkj161", "created_at": "2021-09-30T08:25:03.374Z", "updated_at": "2021-09-30T11:29:09.085Z"}, {"id": 1469, "pubmed_id": 30395287, "title": "UniProt: a worldwide hub of protein knowledge.", "year": 2018, "url": "http://doi.org/10.1093/nar/gky1049", "authors": "https://academic.oup.com/nar/article/47/D1/D506/5160987", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gky1049", "created_at": "2021-09-30T08:25:04.466Z", "updated_at": "2021-09-30T11:29:09.451Z"}, {"id": 1470, "pubmed_id": 27010333, "title": "UniProt Tools.", "year": 2016, "url": "http://doi.org/10.1002/0471250953.bi0129s53", "authors": "Pundir S,Martin MJ,O'Donovan C", "journal": "Curr Protoc Bioinformatics", "doi": "10.1002/0471250953.bi0129s53", "created_at": "2021-09-30T08:25:04.568Z", "updated_at": "2021-09-30T08:25:04.568Z"}, {"id": 1471, "pubmed_id": 24253303, "title": "Activities at the Universal Protein Resource (UniProt).", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1140", "authors": "The UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1140", "created_at": "2021-09-30T08:25:04.683Z", "updated_at": "2021-09-30T11:29:09.543Z"}, {"id": 1472, "pubmed_id": 22123736, "title": "The UniProt-GO Annotation database in 2011.", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1048", "authors": "UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1048", "created_at": "2021-09-30T08:25:04.782Z", "updated_at": "2021-09-30T11:29:09.684Z"}, {"id": 1473, "pubmed_id": 18836194, "title": "The Universal Protein Resource (UniProt) 2009.", "year": 2008, "url": "http://doi.org/10.1093/nar/gkn664", "authors": "UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkn664", "created_at": "2021-09-30T08:25:04.882Z", "updated_at": "2021-09-30T11:29:09.776Z"}, {"id": 1474, "pubmed_id": 18045787, "title": "The universal protein resource (UniProt).", "year": 2007, "url": "http://doi.org/10.1093/nar/gkm895", "authors": "UniProt Consortium", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkm895", "created_at": "2021-09-30T08:25:04.982Z", "updated_at": "2021-09-30T11:29:09.911Z"}, {"id": 1644, "pubmed_id": 15044231, "title": "UniProt archive.", "year": 2004, "url": "http://doi.org/10.1093/bioinformatics/bth191", "authors": "Leinonen R,Diez FG,Binns D,Fleischmann W,Lopez R,Apweiler R", "journal": "Bioinformatics", "doi": "10.1093/bioinformatics/bth191", "created_at": "2021-09-30T08:25:24.119Z", "updated_at": "2021-09-30T08:25:24.119Z"}, {"id": 1989, "pubmed_id": 15608167, "title": "The Universal Protein Resource (UniProt).", "year": 2004, "url": "http://doi.org/10.1093/nar/gki070", "authors": "Bairoch A,Apweiler R,Wu CH,Barker WC,Boeckmann B,Ferro S,Gasteiger E,Huang H,Lopez R,Magrane M,Martin MJ,Natale DA,O'Donovan C,Redaschi N,Yeh LS", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gki070", "created_at": "2021-09-30T08:26:03.897Z", "updated_at": "2021-09-30T11:29:25.210Z"}, {"id": 2193, "pubmed_id": 9181472, "title": "The SWISS-PROT protein sequence database: its relevance to human molecular medical research.", "year": 1997, "url": "https://www.ncbi.nlm.nih.gov/pubmed/9181472", "authors": "Bairoch A,Apweiler R", "journal": "J Mol Med (Berl)", "doi": null, "created_at": "2021-09-30T08:26:27.175Z", "updated_at": "2021-09-30T08:26:27.175Z"}], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 54, "relation": "undefined"}], "url-for-logo": null}} +{"id": "1955", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:48:34.276Z", "metadata": {"doi": "10.25504/FAIRsharing.fcwyhz", "name": "Mouse Genome Database - a Mouse Genome Informatics (MGI) Resource", "status": "ready", "contacts": [{"contact-name": "MGI User Support", "contact-email": "mgi-help@jax.org"}], "homepage": "http://www.informatics.jax.org/", "identifier": 1955, "description": "MGI is the international database resource for the laboratory mouse, providing integrated genetic, genomic, and biological data to facilitate the study of human health and disease. Data includes gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", "abbreviation": "MGI", "access-points": [{"url": "http://www.mousemine.org/mousemine/api.do", "type": "SOAP"}], "support-links": [{"url": "http://www.informatics.jax.org/mgihome/support/mgi_inbox.shtml", "type": "Help documentation"}, {"url": "http://www.informatics.jax.org/mgihome/lists/lists.shtml", "type": "Mailing list"}, {"url": "http://www.informatics.jax.org/mgihome/other/homepage_usingMGI.shtml", "type": "Training documentation"}, {"url": "https://twitter.com/mgi_mouse", "type": "Twitter"}], "year-creation": 1994, "data-processes": [{"url": "http://www.informatics.jax.org/downloads/reports/index.html", "name": "Download", "type": "data access"}], "associated-tools": [{"url": "http://www.informatics.jax.org/submit.shtml", "name": "submit"}, {"url": "http://www.informatics.jax.org/allsearch.shtml", "name": "search"}, {"url": "http://www.mousemine.org/mousemine/begin.do", "name": "MouseMine"}, {"url": "http://www.informatics.jax.org/batch", "name": "Batch Query"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100010266", "name": "re3data:r3d100010266", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_006460", "name": "SciCrunch:RRID:SCR_006460", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000421", "bsg-d000421"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science", "Ontology and Terminology"], "domains": ["Cytogenetic map", "Genome map", "Gene name", "Expression data", "Gene Ontology enrichment", "Disease process modeling", "Mutation", "Genetic polymorphism", "Phenotype", "Disease", "Sequence", "Single nucleotide polymorphism", "Gene", "Quantitative trait loci", "Homologous", "Allele"], "taxonomies": ["Mus musculus"], "user-defined-tags": ["Chromosomal element nomenclature", "COVID-19"], "countries": ["United States"], "name": "FAIRsharing record for: Mouse Genome Database - a Mouse Genome Informatics (MGI) Resource", "abbreviation": "MGI", "url": "https://fairsharing.org/10.25504/FAIRsharing.fcwyhz", "doi": "10.25504/FAIRsharing.fcwyhz", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: MGI is the international database resource for the laboratory mouse, providing integrated genetic, genomic, and biological data to facilitate the study of human health and disease. Data includes gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", "publications": [{"id": 698, "pubmed_id": 24285300, "title": "The Mouse Genome Database: integration of and access to knowledge about the laboratory mouse.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1225", "authors": "Blake JA, Bult CJ, Eppig JT, Kadin JA, Richardson JE; The Mouse Genome Database Group", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1225", "created_at": "2021-09-30T08:23:36.975Z", "updated_at": "2021-09-30T11:28:49.050Z"}, {"id": 716, "pubmed_id": 23175610, "title": "The Mouse Genome Database: Genotypes, Phenotypes, and Models of Human Disease", "year": 2012, "url": "http://doi.org/10.1093/nar/gks1115", "authors": "Bult CJ, Eppig JT, Blake JA, Kadin JA, Richardson JE; the Mouse Genome Database Group", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gks1115", "created_at": "2021-09-30T08:23:38.919Z", "updated_at": "2021-09-30T08:23:38.919Z"}, {"id": 931, "pubmed_id": 27933520, "title": "Mouse Genome Informatics (MGI): Resources for Mining Mouse Genetic, Genomic, and Biological Data in Support of Primary and Translational Research.", "year": 2016, "url": "http://doi.org/10.1007/978-1-4939-6427-7_3", "authors": "Eppig JT, Smith CL, Blake JA, Ringwald M, Kadin JA, Richardson JE, Bult CJ.", "journal": "Methods Mol Biol.", "doi": "10.1007/978-1-4939-6427-7_3", "created_at": "2021-09-30T08:24:02.970Z", "updated_at": "2021-09-30T08:24:02.970Z"}, {"id": 1009, "pubmed_id": 28838066, "title": "Mouse Genome Informatics (MGI) Resource: Genetic, Genomic, and Biological Knowledgebase for the Laboratory Mouse.", "year": 2017, "url": "http://doi.org/10.1093/ilar/ilx013", "authors": "Eppig JT", "journal": "ILAR J.", "doi": "10.1093/ilar/ilx013", "created_at": "2021-09-30T08:24:11.721Z", "updated_at": "2021-09-30T08:24:11.721Z"}, {"id": 1042, "pubmed_id": 22075990, "title": "The Mouse Genome Database (MGD): comprehensive resource for genetics and genomics of the laboratory mouse", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr974", "authors": "Eppig JT, Blake JA, Bult CJ, Kadin JA, Richardson JE; the Mouse Genome Database Group", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkr974", "created_at": "2021-09-30T08:24:15.372Z", "updated_at": "2021-09-30T08:24:15.372Z"}, {"id": 1058, "pubmed_id": 27899570, "title": "Mouse Genome Database (MGD)-2017: community knowledge resource for the laboratory mouse.", "year": 2016, "url": "http://doi.org/10.1093/nar/gkw1040", "authors": "Blake JA, Eppig JT, Kadin JA, Richardson JE, Smith CL, Bult CJ, and the Mouse Genome Database Group.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gkw1040", "created_at": "2021-09-30T08:24:17.174Z", "updated_at": "2021-09-30T08:24:17.174Z"}, {"id": 1210, "pubmed_id": 8091224, "title": "A database for mouse development.", "year": 1994, "url": "http://doi.org/10.1126/science.8091224", "authors": "Ringwald M,Baldock R,Bard J,Kaufman M,Eppig JT,Richardson JE,Nadeau JH,Davidson D", "journal": "Science", "doi": "10.1126/science.8091224", "created_at": "2021-09-30T08:24:34.858Z", "updated_at": "2021-09-30T08:24:34.858Z"}, {"id": 1493, "pubmed_id": 15608240, "title": "The Mouse Genome Database (MGD): from genes to mice--a community resource for mouse biology.", "year": 2004, "url": "http://doi.org/10.1093/nar/gki113", "authors": "Eppig JT. et al.", "journal": "Nucleic Acids Res.", "doi": "10.1093/nar/gki113", "created_at": "2021-09-30T08:25:07.193Z", "updated_at": "2021-09-30T08:25:07.193Z"}], "licence-links": [{"licence-name": "MGI Warranty Disclaimer and Copyright Notice", "licence-id": 511, "link-id": 605, "relation": "undefined"}, {"licence-name": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL) 1.0", "licence-id": 620, "link-id": 606, "relation": "undefined"}], "url-for-logo": null}} +{"id": "2351", "type": "fairsharing-records", "attributes": {"created-at": "2016-10-21T17:32:37.000Z", "updated-at": "2021-12-06T10:48:58.824Z", "metadata": {"doi": "10.25504/FAIRsharing.pcs58g", "name": "GrainGenes, a Database for Triticeae and Avena", "status": "ready", "contacts": [{"contact-name": "GrainGenes Feedback", "contact-email": "curator@wheat.pw.usda.gov"}], "homepage": "https://wheat.pw.usda.gov/GG3/", "citations": [], "identifier": 2351, "description": "The GrainGenes website hosts a wealth of information for researchers working on Triticeae species, oat and their wild relatives. The website hosts a database encompassing information such as genetic maps, genes, alleles, genetic markers, phenotypic data, quantitative trait loci studies, experimental protocols and publications. The database can be queried by text searches, browsing, Boolean queries, MySQL commands, or by using pre-made queries created by the curators. GrainGenes is not solely a database, but serves as an informative site for researchers and a means to communicate project aims, outcomes and a forum for discussion.", "abbreviation": "GrainGenes", "support-links": [{"url": "http://wheat.pw.usda.gov/GG3/feedback/", "type": "Help documentation"}, {"url": "http://graingenes.org/grains.welcome.html", "type": "Mailing list"}, {"url": "http://wheat.pw.usda.gov/GG3/db-info", "type": "Help documentation"}], "year-creation": 1992, "data-processes": [{"url": "http://wheat.pw.usda.gov/GG3/quickquery", "name": "Quick Queries", "type": "data access"}, {"url": "http://wheat.pw.usda.gov/cgi-bin/GG3/browse.cgi", "name": "Database Browser", "type": "data access"}, {"url": "http://wheat.pw.usda.gov/GG3/quickquery", "name": "Advanced Queries", "type": "data access"}, {"url": "http://wheat.pw.usda.gov/cgi-bin/GG3/sql.cgi", "name": "Download Specification", "type": "data release"}], "associated-tools": [{"url": "http://probes.pw.usda.gov/GSP/", "name": "GSP: Genome Specific Primers"}, {"url": "http://wheat.pw.usda.gov/GG3/blast", "name": "BLAST 2.2.23"}, {"url": "http://wheat.pw.usda.gov/cmap/", "name": "CMap 1.01"}, {"url": "http://wheat.pw.usda.gov/GG3/genome_browser", "name": "JBrowse Genome Browser 1.69"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012363", "name": "re3data:r3d100012363", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_007696", "name": "SciCrunch:RRID:SCR_007696", "portal": "SciCrunch"}], "deprecation-reason": null}, "legacy-ids": ["biodbcore-000829", "bsg-d000829"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Genomics", "Life Science", "Phenomics"], "domains": ["Genetic map", "Physical map", "Genome map", "Deoxyribonucleic acid", "Publication", "Genetic polymorphism", "Protocol", "Quantitative trait loci", "Allele"], "taxonomies": ["Aegilops tauschii", "Avena", "Hordeum", "Hordeum vulgare", "Secale", "Triticeae", "Triticum", "Triticum aestivum", "Triticum monococcum"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: GrainGenes, a Database for Triticeae and Avena", "abbreviation": "GrainGenes", "url": "https://fairsharing.org/10.25504/FAIRsharing.pcs58g", "doi": "10.25504/FAIRsharing.pcs58g", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GrainGenes website hosts a wealth of information for researchers working on Triticeae species, oat and their wild relatives. The website hosts a database encompassing information such as genetic maps, genes, alleles, genetic markers, phenotypic data, quantitative trait loci studies, experimental protocols and publications. The database can be queried by text searches, browsing, Boolean queries, MySQL commands, or by using pre-made queries created by the curators. GrainGenes is not solely a database, but serves as an informative site for researchers and a means to communicate project aims, outcomes and a forum for discussion.", "publications": [{"id": 790, "pubmed_id": null, "title": "GrainGenes: a Genomic Database for Triticeae and Avena", "year": 2007, "url": "http://doi.org/10.1007/978-1-59745-535-0_14", "authors": "Helen O'Sullivan", "journal": "Plant Bioinformatics", "doi": "10.1007/978-1-59745-535-0_14", "created_at": "2021-09-30T08:23:47.070Z", "updated_at": "2021-09-30T08:23:47.070Z"}, {"id": 1769, "pubmed_id": null, "title": "GrainGenes 2.0. An Improved Resource for the Small-Grains Community", "year": 2005, "url": "https://academic.oup.com/plphys/article/139/2/643/6113422", "authors": "Victoria Carollo, David E. Matthews, Gerard R. Lazo, Thomas K. Blake, David D. Hummel, Nancy Lui, David L. Hane, and Olin D. Anderson", "journal": "Plant Physiology", "doi": "10.1104/pp.105.064485", "created_at": "2021-09-30T08:25:38.494Z", "updated_at": "2021-09-30T08:25:38.494Z"}], "licence-links": [], "url-for-logo": null}} +{"id": "1693", "type": "fairsharing-records", "attributes": {"created-at": "2014-11-04T15:23:40.000Z", "updated-at": "2021-12-06T10:49:07.474Z", "metadata": {"doi": "10.25504/FAIRsharing.rkpmhn", "name": "Termini-Oriented Protein Function INferred Database", "status": "ready", "contacts": [{"contact-name": "Philipp Lange", "contact-email": "philipp.lange@ubc.ca"}], "homepage": "https://topfind.clip.msl.ubc.ca/", "identifier": 1693, "description": "The Termini-Oriented Protein Function INferred Database (TopFIND) is an integrated knowledgebase focused on protein termini, their formation by proteases and functional implications. It contains information about the processing and the processing state of proteins and functional implications thereof derived from research literature, contributions by the scientific community and biological databases.", "abbreviation": "TopFIND", "access-points": [{"url": "http://clipserve.clip.ubc.ca/topfind/api", "name": "TopFIND Application Programming Interfaces", "type": "Other"}], "support-links": [{"url": "topfind.clip@gmail.com", "name": "General Contact", "type": "Support email"}, {"url": "http://clipserve.clip.ubc.ca/topfind/documentation", "type": "Help documentation"}, {"url": "https://en.wikipedia.org/wiki/TopFIND", "type": "Wikipedia"}], "year-creation": 2011, "data-processes": [{"url": "https://topfind.clip.msl.ubc.ca/proteins/protsearch", "name": "Protein Search", "type": "data access"}, {"url": "https://topfind.clip.msl.ubc.ca/contribute/index", "name": "Contribute", "type": "data curation"}, {"url": "https://topfind.clip.msl.ubc.ca/documentations/download", "name": "download", "type": "data release"}, {"url": "https://topfind.clip.msl.ubc.ca/", "name": "Search", "type": "data access"}, {"url": "https://topfind.clip.msl.ubc.ca/pathfinder", "name": "PathFINDer", "type": "data access"}, {"url": "https://topfind.clip.msl.ubc.ca/topfinder", "name": "TopFINDer", "type": "data access"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012721", "name": "re3data:r3d100012721", "portal": "re3data"}, {"url": "https://scicrunch.org/resolver/RRID:SCR_008918", "name": "SciCrunch:RRID:SCR_008918", "portal": "SciCrunch"}]}, "legacy-ids": ["biodbcore-000149", "bsg-d000149"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Life Science"], "domains": ["Proteolytic digest", "Protein domain", "Evidence", "Annotation", "Sequence annotation", "Network model", "C-terminal amino acid residue", "N-terminal amino acid residue", "Alternative splicing", "Translation initiation", "Protein C-terminus binding", "Protein modification", "Protein N-terminus binding", "Molecular interaction", "Protocol", "Protease cleavage", "Amino acid sequence", "Protease site"], "taxonomies": ["Arabidopsis thaliana", "Escherichia coli", "Homo sapiens", "Mus musculus", "Saccharomyces cerevisiae"], "user-defined-tags": [], "countries": ["Canada"], "name": "FAIRsharing record for: Termini-Oriented Protein Function INferred Database", "abbreviation": "TopFIND", "url": "https://fairsharing.org/10.25504/FAIRsharing.rkpmhn", "doi": "10.25504/FAIRsharing.rkpmhn", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The Termini-Oriented Protein Function INferred Database (TopFIND) is an integrated knowledgebase focused on protein termini, their formation by proteases and functional implications. It contains information about the processing and the processing state of proteins and functional implications thereof derived from research literature, contributions by the scientific community and biological databases.", "publications": [{"id": 616, "pubmed_id": 25332401, "title": "Proteome TopFIND 3.0 with TopFINDer and PathFINDer: database and analysis tools for the association of protein termini to pre- and post-translational events.", "year": 2014, "url": "http://doi.org/10.1093/nar/gku1012", "authors": "Fortelny N,Yang S,Pavlidis P,Lange PF,Overall CM", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gku1012", "created_at": "2021-09-30T08:23:27.766Z", "updated_at": "2021-09-30T11:28:48.217Z"}, {"id": 1287, "pubmed_id": 21822272, "title": "TopFIND, a knowledgebase linking protein termini with function.", "year": 2011, "url": "http://doi.org/10.1038/nmeth.1669", "authors": "Lange PF., Overall CM.,", "journal": "Nature Methods", "doi": "10.1038/nmeth.1669", "created_at": "2021-09-30T08:24:43.650Z", "updated_at": "2021-09-30T08:24:43.650Z"}, {"id": 1304, "pubmed_id": 22102574, "title": "TopFIND 2.0\u2014linking protein termini with proteolytic processing and modifications altering protein function", "year": 2011, "url": "http://doi.org/10.1093/nar/gkr1025", "authors": "Philipp F Lange, Pitter F Huesgen, Christopher M Overall", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkr1025", "created_at": "2021-09-30T08:24:45.601Z", "updated_at": "2021-09-30T08:24:45.601Z"}], "licence-links": [{"licence-name": "TopFIND Data Policies and Disclaimer", "licence-id": 789, "link-id": 2064, "relation": "undefined"}, {"licence-name": "Creative Commons Attribution-NoDerivs 3.0 Unported (CC BY-ND 3.0)", "licence-id": 169, "link-id": 2065, "relation": "undefined"}], "url-for-logo": null}} +{"id": "3580", "type": "fairsharing-records", "attributes": {"created-at": "2021-10-18T17:16:24.464Z", "updated-at": "2022-02-08T10:55:26.185Z", "metadata": {"doi": "10.25504/FAIRsharing.c28bae", "name": "Geothermal Data Repository", "status": "ready", "contacts": [{"contact-name": "GDR Curation Team", "contact-email": "GDRHelp@ee.doe.gov", "contact-orcid": null}, {"contact-name": "OpenEI Webmaster", "contact-email": "OpenEI.Webmaster@nrel.gov", "contact-orcid": null}], "homepage": "https://gdr.openei.org/home", "citations": [], "identifier": 3580, "description": "The GDR is the submission point for all data collected from researchers funded by the U.S. Department of Energy's Geothermal Technologies Office. It was established to receive, manage, and make available all geothermal-relevant data generated from projects funded by the DOE Geothermal Technologies Office. This includes data from GTO-funded projects associated with any portion of the geothermal project life-cycle (exploration, development, operation), as well as data produced by GTO-funded research.", "abbreviation": "GDR", "data-curation": {"type": "manual"}, "support-links": [{"url": "https://gdr.openei.org/faq", "name": "GDR Frequently Asked Questions", "type": "Frequently Asked Questions (FAQs)"}, {"url": "https://www.energy.gov/eere/geothermal/data-provision-instructions-all-doe-geothermal-technologies-office-funds-recipients", "name": "Instructions for All DOE Geothermal Technologies Office Funds Recipients", "type": "Help documentation"}, {"url": "https://gdr.openei.org/submissions/1", "name": "GDR Data Management and Best Practices for Submitters and Curators", "type": "Training documentation"}], "year-creation": 2013, "data-processes": [{"url": "https://gdr.openei.org/search", "name": "Search & Browse", "type": "data access"}], "data-versioning": "yes", "cross-references": [{"url": "https://www.re3data.org/repository/r3d100011915", "name": "re3data:r3d100011915", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-contact-information": "yes", "data-preservation-policy": {}, "data-deposition-condition": {"type": "controlled"}, "citation-to-related-publications": "yes", "data-access-for-pre-publication-review": "yes"}, "legacy-ids": [], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Geochemistry", "Geology", "Geophysics", "Geodesy", "Earth Science", "Remote Sensing"], "domains": ["Experimental measurement"], "taxonomies": ["Not applicable"], "user-defined-tags": ["Geographic Information System (GIS)", "Geomagnetism", "Geospatial Data", "Renewable Energy", "Seismology"], "countries": ["United States"], "name": "FAIRsharing record for: Geothermal Data Repository", "abbreviation": "GDR", "url": "https://fairsharing.org/10.25504/FAIRsharing.c28bae", "doi": "10.25504/FAIRsharing.c28bae", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: The GDR is the submission point for all data collected from researchers funded by the U.S. Department of Energy's Geothermal Technologies Office. It was established to receive, manage, and make available all geothermal-relevant data generated from projects funded by the DOE Geothermal Technologies Office. This includes data from GTO-funded projects associated with any portion of the geothermal project life-cycle (exploration, development, operation), as well as data produced by GTO-funded research.", "publications": [], "licence-links": [{"licence-name": "Creative Commons Attribution 4.0 International (CC BY 4.0)", "licence-id": 167, "link-id": 2486, "relation": "applies_to_content"}, {"licence-name": "OpenEI Disclaimer", "licence-id": 885, "link-id": 2487, "relation": "applies_to_content"}], "url-for-logo": null}} +{"id": "2573", "type": "fairsharing-records", "attributes": {"created-at": "2018-02-28T13:01:09.000Z", "updated-at": "2022-02-08T10:26:11.971Z", "metadata": {"doi": "10.25504/FAIRsharing.2f668a", "name": "CottonGen", "status": "ready", "contacts": [], "homepage": "https://www.cottongen.org/", "citations": [], "identifier": 2573, "description": "CottonGen is a cotton community genomics, genetics and breeding database being developed to enable basic, translational and applied research in cotton. It is being built using the open-source Tripal database infrastructure. CottonGen supercedes CottonDB and the Cotton Marker Database, with enhanced tools for easier data sharing, mining, visualization and data retrieval of cotton research data. CottonGen contains annotated whole genome sequences, unigenes from expressed sequence tags (ESTs), markers, trait loci, genetic maps, genes, taxonomy, germplasm, publications and communication resources for the cotton community. Annotated whole genome sequences of Gossypium raimondii are available with aligned genetic markers and transcripts.", "abbreviation": "CottonGen", "data-curation": {}, "support-links": [{"url": "https://www.cottongen.org/contact", "name": "CottonGen Contact Form", "type": "Contact form"}, {"url": "https://www.cottongen.org/data_overview/1", "name": "Data Overview", "type": "Help documentation"}, {"url": "https://www.cottongen.org/data/trait_ontology", "name": "Cotton Trait Ontology", "type": "Help documentation"}, {"url": "https://www.cottongen.org/about", "name": "About CottonGen", "type": "Help documentation"}, {"url": "https://twitter.com/CottonGen_news", "name": "@CottonGen_news", "type": "Twitter"}], "year-creation": 2010, "data-processes": [{"url": "https://www.cottongen.org/data/download", "name": "Data Download", "type": "data access"}, {"url": "https://www.cottongen.org/data/submission", "name": "Submit Data", "type": "data access"}, {"url": "https://www.cottongen.org/find/qtl", "name": "Search QTLs", "type": "data access"}, {"url": "https://www.cottongen.org/search/markers", "name": "Search Markers", "type": "data access"}, {"url": "https://www.cottongen.org/find/featuremap/summary", "name": "Search Map", "type": "data access"}, {"url": "https://www.cottongen.org/search/germplasm", "name": "Search Germplasm", "type": "data access"}, {"url": "https://www.cottongen.org/find/ssr_genotype", "name": "Search Genotype", "type": "data access"}, {"url": "https://www.cottongen.org/find/genes", "name": "Search Genes and Transcripts", "type": "data access"}, {"url": "https://www.cottongen.org/find/features", "name": "Search Sequences", "type": "data access"}, {"url": "https://www.cottongen.org/search/trait", "name": "Search Traits", "type": "data access"}], "associated-tools": [{"url": "https://www.cottongen.org/blast", "name": "BLAST"}, {"url": "https://www.cottongen.org/tools/jbrowse", "name": "JBrowse"}, {"url": "https://www.cottongen.org/retrieve/sequences", "name": "Sequence Retrieval"}, {"url": "https://www.cottongen.org/node/6372709", "name": "MapViewer"}], "cross-references": [{"url": "https://www.re3data.org/repository/r3d100012668", "name": "re3data:r3d100012668", "portal": "re3data"}], "deprecation-reason": "", "data-access-condition": {}, "resource-sustainability": {}, "data-preservation-policy": {}, "data-deposition-condition": {}, "citation-to-related-publications": "yes"}, "legacy-ids": ["biodbcore-001056", "bsg-d001056"], "fairsharing-registry": "Database", "record-type": "knowledgebase_and_repository", "subjects": ["Plant Breeding", "Genomics", "Agriculture", "Life Science", "Plant Genetics"], "domains": ["Genetic map", "Whole genome sequencing"], "taxonomies": ["Gossypium"], "user-defined-tags": [], "countries": ["United States"], "name": "FAIRsharing record for: CottonGen", "abbreviation": "CottonGen", "url": "https://fairsharing.org/10.25504/FAIRsharing.2f668a", "doi": "10.25504/FAIRsharing.2f668a", "fairsharing-licence": "https://creativecommons.org/licenses/by-sa/4.0/. Please link to https://fairsharing.org and https://api.fairsharing.org/img/fairsharing-attribution.svg for attribution.", "description": "This FAIRsharing record describes: CottonGen is a cotton community genomics, genetics and breeding database being developed to enable basic, translational and applied research in cotton. It is being built using the open-source Tripal database infrastructure. CottonGen supercedes CottonDB and the Cotton Marker Database, with enhanced tools for easier data sharing, mining, visualization and data retrieval of cotton research data. CottonGen contains annotated whole genome sequences, unigenes from expressed sequence tags (ESTs), markers, trait loci, genetic maps, genes, taxonomy, germplasm, publications and communication resources for the cotton community. Annotated whole genome sequences of Gossypium raimondii are available with aligned genetic markers and transcripts.", "publications": [{"id": 2085, "pubmed_id": 24203703, "title": "CottonGen: a genomics, genetics and breeding database for cotton research.", "year": 2013, "url": "http://doi.org/10.1093/nar/gkt1064", "authors": "Yu J,Jung S,Cheng CH,Ficklin SP,Lee T,Zheng P,Jones D,Percy RG,Main D", "journal": "Nucleic Acids Research", "doi": "10.1093/nar/gkt1064", "created_at": "2021-09-30T08:26:15.055Z", "updated_at": "2021-09-30T11:29:28.187Z"}], "licence-links": [], "url-for-logo": null}} diff --git a/data/in/openDoar.tsv b/data/in/openDoar.tsv new file mode 100644 index 0000000..3944dae --- /dev/null +++ b/data/in/openDoar.tsv @@ -0,0 +1,5812 @@ +system_metadata.id repository_metadata.name repository_metadata.alternativename repository_metadata.url repository_metadata.description repository_metadata.type repository_metadata.content_languages system_metadata.date_modified system_metadata.date_created repository_metadata.content_subjects repository_metadata.content_types organization policy_urls repository_metadata.software repository_metadata.oai_url system_metadata.publicly_visible repository_metadata.repository_status repository_metadata.fulltext_record_count repository_metadata.metadata_record_count +134 {"name": "eldorado - repository of the tu dortmund", "language": "en"} [{"name": "eldorado - ressourcen aus und f\u00fcr lehre, studium und forschung", "language": "de"}] https://eldorado.tu-dortmund.de institutional [] 2022-01-12 15:34:54 2005-12-19 14:57:52 ["arts", "humanities", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "technische universit\u00e4t dortmund", "alternativeName": "tu dortmund", "country": "de", "url": "https://www.tu-dortmund.de", "identifier": [{"identifier": "https://ror.org/01k97gp34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://eldorado.tu-dortmund.de/oai/request yes 9629 20963 +58 {"name": "archive ouverte en sciences de linformation et de la communication", "language": "fr"} [{"acronym": "@rchivesic"}] https://archivesic.ccsd.cnrs.fr institutional [] 2022-01-12 15:34:53 2006-01-13 12:48:32 ["arts", "science", "technology", "engineering", "mathematics", "health and medicine", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "centre pour la communication scientifique directe", "alternativeName": "ccsd", "country": "fr", "url": "https://www.ccsd.cnrs.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/archivesic yes 55492 1137498 +93 {"name": "digitalcommons@the texas medical center", "language": "en"} [] http://digitalcommons.library.tmc.edu/ institutional [] 2022-01-12 15:34:53 2006-02-14 11:16:12 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "texas medical center", "alternativeName": "tmc", "country": "us", "url": "https://www.tmc.edu", "identifier": [{"identifier": "https://ror.org/00dqsbj20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.library.tmc.edu/do/oai/ yes 2658 7268 +68 {"name": "cognitive sciences eprint archive", "language": "en"} [{"acronym": "cogprints"}] http://cogprints.org/ disciplinary [] 2022-01-12 15:34:53 2006-01-04 15:01:23 ["humanities", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://cogprints.org/cgi/oai2 yes 2895 4277 +84 {"name": "digital commons@carleton college", "language": "en"} [] http://digitalcommons.carleton.edu/ institutional [] 2022-01-12 15:34:53 2006-01-04 16:07:58 ["humanities", "science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "carleton college", "alternativeName": "", "country": "us", "url": "https://www.carleton.edu", "identifier": [{"identifier": "https://ror.org/03jep7677", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 42 +25 {"name": "repositorio educativo digital universidad aut\u00f3noma de occidente", "language": "en"} [] http://red.uao.edu.co/ institutional [] 2022-01-12 15:34:52 2005-12-19 14:45:38 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad aut\u00f3noma de occidente", "alternativeName": "", "country": "co", "url": "http://www.uao.edu.co/", "identifier": [{"identifier": "https://ror.org/02drkkh02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://red.uao.edu.co/oai/request yes 5405 +156 {"name": "gfz german research centre for geosciences", "language": "en"} [{"acronym": "gfzpublic"}] https://gfzpublic.gfz-potsdam.de institutional [] 2022-01-12 15:34:55 2006-02-23 15:56:48 ["humanities", "science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "helmholtz centre potsdam", "alternativeName": "gfz", "country": "de", "url": "https://www.gfz-potsdam.de/", "identifier": [{"identifier": "https://ror.org/04z8jg394", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://gfzpublic.gfz-potsdam.de/oai yes 10000 +7 {"name": "archimer - ifremers institutional repository", "language": "en"} [{"acronym": "archimer"}] http://archimer.ifremer.fr institutional [] 2022-01-12 15:34:52 2006-02-02 17:01:37 ["humanities", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "french research institute for exploitation of the sea", "alternativeName": "ifremer", "country": "fr", "url": "http://www.ifremer.fr", "identifier": [{"identifier": "https://ror.org/044jxhp58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://archimer.ifremer.fr/html/policies.htm", "type": "metadata"}, {"policy_url": "https://archimer.ifremer.fr/html/policies.htm", "type": "data"}] {"name": "", "version": ""} http://www.ifremer.fr/docelec/oai/oaihandler yes 26734 +11 {"name": "archive of european integration", "language": "en"} [{"acronym": "aei"}] http://aei.pitt.edu/ disciplinary [] 2022-01-12 15:34:52 2006-02-15 11:18:23 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of pittsburgh", "alternativeName": "up", "country": "us", "url": "http://www.pitt.edu/", "identifier": [{"identifier": "https://ror.org/01an3r305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://aei.pitt.edu/cgi/oai2 yes 76762 82220 +169 {"name": "history & theory of psychology eprint archive", "language": "en"} [{"acronym": "htp prints"}] http://htpprints.yorku.ca/ disciplinary [] 2022-01-12 15:34:55 2005-12-21 11:56:28 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "york university", "alternativeName": "", "country": "ca", "url": "https://www.yorku.ca", "identifier": [{"identifier": "https://ror.org/05fq50484", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://htpprints.yorku.ca/perl/oai2 yes 119 +14 {"name": "arena publications", "language": "en"} [] http://www.sv.uio.no/arena/english/research/publications/arena-publications/ institutional [] 2022-01-12 15:34:52 2006-02-15 09:42:03 ["humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitetet i oslo", "alternativeName": "uio", "country": "no", "url": "http://www.uio.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 84 +41 {"name": "caltech engineering and science online", "language": "en"} [] http://calteches.library.caltech.edu/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:47:04 ["science", "mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://calteches.library.caltech.edu/cgi/oai2 yes 4439 +18 {"name": "arxiv.org e-print archive", "language": "en"} [] http://arxiv.org/ disciplinary [] 2022-01-12 15:34:52 2006-01-04 14:23:17 ["science", "mathematics", "technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "cornell university", "alternativeName": "", "country": "us", "url": "http://www.cornell.edu/", "identifier": [{"identifier": "https://ror.org/05bnh6r87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://export.arxiv.org/oai2 yes 1418385 +115 {"name": "dspace at indian institute of management kozhikode", "language": "en"} [{"acronym": "dspace@iimk"}] http://dspace.iimk.ac.in/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:54:34 ["science", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indian institute of management kozhikode", "alternativeName": "iimk", "country": "in", "url": "http://www.iimk.ac.in/", "identifier": [{"identifier": "https://ror.org/03m1xdc36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.iimk.ac.in/dspace-oai/request yes 0 810 +70 {"name": "cranfield ceres", "language": "en"} [] https://dspace.lib.cranfield.ac.uk/ institutional [] 2022-01-12 15:34:53 2006-01-24 11:06:09 ["science", "social sciences", "technology", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "cranfield university", "alternativeName": "", "country": "gb", "url": "http://www.cranfield.ac.uk", "identifier": [{"identifier": "https://ror.org/05cncd958", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.lib.cranfield.ac.uk/oai/request yes 9494 +40 {"name": "caltech theses and dissertations", "language": "en"} [] http://thesis.library.caltech.edu/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:46:35 ["science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://thesis.library.caltech.edu/cgi/oai2 yes 9072 10399 +94 {"name": "digital collections @ fau libraries", "language": "en"} [] http://digitool.fcla.edu/r/ institutional [] 2022-01-12 15:34:53 2006-03-22 12:59:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "florida atlantic university", "alternativeName": "fau", "country": "us", "url": "http://www.fau.edu/", "identifier": [{"identifier": "https://ror.org/05p8w6387", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.library.fau.edu/depts/digital_library/fauir_policies.htm", "type": "metadata"}] {"name": "digitool", "version": ""} yes 15568 +17 {"name": "unsworks", "language": "en"} [] http://unsworks.unsw.edu.au/ institutional [] 2022-01-12 15:34:52 2006-04-05 11:13:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of new south wales", "alternativeName": "", "country": "au", "url": "http://www.unsw.edu.au/", "identifier": [{"identifier": "https://ror.org/03r8z3t63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://arrow.unsw.edu.au/policy.html", "type": "submission"}] {"name": "fedora", "version": ""} http://unsworks.unsw.edu.au/oai/provider yes 28312 +5 {"name": "the lincoln repository", "language": "en"} [] https://eprints.lincoln.ac.uk institutional [] 2022-01-12 15:34:52 2006-01-04 14:16:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of lincoln", "alternativeName": "", "country": "gb", "url": "https://www.lincoln.ac.uk", "identifier": [{"identifier": "https://ror.org/03yeq9x20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.lincoln.ac.uk/policy.html", "type": "metadata"}, {"policy_url": "http://eprints.lincoln.ac.uk/policy.html", "type": "data"}, {"policy_url": "http://eprints.lincoln.ac.uk/policy.html", "type": "content"}, {"policy_url": "http://eprints.lincoln.ac.uk/policy.html", "type": "submission"}, {"policy_url": "http://eprints.lincoln.ac.uk/policy.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://eprints.lincoln.ac.uk/cgi/oai2 yes 18422 +88 {"name": "dspace@mit", "language": "en"} [] http://dspace.mit.edu/ institutional [] 2022-01-12 15:34:53 2006-01-04 09:38:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "massachusetts institute of technology", "alternativeName": "mit", "country": "us", "url": "http://web.mit.edu/", "identifier": [{"identifier": "https://ror.org/042nb2s44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libguides.mit.edu/c.php?g=176372&p=1158986#collapse2", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspace.mit.edu/oai/request yes 101932 +133 {"name": "edoc-server. open-access-publikationsserver der humboldt-universit\u00e4t zu berlin", "language": "en"} [] https://edoc.hu-berlin.de/ institutional [] 2022-01-12 15:34:54 2005-12-19 14:39:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "humboldt-universit\u00e4t zu berlin", "alternativeName": "hu", "country": "de", "url": "https://www.hu-berlin.de", "identifier": [{"identifier": "https://ror.org/01hcx6992", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_leitlinien/nutzung_leit", "type": "metadata"}, {"policy_url": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_leitlinien/nutzung_leit", "type": "data"}, {"policy_url": "http://edoc.hu-berlin.de/e_info_en/policy.php", "type": "content"}, {"policy_url": "http://edoc.hu-berlin.de/e_info_en/policy.php", "type": "submission"}] {"name": "dspace", "version": ""} http://edoc.hu-berlin.de/oai yes 19052 +109 {"name": "apollo - university of cambridge repository", "language": "en"} [] https://www.repository.cam.ac.uk institutional [] 2022-01-12 15:34:54 2006-01-13 12:56:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "https://www.cam.ac.uk", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://osc.cam.ac.uk/repository/repository-terms-use", "type": "content"}, {"policy_url": "https://osc.cam.ac.uk/repository/repository-terms-use", "type": "data"}, {"policy_url": "https://osc.cam.ac.uk/repository/repository-terms-use", "type": "submission"}, {"policy_url": "https://doi.org/10.17863/cam.10214", "type": "preservation"}] {"name": "dspace", "version": ""} https://www.repository.cam.ac.uk/oai/request yes 225631 +26 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es da universidade de s\u00e3o paulo", "language": "en"} [{"acronym": "digital library usp"}] http://www.teses.usp.br/ institutional [] 2022-01-12 15:34:52 2006-02-13 15:16:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of s\u00e3o paulo", "alternativeName": "usp", "country": "br", "url": "http://www.usp.br", "identifier": [{"identifier": "https://ror.org/036rp1748", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 76984 +163 {"name": "dokumentenserver der georg-august-universit\u00e4t g\u00f6ttingen", "language": "en"} [{"acronym": "goedoc"}] http://webdoc.sub.gwdg.de/ institutional [] 2022-01-12 15:34:55 2006-02-15 16:50:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "georg-august-universit\u00e4t g\u00f6ttingen", "alternativeName": "sub g\u00f6ttingen", "country": "de", "url": "http://www.uni-goettingen.de/", "identifier": [{"identifier": "https://ror.org/01y9bpm73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 102772 +66 {"name": "th\u00e8ses de linsa de lyon", "language": "en"} [] http://theses.insa-lyon.fr/ institutional [] 2022-01-12 15:34:53 2006-02-14 15:44:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "institut national des sciences appliqu\u00e9es de lyon", "alternativeName": "insa de lyon", "country": "fr", "url": "http://www.insa-lyon.fr/", "identifier": [{"identifier": "https://ror.org/050jn9y42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://docinsa.insa-lyon.fr/oai/oai2.php yes 1028 +61 {"name": "central connecticut state university digital collections", "language": "en"} [{"acronym": "ccsu digital collections"}] http://content.library.ccsu.edu/cdm/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:58:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central connecticut state university", "alternativeName": "ccsu", "country": "us", "url": "http://www.ccsu.edu/", "identifier": [{"identifier": "https://ror.org/054gzqw08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 5451 +27 {"name": "th\u00e8ses et e-prints bictel/e", "language": "fr"} [{"acronym": "bictel/e"}] http://www.bictel.be/ aggregating [] 2022-01-12 15:34:52 2006-01-03 12:29:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "biblioth\u00e8que interuniversitaire de la communaut\u00e9 fran\u00e7aise de belgique", "alternativeName": "bicfb", "country": "be", "url": "https://www.bicfb.be", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.bictel.be:8080/oaisolr/request yes 76 5298 +24 {"name": "bergen open research archive", "language": "en"} [{"acronym": "bora"}] https://bora.uib.no institutional [] 2022-01-12 15:34:52 2006-01-04 14:25:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of bergen", "alternativeName": "uib", "country": "no", "url": "https://www.uib.no", "identifier": [{"identifier": "https://ror.org/03zga2b32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bora.uib.no/bora-oai yes 14319 +172 {"name": "hokkaido university collection of scholarly and academic papers", "language": "en"} [{"acronym": "huscap"}, {"name": "\u5317\u6d77\u9053\u5927\u5b66\u5b66\u8853\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://eprints.lib.hokudai.ac.jp/ institutional [] 2022-01-12 15:34:55 2006-02-08 12:34:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "hokkaido university", "alternativeName": "", "country": "jp", "url": "https://www.hokudai.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eprints.lib.hokudai.ac.jp/dspace-oai/request yes 57986 +157 {"name": "mason archival repository service", "language": "en"} [{"acronym": "mars"}] http://mars.gmu.edu institutional [] 2022-01-12 15:34:55 2006-01-04 12:14:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "george mason university", "alternativeName": "", "country": "us", "url": "http://www.gmu.edu/", "identifier": [{"identifier": "https://ror.org/02jqj7156", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://mars.gmu.edu/oai/request?verb=identify yes 0 7565 +167 {"name": "tricollege libraries institutional repository", "language": "en"} [{"acronym": "triceratops"}] http://thesis.haverford.edu/dspace/ institutional [] 2022-01-12 15:34:55 2005-12-20 16:54:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "haverford college, bryn mawr college, swarthmore college", "alternativeName": "", "country": "us", "url": "http://www.haverford.edu/", "identifier": [{"identifier": "https://ror.org/04fnrxr62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://thesis.haverford.edu/dspace-oai/request yes 0 13595 +149 {"name": "electronic theses and dissertations at indian institute of science", "language": "en"} [{"acronym": "edt@iisc"}] http://etd.ncsi.iisc.ernet.in/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:05:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "indian institute of science", "alternativeName": "iisc", "country": "in", "url": "http://www.iisc.ernet.in/", "identifier": [{"identifier": "https://ror.org/04dese585", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://etd.ncsi.iisc.ernet.in/dspace-oai/request yes 3779 +131 {"name": "winnspace repository", "language": "en"} [] http://winnspace.uwinnipeg.ca/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:31:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of winnipeg", "alternativeName": "", "country": "ca", "url": "http://www.uwinnipeg.ca/", "identifier": [{"identifier": "https://ror.org/02gdzyx04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://winnspace.uwinnipeg.ca/oai/request yes 743 1423 +145 {"name": "escholarshare at drake university", "language": "en"} [] http://escholarshare.drake.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:00:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "drake university", "alternativeName": "", "country": "us", "url": "http://www.drake.edu/", "identifier": [{"identifier": "https://ror.org/001skmk61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://escholarshare.drake.edu/oai/request yes 1112 1836 +114 {"name": "dspace universidad de talca", "language": "en"} [] http://dspace.utalca.cl/index.jsp institutional [] 2022-01-12 15:34:54 2006-04-07 12:08:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad de talca", "alternativeName": "utalca", "country": "cl", "url": "https://www.utalca.cl", "identifier": [{"identifier": "https://ror.org/01s4gpq44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.utalca.cl/oai/request yes 6073 11406 +73 {"name": "espace", "language": "en"} [] https://espace.curtin.edu.au institutional [] 2022-01-12 15:34:53 2006-01-04 09:08:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "curtin university", "alternativeName": "", "country": "au", "url": "https://www.curtin.edu.au", "identifier": [{"identifier": "https://ror.org/02n415q13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://espace.curtin.edu.au/oai/request yes 3131 71212 +116 {"name": "dspace@nitr", "language": "en"} [] http://dspace.nitrkl.ac.in/dspace/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:13:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national institute of technology, rourkela", "alternativeName": "nitr", "country": "in", "url": "http://www.nitrkl.ac.in/", "identifier": [{"identifier": "https://ror.org/011gmn932", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nitrkl.ac.in:8080/dspace-oai/request? yes 2850 +101 {"name": "utrecht university repository", "language": "en"} [] http://dspace.library.uu.nl institutional [] 2022-01-12 15:34:54 2006-01-13 12:55:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of utrecht", "alternativeName": "", "country": "nl", "url": "https://www.uu.nl", "identifier": [{"identifier": "https://ror.org/04pp8hn57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.library.uu.nl/oai/request yes 1686 185637 +121 {"name": "duo research archive", "language": "en"} [{"name": "duo vitenarkiv", "language": "no"}] http://www.duo.uio.no/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:21:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "university of oslo", "alternativeName": "uio", "country": "no", "url": "https://www.uio.no", "identifier": [{"identifier": "https://ror.org/01xtthb56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 49728 +105 {"name": "document server@uhasselt", "language": "en"} [] https://doclib.uhasselt.be/dspace/ institutional [] 2022-01-12 15:34:54 2006-01-24 15:46:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "uhasselt", "alternativeName": "hasselt university", "country": "be", "url": "https://www.uhasselt.be", "identifier": [{"identifier": "https://ror.org/04nbhqj75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://doclib.uhasselt.be/dspace-oai/request yes 0 27376 +175 {"name": "hku theses online", "language": "en"} [] http://hub.hku.hk/handle/10722/1057 institutional [] 2022-01-12 15:34:55 2005-12-21 12:44:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of hong kong", "alternativeName": "hku", "country": "cn", "url": "http://www.hku.hk", "identifier": [{"identifier": "https://ror.org/02zhqgq86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11850 +139 {"name": "media dokumentenserver - staats und universit\u00e4tsbibliothek bremen", "language": "de"} [{"acronym": "e-lib"}] https://media.suub.uni-bremen.de institutional [] 2022-01-12 15:34:54 2005-12-19 15:32:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t bremen", "alternativeName": "", "country": "de", "url": "https://www.uni-bremen.de", "identifier": [{"identifier": "https://ror.org/04ers2y35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://elib.suub.uni-bremen.de/info/metadata_policy.html", "type": "metadata"}, {"policy_url": "https://www.suub.uni-bremen.de/home-english/refworks-and-publishing/publishing-documents/elib-document-server-user-policy/", "type": "data"}, {"policy_url": "https://www.suub.uni-bremen.de/home-english/refworks-and-publishing/publishing-documents/elib-document-server-user-policy/", "type": "content"}, {"policy_url": "https://www.suub.uni-bremen.de/home-english/refworks-and-publishing/publishing-documents/elib-document-server-user-policy/", "type": "submission"}, {"policy_url": "https://www.suub.uni-bremen.de/home-english/refworks-and-publishing/publishing-documents/document-server-technical-documentation/", "type": "preservation"}] {"name": "dspace", "version": ""} https://media.suub.uni-bremen.de/oai/openaire yes 4221 +76 {"name": "dalarna university college electronic archive", "language": "en"} [] http://du.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:53 2006-01-13 12:52:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "dalarna university", "alternativeName": "", "country": "se", "url": "https://www.du.se", "identifier": [{"identifier": "https://ror.org/000hdh770", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://du.diva-portal.org/dice/oai yes 0 9175 +142 {"name": "lule\u00e5 university of technology publications", "language": "en"} [{"name": "publikationer lule\u00e5 tekniska universitet", "language": "sv"}] https://www.ltu.se/publications institutional [] 2022-01-12 15:34:54 2006-02-15 10:38:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "lule\u00e5 tekniska universitet", "alternativeName": "ltu", "country": "se", "url": "http://www.ltu.se/", "identifier": [{"identifier": "https://ror.org/016st3p78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://ltu.diva-portal.org/dice/oai yes 25430 +79 {"name": "anu open research", "language": "en"} [] https://openresearch.anu.edu.au/ institutional [] 2022-01-12 15:34:53 2006-04-05 11:29:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "australian national university", "alternativeName": "", "country": "au", "url": "http://www.anu.edu.au/", "identifier": [{"identifier": "https://ror.org/019wvm592", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} https://openresearch-repository.anu.edu.au/oai/request?verb=identify yes 0 100 +63 {"name": "central european universitys academic archive", "language": "en"} [{"acronym": "ceu academic archive"}] http://ceu.archives.ceu.hu/ institutional [] 2022-01-12 15:34:53 2006-01-03 15:59:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "central european university", "alternativeName": "ceu", "country": "hu", "url": "https://www.ceu.edu", "identifier": [{"identifier": "https://ror.org/02zx40v98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ceu.archives.ceu.hu/perl/oai2 yes 9 +119 {"name": "dcu online research access service", "language": "en"} [{"acronym": "doras"}] http://doras.dcu.ie/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:15:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "dublin city university", "alternativeName": "dcu", "country": "ie", "url": "http://www.dcu.ie/", "identifier": [{"identifier": "https://ror.org/04a1a1e81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://doras.dcu.ie/cgi/oai2 yes 8452 9700 +126 {"name": "e-prints complutense", "language": "es"} [{"acronym": "e-printsucm"}] https://eprints.ucm.es institutional [] 2022-01-12 15:34:54 2006-01-13 12:59:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "complutense university of madrid", "alternativeName": "ucm", "country": "es", "url": "https://www.ucm.es", "identifier": [{"identifier": "https://ror.org/02p0gd045", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://eprints.ucm.es/cgi/oai2 yes 39575 +171 {"name": "hofstra university eprint archive", "language": "en"} [{"acronym": "hofprints"}] http://hofprints.hofstra.edu/ institutional [] 2022-01-12 15:34:55 2006-01-23 12:44:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "hofstra university", "alternativeName": "", "country": "us", "url": "http://www.hofstra.edu", "identifier": [{"identifier": "https://ror.org/03pm18j10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 44 +10 {"name": "theses de lulp", "language": "fr"} [{"acronym": "ulp thesis"}] http://eprints-scd-ulp.u-strasbg.fr/ institutional [] 2022-01-12 15:34:52 2006-01-13 12:35:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de strasbourg", "alternativeName": "ulp", "country": "fr", "url": "https://www.unistra.fr", "identifier": [{"identifier": "https://ror.org/00pg6eq24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints-scd-ulp.u-strasbg.fr/perl/oai2 yes 0 1826 +128 {"name": "e-space at manchester metropolitan university", "language": "en"} [{"acronym": "e-space at mmu"}] http://www.e-space.mmu.ac.uk institutional [] 2022-01-12 15:34:54 2006-04-21 16:59:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "manchester metropolitan university", "alternativeName": "mmu", "country": "gb", "url": "https://www.mmu.ac.uk", "identifier": [{"identifier": "https://ror.org/02hstj355", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://e-space.mmu.ac.uk/cgi/oai2 yes 9414 16606 +152 {"name": "universit\u00e0 degli studi di napoli federico il open archive", "language": "en"} [{"acronym": "fedoa"}] http://www.fedoa.unina.it/ institutional [] 2022-01-12 15:34:54 2006-03-21 12:53:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "universit\u00e0 degli studi di napoli federico il", "alternativeName": "unina", "country": "it", "url": "http://www.unina.it/", "identifier": [{"identifier": "https://ror.org/05290cv24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.fedoa.unina.it/cgi/oai2 yes 6098 9716 +162 {"name": "enlighten - institutional repository of the university of glasgow", "language": "en"} [] https://www.gla.ac.uk/research/enlighten/ institutional [] 2022-01-12 15:34:55 2005-12-20 15:13:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of glasgow", "alternativeName": "", "country": "gb", "url": "http://www.gla.ac.uk/", "identifier": [{"identifier": "https://ror.org/00vtgdb53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.gla.ac.uk/cgi/oai2 yes 36851 152904 +38 {"name": "caltech authors", "language": "en"} [] http://authors.library.caltech.edu/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:45:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://authors.library.caltech.edu/cgi/oai2 yes 66006 96998 +64 {"name": "research support scheme - central european university", "language": "en"} [] http://rss.archives.ceu.hu/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:59:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "central european university", "alternativeName": "ceu", "country": "hu", "url": "https://www.ceu.edu", "identifier": [{"identifier": "https://ror.org/02zx40v98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://rss.archives.ceu.hu/perl/oai2 yes 164 +104 {"name": "qucosa", "language": "en"} [] http://www.qucosa.de/ institutional [] 2022-01-12 15:34:54 2005-12-14 14:52:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "saxon state library", "alternativeName": "", "country": "de", "url": "https://www.slub-dresden.de/", "identifier": [{"identifier": "https://ror.org/03wf51b65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://www.qucosa.de/oai/ yes 23199 +60 {"name": "th\u00e8ses en ligne", "language": "fr"} [{"acronym": "tel"}] http://tel.archives-ouvertes.fr/ aggregating [] 2022-01-12 15:34:53 2006-01-13 12:50:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ccsd", "alternativeName": "centre pour la communication scientifique directe", "country": "fr", "url": "https://www.ccsd.cnrs.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/tel yes 8317 113348 +35 {"name": "university library system - university of messina", "language": "en"} [{"name": "sistema bibliotecario di ateneo - universit\u00e0 degli studi di messina", "language": "it"}] http://cab.unime.it institutional [] 2022-01-12 15:34:53 2006-01-13 12:44:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "unime", "alternativeName": "university of messina", "country": "it", "url": "http://www.unime.it", "identifier": [{"identifier": "https://ror.org/05ctdxz19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 209037 +153 {"name": "digitalcommons@florida international university", "language": "en"} [] http://digitalcommons.fiu.edu/ institutional [] 2022-01-12 15:34:55 2006-03-22 15:24:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "florida international university", "alternativeName": "fiu", "country": "us", "url": "http://www.fiu.edu/", "identifier": [{"identifier": "https://ror.org/02gz6gg07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.fiu.edu/do/oai/ yes 10543 23430 +100 {"name": "digitalcommons@utep", "language": "en"} [] http://digitalcommons.utep.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 09:48:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of texas at el paso", "alternativeName": "utep", "country": "us", "url": "http://www.utep.edu/", "identifier": [{"identifier": "https://ror.org/04d5vba33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.utep.edu/do/oai/ yes 10 21412 +85 {"name": "digitalcommons@connecticut college", "language": "en"} [] http://digitalcommons.conncoll.edu/ institutional [] 2022-01-12 15:34:53 2006-03-22 12:12:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "connecticut college", "alternativeName": "", "country": "us", "url": "http://www.conncoll.edu/", "identifier": [{"identifier": "https://ror.org/01hpqfm28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.conncoll.edu/do/oai/ yes 5639 8531 +87 {"name": "digital commons@trinity", "language": "en"} [] http://digitalcommons.trinity.edu/relig_faculty/2/ institutional [] 2022-01-12 15:34:53 2006-01-13 12:54:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "trinity university", "alternativeName": "", "country": "us", "url": "https://www.trinity.edu", "identifier": [{"identifier": "https://ror.org/00t8gz605"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1160 +148 {"name": "etsu electronic thesis and dissertation archive", "language": "en"} [] http://dc.etsu.edu/honors/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:04:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "east tennessee state university", "alternativeName": "etsu", "country": "us", "url": "https://www.etsu.edu/ehome/", "identifier": [{"identifier": "https://ror.org/05rfqv493", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2117 +91 {"name": "digitalcommons@pace", "language": "en"} [] http://digitalcommons.pace.edu/ institutional [] 2022-01-12 15:34:53 2006-04-21 16:29:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "pace university", "alternativeName": "pace", "country": "us", "url": "http://www.pace.edu/", "identifier": [{"identifier": "https://ror.org/047p7y759", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.pace.edu/do/oai/ yes 4341 5574 +72 {"name": "chiba university repository for access to outcomes from research", "language": "en"} [{"acronym": "curator"}, {"name": "\u5343\u8449\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opac.ll.chiba-u.jp/da/curator/?lang=1 institutional [] 2022-01-12 15:34:53 2006-02-13 15:52:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects"] [{"name": "chiba university", "alternativeName": "", "country": "jp", "url": "https://www.chiba-u.ac.jp/e/", "identifier": [{"identifier": "https://ror.org/01hjzeq58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://opac.ll.chiba-u.jp/mmd_api/oai-pmh/ yes 42971 97628 +147 {"name": "vanderbilt electronic thesis and dissertation archive", "language": "en"} [] http://etd.library.vanderbilt.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:02:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "vanderbilt university", "alternativeName": "", "country": "us", "url": "http://www.vanderbilt.edu/", "identifier": [{"identifier": "https://ror.org/02vm5rt34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://etd.library.vanderbilt.edu/ndltd-oai/oai.pl yes 2545 4961 +138 {"name": "electronic thesis and dissertation library - lsu", "language": "en"} [] http://etd.uis.lsu.edu/cgi-bin/etd-browse/browse institutional [] 2022-01-12 15:34:54 2006-01-04 11:50:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "louisiana state university", "alternativeName": "lsu", "country": "us", "url": "http://www.lsu.edu/", "identifier": [{"identifier": "https://ror.org/05ect4e57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 7801 +137 {"name": "graduate school section of the etd database", "language": "en"} [] https://etda.libraries.psu.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:46:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "pennsylvania state university", "alternativeName": "penn state", "country": "us", "url": "http://www.psu.edu/", "identifier": [{"identifier": "https://ror.org/04p491231", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4860 +108 {"name": "scholarsarchive@osu", "language": "en"} [] http://ir.library.oregonstate.edu institutional [] 2022-01-12 15:34:54 2005-12-14 17:14:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects"] [{"name": "oregon state university", "alternativeName": "osu", "country": "us", "url": "http://oregonstate.edu/", "identifier": [{"identifier": "https://ror.org/00ysfqy60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://osulibrary.oregonstate.edu/sa-termsofuse", "type": "data"}, {"policy_url": "https://ir.library.oregonstate.edu/about#types", "type": "content"}] {"name": "other", "version": ""} http://ir.library.oregonstate.edu/oai/request yes 60417 +174 {"name": "hong kong university of science and technology institutional repository", "language": "en"} [{"acronym": "hkust repository"}] http://repository.ust.hk/ institutional [] 2022-01-12 15:34:55 2005-12-21 12:22:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "hong kong university of science and technology", "alternativeName": "hkust", "country": "cn", "url": "http://www.ust.hk/", "identifier": [{"identifier": "https://ror.org/00q4vv597", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.ust.hk/ir/oai/server yes 11289 +83 {"name": "maastricht university research publications", "language": "en"} [] https://cris.maastrichtuniversity.nl/portal/en/publications/search.html institutional [] 2022-01-12 15:34:53 2006-03-24 16:01:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university maastricht", "alternativeName": "um", "country": "nl", "url": "http://www.maastrichtuniversity.nl/", "identifier": [{"identifier": "https://ror.org/02jz4aj89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://cris.maastrichtuniversity.nl/ws/oai yes 12481 89318 +117 {"name": "waseda university repository", "language": "en"} [{"name": "\u65e9\u7a32\u7530\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://waseda.repo.nii.ac.jp/ institutional [] 2022-01-12 15:34:54 2006-02-15 17:34:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "waseda university", "alternativeName": "", "country": "jp", "url": "https://www.waseda.jp/top/en", "identifier": [{"identifier": "https://ror.org/00ntfnx83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://waseda.repo.nii.ac.jp/oai yes 39513 46388 +146 {"name": "escholarship@bc", "language": "en"} [] https://dlib.bc.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:01:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "boston college", "alternativeName": "bc", "country": "us", "url": "https://www.bc.edu", "identifier": [{"identifier": "https://ror.org/02n2fzt79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} http://dlib.bc.edu/oai2 yes 4819 +80 {"name": "hal-in2p3", "language": "en"} [] http://hal.in2p3.fr/ institutional [] 2022-01-12 15:34:53 2006-02-02 12:06:44 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "linstitut national de physique nucl\u00e9aire et de physique des particules", "alternativeName": "", "country": "fr", "url": "http://www.in2p3.fr/", "identifier": [{"identifier": "https://ror.org/03fd77x13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/democrite yes 5730 65781 +57 {"name": "epubs: the open archive for stfc research publications", "language": "en"} [{"acronym": "epubs"}] https://epubs.stfc.ac.uk/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:55:08 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "science and technology facilities council", "alternativeName": "stfc", "country": "gb", "url": "http://www.stfc.ac.uk/", "identifier": [{"identifier": "https://ror.org/057g20z61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://epubs.stfc.ac.uk/oai/ yes 228 54108 +129 {"name": "earth-prints repository", "language": "en"} [] http://www.earth-prints.org/ disciplinary [] 2022-01-12 15:34:54 2006-01-30 16:43:11 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "istituto nazionale di geofisica e vulcanologia", "alternativeName": "ingv", "country": "it", "url": "http://www.ingv.it", "identifier": [{"identifier": "https://ror.org/00qps9a02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.earth-prints.org/oai/request yes 3709 9692 +130 {"name": "ecological restoration institute - northern arizona university", "language": "en"} [] http://library.eri.nau.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 11:28:18 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "northern arizona university", "alternativeName": "", "country": "us", "url": "http://www.nau.edu/", "identifier": [{"identifier": "https://ror.org/0272j5188", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 892 +2 {"name": "alexandria research platform", "language": "en"} [] http://www.alexandria.unisg.ch/ institutional [] 2022-01-13 07:54:08 2006-04-04 12:43:18 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of st. gallen", "alternativeName": "", "country": "ch", "url": "https://www.unisg.ch", "identifier": [{"identifier": "https://ror.org/0561a3s31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://www.alexandria.unisg.ch/cgi/oai2 yes 0 43608 +136 {"name": "electronic resource preservation and access network eprints service", "language": "en"} [{"acronym": "erpaeprints service"}] http://eprints.erpanet.org/ disciplinary [] 2022-01-12 15:34:54 2006-01-04 11:37:15 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "electronic resource preservation and access network", "alternativeName": "erpanet", "country": "gb", "url": "http://www.erpanet.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.erpanet.org/perl/oai2 yes 85 +23 {"name": "biblioteca digital jur\u00eddica do superior tribunal de justi\u00e7a", "language": "en"} [{"acronym": "bdjur"}] http://bdjur.stj.jus.br/jspui/ governmental [] 2022-01-12 15:34:52 2006-01-13 12:42:35 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "superior tribunal de justica", "alternativeName": "", "country": "br", "url": "http://www.stj.gov.br/portal_stj/publicacao/engine.wsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bdjur.stj.jus.br/dspace-oai/request yes 31958 143018 +89 {"name": "digital library of the commons", "language": "en"} [{"acronym": "dlc"}] http://dlc.dlib.indiana.edu/dlc/ disciplinary [] 2022-01-12 15:34:53 2006-01-04 09:39:36 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "indiana university", "alternativeName": "iu", "country": "us", "url": "http://www.indiana.edu/", "identifier": [{"identifier": "https://ror.org/02k40bc56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 10323 +8 {"name": "archive edutice", "language": "en"} [] http://edutice.archives-ouvertes.fr/ institutional [] 2022-01-12 15:34:52 2006-01-04 14:17:29 ["technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "centre pour la communication scientifique directe", "alternativeName": "ccsd", "country": "fr", "url": "https://www.ccsd.cnrs.fr", "identifier": [{"identifier": "https://ror.org/02feahw73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/edutice yes 0 1787 +110 {"name": "dspace at school of computing, nus", "language": "en"} [] https://dl.comp.nus.edu.sg/dspace/ institutional [] 2022-01-12 15:34:54 2006-01-24 12:28:30 ["technology"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national university of singapore", "alternativeName": "nus", "country": "sg", "url": "http://www.nus.edu.sg/", "identifier": [{"identifier": "https://ror.org/01tgyzw49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 409 +165 {"name": "hal-inria", "language": "en"} [] http://hal.inria.fr/ institutional [] 2022-01-12 15:34:55 2006-01-23 16:05:08 ["technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "patents"] [{"name": "institut national de recherche en informatique et en automatique", "alternativeName": "inria", "country": "fr", "url": "http://www.inria.fr", "identifier": [{"identifier": "https://ror.org/02kvxyf05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/inria yes 22532 112248 +54 {"name": "computer laboratory technical reports - cambridge university", "language": "en"} [] https://www.cl.cam.ac.uk/techreports institutional [] 2022-01-12 15:34:53 2006-01-04 14:54:27 ["technology"] ["unpub_reports_and_working_papers"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "http://www.cam.ac.uk", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.cl.cam.ac.uk/techreports/ucam-cl-tr-oai-sr.xml yes 922 +151 {"name": "cadmus, eui research repository", "language": "en"} [] http://cadmus.eui.eu/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:07:07 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "european university institute", "alternativeName": "eui", "country": "it", "url": "http://www.eui.eu/", "identifier": [{"identifier": "https://ror.org/0031wrj91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.eui.eu/research/euipublications/academicpublications/howtosubmit", "type": "content"}, {"policy_url": "https://www.eui.eu/research/euipublications/academicpublications/submitfulltextarticles", "type": "content"}, {"policy_url": "https://www.eui.eu/research/euipublications/academicpublications/howtosubmit", "type": "submission"}] {"name": "dspace", "version": ""} http://cadmus.eui.eu/oai/request yes 3867 24869 +96 {"name": "digitalcommons@macalester college", "language": "en"} [] http://digitalcommons.macalester.edu/ institutional [] 2022-01-12 15:34:53 2006-01-23 14:22:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "macalester college", "alternativeName": "", "country": "us", "url": "http://www.macalester.edu/", "identifier": [{"identifier": "https://ror.org/04fceqm38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.macalester.edu/do/oai/ yes 4442 6147 +55 {"name": "online research @ cardiff", "language": "en"} [{"acronym": "orca"}] http://orca.cf.ac.uk institutional [] 2022-01-12 15:34:53 2006-02-23 11:51:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "cardiff university", "alternativeName": "", "country": "gb", "url": "https://www.cardiff.ac.uk", "identifier": [{"identifier": "https://ror.org/03kk7td41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://orca.cf.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://orca.cf.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://orca.cf.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://orca.cf.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://orca.cf.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://orca.cf.ac.uk/cgi/oai2 yes 34539 111222 +135 {"name": "electronic research archive - blekinge tekniska h\u00f6gskola", "language": "en"} [] http://bth.diva-portal.org/smash/search.jsf?dswid=2623 institutional [] 2022-01-12 15:34:54 2006-01-23 10:03:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "blekinge institute of technology", "alternativeName": "bth", "country": "se", "url": "http://www.bth.se/", "identifier": [{"identifier": "https://ror.org/0093a8w51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bth.diva-portal.org/dice/oai yes 0 1855 +99 {"name": "digitalcommons@university of nebraska", "language": "en"} [{"acronym": "digitalcommons@unl"}] http://digitalcommons.unl.edu/ institutional [] 2022-01-12 15:34:54 2006-01-04 09:46:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of nebraska - lincoln", "alternativeName": "unl", "country": "us", "url": "http://www.unl.edu/", "identifier": [{"identifier": "https://ror.org/043mer456", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.unl.edu/do/oai/ yes 92233 117659 +59 {"name": "archive electronique - institut jean nicod", "language": "en"} [] http://jeannicod.ccsd.cnrs.fr/ institutional [] 2022-01-12 15:34:53 2006-01-04 14:56:31 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institut jean nicod", "alternativeName": "institut nicod", "country": "fr", "url": "http://www.institutnicod.org/", "identifier": [{"identifier": "https://ror.org/01qfab443", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/jeannicod yes 641 1375 +65 {"name": "cern document server", "language": "en"} [{"acronym": "cds"}] http://cds.cern.ch/ disciplinary [] 2022-01-12 15:34:53 2006-01-03 16:03:50 ["science", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "european organization for nuclear research", "alternativeName": "cern", "country": "ch", "url": "https://home.cern", "identifier": [{"identifier": "https://ror.org/01ggx4157", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://cds.cern.ch/oai2d yes 152018 760306 +30 {"name": "birkbeck institutional research online", "language": "en"} [{"acronym": "biron"}] https://eprints.bbk.ac.uk institutional [] 2022-01-12 15:34:52 2006-01-04 14:39:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "birkbeck, university of london", "alternativeName": "bbk", "country": "gb", "url": "https://www.bbk.ac.uk", "identifier": [{"identifier": "https://ror.org/02mb95055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.bbk.ac.uk/deposit_guide.html", "type": "content"}] {"name": "eprints", "version": ""} https://eprints.bbk.ac.uk/cgi/oai2 yes 6899 25775 +124 {"name": "e-lis", "language": "en"} [] http://eprints.rclis.org/ disciplinary [] 2022-01-12 15:34:54 2006-01-04 11:22:02 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "e-prints in library and information science", "alternativeName": "", "country": "it", "url": "http://eprints.rclis.org/information.html#1", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.rclis.org/policies.html#02", "type": "submission"}, {"policy_url": "http://eprints.rclis.org/policies.html#02", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.rclis.org/cgi/oai2 yes 21742 23271 +69 {"name": "ecommons@cornell", "language": "en"} [] https://ecommons.cornell.edu institutional [] 2022-01-12 15:34:53 2005-12-12 16:13:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "cornell university", "alternativeName": "", "country": "us", "url": "https://www.cornell.edu/", "identifier": [{"identifier": "https://ror.org/05bnh6r87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://guides.library.cornell.edu/ecommons/terms", "type": "data"}, {"policy_url": "http://guides.library.cornell.edu/ecommons/contentpolicy", "type": "content"}, {"policy_url": "http://guides.library.cornell.edu/ecommons/license", "type": "submission"}, {"policy_url": "http://guides.library.cornell.edu/ecommons/contentpolicy", "type": "submission"}, {"policy_url": "http://guides.library.cornell.edu/ecommons/who", "type": "submission"}, {"policy_url": "http://guides.library.cornell.edu/ecommons/preservation", "type": "preservation"}] {"name": "dspace", "version": ""} https://ecommons.cornell.edu/oai/request yes 20295 91189 +166 {"name": "hal", "language": "en"} [] https://hal.archives-ouvertes.fr/ aggregating [] 2022-01-12 15:34:55 2005-12-20 16:34:05 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ccsd", "alternativeName": "centre pour la communication scientifique directe", "country": "fr", "url": "https://www.ccsd.cnrs.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://hal.archives-ouvertes.fr/index.php?langue=en&halsid=ov561nscfmnt5liseil2e2ea43", "type": "data"}, {"policy_url": "http://hal.archives-ouvertes.fr/index.php?langue=en&halsid=ov561nscfmnt5liseil2e2ea43", "type": "submission"}] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/hal yes 0 1567158 +3 {"name": "ams acta", "language": "it"} [] http://amsacta.unibo.it institutional [] 2022-01-12 15:34:52 2006-01-13 12:33:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it", "identifier": [{"identifier": "http://www.unibo.it/en/homepage", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.sba.unibo.it/it/allegati/allegati-almadl/ams-acta-mission-statement-a", "type": "metadata"}, {"policy_url": "http://www.sba.unibo.it/it/allegati/allegati-almadl/ams-acta-mission-statement-a", "type": "data"}, {"policy_url": "http://www.sba.unibo.it/it/allegati/allegati-almadl/ams-acta-mission-statement-a", "type": "content"}, {"policy_url": "http://www.sba.unibo.it/it/allegati/allegati-almadl/ams-acta-mission-statement-a", "type": "submission"}] {"name": "eprints", "version": ""} http://amsacta.unibo.it/cgi/oai2 yes 4471 5058 +13 {"name": "publikations- und dokumentenserver der universit\u00e4tsbibliothek marburg", "language": "en"} [] http://www.uni-marburg.de/bis/digitale_bibliothek/archivserver institutional [] 2022-01-12 15:34:52 2006-01-13 12:35:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "philipps-universit\u00e4t marburg", "alternativeName": "", "country": "de", "url": "https://www.uni-marburg.de", "identifier": [{"identifier": "https://ror.org/01rdrb571", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.uni-marburg.de/bis/digitale_bibliothek/archivserver/pubservfaq", "type": "submission"}, {"policy_url": "http://www.uni-marburg.de/bis/digitale_bibliothek/archivserver/pubservfaq", "type": "preservation"}] {"name": "opus", "version": ""} http://archiv.ub.uni-marburg.de/oai/provider yes 8833 17025 +150 {"name": "research collection", "language": "en"} [] https://www.research-collection.ethz.ch/ institutional [] 2022-01-12 15:34:54 2006-01-04 12:06:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "eidgen\u00f6ssische technische hochschule z\u00fcrich", "alternativeName": "eth zurich", "country": "ch", "url": "http://www.ethz.ch/", "identifier": [{"identifier": "https://ror.org/05a28rw58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.research-collection.ethz.ch/terms-of-use", "type": "metadata"}, {"policy_url": "https://www.research-collection.ethz.ch/terms-of-use", "type": "data"}, {"policy_url": "https://www.research-collection.ethz.ch/terms-of-use", "type": "content"}, {"policy_url": "https://www.research-collection.ethz.ch/terms-of-use", "type": "submission"}, {"policy_url": "https://www.research-collection.ethz.ch/terms-of-use", "type": "preservation"}] {"name": "dspace", "version": ""} http://research-collection.ethz.ch/oai yes 0 180671 +98 {"name": "digitalcommons@uconn", "language": "en"} [] http://digitalcommons.uconn.edu/ institutional [] 2022-01-12 15:34:54 2006-01-31 15:58:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of connecticut", "alternativeName": "uconn", "country": "us", "url": "http://www.uconn.edu/", "identifier": [{"identifier": "https://ror.org/02der9h97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.uconn.edu/copycite.html", "type": "data"}, {"policy_url": "http://digitalcommons.uconn.edu/forauthors.html", "type": "submission"}, {"policy_url": "http://digitalcommons.uconn.edu/forauthors.html", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.uconn.edu/do/oai/ yes 0 15867 +177 {"name": "hal- shs", "language": "en"} [] http://halshs.archives-ouvertes.fr/ disciplinary [] 2022-01-12 15:34:55 2006-01-31 14:31:37 ["arts", "humanities", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ccsd", "alternativeName": "centre pour la communication scientifique directe", "country": "fr", "url": "https://www.ccsd.cnrs.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://halshs.archives-ouvertes.fr/oai/oai.php", "type": "data"}] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/halshs yes 148880 +307 {"name": "universidade do minho: repositorium", "language": "pt"} [] https://repositorium.sdum.uminho.pt institutional [] 2022-01-12 15:34:57 2006-01-13 14:43:07 ["arts", "humanities", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade do minho", "alternativeName": "", "country": "pt", "url": "http://www.uminho.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorium.sdum.uminho.pt/oai/request yes 53309 +286 {"name": "acronym", "language": "en"} [{"acronym": "scidok"}] https://publikationen.sulb.uni-saarland.de/ institutional [] 2022-01-12 15:34:57 2005-12-30 10:53:03 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e4t des saarlandes", "alternativeName": "uds", "country": "de", "url": "https://www.uni-saarland.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://publikationen.sulb.uni-saarland.de/oai/request yes 6328 +186 {"name": "open archive toulouse", "language": "en"} [{"acronym": "oatao"}, {"name": "archive ouverte toulouse", "language": "fr"}, {"acronym": "oatao"}] http://ethesis.inp-toulouse.fr/ institutional [] 2022-01-12 15:34:55 2005-12-22 12:13:23 ["health and medicine", "science", "technology"] ["theses_and_dissertations"] [{"name": "institut national polytechnique de toulouse", "alternativeName": "inp toulouse", "country": "fr", "url": "https://www.inp-toulouse.fr", "identifier": [{"identifier": "https://ror.org/033p9g875", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ethesis.inp-toulouse.fr/perl/oai2 yes 1418 +301 {"name": "ucla biblioteca de medicina", "language": "en"} [] http://bibmed.ucla.edu.ve/index.htm institutional [] 2022-01-12 15:34:57 2006-01-19 10:29:33 ["health and medicine", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad centroccidental lisandro alvarado", "alternativeName": "", "country": "ve", "url": "http://www.ucla.edu.ve/", "identifier": [{"identifier": "https://ror.org/03qgg3111", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibmed.ucla.edu.ve/cgi-win/be_oai.exe yes 1 76178 +206 {"name": "lse research online", "language": "en"} [] http://eprints.lse.ac.uk/ institutional [] 2022-01-12 15:34:55 2005-12-23 10:07:37 ["humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "london school of economics and political science", "alternativeName": "lse", "country": "gb", "url": "http://www2.lse.ac.uk/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.lse.ac.uk/faq.html", "type": "content"}, {"policy_url": "http://eprints.lse.ac.uk/faq.html", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.lse.ac.uk/cgi/oai2 yes 70866 +180 {"name": "international migration, integration and social cohesion online publications", "language": "en"} [{"acronym": "imiscoe online library"}] http://library.imiscoe.org/ aggregating [] 2022-01-12 15:34:55 2006-04-18 13:53:06 ["humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "international migration, integration and social cohesion", "alternativeName": "imiscoe", "country": "nl", "url": "http://www.imiscoe.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dare.uva.nl/cgi/arno/oai/imiscoe yes 0 776 +216 {"name": "max planck institute for the study of societies publications", "language": "en"} [{"acronym": "mpifg publications"}] http://www.mpifg.de/pu/mpifg_pub_en.asp institutional [] 2022-01-12 15:34:56 2006-02-15 09:29:11 ["humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "max-planck-institut f\u00fcr gesellschaftsforschung", "alternativeName": "mpifg", "country": "de", "url": "http://www.mpifg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 61800 +269 {"name": "queens papers on europeanisation", "language": "en"} [] http://www.qub.ac.uk/schools/schoolofpoliticsinternationalstudiesandphilosophy/research/paperseries/ institutional [] 2022-01-12 15:34:56 2006-02-15 10:02:53 ["humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "queens university, belfast", "alternativeName": "", "country": "gb", "url": "http://www.qub.ac.uk/", "identifier": [{"identifier": "https://ror.org/00hswnk62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 71 +282 {"name": "elektronisch archivierte theorie - sammelpunkt", "language": "en"} [] http://sammelpunkt.philo.at:8080/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:36:39 ["humanities"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types", "journal_articles", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t wien", "alternativeName": "", "country": "at", "url": "http://www.univie.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://sammelpunkt.philo.at:8080/cgi/oai2 yes 1143 1877 +210 {"name": "nist materials data respository", "language": "en"} [] http://matdl.org governmental [] 2022-01-12 15:34:56 2006-01-13 13:20:16 ["science", "engineering"] ["journal_articles", "software", "other_special_item_types"] [{"name": "nist", "alternativeName": "national institute of standards and technology - u.s. department of commerce", "country": "us", "url": "http://www.nist.gov", "identifier": [{"identifier": "https://ror.org/05xpvk416", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 101 +270 {"name": "queensland university of technology eprints archive", "language": "en"} [{"acronym": "qut eprints archive"}] http://eprints.qut.edu.au/ institutional [] 2022-01-12 15:34:56 2005-12-29 13:29:56 ["science", "mathematics", "health and medicine", "technology", "engineering", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "queensland university of technology", "alternativeName": "qut", "country": "au", "url": "http://www.qut.edu.au/", "identifier": [{"identifier": "https://ror.org/03pnv4752", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.qut.edu.au/cgi/oai2 yes 34191 177155 +253 {"name": "th\u00e8ses en ligne de paristech", "language": "en"} [{"acronym": "pastel"}] http://pastel.archives-ouvertes.fr/ aggregating [] 2022-01-12 15:34:56 2005-12-29 11:25:53 ["science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "paristech", "alternativeName": "", "country": "fr", "url": "http://www.paristech.fr/", "identifier": [{"identifier": "https://ror.org/05c2qg481", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/pastel yes 0 7621 +243 {"name": "hochschulschriftenserver der fachhochschule dortmund", "language": "en"} [] https://opus.bsz-bw.de/fhdo institutional [] 2022-01-12 15:34:56 2005-12-28 14:29:01 ["science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "fachhochschule dortmund", "alternativeName": "", "country": "de", "url": "https://www.fh-dortmund.de/de/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bsz-bw.de/fhdo/oai yes 73 +244 {"name": "opus-westf\u00e4lischen hochschule", "language": "en"} [] http://fhge.opus.hbz-nrw.de/ institutional [] 2022-01-12 15:34:56 2005-12-28 14:34:03 ["science", "social sciences", "technology"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "westf\u00e4lischen hochschule", "alternativeName": "", "country": "de", "url": "http://www.en.w-hs.de/", "identifier": [{"identifier": "https://ror.org/04p7ekn23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1914 +193 {"name": "iuscholarworks", "language": "en"} [] https://scholarworks.iu.edu/dspace/ institutional [] 2022-01-12 15:34:55 2006-04-04 12:32:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "indiana university", "alternativeName": "iu", "country": "us", "url": "http://www.indiana.edu/", "identifier": [{"identifier": "https://ror.org/02k40bc56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarworks.iu.edu/dspace-oai/request yes 8859 +197 {"name": "katholieke hogeschool kempen theses", "language": "en"} [] http://doks.khk.be/eindwerk institutional [] 2022-01-12 15:34:55 2005-12-22 16:01:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "thomas more", "alternativeName": "", "country": "be", "url": "http://www.thomasmore.be/", "identifier": [{"identifier": "https://ror.org/04e7kpf57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://doks.khk.be/eindwerk/oai yes 11031 +213 {"name": "middlesex university research repository", "language": "en"} [] http://eprints.mdx.ac.uk/ institutional [] 2022-01-12 15:34:56 2006-01-23 13:30:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "middlesex university", "alternativeName": "", "country": "gb", "url": "http://www.mdx.ac.uk/", "identifier": [{"identifier": "https://ror.org/01rv4p989", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.mdx.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.mdx.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.mdx.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.mdx.ac.uk/cgi/oai2 yes 17151 +284 {"name": "scholarlycommons@penn", "language": "en"} [] http://repository.upenn.edu/ institutional [] 2022-01-12 15:34:57 2005-12-30 10:36:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of pennsylvania", "alternativeName": "penn", "country": "us", "url": "http://www.upenn.edu/", "identifier": [{"identifier": "https://ror.org/00b30xv10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://guides.library.upenn.edu/sc_policy", "type": "metadata"}, {"policy_url": "http://guides.library.upenn.edu/sc_policy", "type": "data"}, {"policy_url": "http://guides.library.upenn.edu/sc_policy", "type": "content"}, {"policy_url": "http://guides.library.upenn.edu/sc_policy", "type": "preservation"}] {"name": "other", "version": ""} http://repository.upenn.edu/do/oai/ yes 36413 +316 {"name": "les theses electroniques", "language": "en"} [] http://theses.univ-lyon2.fr/ institutional [] 2022-01-12 15:34:57 2006-03-21 11:51:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universit\u00e9 lumi\u00e8re lyon 2", "alternativeName": "", "country": "fr", "url": "http://www.univ-lyon2.fr/", "identifier": [{"identifier": "https://ror.org/03rth4p18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2482 +283 {"name": "catalogue des th\u00e8ses urca", "language": "en"} [] http://scdweb.univ-reims.fr/ipac20/ipac.jsp?profile=scdldap&menu=search&submenu=advanced institutional [] 2022-01-12 15:34:57 2006-01-13 14:37:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universit\u00e9 reims champagne-ardenne", "alternativeName": "", "country": "fr", "url": "http://www.univ-reims.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 60579 +176 {"name": "humboldt digital scholar", "language": "en"} [{"acronym": "hds"}] http://humboldt-dspace.calstate.edu/ institutional [] 2022-01-12 15:34:55 2006-02-21 10:20:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "humboldt state university", "alternativeName": "", "country": "us", "url": "http://www.humboldt.edu/", "identifier": [{"identifier": "https://ror.org/02qt0xs84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2388 +209 {"name": "malm\u00f6 university electronic publishing", "language": "en"} [{"acronym": "muep"}] http://dspace.mah.se/ institutional [] 2022-01-12 15:34:56 2006-01-13 13:18:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "malm\u00f6 university", "alternativeName": "", "country": "se", "url": "http://mah.se/english", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.mah.se/oai/request yes 0 30397 +249 {"name": "pubblicazioni aperte digitali interateneo sapienza", "language": "en"} [{"acronym": "padis"}] http://padis.uniroma1.it/ institutional [] 2022-01-12 15:34:56 2006-01-13 14:31:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 degli studi la sapienza di roma", "alternativeName": "", "country": "it", "url": "http://www.uniroma1.it/", "identifier": [{"identifier": "https://ror.org/02be6w209", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://padis.uniroma1.it/oai/request yes 1 2186 +317 {"name": "papyrus: d\u00e9p\u00f4t institutionnel / institutional repository - universit\u00e9 de montr\u00e9al", "language": "fr"} [{"acronym": "papyrus"}] https://papyrus.bib.umontreal.ca institutional [] 2022-01-12 15:34:57 2006-01-13 14:48:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects"] [{"name": "universit\u00e9 de montr\u00e9al", "alternativeName": "", "country": "ca", "url": "http://www.umontreal.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://papyrus.bib.umontreal.ca/oai/request yes 15024 24424 +272 {"name": "research repository of catalonia", "language": "en"} [{"acronym": "recercat"}] http://www.recercat.cat/ aggregating [] 2022-01-12 15:34:56 2006-02-01 14:08:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "consorci de serveis universitaris de catalunya", "alternativeName": "csuc", "country": "es", "url": "http://www.csuc.cat/", "identifier": [{"identifier": "https://ror.org/007rty190", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oai.recercat.cat/request yes 0 129405 +294 {"name": "university of toronto research repository", "language": "en"} [{"acronym": "t-space"}] https://tspace.library.utoronto.ca/ institutional [] 2022-01-12 15:34:57 2005-12-30 13:22:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of toronto", "alternativeName": "u of t", "country": "ca", "url": "http://www.utoronto.ca/", "identifier": [{"identifier": "https://ror.org/03dbr7087", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tspace.library.utoronto.ca/tspace-oai/request yes 80327 +296 {"name": "tesis doctorals en xarxa", "language": "ca"} [{"acronym": "tdx"}] http://www.tdx.cat/ aggregating [] 2022-01-12 15:34:57 2006-01-27 10:22:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "consorci de serveis universitaris de catalunya", "alternativeName": "csuc", "country": "es", "url": "http://www.csuc.cat/", "identifier": [{"identifier": "https://ror.org/007rty190", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tdx.cat/oai/request yes 4167 33939 +308 {"name": "reposit\u00f3rio digital institucional da ufpr", "language": "en"} [] https://acervodigital.ufpr.br institutional [] 2022-01-12 15:34:57 2006-01-13 14:44:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidade federal do paran\u00e1", "alternativeName": "ufpr", "country": "br", "url": "http://www.ufpr.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acervodigital.ufpr.br/oai/request yes 0 48736 +309 {"name": "upcommons - treballs acad\u00e8mics upc", "language": "en"} [] http://upcommons.upc.edu/pfc/ institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universitat polit\u00e8nica de catalunya", "alternativeName": "upc", "country": "es", "url": "http://www.upc.edu/", "identifier": [{"identifier": "https://ror.org/03mb6wj31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eprints.upc.es:8080/pfc-oai/request yes 22794 +306 {"name": "unitus dspace", "language": "en"} [] http://dspace.unitus.it/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:42:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi della tuscia (tuscia university)", "alternativeName": "", "country": "it", "url": "http://www3.unitus.it/", "identifier": [{"identifier": "https://ror.org/03svwq685", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.unitus.it/dspace-oai/request yes 1383 2985 +230 {"name": "knowledgebank at osu", "language": "en"} [] https://kb.osu.edu/dspace/ institutional [] 2022-01-12 15:34:56 2005-12-27 16:40:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ohio state university", "alternativeName": "", "country": "us", "url": "http://www.osu.edu/", "identifier": [{"identifier": "https://ror.org/00rs6vg23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://kb.osu.edu/oai/request yes 30782 85779 +250 {"name": "pakistan research repository", "language": "en"} [] http://prr.hec.gov.pk/jspui/ aggregating [] 2022-01-12 15:34:56 2005-12-29 10:18:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "higher education commission pakistan", "alternativeName": "", "country": "pk", "url": "http://www.hec.gov.pk/", "identifier": [{"identifier": "https://ror.org/038y3sz68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://prr.hec.gov.pk/oai/request yes 177 6925 +274 {"name": "saberula repositorio institucional de la universidad de los andes", "language": "en"} [] http://www.saber.ula.ve/ institutional [] 2022-01-12 15:34:56 2006-03-21 16:47:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad de los andes, venezuela", "alternativeName": "ula", "country": "ve", "url": "http://www.ula.ve/", "identifier": [{"identifier": "https://ror.org/02h1b1x27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.saber.ula.ve/oai/request yes 32136 +293 {"name": "sydney escholarship", "language": "en"} [] http://ses.library.usyd.edu.au/ institutional [] 2022-01-12 15:34:57 2006-01-24 12:14:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of sydney", "alternativeName": "", "country": "au", "url": "http://sydney.edu.au/", "identifier": [{"identifier": "https://ror.org/0384j8v12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ses.library.usyd.edu.au/oai/request yes 10562 22747 +217 {"name": "mspace at the university of manitoba", "language": "en"} [] https://mspace.lib.umanitoba.ca institutional [] 2022-01-12 15:34:56 2005-12-27 12:42:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "university of manitoba", "alternativeName": "", "country": "ca", "url": "http://www.umanitoba.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 24394 +268 {"name": "qspace at queens university", "language": "en"} [] http://qspace.library.queensu.ca/ institutional [] 2022-01-12 15:34:56 2005-12-29 13:13:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects"] [{"name": "queens university", "alternativeName": "", "country": "ca", "url": "http://www.queensu.ca/", "identifier": [{"identifier": "https://ror.org/02y72wh86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://qspace.library.queensu.ca/oai/request yes 12838 +298 {"name": "oaktrust digital repository", "language": "en"} [] http://oaktrust.library.tamu.edu/ institutional [] 2022-01-12 15:34:57 2006-01-02 12:32:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "texas a&m university", "alternativeName": "tamu", "country": "us", "url": "http://www.tamu.edu/", "identifier": [{"identifier": "https://ror.org/01f5ytq51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oaktrust.library.tamu.edu/dspace-oai/request yes 36131 118044 +310 {"name": "florence research repository", "language": "en"} [{"acronym": "flore"}] https://flore.unifi.it/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:44:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universit\u00e0 degli studi di firenze", "alternativeName": "", "country": "it", "url": "http://www.unifi.it/", "identifier": [{"identifier": "https://ror.org/04jr1s763", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.unifi.it/faq.html#_toc_301", "type": "submission"}, {"policy_url": "http://eprints.unifi.it/faq.html#_toc_301", "type": "preservation"}] {"name": "dspace", "version": ""} yes 0 171906 +276 {"name": "university of wollongong research online", "language": "en"} [{"acronym": "research online @ uow"}] http://ro.uow.edu.au/ institutional [] 2022-01-12 15:34:56 2006-04-07 10:15:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of wollongong", "alternativeName": "uow", "country": "au", "url": "http://www.uow.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://ro.uow.edu.au/do/oai/ yes 18924 77781 +258 {"name": "publikationer fr\u00e5n m\u00e4lardalens h\u00f6gskola", "language": "en"} [] http://mdh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2006-04-19 09:58:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "m\u00e4lardalens h\u00f6gskola", "alternativeName": "", "country": "se", "url": "http://www.mdh.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://mdh.diva-portal.org/dice/oai yes 0 11255 +263 {"name": "publikationer fr\u00e5n stockholms universitet", "language": "sv"} [{"name": "stockholm university publications", "language": "en"}] http://su.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2006-01-17 13:07:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "stockholms universitet", "alternativeName": "", "country": "se", "url": "http://www.su.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://su.diva-portal.org/dice/oai yes 0 22728 +259 {"name": "publikationer fr\u00e5n h\u00f6gskolan i j\u00f6nk\u00f6ping", "language": "en"} [] http://hj.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "h\u00f6gskolan i j\u00f6nk\u00f6ping", "alternativeName": "", "country": "se", "url": "http://www.hj.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://hj.diva-portal.org/dice/oai yes 0 12251 +262 {"name": "publikationer fr\u00e5n s\u00f6dert\u00f6rns h\u00f6gskola", "language": "sv"} [] http://sh.diva-portal.org institutional [] 2022-01-12 15:34:56 2006-01-17 13:19:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "s\u00f6dert\u00f6rns h\u00f6gskola", "alternativeName": "", "country": "se", "url": "https://www.sh.se", "identifier": [{"identifier": "https://ror.org/00d973h41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://sh.diva-portal.org/dice/oai yes 0 11708 +265 {"name": "linn\u00e9universitetets diva", "language": "sv"} [{"name": "linnaeus university diva", "language": "en"}] http://lnu.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2006-03-21 17:11:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "linnaeus university", "alternativeName": "", "country": "se", "url": "https://lnu.se", "identifier": [{"identifier": "https://ror.org/00j9qag85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://lnu.diva-portal.org/dice/oai yes 0 28764 +261 {"name": "publications from link\u00f6ping university", "language": "en"} [{"name": "publikationer fr\u00e5n link\u00f6pings universitet", "language": "sv"}] http://liu.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2006-01-17 12:41:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "link\u00f6pings universitet", "alternativeName": "", "country": "se", "url": "http://www.liu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://liu.diva-portal.org/dice/oai yes 25 40596 +315 {"name": "dial.pr research publications", "language": "fr"} [{"acronym": "dial"}] https://dial.uclouvain.be/pr/boreal institutional [] 2022-01-12 15:34:57 2006-01-13 14:47:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "catholic university of louvain", "alternativeName": "", "country": "be", "url": "http://www.uclouvain.be", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 144096 +290 {"name": "st andrews eprints", "language": "en"} [{"acronym": "st\u00e6prints"}] http://eprints.st-andrews.ac.uk/ institutional [] 2022-01-12 15:34:57 2005-12-30 12:50:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of st andrews", "alternativeName": "", "country": "gb", "url": "http://www.st-andrews.ac.uk/", "identifier": [{"identifier": "https://ror.org/02wn5qz54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.st-andrews.ac.uk/perl/oai2 yes 314 +226 {"name": "nottingham eprints", "language": "en"} [] http://eprints.nottingham.ac.uk institutional [] 2022-01-12 15:34:56 2005-12-27 15:47:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "https://www.nottingham.ac.uk", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.nottingham.ac.uk/cgi/oai2 yes 31240 32878 +313 {"name": "digitale hochschulschriften der lmu", "language": "en"} [] http://edoc.ub.uni-muenchen.de/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:46:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ludwig-maximilians-universit\u00e4t m\u00fcnchen", "alternativeName": "lmu", "country": "de", "url": "http://www.uni-muenchen.de/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://edoc.ub.uni-muenchen.de/cgi/oai2 yes 14540 17013 +314 {"name": "open access lmu", "language": "en"} [] http://epub.ub.uni-muenchen.de/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:47:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "ludwig-maximilians-universit\u00e4t m\u00fcnchen", "alternativeName": "lmu", "country": "de", "url": "http://www.uni-muenchen.de/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://epub.ub.uni-muenchen.de/cgi/oai2 yes 19151 29747 +227 {"name": "nottingham etheses", "language": "en"} [] http://eprints.nottingham.ac.uk/etheses/ institutional [] 2022-01-12 15:34:56 2005-12-27 16:14:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.nottingham.ac.uk/cgi/oai2 yes 6259 +223 {"name": "maynooth university eprints & etheses archive", "language": "en"} [] http://eprints.maynoothuniversity.ie/ institutional [] 2022-01-12 15:34:56 2005-12-27 14:20:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national university of ireland, maynooth", "alternativeName": "nui maynooth", "country": "ie", "url": "http://www.maynoothuniversity.ie/", "identifier": [{"identifier": "https://ror.org/048nfjm95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.maynoothuniversity.ie/cgi/oai2 yes 2 13022 +236 {"name": "publication server of the hochschule d\u00fcsseldorf university of applied sciences", "language": "en"} [{"acronym": "hsdopus"}, {"name": "publikationsserver der hochschule d\u00fcsseldorf", "language": "de"}, {"acronym": "hsdopus"}] https://opus4.kobv.de/opus4-hs-duesseldorf/home institutional [] 2022-01-12 15:34:56 2006-01-13 14:28:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "hochschule d\u00fcsseldorf: university of applied sciences", "alternativeName": "hsd", "country": "de", "url": "https://www.hs-duesseldorf.de", "identifier": [{"identifier": "https://ror.org/00ftx0026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 907 +240 {"name": "opus - volltextserver universit\u00e4t passau", "language": "en"} [{"acronym": "opus passau"}] https://opus4.kobv.de/opus4-uni-passau/home institutional [] 2022-01-12 15:34:56 2006-01-13 14:29:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t passau", "alternativeName": "", "country": "de", "url": "http://www.uni-passau.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-uni-passau/oai yes 402 +238 {"name": "opus online publikationsserver der katholischen universit\u00e4t eichst\u00e4tt-ingolstadt", "language": "en"} [] http://www.opus-bayern.de/ku-eichstaett/ institutional [] 2022-01-12 15:34:56 2006-01-13 14:29:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "katholische universit\u00e4t eichst\u00e4tt-ingolstadt (ku)", "alternativeName": "", "country": "de", "url": "http://www.ku-eichstaett.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://opus4.kobv.de/opus4-ku-eichstaett/oai yes 2 172 +266 {"name": "publish.up", "language": "en"} [] http://opus.kobv.de/ubp/ institutional [] 2022-01-12 15:34:56 2006-02-01 09:48:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t potsdam", "alternativeName": "", "country": "de", "url": "https://www.uni-potsdam.de", "identifier": [{"identifier": "https://ror.org/03bnmw459", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://opus.kobv.de/ubp/oai2/oai2.php/ yes 7019 +264 {"name": "publikationer fr\u00e5n ume\u00e5 universitet", "language": "en"} [] http://umu.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:56 2006-01-17 14:53:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ume\u00e5 universitet", "alternativeName": "", "country": "se", "url": "http://www.umu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://umu.diva-portal.org/dice/oai yes 0 33691 +260 {"name": "publikationer fr\u00e5n kth", "language": "en"} [] http://kth.diva-portal.org/smash/search.jsf?rvn=1 institutional [] 2022-01-12 15:34:56 2006-01-17 12:23:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kungliga tekniska h\u00f6gskolan", "alternativeName": "kth", "country": "se", "url": "http://www.kth.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kth.diva-portal.org/dice/oai yes 1 40650 +231 {"name": "ohiolink electronic thesis and dissertation center", "language": "en"} [] http://etd.ohiolink.edu/ aggregating [] 2022-01-12 15:34:56 2005-12-28 11:34:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "ohio library and information network", "alternativeName": "ohiolink", "country": "us", "url": "http://www.ohiolink.edu/", "identifier": [{"identifier": "https://ror.org/05bqcch62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://etd.ohiolink.edu/!etd_search_oai yes 641 104120 +271 {"name": "electronic thesis and dissertation database", "language": "en"} [] http://etd.rau.ac.za/ institutional [] 2022-01-12 15:34:56 2005-12-29 14:03:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of johannesburg", "alternativeName": "uj", "country": "za", "url": "https://www.uj.ac.za/", "identifier": [{"identifier": "https://ror.org/04z6c2n17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 846 +218 {"name": "multimedia online archiv chemnitz", "language": "en"} [{"acronym": "monarch"}] http://monarch.qucosa.de/startseite/ institutional [] 2022-01-12 15:34:56 2006-01-13 13:21:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects"] [{"name": "technische universit\u00e4t chemnitz", "alternativeName": "", "country": "de", "url": "http://www.tu-chemnitz.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://monarch.qucosa.de/oai/ yes 3560 +280 {"name": "saardok", "language": "de"} [{"acronym": "sulb"}] http://saardok.bsz-bw.de institutional [] 2022-01-12 15:34:56 2005-12-30 10:01:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t des saarlandes", "alternativeName": "uds", "country": "de", "url": "http://www.uni-saarland.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1062 +312 {"name": "elektronisches volltextarchiv - scientific articles repository", "language": "en"} [{"acronym": "eva star"}] http://www.ubka.uni-karlsruhe.de/eva/ institutional [] 2022-01-12 15:34:57 2006-02-02 11:49:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "unpub_reports_and_working_papers", "theses_and_dissertations"] [{"name": "karlsruher institut f\u00fcr technologie (kit)", "alternativeName": "", "country": "de", "url": "http://www.kit.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.ubka.uni-karlsruhe.de/oai/eva/oai2.php yes 20141 +211 {"name": "max planck society edoc server", "language": "en"} [] http://edoc.mpg.de/ institutional [] 2022-01-12 15:34:56 2005-12-27 11:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software"] [{"name": "max planck gesellschaft", "alternativeName": "mpg", "country": "de", "url": "http://www.mpg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://edoc.mpg.de/ac_oai.pl yes 200000 +189 {"name": "university of groningen research database", "language": "en"} [{"acronym": "ir@rug"}] http://www.rug.nl/research/portal/ aggregating [] 2022-01-12 15:34:55 2006-02-14 12:12:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.rug.nl/ws/oai yes 50002 237100 +279 {"name": "royal holloway research", "language": "en"} [] https://pure.royalholloway.ac.uk/portal/ institutional [] 2022-01-12 15:34:56 2005-12-30 09:40:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "royal holloway, university of london", "alternativeName": "", "country": "gb", "url": "https://www.royalholloway.ac.uk/home.aspx", "identifier": [{"identifier": "https://ror.org/04g2vpn86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://digirep.rhul.ac.uk/p/oai yes 2972 22276 +202 {"name": "leiden university scholarly repository", "language": "en"} [] https://scholarlypublications.universiteitleiden.nl institutional [] 2022-01-12 15:34:55 2006-03-21 11:27:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "leiden university", "alternativeName": "", "country": "nl", "url": "https://www.universiteitleiden.nl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://scholarlypublications.universiteitleiden.nl/oai2 yes 26449 76560 +288 {"name": "sissa digital library", "language": "en"} [{"acronym": "iris"}] https://iris.sissa.it/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:38:59 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "sissa", "alternativeName": "scuola internazionale superiore di studi avanzati", "country": "it", "url": "http://www.sissa.it/", "identifier": [{"identifier": "https://ror.org/004fze387", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.sissa.it/oai/request yes 1531 11388 +304 {"name": "university of washington structural informatics group publications", "language": "en"} [{"acronym": "uw-sig publications"}] http://sigpubs.biostr.washington.edu/ institutional [] 2022-01-12 15:34:57 2006-01-02 13:17:45 ["science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of washington", "alternativeName": "uw", "country": "us", "url": "http://www.washington.edu/", "identifier": [{"identifier": "https://ror.org/00cvxb145", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://sigpubs.biostr.washington.edu/perl/oai2 yes 143 235 +232 {"name": "open marine archive", "language": "en"} [{"acronym": "oma"}] http://www.vliz.be/en/open-marine-archive disciplinary [] 2022-01-12 15:34:56 2006-03-22 10:56:42 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "vlaams instituut voor de zee (flanders marine institute)", "alternativeName": "vliz", "country": "be", "url": "http://www.vliz.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.vliz.be/oma/imis.php yes 21051 32181 +287 {"name": "sioexplorer digital library project", "language": "en"} [{"acronym": "sioexplorer"}] http://siox.sdsc.edu/ institutional [] 2022-01-12 15:34:57 2005-12-30 12:36:52 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "scripps institution of oceanography", "alternativeName": "sio", "country": "us", "url": "http://www.sio.ucsd.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1500 +289 {"name": "ecrystals - southampton", "language": "en"} [] http://ecrystals.chem.soton.ac.uk/ disciplinary [] 2022-01-12 15:34:57 2005-12-30 12:34:44 ["science"] ["datasets"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ecrystals.chem.soton.ac.uk/cgi/oai2 yes 22 896 +219 {"name": "mannheimer zentrum f\u00fcr europ\u00e4ische sozialforschung publikationen", "language": "en"} [{"acronym": "mzes publikationen"}] http://www.mzes.uni-mannheim.de/d7/de/publications/search?f[0]=field_biblio_mzes_pub_type%3a1/ institutional [] 2022-01-12 15:34:56 2006-02-15 09:48:50 ["social sciences", "humanities"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t mannheim", "alternativeName": "", "country": "de", "url": "http://www.uni-mannheim.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 6781 +299 {"name": "jean monnet working papers", "language": "en"} [] http://centers.law.nyu.edu/jeanmonnet/papers/index.html institutional [] 2022-01-12 15:34:57 2006-02-14 15:58:55 ["social sciences", "humanities"] ["unpub_reports_and_working_papers"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 365 +254 {"name": "pattern analysis statistical modelling & computational learning eprints", "language": "en"} [{"acronym": "pascal eprints"}] http://eprints.pascal-network.org/ disciplinary [] 2022-01-12 15:34:56 2005-12-29 11:34:30 ["social sciences", "mathematics", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.pascal-network.org/perl/oai2 yes 0 8660 +257 {"name": "public knowledge project eprint archive", "language": "en"} [] https://www.zotero.org/groups/public_knowledge_project/items disciplinary [] 2022-01-12 15:34:56 2005-12-29 12:36:09 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of british columbia", "alternativeName": "", "country": "ca", "url": "http://www.ubc.ca/", "identifier": [{"identifier": "https://ror.org/03rmrcq20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 134 +203 {"name": "librarians digital library", "language": "en"} [{"acronym": "ldl"}] https://drtc.isibang.ac.in/ disciplinary [] 2022-01-12 15:34:55 2005-12-22 16:35:19 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "indian statistical institute, bangalore centre", "alternativeName": "isi", "country": "in", "url": "http://www.isibang.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://drtc.isibang.ac.in/oai/request yes 510 +256 {"name": "volltextserver der virtuellen fachbibliothek psychologie", "language": "de"} [{"acronym": "psydok"}] http://psydok.psycharchives.de/ disciplinary [] 2022-01-12 15:34:56 2005-12-29 12:25:18 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "leibniz institute for psychology information", "alternativeName": "zpid", "country": "de", "url": "https://leibniz-psychology.org", "identifier": [{"identifier": "https://ror.org/0165gz615", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3627 +297 {"name": "teaching & learning research programme publications", "language": "en"} [{"acronym": "tlrp publications"}] http://www.tlrp.org/dspace/ disciplinary [] 2022-01-12 15:34:57 2005-12-30 13:44:46 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "http://www.cam.ac.uk/", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.tlrp.org/dspace-oai/request yes 1598 +234 {"name": "openarchive@cbs", "language": "en"} [] http://openarchive.cbs.dk/ institutional [] 2022-01-12 15:34:56 2006-04-04 14:31:42 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "copenhagen business school", "alternativeName": "cbs", "country": "dk", "url": "http://uk.cbs.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openarchive.cbs.dk/oai/request yes 3091 3332 +273 {"name": "reposit\u00f3rio acad\u00eamico de biblioteconomia e ci\u00eancia da informa\u00e7\u00e3o", "language": "en"} [{"acronym": "rabci"}] http://rabci.org/rabci/ institutional [] 2022-01-12 15:34:56 2006-02-13 12:33:53 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "reposit\u00f3rio acad\u00eamico de biblioteconomia e ci\u00eancia da informa\u00e7\u00e3o", "alternativeName": "rabci", "country": "br", "url": "http://rabci.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://rabci.org/rabci/oai yes 489 +242 {"name": "opus-datenbank berufsverband information bibliothek", "language": "en"} [{"acronym": "bib"}] http://www.bib-info.de/verband/publikationen/opus.html institutional [] 2022-01-12 15:34:56 2005-12-28 14:20:26 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "berufsverband information bibliothek e.v.", "alternativeName": "bib", "country": "de", "url": "http://www.bib-info.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 1621 +179 {"name": "iupuischolarworks", "language": "en"} [] https://scholarworks.iupui.edu/ institutional [] 2022-01-12 15:34:55 2005-12-21 13:09:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indiana university - purdue university, indianapolis", "alternativeName": "iupui", "country": "us", "url": "http://www.iupui.edu/", "identifier": [{"identifier": "https://ror.org/05gxnyn08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarworks.iupui.edu/oai/request yes 17942 24404 +305 {"name": "surrey research insight", "language": "en"} [{"acronym": "sri open access"}] http://epubs.surrey.ac.uk/ institutional [] 2022-01-12 15:34:57 2006-01-02 13:27:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents"] [{"name": "university of surrey", "alternativeName": "unis", "country": "gb", "url": "http://www.surrey.ac.uk/", "identifier": [{"identifier": "https://ror.org/00ks66431", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://epubs.surrey.ac.uk/cgi/oai2 yes 24257 62110 +285 {"name": "soas research online", "language": "en"} [] https://eprints.soas.ac.uk/ institutional [] 2022-01-12 15:34:57 2005-12-30 10:43:33 ["arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "school of oriental and african studies, university of london", "alternativeName": "soas", "country": "gb", "url": "http://www.soas.ac.uk/", "identifier": [{"identifier": "https://ror.org/04vrxay34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://eprints.soas.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "https://eprints.soas.ac.uk/policies.html", "type": "data"}, {"policy_url": "https://eprints.soas.ac.uk/policies.html", "type": "content"}, {"policy_url": "https://eprints.soas.ac.uk/policies.html", "type": "submission"}, {"policy_url": "https://eprints.soas.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://eprints.soas.ac.uk/cgi/oai2 yes 6820 25111 +292 {"name": "epsilon archive for student projects", "language": "en"} [{"acronym": "epsilon"}] http://stud.epsilon.slu.se/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:39:30 ["science"] ["theses_and_dissertations"] [{"name": "sveriges lantbruksuniversitet (swedish university of agricultural sciences)", "alternativeName": "slu", "country": "se", "url": "http://www.slu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://stud.epsilon.slu.se/policies.html", "type": "metadata"}, {"policy_url": "http://stud.epsilon.slu.se/policies.html", "type": "data"}, {"policy_url": "http://stud.epsilon.slu.se/policies.html", "type": "content"}, {"policy_url": "http://stud.epsilon.slu.se/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://stud.epsilon.slu.se/cgi/oai2 yes 11075 +185 {"name": "infoscience - \u00e9cole polytechnique f\u00e9d\u00e9rale de lausanne", "language": "en"} [{"acronym": "infoscience"}] https://infoscience.epfl.ch/ institutional [] 2022-01-12 15:34:55 2005-12-22 12:06:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "swiss federal institute of technology lausanne", "alternativeName": "epfl", "country": "ch", "url": "http://www.epfl.ch/", "identifier": [{"identifier": "https://ror.org/02s376052", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://infoscience.epfl.ch/oai2d/ yes 37451 169205 +300 {"name": "open research online", "language": "en"} [{"acronym": "oro"}] http://oro.open.ac.uk/ institutional [] 2022-01-12 15:34:57 2006-01-02 12:31:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "open university", "alternativeName": "ou", "country": "gb", "url": "http://www.open.ac.uk/", "identifier": [{"identifier": "https://ror.org/05mzfcs16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://oro.open.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://oro.open.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://oro.open.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://oro.open.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://oro.open.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://oro.open.ac.uk/cgi/oai2 yes 36961 +182 {"name": "open access repository of iisc research publications", "language": "en"} [{"acronym": "eprints@iisc"}] http://eprints.iisc.ac.in institutional [] 2022-01-12 15:34:55 2005-12-21 14:23:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "patents"] [{"name": "indian institute of science", "alternativeName": "iisc", "country": "in", "url": "http://www.iisc.ernet.in", "identifier": [{"identifier": "https://ror.org/04dese585", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.iisc.ernet.in/cgi/oai2 yes 1 50668 +201 {"name": "lancaster eprints", "language": "en"} [] http://eprints.lancs.ac.uk/ institutional [] 2022-01-12 15:34:55 2006-04-19 10:23:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "lancaster university", "alternativeName": "", "country": "gb", "url": "http://www.lancaster.ac.uk/", "identifier": [{"identifier": "https://ror.org/04f2nsd36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.lancs.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://eprints.lancs.ac.uk/information.html", "type": "data"}, {"policy_url": "http://eprints.lancs.ac.uk/information.html", "type": "content"}, {"policy_url": "http://eprints.lancs.ac.uk/information.html", "type": "submission"}, {"policy_url": "http://eprints.lancs.ac.uk/information.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.lancs.ac.uk/cgi/oai2 yes 18824 85030 +214 {"name": "minds@university of wisconsin", "language": "en"} [{"acronym": "minds@uw"}] http://minds.wisconsin.edu/ institutional [] 2022-01-12 15:34:56 2005-12-27 11:46:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of wisconsin systems", "alternativeName": "uw", "country": "us", "url": "http://www.wisc.edu/", "identifier": [{"identifier": "https://ror.org/01y2jtd41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://minds.wisconsin.edu/oai/request yes 2616 26456 +224 {"name": "nellco legal scholarship repository", "language": "en"} [{"acronym": "nellco"}] http://lsr.nellco.org/ aggregating [] 2022-01-12 15:34:56 2005-12-27 14:36:49 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "new england law library consortium", "alternativeName": "", "country": "us", "url": "http://www.nellco.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://lsr.nellco.org/do/oai/ yes 1631 69708 +291 {"name": "university of strathclyde institutional repository", "language": "en"} [{"acronym": "strathprints"}] https://strathprints.strath.ac.uk/ institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of strathclyde", "alternativeName": "", "country": "gb", "url": "https://www.strath.ac.uk/", "identifier": [{"identifier": "https://ror.org/00n3w3b69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://strathprints.strath.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://strathprints.strath.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://strathprints.strath.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://strathprints.strath.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://strathprints.strath.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://strathprints.strath.ac.uk/cgi/oai2 yes 48186 +194 {"name": "jefferson digital commons", "language": "en"} [] http://jdc.jefferson.edu/ institutional [] 2022-01-12 15:34:55 2005-12-22 14:49:18 ["health and medicine", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "thomas jefferson university", "alternativeName": "", "country": "us", "url": "http://www.jefferson.edu/", "identifier": [{"identifier": "https://ror.org/00ysqcn41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://jdc.jefferson.edu/faq.html#faq-a", "type": "submission"}] {"name": "other", "version": ""} http://jdc.jefferson.edu/do/oai/ yes 10413 21091 +199 {"name": "k\u00f6lner universit\u00e4tspublikationsserver", "language": "en"} [{"acronym": "kups"}] http://kups.ub.uni-koeln.de/ institutional [] 2022-01-12 15:34:55 2006-01-13 13:16:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t zu k\u00f6ln", "alternativeName": "usb k\u00f6ln", "country": "de", "url": "http://www.uni-koeln.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kups.ub.uni-koeln.de/policies.html", "type": "metadata"}, {"policy_url": "http://kups.ub.uni-koeln.de/policies.html", "type": "data"}, {"policy_url": "http://kups.ub.uni-koeln.de/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://kups.ub.uni-koeln.de/cgi/oai2 yes 5800 41954 +245 {"name": "organic eprints", "language": "en"} [] http://orgprints.org/ disciplinary [] 2022-01-12 15:34:56 2005-12-28 14:41:45 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "international centre for research in organic food systems", "alternativeName": "icrofs", "country": "dk", "url": "http://www.icrofs.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://orgprints.org/about.html", "type": "metadata"}, {"policy_url": "http://orgprints.org/about.html", "type": "data"}, {"policy_url": "http://orgprints.org/about.html", "type": "content"}, {"policy_url": "http://orgprints.org/about.html", "type": "submission"}, {"policy_url": "http://orgprints.org/about.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://orgprints.org/cgi/oai2 yes 17713 26752 +255 {"name": "philsci archive", "language": "en"} [{"acronym": "ps"}] http://philsci-archive.pitt.edu/ disciplinary [] 2022-01-12 15:34:56 2005-12-29 12:12:55 ["humanities"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of pittsburgh", "alternativeName": "up", "country": "us", "url": "http://www.pitt.edu/", "identifier": [{"identifier": "https://ror.org/01an3r305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://philsci-archive.pitt.edu/metadata_policies.html", "type": "content"}, {"policy_url": "http://philsci-archive.pitt.edu/metadata_policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://philsci-archive.pitt.edu/cgi/oai2 yes 7311 9663 +225 {"name": "newcastle university eprints", "language": "en"} [] https://eprints.ncl.ac.uk institutional [] 2022-01-12 15:34:56 2005-12-27 14:45:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "newcastle university", "alternativeName": "ncl", "country": "gb", "url": "https://www.ncl.ac.uk", "identifier": [{"identifier": "https://ror.org/01kj2bm70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://eprint.ncl.ac.uk/policies.aspx", "type": "metadata"}, {"policy_url": "https://eprint.ncl.ac.uk/policies.aspx", "type": "data"}, {"policy_url": "https://eprint.ncl.ac.uk/policies.aspx", "type": "content"}, {"policy_url": "https://eprint.ncl.ac.uk/policies.aspx", "type": "submission"}, {"policy_url": "https://eprint.ncl.ac.uk/policies.aspx", "type": "preservation"}] {"name": "eprints", "version": ""} https://eprints.ncl.ac.uk/oai yes 25055 126517 +267 {"name": "pubmed central", "language": "en"} [] http://www.ncbi.nlm.nih.gov/pmc/ disciplinary [] 2022-01-12 15:34:56 2006-01-30 13:33:50 ["health and medicine", "science"] ["journal_articles", "bibliographic_references"] [{"name": "national institutes of health", "alternativeName": "", "country": "us", "url": "http://www.nih.gov/", "identifier": [{"identifier": "https://ror.org/01cwqze88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/copyright/", "type": "data"}, {"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/faq/#q12", "type": "data"}, {"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/guidelines/", "type": "content"}, {"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/submission-methods/", "type": "submission"}, {"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/faq/#q14", "type": "submission"}, {"policy_url": "https://www.ncbi.nlm.nih.gov/pmc/about/faq/#q27", "type": "preservation"}] {"name": "other", "version": ""} https://www.ncbi.nlm.nih.gov/pmc/oai/oai.cgi yes 696674 4523200 +441 {"name": "documenting the american south", "language": "en"} [] http://docsouth.unc.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 12:12:04 ["arts", "humanities"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.lib.unc.edu/cgi-bin/oai/das/das/das/oai.pl yes 3554 +418 {"name": "crystallography open database", "language": "en"} [{"acronym": "cod"}] http://www.crystallography.net/ disciplinary [] 2022-01-12 15:34:59 2006-08-03 16:16:25 ["engineering", "science"] ["datasets"] [{"name": "universit\u00e9 du maine, le mans-laval", "alternativeName": "", "country": "fr", "url": "http://www.univ-lemans.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 357597 +404 {"name": "jpl technical reports server", "language": "en"} [{"acronym": "trs"}] https://trs.jpl.nasa.gov/ institutional [] 2022-01-12 15:34:58 2006-08-03 15:15:26 ["engineering"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national aeronautics and space administration", "alternativeName": "nasa", "country": "us", "url": "http://www.nasa.gov/", "identifier": [{"identifier": "https://ror.org/027ka1x80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 25401 +445 {"name": "documentserver keur der wetenschap", "language": "en"} [] http://keur.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-04 12:12:27 ["health and medicine", "science", "technology"] ["journal_articles"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://keur.eldoc.ub.rug.nl/oai/ yes 1200 +367 {"name": "biblioteca virtual em sa\u00fade - minis\u00e9trio da sa\u00fade", "language": "en"} [{"acronym": "bvs"}] http://portalsaude.saude.gov.br/index.php/biblioteca disciplinary [] 2022-01-12 15:34:58 2006-02-24 10:23:13 ["health and medicine"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "minis\u00e9trio da sa\u00fade", "alternativeName": "", "country": "br", "url": "http://portalsaude.saude.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +448 {"name": "clinical medicine netprints", "language": "en"} [] http://clinmed.netprints.org/ disciplinary [] 2022-01-12 15:34:59 2006-08-04 15:15:27 ["health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "british medical association", "alternativeName": "bma", "country": "gb", "url": "http://www.bma.org.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 82 +397 {"name": "aphasiology archive", "language": "en"} [] http://aphasiology.pitt.edu/ disciplinary [] 2022-01-12 15:34:58 2006-08-03 12:12:17 ["health and medicine"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "university of pittsburgh", "alternativeName": "up", "country": "us", "url": "http://www.pitt.edu/", "identifier": [{"identifier": "https://ror.org/01an3r305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://aphasiology.pitt.edu/perl/oai2 yes 1659 1729 +377 {"name": "yale medicine thesis digital library", "language": "en"} [] http://cushing.med.yale.edu/greenstone/cgi-bin/library.cgi?site=localhost&a=p&p=about&c=ymtdl&l=en&w=utf-8 institutional [] 2022-01-12 15:34:58 2006-01-23 09:46:45 ["health and medicine"] ["theses_and_dissertations"] [{"name": "yale university", "alternativeName": "", "country": "us", "url": "http://www.yale.edu/", "identifier": [{"identifier": "https://ror.org/03v76x132", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 423 +400 {"name": "university of adelaide library electronic text collection", "language": "en"} [{"acronym": "ebooks@adelaide"}] http://ebooks.adelaide.edu.au/ disciplinary [] 2022-01-12 15:34:58 2006-08-03 12:12:55 ["humanities", "arts"] ["books_chapters_and_sections"] [{"name": "university of adelaide", "alternativeName": "", "country": "au", "url": "http://www.adelaide.edu.au/", "identifier": [{"identifier": "https://ror.org/00892tw58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ebooks.adelaide.edu.au/dspace-oai/request yes 0 4484 +406 {"name": "digitale sammlungen der universit\u00e4tsbibliothek bielefeld", "language": "de"} [{"acronym": "bietas"}] http://ds.ub.uni-bielefeld.de institutional [] 2022-01-12 15:34:58 2006-08-03 15:15:30 ["humanities", "arts"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bielefeld university", "alternativeName": "", "country": "de", "url": "http://www.uni-bielefeld.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ds.ub.uni-bielefeld.de/viewer/oai yes 23 4293 +358 {"name": "eprints at the centre for scientific computing, university of warwick", "language": "en"} [] http://eprints.csc.warwick.ac.uk/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["humanities", "science", "mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of warwick", "alternativeName": "", "country": "gb", "url": "http://www2.warwick.ac.uk/", "identifier": [{"identifier": "https://ror.org/01a77tt86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.csc.warwick.ac.uk/perl/oai2 yes 113 +425 {"name": "digital library for earth system education", "language": "en"} [{"acronym": "dlese"}] http://www.dlese.org/library/ disciplinary [] 2022-01-12 15:34:59 2006-08-04 09:09:16 ["humanities", "science"] ["unpub_reports_and_working_papers", "datasets", "learning_objects", "other_special_item_types"] [{"name": "national science digital library", "alternativeName": "nsdl", "country": "us", "url": "http://nsdl.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.dlese.org/oai/provider yes 11428 +319 {"name": "service de documentation en \u00e9tudes et interventions r\u00e9gionales", "language": "en"} [{"acronym": "sdeir"}] http://sdeir.uqac.ca/ disciplinary [] 2022-01-12 15:34:57 2006-02-13 16:42:03 ["humanities"] ["other_special_item_types", "datasets", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 du qu\u00e9bec \u00e0 chicoutimi", "alternativeName": "", "country": "ca", "url": "http://www.uqac.ca/", "identifier": [{"identifier": "https://ror.org/00y3hzd62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 602 +407 {"name": "caltech archives finding aids online", "language": "en"} [] http://findingaids.library.caltech.edu/ institutional [] 2022-01-12 15:34:58 2006-08-03 15:15:32 ["humanities"] ["bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://findingaids.library.caltech.edu/perl/oai2 yes 16 +411 {"name": "caltech archives oral histories online", "language": "en"} [] http://oralhistories.library.caltech.edu/ institutional [] 2022-01-12 15:34:59 2006-08-03 15:15:45 ["humanities"] ["unpub_reports_and_working_papers"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://oralhistories.library.caltech.edu/cgi/oai2 yes 191 219 +444 {"name": "documentserver interuniversitair centrum voor sociaal-wetenschappelijke theorie en methodologie", "language": "en"} [{"acronym": "publications ics"}] http://ics.uda.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-04 12:12:25 ["mathematics", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ics.uda.ub.rug.nl/oai/ yes 102 +426 {"name": "digital library network for engineering and technology", "language": "en"} [{"acronym": "dlnet"}] http://www.dlnet.vt.edu/ disciplinary [] 2022-01-12 15:34:59 2006-08-04 09:09:18 ["mathematics", "technology"] ["unpub_reports_and_working_papers", "learning_objects", "software", "other_special_item_types"] [{"name": "virginia polytechnic institute and state university", "alternativeName": "virginia tech", "country": "us", "url": "http://www.vt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.dlnet.vt.edu/oai2/oaiprovider yes 1080 +394 {"name": "american mineralogist crystal structure database", "language": "en"} [] http://rruff.geo.arizona.edu/ams/amcsd.php disciplinary [] 2022-01-12 15:34:58 2006-08-03 12:12:06 ["science", "engineering"] ["datasets"] [{"name": "mineralogical society of america", "alternativeName": "", "country": "us", "url": "http://www.minsocam.org/", "identifier": [{"identifier": "https://ror.org/04zyakw81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 829 +389 {"name": "agecon search", "language": "en"} [] http://ageconsearch.umn.edu/ disciplinary [] 2022-01-12 15:34:58 2006-08-03 11:11:36 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of minnesota", "alternativeName": "u of m", "country": "us", "url": "http://www.umn.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ageconsearch.umn.edu/pages/?page=policies", "type": "data"}, {"policy_url": "https://ageconsearch.umn.edu/pages/?page=policies", "type": "preservation"}] {"name": "other", "version": ""} yes 105282 +443 {"name": "documentserver centrum voor energie en milieukunde", "language": "en"} [{"acronym": "ivem"}] http://ivem.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-04 12:12:23 ["science", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ivem.eldoc.ub.rug.nl/oai/ yes 71 +322 {"name": "ucl discovery", "language": "en"} [] http://discovery.ucl.ac.uk/ institutional [] 2022-01-12 15:34:57 2006-01-03 12:12:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "university college london", "alternativeName": "ucl", "country": "gb", "url": "http://www.ucl.ac.uk/", "identifier": [{"identifier": "https://ror.org/02jx3x895", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://discovery.ucl.ac.uk/cgi/oai2 yes 335202 +346 {"name": "university of rochester digital repository", "language": "en"} [{"acronym": "ur research"}] https://urresearch.rochester.edu/home.action institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types", "journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of rochester", "alternativeName": "", "country": "us", "url": "http://www.rochester.edu/", "identifier": [{"identifier": "https://ror.org/022kthw22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 33277 +373 {"name": "white rose research online", "language": "en"} [] http://eprints.whiterose.ac.uk institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "white rose consortium: university of leeds; the university of sheffield; university of york", "alternativeName": "", "country": "gb", "url": "https://whiterose.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.whiterose.ac.uk/docs/information.html", "type": "content"}, {"policy_url": "http://eprints.whiterose.ac.uk/docs/takedown.html", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.whiterose.ac.uk/cgi/oai2 yes 59818 +349 {"name": "stirling online research repository", "language": "en"} [{"acronym": "storre"}] https://dspace.stir.ac.uk/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of stirling", "alternativeName": "", "country": "gb", "url": "http://www.stir.ac.uk/", "identifier": [{"identifier": "https://ror.org/045wgfr59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.is.stir.ac.uk/research/repository/eprint-policy.php", "type": "submission"}, {"policy_url": "http://www.is.stir.ac.uk/research/repository/eprint-policy.php", "type": "preservation"}] {"name": "dspace", "version": ""} https://dspace.stir.ac.uk/oai/request yes 14134 +429 {"name": "columbia academic commons", "language": "en"} [] https://academiccommons.columbia.edu institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "columbia university in the city of new york", "alternativeName": "columbia", "country": "us", "url": "https://www.columbia.edu", "identifier": [{"identifier": "https://ror.org/00hj8s172", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://academiccommons.columbia.edu/faq", "type": "content"}, {"policy_url": "https://academiccommons.columbia.edu/faq", "type": "submission"}] {"name": "fedora", "version": ""} https://academiccommons.columbia.edu/oai yes 7864 +336 {"name": "university of new mexico digital repository", "language": "en"} [{"acronym": "unm"}] https://repository.unm.edu/ institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of new mexico", "alternativeName": "unm", "country": "us", "url": "https://www.unm.edu/", "identifier": [{"identifier": "https://ror.org/05fs6jp91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repository.unm.edu/dspace/bitstream/1928/289/2/dspace_policies.doc", "type": "metadata"}, {"policy_url": "https://repository.unm.edu/dspace/bitstream/1928/289/2/dspace_policies.doc", "type": "data"}, {"policy_url": "https://repository.unm.edu/dspace/bitstream/1928/289/2/dspace_policies.doc", "type": "content"}, {"policy_url": "https://repository.unm.edu/dspace/bitstream/1928/289/2/dspace_policies.doc", "type": "submission"}, {"policy_url": "https://repository.unm.edu/dspace/bitstream/1928/289/2/dspace_policies.doc", "type": "preservation"}] {"name": "digital_commons", "version": ""} yes 0 27217 +416 {"name": "colecci\u00f3n de tesis digitales - universidad de las am\u00e9ricas puebla", "language": "en"} [{"acronym": "colecci\u00f3n de tesis"}] http://catarina.udlap.mx/u_dl_a/tales/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de las am\u00e9ricas puebla", "alternativeName": "udlap", "country": "mx", "url": "http://www.udlap.mx/", "identifier": [{"identifier": "https://ror.org/01s1km724", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 4979 +356 {"name": "university of utah institutional repository", "language": "en"} [{"acronym": "uspace"}] http://www.lib.utah.edu/digital-scholarship/uspace-uscholar.php institutional [] 2022-01-12 15:34:58 2006-01-25 15:18:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of utah", "alternativeName": "u of u", "country": "us", "url": "http://www.utah.edu/", "identifier": [{"identifier": "https://ror.org/03r0ha626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 20878 +437 {"name": "dspace an der universit\u00e4t kassel", "language": "en"} [{"acronym": "kobra"}] https://kobra.uni-kassel.de/ institutional [] 2022-01-12 15:34:59 2006-08-04 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e4t kassel", "alternativeName": "", "country": "de", "url": "http://www.uni-kassel.de/uni/", "identifier": [{"identifier": "https://ror.org/04zc7p361", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oai.bibliothek.uni-kassel.de/dspace-oai/request yes 0 5592 +334 {"name": "university of melbourne institutional repository", "language": "en"} [{"acronym": "minerva access"}] https://minerva-access.unimelb.edu.au/ institutional [] 2022-01-12 15:34:57 2006-01-13 16:19:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of melbourne", "alternativeName": "", "country": "au", "url": "http://www.unimelb.edu.au/", "identifier": [{"identifier": "https://ror.org/01ej9dk98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://minerva-access.unimelb.edu.au/oai/request yes 555 73475 +350 {"name": "online publication server of the university of stuttgart", "language": "en"} [{"acronym": "opus"}, {"name": "online publikationen der universit\u00e4t stuttgart", "language": "de"}, {"acronym": "opus"}] https://elib.uni-stuttgart.de institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of stuttgart", "alternativeName": "", "country": "de", "url": "http://www.uni-stuttgart.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://elib.uni-stuttgart.de/oai/request yes 4200 11271 +410 {"name": "cybertesis unmsm", "language": "en"} [] http://cybertesis.unmsm.edu.pe/ institutional [] 2022-01-12 15:34:59 2006-08-03 15:15:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional mayor de san marcos - sisbib", "alternativeName": "unmsm", "country": "pe", "url": "http://www.unmsm.edu.pe/", "identifier": [{"identifier": "https://ror.org/006vs7897", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cybertesis.unmsm.edu.pe/oai/request yes 10592 16165 +327 {"name": "university of delaware library institutional repository", "language": "en"} [] http://dspace.udel.edu:8080/dspace/ institutional [] 2022-01-12 15:34:57 2006-01-11 14:39:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of delaware", "alternativeName": "ud", "country": "us", "url": "http://www.udel.edu/", "identifier": [{"identifier": "https://ror.org/01sbq1a82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.udel.edu:8080/dspace-oai/request yes 23791 +452 {"name": "suny digital repository", "language": "en"} [] https://dspace.sunyconnect.suny.edu institutional [] 2022-01-12 15:34:59 2006-08-04 15:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "state university of new york", "alternativeName": "suny", "country": "us", "url": "http://www.suny.edu/", "identifier": [{"identifier": "https://ror.org/01q1z8k08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.sunyconnect.suny.edu/oai/request yes 0 24587 +428 {"name": "digital.maag", "language": "en"} [] http://digital.maag.ysu.edu:8080/jspui/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "youngstown state university", "alternativeName": "ysu", "country": "us", "url": "http://www.ysu.edu/", "identifier": [{"identifier": "https://ror.org/038zf2n28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 13117 +427 {"name": "digital repository at the university of maryland", "language": "en"} [{"acronym": "drum"}] http://drum.lib.umd.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of maryland", "alternativeName": "", "country": "us", "url": "http://www.umd.edu/", "identifier": [{"identifier": "https://ror.org/047s2c258", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://drum.lib.umd.edu/page/about", "type": "metadata"}, {"policy_url": "http://drum.lib.umd.edu/page/about", "type": "data"}] {"name": "dspace", "version": ""} http://drum.lib.umd.edu/oai/request yes 20513 +337 {"name": "scholarworks at uno", "language": "en"} [] https://scholarworks.uno.edu institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of new orleans", "alternativeName": "uno", "country": "us", "url": "http://www.uno.edu/", "identifier": [{"identifier": "https://ror.org/034mtvk83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes 22942 +361 {"name": "publikationer fr\u00e5n uppsala universitet", "language": "sv"} [{"name": "uppsala university publications", "language": "en"}] http://uu.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "uppsala universitet", "alternativeName": "", "country": "se", "url": "http://www.uu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://uu.diva-portal.org/dice/oai yes 119 79995 +388 {"name": "almae matris studiorum campus", "language": "en"} [{"acronym": "ams campus"}] http://campus.cib.unibo.it/ institutional [] 2022-01-12 15:34:58 2006-08-03 11:11:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects"] [{"name": "alma mater studiorum, universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://campus.unibo.it/cgi/oai2 yes 8725 184542 +328 {"name": "durham research online", "language": "en"} [{"acronym": "dro"}] http://dro.dur.ac.uk/ institutional [] 2022-01-12 15:34:57 2006-01-11 15:07:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "durham university", "alternativeName": "", "country": "gb", "url": "http://www.dur.ac.uk/", "identifier": [{"identifier": "https://ror.org/01v29qb04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dro.dur.ac.uk/cgi/oai2 yes 24348 +347 {"name": "electronics & computer science eprints service - university of southampton", "language": "en"} [{"acronym": "ecs eprints service"}] http://eprints.ecs.soton.ac.uk/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ecs.soton.ac.uk/cgi/oai2 yes 0 15548 +362 {"name": "university of southern queensland eprints", "language": "en"} [{"acronym": "usq eprints"}] http://eprints.usq.edu.au/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of southern queensland", "alternativeName": "usq", "country": "au", "url": "http://www.usq.edu.au/", "identifier": [{"identifier": "https://ror.org/04sjbnx57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.usq.edu.au/cgi/oai2 yes 12103 24311 +352 {"name": "university of toronto scarborough experimental eprints archive", "language": "en"} [{"acronym": "utsc eprints"}] http://eprints.utsc.utoronto.ca/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of toronto at scarborough", "alternativeName": "utsc", "country": "ca", "url": "http://www.utsc.utoronto.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.utsc.utoronto.ca/perl/oai2 yes 17 +351 {"name": "university of tasmania eprints repository", "language": "en"} [{"acronym": "utas eprints"}] http://eprints.utas.edu.au/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of tasmania", "alternativeName": "utas", "country": "au", "url": "http://www.utas.edu.au/", "identifier": [{"identifier": "https://ror.org/01nfmeh72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.utas.edu.au/cgi/oai2 yes 15812 33557 +345 {"name": "university of queensland eprint archive", "language": "en"} [{"acronym": "eprintsuq"}] http://eprint.uq.edu.au/ institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of queensland", "alternativeName": "uq", "country": "au", "url": "http://www.uq.edu.au/", "identifier": [{"identifier": "https://ror.org/00rqy9422", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 1479 +320 {"name": "archipel - universit\u00e9 du qu\u00e9bec \u00e0 montr\u00e9al", "language": "en"} [] http://www.archipel.uqam.ca/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:49:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 du qu\u00e9bec \u00e0 montr\u00e9al", "alternativeName": "uqam", "country": "ca", "url": "http://www.uqam.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.archipel.uqam.ca/cgi/oai2 yes 5653 9439 +430 {"name": "digital case", "language": "en"} [] http://library.case.edu/digitalcase/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "case western reserve university", "alternativeName": "case", "country": "us", "url": "http://www.cwru.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://digitalcase.case.edu:9000/fedora/oai yes 1400 +446 {"name": "dokumentenserver der fachhochschule m\u00fcnster", "language": "en"} [] http://www.hb.fh-muenster.de/ institutional [] 2022-01-12 15:34:59 2006-08-04 13:13:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "fachhochschule m\u00fcnster", "alternativeName": "fh m\u00fcnster", "country": "de", "url": "https://www.fh-muenster.de/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://www.hb.fh-muenster.de/opus/fhms/phpoai/oai2.php yes 0 944 +325 {"name": "escholarship - university of california", "language": "en"} [] https://escholarship.org institutional [] 2022-01-12 15:34:57 2006-01-11 14:23:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "university of california", "alternativeName": "", "country": "us", "url": "https://www.universityofcalifornia.edu", "identifier": [{"identifier": "https://ror.org/00pjdza24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://escholarship.org/oai yes 42233 308982 +323 {"name": "universiteit van amsterdam digital academic repository", "language": "en"} [{"acronym": "uva-dare"}] http://dare.uva.nl/ institutional [] 2022-01-12 15:34:57 2006-01-13 14:50:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universiteit van amsterdam", "alternativeName": "uva", "country": "nl", "url": "http://www.uva.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 164361 +434 {"name": "digitalcommons@robert w. woodruff library", "language": "en"} [] https://radar.auctr.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "atlanta university center", "alternativeName": "", "country": "us", "url": "http://www.auctr.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://radar.auctr.edu/oai2 yes 1 26352 +435 {"name": "digitalcommons@simmons", "language": "en"} [] http://digitalcommons.simmons.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "simmons college", "alternativeName": "", "country": "us", "url": "http://www.simmons.edu/", "identifier": [{"identifier": "https://ror.org/04mbfgm16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.simmons.edu/cgi/oai2.cgi yes 10 +431 {"name": "digitalcommons@fayetteville state university", "language": "en"} [] http://digitalcommons.uncfsu.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "fayetteville state university", "alternativeName": "fsu", "country": "us", "url": "http://www.uncfsu.edu/", "identifier": [{"identifier": "https://ror.org/03rj92e31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.uncfsu.edu/do/oai/ yes 363 857 +436 {"name": "digitalcommons@texas tech university", "language": "en"} [] http://digitalcommons.lib.ttu.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 10:10:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "texas tech university", "alternativeName": "ttu", "country": "us", "url": "http://www.ttu.edu/", "identifier": [{"identifier": "https://ror.org/0405mnx93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.lib.ttu.edu/cgi/oai2.cgi yes 1549 +409 {"name": "epublications@scu", "language": "en"} [] http://epubs.scu.edu.au/ institutional [] 2022-01-12 15:34:59 2006-08-03 15:15:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "southern cross university", "alternativeName": "scu", "country": "au", "url": "http://www.scu.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://epubs.scu.edu.au/do/oai/ yes 26 19325 +433 {"name": "digitalcommons@providence", "language": "en"} [] http://digitalcommons.providence.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "providence college", "alternativeName": "pc", "country": "us", "url": "http://www.providence.edu/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.providence.edu/do/oai/ yes 4659 17368 +383 {"name": "publikationer fr\u00e5n karlstads universitet", "language": "en"} [] http://kau.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:58 2006-08-03 10:10:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "karlstads universitet", "alternativeName": "", "country": "se", "url": "http://www.kau.se/", "identifier": [{"identifier": "https://ror.org/05s754026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kau.diva-portal.org/dice/oai yes 0 16479 +384 {"name": "publikationer fr\u00e5n \u00f6rebro universitet", "language": "en"} [] http://oru.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:34:58 2006-08-03 11:11:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "\u00f6rebro universitet", "alternativeName": "", "country": "se", "url": "http://www.ub.oru.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://oru.diva-portal.org/dice/oai yes 0 12903 +344 {"name": "university of pretoria electronic theses and dissertations", "language": "en"} [{"acronym": "upetd"}] http://upetd.up.ac.za/upetd.htm institutional [] 2022-01-12 15:34:57 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of pretoria", "alternativeName": "up", "country": "za", "url": "http://web.up.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://upetd.up.ac.za/etd-db/ndltd-oai2/oai.pl yes 0 8774 +330 {"name": "ghent university academic bibliography", "language": "en"} [] https://biblio.ugent.be/ institutional [] 2022-01-12 15:34:57 2006-01-11 15:14:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universiteit gent", "alternativeName": "", "country": "be", "url": "http://www.ugent.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://biblio.ugent.be/oai yes 255160 +355 {"name": "volltextserver universit\u00e4t ulm - vts publication service", "language": "en"} [{"acronym": "vts"}] http://vts.uni-ulm.de/index.asp institutional [] 2022-01-12 15:34:58 2006-04-21 16:40:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of ulm", "alternativeName": "", "country": "de", "url": "http://vts.uni-ulm.de/index.asp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://vts.uni-ulm.de/oai/oai.asp yes 3888 +354 {"name": "university of twente research information", "language": "en"} [] https://research.utwente.nl/ institutional [] 2022-01-12 15:34:58 2006-02-01 16:31:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of twente", "alternativeName": "", "country": "nl", "url": "http://www.universiteittwente.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.utwente.nl/cgi/oai2/ yes 17844 53055 +421 {"name": "digitaal archief van de wetenschapswinkels van de rijksuniversiteit groningen.", "language": "en"} [{"acronym": "wewi.eldoc@rug"}] http://wewi.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://wewi.eldoc.ub.rug.nl/oai/ yes 157 +442 {"name": "documentserver academische redevoeringen", "language": "en"} [] http://redes.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-04 12:12:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://redes.eldoc.ub.rug.nl/oai/ yes 125 +440 {"name": "dissertations of the university of groningen", "language": "en"} [] http://dissertations.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-04 11:11:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://dissertations.ub.rug.nl/oai/ yes 1618 +390 {"name": "washington research library consortium - digital collections", "language": "en"} [] http://islandora.wrlc.org/ aggregating [] 2022-01-12 15:34:58 2006-08-03 11:11:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "washington research library consortium", "alternativeName": "wrlc", "country": "us", "url": "http://www.wrlc.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} http://islandora.wrlc.org/oai2 yes 108771 +368 {"name": "opus-datenbak w\u00fcrzburg-schweinfurt", "language": "en"} [] http://www.opus-bayern.de/fh-wue-sw/ institutional [] 2022-01-12 15:34:58 2006-01-23 11:17:23 ["science", "technology", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of applied sciences wuerzburg-schweinfurt", "alternativeName": "fhws", "country": "de", "url": "http://www.fhws.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 20 +380 {"name": "scholarchive: pilot repository project", "language": "en"} [{"acronym": "scholarchive"}] http://eprints.fcla.edu/ institutional [] 2022-01-12 15:34:58 2006-08-03 01:01:03 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "florida center for library automation", "alternativeName": "fcla", "country": "us", "url": "http://www.fcla.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.fcla.edu/perl/oai2 yes 26 +402 {"name": "arts repository - university of groningen", "language": "en"} [] http://arts.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:58 2006-08-03 15:15:18 ["social sciences", "arts", "humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://arts.eldoc.ub.rug.nl/oai/ yes 75 +403 {"name": "association for the scientific study of consciousness eprints archive", "language": "en"} [{"acronym": "assc publications"}] http://www.theassc.org/eprints_archive disciplinary [] 2022-01-12 15:34:58 2006-08-03 15:15:22 ["social sciences", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 404 +378 {"name": "urban and regional studies institute", "language": "en"} [{"acronym": "ursi"}] http://ursi.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:58 2006-07-26 11:11:29 ["social sciences", "humanities"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ursi.eldoc.ub.rug.nl/oai/ yes 8 +395 {"name": "american museum of natural history scientific publications", "language": "en"} [{"acronym": "amnh publications"}] http://digitallibrary.amnh.org/dspace/ institutional [] 2022-01-12 15:34:58 2006-08-03 12:12:09 ["social sciences", "science", "humanities"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "american museum of natural history", "alternativeName": "amnh", "country": "us", "url": "http://www.amnh.org/", "identifier": [{"identifier": "https://ror.org/03thb3e06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digitallibrary.amnh.org/oai/request yes 2166 6891 +447 {"name": "dspace at bromley college", "language": "en"} [] http://vle.bromley.ac.uk/dspace/ institutional [] 2022-01-12 15:34:59 2006-08-04 14:14:26 ["social sciences", "technology"] ["learning_objects", "other_special_item_types"] [{"name": "london south east colleges, bromley", "alternativeName": "", "country": "gb", "url": "http://www.lsec.ac.uk/locations/bromley", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://vle.bromley.ac.uk/dspace-oai/request yes 42 +414 {"name": "centrum voor onderzoek van de economie van de lagere overheden", "language": "en"} [{"acronym": "ccso"}] http://coelo.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:13 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://coelo.eldoc.ub.rug.nl/oai/ yes 37 +439 {"name": "digital commons @ um law", "language": "en"} [] http://digitalcommons.law.umaryland.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 11:11:39 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of maryland", "alternativeName": "", "country": "us", "url": "http://www.umd.edu/", "identifier": [{"identifier": "https://ror.org/047s2c258", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.law.umaryland.edu/do/oai/ yes 6469 9239 +438 {"name": "digitalcommons@university of georgia school of law", "language": "en"} [] http://digitalcommons.law.uga.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 11:11:37 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of georgia school of law", "alternativeName": "", "country": "us", "url": "http://www.law.uga.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.law.uga.edu/do/oai/ yes 5840 12673 +413 {"name": "centre for economic research working papers", "language": "en"} [{"acronym": "ccso working papers"}] http://ccso.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:12 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ccso.eldoc.ub.rug.nl/oai/ yes 107 +412 {"name": "centre for development studies", "language": "en"} [{"acronym": "cds"}] http://cds.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 15:15:49 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://cds.eldoc.ub.rug.nl/oai/ yes 22 +423 {"name": "digitaal archief van van het documentatiecentrum nederlandse politieke partijen van de rijksuniversiteit groningen", "language": "en"} [{"acronym": "dnpp.eldoc"}] http://dnpp.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:54 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://dnpp.eldoc.ub.rug.nl/oai/ yes 66 +422 {"name": "digitaal archief van de faculteit economie, bedrijfskunde en ruimtelijke wetenschappen van de rijksuniversiteit groningen", "language": "en"} [{"acronym": "ebr.eldoc university"}] http://ebr.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:52 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ebr.eldoc.ub.rug.nl/oai/ yes 113 +399 {"name": "archivsystem ask23", "language": "en"} [{"acronym": "ask23"}] http://ask23.hfbk-hamburg.de/draft/ institutional [] 2022-01-12 15:34:58 2006-08-03 12:12:23 ["technology", "social sciences", "arts", "humanities"] ["bibliographic_references", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "hochschule f\u00fcr bildende k\u00fcnste", "alternativeName": "hfbk", "country": "de", "url": "http://www.hfbk-hamburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://search.ugent.be/cgi-bin/gateway/gateway.cgi/oai.ask23.de/static/ask23-oai.xml yes 28 160 +415 {"name": "xios theses", "language": "en"} [] http://doks.xios.be/doks/do/folder/view?dispatch=info institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:19 ["technology", "social sciences", "science"] ["theses_and_dissertations"] [{"name": "xios hogeschool limburg", "alternativeName": "xios", "country": "be", "url": "http://www.xios.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://doks.xios.be/doks/oai yes 1063 +326 {"name": "uct computer science research document archive", "language": "en"} [{"acronym": "uct cs archive"}] http://pubs.cs.uct.ac.za/ institutional [] 2022-01-12 15:34:57 2006-01-11 14:28:20 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of cape town", "alternativeName": "", "country": "za", "url": "http://www.uct.ac.za/", "identifier": [{"identifier": "https://ror.org/03p74gp79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pubs.cs.uct.ac.za/perl/oai2 yes 899 +333 {"name": "eprints.fri", "language": "en"} [] http://eprints.fri.uni-lj.si/ institutional [] 2022-01-12 15:34:57 2006-01-11 17:09:26 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "univerza v ljubljani", "alternativeName": "", "country": "si", "url": "http://www.uni-lj.si/", "identifier": [{"identifier": "https://ror.org/05njb9z20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.fri.uni-lj.si/cgi/oai2 yes 2035 3947 +382 {"name": "11th joint symposium on neural computation", "language": "en"} [] http://jsnc.library.caltech.edu/ disciplinary [] 2022-01-12 15:34:58 2006-08-03 10:10:54 ["technology"] ["conference_and_workshop_papers"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://jsnc.library.caltech.edu/perl/oai2 yes 30 +417 {"name": "computer science technical reports @virginia tech", "language": "en"} [] http://eprints.cs.vt.edu/ disciplinary [] 2022-01-12 15:34:59 2006-08-03 16:16:24 ["technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "virginia polytechnic institute and state university", "alternativeName": "virginia tech", "country": "us", "url": "http://www.vt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.cs.vt.edu/perl/oai2 yes 837 997 +381 {"name": "dalhousie computer science technical reports series", "language": "en"} [] http://www.cs.dal.ca/research/techreports/ institutional [] 2022-01-12 15:34:58 2006-08-03 09:09:12 ["technology"] ["bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "dalhousie university", "alternativeName": "dal", "country": "ca", "url": "http://www.dal.ca/", "identifier": [{"identifier": "https://ror.org/01e6qks80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 124 +364 {"name": "vanderbilt university institutional repository", "language": "en"} [{"acronym": "vuir"}] https://ir.vanderbilt.edu institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "vanderbilt university", "alternativeName": "", "country": "us", "url": "http://www.vanderbilt.edu", "identifier": [{"identifier": "https://ror.org/02vm5rt34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://discoverarchive.vanderbilt.edu/oai/request yes 625 7482 +348 {"name": "e-prints soton", "language": "en"} [] https://eprints.soton.ac.uk/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.soton.ac.uk/repositorypolicy.html", "type": "metadata"}, {"policy_url": "http://eprints.soton.ac.uk/repositorypolicy.html", "type": "data"}, {"policy_url": "http://eprints.soton.ac.uk/repositorypolicy.html", "type": "content"}, {"policy_url": "http://eprints.soton.ac.uk/repositorypolicy.html", "type": "submission"}] {"name": "eprints", "version": ""} https://eprints.soton.ac.uk/cgi/oai2 yes 8 180206 +359 {"name": "dspace at the university of washington", "language": "en"} [] https://digital.lib.washington.edu/dspace/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "mathematics", "technology", "humanities", "arts", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "university of washington", "alternativeName": "uw", "country": "us", "url": "http://www.washington.edu/", "identifier": [{"identifier": "https://ror.org/00cvxb145", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital.lib.washington.edu/dspace-oai/request yes 0 22328 +332 {"name": "ku scholarworks", "language": "en"} [] https://kuscholarworks.ku.edu/dspace/ institutional [] 2022-01-12 15:34:57 2006-01-11 17:03:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of kansas", "alternativeName": "ku", "country": "us", "url": "http://www.ku.edu/", "identifier": [{"identifier": "https://ror.org/001tmjg57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www2.ku.edu/~scholar/docs/policies.shtml", "type": "metadata"}, {"policy_url": "http://www2.ku.edu/~scholar/docs/policies.shtml", "type": "data"}, {"policy_url": "http://www2.ku.edu/~scholar/docs/policies.shtml", "type": "content"}, {"policy_url": "http://www2.ku.edu/~scholar/docs/policies.shtml", "type": "submission"}, {"policy_url": "http://www2.ku.edu/~scholar/docs/policies.shtml", "type": "preservation"}] {"name": "dspace", "version": ""} http://kuscholarworks.ku.edu/dspace-oai/request yes 7808 27105 +370 {"name": "wageningen staff publications", "language": "en"} [] http://library.wur.nl/webquery/wurpubs?a240=ok institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "wageningen university and research", "alternativeName": "", "country": "nl", "url": "http://www.wur.nl/", "identifier": [{"identifier": "https://ror.org/04qw24q55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://library.wur.nl/oai yes 57552 234868 +450 {"name": "rice digital scholarship archive", "language": "en"} [] http://scholarship.rice.edu/ institutional [] 2022-01-12 15:34:59 2006-08-04 15:15:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "rice university", "alternativeName": "", "country": "us", "url": "http://www.rice.edu/", "identifier": [{"identifier": "https://ror.org/008zs3103", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalriceprojects.pbworks.com/w/page/86368345/rdsa%20deposit%20guidelines", "type": "submission"}, {"policy_url": "http://digitalriceprojects.pbworks.com/w/page/44763477/digital%20preservation%20support", "type": "preservation"}] {"name": "dspace", "version": ""} http://scholarship.rice.edu/dspace-oai/request yes 4405 71040 +386 {"name": "elektronisches publikationsportal der \u00f6sterreichischen akademie der wissenschaften", "language": "en"} [{"acronym": "epub.oeaw"}] http://epub.oeaw.ac.at/ institutional [] 2022-01-12 15:34:58 2006-08-03 11:11:13 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["books_chapters_and_sections"] [{"name": "austrian academy of sciences", "alternativeName": "", "country": "at", "url": "http://www.oeaw.ac.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://epub.oeaw.ac.at/0xc1aa500e_0x00322a8b", "type": "metadata"}, {"policy_url": "http://epub.oeaw.ac.at/0xc1aa500e_0x00322a8b", "type": "data"}, {"policy_url": "http://epub.oeaw.ac.at/0xc1aa500e_0x00322a8b", "type": "content"}, {"policy_url": "http://epub.oeaw.ac.at/0xc1aa500e_0x00322a8b", "type": "submission"}, {"policy_url": "http://epub.oeaw.ac.at/0xc1aa500e_0x00322a8b", "type": "preservation"}] {"name": "other", "version": ""} http://epub.oeaw.ac.at/oai yes 1367 49905 +365 {"name": "victoria university eprints repository", "language": "en"} [] http://vuir.vu.edu.au/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "victoria university", "alternativeName": "vu", "country": "au", "url": "http://www.vu.edu.au/", "identifier": [{"identifier": "https://ror.org/04j757h98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://w2.vu.edu.au/library/eprints/guidelines.htm", "type": "content"}] {"name": "eprints", "version": ""} http://vuir.vu.edu.au/cgi/oai2 yes 3287 16354 +432 {"name": "massey research online", "language": "en"} [] http://mro.massey.ac.nz/ institutional [] 2022-01-12 15:34:59 2006-08-04 09:09:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "massey university", "alternativeName": "", "country": "nz", "url": "http://www.massey.ac.nz/", "identifier": [{"identifier": "https://ror.org/052czxv31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://mro.massey.ac.nz/page/contentpolicy", "type": "content"}] {"name": "dspace", "version": ""} https://mro.massey.ac.nz/oai/request? yes 3388 13942 +363 {"name": "uts institutional repository", "language": "en"} [{"acronym": "opus"}] https://opus.lib.uts.edu.au institutional [] 2022-01-12 15:34:58 2005-12-16 11:37:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of technology sydney", "alternativeName": "", "country": "au", "url": "https://www.uts.edu.au", "identifier": [{"identifier": "https://ror.org/03f0f6041", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opus.lib.uts.edu.au/help/copyright", "type": "metadata"}, {"policy_url": "https://opus.lib.uts.edu.au/help/copyright", "type": "data"}, {"policy_url": "https://opus.lib.uts.edu.au/help/copyright", "type": "content"}, {"policy_url": "https://opus.lib.uts.edu.au/help/copyright", "type": "submission"}] {"name": "opus", "version": ""} https://opus.lib.uts.edu.au/oai/request yes 11145 73354 +393 {"name": "american memory", "language": "en"} [] http://memory.loc.gov/ammem/index.html disciplinary [] 2022-01-12 15:34:58 2006-08-03 12:12:04 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "library of congress", "alternativeName": "lc", "country": "us", "url": "http://www.loc.gov/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://memory.loc.gov/ammem/oamh/lcoa1_content.html", "type": "content"}] {"name": "", "version": ""} http://memory.loc.gov/cgi-bin/oai2_0 yes 0 247005 +375 {"name": "woods hole open access server", "language": "en"} [{"acronym": "whoas"}] https://darchive.mblwhoilibrary.org/ institutional [] 2022-01-12 15:34:58 2005-12-09 11:44:56 ["science", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "marine biological laboratory & woods hole oceanographic institution", "alternativeName": "mbl & whoi", "country": "us", "url": "http://www.whoi.edu/", "identifier": [{"identifier": "https://ror.org/03zbnzt98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.mblwhoilibrary.org/services/whoas-repository-services", "type": "content"}, {"policy_url": "http://www.mblwhoilibrary.org/services/whoas-repository-services", "type": "submission"}, {"policy_url": "http://www.mblwhoilibrary.org/services/whoas-repository-services", "type": "preservation"}] {"name": "dspace", "version": ""} http://darchive.mblwhoilibrary.org/oai/request yes 0 8809 +419 {"name": "deep blue at the university of michigan", "language": "en"} [] http://deepblue.lib.umich.edu/ institutional [] 2022-01-12 15:34:59 2006-08-03 16:16:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "university of michigan", "alternativeName": "u-m", "country": "us", "url": "http://www.umich.edu/", "identifier": [{"identifier": "https://ror.org/00jmfr291", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://deepblue.lib.umich.edu/static/about/deepbluepreservation.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://deepblue.lib.umich.edu/dspace-oai/request yes 0 120116 +550 {"name": "tilburg university repository", "language": "en"} [] https://research.tilburguniversity.edu institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:47 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "tilburg university", "alternativeName": "", "country": "nl", "url": "https://www.tilburguniversity.edu", "identifier": [{"identifier": "https://ror.org/04b8v1s79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.uvt.nl/ws/oai yes 10458 88060 +560 {"name": "trinity digital collections", "language": "en"} [] https://trinity.contentdm.oclc.org institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:27 ["arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "trinity university (san antonio, tx)", "alternativeName": "", "country": "us", "url": "http://web.trinity.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 1024 +522 {"name": "modiya project", "language": "en"} [] http://modiya.nyu.edu/ disciplinary [] 2022-01-12 15:35:00 2006-08-16 15:15:30 ["arts", "humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 273 +485 {"name": "humanities text initiative", "language": "en"} [] http://www.hti.umich.edu/ institutional [] 2022-01-12 15:35:00 2006-08-07 16:16:28 ["arts", "humanities"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of michigan", "alternativeName": "u-m", "country": "us", "url": "http://www.umich.edu/", "identifier": [{"identifier": "https://ror.org/00jmfr291", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.hti.umich.edu/cgi/b/broker20/broker20 yes 46 +580 {"name": "clearing house transport", "language": "en"} [] http://www.dlr.de/cs/en/desktopdefault.aspx/1177_read-2160/ institutional [] 2022-01-12 15:35:02 2006-08-18 12:12:20 ["engineering", "mathematics"] ["datasets"] [{"name": "german aerospace center (dlr)", "alternativeName": "", "country": "de", "url": "http://www.dlr.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 10 +505 {"name": "isu electrical and computer engineering archives", "language": "en"} [] http://archives.ece.iastate.edu/ institutional [] 2022-01-12 15:35:00 2006-08-16 10:10:35 ["engineering", "technology"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "iowa state university", "alternativeName": "", "country": "us", "url": "http://www.iastate.edu/", "identifier": [{"identifier": "https://ror.org/04rswrd78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archives.ece.iastate.edu/perl/oai2 yes 0 383 +507 {"name": "johnson technical reports server", "language": "en"} [{"acronym": "jtrs"}] http://ston.jsc.nasa.gov/collections/trs/ institutional [] 2022-01-12 15:35:00 2006-08-16 11:11:43 ["engineering", "technology"] ["unpub_reports_and_working_papers"] [{"name": "nasa johnson space centre", "alternativeName": "jsc", "country": "us", "url": "http://www.nasa.gov/centers/johnson/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 428 +502 {"name": "system competence area document server", "language": "en"} [{"acronym": "sysdoc"}] http://sysdoc.com.dtu.dk/ institutional [] 2022-01-12 15:35:00 2006-08-14 16:16:26 ["engineering", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "technical university of denmark", "alternativeName": "dtu", "country": "dk", "url": "http://www.dtu.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://sysdoc.com.dtu.dk/oai2d.py/ yes 927 +579 {"name": "university of zagreb medical school repository", "language": "en"} [] http://medlib.mef.hr/ institutional [] 2022-01-12 15:35:02 2006-08-18 11:11:42 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "sveu\u010dili\u0161te u zagrebu medicinski fakultet", "alternativeName": "", "country": "hr", "url": "http://smk.mef.unizg.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://medlib.mef.hr/cgi/oai2 yes 2825 2879 +542 {"name": "research findings register", "language": "en"} [{"acronym": "refer"}] http://www.refer.nhs.uk/ governmental [] 2022-01-12 15:35:01 2006-08-17 12:12:30 ["health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "united kingdom department of health", "alternativeName": "", "country": "gb", "url": "http://www.dh.gov.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.refer.nhs.uk/oai-pmh/oai-pmh.asp yes 1289 +472 {"name": "european cultural heritage online", "language": "en"} [{"acronym": "echo"}] http://echo.mpiwg-berlin.mpg.de/home institutional [] 2022-01-12 15:35:00 2006-08-07 14:14:42 ["humanities", "arts"] ["bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "max-planck-institut f\u00fcr wissenschaftsgeschichte", "alternativeName": "", "country": "de", "url": "http://www.mpiwg-berlin.mpg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 575000 +546 {"name": "geo-leoe-docs", "language": "en"} [] https://e-docs.geo-leo.de disciplinary [] 2022-01-12 15:35:01 2006-08-17 13:13:36 ["humanities", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "g\u00f6ttingen state and university library", "alternativeName": "sub g\u00f6ttingen", "country": "de", "url": "https://www.sub.uni-goettingen.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://e-docs.geo-leo.de/oai/request?verb=identify yes 184 +531 {"name": "policy documentation center", "language": "en"} [] http://pdc.ceu.hu/ disciplinary [] 2022-01-12 15:35:01 2006-08-16 16:16:40 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "central european university", "alternativeName": "ceu", "country": "hu", "url": "http://www.ceu.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pdc.ceu.hu/perl/oai2 yes 7518 +480 {"name": "groningen growth & development centre", "language": "en"} [{"acronym": "ggdc"}] http://ggdc.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:00 2006-08-07 16:16:01 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://ggdc.eldoc.ub.rug.nl/oai/ yes 58 +536 {"name": "publicaties faculteit der godgeleerdheid en godsdienstwetenschap", "language": "en"} [] http://theol.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-17 11:11:16 ["humanities"] ["books_chapters_and_sections", "unpub_reports_and_working_papers", "bibliographic_references"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://theol.eldoc.ub.rug.nl/oai/ yes 119 +519 {"name": "mims eprints", "language": "en"} [] http://eprints.ma.man.ac.uk institutional [] 2022-01-12 15:35:00 2006-08-16 14:14:20 ["mathematics", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of manchester", "alternativeName": "", "country": "gb", "url": "http://www.manchester.ac.uk", "identifier": [{"identifier": "https://ror.org/027m9bs27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ma.man.ac.uk/perl/oai2 yes 1959 +526 {"name": "northsee at university groningen", "language": "en"} [] https://hanze.dare.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-16 16:16:01 ["mathematics", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://hanze.dare.ub.rug.nl/dspace-oai/request yes 3 +525 {"name": "national aerospace laboratories institutional repository", "language": "en"} [{"acronym": "csir-nal"}] http://nal-ir.nal.res.in institutional [] 2022-01-12 15:35:01 2006-08-16 15:15:53 ["mathematics", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "patents", "other_special_item_types"] [{"name": "information centre for aerospace science and technology", "alternativeName": "icast", "country": "in", "url": "http://www.icast.org.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://nal-ir.nal.res.in/cgi/oai2 yes 1878 6666 +481 {"name": "graph drawing e-print archive", "language": "en"} [{"acronym": "gdea"}] http://gdea.informatik.uni-koeln.de/ disciplinary [] 2022-01-12 15:35:00 2006-08-07 16:16:03 ["mathematics"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t zu k\u00f6ln", "alternativeName": "usb k\u00f6ln", "country": "de", "url": "http://www.uni-koeln.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://gdea.informatik.uni-koeln.de/cgi/oai2 yes 8 1225 +559 {"name": "mathematics in industry information service eprints archive", "language": "en"} [] http://www.maths-in-industry.org/miis/ disciplinary [] 2022-01-12 15:35:01 2006-08-17 14:14:25 ["mathematics"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "oxford centre for industrial & applied mathematics", "alternativeName": "ociam", "country": "gb", "url": "http://www.maths.ox.ac.uk/ociam/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.maths-in-industry.org/miis/cgi/oai2 yes 672 697 +555 {"name": "drs at national institute of oceanography", "language": "en"} [{"acronym": "drs@nio"}] http://drs.nio.org/drs/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:14 ["science", "arts", "humanities", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national institute of oceanography", "alternativeName": "nio", "country": "in", "url": "http://www.nio.org/", "identifier": [{"identifier": "https://ror.org/01gvkyp03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://drs.nio.org/oai/request yes 7665 +524 {"name": "nasa dryden technical reports server", "language": "en"} [{"acronym": "nasa dtrs"}] http://www.nasa.gov/centers/dryden/news/dtrs/index.html institutional [] 2022-01-12 15:35:00 2006-08-16 15:15:49 ["science", "engineering"] ["unpub_reports_and_working_papers"] [{"name": "dryden flight research center", "alternativeName": "dfrc", "country": "us", "url": "http://www.nasa.gov/centers/dryden", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 979 +556 {"name": "magic arc repository", "language": "en"} [] http://naca.central.cranfield.ac.uk/ disciplinary [] 2022-01-12 15:35:01 2006-08-17 14:14:18 ["science", "engineering"] ["unpub_reports_and_working_papers"] [{"name": "cranfield university", "alternativeName": "", "country": "gb", "url": "http://www.cranfield.ac.uk/", "identifier": [{"identifier": "https://ror.org/05cncd958", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://naca.central.cranfield.ac.uk/cgi-bin/nph-oai.cgi yes 7640 +515 {"name": "zernike institute for advanced materials publications", "language": "en"} [{"acronym": "materials science centre"}] http://msc.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:00 2006-08-16 14:14:08 ["science", "engineering"] ["journal_articles"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://msc.eldoc.ub.rug.nl/oai/ yes 2419 +516 {"name": "publicaties bibliotheek rug", "language": "en"} [] http://bibliotheek.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:00 2006-08-16 14:14:10 ["science", "humanities", "social sciences"] ["journal_articles"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://bibliotheek.eldoc.ub.rug.nl/oai/ yes 28 +528 {"name": "northsee: gasunie", "language": "en"} [] http://gasunie.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-16 16:16:06 ["science", "social sciences", "technology"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1369 +490 {"name": "national digital archive of datasets", "language": "en"} [{"acronym": "ndad"}] https://webarchive.nationalarchives.gov.uk/20101104101827/http://www.ndad.nationalarchives.gov.uk governmental [] 2022-01-12 15:35:00 2006-08-10 17:17:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "gov.uk", "alternativeName": "uk government", "country": "gb", "url": "https://data.gov.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +581 {"name": "dspace@inflibnet", "language": "en"} [] http://ir.inflibnet.ac.in/ institutional [] 2022-01-12 15:35:02 2006-08-21 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "information and library network center", "alternativeName": "inflibnet", "country": "in", "url": "http://www.inflibnet.ac.in/", "identifier": [{"identifier": "https://ror.org/05mhhk279", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1777 +572 {"name": "undergraduate theses & essays from lund university", "language": "en"} [{"acronym": "xerxes"}] http://theses.lub.lu.se/undergrad/ institutional [] 2022-01-12 15:35:01 2006-08-17 16:16:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "lunds universitet", "alternativeName": "", "country": "se", "url": "http://www.lu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 6292 +566 {"name": "dialnet", "language": "en"} [] http://dialnet.unirioja.es/ aggregating [] 2022-01-12 15:35:01 2006-08-17 14:14:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "universidad de la rioja", "alternativeName": "", "country": "es", "url": "http://www.unirioja.es/", "identifier": [{"identifier": "https://ror.org/0553yr311", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://dialnet.unirioja.es/oai/oaihandler yes 619 644198 +573 {"name": "university of georgia electronic theses and dissertations", "language": "en"} [] http://digitalarchive.gsu.edu/theses/ institutional [] 2022-01-12 15:35:01 2006-08-17 16:16:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of georgia", "alternativeName": "", "country": "us", "url": "http://www.uga.edu/", "identifier": [{"identifier": "https://ror.org/00te3t702", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 5145 +464 {"name": "electronic thesis & dissertations - brigham young university", "language": "en"} [{"acronym": "byu etd collection"}] http://etd.lib.byu.edu/ institutional [] 2022-01-12 15:34:59 2006-08-07 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "brigham young university", "alternativeName": "byu", "country": "us", "url": "http://www.byu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 4227 +460 {"name": "digital collections", "language": "en"} [] http://www.library.okstate.edu/digital/index.htm institutional [] 2022-01-12 15:34:59 2006-08-04 16:16:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "oklahoma state university", "alternativeName": "", "country": "us", "url": "http://go.okstate.edu/", "identifier": [{"identifier": "https://ror.org/01g9vbr38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 68325 +487 {"name": "illinois digital environment for access to learning and scholarship repository", "language": "en"} [{"acronym": "ideals repository"}] http://www.ideals.illinois.edu/ institutional [] 2022-01-12 15:35:00 2006-08-08 15:15:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects", "journal_articles"] [{"name": "university of illinois at urbana-champaign", "alternativeName": "", "country": "us", "url": "http://illinois.edu/", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ideals.illinois.edu/dspace-oai/request yes 57127 104729 +565 {"name": "texas digital library repository", "language": "en"} [{"acronym": "tdl repository"}] https://tdl-ir.tdl.org/tdl-ir/ aggregating [] 2022-01-12 15:35:01 2006-08-17 14:14:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "texas digital library", "alternativeName": "tdl", "country": "us", "url": "http://www.tdl.org/", "identifier": [{"identifier": "https://ror.org/018pahb94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 57283 +455 {"name": "dspace de universidad de los andes", "language": "es"} [{"acronym": "uniandes"}] http://dspace.uniandes.edu.ec institutional [] 2022-01-12 15:34:59 2006-08-04 16:16:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software"] [{"name": "uniandes", "alternativeName": "universidad regional aut\u00f3noma de los andes", "country": "ec", "url": "https://www.uniandes.edu.ec", "identifier": [{"identifier": "https://ror.org/00cgjqd45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 875 +462 {"name": "digital collections repository", "language": "en"} [] https://digital.library.txstate.edu/ institutional [] 2022-01-12 15:34:59 2006-08-07 10:10:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "texas state university - san marcos", "alternativeName": "txstate", "country": "us", "url": "http://www.txstate.edu/", "identifier": [{"identifier": "https://ror.org/05h9q1g27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3496 +547 {"name": "researchspace@auckland", "language": "en"} [] https://researchspace.auckland.ac.nz/ institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of auckland", "alternativeName": "", "country": "nz", "url": "http://www.auckland.ac.nz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://researchspace.auckland.ac.nz/dspace-oai/request yes 0 34907 +570 {"name": "repositorio acad\u00e9mico de la universidad de chile", "language": "en"} [] http://www.repositorio.uchile.cl/ institutional [] 2022-01-12 15:35:01 2006-08-17 15:15:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl/", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.uchile.cl/oai/request yes 48754 +496 {"name": "tuwhera open repository", "language": "en"} [] https://openrepository.aut.ac.nz/ institutional [] 2022-01-12 15:35:00 2006-08-11 16:16:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "auckland university of technology", "alternativeName": "aut", "country": "nz", "url": "http://www.aut.ac.nz/", "identifier": [{"identifier": "https://ror.org/01zvqw119", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6314 +456 {"name": "upcommons - e-prints upc", "language": "en"} [] http://upcommons.upc.edu/e-prints/ institutional [] 2022-01-12 15:34:59 2006-08-04 16:16:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universitat polit\u00e8nica de catalunya", "alternativeName": "upc", "country": "es", "url": "http://www.upc.edu/", "identifier": [{"identifier": "https://ror.org/03mb6wj31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eprints.upc.es:8080/dspace-oai/request yes 23452 +574 {"name": "university of oregon scholars bank", "language": "en"} [] http://scholarsbank.uoregon.edu/ institutional [] 2022-01-12 15:35:02 2006-08-18 10:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of oregon", "alternativeName": "", "country": "us", "url": "http://www.uoregon.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarsbank.uoregon.edu/oai/request yes 9351 23530 +454 {"name": "digital commons @ owu", "language": "en"} [{"acronym": "owu"}] http://digitalcommons.owu.edu institutional [] 2022-01-12 15:34:59 2006-08-04 16:16:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "wesleyan university", "alternativeName": "", "country": "us", "url": "https://www.wesleyan.edu", "identifier": [{"identifier": "https://ror.org/05h7xva58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.owu.edu/do/oai yes 28 +538 {"name": "publications from the university of g\u00e4vle", "language": "en"} [{"name": "publikationer fr\u00e5n h\u00f6gskolan i g\u00e4vle", "language": "sv"}] http://hig.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:01 2006-08-17 11:11:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of g\u00e4vle", "alternativeName": "", "country": "se", "url": "https://www.hig.se", "identifier": [{"identifier": "https://ror.org/043fje207", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://hig.diva-portal.org/dice/oai yes 0 11980 +453 {"name": "dspace at the university of guelph", "language": "en"} [{"acronym": "atrium"}] http://atrium.lib.uoguelph.ca/ institutional [] 2022-01-12 15:34:59 2006-08-04 15:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "university of guelph", "alternativeName": "", "country": "ca", "url": "http://www.uoguelph.ca/", "identifier": [{"identifier": "https://ror.org/01r7awg59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://atrium.lib.uoguelph.ca/oai/request yes 0 6922 +482 {"name": "heidelberger dokumentenserver", "language": "en"} [{"acronym": "heidok"}] http://archiv.ub.uni-heidelberg.de/volltextserver/ institutional [] 2022-01-12 15:35:00 2006-08-07 16:16:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ruprecht-karls-universit\u00e4t, heidelberg", "alternativeName": "", "country": "de", "url": "http://www.uni-heidelberg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archiv.ub.uni-heidelberg.de/volltextserver/cgi/oai2 yes 11271 12924 +499 {"name": "indian institute of management kozhikode scholarship repository", "language": "en"} [{"acronym": "eprints@iimk"}] http://eprints.iimk.ac.in/ institutional [] 2022-01-12 15:35:00 2006-08-14 14:14:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "indian institute of management kozhikode", "alternativeName": "iimk", "country": "in", "url": "http://www.iimk.ac.in/", "identifier": [{"identifier": "https://ror.org/03m1xdc36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.iimk.ac.in/perl/oai2 yes 151 +473 {"name": "examensarbeten h\u00f6gskolan kristianstad", "language": "en"} [] http://eprints.bibl.hkr.se/ institutional [] 2022-01-12 15:35:00 2006-08-07 14:14:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "h\u00f6gskolan kristianstad", "alternativeName": "", "country": "se", "url": "http://www.hkr.se/", "identifier": [{"identifier": "https://ror.org/00tkrft03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.bibl.hkr.se/perl/oai2 yes 749 +478 {"name": "giessener elektronische bibliothek", "language": "en"} [{"acronym": "geb"}] http://geb.uni-giessen.de/geb/ institutional [] 2022-01-12 15:35:00 2006-08-07 15:15:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "justus-liebig-universit\u00e4t gie\u00dfen", "alternativeName": "", "country": "de", "url": "http://www.uni-giessen.de/cms/", "identifier": [{"identifier": "https://ror.org/033eqas34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://geb.uni-giessen.de/geb/oai/oai2.php yes 11839 +540 {"name": "purdue e-scholar", "language": "en"} [{"acronym": "purdue e-pubs"}] http://docs.lib.purdue.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 12:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "journal_articles", "unpub_reports_and_working_papers"] [{"name": "purdue university", "alternativeName": "", "country": "us", "url": "http://www.purdue.edu/", "identifier": [{"identifier": "https://ror.org/02dqehb95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://docs.lib.purdue.edu/do/oai/ yes 20706 76793 +563 {"name": "digital commons @salve regina university", "language": "en"} [] http://digitalcommons.salve.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "salve regina university", "alternativeName": "", "country": "us", "url": "http://www.salve.edu/", "identifier": [{"identifier": "https://ror.org/004qfsw40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.salve.edu/do/oai/ yes 3132 5579 +483 {"name": "helin digital commons", "language": "en"} [] http://helindigitalcommons.org/ aggregating [] 2022-01-12 15:35:00 2006-08-07 16:16:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "helin library consortium", "alternativeName": "helin", "country": "us", "url": "http://helin.uri.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://helindigitalcommons.org/do/oai/ yes 614 43453 +468 {"name": "epublish@utd", "language": "en"} [] http://epublish.utdallas.edu/ institutional [] 2022-01-12 15:35:00 2006-08-07 14:14:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of texas at dallas", "alternativeName": "utd", "country": "us", "url": "http://www.utdallas.edu/", "identifier": [{"identifier": "https://ror.org/049emcs32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://epublish.utdallas.edu/cgi/oai2.cgi yes 1509 +510 {"name": "kyushu university institutional repository", "language": "en"} [{"name": "\u4e5d\u5dde\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.lib.kyushu-u.ac.jp/ja/collections/qir institutional [] 2022-01-12 15:35:00 2006-08-16 12:12:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kyushu university", "alternativeName": "", "country": "jp", "url": "http://www.kyushu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://catalog.lib.kyushu-u.ac.jp/mmd/mmd_api/oai-pmh/ yes 79436 +484 {"name": "hiroshima university institutional repository", "language": "en"} [{"acronym": "hir"}, {"name": "\u5e83\u5cf6\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ir.lib.hiroshima-u.ac.jp/ja institutional [] 2022-01-12 15:35:00 2006-08-07 16:16:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "hiroshima university", "alternativeName": "", "country": "jp", "url": "http://www.hiroshima-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.lib.hiroshima-u.ac.jp/api/oai/request yes 27136 +471 {"name": "etds @ vt", "language": "en"} [] http://scholar.lib.vt.edu/theses/browse/index.html aggregating [] 2022-01-12 15:35:00 2006-08-07 14:14:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "digital library research laboratory", "alternativeName": "", "country": "us", "url": "http://www.dlib.vt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 21490 +465 {"name": "electronic thesis and dissertation archive - universit\u00e0 di pisa", "language": "en"} [] http://etd.adm.unipi.it/ institutional [] 2022-01-12 15:34:59 2006-08-07 12:12:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 di pisa", "alternativeName": "", "country": "it", "url": "http://www.unipi.it/", "identifier": [{"identifier": "https://ror.org/03ad39j10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://etd.adm.unipi.it/etd-db/ndltd-oai/oai.pl yes 13300 45023 +534 {"name": "projeto maxwell", "language": "en"} [{"acronym": "maxwell"}] http://www.maxwell.vrac.puc-rio.br/ institutional [] 2022-01-12 15:35:01 2006-08-16 16:16:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "pontif\u00edcia universidade cat\u00f3lica do rio de janeiro", "alternativeName": "puc-rio", "country": "br", "url": "http://www.puc-rio.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.maxwell.vrac.puc-rio.br/dc_todos.php yes 0 28149 +517 {"name": "m\u00fcnstersches informations und archivsystem f\u00fcr multimediale inhalte", "language": "en"} [{"acronym": "miami"}] http://miami.uni-muenster.de/ institutional [] 2022-01-12 15:35:00 2006-08-16 14:14:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "westf\u00e4lische wilhelms-universit\u00e4t m\u00fcnster", "alternativeName": "", "country": "de", "url": "http://www.uni-muenster.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repositorium.uni-muenster.de/oai/miami yes 4360 8312 +582 {"name": "connexions", "language": "en"} [] http://cnx.org/ aggregating [] 2022-01-12 15:35:02 2006-08-21 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "rice university", "alternativeName": "", "country": "us", "url": "http://www.rice.edu/", "identifier": [{"identifier": "https://ror.org/008zs3103", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://cnx.org/content/oai yes 0 27422 +569 {"name": "tulips-r", "language": "en"} [{"acronym": "tulips-r"}, {"name": "\u3064\u304f\u3070\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://tsukuba.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:01 2006-08-17 15:15:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of tsukuba", "alternativeName": "", "country": "jp", "url": "http://www.tsukuba.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tsukuba.repo.nii.ac.jp/oai yes 41208 +523 {"name": "nagoya repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagoya.repo.nii.ac.jp/?lang=english institutional [] 2022-01-12 15:35:00 2006-08-16 15:15:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "nagoya university", "alternativeName": "", "country": "jp", "url": "http://www.nagoya-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagoya.repo.nii.ac.jp/oai yes 69 100 +533 {"name": "proceedings - university of groningen", "language": "en"} [] http://proceedings.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-16 16:16:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://proceedings.eldoc.ub.rug.nl/oai/ yes 164 +537 {"name": "ntnu open", "language": "en"} [] https://ntnuopen.ntnu.no institutional [] 2022-01-12 15:35:01 2006-08-17 11:11:26 ["science", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "norwegian university of science and technology", "alternativeName": "ntnu", "country": "no", "url": "https://www.ntnu.edu/", "identifier": [{"identifier": "https://ror.org/05xg72x27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ntnuopen.ntnu.no/ntnu-oai/request yes 0 7241 +567 {"name": "eindhoven university of technology repository", "language": "en"} [] https://research.tue.nl/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:55 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "technische universiteit eindhoven", "alternativeName": "tu/e", "country": "nl", "url": "http://www.tue.nl/", "identifier": [{"identifier": "https://ror.org/02c2kyt77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.tue.nl/ws/oai yes 0 135272 +486 {"name": "ictp open access archive", "language": "en"} [{"acronym": "ictp oaa"}] http://library.ictp.it/resources/ictp-archives.aspx disciplinary [] 2022-01-12 15:35:00 2006-08-07 16:16:30 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "abdus salam international centre for theoretical physics", "alternativeName": "ictp", "country": "it", "url": "http://www.ictp.it/", "identifier": [{"identifier": "https://ror.org/009gyvm78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 153 +506 {"name": "iubio archive", "language": "en"} [] http://iubio.bio.indiana.edu/ institutional [] 2022-01-12 15:35:00 2006-08-16 10:10:37 ["science"] ["other_special_item_types"] [{"name": "indiana university", "alternativeName": "iu", "country": "us", "url": "http://www.indiana.edu/", "identifier": [{"identifier": "https://ror.org/02k40bc56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +495 {"name": "rruff project", "language": "en"} [] http://rruff.info/ disciplinary [] 2022-01-12 15:35:00 2006-08-11 16:16:30 ["science"] ["datasets"] [{"name": "university of arizona", "alternativeName": "ua", "country": "us", "url": "http://www.arizona.edu/", "identifier": [{"identifier": "https://ror.org/03m2x1q45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3968 +488 {"name": "jsc digital image collection", "language": "en"} [] http://images.jsc.nasa.gov/ governmental [] 2022-01-12 15:35:00 2006-08-10 10:10:33 ["science"] ["other_special_item_types"] [{"name": "national aeronautics and space administration", "alternativeName": "nasa", "country": "us", "url": "http://www.nasa.gov/", "identifier": [{"identifier": "https://ror.org/027ka1x80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 9000 +461 {"name": "dipartimento di fisica e astronomia - unict", "language": "en"} [] http://documents.ct.infn.it/collection/dipartimento%20di%20fisica%20e%20astronomia%20-%20%20unict?ln=it institutional [] 2022-01-12 15:34:59 2006-08-07 09:09:17 ["science"] ["theses_and_dissertations"] [{"name": "universit\u00e0 di catania", "alternativeName": "", "country": "it", "url": "http://www.ct.infn.it/", "identifier": [{"identifier": "https://ror.org/02pq29p90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4 +541 {"name": "repository@noaa", "language": "en"} [] http://repository.wrclib.noaa.gov/ institutional [] 2022-01-12 15:35:01 2006-08-17 12:12:28 ["science"] ["unpub_reports_and_working_papers"] [{"name": "national oceanic and atmospheric administration", "alternativeName": "noaa", "country": "us", "url": "http://www.noaa.gov/", "identifier": [{"identifier": "https://ror.org/02z5nhe81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.wrclib.noaa.gov/cgi/oai2.cgi yes 34 +552 {"name": "stratingh institute publications", "language": "en"} [{"acronym": "stratingh"}] http://stratingh.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:50 ["science"] ["journal_articles"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://stratingh.eldoc.ub.rug.nl/oai/ yes 1572 +475 {"name": "gbb rijksuniversiteit groningen", "language": "en"} [] http://gbb.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:00 2006-08-07 14:14:56 ["science"] ["journal_articles"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://gbb.eldoc.ub.rug.nl/oai/ yes 200 +576 {"name": "university of tennessee sunsite open archives initiative", "language": "en"} [] http://oai.sunsite.utk.edu/ institutional [] 2022-01-12 15:35:02 2006-08-18 10:10:36 ["social sciences", "arts", "humanities"] ["theses_and_dissertations", "bibliographic_references", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "university of tennessee", "alternativeName": "", "country": "us", "url": "http://www.utk.edu/", "identifier": [{"identifier": "https://ror.org/020f3ap87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://oai.sunsite.utk.edu/cgi-bin/oai2.cgi yes 1089 +500 {"name": "reposit\u00f3rios institucionais em ci\u00eancias da comunica\u00e7\u00e3o", "language": "en"} [{"acronym": "reposcom"}] http://reposcom.portcom.intercom.org.br/ disciplinary [] 2022-01-12 15:35:00 2006-08-14 15:15:46 ["social sciences", "arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "intercom - sociedade brasileira de estudos interdisciplinares da comunica\u00e7\u00e3o", "alternativeName": "intercom", "country": "br", "url": "http://www.portalintercom.org.br/", "identifier": [{"identifier": "https://ror.org/04fh8sh30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://reposcom.portcom.intercom.org.br:8081/dspace-oai/request yes 0 10138 +497 {"name": "simon fraser university institutional repository", "language": "en"} [{"acronym": "summit"}] http://summit.sfu.ca/ institutional [] 2022-01-12 15:35:00 2006-08-14 12:12:00 ["social sciences", "health and medicine", "arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "simon fraser university", "alternativeName": "sfu", "country": "ca", "url": "http://www.sfu.ca/", "identifier": [{"identifier": "https://ror.org/0213rcc28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://summit.sfu.ca/oai2 yes 4718 19265 +544 {"name": "escholarship@umms", "language": "en"} [] http://escholarship.umassmed.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:21 ["social sciences", "health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of massachusetts medical school", "alternativeName": "umass", "country": "us", "url": "http://www.umassmed.edu/", "identifier": [{"identifier": "https://ror.org/0464eyp60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://escholarship.umassmed.edu/do/oai/ yes 8019 24540 +578 {"name": "keio associated repository of academic resources", "language": "en"} [{"acronym": "koara"}, {"name": "\u6176\u61c9\u7fa9\u587e\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://koara.lib.keio.ac.jp institutional [] 2022-01-12 15:35:02 2006-08-18 11:11:35 ["social sciences", "humanities"] ["books_chapters_and_sections", "journal_articles", "other_special_item_types"] [{"name": "keio university", "alternativeName": "", "country": "jp", "url": "http://www.keio.ac.jp/", "identifier": [{"identifier": "https://ror.org/02kn6nx58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://koara.lib.keio.ac.jp/xoonips/modules/xoonips/oai.php yes 1766 71608 +535 {"name": "population research centre", "language": "en"} [{"acronym": "prc"}] http://prc.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-17 10:10:39 ["social sciences", "mathematics"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://prc.eldoc.ub.rug.nl/oai/ yes 2 +564 {"name": "ted nelsons eprint archive", "language": "en"} [] http://tprints.ecs.soton.ac.uk/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:43 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 0 31 +532 {"name": "publications of the interactive and cooperative technologies lab", "language": "en"} [] http://ict.udlap.mx/pubs/index.html institutional [] 2022-01-12 15:35:01 2006-08-16 16:16:52 ["social sciences", "technology"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "universidad de las am\u00e9ricas puebla", "alternativeName": "udlap", "country": "mx", "url": "http://www.udlap.mx/", "identifier": [{"identifier": "https://ror.org/01s1km724", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 111 +562 {"name": "digital scholarship @ tennessee state university", "language": "en"} [] http://digitalscholarship.tnstate.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:33 ["social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "tennessee state university", "alternativeName": "tsu", "country": "us", "url": "http://www.tnstate.edu/", "identifier": [{"identifier": "https://ror.org/01fpczx89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1712 +509 {"name": "kansas state publications archival collection", "language": "en"} [{"acronym": "kspace"}] http://www.kspace.org/ governmental [] 2022-01-12 15:35:00 2006-08-16 11:11:50 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kansas state historical society", "alternativeName": "kshs", "country": "us", "url": "http://www.kshs.org/", "identifier": [{"identifier": "https://ror.org/00s1xm844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.kspace.org/dspace-oai/request yes 23459 +479 {"name": "gobierno del estado chiapas", "language": "en"} [] http://vitrina.bibliotecachiapas.gob.mx/ institutional [] 2022-01-12 15:35:00 2006-08-07 15:15:57 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "estado de chiapas", "alternativeName": "", "country": "mx", "url": "http://www.chiapas.gob.mx/ciudadania/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://vitrina.bibliotecachiapas.gob.mx/cgi/oai2.cgi yes 85 +549 {"name": "access to research resources for teachers", "language": "en"} [{"acronym": "arrt"}] http://gtcni.openrepository.com/gtcni/ disciplinary [] 2022-01-12 15:35:01 2006-08-17 13:13:47 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "general teaching council for northern ireland", "alternativeName": "gtcni", "country": "gb", "url": "http://www.gtcni.org.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 0 699 +551 {"name": "som electronic reports", "language": "en"} [{"acronym": "som reports"}] http://som.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:48 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://som.eldoc.ub.rug.nl/oai/ yes 415 +466 {"name": "electronische publicaties van de faculteit rechten", "language": "en"} [] http://rechten.eldoc.ub.rug.nl/ institutional [] 2022-01-12 15:34:59 2006-08-07 12:12:09 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "rijksuniversiteit groningen", "alternativeName": "rug", "country": "nl", "url": "http://www.rug.nl/", "identifier": [{"identifier": "https://ror.org/012p63287", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "wildfire", "version": ""} http://rechten.eldoc.ub.rug.nl/oai/ yes 469 +521 {"name": "vtt research information system", "language": "en"} [] https://cris.vtt.fi/ institutional [] 2022-01-12 15:35:00 2006-08-16 15:15:24 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "vtt technical research centre of finland", "alternativeName": "vtt", "country": "fi", "url": "http://www.vtt.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://cris.vtt.fi/ws/oai yes 0 66369 +489 {"name": "marshall technical reports server", "language": "en"} [] http://trs.nis.nasa.gov/ institutional [] 2022-01-12 15:35:00 2006-08-10 17:17:00 ["technology", "social sciences", "science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national aeronautics and space administration", "alternativeName": "nasa", "country": "us", "url": "http://www.nasa.gov/", "identifier": [{"identifier": "https://ror.org/027ka1x80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1023326 +494 {"name": "oneworld south asia open archive initiative", "language": "en"} [] http://open.ekduniya.net/ disciplinary [] 2022-01-12 15:35:00 2006-08-11 13:13:38 ["technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "oneworld south asia", "alternativeName": "owsa", "country": "in", "url": "http://www.southasia.oneworld.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://open.ekduniya.net/acquisitionpolicy.html", "type": "content"}, {"policy_url": "http://open.ekduniya.net/acquisitionpolicy.html", "type": "submission"}] {"name": "eprints", "version": ""} http://open.ekduniya.net/perl/oai2 yes 91 +561 {"name": "virginia tech digital library research laboratory eprints", "language": "en"} [{"acronym": "dlrl publications"}] http://pubs.dlib.vt.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 14:14:31 ["technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "virginia polytechnic institute and state university", "alternativeName": "virginia tech", "country": "us", "url": "http://www.vt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pubs.dlib.vt.edu:9090/perl/oai2 yes 85 +575 {"name": "university of queensland espace", "language": "en"} [{"acronym": "uq espace"}] http://espace.library.uq.edu.au/ institutional [] 2022-01-12 15:35:02 2006-08-18 10:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of queensland", "alternativeName": "uq", "country": "au", "url": "http://www.uq.edu.au/", "identifier": [{"identifier": "https://ror.org/00rqy9422", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://espace.library.uq.edu.au/help.php?topic=main#who", "type": "submission"}, {"policy_url": "http://espace.library.uq.edu.au/help.php?topic=main", "type": "submission"}] {"name": "fez", "version": ""} http://espace.library.uq.edu.au/oai.php yes 28997 416601 +498 {"name": "indian institute of astrophysics repository", "language": "en"} [{"acronym": "dspace@iia"}] http://prints.iiap.res.in/ institutional [] 2022-01-12 15:35:00 2006-08-14 14:14:35 ["science"] ["theses_and_dissertations", "journal_articles", "other_special_item_types"] [{"name": "indian institute of astrophysics", "alternativeName": "", "country": "in", "url": "http://www.iiap.res.in/", "identifier": [{"identifier": "https://ror.org/01msc1703", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://prints.iiap.res.in/oai/request yes 0 7071 +520 {"name": "minority health archive", "language": "en"} [] http://minority-health.pitt.edu/ institutional [] 2022-01-12 15:35:00 2006-08-16 15:15:16 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of pittsburgh", "alternativeName": "up", "country": "us", "url": "http://www.pitt.edu/", "identifier": [{"identifier": "https://ror.org/01an3r305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://minority-health.pitt.edu/cgi/oai2 yes 390 2629 +504 {"name": "iowa publications online", "language": "en"} [{"acronym": "ipo"}] http://publications.iowa.gov/ governmental [] 2022-01-12 15:35:00 2006-08-16 10:10:31 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "state of iowa", "alternativeName": "iowa", "country": "us", "url": "http://www.iowa.gov/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.iowa.gov/cgi/oai2 yes 26887 34314 +548 {"name": "scholarly materials and research @ georgia tech", "language": "en"} [{"acronym": "smartech"}] https://smartech.gatech.edu/ institutional [] 2022-01-12 15:35:01 2006-08-17 13:13:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "georgia institute of technology", "alternativeName": "georgia tech", "country": "us", "url": "http://www.gatech.edu/", "identifier": [{"identifier": "https://ror.org/01zkghx44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://smartech.gatech.edu/oai/request yes 2731 58322 +508 {"name": "jiia eprints repository", "language": "en"} [] http://eprints.jiia.it:8080/ disciplinary [] 2022-01-12 15:35:00 2006-08-16 11:11:45 ["humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "journal of intercultural and interdisciplinary archaeology", "alternativeName": "jiia", "country": "it", "url": "http://www.jiia.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.jiia.it:8080/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.jiia.it:8080/policies.html", "type": "data"}, {"policy_url": "http://eprints.jiia.it:8080/policies.html", "type": "content"}, {"policy_url": "http://eprints.jiia.it:8080/policies.html", "type": "submission"}, {"policy_url": "http://eprints.jiia.it:8080/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.jiia.it:8080/cgi/oai2 yes 0 249 +571 {"name": "tu delft repository", "language": "en"} [] http://repository.tudelft.nl institutional [] 2022-01-12 15:35:01 2006-08-17 16:16:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "technische universiteit delft (delft university of technology)", "alternativeName": "tu delft", "country": "nl", "url": "http://www.tudelft.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.tudelft.nl/help/termsofuse", "type": "metadata"}, {"policy_url": "http://repository.tudelft.nl/help/termsofuse", "type": "data"}, {"policy_url": "http://repository.tudelft.nl/help/termsofuse", "type": "content"}, {"policy_url": "http://repository.tudelft.nl/help/termsofuse", "type": "submission"}, {"policy_url": "http://repository.tudelft.nl/help/termsofuse", "type": "preservation"}] {"name": "fedora", "version": ""} http://oai.tudelft.nl/ir yes 6 96172 +513 {"name": "loughborough university research repository", "language": "en"} [] https://repository.lboro.ac.uk institutional [] 2022-01-12 15:35:00 2006-08-16 14:14:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software"] [{"name": "loughborough university", "alternativeName": "", "country": "gb", "url": "https://www.lboro.ac.uk", "identifier": [{"identifier": "https://ror.org/04vg4w365", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.lboro.ac.uk/research/support/publishing/institutional-repository/", "type": "metadata"}, {"policy_url": "https://www.lboro.ac.uk/research/support/publishing/institutional-repository/", "type": "data"}, {"policy_url": "https://www.lboro.ac.uk/research/support/publishing/institutional-repository/", "type": "content"}, {"policy_url": "https://www.lboro.ac.uk/research/support/publishing/institutional-repository/", "type": "submission"}, {"policy_url": "https://www.lboro.ac.uk/research/support/publishing/institutional-repository/", "type": "preservation"}] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listidentifiers&metadataprefix=oai_dc&set=portal_2 yes 26911 45384 +463 {"name": "edinburgh research archive", "language": "en"} [{"acronym": "era"}] https://era.ed.ac.uk institutional [] 2022-01-12 15:34:59 2006-08-07 10:10:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of edinburgh", "alternativeName": "", "country": "gb", "url": "https://www.ed.ac.uk", "identifier": [{"identifier": "https://ror.org/01nrxwf90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.ed.ac.uk/information-services/research-support/publish-research/scholarly-communications/sct-policies/repository-policies", "type": "metadata"}, {"policy_url": "https://www.ed.ac.uk/information-services/research-support/publish-research/scholarly-communications/sct-policies/repository-policies", "type": "data"}, {"policy_url": "https://www.ed.ac.uk/information-services/research-support/publish-research/scholarly-communications/sct-policies/repository-policies", "type": "content"}, {"policy_url": "https://www.ed.ac.uk/information-services/research-support/publish-research/scholarly-communications/sct-policies/repository-policies", "type": "submission"}, {"policy_url": "https://www.ed.ac.uk/information-services/research-support/publish-research/scholarly-communications/sct-policies/repository-policies", "type": "preservation"}] {"name": "dspace", "version": ""} https://era.ed.ac.uk/oai/request yes 4 100 +613 {"name": "revistes catalanes amb acc\u00e9s obert", "language": "en"} [{"acronym": "raco"}] http://www.raco.cat/ aggregating [] 2022-01-12 15:35:02 2006-08-23 18:18:53 ["arts", "humanities", "science", "social sciences"] ["journal_articles"] [{"name": "consorci de serveis universitaris de catalunya", "alternativeName": "csuc", "country": "es", "url": "http://www.csuc.cat/", "identifier": [{"identifier": "https://ror.org/007rty190", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.raco.cat/index.php/index/oai/ yes 370128 +631 {"name": "perseus digital library", "language": "en"} [] http://www.perseus.tufts.edu/hopper/ disciplinary [] 2022-01-12 15:35:03 2006-08-24 11:11:59 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "tufts university", "alternativeName": "", "country": "us", "url": "http://www.tufts.edu/", "identifier": [{"identifier": "https://ror.org/05wvpxv85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1591 +635 {"name": "portfolio @ duke", "language": "en"} [] https://portfolio.oit.duke.edu/ institutional [] 2022-01-12 15:35:03 2006-08-24 14:14:13 ["arts", "humanities"] ["other_special_item_types"] [{"name": "duke university", "alternativeName": "", "country": "us", "url": "http://www.duke.edu/", "identifier": [{"identifier": "https://ror.org/00py81415", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2461 +606 {"name": "biblioth\u00e8ques virtuelles humanistes", "language": "en"} [{"acronym": "bvh"}] http://www.bvh.univ-tours.fr/ disciplinary [] 2022-01-12 15:35:02 2006-08-23 14:14:49 ["arts", "humanities"] ["books_chapters_and_sections", "datasets"] [{"name": "universit\u00e9 fran\u00e7ois-rabelais tours", "alternativeName": "", "country": "fr", "url": "http://www.univ-tours.fr/", "identifier": [{"identifier": "https://ror.org/02wwzvj46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.bvh.univ-tours.fr/oai2/repositoryoai.asp yes 0 1124 +688 {"name": "zentrum f\u00fcr allgemeine sprachwissenschaft: publications", "language": "en"} [] http://www.zas.gwz-berlin.de/ institutional [] 2022-01-12 15:35:03 2006-08-29 14:14:44 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "zentrum f\u00fcr allgemeine sprachwissenschaft, typologie und universalienforschung", "alternativeName": "zas", "country": "de", "url": "http://www.zas.gwz-berlin.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 17 +673 {"name": "celebration of women writers", "language": "en"} [] http://digital.library.upenn.edu/women/ disciplinary [] 2022-01-12 15:35:03 2006-08-26 15:15:05 ["arts", "humanities"] ["bibliographic_references", "books_chapters_and_sections"] [{"name": "university of pennsylvania", "alternativeName": "penn", "country": "us", "url": "http://www.upenn.edu/", "identifier": [{"identifier": "https://ror.org/00b30xv10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital.library.upenn.edu/webbin/oai-celebration yes 6 421 +677 {"name": "contentdm collection - denison university", "language": "en"} [] http://cdm15498.contentdm.oclc.org/ institutional [] 2022-01-12 15:35:03 2006-08-26 18:18:11 ["arts", "science"] ["bibliographic_references", "other_special_item_types"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "http://denison.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://content.denison.edu/cgi-bin/oai.exe yes 22708 +665 {"name": "historic american sheet music", "language": "en"} [] http://library.duke.edu/digitalcollections/hasm disciplinary [] 2022-01-12 15:35:03 2006-08-25 15:15:43 ["arts"] ["other_special_item_types"] [{"name": "duke university", "alternativeName": "", "country": "us", "url": "http://www.duke.edu/", "identifier": [{"identifier": "https://ror.org/00py81415", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3051 +626 {"name": "global performing arts database", "language": "en"} [{"acronym": "glopad"}] http://www.glopad.org/pi/en/ aggregating [] 2022-01-12 15:35:02 2006-08-24 11:11:18 ["arts"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "global performing arts consortium", "alternativeName": "glopac", "country": "us", "url": "http://www.glopac.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.glopad.org/oai/oai2.php yes 0 7831 +695 {"name": "universidad del b\u00edo-b\u00edo cybertesis red de bibliotecas", "language": "en"} [] http://cybertesis.ubiobio.cl:8180/sdx/ubiobio/ institutional [] 2022-01-12 15:35:04 2006-08-30 14:14:07 ["engineering", "technology", "social sciences", "science"] ["theses_and_dissertations"] [{"name": "universidad del b\u00edo-b\u00edo", "alternativeName": "", "country": "cl", "url": "http://www.ubiobio.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} yes 405 +619 {"name": "scientific electronic library online - per\u00fa", "language": "en"} [{"acronym": "scielo - per\u00fa"}] http://www.scielo.org.pe/ aggregating [] 2022-01-12 15:35:02 2006-08-23 20:20:11 ["health and medicine", "science", "engineering"] ["journal_articles"] [{"name": "consejo nacional de ciencia, tecnolog\u00eda e innovaci\u00f3n tecnol\u00f3gica", "alternativeName": "concytec", "country": "pe", "url": "http://portal.concytec.gob.pe/", "identifier": [{"identifier": "https://ror.org/05c7j7r25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.org.pe/oai/scielo-oai.php yes 763 +614 {"name": "scientific electronic library online - chile", "language": "en"} [{"acronym": "scielo - chile"}] http://www.scielo.cl/ aggregating [] 2022-01-12 15:35:02 2006-08-23 19:19:20 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles"] [{"name": "comisi\u00f3n nacional de investigaci\u00f3n cient\u00edfica y tecnol\u00f3gica", "alternativeName": "conicyt", "country": "cl", "url": "http://www.conicyt.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.cl/oai/scielo-oai.php yes 1972 +617 {"name": "scientific electronic library online - argentina", "language": "en"} [{"acronym": "scielo - argentina"}] http://www.scielo.org.ar/ aggregating [] 2022-01-12 15:35:02 2006-08-23 19:19:52 ["health and medicine", "science", "social sciences"] ["journal_articles"] [{"name": "centro argentino de informaci\u00f3n cient\u00edfica y tecnol\u00f3gica", "alternativeName": "caicyt", "country": "ar", "url": "http://www.caicyt.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.org.ar/oai/scielo-oai.php yes 2729 +618 {"name": "scientific electronic library online - colombia", "language": "en"} [{"acronym": "scielo - colombia"}] http://www.scielo.org.co/ aggregating [] 2022-01-12 15:35:02 2006-08-23 19:19:58 ["health and medicine", "science", "social sciences"] ["journal_articles"] [{"name": "universidad nacional de colombia", "alternativeName": "", "country": "co", "url": "http://www.unal.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.org.co/oai/scielo-oai.php yes 3977 +616 {"name": "scientific electronic library online - portugal", "language": "en"} [{"acronym": "scielo - portugal"}] http://www.scielo.oces.mctes.pt/ aggregating [] 2022-01-12 15:35:02 2006-08-23 19:19:44 ["health and medicine", "science", "social sciences"] ["journal_articles"] [{"name": "gabinete de planeamento, estrat\u00e9gia, avalia\u00e7\u00e3o e rela\u00e7\u00f5es internacionais", "alternativeName": "gpeari", "country": "pt", "url": "http://www.estatisticas.gpeari.mctes.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.oces.mctes.pt/oai/scielo-oai.php yes 1111 +612 {"name": "scientific electronic library online - mexico", "language": "en"} [{"acronym": "scielo - mexico"}] http://www.scielo.org.mx/scielo.php aggregating [] 2022-01-12 15:35:02 2006-08-23 18:18:30 ["health and medicine", "science", "social sciences"] ["journal_articles"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "metadata"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "data"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "content"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "submission"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "preservation"}] {"name": "scielo", "version": ""} yes 4042 +608 {"name": "scientific electronic library online - brazil", "language": "en"} [{"acronym": "scielo - brazil"}] http://www.scielo.br/ aggregating [] 2022-01-12 15:35:02 2006-08-23 15:15:17 ["health and medicine", "science", "technology"] ["journal_articles"] [{"name": "centro latino-americano e do caribe de informa\u00e7\u00e3o em ci\u00eancias da sa\u00fade", "alternativeName": "bireme", "country": "br", "url": "http://www.bireme.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} https://oaipmh.scielo.org/br/ yes 19580 +621 {"name": "scientific electronic library online - venezuela", "language": "en"} [{"acronym": "scielo - venezuela"}] http://www.scielo.org.ve/ aggregating [] 2022-01-12 15:35:02 2006-08-24 09:09:22 ["health and medicine", "science", "technology"] ["journal_articles"] [{"name": "sistema nacional de documentaci\u00f3n e informaci\u00f3n biom\u00e9dica", "alternativeName": "sinadib", "country": "ve", "url": "http://www.fundasinadib.org.ve/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} yes 1191 +622 {"name": "scientific electronic library online - costa rica", "language": "en"} [{"acronym": "scielo - costa rica"}] http://www.scielo.sa.cr/ aggregating [] 2022-01-12 15:35:02 2006-08-24 09:09:27 ["health and medicine", "science"] ["journal_articles"] [{"name": "biblioteca nacional de salud y seguridad social", "alternativeName": "binasss", "country": "cr", "url": "http://www.binasss.sa.cr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.sa.cr/oai/scielo-oai.php yes 559 +615 {"name": "scientific electronic library online - uruguay", "language": "en"} [{"acronym": "scielo - uruguay"}] http://www.scielo.edu.uy/ aggregating [] 2022-01-12 15:35:02 2006-08-23 19:19:30 ["health and medicine", "science"] ["journal_articles"] [{"name": "universidad de la rep\u00fablica", "alternativeName": "", "country": "uy", "url": "http://www.universidad.edu.uy/", "identifier": [{"identifier": "https://ror.org/030bbe882", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.edu.uy/oai/scielo-oai.php/ yes 391 +599 {"name": "johns hopkins bloomberg school of public healths opencourseware", "language": "en"} [{"acronym": "jhsph opencourseware"}] http://ocw.jhsph.edu/ institutional [] 2022-01-12 15:35:02 2006-08-23 11:11:39 ["health and medicine"] ["learning_objects"] [{"name": "university of texas at san antonio", "alternativeName": "", "country": "us", "url": "http://www.utsa.edu/", "identifier": [{"identifier": "https://ror.org/01kd65564", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ocw.jhsph.edu/help.cfm", "type": "data"}] {"name": "other", "version": ""} yes 171 +623 {"name": "scientific electronic library online - cuba", "language": "en"} [{"acronym": "scielo - cuba"}] http://www.scielo.sld.cu/ aggregating [] 2022-01-12 15:35:02 2006-08-24 09:09:33 ["health and medicine"] ["journal_articles"] [{"name": "centro nacional de informaci\u00f3n de ciencias m\u00e9dicas", "alternativeName": "infomed", "country": "cu", "url": "http://www.infomed.sld.cu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.scielo.sld.cu/oai/scielo-oai.php yes 2323 +624 {"name": "scientific electronic library online - spain", "language": "en"} [{"acronym": "scielo - spain"}] http://scielo.isciii.es/scielo.php aggregating [] 2022-01-12 15:35:02 2006-08-24 09:09:37 ["health and medicine"] ["journal_articles"] [{"name": "instituto de salud carlos iii", "alternativeName": "isciii", "country": "es", "url": "http://www.isciii.es/", "identifier": [{"identifier": "https://ror.org/00ca2c886", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://scielo.isciii.es/oai/scielo-oai.php yes 1525 +684 {"name": "duke medicine digital repository", "language": "en"} [{"acronym": "medspace"}] http://medspace.mc.duke.edu/ institutional [] 2022-01-12 15:35:03 2006-08-29 13:13:18 ["health and medicine"] ["other_special_item_types"] [{"name": "duke university", "alternativeName": "", "country": "us", "url": "http://www.duke.edu/", "identifier": [{"identifier": "https://ror.org/00py81415", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} yes 6801 +660 {"name": "macau: open access repository of kiel university", "language": "en"} [{"acronym": "macau"}, {"name": "macau: open-access-publikationsserver der christian-albrechts-universit\u00e4t zu kiel", "language": "de"}, {"acronym": "macau"}] https://macau.uni-kiel.de institutional [] 2022-01-12 15:35:03 2006-08-25 14:14:34 ["humanities", "science", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "christian-albrechts-universit\u00e4t zu kiel", "alternativeName": "cau", "country": "de", "url": "https://www.uni-kiel.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} https://macau.uni-kiel.de/oai yes 5282 5983 +586 {"name": "combined arms research library digital library", "language": "en"} [] http://cgsc.contentdm.oclc.org/cdm/ institutional [] 2022-01-12 15:35:02 2006-08-21 11:11:38 ["humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "command and general staff college", "alternativeName": "cgsc", "country": "us", "url": "http://cgsc.leavenworth.army.mil/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 29669 +588 {"name": "academic research repository institute of developing economies", "language": "en"} [{"acronym": "arride"}, {"name": "\u65e5\u672c\u8cbf\u6613\u632f\u8208\u6a5f\u69cb\u30a2\u30b8\u30a2\u7d4c\u6e08\u7814\u7a76\u6240\u5b66\u8853\u7814\u7a76\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ir.ide.go.jp/ institutional [] 2022-01-12 15:35:02 2006-08-21 14:14:04 ["humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "institute of developing economies, japan external trade organization", "alternativeName": "ide-jetro", "country": "jp", "url": "http://www.ide.go.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ir.ide.go.jp/oai yes 17306 33664 +649 {"name": "bayerische staatsbibliothek - m\u00fcnchener digitalisierungszentrum", "language": "en"} [{"acronym": "mdz"}] http://www.digitale-sammlungen.de/ institutional [] 2022-01-12 15:35:03 2006-08-25 11:11:17 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bayerische staatsbibliothek m\u00fcnchen", "alternativeName": "", "country": "de", "url": "http://www.bsb-muenchen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1126741 +679 {"name": "colorado plateau digital archives", "language": "en"} [] http://www.nau.edu/library/speccoll/ institutional [] 2022-01-12 15:35:03 2006-08-27 09:09:27 ["humanities"] ["bibliographic_references", "other_special_item_types"] [{"name": "northern arizona university", "alternativeName": "", "country": "us", "url": "http://www.nau.edu/", "identifier": [{"identifier": "https://ror.org/0272j5188", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 66683 +669 {"name": "british history online", "language": "en"} [] http://www.british-history.ac.uk/ institutional [] 2022-01-12 15:35:03 2006-08-26 11:11:00 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of london", "alternativeName": "", "country": "gb", "url": "http://www.lon.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.british-history.ac.uk/oai/oai.aspx yes 0 99 +699 {"name": "indiana historical society digital image collections", "language": "en"} [] http://www.indianahistory.org/our-collections/digital-image-collections institutional [] 2022-01-12 15:35:04 2006-08-30 15:15:08 ["humanities"] ["other_special_item_types"] [{"name": "indiana historical society", "alternativeName": "", "country": "us", "url": "http://www.indianahistory.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://images.indianahistory.org/cgi-bin/oai.exe yes 0 33314 +675 {"name": "central florida memory", "language": "en"} [] http://www.cfmemory.org/ disciplinary [] 2022-01-12 15:35:03 2006-08-26 17:17:07 ["humanities"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute of museum and library services", "alternativeName": "", "country": "us", "url": "http://www.imls.gov/", "identifier": [{"identifier": "https://ror.org/030prv062", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 7996 +674 {"name": "digital south asia library", "language": "en"} [{"acronym": "dsal"}] http://dsal.uchicago.edu/ disciplinary [] 2022-01-12 15:35:03 2006-08-26 16:16:50 ["humanities"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "center for research libraries", "alternativeName": "crl", "country": "us", "url": "http://www.crl.edu/", "identifier": [{"identifier": "https://ror.org/05dky1a08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +625 {"name": "num\u00e9risation de documents anciens math\u00e9matiques", "language": "en"} [{"acronym": "numdam"}] http://www.numdam.org/ disciplinary [] 2022-01-12 15:35:02 2006-08-24 10:10:12 ["mathematics", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "centre national de la recherche scientifique", "alternativeName": "cnrs", "country": "fr", "url": "http://www.cnrs.fr/index.php/", "identifier": [{"identifier": "https://ror.org/02feahw73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.numdam.org/oai yes 4522 1 +672 {"name": "consortium for the advancement of undergraduate statistics education", "language": "en"} [{"acronym": "causeweb.org"}] http://www.causeweb.org/ disciplinary [] 2022-01-12 15:35:03 2006-08-26 14:14:35 ["mathematics"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "national science foundation", "alternativeName": "nsf", "country": "us", "url": "http://www.nsf.gov/", "identifier": [{"identifier": "https://ror.org/021nxhr62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1793 +620 {"name": "harvard smithsonian digital video library", "language": "en"} [{"acronym": "hs-dvl"}] http://www.hsdvl.org/ disciplinary [] 2022-01-12 15:35:02 2006-08-24 09:09:20 ["science", "social sciences", "technology"] ["other_special_item_types"] [{"name": "harvard university", "alternativeName": "", "country": "us", "url": "http://www.harvard.edu/", "identifier": [{"identifier": "https://ror.org/03vek6s52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.hsdvl.org/oai/oai2.php yes 0 1017 +627 {"name": "portal pers\u00e9e", "language": "fr"} [] http://www.persee.fr disciplinary [] 2022-01-12 15:35:02 2006-08-24 11:11:21 ["science", "social sciences"] ["journal_articles"] [{"name": "\u00e9cole normale sup\u00e9rieure de lyon", "alternativeName": "ens de lyon", "country": "fr", "url": "http://www.ens-lyon.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.persee.fr/oai yes 0 985643 +598 {"name": "docs@rwu", "language": "en"} [] http://docs.rwu.edu/ institutional [] 2022-01-12 15:35:02 2006-08-23 10:10:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "roger williams university", "alternativeName": "", "country": "us", "url": "http://www.rwu.edu/", "identifier": [{"identifier": "https://ror.org/017nweb49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://docs.rwu.edu/do/oai/ yes 4378 +601 {"name": "kanazawa university repository for academic resources", "language": "en"} [{"acronym": "kura"}, {"name": "\u91d1\u6ca2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}, {"acronym": "kura"}] https://kanazawa-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:02 2006-08-23 12:12:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "kanazawa university", "alternativeName": "", "country": "jp", "url": "http://www.kanazawa-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/02hwp6a56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kanazawa-u.repo.nii.ac.jp/oai yes 42085 +704 {"name": "umw libraries digital collections", "language": "en"} [] http://collections.lib.uwm.edu/cdm/ institutional [] 2022-01-12 15:35:04 2006-08-31 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of wisconsin - milwaukee", "alternativeName": "uvm", "country": "us", "url": "http://www4.uwm.edu/", "identifier": [{"identifier": "https://ror.org/031q21x57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 146857 +662 {"name": "hochschulschriftenserver der leuphana universit\u00e4t l\u00fcneburg", "language": "de"} [{"acronym": "opus l\u00fcneburg"}] https://pub-data.leuphana.de/home institutional [] 2022-01-12 15:35:03 2006-08-25 15:15:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e4t l\u00fcneburg", "alternativeName": "", "country": "de", "url": "https://www.leuphana.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 863 +585 {"name": "leicester research archive", "language": "en"} [{"acronym": "lra"}] https://leicester.figshare.com institutional [] 2022-01-12 15:35:02 2006-08-21 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of leicester", "alternativeName": "", "country": "gb", "url": "https://le.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://le.ac.uk/library/about/policies/lra-policies", "type": "metadata"}, {"policy_url": "https://le.ac.uk/library/about/policies/lra-policies", "type": "data"}, {"policy_url": "https://le.ac.uk/library/about/policies/lra-policies", "type": "content"}, {"policy_url": "https://le.ac.uk/library/about/policies/lra-policies", "type": "submission"}, {"policy_url": "https://le.ac.uk/library/about/policies/lra-policies", "type": "preservation"}] {"name": "other", "version": ""} https://api.figshare.com/v2/oai yes 38527 +644 {"name": "servicios bibliotecarios de la universidad de los andes", "language": "en"} [{"acronym": "serbiula"}] http://www.serbi.ula.ve/ institutional [] 2022-01-12 15:35:03 2006-08-24 16:16:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de los andes, venezuela", "alternativeName": "ula", "country": "ve", "url": "http://www.ula.ve/", "identifier": [{"identifier": "https://ror.org/02h1b1x27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +664 {"name": "illinois air photo imagebase", "language": "en"} [] http://images.library.uiuc.edu/projects/aerial_photos/ disciplinary [] 2022-01-12 15:35:03 2006-08-25 15:15:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of illinois at urbana-champaign", "alternativeName": "", "country": "us", "url": "http://illinois.edu/", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +710 {"name": "university of chicago library digital activities & collections", "language": "en"} [] http://www.lib.uchicago.edu/e/digital/ institutional [] 2022-01-12 15:35:04 2006-08-31 14:14:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of chicago", "alternativeName": "", "country": "us", "url": "http://www.uchicago.edu/", "identifier": [{"identifier": "https://ror.org/024mw5h28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +595 {"name": "internet archive", "language": "en"} [] http://www.archive.org aggregating [] 2022-01-12 15:35:02 2006-08-22 16:16:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "internet archive", "alternativeName": "", "country": "us", "url": "http://www.archive.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://archive.org/services/oai2.php yes 26088051 +709 {"name": "j. willard marriott library digital collections", "language": "en"} [] http://www.lib.utah.edu/collections/digitalcollections.php institutional [] 2022-01-12 15:35:04 2006-08-31 13:13:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of utah", "alternativeName": "u of u", "country": "us", "url": "http://www.utah.edu/", "identifier": [{"identifier": "https://ror.org/03r0ha626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 0 500926 +707 {"name": "publikationsserver der universit\u00e4t t\u00fcbingen", "language": "en"} [{"acronym": "tobias-lib"}] https://publikationen.uni-tuebingen.de/ institutional [] 2022-01-12 15:35:04 2006-08-31 12:12:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "eberhard-karls-universit\u00e4t t\u00fcbingen", "alternativeName": "universit\u00e4t t\u00fcbingen", "country": "de", "url": "http://www.uni-tuebingen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://publikationen.uni-tuebingen.de/oai/openaire yes 9068 76215 +718 {"name": "tuhh open research", "language": "en"} [{"acronym": "tore"}] https://tore.tuhh.de/ institutional [] 2022-01-12 15:35:04 2006-08-31 15:15:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "technische universit\u00e4t hamburg", "alternativeName": "tuhh", "country": "de", "url": "https://www.tuhh.de/", "identifier": [{"identifier": "https://ror.org/04bs1pb34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tore.tuhh.de/oai/request yes 0 1692 +642 {"name": "upspace at the university of pretoria", "language": "en"} [{"acronym": "upspace"}] http://repository.up.ac.za/ institutional [] 2022-01-12 15:35:03 2006-08-24 16:16:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "university of pretoria", "alternativeName": "up", "country": "za", "url": "http://web.up.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.up.ac.za/oai/request yes 50305 +661 {"name": "aaltodoc publication archive", "language": "en"} [] https://aaltodoc.aalto.fi institutional [] 2022-01-12 15:35:03 2006-08-25 14:14:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "aalto university", "alternativeName": "", "country": "fi", "url": "http://www.aalto.fi/en/", "identifier": [{"identifier": "https://ror.org/020hwjq30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aaltodoc.aalto.fi/oai/request yes 11201 105826 +687 {"name": "dspace at manchester", "language": "en"} [] http://dspace.man.ac.uk:8080/dspace/ institutional [] 2022-01-12 15:35:03 2006-08-29 14:14:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of manchester", "alternativeName": "", "country": "gb", "url": "http://www.manchester.ac.uk/", "identifier": [{"identifier": "https://ror.org/027m9bs27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.man.ac.uk:8080/dspace-oai/request yes 95 +668 {"name": "boston college university libraries digital collections", "language": "en"} [] http://bclsco.bc.edu/ institutional [] 2022-01-12 15:35:03 2006-08-26 10:10:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "boston college", "alternativeName": "bc", "country": "us", "url": "http://bc.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://dcollections.bc.edu/oai-pub yes 0 7956 +701 {"name": "elektronische dissertationen an der bibliothek der universit\u00e4t der bundeswehr m\u00fcnchen", "language": "en"} [] http://www.unibw.de/unibib/digibib/ediss/ institutional [] 2022-01-12 15:35:04 2006-08-30 15:15:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e4t der bundeswehr m\u00fcnchen", "alternativeName": "", "country": "de", "url": "http://www.unibw.de/", "identifier": [{"identifier": "https://ror.org/05kkv3f82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} yes 205 +600 {"name": "berkeley electronic press", "language": "en"} [{"acronym": "bepress"}] http://www.bepress.com/ aggregating [] 2022-01-12 15:35:02 2006-08-23 12:12:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "berkeley electronic press", "alternativeName": "bepress", "country": "us", "url": "http://www.bepress.com/", "identifier": [{"identifier": "https://ror.org/00mdqpf86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://www.bepress.com/cgi/oai2.cgi/ yes +681 {"name": "digitala vetenskapliga arkivet - academic archive on-line", "language": "en"} [{"acronym": "diva"}] http://www.diva-portal.org/ aggregating [] 2022-01-12 15:35:03 2006-08-27 12:12:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "uppsala universitet", "alternativeName": "", "country": "se", "url": "http://www.uu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://www.diva-portal.org/dice/oai yes 198 515080 +711 {"name": "elektronische ver\u00f6ffentlichungen der universit\u00e4tsbibliothek wuppertal", "language": "en"} [] http://elpub.bib.uni-wuppertal.de/ institutional [] 2022-01-12 15:35:04 2006-08-31 14:14:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t wuppertal", "alternativeName": "", "country": "de", "url": "http://www.uni-wuppertal.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} http://elpub.bib.uni-wuppertal.de/servlets/oaidataprovider yes 1253 1334 +719 {"name": "digitale bibliothek braunschweig", "language": "de"} [] https://publikationsserver.tu-braunschweig.de institutional [] 2022-01-12 15:35:04 2006-08-31 15:15:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "technische universit\u00e4t braunschweig", "alternativeName": "", "country": "de", "url": "https://www.tu-braunschweig.de", "identifier": [{"identifier": "https://ror.org/010nsgg66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} https://publikationsserver.tu-braunschweig.de/servlets/oaidataprovider yes 15853 +702 {"name": "hochschulschriftenserver der hochschule der medien stuttgart", "language": "en"} [{"acronym": "hdm epub"}] https://hdms.bsz-bw.de/home institutional [] 2022-01-12 15:35:04 2006-08-30 15:15:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hochschule der medien stuttgart", "alternativeName": "", "country": "de", "url": "http://www.hdm-stuttgart.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://hdms.bsz-bw.de/oai yes 783 947 +651 {"name": "kaiserslauterer uniweiter elektronischer dokumentenserver", "language": "en"} [{"acronym": "kluedo"}] https://kluedo.ub.uni-kl.de/home institutional [] 2022-01-12 15:35:03 2006-08-25 12:12:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "technische universit\u00e4t kaiserslautern", "alternativeName": "", "country": "de", "url": "http://www.uni-kl.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://kluedo.ub.uni-kl.de/oai yes 3017 4151 +657 {"name": "metadata on internet documents", "language": "en"} [{"acronym": "meind"}] http://www.meind.de/ institutional [] 2022-01-12 15:35:03 2006-08-25 14:14:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "fachhochschule gelsenkirchen", "alternativeName": "hbz", "country": "de", "url": "http://www.hbz-nrw.de/", "identifier": [{"identifier": "https://ror.org/00n3mcd10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 26985 +691 {"name": "publikations- und dokumentenserver der universit\u00e4tsbibliothek siegen", "language": "en"} [{"acronym": "opus-siegen"}] http://dokumentix.ub.uni-siegen.de/opus/ institutional [] 2022-01-12 15:35:03 2006-08-30 11:11:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e4t siegen", "alternativeName": "", "country": "de", "url": "http://www.uni-siegen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://dokumentix.ub.uni-siegen.de/opus/oai2/oai2.php yes 965 1087 +714 {"name": "hochschulschriftenserver der htwg konstanz", "language": "en"} [] https://opus.htwg-konstanz.de/home institutional [] 2022-01-12 15:35:04 2006-08-31 14:14:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hochschule konstanz technik, wirtschaft und gestaltung university of applied sciences", "alternativeName": "htwg", "country": "de", "url": "http://www.htwg-konstanz.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.htwg-konstanz.de/oai yes 305 1509 +706 {"name": "elektronische hochschulschriften an der universit\u00e4t trier", "language": "en"} [] http://ubt.opus.hbz-nrw.de/ institutional [] 2022-01-12 15:35:04 2006-08-31 11:11:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t trier", "alternativeName": "", "country": "de", "url": "http://www.uni-trier.de/", "identifier": [{"identifier": "https://ror.org/02778hg05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 857 +611 {"name": "elektronische publikationen der universit\u00e4t hohenheim", "language": "en"} [] https://kim.uni-hohenheim.de/95479?l=1 institutional [] 2022-01-12 15:35:02 2006-08-23 16:16:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e4t hohenheim", "alternativeName": "", "country": "de", "url": "https://www.uni-hohenheim.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://opus.uni-hohenheim.de/oai2/oai2.php yes 1115 1665 +663 {"name": "dokumentenserver der fachhochschule merseburg", "language": "en"} [] http://opus.fh-merseburg.de/opus/ institutional [] 2022-01-12 15:35:03 2006-08-25 15:15:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "fachhochschule merseburg", "alternativeName": "", "country": "de", "url": "http://www.fh-merseburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 91 +603 {"name": "hochschulschriftenserver - universit\u00e4t frankfurt am main", "language": "en"} [] http://publikationen.ub.uni-frankfurt.de/ institutional [] 2022-01-12 15:35:02 2006-08-23 13:13:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "johann wolfgang goethe-universit\u00e4t am main", "alternativeName": "", "country": "de", "url": "http://www.uni-frankfurt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://publikationen.ub.uni-frankfurt.de/oai yes 46083 +717 {"name": "opus w elektronische hochschulschriften der p\u00e4dagogischen hochschule weingarten und der hochschule ravensburg - weingarten", "language": "en"} [] https://hsbwgt.bsz-bw.de/home institutional [] 2022-01-12 15:35:04 2006-08-31 14:14:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "p\u00e4dagogische hochschule weingarten", "alternativeName": "", "country": "de", "url": "http://www.ph-weingarten.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://hsbwgt.bsz-bw.de/oai yes 1 99 +676 {"name": "digitalcommons@bryant university", "language": "en"} [] http://digitalcommons.bryant.edu/ institutional [] 2022-01-12 15:35:03 2006-08-26 17:17:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bryant university", "alternativeName": "", "country": "us", "url": "http://www.bryant.edu/", "identifier": [{"identifier": "https://ror.org/01gk44f56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.bryant.edu/do/oai/ yes 5105 7842 +592 {"name": "digital commons@wayne state university", "language": "en"} [] http://digitalcommons.wayne.edu/ institutional [] 2022-01-12 15:35:02 2006-08-22 11:11:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "wayne state university", "alternativeName": "", "country": "us", "url": "http://wayne.edu/", "identifier": [{"identifier": "https://ror.org/01070mq45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.wayne.edu/do/oai/ yes 8107 16864 +650 {"name": "digitale bibliothek th\u00fcringen", "language": "en"} [{"acronym": "university@urmel"}] http://www.db-thueringen.de/ aggregating [] 2022-01-12 15:35:03 2006-08-25 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "friedrich-schiller-universitat jena", "alternativeName": "", "country": "de", "url": "http://www.uni-jena.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.db-thueringen.de/servlets/oaidataprovider yes 15533 32846 +658 {"name": "technical university of lodz digital library", "language": "en"} [{"acronym": "ebipol"}, {"name": "biblioteka cyfrowa politechniki \u0142\u00f3dzkiej", "language": "pl"}, {"acronym": "ebipol"}] http://ebipol.p.lodz.pl/dlibra/ institutional [] 2022-01-12 15:35:03 2006-08-25 14:14:09 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "lodz university of technology", "alternativeName": "", "country": "pl", "url": "http://www.p.lodz.pl/", "identifier": [{"identifier": "https://ror.org/00s8fpf52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://ebipol.p.lodz.pl/dlibra/oai-pmh-repository.xml yes 422 +712 {"name": "ifpri knowledge repsitory", "language": "en"} [] http://ebrary.ifpri.org/cdm/ disciplinary [] 2022-01-12 15:35:04 2006-08-31 14:14:29 ["science"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "international food policy research institute", "alternativeName": "ifpri", "country": "us", "url": "http://www.ifpri.org/", "identifier": [{"identifier": "https://ror.org/03pxz9p87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://ebrary.ifpri.org/oai/oai.php yes 0 72054 +666 {"name": "lens lettres et sciences humaines de lyon", "language": "en"} [] http://eprints.ens-lsh.fr/ institutional [] 2022-01-12 15:35:03 2006-08-25 15:15:59 ["social sciences", "arts", "humanities", "science"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "ecole normale sup\u00e9rieure lettres et sciences humaines", "alternativeName": "", "country": "fr", "url": "http://www.ens-lsh.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ens-lsh.fr/perl/oai2 yes 121 +693 {"name": "valley of the shadow", "language": "en"} [] http://valley.vcdh.virginia.edu/ disciplinary [] 2022-01-12 15:35:04 2006-08-30 13:13:53 ["social sciences", "arts", "humanities"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of virginia", "alternativeName": "", "country": "us", "url": "http://www.virginia.edu/", "identifier": [{"identifier": "https://ror.org/0153tk833", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +583 {"name": "te tumu eprints repository", "language": "en"} [] http://eprintstetumu.otago.ac.nz/ institutional [] 2022-01-12 15:35:02 2006-08-21 11:11:08 ["social sciences", "arts", "humanities"] ["books_chapters_and_sections", "conference_and_workshop_papers", "journal_articles", "other_special_item_types"] [{"name": "university of otago", "alternativeName": "", "country": "nz", "url": "http://www.otago.ac.nz/", "identifier": [{"identifier": "https://ror.org/01jmxt844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprintstetumu.otago.ac.nz/perl/oai2 yes 0 9568 +713 {"name": "online-publikations-server der universit\u00e4t w\u00fcrzburg", "language": "en"} [{"acronym": "opus w\u00fcrzburg"}] https://opus.bibliothek.uni-wuerzburg.de/ institutional [] 2022-01-21 16:37:11 2006-08-31 14:14:35 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t w\u00fcrzburg", "alternativeName": "", "country": "de", "url": "http://www.uni-wuerzburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opus.bibliothek.uni-wuerzburg.de/home/index/help/content/policies", "type": "content"}] {"name": "opus", "version": ""} https://opus.bibliothek.uni-wuerzburg.de/oai yes 10947 +678 {"name": "wilson center digital archive", "language": "en"} [{"acronym": "international history declassified"}] http://digitalarchive.wilsoncenter.org/ disciplinary [] 2022-01-12 15:35:03 2006-08-27 08:08:32 ["social sciences", "humanities"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "woodrow wilson international center for scholars", "alternativeName": "wilson centre", "country": "us", "url": "http://wilsoncenter.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 6345 +694 {"name": "virtual jamestown", "language": "en"} [] http://www.virtualjamestown.org/ disciplinary [] 2022-01-12 15:35:04 2006-08-30 13:13:58 ["social sciences", "humanities"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of virginia", "alternativeName": "", "country": "us", "url": "http://www.virginia.edu/", "identifier": [{"identifier": "https://ror.org/0153tk833", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +639 {"name": "archive ouverte insep", "language": "en"} [{"acronym": "insep archive ouvert"}] http://www.sportdocs.insep.fr/ institutional [] 2022-01-12 15:35:03 2006-08-24 15:15:25 ["social sciences", "science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "institut national du sport, de lexpertise et de la performance", "alternativeName": "insep", "country": "fr", "url": "http://www.insep.fr/", "identifier": [{"identifier": "https://ror.org/03jczk481", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.sportdocs.insep.fr/flora_insep/servlet/oaiservlet yes 88166 +645 {"name": "research papers in economics", "language": "en"} [{"acronym": "repec"}] http://repec.org/ disciplinary [] 2022-01-12 15:35:03 2006-08-25 10:10:00 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software"] [{"name": "repec project, usa", "alternativeName": "", "country": "us", "url": "http://repec.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.repec.openlib.org/ yes 26000000 +652 {"name": "bepress legal repository", "language": "en"} [] http://law.bepress.com/repository/ disciplinary [] 2022-01-12 15:35:03 2006-08-25 13:13:03 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "berkeley electronic press", "alternativeName": "bepress", "country": "us", "url": "http://www.bepress.com/", "identifier": [{"identifier": "https://ror.org/00mdqpf86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://law.bepress.com/do/oai/ yes 1933 515688 +659 {"name": "bichler & nitzan archives", "language": "en"} [{"acronym": "bn archives"}] http://bnarchives.yorku.ca/ disciplinary [] 2022-01-12 15:35:03 2006-08-25 14:14:34 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "york university", "alternativeName": "", "country": "ca", "url": "http://www.yorku.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://bnarchives.yorku.ca/perl/oai2 yes 467 +604 {"name": "invenia repository for technological innovation", "language": "en"} [] http://www.invenia.es/ disciplinary [] 2022-01-12 15:35:02 2006-08-23 14:14:02 ["technology", "health and medicine", "science"] ["unpub_reports_and_working_papers", "patents"] [{"name": "idhea", "alternativeName": "", "country": "es", "url": "http://www.invenia.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.invenia.es/oai/oai2.asp yes 0 1198 +591 {"name": "cryptology eprint archive", "language": "en"} [] http://eprint.iacr.org/ disciplinary [] 2022-01-12 15:35:02 2006-08-22 09:09:56 ["technology", "mathematics"] ["unpub_reports_and_working_papers"] [{"name": "international association for cryptologic research", "alternativeName": "iacr", "country": "us", "url": "http://www.iacr.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 12137 +646 {"name": "australian library and information association e-prints", "language": "en"} [{"acronym": "alia e-prints"}] http://e-prints.alia.org.au/ institutional [] 2022-01-12 15:35:03 2006-08-25 10:10:17 ["technology", "social sciences", "humanities", "arts"] ["conference_and_workshop_papers"] [{"name": "australian library and information association", "alternativeName": "", "country": "au", "url": "http://www.alia.org.au/", "identifier": [{"identifier": "https://ror.org/04rszyv41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://e-prints.alia.org.au/perl/oai2 yes 97 +654 {"name": "opus-datenbank - universit\u00e4t koblenz-landau", "language": "en"} [] https://kola.opus.hbz-nrw.de/home institutional [] 2022-01-12 15:35:03 2006-08-25 13:13:39 ["technology", "social sciences", "science"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universitat koblenz-landau", "alternativeName": "", "country": "de", "url": "http://www.uni-koblenz-landau.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://kola.opus.hbz-nrw.de/oai2/oai2.php yes 0 1213 +671 {"name": "gslis electronic archives project", "language": "en"} [] http://www.isrl.illinois.edu/pep/ institutional [] 2022-01-12 15:35:03 2006-08-26 14:14:11 ["technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "university of illinois at urbana-champaign", "alternativeName": "", "country": "us", "url": "http://illinois.edu/", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 9 +667 {"name": "school of information, university of texas at austin", "language": "en"} [] https://pacer.ischool.utexas.edu/ institutional [] 2022-01-12 15:35:03 2006-08-26 09:09:29 ["technology"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of texas at austin", "alternativeName": "", "country": "us", "url": "http://www.utexas.edu/", "identifier": [{"identifier": "https://ror.org/00hj54h04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 15330 +609 {"name": "technical registry", "language": "en"} [{"acronym": "pronom"}] http://www.nationalarchives.gov.uk/pronom/default.aspx governmental [] 2022-01-12 15:35:02 2006-08-23 16:16:20 ["technology"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "uk national archives", "alternativeName": "", "country": "gb", "url": "http://www.nationalarchives.gov.uk/", "identifier": [{"identifier": "https://ror.org/033jcqk26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +648 {"name": "rit digital media library", "language": "en"} [{"acronym": "rit dml"}] https://ritdml.rit.edu/ institutional [] 2022-01-12 15:35:03 2006-08-25 10:10:59 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "rochester institute of technology", "alternativeName": "", "country": "us", "url": "http://www.rit.edu/", "identifier": [{"identifier": "https://ror.org/00v4yb702", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ritdml.rit.edu/dspace-oai/request yes 0 14957 +647 {"name": "ball state university digital media repository", "language": "en"} [] http://libx.bsu.edu/ institutional [] 2022-01-12 15:35:03 2006-08-25 10:10:34 ["technology", "humanities"] ["other_special_item_types"] [{"name": "ball state university", "alternativeName": "bsu", "country": "us", "url": "http://www.bsu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://libx.bsu.edu/cgi-bin/oai.exe yes 0 256155 +605 {"name": "scholarworks@umass amherst", "language": "en"} [] http://scholarworks.umass.edu/ institutional [] 2022-01-12 15:35:02 2006-08-23 14:14:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of massachusetts amherst", "alternativeName": "", "country": "us", "url": "http://www.umass.edu/", "identifier": [{"identifier": "https://ror.org/0072zz521", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.umass.edu/do/oai/ yes 26649 70845 +587 {"name": "psepheda: digital library & institutional repository", "language": "en"} [{"acronym": "\u03c8\u03b7\u03c6\u03af\u03b4\u03b1"}] http://dspace.lib.uom.gr/ institutional [] 2022-01-12 15:35:02 2006-08-21 12:12:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of macedonia", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03bc\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2", "country": "gr", "url": "http://www.uom.gr/", "identifier": [{"identifier": "https://ror.org/05fg6gr82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.lib.uom.gr/dspace-oai/request yes 0 10182 +590 {"name": "digitalcommons@uri", "language": "en"} [] http://digitalcommons.uri.edu/ institutional [] 2022-01-12 15:35:02 2006-08-21 15:15:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of rhode island", "alternativeName": "", "country": "us", "url": "http://www.uri.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.uri.edu/do/oai/ yes 18431 24013 +656 {"name": "virtual library of historical newspapers", "language": "en"} [{"name": "biblioteca virtual de prensa hist\u00f3rica (virtual library of historical newspapers)", "language": "es"}] http://prensahistorica.mcu.es/es/estaticos/contenido.cmd?pagina=estaticos/presentacion institutional [] 2022-01-12 15:35:03 2006-08-25 13:13:52 ["humanities"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ministerio de cultura", "alternativeName": "", "country": "es", "url": "http://www.mecd.gob.es/portada-mecd/", "identifier": [{"identifier": "https://ror.org/03nc27g21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://prensahistorica.mcu.es/i18n/oai/oai.cmd yes 1 1321100 +610 {"name": "fraunhofer-eprints", "language": "en"} [] http://eprints.fraunhofer.de/ institutional [] 2022-01-12 15:35:02 2006-08-23 16:16:29 ["technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "fraunhofer-gesellschaft", "alternativeName": "fhg", "country": "de", "url": "http://www.fraunhofer.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.fraunhofer.de/starweb/eprints/servlet.starweb", "type": "metadata"}, {"policy_url": "http://eprints.fraunhofer.de/starweb/eprints/servlet.starweb", "type": "content"}, {"policy_url": "http://eprints.fraunhofer.de/starweb/eprints/servlet.starweb", "type": "preservation"}] {"name": "other", "version": ""} http://publica.fraunhofer.de/jsp/publicaharvester yes 0 227141 +715 {"name": "konstanzer online-publikations-system", "language": "en"} [{"acronym": "kops"}] http://kops.uni-konstanz.de/ institutional [] 2022-01-12 15:35:04 2006-08-31 14:14:42 ["arts", "humanities", "science", "mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t konstanz", "alternativeName": "", "country": "de", "url": "http://www.uni-konstanz.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kops.ub.uni-konstanz.de/guidelines", "type": "preservation"}] {"name": "dspace", "version": ""} http://kops.ub.uni-konstanz.de/oai-dini/request yes 0 34424 +589 {"name": "wolverhampton intellectual repository and e-theses", "language": "en"} [{"acronym": "wire"}] http://wlv.openrepository.com/wlv/ institutional [] 2022-01-12 15:35:02 2006-08-21 15:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of wolverhampton", "alternativeName": "", "country": "gb", "url": "http://www.wlv.ac.uk/", "identifier": [{"identifier": "https://ror.org/01k2y1055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://wlv.openrepository.com/wlv/about-this-service.jsp", "type": "content"}, {"policy_url": "http://wlv.openrepository.com/wlv/about-this-service.jsp", "type": "submission"}, {"policy_url": "http://wlv.openrepository.com/wlv/about-this-service.jsp", "type": "preservation"}] {"name": "other", "version": ""} http://wlv.openrepository.com/wlv-oai/request yes 2004 6058 +636 {"name": "northeastern university digital repository service", "language": "en"} [{"acronym": "drs"}] https://repository.library.northeastern.edu/ institutional [] 2022-01-12 15:35:03 2006-08-24 14:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "northeastern university", "alternativeName": "", "country": "us", "url": "http://www.northeastern.edu/", "identifier": [{"identifier": "https://ror.org/04t5xt781", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://iris.lib.neu.edu/faq.html", "type": "submission"}] {"name": "fedora", "version": ""} https://repository.library.northeastern.edu/catalog/oai yes 0 6868 +857 {"name": "ibiblio", "language": "en"} [] http://www.ibiblio.org/ aggregating [] 2022-01-12 15:35:06 2006-10-12 16:16:16 ["arts", "humanities", "science", "social sciences", "technology"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.ibiblio.org/collection/oai/ yes 0 927 +858 {"name": "university of minnesota umedia digital library", "language": "en"} [] https://umedia.lib.umn.edu institutional [] 2022-01-12 15:35:06 2006-10-12 16:16:35 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of minnesota", "alternativeName": "u of m", "country": "us", "url": "http://www.umn.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 0 64484 +732 {"name": "archive of popular american music", "language": "en"} [{"acronym": "apam"}] http://digital.library.ucla.edu/apam/ institutional [] 2022-01-12 15:35:04 2006-09-02 12:12:29 ["arts"] ["other_special_item_types"] [{"name": "university of california, los angeles", "alternativeName": "", "country": "us", "url": "http://www.ucla.edu/", "identifier": [{"identifier": "https://ror.org/046rm7j60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 512500 +839 {"name": "cybertesis pontificia universidad cat\u00f3lica de valpara\u00edso", "language": "en"} [] http://cybertesis.ucv.cl/sdx/pucv/termes.xsp institutional [] 2022-01-12 15:35:06 2006-09-27 16:16:15 ["engineering", "social sciences", "science"] ["journal_articles", "theses_and_dissertations"] [{"name": "pontificia universidad cat\u00f3lica de valpara\u00edso", "alternativeName": "", "country": "cl", "url": "http://www.ucv.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} http://cybertesis.ucv.cl/sdx/sdx/oai/pucv/documents yes 0 282 +847 {"name": "opus-datenbank - helmut schmidt universit\u00e4t", "language": "en"} [] http://edoc.sub.uni-hamburg.de/hsu/ institutional [] 2022-01-12 15:35:06 2006-09-29 16:16:28 ["engineering", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "helmut-schmidt-universit\u00e4t", "alternativeName": "", "country": "de", "url": "http://www.hsu-hh.de/hsu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 685 +822 {"name": "national academies press", "language": "en"} [{"acronym": "nap"}] http://books.nap.edu/ institutional [] 2022-01-12 15:35:06 2006-09-15 13:13:53 ["health and medicine", "science", "technology", "social sciences"] ["books_chapters_and_sections"] [{"name": "the national academies", "alternativeName": "", "country": "us", "url": "http://www.nationalacademies.org/", "identifier": [{"identifier": "https://ror.org/02eq2w707", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 9240 +845 {"name": "ulb sachsen-anhalt halcore", "language": "en"} [{"acronym": "halcore"}] http://edoc.bibliothek.uni-halle.de/content/below/index.xml institutional [] 2022-01-12 15:35:06 2006-09-29 16:16:03 ["health and medicine", "social sciences", "arts", "humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "martin-luther-universit\u00e4t halle-wittenberg", "alternativeName": "", "country": "de", "url": "http://www.uni-halle.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} http://edoc.bibliothek.uni-halle.de/servlets/mcroaidataprovider yes 0 5122 +848 {"name": "canadian breast cancer research alliance open access archive", "language": "en"} [] https://researchspace.library.utoronto.ca/handle/1807.1/1 institutional [] 2022-01-12 15:35:06 2006-10-01 12:12:41 ["health and medicine"] ["journal_articles"] [{"name": "canadian breast cancer research alliance", "alternativeName": "cbcra", "country": "ca", "url": "http://breast.cancer.ca/webnet.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 461 +764 {"name": "researchworks at the university of washington", "language": "en"} [] https://digital.lib.washington.edu/researchworks institutional [] 2022-01-12 15:35:05 2006-09-06 10:10:09 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of washington", "alternativeName": "uw", "country": "us", "url": "http://www.washington.edu/", "identifier": [{"identifier": "https://ror.org/00cvxb145", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digital.lib.washington.edu/policy-accessrestriction.html", "type": "metadata"}, {"policy_url": "http://digital.lib.washington.edu/policy-accessrestriction.html", "type": "data"}, {"policy_url": "http://digital.lib.washington.edu/policy-collection.html", "type": "content"}, {"policy_url": "http://digital.lib.washington.edu/policy-collection.html", "type": "submission"}, {"policy_url": "http://digital.lib.washington.edu/faq.html", "type": "preservation"}] {"name": "dspace", "version": ""} yes 23475 +759 {"name": "pharmacy eprints", "language": "en"} [] http://eprints.pharmacy.ac.uk/ institutional [] 2022-01-12 15:35:05 2006-09-05 16:16:56 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university college london", "alternativeName": "ucl", "country": "gb", "url": "http://www.ucl.ac.uk/", "identifier": [{"identifier": "https://ror.org/02jx3x895", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.pharmacy.ac.uk/cgi/oai2 yes 0 2833 +801 {"name": "folkstreams", "language": "en"} [] http://www.folkstreams.net/ disciplinary [] 2022-01-12 15:35:05 2006-09-14 09:09:32 ["humanities", "arts"] ["other_special_item_types"] [{"name": "ibiblio: the publics library and digital archive", "alternativeName": "", "country": "us", "url": "http://www.ibiblio.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 302 +825 {"name": "national library of australia digital object repository", "language": "en"} [] http://www.nla.gov.au/digicoll/oai/ institutional [] 2022-01-12 15:35:06 2006-09-22 11:11:30 ["humanities", "arts"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "national library of australia", "alternativeName": "nla", "country": "au", "url": "http://www.nla.gov.au/", "identifier": [{"identifier": "https://ror.org/04yvjg468", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.nla.gov.au/apps/oaicat/servlet/oaihandler/ yes 0 227063 +796 {"name": "kujawsko-pomorska biblioteka cyfrowa (kujawsko-pomorska digital library)", "language": "en"} [] http://kpbc.umk.pl/dlibra disciplinary [] 2022-01-12 15:35:05 2006-09-12 16:16:03 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "biblioteka uniwersytecka w toruniu (nicolaus copernicus university)", "alternativeName": "", "country": "pl", "url": "http://www.bu.umk.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kpbc.umk.pl/dlibra/text?id=polityka", "type": "data"}, {"policy_url": "http://kpbc.umk.pl/dlibra/text?id=polityka", "type": "preservation"}] {"name": "dlibra", "version": ""} http://kpbc.umk.pl/dlibra/oai-pmh-repository.xml yes 186144 +821 {"name": "michigan state university digital & multimedia center", "language": "en"} [] http://www.lib.msu.edu/branches/dmc/index.jsp institutional [] 2022-01-12 15:35:06 2006-09-15 11:11:57 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "michigan state university", "alternativeName": "msu", "country": "us", "url": "http://www.msu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +729 {"name": "ackerman archives", "language": "en"} [] http://www.hray.com/aa/ institutional [] 2022-01-12 15:35:04 2006-09-02 09:09:59 ["humanities", "social sciences"] ["other_special_item_types"] [{"name": "rich ackerman", "alternativeName": "", "country": "us", "url": "http://www.hray.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 282 +782 {"name": "european research papers archive", "language": "en"} [{"acronym": "erpa"}] http://eiop.or.at/erpa/ aggregating [] 2022-01-12 15:35:05 2006-09-11 08:08:59 ["humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "european communities studies association austria", "alternativeName": "ecsa austria", "country": "at", "url": "http://www2.wu-wien.ac.at/ecsa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "eiop.or.at/erpa/policy.htm", "type": "metadata"}, {"policy_url": "http://eiop.or.at/erpa/erpainfo.htm", "type": "content"}, {"policy_url": "http://eiop.or.at/erpa/policy.htm", "type": "content"}, {"policy_url": "http://eiop.or.at/erpa/policy.htm", "type": "submission"}] {"name": "", "version": ""} http://eiop.or.at/cgi-bin/oaiserv.pl yes 1820 +800 {"name": "staats- und universit\u00e4tsbibliothek bremen - historische karten", "language": "de"} [] http://gauss.suub.uni-bremen.de/suub/hist/index.jsp institutional [] 2022-01-12 15:35:05 2006-09-14 09:09:21 ["humanities"] ["other_special_item_types"] [{"name": "universit\u00e4t bremen", "alternativeName": "", "country": "de", "url": "http://www.uni-bremen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +817 {"name": "louisiana digital library server respository", "language": "en"} [] http://louisdl.louislibraries.org/ disciplinary [] 2022-01-12 15:35:06 2006-09-15 10:10:29 ["humanities"] ["journal_articles", "other_special_item_types"] [{"name": "louisiana state university", "alternativeName": "lsu", "country": "us", "url": "http://www.lsu.edu/", "identifier": [{"identifier": "https://ror.org/05ect4e57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 0 22942 +789 {"name": "kydl oai archive", "language": "en"} [] http://kdl.kyvl.org/ disciplinary [] 2022-01-12 15:35:05 2006-09-11 14:14:20 ["humanities"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "kentucky.gov", "alternativeName": "", "country": "us", "url": "http://kentucky.gov/pages/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 961099 +812 {"name": "manuscripts and archives digital image database", "language": "en"} [{"acronym": "madid"}] http://images.library.yale.edu/madid/ institutional [] 2022-01-12 15:35:05 2006-09-14 20:20:07 ["humanities"] ["other_special_item_types"] [{"name": "yale university", "alternativeName": "", "country": "us", "url": "http://www.yale.edu/", "identifier": [{"identifier": "https://ror.org/03v76x132", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 200 +776 {"name": "english heritage viewfinder", "language": "en"} [] http://viewfinder.english-heritage.org.uk/ institutional [] 2022-01-12 15:35:05 2006-09-08 12:12:29 ["humanities"] ["other_special_item_types"] [{"name": "english heritage", "alternativeName": "", "country": "gb", "url": "http://www.english-heritage.org.uk/", "identifier": [{"identifier": "https://ror.org/015j35893", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 8000000 +798 {"name": "leodis - a photographic archive of leeds", "language": "en"} [] http://www.leodis.net/ disciplinary [] 2022-01-12 15:35:05 2006-09-12 16:16:40 ["humanities"] ["other_special_item_types"] [{"name": "leeds city council", "alternativeName": "", "country": "gb", "url": "http://www.leeds.gov.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.leodis.net/discoverservice/discover.aspx/ yes 0 60632 +829 {"name": "northeast massachusetts digital library: imagining history collections", "language": "en"} [{"acronym": "nmdl"}] http://nmrlsdli.cdmhost.com/ disciplinary [] 2022-01-12 15:35:06 2006-09-22 15:15:39 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "northeast massachusetts regional library system", "alternativeName": "nmrls", "country": "us", "url": "http://www.nmrls.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://nmrlsdli.cdmhost.com/cgi-bin/oai.exe yes 0 3149 +852 {"name": "archivio giuliano marini", "language": "en"} [] http://archiviomarini.sp.unipi.it/ disciplinary [] 2022-01-12 15:35:06 2006-10-05 12:12:05 ["humanities"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universit\u00e0 di pisa", "alternativeName": "", "country": "it", "url": "http://www.unipi.it/", "identifier": [{"identifier": "https://ror.org/03ad39j10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archiviomarini.sp.unipi.it/cgi/oai2 yes 393 454 +790 {"name": "kinematic models for design digital library", "language": "en"} [{"acronym": "kmoddl"}] http://kmoddl.library.cornell.edu/ institutional [] 2022-01-12 15:35:05 2006-09-11 14:14:45 ["science", "engineering"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "cornell university", "alternativeName": "", "country": "us", "url": "http://www.cornell.edu/", "identifier": [{"identifier": "https://ror.org/05bnh6r87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://kmoddl.library.cornell.edu/oai/oai2.php yes 0 0 +813 {"name": "open archive for conferences held by the department of mathematics - politecnico di milano", "language": "en"} [] http://www2.mate.polimi.it/convegni/ institutional [] 2022-01-12 15:35:05 2006-09-14 20:20:20 ["science", "mathematics"] ["conference_and_workshop_papers"] [{"name": "politecnico di milano", "alternativeName": "", "country": "it", "url": "http://www.polimi.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www2.mate.polimi.it/convegni/oai/ yes 0 400 +788 {"name": "duisburg-essen publications online", "language": "en"} [{"acronym": "duepublico"}] https://duepublico2.uni-due.de institutional [] 2022-01-12 15:35:05 2006-09-11 13:13:31 ["science", "social sciences", "technology", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "university of duisburg-essen", "alternativeName": "ude", "country": "de", "url": "https://www.uni-due.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} https://duepublico2.uni-due.de/servlets/oaidataprovider yes 2770 3384 +736 {"name": "auburn university digital library", "language": "en"} [] http://diglib.auburn.edu/ institutional [] 2022-01-12 15:35:04 2006-09-04 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "auburn university", "alternativeName": "", "country": "us", "url": "http://www.auburn.edu/", "identifier": [{"identifier": "https://ror.org/02v80fc35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 29483 +805 {"name": "rero doc digital library", "language": "en"} [] http://doc.rero.ch institutional [] 2022-01-12 15:35:05 2006-09-14 11:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rero", "alternativeName": "rero - library network of western switzerland", "country": "ch", "url": "http://www.rero.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://doc.rero.ch/oai2d.py/ yes 4591 +753 {"name": "digital theses@uow", "language": "en"} [] http://www.library.uow.edu.au/theses/index.html institutional [] 2022-01-12 15:35:04 2006-09-05 15:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of wollongong", "alternativeName": "uow", "country": "au", "url": "http://www.uow.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3151 +738 {"name": "opal", "language": "en"} [] http://opal.latrobe.edu.au institutional [] 2022-01-12 15:35:04 2006-09-04 15:15:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "la trobe university", "alternativeName": "", "country": "au", "url": "https://library.latrobe.edu.au", "identifier": [{"identifier": "https://ror.org/01rxfrp27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://policies.latrobe.edu.au/document/view.php?id=106", "type": "metadata"}, {"policy_url": "https://policies.latrobe.edu.au/document/view.php?id=106", "type": "content"}, {"policy_url": "https://policies.latrobe.edu.au/document/view.php?id=106", "type": "submission"}, {"policy_url": "https://policies.latrobe.edu.au/document/view.php?id=106", "type": "preservation"}] {"name": "other", "version": ""} yes 0 41819 +731 {"name": "biblioteca digitale delluniversit\u00e0 di bologna", "language": "it"} [{"acronym": "almadl"}, {"name": "digital library of the university of bologna", "language": "en"}] http://almadl.cib.unibo.it/ institutional [] 2022-01-12 15:35:04 2006-09-02 11:11:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "alma mater studiorum, universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2785 +823 {"name": "t\u00fcbinger internet multimedia server", "language": "en"} [{"acronym": "timms"}] http://timms.uni-tuebingen.de/ institutional [] 2022-01-12 15:35:06 2006-09-16 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "eberhard-karls-universit\u00e4t t\u00fcbingen", "alternativeName": "universit\u00e4t t\u00fcbingen", "country": "de", "url": "http://www.uni-tuebingen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2298 +744 {"name": "australasian digital theses program - university of ballarat library", "language": "en"} [{"acronym": "ub library - adt"}] http://www.ballarat.edu.au/aasp/is/library/adttheses/index.shtml institutional [] 2022-01-12 15:35:04 2006-09-05 14:14:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of ballarat", "alternativeName": "", "country": "au", "url": "http://www.ballarat.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 33 +752 {"name": "australasian digital theses program - university of tasmania -", "language": "en"} [{"acronym": "utas adt"}] http://www.utas.edu.au/library/libserv/adt/index.html institutional [] 2022-01-12 15:35:04 2006-09-05 15:15:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of tasmania", "alternativeName": "utas", "country": "au", "url": "http://www.utas.edu.au/", "identifier": [{"identifier": "https://ror.org/01nfmeh72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 277 +807 {"name": "australian digital theses program (adt) - flinders university", "language": "en"} [] http://www.lib.flinders.edu.au/theses/ institutional [] 2022-01-12 15:35:05 2006-09-14 12:12:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "flinders university", "alternativeName": "", "country": "au", "url": "http://www.flinders.edu.au/", "identifier": [{"identifier": "https://ror.org/01kpzv902", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 25 +741 {"name": "southern cross university - australasian digital theses program", "language": "en"} [] http://www.scu.edu.au/library/services/adt.html institutional [] 2022-01-12 15:35:04 2006-09-05 14:14:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "southern cross university", "alternativeName": "", "country": "au", "url": "http://www.scu.edu.au/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 11 +819 {"name": "traveling culture: circuit chautauqua in the twentieth century", "language": "en"} [] http://memory.loc.gov/ammem/collections/chautauqua/ institutional [] 2022-01-12 15:35:06 2006-09-15 11:11:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of iowa libraries", "alternativeName": "", "country": "us", "url": "http://www.lib.uiowa.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 8700 +740 {"name": "university of southern queensland - australasian digital theses program", "language": "en"} [] http://www.usq.edu.au/library/infoabout/adt/ institutional [] 2022-01-12 15:35:04 2006-09-05 14:14:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of southern queensland", "alternativeName": "usq", "country": "au", "url": "http://www.usq.edu.au/", "identifier": [{"identifier": "https://ror.org/04sjbnx57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 78 +811 {"name": "australian digital theses program (adt) - australian national university", "language": "en"} [] http://thesis.anu.edu.au/ institutional [] 2022-01-12 15:35:05 2006-09-14 15:15:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "australian national university", "alternativeName": "", "country": "au", "url": "http://anu.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 146 +810 {"name": "australian digital theses program (adt) - central queensland university", "language": "en"} [] http://content.cqu.edu.au/fcwviewer/view.do?page=8205 institutional [] 2022-01-12 15:35:05 2006-09-14 15:15:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "central queensland university", "alternativeName": "", "country": "au", "url": "http://www.cqu.edu.au/", "identifier": [{"identifier": "https://ror.org/023q4bk22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 170 +739 {"name": "murdoch university - australasian digital theses program", "language": "en"} [] http://wwwlib.murdoch.edu.au/adt/ institutional [] 2022-01-12 15:35:04 2006-09-04 15:15:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "murdoch university", "alternativeName": "", "country": "au", "url": "http://www.murdoch.edu.au/", "identifier": [{"identifier": "https://ror.org/00r4sry34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +757 {"name": "online repository - elmwood college scotland", "language": "en"} [] http://www.elmwood.ac.uk/about/college-documents institutional [] 2022-01-12 15:35:05 2006-09-05 16:16:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "elmwood college", "alternativeName": "", "country": "gb", "url": "http://www.elmwood.ac.uk/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 18 +750 {"name": "australasian digital theses program (adt) at the university of otago", "language": "en"} [] http://www.library.otago.ac.nz/research/adt.html institutional [] 2022-01-12 15:35:04 2006-09-05 15:15:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of otago", "alternativeName": "", "country": "nz", "url": "http://www.otago.ac.nz/", "identifier": [{"identifier": "https://ror.org/01jmxt844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 42 +749 {"name": "australasian digital theses program - university of newcastle, australia", "language": "en"} [] http://www.newcastle.edu.au/service/library/adt/ institutional [] 2022-01-12 15:35:04 2006-09-05 15:15:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of newcastle", "alternativeName": "", "country": "au", "url": "http://www.newcastle.edu.au/", "identifier": [{"identifier": "https://ror.org/00eae9z71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3041 +755 {"name": "australasian digital theses program - victoria university library", "language": "en"} [] http://wallaby.vu.edu.au/ institutional [] 2022-01-12 15:35:05 2006-09-05 16:16:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "victoria university", "alternativeName": "vu", "country": "au", "url": "http://www.vu.edu.au/", "identifier": [{"identifier": "https://ror.org/04j757h98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 249 +743 {"name": "digital theses - university of adelaide", "language": "en"} [] http://www.adelaide.edu.au/library/digital/theses/ institutional [] 2022-01-12 15:35:04 2006-09-05 14:14:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of adelaide", "alternativeName": "", "country": "au", "url": "http://www.adelaide.edu.au/", "identifier": [{"identifier": "https://ror.org/00892tw58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3121 +735 {"name": "unb scholar research repository", "language": "en"} [] https://unbscholar.lib.unb.ca institutional [] 2022-01-12 15:35:04 2006-09-04 10:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of new brunswick", "alternativeName": "unb", "country": "ca", "url": "http://www.unb.ca", "identifier": [{"identifier": "https://ror.org/05nkf0n29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 67 +726 {"name": "illinois electronic documents initiative", "language": "en"} [{"acronym": "iledi"}] http://iledi.org/ppa/ governmental [] 2022-01-12 15:35:04 2006-09-01 15:15:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "university of illinois at urbana-champaign", "alternativeName": "", "country": "us", "url": "http://illinois.edu/", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 113842 +818 {"name": "tricollege digital library", "language": "en"} [{"acronym": "triptych"}] http://triptych.brynmawr.edu/ institutional [] 2022-01-12 15:35:06 2006-09-15 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "bryn mawr college special collections", "alternativeName": "", "country": "us", "url": "http://www.brynmawr.edu/library/speccoll/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://triptych.brynmawr.edu/cgi-bin/oai.exe yes 0 49679 +756 {"name": "purdue university libraries e-archives", "language": "en"} [] http://earchives.lib.purdue.edu/ institutional [] 2022-01-12 15:35:05 2006-09-05 16:16:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "purdue university", "alternativeName": "", "country": "us", "url": "http://www.purdue.edu/", "identifier": [{"identifier": "https://ror.org/02dqehb95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 12212 +763 {"name": "adelaide research & scholarship", "language": "en"} [{"acronym": "ar&s"}] http://digital.library.adelaide.edu.au/dspace/ institutional [] 2022-01-12 15:35:05 2006-09-06 09:09:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of adelaide", "alternativeName": "", "country": "au", "url": "http://www.adelaide.edu.au/", "identifier": [{"identifier": "https://ror.org/00892tw58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digital.library.adelaide.edu.au/dspace-oai/request yes 5263 105265 +771 {"name": "juelicher wissenschaftliche elektronische literatur", "language": "en"} [{"acronym": "juwel"}] http://juwel.fz-juelich.de:8080/dspace/ institutional [] 2022-01-12 15:35:05 2006-09-06 14:14:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "forschungszentrums j\u00fclich", "alternativeName": "", "country": "de", "url": "http://www.fz-juelich.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://juwel.fz-juelich.de:8080/dspace-oai122fzj/request yes 4069 +760 {"name": "openbu - boston university", "language": "en"} [] https://open.bu.edu institutional [] 2022-01-12 15:35:05 2006-09-05 17:17:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "boston university", "alternativeName": "", "country": "us", "url": "http://www.bu.edu", "identifier": [{"identifier": "https://ror.org/05qwgg493", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://open.bu.edu/oai/request yes 28893 40720 +815 {"name": "australian digital theses program (adt) - australian catholic university", "language": "en"} [{"acronym": "acu theses"}] http://dlibrary.acu.edu.au/digitaltheses/public/ institutional [] 2022-01-12 15:35:06 2006-09-15 09:09:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "australian catholic university", "alternativeName": "", "country": "au", "url": "http://www.acu.edu.au/", "identifier": [{"identifier": "https://ror.org/04cxm4j25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://digitool.unilinc.edu.au/oai-pub yes 0 424 +748 {"name": "unsw@adfa", "language": "en"} [] http://unsworks.unsw.edu.au/ institutional [] 2022-01-12 15:35:04 2006-09-05 15:15:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of new south wales at the australian defence force academy", "alternativeName": "unsw@adfa", "country": "au", "url": "http://www.unsw.adfa.edu.au/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://unsworks.unsw.edu.au/fedora/oai yes 3893 +808 {"name": "australian digital theses program (adt) - edith cowan university", "language": "en"} [] http://www.ecu.edu.au/library/services/adt.html institutional [] 2022-01-12 15:35:05 2006-09-14 12:12:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "edith cowan university", "alternativeName": "", "country": "au", "url": "http://www.ecu.edu.au/", "identifier": [{"identifier": "https://ror.org/05jhnwe22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3624 +828 {"name": "electronic theses and dissertations available at ncsu libraries", "language": "en"} [] http://www.lib.ncsu.edu/etd-db/ institutional [] 2022-01-12 15:35:06 2006-09-22 15:15:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "north carolina state university", "alternativeName": "ncsu", "country": "us", "url": "http://www.ncsu.edu/", "identifier": [{"identifier": "https://ror.org/04tj63d06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3398 +802 {"name": "fontys iport", "language": "en"} [] http://www.fontysmediatheek.nl/wiki/home/fontys_publicaties institutional [] 2022-01-12 15:35:05 2006-09-14 10:10:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "bibliographic_references"] [{"name": "fontys hogescholen", "alternativeName": "", "country": "nl", "url": "http://www.fontys.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2816 +797 {"name": "kumamoto university repository", "language": "en"} [{"name": "\u718a\u672c\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kumadai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:05 2006-09-12 16:16:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kumamoto university", "alternativeName": "", "country": "jp", "url": "http://www.kumamoto-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://kumadai.repo.nii.ac.jp/oai yes 14287 +723 {"name": "digital library of zielona gora", "language": "en"} [{"acronym": "zbc"}, {"name": "zielonog\u00f3rska biblioteka cyfrowa", "language": "pl"}, {"acronym": "zbc"}] http://zbc.uz.zgora.pl/dlibra/ institutional [] 2022-01-12 15:35:04 2006-09-01 14:14:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "uniwersytet zielonogorski", "alternativeName": "", "country": "pl", "url": "http://www.uz.zgora.pl/", "identifier": [{"identifier": "https://ror.org/04fzm7v55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://zbc.uz.zgora.pl/dlibra/oai-pmh-repository.xml yes 208 13238 +722 {"name": "digital library of wroclaw university", "language": "en"} [{"name": "biblioteka cyfrowa uniwersytetu wroc\u0142awskiego", "language": "pl"}] http://www.bibliotekacyfrowa.pl/dlibra/ institutional [] 2022-01-12 15:35:04 2006-09-01 14:14:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "wroclaw university", "alternativeName": "", "country": "pl", "url": "http://www.uni.wroc.pl/", "identifier": [{"identifier": "https://ror.org/00yae6e25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.bibliotekacyfrowa.pl/dlibra/oai-pmh-repository.xml yes 0 3110 +721 {"name": "wielkopolska biblioteka cyfrowa", "language": "en"} [] http://www.wbc.poznan.pl/dlibra/ governmental [] 2022-01-12 15:35:04 2006-09-01 14:14:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "poznan foundation of scientific libraries", "alternativeName": "", "country": "pl", "url": "http://www.pfsl.poznan.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.wbc.poznan.pl/dlibra/oai-pmh-repository.xml yes 0 609 +832 {"name": "office of scientific & technical information", "language": "en"} [{"acronym": "osti"}] http://www.osti.gov/ governmental [] 2022-01-12 15:35:06 2006-09-25 10:10:38 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "u.s. department of energy", "alternativeName": "doe", "country": "us", "url": "http://energy.gov/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 875798 +737 {"name": "science attic", "language": "en"} [] http://science-attic.org/ disciplinary [] 2022-01-12 15:35:04 2006-09-04 14:14:39 ["science"] ["learning_objects"] [{"name": "korean institution of science and technology information", "alternativeName": "kisti", "country": "kr", "url": "http://www.kisti.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://science-attic.org/dp/oai2.php yes 555 +734 {"name": "jsc reduced gravity program photographs", "language": "en"} [] http://zerog.jsc.nasa.gov/ governmental [] 2022-01-12 15:35:04 2006-09-04 09:09:47 ["science"] ["other_special_item_types"] [{"name": "national aeronautics and space administration", "alternativeName": "nasa", "country": "us", "url": "http://www.nasa.gov/", "identifier": [{"identifier": "https://ror.org/027ka1x80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +779 {"name": "raman research institute digital repository", "language": "en"} [{"acronym": "rri digital repository"}] http://dspace.rri.res.in/ institutional [] 2022-01-12 15:35:05 2006-09-08 14:14:09 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "raman research institute", "alternativeName": "", "country": "in", "url": "http://www.rri.res.in/", "identifier": [{"identifier": "https://ror.org/01qdav448", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.rri.res.in/oai/request yes 0 5941 +804 {"name": "reposit\u00f3rio eletr\u00f4nico - departamento de ci\u00eancias agr\u00e1rias", "language": "en"} [] http://www.agro.unitau.br:8080/dspace/ disciplinary [] 2022-01-12 15:35:05 2006-09-14 11:11:00 ["science"] ["journal_articles"] [{"name": "universidade de taubat\u00e9", "alternativeName": "unitau", "country": "br", "url": "http://www.unitau.br/", "identifier": [{"identifier": "https://ror.org/01gt7sg63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.agro.unitau.br:8080/dspace-oai/request yes 0 192 +820 {"name": "lunar and planetary institute, resources", "language": "en"} [] http://www.lpi.usra.edu/resources/ institutional [] 2022-01-12 15:35:06 2006-09-15 11:11:27 ["science"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "universities space research association", "alternativeName": "usra", "country": "us", "url": "http://www.usra.edu/", "identifier": [{"identifier": "https://ror.org/043pgqy52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +775 {"name": "electronic environmental resources library", "language": "en"} [{"acronym": "eerl"}] http://www.eerl.org/index.php disciplinary [] 2022-01-12 15:35:05 2006-09-08 12:12:06 ["science"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "advanced technology environmental education center", "alternativeName": "ateec", "country": "us", "url": "http://www.ateec.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 13767 +816 {"name": "library and archives canada", "language": "en"} [{"acronym": "lan"}] http://www.collectionscanada.gc.ca/ institutional [] 2022-01-12 15:35:06 2006-09-15 10:10:10 ["social sciences", "arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "library and archives canada", "alternativeName": "", "country": "ca", "url": "http://www.collectionscanada.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 154732 +778 {"name": "flinders academic commons", "language": "en"} [{"acronym": "fac"}] http://dspace.flinders.edu.au/dspace/ institutional [] 2022-01-12 15:35:05 2006-09-08 13:13:52 ["social sciences", "arts", "humanities"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "flinders university", "alternativeName": "", "country": "au", "url": "http://www.flinders.edu.au/", "identifier": [{"identifier": "https://ror.org/01kpzv902", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.flinders.edu.au/dspace-oai/request yes 11083 30962 +843 {"name": "freiburger dokumentenserver", "language": "en"} [{"acronym": "freidok"}] http://www.freidok.uni-freiburg.de/ institutional [] 2022-01-12 15:35:06 2006-09-29 15:15:26 ["social sciences", "health and medicine", "humanities", "science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "albert-ludwigs-universit\u00e4t freiburg", "alternativeName": "", "country": "de", "url": "http://www.uni-freiburg.de/", "identifier": [{"identifier": "https://ror.org/0245cg223", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.freidok.uni-freiburg.de/oai2/oai2.php yes 12976 +855 {"name": "university of regensburg publication server", "language": "en"} [] http://epub.uni-regensburg.de/ institutional [] 2022-01-12 15:35:06 2006-10-11 18:18:14 ["social sciences", "health and medicine", "humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t regensburg", "alternativeName": "", "country": "de", "url": "http://www.uni-regensburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://epub.uni-regensburg.de/cgi/oai2 yes 13323 38206 +803 {"name": "national library of serbia - digital object identifier repository", "language": "en"} [{"acronym": "doiserbia"}] http://www.doiserbia.nb.rs/ institutional [] 2022-01-12 15:35:05 2006-09-14 10:10:33 ["social sciences", "health and medicine", "science"] ["journal_articles"] [{"name": "\u043d\u0430\u0440\u043e\u0434\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0441\u0440\u0431\u0438\u0458\u0435", "alternativeName": "narodna biblioteka srbije", "country": "rs", "url": "http://www.nb.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.kobson.nb.rs/doiserboai yes 0 39197 +831 {"name": "open video project", "language": "en"} [] http://www.open-video.org/ disciplinary [] 2022-01-12 15:35:06 2006-09-25 10:10:13 ["social sciences", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.open-video.org/oai2.0/ yes 0 4079 +849 {"name": "informatics@edinburgh - reports series", "language": "en"} [] http://www.inf.ed.ac.uk/publications/report/ institutional [] 2022-01-12 15:35:06 2006-10-04 12:12:05 ["social sciences", "technology"] ["bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of edinburgh", "alternativeName": "", "country": "gb", "url": "http://www.ed.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2691 +768 {"name": "economics network online learning and teaching materials", "language": "en"} [] http://www.economicsnetwork.ac.uk/links/othertl.htm disciplinary [] 2022-01-12 15:35:05 2006-09-06 11:11:16 ["social sciences"] ["learning_objects", "software", "other_special_item_types"] [{"name": "institute for learning and research technology", "alternativeName": "ilrt", "country": "gb", "url": "http://www.bris.ac.uk/ilrt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 986 +769 {"name": "econport", "language": "en"} [] http://www.econport.org/econport/request?page=web_home disciplinary [] 2022-01-12 15:35:05 2006-09-06 11:11:40 ["social sciences"] ["other_special_item_types"] [{"name": "experimental economics center", "alternativeName": "", "country": "us", "url": "http://expecon.gsu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +762 {"name": "dspace at new york university", "language": "en"} [] http://archive.nyu.edu/ institutional [] 2022-01-12 15:35:05 2006-09-06 09:09:36 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://archive.nyu.edu//request yes 4879 16991 +830 {"name": "oclc research publications", "language": "en"} [] http://www.oclc.org/research/publications/ institutional [] 2022-01-12 15:35:06 2006-09-22 16:16:35 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "online computer library center", "alternativeName": "oclc", "country": "us", "url": "http://www.oclc.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 926 +795 {"name": "opus-datenbank der universit\u00e4t der k\u00fcnste berlin", "language": "en"} [] http://opus.kobv.de/udk/ institutional [] 2022-01-12 15:35:05 2006-09-12 15:15:27 ["technology", "arts", "social sciences", "engineering"] ["theses_and_dissertations"] [{"name": "universit\u00e4t der k\u00fcnste berlin", "alternativeName": "", "country": "de", "url": "http://www.udk-berlin.de/sites/content/themen/aktuelles/index_ger.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 925 +842 {"name": "hochschulpublikationen: johann wolfgang goethe-universit\u00e4t", "language": "en"} [] http://publikationen.stub.uni-frankfurt.de/ institutional [] 2022-01-12 15:35:06 2006-09-28 17:17:44 ["technology", "health and medicine", "social sciences", "humanities", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "johann wolfgang goethe-universit\u00e4t am main", "alternativeName": "", "country": "de", "url": "http://www.uni-frankfurt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3268 +826 {"name": "national science digital library", "language": "en"} [{"acronym": "nsdl"}] http://nsdl.org/ aggregating [] 2022-01-12 15:35:06 2006-09-22 11:11:52 ["technology", "health and medicine", "social sciences", "science"] ["bibliographic_references", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "national science foundation", "alternativeName": "nsf", "country": "us", "url": "http://www.nsf.gov/", "identifier": [{"identifier": "https://ror.org/021nxhr62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 96269 +774 {"name": "digital treasures repository: central/western massachusetts resource sharing project", "language": "en"} [{"acronym": "c/wmars"}] http://dlib.cwmars.org/ disciplinary [] 2022-01-12 15:35:05 2006-09-06 15:15:06 ["technology", "humanities", "science"] ["other_special_item_types"] [{"name": "central/ western massachusetts automated resource sharing", "alternativeName": "", "country": "us", "url": "http://www.cwmars.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 396 +724 {"name": "biblioteki cyfrowej politechniki warszawskiej", "language": "en"} [] http://bcpw.bg.pw.edu.pl/dlibra/ institutional [] 2022-01-12 15:35:04 2006-09-01 15:15:03 ["technology", "humanities"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "politechniki warszawskiej (warsaw university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bcpw.bg.pw.edu.pl/dlibra/oai-pmh-repository.xml yes 0 269 +773 {"name": "education by design the bienes centers wpa museum extension project collection", "language": "en"} [] http://digitalarchives.broward.org/ disciplinary [] 2022-01-12 15:35:05 2006-09-06 14:14:53 ["technology", "social sciences", "arts", "humanities"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "broward county library", "alternativeName": "", "country": "us", "url": "http://www.broward.org/library", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 14391 +793 {"name": "depositonce", "language": "en"} [] https://depositonce.tu-berlin.de/ institutional [] 2022-01-12 15:35:05 2006-09-12 14:14:20 ["technology", "social sciences", "mathematics", "science"] ["journal_articles", "theses_and_dissertations"] [{"name": "technische universit\u00e4t berlin", "alternativeName": "", "country": "de", "url": "http://www.tu-berlin.de/", "identifier": [{"identifier": "https://ror.org/03v4gjf40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.szf.tu-berlin.de/menue/dienste_tools/repositorium_depositonce/leitlinien_fuer_depositonce/", "type": "metadata"}, {"policy_url": "http://www.szf.tu-berlin.de/menue/dienste_tools/repositorium_depositonce/leitlinien_fuer_depositonce/", "type": "content"}, {"policy_url": "http://www.szf.tu-berlin.de/menue/dienste_tools/repositorium_depositonce/leitlinien_fuer_depositonce/", "type": "preservation"}] {"name": "dspace", "version": ""} https://depositonce.tu-berlin.de/oai/request yes 7131 +792 {"name": "publication server of the aachen university of applied sciences", "language": "en"} [] http://opus.bibliothek.fh-aachen.de/home institutional [] 2022-01-12 15:35:05 2006-09-11 15:15:54 ["technology", "social sciences", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "fachhochschule aachen", "alternativeName": "fh aachen", "country": "de", "url": "http://www.fh-aachen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 7628 +767 {"name": "digital theses - university of technology, sydney", "language": "en"} [{"acronym": "uts digital theses"}] http://www.lib.uts.edu.au/uts-publications/digital-theses institutional [] 2022-01-12 15:35:05 2006-09-06 10:10:47 ["technology"] ["theses_and_dissertations"] [{"name": "university of technology, sydney", "alternativeName": "", "country": "au", "url": "http://www.uts.edu.au/", "identifier": [{"identifier": "https://ror.org/03f0f6041", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2660 +850 {"name": "swedish institute of computer science publications database", "language": "en"} [{"acronym": "sics publications database"}] http://eprints.sics.se/ institutional [] 2022-01-12 15:35:06 2006-10-05 11:11:31 ["technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "swedish institute of computer science", "alternativeName": "sics", "country": "se", "url": "http://www.sics.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://soda.swedish-ict.se/cgi/oai2 yes 749 2886 +835 {"name": "publishing network for geoscientific and environmental data", "language": "en"} [{"acronym": "pangaea\u00ae"}] http://www.pangaea.de/ disciplinary [] 2022-01-12 15:35:06 2006-09-25 12:12:10 ["humanities", "science"] ["journal_articles", "unpub_reports_and_working_papers", "datasets"] [{"name": "alfred wegener institute for polar and marine research", "alternativeName": "awi", "country": "de", "url": "http://www.awi.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ws.pangaea.de/oai/ yes 0 771552 +758 {"name": "goldsmiths research online", "language": "en"} [] http://research.gold.ac.uk/ institutional [] 2022-01-12 15:35:05 2006-09-05 16:16:46 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "goldsmiths college", "alternativeName": "", "country": "gb", "url": "http://www.gold.ac.uk/", "identifier": [{"identifier": "https://ror.org/01khx4a30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints-gro.gold.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints-gro.gold.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints-gro.gold.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints-gro.gold.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints-gro.gold.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.gold.ac.uk/cgi/oai2 yes 5927 23333 +827 {"name": "national engineering education delivery system", "language": "en"} [{"acronym": "needs"}] http://www.needs.org/needs/ aggregating [] 2022-01-12 15:35:06 2006-09-22 14:14:48 ["technology", "science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national engineering education delivery system", "alternativeName": "needs", "country": "us", "url": "http://www.needs.org/needs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.needs.org/servlet/oai2 yes 0 0 +836 {"name": "pedagogical digital library", "language": "en"} [{"acronym": "pedagogiczna biblioteka cyfrowa"}] http://pbc.up.krakow.pl//dlibra institutional [] 2022-01-12 15:35:06 2006-09-25 13:13:49 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "akademia pedagogiczna", "alternativeName": "", "country": "pl", "url": "http://www.ap.krakow.pl/main/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://pbc.up.krakow.pl//dlibra/oai-pmh-repository.xml yes 0 220 +814 {"name": "memorial university newfoundland digital archive initiative", "language": "en"} [] http://collections.mun.ca/ institutional [] 2022-01-12 15:35:06 2006-09-14 20:20:42 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "memorial university of newfoundland", "alternativeName": "", "country": "ca", "url": "http://www.mun.ca/", "identifier": [{"identifier": "https://ror.org/04haebc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://collections.mun.ca/oai/oai.php yes 3259 757243 +765 {"name": "usc digital library", "language": "en"} [] http://digitallibrary.usc.edu/search/controller/index.htm institutional [] 2022-01-12 15:35:05 2006-09-06 10:10:35 ["social sciences", "science", "humanities", "arts"] ["journal_articles", "other_special_item_types"] [{"name": "university of southern california", "alternativeName": "", "country": "us", "url": "http://www.usc.edu/", "identifier": [{"identifier": "https://ror.org/03taz7m60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitallibrary.usc.edu/cdm/about", "type": "metadata"}, {"policy_url": "http://digitallibrary.usc.edu/cdm/about", "type": "data"}, {"policy_url": "http://digitallibrary.usc.edu/cdm/about", "type": "content"}, {"policy_url": "http://www.usc.edu/libraries/collections/digitallibrary/index.php", "type": "submission"}] {"name": "contentdm", "version": ""} http://digitallibrary.usc.edu/oai/oai.php yes 0 11307270 +777 {"name": "epubwu institutional repository", "language": "en"} [{"acronym": "epubwu"}] http://epub.wu.ac.at/ institutional [] 2022-01-12 15:35:05 2006-09-08 13:13:49 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "wirtschaftsuniversit\u00e4t wien (vienna university of economics and business)", "alternativeName": "wu", "country": "at", "url": "http://www.wu.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://epub.wu.ac.at/policies.html", "type": "metadata"}, {"policy_url": "http://epub.wu.ac.at/policies.html", "type": "data"}, {"policy_url": "http://epub.wu.ac.at/policies.html", "type": "content"}, {"policy_url": "http://epub.wu.ac.at/policies.html", "type": "submission"}, {"policy_url": "http://epub.wu.ac.at/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://epub.wu.ac.at/cgi/oai2 yes 3662 4662 +791 {"name": "publikationsserver der rwth aachen university", "language": "en"} [{"acronym": "rwth publications"}] http://publications.rwth-aachen.de/ institutional [] 2022-01-12 15:35:05 2006-09-11 15:15:09 ["technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "rheinisch-westf\u00e4lische technische hochschule aachen", "alternativeName": "rwth aachen university", "country": "de", "url": "http://www.rwth-aachen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ub.rwth-aachen.de/index.php?id=1395", "type": "metadata"}, {"policy_url": "http://www.ub.rwth-aachen.de/index.php?id=1395", "type": "data"}, {"policy_url": "http://www.bth.rwth-aachen.de/opus3/leitlinien_eng.html", "type": "content"}, {"policy_url": "http://www.bth.rwth-aachen.de/opus3/leitlinien_eng.html", "type": "submission"}, {"policy_url": "http://www.bth.rwth-aachen.de/opus3/leitlinien_eng.html", "type": "preservation"}] {"name": "invenio", "version": ""} http://publications.rwth-aachen.de/oai2d yes 7364 408650 +780 {"name": "researchonline@jcu", "language": "en"} [] http://eprints.jcu.edu.au/ institutional [] 2022-01-12 15:35:05 2006-09-08 14:14:33 ["health and medicine", "social sciences", "humanities", "arts", "science"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "james cook university", "alternativeName": "", "country": "au", "url": "http://www.jcu.edu.au/", "identifier": [{"identifier": "https://ror.org/04gsp2c11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.jcu.edu.au/policy/allitoz/jcuprd_051806.html", "type": "metadata"}, {"policy_url": "http://www.jcu.edu.au/policy/allitoz/jcuprd_051806.html", "type": "data"}, {"policy_url": "http://www.jcu.edu.au/policy/allitoz/jcuprd_051806.html", "type": "content"}, {"policy_url": "http://www.jcu.edu.au/policy/allitoz/jcuprd_051806.html", "type": "submission"}, {"policy_url": "http://www.jcu.edu.au/policy/allitoz/jcuprd_051806.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.jcu.edu.au/cgi/oai2 yes 0 33565 +863 {"name": "university of michigan library digital collections", "language": "en"} [] https://www.lib.umich.edu/collections/digital-collections institutional [] 2022-01-12 15:35:06 2006-10-18 19:19:38 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of michigan", "alternativeName": "u-m", "country": "us", "url": "http://www.umich.edu/", "identifier": [{"identifier": "https://ror.org/00jmfr291", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://quod.lib.umich.edu/cgi/o/oai/oai yes 0 4259931 +865 {"name": "digital collections - usc", "language": "en"} [] http://library.sc.edu/digital/index.php institutional [] 2022-01-12 15:35:06 2006-10-18 20:20:49 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of south carolina", "alternativeName": "usc", "country": "us", "url": "http://www.sc.edu/", "identifier": [{"identifier": "https://ror.org/02b6qw903", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.sc.edu/library/digital/dacselect.html", "type": "content"}, {"policy_url": "http://www.sc.edu/library/digital/dacsustain.html", "type": "preservation"}] {"name": "contentdm", "version": ""} yes 59355 +859 {"name": "images of the caribbean diaspora: book jacket art", "language": "en"} [] http://libsys.lib.uic.edu:591/carberry/ institutional [] 2022-01-12 15:35:06 2006-10-12 16:16:55 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of illinois at chicago", "alternativeName": "uic", "country": "us", "url": "http://www.uic.edu/uic/", "identifier": [{"identifier": "https://ror.org/02mpq6x41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 381 +898 {"name": "famena phd collection", "language": "en"} [] http://www.fsb.unizg.hr/library/repository.php institutional [] 2022-01-12 15:35:07 2006-11-15 15:15:21 ["engineering", "technology"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "sveu\u010dili\u0161ta u zagrebu", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2874 +932 {"name": "horizon / pleins textes", "language": "fr"} [] https://horizon.documentation.ird.fr institutional [] 2022-01-12 15:35:08 2007-04-27 16:16:00 ["health and medicine", "science", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "institut de recherche pour le d\u00e9veloppement", "alternativeName": "ird", "country": "fr", "url": "https://www.ird.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ird.fr/infos-pratiques/mentions-legales", "type": "data"}, {"policy_url": "http://www.ird.fr/fr/legal/", "type": "data"}] {"name": "", "version": ""} http://www.documentation.ird.fr/fdi/oai?verb=identify yes 80744 +908 {"name": "europe pmc", "language": "en"} [] http://europepmc.org/ disciplinary [] 2022-01-12 15:35:07 2007-01-09 14:14:20 ["health and medicine", "science"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "europe pmc funders group", "alternativeName": "", "country": "gb", "url": "http://europepmc.org/funders/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://europepmc.org/oaiservice yes 420000000 +881 {"name": "web-based archive of rivm publications", "language": "en"} [{"acronym": "warp"}] http://rivm.openrepository.com/rivm institutional [] 2022-01-12 15:35:07 2006-11-09 11:11:46 ["health and medicine", "science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national institute for public health and the environment", "alternativeName": "rivm", "country": "nl", "url": "http://www.rivm.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rivm.openrepository.com/rivm-oai/request yes 10549 +894 {"name": "irish health publications archive", "language": "en"} [] http://www.hselibrary.ie/?q=electronic_resources/digital_archive/ governmental [] 2022-01-12 15:35:07 2006-11-10 14:14:06 ["health and medicine", "social sciences", "humanities"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "health service executive", "alternativeName": "hse", "country": "ie", "url": "http://www.hse.ie/", "identifier": [{"identifier": "https://ror.org/04zke5364", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +952 {"name": "asahikawa medical university repository amcor", "language": "en"} [{"acronym": "amcor"}, {"name": "\u65ed\u5ddd\u533b\u79d1\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea\u3000amcor", "language": "ja"}] http://amcor.asahikawa-med.ac.jp institutional [] 2022-01-12 15:35:08 2007-05-10 16:16:40 ["health and medicine"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "software"] [{"name": "asahikawa medical university", "alternativeName": "", "country": "jp", "url": "http://www.asahikawa-med.ac.jp/", "identifier": [{"identifier": "https://ror.org/025h9kw94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://amcor.asahikawa-med.ac.jp/modules/xoonips/oai.php yes 5978 +879 {"name": "dspace a la universitat de girona", "language": "en"} [] http://diobma.udg.es:8080/dspace/index.jsp institutional [] 2022-01-12 15:35:07 2006-11-09 11:11:17 ["humanities", "arts"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "universitat de girona", "alternativeName": "", "country": "es", "url": "http://www.udg.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://diobma.udg.es:8080/dspace-oai/request yes 132 +883 {"name": "trinitys access to research archive", "language": "en"} [{"acronym": "tara"}] http://www.tara.tcd.ie/ institutional [] 2022-01-12 15:35:07 2006-11-09 16:16:06 ["humanities", "science", "social sciences", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "trinity college dublin", "alternativeName": "", "country": "ie", "url": "http://www.tcd.ie/", "identifier": [{"identifier": "https://ror.org/02tyrky19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.tara.tcd.ie/oaiextended/request yes 0 30396 +962 {"name": "april 16 archive", "language": "en"} [] http://www.april16archive.org/ disciplinary [] 2022-01-12 15:35:08 2007-06-07 11:11:53 ["humanities"] ["other_special_item_types"] [{"name": "virginia polytechnic institute and state university", "alternativeName": "virginia tech", "country": "us", "url": "http://www.vt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1884 +945 {"name": "center for jewish history digital collections", "language": "en"} [{"acronym": "cjh digital collections"}] http://access.cjh.org/ institutional [] 2022-01-12 15:35:08 2007-05-09 15:15:53 ["humanities"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "center for jewish history", "alternativeName": "cjh", "country": "us", "url": "http://www.cjh.org/", "identifier": [{"identifier": "https://ror.org/03tm6pb36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://digital.cjh.org/oai-pub yes 0 74485 +930 {"name": "greifswalder digitales informationssystem", "language": "en"} [{"acronym": "geogreif"}] http://greif.uni-greifswald.de/geogreif/ disciplinary [] 2022-01-12 15:35:08 2007-04-27 15:15:12 ["humanities"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ernst moritz arndt universit\u00e4t greifswald", "alternativeName": "", "country": "de", "url": "http://www.uni-greifswald.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://greif.uni-greifswald.de/geogreif/oai/oai.php yes 0 1 +929 {"name": "resource repository", "language": "en"} [] http://www.resourcerepository.org/ institutional [] 2022-01-12 15:35:08 2007-04-20 12:12:16 ["science", "health and medicine", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "genetic alliance", "alternativeName": "", "country": "us", "url": "http://www.geneticalliance.org/", "identifier": [{"identifier": "https://ror.org/05r5zsh59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2528 +933 {"name": "california state university channel islands institutional repository", "language": "en"} [{"acronym": "csuci institutional repository"}] http://repository.library.csuci.edu/ institutional [] 2022-01-12 15:35:08 2007-05-03 16:16:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "california state university channel islands", "alternativeName": "csuci", "country": "us", "url": "http://www.csuci.edu/", "identifier": [{"identifier": "https://ror.org/04v097707", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 17476 +968 {"name": "management development institute - open access repository", "language": "en"} [{"acronym": "dspace@mdi"}] http://dspace.mdi.ac.in/dspace institutional [] 2022-01-12 15:35:08 2007-06-07 15:15:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "management development institute", "alternativeName": "mdi", "country": "in", "url": "http://www.mdi.ac.in/home/home.asp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.mdi.ac.in/dspace-oai/request yes 649 +975 {"name": "niigata university academic repository", "language": "en"} [{"acronym": "nuar"}, {"name": "\u65b0\u6f5f\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://niigata-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:08 2007-06-11 12:12:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "niigata university", "alternativeName": "", "country": "jp", "url": "http://www.niigata-u.ac.jp/index_e.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://niigata-u.repo.nii.ac.jp/oai yes 31612 +979 {"name": "repositorio del instituto de estudios peruanos", "language": "es"} [] https://repositorio.iep.org.pe institutional [] 2022-01-12 15:35:08 2007-06-18 16:16:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto de estudios peruanos", "alternativeName": "iep", "country": "pe", "url": "https://iep.org.pe", "identifier": [{"identifier": "https://ror.org/03zgaq086", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.iep.org.pe/oai/request yes 604 +953 {"name": "bictel/e - ulg", "language": "en"} [] http://bictel.ulg.ac.be/ institutional [] 2022-01-12 15:35:08 2007-05-11 14:14:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de li\u00e8ge (university of li\u00e8ge)", "alternativeName": "uli\u00e8ge", "country": "be", "url": "https://www.uliege.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bictel.ulg.ac.be/presentation_3.html", "type": "content"}] {"name": "other", "version": ""} http://bictel.ulg.ac.be/etd-db/oai/oai.pl yes 957 +931 {"name": "k-state research exchange", "language": "en"} [] http://krex.k-state.edu/ institutional [] 2022-01-12 15:35:08 2007-04-27 15:15:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "kansas state university", "alternativeName": "", "country": "us", "url": "http://www.k-state.edu/", "identifier": [{"identifier": "https://ror.org/05p1j8758", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://krex.ksu.edu/dspace/help/faq.jsp#2_1", "type": "submission"}] {"name": "dspace", "version": ""} http://krex.k-state.edu/dspace-oai/request yes 36444 +905 {"name": "libre acces aux rapports scientifiques et techniques", "language": "en"} [{"acronym": "lara"}] http://lara.inist.fr/ aggregating [] 2022-01-12 15:35:07 2006-12-18 11:11:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "institut de linformation scientifique et technique du cnrs", "alternativeName": "inist-cnrs", "country": "fr", "url": "http://www.inist.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://lara.inist.fr/utilisation.jsp", "type": "data"}, {"policy_url": "http://lara.inist.fr/utilisation.jsp", "type": "submission"}] {"name": "dspace", "version": ""} http://lara.inist.fr/dspace-oai/request yes 2033 +943 {"name": "kobe university repository kernel", "language": "en"} [{"name": "\u795e\u6238\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30eakernel", "language": "ja"}] http://www.lib.kobe-u.ac.jp/infolib/meta_pub/g0000003kernel institutional [] 2022-01-12 15:35:08 2007-05-09 15:15:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kobe university", "alternativeName": "", "country": "jp", "url": "http://www.kobe-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.lib.kobe-u.ac.jp/kernel/e_about.html#03", "type": "data"}, {"policy_url": "http://www.lib.kobe-u.ac.jp/kernel/guideline.pdf", "type": "content"}, {"policy_url": "http://www.lib.kobe-u.ac.jp/kernel/e_regist.html", "type": "content"}, {"policy_url": "http://www.lib.kobe-u.ac.jp/kernel/e_regist.html", "type": "submission"}] {"name": "other", "version": ""} http://www.lib.kobe-u.ac.jp/infolib/oai_repository/pmh/g0000003-repository yes 348736 +923 {"name": "new york university faculty digital archive", "language": "en"} [{"acronym": "archive@nyu"}] http://archive.nyu.edu/ institutional [] 2022-01-12 15:35:07 2007-03-01 12:12:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.nyu.edu/its/faculty/fda/", "type": "submission"}] {"name": "dspace", "version": ""} http://archive.nyu.edu/request yes 6332 +910 {"name": "regional unit for scientific and technical information", "language": "en"} [{"acronym": "urfist"}, {"name": "unit\u00e9 r\u00e9gionale de formation a linformation", "language": "fr"}, {"acronym": "urfist"}] https://urfist.unistra.fr/veille-et-recherche/open-access/#c92144 institutional [] 2022-01-12 15:35:07 2007-01-29 14:14:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of strasbourg", "alternativeName": "", "country": "fr", "url": "http://www.unistra.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 328 +970 {"name": "archivio istituzionale", "language": "en"} [{"acronym": "aperto"}] https://aperto.unito.it/ institutional [] 2022-01-12 15:35:08 2007-06-08 14:14:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e0 degli studi di torino", "alternativeName": "", "country": "it", "url": "http://www.unito.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace-unito.cilea.it/dspace-oai/request yes 0 186222 +900 {"name": "brunel university research archive", "language": "en"} [{"acronym": "bura"}] http://bura.brunel.ac.uk/ institutional [] 2022-01-12 15:35:07 2006-11-16 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "brunel university london", "alternativeName": "", "country": "gb", "url": "http://www.brunel.ac.uk/", "identifier": [{"identifier": "https://ror.org/00dn4t376", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bura.brunel.ac.uk/oai/request?verb=listrecords&metadataprefix=oai_dc yes 13060 21190 +909 {"name": "de montfort university open research archive", "language": "en"} [{"acronym": "dora"}] https://dora.dmu.ac.uk institutional [] 2022-01-12 15:35:07 2007-01-26 12:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "de montfort university", "alternativeName": "dmu", "country": "gb", "url": "https://www.dmu.ac.uk/home.aspx", "identifier": [{"identifier": "https://ror.org/0312pnr83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dora.dmu.ac.uk/oai yes 15539 +911 {"name": "halmstad university scholarly archive", "language": "en"} [{"acronym": "husa"}] http://dspace.hh.se/dspace institutional [] 2022-01-12 15:35:07 2007-01-29 14:14:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "h\u00f6gskolan i halmstad", "alternativeName": "", "country": "se", "url": "http://www.hh.se/", "identifier": [{"identifier": "https://ror.org/03h0qfp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.hh.se/dspace-oai/request yes 313 +954 {"name": "intellectual property in digital form available online in an open environment", "language": "en"} [{"acronym": "indigo"}] https://indigo.uic.edu/ institutional [] 2022-01-12 15:35:08 2007-05-11 14:14:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "university of illinois at chicago", "alternativeName": "uic", "country": "us", "url": "http://www.uic.edu/uic/", "identifier": [{"identifier": "https://ror.org/02mpq6x41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 19667 +882 {"name": "university of hertfordshire research archive", "language": "en"} [{"acronym": "uhra"}] http://uhra.herts.ac.uk/ institutional [] 2022-01-12 15:35:07 2006-11-09 11:11:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of hertfordshire", "alternativeName": "uh", "country": "gb", "url": "http://www.herts.ac.uk", "identifier": [{"identifier": "https://ror.org/0267vjk41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://uhra.herts.ac.uk/oai/request yes 18255 +912 {"name": "repositorio institucional de la universidad carlos iii de madrid", "language": "es"} [{"acronym": "e-archivo"}] https://e-archivo.uc3m.es/ institutional [] 2022-01-12 15:35:07 2007-01-29 15:15:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad carlos iii de madrid", "alternativeName": "", "country": "es", "url": "https://www.uc3m.es/inicio", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://e-archivo.uc3m.es/dspace-oai/request yes 23760 +904 {"name": "munin - open research archive of uit, the arctic university of norway", "language": "en"} [] https://munin.uit.no institutional [] 2022-01-12 15:35:07 2006-12-18 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "uit the arctic university of norway", "alternativeName": "", "country": "no", "url": "https://uit.no/startsida", "identifier": [{"identifier": "https://ror.org/00wge5k78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.ub.uit.no/munin-oai/request yes 12716 +978 {"name": "open institutional archive of the university of rey juan carlos", "language": "en"} [{"name": "archivo abierto institucional de la universidad rey juan carlos", "language": "es"}] https://burjcdigital.urjc.es institutional [] 2022-01-12 15:35:08 2007-06-11 13:13:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad rey juan carlos", "alternativeName": "", "country": "es", "url": "http://www.urjc.es/", "identifier": [{"identifier": "https://ror.org/01v5cv687", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://burjcdigital.urjc.es/oai/request yes 0 7053 +875 {"name": "sunscholar research repository", "language": "en"} [] http://scholar.sun.ac.za/ institutional [] 2022-01-12 15:35:07 2006-11-06 12:12:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "stellenbosch university", "alternativeName": "", "country": "za", "url": "http://www.sun.ac.za", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2435 +901 {"name": "st andrews research repository", "language": "en"} [] http://research-repository.st-andrews.ac.uk/ institutional [] 2022-01-12 15:35:07 2006-11-27 12:12:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents"] [{"name": "university of st andrews", "alternativeName": "", "country": "gb", "url": "http://www.st-andrews.ac.uk/", "identifier": [{"identifier": "https://ror.org/02wn5qz54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://research-repository.st-andrews.ac.uk/dspace-oai/request yes 16612 21839 +917 {"name": "institutional repository of ural federal university named after the first president of russia b.n.yeltsin", "language": "en"} [] https://elar.urfu.ru institutional [] 2022-01-12 15:35:07 2007-02-09 11:11:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "learning_objects"] [{"name": "federal state autonomous educational institution of higher professional education ural federal university named after the first president of russia b.n.yeltsin", "alternativeName": "", "country": "ru", "url": "http://urfu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.urfu.ru/oai/request yes 46984 +946 {"name": "educational repository - university of patras", "language": "en"} [] http://repository.upatras.gr/dspace/ institutional [] 2022-01-12 15:35:08 2007-05-09 16:16:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "university of patras", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c0\u03b1\u03c4\u03c1\u03ce\u03bd", "country": "gr", "url": "http://www.upatras.gr/", "identifier": [{"identifier": "https://ror.org/017wvtq80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.upatras.gr/dspace-oai/request yes 0 40 +972 {"name": "universidad ricardo palma", "language": "en"} [] http://cybertesis.urp.edu.pe/ institutional [] 2022-01-12 15:35:08 2007-06-08 15:15:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad ricardo palma", "alternativeName": "", "country": "pe", "url": "http://www.urp.edu.pe/", "identifier": [{"identifier": "https://ror.org/02mb17771", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cybertesis.urp.edu.pe/oai/request yes 1095 1227 +976 {"name": "dspace @ tor vergata", "language": "en"} [] http://dspace.uniroma2.it/dspace/index.jsp institutional [] 2022-01-12 15:35:08 2007-06-11 12:12:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e0 degli studi di roma "tor vergata"", "alternativeName": "", "country": "it", "url": "http://web.uniroma2.it/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.uniroma2.it/dspace-oai/request yes 1343 +961 {"name": "hku scholars hub", "language": "en"} [] http://hub.hku.hk/ institutional [] 2022-01-12 15:35:08 2007-06-07 11:11:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of hong kong (\u9999\u6e2f\u5927\u5b78)", "alternativeName": "hku", "country": "cn", "url": "http://www.hku.hk/", "identifier": [{"identifier": "https://ror.org/02zhqgq86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hub.hku.hk/oai/request yes 195817 +916 {"name": "kyoto university research information repository", "language": "en"} [{"name": "\u4eac\u90fd\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.kulib.kyoto-u.ac.jp/dspace/?locale=en institutional [] 2022-01-12 15:35:07 2007-01-30 16:16:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "kyoto university", "alternativeName": "", "country": "jp", "url": "http://www.kyoto-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kulib.kyoto-u.ac.jp/dspace-oai/request yes 143533 218454 +967 {"name": "uwc theses and dissertations", "language": "en"} [] http://etd.uwc.ac.za/xmlui/ institutional [] 2022-01-12 15:35:08 2007-06-07 14:14:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of the western cape", "alternativeName": "", "country": "za", "url": "http://www.uwc.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://etd.uwc.ac.za/oai/request yes 3868 6534 +934 {"name": "waterford institute of technology repository", "language": "en"} [{"acronym": "wit repository"}] https://repository.wit.ie institutional [] 2022-02-02 16:31:26 2007-05-03 16:16:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "waterford institute of technology", "alternativeName": "wit", "country": "ie", "url": "https://www.wit.ie", "identifier": [{"identifier": "https://ror.org/03ypxwh20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://repository.wit.ie/cgi/oai2 yes 0 1265 +959 {"name": "opendepot.org", "language": "en"} [] http://www.opendepot.org/ aggregating [] 2022-01-12 15:35:08 2007-06-06 11:11:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "edina", "alternativeName": "", "country": "gb", "url": "http://edina.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.opendepot.org/cgi/oai2 yes 0 2126 +867 {"name": "swinburne research bank", "language": "en"} [] https://researchbank.swinburne.edu.au/ institutional [] 2022-01-12 15:35:06 2006-10-23 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "swinburne university of technology", "alternativeName": "", "country": "au", "url": "http://www.swinburne.edu.au/", "identifier": [{"identifier": "https://ror.org/031rekg67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "equella", "version": ""} https://researchbank.swinburne.edu.au/p/oai yes 0 44865 +924 {"name": "liberty university digital commons", "language": "en"} [] http://digitalcommons.liberty.edu/ institutional [] 2022-01-12 15:35:07 2007-03-02 10:10:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "liberty university", "alternativeName": "", "country": "us", "url": "http://www.liberty.edu/", "identifier": [{"identifier": "https://ror.org/00w4qrc49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.liberty.edu/do/oai/ yes 10389 12358 +871 {"name": "osaka university knowledge archive", "language": "en"} [{"acronym": "ouka"}, {"name": "\u5927\u962a\u5927\u5b66\u5b66\u8853\u60c5\u5831\u5eab\u3000\u685c\u83ef", "language": "ja"}] https://ir.library.osaka-u.ac.jp/repo/ouka/all/?lang=1 institutional [] 2022-01-12 15:35:06 2006-11-04 10:10:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "osaka university", "alternativeName": "", "country": "jp", "url": "http://www.osaka-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/035t8zc32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.library.osaka-u.ac.jp/repo/mmd_api/oai-pmh/ yes 58230 76101 +874 {"name": "electronic theses and dissertations - university of arizona", "language": "en"} [] http://etd.library.arizona.edu/etd/ institutional [] 2022-01-12 15:35:06 2006-11-06 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of arizona", "alternativeName": "ua", "country": "us", "url": "http://www.arizona.edu/", "identifier": [{"identifier": "https://ror.org/03m2x1q45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +951 {"name": "hr\u010dak - portal of scientific journals of croatia", "language": "en"} [{"acronym": "hr\u010dak"}] http://hrcak.srce.hr/ aggregating [] 2022-01-12 15:35:08 2007-05-10 16:16:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://hrcak.srce.hr/oai/index.php yes 191235 +982 {"name": "elpub digital repository", "language": "en"} [] http://elpub.scix.net/cgi-bin/works/home institutional [] 2022-01-12 15:35:08 2007-06-19 13:13:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "elpub", "alternativeName": "", "country": "si", "url": "http://www.elpub.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://elpub.scix.net/cgi-bin/works/oai yes 0 774 +947 {"name": "osaka kyoiku university repository", "language": "en"} [{"name": "\u5927\u962a\u6559\u80b2\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.lib.osaka-kyoiku.ac.jp/?page_id=217 institutional [] 2022-01-12 15:35:08 2007-05-09 16:16:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "osaka kyoiku university", "alternativeName": "", "country": "jp", "url": "http://osaka-kyoiku.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac-ir.lib.osaka-kyoiku.ac.jp/oai/oai-pmh.do yes 0 24733 +919 {"name": "acquire", "language": "en"} [] http://acquire.cqu.edu.au:8080/vital/access/manager/index institutional [] 2022-01-12 15:35:07 2007-02-28 16:16:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "central queensland university", "alternativeName": "", "country": "au", "url": "http://www.cqu.edu.au/", "identifier": [{"identifier": "https://ror.org/023q4bk22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} http://acquire.cqu.edu.au:8080/fedora/oai yes 0 38872 +921 {"name": "nara university of education academic repository", "language": "en"} [{"acronym": "near"}, {"name": "\u5948\u826f\u6559\u80b2\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nara-edu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:07 2007-02-28 16:16:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nara university of education", "alternativeName": "", "country": "jp", "url": "http://www.nara-edu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nara-edu.repo.nii.ac.jp/oai yes 0 5167 +950 {"name": "hirosaki university repository for academic resources", "language": "en"} [{"name": "\u5f18\u524d\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hirosaki.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:08 2007-05-10 15:15:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "hirosaki university", "alternativeName": "", "country": "jp", "url": "http://www.hirosaki-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/02syg0q74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hirosaki.repo.nii.ac.jp/oai yes 4 5241 +914 {"name": "utokyo repository", "language": "en"} [{"name": "\u6771\u4eac\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repository.dl.itc.u-tokyo.ac.jp/?lang=english institutional [] 2022-01-12 15:35:07 2007-01-30 15:15:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "the university of tokyo", "alternativeName": "", "country": "jp", "url": "http://www.u-tokyo.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repository.dl.itc.u-tokyo.ac.jp/oai yes 47690 +941 {"name": "drexel libraries e-repository and archives", "language": "en"} [{"acronym": "idea"}] http://idea.library.drexel.edu/ institutional [] 2022-01-12 15:35:08 2007-05-08 16:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "drexel university", "alternativeName": "", "country": "us", "url": "http://www.drexel.edu/", "identifier": [{"identifier": "https://ror.org/04bdffz58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://idea.library.drexel.edu/oai/request yes 14101 +891 {"name": "howest dspace", "language": "en"} [] http://dspace.howest.be/index.jsp institutional [] 2022-01-12 15:35:07 2006-11-10 13:13:38 ["science", "technology", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "hogeschool west-vlaanderen", "alternativeName": "", "country": "be", "url": "http://www.howest.be/", "identifier": [{"identifier": "https://ror.org/00fy5v859", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1065 +969 {"name": "uc research repository", "language": "en"} [] http://ir.canterbury.ac.nz/ institutional [] 2022-01-12 15:35:08 2007-06-07 15:15:12 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of canterbury", "alternativeName": "", "country": "nz", "url": "http://www.canterbury.ac.nz/", "identifier": [{"identifier": "https://ror.org/03y7q9t39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.canterbury.ac.nz/dspace-oai/request yes 9787 19519 +893 {"name": "lincoln university - australasian digital theses program", "language": "en"} [] http://theses.lincoln.ac.nz/ institutional [] 2022-01-12 15:35:07 2006-11-10 13:13:54 ["science"] ["theses_and_dissertations"] [{"name": "lincoln university", "alternativeName": "", "country": "nz", "url": "http://www.lincoln.ac.nz/", "identifier": [{"identifier": "https://ror.org/04ps1r162", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 4 +862 {"name": "vizier catalogue service", "language": "en"} [] http://vizier.u-strasbg.fr/ aggregating [] 2022-01-12 15:35:06 2006-10-17 21:21:47 ["science"] ["datasets"] [{"name": "centre de donn\u00e9es astronomiques de strasbourg", "alternativeName": "cds", "country": "fr", "url": "http://cdsweb.u-strasbg.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://cdsweb.u-strasbg.fr/reg-bin/vizier/oai.pl yes 0 30587 +913 {"name": "naturalis publications", "language": "en"} [] http://www.repository.naturalis.nl/ institutional [] 2022-01-12 15:35:07 2007-01-29 15:15:13 ["science"] ["journal_articles"] [{"name": "naturalis, national museum of natural history", "alternativeName": "", "country": "nl", "url": "http://www.naturalis.nl/", "identifier": [{"identifier": "https://ror.org/0566bfb96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dare.uva.nl/cgi/arno/oai/naturalis yes 799 +872 {"name": "tokyo gakugei university repository", "language": "en"} [{"acronym": "etopia"}, {"name": "\u6771\u4eac\u5b66\u82b8\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ir.u-gakugei.ac.jp/?lang=en institutional [] 2022-01-12 15:35:06 2006-11-04 12:12:14 ["social sciences", "arts", "humanities", "science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "tokyo gakugei university", "alternativeName": "", "country": "jp", "url": "http://www.u-gakugei.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.u-gakugei.ac.jp/dspace-oai/request yes 0 12379 +861 {"name": "wsu libraries digital collections", "language": "en"} [] http://content.wsulibs.wsu.edu/cdm/ institutional [] 2022-01-12 15:35:06 2006-10-17 21:21:29 ["social sciences", "arts", "humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "washington state university", "alternativeName": "wsu", "country": "us", "url": "http://www.wsu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 150640 +906 {"name": "kaleidoscope open archive", "language": "en"} [{"acronym": "telearn"}] http://telearn.archives-ouvertes.fr/ disciplinary [] 2022-01-12 15:35:07 2007-01-05 15:15:31 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "kaleidoscope", "alternativeName": "", "country": "gb", "url": "http://www.noe-kaleidoscope.org/pub/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/telearn yes 0 1144 +887 {"name": "estaci\u00f3n de econom\u00eda pol\u00edtica", "language": "en"} [] http://www.seres.fcs.ucr.ac.cr/ disciplinary [] 2022-01-12 15:35:07 2006-11-09 16:16:52 ["social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universidad de costa rica", "alternativeName": "ucr", "country": "cr", "url": "http://www.ucr.ac.cr/", "identifier": [{"identifier": "https://ror.org/02yzgww51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 12 +971 {"name": "latin american open archives portal", "language": "en"} [] http://lanic.utexas.edu/project/laoap/ disciplinary [] 2022-01-12 15:35:08 2007-06-08 15:15:02 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of texas at austin", "alternativeName": "", "country": "us", "url": "http://www.utexas.edu/", "identifier": [{"identifier": "https://ror.org/00hj54h04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2824 +903 {"name": "esrc research catalogue", "language": "en"} [] http://researchcatalogue.esrc.ac.uk/ institutional [] 2022-01-12 15:35:07 2006-12-18 10:10:30 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "economic and social research council", "alternativeName": "esrc", "country": "gb", "url": "http://www.esrc.ac.uk/", "identifier": [{"identifier": "https://ror.org/03n0ht308", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 191392 +877 {"name": "inforum conference proceedings", "language": "en"} [] https://sbornik.inforum.cz disciplinary [] 2022-01-12 15:35:07 2006-11-08 09:09:16 ["social sciences"] ["conference_and_workshop_papers"] [{"name": "albertina icome praha s.r.o.", "alternativeName": "", "country": "cz", "url": "http://www.aip.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1184 +981 {"name": "ucl adastral park repository", "language": "en"} [] http://eprints.adastral.ucl.ac.uk/ institutional [] 2022-01-12 15:35:08 2007-06-18 16:16:53 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university college london", "alternativeName": "ucl", "country": "gb", "url": "http://www.ucl.ac.uk/", "identifier": [{"identifier": "https://ror.org/02jx3x895", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.adastral.ucl.ac.uk/cgi/oai2 yes 36 +878 {"name": "indice y biblioteca electr\u00f3nica de revistas venezolanas de ciencia y tecnolog\u00eda", "language": "en"} [{"acronym": "revencyt"}] http://www.revencyt.ula.ve/ disciplinary [] 2022-01-12 15:35:07 2006-11-08 15:15:57 ["technology", "health and medicine", "science"] ["journal_articles"] [{"name": "universidad de los andes, venezuela", "alternativeName": "ula", "country": "ve", "url": "http://www.ula.ve/", "identifier": [{"identifier": "https://ror.org/02h1b1x27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://www.revencyt.ula.ve/oai/scielo-oai.php/ yes 0 4342 +870 {"name": "nagasaki university\u2019s academic output site", "language": "en"} [{"acronym": "naosite"}, {"name": "\u9577\u5d0e\u5927\u5b66\u5b66\u8853\u7814\u7a76\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://naosite.lb.nagasaki-u.ac.jp/dspace/?locale=en institutional [] 2022-01-12 15:35:06 2006-11-04 10:10:28 ["technology", "health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagasaki university", "alternativeName": "", "country": "jp", "url": "http://sun.ac.jp/", "identifier": [{"identifier": "https://ror.org/03ppx1p25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://naosite.lb.nagasaki-u.ac.jp/dspace-oai/request yes 2 33233 +869 {"name": "oslo university colleges project.iu.hio.no", "language": "en"} [{"acronym": "project.iu.hio.no"}] http://eternity.iu.hio.no/theses/ institutional [] 2022-01-12 15:35:06 2006-11-04 10:10:08 ["technology", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "h\u00f8gskolen i oslo og akershus (oslo and akershus university college)", "alternativeName": "ouc", "country": "no", "url": "http://www.hio.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 34 +949 {"name": "iss library", "language": "en"} [] http://eprints.isofts.kiev.ua/ institutional [] 2022-01-12 15:35:08 2007-05-10 15:15:44 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "institute of software systems", "alternativeName": "iss", "country": "ua", "url": "http://www.isofts.kiev.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.isofts.kiev.ua/cgi/oai2 yes 628 +885 {"name": "zurich open repository and archive", "language": "en"} [{"acronym": "zora"}] http://www.zora.uzh.ch/ institutional [] 2022-01-12 15:35:07 2006-11-09 16:16:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e4t z\u00fcrich", "alternativeName": "", "country": "ch", "url": "http://www.uzh.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.hbz.uzh.ch/de/open-access-und-open-science/zora/zora-policy.html", "type": "metadata"}, {"policy_url": "http://www.hbz.uzh.ch/de/open-access-und-open-science/zora/zora-policy.html", "type": "data"}, {"policy_url": "http://www.hbz.uzh.ch/de/open-access-und-open-science/zora/zora-policy.html", "type": "content"}, {"policy_url": "http://www.hbz.uzh.ch/de/open-access-und-open-science/zora/zora-policy.html", "type": "submission"}, {"policy_url": "http://www.hbz.uzh.ch/de/open-access-und-open-science/zora/zora-policy.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://www.zora.uzh.ch/cgi/oai2 yes 59003 156857 +984 {"name": "nature precedings", "language": "en"} [] http://precedings.nature.com/ disciplinary [] 2022-01-12 15:35:08 2007-06-20 14:14:17 ["health and medicine", "science"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "nature publishing group", "alternativeName": "", "country": "gb", "url": "http://www.nature.com/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://precedings.nature.com/about", "type": "data"}, {"policy_url": "http://precedings.nature.com/about", "type": "content"}, {"policy_url": "http://precedings.nature.com/about", "type": "submission"}, {"policy_url": "http://precedings.nature.com/site/help", "type": "preservation"}] {"name": "", "version": ""} http://precedings.nature.com/oai2 yes 5058 +980 {"name": "armida@unimi", "language": "it"} [] http://armida.unimi.it institutional [] 2022-01-12 15:35:08 2007-06-18 16:16:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "university of milan", "alternativeName": "unimi", "country": "it", "url": "http://www.unimi.it", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://armida.unimi.it/dspace-oai/request yes 61 1793 +965 {"name": "yokohama national university repository", "language": "en"} [{"acronym": "ynu repository"}, {"name": "\u6a2a\u6d5c\u56fd\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ynu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:08 2007-06-07 13:13:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "yokohama national university", "alternativeName": "", "country": "jp", "url": "http://www.ynu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ynu.repo.nii.ac.jp/oai yes 0 7836 +964 {"name": "kagoshima university repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.kagoshima-u.ac.jp/?lang=en institutional [] 2022-01-12 15:35:08 2007-06-07 13:13:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "kagoshima university", "alternativeName": "", "country": "jp", "url": "http://www.kagoshima-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ir.kagoshima-u.ac.jp/oai yes 10674 13006 +966 {"name": "institutional repository of the university of alcala", "language": "en"} [{"name": "biblioteca digital de la universidad de alcal\u00e1", "language": "es"}, {"acronym": "e_buah"}] https://ebuah.uah.es/dspace institutional [] 2022-01-12 15:35:08 2007-06-07 14:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of alcala", "alternativeName": "", "country": "es", "url": "https://www.uah.es", "identifier": [{"identifier": "https://ror.org/04pmn0e78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ebuah.uah.es/oai yes 6262 11455 +938 {"name": "research commons@waikato", "language": "en"} [] http://researchcommons.waikato.ac.nz/ institutional [] 2022-01-12 15:35:08 2007-05-08 16:16:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of waikato", "alternativeName": "", "country": "nz", "url": "http://www.waikato.ac.nz/", "identifier": [{"identifier": "https://ror.org/013fsnh78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://researchcommons.waikato.ac.nz/dspace-oai/request yes 7311 13031 +956 {"name": "open research exeter", "language": "en"} [{"acronym": "o r e"}] https://ore.exeter.ac.uk/repository/ institutional [] 2022-01-12 15:35:08 2007-05-18 16:16:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of exeter", "alternativeName": "", "country": "gb", "url": "http://www.exeter.ac.uk/", "identifier": [{"identifier": "https://ror.org/03yghzc09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.exeter.ac.uk/research/openresearch/policies/ore/", "type": "metadata"}, {"policy_url": "https://www.exeter.ac.uk/research/openresearch/policies/ore/", "type": "data"}, {"policy_url": "https://www.exeter.ac.uk/research/openresearch/policies/ore/", "type": "content"}, {"policy_url": "https://www.exeter.ac.uk/research/openresearch/policies/ore/", "type": "submission"}, {"policy_url": "https://www.exeter.ac.uk/research/openresearch/policies/ore/", "type": "preservation"}] {"name": "dspace", "version": ""} https://ore.exeter.ac.uk/oai/request yes 9081 19973 +957 {"name": "african higher education research online", "language": "en"} [{"acronym": "ahero"}] http://ahero.uwc.ac.za/ disciplinary [] 2022-01-12 15:35:08 2007-05-21 09:09:50 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of the western cape", "alternativeName": "", "country": "za", "url": "http://www.uwc.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "metadata"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "metadata"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "data"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "data"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "content"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "content"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "submission"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "submission"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "preservation"}, {"policy_url": "http://ahero.uwc.ac.za/index.php?module=cshepostlogin&action=policy", "type": "preservation"}] {"name": "", "version": ""} http://ahero.uwc.ac.za/lib/oai/oai2.php yes 941 +973 {"name": "mie university scholarly e-collections", "language": "en"} [{"acronym": "miuse"}, {"name": "\u4e09\u91cd\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u7814\u7a76\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://mie-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:08 2007-06-11 11:11:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "mie university", "alternativeName": "", "country": "jp", "url": "http://www.mie-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mie-u.repo.nii.ac.jp/oai yes 0 11928 +963 {"name": "diposit digital de la universitat de barcelona", "language": "en"} [] http://diposit.ub.edu/dspace/ institutional [] 2022-01-12 15:35:08 2007-06-07 13:13:25 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universitat de barcelona", "alternativeName": "ub", "country": "es", "url": "http://www.ub.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://diposit.ub.edu/dspace-oai/request yes 26612 62325 +974 {"name": "jaist repository", "language": "en"} [{"name": "jaist\u5b66\u8853\u7814\u7a76\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dspace.jaist.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:08 2007-06-11 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "japan advanced institute of science and technology", "alternativeName": "", "country": "jp", "url": "http://www.jaist.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.jaist.ac.jp/dspace-oai/request yes 18 13874 +896 {"name": "open access institutional repository at robert gordon university", "language": "en"} [{"acronym": "openair@ rgu"}] https://openair.rgu.ac.uk institutional [] 2022-01-12 15:35:07 2006-11-15 12:12:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "robert gordon university", "alternativeName": "rgu", "country": "gb", "url": "https://www.rgu.ac.uk", "identifier": [{"identifier": "https://ror.org/04f0qj703", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://rgu-repository.worktribe.com/policies", "type": "metadata"}, {"policy_url": "https://rgu-repository.worktribe.com/policies", "type": "data"}, {"policy_url": "https://rgu-repository.worktribe.com/policies", "type": "content"}, {"policy_url": "https://library.rgu.ac.uk/ld.php?content_id=32323078", "type": "content"}, {"policy_url": "https://rgu-repository.worktribe.com/policies", "type": "submission"}, {"policy_url": "https://library.rgu.ac.uk/ld.php?content_id=32323078", "type": "preservation"}] {"name": "other", "version": ""} https://rgu-repository.worktribe.com/oaiprovider yes 4001 4511 +983 {"name": "unipieprints", "language": "en"} [{"acronym": "unipieprints"}] http://eprints.adm.unipi.it/ institutional [] 2022-01-12 15:35:08 2007-06-19 14:14:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 di pisa", "alternativeName": "", "country": "it", "url": "http://www.unipi.it/", "identifier": [{"identifier": "https://ror.org/03ad39j10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.adm.unipi.it/policies.html", "type": "data"}, {"policy_url": "http://eprints.adm.unipi.it/policies.html", "type": "content"}, {"policy_url": "http://eprints.adm.unipi.it/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.adm.unipi.it/cgi/oai2 yes 553 1467 +889 {"name": "athabasca university library institutional repository", "language": "en"} [{"acronym": "auspace"}] http://auspace.athabascau.ca/ institutional [] 2022-01-12 15:35:07 2006-11-10 11:11:30 ["social sciences", "arts", "science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "athabasca university", "alternativeName": "au", "country": "ca", "url": "http://www.athabascau.ca/", "identifier": [{"identifier": "https://ror.org/01y3xgc52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://klaatu-dev.pc.athabascau.ca:8080/dspace/about.jsp?policy", "type": "metadata"}, {"policy_url": "http://klaatu-dev.pc.athabascau.ca:8080/dspace/about.jsp?policy", "type": "content"}, {"policy_url": "http://klaatu-dev.pc.athabascau.ca:8080/dspace/about.jsp?policy", "type": "submission"}, {"policy_url": "http://klaatu-dev.pc.athabascau.ca:8080/dspace/about.jsp?policy", "type": "preservation"}] {"name": "dspace", "version": ""} http://auspace.athabascau.ca/oai/request yes 774 2115 +926 {"name": "landsp\u00edtali university hospital research archive", "language": "en"} [{"acronym": "hirsla"}] http://www.hirsla.lsh.is/ institutional [] 2022-01-12 15:35:07 2007-03-02 16:16:51 ["health and medicine"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "landsp\u00edtali university hospital", "alternativeName": "", "country": "is", "url": "http://www.landspitali.is/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://landspitali.openrepository.com/lsh/bitstream/2336/5055/1/lsh_e-repository_policy_statements.pdf", "type": "metadata"}, {"policy_url": "http://landspitali.openrepository.com/lsh/bitstream/2336/5055/1/lsh_e-repository_policy_statements.pdf", "type": "data"}, {"policy_url": "http://landspitali.openrepository.com/lsh/bitstream/2336/5055/1/lsh_e-repository_policy_statements.pdf", "type": "content"}, {"policy_url": "http://landspitali.openrepository.com/lsh/bitstream/2336/5055/1/lsh_e-repository_policy_statements.pdf", "type": "submission"}, {"policy_url": "http://landspitali.openrepository.com/lsh/bitstream/2336/5055/1/lsh_e-repository_policy_statements.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://www.hirsla.lsh.is/lsh-oai/request yes 2069 7636 +944 {"name": "yorkspace", "language": "en"} [] http://yorkspace.library.yorku.ca/xmlui/ institutional [] 2022-01-12 15:35:08 2007-05-09 15:15:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "york university", "alternativeName": "", "country": "ca", "url": "http://www.yorku.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://pi.library.yorku.ca/dspace/content", "type": "data"}, {"policy_url": "http://pi.library.yorku.ca/dspace/content", "type": "content"}, {"policy_url": "http://pi.library.yorku.ca/dspace/content", "type": "submission"}, {"policy_url": "http://pi.library.yorku.ca/dspace/withdrawal", "type": "preservation"}] {"name": "dspace", "version": ""} http://yorkspace.library.yorku.ca/oai/request yes 5711 35243 +886 {"name": "roehampton university research explorer", "language": "en"} [] https://pure.roehampton.ac.uk/portal/en institutional [] 2022-01-12 15:35:07 2006-11-09 16:16:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "roehampton university", "alternativeName": "", "country": "gb", "url": "http://roehampton.ac.uk/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://roehampton.openrepository.com/roehampton/pages/policy.html", "type": "content"}] {"name": "pure", "version": ""} https://pure.roehampton.ac.uk/ws/oai yes 1603 11323 +907 {"name": "sas-space", "language": "en"} [] http://sas-space.sas.ac.uk/ institutional [] 2022-01-12 15:35:07 2007-01-05 16:16:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "school of advanced study, university of london", "alternativeName": "sas", "country": "gb", "url": "http://www.sas.ac.uk/", "identifier": [{"identifier": "https://ror.org/039594g80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://sas-space.sas.ac.uk/wiki/pmwiki.php/main/policy", "type": "data"}, {"policy_url": "http://sas-space.sas.ac.uk/wiki/pmwiki.php/main/policy", "type": "content"}, {"policy_url": "http://sas-space.sas.ac.uk/wiki/pmwiki.php/main/depositingyourwork", "type": "submission"}, {"policy_url": "http://sas-space.sas.ac.uk/wiki/pmwiki.php/main/depositingyourwork", "type": "preservation"}] {"name": "eprints", "version": ""} http://sas-space.sas.ac.uk/cgi/oai2 yes 5753 8411 +942 {"name": "sheffield hallam university research archive", "language": "en"} [{"acronym": "shura"}] http://shura.shu.ac.uk/ institutional [] 2022-01-12 15:35:08 2007-05-09 14:14:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sheffield hallam university", "alternativeName": "shu", "country": "gb", "url": "http://www.shu.ac.uk/", "identifier": [{"identifier": "https://ror.org/019wt1929", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://shura.shu.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://shura.shu.ac.uk/information.html", "type": "data"}, {"policy_url": "http://shura.shu.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://shura.shu.ac.uk/information.html", "type": "content"}, {"policy_url": "http://shura.shu.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://shura.shu.ac.uk/information.html", "type": "submission"}, {"policy_url": "http://shura.shu.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://shura.shu.ac.uk/information.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://shura.shu.ac.uk/cgi/oai2 yes 9324 20112 +880 {"name": "crossasia-repository", "language": "en"} [] http://crossasia-repository.ub.uni-heidelberg.de/ disciplinary [] 2022-01-12 15:35:07 2006-11-09 11:11:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ruprecht-karls-universit\u00e4t, heidelberg", "alternativeName": "", "country": "de", "url": "http://www.uni-heidelberg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://crossasia-repository.ub.uni-heidelberg.de/information.html", "type": "content"}] {"name": "eprints", "version": ""} http://crossasia-repository.ub.uni-heidelberg.de/cgi/oai2 yes 2759 4346 +936 {"name": "westminsterresearch", "language": "en"} [] https://westminsterresearch.westminster.ac.uk/ institutional [] 2022-01-12 15:35:08 2007-05-04 15:15:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of westminster", "alternativeName": "", "country": "gb", "url": "https://www.westminster.ac.uk", "identifier": [{"identifier": "https://ror.org/04ycpbx82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://westminsterresearch.westminster.ac.uk/policies", "type": "metadata"}, {"policy_url": "https://westminsterresearch.westminster.ac.uk/policies", "type": "data"}, {"policy_url": "https://westminsterresearch.westminster.ac.uk/policies", "type": "content"}, {"policy_url": "https://westminsterresearch.westminster.ac.uk/policies", "type": "submission"}, {"policy_url": "https://westminsterresearch.westminster.ac.uk/policies", "type": "preservation"}] {"name": "other", "version": ""} https://westminsterresearch.westminster.ac.uk/oai2 yes 5364 23474 +935 {"name": "institutional repository of the university of alicante", "language": "en"} [{"acronym": "rua"}, {"name": "repositorio institucional de la universidad de alicante", "language": "es"}, {"acronym": "rua"}] http://rua.ua.es institutional [] 2022-01-12 15:35:08 2007-05-03 16:16:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "university of alicante", "alternativeName": "", "country": "es", "url": "http://www.ua.es/", "identifier": [{"identifier": "https://ror.org/05t8bcz72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ua.es/rua/faq.html", "type": "data"}, {"policy_url": "http://www.ua.es/rua/faq.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rua.ua.es/oai/request yes 30832 62873 +927 {"name": "griffith research online", "language": "en"} [{"acronym": "gro"}] https://research-repository.griffith.edu.au institutional [] 2022-01-12 15:35:07 2007-03-23 09:09:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "griffith university", "alternativeName": "", "country": "au", "url": "http://www.griffith.edu.au/", "identifier": [{"identifier": "https://ror.org/02sc3r913", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.griffith.edu.au/library/research-publishing/repository", "type": "submission"}] {"name": "dspace", "version": ""} https://research-repository.griffith.edu.au/oai/request yes 19330 79254 +920 {"name": "chesterrep", "language": "en"} [] http://chesterrep.openrepository.com/cdr/ institutional [] 2022-01-12 15:35:07 2007-02-28 16:16:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of chester", "alternativeName": "", "country": "gb", "url": "http://www.chester.ac.uk/", "identifier": [{"identifier": "https://ror.org/01drpwb22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://chesterrep.openrepository.com/cdr/about-this-service.jsp#4", "type": "submission"}] {"name": "open_repository", "version": ""} http://chesterrep.openrepository.com/cdr-oai/request yes 2535 7249 +928 {"name": "topscholar", "language": "en"} [] http://digitalcommons.wku.edu/ institutional [] 2022-01-12 15:35:08 2007-04-19 14:14:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "western kentucky university", "alternativeName": "", "country": "us", "url": "http://www.wku.edu/", "identifier": [{"identifier": "https://ror.org/0446vnd56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.wku.edu/faq.html#f6", "type": "content"}, {"policy_url": "http://digitalcommons.wku.edu/faq.html", "type": "content"}, {"policy_url": "http://digitalcommons.wku.edu/submission.html", "type": "submission"}, {"policy_url": "http://digitalcommons.wku.edu/faq.html", "type": "submission"}, {"policy_url": "hhttp://digitalcommons.wku.edu/faq.html", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.wku.edu/do/oai/ yes 19824 43320 +1095 {"name": "dhanken", "language": "en"} [] http://openax.shh.fi:8180/dspace institutional [] 2022-01-12 15:35:10 2007-12-05 14:14:42 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "swedish school of economics and business administration", "alternativeName": "", "country": "fi", "url": "http://www.hanken.fi/", "identifier": [{"identifier": "https://ror.org/026086s92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openax.shh.fi:8180/dspace-oai/request yes 176 +1004 {"name": "kosmopolis", "language": "en"} [] http://kosmopolis.lis.upatras.gr/ disciplinary [] 2022-01-12 15:35:09 2007-07-30 10:10:45 ["arts", "humanities"] ["journal_articles"] [{"name": "university of patras", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c0\u03b1\u03c4\u03c1\u03ce\u03bd", "country": "gr", "url": "http://www.upatras.gr/", "identifier": [{"identifier": "https://ror.org/017wvtq80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 0 51185 +993 {"name": "chspr publications", "language": "en"} [] http://www.chspr.ubc.ca/pubs/pub-search institutional [] 2022-01-12 15:35:08 2007-07-20 10:10:09 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of british columbia", "alternativeName": "", "country": "ca", "url": "http://www.ubc.ca/", "identifier": [{"identifier": "https://ror.org/03rmrcq20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 381 +1075 {"name": "manao project", "language": "en"} [] http://manao.manoa.hawaii.edu/ disciplinary [] 2022-01-12 15:35:10 2007-11-09 10:10:02 ["humanities", "arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of hawaii at manoa", "alternativeName": "", "country": "us", "url": "http://www.uhm.hawaii.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://manao.manoa.hawaii.edu/cgi/oai2 yes 112 +1071 {"name": "nhh brage", "language": "no"} [] https://openaccess.nhh.no institutional [] 2022-01-12 15:35:10 2007-11-06 14:14:01 ["humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "norwegian school of economics", "alternativeName": "", "country": "no", "url": "http://www.nhh.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.nhh.no/nhh-oai/request yes 5893 +992 {"name": "alaskas digital archives", "language": "en"} [] http://vilda.alaska.edu/index.php aggregating [] 2022-01-12 15:35:08 2007-07-20 09:09:58 ["humanities"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of alaska fairbanks", "alternativeName": "", "country": "us", "url": "http://www.uaf.edu/", "identifier": [{"identifier": "https://ror.org/01j7nq853", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://vilda.alaska.edu/cdm4/faq_op.php", "type": "content"}] {"name": "contentdm", "version": ""} yes 85406 +988 {"name": "open archief van vioe-publicaties", "language": "en"} [{"acronym": "oar"}] https://oar.onroerenderfgoed.be/ institutional [] 2022-01-12 15:35:08 2007-07-03 15:15:04 ["humanities"] ["journal_articles"] [{"name": "vlaams instituut voor het onroerend erfgoed", "alternativeName": "vioe", "country": "be", "url": "http://www.vioe.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://oar.onroerenderfgoed.be/oai2.php yes 4404 4951 +1050 {"name": "comprehensive database of archaeological site reports in japan", "language": "en"} [{"name": "\u5168\u56fd\u907a\u8de1\u5831\u544a\u7dcf\u89a7", "language": "ja"}] http://sitereports.nabunken.go.jp/en institutional [] 2022-01-12 15:35:10 2007-10-09 14:14:13 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "nara national research institute for cultural properties", "alternativeName": "", "country": "jp", "url": "http://www.nabunken.go.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://sitereports.nabunken.go.jp/api/oai/request yes 45 +1049 {"name": "kansai university repository", "language": "en"} [{"name": "\u95a2\u897f\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kansai-u.repo.nii.ac.jp institutional [] 2022-01-12 15:35:09 2007-10-09 13:13:47 ["humanities"] ["other_special_item_types"] [{"name": "kansai university", "alternativeName": "", "country": "jp", "url": "http://www.kansai-u.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kansai-u.repo.nii.ac.jp/oai yes 17098 18947 +1001 {"name": "statistics online computational resources", "language": "en"} [{"acronym": "socr"}] http://www.socr.ucla.edu/ disciplinary [] 2022-01-12 15:35:09 2007-07-26 14:14:17 ["mathematics", "technology"] ["datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "university of california, los angeles", "alternativeName": "", "country": "us", "url": "http://www.ucla.edu/", "identifier": [{"identifier": "https://ror.org/046rm7j60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +1061 {"name": "research repository ucd", "language": "en"} [] http://researchrepository.ucd.ie/ institutional [] 2022-01-12 15:35:10 2007-10-10 11:11:02 ["science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university college dublin", "alternativeName": "ucd", "country": "ie", "url": "http://www.ucd.ie/", "identifier": [{"identifier": "https://ror.org/05m7pjf47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://researchrepository.ucd.ie/oai/request yes 8122 +1068 {"name": "naist academic repository", "language": "en"} [{"acronym": "naistar"}, {"name": "\u5948\u826f\u5148\u7aef\u79d1\u5b66\u6280\u8853\u5927\u5b66\u9662\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://library.naist.jp/dspace/ institutional [] 2022-01-12 15:35:10 2007-10-16 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "nara institute of science and technology", "alternativeName": "naist", "country": "jp", "url": "http://www.naist.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://library.naist.jp/dspace-oai/request yes 9874 +1015 {"name": "ssrn", "language": "en"} [{"acronym": "ssrn"}] https://papers.ssrn.com institutional [] 2022-01-12 15:35:09 2007-09-20 16:16:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "pandit deendayal petroleum university", "alternativeName": "pdpu", "country": "in", "url": "http://www.pdpu.ac.in", "identifier": [{"identifier": "https://ror.org/02nsv5p42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 182 +1011 {"name": "carlyle letters online: a victorian cultural reference", "language": "en"} [] http://carlyleletters.dukejournals.org/ disciplinary [] 2022-01-12 15:35:09 2007-09-18 14:14:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "other_special_item_types"] [{"name": "duke university press", "alternativeName": "", "country": "us", "url": "http://www.dukeupress.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 10000 +1037 {"name": "tohoku university repository\uff08tour\uff09", "language": "en"} [{"acronym": "tour"}, {"name": "\u6771\u5317\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000tour", "language": "ja"}] https://tohoku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "tohoku university", "alternativeName": "", "country": "jp", "url": "http://www.tohoku.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tohoku.repo.nii.ac.jp/oai yes 53684 +1097 {"name": "shocker open access repository", "language": "en"} [{"acronym": "soar"}] http://soar.wichita.edu/ institutional [] 2022-01-12 15:35:10 2007-12-19 15:15:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "wichita state university", "alternativeName": "", "country": "us", "url": "http://www.wichita.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://library.wichita.edu/techserv/soar/metadata_policy.htm", "type": "metadata"}, {"policy_url": "http://library.wichita.edu/techserv/soar/content_guidelines.htm", "type": "content"}, {"policy_url": "http://library.wichita.edu/techserv/soar/individual_submitter_policy.htm", "type": "submission"}, {"policy_url": "http://library.wichita.edu/techserv/soar/withdrawal_policy.htm", "type": "preservation"}] {"name": "dspace", "version": ""} https://soar.wichita.edu/oai/request yes 9885 +1053 {"name": "saitama university cyber repository of academic resources", "language": "en"} [{"acronym": "sucra"}, {"name": "\u57fc\u7389\u5927\u5b66\u5b66\u8853\u60c5\u5831\u767a\u4fe1\u30b7\u30b9\u30c6\u30e0\uff08sucra\uff09", "language": "ja"}] https://sucra.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-10-09 15:15:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "saitama university", "alternativeName": "", "country": "jp", "url": "http://www.saitama-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://sucra.saitama-u.ac.jp/modules/tinyd0/index.php?id=3", "type": "data"}, {"policy_url": "http://sucra.saitama-u.ac.jp/modules/tinyd0/index.php?id=3", "type": "submission"}] {"name": "weko", "version": ""} http://sucra.repo.nii.ac.jp/oai yes 8549 +1099 {"name": "university of british columbias digital repository", "language": "en"} [{"acronym": "circle"}] https://circle.ubc.ca institutional [] 2022-01-12 15:35:10 2007-12-21 09:09:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "the university of british columbia", "alternativeName": "", "country": "ca", "url": "https://www.ubc.ca", "identifier": [{"identifier": "https://ror.org/03rmrcq20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://circle.ubc.ca/about/policies", "type": "metadata"}, {"policy_url": "https://circle.ubc.ca/about/policies", "type": "data"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy5", "type": "data"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy2", "type": "content"}, {"policy_url": "https://circle.ubc.ca/circle-content-guidelines", "type": "content"}, {"policy_url": "https://wiki.ubc.ca/images/e/e3/circle_metadata_manual_2019_02_08.pdf", "type": "content"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy3", "type": "submission"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy2", "type": "submission"}, {"policy_url": "https://circle.ubc.ca/circle-content-guidelines", "type": "submission"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy5", "type": "submission"}, {"policy_url": "https://circle.ubc.ca/about/policies/#policy8", "type": "preservation"}] {"name": "dspace", "version": ""} https://circle.library.ubc.ca/oai/request yes 74042 +1025 {"name": "digitaalne arhiiv", "language": "en"} [{"acronym": "digar"}] http://www.digar.ee/arhiiv/en governmental [] 2022-01-12 15:35:09 2007-09-25 15:15:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "estonian national library", "alternativeName": "", "country": "ee", "url": "http://www.nlib.ee/", "identifier": [{"identifier": "https://ror.org/041d53j42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 32153 +1091 {"name": "redalyc", "language": "en"} [] http://www.redalyc.org/home.oa aggregating [] 2022-01-12 15:35:10 2007-11-26 14:14:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad aut\u00f3noma del estado de m\u00e9xico", "alternativeName": "", "country": "mx", "url": "http://www.uaemex.mx/", "identifier": [{"identifier": "https://ror.org/0079gpv38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.redalyc.org/redalyc/oai yes 0 250400 +1102 {"name": "afganistan digital library", "language": "en"} [] http://afghanistandl.nyu.edu/ disciplinary [] 2022-01-12 15:35:10 2008-01-03 10:10:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://afghanistandl.nyu.edu/about.html", "type": "content"}] {"name": "", "version": ""} yes 576 +1086 {"name": "dspace at iit bombay", "language": "en"} [{"acronym": "dspace@iitb"}] http://dspace.library.iitb.ac.in/jspui/ institutional [] 2022-01-12 15:35:10 2007-11-22 09:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "indian institue of technology, bombay", "alternativeName": "iitb", "country": "in", "url": "http://www.iitb.ac.in/", "identifier": [{"identifier": "https://ror.org/02qyf5152", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.library.iitb.ac.in/oai/request yes 20783 +1059 {"name": "hiroshima associated repository portal", "language": "en"} [{"acronym": "harp"}] http://harp.lib.hiroshima-u.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-10-10 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "hiroshima association of university libraries", "alternativeName": "", "country": "jp", "url": "http://harp.lib.hiroshima-u.ac.jp/haul/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://harp.lib.hiroshima-u.ac.jp/hijiyama-u/oai/request yes 750 1909 +1074 {"name": "makerere university institutional repository", "language": "en"} [{"acronym": "mak ir"}] http://makir.mak.ac.ug/ institutional [] 2022-01-12 15:35:10 2007-11-08 14:14:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "makerere university", "alternativeName": "", "country": "ug", "url": "http://www.mak.ac.ug/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 564 +989 {"name": "researcharchive at victoria university of wellington", "language": "en"} [{"acronym": "researcharchive@victoria"}] http://researcharchive.vuw.ac.nz/ institutional [] 2022-01-12 15:35:08 2007-07-04 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "victoria university of wellington", "alternativeName": "", "country": "nz", "url": "http://www.victoria.ac.nz/", "identifier": [{"identifier": "https://ror.org/0040r6f76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://researcharchive.vuw.ac.nz/oai/request yes 6809 +1079 {"name": "electronic kyiv-mohyla academy institutional repository", "language": "en"} [{"acronym": "ekmair"}] http://www.library.ukma.kiev.ua/dspace/ institutional [] 2022-01-12 15:35:10 2007-11-14 16:16:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national university of kyiv-mohyla academy", "alternativeName": "", "country": "ua", "url": "http://www.ukma.kiev.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.library.ukma.kiev.ua/dspace-oai/request yes 91 +1031 {"name": "skemman", "language": "en"} [] http://skemman.is/ institutional [] 2022-01-12 15:35:09 2007-09-28 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national and university library of iceland", "alternativeName": "", "country": "is", "url": "http://www.landsbokasafn.is/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 27681 +1083 {"name": "dspace@tu", "language": "en"} [] http://dspace.thapar.edu:8080/dspace/ institutional [] 2022-01-12 15:35:10 2007-11-22 08:08:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "thapar university", "alternativeName": "tu", "country": "in", "url": "http://www.thapar.edu/", "identifier": [{"identifier": "https://ror.org/00wdq3744", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3645 +1047 {"name": "nemertes", "language": "en"} [{"name": "\u03bd\u03b7\u03bc\u03b5\u03c1\u03c4\u03ae\u03c2", "language": "el"}] https://nemertes.library.upatras.gr institutional [] 2022-01-12 15:35:09 2007-10-09 12:12:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of patras", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c0\u03b1\u03c4\u03c1\u03ce\u03bd", "country": "gr", "url": "http://www.upatras.gr/", "identifier": [{"identifier": "https://ror.org/017wvtq80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nemertes.library.upatras.gr/oai/request yes 0 8160 +1018 {"name": "dspace at tartu university library", "language": "en"} [] http://dspace.ut.ee/ institutional [] 2022-01-12 15:35:09 2007-09-24 14:14:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "tartu university", "alternativeName": "", "country": "ee", "url": "http://www.ut.ee/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.ut.ee/oai/request?verb=identify yes 27746 62714 +1084 {"name": "dspace at vidyanidhi", "language": "en"} [] http://dspace.vidyanidhi.org.in:8080/dspace/ institutional [] 2022-01-12 15:35:10 2007-11-22 09:09:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of mysore", "alternativeName": "\u0cae\u0cc8\u0cb8\u0cc2\u0cb0\u0cc1 \u0cb5\u0cbf\u0cb6\u0ccd\u0cb5\u0cb5\u0cbf\u0ca6\u0ccd\u0caf\u0cbe\u0ca8\u0cbf\u0cb2\u0caf", "country": "in", "url": "http://www.uni-mysore.ac.in/", "identifier": [{"identifier": "https://ror.org/012bxv356", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.vidyanidhi.org.in:8080/dspace-oai/request yes 0 5482 +1085 {"name": "eprints@iit delhi", "language": "en"} [] http://eprint.iitd.ac.in institutional [] 2022-01-12 15:35:10 2007-11-22 09:09:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "indian institute of technology, delhi", "alternativeName": "iitd", "country": "in", "url": "http://www.iitd.ernet.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eprint.iitd.ac.in/dspace-oai/request yes 6776 +1028 {"name": "ukrainian catholic university repository", "language": "en"} [] http://www.dspace.ucu.edu.ua/dspace/ institutional [] 2022-01-12 15:35:09 2007-09-26 11:11:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "ukrainian catholic university", "alternativeName": "ucu", "country": "ua", "url": "http://www.ucu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5 +1009 {"name": "university of fukui repository", "language": "en"} [] http://repo.flib.u-fukui.ac.jp/dspace/ institutional [] 2022-01-12 15:35:09 2007-09-04 09:09:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of fukui", "alternativeName": "\u798f\u4e95\u5927\u5b66", "country": "jp", "url": "http://www.u-fukui.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.flib.u-fukui.ac.jp/dspace-oai/request yes 4731 8203 +1082 {"name": "egyankosh", "language": "en"} [] http://www.egyankosh.ac.in/ institutional [] 2022-01-12 15:35:10 2007-11-19 15:15:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "indira gandhi national open university", "alternativeName": "ignou", "country": "in", "url": "http://www.ignou.ac.in/", "identifier": [{"identifier": "https://ror.org/02fzfx471", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 31971 +1006 {"name": "csir research space", "language": "en"} [] http://researchspace.csir.co.za/dspace/ institutional [] 2022-01-12 15:35:09 2007-08-01 15:15:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "council for scientific and industrial research", "alternativeName": "csir", "country": "za", "url": "http://www.csir.co.za/", "identifier": [{"identifier": "https://ror.org/05j00sr48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9175 +1024 {"name": "digitale kennisdatabank arteveldehogeschool", "language": "en"} [] http://archive.arteveldehs.be/ institutional [] 2022-01-12 15:35:09 2007-09-25 14:14:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "arteveldehogeschool", "alternativeName": "", "country": "be", "url": "http://www.arteveldehs.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2 +1026 {"name": "krasnoyarsk state university repository (\u043a\u0440\u0430\u0441\u0433\u0443)", "language": "en"} [] https://elib.krasu.ru/ institutional [] 2022-01-12 15:35:09 2007-09-25 16:16:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "krasnoyarsk state university", "alternativeName": "\u043a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "country": "ru", "url": "http://www.lan.krasu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 420 +1100 {"name": "upcommons - revistes i congressos upc", "language": "en"} [] https://upcommons.upc.edu/revistes/ institutional [] 2022-01-12 15:35:10 2007-12-21 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "universitat polit\u00e8nica de catalunya", "alternativeName": "upc", "country": "es", "url": "http://www.upc.edu/", "identifier": [{"identifier": "https://ror.org/03mb6wj31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eprints.upc.es:8080/revistes-oai/request yes 104515 +1021 {"name": "glamorgan dspace", "language": "en"} [] http://dspace1.isd.glam.ac.uk/dspace/ institutional [] 2022-01-12 15:35:09 2007-09-25 13:13:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of glamorgan", "alternativeName": "", "country": "gb", "url": "http://www.glam.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace1.isd.glam.ac.uk/dspace-oai/request yes 99 483 +987 {"name": "universiti teknologi malaysia institutional repository", "language": "en"} [{"acronym": "utm institutional repository"}] http://eprints.utm.my/ institutional [] 2022-01-12 15:35:08 2007-06-26 16:16:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universiti teknologi malaysia", "alternativeName": "utm", "country": "my", "url": "http://www.utm.my/", "identifier": [{"identifier": "https://ror.org/026w31v75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.utm.my/cgi/oai2 yes 37906 +1042 {"name": "eprints@oudir", "language": "en"} [] http://eprints.lib.okayama-u.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "okayama university", "alternativeName": "\u5ca1\u5c71\u5927\u5b66", "country": "jp", "url": "http://www.okayama-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.lib.okayama-u.ac.jp/cgi/oai2 yes 14443 +1098 {"name": "corvinus university of budapest phd dissertations", "language": "en"} [{"name": "bce doktori disszert\u00e1ci\u00f3k", "language": "hu"}] http://phd.lib.uni-corvinus.hu institutional [] 2022-01-12 15:35:10 2007-12-20 14:14:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "corvinus university of budapest", "alternativeName": "", "country": "hu", "url": "http://www.uni-corvinus.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://phd.lib.uni-corvinus.hu/cgi/oai2 yes 951 1086 +1033 {"name": "archivo digital upm", "language": "en"} [] http://oa.upm.es/ institutional [] 2022-01-12 15:35:09 2007-10-08 12:12:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "universidad politecnica de madrid", "alternativeName": "", "country": "es", "url": "http://www.upm.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://oa.upm.es/cgi/oai2 yes 24672 48235 +1063 {"name": "jisc repository", "language": "en"} [] http://repository.jisc.ac.uk/ institutional [] 2022-01-12 15:35:10 2007-10-10 15:15:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "joint information systems committee", "alternativeName": "jisc", "country": "gb", "url": "http://www.jisc.ac.uk/", "identifier": [{"identifier": "https://ror.org/01rv9gx86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.jisc.ac.uk/cgi/oai2 yes 0 3849 +1041 {"name": "shimane university web archives of knowledge", "language": "en"} [{"acronym": "swan"}, {"name": "\u5cf6\u6839\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.lib.shimane-u.ac.jp/en institutional [] 2022-01-12 15:35:09 2007-10-09 11:11:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "shimane university", "alternativeName": "", "country": "jp", "url": "http://www.shimane-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ir.lib.shimane-u.ac.jp/api/oai/request yes 9022 +1081 {"name": "repositorio de la uned", "language": "en"} [] http://e-spacio.uned.es/fez/ institutional [] 2022-01-12 15:35:10 2007-11-19 11:11:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "universidad nacional de educaci\u00f3n a distancia", "alternativeName": "uned", "country": "es", "url": "http://portal.uned.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://62.204.194.45:8080/oaiprovider/ yes 0 17723 +995 {"name": "biecoll - bielefeld electronic collections", "language": "en"} [] http://biecoll.ub.uni-bielefeld.de/ institutional [] 2022-01-12 15:35:09 2007-07-20 16:16:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "universit\u00e4t bielefeld", "alternativeName": "", "country": "de", "url": "http://www.uni-bielefeld.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://biecoll.ub.uni-bielefeld.de/oai2/oai2.php yes 786 +1054 {"name": "gifu university institutional repository", "language": "en"} [{"name": "\u5c90\u961c\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.lib.gifu-u.ac.jp/?lang=en institutional [] 2022-01-12 15:35:10 2007-10-09 16:16:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "national university corporation gifu university", "alternativeName": "", "country": "jp", "url": "http://www.gifu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.lib.gifu-u.ac.jp/dspace-oai/request yes 0 10973 +1057 {"name": "university of the ryukyus repository", "language": "en"} [{"name": "\u7409\u7403\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.lib.u-ryukyu.ac.jp/ir/repo_top_en.htm institutional [] 2022-01-12 15:35:10 2007-10-10 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of the ryukyus", "alternativeName": "", "country": "jp", "url": "http://www.u-ryukyu.ac.jp/", "identifier": [{"identifier": "https://ror.org/02z1n9q24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.lib.u-ryukyu.ac.jp/dspace-oai/request yes 3 11481 +1023 {"name": "university of miyazaki academic repository", "language": "en"} [{"name": "\u5bae\u5d0e\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.lib.miyazaki-u.ac.jp/dspace/ institutional [] 2022-01-12 15:35:09 2007-09-25 14:14:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of miyazaki", "alternativeName": "", "country": "jp", "url": "http://www.miyazaki-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/0447kww10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac2.lib.miyazaki-u.ac.jp/oai/oai-pmh.do yes 0 4164 +1055 {"name": "nara women\u2019s university digital information repository", "language": "en"} [{"name": "\u5948\u826f\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opac.lib.nara-wu.ac.jp/?lang=english institutional [] 2022-01-12 15:35:10 2007-10-09 16:16:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "nara womens university", "alternativeName": "", "country": "jp", "url": "http://www.nara-wu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac2.lib.nara-wu.ac.jp/oai/oai-pmh.do yes 3687 +1090 {"name": "rose repository ibaraki", "language": "en"} [{"acronym": "rose"}, {"name": "rose \u30ea\u30dd\u30b8\u30c8\u30ea\u3044\u3070\u3089\u304d", "language": "ja"}] https://rose-ibadai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-11-26 13:13:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "ibaraki university", "alternativeName": "", "country": "jp", "url": "http://www.ibaraki.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://rose-ibadai.repo.nii.ac.jp/oai yes 9067 +986 {"name": "shinshu university institutional repository", "language": "en"} [{"acronym": "soar-ir"}, {"name": "\u4fe1\u5dde\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://soar-ir.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:08 2007-06-26 16:16:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "shinshu university", "alternativeName": "", "country": "jp", "url": "http://www.shinshu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://soar-ir.repo.nii.ac.jp/oai yes 17258 20798 +1039 {"name": "teapot ochanomizu university institutional repository", "language": "en"} [{"acronym": "teapot"}, {"name": "\u304a\u8336\u306e\u6c34\u5973\u5b50\u5927\u5b66\u6559\u80b2\u30fb\u7814\u7a76\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 \u201cteapot\u201d", "language": "ja"}] https://teapot.lib.ocha.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ochanomizu university", "alternativeName": "", "country": "jp", "url": "http://www.ocha.ac.jp/", "identifier": [{"identifier": "https://ror.org/03599d813", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://teapot.lib.ocha.ac.jp/oai yes 18 37519 +1048 {"name": "kochi university of technology academic resource repository", "language": "en"} [{"name": "\u9ad8\u77e5\u5de5\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kutarr.kochi-tech.ac.jp institutional [] 2022-01-12 15:35:09 2007-10-09 13:13:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kochi university of technology", "alternativeName": "", "country": "jp", "url": "http://www.kochi-tech.ac.jp/kut_j/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kutarr.kochi-tech.ac.jp/oai yes 1153 1680 +1051 {"name": "muroran institute of technology academic resources archive", "language": "en"} [{"name": "\u5ba4\u862d\u5de5\u696d\u5927\u5b66\u5b66\u8853\u8cc7\u6e90\u30a2\u30fc\u30ab\u30a4\u30d6", "language": "ja"}] https://muroran-it.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-10-09 14:14:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "muroran institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.muroran-it.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://muroran-it.repo.nii.ac.jp/oai yes 3540 +1034 {"name": "oak: obihiro university archives of knowledge", "language": "en"} [{"name": "\u5e2f\u5e83\u755c\u7523\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://obihiro.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 09:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "obihiro university of agriculture and veterinary medicine", "alternativeName": "", "country": "jp", "url": "http://www.obihiro.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://obihiro.repo.nii.ac.jp/oai yes 854 +1088 {"name": "otaru university of commerce academic collections", "language": "en"} [{"name": "\u5c0f\u6a3d\u5546\u79d1\u5927\u5b66\u5b66\u8853\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://barrel.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-11-26 13:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "otaru university of commerce", "alternativeName": "", "country": "jp", "url": "http://www.otaru-uc.ac.jp/", "identifier": [{"identifier": "https://ror.org/00pbv8y11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://barrel.repo.nii.ac.jp/oai yes 2690 5395 +1044 {"name": "hosei university repository", "language": "en"} [{"name": "\u6cd5\u653f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hosei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 11:11:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hosei university", "alternativeName": "", "country": "jp", "url": "http://www.hosei.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hosei.repo.nii.ac.jp/oai yes 12999 +1060 {"name": "harp", "language": "en"} [] http://harpir.cc.it-hiroshima.ac.jp/xoops/html/modules/xoonips/ institutional [] 2022-01-12 15:35:10 2007-10-10 10:10:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hiroshima association of university libraries", "alternativeName": "\u5e83\u5cf6\u770c\u5927\u5b66\u56f3\u66f8\u9928\u5354\u8b70\u4f1a", "country": "jp", "url": "http://harp.lib.hiroshima-u.ac.jp/haul/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} yes 29 +1000 {"name": "ma\u0142opolska biblioteka cyfrowa (digital library of malopolska)", "language": "en"} [{"acronym": "mbc"}] http://mbc.malopolska.pl/dlibra institutional [] 2022-01-12 15:35:09 2007-07-25 15:15:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "wrota ma\u0142opolska", "alternativeName": "wm", "country": "pl", "url": "http://www.wrotamalopolski.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://mbc.malopolska.pl/dlibra/oai-pmh-repository.xml yes 0 2241 +1043 {"name": "\u03c3star", "language": "en"} [] http://iroha.scitech.lib.keio.ac.jp:8080/sigma/ institutional [] 2022-01-12 15:35:09 2007-10-09 11:11:47 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "keio university", "alternativeName": "", "country": "jp", "url": "http://www.keio.ac.jp/", "identifier": [{"identifier": "https://ror.org/02kn6nx58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://iroha.scitech.lib.keio.ac.jp/oai/request yes 0 2961 +1010 {"name": "wildrepositorium", "language": "en"} [] http://wildrep.socpvs.org/ disciplinary [] 2022-01-12 15:35:09 2007-09-10 13:13:48 ["science"] ["journal_articles"] [{"name": "sociedade portuguesade vida selvagem", "alternativeName": "spvs", "country": "pt", "url": "http://www.socpvs.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://wildrep.socpvs.org/information.html", "type": "data"}] {"name": "eprints", "version": ""} http://wildrep.socpvs.org/cgi/oai2 yes 3 +1014 {"name": "national agricultural library digital repository", "language": "en"} [{"acronym": "naldr"}] https://naldc-legacy.nal.usda.gov/naldc/home.xhtml institutional [] 2022-01-12 15:35:09 2007-09-20 10:10:34 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "national agricultural library", "alternativeName": "", "country": "us", "url": "http://www.nal.usda.gov/", "identifier": [{"identifier": "https://ror.org/00z6b1508", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 82659 +990 {"name": "ibss repository", "language": "en"} [] http://repository.ibss.org.ua/dspace/ institutional [] 2022-01-12 15:35:08 2007-07-04 10:10:50 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute of biology of the southern seas", "alternativeName": "ibss", "country": "ua", "url": "http://ibss.org.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ibss.org.ua/dspace-oai/request yes 3912 +1077 {"name": "serpent image & video database", "language": "en"} [] http://archive.serpentproject.com/ disciplinary [] 2022-01-12 15:35:10 2007-11-09 14:14:28 ["science"] ["other_special_item_types"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archive.serpentproject.com/perl/oai2 yes 5039 +1094 {"name": "slu publication database", "language": "en"} [] http://pub.epsilon.slu.se/ institutional [] 2022-01-12 15:35:10 2007-12-05 09:09:23 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "swedish university of agricultural sciences", "alternativeName": "slu", "country": "se", "url": "https://www.slu.se", "identifier": [{"identifier": "https://ror.org/02yy8x990", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pub.epsilon.slu.se/cgi/oai2 yes 7833 +996 {"name": "european centre for minority issues", "language": "en"} [] http://www.ecmi.de/publications/ institutional [] 2022-01-12 15:35:09 2007-07-20 16:16:37 ["social sciences", "humanities"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "european centre for minority issues", "alternativeName": "ecmi", "country": "de", "url": "http://www.ecmi.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 130 +1093 {"name": "eurecom repository", "language": "en"} [] http://www.eurecom.fr/en/publication/ institutional [] 2022-01-12 15:35:10 2007-12-04 11:11:45 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "eurecom", "alternativeName": "", "country": "fr", "url": "http://www.eurecom.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.eurecom.fr/oai/oai2.php yes 16 5721 +1070 {"name": "cmi open research archive", "language": "en"} [] https://open.cmi.no institutional [] 2022-01-12 15:35:10 2007-11-06 13:13:43 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "chr. michelsen institute", "alternativeName": "cmi", "country": "no", "url": "http://www.cmi.no/", "identifier": [{"identifier": "https://ror.org/02w7rbf39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://open.cmi.no/cmi-oai/ yes 1472 +1016 {"name": "pepsic - electronic psychology journals", "language": "en"} [{"acronym": "portal de peri\u00f3dicos eletr\u00f4nicos de psicologia (pepsic)"}] http://portal.pepsic.bvsalud.org/php/index.php?lang=pt disciplinary [] 2022-01-12 15:35:09 2007-09-24 11:11:50 ["social sciences"] ["journal_articles"] [{"name": "instituto de psicologia - usp e conselho federal de psicologia", "alternativeName": "", "country": "br", "url": "http://www.bvs-psi.org.br/php/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} http://pepsic.bvsalud.org/oai/scielo-oai.php yes 0 5 +997 {"name": "ecs student portfolio", "language": "en"} [] http://eprints.ecs.soton.ac.uk/ institutional [] 2022-01-12 15:35:09 2007-07-23 15:15:24 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ecs.soton.ac.uk/cgi/oai2 yes 15835 +1080 {"name": "architektur-informatik", "language": "en"} [] http://architektur-informatik.scix.net/cgi-bin/works/home disciplinary [] 2022-01-12 15:35:10 2007-11-15 09:09:59 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "arbeitskreis architekturinformatik", "alternativeName": "ak ai", "country": "at", "url": "http://www.architektur-informatik.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://architektur-informatik.scix.net/cgi-bin/works/oai yes 113 +1035 {"name": "kitami institute of technology repository", "language": "en"} [{"name": "\u5317\u898b\u5de5\u696d\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000kit-r", "language": "ja"}] https://kitami-it.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 09:09:40 ["technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "kitami institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.kitami-it.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kitami-it.repo.nii.ac.jp/oai yes 1534 8681 +1066 {"name": "saga university institutional repository", "language": "en"} [{"name": "\u4f50\u8cc0\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://portal.dl.saga-u.ac.jp/ institutional [] 2022-01-12 15:35:10 2007-10-15 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "saga university", "alternativeName": "", "country": "jp", "url": "http://www.saga-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://portal.dl.saga-u.ac.jp/dspace-oai/request yes 3898 4376 +1056 {"name": "oita university institutional repository: our", "language": "en"} [{"name": "\u5927\u5206\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://opac.lib.oita-u.ac.jp/?page_id=211 institutional [] 2022-01-12 15:35:10 2007-10-09 17:17:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "oita university", "alternativeName": "", "country": "jp", "url": "http://www.oita-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac2.lib.oita-u.ac.jp/oai/oai-pmh.do yes 0 11003 +1040 {"name": "hitotsubashi university repository: research & education resources", "language": "en"} [{"acronym": "hermes-ir"}, {"name": "\u4e00\u6a4b\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}, {"acronym": "hermes-ir"}] http://hermes-ir.lib.hit-u.ac.jp/rs/ institutional [] 2022-01-12 15:35:09 2007-10-09 11:11:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "hitotsubashi university", "alternativeName": "", "country": "jp", "url": "http://www.hit-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04jqj7p05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hermes-ir.lib.hit-u.ac.jp/rs-oai/request yes 1 25572 +1008 {"name": "university of minnesota digital conservancy", "language": "en"} [] http://conservancy.umn.edu/ institutional [] 2022-01-12 15:35:09 2007-08-29 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of minnesota", "alternativeName": "u of m", "country": "us", "url": "http://www.umn.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://conservancy.umn.edu/bp-metadata.jsp", "type": "metadata"}, {"policy_url": "http://conservancy.umn.edu/pol-content.jsp", "type": "content"}, {"policy_url": "http://conservancy.umn.edu/pol-copyright.jsp", "type": "submission"}, {"policy_url": "http://conservancy.umn.edu/pol-preservation.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} http://conservancy.umn.edu/oai/request yes 13847 88001 +1062 {"name": "kit academic repository", "language": "en"} [{"name": "\uff4b\uff49\uff54\u5b66\u8853\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] http://repository.lib.kit.ac.jp/repo/repository/10212/ institutional [] 2022-01-12 15:35:10 2007-10-10 11:11:22 ["technology"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "kyoto institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.kit.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.lib.kit.ac.jp/repo/mmd_api/oai-pmh/ yes 0 701 +1092 {"name": "digital collections@um", "language": "en"} [] http://digital.lib.umd.edu/ institutional [] 2022-01-12 15:35:10 2007-11-30 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of maryland", "alternativeName": "", "country": "us", "url": "http://www.umd.edu/", "identifier": [{"identifier": "https://ror.org/047s2c258", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digital.lib.umd.edu/oaicat/oaihandler yes 2 37910 +1036 {"name": "iwate university repository", "language": "en"} [{"name": "\u5ca9\u624b\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iwate-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:09 2007-10-09 09:09:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "iwate university", "alternativeName": "", "country": "jp", "url": "http://www.iwate-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iwate-u.repo.nii.ac.jp/oai yes 2633 14789 +1058 {"name": "tokyo dental college institutional repository : irucaa@tdc", "language": "en"} [{"acronym": "irucaa@tdc"}, {"name": "\u6771\u4eac\u6b6f\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea : irucaa@tdc", "language": "ja"}] http://ir.tdc.ac.jp/?locale=en institutional [] 2022-01-12 15:35:10 2007-10-10 10:10:34 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "tokyo dental college", "alternativeName": "tdc", "country": "jp", "url": "http://www.tdc.ac.jp/", "identifier": [{"identifier": "https://ror.org/0220f5b41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.tdc.ac.jp/dspace-oai/request yes 6 4305 +1046 {"name": "doshisha university academic repository", "language": "en"} [{"name": "\u540c\u5fd7\u793e\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://doshisha.repo.nii.ac.jp institutional [] 2022-02-04 15:55:45 2007-10-09 12:12:19 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "doshisha university", "alternativeName": "", "country": "jp", "url": "http://www.doshisha.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://library.doshisha.ac.jp/en/guide/outline/regulations/regulations.html", "type": "data"}] {"name": "weko", "version": ""} https://doshisha.repo.nii.ac.jp/oai yes 0 19385 +1017 {"name": "cityu institutional repository", "language": "en"} [] http://dspace.cityu.edu.hk/ institutional [] 2022-01-12 15:35:09 2007-09-24 14:14:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "city university of hong kong", "alternativeName": "\u9999\u6e2f\u57ce\u5e02\u5927\u5b78", "country": "cn", "url": "http://www.cityu.edu.hk/", "identifier": [{"identifier": "https://ror.org/03q8dnn23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.cityu.edu.hk/oai/request yes 0 2788 +1052 {"name": "gunma university academic information repository", "language": "en"} [{"acronym": "gair"}] https://gair.media.gunma-u.ac.jp/dspace/ institutional [] 2022-01-12 15:35:10 2007-10-09 14:14:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "gunma university", "alternativeName": "", "country": "jp", "url": "http://www.gunma-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/046fm7598", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://gair.media.gunma-u.ac.jp/dspace-oai/request yes 4836 11054 +1007 {"name": "prometheus academic collections", "language": "en"} [{"name": "\u6771\u4eac\u5916\u56fd\u8a9e\u5927\u5b66\u5b66\u8853\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] http://repository.tufs.ac.jp/doc/index_e.html institutional [] 2022-01-12 15:35:09 2007-08-15 16:16:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tokyo university of foreign studies", "alternativeName": "", "country": "jp", "url": "http://www.tufs.ac.jp/", "identifier": [{"identifier": "https://ror.org/027tyzk91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.tufs.ac.jp/dspace-oai/request yes 2277 7477 +1022 {"name": "aquatic commons", "language": "en"} [] http://aquaticcommons.org/ disciplinary [] 2022-01-12 15:35:09 2007-09-25 13:13:40 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "international oceanographic data and information exchange", "alternativeName": "iode", "country": "be", "url": "http://www.iode.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://iamslic.dreamhosters.com/wp-content/uploads/2010/07/ac_basics1.pdf", "type": "metadata"}, {"policy_url": "http://iamslic.dreamhosters.com/wp-content/uploads/2010/07/ac_basics1.pdf", "type": "data"}, {"policy_url": "http://iamslic.dreamhosters.com/wp-content/uploads/2010/07/ac_basics1.pdf", "type": "content"}, {"policy_url": "http://iamslic.dreamhosters.com/wp-content/uploads/2010/07/ac_basics1.pdf", "type": "submission"}, {"policy_url": "http://iamslic.dreamhosters.com/wp-content/uploads/2010/07/ac_basics1.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} http://aquaticcommons.org/cgi/oai2 yes 19636 +999 {"name": "electronic publication information center", "language": "en"} [{"acronym": "epic"}] http://epic.awi.de/ institutional [] 2022-01-12 15:35:09 2007-07-24 14:14:17 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "alfred wegener institute for polar and marine research", "alternativeName": "awi", "country": "de", "url": "http://www.awi.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://epic.awi.de/main?static=yes&page=aboutepic", "type": "data"}] {"name": "eprints", "version": ""} http://epic.awi.de/cgi/oai2 yes 15968 47824 +1076 {"name": "bournemouth university research online", "language": "en"} [{"acronym": "buro"}] http://eprints.bournemouth.ac.uk/ institutional [] 2022-01-12 15:35:10 2007-11-09 10:10:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bournemouth university", "alternativeName": "", "country": "gb", "url": "https://www.bournemouth.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.bournemouth.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.bournemouth.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.bournemouth.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.bournemouth.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.bournemouth.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.bournemouth.ac.uk/cgi/oai2 yes 9537 24798 +1067 {"name": "yamaguchi university navigator for open access collection and archives", "language": "en"} [{"acronym": "yunoca"}, {"name": "\u5c71\u53e3\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30eayunoca", "language": "ja"}] http://petit.lib.yamaguchi-u.ac.jp/eng/ institutional [] 2022-01-12 15:35:10 2007-10-15 10:10:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "yamaguchi university", "alternativeName": "", "country": "jp", "url": "http://www.yamaguchi-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://petit.lib.yamaguchi-u.ac.jp/infolib/www/help/doc/policy.html", "type": "content"}, {"policy_url": "http://petit.lib.yamaguchi-u.ac.jp/infolib/www/help/doc/guidelines.html", "type": "submission"}] {"name": "earmas", "version": ""} http://petit.lib.yamaguchi-u.ac.jp/infolib/oai_repository/repository yes 959 25448 +994 {"name": "get savoirs partag\u00e9s", "language": "en"} [] http://savoirspartages.mines-telecom.fr/fr_accueil.html aggregating [] 2022-01-12 15:35:08 2007-07-20 10:10:22 ["social sciences", "technology"] ["learning_objects", "software"] [{"name": "institut mines-t\u00e9l\u00e9com", "alternativeName": "", "country": "fr", "url": "http://www.mines-telecom.fr/fr_accueil.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://savoirspartages.get-telecom.fr/p_en_accueil_droits_34.html", "type": "data"}] {"name": "other", "version": ""} http://savoirspartages.mines-telecom.fr/z_savoirs_partages_oai/oai2.php yes 0 97 +1101 {"name": "escholarship@mcgill", "language": "en"} [] https://escholarship.mcgill.ca institutional [] 2022-01-12 15:35:10 2008-01-03 10:10:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "mcgill university", "alternativeName": "", "country": "ca", "url": "http://www.mcgill.ca/", "identifier": [{"identifier": "https://ror.org/01pxwe438", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.mcgill.ca/library/find/escholarship#policy", "type": "content"}, {"policy_url": "https://www.mcgill.ca/library/find/escholarship#policy", "type": "submission"}, {"policy_url": "https://www.mcgill.ca/library/find/escholarship#policy", "type": "preservation"}] {"name": "samvera", "version": ""} https://escholarship.mcgill.ca/catalog/oai?verb=identify yes 377 50615 +1032 {"name": "spiral - imperial college digital repository", "language": "en"} [] https://spiral.imperial.ac.uk institutional [] 2022-01-12 15:35:09 2007-10-04 13:13:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "imperial college london", "alternativeName": "", "country": "gb", "url": "https://www.imperial.ac.uk/", "identifier": [{"identifier": "https://ror.org/041kmwe10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www3.imperial.ac.uk/library/subjectsandsupport/spiral", "type": "submission"}, {"policy_url": "http://www3.imperial.ac.uk/library/subjectsandsupport/spiral", "type": "preservation"}] {"name": "dspace", "version": ""} https://spiral.imperial.ac.uk/dspace-oai/request yes 1 77170 +1012 {"name": "university of huddersfield repository", "language": "en"} [] http://eprints.hud.ac.uk/ institutional [] 2022-01-12 15:35:09 2007-09-19 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of huddersfield", "alternativeName": "", "country": "gb", "url": "http://www.hud.ac.uk/", "identifier": [{"identifier": "https://ror.org/05t1h8f27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.hud.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.hud.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.hud.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.hud.ac.uk/submission_procedure.pdf", "type": "submission"}, {"policy_url": "http://eprints.hud.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.hud.ac.uk/cgi/oai2 yes 11534 29362 +1069 {"name": "university of birmingham research archive, e-theses repository", "language": "en"} [{"acronym": "e-theses repository"}] http://etheses.bham.ac.uk/ institutional [] 2022-01-12 15:35:10 2007-11-05 12:12:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of birmingham", "alternativeName": "ub", "country": "gb", "url": "http://www.birmingham.ac.uk/index.aspx", "identifier": [{"identifier": "https://ror.org/03angcq70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://etheses.bham.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://etheses.bham.ac.uk/information.html", "type": "data"}, {"policy_url": "http://etheses.bham.ac.uk/information.html", "type": "content"}, {"policy_url": "http://etheses.bham.ac.uk/information.html", "type": "submission"}, {"policy_url": "http://etheses.bham.ac.uk/information.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://etheses.bham.ac.uk/cgi/oai2 yes 6043 8096 +1002 {"name": "nerc open research archive", "language": "en"} [{"acronym": "nora"}] http://nora.nerc.ac.uk/ institutional [] 2022-01-12 15:35:09 2007-07-26 15:15:52 ["humanities", "science", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "natural environment research council", "alternativeName": "nerc", "country": "gb", "url": "http://www.nerc.ac.uk/", "identifier": [{"identifier": "https://ror.org/02b5d8509", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://nora.nerc.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://nora.nerc.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://nora.nerc.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://nora.nerc.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://nora.nerc.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://nora.nerc.ac.uk/cgi/oai2 yes 21366 47868 +991 {"name": "university of salford institutional repository", "language": "en"} [{"acronym": "usir"}] http://usir.salford.ac.uk/ institutional [] 2022-01-12 15:35:08 2007-07-20 09:09:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "university of salford", "alternativeName": "", "country": "gb", "url": "http://www.salford.ac.uk/", "identifier": [{"identifier": "https://ror.org/01tmqtf75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://usir.salford.ac.uk/usir%20policy%20document.pdf", "type": "metadata"}, {"policy_url": "http://usir.salford.ac.uk/usir%20policy%20document.pdf", "type": "data"}, {"policy_url": "http://usir.salford.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://usir.salford.ac.uk/usir%20policy%20document.pdf", "type": "submission"}, {"policy_url": "http://usir.salford.ac.uk/usir%20policy%20document.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} http://usir.salford.ac.uk/cgi/oai2 yes 9349 29091 +1064 {"name": "oxford university research archive", "language": "en"} [{"acronym": "ora"}] http://ora.ox.ac.uk institutional [] 2022-01-12 15:35:10 2007-10-10 16:16:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of oxford", "alternativeName": "", "country": "gb", "url": "http://www.ox.ac.uk/", "identifier": [{"identifier": "https://ror.org/052gg0110", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.bodleian.ox.ac.uk/ora-data/about-ora-data", "type": "metadata"}, {"policy_url": "https://libguides.bodleian.ox.ac.uk/ora-data/about-ora-data", "type": "data"}, {"policy_url": "https://ora.ox.ac.uk/terms_of_use", "type": "content"}, {"policy_url": "https://ora.ox.ac.uk/deposit_agreements", "type": "submission"}] {"name": "fedora", "version": ""} https://ora.ox.ac.uk/oai2 yes 20 239671 +1005 {"name": "medic@ biblioth\u00e8que num\u00e9rique", "language": "en"} [] http://www.biusante.parisdescartes.fr/histmed/medica.htm disciplinary [] 2022-01-12 15:35:09 2007-07-30 14:14:25 ["humanities", "health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e9 paris descartes", "alternativeName": "paris5", "country": "fr", "url": "http://www.univ-paris5.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.biusante.parisdescartes.fr/histmed/medica_pres4.htm", "type": "metadata"}, {"policy_url": "http://www.biusante.parisdescartes.fr/histmed/medica_pres4.htm", "type": "data"}] {"name": "other", "version": ""} http://web2.bium.univ-paris5.fr/oai/oai2.php yes 0 21404 +1106 {"name": "digital.csic", "language": "en"} [] http://digital.csic.es institutional [] 2022-01-12 15:35:10 2008-01-04 14:14:32 ["arts", "humanities", "science", "social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "consejo superior de investigaciones cient\u00edficas (spanish national research council)", "alternativeName": "csic", "country": "es", "url": "http://www.csic.es/web/guest/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digital.csic.es/politicas/", "type": "metadata"}, {"policy_url": "http://digital.csic.es/politicas/", "type": "data"}, {"policy_url": "http://digital.csic.es/politicas/", "type": "content"}, {"policy_url": "http://digital.csic.es/politicas/", "type": "submission"}, {"policy_url": "http://digital.csic.es/politicas/", "type": "preservation"}] {"name": "dspace", "version": ""} http://digital.csic.es/dspace-oai/request yes 158871 +1128 {"name": "illinois harvest", "language": "en"} [] http://illinoisharvest.grainger.uiuc.edu/index.asp disciplinary [] 2022-01-12 15:35:11 2008-01-24 11:11:30 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of illinois at urbana-champaign", "alternativeName": "", "country": "us", "url": "http://illinois.edu/", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 44404 +1129 {"name": "illinois digital archives", "language": "en"} [] http://www.idaillinois.org/ disciplinary [] 2022-01-12 15:35:11 2008-01-24 11:11:37 ["arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "illinois state library", "alternativeName": "", "country": "us", "url": "http://www.cyberdriveillinois.com/departments/library/", "identifier": [{"identifier": "https://ror.org/02qxvcs26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 113842 +1136 {"name": "art-dok", "language": "en"} [] http://archiv.ub.uni-heidelberg.de/artdok/ disciplinary [] 2022-01-12 15:35:11 2008-01-25 14:14:06 ["arts", "humanities"] ["learning_objects", "journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ruprecht-karls-universit\u00e4t, heidelberg", "alternativeName": "", "country": "de", "url": "http://www.uni-heidelberg.de/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archiv.ub.uni-heidelberg.de/artdok/cgi/oai2 yes 6725 7116 +1169 {"name": "nordisk humaniora-eprintarkiv - the nordic arts and humanities e-print archive", "language": "en"} [{"acronym": "hprints"}] https://hal-hprints.archives-ouvertes.fr/ disciplinary [] 2022-01-12 15:35:11 2008-02-26 09:09:40 ["arts", "humanities"] ["journal_articles"] [{"name": "nordic co-operation", "alternativeName": "", "country": "dk", "url": "https://www.norden.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/hprints yes 0 186 +1133 {"name": "mutopia", "language": "en"} [] http://www.mutopiaproject.org/ disciplinary [] 2022-01-12 15:35:11 2008-01-25 10:10:03 ["arts"] ["other_special_item_types"] [{"name": "mutopia", "alternativeName": "", "country": "ca", "url": "http://www.mutopiaproject.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.mutopiaproject.org/legal.html", "type": "content"}] {"name": "", "version": ""} yes 1926 +1206 {"name": "repozytorium eny politechnika wroc\u0142awska", "language": "en"} [{"acronym": "electrical engineering wroclaw universit"}] http://zet10.ipee.pwr.wroc.pl/ institutional [] 2022-01-12 15:35:12 2008-03-17 12:12:01 ["engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "politechnika wroc\u0142awska (wroclaw university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pwr.wroc.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://zet10.pwr.wroc.pl/", "type": "content"}] {"name": "invenio", "version": ""} http://zet10.ipee.pwr.wroc.pl/oai2d/ yes 430 +1174 {"name": "acta fracturae conference archive", "language": "en"} [] http://www.gruppofrattura.it/sito/en/proceedings/igf-conferences disciplinary [] 2022-01-12 15:35:11 2008-03-04 11:11:38 ["engineering"] ["conference_and_workshop_papers"] [{"name": "gruppo italiano frattura", "alternativeName": "igf", "country": "it", "url": "http://www.gruppofrattura.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1187 {"name": "caltechsolids", "language": "en"} [] http://caltechsolids.library.caltech.edu/ disciplinary [] 2022-01-12 15:35:12 2008-03-11 10:10:15 ["engineering"] ["journal_articles"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://caltechsolids.library.caltech.edu/perl/oai2 yes 11 +1175 {"name": "german medical science", "language": "en"} [] http://www.egms.de/ disciplinary [] 2022-01-12 15:35:11 2008-03-04 11:11:46 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "deutsche zentralbibliothek f\u00fcr medizin", "alternativeName": "zb med", "country": "de", "url": "http://www.zbmed.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://portal.dimdi.de/oai-gms/oaihandler yes 77496 +1127 {"name": "publiss", "language": "it"} [] https://publ.iss.it institutional [] 2022-01-12 15:35:11 2008-01-24 09:09:50 ["health and medicine"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "istituto superiore di sanit\u00e0", "alternativeName": "", "country": "it", "url": "https://www.iss.it", "identifier": [{"identifier": "https://ror.org/02hssy432", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 34255 +1165 {"name": "les m\u00e9moires en ligne de linstitut detudes politiques de lyon", "language": "en"} [] http://doc.sciencespo-lyon.fr/fonds/travaux.php institutional [] 2022-01-12 15:35:11 2008-02-19 10:10:21 ["humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "sciences po lyon", "alternativeName": "", "country": "fr", "url": "https://www.sciencespo-lyon.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1693 +1210 {"name": "aur student working papers series", "language": "en"} [] http://www.student-archive.aur.it/ institutional [] 2022-01-12 15:35:12 2008-03-20 10:10:52 ["humanities"] ["theses_and_dissertations"] [{"name": "american university of rome", "alternativeName": "aur", "country": "it", "url": "http://www.aur.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.student-archive.aur.it/", "type": "data"}] {"name": "eprints", "version": ""} http://www.student-archive.aur.it/cgi/oai2 yes 2 +1185 {"name": "doks@ katholieke hogeschool, limburg", "language": "en"} [] https://doks.khlim.be/do/folder/view?dispatch=info institutional [] 2022-01-12 15:35:12 2008-03-10 16:16:01 ["science", "social sciences", "health and medicine", "technology"] ["theses_and_dissertations"] [{"name": "katholieke hogeschool, limburg", "alternativeName": "khlim", "country": "be", "url": "http://www.khlim.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://doks.khlim.be/oai yes 0 1650 +1219 {"name": "open repositories 2008 publications", "language": "en"} [{"acronym": "or08 publications"}] http://pubs.or08.ecs.soton.ac.uk/ disciplinary [] 2022-01-12 15:35:12 2008-04-04 14:14:24 ["science", "social sciences", "technology"] ["conference_and_workshop_papers"] [{"name": "open repositories 2008", "alternativeName": "", "country": "gb", "url": "http://or08.ecs.soton.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pubs.or08.ecs.soton.ac.uk/cgi/oai2 yes 0 143 +1109 {"name": "university of florida institutional repository", "language": "en"} [] http://ufdc.ufl.edu/?c=ufir institutional [] 2022-01-12 15:35:10 2008-01-07 15:15:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of florida", "alternativeName": "", "country": "us", "url": "http://www.ufl.edu/", "identifier": [{"identifier": "https://ror.org/02y3ad647", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 97533 +1222 {"name": "jyv\u00e4skyl\u00e4 university digital archive (jyx)", "language": "en"} [{"acronym": "jyx"}] https://jyx.jyu.fi institutional [] 2022-01-12 15:35:12 2008-04-08 12:12:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "jyvaskyla university", "alternativeName": "", "country": "fi", "url": "http://www.jyu.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://jyx.jyu.fi/dspace-oai/request yes 47818 +1154 {"name": "macsphere", "language": "en"} [] https://macsphere.mcmaster.ca/ institutional [] 2022-01-12 15:35:11 2008-01-31 10:10:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "mcmaster university", "alternativeName": "", "country": "ca", "url": "http://www.mcmaster.ca/", "identifier": [{"identifier": "https://ror.org/02fa3aq29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16785 +1110 {"name": "lund university publications", "language": "en"} [] http://www.lunduniversity.lu.se/research-and-innovation/find-publications institutional [] 2022-01-12 15:35:10 2008-01-08 10:10:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "lunds universitet", "alternativeName": "", "country": "se", "url": "http://www.lu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://lup.lub.lu.se/oai yes 174465 +1230 {"name": "central michigan universitys digital collections", "language": "en"} [] https://www.cmich.edu/library/pages/digital-collections.aspx institutional [] 2022-01-12 15:35:12 2008-04-24 15:15:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central michigan university", "alternativeName": "cmu", "country": "us", "url": "https://www.cmich.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://condor.cmich.edu/cdm4/condor_faq.php?", "type": "content"}, {"policy_url": "http://repository.cmich.edu/cdm4/condor_faq.php", "type": "content"}, {"policy_url": "http://condor.cmich.edu/cdm4/condor_faq.php?", "type": "submission"}, {"policy_url": "http://repository.cmich.edu/cdm4/condor_faq.php", "type": "submission"}] {"name": "contentdm", "version": ""} yes 28398 +1140 {"name": "brandeis university digital collections", "language": "en"} [] http://bir.brandeis.edu/ institutional [] 2022-01-12 15:35:11 2008-01-29 16:16:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "brandeis university", "alternativeName": "", "country": "us", "url": "http://www.brandeis.edu/", "identifier": [{"identifier": "https://ror.org/05abbep66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dcoll.brandeis.edu/handle/10192/5194", "type": "submission"}] {"name": "dspace", "version": ""} yes 9831 +1209 {"name": "aur working papers series", "language": "en"} [] http://www.archive.aur.it/ institutional [] 2022-01-12 15:35:12 2008-03-20 10:10:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "american university of rome", "alternativeName": "aur", "country": "it", "url": "http://www.aur.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.archive.aur.it/", "type": "data"}] {"name": "eprints", "version": ""} http://www.archive.aur.it/cgi/oai2 yes 9 +1114 {"name": "open uleth scholarship", "language": "en"} [{"acronym": "opus"}] https://opus.uleth.ca/ institutional [] 2022-01-12 15:35:10 2008-01-10 10:10:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "university of lethbridge", "alternativeName": "", "country": "ca", "url": "http://www.uleth.ca/", "identifier": [{"identifier": "https://ror.org/044j76961", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.uleth.ca/about_opus", "type": "content"}, {"policy_url": "https://libguides.uleth.ca/about_opus", "type": "submission"}, {"policy_url": "https://libguides.uleth.ca/about_opus", "type": "preservation"}] {"name": "dspace", "version": ""} https://opus.uleth.ca/oai/request yes 3722 +1138 {"name": "scivee tv", "language": "en"} [] http://www.scivee.tv/ disciplinary [] 2022-01-12 15:35:11 2008-01-28 13:13:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "scivee tv", "alternativeName": "", "country": "us", "url": "http://www.scivee.tv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1139 {"name": "biblioteca virtual miguel de cervantes", "language": "en"} [] http://www.cervantesvirtual.com/ disciplinary [] 2022-01-12 15:35:11 2008-01-28 14:14:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "fundaci\u00f3n biblioteca virtual miguel de cervantes", "alternativeName": "", "country": "es", "url": "http://www.cervantesvirtual.com/noticias/fundacion/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 42135 +1159 {"name": "\u00e9rudit", "language": "fr"} [] https://www.erudit.org aggregating [] 2022-01-12 15:35:11 2008-02-01 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "\u00e9rudit", "alternativeName": "", "country": "ca", "url": "http://www.erudit.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.erudit.org/oai yes 42761 203900 +1195 {"name": "dspace at vsb technical university of ostrava", "language": "en"} [{"acronym": "dspace na v\u0161b-tuo"}] http://dspace.vsb.cz/ institutional [] 2022-01-12 15:35:12 2008-03-12 14:14:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "vysok\u00e1 \u0161kola b\u00e1\u0148sk\u00e1-technick\u00e1 univerzita ostrava (v\u0161b technical university of ostrava)", "alternativeName": "v\u0161b-tuo", "country": "cz", "url": "http://www.vsb.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.vsb.cz/oai/request yes 25810 95834 +1227 {"name": "repositorio de material educativo", "language": "en"} [{"acronym": "dspace_utpl"}] http://repositorio.utpl.edu.ec/ institutional [] 2022-01-12 15:35:12 2008-04-17 11:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universidad t\u00e9cnica particular de loja", "alternativeName": "utpl", "country": "ec", "url": "http://www.utpl.edu.ec/", "identifier": [{"identifier": "https://ror.org/04dvbth24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utpl.edu.ec/dspace-oai/request yes 0 3051 +1189 {"name": "national library of finland dspace services", "language": "en"} [{"acronym": "doria"}] http://www.doria.fi/ governmental [] 2022-01-12 15:35:12 2008-03-11 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "national library of finland", "alternativeName": "", "country": "fi", "url": "http://www.nationallibrary.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.doria.fi/oai/request yes 30690 118307 +1190 {"name": "e-thesis - electronic publications at the university of helsinki", "language": "en"} [{"acronym": "e-thesis - helsingin yliopiston verkkojulkaisut"}] http://ethesis.helsinki.fi/ aggregating [] 2022-01-12 15:35:12 2008-03-11 11:11:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of helsinki", "alternativeName": "helsingin yliopisto / helsingfors universitet", "country": "fi", "url": "http://www.helsinki.fi/university/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 35730 +1149 {"name": "g\u00f6teborgs universitets publikationer - e-publicering och e-arkiv", "language": "en"} [{"acronym": "gupea"}] https://gupea.ub.gu.se/ institutional [] 2022-01-12 15:35:11 2008-01-31 09:09:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "g\u00f6teborgs universitet", "alternativeName": "gu", "country": "se", "url": "http://www.gu.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://gupea.ub.gu.se/dspace-oai/request yes 29282 59128 +1112 {"name": "idrc digital library", "language": "en"} [{"acronym": "idl-bnc"}] http://idl-bnc-idrc.dspacedirect.org institutional [] 2022-01-12 15:35:10 2008-01-09 11:11:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "idrc", "alternativeName": "international development research centre", "country": "ca", "url": "https://www.idrc.ca", "identifier": [{"identifier": "https://ror.org/029agyb27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://idl-bnc-idrc.dspacedirect.org/oai/request yes 0 54019 +1216 {"name": "kaist open access self-archiving system", "language": "en"} [{"acronym": "koasas"}] http://koasas.kaist.ac.kr/index.jsp institutional [] 2022-01-12 15:35:12 2008-03-28 09:09:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "korea advanced institute of science and technology", "alternativeName": "kaist", "country": "kr", "url": "http://www.kaist.ac.kr/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://koasas.kaist.ac.kr/oai/request yes 0 204732 +1197 {"name": "lu|zone|ul", "language": "en"} [{"acronym": "lu|zone|ul @ laurentian university"}] https://zone.biblio.laurentian.ca institutional [] 2022-01-12 15:35:12 2008-03-12 14:14:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "laurentian university", "alternativeName": "", "country": "ca", "url": "https://laurentian.ca", "identifier": [{"identifier": "https://ror.org/03rcwtr18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://zone.biblio.laurentian.ca/oai/request yes 2648 +1198 {"name": "national taiwan university repository", "language": "en"} [{"acronym": "ntur"}] http://ntur.lib.ntu.edu.tw/ institutional [] 2022-01-12 15:35:12 2008-03-12 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "national taiwan university", "alternativeName": "\u81fa\u7063\u5927\u5b78", "country": "tw", "url": "http://www.ntu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ntur.lib.ntu.edu.tw/ir-oai/request yes 86749 +1178 {"name": "xiamen university institutional repository", "language": "en"} [{"acronym": "xmu ir"}] https://dspace.xmu.edu.cn institutional [] 2022-01-12 15:35:11 2008-03-06 16:16:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "xiamen university", "alternativeName": "\u53a6\u95e8\u5927\u5b66", "country": "cn", "url": "http://www.xmu.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.xmu.edu.cn/xmuir-oai/request yes 156359 +1115 {"name": "dut ir", "language": "en"} [] http://ir.dut.ac.za/ institutional [] 2022-01-12 15:35:10 2008-01-11 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "durban university of technology", "alternativeName": "dut", "country": "za", "url": "http://www.dut.ac.za/", "identifier": [{"identifier": "https://ror.org/0303y7a51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2831 +1119 {"name": "openstarts", "language": "en"} [] http://www.openstarts.units.it/ institutional [] 2022-01-12 15:35:11 2008-01-21 14:14:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universit\u00e0 degli studi di trieste", "alternativeName": "", "country": "it", "url": "http://www.units.it/", "identifier": [{"identifier": "https://ror.org/02n742c10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.openstarts.units.it/dspace-oai/request yes 6211 20540 +1166 {"name": "e-learning repository", "language": "en"} [] http://e-repository.tecminho.uminho.pt/ institutional [] 2022-01-12 15:35:11 2008-02-19 10:10:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "universidade do minho", "alternativeName": "", "country": "pt", "url": "http://www.uminho.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://e-repository.tecminho.uminho.pt/dspace-oai/request yes 0 615 +1103 {"name": "sspal.doc", "language": "en"} [] http://doc.sspal.it/ institutional [] 2022-01-12 15:35:10 2008-01-03 10:10:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "scuola superiore della pubblica amministrazione locale", "alternativeName": "sspal", "country": "it", "url": "http://www.sspal.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://doc.sspal.it/dspace-oai/request yes 1295 +1155 {"name": "scholarly commons at miami university", "language": "en"} [] http://sc.lib.muohio.edu/ institutional [] 2022-01-12 15:35:11 2008-01-31 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "miami university", "alternativeName": "", "country": "us", "url": "http://www.miami.muohio.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 975 +1218 {"name": "university of regina campus digital archive", "language": "en"} [] http://dspace.cc.uregina.ca/dspace/ institutional [] 2022-01-12 15:35:12 2008-04-04 14:14:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of regina", "alternativeName": "", "country": "ca", "url": "http://www.uregina.ca/", "identifier": [{"identifier": "https://ror.org/03dzc0485", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.cc.uregina.ca/dspace-oai/request yes 2277 +1191 {"name": "earchives", "language": "en"} [] http://archives.iupui.edu/ institutional [] 2022-01-12 15:35:12 2008-03-11 11:11:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "indiana university - purdue university, indianapolis", "alternativeName": "iupui", "country": "us", "url": "http://www.iupui.edu/", "identifier": [{"identifier": "https://ror.org/05gxnyn08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://archives.iupui.edu/dspace-oai/request yes 0 8960 +1205 {"name": "biblioteca digital - universidad icesi", "language": "en"} [] https://bibliotecadigital.icesi.edu.co/biblioteca_digital/ institutional [] 2022-01-12 15:35:12 2008-03-17 11:11:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "icesi university", "alternativeName": "universidad icesi", "country": "co", "url": "http://www.icesi.edu.co/", "identifier": [{"identifier": "https://ror.org/02t54e151", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bibliotecadigital.icesi.edu.co/biblioteca_digital-oai/request yes 2 13572 +1148 {"name": "dsto scientific publications online repository", "language": "en"} [] http://dspace.dsto.defence.gov.au/dspace/ institutional [] 2022-01-12 15:35:11 2008-01-30 16:16:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "australian defence science and technology organization", "alternativeName": "dsto", "country": "au", "url": "http://www.dsto.defence.gov.au/", "identifier": [{"identifier": "https://ror.org/05ddrvt52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.dsto.defence.gov.au/dspace-oai/request yes 4259 +1142 {"name": "ankara university archive system", "language": "en"} [] https://dspace.ankara.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:11 2008-01-30 09:09:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "ankara university", "alternativeName": "", "country": "tr", "url": "http://www.ankara.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 31544 +1217 {"name": "meiji repository", "language": "en"} [{"name": "\u660e\u6cbb\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://m-repo.lib.meiji.ac.jp/dspace/ institutional [] 2022-01-12 15:35:12 2008-04-04 12:12:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "meiji university", "alternativeName": "", "country": "jp", "url": "http://www.meiji.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://m-repo.lib.meiji.ac.jp/dspace-oai/request yes 8515 16392 +1199 {"name": "reposit\u00f3rio do iscte-iul", "language": "en"} [] https://repositorio.iscte-iul.pt/ institutional [] 2022-01-12 15:35:12 2008-03-12 14:14:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "instituto universit\u00e1rio de lisboa", "alternativeName": "iscte-iul", "country": "pt", "url": "http://www.iscte-iul.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio-iul.iscte.pt/oaiextended/request yes 0 15347 +1111 {"name": "dadun: dep\u00f3sito acad\u00e9mico digital de la universidad de navarra", "language": "en"} [] http://dadun.unav.edu institutional [] 2022-01-12 15:35:10 2008-01-08 13:13:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad de navarra", "alternativeName": "", "country": "es", "url": "http://www.unav.edu/", "identifier": [{"identifier": "https://ror.org/02rxc7m23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://dadun.unav.edu/static/ficheros/politica_institucional.pdf", "type": "content"}] {"name": "dspace", "version": ""} yes 33357 +1157 {"name": "division of academic and health affairs repository", "language": "en"} [] http://repository.ucop.edu/ institutional [] 2022-01-12 15:35:11 2008-01-31 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of california", "alternativeName": "", "country": "us", "url": "http://www.universityofcalifornia.edu/", "identifier": [{"identifier": "https://ror.org/00pjdza24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes 40 +1229 {"name": "diginole", "language": "en"} [] http://diginole.lib.fsu.edu/ institutional [] 2022-01-12 15:35:12 2008-04-24 15:15:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "florida state university", "alternativeName": "", "country": "us", "url": "http://www.fsu.edu/", "identifier": [{"identifier": "https://ror.org/05g3dte14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 0 22603 +1161 {"name": "archive of the institute of business economics (v\u00e1llalatgazdas\u00e1gtan int\u00e9zet archivuma)", "language": "en"} [{"acronym": "cub"}] http://edok.lib.uni-corvinus.hu/ institutional [] 2022-01-12 15:35:11 2008-02-07 13:13:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "corvinus university of budapest", "alternativeName": "", "country": "hu", "url": "http://www.uni-corvinus.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://edok.lib.uni-corvinus.hu/cgi/oai2 yes 344 406 +1225 {"name": "th\u00e8ses en ligne de luniversit\u00e9 toulouse iii - paul sabatier", "language": "en"} [{"acronym": "thesesups"}] http://thesesups.ups-tlse.fr/ institutional [] 2022-01-12 15:35:12 2008-04-09 14:14:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 toulouse 3 - paul sabatier", "alternativeName": "", "country": "fr", "url": "http://www.ups-tlse.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://thesesups.ups-tlse.fr/cgi/oai2 yes 3636 +1177 {"name": "university of worcester research and publications", "language": "en"} [] http://eprints.worc.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-03-06 16:16:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of worcester", "alternativeName": "", "country": "gb", "url": "http://www.worcester.ac.uk/", "identifier": [{"identifier": "https://ror.org/00v6s9648", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.worc.ac.uk/cgi/oai2 yes 2052 6997 +1194 {"name": "ptsl ukm repository", "language": "en"} [] http://eprints.ukm.my/ institutional [] 2022-01-12 15:35:12 2008-03-12 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universiti kebangsaan malaysia", "alternativeName": "ukm", "country": "my", "url": "http://www.ukm.my/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ukm.my/cgi/oai2 yes 315 351 +1179 {"name": "maynooth eprints and etheses archive", "language": "en"} [] http://eprints.nuim.ie/ institutional [] 2022-01-12 15:35:11 2008-03-06 16:16:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national university of ireland, maynooth", "alternativeName": "nui maynooth", "country": "ie", "url": "http://www.maynoothuniversity.ie/", "identifier": [{"identifier": "https://ror.org/048nfjm95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.nuim.ie/perl/oai2 yes 8514 +1120 {"name": "messanae studiorum", "language": "en"} [] http://cab.unime.it/mus/ institutional [] 2022-01-12 15:35:11 2008-01-21 16:16:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universita di messina", "alternativeName": "", "country": "it", "url": "http://www.unime.it/", "identifier": [{"identifier": "https://ror.org/05ctdxz19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 336 +1162 {"name": "padua@research", "language": "en"} [] http://paduaresearch.cab.unipd.it/ institutional [] 2022-01-12 15:35:11 2008-02-08 11:11:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of padua", "alternativeName": "", "country": "it", "url": "http://www.unipd.it/", "identifier": [{"identifier": "https://ror.org/01pyqxp87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://paduaresearch.cab.unipd.it/cgi/oai2 yes 3111 3633 +1163 {"name": "padua@thesis", "language": "en"} [] http://tesi.cab.unipd.it/ institutional [] 2022-01-12 15:35:11 2008-02-08 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of padua", "alternativeName": "", "country": "it", "url": "http://www.unipd.it/", "identifier": [{"identifier": "https://ror.org/01pyqxp87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://tesi.cab.unipd.it/cgi/oai2 yes 13439 53173 +1125 {"name": "university of birmingham research archive, e-prints repository", "language": "en"} [] http://eprints.bham.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-01-24 09:09:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "patents"] [{"name": "university of birmingham", "alternativeName": "ub", "country": "gb", "url": "http://www.birmingham.ac.uk/index.aspx", "identifier": [{"identifier": "https://ror.org/03angcq70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.bham.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://eprints.bham.ac.uk/information.html", "type": "data"}, {"policy_url": "http://eprints.bham.ac.uk/information.html", "type": "content"}, {"policy_url": "ttp://eprints.bham.ac.uk/information.html", "type": "submission"}, {"policy_url": "http://eprints.bham.ac.uk/information.html", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.bham.ac.uk/cgi/oai2 yes 957 +1224 {"name": "um research repository", "language": "en"} [] http://eprints.um.edu.my/ institutional [] 2022-01-12 15:35:12 2008-04-09 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "university of malaya", "alternativeName": "um", "country": "my", "url": "http://www.um.edu.my/", "identifier": [{"identifier": "https://ror.org/00rzspn62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.um.edu.my/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.um.edu.my/policies.html", "type": "data"}, {"policy_url": "http://eprints.um.edu.my/policies.html", "type": "content"}, {"policy_url": "http://eprints.um.edu.my/policies.html", "type": "submission"}, {"policy_url": "http://eprints.um.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.um.edu.my/cgi/oai2 yes 14343 +1183 {"name": "publication server of the university of applied sciences and arts hannover", "language": "en"} [{"acronym": "serwiss"}, {"name": "server f\u00fcr wissenschaftliche schriften der hochschule hannover", "language": "de"}, {"acronym": "serwiss"}] https://serwiss.bib.hs-hannover.de/home institutional [] 2022-01-12 15:35:11 2008-03-07 15:15:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hochschule hannover university of applied sciences and arts hannover", "alternativeName": "", "country": "de", "url": "http://www.hs-hannover.de/start/index.html", "identifier": [{"identifier": "https://ror.org/03m2kj587", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://serwiss.bib.hs-hannover.de/oai yes 720 1058 +1141 {"name": "publication server of berlin brandenburgischen akademie der wissenschaften", "language": "en"} [{"acronym": "edoc"}, {"name": "berlin brandenburgischen akademie der wissenschaften dokumentenserver", "language": "de"}, {"acronym": "edoc"}] https://edoc.bbaw.de institutional [] 2022-01-12 15:35:11 2008-01-29 16:16:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "berlin-brandenburg academy of sciences and humanities", "alternativeName": "", "country": "de", "url": "http://www.bbaw.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://edoc.bbaw.de/oai yes 2595 +1151 {"name": "digital commons @ illinois wesleyan university", "language": "en"} [{"acronym": "digital commons@ iwu"}] http://digitalcommons.iwu.edu/ institutional [] 2022-01-12 15:35:11 2008-01-31 10:10:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "illinois wesleyan university", "alternativeName": "", "country": "us", "url": "http://www.iwu.edu/", "identifier": [{"identifier": "https://ror.org/021aqk126", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.iwu.edu/do/oai/ yes 8701 19234 +1150 {"name": "johnson and wales university scholars archive", "language": "en"} [{"acronym": "scholars archive@j&w"}] http://scholarsarchive.jwu.edu/ institutional [] 2022-01-12 15:35:11 2008-01-31 09:09:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "johnson and wales university", "alternativeName": "", "country": "us", "url": "http://www.jwu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3673 +1152 {"name": "digitalcommons@calpoly", "language": "en"} [] http://digitalcommons.calpoly.edu/ institutional [] 2022-01-12 15:35:11 2008-01-31 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "california polytechnic state university", "alternativeName": "cal poly", "country": "us", "url": "http://www.calpoly.edu/", "identifier": [{"identifier": "https://ror.org/001gpfp45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.calpoly.edu/do/oai/ yes 34859 36631 +1153 {"name": "digitalresearch@fordham", "language": "en"} [] http://fordham.bepress.com/ institutional [] 2022-01-12 15:35:11 2008-01-31 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "fordham university", "alternativeName": "", "country": "us", "url": "http://www.fordham.edu/", "identifier": [{"identifier": "https://ror.org/03qnxaf80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3883 +1160 {"name": "mississippi state university libraries etd database", "language": "en"} [] http://sun.library.msstate.edu/etd-db/ institutional [] 2022-01-12 15:35:11 2008-02-05 14:14:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "mississippi state university", "alternativeName": "", "country": "us", "url": "http://www.msstate.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://sun.library.msstate.edu/etd-db/ndltd-oai/oai.pl yes 0 4548 +1124 {"name": "european transport conference papers", "language": "en"} [{"acronym": "etc"}] https://aetransport.org/past-etc-papers institutional [] 2022-01-12 15:35:11 2008-01-22 11:11:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "association for european transport", "alternativeName": "aet", "country": "gb", "url": "http://www.aetransport.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3635 +1113 {"name": "erasmus university institutional repository", "language": "en"} [{"acronym": "repub"}] http://repub.eur.nl/ institutional [] 2022-01-12 15:35:10 2008-01-09 11:11:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "erasmus universiteit rotterdam", "alternativeName": "eur", "country": "nl", "url": "http://www.eur.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repub.eur.nl/oai yes 36038 115870 +1170 {"name": "kyutacar", "language": "en"} [{"acronym": "kyutacar"}, {"name": "\u30ad\u30e5\u30fc\u30c6\u30a4\u30ab\u30fc", "language": "ja"}] https://kyutech.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:11 2008-02-26 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kyushu institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.kyutech.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyutech.repo.nii.ac.jp/oai yes 5007 +1212 {"name": "utsunomiya university academic information repository", "language": "en"} [{"acronym": "uu-air"}, {"name": "\u5b87\u90fd\u5bae\u5927\u5b66 \u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea\uff08uu-air\uff09", "language": "ja"}] https://uuair.repo.nii.ac.jp institutional [] 2022-01-12 15:35:12 2008-03-26 10:10:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "utsunomiya university", "alternativeName": "", "country": "jp", "url": "http://www.utsunomiya-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://uuair.repo.nii.ac.jp/oai yes 6598 6763 +1158 {"name": "\u015bl\u0105ska biblioteka cyfrowa (silesia digital library)", "language": "en"} [] http://www.sbc.org.pl/dlibra disciplinary [] 2022-01-12 15:35:11 2008-02-01 09:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "uniwersytet \u015bl\u0105ski", "alternativeName": "", "country": "pl", "url": "http://www.us.edu.pl/", "identifier": [{"identifier": "https://ror.org/0104rcc94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.sbc.org.pl/dlibra/oai-pmh-repository.xml yes 99 +1207 {"name": "eprints fakult\u00e4t ii", "language": "en"} [] http://eprints.physik.tu-berlin.de/ institutional [] 2022-01-12 15:35:12 2008-03-19 16:16:25 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "technische universit\u00e4t berlin", "alternativeName": "", "country": "de", "url": "http://www.tu-berlin.de/", "identifier": [{"identifier": "https://ror.org/03v4gjf40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.physik.tu-berlin.de/cgi/oai2 yes 0 249 +1104 {"name": "open marine archive", "language": "en"} [{"acronym": "oma"}] http://www.vliz.be/vmdcdata/oma/ref.php?show=searchfrm&c=marine_library disciplinary [] 2022-01-12 15:35:10 2008-01-03 11:11:00 ["science"] ["journal_articles"] [{"name": "vlaams instituut voor de zee (flanders marine institute)", "alternativeName": "vliz", "country": "be", "url": "http://www.vliz.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1211 {"name": "acervo digital del instituto de biolog\u00eda de la unam", "language": "en"} [{"acronym": "irekani"}] http://unibio.unam.mx/irekani/ institutional [] 2022-01-12 15:35:12 2008-03-20 11:11:03 ["science"] ["other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12533 +1220 {"name": "i-revues", "language": "en"} [] http://irevues.inist.fr/ institutional [] 2022-01-12 15:35:12 2008-04-04 14:14:30 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "institut de linformation scientifique et technique du cnrs", "alternativeName": "inist-cnrs", "country": "fr", "url": "http://www.inist.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://documents.irevues.inist.fr/dspace-oai/request yes 20185 56245 +1213 {"name": "fao document repository", "language": "en"} [] http://www.fao.org/documents/en/ institutional [] 2022-01-12 15:35:12 2008-03-26 10:10:37 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "food and agriculture organization of the united nations", "alternativeName": "fao", "country": "it", "url": "http://www.fao.org/home/en/", "identifier": [{"identifier": "https://ror.org/00pe0tf51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 0 39862 +1108 {"name": "desy publication database", "language": "en"} [] http://pubdb.desy.de/ institutional [] 2022-01-12 15:35:10 2008-01-07 10:10:16 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "deutsches elektronen-synchrotron", "alternativeName": "desy", "country": "de", "url": "http://www.desy.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://pubdb.desy.de/oai2 yes 0 223741 +1137 {"name": "social science research network", "language": "en"} [{"acronym": "ssrn"}] http://www.ssrn.com/ disciplinary [] 2022-01-12 15:35:11 2008-01-25 14:14:12 ["social sciences"] ["journal_articles"] [{"name": "social science electronic publishing", "alternativeName": "", "country": "us", "url": "http://www.ssrn.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1351354 +1144 {"name": "biblioteca virtual sobre corrupcao", "language": "en"} [] https://bvc.cgu.gov.br/ disciplinary [] 2022-01-12 15:35:11 2008-01-30 10:10:00 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "controladoria-geral da uni\u00e3o", "alternativeName": "", "country": "br", "url": "http://www.cgu.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1340 +1182 {"name": "institute of education eprints", "language": "en"} [{"acronym": "ioe eprints"}] http://eprints.ioe.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-03-06 17:17:02 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of london", "alternativeName": "", "country": "gb", "url": "http://www.lon.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ioe.ac.uk/cgi/oai2 yes 2548 16070 +1201 {"name": "munich repec personal archive", "language": "en"} [] http://mpra.ub.uni-muenchen.de/ institutional [] 2022-01-12 15:35:12 2008-03-14 11:11:32 ["social sciences"] ["journal_articles"] [{"name": "ludwig-maximilians-universit\u00e4t m\u00fcnchen", "alternativeName": "lmu", "country": "de", "url": "http://www.uni-muenchen.de/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://mpra.ub.uni-muenchen.de/cgi/oai2 yes 51321 53248 +1184 {"name": "knowledge repository", "language": "en"} [{"acronym": "icddr,b"}] http://dspace.icddrb.org/ disciplinary [] 2022-01-12 15:35:12 2008-03-10 15:15:57 ["science", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "international centre for diarrhoeal disease research", "alternativeName": "", "country": "bd", "url": "http://www.icddrb.org/", "identifier": [{"identifier": "https://ror.org/04vsvr128", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.icddrb.org/request yes 0 6076 +1226 {"name": "institutional repository", "language": "en"} [{"acronym": "irep"}] http://irep.ntu.ac.uk/ institutional [] 2022-01-12 15:35:12 2008-04-14 13:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "nottingham trent university", "alternativeName": "ntu", "country": "gb", "url": "http://www.ntu.ac.uk/", "identifier": [{"identifier": "https://ror.org/04xyxjd90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://irep.ntu.ac.uk/cgi/oai2 yes 10724 42200 +1202 {"name": "online research database in technology", "language": "en"} [{"acronym": "orbit"}] http://orbit.dtu.dk/ institutional [] 2022-01-12 15:35:12 2008-03-14 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "technical university of denmark", "alternativeName": "dtu", "country": "dk", "url": "http://www.dtu.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://orbit.dtu.dk/ws/oai yes 46320 171325 +1122 {"name": "smithsonian digital repository", "language": "en"} [] https://repository.si.edu/ institutional [] 2022-01-12 15:35:11 2008-01-22 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "smithsonian institution", "alternativeName": "", "country": "us", "url": "http://www.si.edu/", "identifier": [{"identifier": "https://ror.org/01pp8nd67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.si.edu/oai yes 0 26147 +1168 {"name": "dspace at ntua", "language": "en"} [] http://dspace.lib.ntua.gr/ institutional [] 2022-01-12 15:35:11 2008-02-21 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "national technical university of athens", "alternativeName": "ntua", "country": "gr", "url": "http://www.ntua.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.lib.ntua.gr/oai/request yes 3876 52478 +1167 {"name": "jscholarship", "language": "en"} [] http://jscholarship.library.jhu.edu/ institutional [] 2022-01-12 15:35:11 2008-02-21 09:09:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "johns hopkins university", "alternativeName": "", "country": "us", "url": "http://www.jhu.edu/", "identifier": [{"identifier": "https://ror.org/00za53h95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://library.jhu.edu/collections/institutionalrepository/irabout.html", "type": "content"}, {"policy_url": "http://library.jhu.edu/collections/institutionalrepository/irabout.html", "type": "submission"}, {"policy_url": "http://library.jhu.edu/collections/institutionalrepository/irpreservationpolicy.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://oai.library.jhu.edu/oai-dspace/request yes 195 29047 +1223 {"name": "dokumentenserver des lbi-hta", "language": "en"} [] http://eprints.hta.lbg.ac.at/ institutional [] 2022-01-12 15:35:12 2008-04-08 12:12:11 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ludwig boltzmann institut f\u00fcr health technology assessment", "alternativeName": "lbi-hta", "country": "at", "url": "http://hta.lbg.ac.at/page/homepage", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.hta.lbg.ac.at/cgi/oai2 yes 782 1025 +1132 {"name": "harvard college thesis repository", "language": "en"} [] http://www.hcs.harvard.edu/thesis/repo/ institutional [] 2022-01-12 15:35:11 2008-01-24 16:16:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "harvard college", "alternativeName": "", "country": "us", "url": "http://www.college.harvard.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://creativecommons.org/licenses/by/2.5/", "type": "data"}] {"name": "eprints", "version": ""} http://www.hcs.harvard.edu/thesis/repo/cgi/oai2 yes 0 40 +1156 {"name": "university of bolton institutional repository", "language": "en"} [{"acronym": "ubir"}] http://ubir.bolton.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-01-31 11:11:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "university of bolton", "alternativeName": "", "country": "gb", "url": "http://www.bolton.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_policy_template.pdf", "type": "metadata"}, {"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_policy_template.pdf", "type": "data"}, {"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_policy_template.pdf", "type": "content"}, {"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_policy_template.pdf", "type": "submission"}, {"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_procedure_template.pdf", "type": "submission"}, {"policy_url": "http://digitalcommons.bolton.ac.uk/bolton_policy_template.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} http://sprite.bolton.ac.uk/cgi/oai2 yes 0 2180 +1126 {"name": "university of birmingham research archive, e-papers repository", "language": "en"} [] http://epapers.bham.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-01-24 09:09:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of birmingham", "alternativeName": "ub", "country": "gb", "url": "http://www.birmingham.ac.uk/index.aspx", "identifier": [{"identifier": "https://ror.org/03angcq70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://epapers.bham.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://epapers.bham.ac.uk/information.html", "type": "data"}, {"policy_url": "http://epapers.bham.ac.uk/information.html", "type": "content"}, {"policy_url": "http://epapers.bham.ac.uk/information.html", "type": "submission"}] {"name": "eprints", "version": ""} http://epapers.bham.ac.uk/cgi/oai2 yes 749 2315 +1196 {"name": "new bulgarian university scholar electronic repository", "language": "en"} [] http://eprints.nbu.bg/ institutional [] 2022-01-12 15:35:12 2008-03-12 14:14:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "new bulgarian university", "alternativeName": "", "country": "bg", "url": "http://www.nbu.bg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.nbu.bg/rules.html", "type": "content"}] {"name": "eprints", "version": ""} http://eprints.nbu.bg/cgi/oai2 yes 1892 3104 +1228 {"name": "queen margaret university eresearch", "language": "en"} [] http://eresearch.qmu.ac.uk/ institutional [] 2022-01-12 15:35:12 2008-04-24 15:15:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "queen margaret university", "alternativeName": "", "country": "gb", "url": "http://www.qmu.ac.uk/", "identifier": [{"identifier": "https://ror.org/002g3cb31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eresearch.qmu.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eresearch.qmu.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eresearch.qmu.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eresearch.qmu.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eresearch.qmu.ac.uk/policies.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://eresearch.qmu.ac.uk/oai yes 1596 7721 +1176 {"name": "edinburgh datashare", "language": "en"} [] http://datashare.is.ed.ac.uk/ institutional [] 2022-01-12 15:35:11 2008-03-05 16:16:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of edinburgh", "alternativeName": "", "country": "gb", "url": "http://www.ed.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://datalib.ed.ac.uk/datashare/depositor-agreement.pdf", "type": "submission"}] {"name": "dspace", "version": ""} http://datashare.is.ed.ac.uk/oai/request yes 0 2281 +1146 {"name": "helmholtz zentrum f\u00fcr infektionsforschung repository", "language": "de"} [{"acronym": "hzi"}, {"name": "repository of the helmholtz centre for infection research", "language": "en"}] https://repository.helmholtz-hzi.de institutional [] 2022-01-12 15:35:11 2008-01-30 16:16:39 ["science"] ["journal_articles"] [{"name": "helmholtz zentrum f\u00fcr infektionsforschung", "alternativeName": "helmholtz centre for infection research", "country": "de", "url": "http://www.helmholtz-hzi.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://hzi.openrepository.com/pages/about", "type": "metadata"}, {"policy_url": "https://hzi.openrepository.com/pages/about", "type": "data"}, {"policy_url": "https://hzi.openrepository.com/pages/about", "type": "content"}, {"policy_url": "https://hzi.openrepository.com/pages/about", "type": "submission"}] {"name": "dspace", "version": ""} https://repository.helmholtz-hzi.de/oai/request yes 2458 3840 +1131 {"name": "lirias", "language": "en"} [] https://lirias.kuleuven.be institutional [] 2022-01-12 15:35:11 2008-01-24 15:15:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "katholieke universiteit leuven", "alternativeName": "ku leuven", "country": "be", "url": "http://www.kuleuven.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.kuleuven.be/english/research/scholcomm/lirias/lirias-repository-information", "type": "metadata"}, {"policy_url": "https://www.kuleuven.be/english/research/scholcomm/lirias/lirias-repository-information", "type": "data"}, {"policy_url": "https://www.kuleuven.be/english/research/scholcomm/lirias/lirias-repository-information", "type": "content"}, {"policy_url": "https://www.kuleuven.be/english/research/scholcomm/lirias/lirias-repository-information", "type": "submission"}, {"policy_url": "https://www.kuleuven.be/english/research/scholcomm/lirias/lirias-repository-information", "type": "preservation"}] {"name": "dspace", "version": ""} https://lirias.kuleuven.be/oai/request yes 23457 544153 +1221 {"name": "kingston university research repository", "language": "en"} [] http://eprints.kingston.ac.uk/ institutional [] 2022-01-12 15:35:12 2008-04-08 11:11:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kingston university", "alternativeName": "", "country": "gb", "url": "http://www.kingston.ac.uk", "identifier": [{"identifier": "https://ror.org/05bbqza97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.kingston.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.kingston.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.kingston.ac.uk/information.html", "type": "content"}, {"policy_url": "http://eprints.kingston.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.kingston.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.kingston.ac.uk/cgi/oai2 yes 4381 36209 +1231 {"name": "university of south australia research outputs repository", "language": "en"} [{"acronym": "unisa ror"}] https://find.library.unisa.edu.au/primo-explore/search?vid=ror institutional [] 2022-01-12 15:35:12 2008-04-24 16:16:05 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "patents", "other_special_item_types"] [{"name": "university of south australia", "alternativeName": "unisa", "country": "au", "url": "https://www.unisa.edu.au", "identifier": [{"identifier": "https://ror.org/01p93h210", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://guides.library.unisa.edu.au/c.php?g=216264&p=1446518", "type": "submission"}, {"policy_url": "http://arrow.unisa.edu.au:8080/vital/access/manager/privacy", "type": "preservation"}] {"name": "other", "version": ""} https://api.unisa.edu.au/libraryoaiservices/oai_oclc yes 0 4583 +1309 {"name": "dspace at cardiff met", "language": "en"} [] https://repository.cardiffmet.ac.uk/ institutional [] 2022-01-12 15:35:14 2008-08-05 13:13:17 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "cardiff metropolitan university (prifysgol metropolitan caerdydd)", "alternativeName": "uwic", "country": "gb", "url": "http://www.cardiffmet.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.cardiffmet.ac.uk/dspace-oai/request yes 528 905 +1343 {"name": "agatange", "language": "fr"} [] http://www.numerique.culture.fr institutional [] 2022-01-12 15:35:14 2008-09-23 10:10:20 ["arts", "humanities"] ["other_special_item_types"] [{"name": "biblioth\u00e8que de toulouse", "alternativeName": "", "country": "fr", "url": "http://www.bibliothequedetoulouse.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 0 100 +1284 {"name": "visual arts data service", "language": "en"} [{"acronym": "vads"}] http://vads.ac.uk/ disciplinary [] 2022-01-12 15:35:13 2008-07-18 11:11:10 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university for the creative arts", "alternativeName": "uca", "country": "gb", "url": "http://www.ucreative.ac.uk/", "identifier": [{"identifier": "https://ror.org/04r0ks517", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.vads.ac.uk/oai/oai.php yes 0 111997 +1308 {"name": "digital archive of lancaster theological seminary", "language": "en"} [] http://archive.lancasterseminary.edu institutional [] 2022-01-12 15:35:14 2008-08-05 09:09:42 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "lancaster theological seminary", "alternativeName": "", "country": "us", "url": "https://lancasterseminary.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} yes 154 +1345 {"name": "chopin early editions", "language": "en"} [] http://chopin.lib.uchicago.edu/ institutional [] 2022-01-12 15:35:14 2008-09-23 10:10:33 ["arts"] ["other_special_item_types"] [{"name": "university of chicago", "alternativeName": "", "country": "us", "url": "http://www.uchicago.edu/", "identifier": [{"identifier": "https://ror.org/024mw5h28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 452 +1349 {"name": "bridge of the nineteenth century", "language": "en"} [] http://bridges.lib.lehigh.edu/index.html disciplinary [] 2022-01-12 15:35:14 2008-09-23 11:11:37 ["engineering"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "lehigh university", "alternativeName": "", "country": "us", "url": "http://www.lehigh.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 31 +1340 {"name": "foodbase", "language": "en"} [] http://www.foodbase.org.uk/ governmental [] 2022-01-12 15:35:14 2008-09-22 13:13:52 ["health and medicine", "science", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "food standards agency", "alternativeName": "", "country": "gb", "url": "http://www.food.gov.uk/", "identifier": [{"identifier": "https://ror.org/05p20a626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 169 +1258 {"name": "m\u00e9decins sans fronti\u00e8res field research", "language": "en"} [{"acronym": "msf field research"}] http://fieldresearch.msf.org institutional [] 2022-01-12 15:35:13 2008-06-06 14:14:05 ["health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "m\u00e9decins sans fronti\u00e8res", "alternativeName": "msf", "country": "ch", "url": "http://www.msf.org", "identifier": [{"identifier": "https://ror.org/032mwd808", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://fieldresearch.msf.org/msf/oai/openaire yes 2429 +1331 {"name": "scientific electronic library online - paraguay", "language": "en"} [{"acronym": "scielo - paraguay"}] http://scielo.iics.una.py/scielo.php?lng=pt institutional [] 2022-01-12 15:35:14 2008-09-15 15:15:09 ["health and medicine", "science"] ["journal_articles"] [{"name": "universidad nacional de asunci\u00f3n", "alternativeName": "una", "country": "py", "url": "http://www.una.py/", "identifier": [{"identifier": "https://ror.org/03f27y887", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} yes 105 +1351 {"name": "allen park veterans administration hospital archives", "language": "en"} [] http://www.dalnet.lib.mi.us/gsdl/cgi-bin/library?p=about&c=va institutional [] 2022-01-12 15:35:14 2008-09-23 14:14:46 ["health and medicine"] ["other_special_item_types"] [{"name": "detroit area library network", "alternativeName": "dalnet", "country": "us", "url": "http://www.dalnet.lib.mi.us/digitalpro/projects.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 187 +1315 {"name": "sa health publications", "language": "en"} [] http://www.publications.health.sa.gov.au/ institutional [] 2022-01-12 15:35:14 2008-08-07 15:15:18 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "government of south australia", "alternativeName": "", "country": "au", "url": "http://www.sa.gov.au/", "identifier": [{"identifier": "https://ror.org/04g3scy39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1254 {"name": "open access respository of ecnis-niom research", "language": "en"} [] http://ecnis.openrepository.com/ecnis institutional [] 2022-01-12 15:35:13 2008-06-03 10:10:43 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ecnis network of excellence", "alternativeName": "", "country": "pl", "url": "https://www.ecnis.org http://www.imp.lodz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ecnis.openrepository.com/oai yes 717 +1324 {"name": "idaho state historical society digital collections", "language": "en"} [] http://idahohistory.cdmhost.com/cdm/ governmental [] 2022-01-12 15:35:14 2008-08-27 11:11:50 ["humanities"] ["other_special_item_types"] [{"name": "idaho state historical society", "alternativeName": "", "country": "us", "url": "http://www.idahohistory.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 6712 +1305 {"name": "ohio digital resource commons - marietta college", "language": "en"} [] http://drc.library.marietta.edu/ institutional [] 2022-01-12 15:35:14 2008-08-01 14:14:04 ["humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "marietta college", "alternativeName": "", "country": "us", "url": "http://www.marietta.edu/", "identifier": [{"identifier": "https://ror.org/03apb0g70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://drc.library.marietta.edu/dspace-oai/request yes 0 1610 +1279 {"name": "propylaeum-dok", "language": "en"} [] http://archiv.ub.uni-heidelberg.de/propylaeumdok/ disciplinary [] 2022-01-12 15:35:13 2008-07-14 10:10:29 ["humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ruprecht-karls-universit\u00e4t, heidelberg", "alternativeName": "", "country": "de", "url": "http://www.uni-heidelberg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archiv.ub.uni-heidelberg.de/propylaeumdok/cgi/oai2 yes 4746 4931 +1250 {"name": "dspace@imsc", "language": "en"} [] http://www.imsc.res.in/xmlui institutional [] 2022-01-12 15:35:13 2008-05-21 10:10:20 ["mathematics"] ["learning_objects", "conference_and_workshop_papers"] [{"name": "institute of mathematical sciences", "alternativeName": "", "country": "in", "url": "https://www.imsc.res.in/", "identifier": [{"identifier": "https://ror.org/05078rg59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 365 +1333 {"name": "hungarian electronic library", "language": "en"} [{"acronym": "mek"}] http://www.elib.hu/ institutional [] 2022-01-12 15:35:14 2008-09-16 11:11:23 ["science", "arts", "humanities", "social sciences", "technology"] ["books_chapters_and_sections"] [{"name": "national sz\u00e9ch\u00e9nyi library", "alternativeName": "", "country": "hu", "url": "http://www.oszk.hu/", "identifier": [{"identifier": "https://ror.org/02ye9h922", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://mek.oszk.hu/oai2dir/oai2.php yes 12530 +1285 {"name": "kfupm eprints", "language": "en"} [] http://eprints.kfupm.edu.sa/ institutional [] 2022-01-12 15:35:13 2008-07-18 11:11:28 ["science", "humanities", "mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "king fahd university of petroleum and minerals", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f \u0644\u0644\u0628\u062a\u0631\u0648\u0644 \u0648\u0627\u0644\u0645\u0639\u0627\u062f\u0646", "country": "sa", "url": "http://www.kfupm.edu.sa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.kfupm.edu.sa/cgi/oai2 yes 4890 6221 +1316 {"name": "sudan open archive", "language": "en"} [{"acronym": "soa"}] http://www.sudanarchive.net/ institutional [] 2022-01-12 15:35:14 2008-08-11 14:14:48 ["science", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "rift valley institute", "alternativeName": "", "country": "ke", "url": "http://www.riftvalley.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 1884 +1245 {"name": "dep\u00f3sito de la universidad de murcia", "language": "en"} [{"acronym": "digitum"}] http://digitum.um.es/xmlui/ institutional [] 2022-01-12 15:35:13 2008-05-15 14:14:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types", "books_chapters_and_sections", "theses_and_dissertations", "journal_articles"] [{"name": "universidad de murcia", "alternativeName": "", "country": "es", "url": "http://www.um.es/", "identifier": [{"identifier": "https://ror.org/03p3aeb86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 36256 +1321 {"name": "national chiao tung university institutional repository", "language": "en"} [] http://ir.lib.nctu.edu.tw/ institutional [] 2022-01-12 15:35:14 2008-08-27 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "national chiao tung university", "alternativeName": "nctu", "country": "tw", "url": "http://www.nctu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 85681 +1238 {"name": "univ. duesseldorf: duesseldorfer dokumenten- und publikationsserver", "language": "en"} [] http://docserv.uni-duesseldorf.de/ institutional [] 2022-01-12 15:35:12 2008-05-13 13:13:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types", "theses_and_dissertations"] [{"name": "heinrich-heine-university duesseldorf", "alternativeName": "", "country": "de", "url": "http://www.uni-duesseldorf.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://docserv.uni-duesseldorf.de/servlets/oaidataprovider yes 5189 +1350 {"name": "ulukau: the hawaiian electronic library", "language": "en"} [] http://www.ulukau.com/index.php disciplinary [] 2022-01-12 15:35:14 2008-09-23 14:14:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of hawaii at hilo", "alternativeName": "", "country": "us", "url": "http://www.uhh.hawaii.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 335 +1240 {"name": "learning exchange", "language": "en"} [] http://lx.iriss.org.uk/ institutional [] 2022-01-12 15:35:12 2008-05-13 14:14:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "institute for research and innovation in social services", "alternativeName": "iriss", "country": "gb", "url": "http://www.iriss.org.uk/", "identifier": [{"identifier": "https://ror.org/02h91ww72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.iriss.ac.uk/files/lx_collection_development_approved_0608.pdf", "type": "content"}] {"name": "drupal", "version": ""} yes 0 5702 +1257 {"name": "eureka!", "language": "en"} [] http://eureka.lib.teithe.gr:8080/ institutional [] 2022-01-12 15:35:13 2008-06-06 11:11:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "alexander technological educational institute of thessaloniki", "alternativeName": "atei", "country": "gr", "url": "http://www.teithe.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://eureka.lib.teithe.gr:8443/dspace/policies.jsp", "type": "metadata"}, {"policy_url": "https://eureka.lib.teithe.gr:8443/dspace/policies.jsp", "type": "data"}, {"policy_url": "https://eureka.lib.teithe.gr:8443/dspace/policies.jsp", "type": "content"}, {"policy_url": "https://eureka.lib.teithe.gr:8443/dspace/policies.jsp", "type": "submission"}, {"policy_url": "https://eureka.lib.teithe.gr:8443/dspace/policies.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} http://eureka.lib.teithe.gr:8080/oai/request yes 10483 +1325 {"name": "repositorio institucional e-docur", "language": "es"} [] https://repository.urosario.edu.co institutional [] 2022-01-12 15:35:14 2008-08-27 12:12:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad del rosario", "alternativeName": "", "country": "co", "url": "https://www.urosario.edu.co", "identifier": [{"identifier": "https://ror.org/0108mwc04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repository.urosario.edu.co/bitstream/handle/10336/12300/politica_acceso_abierto.pdf?sequence=8&isallowed=y", "type": "content"}, {"policy_url": "https://repository.urosario.edu.co/bitstream/handle/10336/12300/politica_acceso_abierto.pdf?sequence=8&isallowed=y", "type": "submission"}] {"name": "dspace", "version": ""} https://repository.urosario.edu.co/oai/request yes 13279 +1341 {"name": "memoria acad\u00e9mica", "language": "en"} [] http://www.memoria.fahce.unlp.edu.ar/ institutional [] 2022-01-12 15:35:14 2008-09-22 14:14:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad nacional de la plata", "alternativeName": "unlp", "country": "ar", "url": "http://www.unlp.edu.ar/", "identifier": [{"identifier": "https://ror.org/01tjs6929", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.memoria.fahce.unlp.edu.ar/memoria/politicas", "type": "metadata"}, {"policy_url": "https://www.memoria.fahce.unlp.edu.ar/memoria/politicas", "type": "data"}, {"policy_url": "https://www.memoria.fahce.unlp.edu.ar/memoria/politicas", "type": "content"}, {"policy_url": "https://www.memoria.fahce.unlp.edu.ar/memoria/politicas", "type": "submission"}, {"policy_url": "https://www.memoria.fahce.unlp.edu.ar/memoria/politicas", "type": "preservation"}] {"name": "greenstone", "version": ""} http://www.memoria.fahce.unlp.edu.ar/oaiserver.cgi yes 13861 +1265 {"name": "digital assets repository", "language": "en"} [{"acronym": "dar"}] http://dar.bibalex.org/webpages/dar.jsf institutional [] 2022-01-12 15:35:13 2008-06-23 10:10:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "bibliotheca alexandrina", "alternativeName": "\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0625\u0633\u0643\u0646\u062f\u0631\u064a", "country": "eg", "url": "http://www.bibalex.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 301647 +1268 {"name": "knowledge", "language": "en"} [{"acronym": "\u0645\u0639\u0631\u0641\u0629"}] http://marifah.org/ disciplinary [] 2022-01-12 15:35:13 2008-07-02 14:14:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "king saud university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0645\u0644\u0643 \u0633\u0639\u0648\u062f", "country": "sa", "url": "http://ksu.edu.sa/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 116 +1262 {"name": "policy archive", "language": "en"} [] https://www.policyarchive.org/ disciplinary [] 2022-01-12 15:35:13 2008-06-20 09:09:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "center for governmental studies", "alternativeName": "", "country": "us", "url": "http://www.cgs.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 7070 +1335 {"name": "digital library of the nplg (\u10ea\u10d8\u10e4\u10e0\u10e3\u10da\u10d8 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0)", "language": "en"} [] http://www.nplg.gov.ge/dlibrary/ governmental [] 2022-01-12 15:35:14 2008-09-18 13:13:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "national parliamentary library of georgia (\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd\u10e1 \u10de\u10d0\u10e0\u10da\u10d0\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d4\u10e0\u10dd\u10d5\u10dc\u10e3\u10da\u10d8 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0)", "alternativeName": "nplg", "country": "ge", "url": "http://www.nplg.gov.ge/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 895 +1337 {"name": "teze", "language": "en"} [] http://www.cnaa.md/theses/ governmental [] 2022-01-12 15:35:14 2008-09-18 13:13:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "consiliul na\u0163ional pentru acreditare \u015fi atestare", "alternativeName": "cnaa", "country": "md", "url": "http://www.cnaa.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2251 +1327 {"name": "old printed books - digital repository of eurpean rarities", "language": "en"} [] http://www.rarelib.undp.org.ua/eng/index.php3 institutional [] 2022-01-12 15:35:14 2008-09-02 11:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "kyiv national taras shevchenko university", "alternativeName": "kntsu", "country": "ua", "url": "http://www.univ.kiev.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3624 +1276 {"name": "textfeld", "language": "en"} [] http://www.textfeld.ac.at/ aggregating [] 2022-01-12 15:35:13 2008-07-10 11:11:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "textfeld society for advancement of academic potential", "alternativeName": "", "country": "at", "url": "http://textfeld.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 754 +1332 {"name": "claremont colleges digital library", "language": "en"} [{"acronym": "ccdl"}] http://ccdl.libraries.claremont.edu/cdm/ institutional [] 2022-01-12 15:35:14 2008-09-15 16:16:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "learning_objects", "other_special_item_types"] [{"name": "claremont university consortium", "alternativeName": "", "country": "us", "url": "http://www.cuc.claremont.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 0 57054 +1294 {"name": "aletheia university institutional repository", "language": "en"} [{"acronym": "auir"}] http://ir.lib.au.edu.tw/dspace/ institutional [] 2022-01-12 15:35:13 2008-07-31 14:14:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "aletheia university", "alternativeName": "\u771f\u7406\u5927\u5b78", "country": "tw", "url": "http://www.au.edu.tw/main.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.au.edu.tw/dspace-oai/request yes 0 4789 +1330 {"name": "khazar university institutional repository", "language": "en"} [{"acronym": "kuir"}] http://dspace.khazar.org/jspui/ institutional [] 2022-01-12 15:35:14 2008-09-15 11:11:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "khazar university", "alternativeName": "", "country": "az", "url": "http://www.khazar.org/", "identifier": [{"identifier": "https://ror.org/014te7048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.khazar.org/oai/request yes 1776 5893 +1307 {"name": "kautilya digital repository at igidr", "language": "en"} [{"acronym": "kautilya@igidr"}] http://oii.igidr.ac.in:8080/xmlui institutional [] 2022-01-12 15:35:14 2008-08-04 13:13:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indira gandhi institute of development research", "alternativeName": "igidr", "country": "in", "url": "http://www.igidr.ac.in/", "identifier": [{"identifier": "https://ror.org/034jn5z48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oii.igidr.ac.in:8080/oai/request yes 0 334 +1295 {"name": "national cheng kung university institutional repository", "language": "en"} [{"acronym": "\u570b\u7acb\u6210\u529f\u5927\u5b78\u6a5f\u69cb\u5178\u85cf"}] http://ir.lib.ncku.edu.tw/ institutional [] 2022-01-12 15:35:13 2008-07-31 14:14:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national cheng kung university", "alternativeName": "\u570b\u7acb\u6210\u529f\u5927\u5b78", "country": "tw", "url": "http://web.ncku.edu.tw/bin/home.php", "identifier": [{"identifier": "https://ror.org/01b8kcc49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 99816 +1271 {"name": "estudo geral", "language": "en"} [] https://estudogeral.sib.uc.pt institutional [] 2022-01-12 15:35:13 2008-07-04 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of coimbra", "alternativeName": "", "country": "pt", "url": "http://www.uc.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://estudogeral.sib.uc.pt/oai/rcaap yes 9429 32138 +1306 {"name": "ohiolink digital resource commons", "language": "en"} [] http://drc.ohiolink.edu/ aggregating [] 2022-01-12 15:35:14 2008-08-01 14:14:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ohio library and information network", "alternativeName": "ohiolink", "country": "us", "url": "http://www.ohiolink.edu/", "identifier": [{"identifier": "https://ror.org/05bqcch62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://drc.ohiolink.edu/oai/request yes 42 86259 +1252 {"name": "ujdigispace", "language": "en"} [] https://ujdigispace.uj.ac.za/ institutional [] 2022-01-12 15:35:13 2008-06-02 14:14:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "journal_articles"] [{"name": "university of johannesburg", "alternativeName": "uj", "country": "za", "url": "https://www.uj.ac.za/", "identifier": [{"identifier": "https://ror.org/04z6c2n17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ujdigispace.uj.ac.za/oai/request yes 14291 +1249 {"name": "university of limerick institutional repository", "language": "en"} [] https://ulir.ul.ie/ institutional [] 2022-01-12 15:35:13 2008-05-21 10:10:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "journal_articles"] [{"name": "university of limerick", "alternativeName": "", "country": "ie", "url": "http://www.ul.ie/", "identifier": [{"identifier": "https://ror.org/00a0n9e72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ulir.ul.ie/oai/request yes 4807 9254 +1299 {"name": "boa - bicocca open archive", "language": "en"} [] http://boa.unimib.it/ institutional [] 2022-01-12 15:35:13 2008-08-01 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "universit\u00e0 di milano-bicocca", "alternativeName": "", "country": "it", "url": "http://www.unimib.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://boa.unimib.it/oai/request yes 0 68068 +1319 {"name": "theseus", "language": "en"} [] http://www.theseus.fi/ aggregating [] 2022-01-12 15:35:14 2008-08-14 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ammattikorkeakoulujen rehtorineuvosto (arene the rectors conference of finnish universities of applied sciences)", "alternativeName": "arene ry", "country": "fi", "url": "http://www.arene.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.theseus.fi/oai/request yes 139392 200766 +1326 {"name": "universidad nacional de colombia - repositorio institucional un", "language": "es"} [] https://repositorio.unal.edu.co institutional [] 2022-01-12 15:35:14 2008-09-01 10:10:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad nacional de colombia", "alternativeName": "", "country": "co", "url": "https://unal.edu.co", "identifier": [{"identifier": "https://ror.org/059yx9a68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unal.edu.co/oai/request yes 53573 +1263 {"name": "dugimedia \u2013 universitat de girona", "language": "ca"} [] http://diobma.udg.edu/ institutional [] 2022-01-12 15:35:13 2008-06-23 09:09:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universitat de girona", "alternativeName": "", "country": "es", "url": "http://www.udg.edu/", "identifier": [{"identifier": "https://ror.org/01xdxns91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://diobma.udg.edu/dspace-oai/request yes 4271 +1296 {"name": "national sun yat-sen university institutional repository", "language": "en"} [] http://140.117.120.62:8080/ institutional [] 2022-01-12 15:35:13 2008-07-31 14:14:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national sun yat-sen university", "alternativeName": "\u570b\u7acb\u4e2d\u5c71\u5927\u5b78", "country": "tw", "url": "http://www.oia.nsysu.edu.tw/ocsa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 52911 +1259 {"name": "u-now", "language": "en"} [] https://rdmc.nottingham.ac.uk/handle/internal/79 institutional [] 2022-01-12 15:35:13 2008-06-13 14:14:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 240 +1267 {"name": "mountain scholar", "language": "en"} [] https://mountainscholar.org/ institutional [] 2022-01-12 15:35:13 2008-06-27 16:16:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "colorado state university", "alternativeName": "", "country": "us", "url": "http://www.colostate.edu/", "identifier": [{"identifier": "https://ror.org/03k1gpj17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://mountainscholar.org/oai/ yes 0 74363 +1269 {"name": "auca open electronic library", "language": "en"} [] http://elibrary.auca.kg:8080/dspace/ institutional [] 2022-01-12 15:35:13 2008-07-03 09:09:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "american university of central asia", "alternativeName": "auca", "country": "kg", "url": "http://www.auca.kg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elibrary.auca.kg:8080/dspace-oai/request yes 0 1046 +1287 {"name": "banco internacional de objetos educacionais", "language": "en"} [] http://objetoseducacionais2.mec.gov.br/ disciplinary [] 2022-01-12 15:35:13 2008-07-21 14:14:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "software", "other_special_item_types"] [{"name": "minist\u00e9rio da educa\u00e7\u00e3o", "alternativeName": "", "country": "br", "url": "http://www.mec.gov.br/", "identifier": [{"identifier": "https://ror.org/04d0xx942", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 19842 +1329 {"name": "servicio de difusi\u00f3n de la creaci\u00f3n intelectual", "language": "en"} [{"acronym": "sedici"}] http://sedici.unlp.edu.ar institutional [] 2022-01-12 15:35:14 2008-09-12 14:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional de la plata", "alternativeName": "unlp", "country": "ar", "url": "http://www.unlp.edu.ar", "identifier": [{"identifier": "https://ror.org/01tjs6929", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://sedici.unlp.edu.ar/pages/politicas", "type": "metadata"}, {"policy_url": "http://sedici.unlp.edu.ar/pages/politicas", "type": "data"}, {"policy_url": "http://sedici.unlp.edu.ar/pages/politicas", "type": "content"}, {"policy_url": "http://sedici.unlp.edu.ar/pages/politicas", "type": "submission"}, {"policy_url": "http://sedici.unlp.edu.ar/pages/politicas", "type": "preservation"}] {"name": "dspace", "version": ""} http://sedici.unlp.edu.ar/oai/request yes 44261 +1314 {"name": "csu research output", "language": "en"} [{"acronym": "cro"}] http://researchoutput.csu.edu.au/r?func=search&local_base=gen01-csu01 institutional [] 2022-01-12 15:35:14 2008-08-07 12:12:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "charles sturt university", "alternativeName": "", "country": "au", "url": "http://www.csu.edu.au/", "identifier": [{"identifier": "https://ror.org/00wfvh315", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.csu.edu.au/research/publications/cro/policy.htm", "type": "content"}, {"policy_url": "http://www.csu.edu.au/research/publications/cro/policy.htm", "type": "submission"}] {"name": "digitool", "version": ""} http://digitool.unilinc.edu.au/oai-pub yes 3137 +1243 {"name": "open archive toulouse archive ouverte", "language": "fr"} [{"acronym": "oatao"}] http://oatao.univ-toulouse.fr/ institutional [] 2022-01-12 15:35:12 2008-05-14 16:16:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de toulouse", "alternativeName": "", "country": "fr", "url": "http://www.univ-toulouse.fr/", "identifier": [{"identifier": "https://ror.org/004raaa70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://oatao.univ-toulouse.fr/cgi/oai2 yes 17285 20480 +1281 {"name": "a.n.beketov knume digital repository", "language": "en"} [{"name": "\u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 \u0445\u043d\u0430\u043c\u0433 (kname digital repository)", "language": "uk"}] http://eprints.kname.edu.ua/ institutional [] 2022-01-12 15:35:13 2008-07-16 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "o.m. beketov national university of urban economy in kharkiv", "alternativeName": "o.m. beketov nuue", "country": "ua", "url": "http://www.kname.edu.ua", "identifier": [{"identifier": "https://ror.org/05ws31q32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.kname.edu.ua/cgi/oai2 yes 39707 +1275 {"name": "glasgow theses service", "language": "en"} [] http://theses.gla.ac.uk/ institutional [] 2022-01-12 15:35:13 2008-07-10 09:09:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of glasgow", "alternativeName": "", "country": "gb", "url": "http://www.gla.ac.uk/", "identifier": [{"identifier": "https://ror.org/00vtgdb53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://theses.gla.ac.uk/cgi/oai2 yes 16846 18592 +1289 {"name": "gunadarma university repository", "language": "en"} [] http://repository.gunadarma.ac.id/ institutional [] 2022-01-12 15:35:13 2008-07-29 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "gunadarma university", "alternativeName": "", "country": "id", "url": "http://www.gunadarma.ac.id/", "identifier": [{"identifier": "https://ror.org/0028q1g19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.gunadarma.ac.id/cgi/oai2 yes 1953 +1246 {"name": "sabanci university research database", "language": "en"} [] http://research.sabanciuniv.edu/ institutional [] 2022-01-12 15:35:13 2008-05-16 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "sabanci university", "alternativeName": "", "country": "tr", "url": "http://www.sabanciuniv.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://research.sabanciuniv.edu/cgi/oai2 yes 27515 +1288 {"name": "warwick research archives portal repository", "language": "en"} [{"acronym": "wrap"}] http://wrap.warwick.ac.uk/ institutional [] 2022-01-12 15:35:13 2008-07-29 10:10:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of warwick", "alternativeName": "", "country": "gb", "url": "http://www2.warwick.ac.uk/", "identifier": [{"identifier": "https://ror.org/01a77tt86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www2.warwick.ac.uk/services/library/main/research/instrep/wrap_policy/#metadata", "type": "metadata"}, {"policy_url": "http://www2.warwick.ac.uk/services/library/main/research/instrep/wrap_policy/#data", "type": "data"}, {"policy_url": "http://www2.warwick.ac.uk/services/library/main/research/instrep/wrap_policy/#content", "type": "content"}, {"policy_url": "http://www2.warwick.ac.uk/services/library/main/research/instrep/wrap_policy/#submission", "type": "submission"}, {"policy_url": "http://www2.warwick.ac.uk/services/library/main/research/instrep/wrap_policy/#preservation", "type": "preservation"}] {"name": "eprints", "version": ""} http://wrap.warwick.ac.uk/cgi/oai2 yes 52187 +1336 {"name": "lietuvos elektronin\u0117s tez\u0117s ir disertacijos", "language": "en"} [{"acronym": "etd"}] http://etd.library.lt/ institutional [] 2022-01-12 15:35:14 2008-09-18 13:13:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "elaba konsorciumas", "alternativeName": "", "country": "lt", "url": "https://www.elaba.lt/elaba-portal/konsorciumas", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 22461 +1338 {"name": "lietuvos akademin\u0117 elektronin\u0117 biblioteka elaba", "language": "en"} [{"acronym": "elaba"}] http://elaba.lvb.lt/ institutional [] 2022-01-12 15:35:14 2008-09-18 13:13:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "elaba konsorciumas", "alternativeName": "", "country": "lt", "url": "https://www.elaba.lt/elaba-portal/konsorciumas", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://oai.elaba.lt/ yes 5545 +1320 {"name": "red island repository", "language": "en"} [] http://vre2.upei.ca/riri/fedora/repository/ institutional [] 2022-01-12 15:35:14 2008-08-21 14:14:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "university of prince edward island", "alternativeName": "upei", "country": "ca", "url": "http://www.upei.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 13 +1342 {"name": "mymanuskrip: digital library of malay manuscripts (pustaka digital manskrip melayu)", "language": "en"} [] http://mymanuskrip.fsktm.um.edu.my/greenstone/cgi-bin/library.exe institutional [] 2022-01-12 15:35:14 2008-09-22 14:14:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of malaya", "alternativeName": "um", "country": "my", "url": "http://www.um.edu.my/", "identifier": [{"identifier": "https://ror.org/00rzspn62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 179 +1344 {"name": "books from the past (llyfrau or gorffennol)", "language": "en"} [] http://www.booksfromthepast.org/ disciplinary [] 2022-01-12 15:35:14 2008-09-23 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "welsh books council (cyngor llyfrau cymru)", "alternativeName": "", "country": "gb", "url": "http://www.cllc.org.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 23 +1293 {"name": "deposit::hagen", "language": "en"} [] https://ub-deposit.fernuni-hagen.de/content/index.xml institutional [] 2022-01-12 15:35:13 2008-07-30 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "fernuniversit\u00e4t hagen", "alternativeName": "", "country": "de", "url": "http://www.fernuni-hagen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} http://deposit.fernuni-hagen.de/cgi/oai2 yes 742 18 +1248 {"name": "arrow@tu dublin", "language": "en"} [] https://arrow.tudublin.ie institutional [] 2022-01-12 15:35:13 2008-05-21 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "technological university dublin", "alternativeName": "tu dublin", "country": "ie", "url": "http://www.dit.ie", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://arrow.dit.ie/policies.html", "type": "data"}, {"policy_url": "http://arrow.dit.ie/policies.html", "type": "content"}, {"policy_url": "http://arrow.dit.ie/policies.html", "type": "submission"}] {"name": "other", "version": ""} yes 12225 +1234 {"name": "wsu research exchange", "language": "en"} [] https://rex.libraries.wsu.edu/esploro institutional [] 2022-01-12 15:35:12 2008-05-02 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "washington state university", "alternativeName": "wsu", "country": "us", "url": "https://wsu.edu", "identifier": [{"identifier": "https://ror.org/05dk0ce17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 0 17668 +1247 {"name": "atat\u00fcrk \u00fcniversitesi a\u00e7\u0131k ar\u015fivi", "language": "en"} [] http://acikarsiv.atauni.edu.tr/ institutional [] 2022-01-12 15:35:13 2008-05-21 09:09:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "theses_and_dissertations", "conference_and_workshop_papers", "journal_articles", "other_special_item_types"] [{"name": "atat\u00fcrk university", "alternativeName": "", "country": "tr", "url": "http://www.atauni.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 622 +1334 {"name": "repository@napier", "language": "en"} [] http://www.napier.ac.uk/research-and-innovation/repository institutional [] 2022-01-12 15:35:14 2008-09-18 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "edinburgh napier university", "alternativeName": "", "country": "gb", "url": "https://www.napier.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://napier-surface.worktribe.com/oaiprovider yes 3775 11416 +1286 {"name": "newi research online", "language": "en"} [] http://epubs.newi.ac.uk/ institutional [] 2022-01-12 15:35:13 2008-07-18 15:15:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "glynd\u0175r university", "alternativeName": "(formerly newi)", "country": "gb", "url": "http://www.newi.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1 +1241 {"name": "uhi research repository", "language": "en"} [] https://pure.uhi.ac.uk institutional [] 2022-01-12 15:35:12 2008-05-14 09:09:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of the highlands and islands", "alternativeName": "", "country": "gb", "url": "http://www.uhi.ac.uk/en", "identifier": [{"identifier": "https://ror.org/02s08xt61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pureadmin.uhi.ac.uk/ws/oai yes 5797 +1266 {"name": "vbn", "language": "en"} [] http://vbn.aau.dk/ institutional [] 2022-01-12 15:35:13 2008-06-24 09:09:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "aalborg universitet", "alternativeName": "", "country": "dk", "url": "http://www.aau.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://vbn.aau.dk/ws/oaihandler yes 21433 144966 +1237 {"name": "scholars mine", "language": "en"} [] http://scholarsmine.mst.edu/ institutional [] 2022-01-12 15:35:12 2008-05-12 15:15:18 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "missouri university of science and technology", "alternativeName": "mst", "country": "us", "url": "http://www.mst.edu/", "identifier": [{"identifier": "https://ror.org/00scwqd12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libguides.mst.edu/scholarsmine/supportdocuments", "type": "data"}, {"policy_url": "http://scholarsmine.mst.edu/about/institutional_repository/guidelines.html", "type": "submission"}, {"policy_url": "http://libguides.mst.edu/scholarsmine/supportdocuments", "type": "preservation"}] {"name": "digital_commons", "version": ""} yes 1113 +1348 {"name": "ahkrc digital library", "language": "en"} [] http://www.ahkrc.org/archives.html institutional [] 2022-01-12 15:35:14 2008-09-23 11:11:27 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "national rural support programme", "alternativeName": "nrsp", "country": "pk", "url": "http://nrsp.org.pk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +1244 {"name": "centro virtual de informacion cvi iica oficina en colombia", "language": "en"} [] http://zeus.iica.ac.cr:8090/dspace/ institutional [] 2022-01-12 15:35:12 2008-05-14 16:16:11 ["science"] ["unpub_reports_and_working_papers"] [{"name": "instituto interamericano de cooperaci\u00f3n para la agricultura iica oficina en colombia", "alternativeName": "", "country": "co", "url": "http://www.iica.int/colombia", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://zeus.iica.ac.cr:8090/dspace-oai/request yes 247 +1283 {"name": "scientific open-access literature archive and repository", "language": "en"} [{"acronym": "solar"}] http://eprints.bice.rm.cnr.it/ institutional [] 2022-01-12 15:35:13 2008-07-17 13:13:44 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "consiglio nazionale delle ricerche", "alternativeName": "cnr", "country": "it", "url": "http://www.cnr.it/sitocnr/home.html", "identifier": [{"identifier": "https://ror.org/04zaypm56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.bice.rm.cnr.it/cgi/oai2 yes 8411 14049 +1280 {"name": "eprints@sbt mku", "language": "en"} [] http://eprints.bicmku.in/ institutional [] 2022-01-12 15:35:13 2008-07-16 10:10:46 ["science"] ["journal_articles"] [{"name": "madurai kamaraj university", "alternativeName": "mku", "country": "in", "url": "http://www.mkuniversity.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.bicmku.in/cgi/oai2 yes 0 89 +1261 {"name": "archivio istituzionale della ricerca air - universit\u00e0 degli studi di milano", "language": "it"} [] https://air.unimi.it institutional [] 2022-01-14 11:53:08 2008-06-19 10:10:54 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di milano", "alternativeName": "unimi", "country": "it", "url": "http://www.unimi.it", "identifier": [{"identifier": "https://ror.org/00wjc7c48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://air.unimi.it/sr/static/policy_di_air.htm", "type": "metadata"}, {"policy_url": "https://air.unimi.it/sr/static/policy_di_air.htm", "type": "data"}, {"policy_url": "https://air.unimi.it/sr/static/policy_di_air.htm", "type": "content"}, {"policy_url": "https://air.unimi.it/sr/static/policy_di_air.htm", "type": "submission"}, {"policy_url": "https://air.unimi.it/sr/static/policy_di_air.htm", "type": "preservation"}] {"name": "dspace", "version": ""} yes 29673 258781 +1347 {"name": "biblioteca digital por la identidad", "language": "en"} [] http://conadi.jus.gov.ar/gsdl/cgi-bin/library disciplinary [] 2022-01-12 15:35:14 2008-09-23 11:11:18 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "comisi\u00f3n nacional por el derecho a la identidad", "alternativeName": "conadi", "country": "ar", "url": "http://conadi.jus.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +1282 {"name": "metropolitan travel survey archive", "language": "en"} [] http://www.surveyarchive.org/ disciplinary [] 2022-01-12 15:35:13 2008-07-17 13:13:36 ["social sciences"] ["datasets", "other_special_item_types"] [{"name": "university of minnesota", "alternativeName": "u of m", "country": "us", "url": "http://www.umn.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1303 {"name": "digital archive of literacy narratives", "language": "en"} [{"acronym": "daln"}] http://www.thedaln.org institutional [] 2022-01-12 15:35:14 2008-08-01 13:13:57 ["social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ohio state university", "alternativeName": "", "country": "us", "url": "http://www.osu.edu/", "identifier": [{"identifier": "https://ror.org/00rs6vg23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 0 7172 +1297 {"name": "korea institute of international economic policy repository", "language": "en"} [] http://dl.kiep.go.kr/pop/search/search.ax?sid=9 institutional [] 2022-01-12 15:35:13 2008-07-31 14:14:21 ["social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "korea institute of international economic policy (kiep)", "alternativeName": "", "country": "kr", "url": "http://www.kiep.go.kr/eng/", "identifier": [{"identifier": "https://ror.org/04vtz2g46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 75160 +1277 {"name": "biblioteca digital do senado federal", "language": "en"} [{"acronym": "bdsf"}] http://www2.senado.gov.br/bdsf/ governmental [] 2022-01-12 15:35:13 2008-07-11 13:13:03 ["social sciences"] ["other_special_item_types"] [{"name": "senado federal", "alternativeName": "", "country": "br", "url": "http://www.senado.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 275112 +1278 {"name": "pedagogical documents", "language": "en"} [{"acronym": "pedocs"}] http://www.pedocs.de/ disciplinary [] 2022-01-12 15:35:13 2008-07-14 10:10:15 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "leibniz-institut f\u00fcr bildungsforschung und bildungsinformation", "alternativeName": "dipf", "country": "de", "url": "https://www.dipf.de", "identifier": [{"identifier": "https://ror.org/0327sr118", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.pedocs.de/leitlinien.php?la=en", "type": "content"}] {"name": "other", "version": ""} http://www.pedocs.de/oai2/oai2.php yes 13070 +1318 {"name": "open repository and bibliography - university of li\u00e8ge", "language": "en"} [{"acronym": "orbi"}] https://orbi.uliege.be/ institutional [] 2022-01-12 15:35:14 2008-08-12 10:10:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de li\u00e8ge", "alternativeName": "uli\u00e8ge", "country": "be", "url": "https://www.uliege.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://orbi.uliege.be/project?locale=en&id=103#oblig", "type": "content"}, {"policy_url": "https://orbi.uliege.be/project?locale=en&id=103#oblig", "type": "submission"}] {"name": "dspace", "version": ""} https://orbi.uliege.be/oai/request yes 35356 196046 +1255 {"name": "biblioteca digital do ipb", "language": "en"} [] http://bibliotecadigital.ipb.pt/ institutional [] 2022-01-12 15:35:13 2008-06-03 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types", "books_chapters_and_sections", "theses_and_dissertations", "conference_and_workshop_papers", "journal_articles"] [{"name": "instituto polit\u00e9cnico de bragan\u00e7a", "alternativeName": "ipb", "country": "pt", "url": "http://www.ipb.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ipb.pt/go/i090", "type": "metadata"}, {"policy_url": "http://www.ipb.pt/go/i090", "type": "content"}, {"policy_url": "http://www.ipb.pt/go/i090", "type": "submission"}] {"name": "dspace", "version": ""} http://bibliotecadigital.ipb.pt/oaiextended/request yes 15856 +1328 {"name": "kent academic repository", "language": "en"} [{"acronym": "kar"}] https://kar.kent.ac.uk institutional [] 2022-01-12 15:35:14 2008-09-11 15:15:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of kent", "alternativeName": "", "country": "gb", "url": "http://www.kent.ac.uk/", "identifier": [{"identifier": "https://ror.org/00xkeyj56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.kent.ac.uk/library/research/docs/kar%20policies.pdf", "type": "metadata"}, {"policy_url": "https://www.kent.ac.uk/library/research/docs/kar%20policies.pdf", "type": "data"}, {"policy_url": "https://www.kent.ac.uk/library/research/docs/kar%20policies.pdf", "type": "content"}, {"policy_url": "https://www.kent.ac.uk/library/research/docs/kar%20policies.pdf", "type": "submission"}, {"policy_url": "https://www.kent.ac.uk/library/research/docs/kar%20policies.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} https://kar.kent.ac.uk/cgi/oai2 yes 15000 61159 +1235 {"name": "macquarie university researchonline", "language": "en"} [] http://www.researchonline.mq.edu.au/vital/access/manager/index institutional [] 2022-01-12 15:35:12 2008-05-08 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "macquarie university", "alternativeName": "", "country": "au", "url": "http://www.mq.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://http://www.researchonline.mq.edu.au/vital/access/manager/termsandconditions", "type": "metadata"}] {"name": "vital", "version": ""} http://www.researchonline.mq.edu.au/vital/oai/provider yes 0 71180 +1301 {"name": "core scholar", "language": "en"} [] https://corescholar.libraries.wright.edu institutional [] 2022-01-12 15:35:14 2008-08-01 13:13:48 ["arts"] ["journal_articles", "other_special_item_types"] [{"name": "wright state university", "alternativeName": "", "country": "us", "url": "http://www.wright.edu/", "identifier": [{"identifier": "https://ror.org/04qk6pt94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://corescholar.libraries.wright.edu/content_guidelines.html", "type": "content"}, {"policy_url": "http://corescholar.libraries.wright.edu/content_guidelines.html", "type": "submission"}] {"name": "digital_commons", "version": ""} https://corescholar.libraries.wright.edu/do/oai yes 7162 50115 +1291 {"name": "repositorio digital de la universidad polit\u00e9cnica de cartagena", "language": "en"} [{"acronym": "repositorio digital upct"}] http://repositorio.upct.es/ institutional [] 2022-01-12 15:35:13 2008-07-29 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad polit\u00e9cnica de cartagena", "alternativeName": "upct", "country": "es", "url": "http://www.upct.es/", "identifier": [{"identifier": "https://ror.org/02k5kx966", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upct.es/oai/request yes 1195 8942 +1236 {"name": "radboud repository", "language": "en"} [] https://repository.ubn.ru.nl institutional [] 2022-01-12 15:35:12 2008-05-12 11:11:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "radboud university nijmegen", "alternativeName": "", "country": "nl", "url": "http://www.ru.nl/", "identifier": [{"identifier": "https://ror.org/016xsfp80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.ubn.ru.nl/page/termsofuse", "type": "data"}] {"name": "dspace", "version": ""} https://repository.ubn.ru.nl/oai/request yes 47991 206953 +1312 {"name": "usc research bank - university of the sunshine coast", "language": "en"} [] http://research.usc.edu.au/ institutional [] 2022-01-12 15:35:14 2008-08-07 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of the sunshine coast", "alternativeName": "", "country": "au", "url": "http://www.usc.edu.au/", "identifier": [{"identifier": "https://ror.org/016gb9e15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://research.usc.edu.au/vital/access/manager/about", "type": "content"}, {"policy_url": "http://research.usc.edu.au/vital/access/manager/about", "type": "submission"}] {"name": "vital", "version": ""} http://research.usc.edu.au/fedora/oai yes 7 28663 +1311 {"name": "university of newcastles digital repository", "language": "en"} [{"acronym": "nova"}] https://nova.newcastle.edu.au institutional [] 2022-01-12 15:35:14 2008-08-07 11:11:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "the university of newcastle, australia", "alternativeName": "", "country": "au", "url": "https://www.newcastle.edu.au", "identifier": [{"identifier": "https://ror.org/00eae9z71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://nova.newcastle.edu.au/vital/access/manager/copyright", "type": "metadata"}, {"policy_url": "https://nova.newcastle.edu.au/vital/access/manager/copyright", "type": "content"}, {"policy_url": "https://nova.newcastle.edu.au/vital/access/manager/copyright", "type": "submission"}, {"policy_url": "https://nova.newcastle.edu.au/vital/access/manager/deposit", "type": "submission"}, {"policy_url": "https://policies.newcastle.edu.au/document/view-current.php?id=81", "type": "preservation"}] {"name": "vital", "version": ""} https://nova.newcastle.edu.au/oaiprovider yes 42 31060 +1264 {"name": "dugidocs \u2013 universitat de girona", "language": "ca"} [] https://dugi-doc.udg.edu/ institutional [] 2022-01-12 15:35:13 2008-06-23 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universitat de girona", "alternativeName": "", "country": "es", "url": "http://www.udg.edu/", "identifier": [{"identifier": "https://ror.org/01xdxns91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://hdl.handle.net/10256/19578", "type": "content"}, {"policy_url": "http://hdl.handle.net/10256/19578", "type": "submission"}] {"name": "dspace", "version": ""} https://dugi-doc.udg.edu/dspace-oai/request yes 5533 15111 +1272 {"name": "social science open access repository", "language": "en"} [{"acronym": "ssoar"}] https://www.gesis.org/ssoar/home/ disciplinary [] 2022-01-12 15:35:13 2008-07-07 15:15:14 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "gesis", "alternativeName": "leibniz institute for social sciences", "country": "de", "url": "http://www.gesis.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.gesis.org/en/ssoar/home/guidelines", "type": "data"}, {"policy_url": "https://www.gesis.org/en/ssoar/home/guidelines", "type": "content"}, {"policy_url": "https://www.gesis.org/en/ssoar/home/guidelines", "type": "submission"}, {"policy_url": "https://www.gesis.org/en/ssoar/home/guidelines", "type": "preservation"}] {"name": "dspace", "version": ""} https://www.ssoar.info/oaihandler/request yes 53328 62161 +1253 {"name": "archivio ricerca cafoscari", "language": "en"} [{"acronym": "arca"}] http://arca.unive.it/ institutional [] 2022-01-12 15:35:13 2008-06-02 14:14:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 cafoscari venezia", "alternativeName": "", "country": "it", "url": "https://www.unive.it", "identifier": [{"identifier": "https://ror.org/04yzxz566", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.unive.it/pag/8254/", "type": "metadata"}, {"policy_url": "https://www.unive.it/pag/8254/", "type": "data"}, {"policy_url": "https://www.unive.it/pag/8254/", "type": "content"}, {"policy_url": "https://www.unive.it/pag/8254/", "type": "submission"}, {"policy_url": "https://www.unive.it/pag/8254/", "type": "preservation"}] {"name": "dspace", "version": ""} https://arca.unive.it/oai/request yes 2719 55972 +1232 {"name": "biblioteca virtual del patrimonio bibliogr\u00e1fico (virtual library of bibliographical heritage)", "language": "en"} [] http://bvpb.mcu.es/es/estaticos/contenido.cmd?pagina=estaticos/presentacion disciplinary [] 2022-01-12 15:35:12 2008-04-24 16:16:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "ministerio de cultura", "alternativeName": "", "country": "es", "url": "http://www.mecd.gob.es/portada-mecd/", "identifier": [{"identifier": "https://ror.org/03nc27g21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bvpb.mcu.es", "type": "content"}] {"name": "digibib", "version": ""} http://bvpb.mcu.es/i18n/oai/oai.cmd yes 46105 117848 +1251 {"name": "nectar", "language": "en"} [] http://nectar.northampton.ac.uk/ institutional [] 2022-01-12 15:35:13 2008-05-21 10:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of northampton", "alternativeName": "", "country": "gb", "url": "http://www.northampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/04jp2hx10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://nectar.northampton.ac.uk/information.html#policies", "type": "metadata"}, {"policy_url": "http://nectar.northampton.ac.uk/information.html#policies", "type": "data"}, {"policy_url": "http://nectar.northampton.ac.uk/information.html#policies", "type": "content"}, {"policy_url": "http://nectar.northampton.ac.uk/information.html#policies", "type": "submission"}, {"policy_url": "http://nectar.northampton.ac.uk/information.html#policies", "type": "preservation"}] {"name": "eprints", "version": ""} http://nectar.northampton.ac.uk/cgi/oai2 yes 2240 10290 +1292 {"name": "university of liverpool repository", "language": "en"} [] https://livrepository.liverpool.ac.uk/ institutional [] 2022-01-12 15:35:13 2008-07-30 09:09:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "university of liverpool", "alternativeName": "", "country": "gb", "url": "http://www.liverpool.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://livrepository.liverpool.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "https://livrepository.liverpool.ac.uk/policies.html", "type": "data"}, {"policy_url": "https://livrepository.liverpool.ac.uk/policies.html", "type": "content"}, {"policy_url": "https://livrepository.liverpool.ac.uk/policies.html", "type": "submission"}, {"policy_url": "https://livrepository.liverpool.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://livrepository.liverpool.ac.uk/cgi/oai2 yes 18498 36281 +1420 {"name": "repositorio institucional de asturias", "language": "en"} [{"acronym": "ria"}] http://ria.asturias.es/ governmental [] 2022-01-12 15:35:15 2009-01-19 11:11:11 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "gobierno del principado de asturias", "alternativeName": "", "country": "es", "url": "http://www.asturias.es/", "identifier": [{"identifier": "https://ror.org/05mj4yh71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ria.asturias.es/dspace-oai/request yes 2292 +1422 {"name": "digital karnak", "language": "en"} [] http://dlib.etc.ucla.edu/projects/karnak/ disciplinary [] 2022-01-12 15:35:15 2009-01-28 09:09:41 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of california", "alternativeName": "", "country": "us", "url": "http://www.universityofcalifornia.edu/", "identifier": [{"identifier": "https://ror.org/00pjdza24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1369 {"name": "collections online", "language": "en"} [] http://www.metmuseum.org/collection/the-collection-online/ institutional [] 2022-01-12 15:35:15 2008-10-07 11:11:27 ["arts", "humanities"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "metropolitan museum of art", "alternativeName": "", "country": "us", "url": "http://www.metmuseum.org/", "identifier": [{"identifier": "https://ror.org/03cm0t424", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.metmuseum.org/research/image-resources/frequently-asked-questions", "type": "metadata"}, {"policy_url": "http://www.metmuseum.org/information/terms-and-conditions", "type": "data"}, {"policy_url": "http://www.metmuseum.org/research/image-resources/frequently-asked-questions", "type": "content"}] {"name": "", "version": ""} yes 423293 +1438 {"name": "repositorio de la facultad de filosof\u00eda y letras", "language": "en"} [{"acronym": "ru-ffyl"}] http://ru.ffyl.unam.mx:8080/jspui/ institutional [] 2022-01-12 15:35:16 2009-02-03 14:14:09 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ru.ffyl.unam.mx:8080/oai/request yes 32 100 +1397 {"name": "d\u00e9p\u00f4t universitaire de m\u00e9moires apr\u00e8s soutenance", "language": "en"} [{"acronym": "dumas"}] http://dumas.ccsd.cnrs.fr/ institutional [] 2022-01-12 15:35:15 2008-11-26 09:09:58 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "universit\u00e9 pierre-mend\u00e8s-france", "alternativeName": "", "country": "fr", "url": "http://www.upmf-grenoble.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} http://api.archives-ouvertes.fr/oai/hal/ yes 0 19292 +1360 {"name": "foundation literature online", "language": "en"} [{"acronym": "folio"}] https://folio.iupui.edu/ institutional [] 2022-01-12 15:35:14 2008-09-30 10:10:03 ["arts", "science", "humanities", "social sciences", "health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "indiana university - purdue university, indianapolis", "alternativeName": "iupui", "country": "us", "url": "http://www.iupui.edu/", "identifier": [{"identifier": "https://ror.org/05gxnyn08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://folio.iupui.edu/copyright", "type": "submission"}, {"policy_url": "https://folio.iupui.edu/withdrawal", "type": "preservation"}] {"name": "", "version": ""} yes 1268 +1394 {"name": "biee dspace", "language": "en"} [] http://bieec.epn.edu.ec:8180/dspace/ institutional [] 2022-01-12 15:35:15 2008-11-20 09:09:56 ["engineering"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "escuela politecnica nacional", "alternativeName": "", "country": "ec", "url": "http://www.epn.edu.ec/", "identifier": [{"identifier": "https://ror.org/01gb99w41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bieec.epn.edu.ec:8180/dspace-oai/request yes 961 +1409 {"name": "digital knowledge repository of central drug research institute", "language": "en"} [{"acronym": "dkr@cdri"}] http://dkr.cdri.res.in/xmlui/ institutional [] 2022-01-12 15:35:15 2008-12-09 10:10:59 ["health and medicine", "science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "central drug research institute", "alternativeName": "cdri", "country": "in", "url": "http://www.cdriindia.org/home.asp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dkr.cdri.res.in:8080/dspace-oai/request yes 0 1140 +1455 {"name": "lenus the irish health repository", "language": "en"} [] http://www.lenus.ie/hse disciplinary [] 2022-01-12 15:35:16 2009-02-26 13:13:22 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "health service executive", "alternativeName": "hse", "country": "ie", "url": "http://www.hse.ie", "identifier": [{"identifier": "https://ror.org/04zke5364", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.lenus.ie/hse/oai/request yes 28276 +1398 {"name": "hal-inserm", "language": "en"} [] http://www.hal.inserm.fr/ institutional [] 2022-01-12 15:35:15 2008-11-27 09:09:55 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "institut national de la sant\u00e9 et la recherche m\u00e9dicale", "alternativeName": "inserm", "country": "fr", "url": "http://www.inserm.fr/fr/home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/inserm yes 0 49720 +1440 {"name": "electronic gateway for icelandic literature", "language": "en"} [{"acronym": "egil"}] http://www.egil.nottingham.ac.uk/ disciplinary [] 2022-01-12 15:35:16 2009-02-03 15:15:20 ["humanities", "arts"] ["books_chapters_and_sections"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 11 +1417 {"name": "faculty scholarship at the claremont colleges", "language": "en"} [] http://ccdl.libraries.claremont.edu/collection.php?alias=irw institutional [] 2022-01-12 15:35:15 2009-01-13 13:13:23 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "claremont university consortium", "alternativeName": "", "country": "us", "url": "http://www.cuc.claremont.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ccdl.libraries.claremont.edu/ yes +1410 {"name": "first world war poetry digital archive", "language": "en"} [] http://www.oucs.ox.ac.uk/ww1lit/ disciplinary [] 2022-01-12 15:35:15 2008-12-11 11:11:08 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of oxford", "alternativeName": "", "country": "gb", "url": "http://www.ox.ac.uk/", "identifier": [{"identifier": "https://ror.org/052gg0110", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 7000 +1353 {"name": "our homes are bleeding (nos foyers saignent)", "language": "en"} [] http://www.ubcic.bc.ca/resources/ourhomesare/index.html disciplinary [] 2022-01-12 15:35:14 2008-09-23 15:15:10 ["humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "union of bc indian chiefs", "alternativeName": "", "country": "ca", "url": "http://www.ubcic.bc.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +1354 {"name": "black abolitionist archive", "language": "en"} [] http://research.udmercy.edu/find/special_collections/digital/baa/index.php disciplinary [] 2022-01-12 15:35:14 2008-09-23 15:15:33 ["humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of detroit mercy", "alternativeName": "", "country": "us", "url": "http://www.udmercy.edu/", "identifier": [{"identifier": "https://ror.org/0037qsh65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 2385 +1361 {"name": "digital library", "language": "en"} [] http://hrc.nabrk.kz governmental [] 2022-01-12 15:35:14 2008-09-30 15:15:55 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "unesco - kazakhstan", "alternativeName": "", "country": "kz", "url": "http://www.unesco.kz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +1377 {"name": "codices electronici sangallenses", "language": "en"} [{"acronym": "cesg"}] http://www.cesg.unifr.ch/de/index.htm institutional [] 2022-01-12 15:35:15 2008-10-23 11:11:07 ["humanities"] ["books_chapters_and_sections"] [{"name": "stiftsbibliothek st. gallen", "alternativeName": "", "country": "ch", "url": "http://www.stiftsbibliothek.ch/index.asp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 610 +1372 {"name": "geograph british isles", "language": "en"} [] http://www.geograph.org.uk/ disciplinary [] 2022-01-12 15:35:15 2008-10-16 11:11:03 ["humanities"] ["other_special_item_types"] [{"name": "ordnance survey", "alternativeName": "", "country": "gb", "url": "http://www.ordnancesurvey.co.uk/oswebsite/education/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 5819493 +1352 {"name": "fr. edward j. dowling, s.j. marine historical collection", "language": "en"} [{"acronym": "great lakes shipping database"}] http://research.udmercy.edu/find/special_collections/digital/gls/ disciplinary [] 2022-01-12 15:35:14 2008-09-23 14:14:59 ["humanities"] ["bibliographic_references", "other_special_item_types"] [{"name": "university of detroit mercy", "alternativeName": "", "country": "us", "url": "http://www.udmercy.edu/", "identifier": [{"identifier": "https://ror.org/0037qsh65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 232 +1355 {"name": "united nations digital library islamabad", "language": "en"} [] http://library.un.org.pk/gsdl/cgi-bin/library.exe institutional [] 2022-01-12 15:35:14 2008-09-23 16:16:36 ["science", "arts", "humanities", "social sciences", "health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "united nations", "alternativeName": "", "country": "us", "url": "http://www.un.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +1423 {"name": "search4dev", "language": "en"} [] http://www.search4dev.nl/home disciplinary [] 2022-01-12 15:35:15 2009-01-28 09:09:48 ["science", "social sciences", "health and medicine", "technology"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "royal tropical institute", "alternativeName": "kit", "country": "nl", "url": "http://www.kit.nl/", "identifier": [{"identifier": "https://ror.org/01z6bgg93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dare.uva.nl/cgi/arno/oai/dprn yes 2999 +1429 {"name": "university tenaga nasional digital repository", "language": "en"} [{"acronym": "uniten"}] http://dspace.uniten.edu.my/xmlui/ institutional [] 2022-01-12 15:35:15 2009-02-03 10:10:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university tenaga nasional", "alternativeName": "", "country": "my", "url": "http://www.uniten.edu.my/", "identifier": [{"identifier": "https://ror.org/03kxdn807", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4188 +1446 {"name": "state library of massachusetts", "language": "en"} [] http://archives.lib.state.ma.us/ governmental [] 2022-01-12 15:35:16 2009-02-06 11:11:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "commonwealth of massachusetts", "alternativeName": "", "country": "us", "url": "http://www.mass.gov/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 694911 +1451 {"name": "digitallibrary@cusat", "language": "en"} [] http://dspace.cusat.ac.in/jspui/ institutional [] 2022-01-12 15:35:16 2009-02-13 14:14:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "cochin university of science and technology", "alternativeName": "cusat", "country": "in", "url": "http://www.cusat.ac.in/", "identifier": [{"identifier": "https://ror.org/00a4kqq17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 10058 +1408 {"name": "temple university electronic theses and dissertations", "language": "en"} [] https://scholarshare.temple.edu/handle/20.500.12613/11 institutional [] 2022-01-12 15:35:15 2008-12-09 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "temple university", "alternativeName": "", "country": "us", "url": "http://www.temple.edu/", "identifier": [{"identifier": "https://ror.org/00kx1jb78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3023 +1385 {"name": "byu scholarsarchive", "language": "en"} [] http://scholarsarchive.byu.edu/ institutional [] 2022-01-12 15:35:15 2008-11-10 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "brigham young university", "alternativeName": "byu", "country": "us", "url": "http://www.byu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://lib.byu.edu/sites/scholarsarchive/policies-2/", "type": "metadata"}, {"policy_url": "http://lib.byu.edu/sites/scholarsarchive/policies-2/", "type": "content"}, {"policy_url": "http://lib.byu.edu/sites/scholarsarchive/policies-2/", "type": "submission"}, {"policy_url": "http://lib.byu.edu/sites/scholarsarchive/policies-2/", "type": "preservation"}] {"name": "other", "version": ""} yes 33466 +1381 {"name": "biblioteka cyfrowa politechniki krakowskiej (digital library of cracow university of technology)", "language": "en"} [] http://www.biblos.pk.edu.pl/bc institutional [] 2022-01-12 15:35:15 2008-10-27 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "politechnika krakowska (cracow university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pk.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.biblos.pk.edu.pl/dl_copyright", "type": "data"}] {"name": "", "version": ""} yes 2708 +1392 {"name": "digital repository of ntu", "language": "en"} [{"acronym": "dr-ntu"}] https://dr.ntu.edu.sg institutional [] 2022-01-12 15:35:15 2008-11-19 13:13:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "nanyang technological university", "alternativeName": "ntu", "country": "sg", "url": "https://www.ntu.edu.sg", "identifier": [{"identifier": "https://ror.org/02e7b5302", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.ntu.edu.sg/drntu/information", "type": "metadata"}, {"policy_url": "https://libguides.ntu.edu.sg/drntu/about_dr-ntu", "type": "content"}, {"policy_url": "https://libguides.ntu.edu.sg/drntu/deposit_paper", "type": "submission"}] {"name": "dspace", "version": ""} https://dr.ntu.edu.sg/oai/request yes 27382 +1454 {"name": "colecci\u00f3n de tesis digitales", "language": "en"} [{"acronym": "tales"}] http://catarina.udlap.mx/u_dl_a/tales/ institutional [] 2022-01-12 15:35:16 2009-02-24 15:15:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de las am\u00e9ricas puebla", "alternativeName": "udlap", "country": "mx", "url": "http://www.udlap.mx/", "identifier": [{"identifier": "https://ror.org/01s1km724", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 4979 +1414 {"name": "mona online research database", "language": "en"} [] http://mord.mona.uwi.edu/ institutional [] 2022-01-12 15:35:15 2009-01-05 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of the west indies at mona", "alternativeName": "", "country": "jm", "url": "http://www.mona.uwi.edu/", "identifier": [{"identifier": "https://ror.org/03fkc8c64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 13340 +1450 {"name": "addis ababa university libraries electronic thesis and dissertations database", "language": "en"} [{"acronym": "aau-etd"}] http://etd.aau.edu.et/ institutional [] 2022-01-12 15:35:16 2009-02-10 15:15:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "addis ababa university", "alternativeName": "", "country": "et", "url": "http://www.aau.edu.et/", "identifier": [{"identifier": "https://ror.org/038b8e254", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://etd.aau.edu.et/oai/request yes 0 8878 +1444 {"name": "baylor electronically accessible research documents", "language": "en"} [{"acronym": "bear docs"}] https://beardocs.baylor.edu/xmlui institutional [] 2022-01-12 15:35:16 2009-02-05 12:12:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "baylor university", "alternativeName": "", "country": "us", "url": "http://www.baylor.edu/", "identifier": [{"identifier": "https://ror.org/005781934", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://beardocs.baylor.edu/oai/request yes 0 3839 +1399 {"name": "north-west university institutional repository", "language": "en"} [{"acronym": "boloka"}] https://dspace.nwu.ac.za/ institutional [] 2022-01-12 15:35:15 2008-11-27 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "north-west university", "alternativeName": "", "country": "za", "url": "http://www.nwu.ac.za/", "identifier": [{"identifier": "https://ror.org/010f1sq29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nwu.ac.za/oai/request?verb=listidentifiers&metadataprefix=oai_dc yes 80 19799 +1402 {"name": "docta - doctoral theses archive", "language": "en"} [{"acronym": "docta"}] http://tesionline.unicatt.it/ institutional [] 2022-01-12 15:35:15 2008-12-01 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 cattolica del sacro cuore", "alternativeName": "", "country": "it", "url": "http://www.unicattolica.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tesionline.unicatt.it/dspace-oai/request yes 311 1538 +1405 {"name": "electronic archive of ternopil national ivan puluj technical university", "language": "en"} [{"acronym": "elartu"}] http://elartu.tntu.edu.ua/ institutional [] 2022-01-12 15:35:15 2008-12-02 13:13:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "ternopil national ivan puluj technical university", "alternativeName": "tntu", "country": "ua", "url": "http://www.tntu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elartu.tntu.edu.ua/oai/request yes 23817 +1430 {"name": "euskal memoria digitala", "language": "en"} [{"acronym": "emd"}] http://www.memoriadigitalvasca.es/ disciplinary [] 2022-01-12 15:35:15 2009-02-03 11:11:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "sancho el sabio foundation", "alternativeName": "", "country": "es", "url": "http://www.fsancho-sabio.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.memoriadigitalvasca.es/dspace-oai/request yes 108 100 +1434 {"name": "ferris institutional repository", "language": "en"} [{"acronym": "fir: a digital storage space"}] http://fir.ferris.edu:8080/xmlui/ institutional [] 2022-01-12 15:35:16 2009-02-03 13:13:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "ferris state university", "alternativeName": "", "country": "us", "url": "http://www.ferris.edu/", "identifier": [{"identifier": "https://ror.org/00cg1ev32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4912 +1435 {"name": "knowledge, imaginary, discovery, sharing", "language": "en"} [{"acronym": "kids-d"}] http://dl.kids-d.org/ disciplinary [] 2022-01-12 15:35:16 2009-02-03 13:13:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects"] [{"name": "asian institute of technology", "alternativeName": "ait", "country": "th", "url": "http://www.ait.asia/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2115 +1376 {"name": "niscair online periodical repository", "language": "en"} [{"acronym": "nopr"}] http://nopr.niscair.res.in/ institutional [] 2022-01-12 15:35:15 2008-10-23 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "national institute of science communication and information resources", "alternativeName": "niscair", "country": "in", "url": "http://www.niscair.res.in/", "identifier": [{"identifier": "https://ror.org/04v5nnm54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 40470 +1359 {"name": "r-cube", "language": "en"} [{"acronym": "r-cube"}, {"name": "r-cube", "language": "ja"}] http://r-cube.ritsumei.ac.jp/?locale=en institutional [] 2022-01-12 15:35:14 2008-09-29 15:15:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ritsumeikan university", "alternativeName": "", "country": "jp", "url": "http://www.ritsumei.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://r-cube.ritsumei.ac.jp/repo/mmd_api/oai-pmh/ yes 2537 9996 +1375 {"name": "reposit\u00f3rio institucional da universidade de bras\u00edlia", "language": "en"} [{"acronym": "riunb"}] http://repositorio.unb.br/ institutional [] 2022-01-12 15:35:15 2008-10-23 10:10:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidade de bras\u00edlia", "alternativeName": "unb", "country": "br", "url": "http://www.unb.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unb.br/oai/request yes 29162 +1437 {"name": "reposit\u00f3rio da universidade nova de lisboa", "language": "en"} [{"acronym": "run"}] http://run.unl.pt/ institutional [] 2022-01-12 15:35:16 2009-02-03 13:13:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade nova de lisboa", "alternativeName": "unl", "country": "pt", "url": "http://www.unl.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://run.unl.pt/oaiextended/request yes 5014 36202 +1415 {"name": "snu open repository and archive", "language": "en"} [{"acronym": "s-space"}] https://s-space.snu.ac.kr institutional [] 2022-01-12 15:35:15 2009-01-13 09:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "seoul national university", "alternativeName": "\uc11c\uc6b8\ub300\ud559\uad50", "country": "kr", "url": "https://www.snu.ac.kr/index.html", "identifier": [{"identifier": "https://ror.org/04h9pn542", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 80298 +1439 {"name": "biblioteca digital da universidade jean piaget de cabo verde", "language": "en"} [] http://bdigital.cv.unipiaget.org/dspace/ institutional [] 2022-01-12 15:35:16 2009-02-03 15:15:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade jean piaget de cabo verde", "alternativeName": "", "country": "cv", "url": "http://www.unipiaget.cv/", "identifier": [{"identifier": "https://ror.org/036gt0m92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 618 +1427 {"name": "biblioteca virtual puntoedu", "language": "en"} [] http://biblioteca.puntoedu.edu.ar/dspace/ institutional [] 2022-01-12 15:35:15 2009-02-03 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "universidad nacional de rosario", "alternativeName": "", "country": "ar", "url": "http://www.unr.edu.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 482 +1371 {"name": "biblos-e archivo", "language": "en"} [] https://repositorio.uam.es/ institutional [] 2022-01-12 15:35:15 2008-10-16 10:10:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad autonoma de madrid", "alternativeName": "", "country": "es", "url": "http://www.uam.es/ss/satellite/es/home", "identifier": [{"identifier": "https://ror.org/01cby8j38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uam.es/oai/request yes 36085 +1383 {"name": "dukespace", "language": "en"} [] http://dukespace.lib.duke.edu/dspace/ institutional [] 2022-01-12 15:35:15 2008-10-27 14:14:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "duke university", "alternativeName": "", "country": "us", "url": "http://www.duke.edu/", "identifier": [{"identifier": "https://ror.org/00py81415", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dukespace.lib.duke.edu/dspace-oai/request yes 15668 +1412 {"name": "helvia. repositorio institucional de la universidad de c\u00f3rdoba", "language": "en"} [] https://helvia.uco.es/ institutional [] 2022-01-12 15:35:15 2008-12-16 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de c\u00f3rdoba", "alternativeName": "", "country": "es", "url": "http://www.uco.es/", "identifier": [{"identifier": "https://ror.org/05yc77b46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://helvia.uco.es/oai/request yes 7028 20185 +1363 {"name": "university of texas arlington -- institutional repository", "language": "en"} [] https://uta-ir.tdl.org/uta-ir/ institutional [] 2022-01-12 15:35:14 2008-09-30 16:16:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of texas arlington", "alternativeName": "uta", "country": "us", "url": "http://www.uta.edu/uta/", "identifier": [{"identifier": "https://ror.org/019kgqr73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.uta.edu/dspace-oai/request yes 0 21161 +1456 {"name": "vernadsky national library of ukraine", "language": "en"} [{"name": "\u043d\u0430\u0443\u043a\u043e\u0432\u0430 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 \u043f\u0435\u0440\u0456\u043e\u0434\u0438\u0447\u043d\u0438\u0445 \u0432\u0438\u0434\u0430\u043d\u044c \u043d\u0430\u043d \u0443\u043a\u0440\u0430\u0457\u043d\u0438", "language": "uk"}] http://dspace.nbuv.gov.ua/ governmental [] 2022-01-12 15:35:16 2009-02-27 09:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "vernadsky national library of ukraine", "alternativeName": "", "country": "ua", "url": "http://www.nbuv.gov.ua/", "identifier": [{"identifier": "https://ror.org/0593bs311", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nbuv.gov.ua/oai/request yes 130633 161102 +1445 {"name": "b-digital", "language": "en"} [] http://bdigital.ufp.pt/ institutional [] 2022-01-12 15:35:16 2009-02-06 11:11:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade fernando pessoa", "alternativeName": "", "country": "pt", "url": "http://www.ufp.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bdigital.ufp.pt/oaiextended/request yes 4187 8666 +1365 {"name": "dspace digital repository", "language": "en"} [] http://esr.lib.ttu.edu/ institutional [] 2022-01-12 15:35:14 2008-10-01 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "texas tech university", "alternativeName": "ttu", "country": "us", "url": "http://www.ttu.edu/", "identifier": [{"identifier": "https://ror.org/0405mnx93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 500 +1386 {"name": "estia", "language": "en"} [] http://estia.hua.gr/ institutional [] 2022-01-12 15:35:15 2008-11-10 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "harokopion university of athens", "alternativeName": "", "country": "gr", "url": "http://www.hua.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://estia.hua.gr/oaipmh yes 0 100 +1367 {"name": "national chengchi university institutional repository", "language": "en"} [] http://nccur.lib.nccu.edu.tw/ institutional [] 2022-01-12 15:35:14 2008-10-02 10:10:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national chengchi university", "alternativeName": "\u570b\u7acb\u653f\u6cbb\u5927\u5b78", "country": "tw", "url": "http://www.nccu.edu.tw/", "identifier": [{"identifier": "https://ror.org/03rqk8h36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 65676 +1441 {"name": "polyu institutional repository", "language": "en"} [] http://ira.lib.polyu.edu.hk/ institutional [] 2022-01-12 15:35:16 2009-02-05 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "hong kong polytechnic university (\u9999\u6e2f\u7406\u5de5\u5927\u5b78)", "alternativeName": "poly u", "country": "cn", "url": "http://www.polyu.edu.hk/cpa/polyu/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ira.lib.polyu.edu.hk/oai/request yes 4234 83043 +1421 {"name": "research at sofia university", "language": "en"} [] http://research.uni-sofia.bg/ institutional [] 2022-01-12 15:35:15 2009-01-20 16:16:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "sofia university", "alternativeName": "", "country": "bg", "url": "http://www.uni-sofia.bg", "identifier": [{"identifier": "https://ror.org/02jv3k292", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://research.uni-sofia.bg/oai/request yes 827 +1433 {"name": "rhodes college digital repository", "language": "en"} [] http://dam.rhodes.edu:8080/dspace/ institutional [] 2022-01-12 15:35:15 2009-02-03 13:13:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "rhodes college", "alternativeName": "", "country": "us", "url": "http://www.rhodes.edu/", "identifier": [{"identifier": "https://ror.org/049xfwy04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2938 +1388 {"name": "arias montano, repositorio institucional de la universidad de huelva", "language": "en"} [] http://rabida.uhu.es/dspace/ institutional [] 2022-01-12 15:35:15 2008-11-11 13:13:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de huelva", "alternativeName": "", "country": "es", "url": "http://www.uhu.es/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rabida.uhu.es/oai/request yes 4383 18576 +1457 {"name": "helios repository", "language": "en"} [] http://helios-eie.ekt.gr/eie/ institutional [] 2022-01-12 15:35:16 2009-02-27 09:09:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://helios-eie.ekt.gr/oai-driver/request yes 638 4528 +1424 {"name": "king saud university repository", "language": "en"} [] http://repository.ksu.edu.sa/jspui/ institutional [] 2022-01-12 15:35:15 2009-01-30 13:13:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "king saud university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0645\u0644\u0643 \u0633\u0639\u0648\u062f", "country": "sa", "url": "http://ksu.edu.sa/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ksu.edu.sa/oai/request yes 13948 +1406 {"name": "reposit\u00f3rio aberto da universidade do porto", "language": "en"} [] http://repositorio-aberto.up.pt/ institutional [] 2022-01-12 15:35:15 2008-12-04 16:16:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade do porto", "alternativeName": "up", "country": "pt", "url": "http://www.up.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio-aberto.up.pt/oai/ yes 26111 64759 +1443 {"name": "oldenburger online publikations server", "language": "de"} [{"acronym": "/oops/"}, {"name": "oldenburg online publications server", "language": "en"}, {"acronym": "/oops/"}] http://oops.uni-oldenburg.de/ institutional [] 2022-01-12 15:35:16 2009-02-05 11:11:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "carl von ossietzky universit\u00e4t oldenburg", "alternativeName": "", "country": "de", "url": "https://uol.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 7092 +1426 {"name": "hedatuz", "language": "en"} [] http://hedatuz.euskomedia.org/ disciplinary [] 2022-01-12 15:35:15 2009-02-02 13:13:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "euskomedia", "alternativeName": "", "country": "es", "url": "http://www.euskomedia.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://hedatuz.euskomedia.org/cgi/oai2 yes 10570 +1389 {"name": "unissresearch", "language": "en"} [] http://eprints.uniss.it/ institutional [] 2022-01-12 15:35:15 2008-11-12 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di sassari", "alternativeName": "", "country": "it", "url": "http://www.uniss.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uniss.it/cgi/oai2 yes 4892 10613 +1366 {"name": "university of east anglia digital repository", "language": "en"} [] https://ueaeprints.uea.ac.uk/ institutional [] 2022-01-12 15:35:14 2008-10-01 14:14:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of east anglia", "alternativeName": "", "country": "gb", "url": "http://www.uea.ac.uk/", "identifier": [{"identifier": "https://ror.org/026k5mg93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://ueaeprints.uea.ac.uk/cgi/oai2 yes 15087 67350 +1407 {"name": "white rose e-theses online", "language": "en"} [] http://etheses.whiterose.ac.uk/ institutional [] 2022-01-12 15:35:15 2008-12-09 09:09:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "white rose consortium: university of leeds; university of sheffield; university of york", "alternativeName": "", "country": "gb", "url": "http://etheses.whiterose.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etheses.whiterose.ac.uk/cgi/oai2 yes 14573 19165 +1368 {"name": "zhytomyr state university library", "language": "en"} [] http://eprints.zu.edu.ua/ institutional [] 2022-01-12 15:35:14 2008-10-07 11:11:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "\u0436\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0438\u0439 \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u0456\u0432\u0430\u043d\u0430 \u0444\u0440\u0430\u043d\u043a\u0430", "alternativeName": "zhytomyr ivan franko state university", "country": "ua", "url": "http://zu.edu.ua/", "identifier": [{"identifier": "https://ror.org/044ghaj56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.zu.edu.ua/cgi/oai2 yes 21315 +1411 {"name": "wintec research archive", "language": "en"} [] http://researcharchive.wintec.ac.nz/ institutional [] 2022-01-12 15:35:15 2008-12-16 09:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "waikato institute of technology", "alternativeName": "wintec", "country": "nz", "url": "http://www.wintec.ac.nz/", "identifier": [{"identifier": "https://ror.org/02bjhj961", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://researcharchive.wintec.ac.nz/cgi/oai2 yes 1765 5722 +1393 {"name": "uum repository", "language": "en"} [] http://repo.uum.edu.my/ institutional [] 2022-01-12 15:35:15 2008-11-20 09:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universiti utara malaysia", "alternativeName": "", "country": "my", "url": "http://www.uum.edu.my/", "identifier": [{"identifier": "https://ror.org/01ss10648", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.uum.edu.my/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.uum.edu.my/policies.html", "type": "data"}, {"policy_url": "http://eprints.uum.edu.my/policies.html", "type": "content"}, {"policy_url": "http://eprints.uum.edu.my/policies.html", "type": "submission"}, {"policy_url": "http://eprints.uum.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repo.uum.edu.my/cgi/oai2 yes 21216 +1374 {"name": "tuprints", "language": "en"} [] http://tuprints.ulb.tu-darmstadt.de/ institutional [] 2022-01-12 15:35:15 2008-10-21 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "technische universit\u00e4t darmstadt", "alternativeName": "tud", "country": "de", "url": "http://www.ulb.tu-darmstadt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://tuprints.ulb.tu-darmstadt.de/6592/1/leitlinien_tuprints.pdf", "type": "content"}] {"name": "eprints", "version": ""} http://tuprints.ulb.tu-darmstadt.de/cgi/oai2 yes 4089 +1452 {"name": "the orange grove", "language": "en"} [] http://florida.theorangegrove.org/ aggregating [] 2022-01-12 15:35:16 2009-02-16 15:15:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "learning_objects", "other_special_item_types"] [{"name": "florida distance learning consortium", "alternativeName": "", "country": "us", "url": "http://www.distancelearn.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "equella", "version": ""} yes 74967 +1357 {"name": "arafura digital archive (cdu digital library)", "language": "en"} [{"acronym": "arada"}] http://arada.cdu.edu.au/cgi-bin/library disciplinary [] 2022-01-12 15:35:14 2008-09-24 16:16:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "charles darwin university", "alternativeName": "", "country": "au", "url": "http://www.cdu.edu.au/", "identifier": [{"identifier": "https://ror.org/048zcaj52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 36 +1453 {"name": "biprints", "language": "en"} [] http://repositories.ub.uni-bielefeld.de/ institutional [] 2022-01-12 15:35:16 2009-02-19 15:15:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "universit\u00e4t bielefeld", "alternativeName": "", "country": "de", "url": "http://www.uni-bielefeld.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://repositories.ub.uni-bielefeld.de/biprints/oai2/oai2.php yes 3607 +1459 {"name": "digitalcommons@usu", "language": "en"} [] http://digitalcommons.usu.edu/ institutional [] 2022-01-12 15:35:16 2009-03-02 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "utah state university", "alternativeName": "", "country": "us", "url": "http://www.usu.edu/", "identifier": [{"identifier": "https://ror.org/00h6set76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.usu.edu/do/oai/ yes 24192 85767 +1449 {"name": "iowa research online", "language": "en"} [] https://iro.uiowa.edu institutional [] 2022-01-12 15:35:16 2009-02-06 16:16:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "university of iowa", "alternativeName": "", "country": "us", "url": "http://www.uiowa.edu/", "identifier": [{"identifier": "https://ror.org/036jqmy94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 31238 34471 +1403 {"name": "portal de revistas cient\u00edficas complutenses", "language": "en"} [] http://revistas.ucm.es/ institutional [] 2022-01-12 15:35:15 2008-12-01 14:14:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad complutense madrid", "alternativeName": "ucm", "country": "es", "url": "http://www.ucm.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://revistas.ucm.es/index.php/oai/oai/ yes 37135 41794 +1380 {"name": "shizuoka university repository", "language": "en"} [{"acronym": "sure"}, {"name": "\u9759\u5ca1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shizuoka.repo.nii.ac.jp institutional [] 2022-01-12 15:35:15 2008-10-27 09:09:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "shizuoka university", "alternativeName": "", "country": "jp", "url": "http://www.shizuoka.ac.jp/", "identifier": [{"identifier": "https://ror.org/01w6wtk13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shizuoka.repo.nii.ac.jp/oai yes 9362 +1447 {"name": "national institute of fitness and sports in kanoya repository", "language": "en"} [{"acronym": "nifs-k repository"}, {"name": "\u9e7f\u5c4b\u4f53\u80b2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nifs-k.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:16 2009-02-06 11:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national institute of fitness and sports in kanoya", "alternativeName": "", "country": "jp", "url": "http://www.nifs-k.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nifs-k.repo.nii.ac.jp/oai yes 0 878 +1413 {"name": "digital repository of university of zaragoza", "language": "en"} [{"acronym": "zaguan"}] http://zaguan.unizar.es/ institutional [] 2022-01-12 15:35:15 2009-01-05 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of zaragoza", "alternativeName": "", "country": "es", "url": "http://www.unizar.es/", "identifier": [{"identifier": "https://ror.org/012a91z28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes 43722 +1404 {"name": "diposit digital de documents de la uab", "language": "en"} [] http://ddd.uab.cat/ institutional [] 2022-01-12 15:35:15 2008-12-01 15:15:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universitat aut\u00f2noma de barcelona", "alternativeName": "", "country": "es", "url": "http://www.uab.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://ddd.uab.cat/oai2d yes 72925 132167 +1373 {"name": "pubchem", "language": "en"} [] http://pubchem.ncbi.nlm.nih.gov/search/ aggregating [] 2022-01-12 15:35:15 2008-10-17 10:10:23 ["science"] ["datasets"] [{"name": "national library of medicine", "alternativeName": "nlm", "country": "us", "url": "http://www.nlm.nih.gov/", "identifier": [{"identifier": "https://ror.org/0060t0j89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1432 {"name": "archie digital repository", "language": "en"} [] http://www.kumc.edu/archie/ institutional [] 2022-01-12 15:35:15 2009-02-03 13:13:18 ["social sciences", "health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of kansas medical center", "alternativeName": "", "country": "us", "url": "http://www.kumc.edu/", "identifier": [{"identifier": "https://ror.org/036c9yv20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 349 +1442 {"name": "sandra day oconnor college of law faculty scholarship repository", "language": "en"} [] http://apps.law.asu.edu/apps/repository/default.aspx institutional [] 2022-01-12 15:35:16 2009-02-05 11:11:32 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "arizona state university", "alternativeName": "", "country": "us", "url": "http://www.asu.edu/", "identifier": [{"identifier": "https://ror.org/03efmqc40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1396 {"name": "eres digital library", "language": "en"} [] http://eres.architexturez.net/ disciplinary [] 2022-01-12 15:35:15 2008-11-26 09:09:49 ["social sciences"] ["conference_and_workshop_papers"] [{"name": "european real estate society", "alternativeName": "eres", "country": "nl", "url": "http://www.eres.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://eres.architexturez.net/oai-pmh/ yes 5294 +1390 {"name": "scielo social sciences", "language": "en"} [] http://socialsciences.scielo.org/ disciplinary [] 2022-01-12 15:35:15 2008-11-13 09:09:58 ["social sciences"] ["journal_articles"] [{"name": "centro latino-americano e do caribe de informa\u00e7\u00e3o em ci\u00eancias da sa\u00fade", "alternativeName": "bireme", "country": "br", "url": "http://www.bireme.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} yes 120 +1436 {"name": "repositorio institucional del instituto tecnologico de costa rica", "language": "en"} [] http://repositoriotec.tec.ac.cr/ institutional [] 2022-01-12 15:35:16 2009-02-03 13:13:54 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto tecnologico de costa rica", "alternativeName": "", "country": "cr", "url": "http://www.tec.ac.cr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositoriotec.tec.ac.cr/oai/request yes 6781 +1395 {"name": "ceda repository", "language": "en"} [] http://cedadocs.badc.rl.ac.uk/ disciplinary [] 2022-01-12 15:35:15 2008-11-20 10:10:03 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "stfc rutherford appleton laboratory", "alternativeName": "", "country": "gb", "url": "http://www.scitech.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://cedadocs.badc.rl.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://cedadocs.badc.rl.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://cedadocs.badc.rl.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://cedadocs.badc.rl.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://cedadocs.badc.rl.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://cedadocs.badc.rl.ac.uk/cgi/oai2 yes 0 1266 +1370 {"name": "university of hull institutional repository", "language": "en"} [{"acronym": "hydra"}] https://hydra.hull.ac.uk/ institutional [] 2022-01-12 15:35:15 2008-10-15 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of hull", "alternativeName": "", "country": "gb", "url": "http://www2.hull.ac.uk/", "identifier": [{"identifier": "https://ror.org/04nkhwh30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://edocs.hull.ac.uk/muradora/abouttakedown.jsp", "type": "preservation"}] {"name": "other", "version": ""} http://hydra-oai-pmh.hull.ac.uk/ yes 981 1096 +1448 {"name": "northumbria research link", "language": "en"} [{"acronym": "nrl"}] http://nrl.northumbria.ac.uk/ institutional [] 2022-01-12 15:35:16 2009-02-06 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "northumbria university", "alternativeName": "", "country": "gb", "url": "http://www.northumbria.ac.uk/", "identifier": [{"identifier": "https://ror.org/049e6bc10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://nrl.northumbria.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://nrl.northumbria.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://nrl.northumbria.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://nrl.northumbria.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://nrl.northumbria.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://nrl.northumbria.ac.uk/cgi/oai2 yes 13438 37111 +1400 {"name": "archive ouverte unige", "language": "en"} [] https://archive-ouverte.unige.ch/ institutional [] 2022-01-12 15:35:15 2008-11-27 10:10:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de gen\u00e8ve", "alternativeName": "unige", "country": "ch", "url": "http://www.unige.ch/", "identifier": [{"identifier": "https://ror.org/01swzsf04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://archive-ouverte.unige.ch/pages/unige_policies", "type": "metadata"}, {"policy_url": "http://archive-ouverte.unige.ch/pages/unige_policies", "type": "data"}, {"policy_url": "http://archive-ouverte.unige.ch/pages/unige_policies", "type": "content"}, {"policy_url": "http://archive-ouverte.unige.ch/pages/unige_policies", "type": "submission"}, {"policy_url": "http://archive-ouverte.unige.ch/pages/unige_policies", "type": "preservation"}] {"name": "other", "version": ""} https://archive-ouverte.unige.ch/oaiprovider yes 0 96855 +1458 {"name": "digitalni arhiv filozofskog fakulteta u zagrebu", "language": "en"} [] http://darhiv.ffzg.unizg.hr/ institutional [] 2022-01-12 15:35:16 2009-02-27 09:09:42 ["humanities", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://darhiv.ffzg.unizg.hr/policies.html", "type": "metadata"}, {"policy_url": "http://darhiv.ffzg.unizg.hr/policies.html", "type": "data"}, {"policy_url": "http://darhiv.ffzg.unizg.hr/policies.html", "type": "content"}, {"policy_url": "http://darhiv.ffzg.unizg.hr/policies.html", "type": "submission"}, {"policy_url": "http://darhiv.ffzg.unizg.hr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://darhiv.ffzg.hr/cgi/oai2 yes 0 8127 +1358 {"name": "opensiuc", "language": "en"} [] http://opensiuc.lib.siu.edu/ institutional [] 2022-01-12 15:35:14 2008-09-25 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "southern illinois university at carbondale", "alternativeName": "siuc", "country": "us", "url": "http://www.siu.edu/", "identifier": [{"identifier": "https://ror.org/049kefs16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://opensiuc.lib.siu.edu/faq.html", "type": "submission"}, {"policy_url": "http://opensiuc.lib.siu.edu/faq.html#faq-6", "type": "preservation"}] {"name": "other", "version": ""} http://opensiuc.lib.siu.edu/do/oai/ yes 21910 26132 +1364 {"name": "texas scholarworks", "language": "en"} [] https://repositories.lib.utexas.edu institutional [] 2022-01-12 15:35:14 2008-09-30 16:16:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "the university of texas at austin", "alternativeName": "", "country": "us", "url": "https://www.utexas.edu", "identifier": [{"identifier": "https://ror.org/00hj54h04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositories.lib.utexas.edu/policies_metadata", "type": "metadata"}, {"policy_url": "http://repositories.lib.utexas.edu/policies_collections", "type": "content"}, {"policy_url": "http://repositories.lib.utexas.edu/policies_submission", "type": "submission"}, {"policy_url": "http://repositories.lib.utexas.edu/policies_preservation", "type": "preservation"}] {"name": "dspace", "version": ""} https://repositories.lib.utexas.edu/oai/request yes 9223 70967 +1416 {"name": "open-access collection and electronic archives for academic navigator", "language": "en"} [{"acronym": "\u74b0\u592a\u5e73\u6d0b\u5927\u5b66\u7814\u7a76\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea"}] http://repository.ipu-japan.ac.jp/ institutional [] 2022-01-12 15:35:15 2009-01-13 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "international pacific university", "alternativeName": "ipu", "country": "jp", "url": "http://www.ipu-japan.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.ipu-japan.ac.jp/policies.html", "type": "metadata"}, {"policy_url": "http://repository.ipu-japan.ac.jp/policies.html", "type": "data"}, {"policy_url": "http://repository.ipu-japan.ac.jp/policies.html", "type": "content"}, {"policy_url": "http://repository.ipu-japan.ac.jp/policies.html", "type": "submission"}, {"policy_url": "http://repository.ipu-japan.ac.jp/policies.html", "type": "preservation"}] {"name": "earmas", "version": ""} http://repository.ipu-japan.ac.jp/oai/request yes 233 361 +1425 {"name": "rutgers university community repository", "language": "en"} [{"acronym": "rucore"}] http://rucore.libraries.rutgers.edu/ institutional [] 2022-01-12 15:35:15 2009-02-02 13:13:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "rutgers university", "alternativeName": "", "country": "us", "url": "http://www.rutgers.edu/", "identifier": [{"identifier": "https://ror.org/05vt9qd57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rucore.libraries.rutgers.edu/policies/collections.php", "type": "content"}, {"policy_url": "http://rucore.libraries.rutgers.edu/policies/collections.php", "type": "submission"}, {"policy_url": "http://rucore.libraries.rutgers.edu/policies/collections.php", "type": "preservation"}] {"name": "fedora", "version": ""} http://rucore.libraries.rutgers.edu/api/oai-pmh yes 0 50490 +1428 {"name": "lincoln university research archive", "language": "en"} [] http://researcharchive.lincoln.ac.nz/ institutional [] 2022-01-12 15:35:15 2009-02-03 10:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "lincoln university", "alternativeName": "", "country": "nz", "url": "http://www.lincoln.ac.nz/", "identifier": [{"identifier": "https://ror.org/04ps1r162", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.lincoln.ac.nz/libr/ra/rights.htm", "type": "data"}, {"policy_url": "http://www.lincoln.ac.nz/libr/ra/policy.pdf", "type": "content"}, {"policy_url": "http://www.lincoln.ac.nz/libr/ra/licence.htm", "type": "submission"}, {"policy_url": "http://www.lincoln.ac.nz/libr/ra/licence.htm", "type": "preservation"}] {"name": "dspace", "version": ""} http://researcharchive.lincoln.ac.nz/dspace-oai/request yes 5339 6554 +1418 {"name": "nano archive", "language": "en"} [] http://www.nanoarchive.org/ disciplinary [] 2022-01-12 15:35:15 2009-01-14 13:13:04 ["health and medicine", "science", "technology", "engineering"] ["journal_articles"] [{"name": "institute of nanotechnology", "alternativeName": "", "country": "gb", "url": "http://www.nano.org.uk/", "identifier": [{"identifier": "https://ror.org/02ma7yv75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.nanoarchive.org/policies.html", "type": "metadata"}, {"policy_url": "http://www.nanoarchive.org/policies.html", "type": "data"}, {"policy_url": "http://www.nanoarchive.org/policies.html", "type": "content"}, {"policy_url": "http://www.nanoarchive.org/policies.html", "type": "submission"}, {"policy_url": "http://www.nanoarchive.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://www.nanoarchive.org/cgi/oai2 yes 0 8987 +1378 {"name": "university of bath research portal", "language": "en"} [] https://researchportal.bath.ac.uk/en/home/index/ institutional [] 2022-01-12 15:35:15 2008-10-23 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "university of bath", "alternativeName": "", "country": "gb", "url": "https://www.bath.ac.uk", "identifier": [{"identifier": "https://ror.org/002h8g185", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.bath.ac.uk/publications/pure-research-repository-guidance-documents/attachments/repository-guidelines.pdf", "type": "metadata"}, {"policy_url": "https://www.bath.ac.uk/publications/pure-research-repository-guidance-documents/attachments/repository-guidelines.pdf", "type": "data"}, {"policy_url": "https://www.bath.ac.uk/publications/pure-research-repository-guidance-documents/attachments/repository-guidelines.pdf", "type": "content"}, {"policy_url": "https://www.bath.ac.uk/publications/pure-research-repository-guidance-documents/attachments/repository-guidelines.pdf", "type": "submission"}, {"policy_url": "https://www.bath.ac.uk/publications/pure-research-repository-guidance-documents/attachments/repository-guidelines.pdf", "type": "preservation"}] {"name": "pure", "version": ""} https://purehost.bath.ac.uk/ws/oai yes 16215 18140 +1391 {"name": "ray - research at york st john", "language": "en"} [] http://ray.yorksj.ac.uk/ institutional [] 2022-01-12 15:35:15 2008-11-17 09:09:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "york st john university", "alternativeName": "", "country": "gb", "url": "https://www.yorksj.ac.uk", "identifier": [{"identifier": "https://ror.org/00z5fkj61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.yorksj.ac.uk/policies-and-documents/library/open-access-policy/", "type": "content"}, {"policy_url": "https://www.yorksj.ac.uk/policies-and-documents/library/open-access-policy/", "type": "submission"}] {"name": "eprints", "version": ""} http://ray.yorksj.ac.uk/cgi/oai2 yes 709 3814 +1401 {"name": "rcsi repository", "language": "en"} [] https://repository.rcsi.com institutional [] 2022-01-12 15:35:15 2008-11-27 15:15:52 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "royal college of surgeons in ireland", "alternativeName": "rcsi", "country": "ie", "url": "http://www.rcsi.ie/", "identifier": [{"identifier": "https://ror.org/01hxy9878", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://epubs.rcsi.ie/policies.html", "type": "data"}, {"policy_url": "http://epubs.rcsi.ie/policies.html", "type": "content"}, {"policy_url": "http://epubs.rcsi.ie/policies.html", "type": "submission"}] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listrecords&metadataprefix=oai_dc&set=portal_747 yes 1522 2216 +1462 {"name": "central economics and mathematics institute ras", "language": "en"} [] http://cemi.socionet.ru/oai/ecoorg_org1/oai.xml institutional [] 2022-01-12 15:35:16 2009-03-04 11:11:24 ["arts", "humanities", "mathematics", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043d\u0430\u0443\u043a", "alternativeName": "russian academy of sciences", "country": "ru", "url": "http://www.ras.ru/", "identifier": [{"identifier": "https://ror.org/05qrfxd25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://cemi.socionet.ru/oai/ecoorg_org1/oai.cgi yes 5672 +1466 {"name": "forced migration online digital library", "language": "en"} [] http://repository.forcedmigration.org/ disciplinary [] 2022-01-12 15:35:16 2009-03-06 13:13:19 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of oxford", "alternativeName": "", "country": "gb", "url": "http://www.ox.ac.uk/", "identifier": [{"identifier": "https://ror.org/052gg0110", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 5744 +1485 {"name": "warwick digital library", "language": "en"} [] http://contentdm.warwick.ac.uk/cdm/ disciplinary [] 2022-01-12 15:35:16 2009-03-24 14:14:40 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of warwick", "alternativeName": "", "country": "gb", "url": "http://www2.warwick.ac.uk/", "identifier": [{"identifier": "https://ror.org/01a77tt86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 10027 +1518 {"name": "language box", "language": "en"} [] http://languagebox.ac.uk/ disciplinary [] 2022-01-12 15:35:17 2009-05-20 19:19:25 ["arts", "humanities"] ["learning_objects", "other_special_item_types"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://languagebox.ac.uk/cgi/oai2 yes 395 1170 +1468 {"name": "repositorio de la asociaci\u00f3n espa\u00f1ola de neuropsiquiatr\u00eda", "language": "en"} [] http://www.aen.es/biblioteca-y-documentacion institutional [] 2022-01-12 15:35:16 2009-03-09 10:10:52 ["health and medicine", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "asociaci\u00f3n espa\u00f1ola de neuropsiquiatr\u00eda", "alternativeName": "", "country": "es", "url": "http://www.aen.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://revistaaen.es/index.php/aen/oai yes 1704 2000 +1555 {"name": "digital collections@kumc", "language": "en"} [{"acronym": "archie"}] http://archie.kumc.edu/ institutional [] 2022-01-12 15:35:17 2009-07-16 10:10:28 ["health and medicine", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of kansas medical center", "alternativeName": "", "country": "us", "url": "http://www.kumc.edu/", "identifier": [{"identifier": "https://ror.org/036c9yv20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1120 +1559 {"name": "publikationsserver des robert koch-instituts", "language": "en"} [] http://edoc.rki.de/ institutional [] 2022-01-12 15:35:17 2009-07-23 11:11:02 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "robert koch-institut", "alternativeName": "", "country": "de", "url": "http://www.rki.de/", "identifier": [{"identifier": "https://ror.org/01k5qnb77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://edoc.rki.de/oai yes 133 8299 +1554 {"name": "unthsc scholarly repository", "language": "en"} [] http://digitalcommons.hsc.unt.edu/ institutional [] 2022-01-12 15:35:17 2009-07-16 10:10:24 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of north texas health science center", "alternativeName": "unthsc", "country": "us", "url": "http://www.hsc.unt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3798 +1511 {"name": "central and eastern european marine repository", "language": "en"} [{"acronym": "ceemar"}] http://www.ceemar.org/dspace/ disciplinary [] 2022-01-12 15:35:17 2009-05-06 14:14:16 ["humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "institute of biology of the southern seas", "alternativeName": "ibss", "country": "ua", "url": "http://ibss.org.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ceemar.org/dspace-oai/request yes 0 1654 +1515 {"name": "koreamed synapse", "language": "en"} [] http://synapse.koreamed.org/ disciplinary [] 2022-01-12 15:35:17 2009-05-12 10:10:01 ["science", "health and medicine"] ["journal_articles"] [{"name": "korean association of medical journal editors (kamje)", "alternativeName": "\ub300\ud55c\uc758\ud559\ud559\uc220\uc9c0\ud3b8\uc9d1\uc778\ud611\uc758\ud68c", "country": "kr", "url": "http://www.kamje.or.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 127 +1475 {"name": "dryad", "language": "en"} [] http://www.datadryad.org/ disciplinary [] 2022-01-12 15:35:16 2009-03-12 10:10:27 ["science", "health and medicine"] ["bibliographic_references", "datasets"] [{"name": "dryad", "alternativeName": "", "country": "us", "url": "http://datadryad.org/pages/members", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://wiki.datadryad.org/policies", "type": "metadata"}, {"policy_url": "http://wiki.datadryad.org/policies", "type": "data"}, {"policy_url": "http://wiki.datadryad.org/policies", "type": "content"}, {"policy_url": "http://wiki.datadryad.org/policies", "type": "submission"}, {"policy_url": "http://wiki.datadryad.org/policies", "type": "preservation"}] {"name": "dspace", "version": ""} yes 11595 +1484 {"name": "collection of biostatistics research archive", "language": "en"} [{"acronym": "cobra"}] http://biostats.bepress.com/ disciplinary [] 2022-01-12 15:35:16 2009-03-24 14:14:07 ["science", "mathematics"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "berkeley electronic press", "alternativeName": "bepress", "country": "us", "url": "http://www.bepress.com/", "identifier": [{"identifier": "https://ror.org/00mdqpf86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://biostats.bepress.com/do/oai/ yes 1359 1560 +1563 {"name": "nstda knowledge repository", "language": "en"} [] http://stks.or.th/nstdair/ institutional [] 2022-01-12 15:35:17 2009-08-10 13:13:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national science and technology development agency (nstda)", "alternativeName": "\u0e2a\u0e33\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c\u0e41\u0e25\u0e30\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e0a\u0e32\u0e15\u0e34", "country": "th", "url": "http://www.nstda.or.th/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2556 +1544 {"name": "world digital library", "language": "en"} [{"acronym": "wdl"}] http://www.wdl.org/en/ governmental [] 2022-01-12 15:35:17 2009-06-29 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "united nations educational, scientific and cultural organisation", "alternativeName": "unesco", "country": "fr", "url": "http://www.unesco.org/new/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 10778 +1531 {"name": "wesscholar", "language": "en"} [] http://wesscholar.wesleyan.edu/ institutional [] 2022-01-12 15:35:17 2009-06-09 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "wesleyan university", "alternativeName": "", "country": "us", "url": "http://www.wesleyan.edu/", "identifier": [{"identifier": "https://ror.org/05h7xva58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 7901 +1510 {"name": "unisa institutional repository", "language": "en"} [{"acronym": "unisair"}] http://uir.unisa.ac.za/ institutional [] 2022-01-12 15:35:17 2009-05-05 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of south africa", "alternativeName": "unisa", "country": "za", "url": "http://www.unisa.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://uir.unisa.ac.za/oai/request yes 18163 +1486 {"name": "library and historical collections digital resources", "language": "en"} [] http://digitool.abdn.ac.uk/r institutional [] 2022-01-12 15:35:16 2009-03-24 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of aberdeen", "alternativeName": "", "country": "gb", "url": "http://www.abdn.ac.uk/", "identifier": [{"identifier": "https://ror.org/016476m91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} yes 54772 +1465 {"name": "digital library of modern greek studies", "language": "en"} [{"acronym": "anemi"}] http://anemi.lib.uoc.gr/ institutional [] 2022-01-12 15:35:16 2009-03-04 16:16:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "books_chapters_and_sections"] [{"name": "university of crete", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03af\u03bf\u03c5 \u03ba\u03c1\u03ae\u03c4\u03b7\u03c2", "country": "gr", "url": "http://www.uoc.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://anemi.lib.uoc.gr yes 0 21774 +1542 {"name": "education resources information center", "language": "en"} [{"acronym": "eric"}] http://www.eric.ed.gov/ governmental [] 2022-01-12 15:35:17 2009-06-26 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "u.s. department of education", "alternativeName": "", "country": "us", "url": "http://www.ed.gov/", "identifier": [{"identifier": "https://ror.org/021adze67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1210279 +1530 {"name": "digital online collection of knowledge and scholarship", "language": "en"} [{"acronym": "nc docks"}] http://libres.uncg.edu/ir/ aggregating [] 2022-01-12 15:35:17 2009-06-05 10:10:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "unc greensboro", "alternativeName": "", "country": "us", "url": "http://www.uncg.edu/", "identifier": [{"identifier": "https://ror.org/04fnxsj42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1478 {"name": "artur-fc", "language": "en"} [] http://artur.univ-fcomte.fr/cgi-ufc/publishing.bibliotheque.pl?langue=ufc institutional [] 2022-01-12 15:35:16 2009-03-16 11:11:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e9 de franche-comt\u00e9", "alternativeName": "", "country": "fr", "url": "http://www.univ-fcomte.fr/", "identifier": [{"identifier": "https://ror.org/03pcc9z86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://artur.univ-fcomte.fr/cgi-oai/oai.pl yes 0 504 +1494 {"name": "r4d", "language": "en"} [] http://www.dfid.gov.uk/r4d/ governmental [] 2022-01-12 15:35:16 2009-03-31 10:10:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "department for international development", "alternativeName": "dfid", "country": "gb", "url": "http://www.dfid.gov.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 41800 +1482 {"name": "biblioteca digital da flup", "language": "en"} [] http://ler.letras.up.pt/ institutional [] 2022-01-12 15:35:16 2009-03-20 10:10:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "faculdade de letras da universidade do porto", "alternativeName": "", "country": "pt", "url": "http://sigarra.up.pt/flup/web_page.inicial", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 553 +1547 {"name": "\u0430\u0440\u0445\u0438\u0432 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0445 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0439", "language": "ru"} [] http://elib.albertina.ru/ institutional [] 2022-01-12 15:35:17 2009-07-02 15:15:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "\u0431\u0430\u043b\u0442\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0438\u043c\u0435\u043d\u0438 \u0438\u043c\u043c\u0430\u043d\u0443\u0438\u043b\u0430 \u043a\u0430\u043d\u0442\u0430 (immanuel kant baltic federal university)", "alternativeName": "", "country": "ru", "url": "http://www.kantiana.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 468 +1534 {"name": "cybertesis uni", "language": "en"} [] http://cybertesis.uni.edu.pe/ institutional [] 2022-01-12 15:35:17 2009-06-15 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional de ingenier\u00eda", "alternativeName": "uni", "country": "pe", "url": "http://www.uni.edu.pe/", "identifier": [{"identifier": "https://ror.org/006v63s16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} yes 969 +1513 {"name": "access to research at national university of ireland, galway", "language": "en"} [{"acronym": "aran"}] http://aran.library.nuigalway.ie/ institutional [] 2022-01-12 15:35:17 2009-05-12 09:09:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "national university of ireland, galway", "alternativeName": "", "country": "ie", "url": "http://www.nuigalway.ie/", "identifier": [{"identifier": "https://ror.org/03bea9k73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aran.library.nuigalway.ie/oai/ yes 1 13523 +1535 {"name": "cork open research archive", "language": "en"} [{"acronym": "cora"}] http://cora.ucc.ie/ institutional [] 2022-01-12 15:35:17 2009-06-22 11:11:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university college cork", "alternativeName": "", "country": "ie", "url": "http://www.ucc.ie/en/", "identifier": [{"identifier": "https://ror.org/03265fv13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cora.ucc.ie/oai/request yes 5713 +1504 {"name": "reposit\u00f3rio institucional dos hospitais da universidade de coimbra", "language": "en"} [{"acronym": "rihuc"}] http://rihuc.huc.min-saude.pt/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "centro hospital e universit\u00e1rio de coimbra", "alternativeName": "chuc", "country": "pt", "url": "http://www.huc.min-saude.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rihuc.huc.min-saude.pt/oaiextended/request yes 1399 2102 +1527 {"name": "repositorio institucional de la universidad de burgos", "language": "en"} [{"acronym": "riubu"}] http://riubu.ubu.es/ institutional [] 2022-01-12 15:35:17 2009-06-02 14:14:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de burgos", "alternativeName": "", "country": "es", "url": "http://www.ubu.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://riubu.ubu.es/oai/request yes 3971 +1550 {"name": "repositorio hipermedial de la universidad nacional de rosario", "language": "en"} [{"acronym": "rephipunr"}] http://rephip.unr.edu.ar/ institutional [] 2022-01-12 15:35:17 2009-07-13 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "universidad nacional de rosario", "alternativeName": "", "country": "ar", "url": "http://www.unr.edu.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rephip.unr.edu.ar/oai/request yes 5050 +1500 {"name": "repositori institucional de la universitat jaume i", "language": "en"} [{"acronym": "repositori uji"}] http://repositori.uji.es/ institutional [] 2022-01-12 15:35:16 2009-04-29 16:16:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "universitat jaume i", "alternativeName": "", "country": "es", "url": "http://www.uji.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.uji.es/oai/request yes 41237 +1553 {"name": "repositorio institucional de la escuela politecnica nacional", "language": "en"} [{"acronym": "respositorio digital epn"}] http://bibdigital.epn.edu.ec/ institutional [] 2022-01-12 15:35:17 2009-07-16 10:10:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "escuela politecnica nacional", "alternativeName": "", "country": "ec", "url": "http://www.epn.edu.ec/", "identifier": [{"identifier": "https://ror.org/01gb99w41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibdigital.epn.edu.ec/oai/request yes 17736 +1514 {"name": "repositorio documental de la universidad de valladolid", "language": "en"} [{"acronym": "uvadoc"}] http://uvadoc.uva.es/ institutional [] 2022-01-12 15:35:17 2009-05-12 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "universidad de valladolid", "alternativeName": "", "country": "es", "url": "http://www.uva.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://uvadoc.uva.es/oai/openaire yes 2683 23114 +1546 {"name": "electronic archive v.n. karazin kharkiv national university", "language": "en"} [{"acronym": "ekhnuir"}, {"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0430\u0440\u0445\u0456\u0432\u0443 \u0445\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u0432.\u043d.\u043a\u0430\u0440\u0430\u0437\u0456\u043d\u0430", "language": "ru"}] http://dspace.univer.kharkov.ua/ institutional [] 2022-01-12 15:35:17 2009-07-01 11:11:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kharkiv national university", "alternativeName": "v.n. karazin", "country": "ua", "url": "http://www.univer.kharkov.ua/", "identifier": [{"identifier": "https://ror.org/03ftejk10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univer.kharkov.ua/oai/request yes 7488 15006 +1539 {"name": "dspace @ ggsipu", "language": "en"} [] http://14.139.60.216:8080/xmlui/ institutional [] 2022-01-12 15:35:17 2009-06-25 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "guru gobind singh indraprastha university", "alternativeName": "\u0917\u0941\u0930\u0941 \u0917\u094b\u092c\u093f\u0928\u094d\u0926 \u0938\u093f\u0902\u0939 \u0907\u0902\u0926\u094d\u0930\u092a\u094d\u0930\u0938\u094d\u0925 \u0935\u093f\u0936\u094d\u0935\u0935\u093f\u0926\u094d\u092f\u093e\u0932\u092f", "country": "in", "url": "http://ggsipu.nic.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://14.139.60.216:8080/oai/request yes 0 135 +1512 {"name": "digital library of the university of pardubice", "language": "en"} [] http://dk.upce.cz/ institutional [] 2022-01-12 15:35:17 2009-05-06 14:14:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of pardubice", "alternativeName": "", "country": "cz", "url": "http://www.upce.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dk.upce.cz/oai/request yes 241 42577 +1536 {"name": "nccu institutional repository", "language": "en"} [] http://nccuir.lib.nccu.edu.tw/ institutional [] 2022-01-12 15:35:17 2009-06-22 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "national chengchi university", "alternativeName": "\u570b\u7acb\u653f\u6cbb\u5927\u5b78", "country": "tw", "url": "http://www.nccu.edu.tw/", "identifier": [{"identifier": "https://ror.org/03rqk8h36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://nccuir.lib.nccu.edu.tw/dspace-oai/request yes 24783 +1537 {"name": "national tsing hua university institutional repository", "language": "en"} [] http://nthur.lib.nthu.edu.tw/ institutional [] 2022-01-12 15:35:17 2009-06-22 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "national tsing hua university", "alternativeName": "\u570b\u7acb\u6e05\u83ef\u5927\u5b78", "country": "tw", "url": "http://www.nthu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://nthur.lib.nthu.edu.tw/dspace-oai/request yes 56719 +1505 {"name": "sapientia", "language": "en"} [] http://sapientia.ualg.pt/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidade do algarve", "alternativeName": "", "country": "pt", "url": "http://www.ualg.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://sapientia.ualg.pt/oaiextended/request yes 6710 14649 +1467 {"name": "treasures @ utd", "language": "en"} [] http://libtreasures.utdallas.edu/xmlui institutional [] 2022-01-12 15:35:16 2009-03-09 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of texas at dallas", "alternativeName": "utd", "country": "us", "url": "http://www.utdallas.edu/", "identifier": [{"identifier": "https://ror.org/049emcs32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4596 +1479 {"name": "escuela superior politecnica del litoral", "language": "en"} [] http://www.dspace.espol.edu.ec/ institutional [] 2022-01-12 15:35:16 2009-03-18 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "escuela superior politecnica del litoral", "alternativeName": "espol", "country": "ec", "url": "http://www.espol.edu.ec/", "identifier": [{"identifier": "https://ror.org/04qenc566", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.dspace.espol.edu.ec/oai/request yes 41978 +1472 {"name": "gredos", "language": "en"} [] http://gredos.usal.es/jspui/ institutional [] 2022-01-12 15:35:16 2009-03-10 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "universidad de salamanca", "alternativeName": "", "country": "es", "url": "http://www.usal.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 110746 +1540 {"name": "ktisis", "language": "en"} [] http://ktisis.cut.ac.cy/ institutional [] 2022-01-12 15:35:17 2009-06-25 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "other_special_item_types"] [{"name": "cyprus university of technology (\u03c4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03ba\u03cd\u03c0\u03c1\u03bf\u03c5)", "alternativeName": "", "country": "cy", "url": "http://www.cut.ac.cy/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ktisis.cut.ac.cy/oai/request yes 146 8061 +1522 {"name": "repositorio acad\u00e9mico - universidad icesi", "language": "en"} [] http://repositorioacademico.icesi.edu.co/repositorio_academico/ institutional [] 2022-01-12 15:35:17 2009-05-26 14:14:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "icesi university", "alternativeName": "universidad icesi", "country": "co", "url": "http://www.icesi.edu.co/", "identifier": [{"identifier": "https://ror.org/02t54e151", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorioacademico.icesi.edu.co/repositorio_academico-oai/request yes 1111 +1503 {"name": "utl repository", "language": "en"} [] http://www.repository.utl.pt/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "technical university of lisbon", "alternativeName": "", "country": "pt", "url": "http://www.utl.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repository.utl.pt/oaiextended/request yes 1320 19724 +1480 {"name": "uwispace", "language": "en"} [] http://uwispace.sta.uwi.edu/dspace/ institutional [] 2022-01-12 15:35:16 2009-03-20 10:10:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of the west indies", "alternativeName": "", "country": "tt", "url": "http://sta.uwi.edu/", "identifier": [{"identifier": "https://ror.org/003kgv736", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 18937 +1528 {"name": "colecciones digitales uniminuto", "language": "es"} [] https://repository.uniminuto.edu institutional [] 2022-01-12 15:35:17 2009-06-02 14:14:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "corporaci\u00f3n universitaria minuto de dios", "alternativeName": "", "country": "co", "url": "http://www.uniminuto.edu", "identifier": [{"identifier": "https://ror.org/01r0dam38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.uniminuto.edu/oai/request yes 3376 6803 +1492 {"name": "dspace@um", "language": "en"} [] http://dspace.fsktm.um.edu.my/ institutional [] 2022-01-12 15:35:16 2009-03-30 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of malaya", "alternativeName": "um", "country": "my", "url": "http://www.um.edu.my/", "identifier": [{"identifier": "https://ror.org/00rzspn62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 885 +1564 {"name": "ic-online", "language": "en"} [] https://iconline.ipleiria.pt/ institutional [] 2022-01-12 15:35:18 2009-08-11 09:09:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico de leiria", "alternativeName": "", "country": "pt", "url": "http://www.ipleiria.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iconline.ipleiria.pt/oai/request yes 1911 3371 +1507 {"name": "tropmed central antwerp", "language": "en"} [] http://dspace.itg.be/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituut voor tropische geneeskunde antwerpen", "alternativeName": "itg", "country": "be", "url": "http://www.itg.be/itg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.itg.be/oai/request yes 14 6320 +1533 {"name": "dspace at belgorod state university", "language": "en"} [] http://dspace.bsu.edu.ru/ institutional [] 2022-01-12 15:35:17 2009-06-12 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "belgorod state university", "alternativeName": "\u0431\u0435\u043b\u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "country": "ru", "url": "http://www.bsu.edu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bsu.edu.ru/oai/request yes 21410 +1519 {"name": "dspace at the university of the west indies, mona", "language": "en"} [] http://dspace.mona.uwi.edu/ institutional [] 2022-01-12 15:35:17 2009-05-26 13:13:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of the west indies at mona", "alternativeName": "", "country": "jm", "url": "http://www.mona.uwi.edu/", "identifier": [{"identifier": "https://ror.org/03fkc8c64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 140 +1501 {"name": "reposit\u00f3rio aberto da universidade aberta", "language": "pt"} [] http://repositorioaberto.uab.pt institutional [] 2022-01-12 15:35:17 2009-04-29 16:16:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade aberta", "alternativeName": "", "country": "pt", "url": "https://portal.uab.pt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorioaberto.uab.pt/oaiextended/request yes 4730 9096 +1502 {"name": "reposit\u00f3rio da universidade dos a\u00e7ores", "language": "en"} [] http://repositorio.uac.pt/ institutional [] 2022-01-12 15:35:17 2009-04-29 16:16:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade dos a\u00e7ores", "alternativeName": "", "country": "pt", "url": "http://www.uac.pt/", "identifier": [{"identifier": "https://ror.org/04276xd64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uac.pt/oaiextended/request yes 2670 5455 +1521 {"name": "tegra", "language": "en"} [] http://tegra.lasalle.edu.co/dspace/ institutional [] 2022-01-12 15:35:17 2009-05-26 13:13:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universad de la salle", "alternativeName": "", "country": "co", "url": "http://unisalle.lasalle.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tegra.lasalle.edu.co/dspace-oai/request yes 1202 +1543 {"name": "udmurt state university elibrary", "language": "en"} [{"name": "\u0443\u0434\u043c\u0443\u0440\u0442\u0441\u043a\u0430\u044f \u043d\u0430\u0443\u0447\u043d\u043e-\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430", "language": "ru"}, {"acronym": "\u0443\u0434\u043d\u043e\u044d\u0431"}] http://elibrary.udsu.ru institutional [] 2022-01-12 15:35:17 2009-06-26 15:15:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "udmurt state university", "alternativeName": "", "country": "ru", "url": "http://udsu.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16147 +1526 {"name": "fundacion mapfre", "language": "en"} [] http://www.mapfre.com/documentacion/publico/i18n/consulta/busqueda.cmd institutional [] 2022-01-12 15:35:17 2009-05-29 11:11:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "mapfre", "alternativeName": "", "country": "es", "url": "http://www.mapfre.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.mapfre.com/documentacion/publico/i18n/oai/oai.cmd yes 0 24321 +1532 {"name": "repository of the academys library", "language": "en"} [{"acronym": "real"}] http://real.mtak.hu/ institutional [] 2022-01-12 15:35:17 2009-06-12 09:09:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "magyar tudom\u00e1nyos akad\u00e9mia k\u00f6nyvt\u00e1ra (library of the hungarian academy of sciences)", "alternativeName": "", "country": "hu", "url": "http://www.mtak.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real.mtak.hu/cgi/oai2 yes 70176 +1524 {"name": "tver state university repository", "language": "en"} [] http://eprints.tversu.ru/ institutional [] 2022-01-12 15:35:17 2009-05-27 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "tver state university", "alternativeName": "\u0442\u0432\u0435\u0440\u0441\u043a\u043e\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "country": "ru", "url": "http://university.tversu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.tversu.ru/cgi/oai2 yes 5136 10426 +1549 {"name": "luissearch", "language": "en"} [] http://eprints.luiss.it/ institutional [] 2022-01-12 15:35:17 2009-07-10 12:12:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "luiss - libera universit\u00e0 internazionale degli studi sociali guido carli", "alternativeName": "luiss", "country": "it", "url": "http://www.luiss.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.luiss.it/cgi/oai2 yes 881 +1471 {"name": "the bue e-print repository", "language": "en"} [] http://e-prints.bue.edu.eg/ institutional [] 2022-01-12 15:35:16 2009-03-10 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "british university in egypt", "alternativeName": "", "country": "eg", "url": "http://www.bue.edu.eg/", "identifier": [{"identifier": "https://ror.org/0066fxv63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://e-prints.bue.edu.eg/cgi/oai2 yes 0 46 +1498 {"name": "icrisat open access repository", "language": "en"} [{"acronym": "oar"}] http://oar.icrisat.org/ institutional [] 2022-01-12 15:35:16 2009-04-15 15:15:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "international crops research institute for the semi arid tropics", "alternativeName": "icrisat", "country": "in", "url": "http://www.icrisat.org/", "identifier": [{"identifier": "https://ror.org/0541a3n79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://oar.icrisat.org/policies.html", "type": "metadata"}, {"policy_url": "http://oar.icrisat.org/policies.html", "type": "content"}, {"policy_url": "http://oar.icrisat.org/policies.html", "type": "submission"}, {"policy_url": "http://oar.icrisat.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://oar.icrisat.org/cgi/oai2 yes 9702 +1551 {"name": "leeds beckett university repository", "language": "en"} [] http://eprints.leedsbeckett.ac.uk/ institutional [] 2022-01-12 15:35:17 2009-07-16 09:09:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "leeds beckett university", "alternativeName": "", "country": "gb", "url": "http://www.leedsbeckett.ac.uk/", "identifier": [{"identifier": "https://ror.org/02xsh5r57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.leedsmet.ac.uk/main/policies.php", "type": "metadata"}, {"policy_url": "http://repository.leedsmet.ac.uk/main/policies.php", "type": "data"}, {"policy_url": "http://repository.leedsmet.ac.uk/main/policies.php", "type": "content"}, {"policy_url": "http://repository.leedsmet.ac.uk/main/policies.php", "type": "submission"}, {"policy_url": "http://repository.leedsmet.ac.uk/main/policies.php", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.leedsbeckett.ac.uk/cgi/oai2 yes 4363 +1463 {"name": "repository iss and hivos", "language": "en"} [] http://ir.iss.nl/ institutional [] 2022-01-12 15:35:16 2009-03-04 11:11:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "institute of social studies", "alternativeName": "", "country": "nl", "url": "http://www.iss.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://ir.iss.nl/oai.php yes 38 +1469 {"name": "deakin research online", "language": "en"} [] http://dro.deakin.edu.au/ institutional [] 2022-01-12 15:35:16 2009-03-10 10:10:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "other_special_item_types"] [{"name": "deakin university", "alternativeName": "", "country": "au", "url": "http://www.deakin.edu.au/", "identifier": [{"identifier": "https://ror.org/02czsnj07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://dro.deakin.edu.au/oai.php yes 18904 115340 +1538 {"name": "ohmdok", "language": "en"} [] http://www.opus-bayern.de/ohm-hochschule/ institutional [] 2022-01-12 15:35:17 2009-06-22 14:14:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "georg-simon-ohm-hochschule n\u00fcrnberg", "alternativeName": "", "country": "de", "url": "http://www.ohm-hochschule.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://www.opus-bayern.de/ohm-hochschule/oai2/oai2.php yes 0 70 +1558 {"name": "boise state university - scholarworks", "language": "en"} [] http://scholarworks.boisestate.edu/ institutional [] 2022-01-12 15:35:17 2009-07-21 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "boise state university", "alternativeName": "", "country": "us", "url": "http://www.boisestate.edu/", "identifier": [{"identifier": "https://ror.org/02e3zdp86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.boisestate.edu/do/oai/ yes 8370 20117 +1477 {"name": "researchonline@nd", "language": "en"} [] http://researchonline.nd.edu.au/ institutional [] 2022-01-12 15:35:16 2009-03-12 14:14:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "the university of notre dame australia.", "alternativeName": "", "country": "au", "url": "http://www.nd.edu.au/", "identifier": [{"identifier": "https://ror.org/02stey378", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://researchonline.nd.edu.au/do/oai/ yes 1386 5131 +1548 {"name": "scholarship@western", "language": "en"} [] https://ir.lib.uwo.ca institutional [] 2022-01-12 15:35:17 2009-07-08 09:09:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "university of western ontario", "alternativeName": "", "country": "ca", "url": "https://www.uwo.ca", "identifier": [{"identifier": "https://ror.org/02grkyz14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ir.lib.uwo.ca/do/oai yes 17518 33807 +1487 {"name": "student scholar archive", "language": "en"} [] http://digitalcommons.ohsu.edu/etd/ institutional [] 2022-01-12 15:35:16 2009-03-24 14:14:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "oregon health & science university", "alternativeName": "", "country": "us", "url": "http://www.ohsu.edu/xd/", "identifier": [{"identifier": "https://ror.org/009avj582", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3866 +1481 {"name": "publikationer fr\u00e5n h\u00f6gskolan i sk\u00f6vde", "language": "en"} [] http://his.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:16 2009-03-20 10:10:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "h\u00f6gskolan i sk\u00f6vde (university of sk\u00f6vde)", "alternativeName": "", "country": "se", "url": "http://www.his.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://his.diva-portal.org/dice/oai yes 0 7003 +1556 {"name": "national central university library electronic thesis & dissertation system", "language": "en"} [] http://thesis.lib.ncu.edu.tw/etd-db/etd-search-c/search institutional [] 2022-01-12 15:35:17 2009-07-20 09:09:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national central university", "alternativeName": "\u570b\u7acb\u4e2d\u592e\u5927\u5b78", "country": "tw", "url": "http://www.ncu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 27865 +1488 {"name": "uel research repository", "language": "en"} [] https://repository.uel.ac.uk institutional [] 2022-01-12 15:35:16 2009-03-27 14:14:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "university of east london", "alternativeName": "uel", "country": "gb", "url": "https://www.uel.ac.uk", "identifier": [{"identifier": "https://ror.org/057jrqr44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://repository.uel.ac.uk/oai2 yes 4815 +1508 {"name": "iwmi publications", "language": "en"} [] http://www.iwmi.cgiar.org/publications/latest/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "international water management institute", "alternativeName": "iwmi", "country": "lk", "url": "http://www.iwmi.cgiar.org/index.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://iwmi.catalog.cgiar.org/oaisteriwmipubs.xml yes 0 2820 +1464 {"name": "e-locus university of crete institutional repository", "language": "en"} [] http://elocus.lib.uoc.gr/index.tkl institutional [] 2022-01-12 15:35:16 2009-03-04 15:15:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of crete", "alternativeName": "", "country": "gr", "url": "http://www.uoc.gr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://elocus.lib.uoc.gr yes 0 8799 +1491 {"name": "mahatma gandhi university theses online", "language": "en"} [] http://www.mgutheses.org/ institutional [] 2022-01-12 15:35:16 2009-03-30 09:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "mahatma gandhi university", "alternativeName": "", "country": "in", "url": "http://www.mguniversity.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2550 +1529 {"name": "biblioteca digital da unicamp", "language": "en"} [] http://libdigi.unicamp.br/ institutional [] 2022-01-12 15:35:17 2009-06-02 14:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidade estadual de campinas", "alternativeName": "unicamp", "country": "br", "url": "http://www.unicamp.br/unicamp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://libdigi.unicamp.br/oai/i/index.php yes 0 19894 +1490 {"name": "community repository of fukui", "language": "en"} [{"acronym": "crfukui"}, {"name": "\u798f\u4e95\u770c\u5730\u57df\u5171\u540c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://karin.flib.u-fukui.ac.jp/?page_id=110 institutional [] 2022-01-12 15:35:16 2009-03-30 09:09:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of fukui", "alternativeName": "", "country": "jp", "url": "http://www.u-fukui.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://karin21.flib.u-fukui.ac.jp/oai/oai-pmh.do yes 12726 +1476 {"name": "knaw repository", "language": "en"} [] http://pure.knaw.nl/portal/ institutional [] 2022-01-12 15:35:16 2009-03-12 13:13:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "royal netherlands academy of arts and sciences", "alternativeName": "knaw", "country": "nl", "url": "https://www.knaw.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.knaw.nl/ws/oai yes 215 12158 +1523 {"name": "bangor university research portal", "language": "en"} [] https://research.bangor.ac.uk/portal/en/researchoutputs/search.html institutional [] 2022-01-12 15:35:17 2009-05-27 09:09:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "bangor university", "alternativeName": "", "country": "gb", "url": "http://www.bangor.ac.uk/", "identifier": [{"identifier": "https://ror.org/006jb1a24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes 4376 5397 +1489 {"name": "university of mary washingtons digital library repository", "language": "en"} [{"acronym": "archives @ umw"}] http://archive.umw.edu:8080/vital/access/manager/index institutional [] 2022-01-12 15:35:16 2009-03-27 14:14:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of mary washington", "alternativeName": "", "country": "us", "url": "http://www.umw.edu/", "identifier": [{"identifier": "https://ror.org/03b48gv34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} yes 2461 +1493 {"name": "dial uclouvain - digital access to libraries", "language": "en"} [{"name": "", "language": ""}] https://dial.uclouvain.be/ institutional [] 2022-01-12 15:35:16 2009-03-30 14:14:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 catholique de louvain", "alternativeName": "uclouvain", "country": "be", "url": "https://uclouvain.be", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} https://dial.uclouvain.be/oai yes 0 144028 +1497 {"name": "chugoku gakuen repository", "language": "en"} [{"acronym": "cur-ren"}, {"name": "\u4e2d\u56fd\u5b66\u5712\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cur-ren.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:16 2009-04-07 13:13:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "chugoku gakuen university", "alternativeName": "??????/??????", "country": "jp", "url": "http://www.cjc.ac.jp/", "identifier": [{"identifier": "https://ror.org/040gghh09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cur-ren.repo.nii.ac.jp/oai yes 746 832 +1499 {"name": "open library archives of kagawa university", "language": "en"} [{"acronym": "olive"}, {"name": "\u9999\u5ddd\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kagawa-u.repo.nii.ac.jp institutional [] 2022-01-12 15:35:16 2009-04-16 13:13:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kagawa university", "alternativeName": "", "country": "jp", "url": "http://www.kagawa-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04j7mzp05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kagawa-u.repo.nii.ac.jp/oai yes 6129 +1470 {"name": "kindai university academic resource repository", "language": "en"} [{"name": "\u8fd1\u757f\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kindai.repo.nii.ac.jp institutional [] 2022-01-12 15:35:16 2009-03-10 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kindai university", "alternativeName": "", "country": "jp", "url": "http://www.kindai.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kindai.repo.nii.ac.jp/oai yes 0 12694 +1495 {"name": "bioversity international publications", "language": "en"} [] http://www.bioversityinternational.org/e-library/publications/ institutional [] 2022-01-12 15:35:16 2009-03-31 10:10:21 ["science"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bioversity international", "alternativeName": "", "country": "it", "url": "http://www.bioversityinternational.org/", "identifier": [{"identifier": "https://ror.org/04xsxqp89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1362 +1516 {"name": "worldfish center publications", "language": "en"} [] http://www.worldfishcenter.org/publications-resources/publications institutional [] 2022-01-12 15:35:17 2009-05-13 11:11:53 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the worldfish center", "alternativeName": "", "country": "my", "url": "http://www.worldfishcenter.org/", "identifier": [{"identifier": "https://ror.org/04bd4pk40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1265 +1461 {"name": "queensland department of agriculture and fisheries eresearch archive", "language": "en"} [{"acronym": "era"}] http://era.daf.qld.gov.au/ institutional [] 2022-01-12 15:35:16 2009-03-03 14:14:37 ["science"] ["journal_articles", "bibliographic_references"] [{"name": "queensland department of agriculture and fisheries", "alternativeName": "", "country": "au", "url": "http://www.daf.qld.gov.au/", "identifier": [{"identifier": "https://ror.org/05s5aag36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://era.daf.qld.gov.au/cgi/oai2 yes 943 6060 +1509 {"name": "bibioteca digital a\u00e7\u00e3o educativa", "language": "en"} [] http://www.bdae.org.br/dspace/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:47 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "a\u00e7\u00e3o educativa", "alternativeName": "", "country": "br", "url": "http://www.acaoeducativa.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.bdae.org.br/dspace-oai/request yes 0 2157 +1557 {"name": "flacso andes dspace", "language": "es"} [] https://repositorio.flacsoandes.edu.ec institutional [] 2022-01-17 09:42:36 2009-07-20 10:10:01 ["social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "facultad latinoamericana de ciencias sociales", "alternativeName": "flacso andes", "country": "ec", "url": "https://www.flacsoandes.edu.ec/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.flacsoandes.edu.ec/oai yes 9442 +1506 {"name": "selectedworks @ oklahoma city university school of law", "language": "en"} [] http://oculaw.works.bepress.com/ institutional [] 2022-01-12 15:35:17 2009-05-01 10:10:19 ["social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "oklahoma city university", "alternativeName": "", "country": "us", "url": "http://www.okcu.edu/", "identifier": [{"identifier": "https://ror.org/02bs0cv29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes 996 +1525 {"name": "edudoc", "language": "en"} [] http://quijote.biblio.iteso.mx/catia/edudocdc/ disciplinary [] 2022-01-12 15:35:17 2009-05-29 09:09:24 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "iteso universidad jesuita de guadalajara", "alternativeName": "iteso", "country": "mx", "url": "http://portal.iteso.mx/portal/page/portal/iteso", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://quijote.biblio.iteso.mx/catia/edudocdc/oai.aspx yes 500 +1520 {"name": "scientific repository", "language": "en"} [] http://repository.petra.ac.id/ institutional [] 2022-01-12 15:35:17 2009-05-26 13:13:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "petra christian university", "alternativeName": "", "country": "id", "url": "http://www.petra.ac.id/", "identifier": [{"identifier": "https://ror.org/045e97x26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.petra.ac.id/cgi/oai2 yes 2927 18330 +1560 {"name": "riunet", "language": "en"} [] http://riunet.upv.es/ institutional [] 2022-01-12 15:35:17 2009-07-30 10:10:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universitat polit\u00e8cnica de val\u00e8ncia", "alternativeName": "", "country": "es", "url": "http://www.upv.es/", "identifier": [{"identifier": "https://ror.org/01460j859", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://riunet.upv.es/help/politicacol", "type": "metadata"}, {"policy_url": "https://riunet.upv.es/help/politicacol", "type": "data"}, {"policy_url": "https://riunet.upv.es/help/politicacol", "type": "content"}, {"policy_url": "https://riunet.upv.es/help/politicacol", "type": "submission"}, {"policy_url": "https://riunet.upv.es/help/politicacol", "type": "preservation"}] {"name": "dspace", "version": ""} http://riunet.upv.es/oai/request yes 77333 +1552 {"name": "aston publications explorer", "language": "en"} [] http://publications.aston.ac.uk/ institutional [] 2022-01-12 15:35:17 2009-07-16 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "aston university", "alternativeName": "", "country": "gb", "url": "http://www.aston.ac.uk/", "identifier": [{"identifier": "https://ror.org/05j0ve876", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.aston.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.aston.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.aston.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.aston.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.aston.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://publications.aston.ac.uk/cgi/oai2 yes 12531 35500 +1460 {"name": "bradford scholars", "language": "en"} [] http://bradscholars.brad.ac.uk/ institutional [] 2022-01-12 15:35:16 2009-03-03 14:14:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "university of bradford", "alternativeName": "", "country": "gb", "url": "http://www.brad.ac.uk/external/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.brad.ac.uk/library/burp/policies.php", "type": "metadata"}, {"policy_url": "http://www.brad.ac.uk/library/burp/policies.php", "type": "data"}, {"policy_url": "http://www.brad.ac.uk/library/burp/policies.php", "type": "content"}, {"policy_url": "http://www.brad.ac.uk/library/burp/policies.php", "type": "submission"}, {"policy_url": "http://www.brad.ac.uk/library/burp/policies.php", "type": "preservation"}] {"name": "dspace", "version": ""} http://bradscholars.brad.ac.uk/dspace-oai/request yes 4382 9483 +1474 {"name": "federation researchonline", "language": "en"} [] http://researchonline.federation.edu.au/vital/access/manager/index institutional [] 2022-01-12 15:35:16 2009-03-11 15:15:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "federation university australia", "alternativeName": "", "country": "au", "url": "http://www.federation.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://policy.federation.edu.au/information_management_and_infrastructure/library/library/ch01.php", "type": "metadata"}, {"policy_url": "https://policy.federation.edu.au/information_management_and_infrastructure/library/library/ch01.php", "type": "data"}, {"policy_url": "https://policy.federation.edu.au/information_management_and_infrastructure/library/library/ch01.php", "type": "content"}, {"policy_url": "https://policy.federation.edu.au/information_management_and_infrastructure/library/library/ch01.php", "type": "submission"}, {"policy_url": "https://policy.federation.edu.au/information_management_and_infrastructure/library/library/ch01.php", "type": "preservation"}] {"name": "vital", "version": ""} https://researchonline.federation.edu.au/vital/oai/provider?verb=listrecords&metadataprefix=oai_dc&set=active yes 2488 13074 +1545 {"name": "publikationsserver der katholischen universit\u00e4t eichst\u00e4tt-ingolstadt", "language": "en"} [{"acronym": "ku.doc"}] http://edoc.ku-eichstaett.de/ institutional [] 2022-01-12 15:35:17 2009-07-01 11:11:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "katholische universit\u00e4t eichst\u00e4tt-ingolstadt (ku)", "alternativeName": "", "country": "de", "url": "http://www.ku-eichstaett.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://edoc.ku-eichstaett.de/help", "type": "metadata"}, {"policy_url": "http://edoc.ku-eichstaett.de/help", "type": "data"}, {"policy_url": "http://edoc.ku-eichstaett.de/help", "type": "content"}, {"policy_url": "http://edoc.ku-eichstaett.de/help", "type": "submission"}] {"name": "eprints", "version": ""} http://edoc.ku-eichstaett.de/cgi/oai2 yes 589 21776 +1517 {"name": "internano nanomanufacturing repository", "language": "en"} [] http://eprints.internano.org/ disciplinary [] 2022-01-12 15:35:17 2009-05-20 19:19:09 ["health and medicine", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "national nanomanufacturing network", "alternativeName": "", "country": "us", "url": "http://www.internano.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.internano.org/information.html", "type": "content"}, {"policy_url": "http://eprints.internano.org/information.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.internano.org/cgi/oai2 yes 272 1802 +1483 {"name": "research showcase @ cmu", "language": "en"} [] http://repository.cmu.edu/ institutional [] 2022-01-12 15:35:16 2009-03-23 14:14:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "carnegie mellon university", "alternativeName": "", "country": "us", "url": "http://www.cmu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.cmu.edu/policies.html", "type": "metadata"}, {"policy_url": "http://repository.cmu.edu/policies.html", "type": "data"}, {"policy_url": "http://repository.cmu.edu/policies.html", "type": "content"}, {"policy_url": "http://repository.cmu.edu/policies.html", "type": "submission"}, {"policy_url": "http://repository.cmu.edu/policies.html", "type": "preservation"}] {"name": "other", "version": ""} http://repository.cmu.edu/do/oai/ yes 2 17562 +1657 {"name": "opensigle", "language": "en"} [] http://opensigle.inist.fr/ aggregating [] 2022-01-12 15:35:19 2009-11-13 11:11:27 ["arts", "humanities", "science", "social sciences", "technology"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "institut de linformation scientifique et technique du cnrs", "alternativeName": "inist-cnrs", "country": "fr", "url": "http://www.inist.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://opensigle.inist.fr/dspace-oai/request yes 690110 +1644 {"name": "biblioteca virtual de andaluc\u00eda", "language": "en"} [] http://www.bibliotecavirtualdeandalucia.es/opencms governmental [] 2022-01-12 15:35:19 2009-10-22 11:11:00 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "junta de andaluc\u00eda, consejer\u00eda de educaci\u00f3n, cultura y deporte.", "alternativeName": "", "country": "es", "url": "http://www.juntadeandalucia.es/organismos/educacionculturaydeporte.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} yes 10737 +1605 {"name": "biblioteka cyfrowa klf uw (digital library of the formal linguistics department at the university of warsaw)", "language": "en"} [] http://bc.klf.uw.edu.pl/ institutional [] 2022-01-12 15:35:18 2009-09-24 16:16:50 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://bc.klf.uw.edu.pl/cgi/oai2 yes 158 404 +1614 {"name": "bibliopsiquis", "language": "en"} [] http://www.bibliopsiquis.com/ disciplinary [] 2022-01-12 15:35:18 2009-09-28 14:14:36 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "psiquiatria.tv", "alternativeName": "", "country": "es", "url": "http://www.psiquiatria.tv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5797 +1576 {"name": "scielo public health", "language": "en"} [] http://www.scielosp.org/ disciplinary [] 2022-01-12 15:35:18 2009-08-19 11:11:17 ["health and medicine"] ["journal_articles"] [{"name": "centro latino-americano e do caribe de informa\u00e7\u00e3o em ci\u00eancias da sa\u00fade", "alternativeName": "bireme", "country": "br", "url": "http://www.bireme.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} yes 1863 +1591 {"name": "base de publications de luniversit\u00e9 paris-dauphine", "language": "en"} [] http://basepub.dauphine.fr/ institutional [] 2022-01-12 15:35:18 2009-09-04 14:14:00 ["mathematics", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 paris-dauphine", "alternativeName": "", "country": "fr", "url": "http://www.dauphine.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://basepub.dauphine.fr/oai/request yes 0 15771 +1652 {"name": "centre pour la num\u00e9risation de sources visuelles", "language": "en"} [{"acronym": "cn2sv"}] http://www.cn2sv.cnrs.fr/ institutional [] 2022-01-12 15:35:19 2009-11-06 09:09:40 ["science", "humanities"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "centre national de la recherche scientifique", "alternativeName": "cnrs (centre national de la recherche scientifique)", "country": "fr", "url": "http://www.cnrs.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.cn2sv.cnrs.fr/oai/oai2.php yes 1 2868 +1638 {"name": "biblioteca digital hisp\u00e1nica", "language": "en"} [] http://www.bne.es/es/catalogos/bibliotecadigitalhispanica/inicio/index.html institutional [] 2022-01-12 15:35:19 2009-10-22 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioteca nacional de espa\u00f1a", "alternativeName": "bne", "country": "es", "url": "http://www.bne.es/es/inicio/index.html", "identifier": [{"identifier": "https://ror.org/02cr20t12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} yes 164490 +1676 {"name": "ourspace", "language": "en"} [] http://ourspace.uregina.ca/ institutional [] 2022-01-12 15:35:19 2009-12-04 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of regina", "alternativeName": "", "country": "ca", "url": "http://www.uregina.ca/", "identifier": [{"identifier": "https://ror.org/03dzc0485", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7218 +1635 {"name": "diponegoro university institutional repository", "language": "en"} [{"acronym": "undip -ir"}] http://eprints.undip.ac.id/ institutional [] 2022-01-12 15:35:19 2009-10-20 10:10:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "diponegoro university", "alternativeName": "undip", "country": "id", "url": "http://www.undip.ac.id/", "identifier": [{"identifier": "https://ror.org/056bjta22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.undip.ac.id/cgi/oai2 yes 55307 +1633 {"name": "evols at university of hawaii at manoa", "language": "en"} [] http://evols.library.manoa.hawaii.edu/ institutional [] 2022-01-12 15:35:19 2009-10-15 10:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of hawaii at manoa", "alternativeName": "", "country": "us", "url": "http://www.uhm.hawaii.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://evols.library.manoa.hawaii.edu/dspace-oai/request yes 55056 +1672 {"name": "dalspace", "language": "en"} [] http://dalspace.library.dal.ca/ institutional [] 2022-01-12 15:35:19 2009-11-30 13:13:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "dalhousie university", "alternativeName": "dal", "country": "ca", "url": "http://www.dal.ca/", "identifier": [{"identifier": "https://ror.org/01e6qks80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 28745 +1608 {"name": "repositorio institucional de la universidad veracruzana", "language": "en"} [] http://cdigital.uv.mx/ institutional [] 2022-01-12 15:35:18 2009-09-28 13:13:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad veracruzana", "alternativeName": "", "country": "mx", "url": "http://www.uv.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cdigital.uv.mx/oai/request yes 11543 +1658 {"name": "unimap library digital repository", "language": "en"} [] http://dspace.unimap.edu.my/dspace/ institutional [] 2022-01-12 15:35:19 2009-11-16 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universiti malaysia perlis", "alternativeName": "", "country": "my", "url": "http://www.unimap.edu.my/", "identifier": [{"identifier": "https://ror.org/00xmkb790", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 53645 +1585 {"name": "university of florida digital collections", "language": "en"} [{"acronym": "ufdc"}] http://ufdc.ufl.edu/ institutional [] 2022-01-12 15:35:18 2009-09-01 10:10:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of florida", "alternativeName": "", "country": "us", "url": "http://www.ufl.edu/", "identifier": [{"identifier": "https://ror.org/02y3ad647", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ufdc.ufl.edu/sobekcm_oai.aspx yes 212695 +1643 {"name": "majaliss", "language": "en"} [] http://rabat.unesco.org/majaliss/ disciplinary [] 2022-01-12 15:35:19 2009-10-22 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "united nations educational, scientific and cultural organization", "alternativeName": "unesco", "country": "fr", "url": "http://www.unesco.org/new/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 187 +1615 {"name": "recursos", "language": "en"} [] http://www.infoandina.org/search disciplinary [] 2022-01-12 15:35:18 2009-09-28 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "info andina", "alternativeName": "", "country": "pe", "url": "http://www.infoandina.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 3602 +1642 {"name": "tudigit", "language": "en"} [] http://www.ulb.tu-darmstadt.de/spezialabteilungen/digitale_sammlungen_2/digitale_sammlungen.de.jsp institutional [] 2022-01-12 15:35:19 2009-10-22 10:10:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "technische universit\u00e4t darmstadt", "alternativeName": "tud", "country": "de", "url": "http://www.ulb.tu-darmstadt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 625 +1579 {"name": "lowcountry digital library", "language": "en"} [] http://lowcountrydigital.library.cofc.edu/ aggregating [] 2022-01-12 15:35:18 2009-08-19 11:11:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "college of charleston", "alternativeName": "", "country": "us", "url": "http://www.cofc.edu/", "identifier": [{"identifier": "https://ror.org/00390t168", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes +1609 {"name": "tesis electronica uach", "language": "en"} [] http://cybertesis.uach.cl/ institutional [] 2022-01-12 15:35:18 2009-09-28 13:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad austral de chile", "alternativeName": "", "country": "cl", "url": "http://www.uach.cl/", "identifier": [{"identifier": "https://ror.org/029ycp228", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} yes 1693 +1641 {"name": "accedacris", "language": "es"} [] https://accedacris.ulpgc.es institutional [] 2022-01-12 15:35:19 2009-10-22 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad de las palmas de gran canaria", "alternativeName": "ulpgc", "country": "es", "url": "https://www.ulpgc.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace_cris", "version": ""} https://acceda.ulpgc.es/oai/request yes 700 +1581 {"name": "archivio istituzionale universit\u00e0 di bergamo", "language": "en"} [{"acronym": "aisberg"}] http://aisberg.unibg.it/ institutional [] 2022-01-12 15:35:18 2009-08-27 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "universit\u00e0 di bergamo", "alternativeName": "", "country": "it", "url": "http://www.unibg.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://aisberg.unibg.it/dspace-oai/request yes 0 20586 +1571 {"name": "biblioteca digital de monografias", "language": "en"} [{"acronym": "bdm"}] http://bdm.unb.br/ institutional [] 2022-01-12 15:35:18 2009-08-17 16:16:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "universidade de bras\u00edlia", "alternativeName": "unb", "country": "br", "url": "http://www.unb.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bdm.unb.br/oai/request yes 19984 +1665 {"name": "biblioteca digital lasallista", "language": "en"} [{"acronym": "bidila"}] http://repository.lasallista.edu.co/dspace/ institutional [] 2022-01-12 15:35:19 2009-11-19 10:10:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "corporaci\u00f3n universitaria lasallista", "alternativeName": "", "country": "co", "url": "http://www.lasallista.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1744 +1648 {"name": "repositorio institucional universidad de granada", "language": "en"} [{"acronym": "digibug"}] http://digibug.ugr.es/ institutional [] 2022-01-12 15:35:19 2009-11-04 13:13:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "universidad de granada", "alternativeName": "", "country": "es", "url": "http://www.ugr.es/", "identifier": [{"identifier": "https://ror.org/04njjy449", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digibug.ugr.es/oai/request yes 40929 +1593 {"name": "helda - digital repository of the university of helsinki", "language": "en"} [{"acronym": "helda"}] https://helda.helsinki.fi institutional [] 2022-01-12 15:35:18 2009-09-09 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "university of helsinki", "alternativeName": "", "country": "fi", "url": "https://www.helsinki.fi", "identifier": [{"identifier": "https://ror.org/040af2s02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://helda.helsinki.fi/xoai/request yes 48956 109101 +1577 {"name": "knowledge repository of national science library, cas", "language": "en"} [{"acronym": "nsl-ir"}] http://ir.las.ac.cn/ institutional [] 2022-01-12 15:35:18 2009-08-19 11:11:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "chinese academy of sciences (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8179 +1625 {"name": "scholarspace at university of hawaii at manoa", "language": "en"} [{"acronym": "scholarspace"}] http://scholarspace.manoa.hawaii.edu/ institutional [] 2022-01-12 15:35:19 2009-09-30 09:09:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of hawaii at manoa", "alternativeName": "", "country": "us", "url": "http://www.uhm.hawaii.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarspace.manoa.hawaii.edu/dspace-oai/request yes 18065 54044 +1573 {"name": "taipei medical university repository", "language": "en"} [{"acronym": "tmur"}] http://libir.tmu.edu.tw/ institutional [] 2022-01-12 15:35:18 2009-08-18 09:09:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "taipei medical university", "alternativeName": "\u81fa\u5317\u91ab\u5b78\u5927\u5b78", "country": "tw", "url": "http://www.tmu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 58015 +1626 {"name": "university of botswana research, innovation and scholarship archive", "language": "en"} [{"acronym": "ubrisa"}] http://www.ubrisa.ub.bw/ institutional [] 2022-01-12 15:35:19 2009-10-06 15:15:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of botswana", "alternativeName": "", "country": "bw", "url": "http://www.ub.bw/", "identifier": [{"identifier": "https://ror.org/01encsj80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ubrisa.ub.bw/oai/request yes 0 1108 +1678 {"name": "university of the western cape research repository", "language": "en"} [{"acronym": "uwc research repository"}] http://repository.uwc.ac.za/xmlui/ institutional [] 2022-01-12 15:35:19 2009-12-04 14:14:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of the western cape", "alternativeName": "", "country": "za", "url": "http://www.uwc.ac.za", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uwc.ac.za/oai/request yes 2873 +1617 {"name": "national central university library institutional repository (nculr) - \u4e2d\u592e\u5927\u5b78\u6a5f\u69cb\u5178\u85cf", "language": "en"} [] http://ir.lib.ncu.edu.tw/ institutional [] 2022-01-12 15:35:19 2009-09-29 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national central university", "alternativeName": "\u570b\u7acb\u4e2d\u592e\u5927\u5b78", "country": "tw", "url": "http://www.ncu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.ncu.edu.tw:8081/ir-oai/request yes 0 48904 +1655 {"name": "recursos de investigaci\u00f3n de la alhambra", "language": "en"} [] http://www.alhambra-patronato.es/ria institutional [] 2022-01-12 15:35:19 2009-11-12 13:13:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "patronato de la alhambra y el generalife", "alternativeName": "", "country": "es", "url": "http://www.alhambra-patronato.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6 13588 +1632 {"name": "sycamore scholars", "language": "en"} [] http://scholars.indstate.edu/ institutional [] 2022-01-12 15:35:19 2009-10-15 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects"] [{"name": "indiana state university", "alternativeName": "isu", "country": "us", "url": "http://www.indstate.edu/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholars.indstate.edu/oai/request yes 156 4868 +1647 {"name": "cput institutional repository", "language": "en"} [] http://digitalknowledge.cput.ac.za/xmlui/ institutional [] 2022-01-12 15:35:19 2009-11-04 13:13:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "patents", "other_special_item_types"] [{"name": "cape peninsula university of technology", "alternativeName": "", "country": "za", "url": "http://www.cput.ac.za/", "identifier": [{"identifier": "https://ror.org/056e9h402", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digitalknowledge.cput.ac.za/oai/request yes 0 2963 +1619 {"name": "reposit\u00f3rio cient\u00edfico da universidade de \u00e9vora", "language": "en"} [] http://dspace.uevora.pt/rdpc/ institutional [] 2022-01-12 15:35:19 2009-09-29 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade de \u00e9vora", "alternativeName": "", "country": "pt", "url": "http://www.uevora.pt/", "identifier": [{"identifier": "https://ror.org/02gyps716", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.uevora.pt/rdpc-oaiextended/request yes 8914 27612 +1606 {"name": "repositorio institucional universidad de antioquia", "language": "es"} [] http://bibliotecadigital.udea.edu.co/ institutional [] 2022-01-12 15:35:18 2009-09-28 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "universidad de antioquia", "alternativeName": "udea", "country": "co", "url": "http://www.udea.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecadigital.udea.edu.co/oai/request yes 2141 16615 +1629 {"name": "tamkang university institutional repository", "language": "en"} [] http://tkuir.lib.tku.edu.tw:8080/dspace/ institutional [] 2022-01-12 15:35:19 2009-10-12 15:15:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "tamkang university", "alternativeName": "\u6de1\u6c5f\u5927\u5b78", "country": "tw", "url": "http://www.tku.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tkuir.lib.tku.edu.tw:8080/dspace-oai/request yes 5110 89247 +1610 {"name": "upf digital repository", "language": "en"} [{"name": "repositori digital de la upf", "language": "ca"}, {"name": "repositorio digital de la upf", "language": "es"}] https://repositori.upf.edu institutional [] 2022-01-12 15:35:18 2009-09-28 13:13:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "universitat pompeu fabra", "alternativeName": "upf", "country": "es", "url": "https://www.upf.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://oai-repositori.upf.edu/oai/request yes 0 16304 +1568 {"name": "university of jos institutional repository", "language": "en"} [] http://irepos.unijos.edu.ng/jspui institutional [] 2022-01-12 15:35:18 2009-08-13 16:16:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "university of jos", "alternativeName": "", "country": "ng", "url": "http://www.unijos.edu.ng/", "identifier": [{"identifier": "https://ror.org/009kx9832", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://irepos.unijos.edu.ng/oai/request yes 1837 +1637 {"name": "vtext digital repository", "language": "en"} [] http://vtext.valdosta.edu:8080/xmlui/ institutional [] 2022-01-12 15:35:19 2009-10-22 09:09:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "valdosta state university", "alternativeName": "", "country": "us", "url": "http://www.valdosta.edu/", "identifier": [{"identifier": "https://ror.org/04zjcaq85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://vtext.valdosta.edu/oai/request yes 701 3191 +1569 {"name": "biblioteca virtual de la cooperaci\u00f3n internacional", "language": "en"} [] http://www.bvcooperacion.pe/biblioteca governmental [] 2022-01-12 15:35:18 2009-08-14 14:14:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "biblioteca virtual de la cooperaci\u00f3n internacional", "alternativeName": "", "country": "pe", "url": "http://www.bvcooperacion.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6995 +1601 {"name": "minerva. repositorio institucional da universidade de santiago de compostela", "language": "en"} [] https://minerva.usc.es/ institutional [] 2022-01-12 15:35:18 2009-09-24 13:13:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade de santiago de compostela", "alternativeName": "", "country": "es", "url": "http://www.usc.es/", "identifier": [{"identifier": "https://ror.org/030eybx10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://minerva.usc.es/oai/request yes 1640 24275 +1659 {"name": "national chin-yi university institutional repository", "language": "en"} [] http://ir.lib.ncut.edu.tw/ institutional [] 2022-01-12 15:35:19 2009-11-17 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "national chin-yi university", "alternativeName": "\u570b\u7acb\u52e4\u76ca\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://web2.ncut.edu.tw/bin/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4170 +1651 {"name": "recherche uo research", "language": "en"} [] http://www.ruor.uottawa.ca/ institutional [] 2022-01-12 15:35:19 2009-11-06 09:09:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of ottawa (universit\u00e9 dottawa)", "alternativeName": "", "country": "ca", "url": "http://www.uottawa.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ruor.uottawa.ca/oai/request yes 0 24318 +1628 {"name": "reposit\u00f3rio da utad", "language": "en"} [] https://repositorio.utad.pt/ institutional [] 2022-01-12 15:35:19 2009-10-12 15:15:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade de tr\u00e1s-os-montes e alto douro", "alternativeName": "utad", "country": "pt", "url": "http://www.utad.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utad.pt/oaiextended/request yes 0 6934 +1596 {"name": "universidad de burgos - repositorio institucional. trabajos acad\u00e9micos", "language": "en"} [] http://dspace.ubu.es:8080/trabajosacademicos/ institutional [] 2022-01-12 15:35:18 2009-09-21 14:14:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de burgos", "alternativeName": "", "country": "es", "url": "http://www.ubu.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.ubu.es:8080/trabajosacademicos-oai/request yes 0 131 +1649 {"name": "knustspace", "language": "en"} [] http://dspace.knust.edu.gh/ institutional [] 2022-01-12 15:35:19 2009-11-04 13:13:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kwame nkrumah university of science and technology", "alternativeName": "knust", "country": "gh", "url": "http://www.knust.edu.gh/", "identifier": [{"identifier": "https://ror.org/00cb23x68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.knust.edu.gh:8080/oai/request yes 0 5916 +1607 {"name": "repositorio academico de la biblioteca \"jcu\"", "language": "en"} [] http://bjcu.uca.edu.ni:5050/dspace/ institutional [] 2022-01-12 15:35:18 2009-09-28 11:11:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad centroamericana uca", "alternativeName": "", "country": "ni", "url": "http://www.uca.edu.ni/", "identifier": [{"identifier": "https://ror.org/03n0yd032", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2517 +1661 {"name": "tut institutional repository", "language": "en"} [] http://203.68.184.6:8080/dspace/ institutional [] 2022-01-12 15:35:19 2009-11-17 11:11:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "tainan university of technology (tut)", "alternativeName": "\u53f0\u5357\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://www.tut.edu.tw/bin/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1006 +1630 {"name": "reposit\u00f3rio institucional da esepf", "language": "en"} [] http://repositorio.esepf.pt/ institutional [] 2022-01-12 15:35:19 2009-10-12 15:15:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "escola superior de educa\u00e7\u00e3o de paula frassinetti", "alternativeName": "esepf", "country": "pt", "url": "http://www.esepf.pt/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.esepf.pt/a_univ/pol_rep.pdf", "type": "content"}, {"policy_url": "https://www.esepf.pt/wp-content/uploads/sdi/pol_rep.pdf", "type": "submission"}] {"name": "dspace", "version": ""} http://repositorio.esepf.pt/oai/request yes 1242 +1621 {"name": "reposit\u00f3rio digital da universidade da madeira", "language": "en"} [{"acronym": "digituma repository"}] http://digitool.uma.pt/ institutional [] 2022-01-12 15:35:19 2009-09-29 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade da madeira", "alternativeName": "", "country": "pt", "url": "http://www.uma.pt/", "identifier": [{"identifier": "https://ror.org/0442zbe52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://digituma.uma.pt/oaiextended/request yes 1575 3272 +1620 {"name": "repositorio da universidade de lisboa", "language": "en"} [] http://digitool01.sibul.ul.pt/ institutional [] 2022-01-12 15:35:19 2009-09-29 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidade de lisboa", "alternativeName": "", "country": "pt", "url": "http://www.ul.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} yes 4269 +1640 {"name": "dlr publication server", "language": "en"} [{"acronym": "elib"}] https://elib.dlr.de institutional [] 2022-01-12 15:35:19 2009-10-22 10:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "deutschen zentrum f\u00fcr luft- und raumfahrt", "alternativeName": "", "country": "de", "url": "http://www.dlr.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://elib.dlr.de/cgi/oai2 yes 101210 +1572 {"name": "polypublie", "language": "en"} [] https://publications.polymtl.ca institutional [] 2022-01-12 15:35:18 2009-08-18 09:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "\u00e9cole polytechnique de montr\u00e9al", "alternativeName": "", "country": "ca", "url": "https://www.polymtl.ca", "identifier": [{"identifier": "https://ror.org/05f8d4e86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://publications.polymtl.ca/cgi/oai2 yes 2535 +1627 {"name": "university of wales trinity saint david", "language": "en"} [] http://repository.uwtsd.ac.uk/ institutional [] 2022-01-12 15:35:19 2009-10-12 15:15:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of wales trinity saint david", "alternativeName": "", "country": "gb", "url": "http://www.uwtsd.ac.uk/", "identifier": [{"identifier": "https://ror.org/05gkzcc88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.uwtsd.ac.uk/cgi/oai2 yes 592 780 +1565 {"name": "vixra", "language": "en"} [] http://vixra.org/ disciplinary [] 2022-01-12 15:35:18 2009-08-11 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "vixra", "alternativeName": "", "country": "gb", "url": "http://vixra.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 24640 +1673 {"name": "ual research online", "language": "en"} [] http://ualresearchonline.arts.ac.uk/ institutional [] 2022-01-12 15:35:19 2009-11-30 15:15:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "university of the arts london", "alternativeName": "", "country": "gb", "url": "http://www.arts.ac.uk/", "identifier": [{"identifier": "https://ror.org/04cnfrn26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ualresearchonline.arts.ac.uk/cgi/oai2 yes 2622 10851 +1566 {"name": "elektronische dokumente der euv - opus", "language": "en"} [] http://www.ub.euv-frankfurt-o.de/de/benutzung/bestand/edocs/index.html institutional [] 2022-01-12 15:35:18 2009-08-11 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "european university viadrina frankfurt oder university", "alternativeName": "", "country": "de", "url": "http://www.euv-frankfurt-o.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://opus.kobv.de/euv/oai2/oai2.php yes 84 +1584 {"name": "repositorio oai biblioteca digital universidad nacional de cuyo", "language": "en"} [{"acronym": "biblioteca digital uncuyo"}] http://bdigital.uncu.edu.ar/ institutional [] 2022-01-12 15:35:18 2009-09-01 10:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional de cuyo", "alternativeName": "uncuyo", "country": "ar", "url": "http://www.uncu.edu.ar/", "identifier": [{"identifier": "https://ror.org/05sn8wf81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bdigital.uncu.edu.ar/oai/index.php yes 8586 +1597 {"name": "digitalcommons@fort lewis college", "language": "en"} [] http://digitalcommons.fortlewis.edu/ institutional [] 2022-01-12 15:35:18 2009-09-23 16:16:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "fort lewis college", "alternativeName": "flc", "country": "us", "url": "http://www.fortlewis.edu/", "identifier": [{"identifier": "https://ror.org/00aad7q36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 85 +1600 {"name": "digital commons @ butler university", "language": "en"} [] http://digitalcommons.butler.edu/ institutional [] 2022-01-12 15:35:18 2009-09-23 16:16:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "butler university", "alternativeName": "", "country": "us", "url": "http://butler.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.butler.edu/do/oai/ yes 13413 16537 +1598 {"name": "digitalcommons@c.o.d.", "language": "en"} [] http://dc.cod.edu/ institutional [] 2022-01-12 15:35:18 2009-09-23 16:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "college of dupage", "alternativeName": "cod", "country": "us", "url": "http://www.cod.edu/index.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dc.cod.edu/do/oai/ yes 5439 10073 +1599 {"name": "rula digital repository", "language": "en"} [] http://digital.library.ryerson.ca/ institutional [] 2022-01-12 15:35:18 2009-09-23 16:16:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "ryerson university", "alternativeName": "", "country": "ca", "url": "http://www.ryerson.ca/index.html", "identifier": [{"identifier": "https://ror.org/05g13zd79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2524 +1624 {"name": "scholarworks@gvsu", "language": "en"} [] http://scholarworks.gvsu.edu/ institutional [] 2022-01-12 15:35:19 2009-09-29 11:11:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "grand valley state university", "alternativeName": "", "country": "us", "url": "http://www.gvsu.edu/", "identifier": [{"identifier": "https://ror.org/001m1hv61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.gvsu.edu/do/oai/ yes 13584 19049 +1650 {"name": "at\u0131l\u0131m university open archive system", "language": "en"} [] http://acikarsiv.atilim.edu.tr/ institutional [] 2022-01-12 15:35:19 2009-11-04 13:13:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "at\u0131l\u0131m university", "alternativeName": "", "country": "tr", "url": "http://www.atilim.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2247 +1656 {"name": "openfields", "language": "en"} [] http://www.openfields.org.uk/ aggregating [] 2022-01-12 15:35:19 2009-11-13 11:11:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "national rural knowledge exchange", "alternativeName": "", "country": "gb", "url": "http://www.nationalrural.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 391 +1590 {"name": "cronfa at swansea university", "language": "en"} [] https://cronfa.swan.ac.uk/ institutional [] 2022-01-12 15:35:18 2009-09-03 14:14:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "swansea university", "alternativeName": "", "country": "gb", "url": "http://www.swan.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://cronfa.swan.ac.uk/oai/ yes 10036 46863 +1575 {"name": "scientific electronic library online - south africa", "language": "en"} [{"acronym": "scielo - south africa"}] http://www.scielo.org.za/ aggregating [] 2022-01-12 15:35:18 2009-08-19 11:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "academy of science of south africa", "alternativeName": "assaf", "country": "za", "url": "http://www.assaf.org.za/", "identifier": [{"identifier": "https://ror.org/02qsf1r97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} yes 1584 +1602 {"name": "akita university institutional repository", "language": "en"} [{"acronym": "air"}, {"name": "\u79cb\u7530\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://air.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:18 2009-09-24 13:13:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "akita university", "alternativeName": "", "country": "jp", "url": "http://www.akita-u.ac.jp/honbu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://air.repo.nii.ac.jp/oai yes 43 5276 +1612 {"name": "digital library of book studies", "language": "en"} [] http://bbc.uw.edu.pl/dlibra institutional [] 2022-01-12 15:35:18 2009-09-28 14:14:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bbc.uw.edu.pl/dlibra/oai-pmh-repository.xml yes 0 4016 +1669 {"name": "mahider", "language": "en"} [] http://mahider.ilri.org/handle/10568/1 institutional [] 2022-01-12 15:35:19 2009-11-19 11:11:48 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "international livestock research institute", "alternativeName": "ilri", "country": "ke", "url": "http://www.ilri.org/", "identifier": [{"identifier": "https://ror.org/01jxjwb74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16094 +1671 {"name": "repositorio institucional de la subsecretar\u00eda de estado de cooperaci\u00f3n internacional", "language": "en"} [{"acronym": "ri.sseci"}] http://190.166.45.252:8080/jspui/ governmental [] 2022-01-12 15:35:19 2009-11-30 11:11:46 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "secretar\u00eda de estado de econom\u00eda, planificaci\u00f3n y desarrollo", "alternativeName": "seepyd", "country": "do", "url": "http://www.stp.gov.do/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 141 +1653 {"name": "biblioth\u00e8que num\u00e9rique de lenssib", "language": "en"} [] http://www.enssib.fr/bibliotheque-numerique/ institutional [] 2022-01-12 15:35:19 2009-11-06 09:09:47 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "ecole nationale sup\u00e9rieure des sciences de linformation et des biblioth\u00e8ques", "alternativeName": "", "country": "fr", "url": "http://www.enssib.fr/", "identifier": [{"identifier": "https://ror.org/059qr5h87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.enssib.fr/bibliotheque-numerique/oai yes 13938 46039 +1662 {"name": "aspeckt dspace", "language": "en"} [] http://aspeckt.unitbv.ro/jspui/ institutional [] 2022-01-12 15:35:19 2009-11-17 11:11:23 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "transilvania university of brasov", "alternativeName": "", "country": "ro", "url": "http://www.unitbv.ro/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2083 +1668 {"name": "arhiivikeskuse digiarhiiv", "language": "en"} [] http://www.digiarhiiv.ee/dspace/ disciplinary [] 2022-01-12 15:35:19 2009-11-19 11:11:39 ["social sciences"] ["datasets"] [{"name": "arhiivikeskus", "alternativeName": "", "country": "ee", "url": "http://www.arhiivikeskus.ee/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 162 +1645 {"name": "duke law scholarship repository", "language": "en"} [] http://scholarship.law.duke.edu/ institutional [] 2022-01-12 15:35:19 2009-10-27 11:11:25 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "duke law school", "alternativeName": "duke", "country": "us", "url": "http://www.law.duke.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarship.law.duke.edu/do/oai/ yes 12683 14576 +1611 {"name": "biblioteka cyfrowa centralnego o\u015brodka doskonalenia nauczycieli", "language": "en"} [] http://bc.codn.edu.pl/ institutional [] 2022-01-12 15:35:18 2009-09-28 14:14:12 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "centre for education development (o\u015brodek rozwoju edukacji)", "alternativeName": "ced", "country": "pl", "url": "http://www.ore.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.codn.edu.pl/dlibra/oai-pmh-repository.xml yes 71 +1666 {"name": "eiah digital repository", "language": "en"} [] http://eiah.org/fa/repository disciplinary [] 2022-01-12 15:35:19 2009-11-19 10:10:38 ["technology", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "\u062f\u0627\u0646\u0634\u0646\u0627\u0645\u0647\u0654 \u062a\u0627\u0631\u06cc\u062e \u0645\u0639\u0645\u0627\u0631\u06cc \u0627\u06cc\u0631\u0627\u0646\u200c\u0634\u0647\u0631", "alternativeName": "encyclopaedia of iranian architectural history (eiah)", "country": "ir", "url": "http://eiah.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3490 +1588 {"name": "association for learning technology open access repository", "language": "en"} [{"acronym": "alt open access repository"}] https://repository.alt.ac.uk institutional [] 2022-01-12 15:35:18 2009-09-03 13:13:57 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "association for learning technology", "alternativeName": "alt", "country": "gb", "url": "https://www.alt.ac.uk", "identifier": [{"identifier": "https://ror.org/03egje930", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://repository.alt.ac.uk/cgi/oai2 yes 698 894 +1622 {"name": "biblioteca virtual de la real academia de jurisprudencia y legislaci\u00f3n", "language": "en"} [{"acronym": "iuris digital"}] http://bvrajyl.insde.es/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion disciplinary [] 2022-01-12 15:35:19 2009-09-29 10:10:48 ["humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto de espa\u00f1a", "alternativeName": "", "country": "es", "url": "http://www.insde.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bvrajyl.rajyl.es/i18n/oai/oai_bvrajyl.rajyl.es.cmd yes 0 1514 +1660 {"name": "national taiwan university of science and technology institutional repository", "language": "en"} [] http://ir.lib.ntust.edu.tw/ institutional [] 2022-01-12 15:35:19 2009-11-17 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "patents", "other_special_item_types"] [{"name": "national taiwan university of science and technology (ntust)", "alternativeName": "\u570b\u7acb\u53f0\u7063\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://www-e.ntust.edu.tw/front/bin/home.phtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.ntust.edu.tw/dspace-oai/request yes 0 43469 +1670 {"name": "foi digitalna knji\u017enica", "language": "en"} [{"acronym": "foi dlib"}] http://dlib.foi.hr/ institutional [] 2022-01-12 15:35:19 2009-11-19 11:11:59 ["social sciences"] ["other_special_item_types"] [{"name": "sveu\u010dili\u0161ta u zagrebu", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dlib.foi.hr/oai/request yes 0 52 +1613 {"name": "radom digital library", "language": "en"} [{"acronym": "radomska bibliotecka cyfrowa"}] http://bc.mbpradom.pl/dlibra governmental [] 2022-01-12 15:35:18 2009-09-28 14:14:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "miejska bibloteka publiczna - radomiu", "alternativeName": "", "country": "pl", "url": "http://www.mbpradom.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.mbpradom.pl/dlibra/oai-pmh-repository.xml yes 0 24169 +1623 {"name": "biblioteca valenciana digital", "language": "en"} [] http://bivaldi.gva.es/ institutional [] 2022-01-12 15:35:19 2009-09-29 10:10:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioteca valenciana", "alternativeName": "", "country": "es", "url": "http://bivaldi.gva.es/es/cms/elemento.cmd?id=estaticos/paginas/inicio.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bivaldi.gva.es/i18n/oai/oai_bivaldi.gva.es.cmd yes 7347 17152 +1646 {"name": "pandektis", "language": "en"} [{"acronym": "\u03bf \u03c0\u03b1\u03bd\u03b4\u03b5\u03ba\u03c4\u03b7\u03c2"}] http://pandektis.ekt.gr/pandektis/ disciplinary [] 2022-01-12 15:35:19 2009-10-29 10:10:33 ["arts", "humanities"] ["other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://pandektis.ekt.gr/pandektis-ext-oai/request yes 0 40584 +1578 {"name": "archaeology data service", "language": "en"} [] http://archaeologydataservice.ac.uk/ disciplinary [] 2022-01-12 15:35:18 2009-08-19 11:11:44 ["humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "university of york", "alternativeName": "", "country": "gb", "url": "https://www.york.ac.uk/", "identifier": [{"identifier": "https://ror.org/04m01e293", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://archaeologydataservice.ac.uk/about/ourwork.xhtml", "type": "data"}, {"policy_url": "http://archaeologydataservice.ac.uk/advice/collectionspolicy.xhtml", "type": "content"}, {"policy_url": "http://archaeologydataservice.ac.uk/advice/collectionspolicy.xhtml", "type": "submission"}, {"policy_url": "http://archaeologydataservice.ac.uk/advice/policydocuments.xhtml#prespol", "type": "preservation"}] {"name": "", "version": ""} http://archaeologydataservice.ac.uk/advice/oaipmh yes 1 1803 +1583 {"name": "dspace at the college of william and mary", "language": "en"} [] https://digitalarchive.wm.edu/ institutional [] 2022-01-12 15:35:18 2009-09-01 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "college of william and mary", "alternativeName": "", "country": "us", "url": "http://www.wm.edu/", "identifier": [{"identifier": "https://ror.org/03hsf0573", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalarchive.wmwikis.net/", "type": "metadata"}, {"policy_url": "http://digitalarchive.wmwikis.net/", "type": "data"}, {"policy_url": "http://digitalarchive.wmwikis.net/", "type": "content"}, {"policy_url": "http://digitalarchive.wmwikis.net/", "type": "submission"}, {"policy_url": "http://digitalarchive.wmwikis.net/", "type": "preservation"}] {"name": "dspace", "version": ""} https://digitalarchive.wm.edu/oai/request yes 1194 11974 +1594 {"name": "bsu digital library", "language": "en"} [{"name": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0431\u0433\u0443", "language": "be"}] https://elib.bsu.by institutional [] 2022-01-12 15:35:18 2009-09-15 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "belarusian state university", "alternativeName": "bsu", "country": "by", "url": "https://bsu.by", "identifier": [{"identifier": "https://ror.org/021036w13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "metadata"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "data"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "content"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "submission"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "preservation"}] {"name": "dspace", "version": ""} https://elib.bsu.by/oai yes 12237 175364 +1616 {"name": "chia nan university of pharmacy & science institutional repository", "language": "en"} [{"acronym": "\u5609\u5357\u85e5\u7406\u5927\u5b78\u6a5f\u69cb\u5178\u85cf"}] http://ir.cnu.edu.tw/ institutional [] 2022-01-12 15:35:19 2009-09-29 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "chia nan university of pharmacy & science", "alternativeName": "\u5609\u5357\u85e5\u7406\u5927\u5b78", "country": "tw", "url": "http://www.cnu.edu.tw/", "identifier": [{"identifier": "https://ror.org/02834m470", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ir.chna.edu.tw/about/index.jsp", "type": "data"}] {"name": "dspace", "version": ""} http://ir.cnu.edu.tw/ir-oai/request yes 0 17544 +1586 {"name": "digital access to scholarship at harvard", "language": "en"} [{"acronym": "dash"}] http://dash.harvard.edu/ institutional [] 2022-01-12 15:35:18 2009-09-02 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "harvard university", "alternativeName": "", "country": "us", "url": "http://www.harvard.edu/", "identifier": [{"identifier": "https://ror.org/03vek6s52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openmetadata.lib.harvard.edu/content/digital-access-scholarship-harvard-dash-dataset", "type": "metadata"}, {"policy_url": "https://osc.hul.harvard.edu/dash/termsofuse", "type": "data"}, {"policy_url": "http://osc.hul.harvard.edu/dash/dash-copyright-faq.php", "type": "content"}, {"policy_url": "http://osc.hul.harvard.edu/dash/dash-procedure-faq.php", "type": "submission"}] {"name": "dspace", "version": ""} http://dash.harvard.edu/oai/request yes 25822 47842 +1567 {"name": "universiti putra malaysia institutional repository", "language": "en"} [{"acronym": "psas ir"}] http://psasir.upm.edu.my/ institutional [] 2022-01-12 15:35:18 2009-08-12 16:16:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universiti putra malaysia", "alternativeName": "", "country": "my", "url": "http://www.upm.edu.my/", "identifier": [{"identifier": "https://ror.org/02e91jd64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://psasir.upm.edu.my/policies.html", "type": "metadata"}, {"policy_url": "http://psasir.upm.edu.my/policies.html", "type": "data"}, {"policy_url": "http://psasir.upm.edu.my/policies.html", "type": "content"}, {"policy_url": "http://psasir.upm.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://psasir.upm.edu.my/cgi/oai2 yes 48028 72224 +1664 {"name": "qatar university institutional repository", "language": "en"} [{"acronym": "qspace"}] http://qspace.qu.edu.qa/ institutional [] 2022-01-12 15:35:19 2009-11-19 09:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "qatar university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0642\u0637\u0631", "country": "qa", "url": "http://www.qu.edu.qa/", "identifier": [{"identifier": "https://ror.org/00yhnba62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://qspace.qu.edu.qa/page/qspace-policies", "type": "metadata"}, {"policy_url": "http://qspace.qu.edu.qa/page/qspace-policies", "type": "data"}, {"policy_url": "http://qspace.qu.edu.qa/page/qspace-policies", "type": "content"}, {"policy_url": "http://qspace.qu.edu.qa/page/qspace-policies", "type": "submission"}, {"policy_url": "http://qspace.qu.edu.qa/page/qspace-policies", "type": "preservation"}] {"name": "dspace", "version": ""} http://qspace.qu.edu.qa/oai/request yes 2373 12992 +1595 {"name": "ruc: repositorio da universidade da coru\u00f1a", "language": "es"} [{"acronym": "ruc"}] https://ruc.udc.es/dspace institutional [] 2022-01-12 15:35:18 2009-09-15 14:14:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidade da coru\u00f1a", "alternativeName": "", "country": "es", "url": "https://www.udc.gal", "identifier": [{"identifier": "https://ror.org/01qckj285", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ruc.udc.es/dspace/themes/udc/html/politicas_es.html", "type": "metadata"}, {"policy_url": "https://ruc.udc.es/dspace/themes/udc/html/politicas_es.html", "type": "data"}, {"policy_url": "https://ruc.udc.es/dspace/themes/udc/html/politicas_es.html", "type": "content"}, {"policy_url": "https://ruc.udc.es/dspace/themes/udc/html/politicas_es.html", "type": "submission"}, {"policy_url": "https://ruc.udc.es/dspace/themes/udc/html/politicas_es.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://ruc.udc.es/oai/request yes 14364 22294 +1570 {"name": "brac university institutional repository", "language": "en"} [] http://dspace.bracu.ac.bd/ institutional [] 2022-01-12 15:35:18 2009-08-17 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "brac university", "alternativeName": "", "country": "bd", "url": "http://www.bracu.ac.bd//", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dspace.bracu.ac.bd/policy.jsp", "type": "metadata"}, {"policy_url": "http://dspace.bracu.ac.bd/policy.jsp", "type": "data"}, {"policy_url": "http://dspace.bracu.ac.bd/policy.jsp", "type": "content"}, {"policy_url": "http://dspace.bracu.ac.bd/policy.jsp", "type": "submission"}, {"policy_url": "http://dspace.bracu.ac.bd/policy.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspace.bracu.ac.bd/oai/request yes 3854 8947 +1675 {"name": "insight", "language": "en"} [] http://insight.cumbria.ac.uk/ institutional [] 2022-01-12 15:35:19 2009-12-01 11:11:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of cumbria", "alternativeName": "", "country": "gb", "url": "http://www.cumbria.ac.uk/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://insight.cumbria.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://insight.cumbria.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://insight.cumbria.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://insight.cumbria.ac.uk/cgi/oai2 yes 2378 4300 +1634 {"name": "concordia university research repository", "language": "en"} [{"acronym": "spectrum"}] https://spectrum.library.concordia.ca/ institutional [] 2022-01-12 15:35:19 2009-10-20 10:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "concordia university", "alternativeName": "", "country": "ca", "url": "http://www.concordia.ca/", "identifier": [{"identifier": "https://ror.org/0420zvk78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://spectrum.library.concordia.ca/policies.html", "type": "metadata"}, {"policy_url": "http://spectrum.library.concordia.ca/policies.html", "type": "data"}, {"policy_url": "http://spectrum.library.concordia.ca/policies.html", "type": "content"}, {"policy_url": "http://spectrum.library.concordia.ca/information.html", "type": "content"}, {"policy_url": "http://spectrum.library.concordia.ca/policies.html", "type": "submission"}, {"policy_url": "http://spectrum.library.concordia.ca/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://spectrum.library.concordia.ca/cgi/oai2 yes 16865 17488 +1636 {"name": "edshare", "language": "en"} [] http://www.edshare.soton.ac.uk/ disciplinary [] 2022-01-12 15:35:19 2009-10-22 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.edshare.soton.ac.uk/edshare_takedown.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} http://www.edshare.soton.ac.uk/cgi/oai2 yes 639 5414 +1631 {"name": "artxiker - @hal", "language": "en"} [] http://artxiker.ccsd.cnrs.fr/ disciplinary [] 2022-01-12 15:35:19 2009-10-13 09:09:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "langue et les textes basques iker", "alternativeName": "iker", "country": "fr", "url": "http://www.iker.cnrs.fr/", "identifier": [{"identifier": "https://ror.org/03bj0v820", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://artxiker.ccsd.cnrs.fr/", "type": "data"}, {"policy_url": "http://artxiker.ccsd.cnrs.fr/", "type": "content"}, {"policy_url": "http://artxiker.ccsd.cnrs.fr/", "type": "submission"}] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/artxiker yes 386 494 +1674 {"name": "nrc publications archive", "language": "en"} [{"acronym": "nparc"}] https://nrc-publications.canada.ca/eng/home/ institutional [] 2022-01-12 15:35:19 2009-12-01 11:11:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national research council of canada", "alternativeName": "nrc", "country": "ca", "url": "http://www.nrc-cnrc.gc.ca/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/jsp/nparc_np.jsp?lang=en", "type": "metadata"}, {"policy_url": "http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/jsp/nparc_np.jsp?lang=en", "type": "data"}, {"policy_url": "http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/jsp/nparc_np.jsp?lang=en", "type": "content"}, {"policy_url": "http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/jsp/nparc_np.jsp?lang=en", "type": "submission"}, {"policy_url": "http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/jsp/nparc_np.jsp?lang=en", "type": "preservation"}] {"name": "other", "version": ""} http://oai-pmh.nrc-cnrc.gc.ca/ctrl yes 478 57949 +1713 {"name": "open-access-repositorium der th wildau", "language": "en"} [] https://opus4.kobv.de/opus4-th-wildau institutional [] 2022-01-12 15:35:20 2010-02-05 12:12:54 ["arts", "humanities", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "technische hochschule wildau", "alternativeName": "", "country": "de", "url": "http://th-wildau.de/bibliothek", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opus4.kobv.de/opus4-th-wildau/home/index/help/content/policies", "type": "metadata"}, {"policy_url": "https://opus4.kobv.de/opus4-th-wildau/home/index/help/content/policies", "type": "preservation"}] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-th-wildau/oai yes 744 +1715 {"name": "reposit\u00f3rio do hospital prof. doutor fernando fonseca", "language": "en"} [] http://repositorio.hff.min-saude.pt/ institutional [] 2022-01-12 15:35:20 2010-02-08 10:10:36 ["health and medicine", "social sciences"] ["journal_articles"] [{"name": "hospital prof. doutor fernando fonseca", "alternativeName": "hff", "country": "pt", "url": "http://www.hff.min-saude.pt/", "identifier": [{"identifier": "https://ror.org/010bsbc18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.hff.min-saude.pt/oaiextended/request yes 1778 +1787 {"name": "china medical university institutional repository", "language": "en"} [] http://ir.cmu.edu.tw/ir/ institutional [] 2022-01-12 15:35:22 2010-05-06 11:11:50 ["health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "china medical university", "alternativeName": "\u4e2d\u570b\u91ab\u85e5\u5927\u5b78", "country": "tw", "url": "http://www.cmu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 52947 +1733 {"name": "ginmu :global institutional repository of nara medical university", "language": "en"} [{"acronym": "ginmu"}, {"name": "\u5948\u826f\u770c\u7acb\u533b\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea ginmu", "language": "ja"}] http://ginmu.naramed-u.ac.jp/ institutional [] 2022-01-12 15:35:21 2010-02-24 10:10:42 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "nara medical university", "alternativeName": "", "country": "jp", "url": "http://www.naramed-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ginmu.naramed-u.ac.jp/dspace-oai/request yes 27 3399 +1791 {"name": "vid:open", "language": "en"} [] https://vid.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-07 15:15:58 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "vid specialized university", "alternativeName": "", "country": "no", "url": "https://www.vid.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://vid.brage.unit.no/vid-oai/request yes 2909 +1679 {"name": "digital himalaya", "language": "en"} [] http://www.digitalhimalaya.com/ disciplinary [] 2022-01-12 15:35:19 2009-12-07 10:10:33 ["humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "http://www.cam.ac.uk/", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1695 {"name": "hebrew books", "language": "en"} [] http://www.hebrewbooks.org/ disciplinary [] 2022-01-12 15:35:20 2009-12-14 10:10:20 ["humanities"] ["books_chapters_and_sections"] [{"name": "society fot the preservation of hebrew books", "alternativeName": "", "country": "us", "url": "http://www.hebrewbooks.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.publishyoursefer.com/reprints/forlibraries/oai/oai.pl yes 0 53530 +1792 {"name": "mf open", "language": "en"} [] https://mfopen.mf.no institutional [] 2022-01-12 15:35:22 2010-05-07 16:16:49 ["humanities"] ["theses_and_dissertations"] [{"name": "mf norwegian school of theology", "alternativeName": "", "country": "no", "url": "http://www.mf.no/", "identifier": [{"identifier": "https://ror.org/01qafy255", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://mfopen.mf.no/mf-oai/request yes 0 691 +1711 {"name": "science and religion dialogue prints", "language": "en"} [{"acronym": "scireprints"}] http://scireprints.lu.lv/ institutional [] 2022-01-12 15:35:20 2010-02-03 15:15:27 ["science", "arts", "humanities"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of latvia", "alternativeName": "", "country": "lv", "url": "http://www.lu.lv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scireprints.lu.lv/policies.html", "type": "metadata"}, {"policy_url": "http://scireprints.lu.lv/policies.html", "type": "data"}, {"policy_url": "http://scireprints.lu.lv/policies.html", "type": "content"}, {"policy_url": "http://scireprints.lu.lv/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://scireprints.lu.lv/cgi/oai2 yes 286 +1702 {"name": "ethics in science and engineering national clearinghouse", "language": "en"} [{"acronym": "esence"}] http://scholarworks.umass.edu/esence/ disciplinary [] 2022-01-12 15:35:20 2010-01-04 13:13:44 ["science", "humanities", "technology"] ["bibliographic_references", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of massachusetts amherst", "alternativeName": "", "country": "us", "url": "http://www.umass.edu/", "identifier": [{"identifier": "https://ror.org/0072zz521", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 139 +1763 {"name": "dspace avignon at inra avignon", "language": "en"} [] https://w3.avignon.inra.fr/dspace/ institutional [] 2022-01-12 15:35:21 2010-03-31 14:14:08 ["science", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "national institute of agronomic research provence-alpes-c\u00f4te d\u2019azur", "alternativeName": "inra centre de recherche paca", "country": "fr", "url": "http://www.avignon.inra.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://w3.avignon.inra.fr/dspace-oai/request yes 0 361 +1726 {"name": "university of vienna phaidra", "language": "en"} [] https://phaidra.univie.ac.at institutional [] 2022-01-12 15:35:20 2010-02-17 14:14:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of vienna", "alternativeName": "", "country": "at", "url": "https://www.univie.ac.at", "identifier": [{"identifier": "https://ror.org/03prydq77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://services.phaidra.univie.ac.at/api/oai yes 54229 +1758 {"name": "rajamangala university of technology phra nakhon intellectual repository", "language": "en"} [{"acronym": "rmutp ir"}] http://repository.rmutp.ac.th/ institutional [] 2022-01-12 15:35:21 2010-03-23 10:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "rajamangala university of technology phra nakhon", "alternativeName": "\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e23\u0e32\u0e0a\u0e21\u0e07\u0e04\u0e25\u0e1e\u0e23\u0e30\u0e19\u0e04\u0e23", "country": "th", "url": "http://www.rmutp.ac.th/", "identifier": [{"identifier": "https://ror.org/02mg36m74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2045 +1691 {"name": "brasiliana usp", "language": "pt"} [] http://www.brasiliana.usp.br/ institutional [] 2022-01-12 15:35:20 2009-12-09 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidade de s\u00e3o paulo", "alternativeName": "usp", "country": "br", "url": "http://www.usp.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7665 +1684 {"name": "b\u1ed9 s\u01b0u t\u1eadp s\u1ed1", "language": "en"} [] http://www.vnulib.edu.vn:8000/dspace/ institutional [] 2022-01-12 15:35:20 2009-12-07 11:11:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "\u0111\u1ea1i h\u1ecdc qu\u1ed1c gia h\u1ed3 ch\u00ed minh (national university of ho chi minh)", "alternativeName": "\u0111hqg-hcm", "country": "vn", "url": "http://www.vnuhcm.edu.vn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1938 +1785 {"name": "repositorio institucional universidad de m\u00e1laga", "language": "en"} [{"acronym": "riuma"}] http://riuma.uma.es/ institutional [] 2022-01-12 15:35:22 2010-05-06 10:10:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad de m\u00e1laga", "alternativeName": "", "country": "es", "url": "http://www.uma.es/", "identifier": [{"identifier": "https://ror.org/036b2ww28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://riuma.uma.es/oai/request yes 12404 +1707 {"name": "stellenbosch university sunscholar repository", "language": "en"} [] http://scholar.sun.ac.za/ institutional [] 2022-01-12 15:35:20 2010-01-28 11:11:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "stellenbosch university", "alternativeName": "", "country": "za", "url": "http://www.sun.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholar.sun.ac.za/oai/request yes 53004 +1710 {"name": "unt digital library", "language": "en"} [] http://digital.library.unt.edu/ institutional [] 2022-01-12 15:35:20 2010-01-29 11:11:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of north texas", "alternativeName": "unt", "country": "us", "url": "http://www.unt.edu/", "identifier": [{"identifier": "https://ror.org/00v97ad02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital.library.unt.edu/oai/ yes 338059 +1706 {"name": "digital innovation south africa", "language": "en"} [{"acronym": "disa"}] http://www.disa.ukzn.ac.za/ disciplinary [] 2022-01-12 15:35:20 2010-01-25 10:10:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of kwazulu-natal", "alternativeName": "ukzn", "country": "za", "url": "http://www.ukzn.ac.za/homepage.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1705 {"name": "madan puraskar pustakalaya", "language": "en"} [] http://madanpuraskar.org/index_mpp.php disciplinary [] 2022-01-12 15:35:20 2010-01-25 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "madan puraskar pustakalaya", "alternativeName": "mpp", "country": "np", "url": "http://madanpuraskar.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 100472 +1701 {"name": "unitn-eprints phd", "language": "en"} [] http://eprints-phd.biblio.unitn.it/ institutional [] 2022-01-12 15:35:20 2010-01-04 13:13:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di trento", "alternativeName": "", "country": "it", "url": "http://www.unitn.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints-phd.biblio.unitn.it/policies.html", "type": "metadata"}, {"policy_url": "http://eprints-phd.biblio.unitn.it/policies.html", "type": "data"}, {"policy_url": "http://eprints-phd.biblio.unitn.it/policies.html", "type": "content"}, {"policy_url": "http://eprints-phd.biblio.unitn.it/information.html", "type": "content"}, {"policy_url": "http://eprints-phd.biblio.unitn.it/policies.html", "type": "submission"}, {"policy_url": "http://eprints-phd.biblio.unitn.it/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints-phd.biblio.unitn.it/cgi/oai2 yes 1526 +1704 {"name": "culturally authentic pictorial lexicon", "language": "en"} [{"acronym": "capl"}] http://capl.washjeff.edu/ disciplinary [] 2022-01-12 15:35:20 2010-01-11 16:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "washington & jefferson college", "alternativeName": "", "country": "us", "url": "http://www.washjeff.edu/", "identifier": [{"identifier": "https://ror.org/05k3dc376", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 45857 +1762 {"name": "berman jewish policy archive @ nyu wagner", "language": "en"} [] http://bjpa.org/ institutional [] 2022-01-12 15:35:21 2010-03-30 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "new york university", "alternativeName": "nyu", "country": "us", "url": "http://www.nyu.edu/", "identifier": [{"identifier": "https://ror.org/0190ak572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 118570 +1724 {"name": "open thesis", "language": "en"} [] http://www.openthesis.org/ aggregating [] 2022-01-12 15:35:20 2010-02-15 13:13:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "open thesis", "alternativeName": "", "country": "us", "url": "http://www.openthesis.org/about.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 432282 +1727 {"name": "escuela de postgrado - tesis postgraduales", "language": "en"} [] http://tesis.epg.uagrm.edu.bo/sdx/uagrm institutional [] 2022-01-12 15:35:20 2010-02-18 14:14:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad autonoma gabriel rene moreno", "alternativeName": "uagrm", "country": "bo", "url": "http://www.uagrm.edu.bo/", "identifier": [{"identifier": "https://ror.org/01w17ks16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} yes 254 +1736 {"name": "adam mickiewicz university repository", "language": "en"} [{"acronym": "amur"}, {"name": "repozytorium uniwersytetu adama mickiewicza", "language": "pl"}, {"acronym": "amur"}] http://repozytorium.amu.edu.pl institutional [] 2022-01-12 15:35:21 2010-03-01 13:13:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "adam mickiewicz university adam mickiewicz university in pozna\u0144", "alternativeName": "amu", "country": "pl", "url": "http://international.amu.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 632 +1689 {"name": "access to research and communications annals", "language": "en"} [{"acronym": "arca - igc"}] http://arca.igc.gulbenkian.pt/ institutional [] 2022-01-12 15:35:20 2009-12-07 14:14:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "funda\u00e7\u00e3o calouste gulbenkian", "alternativeName": "", "country": "pt", "url": "http://www.gulbenkian.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arca.igc.gulbenkian.pt/oaiextended/request yes 583 +1767 {"name": "aberdeen university research archive", "language": "en"} [{"acronym": "aura"}] http://aura.abdn.ac.uk/ institutional [] 2022-01-12 15:35:21 2010-04-07 09:09:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of aberdeen", "alternativeName": "", "country": "gb", "url": "http://www.abdn.ac.uk/", "identifier": [{"identifier": "https://ror.org/016476m91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://aura.abdn.ac.uk/dspace-oai/request yes 9678 13039 +1694 {"name": "bulgarian digital mathematics library at imi-bas", "language": "en"} [{"acronym": "buldml"}] http://sci-gems.math.bas.bg/ institutional [] 2022-01-12 15:35:20 2009-12-09 11:11:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "bulgarian academy of sciences", "alternativeName": "", "country": "bg", "url": "http://www.bas.bg/", "identifier": [{"identifier": "https://ror.org/01x8hew03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://sci-gems.math.bas.bg:8080/oai/request yes 2540 +1698 {"name": "chung cheng university institutional repository", "language": "en"} [{"acronym": "ccu institutional repository"}] http://ccur.lib.ccu.edu.tw/ institutional [] 2022-01-12 15:35:20 2009-12-17 14:14:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "national chung cheng university", "alternativeName": "\u570b\u7acb\u4e2d\u6b63\u5927\u5b78", "country": "tw", "url": "http://www.ccu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ccur.lib.ccu.edu.tw/ir-oai/request yes 6360 +1768 {"name": "digital repository of cochin university of science & technology", "language": "en"} [{"acronym": "dyuthi"}] http://dyuthi.cusat.ac.in/ institutional [] 2022-01-12 15:35:21 2010-04-07 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "cochin university of science & technology", "alternativeName": "cusat", "country": "in", "url": "http://www.cusat.nic.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dyuthi.cusat.ac.in/oai/request yes 0 4721 +1688 {"name": "publikationenserver der georg-august-universit\u00e4t g\u00f6ttingen", "language": "en"} [{"acronym": "goescholar"}] http://goedoc.uni-goettingen.de/ institutional [] 2022-01-12 15:35:20 2009-12-07 13:13:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "georg-august-universit\u00e4t g\u00f6ttingen", "alternativeName": "sub g\u00f6ttingen", "country": "de", "url": "http://www.uni-goettingen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8782 +1712 {"name": "national university of tainan institutional repository", "language": "en"} [{"acronym": "nutnr"}] http://nutnr.lib.nutn.edu.tw/ institutional [] 2022-01-12 15:35:20 2010-02-05 12:12:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national university of tainan", "alternativeName": "\u570b\u7acb\u53f0\u5357\u5927\u5b78", "country": "tw", "url": "http://www.nutn.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6937 +1700 {"name": "repositorio de objetos de docencia e investigaci\u00f3n de la universidad de c\u00e1diz", "language": "en"} [{"acronym": "rodin"}] http://rodin.uca.es/xmlui/ institutional [] 2022-01-12 15:35:20 2010-01-04 13:13:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de c\u00e1diz", "alternativeName": "", "country": "es", "url": "http://www.uca.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rodin.uca.es/oai/request yes 2542 16105 +1696 {"name": "ukzn institutional repository", "language": "en"} [{"acronym": "researchspace@ukzn"}] http://researchspace.ukzn.ac.za/jspui/ institutional [] 2022-01-12 15:35:20 2009-12-16 11:11:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of kwazulu-natal", "alternativeName": "ukzn", "country": "za", "url": "http://www.ukzn.ac.za/homepage.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 551 +1708 {"name": "university of waterloos institutional repository", "language": "en"} [{"acronym": "uwspace"}] https://uwspace.uwaterloo.ca institutional [] 2022-01-12 15:35:20 2010-01-28 11:11:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of waterloo", "alternativeName": "", "country": "ca", "url": "https://uwaterloo.ca", "identifier": [{"identifier": "https://ror.org/01aff2v68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uwspace.uwaterloo.ca/oai/request yes 11809 +1681 {"name": "brock university digital repository", "language": "en"} [] http://dr.library.brocku.ca/ institutional [] 2022-01-12 15:35:19 2009-12-07 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "brock university", "alternativeName": "", "country": "ca", "url": "http://brocku.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dr.library.brocku.ca/oai/request yes 2784 13599 +1734 {"name": "repositorio de la universidad de puerto rico", "language": "en"} [] http://repositorio.upr.edu:8080/jspui/ institutional [] 2022-01-12 15:35:21 2010-03-01 13:13:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad de puerto rico", "alternativeName": "upr", "country": "pr", "url": "http://www.upr.edu/", "identifier": [{"identifier": "https://ror.org/02yg0nm07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 494 +1751 {"name": "ceu institutional university", "language": "en"} [{"name": "ceu repositorio institucional", "language": "es"}] https://repositorioinstitucional.ceu.es institutional [] 2022-01-26 16:56:34 2010-03-16 13:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "fundaci\u00f3n universitaria san pablo ceu", "alternativeName": "", "country": "es", "url": "https://www.ceu.es", "identifier": [{"identifier": "https://ror.org/04a0dbe36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorioinstitucional.ceu.es/oai/request yes 1008 100 +1737 {"name": "repositorio digital universidad polit\u00e9cnica salesiana", "language": "en"} [] http://dspace.ups.edu.ec/ institutional [] 2022-01-12 15:35:21 2010-03-02 14:14:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad polit\u00e9cnica salesiana", "alternativeName": "", "country": "ec", "url": "http://www.ups.edu.ec/", "identifier": [{"identifier": "https://ror.org/00f11af73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.ups.edu.ec/oai/request yes 14769 +1786 {"name": "repositorio institucional universidad francisco gavidia", "language": "en"} [] https://ri.ufg.edu.sv/jspui institutional [] 2022-01-12 15:35:22 2010-05-06 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad francisco gavidia el salvador", "alternativeName": "", "country": "sv", "url": "http://www.ufg.edu.sv/", "identifier": [{"identifier": "https://ror.org/02spway15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ri.ufg.edu.sv/oai/request yes 2730 +1769 {"name": "repositorio uasb-digital", "language": "en"} [] http://repositorio.uasb.edu.ec/ institutional [] 2022-01-12 15:35:21 2010-04-07 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad andina sim\u00f3n bolivar", "alternativeName": "", "country": "ec", "url": "http://www.uasb.edu.ec/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uasb.edu.ec/oai/request? yes 5609 +1765 {"name": "ubibliorum", "language": "en"} [] http://ubibliorum.ubi.pt/ institutional [] 2022-01-12 15:35:21 2010-03-31 14:14:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade da beira interior", "alternativeName": "ubi", "country": "pt", "url": "http://www.ubi.pt/", "identifier": [{"identifier": "https://ror.org/03nf36p02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4513 +1761 {"name": "biens culturels africains", "language": "en"} [] http://bca.ucad.sn/jspui/ institutional [] 2022-01-12 15:35:21 2010-03-30 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e9 cheikh anta diop", "alternativeName": "", "country": "sn", "url": "http://www.ucad.sn/", "identifier": [{"identifier": "https://ror.org/04je6yw13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bca.ucad.sn/oai/request yes 0 321 +1753 {"name": "ounongo repository", "language": "en"} [] http://ir.nust.na/xmlui/ institutional [] 2022-01-12 15:35:21 2010-03-17 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "polytechnic of namibia", "alternativeName": "", "country": "na", "url": "http://www.polytechnic.edu.na/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 513 +1770 {"name": "postgrado de la ff. cc. aa. universidad de guayaquil", "language": "en"} [] http://repositorio.maeug.edu.ec/ institutional [] 2022-01-12 15:35:21 2010-04-07 10:10:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects"] [{"name": "universidad de guayaquil", "alternativeName": "", "country": "ec", "url": "http://www.ug.edu.ec/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 360 +1789 {"name": "uis brage", "language": "en"} [] https://uis.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-07 12:12:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of stavanger", "alternativeName": "uis", "country": "no", "url": "http://www.uis.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uis.brage.unit.no/uis-oai/request yes 5249 +1721 {"name": "ulusal \u00fcniversiteleraras\u0131 a\u00e7\u0131k eri\u015fim sistemi - bah\u00e7e\u015fehir \u00fcniversitesi", "language": "en"} [] http://acikerisim.bahcesehir.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:20 2010-02-15 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "bah\u00e7e\u015fehir university", "alternativeName": "", "country": "tr", "url": "http://www.library.bahcesehir.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.bahcesehir.edu.tr:8080/oai/driver yes 1057 +1686 {"name": "university of cincinnati digital resource commons", "language": "en"} [] http://drc.libraries.uc.edu/ institutional [] 2022-01-12 15:35:20 2009-12-07 13:13:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "university of cincinnati", "alternativeName": "", "country": "us", "url": "http://www.uc.edu/", "identifier": [{"identifier": "https://ror.org/01e3m7079", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 594737 +1722 {"name": "i\u0307t\u00fc akademik a\u00e7\u0131k ar\u015fiv", "language": "en"} [] http://polen.itu.edu.tr/ institutional [] 2022-01-12 15:35:20 2010-02-15 11:11:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "i\u0307stanbul teknik \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.itu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://polen.itu.edu.tr/oai/request yes 14264 +1685 {"name": "ansto publications online", "language": "en"} [] http://apo.ansto.gov.au/dspace/ institutional [] 2022-01-12 15:35:20 2009-12-07 13:13:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "australian nuclear science and technology organisation", "alternativeName": "ansto", "country": "au", "url": "http://www.ansto.gov.au/", "identifier": [{"identifier": "https://ror.org/05j7fep28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://apo.ansto.gov.au/oai/request yes 449 4051 +1788 {"name": "chinese culture university institutional repository(\u4e2d\u570b\u6587\u5316\u5927\u5b78\u6a5f\u69cb\u5178\u85cf)", "language": "en"} [] http://ir.lib.pccu.edu.tw/ institutional [] 2022-01-12 15:35:22 2010-05-07 12:12:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chinese culture university", "alternativeName": "\u4e2d\u570b\u6587\u5316\u5927\u5b78", "country": "tw", "url": "http://www.pccu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.pccu.edu.tw/ir-oai/request yes 0 14999 +1779 {"name": "hi\u00f8 brage", "language": "en"} [] https://hiof.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-06 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "\u00f8stfold university college", "alternativeName": "", "country": "no", "url": "http://www.hiof.no/", "identifier": [{"identifier": "https://ror.org/04gf7fp41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://hiof.brage.unit.no/hiof-oai/request yes 867 +1777 {"name": "brage nih", "language": "en"} [] https://nih.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-06 09:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "norwegian school of sport sciences", "alternativeName": "", "country": "no", "url": "http://www.nih.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nih.brage.unit.no/nih-oai/ yes 1748 +1783 {"name": "chung yuan christian university institutional repository", "language": "en"} [] http://cycuir.lib.cycu.edu.tw/ institutional [] 2022-01-12 15:35:22 2010-05-06 10:10:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects"] [{"name": "chung yuan christian university", "alternativeName": "\u4e2d\u539f\u5927\u5b78", "country": "tw", "url": "http://www.cycu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 38037 +1755 {"name": "elar at yarsu", "language": "en"} [] http://elar.uniyar.ac.ru/jspui institutional [] 2022-01-12 15:35:21 2010-03-22 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "p.g. demidov yaroslavl state university", "alternativeName": "", "country": "ru", "url": "http://www.uniyar.ac.ru/", "identifier": [{"identifier": "https://ror.org/044s2fj67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.uniyar.ac.ru/oai/request yes 330 3535 +1683 {"name": "kauno kolegija repository", "language": "en"} [] http://dspace.kaunokolegija.lt institutional [] 2022-01-12 15:35:19 2009-12-07 11:11:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "kauno kolegija", "alternativeName": "", "country": "lt", "url": "https://www.kaunokolegija.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.kaunokolegija.lt/oai/request yes 384 +1697 {"name": "kovsiescholar repository", "language": "en"} [] http://scholar.ufs.ac.za:8080/xmlui institutional [] 2022-01-12 15:35:20 2009-12-16 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of the free state", "alternativeName": "ufs", "country": "zm", "url": "https://www.ufs.ac.za", "identifier": [{"identifier": "https://ror.org/009xwd568", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1280 +1717 {"name": "repositori institusi universitas sumatera utara", "language": "id"} [{"name": "the university institutional repository", "language": "en"}, {"acronym": "usu-ir"}] http://repository.usu.ac.id/ institutional [] 2022-01-12 15:35:20 2010-02-09 09:09:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of sumatera utara", "alternativeName": "", "country": "id", "url": "http://www.usu.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.usu.ac.id/oai/request yes 64987 +1750 {"name": "repositorio acad\u00e9mico espoch", "language": "es"} [] http://dspace.espoch.edu.ec institutional [] 2022-01-12 15:35:21 2010-03-12 16:16:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "escuela superior politecninca de chimborazo", "alternativeName": "espoch", "country": "ec", "url": "https://www.espoch.edu.ec", "identifier": [{"identifier": "https://ror.org/02zyw2q61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.espoch.edu.ec/oai yes 22 +1735 {"name": "repositorio digital academico de la ueb", "language": "en"} [] http://www.biblioteca.ueb.edu.ec/ institutional [] 2022-01-12 15:35:21 2010-03-01 13:13:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad estatal de bolivar", "alternativeName": "", "country": "ec", "url": "http://www.ueb.edu.ec/", "identifier": [{"identifier": "https://ror.org/005cgg117", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.biblioteca.ueb.edu.ec/oai/request yes 1586 +1714 {"name": "reposit\u00f3rio comum", "language": "en"} [] http://comum.rcaap.pt/ aggregating [] 2022-01-12 15:35:20 2010-02-08 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "reposit\u00f3rio cient\u00edfico de acesso aberto de portugal", "alternativeName": "rcaap", "country": "pt", "url": "http://www.rcaap.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://comum.rcaap.pt/oaiextended/request yes 17366 30634 +1760 {"name": "university of zimbabwe institutional repository", "language": "en"} [] http://ir.uz.ac.zw/ institutional [] 2022-01-12 15:35:21 2010-03-30 10:10:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of zimbabwe", "alternativeName": "", "country": "zw", "url": "http://www.uz.ac.zw/", "identifier": [{"identifier": "https://ror.org/04ze6rb18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.uz.ac.zw/oai/ yes 0 3055 +1747 {"name": "mid sweden university publications", "language": "en"} [{"name": "mittuniversitetets publikationer", "language": "sv"}] http://miun.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 15:15:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "mid sweden university", "alternativeName": "", "country": "se", "url": "https://www.miun.se", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} yes 21111 +1740 {"name": "f\u00f6rsvarsh\u00f6gskolan", "language": "en"} [] http://fhs.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 13:13:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "swedish national defence college", "alternativeName": "", "country": "se", "url": "http://www.fhs.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://services.diva-portal.org/oai yes 0 3975 +1743 {"name": "h\u00f6gskolebiblioteket i halmstad publikationer", "language": "en"} [] http://hh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 14:14:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "h\u00f6gskolan i halmstad", "alternativeName": "", "country": "se", "url": "http://www.hh.se/", "identifier": [{"identifier": "https://ror.org/03h0qfp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://hh.diva-portal.org/dice/oai yes 0 12659 +1745 {"name": "h\u00f6gskolan kristianstad publikationer", "language": "en"} [] http://hkr.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 14:14:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "h\u00f6gskolan kristianstad", "alternativeName": "", "country": "se", "url": "http://www.hkr.se/", "identifier": [{"identifier": "https://ror.org/00tkrft03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} yes 9688 +1746 {"name": "h\u00f6gskolan v\u00e4st", "language": "en"} [] http://hv.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 14:14:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "h\u00f6gskolan v\u00e4st", "alternativeName": "", "country": "se", "url": "http://www.hv.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} yes 8845 +1699 {"name": "open archive university of naples lorientale", "language": "en"} [{"acronym": "opar"}] http://openarchive.unior.it/ institutional [] 2022-01-12 15:35:20 2010-01-04 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di napoli lorientale (university of naples lorientale)", "alternativeName": "", "country": "it", "url": "http://www.unior.it/", "identifier": [{"identifier": "https://ror.org/01q9h8k89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://openarchive.unior.it/cgi/oai2 yes 1305 +1754 {"name": "ams tesi di dottorato", "language": "en"} [] http://amsdottorato.unibo.it/ institutional [] 2022-01-12 15:35:21 2010-03-22 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "alma mater studiorum, universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://amsdottorato.unibo.it/cgi/oai2 yes 6066 +1692 {"name": "arums digital repository (\u0633\u0627\u0645\u0627\u0646\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0632\u06cc\u0633\u062a \u067e\u0632\u0634\u06a9\u06cc \u0648 \u0633\u0644\u0627\u0645\u062a)", "language": "en"} [] http://eprints.arums.ac.ir/ institutional [] 2022-01-12 15:35:20 2009-12-09 10:10:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "ardabil university of medical science", "alternativeName": "arums", "country": "ir", "url": "http://www.arums.ac.ir/", "identifier": [{"identifier": "https://ror.org/04n4dcv16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.arums.ac.ir/cgi/oai2 yes 5701 7829 +1680 {"name": "oxford brookes university research archive and digital asset repository", "language": "en"} [{"acronym": "radar"}] https://radar.brookes.ac.uk/radar institutional [] 2022-01-12 15:35:19 2009-12-07 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "learning_objects", "other_special_item_types"] [{"name": "oxford brookes university", "alternativeName": "", "country": "gb", "url": "http://www.brookes.ac.uk/", "identifier": [{"identifier": "https://ror.org/04v2twj65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "equella", "version": ""} https://radar.brookes.ac.uk/radar/oai yes 5575 32483 +1739 {"name": "jrc publications repository", "language": "en"} [] http://publications.jrc.ec.europa.eu/repository/ aggregating [] 2022-01-12 15:35:21 2010-03-09 09:09:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "european commission: joint research centre", "alternativeName": "", "country": "be", "url": "https://ec.europa.eu/jrc/en", "identifier": [{"identifier": "https://ror.org/00k4n6c32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://publications.jrc.ec.europa.eu/oai/request yes 6553 32746 +1729 {"name": "occidental college scholar", "language": "en"} [{"acronym": "oxyscholar"}] http://scholar.oxy.edu/ institutional [] 2022-01-12 15:35:20 2010-02-22 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "occidental college", "alternativeName": "", "country": "us", "url": "http://www.oxy.edu/", "identifier": [{"identifier": "https://ror.org/01mxmpy39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholar.oxy.edu/do/oai/ yes 785 3736 +1774 {"name": "tennessee research and creative exchange", "language": "en"} [{"acronym": "trace"}] http://trace.tennessee.edu/ institutional [] 2022-01-12 15:35:21 2010-04-23 14:14:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of tennessee", "alternativeName": "", "country": "us", "url": "http://www.utk.edu/", "identifier": [{"identifier": "https://ror.org/020f3ap87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 26672 +1741 {"name": "swedish school of sport and health sciences", "language": "en"} [] http://gih.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 13:13:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "swedish school of sport and health sciences", "alternativeName": "", "country": "se", "url": "http://www.gih.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3380 +1748 {"name": "nordic africa institute", "language": "en"} [] http://nai.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:21 2010-03-09 15:15:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "nordiska afrikainstitutet (nordic africa institute)", "alternativeName": "", "country": "se", "url": "http://www.nai.uu.se/", "identifier": [{"identifier": "https://ror.org/05q84se63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1562 +1749 {"name": "uwe research repository", "language": "en"} [] https://uwe-repository.worktribe.com/ institutional [] 2022-01-12 15:35:21 2010-03-11 15:15:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of the west of england", "alternativeName": "", "country": "gb", "url": "http://www.uwe.ac.uk/", "identifier": [{"identifier": "https://ror.org/02nwg5t34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://uwe-repository.worktribe.com/oaiprovider yes 5395 19524 +1719 {"name": "open access agricultural research repository", "language": "en"} [{"acronym": "openagri"}] http://agropedialabs.iitk.ac.in/openaccess/ disciplinary [] 2022-01-12 15:35:20 2010-02-15 10:10:58 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "indian institute of technology kanpur", "alternativeName": "iit kanpur", "country": "in", "url": "http://www.iitk.ac.in/", "identifier": [{"identifier": "https://ror.org/05pjsgx75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 904 +1738 {"name": "national science digital library", "language": "en"} [{"acronym": "nsdl"}] http://nsdl.niscair.res.in/ institutional [] 2022-01-12 15:35:21 2010-03-04 10:10:06 ["science"] ["books_chapters_and_sections"] [{"name": "national institute of science communication and information resources", "alternativeName": "niscair", "country": "in", "url": "http://www.niscair.res.in/", "identifier": [{"identifier": "https://ror.org/04v5nnm54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://nsdl.niscair.res.in/dspace-oai/request yes 579 +1687 {"name": "econstor", "language": "en"} [] https://www.econstor.eu disciplinary [] 2022-01-12 15:35:20 2009-12-07 13:13:36 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "deutsche zentralbibliothek f\u00fcr wirtschaftswissenschaften, leibniz-informationszentrum wirtschaft", "alternativeName": "zbw", "country": "de", "url": "http://www.zbw.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.econstor.eu/dspace/policy", "type": "metadata"}, {"policy_url": "http://www.econstor.eu/dspace/policy", "type": "data"}, {"policy_url": "http://www.econstor.eu/dspace/policy", "type": "content"}, {"policy_url": "http://www.econstor.eu/dspace/policy", "type": "submission"}, {"policy_url": "http://www.econstor.eu/dspace/policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://www.econstor.eu/oai/request yes 70 +1793 {"name": "bi open", "language": "en"} [] https://biopen.bi.no institutional [] 2022-01-12 15:35:22 2010-05-07 16:16:55 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bi norwegian business school", "alternativeName": "", "country": "no", "url": "http://www.bi.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://biopen.bi.no/bi-oai/ yes 2409 +1773 {"name": "openarchive@gsom (\u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0430\u0440\u0445\u0438\u0432 \u0432\u044b\u0441\u0448\u0435\u0439 \u0448\u043a\u043e\u043b\u044b \u043c\u0435\u043d\u0435\u0434\u0436\u043c\u0435\u043d\u0442\u0430)", "language": "en"} [] http://dspace.gsom.pu.ru/jspui/ institutional [] 2022-01-12 15:35:21 2010-04-23 14:14:16 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "saint petersburg state university (\u0441\u0430\u043d\u043a\u0442-\u043f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442)", "alternativeName": "", "country": "ru", "url": "http://www.spbu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.gsom.pu.ru/oai/request yes 687 +1703 {"name": "scholarship @ cornell law", "language": "en"} [] http://scholarship.law.cornell.edu/ disciplinary [] 2022-01-12 15:35:20 2010-01-07 16:16:09 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "cornell law library", "alternativeName": "", "country": "us", "url": "http://www.lawschool.cornell.edu/library/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.cornell.edu/do/oai/ yes 7128 7266 +1752 {"name": "universit\u00e4t stuttgart, fakult\u00e4t 5, germany, computer science archive", "language": "en"} [] http://www.informatik.uni-stuttgart.de/ institutional [] 2022-01-12 15:35:21 2010-03-16 13:13:30 ["technology"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t stuttgart", "alternativeName": "", "country": "de", "url": "http://www.uni-stuttgart.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www2.informatik.uni-stuttgart.de/cgi-bin/oai/oai.pl yes 0 76 +1709 {"name": "department of computer science e-repository", "language": "en"} [] http://calcium.dcs.kcl.ac.uk/ institutional [] 2022-01-12 15:35:20 2010-01-28 11:11:57 ["technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "kings college london, university of london", "alternativeName": "kcl", "country": "gb", "url": "http://www.kcl.ac.uk/index.aspx", "identifier": [{"identifier": "https://ror.org/0220mzb33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://calcium.dcs.kcl.ac.uk/cgi/oai2 yes 0 1129 +1716 {"name": "reposit\u00f3rio do instituto polit\u00e9cnico de castelo branco", "language": "en"} [] http://repositorio.ipcb.pt/ institutional [] 2022-01-12 15:35:20 2010-02-08 10:10:40 ["arts", "humanities", "science", "health and medicine", "technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto polit\u00e9cnico de castelo branco", "alternativeName": "", "country": "pt", "url": "http://www.ipcb.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipcb.pt/oaiextended/request yes 2491 7258 +1756 {"name": "greenwich academic literature archive", "language": "en"} [{"acronym": "gala"}] http://gala.gre.ac.uk/ institutional [] 2022-01-12 15:35:21 2010-03-22 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "university of greenwich", "alternativeName": "", "country": "gb", "url": "http://www2.gre.ac.uk/", "identifier": [{"identifier": "https://ror.org/00bmj0a71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://gala.gre.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://gala.gre.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://gala.gre.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://gala.gre.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://gala.gre.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://gala.gre.ac.uk/cgi/oai2 yes 6048 18654 +1690 {"name": "university of debrecen electronic archive", "language": "en"} [{"acronym": "dea"}] http://dea.lib.unideb.hu/dea/ institutional [] 2022-01-12 15:35:20 2009-12-09 10:10:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university and national library university of debrecen", "alternativeName": "deenk", "country": "hu", "url": "http://www.lib.unideb.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dea.lib.unideb.hu/oai/request yes 18329 291218 +1682 {"name": "dlynx - rhodes college archives digital collection", "language": "en"} [] http://dlynx.rhodes.edu/jspui/ institutional [] 2022-01-12 15:35:19 2009-12-07 11:11:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "rhodes college", "alternativeName": "", "country": "us", "url": "http://www.rhodes.edu/", "identifier": [{"identifier": "https://ror.org/049xfwy04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dlynx.rhodes.edu/oai/request yes 3 100 +1731 {"name": "central archive at the university of reading", "language": "en"} [{"acronym": "centaur"}] http://centaur.reading.ac.uk/ institutional [] 2022-01-12 15:35:20 2010-02-24 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of reading", "alternativeName": "", "country": "gb", "url": "http://www.reading.ac.uk/", "identifier": [{"identifier": "https://ror.org/05v62cm79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://centaur.reading.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://centaur.reading.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://centaur.reading.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://centaur.reading.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://centaur.reading.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://centaur.reading.ac.uk/cgi/oai2 yes 14097 53449 +1730 {"name": "repository@usm", "language": "en"} [] http://eprints.usm.my/ institutional [] 2022-01-12 15:35:20 2010-02-22 11:11:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universiti sains malaysia", "alternativeName": "", "country": "my", "url": "http://www.usm.my/my/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.usm.my/submission_guideline.htm", "type": "content"}] {"name": "eprints", "version": ""} http://eprints.usm.my/cgi/oai2 yes 43268 44785 +1732 {"name": "o2 repository", "language": "en"} [] http://openaccess.uoc.edu/webapps/o2/ institutional [] 2022-01-12 15:35:21 2010-02-24 10:10:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universitat oberta de catalunya", "alternativeName": "uoc", "country": "es", "url": "http://www.uoc.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://hdl.handle.net/10609/103586", "type": "metadata"}, {"policy_url": "http://hdl.handle.net/10609/4967", "type": "content"}, {"policy_url": "http://hdl.handle.net/10609/128486", "type": "preservation"}] {"name": "dspace", "version": ""} http://openaccess.uoc.edu/webapps/dspace_rei_oai/request yes 974 14709 +1728 {"name": "mospace", "language": "en"} [] https://mospace.umsystem.edu/xmlui institutional [] 2022-01-12 15:35:20 2010-02-22 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of missouri system", "alternativeName": "", "country": "us", "url": "http://www.umsystem.edu/", "identifier": [{"identifier": "https://ror.org/032va1j59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://https://mospace.umsystem.edu/xmlui/themes/mospace/static/mospace_collection_policy_20080815.pdf", "type": "content"}] {"name": "dspace", "version": ""} https://mospace.umsystem.edu/oai/request yes 15763 37505 +1766 {"name": "jamstec repository", "language": "en"} [{"name": "jamstec\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://www.jamstec.go.jp/jir/ institutional [] 2022-01-12 15:35:21 2010-04-01 09:09:47 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "japan agency for marine-earth science and technology", "alternativeName": "", "country": "jp", "url": "http://www.jamstec.go.jp/e/", "identifier": [{"identifier": "https://ror.org/059qg2m13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.jamstec.go.jp/jir/infolib/user_contents/operational_guidelines_20111215.pdf", "type": "metadata"}, {"policy_url": "http://www.jamstec.go.jp/jir/infolib/user_contents/operational_guidelines_20111215.pdf", "type": "data"}, {"policy_url": "http://www.jamstec.go.jp/jir/infolib/user_contents/operational_guidelines_20111215.pdf", "type": "submission"}] {"name": "other", "version": ""} http://www.jamstec.go.jp/jir/infolib/oai_repository/repository yes 405 42812 +1772 {"name": "digital scholarship@unlv", "language": "en"} [] https://digitalscholarship.unlv.edu institutional [] 2022-01-12 15:35:21 2010-04-14 11:11:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of nevada, las vegas", "alternativeName": "", "country": "us", "url": "https://www.unlv.edu", "identifier": [{"identifier": "https://ror.org/0406gha72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://digitalscholarship.unlv.edu/terms_of_use.html", "type": "data"}, {"policy_url": "https://digitalscholarship.unlv.edu/about.html", "type": "submission"}, {"policy_url": "https://digitalscholarship.unlv.edu/about.html", "type": "preservation"}] {"name": "digital_commons", "version": ""} https://digitalscholarship.unlv.edu/do/oai yes 14061 21275 +1775 {"name": "university of dundee online publications", "language": "en"} [{"acronym": "discovery research portal"}] http://discovery.dundee.ac.uk/ institutional [] 2022-01-12 15:35:21 2010-04-30 16:16:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of dundee", "alternativeName": "", "country": "gb", "url": "http://www.dundee.ac.uk/", "identifier": [{"identifier": "https://ror.org/03h2bxq36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://discovery.dundee.ac.uk/portal/en/policy.html", "type": "data"}, {"policy_url": "http://discovery.dundee.ac.uk/portal/en/policy.html", "type": "content"}, {"policy_url": "http://discovery.dundee.ac.uk/portal/en/policy.html", "type": "submission"}] {"name": "", "version": ""} http://discovery.dundee.ac.uk/ws/oai yes 9761 47259 +1757 {"name": "electronic kyiv-mohyla academy institutional repository", "language": "en"} [{"acronym": "ekmair"}] http://www.ekmair.ukma.edu.ua/ institutional [] 2022-01-12 15:35:21 2010-03-23 10:10:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national university of kyiv-mohyla academy", "alternativeName": "", "country": "ua", "url": "http://www.ukma.kiev.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ekmair.ukma.kiev.ua/docs/policies.jsp", "type": "metadata"}, {"policy_url": "http://www.ekmair.ukma.kiev.ua/docs/policies.jsp", "type": "data"}, {"policy_url": "http://www.ekmair.ukma.kiev.ua/docs/policies.jsp", "type": "content"}, {"policy_url": "http://www.ekmair.ukma.kiev.ua/docs/policies.jsp", "type": "submission"}, {"policy_url": "http://www.ekmair.ukma.kiev.ua/docs/policies.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} http://ekmair.ukma.kiev.ua/oai/request yes 0 12082 +1725 {"name": "ibb pas repository", "language": "en"} [] http://eprints.ibb.waw.pl/ institutional [] 2022-01-12 15:35:20 2010-02-17 14:14:40 ["science"] ["journal_articles"] [{"name": "polish academy of sciences", "alternativeName": "", "country": "pl", "url": "http://www.pan.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.ibb.waw.pl/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.ibb.waw.pl/policies.html", "type": "data"}, {"policy_url": "http://eprints.ibb.waw.pl/policies.html", "type": "content"}, {"policy_url": "http://eprints.ibb.waw.pl/policies.html", "type": "submission"}, {"policy_url": "http://eprints.ibb.waw.pl/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.ibb.waw.pl/cgi/oai2 yes 817 1135 +1784 {"name": "research repository", "language": "en"} [] http://researchrepository.murdoch.edu.au/ institutional [] 2022-01-12 15:35:22 2010-05-06 10:10:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "murdoch university", "alternativeName": "", "country": "au", "url": "http://www.murdoch.edu.au/", "identifier": [{"identifier": "https://ror.org/00r4sry34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchrepository.murdoch.edu.au/policies.html", "type": "metadata"}, {"policy_url": "http://researchrepository.murdoch.edu.au/policies.html", "type": "data"}, {"policy_url": "http://researchrepository.murdoch.edu.au/policies.html", "type": "content"}, {"policy_url": "http://researchrepository.murdoch.edu.au/policies.html", "type": "submission"}, {"policy_url": "http://researchrepository.murdoch.edu.au/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchrepository.murdoch.edu.au/cgi/oai2 yes 6332 55856 +1909 {"name": "shujitsu digital information repository", "language": "en"} [{"name": "\u5c31\u5b9f\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shujitsu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-06 11:11:07 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles"] [{"name": "shujitsu university", "alternativeName": "", "country": "jp", "url": "http://www.shujitsu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shujitsu.repo.nii.ac.jp/oai yes 362 +1808 {"name": "nmh brage", "language": "en"} [] https://nmh.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-11 16:16:05 ["arts", "science", "technology", "engineering", "mathematics", "health and medicine", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "norwegian academy of music", "alternativeName": "", "country": "no", "url": "http://www.nmh.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nmh.brage.unit.no/nmh-oai/request yes 0 568 +1888 {"name": "isi denpasar | institutional repository", "language": "en"} [] http://repository.isi-dps.ac.id/ institutional [] 2022-01-12 15:35:23 2010-09-22 09:09:51 ["arts"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institut seni indonesia, denpasar", "alternativeName": "isi", "country": "id", "url": "http://www.isi-dps.ac.id/", "identifier": [{"identifier": "https://ror.org/01d4n5957", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.isi-dps.ac.id/cgi/oai2 yes 2688 3656 +1854 {"name": "chung shan medical university repository (csmuir)", "language": "en"} [] http://ir.lib.csmu.edu.tw:8080/ institutional [] 2022-01-12 15:35:23 2010-07-22 09:09:20 ["health and medicine"] ["theses_and_dissertations"] [{"name": "chung shan medical university repository", "alternativeName": "", "country": "tw", "url": "https://www.csmu.edu.tw", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.csmu.edu.tw:8080/ir-oai/request yes 0 5897 +1833 {"name": "fukushima medical university repository", "language": "en"} [{"name": "\u798f\u5cf6\u770c\u7acb\u533b\u79d1\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ir.fmu.ac.jp/dspace/?locale=en institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:34 ["health and medicine"] ["journal_articles"] [{"name": "fukushima medical university", "alternativeName": "", "country": "jp", "url": "http://www.fmu.ac.jp/", "identifier": [{"identifier": "https://ror.org/012eh0r35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.fmu.ac.jp/dspace-oai/request yes 584 1266 +1879 {"name": "kce repository", "language": "en"} [] http://repository.kce.fgov.be/ governmental [] 2022-01-12 15:35:23 2010-09-08 09:09:51 ["health and medicine"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "belgian health care knowledge centre", "alternativeName": "kce", "country": "be", "url": "http://www.kce.fgov.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kce.docressources.info/ws/pmbws_2 yes 1130 +1803 {"name": "brage np", "language": "en"} [] https://brage.npolar.no institutional [] 2022-01-12 15:35:22 2010-05-11 15:15:28 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "norwegian polar institute", "alternativeName": "", "country": "no", "url": "https://www.npolar.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://brage.npolar.no/npolar-oai/request yes 1192 +1893 {"name": "sharegeo open", "language": "en"} [] http://www.sharegeo.ac.uk/ disciplinary [] 2022-01-12 15:35:23 2010-09-22 11:11:03 ["humanities", "science"] ["datasets"] [{"name": "edina", "alternativeName": "", "country": "gb", "url": "http://edina.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.sharegeo.ac.uk/oai/request yes 0 255 +1836 {"name": "university of fort hare institutional repository", "language": "en"} [] http://ufh.netd.ac.za/ institutional [] 2022-01-12 15:35:23 2010-06-09 09:09:11 ["science", "health and medicine", "social sciences"] ["theses_and_dissertations"] [{"name": "university of fort hare", "alternativeName": "", "country": "za", "url": "http://ufh.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 446 +1864 {"name": "okayama university scientific achievement repository", "language": "en"} [{"name": "\u5ca1\u5c71\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ousar.lib.okayama-u.ac.jp institutional [] 2022-01-12 15:35:23 2010-08-25 10:10:27 ["science", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "okayama university", "alternativeName": "", "country": "jp", "url": "http://www.okayama-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ousar.lib.okayama-u.ac.jp/oai/request yes 37862 +1889 {"name": "cmfri digital repository", "language": "en"} [{"acronym": "eprints@cmfri"}] http://eprints.cmfri.org.in/ institutional [] 2022-01-12 15:35:23 2010-09-22 09:09:57 ["science", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "central marine fisheries research institute", "alternativeName": "cmfri", "country": "in", "url": "http://www.cmfri.org.in/", "identifier": [{"identifier": "https://ror.org/02jw8vr54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.cmfri.org.in/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.cmfri.org.in/policies.html", "type": "data"}, {"policy_url": "http://eprints.cmfri.org.in/policies.html", "type": "content"}, {"policy_url": "http://eprints.cmfri.org.in/policies.html", "type": "submission"}, {"policy_url": "http://eprints.cmfri.org.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.cmfri.org.in/cgi/oai2 yes 12536 +1839 {"name": "mount saint vincent university", "language": "en"} [] http://dc.msvu.ca:8080/xmlui institutional [] 2022-01-12 15:35:23 2010-06-16 09:09:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "mount saint vincent university", "alternativeName": "", "country": "ca", "url": "http://www.msvu.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dc.msvu.ca:8080/xmlui/themes/msvu_ir/static/dc-policies.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 1191 +1815 {"name": "repositorio institucional de la universidad tecnol\u00f3gica de el salvador", "language": "es"} [{"acronym": "minds@utec"}, {"name": "institutional repository of the technological university of el salvador", "language": "en"}] http://repositorio.utec.edu.sv:8080/jspui/ institutional [] 2022-01-12 15:35:22 2010-05-12 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad tecnol\u00f3gica de el salvador", "alternativeName": "", "country": "sv", "url": "http://www.utec.edu.sv/", "identifier": [{"identifier": "https://ror.org/01jmr1174", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 364 +1824 {"name": "gallica, bibliotheque numerique", "language": "en"} [] http://gallica.bnf.fr/ governmental [] 2022-01-12 15:35:22 2010-05-26 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioth\u00e8que nationale de france (french national library)", "alternativeName": "bnf", "country": "fr", "url": "http://www.bnf.fr/fr/acc/x.accueil.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.bnf.fr/oai2/oaihandler yes 4552432 +1882 {"name": "central lancashire online knowledge", "language": "en"} [{"acronym": "clok"}] http://clok.uclan.ac.uk/ institutional [] 2022-01-12 15:35:23 2010-09-15 09:09:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of central lancashire", "alternativeName": "uclan", "country": "gb", "url": "http://www.uclan.ac.uk/", "identifier": [{"identifier": "https://ror.org/010jbqd54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://clok.uclan.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://clok.uclan.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://clok.uclan.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://clok.uclan.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://clok.uclan.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://clok.uclan.ac.uk/cgi/oai2 yes 13874 +1871 {"name": "repositorio institucional de la universidad de costa rica", "language": "en"} [{"acronym": "repositorio k\u00e9rw\u00e1"}] http://www.kerwa.ucr.ac.cr/ institutional [] 2022-01-12 15:35:23 2010-08-25 11:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad de costa rica", "alternativeName": "ucr", "country": "cr", "url": "http://www.ucr.ac.cr/", "identifier": [{"identifier": "https://ror.org/02yzgww51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.kerwa.ucr.ac.cr/page/politicas", "type": "metadata"}, {"policy_url": "http://www.kerwa.ucr.ac.cr/page/politicas", "type": "data"}, {"policy_url": "http://www.kerwa.ucr.ac.cr/page/politicas", "type": "content"}, {"policy_url": "http://www.kerwa.ucr.ac.cr/page/politicas", "type": "submission"}] {"name": "dspace", "version": ""} http://www.kerwa.ucr.ac.cr/oai/request yes 18027 +1875 {"name": "education and research archive", "language": "en"} [{"acronym": "era"}] https://era.library.ualberta.ca/ institutional [] 2022-01-12 15:35:23 2010-08-26 09:09:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of alberta", "alternativeName": "", "country": "ca", "url": "http://www.ualberta.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://era.library.ualberta.ca/policies", "type": "metadata"}, {"policy_url": "https://era.library.ualberta.ca/policies", "type": "content"}, {"policy_url": "https://era.library.ualberta.ca/policies", "type": "submission"}, {"policy_url": "https://era.library.ualberta.ca/policies", "type": "preservation"}] {"name": "", "version": ""} https://era.library.ualberta.ca/oai yes 41267 +1819 {"name": "biblioth\u00e8que num\u00e9rique, amazonie, plateau des guyanes (digital library on the caribbean, the amazon, the guyana plateau)", "language": "en"} [{"acronym": "manioc"}] http://www.manioc.org/ disciplinary [] 2022-01-12 15:35:22 2010-05-20 11:11:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e9 des antilles et de la guyane", "alternativeName": "", "country": "gp", "url": "http://www.univ-ag.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.manioc.org/phpoai/oai2.php yes 1 20353 +1858 {"name": "biblioteca virtual efec", "language": "en"} [] http://efec.edu.do/bibliotecavirtual/inicio.aspx governmental [] 2022-01-12 15:35:23 2010-07-27 10:10:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "junta central electoral", "alternativeName": "", "country": "do", "url": "http://www.jce.gob.do/portada.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 283 +1828 {"name": "asia university repository", "language": "en"} [{"acronym": "asiair"}] http://asiair.asia.edu.tw/ir/ institutional [] 2022-01-12 15:35:22 2010-06-02 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "asia university", "alternativeName": "\u4e9e\u6d32\u5927\u5b78", "country": "tw", "url": "http://www.asia.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://asiair.asia.edu.tw/ir-oai/request yes 5 105673 +1794 {"name": "agder university research archive", "language": "en"} [{"acronym": "aura"}] https://uia.brage.unit.no/uia-xmlui/ institutional [] 2022-01-12 15:35:22 2010-05-10 16:16:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of agder", "alternativeName": "", "country": "no", "url": "http://www.uia.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uia.brage.unit.no/uia-oai/request?verb=identify yes 4481 +1821 {"name": "archivio aperto di ateneo", "language": "en"} [{"acronym": "arcadia"}] http://dspace-roma3.caspur.it/ institutional [] 2022-01-12 15:35:22 2010-05-26 10:10:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi roma tre", "alternativeName": "", "country": "it", "url": "http://www.uniroma3.it/", "identifier": [{"identifier": "https://ror.org/05vf0dg29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace-roma3.caspur.it/dspace-oai-roma3/request yes 75 5902 +1855 {"name": "auc dar repository (digital archive and research repository)", "language": "en"} [{"acronym": "dar"}] http://dar.aucegypt.edu/ institutional [] 2022-01-12 15:35:23 2010-07-22 09:09:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "american university in cairo", "alternativeName": "\u0627\u0644\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0627\u0645\u064a\u0631\u0643\u064a\u0629 \u0641\u064a \u0627\u0644\u0642\u0627\u0647\u0631\u0629", "country": "eg", "url": "http://www.aucegypt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dar.aucegypt.edu/oai/request yes 0 4537 +1822 {"name": "electronic library of ukraine open archive", "language": "en"} [{"acronym": "elibukr-oa"}, {"name": "\u043c\u0443\u043b\u044c\u0442\u0438\u0434\u0438\u0441\u0446\u0438\u043f\u043b\u0456\u043d\u0430\u0440\u043d\u0438\u0439 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u0439 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u0434\u043b\u044f \u043d\u0430\u0443\u043a\u043e\u0432\u0446\u0456\u0432 \u0443\u043a\u0440\u0430\u0457\u043d\u0438", "language": "uk"}] http://oa.elibukr.org/ aggregating [] 2022-01-12 15:35:22 2010-05-26 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "national university of kyiv-mohyla academy", "alternativeName": "", "country": "ua", "url": "http://www.ukma.kiev.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oa.elibukr.org/dsp-oai/request yes 1036 +1894 {"name": "heart:hyokyo educational academic resources for teachers", "language": "en"} [{"acronym": "heart"}, {"name": "\u5175\u5eab\u6559\u80b2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea heart", "language": "ja"}] http://repository.hyogo-u.ac.jp/ institutional [] 2022-01-12 15:35:23 2010-09-29 09:09:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "hyogo university of teacher education", "alternativeName": "", "country": "jp", "url": "http://www.hyogo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.hyogo-u.ac.jp/dspace-oai/request yes 14401 +1842 {"name": "chung hwa university of medical technology repository", "language": "en"} [{"acronym": "hwair"}] http://ir.hwai.edu.tw:8080/ir institutional [] 2022-01-12 15:35:23 2010-06-16 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "learning_objects"] [{"name": "chung hwa university of medical technology (\u4e2d\u83ef\u91ab\u4e8b\u79d1\u6280\u5927\u5b78)", "alternativeName": "cumt", "country": "tw", "url": "http://www.hwai.edu.tw/", "identifier": [{"identifier": "https://ror.org/031m0eg77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.hwai.edu.tw:8080/ir-oai/request yes 97 1454 +1877 {"name": "khon kaen university institutional repository", "language": "en"} [{"acronym": "kkuir"}] http://kkuir.kku.ac.th/dspace institutional [] 2022-01-12 15:35:23 2010-09-02 11:11:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "khon kaen university", "alternativeName": "kku", "country": "th", "url": "http://www.kku.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kkuir.kku.ac.th/ yes 0 4122 +1826 {"name": "national open university institutional repository", "language": "en"} [{"acronym": "nouir"}] http://ir.nou.edu.tw/ institutional [] 2022-01-12 15:35:22 2010-06-01 15:15:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "national open university", "alternativeName": "\u570b\u7acb\u7a7a\u4e2d\u5927\u5b78", "country": "tw", "url": "http://www.nou.edu.tw/", "identifier": [{"identifier": "https://ror.org/01d81q939", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nou.edu.tw/dspace-oai/request yes 1185 +1831 {"name": "national university of kashsiung repository", "language": "en"} [{"acronym": "nukr"}] http://ir.nuk.edu.tw:8080/ir/ institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national university of kaohsiung", "alternativeName": "\u570b\u7acb\u9ad8\u96c4\u5927\u5b78", "country": "tw", "url": "http://intro.nuk.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nuk.edu.tw:8080/ir-oai/request yes 0 6806 +1827 {"name": "national united university institutional repository", "language": "en"} [{"acronym": "nuuir"}] http://rep.nuu.edu.tw/ institutional [] 2022-01-12 15:35:22 2010-06-01 15:15:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects"] [{"name": "national united university", "alternativeName": "\u570b\u7acb\u806f\u5408\u5927\u5b78", "country": "tw", "url": "http://www.nuu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5204 +1868 {"name": "repositorio de la universidad estatal a distancia de costa rica", "language": "en"} [{"acronym": "reuned"}] http://repositorio.uned.ac.cr/reuned/ institutional [] 2022-01-12 15:35:23 2010-08-25 10:10:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects"] [{"name": "universidad estatal a distancia de costa rica", "alternativeName": "uned", "country": "cr", "url": "http://www.uned.ac.cr/", "identifier": [{"identifier": "https://ror.org/0529rbt18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uned.ac.cr/oai/request yes 954 1525 +1881 {"name": "suranaree university of technology intellectual repository", "language": "en"} [{"acronym": "sutir"}] http://sutir.sut.ac.th:8080/sutir institutional [] 2022-01-12 15:35:23 2010-09-15 09:09:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "suranaree university of technology", "alternativeName": "\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e2a\u0e38\u0e23\u0e19\u0e32\u0e23\u0e35", "country": "th", "url": "http://web.sut.ac.th/2012/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://sutir.sut.ac.th:8080/sutir-oai/request yes 3256 7034 +1851 {"name": "university of macau institutional repository", "language": "en"} [{"acronym": "umir"}] http://umir.umac.mo/jspui/ institutional [] 2022-01-12 15:35:23 2010-06-30 09:09:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of macau", "alternativeName": "\u6fb3\u9580\u5927\u5b78 (universidade de macau)", "country": "cn", "url": "http://www.umac.mo/", "identifier": [{"identifier": "https://ror.org/01r4q9n85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3146 +1840 {"name": "yuanpei university repository", "language": "en"} [{"acronym": "ypuir"}] http://ir.lib.ypu.edu.tw/ institutional [] 2022-01-12 15:35:23 2010-06-16 09:09:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "yuanpei university", "alternativeName": "\u5143\u57f9\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://www.ypu.edu.tw/bin/home.php", "identifier": [{"identifier": "https://ror.org/02jb3jv25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11436 +1825 {"name": "national chiayi university repository", "language": "en"} [{"acronym": "\u5609\u7fa9\u5927\u5b78\u6a5f\u69cb\u5178\u85cf"}] http://140.130.170.28:8080/ir/ institutional [] 2022-01-12 15:35:22 2010-06-01 15:15:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "national chiayi university (ncy)", "alternativeName": "\u570b\u7acb\u5609\u7fa9\u5927\u5b78", "country": "tw", "url": "http://www.ncyu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://140.130.170.28:8080/ir-oai/request yes 0 8192 +1834 {"name": "jorum open", "language": "en"} [] http://open.jorum.ac.uk/xmlui institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "mimas", "alternativeName": "mimas", "country": "gb", "url": "http://mimas.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://open.jorum.ac.uk/oai/request yes 16040 +1807 {"name": "nla brage", "language": "en"} [] https://nla.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-11 16:16:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "nla university college", "alternativeName": "", "country": "no", "url": "http://www.nla.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nla.brage.unit.no/nla-oai/request yes 0 120 +1848 {"name": "oda open digital archive", "language": "en"} [] https://oda.oslomet.no institutional [] 2022-01-12 15:35:23 2010-06-23 09:09:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "oslo metropolitan university", "alternativeName": "", "country": "no", "url": "https://www.oslomet.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://oda.oslomet.no/oda-oai yes 1637 2893 +1809 {"name": "pia", "language": "en"} [] https://phs.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-11 16:16:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "politih\u00f8gskolen", "alternativeName": "", "country": "no", "url": "http://www.phs.no/", "identifier": [{"identifier": "https://ror.org/05486d596", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://phs.brage.unit.no/phs-oai/request yes 0 584 +1859 {"name": "lviv polytechnic national university institutional repository", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u043d\u0430\u0443\u043a\u043e\u0432\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u043d\u0430\u0443\u043a\u043e\u0432\u043e-\u0442\u0435\u0445\u043d\u0456\u0447\u043d\u043e\u0457 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \"\u043b\u044c\u0432\u0456\u0432\u0441\u044c\u043a\u0430 \u043f\u043e\u043b\u0456", "language": "uk"}] http://ena.lp.edu.ua:8080/ institutional [] 2022-01-12 15:35:23 2010-07-27 10:10:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "lviv polytechnic national university", "alternativeName": "", "country": "ua", "url": "http://lp.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ena.lp.edu.ua:8080/oai/request yes 39561 +1852 {"name": "repositorio digital iaen", "language": "en"} [] http://repositorio.iaen.edu.ec/ institutional [] 2022-01-12 15:35:23 2010-06-30 09:09:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "instituto de altos estudios nacionales", "alternativeName": "iaen", "country": "ec", "url": "http://www.iaen.edu.ec/wordpress/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.iaen.edu.ec/oai/request yes 4654 +1798 {"name": "brage him", "language": "en"} [] https://himolde.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-10 16:16:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "molde university college", "alternativeName": "", "country": "no", "url": "http://www.himolde.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://himolde.brage.unit.no/himolde-oai/request yes 1276 +1800 {"name": "brage inn", "language": "en"} [] https://brage.inn.no institutional [] 2022-01-12 15:35:22 2010-05-11 15:15:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "inland norway university of applied sciences", "alternativeName": "", "country": "no", "url": "https://www.inn.no/", "identifier": [{"identifier": "https://ror.org/02dx4dc92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://brage.inn.no/inn-oai/request yes 3661 +1885 {"name": "dspace at irri", "language": "en"} [] http://dspace.irri.org:8080/dspace/ institutional [] 2022-01-12 15:35:23 2010-09-15 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "international rice research institute", "alternativeName": "irri", "country": "ph", "url": "http://irri.org/", "identifier": [{"identifier": "https://ror.org/0593p4448", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1345 +1895 {"name": "fooyin university institutional repository(fyir)", "language": "en"} [] http://ir.fy.edu.tw/ir/ institutional [] 2022-01-12 15:35:23 2010-09-29 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "fooyin university (\u8f14\u82f1\u79d1\u6280\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.fy.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.fy.edu.tw/ir-oai/request yes 0 12476 +1847 {"name": "national ilan university repository", "language": "en"} [] http://tair.niu.edu.tw:8080/ institutional [] 2022-01-12 15:35:23 2010-06-23 09:09:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "national ilan university", "alternativeName": "\u570b\u7acb\u5b9c\u862d\u5927\u5b78", "country": "tw", "url": "http://www.niu.edu.tw/newniu/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tair.niu.edu.tw:8080/ir-oai/request yes 793 +1841 {"name": "siberian federal university digital repository", "language": "en"} [] http://elib.sfu-kras.ru/ institutional [] 2022-01-12 15:35:23 2010-06-16 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "software"] [{"name": "siberian federal university", "alternativeName": "sibfu", "country": "ru", "url": "http://www.sfu-kras.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.sfu-kras.ru/oai/request yes 23016 76683 +1804 {"name": "usn open archive", "language": "en"} [] https://openarchive.usn.no institutional [] 2022-01-12 15:35:22 2010-05-11 15:15:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of south-eastern norway", "alternativeName": "", "country": "no", "url": "https://www.usn.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openarchive.usn.no/usn-oai/request yes 0 3835 +1862 {"name": "eresearch@ozyegin", "language": "en"} [] http://eresearch.ozyegin.edu.tr institutional [] 2022-01-12 15:35:23 2010-08-04 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "\u00f6zye\u011fin \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.ozyegin.edu.tr", "identifier": [{"identifier": "https://ror.org/01jjhfr75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eresearch.ozyegin.edu.tr/oai/request yes 2664 +1805 {"name": "bravo", "language": "en"} [] https://bravo.hivolda.no institutional [] 2022-01-12 15:35:22 2010-05-11 15:15:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "volda university college", "alternativeName": "", "country": "no", "url": "http://www.hivolda.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bravo.hivolda.no/hivolda-oai/ yes 439 +1796 {"name": "brage imr", "language": "en"} [] https://imr.brage.unit.no institutional [] 2022-01-12 15:35:22 2010-05-10 16:16:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "institute of marine research", "alternativeName": "", "country": "no", "url": "http://www.imr.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://imr.brage.unit.no/imr-oai/request yes 9162 +1863 {"name": "dspace on instituto polit\u00e9cnico nacional", "language": "en"} [] http://itzamna.bnct.ipn.mx/ institutional [] 2022-01-12 15:35:23 2010-08-04 10:10:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "instituto polit\u00e9cnico nacional", "alternativeName": "", "country": "mx", "url": "http://www.ipn.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 22263 +1830 {"name": "i-shou university institutional repository", "language": "en"} [] http://ir.lib.isu.edu.tw/ institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects"] [{"name": "i-shou university", "alternativeName": "\u7fa9\u5b88\u5927\u5b78", "country": "tw", "url": "http://www.isu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 19049 +1890 {"name": "repositori obert udl", "language": "en"} [] http://repositori.udl.cat/ institutional [] 2022-01-12 15:35:23 2010-09-22 10:10:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universitat de lleida", "alternativeName": "", "country": "es", "url": "http://www.udl.es/", "identifier": [{"identifier": "https://ror.org/050c3cw24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.udl.cat/oai/openaire yes 5713 10590 +1832 {"name": "southern taiwan university institutional repository", "language": "en"} [] http://ir.lib.stut.edu.tw/ institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "southern taiwan university", "alternativeName": "\u5357\u53f0\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://www.stut.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.stut.edu.tw/dspace-oai/request yes 0 16316 +1837 {"name": "university of limpopo", "language": "en"} [] http://ul.netd.ac.za/ institutional [] 2022-01-12 15:35:23 2010-06-09 09:09:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of limpopo", "alternativeName": "", "country": "za", "url": "http://www.ul.ac.za/", "identifier": [{"identifier": "https://ror.org/017p87168", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1762 +1853 {"name": "lume - reposit\u00f3rio digital da universidade federal do rio grande do sul", "language": "en"} [] http://www.lume.ufrgs.br/ institutional [] 2022-01-12 15:35:23 2010-07-14 09:09:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidade federal do rio grande do sul", "alternativeName": "ufrgs", "country": "br", "url": "http://www.ufrgs.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 177555 +1797 {"name": "nord open research archive", "language": "en"} [] https://nordopen.nord.no institutional [] 2022-01-12 15:35:22 2010-05-10 16:16:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "nord university", "alternativeName": "", "country": "no", "url": "https://www.nord.no/", "identifier": [{"identifier": "https://ror.org/030mwrt98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nordopen.nord.no/nord-oai/request yes 4737 +1811 {"name": "ruidera", "language": "en"} [] https://ruidera.uclm.es/xmlui institutional [] 2022-01-12 15:35:22 2010-05-12 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad de castilla-la mancha", "alternativeName": "uclm", "country": "es", "url": "http://www.uclm.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5746 +1887 {"name": "repositorio digital de la universidad del norte", "language": "en"} [] http://manglar.uninorte.edu.co/ institutional [] 2022-01-12 15:35:23 2010-09-22 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad del norte", "alternativeName": "", "country": "co", "url": "http://www.uninorte.edu.co/", "identifier": [{"identifier": "https://ror.org/031e6xm45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://manglar.uninorte.edu.co/oai/request yes 152 7222 +1873 {"name": "repositorio institucional upn", "language": "es"} [] https://repositorio.upn.edu.pe institutional [] 2022-01-12 15:35:23 2010-08-25 11:11:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad privada del norte", "alternativeName": "", "country": "pe", "url": "https://www.upn.edu.pe", "identifier": [{"identifier": "https://ror.org/05t6q2334", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.upn.edu.pe/oai/request yes 5464 17227 +1820 {"name": "usiena air - universit\u00e0 di siena", "language": "en"} [] http://usiena-air.unisi.it/ institutional [] 2022-01-12 15:35:22 2010-05-26 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "universit\u00e0 degli studi di siena", "alternativeName": "unisi", "country": "it", "url": "http://www.unisi.it/", "identifier": [{"identifier": "https://ror.org/01tevnk56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.unisi.it/sites/default/files/policy_ateneo_repository.pdf", "type": "content"}, {"policy_url": "https://www.unisi.it/sites/default/files/policy_ateneo_repository.pdf", "type": "submission"}, {"policy_url": "https://www.unisi.it/sites/default/files/policy_ateneo_repository.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 59957 +1856 {"name": "euskal doktorego tesien bilduma - repositorio de tesis doctorales", "language": "en"} [{"acronym": "edtb"}] http://edtb.euskomedia.org/ institutional [] 2022-01-12 15:35:23 2010-07-22 09:09:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "euskomedia", "alternativeName": "", "country": "es", "url": "http://www.euskomedia.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://edtb.euskomedia.org/cgi/oai2 yes 10 5986 +1880 {"name": "ams tesi di laurea", "language": "en"} [] http://amslaurea.unibo.it/ institutional [] 2022-01-12 15:35:23 2010-09-08 10:10:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "alma mater studiorum, universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://amslaurea.unibo.it/cgi/oai2 yes 7187 19225 +1838 {"name": "repositorio insitucional de la universidad nacional de salta", "language": "en"} [] http://ediblio.unsa.edu.ar/ institutional [] 2022-01-12 15:35:23 2010-06-09 09:09:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional de salta", "alternativeName": "unsa", "country": "ar", "url": "http://www.unsa.edu.ar/", "identifier": [{"identifier": "https://ror.org/00htwgm11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ediblio.unsa.edu.ar/cgi/oai2 yes 62 +1843 {"name": "repository umm", "language": "en"} [] http://repository.umm.ac.id/ institutional [] 2022-01-12 15:35:23 2010-06-16 10:10:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of muhammadiyah malang", "alternativeName": "", "country": "id", "url": "http://www.umm.ac.id/", "identifier": [{"identifier": "https://ror.org/01j1wt659", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.umm.ac.id/cgi/oai2 yes 1707 +1813 {"name": "ted ankara college ib thesis", "language": "en"} [] http://tedprints.tedankara.k12.tr/ institutional [] 2022-01-12 15:35:22 2010-05-12 10:10:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ted ankara koleji", "alternativeName": "", "country": "tr", "url": "http://www.tedankara.k12.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://tedprints.tedankara.k12.tr/cgi/oai2 yes 825 +1907 {"name": "repositoorium e-ait", "language": "en"} [] http://e-ait.tlulib.ee/ institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "academic library of tallinn university", "alternativeName": "", "country": "ee", "url": "http://www.tlulib.ee/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 323 +1814 {"name": "dagstuhl research online publication server", "language": "en"} [{"acronym": "drops"}] http://drops.dagstuhl.de/ institutional [] 2022-01-12 15:35:22 2010-05-12 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "schloss dagstuhl - leibniz-center for informatics", "alternativeName": "", "country": "de", "url": "http://www.dagstuhl.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://drops.dagstuhl.de/opus/phpoai/oai2.php yes 7238 12730 +1876 {"name": "epublications@marquette", "language": "en"} [] http://epublications.marquette.edu/ institutional [] 2022-01-12 15:35:23 2010-09-02 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "marquette university", "alternativeName": "", "country": "us", "url": "http://www.marquette.edu/", "identifier": [{"identifier": "https://ror.org/04gr4te78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://epublications.marquette.edu/do/oai/ yes 12976 29058 +1898 {"name": "fukushima university repository", "language": "en"} [{"acronym": "fukuro"}, {"name": "\u798f\u5cf6\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://www.lib.fukushima-u.ac.jp/repo/repository/fukuro/ institutional [] 2022-01-12 15:35:23 2010-09-30 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "fukushima university", "alternativeName": "", "country": "jp", "url": "http://www.fukushima-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03zjb7z20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.lib.fukushima-u.ac.jp/repo/mmd_api/oai-pmh/ yes 0 4344 +1905 {"name": "tallinna tehnika\u00fclikooli raamatukogu digikogu (digital collection of tallinn university of technology library)", "language": "en"} [] http://digi.lib.ttu.ee/ institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "tallinn university of technology", "alternativeName": "", "country": "ee", "url": "http://www.ttu.ee/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ws.lib.ttu.ee/digikogu-oai/oai2.aspx yes 0 791 +1872 {"name": "open resources", "language": "en"} [] http://unn.edu.ng/chart/repo institutional [] 2022-01-12 15:35:23 2010-08-25 11:11:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of nigeria nsukka", "alternativeName": "", "country": "ng", "url": "http://www.unn.edu.ng/", "identifier": [{"identifier": "https://ror.org/01sn1yx84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 23367 +1874 {"name": "mpg.pure", "language": "en"} [] https://pure.mpg.de/ aggregating [] 2022-01-12 15:35:23 2010-08-25 13:13:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "max planck gesellschaft", "alternativeName": "mpg", "country": "de", "url": "http://www.mpg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://pure.mpg.de/oai/ yes 23104 434989 +1816 {"name": "teeside universitys research repository", "language": "en"} [{"acronym": "teesrep"}] https://research.tees.ac.uk/en/publications/ institutional [] 2022-01-12 15:35:22 2010-05-20 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "teesside university", "alternativeName": "", "country": "gb", "url": "http://www.tees.ac.uk/", "identifier": [{"identifier": "https://ror.org/03z28gk75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://tees.openrepository.com/tees/bitstream/10149/556971/8/556971.pdf", "type": "metadata"}, {"policy_url": "http://tees.openrepository.com/tees/bitstream/10149/556971/8/556971.pdf", "type": "data"}, {"policy_url": "http://tees.openrepository.com/tees/bitstream/10149/556971/8/556971.pdf", "type": "content"}, {"policy_url": "http://tees.openrepository.com/tees/bitstream/10149/556971/8/556971.pdf", "type": "submission"}, {"policy_url": "http://tees.openrepository.com/tees/bitstream/10149/556971/8/556971.pdf", "type": "preservation"}] {"name": "pure", "version": ""} yes 5894 20330 +1866 {"name": "osaka prefecture university repository education and research archives", "language": "en"} [{"acronym": "opera"}, {"name": "\u5927\u962a\u5e9c\u7acb\u5927\u5b66\u3000\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opera.repo.nii.ac.jp institutional [] 2022-01-12 15:35:23 2010-08-25 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "osaka prefecture university", "alternativeName": "", "country": "jp", "url": "http://www.osakafu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://opera.repo.nii.ac.jp/oai yes 10942 +1904 {"name": "university of toyama repository", "language": "en"} [{"acronym": "torepo"}, {"name": "\u5bcc\u5c71\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyama.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of toyama", "alternativeName": "", "country": "jp", "url": "http://www.u-toyama.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyama.repo.nii.ac.jp/oai yes 16390 18239 +1903 {"name": "joetsu university of education repository", "language": "en"} [{"name": "\u4e0a\u8d8a\u6559\u80b2\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://juen.repo.nii.ac.jp institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "joetsu university of education", "alternativeName": "", "country": "jp", "url": "http://www.juen.ac.jp/", "identifier": [{"identifier": "https://ror.org/02xjxgz53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://juen.repo.nii.ac.jp/oai yes 0 2822 +1867 {"name": "nagoya institute of technology repository system", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u5de5\u696d\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nitech.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:23 2010-08-25 10:10:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "nagoya institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.nitech.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nitech.repo.nii.ac.jp/oai yes 0 4174 +1883 {"name": "eprint@nml", "language": "en"} [] http://eprints.nmlindia.org/ institutional [] 2022-01-12 15:35:23 2010-09-15 09:09:53 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "national metallurgical laboratory", "alternativeName": "", "country": "in", "url": "http://www.nmlindia.org/", "identifier": [{"identifier": "https://ror.org/0211zmf46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.nmlindia.org/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.nmlindia.org/policies.html", "type": "data"}, {"policy_url": "http://eprints.nmlindia.org/policies.html", "type": "content"}, {"policy_url": "http://eprints.nmlindia.org/policies.html", "type": "submission"}, {"policy_url": "http://eprints.nmlindia.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes 6555 +1901 {"name": "tokyo university of marine science technology repository tumsat-oacis", "language": "en"} [{"acronym": "oacis"}, {"name": "\u6771\u4eac\u6d77\u6d0b\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oacis.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:13 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "tokyo university of marine science and technology", "alternativeName": "", "country": "jp", "url": "http://www.kaiyodai.ac.jp/", "identifier": [{"identifier": "https://ror.org/048nxq511", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oacis.repo.nii.ac.jp/oai yes 1728 1973 +1849 {"name": "kari e-repository", "language": "en"} [] http://www.kari.org/index.php?q=content/kari-e-repository institutional [] 2022-01-12 15:35:23 2010-06-23 09:09:58 ["science"] ["bibliographic_references", "conference_and_workshop_papers"] [{"name": "kenya agricultural research institute", "alternativeName": "kari", "country": "ke", "url": "http://www.kari.org/", "identifier": [{"identifier": "https://ror.org/039922k61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +1878 {"name": "colpos digital", "language": "en"} [] http://www.biblio.colpos.mx:8080/jspui/ institutional [] 2022-01-12 15:35:23 2010-09-08 09:09:34 ["science"] ["theses_and_dissertations"] [{"name": "colegio de postgraduados", "alternativeName": "", "country": "mx", "url": "http://www.colpos.mx/web11/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1901 +1817 {"name": "repositorio institucional del centro atomico bariloche y el instituto balseiro", "language": "en"} [] http://ricabib.cab.cnea.gov.ar/ institutional [] 2022-01-12 15:35:22 2010-05-20 10:10:58 ["science"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "comisi\u00f3n nacional de energ\u00eda at\u00f3mica", "alternativeName": "", "country": "ar", "url": "http://www.cnea.gov.ar/", "identifier": [{"identifier": "https://ror.org/01xz39a70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ricabib.cab.cnea.gov.ar/cgi/oai2 yes 390 +1844 {"name": "eprints@iari", "language": "en"} [] http://eprints.iari.res.in/ institutional [] 2022-01-12 15:35:23 2010-06-16 10:10:18 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indian agricultural research institute", "alternativeName": "iari", "country": "in", "url": "http://www.iari.res.in/", "identifier": [{"identifier": "https://ror.org/01bzgdw81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.iari.res.in/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.iari.res.in/policies.html", "type": "data"}, {"policy_url": "http://eprints.iari.res.in/policies.html", "type": "content"}, {"policy_url": "http://eprints.iari.res.in/policies.html", "type": "submission"}, {"policy_url": "http://eprints.iari.res.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes 230 +1896 {"name": "biblioteca digital de la facultad de ciencias exactas y naturales de la universidad de buenos aires", "language": "es"} [{"name": "digital library of the faculty of natural sciences at the university of buenos aires", "language": ""}] http://digital.bl.fcen.uba.ar/gsdl-282/cgi-bin/library.cgi institutional [] 2022-01-12 15:35:23 2010-09-29 10:10:28 ["science"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de buenos aires", "alternativeName": "uba", "country": "ar", "url": "http://www.uba.ar/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://digital.bl.fcen.uba.ar/gsdl-282/cgi-bin/oaiserver.cgi yes 5086 +1884 {"name": "arab repository for library and information studies", "language": "en"} [{"acronym": "arlis"}] http://www.arlis.info/home.asp?redirect=%2fdefault%2easp disciplinary [] 2022-01-12 15:35:23 2010-09-15 10:10:12 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "helwan university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u062d\u0644\u0648\u0627\u0646", "country": "eg", "url": "http://www.helwan.edu.eg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 61 +1892 {"name": "reposit\u00f3rio saberes em gest\u00e3o p\u00fablica", "language": "en"} [{"acronym": "saberes"}] http://www.escoladegoverno.pr.gov.br/modules/conteudo/conteudo.php?conteudo=557 governmental [] 2022-01-12 15:35:23 2010-09-22 10:10:29 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "escola de governo do paran\u00e1", "alternativeName": "", "country": "br", "url": "http://www.escoladegoverno.pr.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 720 +1829 {"name": "npue ir", "language": "en"} [] http://140.127.82.166/ institutional [] 2022-01-12 15:35:22 2010-06-02 10:10:12 ["social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national pingtung university of education (npue)", "alternativeName": "\u570b\u7acb\u5c4f\u6771\u6559\u80b2\u5927\u5b78", "country": "tw", "url": "http://web.npue.edu.tw/front/bin/home.phtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 15274 +1908 {"name": "library and information science institutional repository (\u56fe\u4e66\u9986\u5b66\u7cfb\u673a\u6784\u5e93)(lisir)", "language": "en"} [] http://csh.fjnu.edu.cn/dspace/ disciplinary [] 2022-01-12 15:35:24 2010-10-06 11:11:01 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "fujian normal university(\u798f\u5efa\u5e08\u8303\u5927\u5b66)", "alternativeName": "fjnu-lisir", "country": "cn", "url": "http://www3.fjnu.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 326 +1886 {"name": "traves\u00eda", "language": "es"} [] http://travesia.mcu.es/portalnb/jspui governmental [] 2022-01-12 15:35:23 2010-09-15 10:10:57 ["social sciences"] ["conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ministerio de cultura", "alternativeName": "", "country": "es", "url": "http://www.mecd.gob.es/portada-mecd", "identifier": [{"identifier": "https://ror.org/03nc27g21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://travesia.mcu.es/portalnb/oai/request yes 562 3202 +1845 {"name": "n\u00fclan", "language": "en"} [] http://nulan.mdp.edu.ar/ institutional [] 2022-01-12 15:35:23 2010-06-16 10:10:33 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional de mar del plata", "alternativeName": "", "country": "ar", "url": "http://www.mdp.edu.ar/", "identifier": [{"identifier": "https://ror.org/055eqsb67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://nulan.mdp.edu.ar/cgi/oai2 yes 2932 +1897 {"name": "institutional repository of the ministry of higher education (cuba)", "language": "en"} [] http://www.eduniv.cu aggregating [] 2022-01-12 15:35:23 2010-09-29 10:10:40 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ministerio de educaci\u00f3n superior. nodo central de la red nacional universitaria", "alternativeName": "", "country": "cu", "url": "http://www.reduniv.edu.cu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.eduniv.cu/metadatos", "type": "metadata"}, {"policy_url": "http://www.eduniv.cu/datos", "type": "data"}, {"policy_url": "http://www.eduniv.cu/tdatos", "type": "content"}, {"policy_url": "http://www.eduniv.cu/pcda", "type": "submission"}, {"policy_url": "http://www.eduniv.cu/conservacion", "type": "preservation"}] {"name": "omeka", "version": ""} yes 2670 +1870 {"name": "hwa hsia institutional repository", "language": "en"} [] http://hwhir.hwh.edu.tw/ institutional [] 2022-01-12 15:35:23 2010-08-25 11:11:14 ["technology"] ["journal_articles"] [{"name": "hwa hsia institute of technology", "alternativeName": "\u83ef\u590f\u6280\u8853\u5b78\u9662", "country": "tw", "url": "http://www.hwh.edu.tw/bin/home.php", "identifier": [{"identifier": "https://ror.org/02mfjgm25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hwhir.hwh.edu.tw/dspace-oai/request yes 0 883 +1906 {"name": "academic repository of bunka gakuen", "language": "en"} [{"name": "\u6587\u5316\u5b66\u5712\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://dspace.bunka.ac.jp/dspace institutional [] 2022-01-12 15:35:24 2010-10-06 10:10:52 ["arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "bunka gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.bunka.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bunka.ac.jp/dspace-oai/request yes 1 98 +1835 {"name": "mingdao university institutional repository", "language": "en"} [{"acronym": "\u660e\u9053\u5927\u5b78\u6a5f\u69cb\u5178\u85cf"}] http://210.60.94.92:8080/ir/ institutional [] 2022-01-12 15:35:23 2010-06-02 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "mingdao university", "alternativeName": "\u660e\u9053\u5927\u5b78", "country": "tw", "url": "http://www.mdu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.60.94.92:8080/ir-oai/request yes 0 2073 +1891 {"name": "red de bibliotecas virtuales de ciencias sociales de am\u00e9rica latina y el caribe", "language": "en"} [{"acronym": "clacso"}] http://biblioteca.clacso.edu.ar/ aggregating [] 2022-01-12 15:35:23 2010-09-22 10:10:19 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "consejo latinoamericano de ciencias sociales", "alternativeName": "clasco", "country": "ar", "url": "http://www.clacso.org.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://biblioteca.clacso.edu.ar/gsdl/cgi-bin/oaiserver.cgi yes 9135 118801 +1850 {"name": "anglia ruskin research online", "language": "en"} [{"acronym": "arro"}] https://arro.anglia.ac.uk institutional [] 2022-01-12 15:35:23 2010-06-23 10:10:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "anglia ruskin university", "alternativeName": "aru", "country": "gb", "url": "https://aru.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libweb.anglia.ac.uk/academic/files/arroguide.pdf", "type": "metadata"}, {"policy_url": "http://libweb.anglia.ac.uk/academic/files/arroguide.pdf", "type": "data"}, {"policy_url": "http://libweb.anglia.ac.uk/academic/files/arroguide.pdf", "type": "content"}, {"policy_url": "http://libweb.anglia.ac.uk/academic/files/arroguide.pdf", "type": "submission"}, {"policy_url": "http://libweb.anglia.ac.uk/academic/files/arroguide.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} https://arro.anglia.ac.uk/cgi/oai2 yes 145 6544 +1857 {"name": "digital library of university of maribor", "language": "en"} [{"acronym": "dkum"}] https://dk.um.si/info/index.php/eng/ institutional [] 2022-01-12 15:35:23 2010-07-22 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of maribor", "alternativeName": "", "country": "si", "url": "http://www.um.si/strani/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://dk.um.si/info/index.php/eng/policies", "type": "metadata"}, {"policy_url": "https://dk.um.si/info/index.php/eng/policies", "type": "data"}, {"policy_url": "https://dk.um.si/info/index.php/eng/policies", "type": "content"}, {"policy_url": "https://dk.um.si/info/index.php/eng/policies", "type": "submission"}, {"policy_url": "https://dk.um.si/info/index.php/eng/policies", "type": "preservation"}] {"name": "other", "version": ""} https://dk.um.si/oai/oai2.php yes 503 64814 +1900 {"name": "serveur acad\u00e9mique lausannois", "language": "en"} [{"acronym": "serval"}] https://serval.unil.ch/ aggregating [] 2022-01-12 15:35:23 2010-10-06 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de lausanne", "alternativeName": "", "country": "ch", "url": "http://www.unil.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.unil.ch/serval/home/menuinst/politique-du-di-serval.html", "type": "metadata"}, {"policy_url": "http://www.unil.ch/serval/home/menuinst/politique-du-di-serval.html", "type": "data"}, {"policy_url": "http://www.unil.ch/serval/home/menuinst/politique-du-di-serval.html", "type": "content"}, {"policy_url": "http://serval.unil.ch/disclaimer", "type": "submission"}, {"policy_url": "http://www.unil.ch/serval/home/menuinst/politique-du-di-serval.html", "type": "preservation"}] {"name": "fedora", "version": ""} http://serval.unil.ch/oaiprovider yes 21542 133751 +1978 {"name": "philpapers", "language": "en"} [] http://philpapers.org/ disciplinary [] 2022-01-12 15:35:25 2010-11-17 11:11:56 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "university of london", "alternativeName": "", "country": "gb", "url": "http://www.lon.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://philpapers.org/oai.pl yes 25898 48666 +2021 {"name": "carolina digital repository", "language": "en"} [{"acronym": "cdr"}] https://cdr.lib.unc.edu/ institutional [] 2022-01-12 15:35:25 2011-01-06 16:16:32 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://blogs.lib.unc.edu/cdr/index.php/about/policies-guidelines/", "type": "metadata"}, {"policy_url": "https://blogs.lib.unc.edu/cdr/index.php/about/policies-guidelines/", "type": "data"}, {"policy_url": "https://blogs.lib.unc.edu/cdr/index.php/about/policies-guidelines/", "type": "content"}, {"policy_url": "https://blogs.lib.unc.edu/cdr/index.php/about/policies-guidelines/", "type": "submission"}, {"policy_url": "https://blogs.lib.unc.edu/cdr/index.php/about/policies-guidelines/", "type": "preservation"}] {"name": "samvera", "version": ""} yes 379637 +1988 {"name": "national pingtung institute of commerce institutional repository", "language": "en"} [] http://irs.lib.ksu.edu.tw/npic/ institutional [] 2022-01-12 15:35:25 2010-11-24 11:11:05 ["arts", "humanities", "social sciences", "technology"] ["bibliographic_references"] [{"name": "national pingtung institute of commerce (\u570b\u7acb\u5c4f\u6771\u5546\u696d\u6280\u8853\u5b78\u9662)", "alternativeName": "npic", "country": "tw", "url": "http://www.npic.edu.tw/bin/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://irs.lib.ksu.edu.tw/npic-oai/request yes 0 811 +2006 {"name": "syracuse university research facility and collaborative environment", "language": "en"} [{"acronym": "surface"}] http://surface.syr.edu/ institutional [] 2022-01-12 15:35:25 2010-12-08 13:13:50 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "syracuse university", "alternativeName": "", "country": "us", "url": "http://www.syr.edu/", "identifier": [{"identifier": "https://ror.org/025r5qe02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://surface.syr.edu/do/oai/ yes 9840 15118 +2005 {"name": "wenzao ursuline college of languages institutional repository", "language": "en"} [] http://ir.lib.wtuc.edu.tw:8080/dspace/ institutional [] 2022-01-12 15:35:25 2010-12-08 13:13:37 ["arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "wenzao ursuline college of languages (\u6587\u85fb\u5916\u8a9e\u5b78\u9662)", "alternativeName": "", "country": "tw", "url": "http://www.wtuc.edu.tw/front/bin/home.phtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.wtuc.edu.tw:8080/dspace-oai/request yes 0 342 +2004 {"name": "hsiuping institute of technology institutional repository", "language": "en"} [{"acronym": "hitir"}] http://ir.hust.edu.tw/ institutional [] 2022-01-12 15:35:25 2010-12-08 13:13:21 ["arts", "humanities", "technology", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "hsiuping institute of technology (\u4fee\u5e73\u6280\u8853\u5b78\u9662)", "alternativeName": "", "country": "tw", "url": "http://www.hust.edu.tw/", "identifier": [{"identifier": "https://ror.org/04szp2m52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.hust.edu.tw/dspace-oai/request yes 0 6987 +1936 {"name": "okinawa repository integrated open-access network", "language": "en"} [{"acronym": "orion"}] http://okinawa-repo.lib.u-ryukyu.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-20 10:10:16 ["health and medicine", "science", "technology", "engineering", "mathematics", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of the ryukyus", "alternativeName": "", "country": "jp", "url": "http://www.u-ryukyu.ac.jp/", "identifier": [{"identifier": "https://ror.org/02z1n9q24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5794 +1955 {"name": "georgetown law scholarly commons", "language": "en"} [] http://scholarship.law.georgetown.edu/ institutional [] 2022-01-12 15:35:24 2010-10-27 10:10:08 ["health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "georgetown university", "alternativeName": "", "country": "us", "url": "http://www.georgetown.edu/", "identifier": [{"identifier": "https://ror.org/05vzafd60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarship.law.georgetown.edu/do/oai/ yes 2716 2973 +2013 {"name": "digital repository of pan american health organization", "language": "en"} [] http://devserver.paho.org:8080/xmlui/ institutional [] 2022-01-12 15:35:25 2011-01-05 10:10:26 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "pan american health organization", "alternativeName": "paho", "country": "us", "url": "http://new.paho.org/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1857 +1956 {"name": "repositorio de acceso abierto edumed", "language": "en"} [] http://edumed.mmcven.sld.cu/ institutional [] 2022-01-12 15:35:24 2010-10-27 10:10:18 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "misi\u00f3n m\u00e9dica cubana en venezuela", "alternativeName": "", "country": "ve", "url": "http://www.mmcven.sld.cu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 18 +1960 {"name": "digital commons@becker", "language": "en"} [] http://digitalcommons.wustl.edu/ institutional [] 2022-01-12 15:35:24 2010-11-10 10:10:03 ["health and medicine"] ["journal_articles", "bibliographic_references", "learning_objects"] [{"name": "washington university", "alternativeName": "", "country": "us", "url": "http://wustl.edu/", "identifier": [{"identifier": "https://ror.org/01yc7t268", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.wustl.edu/do/oai/ yes 13808 15475 +1920 {"name": "shiga university of medical science repository biwako", "language": "en"} [{"name": "\u6ecb\u8cc0\u533b\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3073\u308f\u5eab", "language": "ja"}] https://shiga-med.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:42 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "shiga university of medical science", "alternativeName": "", "country": "jp", "url": "http://www.shiga-med.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shiga-med.repo.nii.ac.jp/oai yes 0 3046 +2012 {"name": "national chi nan university repository (ncnu ir)", "language": "en"} [] http://ir.ncnu.edu.tw/ institutional [] 2022-01-12 15:35:25 2010-12-15 11:11:11 ["humanities", "arts", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national chi nan university (\u570b\u7acb\u66a8\u5357\u570b\u969b\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.ncnu.edu.tw/ncnuweb/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ncnu.edu.tw/ir-oai/request yes 9400 +1995 {"name": "archiwum map wojskowego instytutu geograficznego 1919 - 1939", "language": "en"} [{"acronym": "mapywig"}] http://www.mapywig.org/ disciplinary [] 2022-01-12 15:35:25 2010-12-01 11:11:32 ["humanities"] ["other_special_item_types"] [{"name": "non-organizational project", "alternativeName": "", "country": "gb", "url": "http://www.mapywig.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://english.mapywig.org/viewpage.php?page_id=8", "type": "metadata"}, {"policy_url": "http://english.mapywig.org/viewpage.php?page_id=8", "type": "data"}, {"policy_url": "http://english.mapywig.org/viewpage.php?page_id=8", "type": "submission"}] {"name": "", "version": ""} yes 56160 +1993 {"name": "chaoyang university of technology institutional repository", "language": "en"} [{"acronym": "cyutir"}] http://ir.lib.cyut.edu.tw:8080/ institutional [] 2022-01-12 15:35:25 2010-12-01 10:10:49 ["science", "arts", "humanities", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "chaoyang university of technology (\u671d\u967d\u79d1\u6280\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://web.cyut.edu.tw/bin/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16928 +1949 {"name": "scholarly commons @ unlv law", "language": "en"} [] http://scholars.law.unlv.edu/ institutional [] 2022-01-12 15:35:24 2010-10-21 10:10:04 ["science", "arts", "humanities", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "university of nevada, las vegas", "alternativeName": "", "country": "us", "url": "http://www.unlv.edu/", "identifier": [{"identifier": "https://ror.org/0406gha72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholars.law.unlv.edu/do/oai/ yes 3771 4525 +1919 {"name": "biblioteca multim\u00eddia", "language": "en"} [] http://www4.ensp.fiocruz.br/biblioteca/home/ institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:33 ["science", "health and medicine", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o oswaldo cruz", "alternativeName": "fiocruz", "country": "br", "url": "http://portal.fiocruz.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2431 +1972 {"name": "repositorio insp - banco de tesis", "language": "en"} [] http://www.inspvirtual.mx/centrodocumentacion/cwisbancopf/spt--home.php disciplinary [] 2022-01-12 15:35:25 2010-11-17 10:10:35 ["science", "health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto nacional de salud p\u00fablica", "alternativeName": "", "country": "mx", "url": "http://www.insp.mx/", "identifier": [{"identifier": "https://ror.org/032y0n460", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 7792 +1965 {"name": "montagne@doc", "language": "en"} [] http://www.institut-montagne.org/ disciplinary [] 2022-01-12 15:35:25 2010-11-10 11:11:13 ["science", "humanities", "social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universit\u00e9 de savoie", "alternativeName": "", "country": "fr", "url": "http://www.univ-savoie.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.institut-montagne.org/ori-oai-repository/oaihandler yes 4087 +1987 {"name": "taiwan agricultural research institute institutional repository", "language": "en"} [{"acronym": "tariir"}] http://ir.tari.gov.tw:8080/ institutional [] 2022-01-12 15:35:25 2010-11-24 10:10:55 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "taiwan agricultural research institute (\u8fb2\u696d\u8a66\u9a57\u6240)", "alternativeName": "", "country": "tw", "url": "http://www.tari.gov.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.tari.gov.tw:8080/ir-oai/request yes 0 10588 +1990 {"name": "kun shan university digital resource repository", "language": "en"} [] http://drr.lib.ksu.edu.tw/ir/ institutional [] 2022-01-12 15:35:25 2010-11-24 11:11:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kun shan university (\u5d11\u5c71\u79d1\u6280\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.ksu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://drr.lib.ksu.edu.tw/ir-oai/request yes 103286 +2003 {"name": "lafayette digital repository", "language": "en"} [] http://dspace.lafayette.edu/ institutional [] 2022-01-12 15:35:25 2010-12-08 11:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "lafayette college", "alternativeName": "", "country": "us", "url": "http://www.lafayette.edu/", "identifier": [{"identifier": "https://ror.org/036n0x007", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1511 +1962 {"name": "ulster universitys research portal", "language": "en"} [] http://pure.ulster.ac.uk/ institutional [] 2022-01-12 15:35:24 2010-11-10 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of ulster", "alternativeName": "", "country": "gb", "url": "http://www.ulster.ac.uk/", "identifier": [{"identifier": "https://ror.org/01yp9g959", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.ulster.ac.uk/policy.html", "type": "data"}, {"policy_url": "http://eprints.ulster.ac.uk/policy.html", "type": "submission"}, {"policy_url": "http://eprints.ulster.ac.uk/policy.html", "type": "preservation"}] {"name": "pure", "version": ""} yes 5280 8079 +1984 {"name": "twcu repository", "language": "en"} [] http://opac.library.twcu.ac.jp/portal/index.htm institutional [] 2022-01-12 15:35:25 2010-11-18 10:10:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "tokyo woman\u2019s christian university", "alternativeName": "\u6771\u4eac\u5973\u5b50\u5927\u5b66", "country": "jp", "url": "http://www.twcu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 5436 +1971 {"name": "repositorio digital unmsm", "language": "en"} [{"acronym": "ateneo"}] http://ateneo.unmsm.edu.pe/ateneo/index.jsp institutional [] 2022-01-12 15:35:25 2010-11-17 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional mayor de san marcos - sisbib", "alternativeName": "unmsm", "country": "pe", "url": "http://www.unmsm.edu.pe/", "identifier": [{"identifier": "https://ror.org/006vs7897", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ateneo.unmsm.edu.pe/ateneo/oai yes 21 +1935 {"name": "japan international cooperation agency research institute repository", "language": "en"} [{"acronym": "jica-ri repository"}] http://repository.ri.jica.go.jp/dspace/ institutional [] 2022-01-12 15:35:24 2010-10-20 10:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "japan international cooperation agency", "alternativeName": "jica", "country": "jp", "url": "http://www.jica.go.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 165 +1948 {"name": "national chung hsing university institutional repository", "language": "en"} [{"acronym": "nchuir"}] http://ir.lib.nchu.edu.tw/ institutional [] 2022-01-12 15:35:24 2010-10-21 09:09:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national chung hsing university (\u570b\u7acb\u4e2d\u8208\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.nchu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.nchu.edu.tw/oai/request yes 67235 +1986 {"name": "national dong hwa university institutional repository(ndhuir)", "language": "en"} [{"acronym": "ndhuir"}] http://ir.ndhu.edu.tw/ institutional [] 2022-01-12 15:35:25 2010-11-24 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "national dong hwa university (\u6771\u83ef\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.ndhu.edu.tw/bin/home.php", "identifier": [{"identifier": "https://ror.org/00mng9617", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ndhu.edu.tw/ir-oai/request yes 0 18932 +1932 {"name": "reposit\u00f3rio institucional da universidade federal da bahia", "language": "en"} [{"acronym": "ri/ufba"}] https://repositorio.ufba.br/ri/ institutional [] 2022-01-12 15:35:24 2010-10-20 09:09:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "books_chapters_and_sections"] [{"name": "universidade federal da bahia", "alternativeName": "ufba", "country": "br", "url": "http://www.ufba.br/", "identifier": [{"identifier": "https://ror.org/03k3p7647", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://192.188.11.11:8080/oai/request yes 0 23757 +2020 {"name": "reposit\u00f3rio institucional da universidade cat\u00f3lica portuguesa", "language": "en"} [{"acronym": "veritati"}] http://repositorio.ucp.pt/ institutional [] 2022-01-12 15:35:25 2011-01-06 11:11:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade cat\u00f3lica portuguesa", "alternativeName": "", "country": "pt", "url": "http://www.ucp.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucp.pt/oaiextended/request yes 1758 29794 +1933 {"name": "wits institutional repository on dspace", "language": "en"} [{"acronym": "wiredspace"}] http://wiredspace.wits.ac.za/ institutional [] 2022-01-12 15:35:24 2010-10-20 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of the witwatersrand, johannesburg", "alternativeName": "", "country": "za", "url": "http://web.wits.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://wiredspace.wits.ac.za/oai/request yes 17146 +1985 {"name": "national taipei university of education repository", "language": "en"} [{"acronym": "ntuer"}] http://ntuer.lib.ntue.edu.tw/ institutional [] 2022-01-12 15:35:25 2010-11-24 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "national taipei university of education (\u570b\u7acb\u81fa\u5317\u6559\u80b2\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.ntue.edu.tw/", "identifier": [{"identifier": "https://ror.org/02bzpph30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ntuer.lib.ntue.edu.tw/ir-oai/request yes 0 1600 +1931 {"name": "institutional repository of osnabr\u00fcck university", "language": "en"} [{"acronym": "osnadocs"}, {"name": "institutionelles repositorium der universit\u00e4t osnabr\u00fcck", "language": "de"}, {"acronym": "osnadocs"}] https://osnadocs.ub.uni-osnabrueck.de institutional [] 2022-01-12 15:35:24 2010-10-20 09:09:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osnabrueck university", "alternativeName": "", "country": "de", "url": "https://www.uni-osnabrueck.de", "identifier": [{"identifier": "https://ror.org/04qmmjx98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://osnadocs.ub.uni-osnabrueck.de/oai/request yes 1650 +1963 {"name": "biblioteca digital iep-petroecuador", "language": "en"} [] http://repositorio.eppetroecuador.ec/ institutional [] 2022-01-12 15:35:24 2010-11-10 10:10:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto de estudios del petr\u00f3leo", "alternativeName": "ep petroecuador", "country": "ec", "url": "http://piep.eppetroecuador.ec/ieppetro/index.php?system=14", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.eppetroecuador.ec/oai/request yes 272 +2009 {"name": "meiho institutional repository", "language": "en"} [] http://ir.meiho.edu.tw/ir/ institutional [] 2022-01-12 15:35:25 2010-12-15 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "meiho university (mu)", "alternativeName": "\u7f8e\u548c\u79d1\u6280\u5927\u5b78", "country": "tw", "url": "http://www.meiho.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.meiho.edu.tw/ir-oai/request yes 0 1397 +1926 {"name": "repository of the university of nagasaki", "language": "en"} [{"name": "\u9577\u5d0e\u770c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://reposit.sun.ac.jp/dspace/ institutional [] 2022-01-12 15:35:24 2010-10-13 13:13:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of nagasaki", "alternativeName": "", "country": "jp", "url": "http://sun.ac.jp/", "identifier": [{"identifier": "https://ror.org/03ppx1p25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://reposit.sun.ac.jp/dspace-oai/request yes 990 +2017 {"name": "reposit\u00f3rio cient\u00edfico do instituto polit\u00e9cnico de viseu", "language": "en"} [] http://repositorio.ipv.pt/ institutional [] 2022-01-12 15:35:25 2011-01-06 11:11:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico de viseu", "alternativeName": "", "country": "pt", "url": "http://www.ipv.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipv.pt/oaiextended/request yes 2506 5303 +1958 {"name": "repositorio de la fundaci\u00f3n universitaria del \u00e1rea andina", "language": "en"} [] https://digitk.areandina.edu.co institutional [] 2022-01-12 15:35:24 2010-10-27 11:11:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "fundacion universitaria del area andina", "alternativeName": "", "country": "co", "url": "http://www.areandina.edu.co/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digitk.areandina.edu.co/oai/request yes 648 +2019 {"name": "reposit\u00f3rio do lneg", "language": "en"} [] http://repositorio.lneg.pt/ institutional [] 2022-01-12 15:35:25 2011-01-06 11:11:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "laborat\u00f3rio nacional de energia e geologia", "alternativeName": "lneg", "country": "pt", "url": "http://www.lneg.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.lneg.pt/oaiextended/request yes 1804 2992 +2010 {"name": "buleria", "language": "en"} [] https://buleria.unileon.es/ institutional [] 2022-01-12 15:35:25 2010-12-15 10:10:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad de le\u00f3n", "alternativeName": "", "country": "es", "url": "http://www.unileon.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7381 +2001 {"name": "electronic sumy state university institutional repository", "language": "en"} [] http://essuir.sumdu.edu.ua/ institutional [] 2022-01-12 15:35:25 2010-12-08 10:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects"] [{"name": "sumy state university", "alternativeName": "", "country": "ua", "url": "http://www.sumdu.edu.ua/ukr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://essuir.sumdu.edu.ua/oai/request yes 66434 +1969 {"name": "national changhua university of education institutional repository", "language": "en"} [] http://ir.ncue.edu.tw/ir/ institutional [] 2022-01-12 15:35:25 2010-11-10 11:11:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national changhua university of education \uff08\u5f70\u5316\u5e2b\u7bc4\u5927\u5b78\uff09", "alternativeName": "", "country": "tw", "url": "http://www.ncue.edu.tw/front/bin/home.phtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ncue.edu.tw/ir-oai/request yes 2163 11662 +1927 {"name": "osaka jogakuin research repository", "language": "en"} [{"name": "\u5927\u962a\u5973\u5b66\u9662\u3000\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir-lib.wilmina.ac.jp/dspace/ institutional [] 2022-01-12 15:35:24 2010-10-13 14:14:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "osaka jogakuin college", "alternativeName": "", "country": "jp", "url": "http://www.wilmina.ac.jp/ojc", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir-lib.wilmina.ac.jp/dspace-oai/request yes 2623 +1957 {"name": "psu knowledge bank", "language": "en"} [] http://kb.psu.ac.th/psukb/ institutional [] 2022-01-12 15:35:24 2010-10-27 10:10:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "prince of songkla university (\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e2a\u0e07\u0e02\u0e25\u0e32\u0e19\u0e04\u0e23\u0e34\u0e19\u0e17\u0e23\u0e4c)", "alternativeName": "", "country": "th", "url": "http://www.psu.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kb.psu.ac.th/oai/request yes 1414 11613 +1968 {"name": "repository of odessa ii mechnikov national university", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u043e\u0434\u0435\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u0456.\u0456.\u043c\u0435\u0447\u043d\u0438\u043a\u043e\u0432\u0430", "language": "uk"}] http://dspace.onu.edu.ua:8080 institutional [] 2022-01-12 15:35:25 2010-11-10 11:11:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "odessa i.i.mechnikov national university", "alternativeName": "onu", "country": "ua", "url": "http://info.onu.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.onu.edu.ua:8080/oai/request yes 12494 +2018 {"name": "reposit\u00f3rio do ispa", "language": "en"} [] http://repositorio.ispa.pt/ institutional [] 2022-01-12 15:35:25 2011-01-06 11:11:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "instituto superior de psicologia aplicada", "alternativeName": "ispa", "country": "pt", "url": "http://www.ispa.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ispa.pt/oaiextended/request yes 4660 7677 +1961 {"name": "universidade de lisboa: reposit\u00f3rio.ul", "language": "en"} [] http://repositorio.ul.pt/ institutional [] 2022-01-12 15:35:24 2010-11-10 10:10:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade de lisboa", "alternativeName": "", "country": "pt", "url": "http://www.ul.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ul.pt/oaiextended/request yes 11384 41618 +1998 {"name": "acervo digital da unesp", "language": "en"} [] http://www.acervodigital.unesp.br/ institutional [] 2022-01-12 15:35:25 2010-12-01 14:14:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "universidade estadual paulista "j\u00falio de mesquita filho"", "alternativeName": "unesp", "country": "br", "url": "http://www.unesp.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.acervodigital.unesp.br/oai/request yes 0 147363 +1994 {"name": "biblioteca digital icaro", "language": "en"} [] http://icaro.javeriana.edu.co/ institutional [] 2022-01-12 15:35:25 2010-12-01 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "pontificia universidad javeriana", "alternativeName": "", "country": "co", "url": "http://puj-portal.javeriana.edu.co/portal/page/portal/portal_version_2009_2010/es_inicio", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://icaro.javeriana.edu.co/oai/request yes 326 +1997 {"name": "elea@unisa - universit\u00e0 degli studi di salerno", "language": "en"} [] http://elea.unisa.it/ institutional [] 2022-01-12 15:35:25 2010-12-01 14:14:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di salerno", "alternativeName": "", "country": "it", "url": "http://www.unisa.it/", "identifier": [{"identifier": "https://ror.org/0192m2k53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elea.unisa.it/oai/request yes 563 2968 +1943 {"name": "iris - universit\u00e0 degli studi di verona", "language": "en"} [] https://iris.univr.it/ institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di verona", "alternativeName": "", "country": "it", "url": "http://www.univr.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://iris.univr.it/oai/request yes 4105 102937 +1916 {"name": "open archive: publications from karolinska institutet", "language": "en"} [] https://openarchive.ki.se/xmlui/ institutional [] 2022-01-12 15:35:24 2010-10-13 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "karolinska institutet", "alternativeName": "", "country": "se", "url": "http://ki.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openarchive.ki.se/oai/request yes 3941 8964 +1967 {"name": "researchspace@ukzn", "language": "en"} [] http://researchspace.ukzn.ac.za institutional [] 2022-01-12 15:35:25 2010-11-10 11:11:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of kwazulu-natal", "alternativeName": "ukzn", "country": "za", "url": "https://www.ukzn.ac.za", "identifier": [{"identifier": "https://ror.org/04qzfn040", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://researchspace.ukzn.ac.za/oai/request yes 2450 13773 +2007 {"name": "dspace en uces", "language": "en"} [] http://desarrollo.uces.edu.ar:8180/dspace/ institutional [] 2022-01-12 15:35:25 2010-12-08 14:14:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de ciencias empresariales y sociales", "alternativeName": "uces", "country": "ar", "url": "http://www.uces.edu.ar/", "identifier": [{"identifier": "https://ror.org/04g7dxn12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://desarrollo.uces.edu.ar:8180/dspace-oai/request yes 1409 +1989 {"name": "kun shan university institutional repository", "language": "en"} [] http://ir.lib.ksu.edu.tw/ institutional [] 2022-01-12 15:35:25 2010-11-24 11:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "kun shan university (\u5d11\u5c71\u79d1\u6280\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.ksu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.ksu.edu.tw/dspace-oai/request yes 23451 +1981 {"name": "nara national research institute for cultural repository", "language": "en"} [{"name": "\u5948\u826f\u6587\u5316\u8ca1\u7814\u7a76\u6240\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.nabunken.go.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:25 2010-11-17 15:15:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "nara national research institute for cultural properties", "alternativeName": "", "country": "jp", "url": "http://www.nabunken.go.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.nabunken.go.jp/dspace-oai/request yes 222 7079 +2002 {"name": "reposit\u00f3rio cientifico do instituto polit\u00e9cnico de santar\u00e9m", "language": "en"} [] http://repositorio.ipsantarem.pt/ institutional [] 2022-01-12 15:35:25 2010-12-08 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico de santar\u00e9m", "alternativeName": "", "country": "pt", "url": "http://www.ipsantarem.pt/", "identifier": [{"identifier": "https://ror.org/02bbx2g30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipsantarem.pt/oai/request yes 1966 +2016 {"name": "reposit\u00f3rio cient\u00edfico do instituto nacional de sa\u00fade", "language": "en"} [] http://repositorio.insa.pt/ institutional [] 2022-01-12 15:35:25 2011-01-06 11:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "instituto nacional de sa\u00fade dr. ricardo jorge", "alternativeName": "insa", "country": "pt", "url": "http://www.insa.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.insa.pt/oaiextended/request yes 2218 7351 +1952 {"name": "university of teacher education fukuoka research information repository", "language": "en"} [{"name": "\u798f\u5ca1\u6559\u80b2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://libopac.fukuoka-edu.ac.jp/dspace/ institutional [] 2022-01-12 15:35:24 2010-10-21 10:10:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of teacher education fukuoka", "alternativeName": "", "country": "jp", "url": "http://www.fukuoka-edu.ac.jp/", "identifier": [{"identifier": "https://ror.org/003vkcj31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://libopac.fukuoka-edu.ac.jp/dspace-oai/request yes 1415 +1912 {"name": "fotograf\u00eda sobre espa\u00f1a en el siglo xix", "language": "en"} [{"acronym": "phosxix"}] http://coleccionfff.unav.es/bvunav/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion institutional [] 2022-01-12 15:35:24 2010-10-06 11:11:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "universidad de navarra", "alternativeName": "", "country": "es", "url": "http://www.unav.edu/", "identifier": [{"identifier": "https://ror.org/02rxc7m23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://coleccionfff.unav.es/bvunav/i18n/oai/oai.cmd yes 4079 +1970 {"name": "sjsu scholarworks", "language": "en"} [] https://scholarworks.sjsu.edu institutional [] 2022-01-12 15:35:25 2010-11-10 11:11:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "san jose state university", "alternativeName": "", "country": "us", "url": "http://www.sjsu.edu", "identifier": [{"identifier": "https://ror.org/04qyvz380", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.sjsu.edu/do/oai yes 21626 27262 +1918 {"name": "durham e-theses", "language": "en"} [] http://etheses.dur.ac.uk/ institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "durham university", "alternativeName": "", "country": "gb", "url": "http://www.dur.ac.uk/", "identifier": [{"identifier": "https://ror.org/01v29qb04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etheses.dur.ac.uk/cgi/oai2 yes 12276 12823 +1945 {"name": "tottori university research result repository", "language": "en"} [{"name": "\u9ce5\u53d6\u5927\u5b66\u7814\u7a76\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.lib.tottori-u.ac.jp/repository/index.e institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tottori university", "alternativeName": "", "country": "jp", "url": "http://www.tottori-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://repository.lib.tottori-u.ac.jp/repository/oai/request yes 5368 6494 +1946 {"name": "tokushima university institutional repository", "language": "en"} [{"name": "\u5fb3\u5cf6\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repo.lib.tokushima-u.ac.jp/en institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "tokushima university", "alternativeName": "", "country": "jp", "url": "http://www.tokushima-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://repo.lib.tokushima-u.ac.jp/api/oai/request yes 15810 +1944 {"name": "sophia university repository for academic resources", "language": "en"} [{"acronym": "sophia-r"}, {"name": "\u4e0a\u667a\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://digital-archives.sophia.ac.jp/repository/?lang=en institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "sophia university", "alternativeName": "", "country": "jp", "url": "http://www.sophia.ac.jp/", "identifier": [{"identifier": "https://ror.org/01nckkm68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital-archives.sophia.ac.jp/amlad-oai/repository/oaipmh yes 21156 +1973 {"name": "aoyama gakuin university & women\u2019s junior college institutional repository aurora-ir", "language": "en"} [{"acronym": "aurora-ir"}, {"name": "\u9752\u5c71\u5b66\u9662\u5927\u5b66\u30fb\u5973\u5b50\u77ed\u671f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea aurora-ir", "language": "ja"}] https://www.agulin.aoyama.ac.jp/repo/repository/1000/ institutional [] 2022-01-12 15:35:25 2010-11-17 10:10:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "aoyama gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.aoyama.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.agulin.aoyama.ac.jp/repo/mmd_api/oai-pmh/ yes 0 16245 +1938 {"name": "university of yamanashi academic repository", "language": "en"} [{"name": "\u5c71\u68a8\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://www.lib.yamanashi.ac.jp/repository/ institutional [] 2022-01-12 15:35:24 2010-10-20 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of yamanashi", "alternativeName": "", "country": "jp", "url": "http://www.yamanashi.ac.jp/", "identifier": [{"identifier": "https://ror.org/059x21724", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.lib.yamanashi.ac.jp/opac/mmd_api/oai-pmh/ yes 0 3176 +1939 {"name": "osaka city university repository", "language": "en"} [{"name": "\u5927\u962a\u5e02\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dlisv03.media.osaka-cu.ac.jp/il/meta_pub/engg0000438repository institutional [] 2022-01-12 15:35:24 2010-10-20 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "osaka city university", "alternativeName": "", "country": "jp", "url": "http://www.osaka-cu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dlisv03.media.osaka-cu.ac.jp/il/oai_repository/pmh/g0000438-repository yes 9056 15815 +1915 {"name": "jura (josai university repository of academia)", "language": "en"} [{"acronym": "jura"}, {"name": "jura\u3000\u57ce\u897f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://libir.josai.ac.jp/il/meta_pub/engg0000284repository institutional [] 2022-01-12 15:35:24 2010-10-13 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "josai university", "alternativeName": "", "country": "jp", "url": "http://www.josai.ac.jp/", "identifier": [{"identifier": "https://ror.org/021r6aq66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://libir.josai.ac.jp/il/oai_repository/pmh/g0000284-repository yes 5447 6344 +1922 {"name": "jubiloth\u00e8que", "language": "en"} [] http://jubilotheque.upmc.fr/ institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 pierre et marie curie", "alternativeName": "", "country": "fr", "url": "http://www.upmc.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://oai.upmc.fr/oai/provider yes 1306 +1974 {"name": "kokushikan knowledge integrated service system", "language": "en"} [{"acronym": "i-libkiss"}] https://kiss.kokushikan.ac.jp/pages/sa.aspx institutional [] 2022-01-12 15:35:25 2010-11-17 11:11:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kokushikan university", "alternativeName": "", "country": "jp", "url": "http://www.kokushikan.ac.jp/", "identifier": [{"identifier": "https://ror.org/02qrpey68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +1917 {"name": "kanto gakuin university repository", "language": "en"} [{"acronym": "iliswave-j v2 e-lib"}, {"name": "\u95a2\u6771\u5b66\u9662\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kguopac.kanto-gakuin.ac.jp/webopac/ufirdi.do?ufi_target=ctlsrh institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kanto gakuin university", "alternativeName": "", "country": "jp", "url": "http://univ.kanto-gakuin.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kguopac.kanto-gakuin.ac.jp/oai/oai-pmh.do yes 0 2761 +1929 {"name": "chubu university digital archives", "language": "en"} [{"name": "\u4e2d\u90e8\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://library.bliss.chubu.ac.jp/?action=pages_view_main&active_action=v3search_view_main_init&block_id=323&tab_num=3&change_locale=en institutional [] 2022-01-12 15:35:24 2010-10-13 14:14:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "chubu university", "alternativeName": "", "country": "jp", "url": "http://www.chubu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://elib.bliss.chubu.ac.jp/oai/oai-pmh.do yes 0 3589 +1977 {"name": "ryukoku university institutional repository", "language": "en"} [{"name": "\u9f8d\u8c37\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000r-ship", "language": "ja"}] https://library.ryukoku.ac.jp/?action=pages_view_main&active_action=v3search_view_main_init&block_id=296&tab_num=1 institutional [] 2022-01-12 15:35:25 2010-11-17 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ryukoku university", "alternativeName": "", "country": "jp", "url": "http://www.ryukoku.ac.jp/", "identifier": [{"identifier": "https://ror.org/012tqgb57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.ryukoku.ac.jp/oai/oai-pmh.do yes 0 5976 +1910 {"name": "kanagawa institute of technology academic repository", "language": "en"} [{"name": "\u795e\u5948\u5ddd\u5de5\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://lib.kait.jp/?page_id=1044 institutional [] 2022-01-12 15:35:24 2010-10-06 11:11:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kanagawa institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.kait.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://202.250.70.181/oai/oai-pmh.do yes 947 +1924 {"name": "kyoto university of educationo repository", "language": "en"} [{"acronym": "kuere"}, {"name": "\u4eac\u90fd\u6559\u80b2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www-std01.ufinity.jp/kyokyolib/ institutional [] 2022-01-12 15:35:24 2010-10-13 12:12:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "kyoto university of education", "alternativeName": "", "country": "jp", "url": "http://www.kyokyo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://tosho2.kyokyo-u.ac.jp/oai/oai-pmh.do yes 5842 +1983 {"name": "national museum of ethnology repository", "language": "en"} [{"acronym": "minpaku"}, {"name": "\u56fd\u7acb\u6c11\u65cf\u5b66\u535a\u7269\u9928\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea\uff08\u307f\u3093\u3071\u304f\u30ea\u30dd\u30b8\u30c8\u30ea\uff09", "language": "ja"}] https://minpaku.repo.nii.ac.jp institutional [] 2022-01-12 15:35:25 2010-11-18 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national museum of ethnology", "alternativeName": "minpaku", "country": "jp", "url": "http://www.minpaku.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://minpaku.repo.nii.ac.jp/oai yes 0 4655 +1976 {"name": "tokyo women\u2019s medical university information & knowledge database", "language": "en"} [{"acronym": "twinkle"}, {"name": "\u6771\u4eac\u5973\u5b50\u533b\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea twinkle", "language": "ja"}] https://twinkle.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:25 2010-11-17 11:11:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "tokyo womens medical university", "alternativeName": "", "country": "jp", "url": "http://www.twmu.ac.jp/", "identifier": [{"identifier": "https://ror.org/03kjjhe36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://twinkle.repo.nii.ac.jp/oai yes 37906 +1940 {"name": "hamamed-repository", "language": "en"} [{"name": "\u6d5c\u677e\u533b\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hama-med.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hamamatsu university school of medicine", "alternativeName": "", "country": "jp", "url": "http://www.hamamatsu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hama-med.repo.nii.ac.jp/oai yes 3205 +1951 {"name": "okinawa international university repository", "language": "en"} [{"name": "\u6c96\u7e04\u56fd\u969b\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://okiu1972.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-21 10:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "okinawa international university", "alternativeName": "", "country": "jp", "url": "http://www.okiu.ac.jp/index.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://okiu1972.repo.nii.ac.jp/oai yes 313 +1947 {"name": "sapporo gakuin university repository", "language": "en"} [{"name": "\u672d\u5e4c\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sgul.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "sapporo gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.sgu.ac.jp/", "identifier": [{"identifier": "https://ror.org/05x535462", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sgul.repo.nii.ac.jp/oai yes 2321 2533 +1921 {"name": "shiga university repository", "language": "en"} [{"name": "\u6ecb\u8cc0\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shiga-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-13 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "shiga university", "alternativeName": "", "country": "jp", "url": "http://www.shiga-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shiga-u.repo.nii.ac.jp/oai yes 12875 +1975 {"name": "academic repository of the jikei university school of medicine", "language": "en"} [{"name": "\u6771\u4eac\u6148\u6075\u4f1a\u533b\u79d1\u5927\u5b66\u3000\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ir.jikei.ac.jp/ institutional [] 2022-01-12 15:35:25 2010-11-17 11:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "the jikei university school of medicine", "alternativeName": "", "country": "jp", "url": "http://www.jikei.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ir.jikei.ac.jp/oai yes 5003 +1914 {"name": "aichi university of education academic information repository", "language": "en"} [{"name": "\u611b\u77e5\u6559\u80b2\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aue.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-07 16:16:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "aichi university of education", "alternativeName": "", "country": "jp", "url": "http://www.aichi-edu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aue.repo.nii.ac.jp/oai yes 53 8100 +1979 {"name": "mukogawa women\u2019s university", "language": "en"} [{"name": "\u6b66\u5eab\u5ddd\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mukogawa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:25 2010-11-17 14:14:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "mukogawa womens university", "alternativeName": "", "country": "jp", "url": "http://www.mukogawa-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/009x65438", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mukogawa.repo.nii.ac.jp/oai yes 946 +1980 {"name": "nit, tsuyama college-repository", "language": "en"} [{"name": "\u6d25\u5c71\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tsuyama-nit.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:25 2010-11-17 14:14:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "national institute of technology, tsuyama college", "alternativeName": "", "country": "jp", "url": "http://www.tsuyama-ct.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tsuyama-nit.repo.nii.ac.jp/oai yes 0 902 +1953 {"name": "sokendai repository \uff08the graduate university for advanced studies\uff09", "language": "en"} [{"name": "\u7dcf\u7814\u5927\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.soken.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-21 10:10:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the graduate university for advanced studies", "alternativeName": "sokendai", "country": "jp", "url": "http://www.soken.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ir.soken.ac.jp/oai yes 491 5999 +1923 {"name": "kochi university digital repository for academic resources", "language": "en"} [{"name": "\u9ad8\u77e5\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kochi.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-13 12:12:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kochi university", "alternativeName": "", "country": "jp", "url": "http://www.kochi-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kochi.repo.nii.ac.jp/oai yes 2930 6066 +1959 {"name": "beppu university and oita regional society co-operation", "language": "en"} [{"acronym": "bungo"}, {"name": "\u5225\u5e9c\u5927\u5b66(\u5730\u57df\u9023\u643a\u30d7\u30ed\u30b0\u30e9\u30e0)", "language": "ja"}] http://bud.beppu-u.ac.jp institutional [] 2022-01-12 15:35:24 2010-10-27 11:11:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "beppu university", "alternativeName": "", "country": "jp", "url": "http://www.beppu-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/05j412v70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://bud.beppu-u.ac.jp/modules/xoonips/oai.php yes 4432 +1954 {"name": "seigakuin repository for academic archive", "language": "en"} [{"acronym": "serve"}] http://serve.seigakuin-univ.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-21 10:10:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "seigakuin university", "alternativeName": "", "country": "jp", "url": "http://www.seigakuin.jp/", "identifier": [{"identifier": "https://ror.org/04p9zgs78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://serve.seigakuin-univ.ac.jp/reps/modules/xoonips/oai.php yes 0 1207 +1930 {"name": "beppu university information library for documentation", "language": "en"} [{"name": "\u5225\u5e9c\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repo.beppu-u.ac.jp institutional [] 2022-01-12 15:35:24 2010-10-13 14:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "beppu university", "alternativeName": "", "country": "jp", "url": "http://www.beppu-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/05j412v70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://repo.beppu-u.ac.jp/modules/xoonips/oai.php yes 4983 +1942 {"name": "nara university repository", "language": "en"} [{"name": "\u5948\u826f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repo.nara-u.ac.jp institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nara university", "alternativeName": "", "country": "jp", "url": "http://www.nara-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03a42q045", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "xoonips", "version": ""} http://repo.nara-u.ac.jp/modules/xoonips/oai.php yes 81 3818 +1964 {"name": "islandscholar", "language": "en"} [] http://islandscholar.ca/ institutional [] 2022-01-12 15:35:24 2010-11-10 11:11:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "university of prince edward island", "alternativeName": "upei", "country": "ca", "url": "http://www.upei.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} http://www.islandscholar.ca/oai2 yes 136 14155 +1941 {"name": "nifs repository", "language": "en"} [{"name": "\u6838\u878d\u5408\u79d1\u5b66\u7814\u7a76\u6240\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nifs-repository.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-20 11:11:06 ["science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national institute for fusion science", "alternativeName": "nifs", "country": "jp", "url": "http://www.nifs.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nifs-repository.repo.nii.ac.jp/oai yes 0 10485 +1996 {"name": "ehtc repositorio institucional", "language": "en"} [] http://www.repositorio.ehtc.cu/jspui/ institutional [] 2022-01-12 15:35:25 2010-12-01 11:11:57 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "escuela de hoteler\u00eda y turismo de camag\u00fcey", "alternativeName": "", "country": "cu", "url": "http://www.ehtc.cu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 286 +1937 {"name": "hokkaido university of education repository", "language": "en"} [{"name": "\u5317\u6d77\u9053\u6559\u80b2\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://s-ir.sap.hokkyodai.ac.jp/ institutional [] 2022-01-12 15:35:24 2010-10-20 10:10:44 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "hokkaido university of education", "alternativeName": "", "country": "jp", "url": "http://www.hokkyodai.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://s-ir.sap.hokkyodai.ac.jp/dspace-oai/request yes 8433 +2011 {"name": "opensky", "language": "en"} [] http://opensky.ucar.edu institutional [] 2022-01-13 09:07:20 2010-12-15 10:10:53 ["science"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national center for atmospheric research", "alternativeName": "ucar", "country": "us", "url": "https://ncar.ucar.edu", "identifier": [{"identifier": "https://ror.org/05cvfcr44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://opensky.ucar.edu/oai2 yes 0 21822 +1925 {"name": "uca research online", "language": "en"} [] http://www.research.ucreative.ac.uk/ institutional [] 2022-01-12 15:35:24 2010-10-13 13:13:31 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university for the creative arts", "alternativeName": "uca", "country": "gb", "url": "http://www.ucreative.ac.uk/", "identifier": [{"identifier": "https://ror.org/04r0ks517", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.research.ucreative.ac.uk/uca_ro_policy.doc", "type": "metadata"}, {"policy_url": "http://www.research.ucreative.ac.uk/uca_ro_policy.doc", "type": "data"}, {"policy_url": "http://www.research.ucreative.ac.uk/uca_ro_policy.doc", "type": "content"}, {"policy_url": "http://www.research.ucreative.ac.uk/uca_ro_policy.doc", "type": "submission"}, {"policy_url": "http://www.research.ucreative.ac.uk/uca_ro_policy.doc", "type": "preservation"}] {"name": "eprints", "version": ""} http://www.research.ucreative.ac.uk/cgi/oai2 yes 475 2578 +2008 {"name": "repositorio de tesis de doctorado en ciencias biom\u00e9dicas y de la salud de cuba", "language": "en"} [] http://tesis.repo.sld.cu/ institutional [] 2022-01-12 15:35:25 2010-12-08 14:14:31 ["health and medicine"] ["theses_and_dissertations"] [{"name": "infomed", "alternativeName": "", "country": "cu", "url": "http://www.sld.cu/", "identifier": [{"identifier": "https://ror.org/02zttza43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://tesis.repo.sld.cu/policies.html", "type": "metadata"}, {"policy_url": "http://tesis.repo.sld.cu/policies.html", "type": "content"}, {"policy_url": "http://tesis.repo.sld.cu/policies.html", "type": "submission"}, {"policy_url": "http://tesis.repo.sld.cu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://tesis.repo.sld.cu/cgi/oai2 yes 468 685 +2015 {"name": "mb ipb repository", "language": "en"} [] http://repository.mb.ipb.ac.id/ institutional [] 2022-01-12 15:35:25 2011-01-05 11:11:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "bogor agricultural university", "alternativeName": "", "country": "id", "url": "http://www.ipb.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.mb.ipb.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.mb.ipb.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.mb.ipb.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.mb.ipb.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.mb.ipb.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.mb.ipb.ac.id/cgi/oai2 yes 164 3315 +2132 {"name": "dwcla academic repository", "language": "en"} [{"acronym": "dwcla academic repository"}, {"name": "\u540c\u5fd7\u793e\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dwcla.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:27 2011-04-13 11:11:54 ["arts", "humanities", "health and medicine", "science", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "doshisha womens college of liberal arts", "alternativeName": "", "country": "jp", "url": "http://www.dwc.doshisha.ac.jp/", "identifier": [{"identifier": "https://ror.org/02p6jga18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://dwcla.repo.nii.ac.jp/oai yes 0 1979 +2091 {"name": "opus fau - online publication system of friedrich-alexander-universit\u00e4t erlangen-n\u00fcrnberg", "language": "en"} [{"acronym": "opus fau"}, {"name": "opus fau - online-publikationssystem der friedrich-alexander-universit\u00e4t erlangen-n\u00fcrnberg", "language": "de"}, {"acronym": "opus fau"}] https://opus4.kobv.de/opus4-fau/home institutional [] 2022-01-12 15:35:27 2011-03-09 10:10:20 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "friedrich-alexander university erlangen-n\u00fcrnberg", "alternativeName": "fau", "country": "de", "url": "https://www.fau.eu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://opus4.kobv.de/opus4-fau/home/index/help#policies", "type": "metadata"}, {"policy_url": "http://opus4.kobv.de/opus4-fau/home/index/help#policies", "type": "preservation"}] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-fau/oai yes 7392 +2037 {"name": "archival sound recordings", "language": "en"} [] http://sounds.bl.uk/ disciplinary [] 2022-01-12 15:35:26 2011-01-18 14:14:08 ["arts", "humanities", "science"] ["other_special_item_types"] [{"name": "british library", "alternativeName": "bl", "country": "gb", "url": "http://www.bl.uk/", "identifier": [{"identifier": "https://ror.org/05dhe8b71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 50000 +2030 {"name": "unitec research bank", "language": "en"} [] http://unitec.researchbank.ac.nz/ institutional [] 2022-01-12 15:35:26 2011-01-18 10:10:53 ["arts", "humanities", "social sciences", "health and medicine", "technology"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "unitec institute of technology", "alternativeName": "", "country": "nz", "url": "http://www.unitec.ac.nz/", "identifier": [{"identifier": "https://ror.org/01px84952", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://unitec.researchbank.ac.nz/oai/request yes 2910 +2033 {"name": "biblioteca digital de la biblioteca nacional de maestros", "language": "en"} [] http://www.bnm.me.gov.ar/catalogo governmental [] 2022-01-12 15:35:26 2011-01-18 13:13:13 ["arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "biblioteca nacional de maestros", "alternativeName": "", "country": "ar", "url": "http://www.bnm.me.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bdu.siu.edu.ar/bnmoai/oai2.php yes 0 220320 +2038 {"name": "digital collections", "language": "en"} [] http://collections.nlm.nih.gov/ governmental [] 2022-01-12 15:35:26 2011-01-18 14:14:14 ["health and medicine"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national library of medicine", "alternativeName": "nlm", "country": "us", "url": "http://www.nlm.nih.gov/", "identifier": [{"identifier": "https://ror.org/0060t0j89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 93652 +2094 {"name": "\u015bwi\u0119tokrzyska digital library", "language": "en"} [] http://sbc.wbp.kielce.pl/dlibra institutional [] 2022-01-12 15:35:27 2011-03-09 10:10:45 ["humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "witold gombrowicz voivodeship public library", "alternativeName": "", "country": "pl", "url": "http://www.wbp.kielce.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://sbc.wbp.kielce.pl/dlibra/oai-pmh-repository.xml yes 0 8242 +2093 {"name": "tarnow digital library", "language": "en"} [] http://dlibra.biblioteka.tarnow.pl/dlibra governmental [] 2022-01-12 15:35:27 2011-03-09 10:10:39 ["humanities"] ["journal_articles"] [{"name": "julius slowacki municipal library", "alternativeName": "", "country": "pl", "url": "http://www.biblioteka.tarnow.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://dlibra.biblioteka.tarnow.pl/dlibra/oai-pmh-repository.xml yes 0 368 +2076 {"name": "institutional repository of intectual contributions of delhi technological university", "language": "en"} [{"acronym": "dspace@dtu"}] http://dspace.dtu.ac.in:8080/jspui/ institutional [] 2022-01-12 15:35:26 2011-03-02 10:10:33 ["science", "mathematics", "engineering", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "delhi technological university", "alternativeName": "dtu", "country": "in", "url": "http://www.dtu.ac.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.dtu.ac.in:8080/oai/request yes 841 +2024 {"name": "knowledge repository of indian institute of horticultural research", "language": "en"} [{"acronym": "e-repository@iihr"}] http://www.erepo.iihr.ernet.in/ institutional [] 2022-01-12 15:35:25 2011-01-07 14:14:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "indian institute of horticultural research", "alternativeName": "iihr", "country": "in", "url": "http://www.iihr.res.in/", "identifier": [{"identifier": "https://ror.org/00s2dqx11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 486 +2065 {"name": "publications et travaux acad\u00e9miques de lorraine", "language": "en"} [{"acronym": "petale"}] http://petale.univ-lorraine.fr/ aggregating [] 2022-01-12 15:35:26 2011-02-16 10:10:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de lorraine", "alternativeName": "", "country": "fr", "url": "http://vers.univ-lorraine.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ori-repository.univ-lorraine.fr/oaihandler yes 15312 +2109 {"name": "restore repository", "language": "en"} [] http://www.restore.ac.uk/ institutional [] 2022-01-12 15:35:27 2011-03-23 10:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "university of southampton", "alternativeName": "", "country": "gb", "url": "https://www.southampton.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ryk1543", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.restore.ac.uk/modoai yes 1516 +2031 {"name": "ucla - biblioteca de administraci\u00f3n y contadur\u00eda", "language": "en"} [] http://bibadm.ucla.edu.ve/ institutional [] 2022-01-12 15:35:26 2011-01-18 11:11:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad centroccidental lisandro alvarado", "alternativeName": "", "country": "ve", "url": "http://www.ucla.edu.ve/", "identifier": [{"identifier": "https://ror.org/03qgg3111", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibadm.ucla.edu.ve/cgi-win/be_oai.exe yes 0 21075 +2110 {"name": "helmholtz-zentrum hereon publication database", "language": "en"} [] https://www.hereon.de/central_units/library/publications/pdb/index.php.de institutional [] 2022-01-12 15:35:27 2011-03-23 10:10:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "helmholtz-zentrum hereon", "alternativeName": "", "country": "de", "url": "https://www.hereon.de", "identifier": [{"identifier": "https://ror.org/03qjp1d79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://poldi.imperia.hereon.de/api/export/v1/oai?verb=identify yes 0 21837 +2073 {"name": "figshare", "language": "en"} [] https://figshare.com aggregating [] 2022-01-12 15:35:26 2011-03-02 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets", "other_special_item_types"] [{"name": "figshare llp", "alternativeName": "", "country": "gb", "url": "https://figshare.com", "identifier": [{"identifier": "https://ror.org/041mxqs23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://help.figshare.com/article/data-access-policy", "type": "data"}, {"policy_url": "https://help.figshare.com/article/preservation-and-continuity-of-access-policy", "type": "preservation"}] {"name": "", "version": ""} https://api.figshare.com/v2/oai yes 5000 +2121 {"name": "archivo digital para la docencia y la investigacion", "language": "en"} [{"acronym": "addi"}] https://addi.ehu.es/ institutional [] 2022-01-12 15:35:27 2011-04-07 14:14:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad del pa\u00eds vasco (euskal herriko unibertsitatea / university of the basque country)", "alternativeName": "", "country": "es", "url": "http://www.ehu.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://addi.ehu.es/oai/request yes 10987 +2069 {"name": "iit roorkee repository", "language": "en"} [{"acronym": "bhagirathi"}] http://bhagirathi.iitr.ac.in/dspace/ institutional [] 2022-01-12 15:35:26 2011-02-17 13:13:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "indian institute of technlogy roorkee, india", "alternativeName": "", "country": "in", "url": "http://www.iitr.ac.in/", "identifier": [{"identifier": "https://ror.org/00582g326", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1102 +2027 {"name": "electronic archive of kharkov national university of radioelectronics", "language": "en"} [{"acronym": "elar"}] http://openarchive.nure.ua/ institutional [] 2022-01-12 15:35:25 2011-01-11 14:14:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "kharkov national university of radioelectronics", "alternativeName": "", "country": "ua", "url": "http://nure.ua/en/", "identifier": [{"identifier": "https://ror.org/01ctj1b90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6379 +2049 {"name": "bogor agricultural university repository", "language": "en"} [{"acronym": "ipb repository"}] http://repository.ipb.ac.id/ institutional [] 2022-01-12 15:35:26 2011-02-08 10:10:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bogor agricultural university", "alternativeName": "", "country": "id", "url": "http://www.ipb.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ipb.ac.id/oai/request yes 79708 +2086 {"name": "tokyo metropolitan university institutional repository (\u9996\u90fd\u5927\u5b66\u6771\u4eac\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea)", "language": "en"} [{"acronym": "miyako-dori"}] http://www.repository.lib.tmu.ac.jp/ institutional [] 2022-01-12 15:35:26 2011-03-09 09:09:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "tokyo metropolitan university (\u9996\u90fd\u5927\u5b66\u6771\u4eac)", "alternativeName": "", "country": "jp", "url": "http://www.tmu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repository.lib.tmu.ac.jp/dspace-oai/request yes 0 4638 +2124 {"name": "reposit\u00f3rio institucional da ufms", "language": "pt"} [{"acronym": "ri-ufms"}] https://repositorio.ufms.br institutional [] 2022-01-12 15:35:27 2011-04-07 15:15:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidade federal de mato grosso do sul", "alternativeName": "", "country": "br", "url": "https://www.ufms.br", "identifier": [{"identifier": "https://ror.org/0366d2847", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufms.br/oai yes 3086 +2123 {"name": "reposit\u00f3rio institucional da universidade federal do par\u00e1", "language": "en"} [{"acronym": "riufpa"}] http://www.repositorio.ufpa.br/jspui/ institutional [] 2022-01-12 15:35:27 2011-04-07 15:15:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universidade federal do par\u00e1", "alternativeName": "", "country": "br", "url": "http://www.portal.ufpa.br/", "identifier": [{"identifier": "https://ror.org/03q9sr818", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.ufpa.br:8080/oai/request yes 138 10281 +2112 {"name": "reposit\u00f3rio institucional da universidade tecnol\u00f3gica federal do paran\u00e1", "language": "en"} [{"acronym": "riut"}] http://repositorio.utfpr.edu.br/jspui/ institutional [] 2022-01-12 15:35:27 2011-03-23 10:10:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidade tecnol\u00f3gica federal do paran\u00e1", "alternativeName": "", "country": "br", "url": "http://www.utfpr.edu.br/", "identifier": [{"identifier": "https://ror.org/002v2kq79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3114 +2079 {"name": "repositori dobjectes digitals per a lensenyament la recerca i la cultura", "language": "en"} [{"acronym": "roderic"}] http://roderic.uv.es/ institutional [] 2022-01-12 15:35:26 2011-03-02 10:10:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "universitat de valencia", "alternativeName": "", "country": "es", "url": "http://www.uv.es/", "identifier": [{"identifier": "https://ror.org/043nxc105", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://roderic.uv.es/oai/request yes 45441 +2026 {"name": "tunghai university repository", "language": "en"} [{"acronym": "thur"}] http://thuir.thu.edu.tw/ institutional [] 2022-01-12 15:35:25 2011-01-07 14:14:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tunghai university (\u6771\u6d77\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.thu.edu.tw/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://thuir.thu.edu.tw/ir-oai/request yes 0 25815 +2119 {"name": "rep\u00f3sitorio institucional da universidade federal do maranh\u00e3o", "language": "es"} [{"acronym": "ufma"}] http://www.repositorio.ufma.br:8080/jspui/ institutional [] 2022-01-12 15:35:27 2011-04-06 16:16:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad federal do maranh\u00e3o", "alternativeName": "", "country": "br", "url": "http://www.ufma.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.ufma.br:8080/oai/request yes 378 +2046 {"name": "electronic archive donetsk national technical university", "language": "en"} [{"acronym": "edonntur"}] http://ea.donntu.edu.ua:8080/ institutional [] 2022-01-12 15:35:26 2011-01-26 10:10:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "donetsk national technical university", "alternativeName": "", "country": "ua", "url": "http://donntu.edu.ua/", "identifier": [{"identifier": "https://ror.org/00whe2089", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ea.donntu.edu.ua:8080/oai/request yes 26163 +2107 {"name": "electronic ukrainian academy of banking of the national bank of ukraine institutional repository", "language": "en"} [{"acronym": "euabir"}, {"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0457 \u0430\u043a\u0430\u0434\u0435\u043c\u0456\u0457 \u0431\u0430\u043d\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0457 \u0441\u043f\u0440\u0430\u0432\u0438 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c", "language": "uk"}] http://dspace.uabs.edu.ua/jspui/ institutional [] 2022-01-12 15:35:27 2011-03-23 09:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ukrainian academy of banking of the national bank of ukraine", "alternativeName": "", "country": "ua", "url": "http://www.uabs.edu.ua/", "identifier": [{"identifier": "https://ror.org/00tfv9y59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12828 +2108 {"name": "reposit\u00f3rio institucional da universidade federal do espirito santo", "language": "en"} [{"acronym": "riufes"}] http://repositorio.ufes.br/ institutional [] 2022-01-12 15:35:27 2011-03-23 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidade federal do esp\u00edrito santo", "alternativeName": "ufes", "country": "br", "url": "http://www.ufes.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ufes.br/oai/request yes 7026 10320 +2070 {"name": "isfol oa", "language": "en"} [] http://isfoloa.isfol.it/ institutional [] 2022-01-12 15:35:26 2011-02-17 14:14:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "institute for the development of vocational training for workers", "alternativeName": "isfol", "country": "it", "url": "http://www.isfol.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://isfoloa.isfol.it/oai/request yes 1572 +2117 {"name": "reposit\u00f3rio digital da universidade municipal de s\u00e3o caetano do sul", "language": "en"} [] http://repositorio.uscs.edu.br/ institutional [] 2022-01-12 15:35:27 2011-04-06 15:15:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade municipal de s\u00e3o caetano do sul", "alternativeName": "", "country": "br", "url": "http://www.uscs.edu.br/", "identifier": [{"identifier": "https://ror.org/00gby0d64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 958 +2115 {"name": "reposit\u00f3rio institucional da universidade federal de santa catarina", "language": "en"} [] https://repositorio.ufsc.br institutional [] 2022-01-12 15:35:27 2011-04-06 15:15:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidade federal de santa catarina", "alternativeName": "ufsc", "country": "br", "url": "http://www.ufsc.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 106637 +2118 {"name": "reposit\u00f3rio uepg", "language": "en"} [] http://ri.uepg.br:8080/riuepg institutional [] 2022-01-12 15:35:27 2011-04-06 15:15:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade estadual de ponta grossa", "alternativeName": "uepg", "country": "br", "url": "http://www.uepg.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ri.uepg.br:8080/oai/request yes 0 595 +2041 {"name": "vidya prasarak mandal - thane", "language": "en"} [] http://dspace.vpmthane.org:8080/jspui/index.jsp institutional [] 2022-01-12 15:35:26 2011-01-19 10:10:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "vidya prasarak mandal", "alternativeName": "", "country": "in", "url": "http://www.vpmthane.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3144 +2089 {"name": "repositorio acad\u00e9mico usmp", "language": "es"} [] http://repositorio.usmp.edu.pe institutional [] 2022-01-12 15:35:27 2011-03-09 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de san martin de porres", "alternativeName": "", "country": "pe", "url": "http://www.usmp.edu.pe/", "identifier": [{"identifier": "https://ror.org/03deqdj72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usmp.edu.pe/oai/request yes 2931 5167 +2042 {"name": "repositorio digital espe", "language": "en"} [] http://repositorio.espe.edu.ec/ institutional [] 2022-01-12 15:35:26 2011-01-19 10:10:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de las fuerzas armadas escuela polit\u00e9cnica del ejercito", "alternativeName": "", "country": "ec", "url": "http://www.espe.edu.ec/portal/portal/main.do;jsessionid=608ea6d82d5be1bd4d5901e862ce0c52?sectioncode=118", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.espe.edu.ec/oai/request yes 12809 +2111 {"name": "reposit\u00f3rio institucional da universidade federal do rio grande do norte", "language": "pt"} [] https://repositorio.ufrn.br institutional [] 2022-01-12 15:35:27 2011-03-23 10:10:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidade federal do rio grande do norte", "alternativeName": "ufrn", "country": "br", "url": "https://sistemas.ufrn.br", "identifier": [{"identifier": "https://ror.org/04wn09761", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufrn.br/oai/request yes 1139 8110 +2034 {"name": "scholars keep", "language": "en"} [] http://dspace-sub.anu.edu.au:8080/jspui/ institutional [] 2022-01-12 15:35:26 2011-01-18 13:13:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "australian national university", "alternativeName": "", "country": "au", "url": "http://anu.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace-sub.anu.edu.au:8080/oai/request yes 886 +2102 {"name": "udospace", "language": "en"} [] http://ri.biblioteca.udo.edu.ve/ institutional [] 2022-01-12 15:35:27 2011-03-16 10:10:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de oriente", "alternativeName": "", "country": "ve", "url": "http://www.udo.edu.ve/", "identifier": [{"identifier": "https://ror.org/03xygw105", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4389 +2125 {"name": "usfsp digital archive", "language": "en"} [] https://digital.usfsp.edu/ institutional [] 2022-01-12 15:35:27 2011-04-13 09:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of south florida st. petersburg", "alternativeName": "", "country": "us", "url": "http://www.usfsp.edu/home/", "identifier": [{"identifier": "https://ror.org/016gp6x28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digital.usfsp.edu/do/oai yes 16672 +2075 {"name": "repositorio cesa", "language": "en"} [] http://repository.cesa.edu.co/ institutional [] 2022-01-12 15:35:26 2011-03-02 10:10:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "colegio de estudios superiores de administraci\u00f3n", "alternativeName": "cesa", "country": "co", "url": "http://www.cesa.edu.co/", "identifier": [{"identifier": "https://ror.org/00gm52g34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.cesa.edu.co/oai/request yes 0 2229 +2036 {"name": "reposit\u00f3rio institucional rede cedes", "language": "en"} [] http://www.cedes.ufsc.br:8080/xmlui institutional [] 2022-01-12 15:35:26 2011-01-18 13:13:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universidade federal de santa catarina", "alternativeName": "ufsc", "country": "br", "url": "http://www.ufsc.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.cedes.ufsc.br:8080/oai/request yes 0 196 +2116 {"name": "reposit\u00f3rio de divulga\u00e7\u00e3o das produ\u00e7\u00f5es cient\u00edficas e t\u00e9cnicas da ufgd", "language": "en"} [] http://www.ufgd.edu.br:8080/jspui/ institutional [] 2022-01-12 15:35:27 2011-04-06 15:15:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade federal da grande dourados", "alternativeName": "ufgd", "country": "br", "url": "http://www.ufgd.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ufgd.edu.br:8080/oai/request yes 0 110 +2113 {"name": "snhu academic archive", "language": "en"} [] http://academicarchive.snhu.edu/ institutional [] 2022-01-12 15:35:27 2011-03-23 11:11:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "southern new hampshire university", "alternativeName": "", "country": "us", "url": "http://www.snhu.edu/", "identifier": [{"identifier": "https://ror.org/04t718460", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://academicarchive.snhu.edu/oai/request yes 2482 +2025 {"name": "yu da university institutional repository", "language": "en"} [] http://ir.ydu.edu.tw/ institutional [] 2022-01-12 15:35:25 2011-01-07 14:14:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "yu da university", "alternativeName": "", "country": "tw", "url": "http://www.ydu.edu.tw/", "identifier": [{"identifier": "https://ror.org/03bej0y93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ydu.edu.tw/ir-oai/request yes 0 10812 +2130 {"name": "constellation", "language": "en"} [] http://constellation.uqac.ca/ institutional [] 2022-01-12 15:35:27 2011-04-13 10:10:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e9 du qu\u00e9bec \u00e0 chicoutimi", "alternativeName": "", "country": "ca", "url": "http://www.uqac.ca/", "identifier": [{"identifier": "https://ror.org/00y3hzd62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://constellation.uqac.ca/cgi/oai2 yes 4069 +2077 {"name": "corvinus research archive", "language": "en"} [] http://unipub.lib.uni-corvinus.hu/ institutional [] 2022-01-12 15:35:26 2011-03-02 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "corvinus university of budapest", "alternativeName": "", "country": "hu", "url": "http://www.uni-corvinus.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://unipub.lib.uni-corvinus.hu/cgi/oai2 yes 3190 +2105 {"name": "repositorio de trabajos finales del taller de dise\u00f1o industrial (c\u00e1tedra g\u00e1lan) de la carrera de dise\u00f1o industrial", "language": "en"} [] http://diana.fadu.uba.ar/ institutional [] 2022-01-12 15:35:27 2011-03-16 11:11:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad de buenos aires", "alternativeName": "uba", "country": "ar", "url": "http://www.uba.ar/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://diana.fadu.uba.ar/cgi/oai2 yes 74 87 +2064 {"name": "universitas sebelas maret institutional repository", "language": "en"} [] http://eprints.uns.ac.id/ institutional [] 2022-01-12 15:35:26 2011-02-16 10:10:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas sebelas maret", "alternativeName": "", "country": "id", "url": "http://www.uns.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uns.ac.id/cgi/oai2 yes 38361 +2099 {"name": "eepis repository", "language": "en"} [] http://repo.pens.ac.id/ institutional [] 2022-01-12 15:35:27 2011-03-16 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "politeknik elektronika negeri surabaya", "alternativeName": "politeknik elektronika negeri surabaya", "country": "id", "url": "http://www.pens.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.eepis-its.edu/cgi/oai2 yes 1078 1438 +2122 {"name": "ukm journal article repository", "language": "en"} [] http://journalarticle.ukm.my/ institutional [] 2022-01-12 15:35:27 2011-04-07 14:14:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universiti kebangsaan malaysia", "alternativeName": "ukm", "country": "my", "url": "http://www.ukm.my/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://journalarticle.ukm.my/cgi/oai2 yes 10958 +2040 {"name": "umm institutional repository", "language": "en"} [] http://eprints.umm.ac.id/ institutional [] 2022-01-12 15:35:26 2011-01-19 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "university of muhammadiyah malang", "alternativeName": "", "country": "id", "url": "http://www.umm.ac.id/", "identifier": [{"identifier": "https://ror.org/01j1wt659", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.umm.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.umm.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.umm.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.umm.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.umm.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.umm.ac.id/cgi/oai2 yes 31812 +2127 {"name": "pergamos", "language": "en"} [{"name": "\u03c0\u03ad\u03c1\u03b3\u03b1\u03bc\u03bf\u03c2", "language": "el"}] https://pergamos.lib.uoa.gr institutional [] 2022-01-12 15:35:27 2011-04-13 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national and kapodistrian university of athens", "alternativeName": "", "country": "gr", "url": "https://www.uoa.gr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://pergamos.lib.uoa.gr/uoa/dl/frontend/oaipmh yes 0 200 +2082 {"name": "digital unc", "language": "en"} [] http://digitalunc.coalliance.org/ institutional [] 2022-01-12 15:35:26 2011-03-02 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of northern colorado", "alternativeName": "", "country": "us", "url": "http://www.unco.edu/", "identifier": [{"identifier": "https://ror.org/016bysn57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} https://digitalunc.coalliance.org/oai2 yes 0 2126 +2083 {"name": "peak digital", "language": "en"} [] http://adr.coalliance.org/codu/fez/ institutional [] 2022-01-12 15:35:26 2011-03-02 11:11:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of denver", "alternativeName": "", "country": "us", "url": "http://www.du.edu/", "identifier": [{"identifier": "https://ror.org/04w7skc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://adr.coalliance.org/codu/fez/oai.php yes 0 30443 +2097 {"name": "institutional repository universiteit antwerpen", "language": "en"} [{"acronym": "irua"}] https://repository.uantwerpen.be/ institutional [] 2022-01-12 15:35:27 2011-03-16 09:09:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "universiteit antwerpen", "alternativeName": "university of antwerp", "country": "be", "url": "http://www.uantwerpen.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://anet.be/oai/abua/server.phtml yes 0 130786 +2072 {"name": "scholarship@claremont", "language": "en"} [] http://scholarship.claremont.edu/ aggregating [] 2022-01-12 15:35:26 2011-03-02 09:09:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "claremont university consortium", "alternativeName": "", "country": "us", "url": "http://www.cuc.claremont.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarship.claremont.edu/do/oai/ yes 7234 14137 +2126 {"name": "sophia", "language": "en"} [] http://sophia.stkate.edu/ institutional [] 2022-01-12 15:35:27 2011-04-13 09:09:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "st. catherine university", "alternativeName": "", "country": "us", "url": "http://www.stkate.edu/", "identifier": [{"identifier": "https://ror.org/03x1f1d90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1126 +2131 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es da universidade federal do maranh\u00e3o", "language": "en"} [] http://www.tedebc.ufma.br/ institutional [] 2022-01-12 15:35:27 2011-04-13 11:11:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad federal do maranh\u00e3o", "alternativeName": "", "country": "br", "url": "http://www.ufma.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 17 +2104 {"name": "issuelab", "language": "en"} [] http://www.issuelab.org/ disciplinary [] 2022-01-12 15:35:27 2011-03-16 10:10:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "issuelab", "alternativeName": "", "country": "us", "url": "http://www.issuelab.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://harvest.issuelab.org/provider/oai yes 24870 +2047 {"name": "academic digital library (akademickiej bibliotece cyfrowej)", "language": "en"} [{"acronym": "abc - krak\u00f3w"}] http://vtls.cyf-kr.edu.pl/cgi-bin/abc-k/chameleon institutional [] 2022-01-12 15:35:26 2011-02-02 11:11:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "agh university of science and technology", "alternativeName": "", "country": "pl", "url": "http://www.agh.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} http://vtls.cyf-kr.edu.pl/cgi-bin/abc-k/oai2/vtls/vortex.pl yes 0 13175 +2096 {"name": "digital library of the karta center foundation", "language": "en"} [] http://www.dlibra.karta.org.pl/dlibra institutional [] 2022-01-12 15:35:27 2011-03-09 11:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "karta center foundation", "alternativeName": "", "country": "pl", "url": "http://www.karta.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.dlibra.karta.org.pl/dlibra/oai-pmh-repository.xml yes 0 498 +2044 {"name": "digital repository polonica", "language": "en"} [] http://www.repcyfr.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-01-26 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "instytut bada\u0144 nad dziedzictwem kulturowym europy", "alternativeName": "", "country": "pl", "url": "http://www.repcyfr.pl/dlibra/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.repcyfr.pl/dlibra/oai-pmh-repository.xml yes 0 1 +2056 {"name": "lublin university of technology digital library", "language": "en"} [] http://bc.pollub.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-09 10:10:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "lublin university of technology (politechnika lubelska)", "alternativeName": "", "country": "pl", "url": "http://www.pollub.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.pollub.pl/dlibra/oai-pmh-repository.xml yes 0 11913 +2062 {"name": "national digital library polona", "language": "en"} [] http://www.polona.pl/ institutional [] 2022-01-12 15:35:26 2011-02-16 10:10:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national library of poland (biblioteka narodowa)", "alternativeName": "", "country": "pl", "url": "http://www.bn.org.pl/", "identifier": [{"identifier": "https://ror.org/05rcjak97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.polona.pl/dlibra/oai-pmh-repository.xml yes 0 95788 +2059 {"name": "regional materials of \u0142\u00f3d\u017a", "language": "en"} [] http://bc.wimbp.lodz.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-16 09:09:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "jozef pilsudski regional and municipal public library", "alternativeName": "", "country": "pl", "url": "http://www.wimbp.lodz.pl/wimbp/index.php/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.wimbp.lodz.pl/dlibra/oai-pmh-repository.xml yes 0 1311 +2068 {"name": "the west pomeranian digital library \u201epomerania\u201d", "language": "en"} [] http://zbc.ksiaznica.szczecin.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-16 11:11:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "central library of the west pomeranian province", "alternativeName": "", "country": "pl", "url": "http://www.szczecin.uw.gov.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://zbc.ksiaznica.szczecin.pl/dlibra/oai-pmh-repository.xml yes 0 3516 +2085 {"name": "wejherowo digital library", "language": "en"} [] http://biblioteka.wejherowo.pl/dlibra/dlibra institutional [] 2022-01-12 15:35:26 2011-03-02 11:11:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "powiatowa i miejska biblioteka publiczna w wejherowie im. aleksandra majkowskiego", "alternativeName": "", "country": "pl", "url": "http://biblioteka.wejherowo.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://biblioteka.wejherowo.pl/dlibra/dlibra/oai-pmh-repository.xml yes 0 13179 +2051 {"name": "armenian foundation digital library", "language": "en"} [] http://bibliotekaormianska.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-08 10:10:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "fundacja ormia\u0144ska kzko", "alternativeName": "", "country": "pl", "url": "http://fundacjaormianska.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bibliotekaormianska.pl/dlibra/oai-pmh-repository.xml yes 0 279 +2058 {"name": "digital library of chelm", "language": "en"} [] http://cyfrowa.chbp.chelm.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-09 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "che\u0142mska biblioteka publiczna im. marii puliny orsetti w che\u0142mie", "alternativeName": "", "country": "pl", "url": "http://www.chbp.chelm.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cyfrowa.chbp.chelm.pl/dlibra/oai-pmh-repository.xml yes 0 1158 +2053 {"name": "digital repository of scientific institutes", "language": "en"} [{"name": "repozytorium cyfrowe instytut\u00f3w naukowych", "language": "pl"}, {"acronym": "rcin"}] http://rcin.org.pl/dlibra aggregating [] 2022-01-12 15:35:26 2011-02-08 11:11:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "consortium of scientific libraries in warsaw", "alternativeName": "", "country": "pl", "url": "http://rcin.org.pl/dlibra", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://rcin.org.pl/dlibra/oai-pmh-repository.xml yes 0 169 +2061 {"name": "sandomierz diocese digital library", "language": "en"} [] http://bc.bdsandomierz.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-16 09:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "sandomierz diocese library", "alternativeName": "", "country": "pl", "url": "http://www.sandomierz.opoka.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.bdsandomierz.pl/dlibra/oai-pmh-repository.xml yes 0 144 +2050 {"name": "bia\u0142a podlaska digital library", "language": "en"} [] http://bbc.mbp.org.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-08 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "miejska biblioteka publiczna bia\u0142a podlaska", "alternativeName": "", "country": "pl", "url": "http://mbp.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bbc.mbp.org.pl/oai-pmh-repository.xml yes 0 588 +2054 {"name": "ore digital library", "language": "en"} [] http://www.bc.ore.edu.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-08 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "centre for education development (o\u015brodek rozwoju edukacji)", "alternativeName": "ced", "country": "pl", "url": "http://www.ore.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.bc.ore.edu.pl/dlibra/oai-pmh-repository.xml yes 882 1065 +2022 {"name": "covenant university repository", "language": "en"} [] http://eprints.covenantuniversity.edu.ng/ institutional [] 2022-01-12 15:35:25 2011-01-06 16:16:47 ["science", "technology", "social sciences"] ["journal_articles"] [{"name": "covenant university", "alternativeName": "", "country": "ng", "url": "http://www.covenantuniversity.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.covenantuniversity.edu.ng/cgi/oai2 yes 8779 +2129 {"name": "digital online repository and information system", "language": "en"} [{"acronym": "doris"}] http://doris.bfs.de/ institutional [] 2022-01-12 15:35:27 2011-04-13 10:10:16 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "bundesamt f\u00fcr strahlenschutz (federal office for radiation protection)", "alternativeName": "bfs", "country": "de", "url": "http://www.bfs.de/bfs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 364 +2114 {"name": "reposit\u00f3rio institucional - instituto nacional de tecnologia", "language": "en"} [{"acronym": "ri - int"}] http://repositorio.int.gov.br:8080/repositorio institutional [] 2022-01-12 15:35:27 2011-03-23 11:11:22 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto nacional de technologia", "alternativeName": "int", "country": "br", "url": "http://www.int.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 468 +2035 {"name": "thai agricultural research repository (\u0e40\u0e04\u0e23\u0e37\u0e2d\u0e02\u0e48\u0e32\u0e22\u0e2a\u0e32\u0e23\u0e2a\u0e19\u0e40\u0e17\u0e28\u0e07\u0e32\u0e19\u0e27\u0e34\u0e08\u0e31\u0e22\u0e40\u0e01\u0e29\u0e15\u0e23\u0e44\u0e17\u0e22)", "language": "en"} [] http://anchan.lib.ku.ac.th/agnet/ governmental [] 2022-01-12 15:35:26 2011-01-18 13:13:49 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "thai national agris centre", "alternativeName": "", "country": "th", "url": "http://thaiagris.lib.ku.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://anchan.lib.ku.ac.th/agnet-oai/request yes 3751 +2043 {"name": "infoteca-e", "language": "en"} [] http://www.infoteca.cnptia.embrapa.br/ institutional [] 2022-01-12 15:35:26 2011-01-19 11:11:17 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "empresa brasileira de pesquisa agropecu\u00e1ria (brazilian agricultural research corporation)", "alternativeName": "embrapa", "country": "br", "url": "http://www.embrapa.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.infoteca.cnptia.embrapa.br/oai/request yes 39423 +2066 {"name": "reposit\u00f3rio institucional da universidade federal de goi\u00e1s", "language": "en"} [] http://repositorio.bc.ufg.br/ institutional [] 2022-01-12 15:35:26 2011-02-16 10:10:53 ["science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade federal de goi\u00e1s", "alternativeName": "", "country": "br", "url": "http://www.ufg.br/", "identifier": [{"identifier": "https://ror.org/0039d5757", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9318 +2071 {"name": "serveur des th\u00e8ses en ligne de linsa de toulouse", "language": "en"} [] http://eprint.insa-toulouse.fr/ institutional [] 2022-01-12 15:35:26 2011-02-17 14:14:10 ["science"] ["theses_and_dissertations"] [{"name": "institut national des sciences appliqu\u00e9es de toulouse", "alternativeName": "insa", "country": "fr", "url": "http://www.insa-toulouse.fr/fr/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprint.insa-toulouse.fr/perl/oai2 yes 232 334 +2100 {"name": "hal-pasteur", "language": "en"} [] http://hal-pasteur.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:27 2011-03-16 10:10:16 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "institut pasteur", "alternativeName": "", "country": "fr", "url": "http://www.pasteur.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} http://api.archives-ouvertes.fr/oai/pasteur yes 0 10763 +2103 {"name": "niigata college of nursing repository", "language": "en"} [{"acronym": "niconurs (\u306b\u3053\u30ca\u30fc\u30b9"}] http://repository.niigata-cn.ac.jp/dspace/ institutional [] 2022-01-12 15:35:27 2011-03-16 10:10:35 ["social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "niigata college of nursing (\u65b0\u6f5f\u770c\u7acb\u770b\u8b77\u5927\u5b66)", "alternativeName": "", "country": "jp", "url": "http://www.niigata-cn.ac.jp/index2.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.niigata-cn.ac.jp/dspace-oai/request yes 0 992 +2134 {"name": "lse theses online", "language": "en"} [] http://etheses.lse.ac.uk/ institutional [] 2022-01-12 15:35:27 2011-04-20 09:09:39 ["social sciences", "mathematics"] ["theses_and_dissertations"] [{"name": "london school of economics & political science", "alternativeName": "", "country": "gb", "url": "http://www2.lse.ac.uk/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etheses.lse.ac.uk/cgi/oai2 yes 3619 +2032 {"name": "wireless u", "language": "en"} [] http://wirelessu.org/ disciplinary [] 2022-01-12 15:35:26 2011-01-18 11:11:47 ["social sciences", "technology"] ["learning_objects"] [{"name": "wireless u", "alternativeName": "", "country": "us", "url": "http://wirelessu.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2090 {"name": "desarrolla, aprende y reutiliz", "language": "en"} [{"acronym": "dar"}] http://catedra.ruv.itesm.mx/ institutional [] 2022-01-12 15:35:27 2011-03-09 10:10:16 ["social sciences", "technology"] ["learning_objects", "other_special_item_types"] [{"name": "tecnol\u00f3gico de monterrey", "alternativeName": "", "country": "mx", "url": "http://www.itesm.edu/wps/portal", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://catedra.ruv.itesm.mx/oai/request yes 830 +2087 {"name": "repositorio digital eoi", "language": "en"} [{"acronym": "savia"}] http://www.eoi.es/savia/ institutional [] 2022-01-12 15:35:26 2011-03-09 09:09:51 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "escuela de organizaci\u00f3n industrial", "alternativeName": "eoi", "country": "es", "url": "http://www.eoi.es/portal/guest/inicio", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 5368 +2074 {"name": "espace \u00e9ts", "language": "en"} [] http://espace.etsmtl.ca/ institutional [] 2022-01-12 15:35:26 2011-03-02 10:10:16 ["technology"] ["theses_and_dissertations"] [{"name": "\u00e9cole de technologie sup\u00e9rieure", "alternativeName": "", "country": "ca", "url": "http://www.etsmtl.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://espace.etsmtl.ca/cgi/oai2-etdms yes 1716 +2048 {"name": "ba\u0142tycka biblioteka cyfrowa", "language": "en"} [] http://bibliotekacyfrowa.eu/dlibra institutional [] 2022-01-12 15:35:26 2011-02-02 11:11:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "miejska biblioteka publiczna w s\u0142upsku", "alternativeName": "", "country": "pl", "url": "http://mbp.slupsk.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bibliotekacyfrowa.eu/dlibra/oai-pmh-repository.xml yes 0 1581 +2060 {"name": "digital library university of lodz", "language": "en"} [] http://bcul.lib.uni.lodz.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-16 09:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "uniwersytet \u0142\u00f3dzki (university of lodz)", "alternativeName": "", "country": "pl", "url": "http://www.uni.lodz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bcul.lib.uni.lodz.pl/dlibra/oai-pmh-repository.xml yes 0 28906 +2088 {"name": "sapporo medical university information and knowledge repository", "language": "en"} [{"acronym": "ikor"}, {"name": "\u672d\u5e4c\u533b\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sapmed.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:26 2011-03-09 09:09:58 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "sapporo medical university", "alternativeName": "", "country": "jp", "url": "http://web.sapmed.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sapmed.repo.nii.ac.jp/oai yes 0 6460 +2081 {"name": "digital archives of colorado college", "language": "en"} [] http://adr.coalliance.org/coccc/fez/ institutional [] 2022-01-12 15:35:26 2011-03-02 11:11:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "colorado college", "alternativeName": "", "country": "us", "url": "http://www.coloradocollege.edu/", "identifier": [{"identifier": "https://ror.org/03tg3h819", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://adr.coalliance.org/coccc/fez/oai.php yes 0 2219 +2057 {"name": "silesian university of technology digital library", "language": "en"} [] http://delibra.bg.polsl.pl/dlibra institutional [] 2022-01-12 15:35:26 2011-02-09 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "silesian university of technology", "alternativeName": "", "country": "pl", "url": "http://www.polsl.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://delibra.bg.polsl.pl/dlibra/text?id=right-ps", "type": "metadata"}, {"policy_url": "http://delibra.bg.polsl.pl/dlibra/text?id=right-ps", "type": "data"}] {"name": "dlibra", "version": ""} http://delibra.bg.polsl.pl/dlibra/oai-pmh-repository.xml yes 0 594 +2045 {"name": "research online @ ecu", "language": "en"} [] http://ro.ecu.edu.au/ institutional [] 2022-01-12 15:35:26 2011-01-26 09:09:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "edith cowan university", "alternativeName": "", "country": "au", "url": "http://www.ecu.edu.au/", "identifier": [{"identifier": "https://ror.org/05jhnwe22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ecu.edu.au/gpps/policies_db/tmp/ac081.pdf", "type": "metadata"}, {"policy_url": "http://www.ecu.edu.au/gpps/policies_db/tmp/ac081.pdf", "type": "data"}, {"policy_url": "http://www.ecu.edu.au/gpps/policies_db/tmp/ac081.pdf", "type": "content"}, {"policy_url": "http://www.ecu.edu.au/gpps/policies_db/tmp/ac081.pdf", "type": "submission"}, {"policy_url": "http://www.ecu.edu.au/gpps/policies_db/tmp/ac081.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://ro.ecu.edu.au/do/oai/ yes 9834 26054 +2101 {"name": "di-fusion", "language": "en"} [] http://difusion.ulb.ac.be/ institutional [] 2022-01-12 15:35:27 2011-03-16 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universit\u00e9 libre de bruxelles", "alternativeName": "", "country": "be", "url": "http://www.ulb.ac.be/", "identifier": [{"identifier": "https://ror.org/01r9htc13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://bib.ulb.be/version-francaise/navigation/trouver-des-documents/di-fusion-depot-institutionnel/conditions-d-utilisation", "type": "metadata"}, {"policy_url": "https://bib.ulb.be/version-francaise/navigation/trouver-des-documents/di-fusion-depot-institutionnel/conditions-d-utilisation", "type": "data"}] {"name": "other", "version": ""} http://difusion-oai.ulb.ac.be/oai/request yes 0 242726 +2095 {"name": "researchonline at glasgow caledonian university", "language": "en"} [{"acronym": "researchonline"}] https://researchonline.gcu.ac.uk institutional [] 2022-01-12 15:35:27 2011-03-09 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "glasgow caledonian university", "alternativeName": "", "country": "gb", "url": "https://www.gcu.ac.uk", "identifier": [{"identifier": "https://ror.org/03dvm1235", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://edshare.gcu.ac.uk/5551/2/opendoar%20policy%20tool_v1.1.pdf", "type": "metadata"}, {"policy_url": "https://edshare.gcu.ac.uk/5551/2/opendoar%20policy%20tool_v1.1.pdf", "type": "data"}, {"policy_url": "https://edshare.gcu.ac.uk/5551/2/opendoar%20policy%20tool_v1.1.pdf", "type": "content"}, {"policy_url": "https://edshare.gcu.ac.uk/5551/2/opendoar%20policy%20tool_v1.1.pdf", "type": "submission"}, {"policy_url": "https://edshare.gcu.ac.uk/5551/2/opendoar%20policy%20tool_v1.1.pdf", "type": "preservation"}] {"name": "pure", "version": ""} https://researchonline.gcu.ac.uk/ws/oai yes 3542 21080 +2029 {"name": "otago university research archive", "language": "en"} [{"acronym": "our archive"}] http://otago.ourarchive.ac.nz/ institutional [] 2022-01-12 15:35:26 2011-01-18 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of otago", "alternativeName": "", "country": "nz", "url": "http://www.otago.ac.nz/", "identifier": [{"identifier": "https://ror.org/01jmxt844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.otago.ac.nz/administration/policies/otago014455.html", "type": "metadata"}, {"policy_url": "http://www.otago.ac.nz/administration/policies/otago014455.html", "type": "data"}, {"policy_url": "http://www.otago.ac.nz/administration/policies/otago014455.html", "type": "content"}, {"policy_url": "http://www.otago.ac.nz/administration/policies/otago014455.html", "type": "submission"}, {"policy_url": "http://www.otago.ac.nz/administration/policies/otago014455.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://otago.ourarchive.ac.nz/oai/request yes 0 9234 +2023 {"name": "iain sunan ampel repository", "language": "en"} [] http://eprints.sunan-ampel.ac.id/ institutional [] 2022-01-12 15:35:25 2011-01-06 16:16:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "iain sunan ampel", "alternativeName": "", "country": "id", "url": "http://www.sunan-ampel.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.sunan-ampel.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.sunan-ampel.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.sunan-ampel.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.sunan-ampel.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.sunan-ampel.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.uinsby.ac.id/cgi/oai2 yes 334 408 +2039 {"name": "tavistock and portman staff publications online", "language": "en"} [] http://repository.tavistockandportman.ac.uk/ institutional [] 2022-01-12 15:35:26 2011-01-19 10:10:22 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "tavistock and portman nhs foundation trust", "alternativeName": "", "country": "gb", "url": "http://www.tavistockandportman.nhs.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.tavistockandportman.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://repository.tavistockandportman.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://repository.tavistockandportman.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://repository.tavistockandportman.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://repository.tavistockandportman.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.tavistockandportman.ac.uk/cgi/oai2 yes 481 2209 +2063 {"name": "andalas university repository", "language": "en"} [] http://repository.unand.ac.id/ institutional [] 2022-01-12 15:35:26 2011-02-16 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universitas andalas", "alternativeName": "andalas university", "country": "id", "url": "http://www.unand.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.unand.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.unand.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.unand.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.unand.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.unand.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.unand.ac.id/cgi/oai2 yes 312 410 +2192 {"name": "m\u00e9dihal", "language": "en"} [] http://medihal.archives-ouvertes.fr/ aggregating [] 2022-01-12 15:35:28 2011-07-06 10:10:58 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine", "engineering", "technology"] ["other_special_item_types"] [{"name": "centre national de la recherche scientifique", "alternativeName": "cnrs", "country": "fr", "url": "http://www.cnrs.fr/index.php/", "identifier": [{"identifier": "https://ror.org/02feahw73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} http://medihal.archives-ouvertes.fr/oai/oai.php yes 0 35892 +2215 {"name": "image & multimedia collections", "language": "en"} [] http://contentdm.unl.edu/ institutional [] 2022-01-12 15:35:28 2011-07-28 14:14:42 ["arts", "humanities", "science", "technology"] ["learning_objects", "other_special_item_types"] [{"name": "university of nebraska - lincoln", "alternativeName": "unl", "country": "us", "url": "http://www.unl.edu/", "identifier": [{"identifier": "https://ror.org/043mer456", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://contentdm.unl.edu/cgi-bin/oai.exe yes 0 104650 +2180 {"name": "repositorio digital puce", "language": "en"} [] http://repositorio.puce.edu.ec/ institutional [] 2022-01-12 15:35:28 2011-06-22 09:09:55 ["arts", "humanities", "social sciences", "health and medicine", "technology"] ["theses_and_dissertations"] [{"name": "pontificia universidad cat\u00f3lica del ecuador", "alternativeName": "", "country": "ec", "url": "http://www.puce.edu.ec/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.puce.edu.ec/oai/request yes 7277 11996 +2170 {"name": "york digital library", "language": "en"} [] http://dlib.york.ac.uk/yodl/app/home/index institutional [] 2022-01-12 15:35:28 2011-06-01 10:10:32 ["arts", "humanities", "technology"] ["datasets", "other_special_item_types"] [{"name": "university of york", "alternativeName": "", "country": "gb", "url": "http://www.york.ac.uk/", "identifier": [{"identifier": "https://ror.org/04m01e293", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.york.ac.uk/library/electroniclibrary/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/", "type": "metadata"}, {"policy_url": "http://www.york.ac.uk/library/electroniclibrary/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/", "type": "data"}, {"policy_url": "http://www.york.ac.uk/library/electroniclibrary/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/", "type": "content"}, {"policy_url": "http://www.york.ac.uk/library/electroniclibrary/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/", "type": "submission"}, {"policy_url": "http://www.york.ac.uk/library/electroniclibrary/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/", "type": "preservation"}] {"name": "", "version": ""} yes 4313 +2158 {"name": "jobim", "language": "en"} [] http://portal.jobim.org/ institutional [] 2022-01-12 15:35:28 2011-05-18 11:11:28 ["arts", "humanities"] ["other_special_item_types"] [{"name": "instituto antonio carlos jobim", "alternativeName": "", "country": "br", "url": "http://www.jobim.org/acervo/acervodigital.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9700 +2206 {"name": "publikationer fr\u00e5n konstfack", "language": "en"} [] http://konstfack.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:28 2011-07-27 10:10:34 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "konstfack (university college of arts, crafts and design)", "alternativeName": "", "country": "se", "url": "http://www.konstfack.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://konstfack.diva-portal.org/dice/oai yes 0 1466 +2235 {"name": "d-scholarship@pitt", "language": "en"} [] http://d-scholarship.pitt.edu/ institutional [] 2022-01-12 15:35:29 2011-08-23 11:11:26 ["arts", "science", "humanities", "social sciences", "health and medicine", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of pittsburgh", "alternativeName": "up", "country": "us", "url": "http://www.pitt.edu/", "identifier": [{"identifier": "https://ror.org/01an3r305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://d-scholarship.pitt.edu/policies.html", "type": "metadata"}, {"policy_url": "http://d-scholarship.pitt.edu/policies.html", "type": "data"}, {"policy_url": "http://d-scholarship.pitt.edu/policies.html", "type": "content"}, {"policy_url": "http://d-scholarship.pitt.edu/policies.html", "type": "submission"}, {"policy_url": "http://d-scholarship.pitt.edu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://d-scholarship.pitt.edu/cgi/oai2 yes 20639 +2205 {"name": "publikationer fr\u00e5n kungl. musikh\u00f6gskolan", "language": "en"} [] http://kmh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:28 2011-07-27 10:10:28 ["arts"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "kungl. musikh\u00f6gskolan i stockholm (royal college of music in stockholm)", "alternativeName": "", "country": "se", "url": "http://www.kmh.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kmh.diva-portal.org/dice/oai yes 0 1494 +2189 {"name": "reposit\u00f3rio institucional da universidade federal de uberl\u00e2ndia", "language": "en"} [{"acronym": "ducere"}] http://repositorio.ufu.br/ institutional [] 2022-01-12 15:35:28 2011-07-06 10:10:22 ["engineering"] ["theses_and_dissertations"] [{"name": "universidade federal de uberl\u00e2ndia", "alternativeName": "", "country": "br", "url": "http://www.ufu.br/", "identifier": [{"identifier": "https://ror.org/04x3wvr31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ufu.br/oai/request yes 5084 18891 +2234 {"name": "kihasa open access repository", "language": "en"} [] https://repository.kihasa.re.kr institutional [] 2022-01-12 15:35:29 2011-08-23 10:10:11 ["health and medicine", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "korea institute for health and social affairs", "alternativeName": "kihasa", "country": "kr", "url": "https://www.kihasa.re.kr", "identifier": [{"identifier": "https://ror.org/03737pq38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8893 +2230 {"name": "ajou open repository", "language": "en"} [] http://repository.ajou.ac.kr/ institutional [] 2022-01-12 15:35:29 2011-08-22 11:11:21 ["health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "ajou university", "alternativeName": "", "country": "kr", "url": "http://www.ajou.ac.kr/mains/intro.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ajou.ac.kr/dspace-oai/request yes 0 4823 +2207 {"name": "publikationer fr\u00e5n r\u00f6da korsets h\u00f6gskola", "language": "en"} [] http://rkh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:28 2011-07-27 10:10:42 ["health and medicine"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "r\u00f6da korsets h\u00f6gskola (red cross university college of nursing)", "alternativeName": "", "country": "se", "url": "http://www.rkh.se/", "identifier": [{"identifier": "https://ror.org/01f0prq08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://rkh.diva-portal.org/dice/oai yes 0 662 +2169 {"name": "biblioteka humanistyczna (humanist library)", "language": "en"} [] http://biblioteka.nowahumanistyka.pl/ disciplinary [] 2022-01-12 15:35:28 2011-06-01 10:10:05 ["humanities", "arts"] ["journal_articles"] [{"name": "stowarzyszenie "nowa humanistyka"", "alternativeName": "", "country": "pl", "url": "http://www.nowahumanistyka.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://content.fbc.pionier.net.pl/bnh/oaihandler yes 8 9 +2203 {"name": "publikationer fr\u00e5n ersta sk\u00f6ndal br\u00e4cke h\u00f6gskola", "language": "sv"} [] http://esh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:28 2011-07-26 13:13:59 ["humanities", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "ersta sk\u00f6ndal br\u00e4cke university college", "alternativeName": "", "country": "se", "url": "https://www.esh.se", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://esh.diva-portal.org/dice/oai yes 0 2125 +2157 {"name": "academic repository of yuriy fedkovych chernivtsi national university", "language": "en"} [{"acronym": "archer"}] https://archer.chnu.edu.ua/ institutional [] 2022-01-12 15:35:28 2011-05-18 11:11:22 ["humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "yuriy fedkovych chernivtsi national university", "alternativeName": "\u0447\u0435\u0440\u043d\u0456\u0432\u0435\u0446\u044c\u043a\u0438\u0439 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u044e\u0440\u0456\u044f \u0444\u0435\u0434\u044c\u043a\u043e\u0432\u0438\u0447\u0430", "country": "ua", "url": "http://www.chnu.edu.ua/index.php?page=ua", "identifier": [{"identifier": "https://ror.org/044n25186", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://archer.chnu.edu.ua/oai/request yes 862 +2204 {"name": "publikationer fr\u00e5n handelsh\u00f6gskolan", "language": "en"} [] http://hhs.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:28 2011-07-27 10:10:25 ["humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "handelsh\u00f6gskolan i stockholm (stockholm school of economics)", "alternativeName": "", "country": "se", "url": "http://www.hhs.se/", "identifier": [{"identifier": "https://ror.org/01s5jzh92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://hhs.diva-portal.org/dice/oai yes 0 1547 +2141 {"name": "ir of centre for egyptological studies of russian academy of sciences", "language": "en"} [] http://dawidov.socionet.ru/oai/hmdzwu_1/oai.xml institutional [] 2022-01-12 15:35:27 2011-04-20 10:10:54 ["humanities"] ["journal_articles"] [{"name": "\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043d\u0430\u0443\u043a", "alternativeName": "russian academy of sciences", "country": "ru", "url": "http://www.ras.ru/", "identifier": [{"identifier": "https://ror.org/05qrfxd25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dawidov.socionet.ru/oai/hmdzwu_1/oai.cgi yes 53 +2214 {"name": "icm - dir - zasoby polskie", "language": "en"} [] http://dir.icm.edu.pl/pl/ institutional [] 2022-01-12 15:35:28 2011-07-28 14:14:13 ["mathematics", "technology"] ["books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://dir.icm.edu.pl/dirop/oai/index.cgi yes 0 121 +2194 {"name": "czech digital mathematics library", "language": "en"} [{"acronym": "dml-cz"}] http://dml.cz/ disciplinary [] 2022-01-12 15:35:28 2011-07-06 11:11:17 ["mathematics"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "academy of sciences of the czech republic", "alternativeName": "", "country": "cz", "url": "http://www.cas.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oai.dml.cz/request yes 0 39784 +2209 {"name": "national kaohsiung normal university institutional repository", "language": "en"} [{"acronym": "\u6a5f\u69cb\u5178\u85cf"}] http://ir.lib.nknu.edu.tw/ institutional [] 2022-01-12 15:35:28 2011-07-27 15:15:06 ["science", "arts", "humanities", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "national kaohsiung normal university (\u9ad8\u96c4\u5e2b\u7bc4\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.nknu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.nknu.edu.tw/ir/ yes 0 24034 +2201 {"name": "repositorio institucional arjona y cubas de la real academia de c\u00f3rdoba", "language": "en"} [] http://repositorio.racordoba.es:8080/jspui/ institutional [] 2022-01-12 15:35:28 2011-07-19 15:15:30 ["science", "arts", "humanities"] ["journal_articles"] [{"name": "real academia de ciencias, bellas letras y nobles artes de c\u00f3rdoba", "alternativeName": "", "country": "es", "url": "http://www.racordoba.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 183 +2182 {"name": "indian academy of sciences: publications of fellows", "language": "en"} [] http://repository.ias.ac.in/ institutional [] 2022-01-12 15:35:28 2011-06-28 09:09:58 ["science", "health and medicine", "technology"] ["journal_articles"] [{"name": "indian academy of sciences", "alternativeName": "", "country": "in", "url": "http://www.ias.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.ias.ac.in/policies.html", "type": "metadata"}, {"policy_url": "http://repository.ias.ac.in/policies.html", "type": "data"}, {"policy_url": "http://repository.ias.ac.in/policies.html", "type": "content"}, {"policy_url": "http://repository.ias.ac.in/policies.html", "type": "submission"}, {"policy_url": "http://repository.ias.ac.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes 106351 +2142 {"name": "open repository of keldysh institute of applied mathematics of ras", "language": "en"} [] http://gorbunov.socionet.ru/oai/gquwzn_1/oai.xml institutional [] 2022-01-12 15:35:27 2011-04-20 10:10:57 ["science", "mathematics"] ["journal_articles"] [{"name": "\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043d\u0430\u0443\u043a", "alternativeName": "russian academy of sciences", "country": "ru", "url": "http://www.ras.ru/", "identifier": [{"identifier": "https://ror.org/05qrfxd25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://gorbunov.socionet.ru/oai/gquwzn_1/oai.cgi yes 10583 +2164 {"name": "cross collection discovery", "language": "en"} [{"acronym": "ccd"}] http://discover.odai.yale.edu/ydc/ institutional [] 2022-01-12 15:35:28 2011-05-25 09:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "other_special_item_types"] [{"name": "yale university", "alternativeName": "", "country": "us", "url": "http://www.yale.edu/", "identifier": [{"identifier": "https://ror.org/03v76x132", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2000000 +2187 {"name": "biblioteca virtual unl", "language": "en"} [] http://bibliotecavirtual.unl.edu.ar/ institutional [] 2022-01-12 15:35:28 2011-07-06 09:09:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universidad nacional del litoral", "alternativeName": "unl", "country": "ar", "url": "http://www.unl.edu.ar/", "identifier": [{"identifier": "https://ror.org/00pt8r998", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bibliotecavirtual.unl.edu.ar/policies.html", "type": "metadata"}, {"policy_url": "http://bibliotecavirtual.unl.edu.ar/policies.html", "type": "data"}, {"policy_url": "http://bibliotecavirtual.unl.edu.ar/policies.html", "type": "content"}] {"name": "dspace", "version": ""} yes 3513 +2217 {"name": "uplace", "language": "en"} [] http://www.uplace.org.uk:8080/dspace/ institutional [] 2022-01-12 15:35:28 2011-08-09 10:10:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "plymouth university", "alternativeName": "", "country": "gb", "url": "http://www.plymouth.ac.uk/", "identifier": [{"identifier": "https://ror.org/008n7pv89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.uplace.org.uk/policy_documents/metadata%20policy.pdf", "type": "metadata"}, {"policy_url": "http://www.uplace.org.uk/policy_documents/data%20policy.pdf", "type": "data"}, {"policy_url": "http://www.uplace.org.uk/policy_documents/content%20policy.pdf", "type": "content"}, {"policy_url": "http://www.uplace.org.uk/policy_documents/submission%20policy.pdf", "type": "submission"}, {"policy_url": "http://www.uplace.org.uk/policy_documents/preservation%20policy.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 1960 +2143 {"name": "its digital repository", "language": "en"} [] http://digilib.its.ac.id/ institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "institut teknologi sepuluh nopember", "alternativeName": "", "country": "id", "url": "http://www.its.ac.id/", "identifier": [{"identifier": "https://ror.org/05kbmmt89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 40870 +2162 {"name": "\u0627\u0644\u0645\u062e\u0637\u0648\u0637\u0627\u062a", "language": "ar"} [{"name": "makhtota", "language": "ar"}] http://makhtota.ksu.edu.sa/ institutional [] 2022-01-12 15:35:28 2011-05-25 09:09:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "king saud university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0645\u0644\u0643 \u0633\u0639\u0648\u062f", "country": "sa", "url": "http://ksu.edu.sa/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2808 +2137 {"name": "portal to texas history", "language": "en"} [] http://texashistory.unt.edu/ disciplinary [] 2022-01-12 15:35:27 2011-04-20 09:09:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of north texas", "alternativeName": "unt", "country": "us", "url": "http://www.unt.edu/", "identifier": [{"identifier": "https://ror.org/00v97ad02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://texashistory.unt.edu/oai/ yes 670117 +2161 {"name": "umm al-qura university reference repository", "language": "en"} [] http://eref.uqu.edu.sa/ institutional [] 2022-01-12 15:35:28 2011-05-25 09:09:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "umm al-qura university", "alternativeName": "\u062c\u0627\u0645\u0639\u0629 \u0623\u0645 \u0627\u0644\u0642\u0631\u0649", "country": "sa", "url": "http://www.uqu.edu.sa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2193 {"name": "memoria digital de canarias", "language": "en"} [{"acronym": "mdc"}] http://mdc.ulpgc.es/portal/mdc1/1 disciplinary [] 2022-01-12 15:35:28 2011-07-06 11:11:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de las palmas de gran canaria", "alternativeName": "ulpgc", "country": "es", "url": "http://www.ulpgc.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://bibmdc2.ulpgc.es/cgi-bin/oai.exe yes 57869 +2220 {"name": "agencia nacional de investigaci\u00f3n y desarrollo", "language": "es"} [{"acronym": "anid"}] http://repositorio.conicyt.cl institutional [] 2022-01-12 15:35:28 2011-08-10 11:11:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "agencia nacional de investigaci\u00f3n y desarrollo", "alternativeName": "anid", "country": "cl", "url": "https://www.anid.cl", "identifier": [{"identifier": "https://ror.org/02ap3w078", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.conicyt.cl/oai/request yes 85138 +2135 {"name": "institutional repository of fiocruz", "language": "en"} [{"acronym": "arca"}] http://www.arca.fiocruz.br/ institutional [] 2022-01-12 15:35:27 2011-04-20 09:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o oswaldo cruz", "alternativeName": "fiocruz", "country": "br", "url": "http://portal.fiocruz.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 21139 +2154 {"name": "repository open access to scientific information from embrapa", "language": "en"} [{"acronym": "alice"}] http://www.alice.cnptia.embrapa.br/ governmental [] 2022-01-12 15:35:28 2011-05-18 10:10:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "empresa brasileira de pesquisa agropecu\u00e1ria (brazilian agricultural research corporation)", "alternativeName": "embrapa", "country": "br", "url": "http://www.embrapa.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.alice.cnptia.embrapa.br/oai/request yes 9176 17182 +2216 {"name": "nanhua university institutional repository", "language": "en"} [{"acronym": "nhuir"}] http://nhuir.nhu.edu.tw/ institutional [] 2022-01-12 15:35:28 2011-08-09 10:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nanhua university (\u5357\u83ef\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.nhu.edu.tw/main.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://nhuir.nhu.edu.tw/dspace-oai/request yes 0 17759 +2219 {"name": "national science foundation of sri lanka, digital repository", "language": "en"} [{"acronym": "nsf digital library"}] http://dl.nsf.ac.lk/ institutional [] 2022-01-12 15:35:28 2011-08-10 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "national science foundation of sri lanka", "alternativeName": "nsf", "country": "lk", "url": "http://www.nsf.ac.lk/", "identifier": [{"identifier": "https://ror.org/010xaa060", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 14544 +2153 {"name": "publications open repository torino", "language": "en"} [{"acronym": "porto@iris"}] http://iris.polito.it/ institutional [] 2022-01-12 15:35:27 2011-05-18 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "politecnico di torino", "alternativeName": "", "country": "it", "url": "http://www.polito.it/", "identifier": [{"identifier": "https://ror.org/00bgk9508", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://iris.polito.it/oai/request yes 7678 90927 +2145 {"name": "reposit\u00f3rio institucional da ufvjm", "language": "en"} [{"acronym": "ri/ufvjm"}] http://acervo.ufvjm.edu.br/ institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal dos vales do jequitinhonha e mucuri", "alternativeName": "ufvjm", "country": "br", "url": "http://www.ufvjm.edu.br/", "identifier": [{"identifier": "https://ror.org/02gen2282", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1061 +2198 {"name": "repository of centre for open science", "language": "en"} [{"acronym": "repozytorium ceon (ceon repository)"}] http://depot.ceon.pl/ institutional [] 2022-01-12 15:35:28 2011-07-13 10:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://depot.ceon.pl/oai/request yes 201 300 +2199 {"name": "southeast asian fisheries development center, aquaculture department institutional repository", "language": "en"} [{"acronym": "seafdec institutional repository"}] http://repository.seafdec.org.ph institutional [] 2022-01-12 15:35:28 2011-07-13 10:10:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southeast asian fisheries development center (seafdec)", "alternativeName": "seafdec", "country": "ph", "url": "http://www.seafdec.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seafdec.org.ph/oai/request yes 3152 +2236 {"name": "university of derby online research archive", "language": "en"} [{"acronym": "udora"}] http://derby.openrepository.com/derby/ institutional [] 2022-01-12 15:35:29 2011-08-23 11:11:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of derby", "alternativeName": "", "country": "gb", "url": "http://www.derby.ac.uk/", "identifier": [{"identifier": "https://ror.org/02yhrrk59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://derby.openrepository.com/derby/-oai/request yes 1986 6210 +2200 {"name": "donetsk national university institutional repository", "language": "en"} [{"acronym": "edonnuir"}] http://repo.donnu.ru/ institutional [] 2022-01-12 15:35:28 2011-07-18 11:11:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "\u0434\u043e\u043d\u0435\u0446\u043a\u0438\u0439 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 (donetsk national university)", "alternativeName": "", "country": "ua", "url": "http://donnu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1039 +2176 {"name": "repositorio digital de tesis pucp", "language": "en"} [] http://tesis.pucp.edu.pe/repositorio/ institutional [] 2022-01-12 15:35:28 2011-06-15 10:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "pontificia universidad cat\u00f3lica del per\u00fa", "alternativeName": "", "country": "pe", "url": "http://www.pucp.edu.pe/content/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tesis.pucp.edu.pe/oai/request yes 3164 15447 +2144 {"name": "repositorio academico de la universidad tecnol\u00f3gica de pereira", "language": "en"} [] http://repositorio.utp.edu.co/dspace/ institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad tecnol\u00f3gica de pereira", "alternativeName": "", "country": "co", "url": "http://www.utp.edu.co/", "identifier": [{"identifier": "https://ror.org/01d981710", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utp.edu.co/oai/request yes 6940 8954 +2226 {"name": "saber ucab", "language": "en"} [] http://saber.ucab.edu.ve/ institutional [] 2022-01-12 15:35:29 2011-08-17 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad cat\u00f3lica andr\u00e9s bello", "alternativeName": "ucab", "country": "ve", "url": "http://www.ucab.edu.ve/", "identifier": [{"identifier": "https://ror.org/007fpb915", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://saber.ucab.edu.ve/oai/request yes 8047 +2229 {"name": "kribb repository", "language": "en"} [] http://repository.kribb.re.kr/ institutional [] 2022-01-12 15:35:29 2011-08-22 10:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "patents"] [{"name": "korea research institute of bioscience and biotechnology", "alternativeName": "kribb", "country": "kr", "url": "http://www.kribb.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kribb.re.kr:8080/dspace-oai/request yes 14751 +2197 {"name": "marine institute open access repository (oar)", "language": "en"} [] http://oar.marine.ie/ institutional [] 2022-01-12 15:35:28 2011-07-13 10:10:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "marine institute", "alternativeName": "", "country": "ie", "url": "http://www.marine.ie/home/", "identifier": [{"identifier": "https://ror.org/05581wm82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oar.marine.ie/oai/request yes 1014 1509 +2147 {"name": "adora", "language": "en"} [] https://aho.brage.unit.no institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "oslo school of architecture and design", "alternativeName": "arkitektur- og designh\u00f8gskolen i oslo (aho)", "country": "no", "url": "http://www.aho.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aho.brage.unit.no/aho-oai/ yes 259 +2150 {"name": "biblioteca sor juana ines de la cruz", "language": "en"} [] http://201.147.150.252:8080/jspui/ institutional [] 2022-01-12 15:35:27 2011-05-04 11:11:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "universidad del claustro de sor juana", "alternativeName": "", "country": "mx", "url": "http://elclaustro.edu.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3800 +2224 {"name": "dspace repository", "language": "en"} [] http://dgsa.uaeh.edu.mx:8080/bibliotecadigital aggregating [] 2022-01-12 15:35:29 2011-08-17 09:09:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "autonomous university of the state of hidalgo", "alternativeName": "uaeh", "country": "mx", "url": "https://www.uaeh.edu.mx", "identifier": [{"identifier": "https://ror.org/031f8kt38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dgsa.uaeh.edu.mx:8080/oai/request yes 74 1146 +2190 {"name": "repositorio institucional - pontificia universidad javeriana", "language": "en"} [] http://repository.javeriana.edu.co/ institutional [] 2022-01-12 15:35:28 2011-07-06 10:10:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "pontificia universidad javeriana", "alternativeName": "", "country": "co", "url": "http://puj-portal.javeriana.edu.co/portal/page/portal/portal_version_2009_2010/es_inicio", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.javeriana.edu.co/oai/request yes 3022 37418 +2175 {"name": "repositorio institucional da universidade federal do cear\u00e1", "language": "en"} [] http://www.repositorio.ufc.br/ institutional [] 2022-01-12 15:35:28 2011-06-15 10:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidade federal do cear\u00e1", "alternativeName": "", "country": "br", "url": "http://www.ufc.br/", "identifier": [{"identifier": "https://ror.org/03srtnf24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 31521 +2184 {"name": "riga technical university repository", "language": "en"} [] https://ortus.rtu.lv/science/en/publications institutional [] 2022-01-12 15:35:28 2011-07-06 09:09:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "riga technical university", "alternativeName": "", "country": "lv", "url": "http://www.rtu.lv", "identifier": [{"identifier": "https://ror.org/00twb6c09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ortus.rtu.lv/science/oai/openaire yes 0 18422 +2140 {"name": "repositorio institucional da fundacao santo andre", "language": "en"} [] http://www.repositorium.fsa.br:8080/repositorio/ institutional [] 2022-01-12 15:35:27 2011-04-20 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "funda\u00e7\u00e3o santo andr\u00e9", "alternativeName": "", "country": "br", "url": "http://www.fsa.br/", "identifier": [{"identifier": "https://ror.org/02pj7we23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 231 +2174 {"name": "reposit\u00f3rio institucional da universidade federal do rio grande", "language": "en"} [] http://repositorio.furg.br/ institutional [] 2022-01-12 15:35:28 2011-06-15 10:10:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade federal do rio grande", "alternativeName": "furg", "country": "br", "url": "http://www.furg.br/", "identifier": [{"identifier": "https://ror.org/05hpfkn88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3828 +2196 {"name": "universidad t\u00e9cnica de manab\u00ed", "language": "en"} [] http://repositorio.utm.edu.ec/ institutional [] 2022-01-12 15:35:28 2011-07-11 09:09:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad t\u00e9cnica de manab\u00ed", "alternativeName": "utm", "country": "ec", "url": "http://www.utm.edu.ec/", "identifier": [{"identifier": "https://ror.org/02qgahb88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 22643 +2178 {"name": "biwako seikei sport college repository", "language": "en"} [] http://libir-bw.bss.ac.jp/jspui/ institutional [] 2022-01-12 15:35:28 2011-06-15 10:10:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "biwako seikei sport college library", "alternativeName": "", "country": "jp", "url": "http://www.bss.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://libir-bw.bss.ac.jp/oai/request yes 7 2573 +2208 {"name": "dspace \u0432 \u0431\u0435\u043b\u0433\u0443", "language": "en"} [] http://dspace.bsu.edu.ru/ institutional [] 2022-01-12 15:35:28 2011-07-27 14:14:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "belgorod state university", "alternativeName": "\u0431\u0435\u043b\u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "country": "ru", "url": "http://www.bsu.edu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 21410 +2233 {"name": "kca open access repository", "language": "en"} [{"name": "\ud55c\uad6d\uc18c\ube44\uc790\uc6d0", "language": "ko"}] http://repo.kca.go.kr/ institutional [] 2022-01-12 15:35:29 2011-08-23 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "korea consumer agency (\ud55c\uad6d\uc18c\ube44\uc790\uc6d0)", "alternativeName": "", "country": "kr", "url": "http://www.kca.go.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4124 +2221 {"name": "reposit\u00f3rio institucional da ufpe", "language": "en"} [] http://repositorio.ufpe.br/ institutional [] 2022-01-12 15:35:28 2011-08-10 11:11:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade federal de pernambuco", "alternativeName": "ufpe", "country": "br", "url": "http://www.ufpe.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.ufpe.br/oai/request yes 21399 +2151 {"name": "reposit\u00f3rio institucional da universidade federal de sergipe", "language": "en"} [] https://ri.ufs.br/ institutional [] 2022-01-12 15:35:27 2011-05-04 11:11:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade federal de sergipe", "alternativeName": "", "country": "br", "url": "http://www.ufs.br/", "identifier": [{"identifier": "https://ror.org/028ka0n85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ri.ufs.br/oai yes 6764 +2223 {"name": "eeast-ukrnuir (electronic volodymyr dahl east ukrainian national university institutional repository)", "language": "en"} [{"acronym": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0441\u0445\u0456\u0434\u043d\u043e\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u0432\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440\u0430 \u0434\u0430\u043b\u044f"}] http://dspace.snu.edu.ua:8080/jspui/ institutional [] 2022-01-12 15:35:28 2011-08-15 09:09:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "volodymyr dahl east ukrainian national university", "alternativeName": "", "country": "ua", "url": "http://snu.edu.ua/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dspace.snu.edu.ua:8080/docs/polojenie_eeastnuir.pdf", "type": "metadata"}, {"policy_url": "http://dspace.snu.edu.ua:8080/docs/polojenie_eeastnuir.pdf", "type": "data"}, {"policy_url": "http://dspace.snu.edu.ua:8080/docs/polojenie_eeastnuir.pdf", "type": "content"}, {"policy_url": "http://dspace.snu.edu.ua:8080/docs/polojenie_eeastnuir.pdf", "type": "submission"}, {"policy_url": "http://dspace.snu.edu.ua:8080/docs/polojenie_eeastnuir.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspace.snu.edu.ua:8080/oai/request yes 1787 +2138 {"name": "uvt e-doc", "language": "en"} [] http://pf-mh.uvt.rnu.tn/ institutional [] 2022-01-12 15:35:27 2011-04-20 10:10:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universit\u00e9 virtuelle de tunis", "alternativeName": "uvt", "country": "tn", "url": "http://www.uvt.rnu.tn/uvt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 828 +2167 {"name": "uiana", "language": "en"} [] http://eprints.lib.ui.ac.id/ institutional [] 2022-01-12 15:35:28 2011-06-01 09:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas indonesia", "alternativeName": "", "country": "id", "url": "http://www.ui.ac.id/", "identifier": [{"identifier": "https://ror.org/0116zj450", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.lib.ui.ac.id/cgi/oai2 yes 24138 +2179 {"name": "repositorio academico digital uanl", "language": "en"} [] http://eprints.uanl.mx/ institutional [] 2022-01-12 15:35:28 2011-06-15 11:11:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad aut\u00f3noma de nuevo le\u00f3n", "alternativeName": "", "country": "mx", "url": "http://www.uanl.mx/", "identifier": [{"identifier": "https://ror.org/01fh86n78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uanl.mx/cgi/oai2 yes 14389 16573 +2191 {"name": "hal-ird", "language": "en"} [] http://hal.ird.fr/ institutional [] 2022-01-12 15:35:28 2011-07-06 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institut de recherche pour le d\u00e9veloppement", "alternativeName": "ird", "country": "fr", "url": "http://www.ird.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ird yes 0 35573 +2181 {"name": "opengrey repository", "language": "en"} [] http://www.opengrey.eu/ disciplinary [] 2022-01-12 15:35:28 2011-06-22 10:10:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institut de linformation scientifique et technique du cnrs", "alternativeName": "inist-cnrs", "country": "fr", "url": "http://www.inist.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.opengrey.eu/oai/ yes 18156 1014842 +2195 {"name": "university of leicesters oer repository", "language": "en"} [] http://www2.le.ac.uk/projects/oer institutional [] 2022-01-12 15:35:28 2011-07-11 09:09:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "university of leicester", "alternativeName": "", "country": "gb", "url": "http://www2.le.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 37 +2210 {"name": "digital land of sieradz", "language": "en"} [] http://cyfrowa.pbp.sieradz.pl/dlibra institutional [] 2022-01-12 15:35:28 2011-07-27 15:15:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "powiatowa biblioteka publiczna w sieradzu", "alternativeName": "", "country": "pl", "url": "http://www.pbp.sieradz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cyfrowa.pbp.sieradz.pl/dlibra/oai-pmh-repository.xml yes 0 1046 +2211 {"name": "digital library of jelenia g\u00f3ra (cyfrowy dolny \u015bl\u0105s)", "language": "en"} [] http://www.kbc.krosno.pl/dlibra institutional [] 2022-01-12 15:35:28 2011-07-27 15:15:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "jeleniog\u00f3rskie centrum informacji i edukacji regionalnej - ksi\u0105\u017cnica karkonoska", "alternativeName": "", "country": "pl", "url": "http://biblioteka.jelenia-gora.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://jbc.jelenia-gora.pl/dlibra/oai-pmh-repository.xml yes 0 4 +2227 {"name": "digital library of polish institute of anthropology", "language": "en"} [] http://cyfrowaetnografia.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-17 11:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "polish institute of anthropology", "alternativeName": "pia", "country": "pl", "url": "http://www.pia.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cyfrowaetnografia.pl/dlibra/oai-pmh-repository.xml yes 0 3876 +2213 {"name": "dolno\u015bl\u0105ska digital library", "language": "en"} [{"name": "dolno\u015bl\u0105ska biblioteka cyfrowa", "language": "pl"}] http://www.dbc.wroc.pl/dlibra institutional [] 2022-01-12 15:35:28 2011-07-27 16:16:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "politechnika wroc\u0142awska (wroc\u0142aw university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pwr.wroc.pl/index.dhtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} yes 39814 +2146 {"name": "dspace @ sdmcet", "language": "en"} [] http://210.212.198.149:8080/jspui institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:33 ["science", "technology", "social sciences", "engineering"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "sdm college of engineering and technology dharwad", "alternativeName": "", "country": "in", "url": "http://www.sdmcet.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.212.198.149:8080/oai/request yes 0 60 +2218 {"name": "indian institute of petroleum institutional repository", "language": "en"} [] http://library.iip.res.in:8080/dspace institutional [] 2022-01-12 15:35:28 2011-08-10 09:09:51 ["science", "technology", "social sciences", "engineering"] ["journal_articles"] [{"name": "indian institute of petroleum, dehradun", "alternativeName": "", "country": "in", "url": "http://www.iip.res.in/", "identifier": [{"identifier": "https://ror.org/04gavx394", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 481 +2232 {"name": "korea thermophysical properties data bank", "language": "en"} [{"acronym": "kdb"}] http://www.cheric.org/research/tech/periodicals/ institutional [] 2022-01-12 15:35:29 2011-08-23 09:09:40 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "chemical engineering research information center (\uace0\ub824\ub300\ud559\uad50 \ud654\ud559\uacf5\ud559 \uc804\ubb38\uc5f0\uad6c\uc815\ubcf4\uc13c\ud130)", "alternativeName": "", "country": "kr", "url": "http://www.cheric.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 939767 +2163 {"name": "cbpf index", "language": "en"} [] http://cbpfindex.cbpf.br/ institutional [] 2022-01-12 15:35:28 2011-05-25 09:09:49 ["science"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "centro brasileiro de pesquisas f\u00edsicas", "alternativeName": "", "country": "br", "url": "http://portal.cbpf.br/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 10114 +2165 {"name": "citarea repositorio electr\u00f3nico agroalimentario", "language": "en"} [] http://citarea.cita-aragon.es/ institutional [] 2022-01-12 15:35:28 2011-05-25 10:10:05 ["science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro de investigaci\u00f3n y tecnolog\u00eda agroalimentaria de arag\u00f3n", "alternativeName": "cita", "country": "es", "url": "http://www.cita-aragon.es/", "identifier": [{"identifier": "https://ror.org/033gfj842", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://citarea.cita-aragon.es/oai/request yes 1460 4799 +2228 {"name": "kisti repository", "language": "en"} [] https://repository.kisti.re.kr institutional [] 2022-01-12 15:35:29 2011-08-22 10:10:34 ["social sciences", "technology"] ["journal_articles", "learning_objects"] [{"name": "korean institution of science and technology information", "alternativeName": "kisti", "country": "kr", "url": "http://www.kisti.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.kisti.re.kr/oai/request yes 101 +2188 {"name": "reposit\u00f3rio cient\u00edfico de mo\u00e7ambique", "language": "en"} [{"acronym": "saber"}] http://www.saber.ac.mz aggregating [] 2022-01-12 15:35:28 2011-07-06 10:10:16 ["social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade eduardo mondlane", "alternativeName": "", "country": "mz", "url": "http://www.uem.mz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.saber.ac.mz/oai/request yes 3264 +2149 {"name": "institutional repository of vadym hetman kyiv national economic university", "language": "en"} [{"acronym": "irkneu"}] http://ir.kneu.edu.ua/ institutional [] 2022-01-12 15:35:27 2011-05-04 10:10:57 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "\u043a\u0438\u0457\u0432\u0441\u044c\u043a\u0438\u0439 \u043d\u0430\u0446i\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0435\u043a\u043e\u043d\u043e\u043ci\u0447\u043d\u0438\u0439 \u0443\u043di\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u0432\u0430\u0434\u0438\u043c\u0430 \u0433\u0435\u0442\u044c\u043c\u0430\u043d\u0430 (vadym hetman kyiv national economic university)", "alternativeName": "", "country": "ua", "url": "http://kneu.edu.ua/", "identifier": [{"identifier": "https://ror.org/019z71x08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ir.kneu.edu.ua:8080", "type": "data"}] {"name": "dspace", "version": ""} http://ir.kneu.edu.ua/oai/request yes 21115 +2152 {"name": "digital education resource archive", "language": "en"} [{"acronym": "dera"}] http://dera.ioe.ac.uk/ institutional [] 2022-01-12 15:35:27 2011-05-12 14:14:54 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "institute of education, university of london", "alternativeName": "", "country": "gb", "url": "http://www.ioe.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dera.ioe.ac.uk/cgi/oai2 yes 32417 35958 +2231 {"name": "digital commons @ boston college law school", "language": "en"} [] http://lawdigitalcommons.bc.edu/ institutional [] 2022-01-12 15:35:29 2011-08-22 13:13:24 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "boston college", "alternativeName": "bc", "country": "us", "url": "http://bc.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://lawdigitalcommons.bc.edu/do/oai/ yes 8749 9435 +2156 {"name": "rcti", "language": "en"} [] http://repositorio.cti.gov.br/repositorio institutional [] 2022-01-12 15:35:28 2011-05-18 10:10:56 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "centro de tecnologia da informa\u00e7\u00e3o renato archer", "alternativeName": "cti", "country": "br", "url": "http://www.cti.gov.br/", "identifier": [{"identifier": "https://ror.org/044nfga98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 130 +2168 {"name": "ostdok - osteuropa-dokumente online", "language": "en"} [] http://www.ostdok.de/ disciplinary [] 2022-01-12 15:35:28 2011-06-01 09:09:48 ["humanities", "science", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bayerische staatsbibliothek m\u00fcnchen", "alternativeName": "", "country": "de", "url": "http://www.bsb-muenchen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bsbdok.digitale-sammlungen.de/oai/ostdok yes 0 23 +2237 {"name": "biblioteka cyfrowa ma\u0142opolskiego towarzystwa genealogicznego", "language": "en"} [] http://www.mtg-malopolska.org.pl/bibliotekacyfrowa.html disciplinary [] 2022-01-12 15:35:29 2011-08-23 13:13:38 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ma\u0142opolskie towarzystwo genealogiczne", "alternativeName": "", "country": "pl", "url": "http://www.mtg-malopolska.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://content.fbc.pionier.net.pl/mtg/oaihandler yes 1 180 +2185 {"name": "queen mary research online", "language": "en"} [{"acronym": "qmro"}] https://qmro.qmul.ac.uk/ institutional [] 2022-01-12 15:35:28 2011-07-06 09:09:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "queen mary university of london", "alternativeName": "", "country": "gb", "url": "http://www.qmul.ac.uk/", "identifier": [{"identifier": "https://ror.org/026zzn846", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.library.qmul.ac.uk/qmro_policy", "type": "metadata"}, {"policy_url": "http://www.library.qmul.ac.uk/qmro_policy", "type": "data"}, {"policy_url": "http://www.library.qmul.ac.uk/qmro_policy", "type": "content"}, {"policy_url": "http://www.library.qmul.ac.uk/qmro_policy", "type": "submission"}, {"policy_url": "http://www.library.qmul.ac.uk/qmro_policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://qmro.qmul.ac.uk/oai/request yes 10822 26945 +2183 {"name": "repositorio de legislaci\u00f3n en salud de cuba", "language": "en"} [] http://legislacion.sld.cu/ institutional [] 2022-01-12 15:35:28 2011-06-28 10:10:24 ["health and medicine", "social sciences"] ["bibliographic_references", "other_special_item_types"] [{"name": "centro nacional de informaci\u00f3n de ciencias m\u00e9dicas", "alternativeName": "infomed", "country": "cu", "url": "http://www.infomed.sld.cu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://legislacion.sld.cu/index.php?&p=oai yes 0 313 +2155 {"name": "digitalcommons@linfield", "language": "en"} [] http://digitalcommons.linfield.edu/ institutional [] 2022-01-12 15:35:28 2011-05-18 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "linfield college", "alternativeName": "", "country": "us", "url": "http://www.linfield.edu/", "identifier": [{"identifier": "https://ror.org/0228k1a18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.linfield.edu/submission.pdf", "type": "content"}, {"policy_url": "http://digitalcommons.linfield.edu/submission.pdf", "type": "submission"}, {"policy_url": "http://digitalcommons.linfield.edu/submission.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.linfield.edu/do/oai/ yes 2490 9170 +2160 {"name": "morska biblioteka cyfrowa (maritime digital library)", "language": "en"} [] http://mbc.fundacjamorska.org/dlibra institutional [] 2022-01-12 15:35:28 2011-05-18 11:11:50 ["humanities", "science", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "polska fundacja morska (polish maritime foundation)", "alternativeName": "", "country": "pl", "url": "http://fundacjamorska.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://mbc.fundacjamorska.org/dlibra/oai-pmh-repository.xml yes 0 1717 +2186 {"name": "national repository of grey literature", "language": "en"} [{"acronym": "digit\u00e1ln\u00ed repozit\u00e1\u0159 nu\u0161l"}] http://invenio.nusl.cz/ aggregating [] 2022-01-12 15:35:28 2011-07-06 09:09:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national library of technology", "alternativeName": "n\u00e1rodn\u00ed technick\u00e1 knihovna", "country": "cz", "url": "http://www.techlib.cz/", "identifier": [{"identifier": "https://ror.org/028txef36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://invenio.nusl.cz/oai2d/ yes 5 425256 +2238 {"name": "digital library of polish and poland-related news pamphlets", "language": "en"} [] http://cbdu.id.uw.edu.pl/ disciplinary [] 2022-01-12 15:35:29 2011-08-23 13:13:44 ["humanities", "arts"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://cbdu.id.uw.edu.pl/cgi/oai2 yes 0 2010 +2212 {"name": "virtual reading room of the john paul ii catholic university of lublin", "language": "en"} [] http://cw.kul.lublin.pl/dlibra institutional [] 2022-01-12 15:35:28 2011-07-27 15:15:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "katolicki uniwersytet lubelski jana paw\u0142a ii (john paul ii catholic university of lublin)", "alternativeName": "", "country": "pl", "url": "http://www.kul.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cw.kul.lublin.pl/dlibra/oai-pmh-repository.xml yes 0 4 +2202 {"name": "biblioteca digital en violencia sociopol\u00edtica acci\u00f3n sin da\u00f1o y construcci\u00f3n de paz bivipas", "language": "en"} [{"acronym": "bivipas"}] http://www.bivipas.unal.edu.co/ institutional [] 2022-01-12 15:35:28 2011-07-26 13:13:54 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad nacional de colombia", "alternativeName": "", "country": "co", "url": "http://www.unal.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.bivipas.unal.edu.co/oai/request yes 0 512 +2240 {"name": "univeristy of warmia and mazury digital library", "language": "en"} [] http://dlibra.bg.uwm.edu.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-23 14:14:02 ["humanities", "science", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "uniwersytet warmi\u0144sko-mazurski w olsztynie (university of warmia and mazury)", "alternativeName": "", "country": "pl", "url": "http://uwm.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://dlibra.bg.uwm.edu.pl/dlibra/oai-pmh-repository.xml yes 0 21 +2159 {"name": "dominika\u0144ska biblioteka cyfrowa", "language": "en"} [{"acronym": "armarium"}] http://bc.dominikanie.pl/dlibra institutional [] 2022-01-12 15:35:28 2011-05-18 11:11:38 ["humanities"] ["books_chapters_and_sections"] [{"name": "biblioteka kolegium filozoficzno-teologicznego oo. dominikan\u00f3w w krakowie", "alternativeName": "", "country": "pl", "url": "http://www.kolegium.dominikanie.pl/informacje_podstawowe.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.dominikanie.pl/dlibra/oai-pmh-repository.xml yes 0 405 +2239 {"name": "university of warsaw digital library (crispa)", "language": "en"} [{"name": "nazwa repozytorium: biblioteka cyfrowa uniwersytetu warszawskiego (crispa)", "language": "pl"}] http://crispa.uw.edu.pl institutional [] 2022-01-12 15:35:29 2011-08-23 13:13:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "https://www.uw.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://crispa.uw.edu.pl/complete/oai-pmh/v2?verb=listidentifiers&metadataprefix=oai_dc yes 0 5089 +2225 {"name": "knowledge repository open network", "language": "en"} [{"acronym": "knoor"}] http://dspaces.uok.edu.in:8080/jspui/ aggregating [] 2022-01-12 15:35:29 2011-08-17 10:10:01 ["health and medicine", "science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of kashmir", "alternativeName": "", "country": "in", "url": "http://www.kashmiruniversity.net/", "identifier": [{"identifier": "https://ror.org/032xfst36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kashmiruniversity.net/download/poli.pdf", "type": "submission"}, {"policy_url": "http://kashmiruniversity.net/download/poli.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspaces.uok.edu.in/oai/request yes 228 1210 +2172 {"name": "cccu research space repository", "language": "en"} [] https://repository.canterbury.ac.uk/ institutional [] 2022-01-12 15:35:28 2011-06-01 11:11:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "canterbury christ church university", "alternativeName": "", "country": "gb", "url": "https://www.canterbury.ac.uk/", "identifier": [{"identifier": "https://ror.org/0489ggv38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://create.canterbury.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://create.canterbury.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://create.canterbury.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://create.canterbury.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://create.canterbury.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://repository.canterbury.ac.uk/oai2 yes 2786 12901 +2173 {"name": "edge hill research archive", "language": "en"} [] http://repository.edgehill.ac.uk/ institutional [] 2022-01-12 15:35:28 2011-06-01 11:11:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "edge hill university", "alternativeName": "", "country": "gb", "url": "http://www.edgehill.ac.uk/", "identifier": [{"identifier": "https://ror.org/028ndzd53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.edgehill.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://repository.edgehill.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://repository.edgehill.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://repository.edgehill.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://repository.edgehill.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.edgehill.ac.uk/cgi/oai2 yes 2279 10737 +2177 {"name": "scholarworks @ georgia state university", "language": "en"} [] http://scholarworks.gsu.edu institutional [] 2022-01-12 15:35:28 2011-06-15 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "georgia state university", "alternativeName": "", "country": "us", "url": "http://www.gsu.edu", "identifier": [{"identifier": "https://ror.org/03qt6ba18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarworks.gsu.edu/cgi/viewcontent.cgi?article=1006&context=univ_lib_dadocs", "type": "content"}] {"name": "other", "version": ""} http://scholarworks.gsu.edu/do/oai yes 9916 11301 +2345 {"name": "hal-hcl", "language": "en"} [] http://hal-hcl.archives-ouvertes.fr/ aggregating [] 2022-01-12 15:35:30 2011-11-09 11:11:42 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "hospices civils de lyon", "alternativeName": "hcl", "country": "fr", "url": "http://www.chu-lyon.fr/web/", "identifier": [{"identifier": "https://ror.org/02qt1p572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/hcl yes 0 11122 +2322 {"name": "eduhk research repository", "language": "en"} [] http://repository.lib.eduhk.hk/ institutional [] 2022-01-12 15:35:30 2011-10-12 10:10:01 ["arts", "humanities", "science", "mathematics", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "education university of hong kong", "alternativeName": "", "country": "hk", "url": "http://www.eduhk.hk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.ied.edu.hk/about/submissionguide.pdf", "type": "content"}, {"policy_url": "http://repository.ied.edu.hk/about/submissionguide.pdf", "type": "submission"}, {"policy_url": "http://repository.ied.edu.hk/about/submissionguide.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 22318 +2265 {"name": "biblioteca digital de castilla y le\u00f3n", "language": "es"} [{"acronym": "bdcyl"}] http://bibliotecadigital.jcyl.es institutional [] 2022-01-12 15:35:29 2011-09-07 11:11:48 ["arts", "humanities", "science"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "junta de castilla y le\u00f3n", "alternativeName": "", "country": "es", "url": "http://www.jcyl.es", "identifier": [{"identifier": "https://ror.org/02s8dab97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.jcyl.es/i18n/oai/oai.cmd yes 46758 100307 +2330 {"name": "repositorio digital acad\u00e9mico uc temuco", "language": "en"} [] http://repositoriodigital.uct.cl/ institutional [] 2022-01-12 15:35:30 2011-10-19 11:11:07 ["arts", "humanities", "social sciences", "technology"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad cat\u00f3lica de temuco", "alternativeName": "", "country": "cl", "url": "http://www.uctemuco.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositoriodigital.uct.cl:8080/oai/request yes 1233 +2313 {"name": "dbs esource", "language": "en"} [] http://esource.dbs.ie/ institutional [] 2022-01-12 15:35:30 2011-10-11 11:11:33 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "dublin business school", "alternativeName": "", "country": "ie", "url": "http://www.dbs.ie/", "identifier": [{"identifier": "https://ror.org/051dggm19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2640 +2329 {"name": "online collection", "language": "en"} [] http://art.thewalters.org/ institutional [] 2022-01-12 15:35:30 2011-10-19 10:10:42 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "walters art museum", "alternativeName": "", "country": "us", "url": "http://thewalters.org/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2343 {"name": "central medical library electronic repository", "language": "en"} [] http://cml.mu-sofia.bg:8080/xmlui institutional [] 2022-01-12 15:35:30 2011-11-09 10:10:54 ["health and medicine", "science", "technology", "engineering", "mathematics", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "medical university - sofia", "alternativeName": "", "country": "bg", "url": "https://mu-sofia.bg", "identifier": [{"identifier": "https://ror.org/01n9zy652", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cml.mu-sofia.bg:8080/oai yes 3 1369 +2259 {"name": "openpub", "language": "en"} [] https://openpub.fmach.it institutional [] 2022-01-12 15:35:29 2011-08-31 11:11:39 ["health and medicine", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "patents"] [{"name": "fondazione edmund mach", "alternativeName": "", "country": "it", "url": "https://www.fmach.it", "identifier": [{"identifier": "https://ror.org/0381bab64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openpub.fmach.it/oai/request yes 1952 10481 +2349 {"name": "repository of kharkiv national medical university", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0445\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043c\u0435\u0434\u0438\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443", "language": "uk"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0438\u0439 \u0445\u0430\u0440\u044c\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043c\u0435\u0434\u0438\u0446\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430", "language": "ru"}] http://repo.knmu.edu.ua/ institutional [] 2022-01-12 15:35:30 2011-11-15 12:12:44 ["health and medicine", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "learning_objects"] [{"name": "kharkov national medical university", "alternativeName": "", "country": "ua", "url": "http://knmu.kharkov.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.knmu.edu.ua/oai/request yes 19265 +2312 {"name": "institutional repository of institute of psychology, cas", "language": "en"} [{"acronym": "psych openir"}] http://ir.psych.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 15:15:42 ["health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "chinese academy of sciences, institute of psychology (\u4e2d\u56fd\u79d1\u5b66\u9662\u5fc3\u7406\u7814\u7a76\u6240)(psych), china", "alternativeName": "", "country": "cn", "url": "http://www.psych.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.psych.ac.cn/casirgrid-oai/request yes 220 20560 +2338 {"name": "bibloteca para la persona (library for the person)", "language": "en"} [] http://bibliotecaparalapersona-epimeleia.com/greenstone/cgi-bin/library.cgi disciplinary [] 2022-01-12 15:35:30 2011-10-26 11:11:52 ["health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "asociaci\u00f3n civil epimeleia cuidano el desarrollo personal", "alternativeName": "", "country": "ar", "url": "http://www.epimeleia-argentina.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2333 {"name": "influenza training digital library", "language": "en"} [] http://influenzatraining.org/ disciplinary [] 2022-01-12 15:35:30 2011-10-19 12:12:00 ["health and medicine", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "world health organization", "alternativeName": "who", "country": "ch", "url": "http://www.who.int/", "identifier": [{"identifier": "https://ror.org/01f80g185", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 223 +2340 {"name": "reposit\u00f3rio do centro hospitalar de lisboa central, epe", "language": "en"} [] http://repositorio.chlc.min-saude.pt/ institutional [] 2022-01-12 15:35:30 2011-11-07 15:15:57 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "centro hospitalar de lisboa central, epe", "alternativeName": "", "country": "pt", "url": "http://www.chlc.min-saude.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.chlc.min-saude.pt/oaiextended/request yes 2231 3329 +2285 {"name": "projekt \u201eotw\u00f3rz ksi\u0105\u017ck\u0119\"", "language": "en"} [] http://otworzksiazke.pl/ institutional [] 2022-01-12 15:35:29 2011-09-20 12:12:16 ["humanities", "arts", "social sciences"] ["books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://otworzksiazke.pl/oai yes 116 555 +2281 {"name": "armenian rare books 1512-1800", "language": "en"} [] http://greenstone.flib.sci.am/gsdl/cgi-bin/library.cgi?p=about&c=armenian disciplinary [] 2022-01-12 15:35:29 2011-09-19 12:12:50 ["humanities", "arts"] ["books_chapters_and_sections"] [{"name": "british library", "alternativeName": "bl", "country": "gb", "url": "http://www.bl.uk/", "identifier": [{"identifier": "https://ror.org/05dhe8b71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 797 +2301 {"name": "institutional repository of xinjiang institute of ecology and geography, cas", "language": "en"} [{"acronym": "egi openir"}] http://ir.xjlas.org/ institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:20 ["humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.xjlas.org/casirgrid-oai/request yes 6655 +2325 {"name": "institutional repository of guangzhou institute of geochemistry,cas(gigcas openir)", "language": "en"} [] http://ir.gig.ac.cn:8080/ institutional [] 2022-01-12 15:35:30 2011-10-13 10:10:50 ["humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "guangzhou institute of geochemistry, chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662\u5e7f\u5dde\u5730\u7403\u5316\u5b66\u7814\u7a76\u6240)", "alternativeName": "gigcas", "country": "cn", "url": "http://www.gig.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.gig.ac.cn:8080/casirgrid-oai/request yes 6752 +2288 {"name": "kazakhstan human rights commission", "language": "en"} [] http://www.unesco.kz/cgi-bin/library?a=p&p=about&c=hrcru&l=ru&w=windows-1251&ct=1&qto=2 disciplinary [] 2022-01-12 15:35:30 2011-09-21 10:10:25 ["humanities", "social sciences", "health and medicine"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "unesco - kazakhstan", "alternativeName": "", "country": "kz", "url": "http://www.unesco.kz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2280 {"name": "greater cincinnati memory project", "language": "en"} [] http://www.cincinnatimemory.org/ aggregating [] 2022-01-12 15:35:29 2011-09-19 12:12:32 ["humanities", "social sciences", "technology"] ["other_special_item_types"] [{"name": "swon libraries", "alternativeName": "", "country": "us", "url": "http://www.swonlibraries.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 37395 +2319 {"name": "ids opendocs", "language": "en"} [] https://opendocs.ids.ac.uk/opendocs institutional [] 2022-01-12 15:35:30 2011-10-11 15:15:01 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institute of development studies", "alternativeName": "", "country": "gb", "url": "http://www.ids.ac.uk/", "identifier": [{"identifier": "https://ror.org/0288jxv49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://opendocs.ids.ac.uk/oai/ yes 11993 15524 +2242 {"name": "podkarpacka digital library", "language": "en"} [] http://www.pbc.rzeszow.pl/ institutional [] 2022-01-12 15:35:29 2011-08-23 14:14:55 ["humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "rzeszow university", "alternativeName": "", "country": "pl", "url": "http://www.univ.rzeszow.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.pbc.rzeszow.pl/dlibra/oai-pmh-repository.xml yes 0 724 +2243 {"name": "pomeranian digital library", "language": "en"} [] http://pbc.gda.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-23 15:15:00 ["humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "gdansk university of technology", "alternativeName": "", "country": "pl", "url": "http://www.pg.gda.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://pbc.gda.pl/dlibra/oai-pmh-repository.xml yes 0 36298 +2320 {"name": "digimom", "language": "en"} [] http://www.mom.fr/digimom/ disciplinary [] 2022-01-12 15:35:30 2011-10-11 15:15:15 ["humanities"] ["books_chapters_and_sections"] [{"name": "maison de lorient et de la m\u00e9diterran\u00e9e", "alternativeName": "mom", "country": "fr", "url": "http://www.mom.fr/", "identifier": [{"identifier": "https://ror.org/05de6h762", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://oai.mom.fr/digimom/oai yes 0 156 +2246 {"name": "fides digital library", "language": "en"} [] http://digital.fides.org.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 10:10:07 ["humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "federacja bibliotek ko\u015bcielnych (federation of the church libraries)", "alternativeName": "fides", "country": "pl", "url": "http://www.fides.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://digital.fides.org.pl/dlibra/oai-pmh-repository.xml yes 0 32 +2344 {"name": "valposcholar", "language": "en"} [] http://scholar.valpo.edu/ institutional [] 2022-01-12 15:35:30 2011-11-09 11:11:33 ["science", "arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "valparaiso university", "alternativeName": "", "country": "us", "url": "http://www.valpo.edu/", "identifier": [{"identifier": "https://ror.org/01pp0fx48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 6935 +2314 {"name": "scholars commons @ laurier", "language": "en"} [] http://scholars.wlu.ca/ institutional [] 2022-01-12 15:35:30 2011-10-11 11:11:49 ["science", "arts", "humanities", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "wilfrid laurier university", "alternativeName": "", "country": "ca", "url": "http://www.wlu.ca/", "identifier": [{"identifier": "https://ror.org/00fn7gb05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholars.wlu.ca/policies.html#policies-1", "type": "data"}, {"policy_url": "scholars.wlu.ca/policies.html#policies-2", "type": "content"}, {"policy_url": "scholars.wlu.ca/policies.html#policies-2", "type": "submission"}, {"policy_url": "http://scholars.wlu.ca/policies.html#policies-7", "type": "preservation"}] {"name": "other", "version": ""} yes 7076 +2336 {"name": "metabiblioteca-biblioteca digital libros abiertos", "language": "en"} [] http://libros.metabiblioteca.org/ institutional [] 2022-01-12 15:35:30 2011-10-26 09:09:42 ["science", "arts", "humanities", "social sciences", "technology"] ["books_chapters_and_sections"] [{"name": "metabiblioteca", "alternativeName": "", "country": "co", "url": "http://www.metabiblioteca.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://libros.metabiblioteca.org/oai/request yes 411 +2251 {"name": "podlaska digital library", "language": "en"} [] http://pbc.biaman.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 11:11:48 ["science", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects"] [{"name": "ksi\u0105\u017cnica podlaska im. \u0142ukasza g\u00f3rnickiego", "alternativeName": "", "country": "pl", "url": "http://www.ksiaznicapodlaska.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://pbc.biaman.pl/dlibra/oai-pmh-repository.xml yes 0 314 +2311 {"name": "institutional repository of institute of chemistry, cas", "language": "en"} [{"acronym": "iccas openir"}] http://159.226.64.105/ institutional [] 2022-01-12 15:35:30 2011-10-10 14:14:25 ["science", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://159.226.64.105/casirgrid-oai/request yes 5341 +2260 {"name": "insubriaspace", "language": "en"} [] http://insubriaspace.cilea.it/ institutional [] 2022-01-12 15:35:29 2011-08-31 11:11:44 ["science", "health and medicine", "technology", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universit\u00e0 dell insubria", "alternativeName": "", "country": "it", "url": "http://www.uninsubria.it/uninsubria/home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://insubriaspace.cilea.it/dspace-oai/request yes 0 708 +2252 {"name": "oak repository-kist", "language": "en"} [] http://pubs.kist.re.kr/ institutional [] 2022-01-12 15:35:29 2011-08-25 09:09:55 ["science", "health and medicine", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "patents"] [{"name": "korean institute of science and technology", "alternativeName": "kist", "country": "kr", "url": "http://www.kist.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://pubs.kist.re.kr/oai yes 0 52313 +2334 {"name": "repositorio institucional funde", "language": "en"} [] http://www.repo.funde.org/ institutional [] 2022-01-12 15:35:30 2011-10-21 09:09:44 ["science", "humanities", "social sciences", "health and medicine", "technology"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fundaci\u00f3n nacional para el desarrollo", "alternativeName": "funde", "country": "sv", "url": "http://www.funde.org/", "identifier": [{"identifier": "https://ror.org/050qmy682", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.repo.funde.org/cgi/oai2 yes 1356 1463 +2300 {"name": "institutional repository of institute of geographic sciences and natural resources research, cas", "language": "en"} [{"acronym": "igsnrr openir"}] http://159.226.115.200/ institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:13 ["science", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://159.226.115.200/casirgrid-oai/request yes 24253 +2304 {"name": "institutional repository of research center for eco-environmental sciences, cas", "language": "en"} [{"acronym": "rcees openir"}] http://159.226.240.226/ institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:47 ["science", "humanities"] ["bibliographic_references", "theses_and_dissertations", "patents"] [{"name": "chinese academy of sciences (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://159.226.240.226/casirgrid-oai/request yes 20468 +2303 {"name": "institutional repository of south china sea institute of oceanology, cas", "language": "en"} [{"acronym": "scsio-ir"}] http://210.77.90.120/ institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:39 ["science", "humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.77.90.120/casirgrid-oai/request yes 7532 +2264 {"name": "rolnicza biblioteka cyfrowa (agricultural digital library)", "language": "en"} [] http://delta.cbr.edu.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-09-07 11:11:15 ["science", "humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central agricultural library", "alternativeName": "", "country": "pl", "url": "http://www.cbr.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://delta.cbr.edu.pl/dlibra/oai-pmh-repository.xml yes 0 1612 +2284 {"name": "linstitut s\u00e9n\u00e9galais de recherches agricoles", "language": "en"} [{"acronym": "isra"}] http://www.sist.sn/cgi-bin/library aggregating [] 2022-01-12 15:35:29 2011-09-20 11:11:56 ["science", "social sciences", "health and medicine"] ["theses_and_dissertations"] [{"name": "coherence in information for agricultural research for development", "alternativeName": "ciard", "country": "fr", "url": "http://www.ciard.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2283 {"name": "indian institute of management kozhikode digital library", "language": "en"} [] http://www.iimk.ac.in/gsdl/cgi-bin/library institutional [] 2022-01-12 15:35:29 2011-09-20 10:10:29 ["science", "social sciences", "technology"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "indian institute of management kozhikode", "alternativeName": "iimk", "country": "in", "url": "http://www.iimk.ac.in/", "identifier": [{"identifier": "https://ror.org/03m1xdc36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2255 {"name": "polska biblioteka cyfrowa", "language": "en"} [] http://www.pbi.edu.pl/ institutional [] 2022-01-12 15:35:29 2011-08-25 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "national library of poland (biblioteka narodowa)", "alternativeName": "", "country": "pl", "url": "http://www.bn.org.pl/", "identifier": [{"identifier": "https://ror.org/05rcjak97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://fury.man.poznan.pl/repox/oaihandler yes 1604 +2282 {"name": "marshall foundation digital library", "language": "en"} [] http://www.marshallfoundation.org/database.htm disciplinary [] 2022-01-12 15:35:29 2011-09-20 09:09:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "marshall foundation", "alternativeName": "", "country": "us", "url": "http://www.marshallfoundation.org/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 34088 +2270 {"name": "dspace @ gokhale institute of politics and economics", "language": "en"} [{"acronym": "dspace@gipe"}] http://dspace.gipe.ac.in/ institutional [] 2022-01-12 15:35:29 2011-09-14 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "gokhale institute of politics and economics", "alternativeName": "gipe", "country": "in", "url": "http://www.gipe.ac.in/", "identifier": [{"identifier": "https://ror.org/01mksg519", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 25449 +2350 {"name": "electronic repository of the national pedagogical dragomanov university", "language": "en"} [{"acronym": "enpuir"}] http://enpuir.npu.edu.ua/ institutional [] 2022-01-12 15:35:30 2011-11-16 15:15:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "national pedagogical dragomanov university", "alternativeName": "", "country": "ua", "url": "http://npu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://enpuir.npu.edu.ua/oai/ yes 0 17650 +2292 {"name": "reposit\u00f3rio institucional da universidade de aveiro", "language": "pt"} [{"acronym": "ria"}] https://ria.ua.pt institutional [] 2022-01-12 15:35:30 2011-09-28 11:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidade de aveiro", "alternativeName": "", "country": "pt", "url": "http://www.ua.pt", "identifier": [{"identifier": "https://ror.org/00nt41z93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ria.ua.pt/oai/request yes 18006 29759 +2342 {"name": "statistics norways open research repository", "language": "en"} [{"acronym": "snorre"}] https://ssb.brage.unit.no institutional [] 2022-01-12 15:35:30 2011-11-07 16:16:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "statistics norway", "alternativeName": "ssb", "country": "no", "url": "http://www.ssb.no/", "identifier": [{"identifier": "https://ror.org/02e50va28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ssb.brage.unit.no/ssb-oai/request yes 2175 +2341 {"name": "electronic archive of the national university of pharmacy", "language": "en"} [{"acronym": "eanuph"}, {"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0444\u0430\u0440\u043c\u0430\u0446\u0435\u0432\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443", "language": "uk"}] http://dspace.nuph.edu.ua/ institutional [] 2022-01-12 15:35:30 2011-11-07 16:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "national university of pharmacy (\u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0444\u0430\u0440\u043c\u0430\u0446\u0435\u0432\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443)", "alternativeName": "nuph (\u043d\u0444\u0430\u0443)", "country": "ua", "url": "http://nuph.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 14779 +2293 {"name": "archivio istituzionale delluniversit\u00e0 della calabria", "language": "en"} [] http://dspace.unical.it institutional [] 2022-01-12 15:35:30 2011-09-28 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e0 della calabria", "alternativeName": "", "country": "it", "url": "http://www.unical.it/portale/", "identifier": [{"identifier": "https://ror.org/02rc97e94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.unical.it:8080/oai/request yes 1 4913 +2290 {"name": "repositorio digital usfq", "language": "en"} [] http://repositorio.usfq.edu.ec/ institutional [] 2022-01-12 15:35:30 2011-09-28 10:10:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad san francisco de quito", "alternativeName": "", "country": "ec", "url": "http://www.usfq.edu.ec/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6964 +2327 {"name": "shodhganga: a reservoir of indian theses", "language": "en"} [] http://shodhganga.inflibnet.ac.in/ aggregating [] 2022-01-12 15:35:30 2011-10-19 09:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "information and library network center", "alternativeName": "inflibnet", "country": "in", "url": "http://www.inflibnet.ac.in/", "identifier": [{"identifier": "https://ror.org/05mhhk279", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 196538 +2335 {"name": "biblioteca digital minerva", "language": "en"} [] http://repository.ean.edu.co/ institutional [] 2022-01-12 15:35:30 2011-10-26 09:09:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universidad ean", "alternativeName": "", "country": "co", "url": "http://www.ean.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ean.edu.co/oai/request yes 108 2793 +2286 {"name": "bulgarian openaire repository", "language": "en"} [] http://www.bg-openaire.eu/ institutional [] 2022-01-12 15:35:29 2011-09-21 09:09:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "bulgarian academy of sciences", "alternativeName": "", "country": "bg", "url": "http://www.bas.bg/", "identifier": [{"identifier": "https://ror.org/01x8hew03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.bg-openaire.eu/oaiextended/request yes 85 119 +2348 {"name": "dugifonsespecials - universitat de girona", "language": "en"} [] http://dugifonsespecials.udg.edu/ institutional [] 2022-01-12 15:35:30 2011-11-15 11:11:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "universitat de girona", "alternativeName": "", "country": "es", "url": "http://www.udg.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dugifonsespecials.udg.edu/dspace-oai/request yes 0 11569 +2346 {"name": "reposit\u00f3rio cient\u00edfico do centro hospitalar do porto", "language": "en"} [] http://repositorio.chporto.pt/ institutional [] 2022-01-12 15:35:30 2011-11-15 11:11:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "centro hospitalar do porto", "alternativeName": "", "country": "pt", "url": "http://www.chporto.pt/", "identifier": [{"identifier": "https://ror.org/04dwpyh46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.chporto.pt/oaiextended/request yes 1234 1871 +2339 {"name": "eprintsunife", "language": "en"} [] http://eprints.unife.it/ institutional [] 2022-01-12 15:35:30 2011-11-07 15:15:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di ferrara", "alternativeName": "", "country": "it", "url": "http://www.unife.it/", "identifier": [{"identifier": "https://ror.org/041zkgm14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.unife.it/cgi/oai2 yes 964 +2291 {"name": "uthm institutional repository", "language": "en"} [] http://eprints.uthm.edu.my/ institutional [] 2022-01-12 15:35:30 2011-09-28 10:10:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universiti tun hussein onn malaysia", "alternativeName": "uthm", "country": "my", "url": "http://www.uthm.edu.my/v2/", "identifier": [{"identifier": "https://ror.org/01c5wha71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uthm.edu.my/cgi/oai2 yes 7378 11373 +2326 {"name": "repositorio digital ribei", "language": "en"} [] http://biblioteca.ribei.org/ aggregating [] 2022-01-12 15:35:30 2011-10-17 10:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "red iberoamericana de estudios internacionales", "alternativeName": "", "country": "es", "url": "http://www.realinstitutoelcano.org/wps/portal/rielcano/ribei", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://biblioteca.ribei.org/cgi/oai2 yes 2118 2159 +2271 {"name": "repository universitas padjadjaran", "language": "en"} [] http://repository.unpad.ac.id/ institutional [] 2022-01-12 15:35:29 2011-09-14 11:11:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "cisral universitas padjadjaran", "alternativeName": "", "country": "id", "url": "http://cisral.unpad.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unpad.ac.id/oai/request yes 0 23960 +2268 {"name": "repositorio institucional de la universidad de el salvador", "language": "en"} [] http://ri.ues.edu.sv/ institutional [] 2022-01-12 15:35:29 2011-09-14 10:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de el salvador", "alternativeName": "", "country": "sv", "url": "http://www.ues.edu.sv/", "identifier": [{"identifier": "https://ror.org/03sbpft28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ri.ues.edu.sv/cgi/oai2 yes 12987 +2262 {"name": "city research online", "language": "en"} [] http://openaccess.city.ac.uk/ institutional [] 2022-01-12 15:35:29 2011-09-07 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "city university london", "alternativeName": "", "country": "gb", "url": "http://www.city.ac.uk/", "identifier": [{"identifier": "https://ror.org/04489at23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openaccess.city.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://openaccess.city.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://openaccess.city.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://openaccess.city.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://openaccess.city.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://openaccess.city.ac.uk/cgi/oai2 yes 12471 +2332 {"name": "most digital library", "language": "en"} [] http://digital-library.unesco.org/shs/most/gsdl/cgi-bin/library?c=most&a=p&p=about institutional [] 2022-01-12 15:35:30 2011-10-19 11:11:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "united nations educational, scientific and cultural organisation", "alternativeName": "unesco", "country": "fr", "url": "http://www.unesco.org/new/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 331 +2278 {"name": "papers past", "language": "en"} [] http://paperspast.natlib.govt.nz/cgi-bin/paperspast disciplinary [] 2022-01-12 15:35:29 2011-09-19 10:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national library of new zealand", "alternativeName": "", "country": "nz", "url": "http://www.natlib.govt.nz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 50474317 +2273 {"name": "washington research library consortium special collections", "language": "en"} [] http://www.aladin.wrlc.org/dl/ aggregating [] 2022-01-12 15:35:29 2011-09-15 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "washington research library consortium", "alternativeName": "wrlc", "country": "us", "url": "http://www.wrlc.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2337 {"name": "biblioteca digital museo de la memoria", "language": "en"} [] http://www.bibliotecamuseodelamemoria.cl/gsdl/cgi-bin/library.cgi?l=es disciplinary [] 2022-01-12 15:35:30 2011-10-26 11:11:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "museo de la memoria (museum of memory and human rights)", "alternativeName": "", "country": "cl", "url": "http://www.museodelamemoria.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2258 {"name": "art - torvergata oa", "language": "it"} [] https://art.torvergata.it/ institutional [] 2022-01-12 15:35:29 2011-08-31 11:11:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di roma tor vergata", "alternativeName": "", "country": "it", "url": "http://web.uniroma2.it", "identifier": [{"identifier": "https://ror.org/02p77k626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://art.torvergata.it/oai/request yes 66 76747 +2294 {"name": "publications at bielefeld university", "language": "en"} [{"acronym": "pub"}] http://pub.uni-bielefeld.de/ institutional [] 2022-01-12 15:35:30 2011-09-28 11:11:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t bielefeld", "alternativeName": "", "country": "de", "url": "http://www.uni-bielefeld.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://pub.uni-bielefeld.de/oai yes 12060 74086 +2261 {"name": "intellectual repository production ucla", "language": "en"} [{"acronym": "repositorio de producci\u00f3n intelectual ucla"}] http://repositorio.ucla.edu.ve/ institutional [] 2022-01-12 15:35:29 2011-08-31 12:12:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad centroccidental lisandro alvarado", "alternativeName": "", "country": "ve", "url": "http://www.ucla.edu.ve/", "identifier": [{"identifier": "https://ror.org/03qgg3111", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bibvirtual.ucla.edu.ve/cgi-win/be_oai.exe yes 1662 4196 +2318 {"name": "i\u0142awa biblioteka cyrfrowa (i\u0142awa digital library)", "language": "en"} [] http://ibc.ilawa.pl/dlibra governmental [] 2022-01-12 15:35:30 2011-10-11 13:13:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "i\u0142awa", "alternativeName": "", "country": "pl", "url": "http://www.ilawa.pl/_portal", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://ibc.ilawa.pl/dlibra/oai-pmh-repository.xml yes 0 3397 +2297 {"name": "knowledge repository of semi,cas", "language": "en"} [{"acronym": "semi openir"}] http://ir.semi.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 10:10:33 ["science", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.semi.ac.cn/casirgrid-oai/request yes 15413 +2323 {"name": "institutional repository of chengdu institute of biology, cas", "language": "en"} [{"acronym": "cib openir"}] http://210.75.237.14/ institutional [] 2022-01-12 15:35:30 2011-10-12 11:11:13 ["science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.75.237.14/casirgrid-oai/request yes 6111 +2298 {"name": "institutional repository of guangzhou institute of energy conversion, cas", "language": "en"} [{"acronym": "giec openir"}] http://ir.giec.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 10:10:40 ["science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.giec.ac.cn/casirgrid-oai/request yes 4553 +2308 {"name": "institutional repository of institute of earth environment, cas", "language": "en"} [{"acronym": "ieecas openir"}] http://ir.ieecas.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 13:13:59 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ieecas.cn/casirgrid-oai/request yes 3714 +2309 {"name": "institutional repository of xian institute of optics and precision mechanics, cas", "language": "en"} [{"acronym": "opt-ir"}] http://ir.opt.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 14:14:12 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.opt.ac.cn/casirgrid-oai/request yes 8126 +2307 {"name": "institutional repository of institute of coal chemistry, cas", "language": "en"} [{"acronym": "sxicc openir"}] http://ir.sxicc.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 13:13:31 ["science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.sxicc.ac.cn/casirgrid-oai/request yes 4780 +2347 {"name": "academica-e", "language": "en"} [] http://academica-e.unavarra.es/ institutional [] 2022-01-12 15:35:30 2011-11-15 11:11:45 ["science", "technology"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad p\u00fablica de navarra", "alternativeName": "", "country": "es", "url": "http://www.unavarra.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://academica-e.unavarra.es/oai/driver yes 6808 14003 +2266 {"name": "biodiversity heritage library oai repository", "language": "en"} [{"acronym": "bhl"}] http://www.biodiversitylibrary.org/ aggregating [] 2022-01-12 15:35:29 2011-09-07 16:16:00 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "biodiversity heritage library", "alternativeName": "", "country": "us", "url": "http://www.biodiversitylibrary.org/", "identifier": [{"identifier": "https://ror.org/04tqfmc02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.biodiversitylibrary.org/oai yes 121658 +2305 {"name": "institutional repository of dalian institute of chemical physics, cas", "language": "en"} [{"acronym": "dicp-ir"}] http://159.226.238.44/ institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:58 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://159.226.238.44/casirgrid-oai/request yes 34014 +2310 {"name": "institutional repository of institute of modern physics, cas", "language": "en"} [{"acronym": "imp openir"}] http://210.77.73.110/ institutional [] 2022-01-12 15:35:30 2011-10-10 14:14:18 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.77.73.110/casirgrid-oai/request yes 5505 +2299 {"name": "institutional repository of yantai institute of coastal zone research, cas", "language": "en"} [{"acronym": "yic-ir"}] http://ir.yic.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 10:10:57 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.yic.ac.cn/casirgrid-oai/request yes 4506 +2302 {"name": "institutional repository of northwest institute of plateau biology, cas", "language": "en"} [{"acronym": "nwipb openir"}] http://ir.nwipb.ac.cn institutional [] 2022-01-12 15:35:30 2011-10-10 11:11:31 ["science"] ["journal_articles", "theses_and_dissertations", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 5166 +2353 {"name": "biblioteca virtual de obras p\u00fablicas de andaluc\u00eda", "language": "en"} [{"acronym": "bvial"}] http://infodigital.opandalucia.es/bvial/ governmental [] 2022-01-12 15:35:31 2011-11-16 15:15:47 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "agencia de obra p\u00fablica de la junta de andaluc\u00eda", "alternativeName": "", "country": "es", "url": "http://www.aopandalucia.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1011 +2352 {"name": "oplex", "language": "en"} [] http://infodigital.opandalucia.es/oplex/ governmental [] 2022-01-12 15:35:31 2011-11-16 15:15:42 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "agencia de obra p\u00fablica de la junta de andaluc\u00eda", "alternativeName": "", "country": "es", "url": "http://www.aopandalucia.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1430 +2275 {"name": "pacific archive of digital data for learning and education", "language": "en"} [{"acronym": "paddle"}] http://www.paddle.usp.ac.fj/ institutional [] 2022-01-12 15:35:29 2011-09-15 12:12:43 ["social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "university of the south pacific", "alternativeName": "usp", "country": "fj", "url": "http://www.usp.ac.fj/", "identifier": [{"identifier": "https://ror.org/008stv805", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 602 +2328 {"name": "edoc.vifapol", "language": "de"} [] http://edoc.vifapol.de/opus disciplinary [] 2022-01-12 15:35:30 2011-10-19 10:10:05 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "hamburg state and university library", "alternativeName": "sub hamburg", "country": "de", "url": "http://www.sub.uni-hamburg.de", "identifier": [{"identifier": "https://ror.org/00pwcvj19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://edoc.vifapol.de/opus/oai2/oai2.php yes 4273 5482 +2351 {"name": "william & mary law school scholarship repository", "language": "en"} [] http://scholarship.law.wm.edu/ institutional [] 2022-01-12 15:35:30 2011-11-16 15:15:36 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "william & mary law school", "alternativeName": "", "country": "us", "url": "http://law.wm.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarship.law.wm.edu/do/oai/ yes 11401 14593 +2306 {"name": "institutional repository of ningbo institute of material technology & engineering, cas", "language": "en"} [{"acronym": "nimte openir"}] http://ir.nimte.ac.cn/ institutional [] 2022-01-12 15:35:30 2011-10-10 13:13:11 ["technology", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nimte.ac.cn/casirgrid-oai/request yes 4443 +2316 {"name": "institutional repository of institute of automation, cas", "language": "en"} [{"acronym": "sia openir"}] http://210.72.131.170/ institutional [] 2022-01-12 15:35:30 2011-10-11 13:13:29 ["technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://210.72.131.170/casirgrid-oai/request yes 18 21311 +2317 {"name": "institutional repository of institute of computing technology, cas", "language": "en"} [{"acronym": "ict openir"}] http://159.226.40.250/ institutional [] 2022-01-12 15:35:30 2011-10-11 13:13:41 ["technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662)", "alternativeName": "cas", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://159.226.40.250/casirgrid-oai/request yes 2375 +2279 {"name": "council of independent colleges historic campus architecture project", "language": "en"} [] http://puka.cs.waikato.ac.nz/cgi-bin/cic/library disciplinary [] 2022-01-12 15:35:29 2011-09-19 11:11:01 ["technology"] ["bibliographic_references", "other_special_item_types"] [{"name": "council of independent colleges", "alternativeName": "", "country": "us", "url": "http://www.cic.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 310 +2272 {"name": "fhl virtual libraries", "language": "en"} [{"acronym": "bibliotecas virtuales fhl"}] http://www.larramendi.es/en/cms/elemento.cmd?id=estaticos/paginas/bibliotecas_virtuales_fhl.html disciplinary [] 2022-01-12 15:35:29 2011-09-14 12:12:53 ["humanities", "science"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fundaci\u00f3n ignacio larramendi", "alternativeName": "", "country": "es", "url": "http://www.larramendi.es/i18n/estaticos/contenido.cmd?pagina=estaticos/inicio", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.larramendi.es/i18n/oai/oai_larramendi.es.cmd yes 734 12804 +2257 {"name": "centro de recursos para la ense\u00f1anza y el aprendizaje", "language": "en"} [{"acronym": "crea"}] http://www.crea.udg.mx/index.jsp institutional [] 2022-01-12 15:35:29 2011-08-31 11:11:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "software", "other_special_item_types"] [{"name": "universidad de guadalajara", "alternativeName": "", "country": "mx", "url": "http://www.udg.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://148.202.105.131/dspace-oai/request yes 0 249 +2244 {"name": "jagiellonian digital library", "language": "en"} [] http://jbc.bj.uj.edu.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 09:09:53 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "jagiellonian university", "alternativeName": "", "country": "pl", "url": "http://www.uj.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://jbc.bj.uj.edu.pl/dlibra/oai-pmh-repository.xml yes 0 142 +2250 {"name": "digital library of opole", "language": "en"} [] http://obc.opole.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 11:11:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "wojew\u00f3dzka biblioteka publiczna im. emanuela smo\u0142ki w opolu (voivodship public library in opole)", "alternativeName": "", "country": "pl", "url": "http://wbp.opole.pl/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://obc.opole.pl/dlibra/oai-pmh-repository.xml yes 0 1019 +2245 {"name": "krosnienska biblioteka cyfrowa (krosno digital library)", "language": "en"} [] http://www.kbc.krosno.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 10:10:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kro\u015bnie\u0144ska biblioteka publiczna (krosno public library)", "alternativeName": "", "country": "pl", "url": "http://www.kbp.krosno.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.kbc.krosno.pl/dlibra/oai-pmh-repository.xml yes 0 132 +2248 {"name": "nowohucka biblioteka cyfrowa (nowa huta digital library)", "language": "en"} [] http://cyfrowa.biblioteka.krakow.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-24 10:10:36 ["arts", "humanities"] ["journal_articles", "other_special_item_types"] [{"name": "nowohucka biblioteka publiczna w krakowie (nowa huta public library)", "alternativeName": "", "country": "pl", "url": "http://witryna.biblioteka.krakow.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cyfrowa.biblioteka.krakow.pl/dlibra/oai-pmh-repository.xml yes 0 2146 +2254 {"name": "mazowiecka biblioteka cyfrowa", "language": "en"} [] http://mbc.cyfrowemazowsze.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-25 10:10:19 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioteka publiczna m.st. warszawy \u2013 biblioteka g\u0142\u00f3wna wojew\u00f3dztwa mazowieckiego", "alternativeName": "", "country": "pl", "url": "http://www.koszykowa.pl/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://mbc.cyfrowemazowsze.pl/dlibra/oai-pmh-repository.xml yes 0 1254 +2321 {"name": "oapen library", "language": "en"} [] http://library.oapen.org aggregating [] 2022-01-12 15:35:30 2011-10-11 15:15:52 ["arts", "humanities", "science", "mathematics", "social sciences"] ["books_chapters_and_sections"] [{"name": "open access publishing in european networks", "alternativeName": "oapen", "country": "nl", "url": "http://www.oapen.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://library.oapen.org/oai/request?verb=listmetadataformats yes 0 18939 +2241 {"name": "elbl\u0105ska biblioteka cyfrowa (elbl\u0105g digital library)", "language": "en"} [] http://dlibra.bibliotekaelblaska.pl/dlibra institutional [] 2022-01-12 15:35:29 2011-08-23 14:14:14 ["arts", "science", "humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioteka elbl\u0105ska im. cypriana norwida", "alternativeName": "", "country": "pl", "url": "http://www.bibliotekaelblaska.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://dlibra.bibliotekaelblaska.pl/dlibra/oai-pmh-repository.xml yes 0 16423 +2269 {"name": "institutional knowledge at singapore management university", "language": "en"} [{"acronym": "ink"}] http://ink.library.smu.edu.sg/ institutional [] 2022-01-12 15:35:29 2011-09-14 10:10:23 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "singapore management university", "alternativeName": "", "country": "sg", "url": "http://www.smu.edu.sg/", "identifier": [{"identifier": "https://ror.org/050qmg959", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://library.smu.edu.sg/sites/library.smu.edu.sg/files/library/pdf/openaccesspolicysmu20190228.pdf", "type": "content"}, {"policy_url": "https://library.smu.edu.sg/sites/library.smu.edu.sg/files/library/pdf/openaccesspolicysmu20190228.pdf", "type": "submission"}] {"name": "other", "version": ""} http://ink.library.smu.edu.sg/do/oai/ yes 12019 25419 +2315 {"name": "university of khartoum repository", "language": "en"} [] http://khartoumspace.uofk.edu institutional [] 2022-01-12 15:35:30 2011-10-11 13:13:21 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of khartoum", "alternativeName": "", "country": "sd", "url": "https://www.uofk.edu", "identifier": [{"identifier": "https://ror.org/02jbayz55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://khartoumspace.uofk.edu/policies", "type": "metadata"}, {"policy_url": "http://khartoumspace.uofk.edu/policies", "type": "data"}, {"policy_url": "http://khartoumspace.uofk.edu/policies", "type": "content"}, {"policy_url": "http://khartoumspace.uofk.edu/policies", "type": "submission"}, {"policy_url": "http://khartoumspace.uofk.edu/policies", "type": "preservation"}] {"name": "dspace", "version": ""} http://khartoumspace.uofk.edu/oai/request yes 1497 8395 +2296 {"name": "uwa research repository", "language": "en"} [] http://research-repository.uwa.edu.au/ institutional [] 2022-01-12 15:35:30 2011-10-07 13:13:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of western australia", "alternativeName": "", "country": "au", "url": "http://www.uwa.edu.au/", "identifier": [{"identifier": "https://ror.org/047272k79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.universitypolicies.uwa.edu.au/search?method=document&id=up10%2f4", "type": "content"}] {"name": "digitool", "version": ""} http://repository.uwa.edu.au/oai-pub yes 0 60 +2263 {"name": "keele research repository", "language": "en"} [] http://eprints.keele.ac.uk/ institutional [] 2022-01-12 15:35:29 2011-09-07 10:10:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "keele university", "alternativeName": "", "country": "gb", "url": "http://www.keele.ac.uk/", "identifier": [{"identifier": "https://ror.org/00340yn33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.keele.ac.uk/search/terms.php", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.keele.ac.uk/cgi/oai2 yes 6428 8978 +2439 {"name": "repositorio institucional de la universidad de oviedo", "language": "en"} [{"acronym": "ruo"}] http://digibuo.uniovi.es/dspace/ institutional [] 2022-01-12 15:35:32 2012-03-13 16:16:07 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "universidad de oviedo", "alternativeName": "", "country": "es", "url": "http://www.uniovi.es/", "identifier": [{"identifier": "https://ror.org/006gksa02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digibuo.uniovi.es/oai/request yes 6372 49046 +2359 {"name": "the keep", "language": "en"} [] http://thekeep.eiu.edu/ institutional [] 2022-01-12 15:35:31 2011-11-30 14:14:32 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "eastern illinois university", "alternativeName": "", "country": "us", "url": "http://www.eiu.edu/", "identifier": [{"identifier": "https://ror.org/035z2ew45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 74051 +2411 {"name": "research at the university of wales, newport", "language": "en"} [] http://repository.newport.ac.uk/ institutional [] 2022-01-12 15:35:31 2012-02-06 10:10:25 ["arts", "humanities", "social sciences", "technology", "engineering"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of wales, newport", "alternativeName": "", "country": "gb", "url": "http://www.newport.ac.uk/pages/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.newport.ac.uk/dspace-oai/request yes 0 411 +2426 {"name": "academic research repository at the burgas free university", "language": "en"} [{"acronym": "\u043d\u0430\u0443\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0430\u043b \u043d\u0430 \u0431\u0443\u0440\u0433\u0430\u0441\u043a\u0438\u044f \u0441\u0432\u043e\u0431\u043e\u0434\u0435\u043d \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442"}] http://research.bfu.bg/ institutional [] 2022-01-12 15:35:32 2012-02-21 10:10:59 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "burgas free university", "alternativeName": "\u0431\u0443\u0440\u0433\u0430\u0441\u043a\u0438 \u0441\u0432\u043e\u0431\u043e\u0434\u0435\u043d \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "country": "bg", "url": "http://www.bfu.bg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 801 +2412 {"name": "constellation", "language": "en"} [] http://ojsserv.dom.edu:8080/xmlui/ aggregating [] 2022-01-12 15:35:31 2012-02-06 10:10:37 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "dominican university", "alternativeName": "", "country": "us", "url": "http://www.dom.edu/", "identifier": [{"identifier": "https://ror.org/01qww1p93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4243 5642 +2442 {"name": "swps universitys and cdvs repository", "language": "en"} [{"name": "repozytorium dorobku naukowego uniwersytetu swps i cdv", "language": "pl"}] http://aleph.swps.edu.pl/f/?func=file&file_name=find-b&local_base=swp03 institutional [] 2022-01-12 15:35:32 2012-03-26 10:10:21 ["arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "szko\u0142a wy\u017csza psychologii spo\u0142ecznej (university of social sciences and humanities)", "alternativeName": "swps", "country": "pl", "url": "http://www.swps.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 153 +2420 {"name": "virtual archive of polish armenians", "language": "en"} [] http://www.archiwum.ormianie.pl/ institutional [] 2022-01-12 15:35:31 2012-02-07 15:15:17 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "fundatorem fundacji kultury i dziedzictwa ormian polskich (foundation of culture and heritage of polish armenians)", "alternativeName": "", "country": "pl", "url": "http://www.dziedzictwo.ormianie.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.ormianie.pl/oai/ yes 0 10 +2450 {"name": "open archive of northern state medical university (arkhangelsk)", "language": "en"} [] http://oa.lib.nsmu.ru/ institutional [] 2022-01-12 15:35:32 2012-04-02 11:11:00 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "northern state medical university (arkhangelsk)", "alternativeName": "", "country": "ru", "url": "http://www.nsmu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 455 +2428 {"name": "digital library for ardabil university of medical sciences", "language": "en"} [] http://diglib.arums.ac.ir/greenstone/cgi-bin/library.cgi?a=p&p=home&l=fa&w=utf-8 disciplinary [] 2022-01-12 15:35:32 2012-02-22 09:09:32 ["health and medicine"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ardabil university of medical sciences", "alternativeName": "arums", "country": "ir", "url": "http://www.arums.ac.ir/fa/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://diglib.arums.ac.ir/greenstone/cgi-bin/oaiserver.cgi yes 0 37 +2454 {"name": "glim ir institution repository", "language": "en"} [{"name": "\u5b66\u7fd2\u9662\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://glim-re.repo.nii.ac.jp institutional [] 2022-01-12 15:35:32 2012-04-11 10:10:29 ["humanities", "arts", "health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the gakushuin", "alternativeName": "", "country": "jp", "url": "http://www.gakushuin.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://glim-re.repo.nii.ac.jp/oai yes 0 4003 +2419 {"name": "oxfam policy & practice", "language": "en"} [] http://oxfamilibrary.openrepository.com/oxfam/ institutional [] 2022-01-12 15:35:31 2012-02-07 14:14:04 ["humanities", "health and medicine", "science", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "oxfam gb", "alternativeName": "", "country": "gb", "url": "http://www.oxfam.org.uk/", "identifier": [{"identifier": "https://ror.org/022283x63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4347 +2413 {"name": "ub institutional repository", "language": "en"} [] https://ubir.buffalo.edu/xmlui institutional [] 2022-01-12 15:35:31 2012-02-06 10:10:48 ["humanities", "health and medicine", "social sciences", "technology"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university at buffalo", "alternativeName": "", "country": "us", "url": "http://www.buffalo.edu/", "identifier": [{"identifier": "https://ror.org/01y64my43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12925 +2390 {"name": "electronic theses and dissertations", "language": "en"} [{"acronym": "etds"}] http://www.library.ceu.hu/etd.html institutional [] 2022-01-12 15:35:31 2012-01-17 11:11:45 ["humanities", "science", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "central european university", "alternativeName": "ceu", "country": "hu", "url": "http://www.ceu.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 32000 +2355 {"name": "elogeo repository", "language": "en"} [] http://elogeo.nottingham.ac.uk/xmlui/ institutional [] 2022-01-12 15:35:31 2011-11-28 10:10:59 ["humanities", "science", "mathematics", "social sciences"] ["conference_and_workshop_papers", "learning_objects"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 69 +2372 {"name": "biblioteca digital educativa de la regi\u00f3n de murcia", "language": "en"} [] http://bibliotecadigital.educarm.es/bidimur/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion governmental [] 2022-01-12 15:35:31 2011-12-13 11:11:20 ["humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "comunidad aut\u00f3noma de la regi\u00f3n de murcia", "alternativeName": "", "country": "es", "url": "http://www.carm.es/web/pagina?idcontenido=1&idtipo=180", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.educarm.es/bidimur/i18n/oai/oai.cmd yes 146 633 +2434 {"name": "riksantikvarens vitenarkiv", "language": "en"} [] https://ra.brage.unit.no institutional [] 2022-01-12 15:35:32 2012-03-05 10:10:05 ["humanities", "technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "directorate for cultural heritage", "alternativeName": "", "country": "no", "url": "http://www.riksantikvaren.no/", "identifier": [{"identifier": "https://ror.org/02k1hw394", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ra.brage.unit.no/ra-oai/request yes 0 1150 +2430 {"name": "university of ghana digital collection", "language": "en"} [{"acronym": "ugspace"}] http://ugspace.ug.edu.gh/ institutional [] 2022-01-12 15:35:32 2012-02-28 16:16:17 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of ghana", "alternativeName": "", "country": "gh", "url": "http://www.ug.edu.gh/", "identifier": [{"identifier": "https://ror.org/01r22mr83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9007 +2427 {"name": "tukart", "language": "en"} [] http://tukart.ulb.tu-darmstadt.de/ institutional [] 2022-01-12 15:35:32 2012-02-21 11:11:07 ["humanities"] ["other_special_item_types"] [{"name": "technische universit\u00e4t darmstadt", "alternativeName": "tud", "country": "de", "url": "http://www.ulb.tu-darmstadt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://tukart.ulb.tu-darmstadt.de/cgi/oai2 yes 0 1261 +2433 {"name": "cora", "language": "en"} [] https://krus.brage.unit.no institutional [] 2022-01-12 15:35:32 2012-03-05 09:09:55 ["mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university college of norwegian correctional service", "alternativeName": "", "country": "no", "url": "http://www.krus.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://krus.brage.unit.no/krus-oai/request yes 0 100 +2358 {"name": "cwi institutional repository", "language": "en"} [] https://ir.cwi.nl institutional [] 2022-01-12 15:35:31 2011-11-30 14:14:25 ["mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "centrum wiskunde en informatica", "alternativeName": "cwi", "country": "nl", "url": "http://www.cwi.nl", "identifier": [{"identifier": "https://ror.org/00x7ekv49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ir.cwi.nl/oai yes 0 19746 +2357 {"name": "archivia", "language": "en"} [] http://dspace.unict.it/ institutional [] 2022-01-12 15:35:31 2011-11-30 13:13:59 ["science", "arts", "humanities", "mathematics", "social sciences", "health and medicine", "technology", "engineering"] ["theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di catania", "alternativeName": "", "country": "it", "url": "http://www.unict.it/", "identifier": [{"identifier": "https://ror.org/03a64bh57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3192 +2374 {"name": "repositorio de la universidad tecnol\u00f3gica equinoccial", "language": "en"} [{"acronym": "ute repositorio"}] http://repositorio.ute.edu.ec/ institutional [] 2022-01-12 15:35:31 2011-12-13 11:11:40 ["science", "arts", "social sciences", "health and medicine", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad technologica equinoccial", "alternativeName": "", "country": "ec", "url": "http://www.ute.edu.ec/", "identifier": [{"identifier": "https://ror.org/00dmdt028", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16965 +2437 {"name": "repositorio institucional saber ucv", "language": "en"} [] http://saber.ucv.ve/ institutional [] 2022-01-12 15:35:32 2012-03-08 15:15:21 ["science", "health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad central de venezuela", "alternativeName": "", "country": "ve", "url": "http://www.ucv.ve/", "identifier": [{"identifier": "https://ror.org/05kacnm89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 17616 +2438 {"name": "scholarship at parkland", "language": "en"} [{"acronym": "spark"}] http://spark.parkland.edu/ institutional [] 2022-01-12 15:35:32 2012-03-13 15:15:43 ["science", "humanities", "arts", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "parkland college", "alternativeName": "", "country": "us", "url": "http://www.parkland.edu/", "identifier": [{"identifier": "https://ror.org/05gf8nd15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://spark.parkland.edu/do/oai/ yes 1166 5777 +2356 {"name": "hasanuddin university repository", "language": "en"} [] http://repository.unhas.ac.id/ institutional [] 2022-01-12 15:35:31 2011-11-28 11:11:11 ["science", "humanities", "arts", "social sciences", "health and medicine", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hasanuddin university", "alternativeName": "", "country": "id", "url": "http://www.unhas.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unhas.ac.id/oai/request yes 26807 +2422 {"name": "university of surabaya institutional repository", "language": "en"} [{"acronym": "ubaya repository"}] http://repository.ubaya.ac.id/ institutional [] 2022-01-12 15:35:32 2012-02-08 13:13:59 ["science", "humanities", "mathematics", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of surabaya", "alternativeName": "", "country": "id", "url": "http://www.ubaya.ac.id/", "identifier": [{"identifier": "https://ror.org/013314927", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.ubaya.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.ubaya.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.ubaya.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.ubaya.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.ubaya.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.ubaya.ac.id/cgi/oai2 yes 28878 +2361 {"name": "reposit\u00f3rio institucional do uniceub", "language": "en"} [] http://repositorio.uniceub.br/ institutional [] 2022-01-12 15:35:31 2011-11-30 14:14:44 ["science", "humanities", "social sciences", "health and medicine", "technology", "engineering"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro universit\u00e1rio de bras\u00edlia", "alternativeName": "", "country": "br", "url": "http://www.uniceub.br/vestibular/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uniceub.br/oai/request yes 11193 +2456 {"name": "open knowledge repository", "language": "en"} [{"acronym": "okr"}] https://openknowledge.worldbank.org/ institutional [] 2022-01-12 15:35:32 2012-04-12 09:09:06 ["science", "humanities", "social sciences", "health and medicine"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "world bank", "alternativeName": "", "country": "us", "url": "http://www.worldbank.org/", "identifier": [{"identifier": "https://ror.org/00ae7jd04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 26696 +2371 {"name": "archenvimat", "language": "en"} [] http://www.archenvimat.pz.cnr.it/ institutional [] 2022-01-12 15:35:31 2011-12-07 15:15:13 ["science", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "cnr area di ricerca di potenza", "alternativeName": "cnr", "country": "it", "url": "http://www.pz.cnr.it/opencms/opencms/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 412 +2417 {"name": "hal-upmc", "language": "en"} [] http://hal.upmc.fr/ institutional [] 2022-01-12 15:35:31 2012-02-07 12:12:03 ["science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e9 pierre et marie curie", "alternativeName": "", "country": "fr", "url": "http://www.upmc.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} http://api.archives-ouvertes.fr/oai/hal yes 0 32583 +2432 {"name": "brage nmbu", "language": "en"} [] https://nmbu.brage.unit.no institutional [] 2022-01-12 15:35:32 2012-03-05 09:09:45 ["science", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "norwegian university of life sciences", "alternativeName": "", "country": "no", "url": "http://www.nmbu.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.umb.no/brage-en/article/about-copyright-and-the-content-of-brage", "type": "data"}] {"name": "dspace", "version": ""} https://nmbu.brage.unit.no/nmbu-oai/request yes 7162 +2366 {"name": "knowledge repository of institute of ihep,cas(ihep openir)", "language": "en"} [{"acronym": "ihep-ir"}] http://ir.ihep.ac.cn institutional [] 2022-01-12 15:35:31 2011-12-07 11:11:06 ["science", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "institute of high energy physics, chinese academy of sciences (\u4e2d\u56fd\u79d1\u5b66\u9662\u9ad8\u80fd\u7269\u7406\u7814\u7a76\u6240)(ihep),china", "alternativeName": "ihep, cas", "country": "cn", "url": "http://www.ihep.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dr.ihep.ac.cn/casirgrid-oai/request yes 54037 +2418 {"name": "athenaeum@uga", "language": "en"} [] http://athenaeum.libs.uga.edu/ institutional [] 2022-01-12 15:35:31 2012-02-07 13:13:21 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of georgia", "alternativeName": "", "country": "us", "url": "http://www.uga.edu/", "identifier": [{"identifier": "https://ror.org/00te3t702", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 19875 +2445 {"name": "archivo gr\u00e1fico institucional de la universidad de las palmas de gran canaria", "language": "en"} [{"acronym": "ulpgc"}] http://archivografico.ulpgc.es/cdm/landingpage/collection/agulpgc institutional [] 2022-01-12 15:35:32 2012-03-28 16:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "universidad de las palmas de gran canaria", "alternativeName": "ulpgc", "country": "es", "url": "http://www.ulpgc.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://biblioteca.ulpgc.es/avisomdc", "type": "data"}] {"name": "contentdm", "version": ""} yes 494 +2401 {"name": "campuce", "language": "en"} [] http://eprints.campuce.org/ disciplinary [] 2022-01-12 15:35:31 2012-01-24 14:14:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "campuce", "alternativeName": "", "country": "cm", "url": "http://eprints.campuce.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.campuce.org/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.campuce.org/policies.html", "type": "data"}, {"policy_url": "http://eprints.campuce.org/policies.html", "type": "content"}, {"policy_url": "http://eprints.campuce.org/policies.html", "type": "submission"}, {"policy_url": "http://eprints.campuce.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.campuce.org/cgi/oai2 yes 35 +2360 {"name": "e-resource repository of the university of latvia", "language": "en"} [] https://dspace.lu.lv/dspace/ institutional [] 2022-01-12 15:35:31 2011-11-30 14:14:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of latvia", "alternativeName": "", "country": "lv", "url": "http://www.lu.lv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.biblioteka.lu.lv/index.php?id=43715", "type": "content"}, {"policy_url": "http://www.biblioteka.lu.lv/index.php?id=43715", "type": "submission"}, {"policy_url": "http://www.biblioteka.lu.lv/index.php?id=43715", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspace.lu.lv/oai/request yes 36957 +2370 {"name": "digitale sammlungen - goethe-universit\u00e4t frankfurt am main", "language": "en"} [] http://sammlungen.ub.uni-frankfurt.de/ institutional [] 2022-01-12 15:35:31 2011-12-07 14:14:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "johann wolfgang goethe-universit\u00e4t am main", "alternativeName": "", "country": "de", "url": "http://www.uni-frankfurt.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://sammlungen.ub.uni-frankfurt.de/oai yes 90563 +2362 {"name": "electronic kerch state maritime technological university institutional repository", "language": "en"} [{"acronym": "eksmtu-repository"}] http://kgmtu.edu.ua/jspui/ institutional [] 2022-01-12 15:35:31 2011-11-30 14:14:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "\u043a\u0435\u0440\u0447\u0435\u043d\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043c\u043e\u0440\u0441\u043a\u043e\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "alternativeName": "", "country": "ua", "url": "http://www.kgmtu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1843 +2382 {"name": "repositorio institucional de la universidad de almer\u00eda (spain)", "language": "en"} [{"acronym": "riual"}] http://repositorio.ual.es/ institutional [] 2022-01-12 15:35:31 2012-01-12 12:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de almer\u00eda", "alternativeName": "", "country": "es", "url": "http://www.ual.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ual.es/oai/request yes 4538 +2443 {"name": "digital repository of luhansk taras shevchenko national university", "language": "en"} [{"acronym": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043b\u0443\u0433\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u0438\u043c\u0435\u043d\u0438 \u0442\u0430\u0440\u0430\u0441\u0430 \u0448\u0435\u0432\u0447\u0435\u043d\u043a\u043e"}] http://dspace.luguniv.edu.ua/xmlui/ institutional [] 2022-01-12 15:35:32 2012-03-26 10:10:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "luhansk taras shevchenko national university", "alternativeName": "\u043b\u0443\u0433\u0430\u043d\u0441\u043a\u0438\u0439 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0438\u043c\u0435\u043d\u0438 \u0442\u0430\u0440\u0430\u0441\u0430 \u0448\u0435\u0432\u0447\u0435\u043d\u043a\u043e", "country": "ua", "url": "http://luguniv.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.luguniv.edu.ua/oai/request yes 0 2405 +2404 {"name": "ridi - reposit\u00f3rio institucional digital do ibict", "language": "en"} [] http://repositorio.ibict.br/ institutional [] 2022-01-12 15:35:31 2012-02-01 15:15:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "alternativeName": "ibict", "country": "br", "url": "http://www.ibict.br/", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ibict.br/oai/request yes 737 +2354 {"name": "biblioteca digital de la universidad del valle", "language": "en"} [] http://bibliotecadigital.univalle.edu.co/ institutional [] 2022-01-12 15:35:31 2011-11-21 15:15:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad del valle", "alternativeName": "univalle", "country": "co", "url": "http://www.univalle.edu.co/estatica/index-desplegables.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecadigital.univalle.edu.co/oai/request yes 9968 +2436 {"name": "cardinal scholar", "language": "en"} [] http://cardinalscholar.bsu.edu/ institutional [] 2022-01-12 15:35:32 2012-03-07 10:10:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ball state university", "alternativeName": "bsu", "country": "us", "url": "http://www.bsu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cardinalscholar.bsu.edu/oai/request yes 26387 +2365 {"name": "repositorio comunidad alejandr\u00eda", "language": "en"} [] http://repository.poligran.edu.co/ institutional [] 2022-01-12 15:35:31 2011-12-07 10:10:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituci\u00f3n universitaria polit\u00e9cnico grancolombiano", "alternativeName": "", "country": "co", "url": "http://www.poligran.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 761 +2398 {"name": "uoc e-repository", "language": "en"} [] http://archive.cmb.ac.lk/research/ institutional [] 2022-01-12 15:35:31 2012-01-24 12:12:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of colombo", "alternativeName": "", "country": "lk", "url": "http://www.cmb.ac.lk/", "identifier": [{"identifier": "https://ror.org/02phn5242", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4214 +2376 {"name": "acubo (archivio aperto di ateneo)", "language": "en"} [] http://www.openarchive.univpm.it/jspui/ institutional [] 2022-01-12 15:35:31 2011-12-14 15:15:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 politecnica delle marche", "alternativeName": "", "country": "it", "url": "http://www.univpm.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openarchive.univpm.it/oai/request yes 0 1390 +2425 {"name": "south ural state university repository (\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0430\u0440\u0445\u0438\u0432 \u044e\u0443\u0440\u0433\u0443)", "language": "en"} [] http://dspace.susu.ac.ru/ institutional [] 2022-01-12 15:35:32 2012-02-21 10:10:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "learning_objects"] [{"name": "south ural state university (\u044e\u0436\u043d\u043e-\u0443\u0440\u0430\u043b\u044c\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442)", "alternativeName": "", "country": "ru", "url": "http://www.susu.ac.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.susu.ac.ru/oai/request yes 0 5282 +2410 {"name": "university of bedfordshire repository", "language": "en"} [] https://uobrep.openrepository.com institutional [] 2022-01-12 15:35:31 2012-02-06 10:10:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of bedfordshire", "alternativeName": "", "country": "gb", "url": "https://www.beds.ac.uk", "identifier": [{"identifier": "https://ror.org/0400avk24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uobrep.openrepository.com/oai yes 4388 +2431 {"name": "electronic archive khmelnitskiy national university", "language": "en"} [] http://lib.khnu.km.ua:8080/jspui/?locale=uk institutional [] 2022-01-12 15:35:32 2012-03-01 14:14:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "khmelnitskiy national university", "alternativeName": "", "country": "ua", "url": "http://khnu.km.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lib.khnu.km.ua:8080/oai yes 0 3394 +2441 {"name": "repositorio digital universidad don bosco", "language": "en"} [] http://rd.udb.edu.sv/ institutional [] 2022-01-12 15:35:32 2012-03-26 09:09:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad don bosco", "alternativeName": "", "country": "sv", "url": "http://www.udb.edu.sv/udb/index.php", "identifier": [{"identifier": "https://ror.org/01k8z5j70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1224 +2363 {"name": "san andr\u00e9s digital repository", "language": "en"} [{"name": "repositorio digital san andr\u00e9s", "language": "es"}] http://repositorio.udesa.edu.ar institutional [] 2022-01-12 15:35:31 2011-11-30 15:15:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "university of san andr\u00e9s", "alternativeName": "udesa", "country": "ar", "url": "https://www.udesa.edu.ar", "identifier": [{"identifier": "https://ror.org/04f7h3b65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udesa.edu.ar/oai/request yes 6 8862 +2424 {"name": "escriptorium", "language": "en"} [] http://escriptorium.univer.kharkov.ua/ institutional [] 2022-01-12 15:35:32 2012-02-20 12:12:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "kharkiv national university", "alternativeName": "v.n. karazin", "country": "ua", "url": "http://www.univer.kharkov.ua/", "identifier": [{"identifier": "https://ror.org/03ftejk10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://escriptorium.univer.kharkov.ua/oai/request yes 2 9204 +2447 {"name": "biblioteca digital real academia de la historia", "language": "en"} [] http://bibliotecadigital.rah.es/dgbrah/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion institutional [] 2022-01-12 15:35:32 2012-03-30 09:09:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "real academia de la historia", "alternativeName": "", "country": "es", "url": "http://www.rah.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.rah.es/dgbrah/i18n/oai/oai.cmd yes 0 23009 +2397 {"name": "biblioteca virtual silverio lanza", "language": "en"} [] http://bibliotecadigital.getafe.es/bvgetafe/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion governmental [] 2022-01-12 15:35:31 2012-01-24 12:12:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "ayuntamiento de getafe", "alternativeName": "", "country": "es", "url": "http://www.getafe.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.getafe.es/bvgetafe/i18n/oai/oai_bibliotecadigital.getafe.es.cmd yes 0 11 +2379 {"name": "upn jatim repository", "language": "en"} [] http://eprints.upnjatim.ac.id/ institutional [] 2022-01-12 15:35:31 2012-01-04 15:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "upn jatim university", "alternativeName": "", "country": "id", "url": "http://www.upnjatim.ac.id/", "identifier": [{"identifier": "https://ror.org/05sbm1c04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.upnjatim.ac.id/cgi/oai2 yes 6639 +2387 {"name": "etheses - a saurashtra university library service", "language": "en"} [] http://etheses.saurashtrauniversity.edu/ institutional [] 2022-01-12 15:35:31 2012-01-16 15:15:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "saurashtra university", "alternativeName": "", "country": "in", "url": "http://www.saurashtrauniversity.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://etheses.saurashtrauniversity.edu/policies.html", "type": "metadata"}, {"policy_url": "http://etheses.saurashtrauniversity.edu/policies.html", "type": "data"}, {"policy_url": "http://etheses.saurashtrauniversity.edu/policies.html", "type": "content"}, {"policy_url": "http://etheses.saurashtrauniversity.edu/policies.html", "type": "submission"}, {"policy_url": "http://etheses.saurashtrauniversity.edu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://etheses.saurashtrauniversity.edu/cgi/oai2 yes 1064 +2423 {"name": "university of oulu repository - jultika", "language": "en"} [] http://jultika.oulu.fi/ institutional [] 2022-01-12 15:35:32 2012-02-13 12:12:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "oulun yliopisto", "alternativeName": "", "country": "fi", "url": "http://www.oulu.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://jultika.oulu.fi/oai/server yes 5450 +2399 {"name": "rmit research repository", "language": "en"} [] http://researchbank.rmit.edu.au/ institutional [] 2022-01-12 15:35:31 2012-01-24 13:13:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "rmit university", "alternativeName": "", "country": "au", "url": "http://www.rmit.edu.au/", "identifier": [{"identifier": "https://ror.org/04ttjf776", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} http://researchbank.rmit.edu.au/oai.php yes 6231 58831 +2380 {"name": "diginole commons: virtual repository for electronic scholarship", "language": "en"} [{"acronym": "vires"}] http://diginole.lib.fsu.edu/ institutional [] 2022-01-12 15:35:31 2012-01-04 16:16:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "florida state university", "alternativeName": "", "country": "us", "url": "http://www.fsu.edu/", "identifier": [{"identifier": "https://ror.org/05g3dte14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 64818 +2396 {"name": "scholarworks at wmu", "language": "en"} [] http://scholarworks.wmich.edu/ institutional [] 2022-01-12 15:35:31 2012-01-24 12:12:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "western michigan university", "alternativeName": "", "country": "us", "url": "http://www.wmich.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.wmich.edu/do/oai/ yes 7746 11607 +2457 {"name": "digital commons @brockport", "language": "en"} [] http://digitalcommons.brockport.edu/ institutional [] 2022-01-12 15:35:32 2012-04-16 10:10:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "college at brockport, state university of new york", "alternativeName": "", "country": "us", "url": "http://www.brockport.edu/", "identifier": [{"identifier": "https://ror.org/0306aeb62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 6889 +2458 {"name": "digitalcommons@shu", "language": "en"} [] http://digitalcommons.sacredheart.edu/ institutional [] 2022-01-12 15:35:32 2012-04-16 10:10:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "sacred heart university", "alternativeName": "", "country": "us", "url": "http://www.sacredheart.edu/", "identifier": [{"identifier": "https://ror.org/0085j8z36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4553 +2421 {"name": "publikationer fr\u00e5n sophiahemmets h\u00f6gskola", "language": "en"} [] http://shh.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:35:32 2012-02-07 16:16:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "sophiahemmet university college", "alternativeName": "", "country": "se", "url": "http://www.sophiahemmethogskola.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://shh.diva-portal.org/dice/oai yes 0 1359 +2367 {"name": "publication management", "language": "en"} [{"acronym": "pumalab"}] http://pumalab.isti.cnr.it/index.php/it aggregating [] 2022-01-12 15:35:31 2011-12-07 11:11:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "institute of information science and technology "a. faedo"", "alternativeName": "cnr-isti", "country": "it", "url": "http://www.isti.cnr.it/", "identifier": [{"identifier": "https://ror.org/05kacka20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://pumaoai.isti.cnr.it/openoai2.php yes 3135 6822 +2446 {"name": "yanka kupala state university of grodno publications (grsu publications)", "language": "en"} [{"acronym": "\u0442\u0440\u0443\u0434\u044b \u0443\u0447\u0451\u043d\u044b\u0445 \u0433\u0440\u0433\u0443 \u0438\u043c.\u044f.\u043a\u0443\u043f\u0430\u043b\u044b. \u043f\u043e\u043b\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 (grsu publications)"}] http://www.elib.grsu.by/ institutional [] 2022-01-12 15:35:32 2012-03-30 09:09:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "yanka kupala state university of grodno", "alternativeName": "grsu", "country": "by", "url": "http://www.grsu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 7061 +2400 {"name": "senshu university institutional repository : si-box", "language": "en"} [{"acronym": "si-box"}, {"name": "\u5c02\u4fee\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea : si-box", "language": "ja"}] http://ir.acc.senshu-u.ac.jp/ institutional [] 2022-01-12 15:35:31 2012-01-24 13:13:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "senshu university", "alternativeName": "", "country": "jp", "url": "http://www.senshu-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03jzxkg37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ir.acc.senshu-u.ac.jp/oai yes 8928 +2455 {"name": "tarnobrzeska biblioteka cyfrowa", "language": "en"} [] http://tbc.tarnobrzeg.pl/dlibra institutional [] 2022-01-12 15:35:32 2012-04-11 10:10:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "miejska biblioteka publiczna im. dr. micha\u0142a marczaka w tarnobrzegu", "alternativeName": "", "country": "pl", "url": "http://mbp.tarnobrzeg.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://tbc.tarnobrzeg.pl/dlibra/oai-pmh-repository.xml yes 0 2010 +2435 {"name": "knowledge repository of hfcas (\u5408\u80a5\u7269\u8d28\u79d1\u5b66\u7814\u7a76\u9662)", "language": "en"} [{"acronym": "hf-ir"}] http://ir.hfcas.ac.cn/ institutional [] 2022-01-12 15:35:32 2012-03-07 10:10:38 ["science", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "chinese academy of science (\u4e2d\u56fd\u79d1\u5b66\u9662) (cas)", "alternativeName": "", "country": "cn", "url": "http://www.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9404 +2391 {"name": "electronic national university of food technologies institutional repository", "language": "en"} [{"acronym": "enuftir"}] http://dspace.nuft.edu.ua/jspui/ institutional [] 2022-01-12 15:35:31 2012-01-19 12:12:19 ["science", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "national university of food technologies", "alternativeName": "", "country": "ua", "url": "http://www.nuft.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nuft.edu.ua/oai/request yes 0 26612 +2385 {"name": "nasa technical reports server", "language": "en"} [{"acronym": "ntrs"}] http://ntrs.nasa.gov/search.jsp governmental [] 2022-01-12 15:35:31 2012-01-16 09:09:35 ["science", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "national aeronautics and space administration", "alternativeName": "nasa", "country": "us", "url": "http://www.nasa.gov/", "identifier": [{"identifier": "https://ror.org/027ka1x80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ntrs.nasa.gov/oai yes 252456 607148 +2394 {"name": "ipacs electronic library", "language": "en"} [] http://lib.physcon.ru/ institutional [] 2022-01-12 15:35:31 2012-01-20 16:16:25 ["science"] ["conference_and_workshop_papers"] [{"name": "international physics and control society", "alternativeName": "ipacs", "country": "ru", "url": "http://physcon.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2403 {"name": "repositorio institucional digital del ieo", "language": "en"} [{"acronym": "e-ieo"}] http://www.repositorio.ieo.es/e-ieo/ institutional [] 2022-01-12 15:35:31 2012-02-01 10:10:11 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto espa\u00f1ol de oceanograf\u00eda", "alternativeName": "", "country": "es", "url": "http://www.ieo.es/inicial.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.ieo.es/oai/request yes 9940 +2444 {"name": "dspace at iucaa", "language": "en"} [] http://repository.iucaa.in:8080/jspui/ institutional [] 2022-01-12 15:35:32 2012-03-28 15:15:40 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "inter-university centre for astronomy and astrophysics", "alternativeName": "iucaa", "country": "in", "url": "http://www.iucaa.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.iucaa.in:8080/oai/request yes 0 3912 +2416 {"name": "theses@asb", "language": "en"} [] http://pure.au.dk/portal-asb-student/en/ institutional [] 2022-01-12 15:35:31 2012-02-06 11:11:56 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "university of aarhus", "alternativeName": "", "country": "dk", "url": "http://www.au.dk/en", "identifier": [{"identifier": "https://ror.org/01aj84f44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes 7442 +2405 {"name": "ceacs repository", "language": "en"} [] http://digital.march.es/ceacs-ir/ institutional [] 2022-01-12 15:35:31 2012-02-01 16:16:18 ["social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fundaci\u00f3n juan march", "alternativeName": "", "country": "es", "url": "http://www.march.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digital.march.es/ceacs-ir/oai2 yes 100 2371 +2440 {"name": "museo virtual del seguro", "language": "en"} [] http://www.mapfre.com/museoseg/es/estaticos/contenido.cmd?pagina=indice disciplinary [] 2022-01-12 15:35:32 2012-03-15 10:10:54 ["social sciences"] ["other_special_item_types"] [{"name": "fundaci\u00f3n mapfre", "alternativeName": "", "country": "es", "url": "http://www.mapfre.com/fundacion/es/home-cs-seguro.shtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.mapfre.com/museoseg/i18n/oai/oai.cmd yes 0 1133 +2407 {"name": "open fhr archive", "language": "en"} [] http://www.waterbouwkundiglaboratorium.be/en/open-fhr-archive institutional [] 2022-01-12 15:35:31 2012-02-02 10:10:54 ["technology"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "waterbouwkundig laboratorium (flanders hydraulics research)", "alternativeName": "", "country": "be", "url": "http://www.waterbouwkundiglaboratorium.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 1516 +2402 {"name": "repository of belarusian national technical university (bntu)", "language": "en"} [] https://rep.bntu.by institutional [] 2022-01-12 15:35:31 2012-01-26 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "belarusian national technical university", "alternativeName": "", "country": "by", "url": "http://www.bntu.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://rep.bntu.by/bitstream/handle/data/57773/repository%20of%20bntu%20policies.pdf?sequence=1&isallowed=y", "type": "metadata"}, {"policy_url": "https://rep.bntu.by/bitstream/handle/data/57773/repository%20of%20bntu%20policies.pdf?sequence=1&isallowed=y", "type": "data"}, {"policy_url": "https://rep.bntu.by/bitstream/handle/data/57773/repository%20of%20bntu%20policies.pdf?sequence=1&isallowed=y", "type": "content"}, {"policy_url": "https://rep.bntu.by/bitstream/handle/data/57773/repository%20of%20bntu%20policies.pdf?sequence=1&isallowed=y", "type": "submission"}, {"policy_url": "https://rep.bntu.by/bitstream/handle/data/57773/repository%20of%20bntu%20policies.pdf?sequence=1&isallowed=y", "type": "preservation"}] {"name": "dspace", "version": ""} https://rep.bntu.by/oai/request yes 25849 77184 +2389 {"name": "lekythos", "language": "en"} [] http://lekythos.library.ucy.ac.cy/ institutional [] 2022-01-12 15:35:31 2012-01-16 16:16:53 ["humanities", "arts", "social sciences", "technology"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of cyprus", "alternativeName": "", "country": "cy", "url": "http://www.ucy.ac.cy/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lekythos.library.ucy.ac.cy/oai/request yes 2881 13085 +2368 {"name": "biblioteca digital de la comunidad de madrid", "language": "en"} [] http://www.bibliotecavirtualmadrid.org/bvmadrid_publicacion/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion governmental [] 2022-01-12 15:35:31 2011-12-07 14:14:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "comunidad de madrid", "alternativeName": "", "country": "es", "url": "http://www.madrid.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.bibliotecavirtualmadrid.org/bvmadrid_publicacion/i18n/oai/oai.cmd yes 0 67547 +2373 {"name": "reposit\u00f3rio institucional da ufsc", "language": "en"} [] http://repositorio.ufsc.br/ institutional [] 2022-01-12 15:35:31 2011-12-13 11:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "universidade federal de santa catarina", "alternativeName": "ufsc", "country": "br", "url": "http://www.ufsc.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ufsc.br/oai/request yes 0 106637 +2429 {"name": "ru-econ\u00f3micas", "language": "en"} [] http://ru.iiec.unam.mx/ institutional [] 2022-01-12 15:35:32 2012-02-28 12:12:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "metadata"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "data"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "content"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "submission"}, {"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://ru.iiec.unam.mx/cgi/oai2 yes 3066 +2460 {"name": "kenyatta university institutional repository", "language": "en"} [] http://ir-library.ku.ac.ke/ institutional [] 2022-01-12 15:35:32 2012-04-17 10:10:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "kenyatta university", "alternativeName": "", "country": "ke", "url": "http://www.ku.ac.ke/", "identifier": [{"identifier": "https://ror.org/05p2z3x69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://library.ku.ac.ke/wp-content/uploads/2013/01/library-ir-policy.pdf", "type": "metadata"}, {"policy_url": "http://library.ku.ac.ke/wp-content/uploads/2013/01/library-ir-policy.pdf", "type": "data"}, {"policy_url": "http://library.ku.ac.ke/wp-content/uploads/2013/01/library-ir-policy.pdf", "type": "content"}, {"policy_url": "http://library.ku.ac.ke/wp-content/uploads/2013/01/library-ir-policy.pdf", "type": "submission"}, {"policy_url": "http://library.ku.ac.ke/wp-content/uploads/2013/01/library-ir-policy.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://ir-library.ku.ac.ke/oai/request yes 275 300 +2452 {"name": "digitalcommons@lesley", "language": "en"} [] https://digitalcommons.lesley.edu/ institutional [] 2022-01-12 15:35:32 2012-04-04 11:11:32 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "lesley university", "alternativeName": "", "country": "us", "url": "http://www.lesley.edu/", "identifier": [{"identifier": "https://ror.org/013ennz48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.lesley.edu/do/oai/ yes 1 41 +2451 {"name": "open knowledge environment of the caribbean", "language": "en"} [{"acronym": "okcarib"}] http://okcarib.net/ disciplinary [] 2022-01-12 15:35:32 2012-04-02 11:11:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "caribbean academy of sciences", "alternativeName": "", "country": "jm", "url": "http://www.caswi.org.jm/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://okcarib.net/oai/request yes 0 8 +2378 {"name": "dokumentenserver der akademie der wissenschaften zu g\u00f6ttingen", "language": "en"} [{"acronym": "res doctae"}] http://adw-goe.de/startseite/ institutional [] 2022-01-12 15:35:31 2011-12-14 16:16:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "akademie der wissenschaften zu g\u00f6ttingen", "alternativeName": "", "country": "de", "url": "http://adw-goe.de/", "identifier": [{"identifier": "https://ror.org/04hsa7a08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rep.adw-goe.de/guides", "type": "content"}, {"policy_url": "http://rep.adw-goe.de/guides", "type": "preservation"}] {"name": "dspace", "version": ""} http://rep.adw-goe.de/oai/request yes 2 1728 +2364 {"name": "smu digital repository", "language": "en"} [] http://digitalrepository.smu.edu/ institutional [] 2022-01-12 15:35:31 2011-11-30 16:16:03 ["science", "arts", "humanities", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "southern methodist university", "alternativeName": "", "country": "us", "url": "http://www.smu.edu/", "identifier": [{"identifier": "https://ror.org/042tdr378", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalrepository.smu.edu/cgi/viewcontent.cgi?article=1000&context=libraries_cul_admin", "type": "content"}, {"policy_url": "http://digitalrepository.smu.edu/cgi/viewcontent.cgi?article=1000&context=libraries_cul_admin", "type": "submission"}, {"policy_url": "http://digitalrepository.smu.edu/cgi/viewcontent.cgi?article=1000&context=libraries_cul_admin", "type": "preservation"}] {"name": "other", "version": ""} http://digitalrepository.smu.edu/do/oai/ yes 0 15125 +2375 {"name": "computer science publication server", "language": "en"} [] http://e-archive.informatik.uni-koeln.de/ institutional [] 2022-01-12 15:35:31 2011-12-13 11:11:58 ["mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "universit\u00e4t zu k\u00f6ln", "alternativeName": "usb k\u00f6ln", "country": "de", "url": "http://www.uni-koeln.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://e-archive.informatik.uni-koeln.de/policies.html", "type": "metadata"}, {"policy_url": "http://e-archive.informatik.uni-koeln.de/policies.html", "type": "data"}, {"policy_url": "http://e-archive.informatik.uni-koeln.de/policies.html", "type": "content"}, {"policy_url": "http://e-archive.informatik.uni-koeln.de/policies.html", "type": "submission"}, {"policy_url": "http://e-archive.informatik.uni-koeln.de/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://e-archive.informatik.uni-koeln.de/cgi/oai2 yes 226 817 +2415 {"name": "binus university repository", "language": "en"} [] http://eprints.binus.ac.id/ institutional [] 2022-01-12 15:35:31 2012-02-06 11:11:19 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "binus university", "alternativeName": "", "country": "id", "url": "http://binus.ac.id/", "identifier": [{"identifier": "https://ror.org/03zmf4s77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.binus.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.binus.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.binus.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.binus.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.binus.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.binus.ac.id/cgi/oai2 yes 15135 26717 +2381 {"name": "huveta hungarian veterinary archive", "language": "en"} [{"acronym": "huveta"}] http://huveta.hu institutional [] 2022-01-12 15:35:31 2012-01-05 11:11:49 ["science"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of veterinary medicine budapest", "alternativeName": "", "country": "hu", "url": "http://www.univet.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://huveta.hu/documents/metadata_policy.txt", "type": "metadata"}, {"policy_url": "http://huveta.hu/documents/metadata_policy.txt", "type": "data"}, {"policy_url": "http://huveta.hu/documents/metadata_policy.txt", "type": "content"}, {"policy_url": "http://huveta.hu/documents/metadata_policy.txt", "type": "submission"}, {"policy_url": "http://huveta.hu/documents/metadata_policy.txt", "type": "preservation"}] {"name": "dspace", "version": ""} http://huveta.hu/oai/request yes 0 100 +2386 {"name": "oceanrep", "language": "en"} [] http://oceanrep.geomar.de/ institutional [] 2022-01-12 15:35:31 2012-01-16 11:11:05 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "helmholtz-zentrum f\u00fcr ozeanforschung kiel", "alternativeName": "geomar", "country": "de", "url": "http://www.geomar.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://oceanrep.geomar.de/policies.html", "type": "metadata"}, {"policy_url": "http://oceanrep.geomar.de/policies.html", "type": "data"}, {"policy_url": "http://oceanrep.geomar.de/policies.html", "type": "content"}, {"policy_url": "http://oceanrep.geomar.de/policies.html", "type": "submission"}, {"policy_url": "http://oceanrep.geomar.de/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://oceanrep.geomar.de/cgi/oai2 yes 12066 38011 +2377 {"name": "lshtm research online", "language": "en"} [] http://researchonline.lshtm.ac.uk/ institutional [] 2022-01-12 15:35:31 2011-12-14 15:15:58 ["humanities", "health and medicine", "science", "mathematics", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "london school of hygiene and tropical medicine", "alternativeName": "", "country": "gb", "url": "http://www.lshtm.ac.uk/", "identifier": [{"identifier": "https://ror.org/00a0jsq62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchonline.lshtm.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://researchonline.lshtm.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://researchonline.lshtm.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://researchonline.lshtm.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://researchonline.lshtm.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchonline.lshtm.ac.uk/cgi/oai2 yes 30965 54534 +2453 {"name": "federal university of technology, akure", "language": "en"} [{"acronym": "futaspace"}] http://196.220.128.81:8080/xmlui/ institutional [] 2021-10-18 07:56:58 2012-04-11 10:10:09 [] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "the federal university of technology, akure", "alternativeName": "", "country": "ng", "url": "https://www.futa.edu.ng", "identifier": [{"identifier": "https://ror.org/01pvx8v81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2346 +2414 {"name": "shdl@mmu digital repository", "language": "en"} [] http://shdl.mmu.edu.my/ institutional [] 2022-01-12 15:35:31 2012-02-06 10:10:59 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "multimedia university", "alternativeName": "", "country": "my", "url": "http://www.mmu.edu.my/", "identifier": [{"identifier": "https://ror.org/04zrbnc33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "hhttp://shdl.mmu.edu.my/policies.html", "type": "metadata"}, {"policy_url": "http://shdl.mmu.edu.my/policies.html", "type": "data"}, {"policy_url": "http://shdl.mmu.edu.my/policies.html", "type": "content"}, {"policy_url": "http://shdl.mmu.edu.my/policies.html", "type": "submission"}, {"policy_url": "http://shdl.mmu.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://shdl.mmu.edu.my/cgi/oai2 yes 17 7339 +2409 {"name": "university of essex research repository", "language": "en"} [] http://repository.essex.ac.uk/ institutional [] 2022-01-12 15:35:31 2012-02-06 10:10:06 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of essex", "alternativeName": "", "country": "gb", "url": "http://www.essex.ac.uk/", "identifier": [{"identifier": "https://ror.org/02nkf1q06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://endeavour.essex.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://endeavour.essex.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://endeavour.essex.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://endeavour.essex.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://endeavour.essex.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.essex.ac.uk/cgi/oai2 yes 9262 20871 +2392 {"name": "pefprints", "language": "en"} [] http://pefprints.pef.uni-lj.si/ institutional [] 2022-01-12 15:35:31 2012-01-19 12:12:32 ["arts", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "univerza v ljubljani", "alternativeName": "", "country": "si", "url": "http://www.uni-lj.si/", "identifier": [{"identifier": "https://ror.org/05njb9z20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://pefprints.pef.uni-lj.si/policies.html", "type": "metadata"}, {"policy_url": "http://pefprints.pef.uni-lj.si/policies.html", "type": "data"}, {"policy_url": "http://pefprints.pef.uni-lj.si/policies.html", "type": "content"}, {"policy_url": "http://pefprints.pef.uni-lj.si/policies.html", "type": "submission"}, {"policy_url": "http://pefprints.pef.uni-lj.si/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://pefprints.pef.uni-lj.si/cgi/oai2 yes 13 6260 +2408 {"name": "sunderland university institutional repository", "language": "en"} [{"acronym": "sure"}] http://sure.sunderland.ac.uk/ institutional [] 2022-01-12 15:35:31 2012-02-06 09:09:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of sunderland", "alternativeName": "", "country": "gb", "url": "http://www.sunderland.ac.uk/", "identifier": [{"identifier": "https://ror.org/04p55hr04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://sure.sunderland.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://sure.sunderland.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://sure.sunderland.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://sure.sunderland.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://sure.sunderland.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://sure.sunderland.ac.uk/cgi/oai2 yes 1420 8886 +2384 {"name": "sussex research online", "language": "en"} [] http://sro.sussex.ac.uk/ institutional [] 2022-01-12 15:35:31 2012-01-13 13:13:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents"] [{"name": "university of sussex", "alternativeName": "", "country": "gb", "url": "http://www.sussex.ac.uk/", "identifier": [{"identifier": "https://ror.org/00ayhx656", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.sussex.ac.uk/library/research/sro/policies", "type": "metadata"}, {"policy_url": "https://www.sussex.ac.uk/webteam/gateway/file.php?name=sussex-research-online-policy-march-2014.pdf&site=269", "type": "data"}, {"policy_url": "http://www.sussex.ac.uk/library/research/sro/policies", "type": "content"}, {"policy_url": "http://www.sussex.ac.uk/library/research/sro/policies", "type": "submission"}, {"policy_url": "https://www.sussex.ac.uk/webteam/gateway/file.php?name=sussex-research-online---takedown-policy.pdf&site=269", "type": "preservation"}] {"name": "eprints", "version": ""} http://sro.sussex.ac.uk/cgi/oai2 yes 15468 55340 +2459 {"name": "edoc", "language": "en"} [] http://edoc.unibas.ch/ institutional [] 2022-01-12 15:35:32 2012-04-16 10:10:56 ["science", "arts", "humanities", "mathematics", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e4t basel", "alternativeName": "", "country": "ch", "url": "http://www.unibas.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ub.unibas.ch/ub-hauptbibliothek/dienstleistungen/publizieren/edoc/urheberrecht/", "type": "metadata"}, {"policy_url": "http://www.ub.unibas.ch/ub-hauptbibliothek/dienstleistungen/publizieren/edoc/urheberrecht/", "type": "data"}, {"policy_url": "http://www.ub.unibas.ch/ub-hauptbibliothek/dienstleistungen/publizieren/edoc/", "type": "content"}, {"policy_url": "http://www.ub.unibas.ch/ub-hauptbibliothek/dienstleistungen/publizieren/edoc/anleitung/", "type": "submission"}] {"name": "eprints", "version": ""} http://edoc.unibas.ch/cgi/oai2 yes 13273 71992 +2393 {"name": "madoc (university of mannheims institutional repository)", "language": "en"} [{"name": "madoc (institutionelles repositorium der universit\u00e4t mannheim)", "language": "de"}] http://madoc.bib.uni-mannheim.de institutional [] 2022-01-12 15:35:31 2012-01-19 12:12:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t mannheim", "alternativeName": "", "country": "de", "url": "http://www.uni-mannheim.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ub-madoc.bib.uni-mannheim.de/policies.html", "type": "metadata"}, {"policy_url": "https://ub-madoc.bib.uni-mannheim.de/policies.html", "type": "data"}, {"policy_url": "https://ub-madoc.bib.uni-mannheim.de/terms.html.", "type": "data"}, {"policy_url": "https://ub-madoc.bib.uni-mannheim.de/policies.html", "type": "content"}, {"policy_url": "https://ub-madoc.bib.uni-mannheim.de/policies.html", "type": "submission"}, {"policy_url": "https://ub-madoc.bib.uni-mannheim.de/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://madoc.bib.uni-mannheim.de/cgi/oai2 yes 5574 43943 +2527 {"name": "hochschulschriftenserver der p\u00e4dagogischen hochschule karlsruhe", "language": "en"} [{"acronym": "opus-ph karlsruhe"}] https://phka.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 09:51:49 ["arts", "humanities", "health and medicine", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "p\u00e4dagogischen hochschule karlsruhe", "alternativeName": "", "country": "de", "url": "http://www.ph-karlsruhe.de/", "identifier": [{"identifier": "https://ror.org/01t1kq612", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://phka.bsz-bw.de/oai yes 23 108 +2567 {"name": "digital repository - intellectual funds of bukovynian state medical university", "language": "en"} [{"name": "\u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 - \u0456\u043d\u0442\u0435\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u0456 \u0444\u043e\u043d\u0434\u0438 \u0431\u0443\u043a\u043e\u0432\u0438\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u043c\u0435\u0434\u0438\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443", "language": "uk"}] http://dspace.bsmu.edu.ua:8080/xmlui institutional [] 2022-01-12 15:35:34 2012-09-21 13:50:37 ["arts", "humanities", "health and medicine", "science", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "\u0431\u0443\u043a\u043e\u0432\u0438\u043d\u0441\u044c\u043a\u0438\u0439 \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u0438\u0439 \u043c\u0435\u0434\u0438\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 (bukovina state medical university)", "alternativeName": "", "country": "ua", "url": "http://www.bsmu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bsmu.edu.ua:8080/oai/request yes 4136 15650 +2517 {"name": "unf digital commons", "language": "en"} [] http://digitalcommons.unf.edu/ institutional [] 2022-01-12 15:35:33 2012-07-13 11:51:35 ["arts", "humanities", "science", "social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of north florida", "alternativeName": "unf", "country": "us", "url": "http://www.unf.edu/", "identifier": [{"identifier": "https://ror.org/01j903a45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.unf.edu/cgi/oai2.cgi yes 16516 +2508 {"name": "firsttech institutional repository", "language": "en"} [] http://repository.nkfust.edu.tw/ir/ institutional [] 2022-01-12 15:35:33 2012-07-03 10:08:38 ["arts", "humanities", "social sciences", "technology", "engineering"] ["bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "national kaohsiung first university of science and technology (\u570b\u7acb\u9ad8\u96c4\u7b2c\u4e00\u79d1\u6280\u5927\u5b78)", "alternativeName": "", "country": "tw", "url": "http://www.nkfust.edu.tw/bin/home.php", "identifier": [{"identifier": "https://ror.org/03858r716", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.nkfust.edu.tw/ir-oai/request yes 0 18592 +2566 {"name": "repositorio de digital institucional - ucsg", "language": "en"} [{"acronym": "rdi.ucsg"}] http://repositorio.ucsg.edu.ec/ institutional [] 2022-01-12 15:35:34 2012-09-21 13:39:55 ["arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de santiago de guayaquil", "alternativeName": "", "country": "ec", "url": "http://www.ucsg.edu.ec/", "identifier": [{"identifier": "https://ror.org/030snpp57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucsg.edu.ec/oai/ yes 10544 +2493 {"name": "khioda", "language": "en"} [] https://khioda.khio.no institutional [] 2022-01-12 15:35:33 2012-06-12 10:01:40 ["arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "oslo national academy of the arts", "alternativeName": "", "country": "no", "url": "http://www.khio.no/", "identifier": [{"identifier": "https://ror.org/0543h9a62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://khioda.khio.no/khio-oai/request yes 914 +2544 {"name": "material properties open database", "language": "en"} [{"acronym": "mpod"}] http://www.materialproperties.org/ disciplinary [] 2022-01-12 15:35:33 2012-07-25 11:36:25 ["engineering"] ["datasets"] [{"name": "material properties open database", "alternativeName": "", "country": "fr", "url": "http://www.materialproperties.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +2542 {"name": "\u0142\u00f3dzka regionalna biblioteka cyfrowa", "language": "en"} [{"acronym": "cybra"}] http://cybra.lodz.pl/dlibra aggregating [] 2022-01-12 15:35:33 2012-07-25 11:22:36 ["health and medicine", "science", "technology", "engineering", "mathematics", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "\u0142\u00f3dzka akademicka sie\u0107 biblioteczna", "alternativeName": "\u0142asb", "country": "pl", "url": "http://www.biblioteki.lodz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://cybra.lodz.pl/dlibra/oai-pmh-repository.xml yes 0 3344 +2565 {"name": "muhas institutional repository", "language": "en"} [] http://dspace.muhas.ac.tz:8080/xmlui/ institutional [] 2022-01-12 15:35:34 2012-09-21 13:33:46 ["health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "muhimbili university of health and allied health sciences", "alternativeName": "muhas", "country": "tz", "url": "http://www.muhas.ac.tz/", "identifier": [{"identifier": "https://ror.org/027pr6c67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1781 +2564 {"name": "digital library of the tanzania health community", "language": "en"} [{"acronym": "e-health"}] http://ihi.eprints.org/ institutional [] 2022-01-12 15:35:34 2012-09-21 13:17:30 ["health and medicine"] ["journal_articles"] [{"name": "ifakara health institute", "alternativeName": "", "country": "tz", "url": "http://www.ihi.or.tz/", "identifier": [{"identifier": "https://ror.org/04js17g72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ihi.eprints.org/policies.html", "type": "metadata"}, {"policy_url": "http://ihi.eprints.org/policies.html", "type": "data"}, {"policy_url": "http://ihi.eprints.org/policies.html", "type": "submission"}, {"policy_url": "http://ihi.eprints.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://ihi.eprints.org/cgi/oai2 yes 3236 +2488 {"name": "th\u00e8ses-unistra : th\u00e8ses et m\u00e9moires \u00e9lectroniques de luniversit\u00e9 de strasbourg", "language": "en"} [] http://theses.unistra.fr/ori-oai-search institutional [] 2022-01-12 15:35:33 2012-06-06 11:43:46 ["health and medicine"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de strasbourg", "alternativeName": "ulp", "country": "fr", "url": "http://www.unistra.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://theses.unistra.fr/ori-oai-repository/oaihandler yes 0 9642 +2553 {"name": "repositorio de la unia", "language": "en"} [] http://dspace.unia.es/ institutional [] 2022-01-12 15:35:33 2012-08-08 11:28:07 ["humanities", "arts"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad internacional de andaluc\u00eda", "alternativeName": "unia", "country": "es", "url": "http://www.unia.es/", "identifier": [{"identifier": "https://ror.org/058nh3n50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.unia.es/oai/request yes 1210 3934 +2537 {"name": "kirchlicher dokumentenserver der akthb und des vkwb", "language": "en"} [{"acronym": "kidoks"}] https://kidoks.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-25 10:44:08 ["humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "verbands kirchlich-wissenschaftlicher bibliotheken", "alternativeName": "vkwbb", "country": "at", "url": "http://vkwb.info/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://kidoks.bsz-bw.de/oai yes 0 1105 +2519 {"name": "repositorio de informaci\u00f3n de medio ambiente de cuba", "language": "en"} [] http://repositorio.geotech.cu/jspui/ institutional [] 2022-01-12 15:35:33 2012-07-13 16:25:13 ["humanities"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "instituto de geograf\u00eda tropical", "alternativeName": "", "country": "cu", "url": "http://www.geotech.cu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ecured.cu/index.php/repositorio_digital_%28instituto_de_geograf\u00eda_tropical%29", "type": "metadata"}, {"policy_url": "http://www.ecured.cu/index.php/repositorio_digital_%28instituto_de_geograf\u00eda_tropical%29", "type": "data"}, {"policy_url": "http://www.ecured.cu/index.php/repositorio_digital_%28instituto_de_geograf\u00eda_tropical%29", "type": "content"}, {"policy_url": "http://www.ecured.cu/index.php/repositorio_digital_%28instituto_de_geograf\u00eda_tropical%29", "type": "submission"}, {"policy_url": "http://www.ecured.cu/index.php/repositorio_digital_%28instituto_de_geograf\u00eda_tropical%29", "type": "preservation"}] {"name": "dspace", "version": ""} yes 1504 +2468 {"name": "university of arizona campus repository", "language": "en"} [] http://arizona.openrepository.com/arizona/ institutional [] 2022-01-12 15:35:32 2012-05-02 09:50:07 ["science", "arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "university of arizona", "alternativeName": "ua", "country": "us", "url": "http://www.arizona.edu/", "identifier": [{"identifier": "https://ror.org/03m2x1q45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 63231 +2555 {"name": "digital window @vassar", "language": "en"} [] http://digitalwindow.vassar.edu/ institutional [] 2022-01-12 15:35:34 2012-08-08 11:47:07 ["science", "arts", "humanities", "technology"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "vassar college", "alternativeName": "", "country": "us", "url": "http://www.vassar.edu/", "identifier": [{"identifier": "https://ror.org/022x6qg61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalwindow.vassar.edu/do/oai/ yes 341 1255 +2515 {"name": "repozytorium uniwersytetu \u0142\u00f3dzkiego (university of lodz repository)", "language": "en"} [{"acronym": "ru\u0142"}] http://dspace.uni.lodz.pl:8080/xmlui/ institutional [] 2022-01-12 15:35:33 2012-07-05 09:51:00 ["science", "humanities", "arts", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "uniwersytet \u0142\u00f3dzki (university of lodz)", "alternativeName": "", "country": "pl", "url": "http://www.uni.lodz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.uni.lodz.pl:8080/oai/request yes 7419 31622 +2477 {"name": "biblioteca virtual del centro de documentaci\u00f3n ambiental del minam", "language": "en"} [] http://cdam.minam.gob.pe:8080/ governmental [] 2022-01-12 15:35:32 2012-05-08 12:02:29 ["science", "social sciences", "health and medicine", "technology"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ministerio del ambiente del per\u00fa", "alternativeName": "", "country": "pe", "url": "http://www.minam.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cdam.minam.gob.pe:8080/oai/request yes 0 1024 +2559 {"name": "t-st\u00f3r", "language": "en"} [] http://t-stor.teagasc.ie/ institutional [] 2022-01-12 15:35:34 2012-08-30 09:56:05 ["science", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "teagasc - agriculture & food development authority", "alternativeName": "", "country": "ie", "url": "http://www.teagasc.ie/", "identifier": [{"identifier": "https://ror.org/03sx84n71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://t-stor.teagasc.ie/help/t-stor-faq.html#faqtopic9", "type": "content"}, {"policy_url": "http://t-stor.teagasc.ie/help/t-stordeplicence.html", "type": "preservation"}] {"name": "open_repository", "version": ""} http://t-stor.teagasc.ie/oai/request yes 1472 +2510 {"name": "repositorio de la facultad de psicolog\u00eda", "language": "en"} [{"acronym": "rpsico"}] http://rpsico.mdp.edu.ar/ institutional [] 2022-01-12 15:35:33 2012-07-03 10:38:41 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad nacional de mar del plata", "alternativeName": "", "country": "ar", "url": "http://www.mdp.edu.ar/", "identifier": [{"identifier": "https://ror.org/055eqsb67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rpsico.mdp.edu.ar/oai/ yes 0 605 +2480 {"name": "virtual library on capacity development", "language": "en"} [] http://elibrary.acbfpact.org/ institutional [] 2022-01-12 15:35:32 2012-05-17 09:59:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "african capacity building foundation", "alternativeName": "acbf", "country": "zw", "url": "http://www.acbfpact.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 483 +2571 {"name": "scholarsphere", "language": "en"} [] http://scholarsphere.psu.edu/ institutional [] 2022-01-12 15:35:34 2012-10-08 14:53:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "pennsylvania state university", "alternativeName": "penn state", "country": "us", "url": "http://www.psu.edu/", "identifier": [{"identifier": "https://ror.org/04p491231", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://scholarsphere.psu.edu/about/", "type": "content"}, {"policy_url": "https://scholarsphere.psu.edu/about/", "type": "submission"}, {"policy_url": "https://scholarsphere.psu.edu/about/", "type": "preservation"}] {"name": "fedora", "version": ""} yes 3315 +2491 {"name": "biblioteca virtual del ministerio de defensa", "language": "en"} [] http://bibliotecavirtualdefensa.es/bvmdefensa/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion institutional [] 2022-01-12 15:35:33 2012-06-06 12:08:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ministerio de defensa, gobierno de espa\u00f1a", "alternativeName": "", "country": "es", "url": "http://www.defensa.gob.es/", "identifier": [{"identifier": "https://ror.org/05jr4a171", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecavirtualdefensa.es/bvmdefensa/i18n/oai/oai_bibliotecavirtualdefensa.es.cmd yes 98541 +2503 {"name": "pepperdine digital commons", "language": "en"} [] http://digitalcommons.pepperdine.edu/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:28:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "pepperdine university", "alternativeName": "", "country": "us", "url": "http://library.pepperdine.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.pepperdine.edu/pepperdine_digital_commons_policy.pdf", "type": "content"}, {"policy_url": "http://digitalcommons.pepperdine.edu/pepperdine_digital_commons_policy.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.pepperdine.edu/do/oai/ yes 5761 +2570 {"name": "repository of nicolaus copernicus university", "language": "en"} [] http://repozytorium.umk.pl/ institutional [] 2022-01-12 15:35:34 2012-09-26 16:43:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nicolaus copernicus university", "alternativeName": "", "country": "pl", "url": "http://www.umk.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repozytorium.umk.pl/docs/polityka.html", "type": "metadata"}, {"policy_url": "http://repozytorium.umk.pl/docs/polityka.html", "type": "data"}, {"policy_url": "http://repozytorium.umk.pl/docs/polityka.html", "type": "content"}, {"policy_url": "http://repozytorium.umk.pl/docs/polityka.html", "type": "submission"}, {"policy_url": "http://repozytorium.umk.pl/docs/polityka.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://repozytorium.umk.pl/oai/request yes 5128 +2504 {"name": "memorial university research repository", "language": "en"} [] http://research.library.mun.ca/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:34:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "memorial university of newfoundland", "alternativeName": "", "country": "ca", "url": "http://www.mun.ca/", "identifier": [{"identifier": "https://ror.org/04haebc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://research.library.mun.ca/policies.html", "type": "data"}, {"policy_url": "http://research.library.mun.ca/information.html", "type": "content"}] {"name": "eprints", "version": ""} http://research.library.mun.ca/cgi/oai2 yes 10243 +2518 {"name": "naturalis", "language": "en"} [] http://naturalis.fcnym.unlp.edu.ar/ institutional [] 2022-01-12 15:35:33 2012-07-13 12:03:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad nacional de la plata", "alternativeName": "unlp", "country": "ar", "url": "http://www.unlp.edu.ar/", "identifier": [{"identifier": "https://ror.org/01tjs6929", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://naturalis.fcnym.unlp.edu.ar/repositorio/oai/oai2.php yes 2511 2575 +2466 {"name": "pikpublic", "language": "en"} [] https://publications.pik-potsdam.de institutional [] 2022-01-12 15:35:32 2012-04-24 15:31:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "potsdam-institut f\u00fcr klimafolgenforschung (potsdam institute for climate impact research)", "alternativeName": "", "country": "de", "url": "http://www.pik-potsdam.de/", "identifier": [{"identifier": "https://ror.org/03e8s1d88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://publications.pik-potsdam.de/oai yes 0 7375 +2492 {"name": "byterfly", "language": "en"} [] http://www.byterfly.eu institutional [] 2022-01-12 15:35:33 2012-06-11 10:33:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituto di ricerca sulla crescita economica sostenibile", "alternativeName": "cnr-ircres", "country": "it", "url": "http://www.ircres.cnr.it/index.php/en/", "identifier": [{"identifier": "https://ror.org/044bfsy89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.byterfly.eu/policy", "type": "metadata"}, {"policy_url": "http://www.byterfly.eu/policy", "type": "data"}, {"policy_url": "http://www.byterfly.eu/policy", "type": "content"}, {"policy_url": "http://www.byterfly.eu/policy", "type": "submission"}, {"policy_url": "http://www.byterfly.eu/policy", "type": "preservation"}] {"name": "", "version": ""} http://www.byterfly.eu/oai yes 8073 +2512 {"name": "institutional repository for information sharing", "language": "en"} [{"acronym": "iris"}] http://www.who.int/iris institutional [] 2022-01-12 15:35:33 2012-07-03 11:14:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "world health organization", "alternativeName": "who", "country": "ch", "url": "http://www.who.int", "identifier": [{"identifier": "https://ror.org/01f80g185", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://apps.who.int/iris/oai yes 217676 +2500 {"name": "digital repository of national parliamentary library of georgia", "language": "en"} [{"acronym": "iverieli"}] http://dspace.nplg.gov.ge/ institutional [] 2022-01-12 15:35:33 2012-06-27 09:08:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national parliamentary library of georgia (\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd\u10e1 \u10de\u10d0\u10e0\u10da\u10d0\u10db\u10d4\u10dc\u10e2\u10d8\u10e1 \u10d4\u10e0\u10dd\u10d5\u10dc\u10e3\u10da\u10d8 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0)", "alternativeName": "nplg", "country": "ge", "url": "http://www.nplg.gov.ge/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nplg.gov.ge/oai/request yes 270850 +2513 {"name": "repositorio institucional universidad nueva esparta", "language": "en"} [{"acronym": "miunespace"}] http://miunespace.une.edu.ve/jspui/ institutional [] 2022-01-12 15:35:33 2012-07-04 14:25:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "universidad nueva esparta", "alternativeName": "", "country": "ve", "url": "http://www.alfa.une.edu.ve/une/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2772 +2464 {"name": "repositorio institucional universidad cat\u00f3lica de colombia", "language": "en"} [{"acronym": "riucac"}] http://repository.ucatolica.edu.co/ institutional [] 2022-01-12 15:35:32 2012-04-24 15:05:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad cat\u00f3lica de colombia", "alternativeName": "", "country": "co", "url": "https://www.ucatolica.edu.co/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ucatolica.edu.co/oai/request yes 5407 +2573 {"name": "repositorio universitario de la dgtic", "language": "en"} [{"acronym": "ru-dgtic"}] http://www.ru.tic.unam.mx:8080/ institutional [] 2022-01-12 15:35:34 2012-10-08 15:20:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ru.tic.unam.mx:8080/oai/request yes 0 2601 +2572 {"name": "repositorio digital de la universidad nacional de c\u00f3rdoba", "language": "es"} [{"acronym": "repositorio digital unc"}] https://rdu.unc.edu.ar institutional [] 2022-01-12 15:35:34 2012-10-08 15:04:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad nacional de c\u00f3rdoba", "alternativeName": "unc", "country": "ar", "url": "https://www.unc.edu.ar", "identifier": [{"identifier": "https://ror.org/056tb7j80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rdu.unc.edu.ar/oai/request yes 1217 10601 +2470 {"name": "institute repository of tianjin institute of industrial biotechnology", "language": "en"} [{"acronym": "tib openir"}] http://124.16.173.210/ institutional [] 2022-01-12 15:35:32 2012-05-03 10:08:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "tianjin institute of industrial biotechnology, chinese academy of sciences", "alternativeName": "tib, cas", "country": "cn", "url": "http://www.tib.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 531 +2501 {"name": "(electronic archive of poltava university of economics and trade)", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u043f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0435\u043a\u043e\u043d\u043e\u043c\u0456\u043a\u0438 \u0456 \u0442\u043e\u0440\u0433\u0456\u0432\u043b\u0456", "language": "uk"}] http://dspace.uccu.org.ua/ institutional [] 2022-01-12 15:35:33 2012-06-27 09:56:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "\u043f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0435\u043a\u043e\u043d\u043e\u043c\u0456\u043a\u0438 \u0456 \u0442\u043e\u0440\u0433\u0456\u0432\u043b\u0456 (university of economics and trade)", "alternativeName": "", "country": "ua", "url": "http://www.pusku.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.uccu.org.ua/oai/request yes 354 9942 +2481 {"name": "iub library digital repository", "language": "en"} [] http://dir.iub.edu.bd:8080/xmlui/ institutional [] 2022-01-12 15:35:32 2012-05-17 10:14:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "independent university, bangladesh", "alternativeName": "", "country": "bd", "url": "http://www.iub.edu.bd/", "identifier": [{"identifier": "https://ror.org/05qbbf772", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 109 +2479 {"name": "repositorio universidad aut\u00f3noma de occidente", "language": "en"} [] http://bdigital.uao.edu.co/ institutional [] 2022-01-12 15:35:32 2012-05-17 09:44:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad aut\u00f3noma de occidente", "alternativeName": "", "country": "co", "url": "http://www.uao.edu.co/", "identifier": [{"identifier": "https://ror.org/02drkkh02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bdigital.uao.edu.co/oai/request yes 0 5605 +2496 {"name": "think tech", "language": "en"} [] http://repositories.tdl.org/ttu-ir institutional [] 2022-01-12 15:35:33 2012-06-12 10:17:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "texas tech university", "alternativeName": "ttu", "country": "us", "url": "http://www.ttu.edu/", "identifier": [{"identifier": "https://ror.org/0405mnx93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 42570 +2498 {"name": "future university hakodate academic archive", "language": "en"} [{"name": "\u516c\u7acb\u306f\u3053\u3060\u3066\u672a\u6765\u5927\u5b66\u3000\u5b66\u8853\u6210\u679c\u30a2\u30fc\u30ab\u30a4\u30d6", "language": "ja"}] https://lib-repos.fun.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:33 2012-06-13 16:46:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "future university hakodate", "alternativeName": "", "country": "jp", "url": "http://www.fun.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lib-repos.fun.ac.jp/dspace-oai/request yes 352 5856 +2563 {"name": "repositorio digital universidad laica \"eloy alfaro\" de manab\u00ed", "language": "en"} [] http://repositorio.uleam.edu.ec/ institutional [] 2022-01-12 15:35:34 2012-09-11 09:52:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad laica "eloy alfaro" de manab\u00ed", "alternativeName": "", "country": "ec", "url": "http://www.uleam.edu.ec/", "identifier": [{"identifier": "https://ror.org/01m8gvd94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uleam.edu.ec/oai/request yes 5 2654 +2516 {"name": "scholarship", "language": "en"} [] http://thescholarship.ecu.edu/ institutional [] 2022-01-12 15:35:33 2012-07-13 11:33:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "east carolina university", "alternativeName": "", "country": "us", "url": "http://www.ecu.edu/", "identifier": [{"identifier": "https://ror.org/01vx35703", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://thescholarship.ecu.edu/oai/request yes 2651 6291 +2473 {"name": "ucrea", "language": "en"} [] http://repositorio.unican.es/xmlui institutional [] 2022-01-12 15:35:32 2012-05-08 11:35:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de cantabria", "alternativeName": "", "country": "es", "url": "http://www.unican.es/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unican.es/oai/request yes 3039 20756 +2495 {"name": "vgtu repository", "language": "en"} [] http://dspace.vgtu.lt/ institutional [] 2022-01-12 15:35:33 2012-06-12 10:12:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "vilnius gediminas technical university", "alternativeName": "", "country": "lt", "url": "http://vgtu.lt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3470 +2546 {"name": "reposit\u00f3rio institucional da ufpb", "language": "pt"} [] https://repositorio.ufpb.br institutional [] 2022-01-12 15:35:33 2012-07-26 09:34:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade federal da para\u00edba", "alternativeName": "ufpb", "country": "br", "url": "http://www.ufpb.br/", "identifier": [{"identifier": "https://ror.org/00p9vpz11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6134 +2465 {"name": "borneo university repository", "language": "en"} [] http://repository.borneo.ac.id/xmlui institutional [] 2022-01-12 15:35:32 2012-04-24 15:12:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "borneo university", "alternativeName": "", "country": "id", "url": "http://www.borneo.ac.id/", "identifier": [{"identifier": "https://ror.org/031jjng67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.borneo.ac.id/oai/request yes 0 534 +2525 {"name": "electronic institutional repository of pryazovskyi state technical university (\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 \u043f\u0440\u0438\u0430\u0437\u043e\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0442\u0435\u0445\u043d\u0456\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443)", "language": "en"} [] http://eir.pstu.edu/ institutional [] 2022-01-12 15:35:33 2012-07-17 10:33:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "pryazovskyi state technical university (\u043f\u0440\u0438\u0430\u0437\u043e\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0442\u0435\u0445\u043d\u0456\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443)", "alternativeName": "", "country": "ua", "url": "http://pstu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eir.pstu.edu/oai/request yes 14499 +2483 {"name": "fagarkivet", "language": "en"} [] https://fagarkivet.hioa.no/ institutional [] 2022-01-12 15:35:32 2012-05-23 13:44:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "h\u00f8gskolen i oslo og akershus (oslo and akershus university college of applied sciences)", "alternativeName": "hioa", "country": "no", "url": "http://www.hioa.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fagarkivet-hioa.archive.knowledgearc.net/oai/request yes 0 1009 +2507 {"name": "huskie commons", "language": "en"} [] http://commons.lib.niu.edu/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:56:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "northern illinois university", "alternativeName": "", "country": "us", "url": "http://www.niu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://commons.lib.niu.edu/oai/request yes 1528 8804 +2490 {"name": "institutional repository of ternopil national pedagogical university v.hnatiuk", "language": "en"} [] http://dspace.tnpu.edu.ua/ institutional [] 2022-01-12 15:35:33 2012-06-06 12:02:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ternopil national pedagogical university v.hnatiuk", "alternativeName": "", "country": "ua", "url": "http://www.tnpu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.tnpu.edu.ua/oai/request yes 7195 +2560 {"name": "national taipei university of technology institutional repository", "language": "en"} [] http://ir.ntut.edu.tw/ institutional [] 2022-01-12 15:35:34 2012-09-05 09:54:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national taipei university of technology", "alternativeName": "", "country": "tw", "url": "http://www.ntut.edu.tw/bin/home.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11144 +2487 {"name": "repositorio digital uce", "language": "en"} [] http://www.dspace.uce.edu.ec/ institutional [] 2022-01-12 15:35:33 2012-06-06 11:33:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad central del ecuador", "alternativeName": "", "country": "ec", "url": "http://www.uce.edu.ec/", "identifier": [{"identifier": "https://ror.org/010n0x685", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.dspace.uce.edu.ec/oai/request yes 14710 +2472 {"name": "repositorio institucional uces", "language": "en"} [] http://dspace.uces.edu.ar:8180/dspace/ institutional [] 2022-01-12 15:35:32 2012-05-08 11:29:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universidad de ciencias empresariales y sociales", "alternativeName": "uces", "country": "ar", "url": "http://www.uces.edu.ar/", "identifier": [{"identifier": "https://ror.org/04g7dxn12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3262 +2574 {"name": "tesis electronicas de la universidad de chile", "language": "en"} [] http://www.tesis.uchile.cl/ institutional [] 2022-01-12 15:35:34 2012-10-10 09:54:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl/", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tesis.uchile.cl/oai/request yes 0 16800 +2548 {"name": "university of west bohemia digital library", "language": "en"} [] https://dspace.zcu.cz/ institutional [] 2022-01-12 15:35:33 2012-08-08 09:57:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "z\u00e1pado\u010desk\u00e1 univerzita v plzni (university of west bohemia in pilsen)", "alternativeName": "", "country": "cz", "url": "http://www.zcu.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.zcu.cz/oai/request yes 0 100 +2522 {"name": "repositorio de tesis usat", "language": "en"} [] http://tesis.usat.edu.pe/ institutional [] 2022-01-12 15:35:33 2012-07-17 10:02:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad cat\u00f3lica santo toribio de mogrovejo", "alternativeName": "", "country": "pe", "url": "http://www.usat.edu.pe/", "identifier": [{"identifier": "https://ror.org/01h558915", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tesis.usat.edu.pe/oai/request yes 2587 3202 +2511 {"name": "lumbung pustaka uny (uny repository)", "language": "en"} [] http://eprints.uny.ac.id/ institutional [] 2022-01-12 15:35:33 2012-07-03 10:46:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "yogyakarta state university", "alternativeName": "", "country": "id", "url": "http://www.uny.ac.id/", "identifier": [{"identifier": "https://ror.org/05fryw881", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uny.ac.id/cgi/oai2 yes 51995 +2471 {"name": "universiti teknologi mara institutional repository", "language": "en"} [] http://ir.uitm.edu.my/ institutional [] 2022-01-12 15:35:32 2012-05-08 11:20:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universiti teknologi mara", "alternativeName": "", "country": "my", "url": "http://www.uitm.edu.my/", "identifier": [{"identifier": "https://ror.org/030847t23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ir.uitm.edu.my/cgi/oai2 yes 8370 +2484 {"name": "biblioteca digital - bolsa de cereales", "language": "en"} [] http://bibliotecadigital.bolsadecereales.com.ar/greenstone/cgi-bin/library.cgi institutional [] 2022-01-12 15:35:32 2012-06-06 10:35:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "bolsa de cereales", "alternativeName": "", "country": "ar", "url": "http://www.bolsadecereales.com.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +2547 {"name": "biblioteca nacional de uruguay", "language": "en"} [] http://coleccionesdigitales.bibna.gub.uy/greenstone/cgi-bin/library.cgi?e=d-01000-00---off-0primeros--00-1----0-10-0---0---0direct-10---4-------0-1l--11-es-50---20-about---00-3-1-00-0-0-11-1-0utfzz-8-00&a=p&p=about governmental [] 2022-01-12 15:35:33 2012-07-26 09:50:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "biblioteca nacional de uruguay", "alternativeName": "", "country": "uy", "url": "http://www.bibna.gub.uy/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 547 +2530 {"name": "hochschulschriftenserver der hochschule mittweida", "language": "en"} [{"acronym": "monami"}] https://monami.hs-mittweida.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 10:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hochschule mittweida", "alternativeName": "university of applied sciences", "country": "de", "url": "http://www.hs-mittweida.de/", "identifier": [{"identifier": "https://ror.org/024ga3r86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://monami.hs-mittweida.de/oai yes 8651 +2531 {"name": "publication server of heilbronn university", "language": "en"} [{"acronym": "opus heilbronn"}, {"name": "hochschulschriftenserver der hochschule heilbronn", "language": "de"}, {"acronym": "opus heilbronn"}] https://opus-hshn.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 10:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hhn", "alternativeName": "heilbronn university of applied sciences", "country": "de", "url": "https://www.hs-heilbronn.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus-hshn.bsz-bw.de/oai yes 83 135 +2532 {"name": "publication server of the offenburg university of applied sciences", "language": "en"} [{"acronym": "opus offenburg"}, {"name": "hochschulschriftenserver der hochschule offenburg", "language": "de"}, {"acronym": "opus offenburg"}] https://opus.hs-offenburg.de institutional [] 2022-01-12 15:35:33 2012-07-19 10:29:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "offenburg university", "alternativeName": "", "country": "de", "url": "https://www.hs-offenburg.de", "identifier": [{"identifier": "https://ror.org/03zh5eq96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.hs-offenburg.de/oai yes 182 3316 +2529 {"name": "hochschulschriftenserver der ph ludwigsburg", "language": "en"} [{"acronym": "opus-ph ludwigsburg"}] https://phbl-opus.phlb.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 10:05:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "p\u00e4dagogische hochschule ludwigsburg", "alternativeName": "", "country": "de", "url": "http://www.ph-ludwigsburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://phbl-opus.phlb.de/oai yes 266 303 +2521 {"name": "hochschulschriftenserver der ph heidelberg", "language": "en"} [{"acronym": "opus-phhd"}] https://opus.ph-heidelberg.de/home institutional [] 2022-01-12 15:35:33 2012-07-13 16:49:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "p\u00e4dagogische hochschule heidelberg", "alternativeName": "", "country": "de", "url": "http://www.ph-heidelberg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.ph-heidelberg.de/oai yes 96 130 +2534 {"name": "reutlingen university academic bibliography", "language": "en"} [{"name": "hochschulbibliografie reutlingen", "language": "de"}] https://publikationen.reutlingen-university.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 10:59:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "reutlingen university", "alternativeName": "", "country": "de", "url": "https://www.reutlingen-university.de/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://publikationen.reutlingen-university.de/oai yes 442 2128 +2538 {"name": "opus - publication server of the hvf", "language": "en"} [{"name": "opus-hochschulschriftenserver der hvf", "language": "de"}] https://opus-hslb.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-25 10:49:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "welcome to the university of applied sciences - public administration and finance ludwigsburg", "alternativeName": "hvf", "country": "de", "url": "https://www.hs-ludwigsburg.de", "identifier": [{"identifier": "https://ror.org/03gzxs418", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus-hslb.bsz-bw.de/oai yes 462 521 +2526 {"name": "universit\u00e4tsbibliothek hildesheim", "language": "de"} [{"name": "hildok institutional repository", "language": "en"}] https://hildok.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 09:44:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e4t hildesheim", "alternativeName": "", "country": "de", "url": "http://www.uni-hildesheim.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bsz-bw.de/ubhi/oai yes 0 688 +2528 {"name": "opus - hochschulschriftenserver der hochschule aalen", "language": "en"} [] https://opus-htw-aalen.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 09:59:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hochschule aalen", "alternativeName": "", "country": "de", "url": "http://www.htw-aalen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus-htw-aalen.bsz-bw.de/oai yes 173 +2524 {"name": "opus - hochschulschriftenserver der hochschule esslingen", "language": "en"} [] https://hses.bsz-bw.de/home institutional [] 2022-01-12 15:35:33 2012-07-17 10:25:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hochschule esslingen (university of applied sciences)", "alternativeName": "", "country": "de", "url": "http://www.hs-esslingen.de/de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://hses.bsz-bw.de/oai yes 335 +2533 {"name": "online publikationsserver opus der hochschule osnabr\u00fcck", "language": "en"} [] https://opus.hs-osnabrueck.de/home institutional [] 2022-01-12 15:35:33 2012-07-19 10:42:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hochschule osnabr\u00fcck", "alternativeName": "", "country": "de", "url": "http://www.hs-osnabrueck.de/", "identifier": [{"identifier": "https://ror.org/059vymd37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.hs-osnabrueck.de/oai yes 89 1073 +2549 {"name": "karlsruhe open literature archive", "language": "en"} [{"acronym": "karola"}] http://opac.fzk.de:81/de/fzk_oai_qsim_frm.html institutional [] 2022-01-12 15:35:33 2012-08-08 10:13:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "karlsruher institut f\u00fcr technologie (kit)", "alternativeName": "", "country": "de", "url": "http://www.kit.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 2488 +2505 {"name": "scholar commons - university of south florida", "language": "en"} [] http://scholarcommons.usf.edu/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:41:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of south florida", "alternativeName": "", "country": "us", "url": "http://www.usf.edu/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarcommons.usf.edu/do/oai/ yes 18850 34513 +2561 {"name": "uknowledge", "language": "en"} [] http://uknowledge.uky.edu/ institutional [] 2022-01-12 15:35:34 2012-09-05 09:58:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of kentucky", "alternativeName": "", "country": "us", "url": "http://www.uky.edu/", "identifier": [{"identifier": "https://ror.org/02k3smh20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 17529 +2569 {"name": "bard digital commons", "language": "en"} [] http://digitalcommons.bard.edu/ institutional [] 2022-01-12 15:35:34 2012-09-26 16:38:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "bard college", "alternativeName": "", "country": "us", "url": "http://www.bard.edu/", "identifier": [{"identifier": "https://ror.org/04yrgt058", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 7319 +2506 {"name": "research+rmuts", "language": "en"} [] http://61.47.35.41:8181/ir_plus/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:49:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "rajamangala university of technology suvarnabhumi (\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e23\u0e32\u0e0a\u0e21\u0e07\u0e04\u0e25\u0e2a\u0e38\u0e27\u0e23\u0e23\u0e13\u0e20\u0e39\u0e21\u0e34)", "alternativeName": "", "country": "th", "url": "http://www.rmutsb.ac.th/homepage/welcome55/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 145 +2489 {"name": "miskolci egyetem digit\u00e1lis rakt\u00e1r \u00e9s adatt\u00e1r", "language": "en"} [{"acronym": "midra"}] http://midra.uni-miskolc.hu/ institutional [] 2022-01-12 15:35:33 2012-06-06 11:56:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of miskolc", "alternativeName": "", "country": "hu", "url": "http://www.uni-miskolc.hu/", "identifier": [{"identifier": "https://ror.org/038g7dk46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://midra.uni-miskolc.hu/oai/dataprovider yes 31044 +2520 {"name": "bibliotecka cyfrowa politechniki koszali\u0144skiej (digital library of koszalin university of technology)", "language": "en"} [] http://dlibra.tu.koszalin.pl/dlibra institutional [] 2022-01-12 15:35:33 2012-07-13 16:41:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "koszalin university of technology", "alternativeName": "", "country": "pl", "url": "http://www.tu.koszalin.pl/", "identifier": [{"identifier": "https://ror.org/00x6dk626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://dlibra.tu.koszalin.pl/dlibra/oai-pmh-repository.xml yes 0 54 +2545 {"name": "sanok digital library", "language": "en"} [] http://sanockabibliotekacyfrowa.pl/dlibra governmental [] 2022-01-12 15:35:33 2012-07-25 14:23:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "digital-center", "alternativeName": "", "country": "pl", "url": "http://www.digital-center.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://sanockabibliotekacyfrowa.pl/dlibra/oai-pmh-repository.xml yes 0 357 +2462 {"name": "kolbuszowa digital library", "language": "en"} [] http://biblioteka.kolbuszowa.pl/dlibra disciplinary [] 2022-01-12 15:35:32 2012-04-17 11:11:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "miejsk\u0105 i powiatow\u0105 bibliotek\u0119 publiczn\u0105 w kolbuszowej", "alternativeName": "", "country": "pl", "url": "http://biblioteka.kolbuszowa.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://biblioteka.kolbuszowa.pl/dlibra/oai-pmh-repository.xml yes 0 432 +2558 {"name": "nuspace", "language": "en"} [] http://ir.nust.ac.zw/ institutional [] 2022-01-12 15:35:34 2012-08-24 09:17:50 ["science", "technology", "social sciences"] ["journal_articles"] [{"name": "national university of science and technology", "alternativeName": "nust", "country": "zw", "url": "http://www.nust.ac.zw/", "identifier": [{"identifier": "https://ror.org/02kesvt12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nust.ac.zw/oai/request yes 717 +2543 {"name": "predicted crystallography open database", "language": "en"} [{"acronym": "pcod"}] http://www.crystallography.net/pcod/ disciplinary [] 2022-01-12 15:35:33 2012-07-25 11:35:14 ["science"] ["datasets"] [{"name": "crystallography open database", "alternativeName": "cod", "country": "lt", "url": "http://www.crystallography.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1062771 +2463 {"name": "sire", "language": "en"} [] http://repo.sire.ac.uk/ aggregating [] 2022-01-12 15:35:32 2012-04-24 13:26:28 ["social sciences", "mathematics"] ["unpub_reports_and_working_papers", "learning_objects"] [{"name": "scottish institute for research in economics (sire)", "alternativeName": "sire", "country": "gb", "url": "http://www.sire.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.sire.ac.uk/oai/request yes 652 +2535 {"name": "vut digiresearch", "language": "en"} [] http://vut.netd.ac.za/ institutional [] 2022-01-12 15:35:33 2012-07-24 09:46:30 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "vaal university of technology", "alternativeName": "", "country": "za", "url": "http://www.vut.ac.za/new/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 185 +2514 {"name": "imt institutional repository", "language": "en"} [] https://iris.imtlucca.it institutional [] 2022-01-12 15:35:33 2012-07-05 09:39:09 ["social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "imt alti studi lucca", "alternativeName": "", "country": "it", "url": "http://www.imtlucca.it/", "identifier": [{"identifier": "https://ror.org/035gh3a49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.imtlucca.it/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.imtlucca.it/policies.html", "type": "data"}] {"name": "eprints", "version": ""} yes 834 3553 +2552 {"name": "livro aberto", "language": "en"} [] http://livroaberto.ibict.br/ institutional [] 2022-01-12 15:35:33 2012-08-08 11:17:09 ["social sciences"] ["books_chapters_and_sections"] [{"name": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "alternativeName": "ibict", "country": "br", "url": "http://www.ibict.br/", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 447 +2475 {"name": "caltechconf", "language": "en"} [] http://caltechconf.library.caltech.edu/ institutional [] 2022-01-12 15:35:32 2012-05-08 11:52:29 ["technology"] ["conference_and_workshop_papers"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "http://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://caltechconf.library.caltech.edu/cgi/oai2 yes 214 244 +2557 {"name": "biblioteka cyfrowa diecezji legnickiej", "language": "en"} [] http://bcdl.pl/dlibra institutional [] 2022-01-12 15:35:34 2012-08-20 11:35:42 ["humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "biblioteka wy\u017cszego seminarium duchownego", "alternativeName": "", "country": "pl", "url": "http://www.biblioteka.diecezja.legnica.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bcdl.pl/dlibra/oai-pmh-repository.xml yes 0 368 +2499 {"name": "university of the south pacific electronic research repository", "language": "en"} [{"acronym": "usperr"}] http://repository.usp.ac.fj/ institutional [] 2022-01-12 15:35:33 2012-06-18 16:45:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of the south pacific", "alternativeName": "usp", "country": "fj", "url": "http://www.usp.ac.fj/", "identifier": [{"identifier": "https://ror.org/008stv805", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.usp.ac.fj/usperr%20policy%20booklet.pdf", "type": "metadata"}, {"policy_url": "http://repository.usp.ac.fj/usperr%20policy%20booklet.pdf", "type": "data"}, {"policy_url": "http://repository.usp.ac.fj/usperr%20policy%20booklet.pdf", "type": "content"}, {"policy_url": "http://repository.usp.ac.fj/usperr%20policy%20booklet.pdf", "type": "submission"}, {"policy_url": "http://repository.usp.ac.fj/usperr%20policy%20booklet.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.usp.ac.fj/cgi/oai2 yes 1679 8351 +2461 {"name": "public digital archive of agnieszka osiecka", "language": "en"} [] http://www.archiwumagnieszkiosieckiej.pl/dlibra disciplinary [] 2022-01-12 15:35:32 2012-04-17 11:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "okularnicy foundation", "alternativeName": "", "country": "pl", "url": "http://www.okularnicy.org.pl/pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://www.archiwumagnieszkiosieckiej.pl/dlibra/oai-pmh-repository.xml yes 0 84 +2554 {"name": "imt e-theses", "language": "en"} [] http://e-theses.imtlucca.it/ institutional [] 2022-01-12 15:35:34 2012-08-08 11:38:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "imt alti studi lucca", "alternativeName": "", "country": "it", "url": "http://www.imtlucca.it/", "identifier": [{"identifier": "https://ror.org/035gh3a49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://e-theses.imtlucca.it/policies.html", "type": "metadata"}, {"policy_url": "http://e-theses.imtlucca.it/policies.html", "type": "data"}, {"policy_url": "http://e-theses.imtlucca.it/policies.html", "type": "content"}, {"policy_url": "http://e-theses.imtlucca.it/policies.html", "type": "submission"}, {"policy_url": "http://e-theses.imtlucca.it/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://e-theses.imtlucca.it/cgi/oai2 yes 242 305 +2469 {"name": "stmik gi mdp", "language": "en"} [] http://eprints.mdp.ac.id/ institutional [] 2022-01-12 15:35:32 2012-05-03 09:54:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "stmik gi mdp", "alternativeName": "", "country": "id", "url": "http://www.mdp.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.mdp.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.mdp.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.mdp.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.mdp.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.mdp.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.mdp.ac.id/cgi/oai2 yes 2441 2472 +2568 {"name": "royal college of art research repository", "language": "en"} [] https://researchonline.rca.ac.uk/ institutional [] 2022-01-12 15:35:34 2012-09-24 09:09:06 ["arts", "humanities", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "royal college of art", "alternativeName": "", "country": "gb", "url": "http://www.rca.ac.uk/", "identifier": [{"identifier": "https://ror.org/01egahc47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchonline.rca.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://researchonline.rca.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://researchonline.rca.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://researchonline.rca.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://researchonline.rca.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchonline.rca.ac.uk/cgi/oai2 yes 1310 2989 +2485 {"name": "vtechworks", "language": "en"} [] https://vtechworks.lib.vt.edu institutional [] 2022-01-12 15:35:32 2012-06-06 10:42:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "virginia polytechnic institute and state university", "alternativeName": "virginia tech", "country": "us", "url": "https://vt.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://guides.lib.vt.edu/c.php?g=1144483&p=8352200", "type": "submission"}] {"name": "dspace", "version": ""} https://vtechworks.lib.vt.edu/oai/request yes 0 67202 +2539 {"name": "publication server of the wuppertal institute", "language": "en"} [{"name": "publikationsserver des wuppertal instituts", "language": "de"}] https://epub.wupperinst.org institutional [] 2022-01-12 15:35:33 2012-07-25 10:58:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "wuppertal institut f\u00fcr klima, umwelt, energie ggmbh", "alternativeName": "", "country": "de", "url": "https://wupperinst.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://wupperinst.org/en/publications/open-access", "type": "metadata"}, {"policy_url": "https://wupperinst.org/en/publications/open-access", "type": "data"}, {"policy_url": "https://wupperinst.org/en/publications/open-access", "type": "content"}, {"policy_url": "https://wupperinst.org/en/publications/open-access", "type": "submission"}] {"name": "opus", "version": ""} https://epub.wupperinst.org/oai yes 1128 6645 +2562 {"name": "online repository of birkbeck institutional theses", "language": "en"} [{"acronym": "orbit"}] http://bbktheses.da.ulcc.ac.uk/ institutional [] 2022-01-12 15:35:34 2012-09-05 10:11:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "birkbeck college, university of london", "alternativeName": "bbk", "country": "gb", "url": "http://www.bbk.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bbktheses.da.ulcc.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://bbktheses.da.ulcc.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://bbktheses.da.ulcc.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://bbktheses.da.ulcc.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://bbktheses.da.ulcc.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://bbktheses.da.ulcc.ac.uk/cgi/oai2 yes 398 469 +2502 {"name": "fortworks", "language": "en"} [] http://eprints.fortlewis.edu/ institutional [] 2022-01-12 15:35:33 2012-06-29 16:21:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "fort lewis college", "alternativeName": "flc", "country": "us", "url": "http://www.fortlewis.edu/", "identifier": [{"identifier": "https://ror.org/00aad7q36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.fortlewis.edu/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.fortlewis.edu/policies.html", "type": "data"}, {"policy_url": "http://eprints.fortlewis.edu/policies.html", "type": "content"}, {"policy_url": "http://eprints.fortlewis.edu/policies.html", "type": "submission"}, {"policy_url": "http://eprints.fortlewis.edu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.fortlewis.edu/cgi/oai2 yes 0 702 +2556 {"name": "st georges online research archive", "language": "en"} [{"acronym": "sora"}] http://openaccess.sgul.ac.uk/ institutional [] 2022-01-12 15:35:34 2012-08-10 16:32:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "st georges, university of london", "alternativeName": "", "country": "gb", "url": "http://www.sgul.ac.uk/", "identifier": [{"identifier": "https://ror.org/040f08y74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openaccess.sgul.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://openaccess.sgul.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://openaccess.sgul.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://openaccess.sgul.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://openaccess.sgul.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://openaccess.sgul.ac.uk/cgi/oai2 yes 4512 6723 +2478 {"name": "st marys university open research archive", "language": "en"} [] http://research.stmarys.ac.uk/ institutional [] 2022-01-12 15:35:32 2012-05-10 09:32:40 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "st marys university", "alternativeName": "", "country": "gb", "url": "http://research.stmarys.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://research.stmarys.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://research.smuc.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://research.smuc.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://research.smuc.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://research.smuc.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://research.stmarys.ac.uk/cgi/oai2 yes 772 2305 +2619 {"name": "university of nairobi digital repository", "language": "en"} [] http://erepository.uonbi.ac.ke institutional [] 2022-01-12 15:35:35 2013-01-02 11:10:40 ["arts", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of nairobi", "alternativeName": "", "country": "ke", "url": "http://www.uonbi.ac.ke//", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://erepository.uonbi.ac.ke/oai yes 0 84733 +2600 {"name": "su+ digital repository", "language": "en"} [] https://su-plus.strathmore.edu institutional [] 2022-01-12 15:35:34 2012-12-07 16:11:37 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "strathmore university", "alternativeName": "", "country": "ke", "url": "https://strathmore.edu", "identifier": [{"identifier": "https://ror.org/047dnqw48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://su-plus.strathmore.edu/oai/request yes 0 3078 +2655 {"name": "mary immaculate research repository and digital archive", "language": "en"} [{"acronym": "mirr"}] http://www.dspace.mic.ul.ie/ institutional [] 2022-01-12 15:35:35 2013-05-07 17:02:01 ["arts", "humanities", "mathematics", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of limerick", "alternativeName": "", "country": "ie", "url": "http://www.ul.ie/", "identifier": [{"identifier": "https://ror.org/00a0n9e72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.dspace.mic.ul.ie/oai/request yes 331 1990 +2580 {"name": "digital commons @ emui", "language": "en"} [] http://commons.emich.edu/ institutional [] 2022-01-12 15:35:34 2012-10-19 16:57:59 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "eastern michigan university", "alternativeName": "emui", "country": "us", "url": "http://www.emich.edu/", "identifier": [{"identifier": "https://ror.org/02ehshm78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 8030 +2606 {"name": "digital library of the czech technical university in prague", "language": "en"} [] https://dspace.cvut.cz/ institutional [] 2022-01-12 15:35:34 2012-12-13 12:02:41 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine", "technology", "engineering"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "czech technical university in prague", "alternativeName": "", "country": "cz", "url": "http://www.cvut.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.cvut.cz/oai/request yes 6788 43535 +2668 {"name": "ecommons@aku", "language": "en"} [] http://ecommons.aku.edu/ institutional [] 2022-01-12 15:35:35 2013-06-11 12:07:43 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "aga khan university", "alternativeName": "", "country": "pk", "url": "http://www.aku.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ecommons.aku.edu/about.html", "type": "metadata"}, {"policy_url": "http://ecommons.aku.edu/about.html", "type": "data"}, {"policy_url": "http://ecommons.aku.edu/about.html", "type": "content"}, {"policy_url": "http://ecommons.aku.edu/about.html", "type": "submission"}, {"policy_url": "http://ecommons.aku.edu/about.html", "type": "preservation"}] {"name": "other", "version": ""} http://ecommons.aku.edu/do/oai/ yes 8827 +2638 {"name": "borys grinchenko kyiv university institutional repository", "language": "en"} [] http://elibrary.kubg.edu.ua institutional [] 2022-01-12 15:35:35 2013-03-11 14:09:57 ["arts", "humanities", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "borys grinchenko kyiv university", "alternativeName": "", "country": "ua", "url": "http://kubg.edu.ua", "identifier": [{"identifier": "https://ror.org/01t5m8p03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://elibrary.kubg.edu.ua/policies.html", "type": "metadata"}, {"policy_url": "http://elibrary.kubg.edu.ua/policies.html", "type": "data"}, {"policy_url": "http://elibrary.kubg.edu.ua/policies.html", "type": "content"}, {"policy_url": "http://elibrary.kmpu.edu.ua/policies.html", "type": "submission"}, {"policy_url": "http://elibrary.kmpu.edu.ua/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://elibrary.kubg.edu.ua/cgi/oai2 yes 16610 +2634 {"name": "repozytorium politechniki krakowskiej", "language": "en"} [] http://suw.biblos.pk.edu.pl/ institutional [] 2022-01-12 15:35:35 2013-02-14 09:05:34 ["arts", "humanities", "science", "mathematics", "technology", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "politechnika krakowska (cracow university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pk.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://suw.biblos.pk.edu.pl/suw/src/oai/oai2.php yes 0 16 +2656 {"name": "st\u00f3r", "language": "en"} [] http://eprints.dkit.ie/ institutional [] 2022-01-12 15:35:35 2013-05-15 14:47:01 ["arts", "humanities", "science", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "dundalk institute of technology", "alternativeName": "", "country": "ie", "url": "https://www.dkit.ie/", "identifier": [{"identifier": "https://ror.org/01800zd49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.dkit.ie/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.dkit.ie/policies.html", "type": "data"}, {"policy_url": "http://eprints.dkit.ie/policies.html", "type": "content"}, {"policy_url": "http://eprints.dkit.ie/policies.html", "type": "submission"}, {"policy_url": "http://eprints.dkit.ie/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.dkit.ie/cgi/oai2 yes 377 +2613 {"name": "universiti malaysia kelantan intitutional repository", "language": "en"} [] http://umkeprints.umk.edu.my/ institutional [] 2022-01-12 15:35:34 2012-12-18 15:27:49 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universiti malaysia kelantan", "alternativeName": "", "country": "my", "url": "http://www.umk.edu.my/", "identifier": [{"identifier": "https://ror.org/0463y2v87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://umkeprints.umk.edu.my/cgi/oai2 yes 7909 +2615 {"name": "digital repository of ostroh academy", "language": "en"} [{"name": "\u0446\u0438\u0444\u0440\u043e\u0432\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u043e\u0441\u0442\u0440\u043e\u0437\u044c\u043a\u043e\u0457 \u0430\u043a\u0430\u0434\u0435\u043c\u0456\u0457", "language": "uk"}] http://www.eprints.oa.edu.ua/ institutional [] 2022-01-12 15:35:35 2012-12-18 15:52:04 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "national university of "ostroh academy"", "alternativeName": "", "country": "ua", "url": "http://www.oa.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.oa.edu.ua/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.oa.edu.ua/policies.html", "type": "data"}, {"policy_url": "http://eprints.oa.edu.ua/policies.html", "type": "content"}, {"policy_url": "http://eprints.oa.edu.ua/policies.html", "type": "submission"}, {"policy_url": "http://eprints.oa.edu.ua/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.oa.edu.ua/cgi/oai2 yes 6153 +2676 {"name": "ese - salento university publishing", "language": "en"} [] http://siba-ese.unisalento.it/ institutional [] 2022-01-12 15:35:35 2013-06-18 14:51:00 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universit\u00e0 dedel salento", "alternativeName": "", "country": "it", "url": "http://www.unisalento.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://siba-ese.unisalento.it/index.php/index/oai yes 7873 12189 +2626 {"name": "lingbuzz", "language": "en"} [] http://ling.auf.net/lingbuzz disciplinary [] 2022-01-12 15:35:35 2013-01-30 16:24:04 ["arts", "humanities"] ["journal_articles"] [{"name": "uit the arctic university of norway", "alternativeName": "", "country": "no", "url": "http://uit.no/startsida", "identifier": [{"identifier": "https://ror.org/00wge5k78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4008 +2595 {"name": "reposit\u00f3rio cient\u00edfico do instituto polit\u00e9cnico do porto", "language": "en"} [] http://recipp.ipp.pt/ institutional [] 2022-01-12 15:35:34 2012-11-20 09:13:43 ["arts", "science", "humanities", "mathematics", "social sciences", "health and medicine", "engineering", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico do porto", "alternativeName": "", "country": "pt", "url": "http://www.ipp.pt/", "identifier": [{"identifier": "https://ror.org/04988re48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://recipp.ipp.pt/oaiextended/request yes 7096 15975 +2673 {"name": "real academia nacional de medicina: biblioteca digital", "language": "en"} [] http://bibliotecavirtual.ranm.es/ranm/es/estaticos/contenido.cmd?pagina=estaticos/presentacion disciplinary [] 2022-01-12 15:35:35 2013-06-17 12:01:55 ["health and medicine"] ["other_special_item_types"] [{"name": "real academia nacional de medicina", "alternativeName": "", "country": "es", "url": "http://www.ranm.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecavirtual.ranm.es/ranm/i18n/i18n/oai/oai.cmd yes 20 1385 +2654 {"name": "szte doktori \u00e9rtekez\u00e9sek repozit\u00f3rium (szte repository of dissertations)", "language": "en"} [] http://doktori.bibl.u-szeged.hu/ institutional [] 2022-01-12 15:35:35 2013-05-07 16:53:27 ["humanities", "arts", "health and medicine", "science", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "university of szeged", "alternativeName": "", "country": "hu", "url": "http://www.u-szeged.hu/", "identifier": [{"identifier": "https://ror.org/01pnej532", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://doktori.bibl.u-szeged.hu/cgi/oai2 yes 3014 +2650 {"name": "the open university of tanzania institutional repository", "language": "en"} [] http://repository.out.ac.tz institutional [] 2022-01-12 15:35:35 2013-05-07 14:57:09 ["humanities", "arts", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "the open university of tanzania", "alternativeName": "", "country": "tz", "url": "http://www.out.ac.tz", "identifier": [{"identifier": "https://ror.org/02m6yfe37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.out.ac.tz/cgi/oai2 yes 1547 2506 +2680 {"name": "bindura university of science education institutional repository", "language": "en"} [{"acronym": "buse-ir"}] https://ir.buse.ac.zw institutional [] 2022-01-12 15:35:36 2013-06-20 10:48:24 ["humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "bindura university of science education", "alternativeName": "", "country": "zw", "url": "http://www.buse.ac.zw/", "identifier": [{"identifier": "https://ror.org/042zvmz29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.buse.ac.zw/oai/request yes 394 +2583 {"name": "viurrspace", "language": "en"} [] http://viurrspace.ca institutional [] 2022-01-12 15:35:34 2012-11-06 10:25:39 ["humanities", "science", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "vancouver island university", "alternativeName": "", "country": "ca", "url": "http://www.viu.ca/", "identifier": [{"identifier": "https://ror.org/033wcvv61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://viurrspace.ca/oai/request yes 0 100 +2652 {"name": "reposit\u00f3rio de administra\u00e7\u00e3o p\u00fablica", "language": "pt"} [{"acronym": "repap"}] http://repap.ina.pt/ governmental [] 2022-01-12 15:35:35 2013-05-07 15:19:30 ["humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "instituto nacional de administra\u00e7\u00e3o, i.p.", "alternativeName": "ina", "country": "pt", "url": "http://www.ina.pt", "identifier": [{"identifier": "https://ror.org/01h394058", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repap.ina.pt/oai/request yes 173 +2602 {"name": "european documentation centers (\u03ba\u03ad\u03bd\u03c4\u03c1\u03b1 \u03b5\u03c5\u03c1\u03c9\u03c0\u03b1\u03ca\u03ba\u03ae\u03c2 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7\u03c2)", "language": "en"} [] http://ketlib.lib.unipi.gr/xmlui/ institutional [] 2022-01-12 15:35:34 2012-12-13 11:19:43 ["humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of piraeus (\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c0\u03b5\u03b9\u03c1\u03b1\u03b9\u03ce\u03c2)", "alternativeName": "", "country": "gr", "url": "http://www.unipi.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 763 +2609 {"name": "inside idaho", "language": "en"} [] http://inside.uidaho.edu/ disciplinary [] 2022-01-12 15:35:34 2012-12-18 14:49:21 ["humanities"] ["bibliographic_references", "datasets"] [{"name": "university of idaho", "alternativeName": "", "country": "us", "url": "http://www.uidaho.edu/", "identifier": [{"identifier": "https://ror.org/03hbp5t65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2666 {"name": "funes", "language": "en"} [] http://funes.uniandes.edu.co/ disciplinary [] 2022-01-12 15:35:35 2013-06-07 17:12:11 ["mathematics"] ["journal_articles", "software", "other_special_item_types"] [{"name": "universidad de los andes", "alternativeName": "", "country": "co", "url": "http://www.uniandes.edu.co/", "identifier": [{"identifier": "https://ror.org/02mhbdp94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://funes.uniandes.edu.co/policies.html", "type": "metadata"}, {"policy_url": "http://funes.uniandes.edu.co/policies.html", "type": "content"}, {"policy_url": "http://http://funes.uniandes.edu.co/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://funes.uniandes.edu.co/cgi/oai2/ yes 8993 +2627 {"name": "ahmadu bello university institutional digital repository", "language": "en"} [{"acronym": "openair@abu"}] http://kubanni.abu.edu.ng/jspui/ institutional [] 2022-01-12 15:35:35 2013-02-06 09:16:04 ["science", "arts", "humanities", "health and medicine", "social sciences", "technology"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ahmadu bello university", "alternativeName": "", "country": "ng", "url": "http://www.abu.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7970 +2677 {"name": "university of babylon repository", "language": "en"} [] http://repository.uobabylon.edu.iq/ institutional [] 2022-01-12 15:35:35 2013-06-18 15:38:27 ["science", "arts", "humanities", "health and medicine"] ["journal_articles", "learning_objects"] [{"name": "university of babylon", "alternativeName": "", "country": "iq", "url": "http://www.uobabylon.edu.iq/", "identifier": [{"identifier": "https://ror.org/0170edc15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.uobabylon.edu.iq/nt/privacy.aspx", "type": "data"}, {"policy_url": "http://www.uobabylon.edu.iq/nt/privacy.aspx", "type": "content"}] {"name": "", "version": ""} yes 10 +2621 {"name": "universitas ahmad dahlan repository", "language": "en"} [] http://eprints.uad.ac.id/ institutional [] 2022-01-12 15:35:35 2013-01-11 12:10:08 ["science", "arts", "humanities", "mathematics", "social sciences", "health and medicine", "technology", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "universitas ahmad dahlan", "alternativeName": "", "country": "id", "url": "http://uad.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uad.ac.id/cgi/oai2 yes 8142 12452 +2644 {"name": "repositorio institucional pirhua", "language": "en"} [] https://pirhua.udep.edu.pe/ institutional [] 2022-01-12 15:35:35 2013-03-25 15:20:10 ["science", "arts", "humanities", "mathematics", "social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de piura", "alternativeName": "", "country": "pe", "url": "http://udep.edu.pe/", "identifier": [{"identifier": "https://ror.org/010xy3m51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://pirhua.udep.edu.pe/oai/request yes 2082 +2584 {"name": "full-text institutional repository of the ru\u0111er bo\u0161kovi\u0107 institute", "language": "en"} [{"acronym": "fulir"}] http://fulir.irb.hr/ institutional [] 2022-01-12 15:35:34 2012-11-06 10:30:35 ["science", "health and medicine", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ru\u0111er bo\u0161kovi\u0107 institute", "alternativeName": "", "country": "hr", "url": "http://www.irb.hr/", "identifier": [{"identifier": "https://ror.org/02mw21745", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://fulir.irb.hr/policies.html", "type": "metadata"}, {"policy_url": "http://fulir.irb.hr/policies.html", "type": "data"}, {"policy_url": "http://fulir.irb.hr/policies.html", "type": "content"}, {"policy_url": "http://fulir.irb.hr/policies.html", "type": "submission"}, {"policy_url": "http://fulir.irb.hr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://fulir.irb.hr/cgi/oai2 yes 2864 +2581 {"name": "nasi u fp", "language": "en"} [] http://eprints.kobson.nb.rs/ governmental [] 2022-01-12 15:35:34 2012-11-06 10:11:07 ["science", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "\u043d\u0430\u0440\u043e\u0434\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0441\u0440\u0431\u0438\u0458\u0435", "alternativeName": "narodna biblioteka srbije", "country": "rs", "url": "http://www.nb.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.kobson.nb.rs/cgi/oai2 yes 31 34 +2629 {"name": "reposit\u00f3rio institucional de produ\u00e7\u00e3o cient\u00edfica da ensp", "language": "en"} [] http://www.ensp.fiocruz.br/repositorio institutional [] 2022-01-12 15:35:35 2013-02-11 16:36:00 ["science", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o oswaldo cruz", "alternativeName": "fiocruz", "country": "br", "url": "http://portal.fiocruz.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www.ensp.fiocruz.br/repositorio/oai yes 0 100 +2610 {"name": "toho university academic repository", "language": "en"} [{"name": "\u6771\u90a6\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mylibrary.toho-u.ac.jp/webopac/ufirdi.do?ufi_target=ctlsrh institutional [] 2022-01-12 15:35:34 2012-12-18 15:04:16 ["science", "health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "toho university", "alternativeName": "", "country": "jp", "url": "http://www.toho-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://mylibrary.toho-u.ac.jp/oai/oai-pmh.do yes 52 +2575 {"name": "electronic zhytomyr state technological university institutional repository", "language": "en"} [{"acronym": "eztuir"}] http://eztuir.ztu.edu.ua/ institutional [] 2022-01-12 15:35:34 2012-10-10 11:01:31 ["science", "humanities", "mathematics", "social sciences", "health and medicine", "engineering", "technology"] ["journal_articles", "theses_and_dissertations", "patents"] [{"name": "zhytomyr state technological university", "alternativeName": "", "country": "ua", "url": "http://www.ztu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eztuir.ztu.edu.ua/oai yes 0 7148 +2614 {"name": "u:scholar", "language": "en"} [] http://uscholar.univie.ac.at/ institutional [] 2022-01-12 15:35:35 2012-12-18 15:38:45 ["science", "humanities", "mathematics", "social sciences", "technology"] ["journal_articles"] [{"name": "university of vienna", "alternativeName": "", "country": "at", "url": "http://univie.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 3870 +2594 {"name": "reposit\u00f3rio cient\u00edfico do instituto polit\u00e9cnico de lisboa", "language": "en"} [] http://repositorio.ipl.pt/ institutional [] 2022-01-12 15:35:34 2012-11-20 09:08:59 ["science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "instituto polit\u00e9cnico de lisboa", "alternativeName": "", "country": "pt", "url": "http://www.ipl.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipl.pt/oaiextended/request yes 6341 12688 +2611 {"name": "digitalcommons@wpi", "language": "en"} [] http://digitalcommons.wpi.edu/ institutional [] 2022-01-12 15:35:34 2012-12-18 15:17:03 ["science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles"] [{"name": "worcester polytechnic institute", "alternativeName": "", "country": "us", "url": "http://www.wpi.edu/", "identifier": [{"identifier": "https://ror.org/05ejpqr48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.wpi.edu/do/oai/ yes 15110 23551 +2612 {"name": "dione (\u03b4\u03b9\u03ce\u03bd\u03b7)", "language": "en"} [] http://dione.lib.unipi.gr/xmlui/ institutional [] 2022-01-12 15:35:34 2012-12-18 15:21:57 ["science", "mathematics", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "university of piraeus (\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c0\u03b5\u03b9\u03c1\u03b1\u03b9\u03ce\u03c2)", "alternativeName": "", "country": "gr", "url": "http://www.unipi.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 10356 +2647 {"name": "electronic archive of kharkiv national automobile and highway university", "language": "en"} [{"acronym": "elarkhadi"}] http://dspace.khadi.kharkov.ua/dspace/ institutional [] 2022-01-12 15:35:35 2013-04-30 12:03:04 ["science", "mathematics", "technology", "social sciences", "engineering"] ["journal_articles"] [{"name": "kharkiv national automobile and highway university", "alternativeName": "khnadu", "country": "ua", "url": "http://www.khadi.kharkov.ua/", "identifier": [{"identifier": "https://ror.org/01b62sk68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2015 +2623 {"name": "reposit\u00f3rio institucional da universidade federal de lavras", "language": "en"} [{"acronym": "riufla"}] http://repositorio.ufla.br/ institutional [] 2022-01-12 15:35:35 2013-01-21 16:41:12 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "universidade federal de lavras", "alternativeName": "ufla", "country": "br", "url": "http://www.ufla.br/", "identifier": [{"identifier": "https://ror.org/0122bmm03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 14817 +2599 {"name": "electronic repository of the national aviation university", "language": "en"} [{"acronym": "ernau"}, {"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439", "language": "uk"}] http://er.nau.edu.ua/ institutional [] 2022-01-12 15:35:34 2012-12-04 12:38:38 ["science", "social sciences"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "national aviation university", "alternativeName": "", "country": "ua", "url": "http://www.nau.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://er.nau.edu.ua/oai/request yes 3007 35032 +2591 {"name": "liburuklik biblioteca digital vasca", "language": "en"} [] http://www.liburuklik.euskadi.net/ governmental [] 2022-01-12 15:35:34 2012-11-12 15:44:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "departamento de cultura del gobierno vasco", "alternativeName": "", "country": "es", "url": "http://www.euskadi.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.liburuklik.euskadi.net/oai/request yes 13730 +2675 {"name": "portal de libros electr\u00f3nicos - universidad de chile", "language": "en"} [] http://libros.uchile.cl/ institutional [] 2022-01-12 15:35:35 2013-06-18 12:49:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl/", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.libros.uchile.cl/index.php/sisib/oai/ yes 589 +2641 {"name": "vytautas magnus university institutional repository", "language": "en"} [{"acronym": "vmu"}] https://www.vdu.lt/cris institutional [] 2022-01-12 15:35:35 2013-03-25 14:32:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "vytauto did\u017eiojo universitetas", "alternativeName": "", "country": "lt", "url": "http://www.vdu.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://erepository.vdu.lt/authors.html", "type": "metadata"}] {"name": "dspace", "version": ""} yes 92406 +2631 {"name": "covenant university electronic theses and dissertation repository", "language": "en"} [] http://www.covenantuniversity.edu.ng/~/clr_cu/library/readonline/docsexplorer/# institutional [] 2022-01-12 15:35:35 2013-02-12 16:26:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "covenant university", "alternativeName": "", "country": "ng", "url": "http://www.covenantuniversity.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 10 +2635 {"name": "electronic archive of the igor sikorsky kyiv polytechnic institute", "language": "en"} [{"acronym": "elakpi"}] http://ela.kpi.ua/ institutional [] 2022-01-12 15:35:35 2013-02-14 09:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national technical university of ukraine: igor sikorsky kyiv polytechnic institute", "alternativeName": "", "country": "ua", "url": "http://kpi.ua/en", "identifier": [{"identifier": "https://ror.org/00syn5v21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ela.kpi.ua/oai/request yes 20107 +2597 {"name": "hellenic national archive of doctoral dissertations", "language": "en"} [{"acronym": "hedi"}] http://phdtheses.ekt.gr/ governmental [] 2022-01-12 15:35:34 2012-12-04 12:25:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://phdtheses.ekt.gr/eadd-oai/request yes 39269 +2681 {"name": "repositorio digital de la ciencia y cultura de el salvador redicces", "language": "en"} [{"acronym": "redicces"}] http://www.redicces.org.sv/ institutional [] 2022-01-12 15:35:36 2013-06-20 16:09:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "repositorio digital de la ciencia y cultura de el salvador redicces", "alternativeName": "", "country": "sv", "url": "http://www.cbues.org.sv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.redicces.org.sv/oai/request? yes 2976 +2608 {"name": "electronic odessa national economic university institutional repository", "language": "en"} [{"acronym": "eoneu"}] http://dspace.oneu.edu.ua/jspui/ institutional [] 2022-01-12 15:35:34 2012-12-18 14:30:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "odessa national economic university (\u043e\u0434\u0435\u0441\u044c\u043a\u0438\u0439 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0435\u043a\u043e\u043d\u043e\u043c\u0456\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442)", "alternativeName": "", "country": "ua", "url": "http://oneu.edu.ua/index_uk.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6822 +2667 {"name": "eadnurt - the electronic archive of the dnepropetrovsk national university of railway transport", "language": "en"} [{"acronym": "eadnurt"}] http://eadnurt.diit.edu.ua:82/jspui/ institutional [] 2022-01-12 15:35:35 2013-06-11 11:37:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "\u0434\u043d\u0456\u043f\u0440\u043e\u043f\u0435\u0442\u0440\u043e\u0432\u0441\u044c\u043a\u0438\u0439 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0437\u0430\u043b\u0456\u0437\u043d\u0438\u0447\u043d\u043e\u0433\u043e \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u0430\u043a\u0430\u0434\u0435\u043c\u0456\u043a\u0430 \u043b\u0430\u0437\u0430\u0440\u044f\u043d\u0430", "alternativeName": "", "country": "ua", "url": "http://www.diit.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eadnurt.diit.edu.ua:82/oai/request yes 0 5796 +2636 {"name": "repositorio institucional de salud de andaluc\u00eda - andalusian health repository", "language": "en"} [] https://www.repositoriosalud.es/ governmental [] 2022-01-12 15:35:35 2013-02-15 13:34:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "junta de andaluc\u00eda. consejer\u00eda de salud", "alternativeName": "", "country": "es", "url": "http://www.juntadeandalucia.es/salud", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.repositoriosalud.es/oai/request yes 0 2306 +2618 {"name": "kypseli", "language": "en"} [] http://kypseli.ouc.ac.cy/ institutional [] 2022-01-12 15:35:35 2013-01-02 10:52:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "open university of cyprus", "alternativeName": "", "country": "cy", "url": "http://www.ouc.ac.cy/", "identifier": [{"identifier": "https://ror.org/033sm2k57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kypseli.ouc.ac.cy/oai/request yes 47 4444 +2653 {"name": "repositorio institucional universidad eafit", "language": "en"} [] http://repository.eafit.edu.co/ institutional [] 2022-01-12 15:35:35 2013-05-07 16:43:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad eafit", "alternativeName": "", "country": "co", "url": "http://www.eafit.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.eafit.edu.co/oai/request yes 3723 21673 +2582 {"name": "ddfv", "language": "en"} [] http://ddfv.ufv.es/xmlui/ institutional [] 2022-01-12 15:35:34 2012-11-06 10:21:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad francisco de vitoria", "alternativeName": "", "country": "es", "url": "http://www.ufv.es/", "identifier": [{"identifier": "https://ror.org/03ha64j07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ddfv.ufv.es/oai/request yes 649 1800 +2648 {"name": "dspace at m s university", "language": "en"} [] http://14.139.121.106:8080/jspui/ institutional [] 2022-01-12 15:35:35 2013-05-07 14:25:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "maharaja sayajirao university of baroda", "alternativeName": "", "country": "in", "url": "http://www.msubaroda.ac.in/", "identifier": [{"identifier": "https://ror.org/01bx8ja67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 834 +2585 {"name": "institutional repository uca", "language": "en"} [{"name": "repositorio institucional de la universidad cat\u00f3lica argentina", "language": "es"}, {"acronym": "repositorio institucional uca"}] https://repositorio.uca.edu.ar institutional [] 2022-01-12 15:35:34 2012-11-06 15:00:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "pontifical catholic university of argentina", "alternativeName": "uca", "country": "ar", "url": "http://uca.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uca.edu.ar/oai/request yes 6012 +2620 {"name": "repositotorio universidad de especialidades tur\u00edsticas", "language": "en"} [] http://repositorio.uct.edu.ec/ institutional [] 2022-01-12 15:35:35 2013-01-11 11:51:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de especialidades tur\u00edsticas", "alternativeName": "", "country": "ec", "url": "http://www.uct.edu.ec/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 581 +2678 {"name": "dspace@uabt", "language": "en"} [] http://dspace.univ-tlemcen.dz/ institutional [] 2022-01-12 15:35:36 2013-06-19 16:14:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e9 abou bekr belkaid tlemcen", "alternativeName": "", "country": "dz", "url": "http://www.univ-tlemcen.dz/", "identifier": [{"identifier": "https://ror.org/00jsjm362", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univ-tlemcen.dz/oai/request yes 0 11667 +2679 {"name": "e-scholar@uoit", "language": "en"} [] https://ir.library.dc-uoit.ca/ institutional [] 2022-01-12 15:35:36 2013-06-19 17:16:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of ontario institute of technology", "alternativeName": "", "country": "ca", "url": "http://www.uoit.ca/", "identifier": [{"identifier": "https://ror.org/016zre027", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.library.dc-uoit.ca/dspace-oai/request yes 0 1196 +2674 {"name": "digital repository of west bengal public library network", "language": "en"} [] http://dspace.wbpublibnet.gov.in:8080/jspui/ institutional [] 2022-01-12 15:35:35 2013-06-18 11:20:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "west bengal public library network", "alternativeName": "", "country": "in", "url": "http://www.wbpublibnet.gov.in:8080/openenrichv41/library_new/html/home.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 33905 +2625 {"name": "julkari", "language": "en"} [] http://www.julkari.fi/ institutional [] 2022-01-12 15:35:35 2013-01-28 11:54:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "terveyden ja hyvinvoinnin laitos (national institute for health and welfare)", "alternativeName": "thl", "country": "fi", "url": "http://www.thl.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.julkari.fi/oai/request yes 11634 57350 +2593 {"name": "repositorio digital unac", "language": "en"} [] http://repositorio.unac.edu.pe/ institutional [] 2022-01-12 15:35:34 2012-11-14 16:38:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional del callao", "alternativeName": "", "country": "pe", "url": "http://www.unac.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unac.edu.pe/oai yes 0 905 +2662 {"name": "dspace@dogus", "language": "en"} [] http://openaccess.dogus.edu.tr/ institutional [] 2022-01-12 15:35:35 2013-06-04 11:04:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "dogus university", "alternativeName": "", "country": "tr", "url": "http://www.dogus.edu.tr/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://http://earsiv.dogus.edu.tr:8080/jspui/help/earsiv_politikasi.html", "type": "submission"}] {"name": "dspace", "version": ""} http://openaccess.dogus.edu.tr:8080/oai/request yes 2834 +2660 {"name": "repositorio institucional del iteso", "language": "en"} [{"acronym": "rei"}] http://rei.iteso.mx/ institutional [] 2022-01-12 15:35:35 2013-05-30 16:51:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "instituto tecnol\u00f3gico de estudios superiores de occidente", "alternativeName": "iteso", "country": "mx", "url": "http://www.iteso.mx/", "identifier": [{"identifier": "https://ror.org/00cwp6m07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://quijote.biblio.iteso.mx/rei/politicas/metadatos", "type": "metadata"}, {"policy_url": "http://quijote.biblio.iteso.mx/rei/politicas/tipos_contenido", "type": "content"}, {"policy_url": "http://quijote.biblio.iteso.mx/rei/politicas/propiedad_intelectual", "type": "submission"}, {"policy_url": "http://quijote.biblio.iteso.mx/rei/politicas/retiro_contenidos", "type": "preservation"}] {"name": "dspace", "version": ""} http://rei.iteso.mx/oai/request yes 5058 +2616 {"name": "d\u00e9p\u00f4t universitaire num\u00e9rique des \u00e9tudiants", "language": "en"} [{"acronym": "dune"}] http://dune.univ-angers.fr/ institutional [] 2022-01-12 15:35:35 2012-12-18 15:58:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 dangers", "alternativeName": "", "country": "fr", "url": "http://www.univ-angers.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://dune.univ-angers.fr/export/oaipmh yes 2258 +2643 {"name": "dir@imtech", "language": "en"} [] http://crdd.osdd.net/open/ institutional [] 2022-01-12 15:35:35 2013-03-25 14:52:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "council of scientific and industrial research, institute of microbial technology", "alternativeName": "csir-institute of microbial technology", "country": "in", "url": "http://www.imtech.res.in/", "identifier": [{"identifier": "https://ror.org/055rjs771", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 1800 +2633 {"name": "digital library of the naes of ukraine", "language": "en"} [] http://lib.iitta.gov.ua/ institutional [] 2022-01-12 15:35:35 2013-02-12 16:42:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national academy of educational sciences of ukraine", "alternativeName": "naes", "country": "ua", "url": "http://naps.gov.ua/en/", "identifier": [{"identifier": "https://ror.org/05h1pdj54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://lib.iitta.gov.ua/cgi/oai2 yes 13768 +2577 {"name": "s\u00e9maphore", "language": "en"} [] http://semaphore.uqar.ca/ institutional [] 2022-01-12 15:35:34 2012-10-19 14:37:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e9 du qu\u00e9bec \u00e0 rimouski", "alternativeName": "", "country": "ca", "url": "http://www.uqar.ca/", "identifier": [{"identifier": "https://ror.org/049jtt335", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://semaphore.uqar.ca/cgi/oai2 yes 1498 1589 +2586 {"name": "simorgh research repository", "language": "en"} [] http://eprints.kmu.ac.ir/ institutional [] 2022-01-12 15:35:34 2012-11-06 15:11:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "learning_objects"] [{"name": "kerman university of medical sciences", "alternativeName": "kmu", "country": "ir", "url": "http://www.kmu.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.kmu.ac.ir/cgi/oai2 yes 10285 14163 +2628 {"name": "digital du", "language": "en"} [] http://digitaldu.coalliance.org/ institutional [] 2022-01-12 15:35:35 2013-02-06 12:11:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of denver", "alternativeName": "", "country": "us", "url": "http://www.du.edu/", "identifier": [{"identifier": "https://ror.org/04w7skc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://digitaldu.coalliance.org/oai2 yes 0 38407 +2617 {"name": "charles darwin universitys institutional digital repository", "language": "en"} [] http://espace.cdu.edu.au/ institutional [] 2022-01-12 15:35:35 2012-12-18 16:13:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "charles darwin university", "alternativeName": "", "country": "au", "url": "http://www.cdu.edu.au/", "identifier": [{"identifier": "https://ror.org/048zcaj52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fez", "version": ""} https://espace.cdu.edu.au/oai.php yes 4768 25154 +2592 {"name": "hal-diderot", "language": "en"} [] http://hal-univ-diderot.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:34 2012-11-14 09:12:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universit\u00e9 paris diderot - paris 7", "alternativeName": "", "country": "fr", "url": "http://www.univ-paris-diderot.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-diderot yes 13213 2652184 +2605 {"name": "dokuz eylul university open archive system", "language": "en"} [] https://avesis.deu.edu.tr institutional [] 2022-01-12 15:35:34 2012-12-13 11:52:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "dokuz eylul university", "alternativeName": "", "country": "tr", "url": "https://www.deu.edu.tr", "identifier": [{"identifier": "https://ror.org/00dbd8b73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.deu.edu.tr/api/oai2 yes 10761 +2664 {"name": "archive ouverte de luniversit\u00e9 de la nouvelle-cal\u00e9donie", "language": "en"} [] http://orioai.univ-nc.nc/ institutional [] 2022-01-12 15:35:35 2013-06-07 16:27:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "universit\u00e9 de la nouvelle cal\u00e9donie", "alternativeName": "unc", "country": "nc", "url": "http://www.univ-nc.nc/", "identifier": [{"identifier": "https://ror.org/02jrgcx64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1720 +2670 {"name": "repositorio acad\u00e9mico upc", "language": "en"} [] http://repositorioacademico.upc.edu.pe/ institutional [] 2022-01-12 15:35:35 2013-06-13 12:53:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universidad peruna de ciencias aplicadas", "alternativeName": "", "country": "pe", "url": "http://www.upc.edu.pe/", "identifier": [{"identifier": "https://ror.org/047xrr705", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://upc.openrepository.com/upc/oai/request yes 32 100 +2588 {"name": "university of canberra research portal", "language": "en"} [] https://researchprofiles.canberra.edu.au institutional [] 2022-01-12 15:35:34 2012-11-12 14:54:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "university of canberra", "alternativeName": "", "country": "au", "url": "https://www.canberra.edu.au", "identifier": [{"identifier": "https://ror.org/04s1nv328", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://researchsystem.canberra.edu.au/ws/oai?verb=identify yes 11427 +2657 {"name": "acmac", "language": "en"} [] http://preprints.acmac.uoc.gr/ institutional [] 2022-01-12 15:35:35 2013-05-15 15:04:51 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of crete", "alternativeName": "\u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03af\u03bf\u03c5 \u03ba\u03c1\u03ae\u03c4\u03b7\u03c2", "country": "gr", "url": "http://www.uoc.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://preprints.acmac.uoc.gr/policies.html", "type": "metadata"}, {"policy_url": "http://preprints.acmac.uoc.gr/policies.html", "type": "data"}, {"policy_url": "http://preprints.acmac.uoc.gr/policies.html", "type": "content"}, {"policy_url": "http://preprints.acmac.uoc.gr/policies.html", "type": "submission"}, {"policy_url": "http://preprints.acmac.uoc.gr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://preprints.acmac.uoc.gr/cgi/oai2 yes 239 +2579 {"name": "cologne open science - wissenschaft weltweit vernetzen", "language": "en"} [] https://cos.bibl.th-koeln.de/home institutional [] 2022-01-12 15:35:34 2012-10-19 16:50:39 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "technische hochschule k\u00f6ln", "alternativeName": "", "country": "de", "url": "http://www.th-koeln.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://cos.bibl.th-koeln.de/oai yes 0 184 +2683 {"name": "tanzania climate change information repository", "language": "en"} [{"acronym": "taccire"}] http://www.taccire.sua.ac.tz disciplinary [] 2022-01-12 15:35:36 2013-06-24 11:04:07 ["science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "sokoine university of agriculture", "alternativeName": "", "country": "tz", "url": "http://www.suanet.ac.tz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.taccire.sua.ac.tz/oai yes 0 506 +2684 {"name": "oceandocs- instm - tunisia", "language": "en"} [] http://www.oceandocs.net/handle/1834/137 disciplinary [] 2022-01-12 15:35:36 2013-06-24 11:29:04 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "international oceanographic data and information exchange", "alternativeName": "iode", "country": "be", "url": "http://www.iode.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11287 +2669 {"name": "aries, digital repository", "language": "en"} [] http://210.212.91.105:8080/jspui/ disciplinary [] 2022-01-12 15:35:35 2013-06-13 12:26:23 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "aryabhatta research institute of observational sciences", "alternativeName": "aries", "country": "in", "url": "http://www.aries.res.in/", "identifier": [{"identifier": "https://ror.org/02t4nyn12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 807 +2682 {"name": "repositorio digital imarpe", "language": "es"} [{"name": "imarpe digital repository", "language": "en"}] https://repositorio.imarpe.gob.pe governmental [] 2022-01-12 15:35:36 2013-06-21 17:09:43 ["science"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "instituto del mar del per\u00fa", "alternativeName": "", "country": "pe", "url": "http://www.imarpe.pe/imarpe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.imarpe.gob.pe/oai/request yes 1791 +2646 {"name": "ciat document repository", "language": "en"} [] http://ciat-library.ciat.cgiar.org:8080/jspui/community-list institutional [] 2022-01-12 15:35:35 2013-04-10 17:14:48 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "international center for tropical agriculture - ciat", "alternativeName": "ciat", "country": "co", "url": "http://ciat.cgiar.org/", "identifier": [{"identifier": "https://ror.org/037wny167", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5479 +2639 {"name": "fwf-e-book-library", "language": "en"} [] https://e-book.fwf.ac.at institutional [] 2022-01-12 15:35:35 2013-03-25 13:55:50 ["science"] ["books_chapters_and_sections"] [{"name": "fonds zur f\u00f6rderung der wissenschaftlichen forschung (austrian science fund)", "alternativeName": "fwf", "country": "at", "url": "http://www.fwf.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://services.e-book.fwf.ac.at/api/oai yes 437 +2651 {"name": "opensaldru", "language": "en"} [] http://opensaldru.uct.ac.za/ institutional [] 2022-01-12 15:35:35 2013-05-07 15:09:15 ["social sciences", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "southern africa labour and development research unit", "alternativeName": "saldru", "country": "za", "url": "http://www.saldru.uct.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://opensaldru.uct.ac.za/oai/request yes 809 +2576 {"name": "dehesa. repositorio institucional de la universidad de extremadura", "language": "es"} [{"acronym": "dehesa"}] https://dehesa.unex.es institutional [] 2022-01-21 16:23:58 2012-10-19 14:10:57 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles"] [{"name": "universidad de extremadura", "alternativeName": "unex", "country": "es", "url": "https://www.unex.es", "identifier": [{"identifier": "https://ror.org/0174shg90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dehesa.unex.es/oai yes 3483 11093 +2672 {"name": "t\u00fcrkiye bilgi ve belge y\u00f6netimi b\u00f6l\u00fcmleri lisans\u00fcst\u00fc tez ar\u015fivi", "language": "en"} [] http://bbytezarsivi.hacettepe.edu.tr/jspui disciplinary [] 2022-01-12 15:35:35 2013-06-17 10:45:04 ["social sciences"] ["theses_and_dissertations"] [{"name": "hacettepe university", "alternativeName": "", "country": "tr", "url": "http://www.hacettepe.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bbytezarsivi.hacettepe.edu.tr/jspui/archivingpolicy/", "type": "metadata"}, {"policy_url": "http://bbytezarsivi.hacettepe.edu.tr/jspui/archivingpolicy/", "type": "data"}, {"policy_url": "http://bbytezarsivi.hacettepe.edu.tr/jspui/archivingpolicy/", "type": "content"}, {"policy_url": "http://bbytezarsivi.hacettepe.edu.tr/jspui/archivingpolicy/", "type": "submission"}, {"policy_url": "http://bbytezarsivi.hacettepe.edu.tr/jspui/archivingpolicy/", "type": "preservation"}] {"name": "dspace", "version": ""} yes 541 +2632 {"name": "st marys university school of law digital repository", "language": "en"} [] http://lawspace.stmarytx.edu/ institutional [] 2022-01-12 15:35:35 2013-02-12 16:30:10 ["social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "st. marys university, school of law", "alternativeName": "", "country": "us", "url": "https://law.stmarytx.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://lawspace.stmarytx.edu/oai-pmh-repository/request yes 394 1503 +2624 {"name": "science arts et m\u00e9tiers", "language": "fr"} [{"acronym": "sam"}] https://sam.ensam.eu/ institutional [] 2022-01-12 15:35:35 2013-01-28 11:49:33 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "patents"] [{"name": "arts et metiers institute of technology", "alternativeName": "", "country": "fr", "url": "https://artsetmetiers.fr", "identifier": [{"identifier": "https://ror.org/018pp1107", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://sam.ensam.eu/oai/request?verb=identify yes 1700 4902 +2622 {"name": "syssec project publications", "language": "en"} [] http://www.syssec-project.eu/publications/ institutional [] 2022-01-12 15:35:35 2013-01-11 12:26:25 ["technology"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "syssec consortium", "alternativeName": "", "country": "gr", "url": "http://www.syssec-project.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 201 +2659 {"name": "zenodo", "language": "en"} [] http://zenodo.org/ aggregating [] 2022-01-12 15:35:35 2013-05-15 15:41:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "organisation europ\u00e9enne pour la recherche nucl\u00e9aire", "alternativeName": "cern", "country": "ch", "url": "http://www.cern.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://zenodo.org/policies", "type": "metadata"}, {"policy_url": "http://zenodo.org/policies", "type": "data"}, {"policy_url": "http://zenodo.org/policies", "type": "content"}, {"policy_url": "http://zenodo.org/policies", "type": "submission"}, {"policy_url": "http://zenodo.org/policies", "type": "preservation"}] {"name": "invenio", "version": ""} http://zenodo.org/oai2d yes 14058 1408733 +2587 {"name": "intellectum", "language": "en"} [] http://intellectum.unisabana.edu.co/ institutional [] 2022-01-12 15:35:34 2012-11-06 15:50:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad de la sabana", "alternativeName": "", "country": "co", "url": "http://www.unisabana.edu.co/", "identifier": [{"identifier": "https://ror.org/02sqgkj21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://intellectum.unisabana.edu.co/oai/request? yes 1832 16290 +2590 {"name": "asu digital repository", "language": "en"} [] http://repository.asu.edu/ institutional [] 2022-01-12 15:35:34 2012-11-12 15:33:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "arizona state university", "alternativeName": "", "country": "us", "url": "http://www.asu.edu/", "identifier": [{"identifier": "https://ror.org/03efmqc40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.asu.edu/oai-pmh yes 0 43305 +2596 {"name": "biblioteca digital wilson popenoe", "language": "en"} [] https://bdigital.zamorano.edu/ institutional [] 2022-01-12 15:35:34 2012-11-20 09:19:44 ["science"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "escuela agr\u00edcola panamericana zamorano", "alternativeName": "", "country": "hn", "url": "http://www.zamorano.edu/", "identifier": [{"identifier": "https://ror.org/01kt2cx88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "bdigital.zamorano.edu/bitstream/11036/2908/1/metadata%20policy.pdf", "type": "metadata"}, {"policy_url": "bdigital.zamorano.edu/bitstream/11036/2908/1/metadata%20policy.pdf", "type": "data"}, {"policy_url": "bdigital.zamorano.edu/bitstream/11036/2908/1/metadata%20policy.pdf", "type": "content"}, {"policy_url": "bdigital.zamorano.edu/bitstream/11036/2908/1/metadata%20policy.pdf", "type": "submission"}, {"policy_url": "bdigital.zamorano.edu/bitstream/11036/2908/1/metadata%20policy.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://bdigital.zamorano.edu/oai/request?verb=identify yes 5575 +2645 {"name": "opus: research and creativity at ipfw", "language": "en"} [] http://opus.ipfw.edu/ institutional [] 2022-01-12 15:35:35 2013-04-04 10:40:53 ["science", "arts", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "indiana university-purdue university fort wayne", "alternativeName": "", "country": "us", "url": "http://ipfw.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://http://opus.ipfw.edu/faq.html/", "type": "metadata"}, {"policy_url": "http://http://opus.ipfw.edu/faq.html/", "type": "data"}, {"policy_url": "http://http://opus.ipfw.edu/faq.html/", "type": "content"}] {"name": "other", "version": ""} http://opus.ipfw.edu/do/oai/ yes 2630 12453 +2604 {"name": "konrad zuse internet archive", "language": "en"} [] http://zuse.zib.de/ disciplinary [] 2022-01-12 15:35:34 2012-12-13 11:32:45 ["technology"] ["other_special_item_types"] [{"name": "freie universit\u00e4t berlin", "alternativeName": "", "country": "de", "url": "http://www.fu-berlin.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://zuse.zib.de/tou", "type": "data"}] {"name": "other", "version": ""} http://zuse.zib.de/fledgeddata/oai/ yes 0 1 +2640 {"name": "enea-iris open archive", "language": "en"} [] https://iris.enea.it institutional [] 2022-01-12 15:35:35 2013-03-25 14:23:44 ["science"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "italian national agency for new technologies, energy and sustainable economic development", "alternativeName": "enea (agenzia nazionale per le nuove tecnologie, l\u2019energia e lo sviluppo economico sostenibile)", "country": "it", "url": "http://www.enea.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openarchive.enea.it/page/faq", "type": "metadata"}, {"policy_url": "http://openarchive.enea.it/page/faq/", "type": "data"}] {"name": "other", "version": ""} https://iris.enea.it/oai/openaire yes 0 8032 +2658 {"name": "open repository and bibliography - luxembourg", "language": "en"} [{"acronym": "orbilu"}] https://orbilu.uni.lu institutional [] 2022-01-12 15:35:35 2013-05-15 15:22:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of luxembourg", "alternativeName": "", "country": "lu", "url": "http://www.uni.lu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://roarmap.eprints.org/825/", "type": "submission"}] {"name": "dspace", "version": ""} https://orbilu.uni.lu/oai/request yes 9012 43203 +2607 {"name": "queens university belfast research portal", "language": "en"} [] https://pure.qub.ac.uk institutional [] 2022-01-12 15:35:34 2012-12-18 14:01:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "queens university belfast", "alternativeName": "", "country": "gb", "url": "https://www.qub.ac.uk", "identifier": [{"identifier": "https://ror.org/00hswnk62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.qub.ac.uk/ld.php?content_id=31986537", "type": "data"}, {"policy_url": "https://libguides.qub.ac.uk/ld.php?content_id=31986537", "type": "content"}] {"name": "pure", "version": ""} https://pureadmin.qub.ac.uk/ws/oai yes 10400 85722 +2601 {"name": "publicatt", "language": "en"} [] https://publicatt.unicatt.it/ institutional [] 2022-01-12 15:35:34 2012-12-13 10:42:30 ["humanities", "arts", "health and medicine", "science", "mathematics", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universit\u00e0 cattolica del sacro cuore", "alternativeName": "", "country": "it", "url": "http://www.unicattolica.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://publicatt.unicatt.it/sr/docs/policy_en.html", "type": "metadata"}, {"policy_url": "https://publicatt.unicatt.it/sr/docs/policy_en.html", "type": "data"}, {"policy_url": "https://publicatt.unicatt.it/sr/docs/policy_en.html", "type": "content"}, {"policy_url": "https://publicatt.unicatt.it/sr/docs/policy_en.html", "type": "submission"}, {"policy_url": "https://publicatt.unicatt.it/sr/docs/policy_en.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://publicatt.unicatt.it/oai/request yes 1231 91503 +2661 {"name": "iztech gcris", "language": "en"} [] https://openaccess.iyte.edu.tr institutional [] 2022-01-12 15:35:35 2013-05-31 15:34:09 ["science", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "izmir institute of technology", "alternativeName": "", "country": "tr", "url": "https://iyte.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://library.iyte.edu.tr/dosya/acikerisim.pdf", "type": "data"}, {"policy_url": "http://library.iyte.edu.tr/dosya/acikerisim.pdf", "type": "content"}, {"policy_url": "http://library.iyte.edu.tr/dosya/acikerisim.pdf", "type": "submission"}] {"name": "dspace_cris", "version": ""} http://openaccess.iyte.edu.tr:8080/oai/request yes 6 6665 +2642 {"name": "explore bristol research", "language": "en"} [] http://research-information.bristol.ac.uk/ institutional [] 2022-01-12 15:35:35 2013-03-25 14:40:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of bristol", "alternativeName": "", "country": "gb", "url": "http://www.bris.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.bristol.ac.uk/red/research-policy/pure/user-guides/ebr-terms/", "type": "metadata"}, {"policy_url": "http://www.bristol.ac.uk/red/research-policy/pure/user-guides/ebr-terms/", "type": "submission"}, {"policy_url": "http://www.bristol.ac.uk/red/research-policy/pure/user-guides/ebr-terms/", "type": "preservation"}] {"name": "pure", "version": ""} http://research-information.bristol.ac.uk/ws/oai yes 25808 337470 +2741 {"name": "unam scholary repository", "language": "en"} [] http://repository.unam.na/ institutional [] 2022-01-12 15:35:37 2013-08-12 11:51:54 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["theses_and_dissertations"] [{"name": "university of namibia", "alternativeName": "", "country": "na", "url": "http://www.unam.na/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unam.na/oai/request/ yes 0 1610 +2755 {"name": "hal-rennes 1", "language": "en"} [] https://hal-univ-rennes1.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:37 2013-08-20 14:03:04 ["arts", "humanities", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "universit\u00e9 de rennes 1", "alternativeName": "", "country": "fr", "url": "https://www.univ-rennes1.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-rennes1/ yes 13813 97243 +2712 {"name": "database \u201clituanistika\u201d", "language": "en"} [{"acronym": "ldb"}] https://lituanistikadb.lt/en disciplinary [] 2022-01-12 15:35:36 2013-07-09 15:35:12 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "the research council of lithuania", "alternativeName": "", "country": "lt", "url": "http://www.lmt.lt/en/en.html/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://etalpykla.lituanistikadb.lt/oai yes 43000 +2710 {"name": "toulouse capitole publications", "language": "en"} [] http://publications.ut-capitole.fr/ institutional [] 2022-01-12 15:35:36 2013-07-08 15:07:39 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 toulouse 1 capitole", "alternativeName": "", "country": "fr", "url": "http://www.ut-capitole.fr/", "identifier": [{"identifier": "https://ror.org/0443n9e75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.univ-tlse1.fr/cgi/oai2 yes 0 24810 +2724 {"name": "daffodil international university institutional digital repository", "language": "en"} [] http://dspace.daffodilvarsity.edu.bd:8080/ institutional [] 2022-01-12 15:35:36 2013-07-31 13:39:09 ["arts", "humanities", "social sciences", "health and medicine", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "daffodil international university", "alternativeName": "", "country": "bd", "url": "http://www.daffodilvarsity.edu.bd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1739 +2780 {"name": "biblioth\u00e8que num\u00e9rique des universit\u00e9s grenoble 2 et 3", "language": "en"} [] http://bibnum-stendhal.upmf-grenoble.fr/ disciplinary [] 2022-01-12 15:35:37 2013-09-03 10:41:40 ["arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "sicd2 bu droit-lettres", "alternativeName": "", "country": "fr", "url": "http://bibliotheques.upmf-grenoble.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://bibnum-stendhal.upmf-grenoble.fr/oai-pmh-repository/request yes 258 +2758 {"name": "reposit\u00f3rio institucional da ufrb", "language": "en"} [] http://repositorio.ufrb.edu.br/ institutional [] 2022-01-12 15:35:37 2013-08-22 10:32:24 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "universidade federal do rec\u00f4ncavo da bahia", "alternativeName": "", "country": "br", "url": "http://www.ufrb.edu.br/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 360 +2737 {"name": "speech & language data repository (sldr)", "language": "en"} [] http://sldr.org/ disciplinary [] 2022-01-12 15:35:36 2013-08-08 15:37:02 ["arts", "humanities"] ["learning_objects", "other_special_item_types"] [{"name": "laboratoire parole et langage (lpl)", "alternativeName": "", "country": "fr", "url": "http://lpl-aix.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://sldr.org/oai-pmh.php/ yes 24 268 +2787 {"name": "collections de corpus oraux numeriques (cocoon)", "language": "en"} [{"acronym": "cocoon"}] http://cocoon.tge-adonis.fr/ disciplinary [] 2022-01-12 15:35:37 2013-09-09 13:19:31 ["arts", "humanities"] ["other_special_item_types"] [{"name": "centre national de la recherche scientifique", "alternativeName": "cnrs (centre national de la recherche scientifique)", "country": "fr", "url": "http://www.cnrs.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://cocoon.tge-adonis.fr/crdo_servlet/oai-pmh yes 17 12820 +2718 {"name": "producci\u00f3n acad\u00e9mica ucc", "language": "es"} [] http://pa.bibdigital.uccor.edu.ar institutional [] 2022-01-12 15:35:36 2013-07-11 16:19:12 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad cat\u00f3lica de c\u00f3rdoba", "alternativeName": "", "country": "ar", "url": "http://www.ucc.edu.ar", "identifier": [{"identifier": "https://ror.org/04hehwn14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pa.bibdigital.uccor.edu.ar/cgi/oai2 yes 1394 +2748 {"name": "ares - acervo de recursos educacionais em sa\u00fade", "language": "en"} [] https://ares.unasus.gov.br/acervo/ disciplinary [] 2022-01-12 15:35:37 2013-08-15 12:39:04 ["health and medicine"] ["learning_objects", "other_special_item_types"] [{"name": "universidade aberta do sus - una-sus", "alternativeName": "", "country": "br", "url": "https://www.unasus.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ares.unasus.gov.br/oai/request yes 9643 +2736 {"name": "riberdis", "language": "en"} [] http://riberdis.cedd.net/ disciplinary [] 2022-01-12 15:35:36 2013-08-08 14:58:03 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "centro espa\u00f1ol de documentaci\u00f3n sobre discapacidad (cedd), dependiente del real patronato sobre discapacidad", "alternativeName": "", "country": "es", "url": "http://www.cedd.net/es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://riberdis.cedd.net/politicas", "type": "metadata"}, {"policy_url": "http://riberdis.cedd.net/politicas", "type": "data"}, {"policy_url": "http://riberdis.cedd.net/politicas", "type": "content"}, {"policy_url": "http://riberdis.cedd.net/politicas", "type": "submission"}, {"policy_url": "http://riberdis.cedd.net/politicas", "type": "preservation"}] {"name": "dspace", "version": ""} http://riberdis.cedd.net/oai/request yes 2140 +2745 {"name": "national documentation centre on drug use", "language": "en"} [] http://www.drugsandalcohol.ie/ disciplinary [] 2022-01-12 15:35:37 2013-08-13 14:39:18 ["health and medicine"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "health research board", "alternativeName": "", "country": "ie", "url": "http://hrb.ie/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.drugsandalcohol.ie/cgi/oai2 yes 7703 24593 +2760 {"name": "b-salut", "language": "en"} [] http://pub.bsalut.net/ disciplinary [] 2022-01-12 15:35:37 2013-08-22 11:55:17 ["health and medicine"] ["journal_articles"] [{"name": "b-salut", "alternativeName": "", "country": "es", "url": "http://www.bsalut.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 287 +2754 {"name": "health sciences research commons", "language": "en"} [] http://hsrc.himmelfarb.gwu.edu/ disciplinary [] 2022-01-12 15:35:37 2013-08-20 12:53:52 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "george washington university", "alternativeName": "gwu", "country": "us", "url": "http://www.gwu.edu/", "identifier": [{"identifier": "https://ror.org/00y4zzh67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 14579 +2746 {"name": "biblioteca virtual de la provincia de m\u00e1laga", "language": "en"} [] http://bibliotecavirtual.malaga.es/es/estaticos/contenido.cmd?pagina=estaticos/presentacion disciplinary [] 2022-01-12 15:35:37 2013-08-14 10:15:15 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "diputaci\u00f3n de m\u00e1laga", "alternativeName": "", "country": "es", "url": "http://www.malaga.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecavirtual.malaga.es/i18n/oai/oai_bibliotecavirtual.malaga.es.cmd yes 6007 27268 +2749 {"name": "gateway to oklahoma history", "language": "en"} [] http://gateway.okhistory.org/ disciplinary [] 2022-01-12 15:35:37 2013-08-15 12:54:17 ["humanities", "arts"] ["other_special_item_types"] [{"name": "oklahoma historical society", "alternativeName": "", "country": "us", "url": "http://okhistory.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://gateway.okhistory.org/oai/ yes 0 812346 +2720 {"name": "university of idaho library digital initiatives", "language": "en"} [] http://www.lib.uidaho.edu/digital/ institutional [] 2022-01-12 15:35:36 2013-07-12 16:12:24 ["humanities", "science"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of idaho", "alternativeName": "", "country": "us", "url": "http://www.uidaho.edu/", "identifier": [{"identifier": "https://ror.org/03hbp5t65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://digital.lib.uidaho.edu/oai/oai.php yes 46188 +2732 {"name": "mountain forum", "language": "en"} [] http://www.mtnforum.org/publications/ disciplinary [] 2022-01-12 15:35:36 2013-08-07 12:45:03 ["humanities", "science"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "mountain forum", "alternativeName": "", "country": "pe", "url": "http://www.mtnforum.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www.mtnforum.org/oai2/ yes 9422 +2711 {"name": "intrac resource centre", "language": "en"} [] http://www.intrac.org/resources disciplinary [] 2022-01-12 15:35:36 2013-07-09 14:53:03 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "intrac (international ngo training and research centre)", "alternativeName": "", "country": "gb", "url": "http://www.intrac.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 598 +2697 {"name": "heythrop college publications", "language": "en"} [] http://publications.heythrop.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 14:53:28 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "heythrop college", "alternativeName": "", "country": "gb", "url": "http://www.heythrop.ac.uk/", "identifier": [{"identifier": "https://ror.org/044gr8720", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.heythrop.ac.uk/cgi/oai2/ yes 143 2207 +2772 {"name": "tama univershity institutional repository", "language": "en"} [{"name": "\u591a\u6469\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea tama\u8535", "language": "ja"}] https://tama.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:37 2013-08-30 15:48:44 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects"] [{"name": "tama university", "alternativeName": "", "country": "jp", "url": "http://www.tama.ac.jp/index.html/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tama.repo.nii.ac.jp/oai yes 0 137 +2742 {"name": "university of maryland, baltimore county", "language": "en"} [{"acronym": "umbc"}] http://contentdm.ad.umbc.edu/ institutional [] 2022-01-12 15:35:37 2013-08-12 12:50:46 ["humanities"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of maryland, baltimore county (umbc)", "alternativeName": "", "country": "us", "url": "http://www.umbc.edu/", "identifier": [{"identifier": "https://ror.org/02qskvh78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16629.contentdm.oclc.org:80/oai/oai.php yes 1 46169 +2719 {"name": "biblioteca virtual de arag\u00f3n", "language": "en"} [] http://bibliotecavirtual.aragon.es/bva/i18n/estaticos/contenido.cmd?pagina=estaticos/presentacion governmental [] 2022-01-12 15:35:36 2013-07-12 15:51:21 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "gobierno de arag\u00f3n", "alternativeName": "", "country": "es", "url": "http://www.aragon.es/", "identifier": [{"identifier": "https://ror.org/05e08c338", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecavirtual.aragon.es/bva/i18n/oai/oai_bibliotecavirtual.aragon.es.cmd yes 56 16272 +2743 {"name": "fondo documental hist\u00f3rico de las cortes de arag\u00f3n", "language": "en"} [] http://www.cortesaragon.es/fondohistorico/i18n/inicio/inicio.cmd disciplinary [] 2022-01-12 15:35:37 2013-08-12 13:45:15 ["humanities"] ["other_special_item_types"] [{"name": "cortes de arag\u00f3n", "alternativeName": "", "country": "es", "url": "http://www.cortesaragon.es/biblioteca.707.0.html/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.cortesaragon.es/fondohistorico/i18n/oai/oai_fondohistorico.cortesaragon.es.cmd yes 0 1555 +2759 {"name": "iain stain salatiga online repository", "language": "en"} [] http://e-repository.perpus.iainsalatiga.ac.id/ institutional [] 2022-01-12 15:35:37 2013-08-22 11:15:25 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "sekolah tinggi agama islam negeri (stain) salatiga", "alternativeName": "", "country": "id", "url": "http://iainsalatiga.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.stainsalatiga.ac.id/cgi/oai2 yes 1195 +2691 {"name": "hal universit\u00e9 de savoie", "language": "en"} [] http://hal.univ-savoie.fr/ institutional [] 2022-01-12 15:35:36 2013-06-26 12:27:28 ["science", "arts", "humanities", "mathematics", "social sciences", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e9 de savoie", "alternativeName": "", "country": "fr", "url": "http://www.univ-savoie.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-savoie yes 3545 40890 +2714 {"name": "rhode island college digital commons", "language": "en"} [] http://digitalcommons.ric.edu/ institutional [] 2022-01-12 15:35:36 2013-07-10 16:48:20 ["science", "arts", "humanities", "mathematics", "social sciences", "health and medicine", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rhode island college", "alternativeName": "", "country": "us", "url": "http://ric.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 6087 +2717 {"name": "institutional repository uin syarif hidayatullah jakarta", "language": "en"} [] http://repository.uinjkt.ac.id/dspace/ institutional [] 2022-01-12 15:35:36 2013-07-11 15:52:01 ["science", "arts", "humanities", "social sciences", "health and medicine", "technology"] ["theses_and_dissertations"] [{"name": "uin syarif hidayatullah jakarta, state islamic university, indonesia", "alternativeName": "", "country": "id", "url": "http://www.uinjkt.ac.id/", "identifier": [{"identifier": "https://ror.org/00c7fav87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uinjkt.ac.id/oai/ yes 0 36862 +2751 {"name": "copenhagen university research information system", "language": "en"} [{"acronym": "curis"}] http://research.ku.dk/ institutional [] 2022-01-12 15:35:37 2013-08-16 16:05:39 ["science", "arts", "humanities", "social sciences", "health and medicine"] ["journal_articles"] [{"name": "university of copenhagen", "alternativeName": "", "country": "dk", "url": "http://ku.dk/english", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://curis.ku.dk:8015/ws/oaihandler yes 25089 273474 +2738 {"name": "inter-american development bank repository", "language": "en"} [{"acronym": "idb"}] http://www.iadb.org/publications institutional [] 2022-01-12 15:35:37 2013-08-08 16:04:26 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "inter-american development bank", "alternativeName": "", "country": "us", "url": "http://www.iadb.org/", "identifier": [{"identifier": "https://ror.org/02gjn4306", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.iadb.org/oai/request yes 0 6087 +2725 {"name": "nirt institutional repository", "language": "en"} [{"acronym": "eprints@nirt"}] http://eprints.nirt.res.in/ institutional [] 2022-01-12 15:35:36 2013-07-31 13:46:42 ["science", "health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national institute for tuberculosis research", "alternativeName": "", "country": "in", "url": "http://www.nirt.res.in/", "identifier": [{"identifier": "https://ror.org/03qp1eh12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.nirt.res.in/policies.html", "type": "content"}] {"name": "eprints", "version": ""} http://eprints.nirt.res.in/cgi/oai2 yes 962 +2763 {"name": "taurida national v.i. vernadsky university repository", "language": "en"} [] http://repository.crimea.edu/jspui/ institutional [] 2022-01-12 15:35:37 2013-08-28 15:13:39 ["science", "humanities", "arts", "mathematics", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "taurida national v. i. vernadsky university", "alternativeName": "", "country": "ua", "url": "http://www.crimea.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11470 +2722 {"name": "ir@npl", "language": "en"} [] http://npl.csircentral.net/ disciplinary [] 2022-01-12 15:35:36 2013-07-29 14:37:04 ["science", "mathematics", "health and medicine", "technology", "social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "csir - national physical laboratory", "alternativeName": "", "country": "in", "url": "http://nplindia.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://npl.csircentral.net/policies.html", "type": "metadata"}, {"policy_url": "http://npl.csircentral.net/policies.html", "type": "data"}, {"policy_url": "http://npl.csircentral.net/policies.html", "type": "content"}, {"policy_url": "http://npl.csircentral.net/policies.html", "type": "submission"}, {"policy_url": "http://npl.csircentral.net/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://npl.csircentral.net/cgi/oai2 yes 2425 +2784 {"name": "hal-ecole des ponts paristech", "language": "en"} [] http://hal-enpc.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:37 2013-09-05 17:24:56 ["science", "mathematics", "social sciences", "engineering", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ecole nationale des ponts et chauss\u00e9es", "alternativeName": "", "country": "fr", "url": "http://www.enpc.fr/", "identifier": [{"identifier": "https://ror.org/02nwvxz07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/enpc yes 5781 31638 +2750 {"name": "life+ marpro repository", "language": "en"} [] http://repository.marprolife.org/ disciplinary [] 2022-01-12 15:35:37 2013-08-15 13:58:20 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "life+ marpro", "alternativeName": "", "country": "pt", "url": "http://marprolife.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.marprolife.org/cgi/oai2 yes 176 +2788 {"name": "ugd academic repository", "language": "en"} [] http://eprints.ugd.edu.mk/ institutional [] 2022-01-12 15:35:37 2013-09-09 14:40:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "goce delcev university", "alternativeName": "", "country": "mk", "url": "http://www.ugd.edu.mk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.ugd.edu.mk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.ugd.edu.mk/policies.html", "type": "data"}, {"policy_url": "http://eprints.ugd.edu.mk/policies.html", "type": "content"}, {"policy_url": "http://eprints.ugd.edu.mk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.ugd.edu.mk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.ugd.edu.mk/cgi/oai2 yes 13753 +2778 {"name": "calhoun, institutional archive of the naval postgraduate school", "language": "en"} [] http://calhoun.nps.edu/ governmental [] 2022-01-12 15:35:37 2013-09-02 11:37:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "naval postgraduate school", "alternativeName": "", "country": "us", "url": "http://www.nps.edu/", "identifier": [{"identifier": "https://ror.org/033yfkj90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libguides.nps.edu/content.php", "type": "metadata"}, {"policy_url": "http://libguides.nps.edu/content.php", "type": "content"}, {"policy_url": "http://libguides.nps.edu/content.php", "type": "submission"}, {"policy_url": "http://libguides.nps.edu/content.php", "type": "preservation"}] {"name": "dspace", "version": ""} http://calhoun.nps.edu/oai/request yes 58264 +2757 {"name": "institutional repository of peking university", "language": "en"} [{"acronym": "pku institutional repository"}] http://ir.pku.edu.cn/ institutional [] 2022-01-12 15:35:37 2013-08-21 13:28:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "peking university", "alternativeName": "", "country": "cn", "url": "http://www.pku.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.pku.edu.cn/oai/request yes 510704 +2696 {"name": "the research output service", "language": "en"} [{"acronym": "ros"}] http://www.ros.hw.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 14:27:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "heriot-watt university", "alternativeName": "", "country": "gb", "url": "http://www.hw.ac.uk/", "identifier": [{"identifier": "https://ror.org/04mghma93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3252 +2756 {"name": "dedan kimathi university of technology digital repository", "language": "en"} [] http://repository.dkut.ac.ke:8080/xmlui/?itemid=250/ institutional [] 2022-01-12 15:35:37 2013-08-20 15:24:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "dedan kimathi university of technology", "alternativeName": "", "country": "ke", "url": "http://www.dkut.ac.ke/", "identifier": [{"identifier": "https://ror.org/05jg5ty85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 537 +2730 {"name": "jkuat digital repository", "language": "en"} [] http://ir.jkuat.ac.ke/ institutional [] 2022-01-12 15:35:36 2013-08-06 10:27:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "jomo kenyatta university of agriculture and technology (jkuat)", "alternativeName": "", "country": "ke", "url": "http://www.jkuat.ac.ke/", "identifier": [{"identifier": "https://ror.org/015h5sy57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3627 +2767 {"name": "repositorio institucional de la universidad de carabobo riuc", "language": "en"} [] http://riuc.bc.uc.edu.ve/ institutional [] 2022-01-12 15:35:37 2013-08-29 14:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de carabobo", "alternativeName": "", "country": "ve", "url": "http://www.uc.edu.ve/", "identifier": [{"identifier": "https://ror.org/05sj7yp62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://riuc.bc.uc.edu.ve/oai/request yes 6452 +2713 {"name": "d\u00e9p\u00f4t institutionnel de luniversit\u00e9 mhamed bougara de boumerdes", "language": "fr"} [] http://dlibrary.univ-boumerdes.dz:8080/jspui institutional [] 2022-01-12 15:35:36 2013-07-10 16:04:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of boumerd\u00e8s", "alternativeName": "", "country": "dz", "url": "http://www.univ-boumerdes.dz", "identifier": [{"identifier": "https://ror.org/02dveg925", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dlibrary.univ-boumerdes.dz:8080/oai/request yes 114 2762 +2752 {"name": "repositorio institucional digital de la unjbg", "language": "es"} [] http://repositorio.unjbg.edu.pe/ institutional [] 2022-01-12 15:35:37 2013-08-16 16:59:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad nacional jorge basadre groghmann", "alternativeName": "", "country": "pe", "url": "http://www.unjbg.edu.pe/portal/#", "identifier": [{"identifier": "https://ror.org/0087jna26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unjbg.edu.pe/oai yes 184 +2769 {"name": "institutional repository of institute for the history of natural sciences, chinese academy of sciences(ihns openir,\u4e2d\u56fd\u79d1\u5b66\u9662\u81ea\u7136\u79d1\u5b66\u53f2\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93)", "language": "en"} [] http://ir.ihns.ac.cn/ institutional [] 2022-01-12 15:35:37 2013-08-30 12:30:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "institute for the history of natural sciences, chinese academy of sciences", "alternativeName": "", "country": "cn", "url": "http://www.ihns.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ihns.ac.cn/casirgrid-oai/request yes 6377 +2733 {"name": "repositorio institucional universidad pontificia bolivariana", "language": "en"} [] http://repository.upb.edu.co/ institutional [] 2022-01-12 15:35:36 2013-08-07 13:54:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universidad pontificia bolivariana", "alternativeName": "", "country": "co", "url": "http://www.upb.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3639 +2775 {"name": "livre saber - repositorio digital de materiais didaticos", "language": "en"} [] http://livresaber.sead.ufscar.br:8080/jspui/ institutional [] 2022-01-12 15:35:37 2013-08-30 17:03:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "secretaria geral de educa\u00e7\u00e3o a dist\u00e2ncia - universidade federal de s\u00e3o carlos", "alternativeName": "", "country": "br", "url": "https://www.ufscar.br/", "identifier": [{"identifier": "https://ror.org/00qdc6m37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1869 +2703 {"name": "repositorio institucional unad", "language": "en"} [] http://repository.unad.edu.co/ institutional [] 2022-01-12 15:35:36 2013-07-03 15:45:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad abierta y a distancia unad", "alternativeName": "", "country": "co", "url": "https://www.unad.edu.co/", "identifier": [{"identifier": "https://ror.org/047179s14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unad.edu.co/oai/request yes 8058 +2739 {"name": "iut institutional repository", "language": "en"} [] http://103.82.172.44:8080/xmlui/ institutional [] 2022-01-12 15:35:37 2013-08-12 10:40:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "islamic university of technology", "alternativeName": "", "country": "bd", "url": "http://iutoic-dhaka.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 101 +2753 {"name": "reposit\u00f3rio institucional da pucrs", "language": "en"} [] http://repositorio.pucrs.br institutional [] 2022-01-12 15:35:37 2013-08-20 12:19:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "pontif\u00edcia universidade cat\u00f3lica do rio grande do sul - pucrs", "alternativeName": "", "country": "br", "url": "http://www.pucrs.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio.pucrs.br/dspace/static/politicas_en.jsp", "type": "metadata"}, {"policy_url": "http://repositorio.pucrs.br/dspace/politicas.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} http://repositorio.pucrs.br/oai/request?verb=identify yes 11338 +2693 {"name": "iowa state university digital repository", "language": "en"} [] https://lib.dr.iastate.edu/repository institutional [] 2022-01-12 15:35:36 2013-06-27 17:24:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "iowa state university", "alternativeName": "", "country": "us", "url": "https://www.iastate.edu", "identifier": [{"identifier": "https://ror.org/04rswrd78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://drisu.wordpress.com/policies/acquisition-policy/", "type": "submission"}, {"policy_url": "http://drisu.wordpress.com/policies/acquisition-policy/", "type": "preservation"}] {"name": "digital_commons", "version": ""} https://lib.dr.iastate.edu/do/oai yes 80614 +2785 {"name": "susquehanna university scholarly commons", "language": "en"} [] http://scholarlycommons.susqu.edu institutional [] 2022-01-12 15:35:37 2013-09-06 12:41:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "susquehanna university", "alternativeName": "", "country": "us", "url": "http://www.susqu.edu", "identifier": [{"identifier": "https://ror.org/02nmnpn85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://gru.openrepository.com/gru/about-this-service.jsp#1", "type": "submission"}] {"name": "digital_commons", "version": ""} yes 3039 +2765 {"name": "real-phd", "language": "en"} [] http://real-phd.mtak.hu/ institutional [] 2022-01-12 15:35:37 2013-08-29 10:55:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real-phd.mtak.hu/cgi/oai2 yes 618 +2716 {"name": "ums institutional repository", "language": "en"} [] http://eprints.ums.edu.my/ institutional [] 2022-01-12 15:35:36 2013-07-11 15:04:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "universiti malaysia sabah", "alternativeName": "", "country": "my", "url": "http://www.ums.edu.my/v5/", "identifier": [{"identifier": "https://ror.org/040v70252", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ums.edu.my/cgi/oai2 yes 19217 +2783 {"name": "university of malaya students repository", "language": "en"} [] http://studentsrepo.um.edu.my/ institutional [] 2022-01-12 15:35:37 2013-09-05 16:52:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of malaya", "alternativeName": "um", "country": "my", "url": "http://www.um.edu.my/", "identifier": [{"identifier": "https://ror.org/00rzspn62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://studentsrepo.um.edu.my/policies.html", "type": "data"}, {"policy_url": "http://studentsrepo.um.edu.my/policies.html", "type": "content"}, {"policy_url": "http://studentsrepo.um.edu.my/policies.html", "type": "submission"}, {"policy_url": "http://studentsrepo.um.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://studentsrepo.um.edu.my/cgi/oai2 yes 7406 +2688 {"name": "ewu digital library", "language": "en"} [] http://gsdl.ewubd.edu/greenstone/cgi-bin/linux/library.cgi institutional [] 2022-01-12 15:35:36 2013-06-25 11:19:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "east west university", "alternativeName": "", "country": "bd", "url": "http://www.ewubd.edu/", "identifier": [{"identifier": "https://ror.org/05p0tzt32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://gsdl.ewubd.edu/greenstone/cgi-bin/linux/oaiserver.cgi yes 2269 +2723 {"name": "eastern university digital library", "language": "en"} [] http://gsdl.easternuni.edu.bd/greenstone/cgi-bin/library.cgi institutional [] 2022-01-12 15:35:36 2013-07-29 15:14:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "eastern university", "alternativeName": "", "country": "bd", "url": "http://www.easternuni.edu.bd/", "identifier": [{"identifier": "https://ror.org/05e2ncr14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://gsdl.easternuni.edu.bd/greenstone/cgi-bin/oaiserver.cgi yes 348 378 +2731 {"name": "unc dataverse", "language": "en"} [] https://dataverse.unc.edu/ institutional [] 2022-01-12 15:35:36 2013-08-06 11:14:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "datasets"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "https://www.unc.edu/", "identifier": [{"identifier": "https://ror.org/0130frc33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 251548 +2782 {"name": "digital commons @ montana tech", "language": "en"} [] http://digitalcommons.mtech.edu/ institutional [] 2022-01-12 15:35:37 2013-09-03 11:57:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "montana tech", "alternativeName": "", "country": "us", "url": "http://mtech.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.mtech.edu/faq.html", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.mtech.edu/do/oai/ yes 1612 +2692 {"name": "portal de tesis electronicas chilenas", "language": "en"} [] http://www.tesischilenas.cl/ institutional [] 2022-01-12 15:35:36 2013-06-26 13:06:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl/", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 21438 +2704 {"name": "biblioteca digital brasileira de teses e disserta\u00e7\u00f5es", "language": "en"} [] http://bdtd.ibict.br/ aggregating [] 2022-01-12 15:35:36 2013-07-03 17:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "alternativeName": "ibict", "country": "br", "url": "http://www.ibict.br/", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 267864 +2727 {"name": "idep document server", "language": "en"} [] http://www.unidep.org/library disciplinary [] 2022-01-12 15:35:36 2013-08-01 15:42:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "african institute for economic development and planning", "alternativeName": "", "country": "sn", "url": "http://www.uneca.org/idep", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://213.154.74.164/invenio//oai2d/ yes 0 79 +2768 {"name": "e-anaquel", "language": "en"} [] http://repositorio.colciencias.gov.co/ governmental [] 2022-01-12 15:35:37 2013-08-29 14:55:30 ["science", "technology"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "departamento administrativo de ciencia tecnolog\u00eda e innovaci\u00f3n", "alternativeName": "", "country": "co", "url": "http://www.colciencias.gov.co/", "identifier": [{"identifier": "https://ror.org/048jthh02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://186.113.12.136/oai/request yes 0 90 +2708 {"name": "adnan menderes university", "language": "en"} [{"acronym": "earsiv@adu"}] http://adudspace.adu.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:36 2013-07-08 13:52:15 ["science"] ["theses_and_dissertations"] [{"name": "adnan menderes university", "alternativeName": "", "country": "tr", "url": "http://www.adu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://adudspace.adu.edu.tr:8080/oai/request yes 1869 3626 +2762 {"name": "electronic archive of the ural state forest engineering university", "language": "en"} [] http://elar.usfeu.ru/ institutional [] 2022-01-12 15:35:37 2013-08-28 10:40:39 ["science"] ["journal_articles", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "ural state forest engineering university", "alternativeName": "", "country": "ru", "url": "http://usfeu.ru/", "identifier": [{"identifier": "https://ror.org/014qdh252", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.usfeu.ru/oai/request yes 6231 +2690 {"name": "lake victoria basin commission (lvbc) repository", "language": "en"} [] http://195.202.82.11:8080/jspui/handle/123456789/12 governmental [] 2022-01-12 15:35:36 2013-06-26 10:30:13 ["science"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "lake victoria basin commission", "alternativeName": "", "country": "ke", "url": "http://www.lvbcom.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 178 +2729 {"name": "fauba digital: repositorio institucional cient\u00edfico y acad\u00e9mico de la facultad de agronom\u00eda de la uba", "language": "en"} [] http://ri.agro.uba.ar/ institutional [] 2022-01-12 15:35:36 2013-08-05 12:03:43 ["science"] ["theses_and_dissertations"] [{"name": "facultad de agronom\u00eda universidad de buenos aires", "alternativeName": "", "country": "ar", "url": "http://www.agro.uba.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://ri.agro.uba.ar/greenstone/cgi-bin/oaiserver.cgi yes 3262 3823 +2728 {"name": "espace \u00e9ts (publications and research contributions)", "language": "en"} [] http://espace2.etsmtl.ca/ institutional [] 2022-01-12 15:35:36 2013-08-05 11:33:53 ["social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "\u00e9cole de technologie sup\u00e9rieure", "alternativeName": "", "country": "ca", "url": "http://www.etsmtl.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://espace2.etsmtl.ca/faq.html", "type": "metadata"}, {"policy_url": "http://espace2.etsmtl.ca/faq.html", "type": "data"}, {"policy_url": "http://espace2.etsmtl.ca/faq.html", "type": "content"}, {"policy_url": "http://espace2.etsmtl.ca/faq.html", "type": "submission"}, {"policy_url": "http://espace2.etsmtl.ca/faq.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes 15770 +2734 {"name": "wsb-nlu institutional repository", "language": "en"} [] http://repozytorium.wsb-nlu.edu.pl/ institutional [] 2022-01-12 15:35:36 2013-08-07 14:16:54 ["social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "wy\u017csza szko\u0142a biznesu - national-louis university z siedzib\u0105 w nowym s\u0105czu", "alternativeName": "", "country": "pl", "url": "http://www.wsb-nlu.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repozytorium.wsb-nlu.edu.pl/oai/driver yes 398 1348 +2766 {"name": "repository of the yaroslav mudryi national law university", "language": "en"} [] http://dspace.nlu.edu.ua/ institutional [] 2022-01-12 15:35:37 2013-08-29 12:11:07 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "yaroslav mudryi national law university", "alternativeName": "", "country": "ua", "url": "http://nlu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://library.nulau.edu.ua/oai/request yes 0 14059 +2773 {"name": "south africa data archive", "language": "en"} [] http://sada-data.nrf.ac.za/ institutional [] 2022-01-12 15:35:37 2013-08-30 16:21:46 ["social sciences"] ["datasets"] [{"name": "national research foundation", "alternativeName": "", "country": "za", "url": "http://www.nrf.ac.za/", "identifier": [{"identifier": "https://ror.org/05s0g1g46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://sada-data.nrf.ac.za/oai/request yes 192 +2715 {"name": "repositorio institucional del ministerio de educaci\u00f3n de la naci\u00f3n", "language": "en"} [] http://repositorio.educacion.gov.ar/ governmental [] 2022-01-12 15:35:36 2013-07-10 17:19:51 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ministerio de educaci\u00f3n de la naci\u00f3n argentina", "alternativeName": "", "country": "ar", "url": "http://portal.educacion.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.educacion.gov.ar:8080/oai/request yes 18735 +2777 {"name": "dspace redined", "language": "en"} [] http://redined.mecd.gob.es/xmlui/ disciplinary [] 2022-01-12 15:35:37 2013-09-02 11:27:33 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "ministerio de cultura", "alternativeName": "", "country": "es", "url": "http://www.mecd.gob.es/portada-mecd/", "identifier": [{"identifier": "https://ror.org/03nc27g21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://redined.mecd.gob.es/oai/request yes 5299 97311 +2689 {"name": "stark center e-archive", "language": "en"} [] http://archives.starkcenter.org/ disciplinary [] 2022-01-12 15:35:36 2013-06-25 12:09:43 ["social sciences"] ["other_special_item_types"] [{"name": "h.j. lutcher stark center for physical culture and sports", "alternativeName": "", "country": "us", "url": "http://www.starkcenter.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://archives.starkcenter.org/oai/request/ yes 294 5039 +2685 {"name": "ahs memory project", "language": "en"} [] http://memoryproject.emc.hs.admu.edu.ph/ institutional [] 2022-01-12 15:35:36 2013-06-24 11:58:08 ["social sciences"] ["other_special_item_types"] [{"name": "ateneo de manila university", "alternativeName": "", "country": "ph", "url": "http://www.admu.edu.ph/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://emc.hs.admu.edu.ph:8080/page/terms#.ut-vzh_lfgg", "type": "data"}] {"name": "dspace", "version": ""} yes 768 +2702 {"name": "elpub digital library", "language": "en"} [] http://elpub.architexturez.net/ disciplinary [] 2022-01-12 15:35:36 2013-07-02 16:26:42 ["social sciences"] ["conference_and_workshop_papers"] [{"name": "electronic publishing", "alternativeName": "", "country": "se", "url": "http://elpub.architexturez.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://elpub.architexturez.net/oai-pmh yes 807 +2786 {"name": "collegio carlo alberto publications repository", "language": "en"} [] http://www.carloalberto.org/research/working-papers/ institutional [] 2022-01-12 15:35:37 2013-09-06 14:36:26 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "collegio carlo alberto", "alternativeName": "", "country": "it", "url": "http://www.carloalberto.org/", "identifier": [{"identifier": "https://ror.org/0397knh37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +2747 {"name": "the digital repository of information science department", "language": "en"} [] http://libraries.kau.edu.sa/pages-المستودع-الرقمي.aspx institutional [] 2022-01-12 15:35:37 2013-08-14 10:42:19 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "king abdulaziz university", "alternativeName": "", "country": "sa", "url": "http://www.kau.edu.sa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 152 +2740 {"name": "cumincad digital archive", "language": "en"} [] http://cumincad.architexturez.net/ disciplinary [] 2022-01-12 15:35:37 2013-08-12 11:33:55 ["technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "cumincad", "alternativeName": "", "country": "at", "url": "http://cumincad.architexturez.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://cumincad.architexturez.net/oai-pmh/ yes 0 11901 +2706 {"name": "electronic archive of ukrainian engineering pedagogics academy (\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0438\u0439 \u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0457 \u0456\u043d\u0436\u0435\u043d\u0435\u0440\u043d\u043e-\u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0456\u0447\u043d\u043e\u0457 \u0430\u043a\u0430\u0434\u0435\u043c\u0456\u0457)", "language": "en"} [] http://repo.uipa.edu.ua/jspui/ institutional [] 2022-01-12 15:35:36 2013-07-05 15:19:05 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "ukrainian engineering pedagogics academy", "alternativeName": "", "country": "ua", "url": "http://library.uipa.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.uipa.edu.ua/jspui/bitstream/123456789/624/3/poloztennyaelaruipa.pdf", "type": "metadata"}, {"policy_url": "http://repo.uipa.edu.ua/jspui/bitstream/123456789/624/3/poloztennyaelaruipa.pdf", "type": "data"}, {"policy_url": "http://repo.uipa.edu.ua/jspui/bitstream/123456789/624/3/poloztennyaelaruipa.pdf", "type": "content"}, {"policy_url": "http://repo.uipa.edu.ua/jspui/bitstream/123456789/624/3/poloztennyaelaruipa.pdf", "type": "submission"}, {"policy_url": "http://repo.uipa.edu.ua/jspui/bitstream/123456789/624/3/poloztennyaelaruipa.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 5239 +2698 {"name": "lstm online archive", "language": "en"} [] http://archive.lstmed.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 15:28:37 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "liverpool school of tropical medicine", "alternativeName": "", "country": "gb", "url": "http://www.lstmed.ac.uk/", "identifier": [{"identifier": "https://ror.org/03svjbs84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://archive.lstmliverpool.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://archive.lstmliverpool.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://archive.lstmliverpool.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://archive.lstmliverpool.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://archive.lstmliverpool.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://archive.lstmed.ac.uk/cgi/oai2/ yes 3543 6662 +2776 {"name": "institutional repository@csio", "language": "en"} [] http://csioir.csio.res.in/ institutional [] 2022-01-12 15:35:37 2013-09-02 10:46:38 ["science", "technology", "social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "csir-central scientific instruments organisation", "alternativeName": "csir-csio", "country": "in", "url": "http://csio.res.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://csioir.csio.res.in/policies.html", "type": "metadata"}, {"policy_url": "http://csioir.csio.res.in/policies.html", "type": "data"}, {"policy_url": "http://csioir.csio.res.in/policies.html", "type": "content"}, {"policy_url": "http://csioir.csio.res.in/policies.html", "type": "submission"}, {"policy_url": "http://csioir.csio.res.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://csioir.csio.res.in/cgi/oai2/ yes 10 655 +2701 {"name": "chiprints", "language": "en"} [] http://eprints.chi.ac.uk institutional [] 2022-01-12 15:35:36 2013-06-28 17:06:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of chichester", "alternativeName": "", "country": "gb", "url": "https://www.chi.ac.uk", "identifier": [{"identifier": "https://ror.org/029tw2407", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.chi.ac.uk/17_open_access_publishing_policy-revised_may_2019.pdf", "type": "metadata"}, {"policy_url": "http://eprints.chi.ac.uk/17_open_access_publishing_policy-revised_may_2019.pdf", "type": "data"}, {"policy_url": "http://eprints.chi.ac.uk/17_open_access_publishing_policy-revised_may_2019.pdf", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.chi.ac.uk/cgi/oai2 yes 812 3412 +2764 {"name": "sztaki publication repository", "language": "en"} [] http://eprints.sztaki.hu/ disciplinary [] 2022-01-12 15:35:37 2013-08-29 10:34:17 ["technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "mta sztaki", "alternativeName": "", "country": "hu", "url": "http://www.sztaki.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.sztaki.hu/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.sztaki.hu/policies.html", "type": "data"}, {"policy_url": "http://eprints.sztaki.hu/policies.html", "type": "content"}, {"policy_url": "http://eprints.sztaki.hu/policies.html", "type": "submission"}, {"policy_url": "http://eprints.sztaki.hu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.sztaki.hu/cgi/oai2 yes 402 507 +2695 {"name": "glasgow school of art: radar", "language": "en"} [{"acronym": "radar"}] http://radar.gsa.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 13:07:57 ["arts", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "glasgow school of art", "alternativeName": "gsofa", "country": "gb", "url": "http://www.gsa.ac.uk/", "identifier": [{"identifier": "https://ror.org/01s033b11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://radar.gsa.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://radar.gsa.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://radar.gsa.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://radar.gsa.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://radar.gsa.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://radar.gsa.ac.uk/cgi/oai2/ yes 1321 5882 +2686 {"name": "unib scholar repository", "language": "en"} [] http://repository.unib.ac.id/ institutional [] 2022-01-12 15:35:36 2013-06-24 17:15:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of bengkulu", "alternativeName": "", "country": "id", "url": "http://www.unib.ac.id/", "identifier": [{"identifier": "https://ror.org/04w077t62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.unib.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.unib.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.unib.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.unib.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.unib.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.unib.ac.id/cgi/oai2 yes 4648 21386 +2705 {"name": "bochum research bibliography", "language": "en"} [] https://bibliographie.ub.rub.de/ institutional [] 2022-01-12 15:35:36 2013-07-04 15:38:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ruhr-universit\u00e4t bochum", "alternativeName": "", "country": "de", "url": "http://www.ruhr-uni-bochum.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://bibliographie.ub.rub.de/oa/server_policy/", "type": "preservation"}] {"name": "other", "version": ""} http://bibliographie.ub.rub.de/export/xml/oai/ yes 266 295228 +2735 {"name": "red mexicana de repositorios institucionales", "language": "en"} [{"acronym": "remeri"}] http://www.remeri.org.mx/ aggregating [] 2022-01-12 15:35:36 2013-08-07 14:34:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "red mexicana de repositorios institucionales remeri", "alternativeName": "", "country": "mx", "url": "http://www.remeri.org.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.remeri.org.mx/portal/index.html", "type": "data"}] {"name": "", "version": ""} http://www.remeri.org.mx/indixe/rest//db/remeri/oai/oai_server.xq yes 21 530355 +2707 {"name": "rare books and special collections digital library", "language": "en"} [] http://digitalcollections.aucegypt.edu/ disciplinary [] 2022-01-12 15:35:36 2013-07-05 16:24:19 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "american university in cairo", "alternativeName": "\u0627\u0644\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0627\u0645\u064a\u0631\u0643\u064a\u0629 \u0641\u064a \u0627\u0644\u0642\u0627\u0647\u0631\u0629", "country": "eg", "url": "http://www.aucegypt.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcollections.aucegypt.edu/cdm/about", "type": "content"}] {"name": "contentdm", "version": ""} http://server15795.contentdm.oclc.org/cgi-bin/oai.exe yes 0 95676 +2687 {"name": "plymouth electronic archive and research library", "language": "en"} [{"acronym": "pearl"}] http://pearl.plymouth.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-25 10:56:10 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "plymouth university", "alternativeName": "", "country": "gb", "url": "http://www.plymouth.ac.uk/", "identifier": [{"identifier": "https://ror.org/008n7pv89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://plymouth.libguides.com/ld.php?content_id=19267114", "type": "metadata"}, {"policy_url": "http://plymouth.libguides.com/ld.php?content_id=19267114", "type": "content"}, {"policy_url": "http://plymouth.libguides.com/ld.php?content_id=19267114", "type": "submission"}, {"policy_url": "http://plymouth.libguides.com/ld.php?content_id=19267114", "type": "preservation"}] {"name": "dspace", "version": ""} https://pearl.plymouth.ac.uk/oai/request yes 7817 14622 +2721 {"name": "biblioteca digital da produ\u00e7\u00e3o intelectual da universidade de s\u00e3o paulo (bdpi/usp)", "language": "en"} [] http://producao.usp.br/ institutional [] 2022-01-12 15:35:36 2013-07-29 11:27:06 ["science"] ["conference_and_workshop_papers", "journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidade de s\u00e3o paulo", "alternativeName": "usp", "country": "br", "url": "http://www.usp.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://producao.usp.br/page/politicaacessoenus", "type": "content"}, {"policy_url": "http://producao.usp.br/page/politicaacessoenus", "type": "preservation"}] {"name": "dspace", "version": ""} http://www.producao.usp.br/oai/request yes 17070 45652 +2744 {"name": "reposit\u00f3rio institucional da funda\u00e7\u00e3o jo\u00e3o pinheiro", "language": "en"} [] http://www.repositorio.fjp.mg.gov.br/ governmental [] 2022-01-12 15:35:37 2013-08-13 13:54:08 ["mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o jo\u00e3o pinheiro", "alternativeName": "", "country": "br", "url": "http://www.fjp.mg.gov.br/", "identifier": [{"identifier": "https://ror.org/005cx3d93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.repositorio.fjp.mg.gov.br/static/politica_repositorio.pdf", "type": "metadata"}] {"name": "dspace", "version": ""} http://www.repositorio.fjp.mg.gov.br/oai/request? yes 306 3109 +2781 {"name": "commonrepo um", "language": "en"} [] http://commonrepo.um.edu.my/ institutional [] 2022-01-12 15:35:37 2013-09-03 11:13:58 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of malaya", "alternativeName": "um", "country": "my", "url": "http://www.um.edu.my/", "identifier": [{"identifier": "https://ror.org/00rzspn62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://commonrepo.um.edu.my/policies.html", "type": "metadata"}, {"policy_url": "http://commonrepo.um.edu.my/policies.html", "type": "data"}, {"policy_url": "http://commonrepo.um.edu.my/policies.html", "type": "content"}, {"policy_url": "http://commonrepo.um.edu.my/policies.html", "type": "submission"}, {"policy_url": "http://commonrepo.um.edu.my/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://commonrepo.um.edu.my/cgi/oai2 yes 1082 10751 +2770 {"name": "e-artexte", "language": "en"} [] http://e-artexte.ca/ disciplinary [] 2022-01-12 15:35:37 2013-08-30 12:55:06 ["arts"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "artexte", "alternativeName": "", "country": "ca", "url": "http://artexte.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://e-artexte.ca/politiques.html", "type": "metadata"}, {"policy_url": "http://e-artexte.ca/politiques.html", "type": "data"}, {"policy_url": "http://e-artexte.ca/politiques.html", "type": "content"}, {"policy_url": "http://e-artexte.ca/politiques.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://e-artexte.ca/cgi/oai2 yes 1307 31788 +2700 {"name": "uwl repository", "language": "en"} [] https://repository.uwl.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 16:46:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "university of west london", "alternativeName": "", "country": "gb", "url": "http://www.uwl.ac.uk/", "identifier": [{"identifier": "https://ror.org/03e5mzp60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.uwl.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://repository.uwl.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://repository.uwl.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://repository.uwl.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://repository.uwl.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://repository.uwl.ac.uk/cgi/oai2 yes 1883 4711 +2694 {"name": "researchspace", "language": "en"} [] http://researchspace.bathspa.ac.uk/ institutional [] 2022-01-12 15:35:36 2013-06-28 11:58:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bath spa university", "alternativeName": "", "country": "gb", "url": "http://www.bathspa.ac.uk/", "identifier": [{"identifier": "https://ror.org/0038jbq24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchspace.bathspa.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://researchspace.bathspa.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://researchspace.bathspa.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://researchspace.bathspa.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://researchspace.bathspa.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchspace.bathspa.ac.uk/cgi/oai2 yes 1019 10214 +2774 {"name": "repositorio digital institucional jos\u00e9 mar\u00eda rosa", "language": "en"} [] http://www.repositoriojmr.unla.edu.ar/ institutional [] 2022-01-12 15:35:37 2013-08-30 16:46:22 ["arts", "humanities", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad nacional de lan\u00fas", "alternativeName": "", "country": "ar", "url": "http://www.unla.edu.ar/", "identifier": [{"identifier": "https://ror.org/00ccxmy30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.repositoriojmr.unla.edu.ar/condiciones_de_uso.php", "type": "metadata"}, {"policy_url": "http://www.repositoriojmr.unla.edu.ar/condiciones_de_uso.php", "type": "data"}] {"name": "greenstone", "version": ""} http://www.unla.edu.ar/greenstone/cgi-bin/oaiserver.cgi? yes 105 113 +2771 {"name": "portal garuda stmik ibbi (stmik ibbi repository)", "language": "en"} [] http://research.lppm-stmik.ibbi.ac.id/ institutional [] 2022-01-12 15:35:37 2013-08-30 15:31:35 ["technology"] ["journal_articles"] [{"name": "stmik ibbi", "alternativeName": "", "country": "id", "url": "http://www.ibbi.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://research.lppm-stmik.ibbi.ac.id/policy", "type": "metadata"}, {"policy_url": "http://research.lppm-stmik.ibbi.ac.id/policy", "type": "data"}, {"policy_url": "http://research.lppm-stmik.ibbi.ac.id/policy", "type": "content"}, {"policy_url": "http://research.lppm-stmik.ibbi.ac.id/policy", "type": "submission"}, {"policy_url": "http://research.lppm-stmik.ibbi.ac.id/policy", "type": "preservation"}] {"name": "other", "version": ""} http://dosen.publikasistmikibbi.lppm.org/oai2_0 yes 0 164 +2761 {"name": "kings research portal", "language": "en"} [] https://kclpure.kcl.ac.uk/portal/ institutional [] 2022-01-12 15:35:37 2013-08-27 13:44:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kings college london, university of london", "alternativeName": "kcl", "country": "gb", "url": "http://www.kcl.ac.uk/index.aspx", "identifier": [{"identifier": "https://ror.org/0220mzb33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.kcl.ac.uk/innovation/research/researchportal/openaccess.aspx", "type": "data"}] {"name": "pure", "version": ""} https://kclpure.kcl.ac.uk/ws/oaihandler yes 23306 144643 +2815 {"name": "via sapientiae: the institutional repository at depaul university", "language": "en"} [] http://via.library.depaul.edu/ institutional [] 2022-01-12 15:35:38 2013-09-20 12:01:21 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "depaul university", "alternativeName": "", "country": "us", "url": "http://www.depaul.edu/pages/default.aspx", "identifier": [{"identifier": "https://ror.org/04xtx5t16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://via.library.depaul.edu/do/oai yes 14086 +2829 {"name": "scholarbank@nus", "language": "en"} [] http://scholarbank.nus.edu.sg/ institutional [] 2022-01-12 15:35:38 2013-09-25 14:52:51 ["arts", "humanities", "health and medicine", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "patents", "other_special_item_types"] [{"name": "national university of singapore", "alternativeName": "nus", "country": "sg", "url": "http://www.nus.edu.sg/", "identifier": [{"identifier": "https://ror.org/01tgyzw49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarbank.nus.edu.sg/oai/request yes 105817 +2813 {"name": "uin maliki malang repository", "language": "en"} [] http://repository.uin-malang.ac.id/ institutional [] 2022-01-12 15:35:38 2013-09-18 11:40:52 ["arts", "humanities", "science", "mathematics", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "maulana malik ibrahim state islamic university", "alternativeName": "", "country": "id", "url": "http://uin-malang.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.uin-malang.ac.id/cgi/oai2 yes 2350 5613 +2810 {"name": "epublications", "language": "en"} [] https://epb.bibl.th-koeln.de/home institutional [] 2022-01-12 15:35:38 2013-09-17 16:24:22 ["arts", "humanities", "social sciences", "engineering", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "th koln", "alternativeName": "th koln/university", "country": "de", "url": "http://www.th-koeln.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://epb.bibl.th-koeln.de/oai yes 545 653 +2843 {"name": "pandemos", "language": "en"} [] http://pandemos.panteion.gr/ institutional [] 2022-01-12 15:35:38 2013-10-04 14:15:38 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "panteion university", "alternativeName": "", "country": "gr", "url": "http://www.panteion.gr/", "identifier": [{"identifier": "https://ror.org/056ddyv20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://pandemos.panteion.gr:8080/oaiprovider/ yes 0 16431 +2854 {"name": "resena historica del teatro en mexico 2.0-2,1 sistema de la critica teatral", "language": "es"} [] http://criticateatral2021.org institutional [] 2022-01-12 15:35:38 2013-10-18 16:12:04 ["arts"] ["journal_articles"] [{"name": "citru - inba", "alternativeName": "centro nacional de investigaci\u00f3n, documentaci\u00f3n e informaci\u00f3n teatral rodolfo usigli - inbal", "country": "mx", "url": "http://www.citru.bellasartes.gob.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3274 +2888 {"name": "lsmu dspace cris", "language": "en"} [] https://lsmuni.lt/cris institutional [] 2022-01-12 15:35:39 2013-11-12 12:23:04 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lithuanian university of health sciences", "alternativeName": "", "country": "lt", "url": "https://lsmuni.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://roarmap.eprints.org/233/", "type": "content"}] {"name": "dspace", "version": ""} yes 0 10146 +2800 {"name": "kobe city university of foreign studies repository (japanese)", "language": "en"} [{"name": "\u795e\u6238\u5e02\u5916\u56fd\u8a9e\u5927\u5b66 \u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-cufs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:37 2013-09-11 16:14:54 ["humanities", "arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kobe city university of foreign studies", "alternativeName": "", "country": "jp", "url": "http://www.kobe-cufs.ac.jp/", "identifier": [{"identifier": "https://ror.org/020peey21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-cufs.repo.nii.ac.jp/oai yes 1540 2293 +2891 {"name": "\"ergani - historical archive of aegean\" repository", "language": "en"} [] http://www.ergani-repository.gr/ governmental [] 2022-01-12 15:35:39 2013-11-12 15:09:39 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1574 +2798 {"name": "michael servetus research", "language": "en"} [] http://michaelservetusresearch.com/ disciplinary [] 2022-01-12 15:35:37 2013-09-11 15:44:07 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "michael servetus research", "alternativeName": "", "country": "es", "url": "http://www.michaelservetusresearch.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 35 +2890 {"name": "the parthenon frieze repository", "language": "en"} [] http://repository.parthenonfrieze.gr/ governmental [] 2022-01-12 15:35:39 2013-11-12 14:52:47 ["humanities"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.parthenonfrieze.gr/frieze-oai/ yes 0 137 +2850 {"name": "bld - bilboko liburutegi digitala", "language": "en"} [] http://www.bilbao.net/bld institutional [] 2022-01-12 15:35:38 2013-10-18 14:21:29 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "red de bibliotecas municipales de bilbao", "alternativeName": "", "country": "es", "url": "http://www.bilbao.net/cs/satellite/bibliotecasmunicipales/inicio/es/100049470/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 34075 +2892 {"name": "levadia central public library repository", "language": "en"} [] http://ebooks.liblivadia.gr/ governmental [] 2022-01-12 15:35:39 2013-11-12 15:28:54 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ebooks.liblivadia.gr/liblivadia-oai/ yes 0 142 +2862 {"name": "biblioth\u00e8que virtuelle de luniversit\u00e9 dalger", "language": "en"} [] http://biblio.univ-alger.dz/jspui/ institutional [] 2022-01-12 15:35:39 2013-10-21 15:11:50 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of algiers", "alternativeName": "", "country": "dz", "url": "http://www.univ-alger.dz/", "identifier": [{"identifier": "https://ror.org/011r6gp69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12715 +2857 {"name": "icomos open archive", "language": "en"} [] http://openarchive.icomos.org/ disciplinary [] 2022-01-12 15:35:38 2013-10-18 17:23:42 ["humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "icomos international secretariat", "alternativeName": "icomos", "country": "fr", "url": "http://www.icomos.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.international.icomos.org/centre_documentation/openarchive/user_guide.pdf", "type": "metadata"}, {"policy_url": "http://www.international.icomos.org/centre_documentation/openarchive/user_guide.pdf", "type": "data"}, {"policy_url": "http://www.international.icomos.org/centre_documentation/openarchive/user_guide.pdf", "type": "content"}, {"policy_url": "http://www.international.icomos.org/centre_documentation/openarchive/user_guide.pdf", "type": "submission"}, {"policy_url": "http://www.international.icomos.org/centre_documentation/openarchive/user_guide.pdf", "type": "preservation"}] {"name": "eprints", "version": ""} yes 1397 +2886 {"name": "ispektra digital collection", "language": "en"} [] http://dewey.petra.ac.id/catalog/ft.php/ institutional [] 2022-01-12 15:35:39 2013-11-08 15:29:27 ["humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "petra christian university", "alternativeName": "", "country": "id", "url": "http://www.petra.ac.id/", "identifier": [{"identifier": "https://ror.org/045e97x26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 16436 +2833 {"name": "inventaire du patrimoine (r\u00e9gion bretagne)", "language": "en"} [] http://www.inventaire.culture.gouv.fr/ governmental [] 2022-01-12 15:35:38 2013-09-26 15:44:34 ["humanities"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "conseil r\u00e9gional de bretagne", "alternativeName": "", "country": "fr", "url": "http://www.bretagne.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 99298 +2889 {"name": "institutional repository of university of science and technology beijing", "language": "en"} [] http://ir.ustb.edu.cn/ institutional [] 2022-01-12 15:35:39 2013-11-12 13:17:51 ["science", "arts", "humanities", "technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "patents", "other_special_item_types"] [{"name": "university of science and technology beijing", "alternativeName": "", "country": "cn", "url": "http://www.ustb.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 95207 +2871 {"name": "south carolina state documents depository", "language": "en"} [] http://dc.statelibrary.sc.gov/ institutional [] 2022-01-12 15:35:39 2013-10-25 16:59:16 ["science", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "south carolina state library", "alternativeName": "", "country": "us", "url": "http://www.statelibrary.sc.gov/", "identifier": [{"identifier": "https://ror.org/04wxajv83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dc.statelibrary.sc.gov/oai/request yes 25526 +2858 {"name": "repository of vinnytsya national agrarian university", "language": "en"} [{"acronym": "vnau"}] http://repository.vsau.org/ institutional [] 2022-01-12 15:35:38 2013-10-21 11:37:16 ["science", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "vinnytsya national agrarian university", "alternativeName": "", "country": "ua", "url": "http://vsau.org/", "identifier": [{"identifier": "https://ror.org/05m3ysc06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.vsau.org/about.php?lang=en", "type": "metadata"}, {"policy_url": "http://repository.vsau.org/about.php?lang=en", "type": "data"}] {"name": "other", "version": ""} http://repository.vsau.org/oai/ yes 12351 +2808 {"name": "theses & dissertations", "language": "en"} [] http://theses.covenantuniversity.edu.ng/ institutional [] 2022-01-12 15:35:38 2013-09-17 15:01:47 ["science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "covenant university", "alternativeName": "", "country": "ng", "url": "http://www.covenantuniversity.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 233 +2827 {"name": "biblioteca digital lasallista bidila", "language": "en"} [] http://repository.lasallista.edu.co/dspace/ institutional [] 2022-01-12 15:35:38 2013-09-25 11:17:54 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "corporaci\u00f3n universitaria lasallista", "alternativeName": "", "country": "co", "url": "http://www.lasallista.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1744 +2875 {"name": "temple university libraries: digital colletions", "language": "en"} [] http://digital.library.temple.edu/ institutional [] 2022-01-12 15:35:39 2013-10-30 14:52:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "temple university", "alternativeName": "", "country": "us", "url": "http://www.temple.edu/", "identifier": [{"identifier": "https://ror.org/00kx1jb78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 106849 +2794 {"name": "university of cape coast institutional repository", "language": "en"} [] http://ir.ucc.edu.gh/dspace/ institutional [] 2022-01-12 15:35:37 2013-09-10 16:51:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of cape coast", "alternativeName": "", "country": "gh", "url": "http://www.ucc.edu.gh/", "identifier": [{"identifier": "https://ror.org/0492nfe34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ir.ucc.edu.gh/dspace/policy.pdf", "type": "metadata"}, {"policy_url": "http://ir.ucc.edu.gh/dspace/policy.pdf", "type": "submission"}, {"policy_url": "http://ir.ucc.edu.gh/dspace/policy.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 1391 +2868 {"name": "szte publicatio repozit\u00f3rium - szte - repository of publications", "language": "en"} [] http://publicatio.bibl.u-szeged.hu/ institutional [] 2022-01-12 15:35:39 2013-10-25 15:51:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of szeged", "alternativeName": "", "country": "hu", "url": "http://www.u-szeged.hu/", "identifier": [{"identifier": "https://ror.org/01pnej532", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://publicatio.bibl.u-szeged.hu/policies.html", "type": "metadata"}, {"policy_url": "http://publicatio.bibl.u-szeged.hu/policies.html", "type": "data"}, {"policy_url": "http://publicatio.bibl.u-szeged.hu/policies.html", "type": "content"}, {"policy_url": "http://publicatio.bibl.u-szeged.hu/policies.html", "type": "submission"}, {"policy_url": "http://publicatio.bibl.u-szeged.hu/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://publicatio.bibl.u-szeged.hu/cgi/oai2 yes 8827 +2874 {"name": "dhaka university institutional repository", "language": "en"} [] http://repository.library.du.ac.bd/ institutional [] 2022-01-12 15:35:39 2013-10-30 14:40:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of dhaka", "alternativeName": "", "country": "bd", "url": "http://www.du.ac.bd/", "identifier": [{"identifier": "https://ror.org/05wv2vq37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.library.du.ac.bd/xmlui/bitstream/handle/123456789/268/dhaka%20university%20institutional%20repository%20policy.pdf?sequence=1", "type": "metadata"}, {"policy_url": "http://repository.library.du.ac.bd/xmlui/bitstream/handle/123456789/268/dhaka%20university%20institutional%20repository%20policy.pdf?sequence=1", "type": "content"}, {"policy_url": "http://repository.library.du.ac.bd/xmlui/bitstream/handle/123456789/268/dhaka%20university%20institutional%20repository%20policy.pdf?sequence=1", "type": "submission"}, {"policy_url": "http://repository.library.du.ac.bd/xmlui/bitstream/handle/123456789/268/dhaka%20university%20institutional%20repository%20policy.pdf?sequence=1", "type": "preservation"}] {"name": "dspace", "version": ""} yes 815 +2835 {"name": "researchonline@avondale", "language": "en"} [] http://research.avondale.edu.au/ institutional [] 2022-01-12 15:35:38 2013-09-27 15:24:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "avondale college of higher education", "alternativeName": "", "country": "au", "url": "http://www.avondale.edu.au/", "identifier": [{"identifier": "https://ror.org/02r276210", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://research.avondale.edu.au/faq.html", "type": "metadata"}, {"policy_url": "http://research.avondale.edu.au/faq.html", "type": "data"}, {"policy_url": "http://research.avondale.edu.au/faq.html", "type": "content"}, {"policy_url": "http://research.avondale.edu.au/faq.html", "type": "submission"}, {"policy_url": "http://research.avondale.edu.au/faq.html", "type": "preservation"}] {"name": "other", "version": ""} yes 993 +2842 {"name": "scholarsarchive (brigham young universitys institutional repository)", "language": "en"} [] http://sites.lib.byu.edu/scholarsarchive/research/ institutional [] 2022-01-12 15:35:38 2013-10-03 17:25:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "harold b. lee library at brigham young university", "alternativeName": "", "country": "us", "url": "http://lib.byu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://sites.lib.byu.edu/scholarsarchive/policies-2/", "type": "metadata"}, {"policy_url": "http://sites.lib.byu.edu/scholarsarchive/policies-2/", "type": "data"}, {"policy_url": "http://sites.lib.byu.edu/scholarsarchive/policies-2/", "type": "content"}, {"policy_url": "http://sites.lib.byu.edu/scholarsarchive/policies-2/", "type": "submission"}, {"policy_url": "http://sites.lib.byu.edu/scholarsarchive/policies-2/", "type": "preservation"}] {"name": "contentdm", "version": ""} yes 9398 +2845 {"name": "repositorio digital udla", "language": "en"} [] http://dspace.udla.edu.ec/ institutional [] 2022-01-12 15:35:38 2013-10-07 11:23:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de las am\u00e9ricas", "alternativeName": "", "country": "ec", "url": "http://www.udla.edu.ec/", "identifier": [{"identifier": "https://ror.org/002kg1049", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 8990 +2887 {"name": "university of victoria digital collections", "language": "en"} [] http://www.uvic.ca/library/featured/collections/index.php institutional [] 2022-01-12 15:35:39 2013-11-08 16:15:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of victoria", "alternativeName": "", "country": "ca", "url": "http://www.uvic.ca/", "identifier": [{"identifier": "https://ror.org/04s5mat29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2864 {"name": "kci (korea citation index) open access repository", "language": "en"} [] http://www.kci.go.kr/ governmental [] 2022-01-12 15:35:39 2013-10-21 16:19:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nrf (national research foundation of korea), korea, republic of", "alternativeName": "", "country": "kr", "url": "http://www.nrf.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.kci.go.kr/kciportal/oai/request yes 0 100 +2797 {"name": "doiserbia phd", "language": "en"} [] http://www.doiserbia.nb.rs/phd/ institutional [] 2022-01-12 15:35:37 2013-09-11 14:59:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national library of serbia - kobson", "alternativeName": "", "country": "rs", "url": "http://www.kobson.nb.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://kobson.nb.rs/oaiphd/ yes 1013 +2812 {"name": "tulane university digital repository", "language": "en"} [] http://library.tulane.edu/repository/ institutional [] 2022-01-12 15:35:38 2013-09-18 11:15:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "tualne university", "alternativeName": "", "country": "us", "url": "http://www.tulane.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://server16313.contentdm.oclc.org/cgi-bin/oai.exe yes 0 16500 +2852 {"name": "digital library of brno university of technology", "language": "en"} [{"acronym": "digit\u00e1ln\u00ed knihovna vut"}] https://dspace.vutbr.cz/ institutional [] 2022-01-12 15:35:38 2013-10-18 15:14:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "brno university of technology", "alternativeName": "", "country": "cz", "url": "https://www.vutbr.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.vutbr.cz/oai/request yes 56517 +2825 {"name": "national university of lesotho institutional repository", "language": "en"} [{"acronym": "nulir"}] http://repository.tml.nul.ls/ institutional [] 2022-01-12 15:35:38 2013-09-24 12:29:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "national university of lesotho", "alternativeName": "", "country": "ls", "url": "http://www.nul.ls/", "identifier": [{"identifier": "https://ror.org/04j4j0a75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 1244 +2867 {"name": "repositorio digital de la universidad fasta", "language": "en"} [{"acronym": "redi"}] http://redi.ufasta.edu.ar/ institutional [] 2022-01-12 15:35:39 2013-10-25 15:23:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad fasta", "alternativeName": "", "country": "ar", "url": "http://www.ufasta.edu.ar/", "identifier": [{"identifier": "https://ror.org/03hf0wx76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://redi.ufasta.edu.ar:8080/oai/request yes 58 +2849 {"name": "institutional repository of tomas bata university library", "language": "en"} [{"acronym": "repository of tbu publications"}] http://publikace.k.utb.cz/ institutional [] 2022-01-12 15:35:38 2013-10-18 14:03:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "tomas bata university in zlin", "alternativeName": "", "country": "cz", "url": "http://www.utb.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://publikace.k.utb.cz/oai/request yes 1924 9940 +2803 {"name": "digital archive library of the msu named after a.a. kuleshov instututional repository", "language": "en"} [] https://libr.msu.by/ institutional [] 2022-01-12 15:35:38 2013-09-13 12:10:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "educational institution "mogilev state university named after a.a. kuleshov"", "alternativeName": "", "country": "by", "url": "http://msu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 540 +2860 {"name": "mykolas romeris university institutional repository", "language": "en"} [] https://repository.mruni.eu/ institutional [] 2022-01-12 15:35:39 2013-10-21 14:33:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "mykolas romeris university", "alternativeName": "", "country": "lt", "url": "http://www.mruni.eu/en/", "identifier": [{"identifier": "https://ror.org/0052k0e03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.mruni.eu/oai/request yes 4543 +2844 {"name": "repositorio acad\u00e9mico de la universidad nacional de costa rica", "language": "en"} [] http://www.repositorio.una.ac.cr/ institutional [] 2022-01-12 15:35:38 2013-10-04 14:53:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "universidad nacional de costa rica", "alternativeName": "", "country": "cr", "url": "http://www.una.ac.cr/", "identifier": [{"identifier": "https://ror.org/01t466c14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.una.ac.cr/oai/request yes 11035 +2799 {"name": "csun scholarworks", "language": "en"} [] http://scholarworks.csun.edu/ institutional [] 2022-01-12 15:35:37 2013-09-11 15:57:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "california state university northridge", "alternativeName": "", "country": "us", "url": "http://www.csun.edu/", "identifier": [{"identifier": "https://ror.org/005f5hv41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarworks.csun.edu/oai/request yes 54388 +2819 {"name": "osmania university digital library [oudl]", "language": "en"} [] http://oudl.osmania.ac.in/ institutional [] 2022-01-12 15:35:38 2013-09-23 16:51:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "osmania university", "alternativeName": "", "country": "in", "url": "http://www.osmania.ac.in/", "identifier": [{"identifier": "https://ror.org/030sjb889", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oudl.osmania.ac.in/oai/request yes 24507 +2893 {"name": "public central library of serres repository", "language": "en"} [] http://ebooks.serrelib.gr/ governmental [] 2022-01-12 15:35:39 2013-11-12 15:49:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ebooks.serrelib.gr/serrelib-oai/ yes 0 464 +2880 {"name": "pwani university institutional repository", "language": "en"} [] http://elibrary.pu.ac.ke/ir/ institutional [] 2022-01-12 15:35:39 2013-11-05 15:33:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "pwani university", "alternativeName": "", "country": "ke", "url": "http://www.pu.ac.ke/", "identifier": [{"identifier": "https://ror.org/02952pd71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 367 +2802 {"name": "repositorio documental umng", "language": "en"} [] http://repository.unimilitar.edu.co/ institutional [] 2022-01-12 15:35:37 2013-09-13 11:42:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "universidad militar nueva granada", "alternativeName": "", "country": "co", "url": "http://www.unimilitar.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unimilitar.edu.co/oai/request yes 3659 14993 +2873 {"name": "d-commons", "language": "en"} [] http://d-commons.d.umn.edu/ institutional [] 2022-01-12 15:35:39 2013-10-30 14:29:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of minnesota duluth", "alternativeName": "umd", "country": "us", "url": "http://www.d.umn.edu/", "identifier": [{"identifier": "https://ror.org/01hy4qx27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2886 +2801 {"name": "bibliodigital sidre", "language": "en"} [] http://repository.udca.edu.co:8080/jspui/ institutional [] 2022-01-12 15:35:37 2013-09-12 17:19:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de ciencias aplicadas - udca", "alternativeName": "", "country": "co", "url": "http://www.udca.edu.co/", "identifier": [{"identifier": "https://ror.org/01h2taq97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 763 +2817 {"name": "repositorio universidad de belgrano.argentina", "language": "en"} [] http://repositorio.ub.edu.ar:8080/xmlui/ institutional [] 2022-01-12 15:35:38 2013-09-23 15:45:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad de belgrano.argentina", "alternativeName": "", "country": "ar", "url": "http://www.ub.edu.ar/", "identifier": [{"identifier": "https://ror.org/03v5ycz03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5920 +2884 {"name": "repository of polessky state university (\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043f\u043e\u043b\u0435\u0441\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430)", "language": "en"} [] http://rep.polessu.by/ institutional [] 2022-01-12 15:35:39 2013-11-08 14:54:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "learning_objects"] [{"name": "educational establishment \u201cpolessky state university\u201d", "alternativeName": "", "country": "by", "url": "http://www.polessu.by/", "identifier": [{"identifier": "https://ror.org/02ttmd632", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rep.polessu.by/oai/request yes 12205 20253 +2894 {"name": "digital repository of hellenic managing authority of the operational programme \"education and lifelong learning\" (edulll)", "language": "en"} [] http://repository.edulll.gr/ institutional [] 2022-01-12 15:35:39 2013-11-12 16:05:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "hellenic managing authority of the operational programme "education and lifelong learning" (edulll)", "alternativeName": "", "country": "gr", "url": "http://www.edulll.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.edulll.gr/edulll-oai/request yes 3538 +2789 {"name": "eastern mediterranean university institutional repository (emu i-rep)", "language": "en"} [] http://i-rep.emu.edu.tr:8080/jspui/ institutional [] 2022-01-12 15:35:37 2013-09-09 15:20:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "eastern mediterranean university", "alternativeName": "", "country": "cy", "url": "http://www.emu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3102 +2809 {"name": "electronic volyn national university institutional repository", "language": "en"} [] https://evnuir.vnu.edu.ua institutional [] 2022-01-12 15:35:38 2013-09-17 15:27:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "lesia ukrainka volyn national university", "alternativeName": "", "country": "ua", "url": "https://eenu.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://evnuir.vnu.edu.ua/oai/request yes 7774 17397 +2790 {"name": "zaloamati", "language": "en"} [] http://zaloamati.azc.uam.mx/ institutional [] 2022-01-12 15:35:37 2013-09-09 15:39:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad autonoma metropolitana, unidad azcapotzalco", "alternativeName": "", "country": "mx", "url": "http://www.azc.uam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://zaloamati.azc.uam.mx/oai/request yes 5251 +2841 {"name": "scholarworks", "language": "en"} [] http://scholarworks.montana.edu/xmlui/ institutional [] 2022-01-12 15:35:38 2013-10-03 17:11:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "montana state university", "alternativeName": "", "country": "us", "url": "http://www.montana.edu/", "identifier": [{"identifier": "https://ror.org/02w0trx84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarworks.montana.edu/docs/", "type": "metadata"}, {"policy_url": "http://scholarworks.montana.edu/docs/", "type": "data"}, {"policy_url": "http://scholarworks.montana.edu/docs/", "type": "content"}, {"policy_url": "http://scholarworks.montana.edu/docs/", "type": "submission"}, {"policy_url": "http://scholarworks.montana.edu/docs/", "type": "preservation"}] {"name": "dspace", "version": ""} yes 13535 +2870 {"name": "scholarship at uwindsor", "language": "en"} [] http://scholar.uwindsor.ca institutional [] 2022-01-12 15:35:39 2013-10-25 16:53:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of windsor", "alternativeName": "", "country": "ca", "url": "http://uwindsor.ca", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholar.uwindsor.ca/do/oai yes 14092 +2869 {"name": "curve - carleton university research virtual envronment", "language": "en"} [] http://curve.carleton.ca/ institutional [] 2022-01-12 15:35:39 2013-10-25 16:24:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "carleton university", "alternativeName": "", "country": "ca", "url": "http://www.carleton.ca/", "identifier": [{"identifier": "https://ror.org/02qtvee93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 11971 +2881 {"name": "store - staffordshire online repository", "language": "en"} [{"acronym": "store"}] http://eprints.staffs.ac.uk/ institutional [] 2022-01-12 15:35:39 2013-11-05 16:24:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "staffordshire university", "alternativeName": "", "country": "gb", "url": "http://www.staffs.ac.uk/", "identifier": [{"identifier": "https://ror.org/00d6k8y35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.staffs.ac.uk/cgi/oai2 yes 1653 4535 +2851 {"name": "walisongo institutional repository", "language": "en"} [] http://eprints.walisongo.ac.id/ institutional [] 2022-01-12 15:35:38 2013-10-18 14:55:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "iain walisongo semarang", "alternativeName": "", "country": "id", "url": "http://www.walisongo.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.walisongo.ac.id/cgi/oai2 yes 7634 +2818 {"name": "university of mysore - digital repository of research, innovation and scholarship (eprints@uom)", "language": "en"} [] http://eprints.uni-mysore.ac.in/ institutional [] 2022-01-12 15:35:38 2013-09-23 16:20:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of mysore, mysore university library", "alternativeName": "", "country": "in", "url": "http://uni-mysore.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.uni-mysore.ac.in/cgi/oai2 yes 2057 8660 +2866 {"name": "cor-ciencia", "language": "en"} [] http://www.corciencia.org.ar/ aggregating [] 2022-01-12 15:35:39 2013-10-25 14:46:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "acuerdo de bibliotecas universitarias de c\u00f3rdoba (abuc)", "alternativeName": "", "country": "ar", "url": "http://www.abuc.org.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.corciencia.org.ar/cgi/oai2 yes 22 1601 +2821 {"name": "eprints online repository sriwijaya university", "language": "en"} [] http://eprints.unsri.ac.id/ institutional [] 2022-01-12 15:35:38 2013-09-23 17:29:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universitas sriwijaya", "alternativeName": "", "country": "id", "url": "http://eprint.unsri.ac.id/cgi/oai2", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprint.unsri.ac.id/cgi/oai2 yes 2014 5875 +2856 {"name": "online archive of university of virginia scholarship", "language": "en"} [{"acronym": "libra"}] https://www.library.virginia.edu/libra institutional [] 2022-01-12 15:35:38 2013-10-18 17:07:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of virginia", "alternativeName": "", "country": "us", "url": "http://www.virginia.edu/", "identifier": [{"identifier": "https://ror.org/0153tk833", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "metadata"}, {"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "data"}, {"policy_url": "https://www.library.virginia.edu/files/2018-03/libracollectionspolicy-20180122.pdf", "type": "content"}, {"policy_url": "https://www.griffith.edu.au/__data/assets/pdf_file/0030/967233/griffith-research-online-collection-statement.pdf", "type": "content"}, {"policy_url": "https://www.library.virginia.edu/libra/open/libra-public-deposit-license/", "type": "submission"}, {"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "preservation"}] {"name": "fedora", "version": ""} yes 1727 +2885 {"name": "hal clermont universit\u00e9", "language": "en"} [{"acronym": "hal clermont auvergne"}] http://hal-clermont-univ.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:39 2013-11-08 15:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "clermont universit\u00e9", "alternativeName": "universit\u00e9 clermont auvergne", "country": "fr", "url": "http://www.clermont-universite.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/clermont-univ yes 5262 60186 +2853 {"name": "digital commons @ salve regina", "language": "en"} [] http://digitalcommons.salve.edu/fac_staff/ institutional [] 2022-01-12 15:35:38 2013-10-18 15:36:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "salve regina university", "alternativeName": "", "country": "us", "url": "http://www.salve.edu/", "identifier": [{"identifier": "https://ror.org/004qfsw40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 51 +2826 {"name": "lake forest college publications", "language": "en"} [] http://publications.lakeforest.edu/ institutional [] 2022-01-12 15:35:38 2013-09-25 10:40:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "lake forest college", "alternativeName": "", "country": "us", "url": "http://www.lakeforest.edu/", "identifier": [{"identifier": "https://ror.org/04rmtzr09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://publications.lakeforest.edu/do/oai/ yes 1059 1614 +2822 {"name": "loyola ecommons", "language": "en"} [] http://ecommons.luc.edu/ institutional [] 2022-01-12 15:35:38 2013-09-24 10:55:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "learning_objects", "other_special_item_types"] [{"name": "loyola university chicago", "alternativeName": "", "country": "us", "url": "http://www.luc.edu/", "identifier": [{"identifier": "https://ror.org/04b6x2g63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ecommons.luc.edu/do/oai/ yes 10248 12341 +2834 {"name": "marshall digital scholar", "language": "en"} [] http://mds.marshall.edu/ institutional [] 2022-01-12 15:35:38 2013-09-26 16:16:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "marshall university", "alternativeName": "", "country": "us", "url": "http://www.marshall.edu/", "identifier": [{"identifier": "https://ror.org/02erqft81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4243 +2832 {"name": "unh scholars repository", "language": "en"} [] http://scholars.unh.edu/ institutional [] 2022-01-12 15:35:38 2013-09-26 14:32:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of new hampshire", "alternativeName": "", "country": "us", "url": "http://www.unh.edu/", "identifier": [{"identifier": "https://ror.org/01rmh9n78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholars.unh.edu/do/oai/ yes 17754 49639 +2839 {"name": "isu red: research and edata", "language": "en"} [] http://ir.library.illinoisstate.edu/ institutional [] 2022-01-12 15:35:38 2013-10-03 16:32:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "illinois state university", "alternativeName": "", "country": "us", "url": "http://illinoisstate.edu/", "identifier": [{"identifier": "https://ror.org/050kcr883", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ir.library.illinoisstate.edu/guidelines.html", "type": "metadata"}, {"policy_url": "http://ir.library.illinoisstate.edu/guidelines.html", "type": "data"}, {"policy_url": "http://ir.library.illinoisstate.edu/guidelines.html", "type": "content"}, {"policy_url": "http://ir.library.illinoisstate.edu/guidelines.html", "type": "submission"}, {"policy_url": "http://ir.library.illinoisstate.edu/guidelines.html", "type": "preservation"}] {"name": "other", "version": ""} http://ir.library.illinoisstate.edu/do/oai/ yes 1214 +2806 {"name": "cyberleninka - russian open access scientific library", "language": "en"} [] http://cyberleninka.ru/ aggregating [] 2022-01-12 15:35:38 2013-09-16 11:39:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "iteos", "alternativeName": "", "country": "ru", "url": "http://www.iteos.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://cyberleninka.ru/oai yes 360 +2863 {"name": "portal de tesis latinoamericanas", "language": "en"} [] http://www.tesislatinoamericanas.info/ institutional [] 2022-01-12 15:35:39 2013-10-21 15:53:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl/", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 500 +2872 {"name": "seals digital commons", "language": "en"} [] http://vital.seals.ac.za institutional [] 2022-01-12 15:35:39 2013-10-30 14:26:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "seals consortium", "alternativeName": "", "country": "za", "url": "http://www.seals.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} http://vital.seals.ac.za:8080/vital/oai/provider yes 234 7804 +2796 {"name": "elibrary national mining university", "language": "en"} [] http://ir.nmu.org.ua/ institutional [] 2022-01-12 15:35:37 2013-09-11 14:46:26 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "national mining university", "alternativeName": "", "country": "ua", "url": "http://www.nmu.org.ua/ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nmu.org.ua/oai/request yes 11222 13241 +2795 {"name": "warsaw university of technology repository", "language": "en"} [] http://repo.pw.edu.pl/ institutional [] 2022-01-12 15:35:37 2013-09-11 14:08:17 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "politechniki warszawskiej (warsaw university of technology)", "alternativeName": "", "country": "pl", "url": "http://www.pw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repo.pw.edu.pl/oaicat/ yes 0 75392 +2838 {"name": "fiskeridirektoratets digitalarkiv", "language": "en"} [] https://fdir.brage.unit.no governmental [] 2022-01-12 15:35:38 2013-10-03 16:08:12 ["science"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "the norwegian directorate of fisheries", "alternativeName": "", "country": "no", "url": "http://fiskeridir.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://data.norge.no/nlod/no", "type": "metadata"}, {"policy_url": "http://data.norge.no/nlod/no", "type": "data"}] {"name": "dspace", "version": ""} https://fdir.brage.unit.no/fdir-oai/request yes 9692 +2804 {"name": "ifapa - servifapa", "language": "es"} [{"acronym": "servifapa"}] http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa governmental [] 2022-01-12 15:35:38 2013-09-13 12:56:17 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "research and training institute for agriculture and fisheries of andalusia (ifapa)", "alternativeName": "", "country": "es", "url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa/avisoslegales", "type": "metadata"}, {"policy_url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa/avisoslegales", "type": "data"}, {"policy_url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa/avisoslegales", "type": "content"}, {"policy_url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa/avisoslegales", "type": "submission"}, {"policy_url": "http://www.juntadeandalucia.es/agriculturaypesca/ifapa/servifapa/avisoslegales", "type": "preservation"}] {"name": "other", "version": ""} http://www.juntadeandalucia.es/agriculturaypesca/ifapa/oai yes +2883 {"name": "mertz digital collections @ new york botanical garden digital library", "language": "en"} [] http://mertzdigital.nybg.org/ disciplinary [] 2022-01-12 15:35:39 2013-11-07 13:05:25 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "new york botanical garden", "alternativeName": "", "country": "us", "url": "http://www.nybg.org/", "identifier": [{"identifier": "https://ror.org/03tv88982", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 2908 +2846 {"name": "biblioteca digital of the centro de informati\u00f3n de recursos naturales", "language": "en"} [] http://bibliotecadigital.ciren.cl/ institutional [] 2022-01-12 15:35:38 2013-10-07 14:10:00 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "centro de informati\u00f3n de recursos naturales (ciren)", "alternativeName": "", "country": "cl", "url": "http://www.ciren.cl/web/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 19877 +2836 {"name": "ruforum institutional repository", "language": "en"} [] http://repository.ruforum.org/ institutional [] 2022-01-12 15:35:38 2013-09-30 17:12:25 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "regional universities forum for capacity building in agriculture", "alternativeName": "", "country": "ug", "url": "http://www.ruforum.org/", "identifier": [{"identifier": "https://ror.org/02n352k96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://repository.ruforum.org/oai yes 0 2182 +2861 {"name": "goddard library repository", "language": "en"} [] http://gsfcir.gsfc.nasa.gov/ institutional [] 2022-01-12 15:35:39 2013-10-21 14:50:17 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national aeronautics and space administration, goddard space flight center", "alternativeName": "", "country": "us", "url": "http://www.nasa.gov/centers/goddard/home/index.html", "identifier": [{"identifier": "https://ror.org/0171mag52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 4250 +2837 {"name": "biblioteca digital del programa pro-huerta (inta-mds) / pro-huertas (inta-mds) digital library", "language": "en"} [] http://prohuerta.inta.gov.ar/biblioteca governmental [] 2022-01-12 15:35:38 2013-10-02 16:19:05 ["science"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "pro-huerta", "alternativeName": "", "country": "ar", "url": "http://prohuertacn@correo.inta.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 323 +2877 {"name": "mario mgulunde learning resource centre repository", "language": "en"} [{"acronym": "mlrc instititutional repository"}] http://41.93.80.3:8080/jspui/ institutional [] 2022-01-12 15:35:39 2013-11-04 17:02:57 ["social sciences", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "saint augustine university of tanzania (saut)", "alternativeName": "", "country": "tz", "url": "http://www.saut.ac.tz/", "identifier": [{"identifier": "https://ror.org/00p8msr48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 311 +2830 {"name": "ansenuza", "language": "en"} [] http://www.ansenuza.unc.edu.ar/ disciplinary [] 2022-01-12 15:35:38 2013-09-26 11:16:23 ["social sciences"] ["learning_objects"] [{"name": "universidad nacional de c\u00f3rdoba", "alternativeName": "", "country": "ar", "url": "http://www.unc.edu.ar/", "identifier": [{"identifier": "https://ror.org/056tb7j80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 405 +2823 {"name": "biblioteca digital do idp", "language": "en"} [] http://www.idp.edu.br/dspace institutional [] 2022-01-12 15:35:38 2013-09-24 11:38:33 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto brasiliense de direito p\u00fablico", "alternativeName": "", "country": "br", "url": "http://www.idp.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1903 +2876 {"name": "the academy of public administration under the aegis of the president of the republic of belarus", "language": "en"} [] http://rep.pac.by/jspui/ institutional [] 2022-01-12 15:35:39 2013-11-04 16:31:43 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "the academy of public administration under the aegis of the president of the republic of belarus", "alternativeName": "", "country": "by", "url": "http://www.pac.by/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 178 +2855 {"name": "flash: the fordham law archive of scholarship and history", "language": "en"} [] http://ir.lawnet.fordham.edu/ institutional [] 2022-01-12 15:35:38 2013-10-18 16:44:46 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "fordham law school", "alternativeName": "", "country": "us", "url": "http://law.fordham.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 8684 +2847 {"name": "institutional repository of institute of process engineering, cas (ipe-ir\uff09", "language": "en"} [{"acronym": "casipe-ir"}] http://ir.ipe.ac.cn/ institutional [] 2022-01-12 15:35:38 2013-10-15 16:13:45 ["technology"] ["journal_articles"] [{"name": "institute of process engineering, cas(\u4e2d\u56fd\u79d1\u5b66\u9662\u8fc7\u7a0b\u5de5\u7a0b\u7814\u7a76\u6240\uff09", "alternativeName": "ipe-cas", "country": "cn", "url": "http://www.ipe.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.ipe.ac.cn/casirgrid-oai/request yes 1 31702 +2824 {"name": "cerist digital library", "language": "en"} [] http://dl.cerist.dz/ institutional [] 2022-01-12 15:35:38 2013-09-24 12:04:38 ["technology"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "cerist", "alternativeName": "", "country": "dz", "url": "http://emusicdownloader.blogspot.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 759 +2820 {"name": "hsr - institutional repository", "language": "en"} [] http://eprints.hsr.ch/ institutional [] 2022-01-12 15:35:38 2013-09-23 17:03:50 ["technology"] ["theses_and_dissertations"] [{"name": "hsr hochschule f\u00fcr technik rapperswil", "alternativeName": "", "country": "ch", "url": "http://www.hsr.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.hsr.ch/cgi/oai2 yes 7 841 +2811 {"name": "cuhk digital repository", "language": "en"} [] http://repository.lib.cuhk.edu.hk/ institutional [] 2022-01-12 15:35:38 2013-09-18 10:33:30 ["humanities", "arts", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "chinese university of hong kong", "alternativeName": "", "country": "hk", "url": "http://www.cuhk.edu.hk/english/index.html", "identifier": [{"identifier": "https://ror.org/00t33hh48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.lib.cuhk.edu.hk/en/digitisation-policy#5access", "type": "preservation"}] {"name": "drupal", "version": ""} http://repository.lib.cuhk.edu.hk/oai2 yes 25962 +2882 {"name": "jable. archivo de prensa de canarias", "language": "en"} [] http://jable.ulpgc.es/ institutional [] 2022-01-12 15:35:39 2013-11-07 11:14:48 ["humanities"] ["journal_articles", "other_special_item_types"] [{"name": "universidad de las palmas de gran canaria", "alternativeName": "ulpgc", "country": "es", "url": "http://www.ulpgc.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://biblioteca.ulpgc.es/avisomdc", "type": "data"}] {"name": "other", "version": ""} http://jable.ulpgc.es/jable/cgi-bin/oai yes 2576594 +2828 {"name": "fisher digital publications", "language": "en"} [] http://fisherpub.sjfc.edu/ institutional [] 2022-01-12 15:35:38 2013-09-25 11:58:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "st. john fisher college, lavery library", "alternativeName": "", "country": "us", "url": "http://www.sjfc.edu/library/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://fisherpub.sjfc.edu/fdp_submission_policy.pdf", "type": "content"}, {"policy_url": "http://fisherpub.sjfc.edu/fdp_submission_policy.pdf", "type": "submission"}, {"policy_url": "http://fisherpub.sjfc.edu/fdp_submission_policy.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://fisherpub.sjfc.edu/do/oai/ yes 4803 6164 +2792 {"name": "eprints @mdrf", "language": "en"} [] http://mdrf-eprints.in/ institutional [] 2022-01-12 15:35:37 2013-09-09 17:03:59 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "madras diabetes research foundation", "alternativeName": "", "country": "in", "url": "http://mdrf.in/", "identifier": [{"identifier": "https://ror.org/00czgcw56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://mdrf-eprints.in/policies.html", "type": "metadata"}, {"policy_url": "http://mdrf-eprints.in/policies.html", "type": "data"}, {"policy_url": "http://mdrf-eprints.in/policies.html", "type": "content"}, {"policy_url": "http://mdrf-eprints.in/policies.html", "type": "submission"}, {"policy_url": "http://mdrf-eprints.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://mdrf-eprints.in/cgi/oai2 yes 33 100 +2878 {"name": "institute of volcanology and seismology feb ras repository", "language": "en"} [] http://repo.kscnet.ru/ institutional [] 2022-01-12 15:35:39 2013-11-05 15:02:14 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "institute of volcanology and seismology feb ras", "alternativeName": "", "country": "ru", "url": "http://www.kscnet.ru/ivs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.kscnet.ru/policies.html", "type": "metadata"}, {"policy_url": "http://repo.kscnet.ru/policies.html", "type": "data"}, {"policy_url": "http://repo.kscnet.ru/policies.html", "type": "content"}, {"policy_url": "http://repo.kscnet.ru/policies.html", "type": "submission"}, {"policy_url": "http://repo.kscnet.ru/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repo.kscnet.ru/cgi/oai2 yes 1625 3376 +2831 {"name": "virtual commons - bridgewater state university", "language": "en"} [] http://vc.bridgew.edu/ institutional [] 2022-01-12 15:35:38 2013-09-26 12:32:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "bridgewater state university", "alternativeName": "", "country": "us", "url": "http://www.bridgew.edu/", "identifier": [{"identifier": "https://ror.org/02x3skf39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://vc.bridgew.edu/faq.html", "type": "content"}, {"policy_url": "http://vc.bridgew.edu/faq.html", "type": "submission"}, {"policy_url": "http://vc.bridgew.edu/faq.html", "type": "preservation"}] {"name": "other", "version": ""} http://vc.bridgew.edu/do/oai/ yes 5439 8596 +2807 {"name": "oxford text archive", "language": "en"} [] http://ota.ox.ac.uk/ disciplinary [] 2022-01-12 15:35:38 2013-09-16 14:17:35 ["arts", "humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of oxford", "alternativeName": "", "country": "gb", "url": "http://www.ox.ac.uk/", "identifier": [{"identifier": "https://ror.org/052gg0110", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ota.ox.ac.uk/about/faq.xml", "type": "metadata"}, {"policy_url": "http://www.ota.ox.ac.uk/about/faq.xml", "type": "data"}, {"policy_url": "http://www.ota.ox.ac.uk/about/faq.xml", "type": "content"}] {"name": "other", "version": ""} http://www.ota.ox.ac.uk/cgi-bin/oai.pl yes 0 63887 +2814 {"name": "shareok repository", "language": "en"} [] https://shareok.org/ institutional [] 2022-01-12 15:35:38 2013-09-20 10:39:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of oklahoma / oklahoma state university", "alternativeName": "", "country": "us", "url": "http://libraries.ou.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://shareok.org/handle/11244/330071", "type": "metadata"}, {"policy_url": "https://shareok.org/handle/11244/330071", "type": "data"}, {"policy_url": "https://shareok.org/handle/11244/330071", "type": "content"}, {"policy_url": "https://shareok.org/handle/11244/330071", "type": "submission"}, {"policy_url": "https://shareok.org/handle/11244/330071", "type": "preservation"}] {"name": "dspace", "version": ""} https://shareok.org/oai/request yes 19024 74313 +2865 {"name": "digital library of polotsk state university", "language": "en"} [{"acronym": "psu"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043f\u043e\u043b\u043e\u0446\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430", "language": "ru"}] https://elib.psu.by institutional [] 2022-01-27 11:34:30 2013-10-21 16:37:39 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "polotsk state university", "alternativeName": "", "country": "by", "url": "https://www.psu.by", "identifier": [{"identifier": "https://ror.org/03nhq5b06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://elib.psu.by/pdf/digitallibraryofpolotskstateuniversity-en.pdf", "type": "metadata"}, {"policy_url": "https://elib.psu.by/pdf/digitallibraryofpolotskstateuniversity-en.pdf", "type": "data"}, {"policy_url": "https://elib.psu.by/pdf/digitallibraryofpolotskstateuniversity-en.pdf", "type": "content"}, {"policy_url": "https://elib.psu.by/pdf/digitallibraryofpolotskstateuniversity-en.pdf", "type": "submission"}, {"policy_url": "https://elib.psu.by/pdf/digitallibraryofpolotskstateuniversity-en.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://elib.psu.by/oai/request yes 9103 14891 +2816 {"name": "recil - reposit\u00f3rio cient\u00edfico lus\u00f3fona", "language": "en"} [] http://recil.grupolusofona.pt/ institutional [] 2022-01-12 15:35:38 2013-09-20 12:42:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade lus\u00f3fona", "alternativeName": "", "country": "pt", "url": "http://www.ulusofona.pt/", "identifier": [{"identifier": "https://ror.org/05xxfer42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.ulusofona.pt/pt/media-ref/regulamento-recil/download/recil.pdf", "type": "metadata"}, {"policy_url": "https://www.ulusofona.pt/pt/media-ref/regulamento-recil/download/recil.pdf", "type": "content"}] {"name": "dspace", "version": ""} http://recil.grupolusofona.pt/oai/request yes 3614 5715 +2793 {"name": "earth simulator research results repository", "language": "en"} [{"name": "\u5730\u7403\u30b7\u30df\u30e5\u30ec\u30fc\u30bf\u7814\u7a76\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.jamstec.go.jp/es-repository/portal/en/index.html institutional [] 2022-01-12 15:35:37 2013-09-09 17:22:00 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "japan agency for marine-earth science and technology", "alternativeName": "", "country": "jp", "url": "http://www.jamstec.go.jp/e/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.jamstec.go.jp/es-repository/portal/en/esr.html", "type": "data"}] {"name": "other", "version": ""} http://www.jamstec.go.jp/es-repository/oai/oai2.0.cgi yes 149 9756 +2982 {"name": "sust repository", "language": "en"} [] http://repository.sustech.edu institutional [] 2022-01-12 15:35:40 2014-02-13 12:37:46 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "sudan university of science and technology", "alternativeName": "sust", "country": "sd", "url": "http://www.sustech.edu", "identifier": [{"identifier": "https://ror.org/02fwtg066", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.sustech.edu/oai/request yes 0 18370 +2953 {"name": "university of biskra repository", "language": "en"} [] http://archives.univ-biskra.dz/ institutional [] 2022-01-12 15:35:40 2014-01-24 14:07:26 ["arts", "humanities", "science", "social sciences", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of biskra, algeria", "alternativeName": "", "country": "dz", "url": "http://univ-biskra.dz/", "identifier": [{"identifier": "https://ror.org/05fr5y859", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://archives.univ-biskra.dz/oai/request yes 0 10431 +2916 {"name": "repository of l.n. gumilyov eurasian national university", "language": "en"} [{"acronym": "enu repository"}] http://repository.enu.kz/ institutional [] 2022-01-12 15:35:39 2013-11-28 11:30:59 ["arts", "humanities", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "l.n. gumilyov eurasian national university", "alternativeName": "", "country": "kz", "url": "http://www.enu.kz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12686 +2902 {"name": "reposit\u00f3rio aberto do instituto superior miguel torga", "language": "en"} [] http://repositorio.ismt.pt/ institutional [] 2022-01-12 15:35:39 2013-11-14 10:46:02 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "instituto superior miguel torga", "alternativeName": "", "country": "pt", "url": "http://www.ismt.pt/", "identifier": [{"identifier": "https://ror.org/04xkdwy10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ismt.pt/oai/request yes 796 1160 +2947 {"name": "repository of belarusian state university of culture and arts", "language": "en"} [{"acronym": "repository bsuca"}] http://repository.buk.by institutional [] 2022-01-12 15:35:40 2014-01-10 16:01:18 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "belarusian state university of culture and arts", "alternativeName": "", "country": "by", "url": "http://www.buk.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.buk.by/oai/request yes 10273 +2914 {"name": "wmsu", "language": "en"} [] http://works.bepress.com/frede_moreno/ institutional [] 2022-01-12 15:35:39 2013-11-27 11:10:24 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "western mindanao state university", "alternativeName": "", "country": "ph", "url": "http://www.wmsu.edu.ph/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 15 +2975 {"name": "denison digital resource commons: history of fashion", "language": "en"} [] http://cdm15963.contentdm.oclc.org/cdm/landingpage/collection/p15963coll3 institutional [] 2022-01-12 15:35:40 2014-02-10 12:20:41 ["arts", "humanities"] ["other_special_item_types"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "http://denison.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 310 +2976 {"name": "the five colleges of ohio digital repository: looking back, looking forward", "language": "en"} [] http://ohio5.openrepository.com/ohio5/ institutional [] 2022-01-12 15:35:40 2014-02-10 12:41:50 ["arts", "humanities"] ["unpub_reports_and_working_papers"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "http://denison.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4419 +2933 {"name": "seminole state college of florida digital collections", "language": "en"} [] http://seminolestate.sobek.ufl.edu/ institutional [] 2022-01-12 15:35:40 2013-12-17 10:58:48 ["arts", "humanities"] ["other_special_item_types"] [{"name": "seminole state college of florida", "alternativeName": "", "country": "us", "url": "http://www.seminolestate.edu/", "identifier": [{"identifier": "https://ror.org/02966z980", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://seminolestate.sobek.ufl.edu/sobekcm_oai.aspx yes 0 189 +2972 {"name": "national jukebox", "language": "en"} [] http://www.loc.gov/jukebox/ disciplinary [] 2022-01-12 15:35:40 2014-02-07 10:30:33 ["arts"] ["other_special_item_types"] [{"name": "library of congress", "alternativeName": "lc", "country": "us", "url": "http://www.loc.gov/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.loc.gov/jukebox/playlists/basics", "type": "metadata"}, {"policy_url": "http://www.loc.gov/jukebox/playlists/basics", "type": "data"}] {"name": "", "version": ""} yes 10322 +2925 {"name": "ir@cecri", "language": "en"} [] http://cecri.csircentral.net/ institutional [] 2022-01-12 15:35:39 2013-12-05 13:03:11 ["engineering"] ["journal_articles"] [{"name": "csir-central electrochemical research institute", "alternativeName": "", "country": "in", "url": "http://www.cecri.res.in/", "identifier": [{"identifier": "https://ror.org/01qek3q18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://cecri.csircentral.net/cgi/oai2 yes 1176 2640 +2926 {"name": "corus", "language": "en"} [] https://ctsacorus.org/ disciplinary [] 2022-01-12 15:35:39 2013-12-06 11:07:34 ["health and medicine", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "datasets", "learning_objects", "other_special_item_types"] [{"name": "indiana clinical translational sciences institute", "alternativeName": "", "country": "us", "url": "https://www.indianactsi.org/", "identifier": [{"identifier": "https://ror.org/022t7q367", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 151 +2904 {"name": "iwate medical university repository", "language": "en"} [{"name": "\u5ca9\u624b\u533b\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iwatemed.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:39 2013-11-18 16:24:45 ["health and medicine"] ["theses_and_dissertations", "journal_articles"] [{"name": "iwate medical university", "alternativeName": "", "country": "jp", "url": "http://www.iwate-med.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iwatemed.repo.nii.ac.jp/oai yes 5493 +2957 {"name": "biblioteka cyfrowa instytutu geodezji i kartografii", "language": "en"} [] http://bc.igik.edu.pl/dlibra institutional [] 2022-01-12 15:35:40 2014-01-24 15:17:04 ["humanities", "science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instytut geodezji i kartografii o\u015brodek informacji naukowej technicznej i ekonomicznej", "alternativeName": "", "country": "pl", "url": "http://www.igik.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} yes 761 +2978 {"name": "kenya human rights commission institutional repository", "language": "en"} [] http://resource.khrc.or.ke:8181/khrc/ institutional [] 2022-01-12 15:35:40 2014-02-12 11:42:28 ["humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kenya human rights commission", "alternativeName": "", "country": "ke", "url": "http://www.khrc.or.ke/", "identifier": [{"identifier": "https://ror.org/04y64y937", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 152 +2952 {"name": "digital repository of the institute for philosophy and social theory, university of belgrade", "language": "en"} [] http://rifdt.instifdt.bg.ac.rs/ institutional [] 2022-01-12 15:35:40 2014-01-23 11:32:06 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "institute for philosophy and social theory, university of belgrade", "alternativeName": "", "country": "rs", "url": "http://instifdt.bg.ac.rs/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rifdt.instifdt.bg.ac.rs/files/policy-rifdt-en.html", "type": "metadata"}, {"policy_url": "http://rifdt.instifdt.bg.ac.rs/files/policy-rifdt-en.html", "type": "data"}, {"policy_url": "http://rifdt.instifdt.bg.ac.rs/files/policy-rifdt-en.html", "type": "content"}, {"policy_url": "http://rifdt.instifdt.bg.ac.rs/files/policy-rifdt-en.html", "type": "submission"}, {"policy_url": "http://rifdt.instifdt.bg.ac.rs/files/policy-rifdt-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rifdt.instifdt.bg.ac.rs/oai/request yes 1763 +2935 {"name": "virtual library of cieplan", "language": "en"} [] http://www.cieplan.org/biblioteca/index.tpl?categoria=libro&startat=1&page=1# disciplinary [] 2022-01-12 15:35:40 2013-12-17 11:57:23 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "corporation for latin american studies (cieplan)", "alternativeName": "", "country": "cl", "url": "http://www.cieplan.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 495 +2896 {"name": "acropolis educational resources repository", "language": "en"} [] http://repository.acropolis-education.gr/acr_edu/ institutional [] 2022-01-12 15:35:39 2013-11-13 14:59:55 ["humanities"] ["books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.acropolis-education.gr/acr_edu_oai/request yes 29 291 +2959 {"name": "electronic library pavel sukhoi state technical university of gomel (gstu)", "language": "en"} [] http://elib.gstu.by/ institutional [] 2022-01-12 15:35:40 2014-01-27 15:16:17 ["mathematics", "science", "social sciences", "technology"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "pavel sukhoi state technical university of gomel", "alternativeName": "", "country": "by", "url": "http://www.gstu.by/", "identifier": [{"identifier": "https://ror.org/030avcv93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://elib.gstu.by/license.html", "type": "metadata"}, {"policy_url": "http://elib.gstu.by/license.html", "type": "data"}, {"policy_url": "http://elib.gstu.by/license.html", "type": "content"}, {"policy_url": "http://elib.gstu.by/license.html", "type": "submission"}, {"policy_url": "http://elib.gstu.by/license.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://elib.gstu.by/oai/request yes 11695 +2996 {"name": "baku higher oil school repository", "language": "en"} [] http://dspace.bhos.edu.az/ institutional [] 2022-01-12 15:35:40 2014-03-06 12:56:02 ["science", "arts", "humanities", "social sciences", "technology"] ["books_chapters_and_sections", "learning_objects"] [{"name": "state oil company of azerbaijan republic", "alternativeName": "", "country": "az", "url": "http://new.socar.az/socar/az/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bhos.edu.az/xmlui/ yes 0 1232 +2968 {"name": "institutional digital repository for naif arab university for security sciences", "language": "en"} [{"acronym": "\u0627\u0644\u0645\u0633\u062a\u0648\u062f\u0639 \u0627\u0644\u0631\u0642\u0645\u064a \u0627\u0644\u0645\u0624\u0633\u0633\u064a \u0644\u062c\u0627\u0645\u0639\u0629 \u0646\u0627\u064a\u0641 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0644\u0644\u0639\u0644\u0648\u0645 \u0627\u0644\u0627\u0645\u0646\u064a\u0629"}] http://repository.nauss.edu.sa/ institutional [] 2022-01-12 15:35:40 2014-02-05 13:05:02 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "naif arab university for security sciences", "alternativeName": "", "country": "sa", "url": "http://www.nauss.edu.sa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.nauss.edu.sa/oai/request yes 13072 +2951 {"name": "federal university oye ekiti repository", "language": "en"} [] http://www.repository.fuoye.edu.ng/ institutional [] 2022-01-12 15:35:40 2014-01-20 12:36:39 ["science", "arts", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "federal university oye ekiti", "alternativeName": "", "country": "ng", "url": "http://loadedmovies.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1166 +2963 {"name": "biological magnetic resonance data bank", "language": "en"} [] http://www.bmrb.wisc.edu/ disciplinary [] 2022-01-12 15:35:40 2014-01-27 17:13:28 ["science", "health and medicine"] ["datasets", "other_special_item_types"] [{"name": "university of wisconsin systems", "alternativeName": "uw", "country": "us", "url": "http://www.wisc.edu/", "identifier": [{"identifier": "https://ror.org/01y2jtd41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +2915 {"name": "polnep repository", "language": "en"} [] http://repository.polnep.ac.id/ institutional [] 2022-01-12 15:35:39 2013-11-28 10:47:26 ["science", "social sciences", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "politeknik negeri pontianak", "alternativeName": "", "country": "id", "url": "http://www.polnep.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1384 +2910 {"name": "benguet state university digital library", "language": "en"} [] http://digilib.bsu.edu.ph/greenstone/cgi-bin/library.cgi institutional [] 2022-01-12 15:35:39 2013-11-21 11:24:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "benguet state university", "alternativeName": "", "country": "ph", "url": "http://www.bsu.edu.ph", "identifier": [{"identifier": "https://ror.org/037wmkw40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 872 +2964 {"name": "digital repository of the university of belgrade", "language": "en"} [{"acronym": "phaidra"}] https://phaidrabg.bg.ac.rs/ institutional [] 2022-01-12 15:35:40 2014-01-28 13:52:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of belgrade, university library "svetozar markovic"", "alternativeName": "", "country": "rs", "url": "http://www.unilib.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 5769 +2973 {"name": "mersin \u00fcniversitesi a\u00e7\u0131k eri\u015fim sistemi/mersin university open access system", "language": "en"} [] http://mersin.mitosweb.com/ institutional [] 2022-01-12 15:35:40 2014-02-10 10:55:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "mersin \u00fcniversitesi/mersin university", "alternativeName": "", "country": "tr", "url": "http://www.mersin.edu.tr/", "identifier": [{"identifier": "https://ror.org/04nqdwb39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://mersin.edu.tr/idarib/kutuphane-ve-dokumantasyon-daire-baskanligi/mersin-universitesi-acik-erisim-sistemi", "type": "metadata"}] {"name": "other", "version": ""} http://mersin.mitosweb.com/services_oai2/ yes 1040 +2971 {"name": "roca", "language": "en"} [] http://repositorio.roca.utfpr.edu.br/jspui/ institutional [] 2022-01-12 15:35:40 2014-02-06 11:07:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidade tecnol\u00f3gica federal do paran\u00e1", "alternativeName": "", "country": "br", "url": "http://www.utfpr.edu.br/", "identifier": [{"identifier": "https://ror.org/002v2kq79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio.roca.utfpr.edu.br/jspui/sobre/politica_repositorio_1.pdf", "type": "data"}] {"name": "dspace", "version": ""} yes 8886 +2990 {"name": "repositorio institucional acad\u00e9mico universidad andr\u00e9s bello", "language": "en"} [] http://repositorio.unab.cl/ institutional [] 2022-01-12 15:35:40 2014-02-26 15:22:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "universidad andr\u00e9s bello (chile)", "alternativeName": "", "country": "cl", "url": "http://www.unab.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio.unab.cl/xmlui/page/polit", "type": "content"}, {"policy_url": ".", "type": "submission"}] {"name": "dspace", "version": ""} http://repositorio.unab.cl/oai/request?verb=identify yes 5127 +2967 {"name": "zimbabwe open university repository", "language": "en"} [{"acronym": "zou space"}] http://www.lis.zou.ac.zw:8080/dspace/ institutional [] 2022-01-12 15:35:40 2014-02-05 11:32:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "zimbabwe open university", "alternativeName": "", "country": "zw", "url": "http://www.zou.ac.zw/", "identifier": [{"identifier": "https://ror.org/05kyrk544", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 320 +2999 {"name": "repozytorium instytucjonalne krakowskiej akademii", "language": "en"} [{"acronym": "erika"}] https://repozytorium.ka.edu.pl/ institutional [] 2022-01-12 15:35:41 2014-03-11 10:34:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "krakowska akademia im. andrzeja frycza modrzewskiego (kaafm) / andrzej frycz modrzewski krakow university (afmku)", "alternativeName": "", "country": "pl", "url": "http://www.ka.edu.pl/", "identifier": [{"identifier": "https://ror.org/03m9nwf24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repozytorium.ka.edu.pl/oai/request?verb=identify yes 2486 4610 +2989 {"name": "electronic uman state pedagogical university institutional repository", "language": "en"} [] http://dspace.udpu.org.ua/ institutional [] 2022-01-12 15:35:40 2014-02-25 11:27:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "pavlo tychyna uman state pedagogical university", "alternativeName": "", "country": "ua", "url": "http://udpu.org.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8451 +2998 {"name": "saint petersburg state university research repository", "language": "en"} [] http://dspace.spbu.ru/ institutional [] 2022-01-12 15:35:41 2014-03-10 15:17:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "saint petersburg state university", "alternativeName": "", "country": "ru", "url": "http://spbu.ru/", "identifier": [{"identifier": "https://ror.org/023znxa73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 9016 +2897 {"name": "openuniud", "language": "en"} [] https://dspace-uniud.cilea.it/ institutional [] 2022-01-12 15:35:39 2013-11-13 15:17:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di udine", "alternativeName": "", "country": "it", "url": "http://www.uniud.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 602 +2994 {"name": "riuvic", "language": "en"} [] http://repositori.uvic.cat/ institutional [] 2022-01-12 15:35:40 2014-03-05 13:06:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universitat de vic - universitat central de catalunya", "alternativeName": "", "country": "es", "url": "http://www.uvic.cat/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.uvic.cat/oai/request yes 1376 4590 +2936 {"name": "repositorio uc", "language": "en"} [] http://repositorio.uc.cl/xmlui institutional [] 2022-01-12 15:35:40 2013-12-17 13:54:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "pontificia universidad cat\u00f3lica de chile", "alternativeName": "", "country": "cl", "url": "http://www.uc.cl/", "identifier": [{"identifier": "https://ror.org/04teye511", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 17927 +2946 {"name": "reposit\u00f3rio institucional unesp", "language": "en"} [] http://base.repositorio.unesp.br/ institutional [] 2022-01-12 15:35:40 2014-01-10 15:20:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade estadual paulista "j\u00falio de mesquita filho"", "alternativeName": "unesp", "country": "br", "url": "http://www.unesp.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://base.repositorio.unesp.br/oai/request yes 0 100 +2907 {"name": "reposit\u00f3rio institucional da universidade federal de minas gerais", "language": "pt"} [] https://repositorio.ufmg.br institutional [] 2022-01-12 15:35:39 2013-11-19 16:13:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidade federal de minas gerais", "alternativeName": "", "country": "br", "url": "https://www.ufmg.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufmg.br/oai/request yes 723 +2969 {"name": "reposit\u00f3rio institucional da ufpb", "language": "es"} [] https://repositorio.ufpb.br/ institutional [] 2022-01-12 15:35:40 2014-02-06 10:11:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal da para\u00edba", "alternativeName": "ufpb", "country": "br", "url": "http://www.ufpb.br/", "identifier": [{"identifier": "https://ror.org/00p9vpz11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufpb.br/oai/request yes 3616 +2983 {"name": "dspace at novosibirsk state university", "language": "en"} [] http://lib.nsu.ru:8080/xmlui/ institutional [] 2022-01-12 15:35:40 2014-02-18 11:03:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "novosibirsk state university", "alternativeName": "", "country": "ru", "url": "http://www.nsu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 10983 +2940 {"name": "dspace university hassiba benbouali of chlef - algeria", "language": "en"} [] http://dspace.univ-chlef.dz:8080/jspui/ institutional [] 2022-01-12 15:35:40 2014-01-07 17:28:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university hassiba benbouali of chlef - algeria", "alternativeName": "", "country": "dz", "url": "http://www.univ-chlef.dz/uc/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univ-chlef.dz:8080/oai/ yes 1136 +2943 {"name": "repositorio digital", "language": "en"} [] https://repositorio.uninove.br/xmlui/ institutional [] 2022-01-12 15:35:40 2014-01-08 11:29:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidade nove de julho - uninove", "alternativeName": "", "country": "br", "url": "http://www.uninove.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 928 +2923 {"name": "biblioteca digital umsa", "language": "en"} [] http://bibliotecadigital.umsa.bo/ institutional [] 2022-01-12 15:35:39 2013-12-05 12:15:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad mayor de san andres", "alternativeName": "", "country": "bo", "url": "http://www.umsa.bo/", "identifier": [{"identifier": "https://ror.org/00k4v9x79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4707 +2986 {"name": "dspace ssru", "language": "en"} [] http://www.ssruir.ssru.ac.th/ institutional [] 2022-01-12 15:35:40 2014-02-24 11:05:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "suan sunandha rajabhat university", "alternativeName": "", "country": "th", "url": "http://www.ssru.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 765 +2929 {"name": "pioneer open access repository", "language": "en"} [] http://poar.twu.edu/ institutional [] 2022-01-12 15:35:40 2013-12-10 14:36:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "texas womans university", "alternativeName": "", "country": "us", "url": "http://www.twu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://poar.twu.edu/oai/request yes 2479 +2905 {"name": "repositorio institucional de la pucp", "language": "en"} [] http://repositorio.pucp.edu.pe/index/ institutional [] 2022-01-12 15:35:39 2013-11-18 16:53:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "pontificia universidad cat\u00f3lica del per\u00fa", "alternativeName": "", "country": "pe", "url": "http://www.pucp.edu.pe/content/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 33805 +2922 {"name": "reposit\u00f3rio de outras cole\u00e7\u00f5es abertas (roca)", "language": "en"} [] http://repositorio.roca.utfpr.edu.br/jspui/ institutional [] 2022-01-12 15:35:39 2013-12-05 11:58:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidade tecnol\u00f3gica federal do paran\u00e1", "alternativeName": "", "country": "br", "url": "http://www.utfpr.edu.br/", "identifier": [{"identifier": "https://ror.org/002v2kq79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8886 +2937 {"name": "university of zambia repository", "language": "en"} [] http://dspace.unza.zm:8080/xmlui/ institutional [] 2022-01-12 15:35:40 2013-12-17 14:35:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zambia", "alternativeName": "", "country": "zm", "url": "http://www.unza.zm/", "identifier": [{"identifier": "https://ror.org/03gh19d69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4910 +2900 {"name": "uctscholar", "language": "en"} [] http://uctscholar.uct.ac.za/ institutional [] 2022-01-12 15:35:39 2013-11-13 16:27:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of cape town libraries", "alternativeName": "", "country": "za", "url": "http://www.lib.uct.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://uctscholar.uct.ac.za/oai-pub yes 31438 +2895 {"name": "ump institutional repository", "language": "en"} [{"acronym": "ump"}] http://umpir.ump.edu.my/ institutional [] 2022-01-12 15:35:39 2013-11-12 17:33:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universiti malaysia pahang (ump)", "alternativeName": "", "country": "my", "url": "http://www.ump.edu.my/", "identifier": [{"identifier": "https://ror.org/01704wp68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://umpir.ump.edu.my/cgi/oai2 yes 16939 +2942 {"name": "real-eod", "language": "en"} [] http://real-eod.mtak.hu/ institutional [] 2022-01-12 15:35:40 2014-01-08 11:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real-eod.mtak.hu/cgi/oai2 yes 6605 +2924 {"name": "the ubm repository", "language": "en"} [] http://repository.ubm.ac.id/ institutional [] 2022-01-12 15:35:39 2013-12-05 12:36:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "bunda mulia university", "alternativeName": "", "country": "id", "url": "http://www.ubm.ac.id/", "identifier": [{"identifier": "https://ror.org/00vb9c215", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ubm.ac.id:8080/cgi/oai2 yes 74 352 +2945 {"name": "real-d", "language": "en"} [] http://real-d.mtak.hu/ institutional [] 2022-01-12 15:35:40 2014-01-09 10:23:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real-d.mtak.hu/cgi/oai2 yes 967 +2997 {"name": "armenian research academic repository", "language": "en"} [{"acronym": "knowledge@fsl"}] http://www.flib.sci.am/eng/node/3 institutional [] 2022-01-12 15:35:40 2014-03-10 12:01:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "national academy of sciences of armenia", "alternativeName": "", "country": "am", "url": "http://www.sci.am/", "identifier": [{"identifier": "https://ror.org/04mczx267", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 4031 +2912 {"name": "nustone", "language": "en"} [] http://library.nust.ac.zw/gsdl/cgi-bin/library.cgi institutional [] 2022-01-12 15:35:39 2013-11-25 12:14:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national university of science and technology", "alternativeName": "nust", "country": "zw", "url": "http://www.nust.ac.zw/", "identifier": [{"identifier": "https://ror.org/02kesvt12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 121 +2919 {"name": "digitunito", "language": "en"} [] http://www.omeka.unito.it/omeka/ institutional [] 2022-01-12 15:35:39 2013-12-04 11:50:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e0 degli studi di torino", "alternativeName": "", "country": "it", "url": "http://www.unito.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://www.omeka.unito.it/omeka/oai-pmh-repository/request yes 1707 2075 +2987 {"name": "cris uns", "language": "en"} [] http://dosird.uns.ac.rs/phd-uns-digital-library-phd-dissertations institutional [] 2022-01-12 15:35:40 2014-02-24 11:37:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of novi sad", "alternativeName": "", "country": "rs", "url": "http://www.uns.ac.rs/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://cris.uns.ac.rs/oaihandler yes 0 1510 +2954 {"name": "harvard dataverse", "language": "en"} [] https://dataverse.harvard.edu/ institutional [] 2022-01-12 15:35:40 2014-01-24 14:21:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "harvard university", "alternativeName": "", "country": "us", "url": "http://www.harvard.edu/", "identifier": [{"identifier": "https://ror.org/03vek6s52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dataverse.harvard.edu/oai yes 0 81160 +2958 {"name": "engagedscholarship@csu", "language": "en"} [] http://engagedscholarship.csuohio.edu/ institutional [] 2022-01-12 15:35:40 2014-01-24 16:14:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "cleveland state university", "alternativeName": "", "country": "us", "url": "http://www.csuohio.edu/", "identifier": [{"identifier": "https://ror.org/002tx1f22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 15480 +2939 {"name": "the cupola: scholarship at gettysburg college", "language": "en"} [] http://cupola.gettysburg.edu/ institutional [] 2022-01-12 15:35:40 2013-12-20 10:51:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "gettysburg college", "alternativeName": "", "country": "us", "url": "http://www.gettysburg.edu/", "identifier": [{"identifier": "https://ror.org/045e26x92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://cupola.gettysburg.edu/submissionwithdrawal.pdf", "type": "content"}, {"policy_url": "http://cupola.gettysburg.edu/submissionwithdrawal.pdf", "type": "submission"}, {"policy_url": "http://cupola.gettysburg.edu/submissionwithdrawal.pdf", "type": "preservation"}] {"name": "other", "version": ""} yes 3144 +2903 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es eletr\u00f4nicas da uerj", "language": "en"} [] http://www.bdtd.uerj.br/ institutional [] 2022-01-12 15:35:39 2013-11-18 16:02:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade do estado do rio de janeiro", "alternativeName": "", "country": "br", "url": "http://www.uerj.br/", "identifier": [{"identifier": "https://ror.org/0198v2949", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.bdtd.uerj.br/tde_oai/oai3.php yes 8137 +2908 {"name": "portail documentaire de luniversit\u00e9 de paris ouest nanterre la d\u00e9fens", "language": "en"} [] http://bdr.u-paris10.fr/sid/liste_theses.php institutional [] 2022-01-12 15:35:39 2013-11-20 11:25:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 paris x nanterre", "alternativeName": "upx", "country": "fr", "url": "http://www.u-paris10.fr/", "identifier": [{"identifier": "https://ror.org/013bkhk48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 382 +2965 {"name": "szent istv\u00e1n university institutional repository", "language": "en"} [] http://archivum.szie.hu/ institutional [] 2022-01-12 15:35:40 2014-01-29 12:39:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "szent istv\u00e1n university", "alternativeName": "", "country": "hu", "url": "http://www.sziu.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://archivum.szie.hu/oai/repositories/sziearchivum yes 11432 +2920 {"name": "theoreme", "language": "en"} [] http://theoreme.univ-valenciennes.fr/ institutional [] 2022-01-12 15:35:39 2013-12-04 12:19:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de valenciennes et du hainaut-cambr\u00e9sis", "alternativeName": "", "country": "fr", "url": "http://www.univ-valenciennes.fr/", "identifier": [{"identifier": "https://ror.org/02ezch769", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ent13.univ-valenciennes.fr/ori-oai-repository/oaihandler yes 0 411 +2934 {"name": "new college of florida digital collections", "language": "en"} [] http://ncf.sobek.ufl.edu/ institutional [] 2022-01-12 15:35:40 2013-12-17 11:22:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "new college of florida", "alternativeName": "", "country": "us", "url": "http://www.ncf.edu/", "identifier": [{"identifier": "https://ror.org/01cbya385", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ncf.sobek.ufl.edu/sobekcm_oai.aspx yes 26 8986 +2932 {"name": "universit\u00e4t paderborn - digitale sammlungen", "language": "en"} [] http://digital.ub.uni-paderborn.de/ institutional [] 2022-01-12 15:35:40 2013-12-17 10:33:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitat paderborn", "alternativeName": "", "country": "de", "url": "http://www.uni-paderborn.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital.ub.uni-paderborn.de/oai yes 5741 +2918 {"name": "repolis. silesian university of technology digital repository", "language": "en"} [{"acronym": "repolis"}, {"name": "", "language": "pl"}] https://repolis.bg.polsl.pl/dlibra institutional [] 2022-01-12 15:35:39 2013-12-02 15:57:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "silesian university of technology", "alternativeName": "", "country": "pl", "url": "http://www.polsl.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} https://repolis.bg.polsl.pl/oai-pmh-repository.xml?verb=identify yes 0 442 +2985 {"name": "aristotle university of thessaloniki institutional repository - ikee", "language": "en"} [] http://ikee.lib.auth.gr/ institutional [] 2022-01-12 15:35:40 2014-02-21 10:28:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "aristotle university of thessaloniki", "alternativeName": "\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03c4\u03ad\u03bb\u03b5\u03b9\u03bf \u03c0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03b8\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7\u03c2", "country": "gr", "url": "http://www.auth.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://ikee.lib.auth.gr/oai2d yes 0 108109 +2938 {"name": "esculela politecnica nacional biblioteca central: tesis a texto completo (ecuador)", "language": "en"} [] http://biblioteca.epn.edu.ec/catalogo/tesis.htm institutional [] 2022-01-12 15:35:40 2013-12-18 15:50:39 ["science", "technology"] ["theses_and_dissertations"] [{"name": "escuela politecnica nacional", "alternativeName": "", "country": "ec", "url": "http://www.epn.edu.ec/", "identifier": [{"identifier": "https://ror.org/01gb99w41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4047 +2955 {"name": "repozytorium cyfrowe utp w bydgoszczy", "language": "en"} [] http://dlibra.utp.edu.pl/dlibra institutional [] 2022-01-12 15:35:40 2014-01-24 14:53:24 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "biblioteka g\u0142\u00f3wna uniwersytetu technologiczno - przyrodniczego w bydgoszczy", "alternativeName": "", "country": "pl", "url": "http://www.bg.utp.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://dlibra.utp.edu.pl/dlibra/oai-pmh-repository.xml yes 0 559 +3000 {"name": "scoap3 repository", "language": "en"} [] http://repo.scoap3.org/ disciplinary [] 2022-01-12 15:35:41 2014-03-11 10:51:46 ["science"] ["journal_articles"] [{"name": "scoap3", "alternativeName": "", "country": "ch", "url": "http://scoap3.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scoap3.org/scoap3-repository", "type": "metadata"}, {"policy_url": "http://scoap3.org/scoap3-repository", "type": "data"}, {"policy_url": "http://scoap3.org/scoap3-repository", "type": "content"}, {"policy_url": "http://scoap3.org/scoap3-repository", "type": "submission"}, {"policy_url": "http://scoap3.org/scoap3-repository", "type": "preservation"}] {"name": "invenio", "version": ""} yes 21972 +2961 {"name": "embl-ebis protein data bank in europe (pdbe)", "language": "en"} [] http://www.ebi.ac.uk/pdbe/ disciplinary [] 2022-01-12 15:35:40 2014-01-27 16:15:56 ["science"] ["journal_articles", "datasets", "other_special_item_types"] [{"name": "embl-ebi", "alternativeName": "", "country": "gb", "url": "http://www.ebi.ac.uk/", "identifier": [{"identifier": "https://ror.org/02catss52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 131205 +2960 {"name": "protein data bank", "language": "en"} [] http://www.rcsb.org/pdb/home/home.do disciplinary [] 2022-01-12 15:35:40 2014-01-27 15:50:26 ["science"] ["datasets"] [{"name": "the research collaboratory for structural bioinformatics (rcsb)", "alternativeName": "rcsb", "country": "us", "url": "http://home.rcsb.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 131205 +2962 {"name": "pdbj (protein data bank japan)", "language": "en"} [] http://www.pdbj.org/ institutional [] 2022-01-12 15:35:40 2014-01-27 16:49:54 ["science"] ["datasets", "other_special_item_types"] [{"name": "pdbj (protein data bank japan)", "alternativeName": "", "country": "jp", "url": "http://pdbj.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 131205 +2993 {"name": "fluorophores.org", "language": "en"} [] http://www.fluorophores.tugraz.at/ institutional [] 2022-01-12 15:35:40 2014-03-03 11:15:10 ["science"] ["datasets"] [{"name": "sg3 knowledge network og", "alternativeName": "", "country": "at", "url": "http://www.sg3net.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.fluorophores.tugraz.at/disclaimer/", "type": "metadata"}, {"policy_url": "http://www.fluorophores.tugraz.at/disclaimer/", "type": "data"}, {"policy_url": "http://www.fluorophores.tugraz.at/disclaimer/", "type": "content"}] {"name": "", "version": ""} yes 910 +2974 {"name": "denison digital resource commons: denison university herbarium", "language": "en"} [] http://cdm15963.contentdm.oclc.org/cdm/landingpage/collection/p15963coll43 institutional [] 2022-01-12 15:35:40 2014-02-10 12:08:31 ["science"] ["datasets", "other_special_item_types"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "http://denison.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 642 +2977 {"name": "denison digital resource commons: denison virtual earth material gallery", "language": "en"} [] http://cdm15963.contentdm.oclc.org/cdm/landingpage/collection/p15963coll37 institutional [] 2022-01-12 15:35:40 2014-02-10 12:52:26 ["science"] ["other_special_item_types"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "http://denison.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 1151 +2899 {"name": "iacs institutional repository", "language": "en"} [] http://arxiv.iacs.res.in:8080/jspui/ institutional [] 2022-01-12 15:35:39 2013-11-13 16:10:25 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indian association for the cultivation of science", "alternativeName": "", "country": "in", "url": "http://www.iacs.res.in/", "identifier": [{"identifier": "https://ror.org/050p6gz73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arxiv.iacs.res.in:8080/oai/request yes 5480 8074 +2991 {"name": "repositorio institucional ingemmet", "language": "en"} [] http://repositorio.ingemmet.gob.pe/ institutional [] 2022-01-12 15:35:40 2014-02-26 16:24:30 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "ingemmet - instituto geologico minero y metalurgico", "alternativeName": "", "country": "pe", "url": "http://www.ingemmet.gob.pe/", "identifier": [{"identifier": "https://ror.org/02vrpve57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ingemmet.gob.pe/oai yes 429 +2941 {"name": "carpe dien", "language": "en"} [] http://carpedien.ien.gov.br/ institutional [] 2022-01-12 15:35:40 2014-01-08 10:36:08 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "instituto de engenharia nuclear", "alternativeName": "", "country": "br", "url": "http://www.ien.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://carpedien.ien.gov.br/oai/request yes 514 2383 +2970 {"name": "metabolights", "language": "en"} [] http://www.ebi.ac.uk/metabolights/ disciplinary [] 2022-01-12 15:35:40 2014-02-06 10:31:18 ["science"] ["datasets"] [{"name": "embl-ebi", "alternativeName": "", "country": "gb", "url": "http://www.ebi.ac.uk/", "identifier": [{"identifier": "https://ror.org/02catss52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 24786 +2909 {"name": "biblioth\u00e8que virtuelle des energies renouvelables", "language": "en"} [] http://www.cder.dz/vlib/index.php disciplinary [] 2022-01-12 15:35:39 2013-11-21 10:28:46 ["science"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "centre de d\u00e9veloppement des energies renouvelables", "alternativeName": "", "country": "dz", "url": "http://www.cder.dz/", "identifier": [{"identifier": "https://ror.org/02eeqxc82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1839 +2980 {"name": "epoka university repository", "language": "en"} [] http://dspace.epoka.edu.al/ institutional [] 2022-01-12 15:35:40 2014-02-13 11:28:13 ["social sciences", "technology"] ["theses_and_dissertations", "conference_and_workshop_papers", "journal_articles"] [{"name": "epoka university", "alternativeName": "", "country": "al", "url": "http://epoka.edu.al/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1403 +2928 {"name": "repositorio institucional escuela de ingenieria de antioquia", "language": "en"} [] http://repository.eia.edu.co/ institutional [] 2022-01-12 15:35:40 2013-12-06 11:54:21 ["social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "escuela de ingenieria de antioquia", "alternativeName": "", "country": "co", "url": "http://www.eia.edu.co/", "identifier": [{"identifier": "https://ror.org/04wwz3282", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.eia.edu.co/oai/request yes 1550 +2931 {"name": "repozytorium pjwstk / pjiit repository", "language": "en"} [] https://repin.pjwstk.edu.pl/ institutional [] 2022-01-12 15:35:40 2013-12-11 11:59:15 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "polsko-japo\u0144ska wy\u017csza szko\u0142a technik komputerowych / polish-japanese institute of information technology", "alternativeName": "", "country": "pl", "url": "http://www.pjwstk.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 181 +2906 {"name": "legal tools", "language": "en"} [] http://www.legal-tools.org/ governmental [] 2022-01-12 15:35:39 2013-11-19 12:40:03 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "international criminal court", "alternativeName": "", "country": "nl", "url": "http://www.icc-cpi.int/en_menus/icc/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 73132 +2948 {"name": "digital library belarusian state economic university", "language": "en"} [] http://edoc.bseu.by:8080/ institutional [] 2022-01-12 15:35:40 2014-01-14 15:13:15 ["social sciences"] ["theses_and_dissertations"] [{"name": "belarusian state economic university", "alternativeName": "", "country": "by", "url": "http://bseu.by/", "identifier": [{"identifier": "https://ror.org/01fkzt617", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 42266 +2979 {"name": "social science cyber library", "language": "en"} [] http://socsccybraryamu.ac.in/ disciplinary [] 2022-01-12 15:35:40 2014-02-12 12:42:48 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "aligarh muslim university", "alternativeName": "", "country": "in", "url": "http://www.amu.ac.in/", "identifier": [{"identifier": "https://ror.org/03kw9gc02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 14782 +2898 {"name": "foss repository", "language": "en"} [] http://repository.ellak.gr/ institutional [] 2022-01-12 15:35:39 2013-11-13 15:41:53 ["technology"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "national hellenic research foundation", "alternativeName": "", "country": "gr", "url": "http://www.eie.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ellak.gr/ellak_oai/request yes 120 326 +2901 {"name": "electronic institutional repository of admiral makarov national university of shipbuilding", "language": "en"} [] http://eir.nuos.edu.ua/ institutional [] 2022-01-12 15:35:39 2013-11-14 10:32:30 ["technology"] ["theses_and_dissertations"] [{"name": "admiral makarov national university of shipbuilding", "alternativeName": "", "country": "ua", "url": "http://www.nuos.edu.ua/", "identifier": [{"identifier": "https://ror.org/04ymc1w90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eir.nuos.edu.ua/oai/request yes 1633 +2911 {"name": "architexturez south asia", "language": "en"} [] http://www.architexturez.net/ disciplinary [] 2022-01-12 15:35:39 2013-11-25 12:02:01 ["technology"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "aba-net", "alternativeName": "", "country": "in", "url": "http://www.ab-a.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://architexturez.net/oai-pmh yes 0 200 +2966 {"name": "archive institutionnelle ifsttar", "language": "en"} [{"acronym": "madis"}] http://madis-externe.ifsttar.fr/ institutional [] 2022-01-12 15:35:40 2014-02-03 11:43:37 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "institut fran\u00e7ais des sciences et technologies des transports, de l\u2019am\u00e9nagement et des r\u00e9seaux", "alternativeName": "ifsttar", "country": "fr", "url": "http://www.ifsttar.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.madis-oai.ifsttar.fr/exl-php/oai/serveur/oai2.php yes 0 100 +2988 {"name": "the it university of copenhagens repository", "language": "en"} [] https://pure.itu.dk/portal/en/ institutional [] 2022-01-12 15:35:40 2014-02-24 12:51:18 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "the it university of copenhagen", "alternativeName": "", "country": "dk", "url": "http://itu.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.itu.dk/ws/oai yes 1313 4431 +2917 {"name": "kobe shoin womens university repository", "language": "en"} [{"acronym": "karashi-dane"}, {"name": "\u795e\u6238\u677e\u852d\u5973\u5b50\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000karashi-dane", "language": "ja"}] https://shoin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:39 2013-11-29 12:09:19 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kobe shoin womens university", "alternativeName": "", "country": "jp", "url": "http://www.shoin.ac.jp/", "identifier": [{"identifier": "https://ror.org/03bwsp312", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shoin.repo.nii.ac.jp/oai yes 430 1690 +2949 {"name": "yonsei university health system", "language": "en"} [{"acronym": "yuhspace"}] https://ir.ymlib.yonsei.ac.kr institutional [] 2022-01-12 15:35:40 2014-01-15 14:31:45 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "yonsei university health system", "alternativeName": "", "country": "kr", "url": "https://yuhs.severance.healthcare", "identifier": [{"identifier": "https://ror.org/04sze3c15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.ymlib.yonsei.ac.kr/oai yes 17062 1956 +2921 {"name": "digital commons @ lingnan university", "language": "en"} [] http://commons.ln.edu.hk/ institutional [] 2022-01-12 15:35:39 2013-12-05 11:30:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "lingnan university", "alternativeName": "", "country": "hk", "url": "http://www.ln.edu.hk/", "identifier": [{"identifier": "https://ror.org/0563pg902", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://commons.ln.edu.hk/faq.html", "type": "metadata"}, {"policy_url": "http://commons.ln.edu.hk/faq.html", "type": "data"}, {"policy_url": "http://commons.ln.edu.hk/faq.html", "type": "content"}, {"policy_url": "http://commons.ln.edu.hk/faq.html", "type": "submission"}, {"policy_url": "http://commons.ln.edu.hk/faq.html", "type": "preservation"}] {"name": "other", "version": ""} http://commons.ln.edu.hk/do/oai/ yes 4592 14391 +2930 {"name": "institutional repository of tsinghua university", "language": "en"} [] http://ir.lib.tsinghua.edu.cn/ institutional [] 2022-01-12 15:35:40 2013-12-11 10:19:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents"] [{"name": "tsinghua university", "alternativeName": "", "country": "cn", "url": "http://www.tsinghua.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ir.lib.tsinghua.edu.cn/oadoc.html", "type": "data"}] {"name": "dspace", "version": ""} http://ir.lib.tsinghua.edu.cn/oai/request yes 0 114678 +3001 {"name": "wolfenb\u00fctteler digitale bibliothek", "language": "en"} [] http://www.hab.de/de/home/bibliothek/digitale-bibliothek-wdb.html institutional [] 2022-01-12 15:35:41 2014-03-11 11:49:50 ["arts", "humanities"] ["books_chapters_and_sections"] [{"name": "herzog august bibliothek wolfenb\u00fcttel", "alternativeName": "", "country": "de", "url": "http://www.hab.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.hab.de/en/home/library/wolfenbuettel-digital-library/guarantee-declaration.html", "type": "data"}] {"name": "", "version": ""} http://oai.hab.de yes 0 32474 +2984 {"name": "epub bayreuth", "language": "en"} [] https://epub.uni-bayreuth.de/ institutional [] 2022-01-12 15:35:40 2014-02-20 10:44:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e4t bayreuth", "alternativeName": "ub", "country": "de", "url": "http://www.uni-bayreuth.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://epub.uni-bayreuth.de/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://epub.uni-bayreuth.de/cgi/oai2 yes 3043 3450 +2995 {"name": "abacus - repository of scientific research output", "language": "en"} [{"name": "abacus - repositorio de producci\u00f3n cient\u00edfica", "language": "es"}] [] 2021-10-05 14:58:15 2014-03-06 12:27:47 [] [] [{"name": "universidad europea", "alternativeName": "universidad europea de madrid", "country": "es", "url": "https://universidadeuropea.es/madrid", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 66 9331 +3017 {"name": "elibrary", "language": "en"} [] http://elibrary.matf.bg.ac.rs/ institutional [] 2022-01-12 15:35:41 2014-03-31 12:33:39 ["arts", "humanities", "science", "mathematics"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "faculty of mathematics, university of belgrade, mathematical institute of the serbian academy of science and art, serbian ministry of science, national center for digitization", "alternativeName": "", "country": "rs", "url": "http://www.matf.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elibrary.matf.bg.ac.rs:10001/oai/ yes 0 4068 +3007 {"name": "uni\u2261pub (unipub)", "language": "en"} [{"acronym": "uni=pub"}] http://unipub.uni-graz.at/ institutional [] 2022-01-12 15:35:41 2014-03-21 16:18:17 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "karl-franzens-university graz", "alternativeName": "", "country": "at", "url": "http://www.uni-graz.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://unipub.uni-graz.at/oai yes 17297 +3045 {"name": "dspace@ikcu", "language": "en"} [] http://acikerisim.ikc.edu.tr:8080/xmlui institutional [] 2022-01-12 15:35:41 2014-04-30 16:00:55 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "i\u0307zmir katip celebi university", "alternativeName": "", "country": "tr", "url": "http://www.ikc.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://lib.ikc.edu.tr/sayfa/acik-erisim-ve-kurumsal-arsiv-politikasi", "type": "metadata"}, {"policy_url": "http://lib.ikc.edu.tr/sayfa/acik-erisim-ve-kurumsal-arsiv-politikasi", "type": "data"}, {"policy_url": "http://lib.ikc.edu.tr/sayfa/acik-erisim-ve-kurumsal-arsiv-politikasi", "type": "content"}, {"policy_url": "http://lib.ikc.edu.tr/sayfa/acik-erisim-ve-kurumsal-arsiv-politikasi", "type": "submission"}, {"policy_url": "http://lib.ikc.edu.tr/sayfa/acik-erisim-ve-kurumsal-arsiv-politikasi", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.ikc.edu.tr/oai/request yes 434 +3020 {"name": "semmelweis repository", "language": "en"} [] http://repo.lib.semmelweis.hu/ institutional [] 2022-01-12 15:35:41 2014-04-01 11:31:32 ["health and medicine"] ["journal_articles"] [{"name": "semmelweis university", "alternativeName": "", "country": "hu", "url": "http://semmelweis.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.lib.semmelweis.hu/oai/request yes 1821 +3024 {"name": "ballarat health services digital repository", "language": "en"} [] http://bhsdigitalrepository.bhs.org.au/bhsjspui/ institutional [] 2022-01-12 15:35:41 2014-04-04 10:08:03 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ballarat health services", "alternativeName": "", "country": "au", "url": "http://www.bhs.org.au/", "identifier": [{"identifier": "https://ror.org/01jmjwt28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1118 +3076 {"name": "ko\u00e7 university digital collections portal", "language": "en"} [{"name": "ko\u00e7 \u00fcniversitesi dijital koleksiyonlar", "language": "tr"}] https://librarydigitalcollections.ku.edu.tr institutional [] 2022-01-12 15:35:42 2014-05-23 10:10:16 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ko\u00e7 university", "alternativeName": "", "country": "tr", "url": "https://www.ku.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://libdigitalcollections.ku.edu.tr/oai/oai.php yes 0 45915 +3058 {"name": "atlantic canada virtual archives", "language": "en"} [{"acronym": "acva"}] http://atlanticportal.hil.unb.ca/acva/ institutional [] 2022-01-12 15:35:41 2014-05-14 17:16:50 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "atlantic canada portal", "alternativeName": "", "country": "ca", "url": "http://atlanticportal.hil.unb.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3052 {"name": "imperial war museum collections and research", "language": "en"} [{"acronym": "iwm collections and research"}] http://www.iwm.org.uk/collections-research institutional [] 2022-01-12 15:35:41 2014-05-12 10:49:39 ["humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "imperial war musuem", "alternativeName": "", "country": "gb", "url": "http://www.iwm.org.uk/", "identifier": [{"identifier": "https://ror.org/02tm9s162", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 792274 +3022 {"name": "nypl map warper", "language": "en"} [] http://maps.nypl.org/warper/ institutional [] 2022-01-12 15:35:41 2014-04-02 16:45:12 ["humanities"] ["other_special_item_types"] [{"name": "new york public library", "alternativeName": "nypl", "country": "us", "url": "http://www.nypl.org/", "identifier": [{"identifier": "https://ror.org/02eysy271", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 24685 +3101 {"name": "universit\u00e4tsbibliothek tu freiberg - digitale sammlungen", "language": "en"} [] http://digital.ub.tu-freiberg.de/ institutional [] 2022-01-12 15:35:42 2014-07-08 13:17:59 ["humanities"] ["books_chapters_and_sections"] [{"name": "technische universitat bergakademie freiberg", "alternativeName": "", "country": "de", "url": "http://tu-freiberg.de/", "identifier": [{"identifier": "https://ror.org/031vc2293", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digital.ub.tu-freiberg.de/oai/ yes 0 257 +3066 {"name": "island archives.ca at the university of prince edward island", "language": "en"} [] http://islandarchives.ca disciplinary [] 2022-01-12 15:35:41 2014-05-19 13:05:34 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of prince edward island", "alternativeName": "upei", "country": "ca", "url": "http://www.upei.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes 250520 +3029 {"name": "piezomat.org", "language": "en"} [] http://www.piezomat.org/ disciplinary [] 2022-01-12 15:35:41 2014-04-16 15:25:07 ["science", "engineering"] ["datasets"] [{"name": "sg3 knowledge network og", "alternativeName": "", "country": "at", "url": "http://www.sg3net.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 315 +3075 {"name": "gbrmpa elibrary", "language": "en"} [] http://elibrary.gbrmpa.gov.au/ institutional [] 2022-01-12 15:35:42 2014-05-22 14:39:57 ["science", "humanities"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "great barrier reef marine park authority", "alternativeName": "", "country": "au", "url": "http://www.gbrmpa.gov.au/", "identifier": [{"identifier": "https://ror.org/00pfevw30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elibrary.gbrmpa.gov.au/oai/request?verb=identify yes 627 2321 +3039 {"name": "unalm - repositorio institucional", "language": "en"} [] http://repositorio.lamolina.edu.pe/ institutional [] 2022-01-12 15:35:41 2014-04-23 16:26:49 ["science", "mathematics"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "universidad nacional agraria la molina", "alternativeName": "", "country": "pe", "url": "http://www.lamolina.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2025 +3018 {"name": "scholarworks@unist", "language": "en"} [] http://scholarworks.unist.ac.kr/ institutional [] 2022-01-12 15:35:41 2014-03-31 13:50:25 ["science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "unist (ulsan national institute of science and technology)", "alternativeName": "", "country": "kr", "url": "http://www.unist.ac.kr/", "identifier": [{"identifier": "https://ror.org/017cjz748", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholarworks.unist.ac.kr/oai/request yes 15060 +3109 {"name": "institutional repository of zhytomyr national agroecological university", "language": "en"} [] http://ir.znau.edu.ua/ institutional [] 2022-01-12 15:35:42 2014-07-11 16:12:49 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "zhytomyr national agroecological university", "alternativeName": "", "country": "ua", "url": "http://www.znau.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.znau.edu.ua/oai yes 0 8564 +3015 {"name": "auburn university scholarly repository", "language": "en"} [{"acronym": "aurora"}] https://aurora.auburn.edu institutional [] 2022-01-12 15:35:41 2014-03-27 11:00:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "auburn university", "alternativeName": "", "country": "us", "url": "http://www.auburn.edu/", "identifier": [{"identifier": "https://ror.org/02v80fc35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://aurora.auburn.edu/faqs.html", "type": "content"}, {"policy_url": "http://aurora.auburn.edu/faqs.html", "type": "preservation"}, {"policy_url": "http://aurora.auburn.edu/faqs.html", "type": "submission"}] {"name": "dspace", "version": ""} yes 6946 +3038 {"name": "digital repository, the open university of sri lanka", "language": "en"} [] http://digital.lib.ou.ac.lk/ institutional [] 2022-01-12 15:35:41 2014-04-23 12:55:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "the open university of sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.ou.ac.lk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1331 +3035 {"name": "repositori universitas dinamika", "language": "en"} [] http://repository.dinamika.ac.id/ institutional [] 2022-01-12 15:35:41 2014-04-22 11:30:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas dinamika", "alternativeName": "", "country": "id", "url": "http://www.dinamika.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.dinamika.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.dinamika.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.dinamika.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.dinamika.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.dinamika.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.dinamika.ac.id/cgi/oai2 yes 2951 +3096 {"name": "scholarworks @ uvm", "language": "en"} [] http://scholarworks.uvm.edu/ institutional [] 2022-01-12 15:35:42 2014-06-26 16:50:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of vermont", "alternativeName": "uvm", "country": "us", "url": "http://www.uvm.edu/", "identifier": [{"identifier": "https://ror.org/0155zta11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarworks.uvm.edu/about.html", "type": "metadata"}, {"policy_url": "http://scholarworks.uvm.edu/about.html", "type": "data"}, {"policy_url": "http://scholarworks.uvm.edu/about.html", "type": "content"}, {"policy_url": "http://scholarworks.uvm.edu/about.html", "type": "submission"}, {"policy_url": "http://scholarworks.uvm.edu/about.html", "type": "preservation"}] {"name": "other", "version": ""} http://scholarworks.uvm.edu/do/oai/ yes 2871 +3040 {"name": "summa. repositorio documental upsa", "language": "en"} [] http://summa.upsa.es/ institutional [] 2022-01-12 15:35:41 2014-04-24 10:50:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad pontificia de salamanca", "alternativeName": "", "country": "es", "url": "http://www.upsa.es/", "identifier": [{"identifier": "https://ror.org/02jj93564", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://summa.upsa.es/about.vm", "type": "data"}] {"name": "other", "version": ""} http://summa.upsa.es/oai.vm yes 13069 +3102 {"name": "institutional repository - sijil", "language": "en"} [{"name": "d\u00e9p\u00f4t institutionnel - sijil", "language": "fr"}] http://ao.um5.ac.ma/xmlui institutional [] 2022-01-12 15:35:42 2014-07-08 13:58:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universit\u00e9 mohammed v - rabat", "alternativeName": "", "country": "ma", "url": "http://www.um5.ac.ma/um5r", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ao.um5s.ac.ma/oai/request yes 1870 +3105 {"name": "zonguldak b\u00fclent ecevit university institutional repository", "language": "en"} [{"acronym": "dspace@be\u00fc"}, {"name": "zonguldak b\u00fclent ecevit \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@be\u00fc"}] http://acikarsiv.beun.edu.tr institutional [] 2022-01-12 15:35:42 2014-07-08 16:35:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "zonguldak b\u00fclent ecevit university", "alternativeName": "", "country": "tr", "url": "https://w3.beun.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikarsiv.beun.edu.tr/oai/request yes 8 +3047 {"name": "erciyes university open archive system", "language": "en"} [{"acronym": "dspace@erciyes"}] http://acikarsiv.erciyes.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:41 2014-05-01 09:59:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "erciyes university", "alternativeName": "", "country": "tr", "url": "http://www.erciyes.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikarsiv.erciyes.edu.tr:8080/oai/request yes 11 16 +3010 {"name": "d\u00e9p\u00f4t institutionnel de luniversit\u00e9 hassan ii casablanca", "language": "en"} [{"acronym": "dspace@uh2c"}] http://dspace.univcasa.ma/jspui/ institutional [] 2022-01-12 15:35:41 2014-03-24 14:56:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "hassan ii university", "alternativeName": "", "country": "ma", "url": "http://uh2c.ac.ma/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2220 +3065 {"name": "ya\u015far university institutional repository", "language": "en"} [{"acronym": "dspace@ya\u015far"}, {"name": "ya\u015far \u00fcniversitesi a\u00e7\u0131k eri\u015fim sistemi", "language": "tr"}, {"acronym": "dspace@ya\u015far"}] https://dspace.yasar.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:41 2014-05-19 12:03:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "yasar university", "alternativeName": "", "country": "tr", "url": "https://www.yasar.edu.tr", "identifier": [{"identifier": "https://ror.org/00dz1eb96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.yasar.edu.tr/oai yes 0 0 +3011 {"name": "repozytorium uniwersytetu w bia\u0142ymstoku (university of bialystok repository)", "language": "en"} [{"acronym": "rub"}] http://repozytorium.uwb.edu.pl/ institutional [] 2022-01-12 15:35:41 2014-03-24 15:10:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "uniwersytet w bia\u0142ymstoku (university of bialystok)", "alternativeName": "", "country": "pl", "url": "http://www.uwb.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repozytorium.uwb.edu.pl/oai/request yes 6120 +3031 {"name": "istanbul sehir university repository", "language": "en"} [{"acronym": "e-arsiv"}] http://earsiv.sehir.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:41 2014-04-16 16:53:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "istanbul sehir university", "alternativeName": "", "country": "tr", "url": "http://sehir.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.sehir.edu.tr:8080/oai/request yes 20266 56274 +3019 {"name": "electronic library belinsky", "language": "en"} [{"acronym": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0431\u0435\u043b\u0438\u043d\u043a\u0438"}] http://elib.uraic.ru/ institutional [] 2022-01-12 15:35:41 2014-03-31 16:09:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "sverdlovsk regional universal scientific library. v.g belinsky", "alternativeName": "\u0441\u0432\u0435\u0440\u0434\u043b\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u043d\u0430\u044f \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0430\u044f \u043d\u0430\u0443\u0447\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0438\u043c. \u0432.\u0433. \u0431\u0435\u043b\u0438\u043d\u0441\u043a\u043e\u0433\u043e", "country": "ru", "url": "http://book.uraic.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.uraic.ru/oai/request yes 33587 +3106 {"name": "anadolu university institutional repository", "language": "en"} [] https://earsiv.anadolu.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-07-08 17:15:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "anadolu university", "alternativeName": "", "country": "tr", "url": "http://www.anadolu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://earsiv.anadolu.edu.tr/oai yes 1568 +3086 {"name": "digital archive of georgian library association", "language": "en"} [] http://dspace.gela.org.ge/ aggregating [] 2022-01-12 15:35:42 2014-06-16 12:40:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "georgian library association", "alternativeName": "", "country": "ge", "url": "http://www.gela.org.ge/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.gela.org.ge/oai/request yes 0 8385 +3104 {"name": "akademik ar\u015fiv", "language": "en"} [] http://acikerisim.cumhuriyet.edu.tr/xmlui institutional [] 2022-01-12 15:35:42 2014-07-08 16:00:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "cumhuriyet universitesi", "alternativeName": "", "country": "tr", "url": "http://www.cumhuriyet.edu.tr/", "identifier": [{"identifier": "https://ror.org/04f81fm77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 88 +3048 {"name": "argos", "language": "en"} [] http://argos.fhycs.unam.edu.ar/ institutional [] 2022-01-12 15:35:41 2014-05-01 10:33:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "universidad nacional de misiones", "alternativeName": "", "country": "ar", "url": "http://www.fhycs.unam.edu.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.openarchives.org/oai/2.0/openarchivesprotocol.htm yes 0 648 +3089 {"name": "ewu institutional repository", "language": "en"} [] http://dspace.ewubd.edu:8080/ institutional [] 2022-01-12 15:35:42 2014-06-17 16:02:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "east west university", "alternativeName": "", "country": "bd", "url": "http://www.ewubd.edu", "identifier": [{"identifier": "https://ror.org/05p0tzt32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.ewubd.edu:8080/oai/request yes 2242 +3008 {"name": "institutional repository@vsl", "language": "en"} [] http://vslir.iimahd.ernet.in:8080/xmlui institutional [] 2022-01-12 15:35:41 2014-03-21 16:34:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "indian institute of management, ahmedabad", "alternativeName": "", "country": "in", "url": "http://www.iimahd.ernet.in/library/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://vslir.iimahd.ernet.in:8080/oai/request?verb=identify yes 0 18554 +3098 {"name": "marmara university open archive repository", "language": "en"} [{"name": "marmara \u00fcniversitesi a\u00e7\u0131k eri\u015fim sistemi", "language": "tr"}] http://openaccess.marmara.edu.tr institutional [] 2022-01-12 15:35:42 2014-07-01 10:42:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "marmara university", "alternativeName": "", "country": "tr", "url": "http://www.marmara.edu.tr", "identifier": [{"identifier": "https://ror.org/02kswqa67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.marmara.edu.tr/oai/request yes 4871 +3070 {"name": "nev\u015fehir hac\u0131 bekta\u015f veli \u00fcniversitesi a\u00e7\u0131k ar\u015fiv sistemi", "language": "en"} [] http://acikerisim.nevsehir.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-05-21 15:57:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "nev\u015fehir hac\u0131 bekta\u015f veli \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.nevsehir.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 54 +3082 {"name": "ni\u011fde \u00fcniversitesi a\u00e7\u0131k eri\u015fim sistemi", "language": "en"} [] http://acikerisim.nigde.edu.tr:8080/jspui/ institutional [] 2022-01-12 15:35:42 2014-06-06 11:56:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "nigde university", "alternativeName": "", "country": "tr", "url": "http://www.nigde.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.nigde.edu.tr:8080/oai/request yes 13 5798 +3068 {"name": "yalova university open access archive", "language": "en"} [] http://dspace.yalova.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-05-21 14:45:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "yalova university", "alternativeName": "", "country": "tr", "url": "http://www.yalova.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.yalova.edu.tr/oai/request yes 1 8 +3081 {"name": "altai state university electronic library", "language": "en"} [] http://elibrary.asu.ru/ institutional [] 2022-01-12 15:35:42 2014-06-05 10:07:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "altai state university", "alternativeName": "", "country": "ru", "url": "http://www.asu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5312 +3003 {"name": "biblioth\u00e8que centrale", "language": "en"} [] http://bibliotheque.univ-batna.dz/ institutional [] 2022-01-12 15:35:41 2014-03-14 10:41:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e9 el-hadj lakhdar batna", "alternativeName": "", "country": "dz", "url": "http://www.univ-batna.dz/", "identifier": [{"identifier": "https://ror.org/04hrbe508", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digitallibrary.univ-batna.dz:8080/jspui yes 0 1261 +3028 {"name": "federal university oye-ekiti institutional repository", "language": "en"} [] http://repository.fuoye.edu.ng/ institutional [] 2022-01-12 15:35:41 2014-04-16 12:39:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "federal university oye-ekiti", "alternativeName": "", "country": "ng", "url": "http://fuoye.edu.ng/", "identifier": [{"identifier": "https://ror.org/02q5h6807", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1166 +3012 {"name": "iris, biblioth\u00e8que num\u00e9rique en histoire des sciences", "language": "fr"} [] http://iris.univ-lille1.fr institutional [] 2022-01-12 15:35:41 2014-03-24 15:27:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of lille", "alternativeName": "", "country": "fr", "url": "http://doc.univ-lille1.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://iris.univ-lille1.fr/oai/request yes 3114 +3002 {"name": "istanbul arel university institutional repository", "language": "en"} [] http://arelarsiv.arel.edu.tr/ institutional [] 2022-01-12 15:35:41 2014-03-13 13:40:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "istanbul arel university", "alternativeName": "", "country": "tr", "url": "http://www.arel.edu.tr/", "identifier": [{"identifier": "https://ror.org/03natay60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arelarsiv.arel.edu.tr/oai yes 0 2348 +3032 {"name": "rediumh", "language": "en"} [] http://dspace.umh.es/ institutional [] 2022-01-12 15:35:41 2014-04-17 15:53:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad miguel hern\u00e1ndez de elche", "alternativeName": "", "country": "es", "url": "http://www.umh.es/", "identifier": [{"identifier": "https://ror.org/01azzms13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3079 +3041 {"name": "repository of the vitebsk state university named after p.m.masherov", "language": "en"} [] https://rep.vsu.by institutional [] 2022-01-28 09:59:20 2014-04-24 13:00:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "vitebsk state university named after p.m. masherov", "alternativeName": "", "country": "by", "url": "https://vsu.by", "identifier": [{"identifier": "https://ror.org/04j6k3054", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rep.vsu.by/oai/request yes 14569 +3103 {"name": "unikl ir", "language": "en"} [] http://ir.unikl.edu.my/jspui/ institutional [] 2022-01-12 15:35:42 2014-07-08 14:52:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "universiti kuala lumpur", "alternativeName": "", "country": "my", "url": "http://www.unikl.edu.my/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 13981 +3072 {"name": "y\u00fcksek\u00f6\u011fretim kurulu a\u00e7\u0131kar\u015fivi", "language": "en"} [] http://acikarsiv.yok.gov.tr/ institutional [] 2022-01-12 15:35:42 2014-05-21 16:57:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "higher education council", "alternativeName": "y\u00fcksek\u00f6\u011fretim kurulu", "country": "tr", "url": "http://www.yok.gov.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 39 +3090 {"name": "dspace@gop", "language": "en"} [] http://earsiv.gop.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-06-18 10:53:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "gaziosmanpasa \u00fcniversitesi (gaziosmanpasa university)", "alternativeName": "", "country": "tr", "url": "http://www.gop.edu.tr/", "identifier": [{"identifier": "https://ror.org/01rpe9k96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1992 +3043 {"name": "difunde", "language": "en"} [] http://difunde.alerta.cl/ institutional [] 2022-01-12 15:35:41 2014-04-25 10:52:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "alerta al conocimiento", "alternativeName": "", "country": "cl", "url": "http://www.alerta.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://difunde.alerta.cl/oai/request yes 0 1277 +3009 {"name": "institutional repository of xi an jiaotong university", "language": "en"} [] http://www.ir.xjtu.edu.cn/jspui/index.do institutional [] 2022-01-12 15:35:41 2014-03-21 16:57:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "xi an jiaotong university", "alternativeName": "", "country": "cn", "url": "http://www.xjtu.edu.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.xjtu.edu.cn.jspui/oai/ yes 0 120195 +3100 {"name": "repositorio institucional de la universidad del tolima \u2013 riut", "language": "en"} [] http://repository.ut.edu.co/ institutional [] 2022-01-12 15:35:42 2014-07-08 11:49:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad del tolima", "alternativeName": "", "country": "co", "url": "http://www.ut.edu.co/", "identifier": [{"identifier": "https://ror.org/011bqgx84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ut.edu.co/oai/request yes 490 +3021 {"name": "scholarship repository of florida institute of technology", "language": "en"} [] https://repository.lib.fit.edu/ institutional [] 2022-01-12 15:35:41 2014-04-01 12:15:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "florida institute of technology", "alternativeName": "", "country": "us", "url": "http://www.fit.edu/", "identifier": [{"identifier": "https://ror.org/04atsbb87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2374 +3044 {"name": "trakya university institutional repository", "language": "en"} [] http://dspace.trakya.edu.tr/ institutional [] 2022-01-12 15:35:41 2014-04-29 10:44:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "trakya university", "alternativeName": "", "country": "tr", "url": "http://www.trakya.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.trakya.edu.tr/oai yes 2675 +3110 {"name": "university of lagos institutional repository", "language": "en"} [] https://ir.unilag.edu.ng/ institutional [] 2022-01-12 15:35:42 2014-07-11 17:02:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "university of lagos", "alternativeName": "", "country": "ng", "url": "http://unilag.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 674 +3097 {"name": "beykent university institutional repository", "language": "en"} [] https://earsiv.beykent.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:42 2014-06-30 14:05:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "beykent university", "alternativeName": "", "country": "tr", "url": "http://www.beykent.edu.tr", "identifier": [{"identifier": "https://ror.org/03dcvf827", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.beykent.edu.tr/webprojects/web/kutuphane.php?categoryid=1381", "type": "metadata"}, {"policy_url": "http://www.beykent.edu.tr/webprojects/web/kutuphane.php?categoryid=1381", "type": "data"}, {"policy_url": "http://www.beykent.edu.tr/webprojects/web/kutuphane.php?categoryid=1381", "type": "content"}, {"policy_url": "http://www.beykent.edu.tr/webprojects/web/kutuphane.php?categoryid=1381", "type": "submission"}, {"policy_url": "http://www.beykent.edu.tr/webprojects/web/kutuphane.php?categoryid=1381", "type": "preservation"}] {"name": "dspace", "version": ""} https://earsiv.beykent.edu.tr/oai yes 43 +3064 {"name": "repositorio institucional - universidad centroamericana", "language": "en"} [{"acronym": "repositorio institucional uca"}] http://repositorio.uca.edu.ni/ institutional [] 2022-01-12 15:35:41 2014-05-19 11:16:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad centroamericana uca", "alternativeName": "", "country": "ni", "url": "http://www.uca.edu.ni/", "identifier": [{"identifier": "https://ror.org/03n0yd032", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositorio.uca.edu.ni/cgi/oai2 yes 3424 4929 +3085 {"name": "university of biskra theses repository", "language": "en"} [] http://thesis.univ-biskra.dz/ institutional [] 2022-01-12 15:35:42 2014-06-12 15:47:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of biskra, algeria", "alternativeName": "", "country": "dz", "url": "http://univ-biskra.dz/", "identifier": [{"identifier": "https://ror.org/05fr5y859", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://thesis.univ-biskra.dz/cgi/oai2 yes 3588 3897 +3074 {"name": "ajaums repository", "language": "en"} [] http://eprints.ajaums.ac.ir/ institutional [] 2022-01-12 15:35:42 2014-05-22 13:37:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "aja university of medical sience", "alternativeName": "", "country": "ir", "url": "http://www.ajaums.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 3511 +3071 {"name": "bern open repository and information system (boris)", "language": "en"} [] https://www.boris.unibe.ch/ institutional [] 2022-01-12 15:35:42 2014-05-21 16:34:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of bern", "alternativeName": "", "country": "ch", "url": "http://www.unibe.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://boris.unibe.ch/cgi/oai2 yes 25049 119382 +3087 {"name": "landmark university repository", "language": "en"} [] http://eprints.lmu.edu.ng/ institutional [] 2022-01-12 15:35:42 2014-06-16 13:36:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "landmark university", "alternativeName": "", "country": "ng", "url": "http://lmu.edu.ng/", "identifier": [{"identifier": "https://ror.org/04gw4zv66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.lmu.edu.ng/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.lmu.edu.ng/policies.html", "type": "data"}, {"policy_url": "http://eprints.lmu.edu.ng/policies.html", "type": "content"}, {"policy_url": "http://eprints.lmu.edu.ng/policies.html", "type": "submission"}, {"policy_url": "http://eprints.lmu.edu.ng/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.lmu.edu.ng/cgi/oai2 yes 507 +3004 {"name": "scientific publications of the university of toulouse ii le mirail", "language": "en"} [{"acronym": "hal-utm"}] http://hal-univ-tlse2.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:41 2014-03-14 11:36:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "universit\u00e9 de toulouse ii - le mirail", "alternativeName": "", "country": "fr", "url": "http://www.univ-tlse2.fr/", "identifier": [{"identifier": "https://ror.org/04ezk3x31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-tlse2 yes 6041 48752 +3067 {"name": "archive ouverte a luniversite lyon 2", "language": "en"} [] http://halshs.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:41 2014-05-20 14:48:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e9 lumi\u00e8re lyon 2", "alternativeName": "", "country": "fr", "url": "http://www.univ-lyon2.fr/", "identifier": [{"identifier": "https://ror.org/03rth4p18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/halshs yes 25282 907431 +3078 {"name": "tut digital open repository", "language": "en"} [] http://encore.tut.ac.za/iii/cpro institutional [] 2022-01-12 15:35:42 2014-05-28 14:51:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tshwane university of technology", "alternativeName": "", "country": "za", "url": "http://www.tut.ac.za/", "identifier": [{"identifier": "https://ror.org/037mrss42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://encore.tut.ac.za/iii/oairep/oairepository yes 1733 +3050 {"name": "university of miami libraries scholarly repository", "language": "en"} [] http://scholarlyrepository.miami.edu/ institutional [] 2022-01-12 15:35:41 2014-05-08 11:08:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of miami", "alternativeName": "", "country": "us", "url": "http://www.miami.edu/", "identifier": [{"identifier": "https://ror.org/02dgjyy92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarlyrepository.miami.edu/about.html", "type": "metadata"}, {"policy_url": "http://scholarlyrepository.miami.edu/about.html", "type": "data"}, {"policy_url": "http://scholarlyrepository.miami.edu/about.html", "type": "content"}, {"policy_url": "http://scholarlyrepository.miami.edu/about.html", "type": "submission"}, {"policy_url": "http://scholarlyrepository.miami.edu/about.html", "type": "preservation"}] {"name": "other", "version": ""} yes 7127 +3049 {"name": "szerep sz\u00e9chenyi istv\u00e1n egyetem repozit\u00f3riuma", "language": "en"} [] http://phd.szerep.sze.hu/jadox/portal/ institutional [] 2022-01-12 15:35:41 2014-05-07 16:45:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "szechenyi istvan university", "alternativeName": "", "country": "hu", "url": "http://uni.sze.hu/en_gb/home", "identifier": [{"identifier": "https://ror.org/04091f946", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://szerep.sze.hu/monguz-oai-datagate-webservice/repositories/szerep yes 0 199 +3027 {"name": "pepite (oai repository universit\u00e9 lille)", "language": "en"} [] https://pepite.univ-lille.fr institutional [] 2022-01-12 15:35:41 2014-04-15 17:15:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 de lille", "alternativeName": "", "country": "fr", "url": "http://www.univ-lille.fr", "identifier": [{"identifier": "https://ror.org/02kzqn938", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://pepite-repository.univ-lille.fr/ori-oai-repository/oaihandler yes 0 4206 +3056 {"name": "lareferencia - red federada de repositorios institucionales de publicaciones cient\u00edficas latinoamericanas", "language": "en"} [] http://www.lareferencia.info/joomla/ aggregating [] 2022-01-12 15:35:41 2014-05-14 10:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "lareferencia - red clara", "alternativeName": "", "country": "ar", "url": "http://lareferencia.redclara.net/rfr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.lareferencia.info:8080/oai/provider yes 0 1350180 +3063 {"name": "spire - sciences po institutional repository", "language": "en"} [] http://spire.sciencespo.fr/ institutional [] 2022-01-12 15:35:41 2014-05-19 10:54:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "sciences po", "alternativeName": "", "country": "fr", "url": "http://www.sciencespo.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://spire.sciencespo.fr/dissemination/oaipmh2-no-prefix-publications.xml yes 7487 27638 +3062 {"name": "university of southern denmark research output", "language": "en"} [] http://findresearcher.sdu.dk:8080/portal/en/publications/search.html institutional [] 2022-01-12 15:35:41 2014-05-16 14:58:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of southern denmark", "alternativeName": "", "country": "dk", "url": "http://www.sdu.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://findresearcher.sdu.dk:8443/ws/oai yes 10884 111195 +3094 {"name": "edinburgh research explorer", "language": "en"} [] https://www.research.ed.ac.uk institutional [] 2022-01-12 15:35:42 2014-06-24 15:07:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "the university of edinburgh", "alternativeName": "", "country": "gb", "url": "https://www.ed.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes 137 +3084 {"name": "microsoft research catalog", "language": "en"} [] http://research.microsoft.com/research institutional [] 2022-01-12 15:35:42 2014-06-10 16:10:27 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "software"] [{"name": "microsoft research", "alternativeName": "", "country": "us", "url": "http://research.microsoft.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 202000 +3026 {"name": "electronic archive of the institute for regional studies, centre for economic and regional studies", "language": "en"} [{"acronym": "elektra"}] http://www.regscience.hu:8080/xmlui institutional [] 2022-02-04 15:44:17 2014-04-14 12:31:49 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "institute for regional studies, centre for economic and regional studies, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.rkk.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.regscience.hu/elektra/repository_policy.html", "type": "metadata"}, {"policy_url": "http://www.regscience.hu/elektra/repository_policy.html", "type": "data"}, {"policy_url": "http://www.regscience.hu/elektra/repository_policy.html", "type": "content"}, {"policy_url": "http://www.regscience.hu/elektra/repository_policy.html", "type": "submission"}, {"policy_url": "http://www.regscience.hu/elektra/repository_policy.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://www.regscience.hu:8080/oai/request yes 1368 +3054 {"name": "csiro data access portal", "language": "en"} [] https://data.csiro.au/ disciplinary [] 2022-01-12 15:35:41 2014-05-12 12:10:54 ["science"] ["datasets"] [{"name": "commonwealth scientific and industrial research organisation", "alternativeName": "csiro", "country": "au", "url": "http://www.csiro.au/", "identifier": [{"identifier": "https://ror.org/03qn8fb07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2416 +3053 {"name": "csiro research publications repository", "language": "en"} [] https://publications.csiro.au/ disciplinary [] 2022-01-12 15:35:41 2014-05-12 11:49:08 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "commonwealth scientific and industrial research organisation", "alternativeName": "csiro", "country": "au", "url": "http://www.csiro.au/", "identifier": [{"identifier": "https://ror.org/03qn8fb07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 223832 +3083 {"name": "scivie", "language": "en"} [] http://eprints.gozdis.si/ disciplinary [] 2022-01-12 15:35:42 2014-06-09 17:04:11 ["science"] ["journal_articles"] [{"name": "gozdarski in\u0161titut slovenije", "alternativeName": "", "country": "si", "url": "http://www.gozdis.si/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.gozdis.si/cgi/oai2 yes 1725 +3037 {"name": "nittaidai repository", "language": "en"} [{"name": "\u65e5\u4f53\u5927\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nittaidai.repo.nii.ac.jp institutional [] 2022-01-12 15:35:41 2014-04-22 12:43:20 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nippon sport science university", "alternativeName": "", "country": "jp", "url": "http://www.nittai.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nittaidai.repo.nii.ac.jp/oai yes 1110 +3061 {"name": "open access repository", "language": "en"} [] http://www.openaccessrepository.it/ institutional [] 2022-01-12 15:35:41 2014-05-16 12:36:47 ["science"] ["journal_articles", "conference_and_workshop_papers", "datasets", "software", "other_special_item_types"] [{"name": "infn", "alternativeName": "", "country": "it", "url": "http://www.infn.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://www.openaccessrepository.it/oai2d yes 10012 11325 +3036 {"name": "electronic national university odessa law academy institutional repository", "language": "en"} [{"acronym": "enuolair"}] http://dspace.onua.edu.ua/ institutional [] 2022-01-12 15:35:41 2014-04-22 11:53:39 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national university "odessa law academy"", "alternativeName": "", "country": "ua", "url": "http://onua.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.onua.edu.ua/oai/request yes 2292 10367 +3023 {"name": "repositorio insitucional del ministerio de educaci\u00f3n", "language": "en"} [] http://dide.minedu.gob.pe/ governmental [] 2022-01-12 15:35:41 2014-04-03 11:13:21 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ministerio de educaci\u00f3n", "alternativeName": "", "country": "pe", "url": "http://www.minedu.gob.pe/", "identifier": [{"identifier": "https://ror.org/00zd77s10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5795 +3005 {"name": "jcf seek", "language": "en"} [] http://seek.jcsc.edu.jm:8080/ institutional [] 2022-01-12 15:35:41 2014-03-18 12:00:55 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national police college of jamaica", "alternativeName": "", "country": "jm", "url": "http://www.jcsc.edu.jm/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3046 {"name": "reposit\u00f3rio institucional da enap", "language": "en"} [] http://repositorio.enap.gov.br/ institutional [] 2022-01-12 15:35:41 2014-04-30 16:47:41 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "escola nacional de administra\u00e7\u00e3o p\u00fablica (enap)", "alternativeName": "", "country": "br", "url": "http://www.enap.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.enap.gov.br/oai/request? yes 396 4234 +3013 {"name": "electronic institutional repository donbas state technical university", "language": "en"} [{"acronym": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0430\u0440\u0445\u0438\u0432 \u0434\u043e\u043d\u0433\u0442\u0443"}] http://dspace.dmmi.edu.ua:8080/jspui/ institutional [] 2022-01-12 15:35:41 2014-03-24 16:25:03 ["technology"] ["journal_articles"] [{"name": "donbas state technical university", "alternativeName": "", "country": "ua", "url": "http://dmmi.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.dmmi.edu.ua:8080/oai/request yes 519 +3033 {"name": "electronic national technical university \"kharkiv polytechnic institute\" institutional repository (entukhpiir)", "language": "en"} [] http://repository.kpi.kharkov.ua/ institutional [] 2022-01-12 15:35:41 2014-04-17 16:16:10 ["technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "national technical university, kharkiv polytechnic institute", "alternativeName": "", "country": "ua", "url": "http://www.kpi.kharkov.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kpi.kharkov.ua/oai/request yes 32047 47188 +3093 {"name": "repositorio digital cedia", "language": "en"} [] http://repositorio.cedia.org.ec/ institutional [] 2022-01-12 15:35:42 2014-06-24 14:49:30 ["technology"] ["journal_articles"] [{"name": "cedia - consorcio ecuatoriano para el desarrollo de internet avanzado", "alternativeName": "", "country": "ec", "url": "http://www.cedia.org.ec/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cedia.org.ec/oai/request?verb=identify yes 63 152 +3088 {"name": "ucd digital library", "language": "en"} [] http://digital.ucd.ie/ disciplinary [] 2022-01-12 15:35:42 2014-06-17 12:33:37 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university college dublin", "alternativeName": "ucd", "country": "ie", "url": "http://www.ucd.ie/", "identifier": [{"identifier": "https://ror.org/05m7pjf47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digital.ucd.ie/terms/", "type": "metadata"}, {"policy_url": "http://digital.ucd.ie/terms/", "type": "data"}, {"policy_url": "http://digital.ucd.ie/terms/", "type": "content"}, {"policy_url": "http://digital.ucd.ie/terms/", "type": "preservation"}] {"name": "fedora", "version": ""} http://libucd.ucd.ie/oaiprovider/ yes 0 351 +3055 {"name": "cold spring harbor laboratory institutional repository", "language": "en"} [{"acronym": "cshl institutional repository"}] http://repository.cshl.edu/ institutional [] 2022-01-12 15:35:41 2014-05-13 10:04:28 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "software", "other_special_item_types"] [{"name": "cold spring harbor laboratory", "alternativeName": "", "country": "us", "url": "http://www.cshl.edu/", "identifier": [{"identifier": "https://ror.org/02qz8b764", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.cshl.edu/cgi/oai2 yes 2315 12523 +3069 {"name": "igdir university institutional repository", "language": "en"} [{"acronym": "dspace@i\u011fd\u0131r"}, {"name": "i\u011fd\u0131r \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@i\u011fd\u0131r"}] http://acikerisim.igdir.edu.tr/xmlui institutional [] 2022-01-12 15:35:42 2014-05-21 15:02:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "igdir university", "alternativeName": "", "country": "tr", "url": "https://www.igdir.edu.tr", "identifier": [{"identifier": "https://ror.org/05jstgx72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://acikerisim.igdir.edu.tr/xmlui/static/dokumanlar/oa_politika.pdf", "type": "metadata"}, {"policy_url": "http://acikerisim.igdir.edu.tr/xmlui/static/dokumanlar/oa_politika.pdf", "type": "data"}, {"policy_url": "http://acikerisim.igdir.edu.tr/xmlui/static/dokumanlar/oa_politika.pdf", "type": "content"}, {"policy_url": "http://acikerisim.igdir.edu.tr/xmlui/static/dokumanlar/oa_politika.pdf", "type": "submission"}, {"policy_url": "http://acikerisim.igdir.edu.tr/xmlui/static/dokumanlar/oa_politika.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://acikerisim.igdir.edu.tr/oai/request yes 10 1104 +3095 {"name": "comu open access system", "language": "en"} [] http://acikerisim.lib.comu.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-06-26 16:20:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "canakkale onsekiz mart university", "alternativeName": "", "country": "tr", "url": "http://www.comu.edu.tr/english/", "identifier": [{"identifier": "https://ror.org/05rsv8p09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://acikerisim.lib.comu.edu.tr/politika/", "type": "metadata"}, {"policy_url": "http://acikerisim.lib.comu.edu.tr/politika/", "type": "data"}, {"policy_url": "http://acikerisim.lib.comu.edu.tr/politika/", "type": "content"}, {"policy_url": "http://acikerisim.lib.comu.edu.tr/politika/", "type": "submission"}, {"policy_url": "http://acikerisim.lib.comu.edu.tr/politika/", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.lib.comu.edu.tr:8080/oai/ yes 0 1282 +3006 {"name": "digilib uin sunan kalijaga", "language": "en"} [] http://digilib.uin-suka.ac.id/ institutional [] 2022-01-12 15:35:41 2014-03-21 10:25:55 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "state islamic university (uin) sunan kalijaga yogyakarta", "alternativeName": "", "country": "id", "url": "http://uin-suka.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digilib.uin-suka.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://digilib.uin-suka.ac.id/policies.html", "type": "data"}, {"policy_url": "http://digilib.uin-suka.ac.id/policies.html", "type": "content"}, {"policy_url": "http://digilib.uin-suka.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://digilib.uin-suka.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://digilib.uin-suka.ac.id/cgi/oai2 yes 2621 16895 +3059 {"name": "hal - audencia group", "language": "en"} [] http://hal-audencia.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:41 2014-05-15 12:56:15 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "audencia group", "alternativeName": "", "country": "fr", "url": "http://www.audencia.com/", "identifier": [{"identifier": "https://ror.org/000axn811", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://hal-audencia.archives-ouvertes.fr/index.php?langue=en&halsid=tstd4af69utrcv5cps4rsr3sh4", "type": "content"}, {"policy_url": "http://hal-audencia.archives-ouvertes.fr/index.php?langue=en&halsid=tstd4af69utrcv5cps4rsr3sh4", "type": "submission"}] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/audencia yes 261 2005 +3108 {"name": "opus-phfr - hochschulschriftenserver der paedagogischen hochschule freiburg", "language": "en"} [] http://phfr.bsz-bw.de/home institutional [] 2022-01-12 15:35:42 2014-07-09 12:06:37 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "paedagogischen hochschule freiburg", "alternativeName": "", "country": "de", "url": "http://ph-freiburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://phfr.bsz-bw.de/home/index/help#section-help", "type": "metadata"}, {"policy_url": "http://phfr.bsz-bw.de/home/index/help", "type": "data"}, {"policy_url": "http://phfr.bsz-bw.de/home/index/help#whatpublish", "type": "content"}, {"policy_url": "http://phfr.bsz-bw.de/home/index/help#whatpublish", "type": "submission"}, {"policy_url": ".http://phfr.bsz-bw.de/home/index/help#whatpublish", "type": "preservation"}] {"name": "opus", "version": ""} http://phfr.bsz-bw.de/oai yes 41 444 +3107 {"name": "ljmu research online", "language": "en"} [] http://researchonline.ljmu.ac.uk/ institutional [] 2022-01-12 15:35:42 2014-07-09 11:29:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "liverpool john moores university", "alternativeName": "ljmu", "country": "gb", "url": "http://www.ljmu.ac.uk/", "identifier": [{"identifier": "https://ror.org/04zfme737", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchonline.ljmu.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://researchonline.ljmu.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://researchonline.ljmu.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://researchonline.ljmu.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://researchonline.ljmu.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchonline.ljmu.ac.uk/cgi/oai2 yes 10151 11749 +3077 {"name": "gothic past", "language": "en"} [] http://www.gothicpast.com/ disciplinary [] 2022-01-12 15:35:42 2014-05-28 10:38:17 ["humanities"] ["other_special_item_types"] [{"name": "trinity college dublin", "alternativeName": "", "country": "ie", "url": "http://www.tcd.ie/", "identifier": [{"identifier": "https://ror.org/02tyrky19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.gothicpast.com/howto", "type": "metadata"}, {"policy_url": "http://www.gothicpast.com/howto", "type": "data"}, {"policy_url": "http://www.gothicpast.com/howto", "type": "content"}, {"policy_url": "http://www.gothicpast.com/howto", "type": "submission"}, {"policy_url": "http://www.gothicpast.com/howto", "type": "preservation"}] {"name": "omeka", "version": ""} http://www.tara.tcd.ie/xmlui/handle/2262/4840 yes 0 3249 +3051 {"name": "dspace@fsm vakif university", "language": "en"} [{"acronym": "dspace at fms"}] http://acikerisim.fsm.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:41 2014-05-08 12:09:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "fatih sultan mehmet vakif university", "alternativeName": "", "country": "tr", "url": "http://www.fsm.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://acikerisim.fsm.edu.tr:8080/xmlui/bitstream/handle/123456789/1900/fsm_vakif_university_openaccess_policy.docx?sequence=1", "type": "metadata"}, {"policy_url": "http://acikerisim.fsm.edu.tr:8080/xmlui/bitstream/handle/123456789/1900/fsm_vakif_university_openaccess_policy.docx?sequence=1", "type": "data"}, {"policy_url": "http://acikerisim.fsm.edu.tr:8080/xmlui/bitstream/handle/123456789/1900/fsm_vakif_university_openaccess_policy.docx?sequence=1", "type": "content"}, {"policy_url": "http://acikerisim.fsm.edu.tr:8080/xmlui/bitstream/handle/123456789/1900/fsm_vakif_university_openaccess_policy.docx?sequence=1", "type": "submission"}, {"policy_url": "http://acikerisim.fsm.edu.tr:8080/xmlui/bitstream/handle/123456789/1900/fsm_vakif_university_openaccess_policy.docx?sequence=1", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.fsm.edu.tr:8080/oai/request yes 1761 3382 +3080 {"name": "scholarworks@ua", "language": "en"} [] https://scholarworks.alaska.edu/ institutional [] 2022-01-12 15:35:42 2014-05-30 10:49:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of alaska", "alternativeName": "", "country": "us", "url": "http://www.alaska.edu/alaska/", "identifier": [{"identifier": "https://ror.org/01mtkd993", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://scholarworks.alaska.edu/page/policy", "type": "metadata"}, {"policy_url": "https://scholarworks.alaska.edu/page/policy", "type": "data"}, {"policy_url": "https://scholarworks.alaska.edu/page/policy", "type": "content"}, {"policy_url": "https://scholarworks.alaska.edu/page/policy", "type": "submission"}, {"policy_url": "https://scholarworks.alaska.edu/page/policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://scholarworks.alaska.edu/oai/request yes 4752 9491 +3034 {"name": "repositorio institucional olavide", "language": "en"} [{"acronym": "rio"}] https://rio.upo.es/ institutional [] 2022-01-12 15:35:41 2014-04-17 16:39:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents"] [{"name": "universidad pablo de olavide", "alternativeName": "", "country": "es", "url": "http://www.upo.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www1.upo.es/rio/politicas/metadatos/index.html", "type": "metadata"}, {"policy_url": "https://www1.upo.es/rio/politicas/datos/index.html", "type": "data"}, {"policy_url": "https://www1.upo.es/rio/politicas/contenidos_colecciones/", "type": "content"}, {"policy_url": "http:///www1.upo.es/rio/politicas/deposito/index.html", "type": "submission"}, {"policy_url": "https://www1.upo.es/rio/politicas/retencion/index.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://rio.upo.es/oai/openaire yes 2 3053 +3099 {"name": "analysis & policy observatory", "language": "en"} [{"acronym": "apo"}] http://apo.org.au/ disciplinary [] 2022-01-12 15:35:42 2014-07-08 11:10:29 ["humanities", "health and medicine", "science", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "swinburne university of technology", "alternativeName": "", "country": "au", "url": "http://www.swinburne.edu.au/", "identifier": [{"identifier": "https://ror.org/031rekg67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://apo.org.au/content/collection-policy", "type": "metadata"}, {"policy_url": "http://apo.org.au/content/collection-policy", "type": "data"}, {"policy_url": "http://apo.org.au/content/collection-policy", "type": "content"}, {"policy_url": "http://apo.org.au/content/collection-policy", "type": "submission"}, {"policy_url": "http://apo.org.au/content/collection-policy", "type": "preservation"}] {"name": "drupal", "version": ""} http://apo.org.au/oai2 yes 3934 29330 +3079 {"name": "rit scholar works", "language": "en"} [] http://scholarworks.rit.edu/ institutional [] 2022-01-12 15:35:42 2014-05-28 16:11:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "rochester institute of technology", "alternativeName": "", "country": "us", "url": "http://www.rit.edu/", "identifier": [{"identifier": "https://ror.org/00v4yb702", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarworks.rit.edu/ir_policies.html", "type": "metadata"}, {"policy_url": "http://scholarworks.rit.edu/ir_policies.html", "type": "data"}, {"policy_url": "http://scholarworks.rit.edu/ir_policies.html", "type": "content"}, {"policy_url": "http://scholarworks.rit.edu/ir_policies.html", "type": "submission"}, {"policy_url": "http://scholarworks.rit.edu/ir_policies.html", "type": "preservation"}] {"name": "other", "version": ""} http://scholarworks.rit.edu/do/oai/ yes 710 9299 +3091 {"name": "sigma repository", "language": "en"} [] http://www.nursinglibrary.org/vhl/ institutional [] 2022-01-12 15:35:42 2014-06-18 11:38:22 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "the honor society of nursing, sigma theta tau international", "alternativeName": "", "country": "us", "url": "http://www.nursingsociety.org/", "identifier": [{"identifier": "https://ror.org/01c82hv29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.nursinglibrary.org/vhl/pages/faq.html", "type": "content"}, {"policy_url": "http://www.nursinglibrary.org/vhl/pages/faq.html", "type": "submission"}] {"name": "other", "version": ""} http://www.nursinglibrary.org/vhl/pages/helpfulguides.html yes 0 8192 +3158 {"name": "openuct", "language": "en"} [] http://open.uct.ac.za institutional [] 2022-01-12 15:35:43 2015-02-10 13:14:52 ["arts", "humanities", "health and medicine", "science", "social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of cape town", "alternativeName": "", "country": "za", "url": "http://www.uct.ac.za/", "identifier": [{"identifier": "https://ror.org/03p74gp79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.uct.ac.za/sites/default/files/image_tool/images/328/about/policies/policy_open_access_2020.pdf", "type": "submission"}] {"name": "dspace", "version": ""} http://open.uct.ac.za/oai/request yes 25689 +3131 {"name": "ankara yildirim beyazit university institutional repository", "language": "en"} [{"acronym": "dspace@aybu"}, {"name": "ankara y\u0131ld\u0131r\u0131m beyaz\u0131t \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@aybu"}] http://acikerisim.ybu.edu.tr:8080/xmlui institutional [] 2022-01-12 15:35:43 2014-08-12 15:32:43 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "y\u0131ld\u0131r\u0131m beyaz\u0131t university", "alternativeName": "", "country": "tr", "url": "https://aybu.edu.tr", "identifier": [{"identifier": "https://ror.org/05ryemn72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.ybu.edu.tr/kutuphane/custom_page-346-ybu-acik-erisim-politikasi.html", "type": "metadata"}, {"policy_url": "http://www.ybu.edu.tr/kutuphane/custom_page-346-ybu-acik-erisim-politikasi.html", "type": "data"}, {"policy_url": "http://www.ybu.edu.tr/kutuphane/custom_page-346-ybu-acik-erisim-politikasi.html", "type": "submission"}, {"policy_url": "http://www.ybu.edu.tr/kutuphane/custom_page-346-ybu-acik-erisim-politikasi.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.ybu.edu.tr:8080/oai yes 573 +3141 {"name": "the university of edinburgh collections", "language": "en"} [] http://collections.ed.ac.uk/ institutional [] 2022-01-12 15:35:43 2014-08-15 13:47:25 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "the university of edinburgh", "alternativeName": "", "country": "gb", "url": "http://www.ed.ac.uk/home/", "identifier": [{"identifier": "https://ror.org/01nrxwf90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3147 {"name": "duzce university open access", "language": "en"} [{"acronym": "d.u. acik erisim portal"}] http://acikerisim.duzce.edu.tr:8080/xmlui institutional [] 2022-01-12 15:35:43 2014-08-22 11:32:58 ["arts", "humanities", "health and medicine", "science", "technology", "engineering", "mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "duzce university", "alternativeName": "", "country": "tr", "url": "http://www.eng.duzce.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.duzce.edu.tr:8080/oai/request yes 0 8147 +3170 {"name": "linney", "language": "en"} [] https://linney.mun.ca/pages/home.php institutional [] 2022-01-12 15:35:43 2015-03-11 13:30:34 ["arts", "humanities", "science", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "memorial university of newfoundland", "alternativeName": "", "country": "ca", "url": "http://www.mun.ca/", "identifier": [{"identifier": "https://ror.org/04haebc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 7030 +3138 {"name": "desert island discs: castaway archive and podcasts", "language": "en"} [] https://www.bbc.co.uk/programmes/b006qnmr/episodes/a-z/a institutional [] 2022-01-12 15:35:43 2014-08-15 11:11:26 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["other_special_item_types"] [{"name": "british broadcasting corporation", "alternativeName": "bbc", "country": "gb", "url": "http://www.bbc.co.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.bbc.co.uk/terms/personal.shtml; http://www.bbc.co.uk/terms/business.shtml", "type": "data"}] {"name": "", "version": ""} yes 3120 +3210 {"name": "cut institutional repository", "language": "en"} [] http://ir.cut.ac.za/ institutional [] 2022-01-12 15:35:44 2015-03-16 11:38:21 ["arts", "humanities", "social sciences", "health and medicine", "technology"] ["theses_and_dissertations"] [{"name": "central university of technology", "alternativeName": "", "country": "za", "url": "http://www.cut.ac.za/", "identifier": [{"identifier": "https://ror.org/033z08192", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1329 +3161 {"name": "research online at macewan", "language": "en"} [{"acronym": "ro@m"}] http://roam.macewan.ca/ institutional [] 2022-01-12 15:35:43 2015-03-10 13:40:38 ["arts", "humanities", "social sciences", "health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "macewan university", "alternativeName": "", "country": "ca", "url": "http://macewan.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://roam.macewan.ca/about/terms_of_use#access", "type": "data"}, {"policy_url": "http://roam.macewan.ca/about/terms_of_use#content", "type": "content"}, {"policy_url": "http://roam.macewan.ca/about", "type": "submission"}, {"policy_url": "http://roam.macewan.ca/about/terms_of_use", "type": "preservation"}] {"name": "islandora", "version": ""} yes 1114 +3150 {"name": "digital library of uin sunan ampel", "language": "en"} [] http://digilib.uinsby.ac.id/ institutional [] 2022-01-12 15:35:43 2014-08-26 11:11:01 ["arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "uin sunan ampel surabaya", "alternativeName": "", "country": "id", "url": "http://www.uinsby.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digilib.uinsby.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://digilib.uinsby.ac.id/policies.html", "type": "data"}, {"policy_url": "http://digilib.uinsby.ac.id/policies.html", "type": "content"}, {"policy_url": "http://digilib.uinsby.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://digilib.uinsby.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://digilib.uinsby.ac.id/cgi/oai2 yes 17199 +3201 {"name": "hal - lille 3", "language": "en"} [] http://hal.univ-lille3.fr/ institutional [] 2022-01-12 15:35:44 2015-03-13 14:49:41 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 de lille 3 sciences humaines et sociales", "alternativeName": "", "country": "fr", "url": "http://www.univ-lille3.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-lille3 yes 1951 5524 +3193 {"name": "sundigital collections", "language": "en"} [] http://digital.lib.sun.ac.za/ institutional [] 2022-01-12 15:35:44 2015-03-13 11:22:15 ["arts", "humanities"] ["books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "stellenbosch university", "alternativeName": "", "country": "za", "url": "http://www.sun.ac.za/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digital.lib.sun.ac.za/oai yes 0 12891 +3179 {"name": "geisteswissenschaftliches asset management system", "language": "en"} [{"acronym": "gams"}] https://gams.uni-graz.at disciplinary [] 2022-01-12 15:35:43 2015-03-12 10:38:27 ["arts", "humanities"] ["datasets", "other_special_item_types"] [{"name": "university of graz", "alternativeName": "", "country": "at", "url": "https://uni-graz.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://gams.uni-graz.at/oaiprovider yes 21736 28394 +3198 {"name": "iida womens junior college repository", "language": "en"} [{"name": "\u98ef\u7530\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iidawjc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 13:06:00 ["health and medicine", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "iida womens junior college", "alternativeName": "", "country": "jp", "url": "http://www.iidawjc.ac.jp/", "identifier": [{"identifier": "https://ror.org/02rm1kq61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iidawjc.repo.nii.ac.jp/oai yes 133 +3114 {"name": "digitised diseases", "language": "en"} [] http://www.digitiseddiseases.org/alpha/ disciplinary [] 2022-01-12 15:35:42 2014-07-16 17:11:05 ["health and medicine"] ["other_special_item_types"] [{"name": "university of bradford", "alternativeName": "", "country": "gb", "url": "http://www.brad.ac.uk/external/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.digitiseddiseases.org/fairuse.php", "type": "data"}] {"name": "", "version": ""} yes +3162 {"name": "reposit\u00f3rio cient\u00edfico do hospital de braga", "language": "en"} [] http://repositorio.hospitaldebraga.pt/ institutional [] 2022-01-12 15:35:43 2015-03-10 14:18:40 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "hospital de braga", "alternativeName": "", "country": "pt", "url": "https://www.hospitaldebraga.pt/", "identifier": [{"identifier": "https://ror.org/04jjy0g33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1132 +3172 {"name": "bushehr university of medical sciences repository", "language": "en"} [] http://eprints.bpums.ac.ir/ institutional [] 2022-01-12 15:35:43 2015-03-11 14:17:21 ["health and medicine"] ["journal_articles"] [{"name": "bushehr university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://bpums.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.bpums.ac.ir/cgi/oai2 yes 6021 +3207 {"name": "matsumoto dental university repository", "language": "en"} [{"name": "\u677e\u672c\u6b6f\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mdu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 16:18:30 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "matsumoto dental university", "alternativeName": "", "country": "jp", "url": "http://www.mdu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mdu.repo.nii.ac.jp/oai yes 1987 +3130 {"name": "letter from america by alistair cooke", "language": "en"} [] http://www.bbc.co.uk/programmes/b00f6hbp/podcasts/ institutional [] 2022-01-12 15:35:43 2014-08-08 12:57:20 ["humanities", "arts"] ["other_special_item_types"] [{"name": "british broadcasting corporation", "alternativeName": "bbc", "country": "gb", "url": "http://www.bbc.co.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.bbc.co.uk/podcasts/series/acooke", "type": "metadata"}, {"policy_url": "http://www.bbc.co.uk/terms/personal.shtml", "type": "data"}] {"name": "", "version": ""} yes 1749 +3113 {"name": "gb3d type fossils", "language": "en"} [] http://www.3d-fossils.ac.uk/home.html/ disciplinary [] 2022-01-12 15:35:42 2014-07-16 16:33:19 ["humanities", "science"] ["datasets", "other_special_item_types"] [{"name": "british geological survey", "alternativeName": "", "country": "gb", "url": "http://www.bgs.ac.uk/", "identifier": [{"identifier": "https://ror.org/04a7gbp98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://creativecommons.org/licenses/by-nc-sa/3.0/", "type": "data"}] {"name": "", "version": ""} yes 46200 +3148 {"name": "the commons", "language": "en"} [] https://www.flickr.com/commons aggregating [] 2022-01-12 15:35:43 2014-08-22 16:33:17 ["humanities", "social sciences", "technology"] ["other_special_item_types"] [{"name": "yahoo", "alternativeName": "", "country": "us", "url": "http://www.yahoo.com/company", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.flickr.com/commons/usage/", "type": "metadata"}, {"policy_url": "https://www.flickr.com/commons/usage/", "type": "data"}, {"policy_url": "https://www.flickr.com/commons/usage/", "type": "content"}, {"policy_url": "https://www.flickr.com/commons/register/", "type": "submission"}] {"name": "", "version": ""} yes +3129 {"name": "europeana 1914-1918", "language": "en"} [] http://www.europeana1914-1918.eu/en disciplinary [] 2022-01-12 15:35:43 2014-08-08 12:27:05 ["humanities", "social sciences"] ["other_special_item_types"] [{"name": "europeana", "alternativeName": "", "country": "nl", "url": "http://www.europeana.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 210603 +3139 {"name": "european film gateway", "language": "en"} [{"acronym": "efg (beta)"}] http://www.europeanfilmgateway.eu/ disciplinary [] 2022-01-12 15:35:43 2014-08-15 11:40:22 ["humanities"] ["other_special_item_types"] [{"name": "europeana", "alternativeName": "", "country": "nl", "url": "http://www.europeana.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 711894 +3178 {"name": "k-developedia(kdi school) repository", "language": "en"} [] https://www.kdevelopedia.org/resources.do#.vqbvr-q0uyo institutional [] 2022-01-12 15:35:43 2015-03-11 16:38:18 ["humanities"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "kdi school", "alternativeName": "", "country": "kr", "url": "http://www.kdischool.ac.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://kdidp.kdevelopedia.org/itemhandler yes 2565 28308 +3124 {"name": "comenius-institut", "language": "en"} [] http://comenius.de/biblioinfothek/open_access.php institutional [] 2022-01-12 15:35:43 2014-08-04 16:53:39 ["humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "comenius-institu", "alternativeName": "", "country": "de", "url": "http://www.comenius.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 71 +3164 {"name": "biblioteca universitaria de deusto - repositorio loyola", "language": "en"} [] http://loyola.biblioteca.deusto.es/ institutional [] 2022-01-12 15:35:43 2015-03-10 15:38:04 ["humanities"] ["other_special_item_types"] [{"name": "universidad de deusto", "alternativeName": "", "country": "es", "url": "http://www.biblioteca.deusto.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://loyola.biblioteca.deusto.es/oai/request yes 1447 +3180 {"name": "portale vico", "language": "en"} [{"acronym": "biblioteca digitale vichiana"}] http://www.giambattistavico.it/ institutional [] 2022-01-12 15:35:43 2015-03-12 11:01:41 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ispf-cnr", "alternativeName": "", "country": "it", "url": "http://www.ispf.cnr.it/", "identifier": [{"identifier": "https://ror.org/00awwz417", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www.giambattistavico.it/oai yes 2 118 +3174 {"name": "institute for christian studies", "language": "en"} [] http://ir.icscanada.edu/icsir/ institutional [] 2022-01-12 15:35:43 2015-03-11 15:08:44 ["humanities"] ["learning_objects"] [{"name": "institute for christian studies", "alternativeName": "", "country": "ca", "url": "http://www.icscanada.edu/", "identifier": [{"identifier": "https://ror.org/054dn2d35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.icscanada.edu/icsir/oai yes 0 581 +3212 {"name": "icpbs digital cllections", "language": "en"} [{"name": "\u56fd\u969b\u4ecf\u6559\u5b66\u5927\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://icabs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-16 12:40:51 ["humanities"] ["journal_articles"] [{"name": "international college for postgraduate buddhist studies", "alternativeName": "", "country": "jp", "url": "http://www.icabs.ac.jp/", "identifier": [{"identifier": "https://ror.org/04h82h717", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://icabs.repo.nii.ac.jp/oai yes 359 +3163 {"name": "reposit\u00f3rio digital ipbeja", "language": "en"} [] https://repositorio.ipbeja.pt/ institutional [] 2022-01-12 15:35:43 2015-03-10 14:47:04 ["science", "arts", "humanities", "mathematics", "health and medicine", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto polit\u00e9cnico de beja", "alternativeName": "", "country": "pt", "url": "http://www.ipbeja.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ipbeja.pt/oai/request?verb=identify/ yes 20 1343 +3155 {"name": "sfa scholarworks", "language": "en"} [] http://scholarworks.sfasu.edu/ institutional [] 2022-01-12 15:35:43 2014-11-12 09:54:03 ["science", "arts", "humanities", "mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "stephen f. austin state university", "alternativeName": "", "country": "us", "url": "http://www.sfasu.edu/", "identifier": [{"identifier": "https://ror.org/00hq0e369", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.sfasu.edu/do/oai/ yes 4481 10487 +3154 {"name": "scholarworks at central washington university", "language": "en"} [] http://digitalcommons.cwu.edu/ institutional [] 2022-01-12 15:35:43 2014-10-24 09:25:02 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "central washington university", "alternativeName": "", "country": "us", "url": "http://www.cwu.edu/", "identifier": [{"identifier": "https://ror.org/049c8eh51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.cwu.edu/do/oai/ yes 15437 +3118 {"name": "biorxiv,", "language": "en"} [] http://biorxiv.org/ disciplinary [] 2022-01-12 15:35:42 2014-07-29 11:42:24 ["science", "health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "cold spring harbor laboratory", "alternativeName": "", "country": "us", "url": "http://www.cshl.edu/", "identifier": [{"identifier": "https://ror.org/02qz8b764", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes 1254 +3159 {"name": "belarusian state pedagogical university repository", "language": "en"} [] http://elib.bspu.by/ institutional [] 2022-01-12 15:35:43 2015-02-18 16:52:56 ["science", "humanities", "arts", "mathematics", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "belarusian state pedagogical university named maxim tank", "alternativeName": "", "country": "by", "url": "http://www.bspu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.bspu.by/oai/request yes 6250 10700 +3137 {"name": "repositorio institucional sena", "language": "en"} [] http://repositorio.sena.edu.co/ institutional [] 2022-01-12 15:35:43 2014-08-13 12:09:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "servicio nacional de aprendizaje sena", "alternativeName": "", "country": "co", "url": "http://sena.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.sena.edu.co/oai/request yes 3894 +3168 {"name": "guildhe research repositories", "language": "en"} [{"acronym": "crest"}] https://repository.guildhe.ac.uk aggregating [] 2022-01-12 15:35:43 2015-03-11 12:33:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "guild he research", "alternativeName": "crest", "country": "gb", "url": "https://research.guildhe.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://collections.crest.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://collections.crest.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://collections.crest.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://collections.crest.ac.uk/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} https://repository.guildhe.ac.uk/cgi/oai2 yes 12949 +3177 {"name": "institutional repository of iain tulungagung", "language": "en"} [] http://repo.iain-tulungagung.ac.id/ institutional [] 2022-01-12 15:35:43 2015-03-11 16:14:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "iain tulungagung", "alternativeName": "", "country": "id", "url": "http://www.iain-tulungagung.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.iain-tulungagung.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repo.iain-tulungagung.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repo.iain-tulungagung.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repo.iain-tulungagung.ac.id/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://repo.iain-tulungagung.ac.id/cgi/oai2 yes 4726 +3116 {"name": "getty search gateway", "language": "en"} [] http://search.getty.edu/gateway/landing institutional [] 2022-01-12 15:35:42 2014-07-18 13:10:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "the getty", "alternativeName": "", "country": "us", "url": "http://www.getty.edu/about/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://search.getty.edu/gateway/about.html", "type": "data"}, {"policy_url": "http://search.getty.edu/gateway/about.html", "type": "content"}] {"name": "", "version": ""} yes 1376411 +3122 {"name": "istanbul bilgi university library open access", "language": "en"} [] https://openaccess.bilgi.edu.tr institutional [] 2022-01-12 15:35:43 2014-08-04 12:36:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "istanbul bilgi university", "alternativeName": "", "country": "tr", "url": "http://www.bilgi.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 392 1726 +3184 {"name": "utc digital collections", "language": "en"} [] http://digital-collections.library.utc.edu/ institutional [] 2022-01-12 15:35:43 2015-03-12 12:22:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of tennessee at chattanooga", "alternativeName": "", "country": "us", "url": "http://www.utc.edu/", "identifier": [{"identifier": "https://ror.org/00nqb1v70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16877.contentdm.oclc.org/oai/oai.php yes 3322 +3144 {"name": "bozok univeristy open archive", "language": "en"} [{"acronym": "bozok \u00fcniversitesi a\u00e7\u0131k ar\u015fivi"}] http://acikerisim.bozok.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:43 2014-08-19 10:08:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "bozok university", "alternativeName": "bozok \u00fcniversitesi", "country": "tr", "url": "http://www.bozok.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4 +3120 {"name": "k\u0131rklareli university institutional repository", "language": "en"} [{"acronym": "dspace@k\u0131rklareli"}, {"name": "k\u0131rklareli \u00fcniversitesi kurumsal akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@k\u0131rklareli"}] http://acikerisim.klu.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-07-29 14:56:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "k\u0131rklareli \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.klu.edu.tr", "identifier": [{"identifier": "https://ror.org/00jb0e673", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.klu.edu.tr/oai yes 32 1105 +3200 {"name": "institutional repository of vidyasagar university", "language": "en"} [{"acronym": "dspace@vu"}] http://inet.vidyasagar.ac.in:8080/jspui institutional [] 2022-01-12 15:35:44 2015-03-13 13:55:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "vidyasagar university", "alternativeName": "", "country": "in", "url": "http://vidyasagar.ac.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://inet.vidyasagar.ac.in:8080/oai/request yes 1427 +3190 {"name": "kharkov national university of internal affairs institutional repository (khnuiair)", "language": "en"} [{"acronym": "khnuiair"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0445\u0430\u0440\u044c\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0445 \u0434\u0435\u043b", "language": "uk"}] http://dspace.univd.edu.ua/xmlui/ institutional [] 2022-01-12 15:35:43 2015-03-12 16:32:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kharkov national university of internal affairs", "alternativeName": "", "country": "ua", "url": "http://univd.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univd.edu.ua/oai/request?verb=identify yes 2593 9764 +3171 {"name": "repositorio institucional n\u00ednive", "language": "en"} [{"acronym": "ninive"}] http://ninive.uaslp.mx/jspui/ institutional [] 2022-01-12 15:35:43 2015-03-11 13:54:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad aut\u00f3noma de san luis potos\u00ed", "alternativeName": "", "country": "mx", "url": "http://www.uaslp.mx/spanish/paginas/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ninive.uaslp.mx/oai/ yes 0 2044 +3208 {"name": "thesis and dissertation repository of universidade federal de goi\u00e1s", "language": "en"} [{"acronym": "tede"}] http://repositorio.bc.ufg.br/tede/ institutional [] 2022-01-12 15:35:44 2015-03-13 16:36:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal de goi\u00e1s", "alternativeName": "", "country": "br", "url": "http://www.ufg.br/", "identifier": [{"identifier": "https://ror.org/0039d5757", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7672 +3173 {"name": "electronic archive uspu", "language": "en"} [{"acronym": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0430\u0440\u0445\u0438\u0432 \u0443\u0440\u0433\u043f\u0443"}] http://elar.uspu.ru/ institutional [] 2022-01-12 15:35:43 2015-03-11 14:37:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "\u0443\u0440\u0430\u043b\u044c\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "alternativeName": "", "country": "ru", "url": "http://uspu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.uspu.ru/oai/request yes 8618 +3145 {"name": "dspace@kmu", "language": "en"} [] http://earsiv.kmu.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:43 2014-08-20 10:22:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "karamanoglu mehmetbey university", "alternativeName": "", "country": "tr", "url": "http://www.kmu.edu.tr/", "identifier": [{"identifier": "https://ror.org/037vvf096", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.kmu.edu.tr:8080/oai/request yes 140 3737 +3165 {"name": "federal university ndufu-alike ikwo repository archive", "language": "en"} [] http://dspace.funai.edu.ng/xmlui/ institutional [] 2022-01-12 15:35:43 2015-03-10 16:01:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "federal university ndufu-alike ikwo", "alternativeName": "", "country": "ng", "url": "http://www.funai.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 256 +3194 {"name": "gaun@dspace", "language": "en"} [] http://acikerisim.gantep.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:44 2015-03-13 11:38:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "gaziantep \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.gantep.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.gantep.edu.tr:8080/oai/request yes 0 44 +3153 {"name": "neelain repository", "language": "en"} [] http://repository.neelain.edu.sd:8080/xmlui institutional [] 2022-01-12 15:35:43 2014-08-28 09:56:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "al-neelain university", "alternativeName": "", "country": "sd", "url": "http://neelain.edu.sd", "identifier": [{"identifier": "https://ror.org/05dvsnx49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.neelain.edu.sd:8080/oai/request yes 10051 +3182 {"name": "repositorio institucional universidad de medell\u00edn", "language": "en"} [] http://repository.udem.edu.co/ institutional [] 2022-01-12 15:35:43 2015-03-12 11:49:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de medell\u00edn", "alternativeName": "", "country": "co", "url": "http://www.udem.edu.co/", "identifier": [{"identifier": "https://ror.org/030kw0b65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.udem.edu.co/oai/request yes 2360 5223 +3187 {"name": "cut ir", "language": "en"} [] http://ir.cut.ac.zw:8080/xmlui institutional [] 2022-01-12 15:35:43 2015-03-12 14:41:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chinhoyi university of technology", "alternativeName": "", "country": "zw", "url": "http://www.cut.ac.zw", "identifier": [{"identifier": "https://ror.org/005f4y685", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.cut.ac.zw:8080/oai yes 46 +3119 {"name": "ruja (repositorio institucional de la universidad de ja\u00e9n)", "language": "en"} [] http://ruja.ujaen.es/ institutional [] 2022-01-12 15:35:42 2014-07-29 13:41:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad de ja\u00e9n", "alternativeName": "", "country": "es", "url": "http://www.ujaen.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ruja.ujaen.es/oaiextended/request yes 409 +3112 {"name": "kadir has university academic repository", "language": "en"} [] http://academicrepository.khas.edu.tr/ institutional [] 2022-01-12 15:35:42 2014-07-16 10:49:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kadir has university", "alternativeName": "", "country": "tr", "url": "https://www.khas.edu.tr/tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://academicrepository.khas.edu.tr/oai yes 377 +3186 {"name": "midlands state university institutional repository", "language": "en"} [] http://ir.msu.ac.zw:8080/xmlui/ institutional [] 2022-01-12 15:35:43 2015-03-12 14:13:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "midlands state university", "alternativeName": "", "country": "zw", "url": "http://www.msu.ac.zw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.msu.ac.zw:8080/oai/request yes 0 2652 +3192 {"name": "afyon kocatepe university institutional repository", "language": "en"} [] http://acikerisim.aku.edu.tr/ institutional [] 2022-01-12 15:35:44 2015-03-13 11:02:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "afyon kocatepe \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.aku.edu.tr/anasayfa/eng/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.aku.edu.tr/oai/request yes 9 6745 +3195 {"name": "dspace@izu", "language": "en"} [] http://openaccess.izu.edu.tr/ institutional [] 2022-01-12 15:35:44 2015-03-13 11:58:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "istanbul sabahattin zaim university", "alternativeName": "", "country": "tr", "url": "http://www.izu.edu.tr/", "identifier": [{"identifier": "https://ror.org/00xvwpq40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.izu.edu.tr:8080/xmlui/oai yes 0 103 +3197 {"name": "kyoto women\u2019s university academic information repository", "language": "en"} [{"name": "\u4eac\u90fd\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repo.kyoto-wu.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:44 2015-03-13 12:54:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kyoto womens university", "alternativeName": "", "country": "jp", "url": "http://www.kyoto-wu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.kyoto-wu.ac.jp/dspace-oai/request yes 2133 +3142 {"name": "repository of gomel state university", "language": "en"} [] http://repo.gsu.by/ institutional [] 2022-01-12 15:35:43 2014-08-18 10:32:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "gomel state university", "alternativeName": "", "country": "by", "url": "http://gsu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.gsu.by/oai/request yes 2806 4019 +3183 {"name": "utc scholar", "language": "en"} [] http://scholar.utc.edu/ institutional [] 2022-01-12 15:35:43 2015-03-12 11:58:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of tennessee at chattanooga", "alternativeName": "", "country": "us", "url": "http://www.utc.edu/", "identifier": [{"identifier": "https://ror.org/00nqb1v70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholar.utc.edu/do/oai/ yes 1552 2364 +3189 {"name": "udinus repo", "language": "en"} [{"acronym": "udinus repository"}] http://eprints.dinus.ac.id/ institutional [] 2022-01-12 15:35:43 2015-03-12 16:03:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "universitas dian nuswantoro", "alternativeName": "", "country": "id", "url": "http://dinus.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.dinus.ac.id/cgi/oai2 yes 14313 17659 +3196 {"name": "e-theses of the university of tuzla (phaidra)", "language": "en"} [] http://eteze.untz.ba/ institutional [] 2022-01-12 15:35:44 2015-03-13 12:07:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of tuzla", "alternativeName": "", "country": "ba", "url": "http://untz.ba/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 124 +3143 {"name": "wikimedia commons", "language": "en"} [] http://commons.wikimedia.org/wiki/ institutional [] 2022-01-12 15:35:43 2014-08-18 14:58:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "wikimedia foundation, inc", "alternativeName": "", "country": "us", "url": "https://wikimediafoundation.org/wiki/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://commons.wikimedia.org/wiki/commons:reusing_content_outside_wikimedia?uselang=en-gb", "type": "data"}, {"policy_url": "http://commons.wikimedia.org/wiki/commons:project_scope", "type": "submission"}] {"name": "other", "version": ""} yes 47670300 +3132 {"name": "university of innsbruck digital library", "language": "en"} [] http://diglib.uibk.ac.at/ institutional [] 2022-01-12 15:35:43 2014-08-12 15:58:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of innsbruck", "alternativeName": "", "country": "at", "url": "http://www.uibk.ac.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://diglib.uibk.ac.at/oai/ yes 5584 +3128 {"name": "repositorio institucional usil", "language": "en"} [] http://repositorio.usil.edu.pe/ institutional [] 2022-01-12 15:35:43 2014-08-05 14:06:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad san ignacio de loyola", "alternativeName": "", "country": "pe", "url": "http://www.usil.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3205 {"name": "repository of university of kitakyushu stacked by original resources : ruksor (japanese)", "language": "en"} [{"name": "\u5317\u4e5d\u5dde\u5e02\u7acb\u5927\u5b66\u3000\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea\u3000\uff08\u30eb\u30af\u30bd\u30fc\u30eb\uff09", "language": "ja"}] https://kitakyu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 15:54:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "the university of kitakyushu", "alternativeName": "", "country": "jp", "url": "http://www.kitakyu-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03mfefw72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kitakyu.repo.nii.ac.jp/oai yes 57 +3206 {"name": "seisen university institutional repository", "language": "en"} [{"name": "\u6e05\u6cc9\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seisen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 16:04:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "seisen university", "alternativeName": "", "country": "jp", "url": "http://www.seisen-u.ac.jp/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seisen.repo.nii.ac.jp/oai yes 531 +3202 {"name": "ncu repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u5e02\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ncu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 15:04:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nagoya city university", "alternativeName": "", "country": "jp", "url": "http://www.nagoya-cu.ac.jp/1.htm/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ncu.repo.nii.ac.jp/oai yes 1527 +3215 {"name": "hiroshima shudo university academic repository", "language": "en"} [{"name": "\u5e83\u5cf6\u4fee\u9053\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://shudo-u.repo.nii.ac.jp institutional [] 2022-01-12 15:35:44 2015-03-16 16:19:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "hiroshima shudo university", "alternativeName": "", "country": "jp", "url": "http://www.shudo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shudo-u.repo.nii.ac.jp/oai yes 2180 +3199 {"name": "sojo university repository", "language": "en"} [] https://sojo-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 13:18:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "sojo university library", "alternativeName": "", "country": "jp", "url": "http://www.lib.sojo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} yes 170 +3175 {"name": "illinois institute of technology\u2019s institutional repository", "language": "en"} [{"acronym": "repository.iit"}] http://repository.iit.edu/ institutional [] 2022-01-12 15:35:43 2015-03-11 15:20:44 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "illinois institute of technology", "alternativeName": "", "country": "us", "url": "http://web.iit.edu/", "identifier": [{"identifier": "https://ror.org/037t3ry66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3763 +3167 {"name": "soe repository of dissertations", "language": "en"} [] http://doktori.nyme.hu/ institutional [] 2022-01-12 15:35:43 2015-03-10 16:52:20 ["science", "technology"] ["theses_and_dissertations"] [{"name": "university of sopron", "alternativeName": "", "country": "hu", "url": "http://www.nyme.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://doktori.nyme.hu/cgi/oai2 yes 529 +3151 {"name": "botanicus digital library", "language": "en"} [] http://www.botanicus.org/ disciplinary [] 2022-01-12 15:35:43 2014-08-26 11:41:14 ["science"] ["books_chapters_and_sections"] [{"name": "missouri botanical garden", "alternativeName": "", "country": "us", "url": "http://www.missouribotanicalgarden.org/", "identifier": [{"identifier": "https://ror.org/04tzy5g14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.botanicus.org/copyright.aspx", "type": "data"}] {"name": "eprints", "version": ""} yes 2081 +3185 {"name": "espace inrs", "language": "en"} [] http://espace.inrs.ca/ institutional [] 2022-01-12 15:35:43 2015-03-12 12:35:19 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institut national de la recherche scientifique", "alternativeName": "", "country": "ca", "url": "http://www.inrs.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://espace.inrs.ca/cgi/oai2-etdms?verb=identify yes 5898 +3135 {"name": "real-j", "language": "en"} [] http://real-j.mtak.hu/ institutional [] 2022-01-12 15:35:43 2014-08-13 10:25:41 ["science"] ["journal_articles"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real-j.mtak.hu/cgi/oai2 yes 11138 +3181 {"name": "nioz repository", "language": "en"} [] http://www.nioz.nl/repository institutional [] 2022-01-12 15:35:43 2015-03-12 11:20:50 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "royal netherlands institute for sea research", "alternativeName": "", "country": "nl", "url": "http://www.nioz.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.vliz.be/imis/nioz/imis.php yes 1947 3185 +3213 {"name": "akita prefectural university repository", "language": "en"} [{"name": "\u79cb\u7530\u770c\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://akita-pu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-16 12:50:53 ["science"] ["journal_articles"] [{"name": "akita prefectural university", "alternativeName": "", "country": "jp", "url": "http://www.akita-pu.ac.jp/index.htm", "identifier": [{"identifier": "https://ror.org/05b1kx621", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://akita-pu.repo.nii.ac.jp/oai yes 542 +3125 {"name": "reposit\u00f3rio de dados eleitorais", "language": "en"} [] http://www.tse.jus.br/eleicoes/estatisticas/repositorio-de-dados-eleitorais governmental [] 2022-01-12 15:35:43 2014-08-05 10:24:20 ["social sciences"] ["datasets"] [{"name": "tribunal superior eleitoral", "alternativeName": "", "country": "br", "url": "http://www.tse.jus.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.tse.jus.br/eleicoes/estatisticas/repositorio-de-dados-eleitorais", "type": "metadata"}, {"policy_url": "http://www.tse.jus.br/eleicoes/estatisticas/repositorio-de-dados-eleitorais", "type": "data"}] {"name": "", "version": ""} yes 73 +3133 {"name": "krivet repository", "language": "en"} [{"name": "\ud55c\uad6d\uc9c1\uc5c5\ub2a5\ub825\uc5f0\uad6c\uc6d0", "language": "ko"}] https://www.krivet.re.kr:8443/repository institutional [] 2022-01-12 15:35:43 2014-08-12 16:39:17 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "korea research institute for vocational education & training", "alternativeName": "krivet", "country": "kr", "url": "https://www.krivet.re.kr", "identifier": [{"identifier": "https://ror.org/03tmzec49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://krivet.re.kr:8443/oai/request yes 0 3151 +3126 {"name": "the seoul institute repository(\uc11c\uc6b8\uc5f0\uad6c\uc6d0 \uc804\uc790\ub3c4\uc11c\uad00)", "language": "en"} [{"acronym": "si repository"}] http://repository.si.re.kr/ institutional [] 2022-01-12 15:35:43 2014-08-05 11:36:14 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "seoul institute", "alternativeName": "", "country": "kr", "url": "https://www.si.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.si.re.kr/oai/request yes 1505 +3121 {"name": "kipe open access repository", "language": "en"} [] http://repository.kipf.re.kr/ institutional [] 2022-01-12 15:35:43 2014-08-04 11:55:55 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "korea institute of public finance", "alternativeName": "", "country": "kr", "url": "http://www.kipf.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kipf.re.kr/oai/request yes 1861 +3191 {"name": "repositorio de la universidad del pac\u00edfico", "language": "en"} [] http://repositorio.up.edu.pe/ institutional [] 2022-01-12 15:35:43 2015-03-13 10:08:31 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad del pac\u00edfico", "alternativeName": "", "country": "pe", "url": "http://www.up.edu.pe/", "identifier": [{"identifier": "https://ror.org/05mmg7t28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.up.edu.pe/oai/request?verb=identify yes 1582 +3134 {"name": "seoul metropolitan library", "language": "en"} [] http://lib.seoul.go.kr/oak/ institutional [] 2022-01-12 15:35:43 2014-08-12 16:56:17 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "seoul metropolitan library(\uc11c\uc6b8\ub3c4\uc11c\uad00)", "alternativeName": "", "country": "kr", "url": "http://lib.seoul.go.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lib.seoul.go.kr/oak/oai/request yes 12722 +3149 {"name": "kdk repository", "language": "en"} [] http://openarchive.tk.mta.hu/ disciplinary [] 2022-01-12 15:35:43 2014-08-26 10:45:36 ["social sciences"] ["unpub_reports_and_working_papers", "datasets"] [{"name": "centre for social sciences, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://kdk.tk.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://openarchive.tk.mta.hu/cgi/oai2 yes 95 297 +3203 {"name": "university of florida law repository", "language": "en"} [] http://scholarship.law.ufl.edu/ institutional [] 2022-01-12 15:35:44 2015-03-13 15:22:15 ["social sciences"] ["journal_articles"] [{"name": "university of florida levin college of law", "alternativeName": "", "country": "us", "url": "http://www.law.ufl.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1183 +3216 {"name": "tuis academic repository", "language": "en"} [{"name": "\u6771\u4eac\u60c5\u5831\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tuis.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-16 16:34:35 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tokyo university of information sciences", "alternativeName": "", "country": "jp", "url": "http://www.tuis.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tuis.repo.nii.ac.jp/oai yes 496 596 +3140 {"name": "digital mechanism and gear library", "language": "en"} [{"acronym": "dmglib"}] http://www.dmg-lib.org/dmglib/main/portal.jsp disciplinary [] 2022-01-12 15:35:43 2014-08-15 13:15:36 ["technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "europeana", "alternativeName": "", "country": "nl", "url": "http://www.europeana.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 100644 +3214 {"name": "hal-mines paristech", "language": "en"} [] https://hal-mines-paristech.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:44 2015-03-16 13:00:49 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "mines paristech - \u00e9cole nationale sup\u00e9rieure des mines de paris", "alternativeName": "", "country": "fr", "url": "http://www.mines-paristech.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ensmp yes 4437 23783 +3204 {"name": "c-recs \uff08creative repository of electro-communications\uff09", "language": "en"} [{"acronym": "c-recs"}, {"name": "\u96fb\u6c17\u901a\u4fe1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://uec.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-13 15:36:49 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "the university of electro-communications", "alternativeName": "", "country": "jp", "url": "http://www.uec.ac.jp/eng/", "identifier": [{"identifier": "https://ror.org/02x73b849", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://uec.repo.nii.ac.jp/oai yes 5503 9891 +3211 {"name": "repository of national institute of technology, nagano college", "language": "en"} [{"name": "\u9577\u91ce\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagano-nct.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-16 12:27:19 ["technology"] ["journal_articles"] [{"name": "national institute of technology, nagano college", "alternativeName": "", "country": "jp", "url": "http://www.nagano-nct.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagano-nct.repo.nii.ac.jp/oai yes 0 956 +3152 {"name": "dspace at imperial college london", "language": "en"} [] https://spectradspace.lib.imperial.ac.uk:8443/ institutional [] 2022-01-12 15:35:43 2014-08-26 12:13:03 ["science"] ["unpub_reports_and_working_papers", "datasets"] [{"name": "imperial college london", "alternativeName": "", "country": "gb", "url": "https://www.imperial.ac.uk/", "identifier": [{"identifier": "https://ror.org/041kmwe10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://spectradspace.lib.imperial.ac.uk:8443/oai/request?verb=identify yes 0 161420 +3146 {"name": "eclac digital repository", "language": "en"} [{"acronym": "repositorio digital cepal"}] http://repositorio.cepal.org/ disciplinary [] 2022-01-12 15:35:43 2014-08-20 11:01:47 ["humanities", "science", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "economic commission for latin america and the caribbean - eclac", "alternativeName": "la comisi\u00f3n econ\u00f3mica para am\u00e9rica latina (cepal)", "country": "cl", "url": "http://www.cepal.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.cepal.org/biblioteca/default.asp?xml=/bibaux/noticias/paginas/0/50090/terminosycondicionesrepositorio.xml&lang=eng", "type": "metadata"}, {"policy_url": "http://www.cepal.org/biblioteca/default.asp?xml=/bibaux/noticias/paginas/0/50090/terminosycondicionesrepositorio.xml&amp;lang=eng", "type": "data"}, {"policy_url": "http://www.cepal.org/biblioteca/default.asp?xml=/bibaux/noticias/paginas/0/50090/terminosycondicionesrepositorio.xml&lang=eng", "type": "content"}] {"name": "dspace", "version": ""} http://repositorio.cepal.org/oai/request yes 7700 43326 +3136 {"name": "digital commons @ george fox university", "language": "en"} [] http://digitalcommons.georgefox.edu/ institutional [] 2022-01-12 15:35:43 2014-08-13 11:36:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "george fox university", "alternativeName": "", "country": "us", "url": "http://www.georgefox.edu/", "identifier": [{"identifier": "https://ror.org/00w641b14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.georgefox.edu/terms_of_use.html", "type": "data"}] {"name": "other", "version": ""} http://digitalcommons.georgefox.edu/do/oai/ yes 12086 19833 +3188 {"name": "inba digital", "language": "en"} [{"acronym": "repositorio de investigaci\u00f3n y educaci\u00f3n art\u00edsticas del instituto nacional de bellas artes"}] http://inbadigital.bellasartes.gob.mx:8080/jspui/ institutional [] 2022-01-12 15:35:43 2015-03-12 15:18:43 ["arts"] ["books_chapters_and_sections"] [{"name": "instituto nacional de bellas artes", "alternativeName": "", "country": "mx", "url": "http://www.bellasartes.gob.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://http://www.inbadigital.bellasartes.gob.mx/politicas.html", "type": "metadata"}, {"policy_url": "http://www.inbadigital.bellasartes.gob.mx/politicas.html", "type": "data"}] {"name": "dspace", "version": ""} http://www.inbadigital.bellasartes.gob.mx:8080/xmlui/dspace-oai yes 0 461 +3111 {"name": "nsu works", "language": "en"} [] http://nsuworks.nova.edu/ institutional [] 2022-01-12 15:35:42 2014-07-15 10:39:09 ["arts", "humanities", "mathematics", "social sciences", "science", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "nova southeastern university", "alternativeName": "", "country": "us", "url": "http://nova.edu/", "identifier": [{"identifier": "https://ror.org/042bbge36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://nsuworks.nova.edu/copyright.html", "type": "metadata"}, {"policy_url": "http://nsuworks.nova.edu/copyright.html", "type": "data"}, {"policy_url": "http://demo.nsu.bepress.com/faq.html#faq-1", "type": "content"}, {"policy_url": "http://demo.nsu.bepress.com/faq.html#faq-1", "type": "submission"}] {"name": "other", "version": ""} http://nsuworks.nova.edu/do/oai/ yes 14966 60176 +3157 {"name": "all ireland public health repository", "language": "en"} [] http://repository.thehealthwell.info/ governmental [] 2022-01-12 15:35:43 2014-12-09 16:46:28 ["health and medicine"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "institute of public health in ireland", "alternativeName": "", "country": "ie", "url": "http://www.publichealth.ie/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.thehealthwell.info/content/policies", "type": "metadata"}, {"policy_url": "http://repository.thehealthwell.info/content/policies", "type": "data"}, {"policy_url": "http://repository.thehealthwell.info/content/policies", "type": "content"}, {"policy_url": "http://repository.thehealthwell.info/content/policies", "type": "submission"}, {"policy_url": "http://repository.thehealthwell.info/content/policies", "type": "preservation"}] {"name": "drupal", "version": ""} http://repository.thehealthwell.info/oai yes 0 3672 +3209 {"name": "institutional repository at national graduate institute for policy studies", "language": "en"} [{"name": "\u653f\u7b56\u7814\u7a76\u5927\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://grips.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-16 11:24:48 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national graduate institute for policy studies", "alternativeName": "", "country": "jp", "url": "http://www.grips.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://grips.repo.nii.ac.jp", "type": "data"}] {"name": "weko", "version": ""} http://grips.repo.nii.ac.jp/oai yes 729 1284 +3115 {"name": "kdi school archives", "language": "en"} [] http://archives.kdischool.ac.kr/ institutional [] 2022-01-12 15:35:42 2014-07-17 10:25:01 ["social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kdi school", "alternativeName": "", "country": "kr", "url": "http://www.kdischool.ac.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://archives.kdischool.ac.kr/submit?pagetype=submission-process", "type": "submission"}] {"name": "dspace", "version": ""} http://archives.kdischool.ac.kr/oai/request yes 1369 4572 +3156 {"name": "belarusian state university of informatics and radioelectronics repository", "language": "en"} [{"acronym": "bsuir repository"}] http://libeldoc.bsuir.by institutional [] 2022-01-12 15:35:43 2014-11-18 16:29:03 ["arts", "humanities", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "learning_objects"] [{"name": "belarusian state university of informatics and radioelectronics", "alternativeName": "bsuir", "country": "by", "url": "https://www.bsuir.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libeldoc.bsuir.by/help/opendoar.html", "type": "metadata"}, {"policy_url": "https://libeldoc.bsuir.by/help/opendoar.html", "type": "data"}, {"policy_url": "https://libeldoc.bsuir.by/help/opendoar.html", "type": "content"}, {"policy_url": "https://libeldoc.bsuir.by/help/opendoar.html", "type": "submission"}, {"policy_url": "https://libeldoc.bsuir.by/help/opendoar.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://libeldoc.bsuir.by/oai/request yes 89 9287 +3160 {"name": "university of gloucestershire, research repository", "language": "en"} [] https://eprints.glos.ac.uk/ institutional [] 2022-01-12 15:35:43 2015-02-27 14:33:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "university of gloucestershire", "alternativeName": "", "country": "gb", "url": "http://www.glos.ac.uk/pages/default.aspx", "identifier": [{"identifier": "https://ror.org/00wygct11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://eprints.glos.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "https://eprints.glos.ac.uk/policies.html", "type": "data"}, {"policy_url": "https://eprints.glos.ac.uk/policies.html", "type": "content"}, {"policy_url": "https://eprints.glos.ac.uk/policies.html", "type": "submission"}, {"policy_url": "https://eprints.glos.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.glos.ac.uk/cgi/oai2 yes 2855 6208 +3242 {"name": "vcu libraries digital collections", "language": "en"} [] http://dig.library.vcu.edu/cdm/ institutional [] 2022-01-12 15:35:44 2015-03-19 10:15:49 ["arts", "humanities"] ["other_special_item_types"] [{"name": "virginia commonwealth university", "alternativeName": "", "country": "us", "url": "http://www.vcu.edu/", "identifier": [{"identifier": "https://ror.org/02nkdxk79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://dig.library.vcu.edu/cgi-bin/oai.exe yes 0 28725 +3247 {"name": "cabila", "language": "en"} [] http://cabila.unileon.es:8383/greenstone3/library institutional [] 2022-01-12 15:35:44 2015-03-19 14:35:52 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of leon", "alternativeName": "", "country": "es", "url": "https://www.unileon.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://193.146.101.123:8383/greenstone3/oaiserver yes 0 109 +3244 {"name": "publikationsserver des instituts f\u00fcr deutsche sprache", "language": "en"} [] https://ids-pub.bsz-bw.de institutional [] 2022-01-12 15:35:44 2015-03-19 13:19:49 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institut f\u00fcr deutsche sprache", "alternativeName": "", "country": "de", "url": "http://www1.ids-mannheim.de/", "identifier": [{"identifier": "https://ror.org/00hvwkt50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://ids-pub.bsz-bw.de/oai yes 5852 +3294 {"name": "ipu repository", "language": "en"} [{"name": "\u74b0\u592a\u5e73\u6d0b\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ipu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-03-25 16:59:29 ["health and medicine", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "international pacific university", "alternativeName": "", "country": "jp", "url": "http://www.iwate-pu.ac.jp/", "identifier": [{"identifier": "https://ror.org/054dx8336", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ipu.repo.nii.ac.jp/oai yes 434 727 +3297 {"name": "repository belarusian state medical university", "language": "en"} [{"acronym": "repository bsmu"}] http://rep.bsmu.by/ institutional [] 2022-01-12 15:35:46 2015-03-26 12:41:49 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "belarusian state medical university", "alternativeName": "", "country": "by", "url": "http://www.bsmu.by/", "identifier": [{"identifier": "https://ror.org/00p8b0t20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3313 {"name": "thai breastfeeding center digital repository", "language": "en"} [] http://dlibrary.thaibreastfeeding.org/ institutional [] 2022-01-12 15:35:46 2015-04-08 11:17:54 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "thai breastfeeding center foundation", "alternativeName": "", "country": "th", "url": "http://www.thaibreastfeeding.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 246 +3293 {"name": "research repository portal of medilam", "language": "en"} [] http://eprints.medilam.ac.ir/ institutional [] 2022-01-12 15:35:46 2015-03-25 16:43:15 ["health and medicine"] ["journal_articles"] [{"name": "ilam university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.medilam.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.medilam.ac.ir/cgi/oai2 yes 932 3163 +3287 {"name": "kochi rehabilitation institute repository (japanese)", "language": "en"} [{"name": "\u9ad8\u77e5\u30ea\u30cf\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://kochireha.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:45 2015-03-24 16:27:53 ["health and medicine"] ["journal_articles"] [{"name": "kochi rehabilitation institute repository", "alternativeName": "", "country": "jp", "url": "http://www.kochi-reha.ac.jp/", "identifier": [{"identifier": "https://ror.org/03g57y740", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kochireha.repo.nii.ac.jp/oai yes 158 +3320 {"name": "mpnu repository", "language": "en"} [{"name": "\u5bae\u5d0e\u770c\u7acb\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mpu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-09 11:25:34 ["health and medicine"] ["journal_articles"] [{"name": "miyazaki prefectural nursing university", "alternativeName": "", "country": "jp", "url": "http://www.mpu.ac.jp/", "identifier": [{"identifier": "https://ror.org/04vh2cv64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mpu.repo.nii.ac.jp/oai yes 393 471 +3304 {"name": "digital library jose maria vargas vila", "language": "en"} [] http://www2.lib.unc.edu/wilson/rbc/vargasvila/index.html institutional [] 2022-01-12 15:35:46 2015-03-31 16:46:00 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 218506 +3273 {"name": "sirnak university institutional repository", "language": "en"} [{"acronym": "dspace@\u015f\u0131rnak"}, {"name": "\u015f\u0131rnak \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@\u015f\u0131rnak"}] http://openaccess.sirnak.edu.tr/xmlui institutional [] 2022-01-12 15:35:45 2015-03-23 15:49:50 ["humanities", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "sirnak university", "alternativeName": "", "country": "tr", "url": "http://sirnak.edu.tr/yeni/index.php", "identifier": [{"identifier": "https://ror.org/01fcvkv23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.sirnak.edu.tr/oai/request yes 88 616 +3312 {"name": "moral center digital repository", "language": "en"} [] http://dl.moralcenter.or.th/ institutional [] 2022-01-12 15:35:46 2015-04-08 10:51:00 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "moral promotion center (public organization)", "alternativeName": "", "country": "th", "url": "http://www.moralcenter.or.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dl.moralcenter.or.th/oai/request yes 144 759 +3246 {"name": "presidencia de la republica. secretaria de derechos humanos para el pasado reciente - coleccion digital prensa", "language": "en"} [{"acronym": "presidency of the republic. human rights secretary for the recent past - press digital collection"}] http://prensa.sdh.gub.uy/greenstone/cgi-bin/library.cgi?site=localhost&a=p&p=about&c=prensa&l=es&w=utf-8 governmental [] 2022-01-12 15:35:44 2015-03-19 14:13:21 ["humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "presidencia de la republica", "alternativeName": "", "country": "uy", "url": "http://www.presidencia.gub.uy/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes 115102 +3303 {"name": "unc digital collections", "language": "en"} [] http://library.unc.edu/services/digitalcollections/ institutional [] 2022-01-12 15:35:46 2015-03-31 16:36:41 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of north carolina at chapel hill", "alternativeName": "", "country": "us", "url": "http://www.unc.edu/index.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 20000 +3254 {"name": "digital library of macedonia", "language": "en"} [] http://www.dlib.mk/ institutional [] 2022-01-12 15:35:44 2015-03-19 16:21:17 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "national and university library "st. clement of ohrid" - skopje", "alternativeName": "", "country": "mk", "url": "http://www.nubsk.edu.mk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 374 +3257 {"name": "biblioteca digital do desenvolvimento", "language": "en"} [] http://bibspi.planejamento.gov.br/ institutional [] 2022-01-12 15:35:45 2015-03-20 11:13:06 ["humanities"] ["unpub_reports_and_working_papers"] [{"name": "minist\u00e9rio do planejamento, or\u00e7amento e gest\u00e3o (mp) - secretaria de planejamento e investimentos estrat\u00e9gicos (spi)", "alternativeName": "", "country": "br", "url": "http://www.planejamento.gov.br/ministerio.asp?index=10", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 760 +3270 {"name": "fm repository", "language": "en"} [] http://elar.fizmat.tnpu.edu.ua/ institutional [] 2022-01-12 15:35:45 2015-03-23 12:40:22 ["mathematics"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "ternopil national pedagogical university v.hnatiuk", "alternativeName": "", "country": "ua", "url": "http://www.tnpu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 885 +3218 {"name": "bouira university digital space", "language": "en"} [] http://dspace.univ-bouira.dz:8080/jspui/ institutional [] 2022-01-12 15:35:44 2015-03-17 10:09:49 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "bouira university", "alternativeName": "", "country": "dz", "url": "http://www.univ-bouira.dz/", "identifier": [{"identifier": "https://ror.org/00vsxg936", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univ-bouira.dz:8080/oai/request yes 0 3007 +3226 {"name": "real-r", "language": "en"} [] http://real-r.mtak.hu/ institutional [] 2022-01-12 15:35:44 2015-03-17 13:51:34 ["science", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://real-r.mtak.hu/policies.html", "type": "metadata"}] {"name": "eprints", "version": ""} http://real-r.mtak.hu/cgi/oai2 yes 837 +3231 {"name": "repository of rzeszow university", "language": "en"} [] http://repozytorium.ur.edu.pl/ institutional [] 2022-01-12 15:35:44 2015-03-18 12:24:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of rzeszow", "alternativeName": "", "country": "pl", "url": "http://www.ur.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repozytorium.ur.edu.pl/page/regulamin", "type": "data"}, {"policy_url": "http://repozytorium.ur.edu.pl/page/regulamin", "type": "content"}, {"policy_url": "http://repozytorium.ur.edu.pl/page/regulamin", "type": "submission"}, {"policy_url": "http://repozytorium.ur.edu.pl/page/regulamin", "type": "preservation"}] {"name": "dspace", "version": ""} yes 3093 +3310 {"name": "ohiolink electronic theses and dissertations", "language": "en"} [] https://etd.ohiolink.edu/ap/1 aggregating [] 2022-01-12 15:35:46 2015-04-02 14:01:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ohio library and information network", "alternativeName": "ohiolink", "country": "us", "url": "http://www.ohiolink.edu/", "identifier": [{"identifier": "https://ror.org/05bqcch62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 88990 +3291 {"name": "open access library (repository)", "language": "en"} [] http://www.oalib.com/ aggregating [] 2022-01-12 15:35:46 2015-03-25 16:02:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "open access library inc.", "alternativeName": "", "country": "cn", "url": "http://www.oalib.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 4236970 +3290 {"name": "pdxscholar", "language": "en"} [] http://pdxscholar.library.pdx.edu/ institutional [] 2022-01-12 15:35:46 2015-03-25 15:40:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "portland state university", "alternativeName": "", "country": "us", "url": "http://www.pdx.edu/", "identifier": [{"identifier": "https://ror.org/00yn2fy02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://pdxscholar.library.pdx.edu/do/oai/ yes 20357 +3245 {"name": "repozytorium wiedzy politechniki wroc\u0142awskiej", "language": "pl"} [{"name": "knowledge repository of the wroclaw university of technology", "language": "en"}] http://repozytorium.pwr.edu.pl/ institutional [] 2022-01-12 15:35:44 2015-03-19 13:53:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "wroclaw university of technology", "alternativeName": "politechnika wroc\u0142awska", "country": "pl", "url": "http://www.pwr.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repository.pwr.edu.pl/oai/oai.aspx yes 0 709 +3224 {"name": "u\u015fak university institutional repository", "language": "en"} [{"acronym": "dspace@u\u015fak"}, {"name": "u\u015fak \u00fcniversitesi a\u00e7\u0131k eri\u015fim ar\u015fivi", "language": "tr"}, {"acronym": "dspace@u\u015fak"}] http://acikerisim.usak.edu.tr institutional [] 2022-01-12 15:35:44 2015-03-17 13:02:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "u\u015fak university", "alternativeName": "", "country": "tr", "url": "https://www.usak.edu.tr", "identifier": [{"identifier": "https://ror.org/05es91y67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.usak.edu.tr/oai/request yes +3256 {"name": "elte digital institutional repository (edit)", "language": "en"} [{"acronym": "elte digit\u00e1lis int\u00e9zm\u00e9nyi tud\u00e1st\u00e1r"}] https://edit.elte.hu/ institutional [] 2022-01-12 15:35:45 2015-03-20 10:06:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "e\u00f6tv\u00f6s lor\u00e1nd university", "alternativeName": "", "country": "hu", "url": "http://www.elte.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://edit.elte.hu/oai/request yes 35598 +3302 {"name": "dspace sinop university repository", "language": "en"} [{"acronym": "sinop \u00fcniversitesi a\u00e7\u0131k er\u015fim ve kurumsal ar\u015fivi"}] http://acikerisim.sinop.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:46 2015-03-31 10:06:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "sinop university", "alternativeName": "", "country": "tr", "url": "http://www2.sinop.edu.tr//anasayfa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.sinop.edu.tr:8080/oai/request yes 293 1286 +3239 {"name": "iau scholary archive database", "language": "en"} [] http://acikarsiv.aydin.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:44 2015-03-18 16:17:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "i\u0307stanbul aydin university", "alternativeName": "", "country": "tr", "url": "http://www.aydin.edu.tr/index_eng.asp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1045 +3289 {"name": "lakehead university knowledge commons", "language": "en"} [] http://lurepository.lakeheadu.ca/ institutional [] 2022-01-12 15:35:45 2015-03-25 15:14:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "lakehead university", "alternativeName": "", "country": "ca", "url": "https://www.lakeheadu.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://thesis.lakeheadu.ca:8080/oai/request yes 543 3048 +3240 {"name": "dspace.funai.edu.ng", "language": "en"} [] http://dspace.funai.edu.ng/ institutional [] 2022-01-12 15:35:44 2015-03-18 16:36:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "federal university ndufu-alike ikwo", "alternativeName": "", "country": "ng", "url": "http://www.funai.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 256 +3255 {"name": "repositorio digital ucv piura", "language": "en"} [] http://www.piuraheraldo.net/ institutional [] 2022-01-12 15:35:44 2015-03-19 16:35:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad c\u00e9sar vallejo filial piura", "alternativeName": "", "country": "pe", "url": "http://www.ucv.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 24 +3235 {"name": "repositorio institucional de la universidad de la laguna", "language": "en"} [] http://riull.ull.es/ institutional [] 2022-01-12 15:35:44 2015-03-18 15:09:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universidad de la laguna", "alternativeName": "", "country": "es", "url": "http://www.ull.es/", "identifier": [{"identifier": "https://ror.org/01r9z8p25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://riull.ull.es/oai/request yes 7393 +3233 {"name": "reposit\u00f3rio institucional da universidade federal de ouro preto", "language": "en"} [] http://www.repositorio.ufop.br/ institutional [] 2022-01-12 15:35:44 2015-03-18 14:38:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade federal de ouro preto", "alternativeName": "", "country": "br", "url": "http://www.ufop.br/", "identifier": [{"identifier": "https://ror.org/056s65p46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8243 +3295 {"name": "arthra", "language": "en"} [] https://www.arthra.ugal.ro/ institutional [] 2022-01-12 15:35:46 2015-03-25 17:08:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of galati", "alternativeName": "", "country": "ro", "url": "http://www.ugal.ro/", "identifier": [{"identifier": "https://ror.org/052sta926", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3559 +3250 {"name": "dspace@baskent", "language": "en"} [] http://dspace.baskent.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:44 2015-03-19 15:28:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "baskent universitiy", "alternativeName": "", "country": "tr", "url": "http://www.baskent.edu.tr/english/", "identifier": [{"identifier": "https://ror.org/02v9bqx10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 911 +3314 {"name": "institutional repository of satya wacana christian university", "language": "en"} [] http://repository.uksw.edu/ institutional [] 2022-01-12 15:35:46 2015-04-08 11:40:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "satya wacana christian university", "alternativeName": "", "country": "id", "url": "http://www.uksw.edu/", "identifier": [{"identifier": "https://ror.org/009nnre75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uksw.edu/oai/request?verb=identify yes 14091 +3236 {"name": "kherson state university repository", "language": "en"} [] http://ekhsuir.kspu.edu/ institutional [] 2022-01-12 15:35:44 2015-03-18 15:18:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kherson state university", "alternativeName": "", "country": "ua", "url": "http://www.kspu.edu/", "identifier": [{"identifier": "https://ror.org/04cbe1f31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ekhsuir.kspu.edu/oai/request?verb=identify yes 6644 +3252 {"name": "kyushu sangyo university library institutional repository", "language": "en"} [{"name": "\u4e5d\u5dde\u7523\u696d\u5927\u5b66\u56f3\u66f8\u9928\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.kyusan-u.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:44 2015-03-19 15:48:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kyushu sangyo university", "alternativeName": "", "country": "jp", "url": "http://www.kyusan-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kyusan-u.ac.jp/dspace-oai/request yes 7106 +3230 {"name": "repositorio digital upao", "language": "en"} [] http://repositorio.upao.edu.pe/ institutional [] 2022-01-12 15:35:44 2015-03-17 15:10:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad privada antenor orrego", "alternativeName": "", "country": "pe", "url": "http://www.upao.edu.pe/paginaindex.asp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upao.edu.pe/oai/request?verb=identify yes 5 5721 +3263 {"name": "savoirs udes", "language": "en"} [] http://savoirs.usherbrooke.ca/ institutional [] 2022-01-12 15:35:45 2015-03-20 16:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de sherbrooke", "alternativeName": "", "country": "ca", "url": "http://www.usherbrooke.ca/", "identifier": [{"identifier": "https://ror.org/00kybxq39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://savoirs.usherbrooke.ca/oai/request yes 11239 +3228 {"name": "dspace@artvincoruh", "language": "en"} [] https://openaccess.artvin.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:44 2015-03-17 14:22:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "artvin \u00e7oruh \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.artvin.edu.tr/", "identifier": [{"identifier": "https://ror.org/02wcpmn42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.artvin.edu.tr/oai/request yes 77 1808 +3284 {"name": "repositorio cudi", "language": "en"} [] http://videoteca.cudi.edu.mx/ institutional [] 2022-01-12 15:35:45 2015-03-24 14:17:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "corporaci\u00f3n universitaria para el desarrollo de internet", "alternativeName": "", "country": "mx", "url": "http://www.cudi.edu.mx", "identifier": [{"identifier": "https://ror.org/015mpw953", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://videoteca.cudi.edu.mx/oai/request yes 1175 +3300 {"name": "abu dspace", "language": "en"} [] http://kubanni.abu.edu.ng/jspui institutional [] 2022-01-12 15:35:46 2015-03-27 16:41:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ahmadu bello university", "alternativeName": "", "country": "ng", "url": "http://www.abu.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8449 +3311 {"name": "akdeniz university repository", "language": "en"} [{"name": "acikerisim akdeniz universitesi", "language": "tr"}] http://acikerisim.akdeniz.edu.tr institutional [] 2022-01-12 15:35:46 2015-04-08 10:28:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "akdeniz university", "alternativeName": "", "country": "tr", "url": "http://www.akdeniz.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.akdeniz.edu.tr/oai/driver yes 1 +3260 {"name": "biblioteca digital da univates - bdu", "language": "en"} [] http://www.univates.br/bdu/ institutional [] 2022-01-12 15:35:45 2015-03-20 15:02:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro universit\u00e1rio univates", "alternativeName": "", "country": "br", "url": "http://www.univates.br/", "identifier": [{"identifier": "https://ror.org/025fy2n80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.univates.br/bdu_oai/request yes 1072 2356 +3283 {"name": "south eastern kenya university digital repository", "language": "en"} [] http://repository.seku.ac.ke/ institutional [] 2022-01-12 15:35:45 2015-03-24 13:55:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "south eastern kenya university", "alternativeName": "", "country": "ke", "url": "http://www.seku.ac.ke/", "identifier": [{"identifier": "https://ror.org/02w403504", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3764 +3271 {"name": "uilspace", "language": "en"} [] https://uilspace.unilorin.edu.ng institutional [] 2022-01-12 15:35:45 2015-03-23 14:02:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of llorin", "alternativeName": "", "country": "ng", "url": "http://www.unilorin.edu.ng", "identifier": [{"identifier": "https://ror.org/032kdwk38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uilspace.unilorin.edu.ng/oai/request yes 734 +3282 {"name": "biblioteca digital aecid", "language": "en"} [] http://bibliotecadigital.aecid.es/bibliodig/es/estaticos/contenido.cmd institutional [] 2022-01-12 15:35:45 2015-03-24 13:45:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "agencia espa\u00f1ola de cooperaci\u00f3n internacional para el desarrollo", "alternativeName": "aecid", "country": "es", "url": "http://www.aecid.es/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.aecid.es/bibliodig/i18n/oai/oai.cmd yes 1717 16314 +3292 {"name": "r-libre", "language": "en"} [] http://r-libre.teluq.ca/ institutional [] 2022-01-12 15:35:46 2015-03-25 16:14:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "t\u00e9l\u00e9-universit\u00e9 (universit\u00e9 du qu\u00e9bec)", "alternativeName": "teluq", "country": "ca", "url": "http://teluq.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://r-libre.teluq.ca/cgi/oai2 yes 921 +3219 {"name": "cognitio", "language": "en"} [] http://depot-e.uqtr.ca institutional [] 2022-01-12 15:35:44 2015-03-17 10:28:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e9 du qu\u00e9bec \u00e0 trois\u2010rivi\u00e8res", "alternativeName": "", "country": "ca", "url": "http://www.uqtr.ca", "identifier": [{"identifier": "https://ror.org/02xrw9r68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://depot-e.uqtr.ca/cgi/oai2 yes 5516 5939 +3279 {"name": "digital repository universitas negeri medan", "language": "en"} [] http://digilib.unimed.ac.id/ institutional [] 2022-01-12 15:35:45 2015-03-24 12:08:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universitas negeri medan, state university of medan", "alternativeName": "", "country": "id", "url": "http://unimed.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.unimed.ac.id/oai.php yes 0 26653 +3319 {"name": "national research database of zimbabwe", "language": "en"} [] http://researchdatabase.ac.zw/ institutional [] 2022-01-12 15:35:46 2015-04-09 10:46:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "research council of zimbabwe", "alternativeName": "", "country": "zw", "url": "http://www.rcz.ac.zw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchdatabase.ac.zw/policies.html", "type": "metadata"}, {"policy_url": "http://researchdatabase.ac.zw/policies.html", "type": "data"}, {"policy_url": "http://researchdatabase.ac.zw/policies.html", "type": "content"}, {"policy_url": "http://researchdatabase.ac.zw/policies.html", "type": "submission"}, {"policy_url": "http://researchdatabase.ac.zw/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchdatabase.ac.zw/cgi/oai2 yes 5893 +3249 {"name": "tufts digital library", "language": "en"} [] http://dl.tufts.edu/ institutional [] 2022-01-12 15:35:44 2015-03-19 15:11:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "tufts university", "alternativeName": "", "country": "us", "url": "http://www.tufts.edu/", "identifier": [{"identifier": "https://ror.org/05wvpxv85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 5248 +3217 {"name": "digital repository of the university of tuzla (phaidra)", "language": "en"} [] https://phaidra.untz.ba/ institutional [] 2022-01-12 15:35:44 2015-03-16 16:52:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of tuzla", "alternativeName": "", "country": "ba", "url": "http://untz.ba/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 15 +3285 {"name": "hal-paris 13", "language": "en"} [] https://hal-univ-paris13.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:45 2015-03-24 15:22:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universit\u00e9 paris 13", "alternativeName": "", "country": "fr", "url": "http://www.univ-paris13.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-paris13 yes 2691 16441 +3227 {"name": "hal - universit\u00e9 grenoble alpes", "language": "en"} [] http://hal.univ-grenoble-alpes.fr/ institutional [] 2022-01-12 15:35:44 2015-03-17 14:09:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "universit\u00e9 grenoble alpes", "alternativeName": "", "country": "fr", "url": "http://www.univ-grenoble-alpes.fr/universite-grenoble-alpes--577556.htm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/saga yes 8550 182084 +3274 {"name": "acta acad\u00e9mica", "language": "en"} [] http://www.aacademica.com/ aggregating [] 2022-01-12 15:35:45 2015-03-23 16:29:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "acta acad\u00e9mica", "alternativeName": "", "country": "ar", "url": "http://www.aacademica.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.aacademica.com/oaiserver.do yes 0 7167 +3259 {"name": "western cedar", "language": "en"} [] http://cedar.wwu.edu/ institutional [] 2022-01-12 15:35:45 2015-03-20 14:31:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "western washington university", "alternativeName": "", "country": "us", "url": "http://www.wwu.edu/", "identifier": [{"identifier": "https://ror.org/05wn7r715", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1397 +3286 {"name": "la salle university digital commons", "language": "en"} [] http://digitalcommons.lasalle.edu/ institutional [] 2022-01-12 15:35:45 2015-03-24 15:33:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "la salle university", "alternativeName": "", "country": "us", "url": "http://www.lasalle.edu/", "identifier": [{"identifier": "https://ror.org/02beve479", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.lasalle.edu/do/oai yes 3600 +3243 {"name": "vcu scholars compass", "language": "en"} [] http://scholarscompass.vcu.edu/ institutional [] 2022-01-12 15:35:44 2015-03-19 10:26:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "virginia commonwealth university", "alternativeName": "", "country": "us", "url": "http://www.vcu.edu/", "identifier": [{"identifier": "https://ror.org/02nkdxk79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarscompass.vcu.edu/do/oai/ yes 4942 +3253 {"name": "univerzitn\u00ed repozit\u00e1\u0159 masarykovy univerzity", "language": "en"} [] http://is.muni.cz/repozitar/ institutional [] 2022-01-12 15:35:44 2015-03-19 16:02:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "masarykova univerzita", "alternativeName": "", "country": "cz", "url": "http://www.muni.cz/", "identifier": [{"identifier": "https://ror.org/02j46qs45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://is.muni.cz/repozitar/oai/ yes 1199 3097 +3301 {"name": "digital university library saxony-anhalt", "language": "en"} [] http://edoc2.bibliothek.uni-halle.de/ aggregating [] 2022-01-12 15:35:46 2015-03-30 16:30:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "martin luther universitat halle wittenberg", "alternativeName": "", "country": "de", "url": "http://uni-halle.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://edoc2.bibliothek.uni-halle.de/oai/ yes 1789 2977 +3258 {"name": "center of academic publications", "language": "en"} [] http://www.univ-soukahras.dz/en/publication institutional [] 2022-01-12 15:35:45 2015-03-20 11:50:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of souk ahras", "alternativeName": "", "country": "dz", "url": "http://www.univ-soukahras.dz/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 290 +3317 {"name": "okayama prefectural university epublications repository", "language": "en"} [{"name": "\u5ca1\u5c71\u770c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oka-pu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-09 10:03:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "okayama prefectural university", "alternativeName": "", "country": "jp", "url": "http://www.oka-pu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oka-pu.repo.nii.ac.jp/oai yes 1605 2076 +3223 {"name": "nagoya sangyo university & nagoya management junior college repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u7523\u696d\u5927\u5b66\u30fb\u540d\u53e4\u5c4b\u7d4c\u55b6\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://meisandai.repo.nii.ac.jp institutional [] 2022-01-12 15:35:44 2015-03-17 12:49:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagoya sangyo university", "alternativeName": "", "country": "jp", "url": "http://www.lib.nagoya-su.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meisandai.repo.nii.ac.jp/oai yes 197 532 +3275 {"name": "repository of educational research and practice in niigata", "language": "en"} [{"name": "\u65b0\u6f5f\u770c\u6559\u80b2\u5b9f\u8df5\u7814\u7a76\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://edu-niigata.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:45 2015-03-24 10:11:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "joetsu university of education / niigata prefectural board of education", "alternativeName": "", "country": "jp", "url": "http://www.juen.ac.jp/", "identifier": [{"identifier": "https://ror.org/02xjxgz53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://edu-niigata.repo.nii.ac.jp/oai yes 2170 +3222 {"name": "rikkyo university repository (japanese)", "language": "en"} [{"name": "\u7acb\u6559\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea \uff08\u7acb\u6559roots\uff09", "language": "ja"}] https://rikkyo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-17 12:34:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "rikkyo university", "alternativeName": "", "country": "jp", "url": "http://www.rikkyo.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rikkyo.repo.nii.ac.jp/oai yes 13543 +3298 {"name": "mount royal open access repository", "language": "en"} [{"acronym": "mroar"}] https://mru.arcabc.ca institutional [] 2022-01-12 15:35:46 2015-03-26 12:58:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "mount royal university", "alternativeName": "", "country": "ca", "url": "http://mtroyal.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://mru.arcabc.ca/about", "type": "metadata"}, {"policy_url": "https://library.mtroyal.ca/mruir/policies", "type": "data"}, {"policy_url": "https://mru.arcabc.ca/about", "type": "content"}, {"policy_url": "https://mru.arcabc.ca/about", "type": "submission"}, {"policy_url": "https://mru.arcabc.ca/about", "type": "preservation"}] {"name": "islandora", "version": ""} https://mru.arcabc.ca/oai2 yes 234 +3265 {"name": "korea maritime & ocean university repository", "language": "en"} [{"acronym": "kmou"}, {"name": "\ud55c\uad6d\ud574\uc591\ub300\ud559\uad50", "language": "ko"}] http://repository.kmou.ac.kr/ institutional [] 2022-01-12 15:35:45 2015-03-23 10:14:44 ["science", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "korea maritime and ocean university", "alternativeName": "", "country": "kr", "url": "http://english.kmou.ac.kr/english/2013/main/main.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kmou.ac.kr/oai/request yes 171 7422 +3267 {"name": "\ud3ec\ud56d\uacf5\uacfc\ub300\ud559\uad50", "language": "en"} [{"acronym": "oasis (postech)"}] http://oasis.postech.ac.kr/ institutional [] 2022-01-12 15:35:45 2015-03-23 11:20:43 ["science", "technology"] ["theses_and_dissertations"] [{"name": "pohang university of science and technology", "alternativeName": "", "country": "kr", "url": "http://www.postech.ac.kr/", "identifier": [{"identifier": "https://ror.org/04xysgw12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oasis.postech.ac.kr/oai/request yes 1498 96001 +3225 {"name": "p-arch", "language": "en"} [] http://www.p-arch.it/ institutional [] 2022-01-12 15:35:44 2015-03-17 13:39:21 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "patents", "other_special_item_types"] [{"name": "sardegna ricerche", "alternativeName": "", "country": "it", "url": "http://www.sardegnaricerche.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.p-arch.it/oai/request yes 645 966 +3248 {"name": "repositorio digital del ipen", "language": "en"} [] http://dspace.ipen.gob.pe/ institutional [] 2022-01-12 15:35:44 2015-03-19 15:01:04 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "instituto peruano de energ\u00eda nuclear", "alternativeName": "", "country": "pe", "url": "http://www.ipen.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 620 +3281 {"name": "krishikosh", "language": "en"} [{"acronym": "\u0915\u0943\u0937\u093f\u0915\u094b\u0937"}] http://krishikosh.egranth.ac.in/ aggregating [] 2022-01-12 15:35:45 2015-03-24 13:20:13 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "indian council for agricultural research", "alternativeName": "icar", "country": "in", "url": "http://www.icar.org.in/", "identifier": [{"identifier": "https://ror.org/04fw54a43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 130760 +3234 {"name": "institutional repository of mykolayiv national agrarian university", "language": "en"} [] http://dspace.mnau.edu.ua/jspui/ institutional [] 2022-01-12 15:35:44 2015-03-18 14:58:50 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "mykolayiv national agrarian university", "alternativeName": "", "country": "ua", "url": "http://www.mnau.edu.ua/", "identifier": [{"identifier": "https://ror.org/03zjvmt75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.mnau.edu.ua/jspui//perl/oai2 yes 3935 +3299 {"name": "faculty of science repository", "language": "en"} [{"acronym": "repozitorij prirodoslovno-matemati\u010dkog fakulteta"}] http://digre.pmf.unizg.hr/ institutional [] 2022-01-12 15:35:46 2015-03-27 10:59:46 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digre.pmf.unizg.hr/policies.html", "type": "metadata"}, {"policy_url": "http://digre.pmf.unizg.hr/policies.html", "type": "data"}, {"policy_url": "http://digre.pmf.unizg.hr/policies.html", "type": "content"}, {"policy_url": "http://digre.pmf.unizg.hr/policies.html", "type": "submission"}, {"policy_url": "http://digre.pmf.unizg.hr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes 5034 +3241 {"name": "publis cologne - repository of the institute of information science cologne university of applied science", "language": "en"} [{"name": "publis cologne - repositorium des instituts f\u00fcr informationswissenschaft der fachhochschule k\u00f6ln", "language": "de"}] https://publiscologne.th-koeln.de/home institutional [] 2022-01-12 15:35:44 2015-03-18 16:57:23 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "technology arts sciences", "alternativeName": "", "country": "de", "url": "https://www.th-koeln.de/en/homepage_26.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://publiscologne.th-koeln.de/oai yes 0 646 +3277 {"name": "biblioteca digital da mem\u00f3ria cient\u00edfica do inpe", "language": "en"} [] http://bibdigital.sid.inpe.br/ disciplinary [] 2022-01-12 15:35:45 2015-03-24 11:17:21 ["science"] ["conference_and_workshop_papers", "theses_and_dissertations", "datasets"] [{"name": "instituto nacional de pesquisas espaciais", "alternativeName": "", "country": "br", "url": "http://www.inpe.br/", "identifier": [{"identifier": "https://ror.org/04xbn6x09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bibdigital.sid.inpe.br/col/iconet.com.br/banon/2003/11.21.21.08/doc/oai.cgi yes 61346 +3308 {"name": "the avalon project documents in law, history and diplomacy", "language": "en"} [] http://avalon.law.yale.edu/ institutional [] 2022-01-12 15:35:46 2015-04-01 15:13:51 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "yale law school", "alternativeName": "", "country": "us", "url": "http://www.law.yale.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3307 {"name": "documents collection centre", "language": "en"} [] http://documents.law.yale.edu/ institutional [] 2022-01-12 15:35:46 2015-04-01 15:06:00 ["social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "yale law school", "alternativeName": "", "country": "us", "url": "http://www.law.yale.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3229 {"name": "opub", "language": "en"} [] http://opub.dsw.edu.pl/ institutional [] 2022-01-12 15:35:44 2015-03-17 14:50:48 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of lower silesia", "alternativeName": "", "country": "pl", "url": "http://dsw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://opub.dsw.edu.pl/oai/request?verb=identify yes 282 +3305 {"name": "inflibnets institutional repository", "language": "en"} [] http://ir.inflibnet.ac.in/ institutional [] 2022-01-12 15:35:46 2015-04-01 12:18:19 ["social sciences"] ["conference_and_workshop_papers"] [{"name": "information and library network center", "alternativeName": "inflibnet", "country": "in", "url": "http://www.inflibnet.ac.in/", "identifier": [{"identifier": "https://ror.org/05mhhk279", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1777 +3266 {"name": "kotra", "language": "en"} [] http://openknowledge.kotra.or.kr/ institutional [] 2022-01-12 15:35:45 2015-03-23 10:40:52 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "korea trade-investment promotion agency", "alternativeName": "", "country": "kr", "url": "http://english.kotra.or.kr/kh/index.html/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openknowledge.kotra.or.kr/oai/request yes 7 8891 +3238 {"name": "hiroshima associated repository portal", "language": "en"} [{"name": "\u5e83\u5cf6\u770c\u5927\u5b66\u5171\u540c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://harp.lib.hiroshima-u.ac.jp/ institutional [] 2022-01-12 15:35:44 2015-03-18 16:08:03 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "hiroshima university of economics", "alternativeName": "", "country": "jp", "url": "http://www.hue.ac.jp/", "identifier": [{"identifier": "https://ror.org/027b58k10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://harp.lib.hiroshima-u.ac.jp/hue/oai/request yes 1465 1650 +3316 {"name": "\u00b2dok", "language": "en"} [] https://intr2dok.vifa-recht.de/ institutional [] 2022-01-12 15:35:46 2015-04-08 12:26:22 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "fachinformationsdienst f\u00fcr internationale und interdisziplin\u00e4re rechtsforschung", "alternativeName": "", "country": "de", "url": "http://vifa-recht.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} http://intr2dok.vifa-recht.de/servlets/oaidataprovider yes 3433 +3306 {"name": "yale law school legal scholarship repository", "language": "en"} [{"acronym": "eyls"}] http://digitalcommons.law.yale.edu/ institutional [] 2022-01-12 15:35:46 2015-04-01 14:44:00 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "yale law school", "alternativeName": "", "country": "us", "url": "http://www.law.yale.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.law.yale.edu/do/oai/ yes 17527 17845 +3276 {"name": "aceresearch", "language": "en"} [] http://research.acer.edu.au/ disciplinary [] 2022-01-12 15:35:45 2015-03-24 10:49:03 ["social sciences"] ["journal_articles"] [{"name": "australian council for educational research", "alternativeName": "", "country": "au", "url": "http://www.acer.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://research.acer.edu.au/do/oai/ yes 1043 3833 +3269 {"name": "wako university repository", "language": "en"} [{"name": "\u548c\u5149\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://wako.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:45 2015-03-23 12:12:16 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "wako university", "alternativeName": "", "country": "jp", "url": "http://www.wako.ac.jp/", "identifier": [{"identifier": "https://ror.org/05n7t1e46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://wako.repo.nii.ac.jp/oai yes 1130 +3309 {"name": "surugadai university repository for academic resources", "language": "en"} [{"name": "\u99ff\u6cb3\u53f0\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://surugadai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-02 10:04:17 ["social sciences"] ["journal_articles"] [{"name": "surugadai university", "alternativeName": "", "country": "jp", "url": "http://www.surugadai.ac.jp/", "identifier": [{"identifier": "https://ror.org/00c4wmy51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://surugadai.repo.nii.ac.jp/oai yes 463 2304 +3288 {"name": "electronic institutional repository of zaporizhzhya national", "language": "en"} [{"acronym": "eirzntu"}] http://eir.zntu.edu.ua/ institutional [] 2022-01-12 15:35:45 2015-03-25 14:22:39 ["technology"] ["journal_articles"] [{"name": "zaporizhzhia national technical university", "alternativeName": "", "country": "ua", "url": "http://www.zntu.edu.ua/", "identifier": [{"identifier": "https://ror.org/03aph1990", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eir.zntu.edu.ua/oai/request yes 2724 +3318 {"name": "nagaoka university of technology institutional repository", "language": "en"} [{"name": "\u9577\u5ca1\u6280\u8853\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagaokaut.repo.nii.ac.jp institutional [] 2022-01-12 15:35:46 2015-04-09 10:16:16 ["technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nagaoka university of technology", "alternativeName": "", "country": "jp", "url": "http://www.nagaokaut.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagaokaut.repo.nii.ac.jp/oai yes 734 +3221 {"name": "saitama institute of technology academic collections", "language": "en"} [{"name": "\u57fc\u7389\u5de5\u696d\u5927\u5b66\u5b66\u8853\u7814\u7a76\u6210\u679c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://sit.repo.nii.ac.jp institutional [] 2022-01-12 15:35:44 2015-03-17 12:19:12 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "saitama institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.sit.ac.jp/", "identifier": [{"identifier": "https://ror.org/01pkeax38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sit.repo.nii.ac.jp/oai yes 251 327 +3296 {"name": "scu digital collections", "language": "en"} [] http://content.scu.edu/ institutional [] 2022-01-12 15:35:46 2015-03-26 12:16:25 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "santa clara university", "alternativeName": "", "country": "us", "url": "http://www.scu.edu/", "identifier": [{"identifier": "https://ror.org/03ypqe447", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://content.scu.edu:80/oai/oai.php yes 0 30135 +3280 {"name": "esc publication", "language": "en"} [] https://eprints.esc.cam.ac.uk/ disciplinary [] 2022-01-12 15:35:45 2015-03-24 12:21:51 ["science"] ["journal_articles", "other_special_item_types"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "http://www.cam.ac.uk/", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.esc.cam.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.esc.cam.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.esc.cam.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.esc.cam.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.esc.cam.ac.uk/cgi/oai2 yes 966 4222 +3251 {"name": "otwarte repozytorium nauk historycznych lectorium", "language": "en"} [{"acronym": "open repository of historical sciences"}] http://lectorium.edu.pl/ disciplinary [] 2022-01-12 15:35:44 2015-03-19 15:38:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of warsaw", "alternativeName": "", "country": "pl", "url": "http://www.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://lectorium.edu.pl/policies/", "type": "data"}, {"policy_url": "http://lectorium.edu.pl/about-the-repository/", "type": "content"}, {"policy_url": "http://lectorium.edu.pl/policies/", "type": "submission"}, {"policy_url": "http://lectorium.edu.pl/policies/", "type": "preservation"}] {"name": "dspace", "version": ""} http://repozytorium.lectorium.edu.pl/oai/request yes 151 428 +3220 {"name": "ludovika digital knowledge repository and archive (ludita)", "language": "en"} [{"acronym": "ludovika digit \u00e1lis tud\u00e1st\u00e1r \u00e9s arch\u00edvum"}] https://ludita.uni-nke.hu/ludita institutional [] 2022-01-12 15:35:44 2015-03-17 10:48:22 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "national university of public service", "alternativeName": "", "country": "hu", "url": "http://uni-nke.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ludita.uni-nke.hu/opendoar-policy", "type": "metadata"}, {"policy_url": "http://ludita.uni-nke.hu/opendoar-policy", "type": "data"}, {"policy_url": "http://ludita.uni-nke.hu/opendoar-policy", "type": "content"}, {"policy_url": "http://ludita.uni-nke.hu/opendoar-policy", "type": "submission"}, {"policy_url": "http://ludita.uni-nke.hu/opendoar-policy", "type": "preservation"}] {"name": "dspace", "version": ""} http://ludita.uni-nke.hu/oai/request yes 22 4610 +3262 {"name": "cgiar library", "language": "en"} [] http://library.cgiar.org/ institutional [] 2022-01-12 15:35:45 2015-03-20 15:53:13 ["science"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "cgiar consortium", "alternativeName": "", "country": "fr", "url": "http://www.cgiar.org/", "identifier": [{"identifier": "https://ror.org/04c4bm785", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.cgiar.org/legal/", "type": "metadata"}, {"policy_url": "http://www.cgiar.org/legal/", "type": "data"}, {"policy_url": "http://www.cgiar.org/legal/", "type": "content"}, {"policy_url": "http://www.cgiar.org/legal/", "type": "submission"}] {"name": "dspace", "version": ""} https://library.cgiar.org/oai/request yes 0 4343 +3232 {"name": "tzibal naah", "language": "en"} [] http://www.tzibalnaah.unah.edu.hn/ institutional [] 2022-01-12 15:35:44 2015-03-18 13:19:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de honduras - unah", "alternativeName": "", "country": "hn", "url": "http://www.unah.edu.hn/", "identifier": [{"identifier": "https://ror.org/03xyve152", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.tzibalnaah.unah.edu.hn/page/politicas", "type": "metadata"}, {"policy_url": "http://www.tzibalnaah.unah.edu.hn/page/politicas", "type": "data"}, {"policy_url": "http://www.tzibalnaah.unah.edu.hn/page/politicas", "type": "content"}, {"policy_url": "http://www.tzibalnaah.unah.edu.hn/page/politicas", "type": "submission"}] {"name": "dspace", "version": ""} http://www.tzibalnaah.unah.edu.hn:8080/oai/request yes 0 2772 +3272 {"name": "dep\u00f3sito de investigaci\u00f3n universidad de sevilla", "language": "es"} [{"acronym": "idus"}] https://idus.us.es institutional [] 2022-01-12 15:35:45 2015-03-23 14:49:27 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of seville", "alternativeName": "", "country": "es", "url": "http://www.us.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://idus.us.es/xmlui/page/politica", "type": "metadata"}, {"policy_url": "https://idus.us.es/xmlui/page/politica", "type": "data"}, {"policy_url": "https://idus.us.es/xmlui/page/politica", "type": "content"}, {"policy_url": "https://idus.us.es/xmlui/page/politica", "type": "submission"}] {"name": "dspace", "version": ""} https://idus.us.es/oai/request yes 41413 89499 +3261 {"name": "falmouth university research repository (furr)", "language": "en"} [] http://repository.falmouth.ac.uk/ institutional [] 2022-01-12 15:35:45 2015-03-20 15:27:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "falmouth university", "alternativeName": "", "country": "gb", "url": "http://www.falmouth.ac.uk/", "identifier": [{"identifier": "https://ror.org/022gstf70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.falmouth.ac.uk/repository/policies", "type": "metadata"}, {"policy_url": "http://www.falmouth.ac.uk/repository/policies", "type": "data"}, {"policy_url": "http://www.falmouth.ac.uk/repository/policies", "type": "content"}, {"policy_url": "http://www.falmouth.ac.uk/repository/policies", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.falmouth.ac.uk/cgi/oai2 yes 730 2397 +3278 {"name": "chapman university digital commons", "language": "en"} [] http://digitalcommons.chapman.edu/ institutional [] 2022-01-12 15:35:45 2015-03-24 11:40:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "chapman university", "alternativeName": "", "country": "us", "url": "http://www.chapman.edu/", "identifier": [{"identifier": "https://ror.org/0452jzg20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.chapman.edu/submissionpolicies.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://digitalcommons.chapman.edu/do/oai/ yes 9658 29986 +3392 {"name": "digital library of the faculty of arts, masaryk university", "language": "en"} [] https://digilib.phil.muni.cz/ institutional [] 2022-01-12 15:35:47 2015-06-18 10:22:02 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "faculty of arts, masaryk university", "alternativeName": "", "country": "cz", "url": "http://www.phil.muni.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digilib.phil.muni.cz/oai/request yes 0 31648 +3374 {"name": "real-ms", "language": "en"} [] http://real-ms.mtak.hu/ institutional [] 2022-01-12 15:35:47 2015-06-03 13:31:32 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "library and information centre, hungarian academy of sciences", "alternativeName": "", "country": "hu", "url": "http://www.konyvtar.mta.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://real-ms.mtak.hu/cgi/oai2 yes 21181 23977 +3418 {"name": "hzsk repository", "language": "en"} [] https://corpora.uni-hamburg.de/repository institutional [] 2022-01-12 15:35:47 2015-07-08 15:09:58 ["arts", "humanities"] ["other_special_item_types"] [{"name": "hamburger zentrum f\u00fcr sprachkorpora, universit\u00e4t hamburg", "alternativeName": "", "country": "de", "url": "https://corpora.uni-hamburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://corpora.uni-hamburg.de:8080/oai/provider yes 1 1 +3338 {"name": "detroit public library digital collections", "language": "en"} [] http://digitalcollections.detroitpubliclibrary.org/ institutional [] 2022-01-12 15:35:46 2015-04-15 14:06:27 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "detroit public library", "alternativeName": "", "country": "us", "url": "http://www.detroit.lib.mi.us/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes 66536 +3386 {"name": "university archives", "language": "en"} [] http://cdm16005.contentdm.oclc.org/cdm/ institutional [] 2022-01-12 15:35:47 2015-06-10 14:30:16 ["health and medicine"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "uniformed services university of the health sciences", "alternativeName": "", "country": "us", "url": "https://www.usuhs.edu/", "identifier": [{"identifier": "https://ror.org/04r3kq386", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 3777 +3328 {"name": "laospace", "language": "en"} [] http://laospace.org/ institutional [] 2022-01-12 15:35:46 2015-04-13 13:51:53 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of health sciences, vientiane", "alternativeName": "", "country": "la", "url": "http://uhs.edu.la/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 572 +3413 {"name": "tacaids digital repository", "language": "en"} [] http://library.tacaids.go.tz institutional [] 2022-01-12 15:35:47 2015-07-08 13:42:56 ["health and medicine"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "tanzania commission for aids", "alternativeName": "tacaids", "country": "tz", "url": "http://www.tacaids.go.tz/", "identifier": [{"identifier": "https://ror.org/02rw00q54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 92 +3333 {"name": "qazvin university of medical sciences repository", "language": "en"} [] http://eprints.qums.ac.ir/ institutional [] 2022-01-12 15:35:46 2015-04-14 15:02:29 ["health and medicine"] ["journal_articles"] [{"name": "qazvin university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.qums.ac.ir/", "identifier": [{"identifier": "https://ror.org/04sexa105", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.qums.ac.ir/cgi/oai2 yes 7205 8896 +3402 {"name": "health sciences university of hokkaido academic repository", "language": "en"} [{"name": "\u5317\u6d77\u9053\u533b\u7642\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://hsuh.repo.nii.ac.jp institutional [] 2022-01-12 15:35:47 2015-07-06 14:50:00 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "health sciences university of hokkaido", "alternativeName": "", "country": "jp", "url": "http://www.hoku-iryo-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04tqcn816", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hsuh.repo.nii.ac.jp/oai yes 3502 +3381 {"name": "tokyo ariake university of medical and health sciences academic repository", "language": "en"} [{"name": "\u6771\u4eac\u6709\u660e\u533b\u7642\u5927\u5b66\u3000\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tau.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:47 2015-06-10 12:26:45 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "tokyo ariake university of medical and health sciences", "alternativeName": "", "country": "jp", "url": "http://www.tau.ac.jp/", "identifier": [{"identifier": "https://ror.org/0373a6k33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tau.repo.nii.ac.jp/oai yes 85 118 +3344 {"name": "kawasaki university of medical welfare institutional repository", "language": "en"} [{"name": "\u5ddd\u5d0e\u533b\u7642\u798f\u7949\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwmw.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-22 14:33:30 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kawasaki university of medical welfare", "alternativeName": "", "country": "jp", "url": "http://www.kawasaki-m.ac.jp/mw/", "identifier": [{"identifier": "https://ror.org/03s2gs602", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwmw.repo.nii.ac.jp/oai yes 2968 13453 +3395 {"name": "repositorio institucional grade", "language": "en"} [{"acronym": "repositorio grade"}] http://repositorio.grade.org.pe/ institutional [] 2022-01-12 15:35:47 2015-06-18 11:54:23 ["humanities", "arts", "science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "grupo de an\u00e1lisis para el desarrollo", "alternativeName": "", "country": "pe", "url": "http://www.grade.org.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.grade.org.pe/oai/request yes 331 521 +3347 {"name": "digital library of the \u201clucian blaga\u201d central university library cluj", "language": "en"} [] http://dspace.bcucluj.ro/ institutional [] 2022-01-12 15:35:46 2015-04-29 12:12:40 ["humanities", "arts"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": ""lucian blaga" central university library", "alternativeName": "", "country": "ro", "url": "http://www.bcucluj.ro/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bcucluj.ro/oai/request yes 2304 42832 +3345 {"name": "arctic council - open access archive", "language": "en"} [] https://oaarchive.arctic-council.org/ institutional [] 2022-01-12 15:35:46 2015-04-22 14:49:00 ["humanities", "science", "arts"] ["unpub_reports_and_working_papers"] [{"name": "arctic council", "alternativeName": "", "country": "no", "url": "http://www.arctic-council.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://oaarchive.arctic-council.org yes 0 329088 +3335 {"name": "first nations digital document source", "language": "en"} [] http://gsdl.ubcic.bc.ca/ disciplinary [] 2022-01-12 15:35:46 2015-04-14 16:09:07 ["humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "union of bc indian chiefs", "alternativeName": "", "country": "ca", "url": "http://www.ubcic.bc.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3384 {"name": "biblioteca digital de artesan\u00edas de colombia", "language": "en"} [] http://repositorio.artesaniasdecolombia.com.co/ institutional [] 2022-01-12 15:35:47 2015-06-10 13:40:49 ["humanities", "technology"] ["unpub_reports_and_working_papers"] [{"name": "artesan\u00edas de colombia", "alternativeName": "", "country": "co", "url": "http://www.artesaniasdecolombia.com.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.artesaniasdecolombia.com.co/oai/request yes 3275 +3417 {"name": "hoa-rec&n digital repository", "language": "en"} [] http://197.156.70.106/hoarec institutional [] 2022-01-12 15:35:47 2015-07-08 15:04:18 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "horn of africa regional environment centre and network (hoa-rec&n), a.a.u", "alternativeName": "", "country": "et", "url": "http://www.hoarec.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://197.156.70.106/oai yes 0 0 +3356 {"name": "scioteca", "language": "en"} [] http://scioteca.caf.com/ institutional [] 2022-01-12 15:35:47 2015-05-06 14:30:51 ["humanities"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "caf \u2013 banco de desarrollo de am\u00e9rica latina", "alternativeName": "", "country": "ve", "url": "http://www.caf.com/", "identifier": [{"identifier": "https://ror.org/04mh6t995", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 968 +3420 {"name": "vitela: repositorios institucional de la pontificia universidad javeriana", "language": "en"} [] http://vitela.javerianacali.edu.co/ institutional [] 2022-01-12 15:35:47 2015-07-14 16:03:55 ["humanities"] ["other_special_item_types"] [{"name": "pontificia universidad javeriana cali", "alternativeName": "", "country": "co", "url": "http://www.javerianacali.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://vitela.javerianacali.edu.co/oai/request?verb=identify yes 3691 +3399 {"name": "hertie school research repository", "language": "en"} [{"acronym": "hsrr"}] https://opus4.kobv.de/opus4-hsog/home institutional [] 2022-01-12 15:35:47 2015-06-26 13:58:48 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hertie school of governance", "alternativeName": "", "country": "de", "url": "http://www.hertie-school.org/home/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-hsog/oai yes 229 2791 +3343 {"name": "karatina university institutional repository", "language": "en"} [] https://karuspace.karu.ac.ke/ institutional [] 2022-01-12 15:35:46 2015-04-22 13:52:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "karatina university", "alternativeName": "", "country": "ke", "url": "http://www.karu.ac.ke/", "identifier": [{"identifier": "https://ror.org/04bm15q02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://karuspace.karu.ac.ke/handle/20.500.12092/2097", "type": "metadata"}] {"name": "dspace", "version": ""} https://karuspace.karu.ac.ke/oai/request yes 334 +3359 {"name": "furman university scholar exchange (fuse)", "language": "en"} [] http://scholarexchange.furman.edu/ institutional [] 2022-01-12 15:35:47 2015-05-13 14:05:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "furman university", "alternativeName": "", "country": "us", "url": "http://www.furman.edu/pages/default.aspx", "identifier": [{"identifier": "https://ror.org/04ytb9n23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholarexchange.furman.edu/lib-records/1/", "type": "content"}] {"name": "other", "version": ""} yes 681 +3389 {"name": "repository of the czech academy of sciences", "language": "en"} [{"acronym": "asep"}] https://asep.lib.cas.cz/arl-cav/en/expanded-search/ institutional [] 2022-01-12 15:35:47 2015-06-10 15:10:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "academy of sciences library", "alternativeName": "", "country": "cz", "url": "http://www.lib.cas.cz/en/", "identifier": [{"identifier": "https://ror.org/028sgmw18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.library.sk/arl-cav/en/repository-rules/", "type": "data"}, {"policy_url": "http://www.library.sk/arl-cav/en/repository-rules/", "type": "content"}] {"name": "other", "version": ""} yes 278015 +3321 {"name": "ncsu technical reports repository", "language": "en"} [] http://repository.lib.ncsu.edu/dr/handle/1840.4/1 institutional [] 2022-01-12 15:35:46 2015-04-09 12:42:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "north carolina state university", "alternativeName": "ncsu", "country": "us", "url": "http://www.ncsu.edu/", "identifier": [{"identifier": "https://ror.org/04tj63d06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 8306 +3340 {"name": "tennessee historical and regional collections", "language": "en"} [] http://digital.lib.utk.edu/index.php?gid=4 institutional [] 2022-01-12 15:35:46 2015-04-16 10:55:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of tennessee", "alternativeName": "", "country": "us", "url": "http://www.utk.edu/", "identifier": [{"identifier": "https://ror.org/020f3ap87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3346 {"name": "dicle university", "language": "en"} [] http://acikerisim.dicle.edu.tr/xmlui institutional [] 2022-01-12 15:35:46 2015-04-22 15:00:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "dicle university", "alternativeName": "", "country": "tr", "url": "http://www.dicle.edu.tr/", "identifier": [{"identifier": "https://ror.org/0257dtg16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.dicle.edu.tr/kutuphane-ve-dokumantasyon-daire-baskanligi-acik-erisim-politikasi yes 0 843 +3410 {"name": "erucu: electronic repository of the ukrainian catholic university", "language": "en"} [] http://er.ucu.edu.ua/ institutional [] 2022-01-12 15:35:47 2015-07-08 12:43:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "ukrainian catholic university", "alternativeName": "ucu", "country": "ua", "url": "http://www.ucu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 840 +3352 {"name": "mzumbe university scholar repository", "language": "en"} [] http://scholar.mzumbe.ac.tz/ institutional [] 2022-01-12 15:35:47 2015-05-06 12:56:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "mzumbe university", "alternativeName": "", "country": "tz", "url": "http://web.mzumbe.ac.tz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1737 +3372 {"name": "portal do conhecimento", "language": "en"} [] http://www.portaldoconhecimento.gov.cv/ governmental [] 2022-01-12 15:35:47 2015-06-03 12:38:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "ministerio do ensino superior ciencia e inovacao", "alternativeName": "", "country": "cv", "url": "http://www.mesci.gov.cv/", "identifier": [{"identifier": "https://ror.org/03k3wrz84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.portaldoconhecimento.gov.cv/oai/request yes 2636 3321 +3414 {"name": "suza repository", "language": "en"} [] http://repository.suza.ac.tz:8080/xmlui/ institutional [] 2022-01-12 15:35:47 2015-07-08 13:56:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the state university of zanzibar (suza)", "alternativeName": "", "country": "tz", "url": "http://www.suza.ac.tz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 71 +3375 {"name": "seikei university repository", "language": "en"} [{"name": "\u6210\u8e4a\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.seikei.ac.jp/ institutional [] 2022-01-12 15:35:47 2015-06-03 13:40:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "seikei university repository", "alternativeName": "", "country": "jp", "url": "http://www.seikei.ac.jp/university/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seikei.ac.jp/dspace-oai/request yes 2 1137 +3394 {"name": "engsuir", "language": "en"} [] http://lib.ndu.edu.ua/dspace/ institutional [] 2022-01-12 15:35:47 2015-06-18 11:44:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "nizhyn gogol state university", "alternativeName": "", "country": "ua", "url": "http://ndu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lib.ndu.edu.ua:8080/oai/request yes 0 601 +3373 {"name": "dataspace", "language": "en"} [] http://dataspace.princeton.edu/ institutional [] 2022-01-12 15:35:47 2015-06-03 13:16:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "princeton university", "alternativeName": "", "country": "us", "url": "http://www.princeton.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dataspace.princeton.edu/oai yes 0 74255 +3387 {"name": "lauda", "language": "en"} [] http://lauda.ulapland.fi/ institutional [] 2022-01-12 15:35:47 2015-06-10 14:43:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of lapland", "alternativeName": "", "country": "fi", "url": "http://www.ulapland.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lauda.ulapland.fi/oai/request yes 3726 +3329 {"name": "musashi university institutional repository", "language": "en"} [] http://repository.musashi.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:35:46 2015-04-13 14:22:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "musashi university", "alternativeName": "", "country": "jp", "url": "http://www.musashi.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1637 +3322 {"name": "ncsu institutional repository", "language": "en"} [] http://repository.lib.ncsu.edu/ir/handle/1840.16/1 institutional [] 2022-01-12 15:35:46 2015-04-09 13:26:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "north carolina state university", "alternativeName": "ncsu", "country": "us", "url": "http://www.ncsu.edu/", "identifier": [{"identifier": "https://ror.org/04tj63d06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 35261 +3400 {"name": "openaccess@iku", "language": "en"} [] http://acikerisim.iku.edu.tr institutional [] 2022-01-12 15:35:47 2015-06-29 14:38:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "istanbul kultur university", "alternativeName": "", "country": "tr", "url": "http://www.iku.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.iku.edu.tr/oai yes 1634 +3349 {"name": "ri-unapec. repositorio institucional de la universidad apec", "language": "en"} [] http://repositorio.unapec.edu.do/ institutional [] 2022-01-12 15:35:47 2015-04-29 14:18:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad apec", "alternativeName": "", "country": "do", "url": "http://www.unapec.edu.do/", "identifier": [{"identifier": "https://ror.org/05kkct931", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unapec.edu.do/oai/request?verb=identify yes 465 +3388 {"name": "repositorio digital de la unefm", "language": "en"} [] http://redi.unefm.edu.ve/ institutional [] 2022-01-12 15:35:47 2015-06-10 14:53:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "software"] [{"name": "universidad nacional experimental francisco de miranda", "alternativeName": "", "country": "ve", "url": "http://unefm.edu.ve/", "identifier": [{"identifier": "https://ror.org/02ybb5327", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8 +3360 {"name": "tecnalia publications", "language": "en"} [] http://dsp.tecnalia.com/ institutional [] 2022-01-12 15:35:47 2015-05-13 14:29:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "fundaci\u00f3n tecnalia - research & innovation", "alternativeName": "", "country": "es", "url": "http://www.tecnalia.com/es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dsp.tecnalia.com/oai/request yes 521 +3358 {"name": "the library of national taiwan normal univ.", "language": "en"} [] http://www.lib.ntnu.edu.tw/english/index.jsp institutional [] 2022-01-12 15:35:47 2015-05-13 13:46:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "national taiwan normal university", "alternativeName": "\u570b\u7acb\u81fa\u7063\u5e2b\u7bc4\u5927\u5b78", "country": "tw", "url": "http://www2.ntnu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 44760 +3377 {"name": "institutional repository of russian state vocational pedagogical university", "language": "en"} [] http://elar.rsvpu.ru/ institutional [] 2022-01-12 15:35:47 2015-06-03 14:40:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "russian state vocational pedagogical university", "alternativeName": "", "country": "ru", "url": "http://www.rsvpu.ru/", "identifier": [{"identifier": "https://ror.org/01ewxsd47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.rsvpu.ru/oai/request yes 24957 +3401 {"name": "isik university academic open access", "language": "en"} [] http://acikerisim.isikun.edu.tr/ institutional [] 2022-01-12 15:35:47 2015-07-06 14:31:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "isik university", "alternativeName": "", "country": "tr", "url": "http://www.isikun.edu.tr/en", "identifier": [{"identifier": "https://ror.org/02j8k6t75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.isikun.edu.tr/oai/request yes 241 2898 +3376 {"name": "kisii university institutional repository", "language": "en"} [] http://library.kisiiuniversity.ac.ke:8080/xmlui institutional [] 2022-01-12 15:35:47 2015-06-03 14:04:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "kisii university", "alternativeName": "", "country": "ke", "url": "http://www.kisiiuniversity.ac.ke/", "identifier": [{"identifier": "https://ror.org/053stv828", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 171 +3412 {"name": "orenburg state university research repository", "language": "en"} [] http://elib.osu.ru/ institutional [] 2022-01-12 15:35:47 2015-07-08 13:19:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "orenburg state university", "alternativeName": "", "country": "ru", "url": "http://osu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6191 +3385 {"name": "biblioteca digital c\u00e1mara de comercio de bogot\u00e1", "language": "en"} [] http://bibliotecadigital.ccb.org.co/ institutional [] 2022-01-12 15:35:47 2015-06-10 13:55:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "c\u00e1mara de comercio de bogot\u00e1", "alternativeName": "", "country": "co", "url": "http://www.ccb.org.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecadigital.ccb.org.co/oai2/request yes 6021 +3415 {"name": "ciencipca", "language": "en"} [] http://ciencipca.ipca.pt/ institutional [] 2022-01-12 15:35:47 2015-07-08 14:11:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto polit\u00e9cnico do c\u00e1vado e do ave", "alternativeName": "", "country": "pt", "url": "http://www.ipca.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ciencipca.ipca.pt/oaiextended/request yes 1 1823 +3370 {"name": "institutional repository of guangxi university for nationalities", "language": "en"} [] http://ir.gxun.edu.cn/ institutional [] 2022-01-12 15:35:47 2015-05-20 13:52:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "guangxi university for nationalities(\u5e7f\u897f\u6c11\u65cf\u5927\u5b66),china", "alternativeName": "", "country": "cn", "url": "http://www.gxun.edu.cn/", "identifier": [{"identifier": "https://ror.org/0495efn48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3937 +3326 {"name": "istanbul bilim university", "language": "en"} [] http://acikerisim.istanbulbilim.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:46 2015-04-13 12:23:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "istanbul bilm university", "alternativeName": "", "country": "tr", "url": "http://www.istanbulbilim.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.istanbulbilim.edu.tr:8080/oai/request yes 0 4102 +3391 {"name": "mehmet akif ersoy \u00fcniversitesi a\u00e7\u0131k ar\u015fiv sistemi", "language": "tr"} [] https://acikerisim.mehmetakif.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:47 2015-06-18 10:10:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "burdur mehmet akif ersoy \u00e3\u0153niveristesi", "alternativeName": "", "country": "tr", "url": "https://www.mehmetakif.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 221 +3369 {"name": "asian development bank open access repository", "language": "en"} [] https://openaccess.adb.org/ institutional [] 2022-01-12 15:35:47 2015-05-20 13:19:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "asian development bank", "alternativeName": "", "country": "ph", "url": "http://www.adb.org/", "identifier": [{"identifier": "https://ror.org/036bcm133", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://openaccess.adb.org/termsofuse", "type": "metadata"}, {"policy_url": "https://openaccess.adb.org/termsofuse", "type": "data"}] {"name": "dspace", "version": ""} yes 4634 +3363 {"name": "irihs - institutional repository at ihs", "language": "en"} [] https://irihs.ihs.ac.at institutional [] 2022-01-12 15:35:47 2015-05-13 14:52:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "institute for advanced studies", "alternativeName": "ihs", "country": "at", "url": "https://www.ihs.ac.at", "identifier": [{"identifier": "https://ror.org/05ag62t55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://irihs.ihs.ac.at/cgi/oai2 yes 2096 5308 +3325 {"name": "soe repository of publications", "language": "en"} [] http://publicatio.nyme.hu/ institutional [] 2022-01-12 15:35:46 2015-04-13 11:59:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of sopron", "alternativeName": "", "country": "hu", "url": "http://www.nyme.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publicatio.nyme.hu/cgi/oai2 yes 1441 +3380 {"name": "universitas islam negeri sultan syarif kasim riau repository", "language": "en"} [] http://repository.uin-suska.ac.id/ institutional [] 2022-01-12 15:35:47 2015-06-10 12:03:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects"] [{"name": "state islamic university syarif kasim sultan", "alternativeName": "universitas islam negeri sultan syarif kasim riau", "country": "id", "url": "http://uin-suska.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 11624 +3332 {"name": "hiroshima associated repository portal", "language": "en"} [{"name": "\u5e83\u5cf6\u770c\u5927\u5b66\u5171\u540c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://harp.lib.hiroshima-u.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-14 14:27:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "prefectural university of hiroshima", "alternativeName": "", "country": "jp", "url": "http://www.pu-hiroshima.ac.jp/soshiki/47/01-en.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://harp.lib.hiroshima-u.ac.jp/pu-hiroshima/oai/request yes 337 1380 +3351 {"name": "repositori institucional universitat rovira i virgili", "language": "en"} [{"acronym": "urv"}] http://repositori.urv.cat/fourrepopublic institutional [] 2022-01-12 15:35:47 2015-05-06 12:46:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universitat rovira i virgili", "alternativeName": "", "country": "es", "url": "http://www.urv.cat/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://appserver.urv.cat/fedora/oai yes 0 9301 +3368 {"name": "ktuepubl (repository of kaunas university of technology)", "language": "en"} [] https://epubl.ktu.edu/ institutional [] 2022-01-12 15:35:47 2015-05-20 13:04:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kaunas university of technology", "alternativeName": "", "country": "lt", "url": "http://www.ktu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://epubl.ktu.edu/oai/ yes 3427 6638 +3379 {"name": "hal descartes", "language": "en"} [] https://hal-descartes.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:47 2015-06-03 15:56:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e9 paris descartes", "alternativeName": "paris5", "country": "fr", "url": "http://www.univ-paris5.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/descartes/ yes 4149 2652184 +3393 {"name": "hal-ens-lyon", "language": "en"} [] https://hal-ens-lyon.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:47 2015-06-18 11:24:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ecole normale sup\u00e9rieure de lyon", "alternativeName": "", "country": "fr", "url": "http://www.ens-lyon.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ens-lyon yes 7283 68836 +3365 {"name": "cuny academic works", "language": "en"} [] http://academicworks.cuny.edu/ institutional [] 2022-01-12 15:35:47 2015-05-13 15:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "city university of new york", "alternativeName": "", "country": "us", "url": "http://cuny.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1714 +3378 {"name": "digitalcommons @ kennesaw state university", "language": "en"} [] https://digitalcommons.kennesaw.edu institutional [] 2022-01-12 15:35:47 2015-06-03 14:57:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "kennesaw state university", "alternativeName": "", "country": "us", "url": "http://www.kennesaw.edu", "identifier": [{"identifier": "https://ror.org/00jeqjx33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.kennesaw.edu/do/oai yes 4116 13955 +3361 {"name": "jku epub", "language": "en"} [] http://epub.jku.at/ institutional [] 2022-01-12 15:35:47 2015-05-13 14:35:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "johannes kepler universit\u00e4t linz", "alternativeName": "", "country": "at", "url": "http://www.jku.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://epub.jku.at/oai/ yes 9 3818 +3339 {"name": "publication database of the vienna university of technology", "language": "en"} [] http://publik.tuwien.ac.at/start.php?lang=2 institutional [] 2022-01-12 15:35:46 2015-04-16 09:59:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "vienna university of technology (tu wien)", "alternativeName": "", "country": "at", "url": "http://www.tuwien.ac.at/en", "identifier": [{"identifier": "https://ror.org/04d836q62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3331 {"name": "nagasaki international university academic institutional repository", "language": "en"} [{"acronym": "niu-air"}, {"name": "\u9577\u5d0e\u56fd\u969b\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://niu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-14 14:17:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nagasaki international university", "alternativeName": "", "country": "jp", "url": "http://www.niu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://niu.repo.nii.ac.jp/oai yes 506 1316 +3330 {"name": "toin university of yokohama academic repository", "language": "en"} [{"name": "\u6850\u852d\u6a2a\u6d5c\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-14 13:38:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "toin university of yokohama", "alternativeName": "", "country": "jp", "url": "http://toin.ac.jp/univ/", "identifier": [{"identifier": "https://ror.org/020pjpv69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toin.repo.nii.ac.jp/oai yes 371 419 +3382 {"name": "seisen university academic repository", "language": "en"} [{"name": "\u8056\u6cc9\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seisen-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:47 2015-06-10 12:38:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "seisen university", "alternativeName": "", "country": "jp", "url": "http://www.seisen.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seisen-u.repo.nii.ac.jp/oai yes 776 970 +3348 {"name": "kurume university institutional repository", "language": "en"} [{"name": "\u4e45\u7559\u7c73\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kurume.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-29 13:38:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kurume university", "alternativeName": "", "country": "jp", "url": "http://www.kurume-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kurume.repo.nii.ac.jp/oai yes 39 400 +3337 {"name": "nagoya gakuin university repository (japanese)", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ngu.repo.nii.ac.jp/?lang=english institutional [] 2022-01-12 15:35:46 2015-04-15 12:39:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nagoya gakuin university", "alternativeName": "ngu", "country": "jp", "url": "http://www.ngu.jp/", "identifier": [{"identifier": "https://ror.org/03gsvvm69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ngu.repo.nii.ac.jp/oai yes 1101 1323 +3323 {"name": "nayoro city university institutional repository", "language": "en"} [{"name": "\u540d\u5bc4\u5e02\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nayoro.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-10 10:24:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nayoro city university", "alternativeName": "", "country": "jp", "url": "http://www.nayoro.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nayoro.repo.nii.ac.jp/oai yes 90 +3342 {"name": "national institute of polar research repository", "language": "en"} [{"name": "\u56fd\u7acb\u6975\u5730\u7814\u7a76\u6240\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nipr.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-22 12:59:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "national institute of polar research", "alternativeName": "nipr", "country": "jp", "url": "http://www.nipr.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nipr.repo.nii.ac.jp/oai yes 14302 15915 +3334 {"name": "daido university repository", "language": "en"} [{"name": "\u5927\u540c\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://daido.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:46 2015-04-14 15:24:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "daido university", "alternativeName": "", "country": "jp", "url": "http://www.daido-it.ac.jp/", "identifier": [{"identifier": "https://ror.org/02cntp233", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://daido.repo.nii.ac.jp/oai yes 80 +3364 {"name": "juelich shared electronic resources", "language": "en"} [{"acronym": "juser"}] http://juser.fz-juelich.de/ institutional [] 2022-01-12 15:35:47 2015-05-13 15:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "forschungszentrum j\u00fclich gmbh", "alternativeName": "", "country": "de", "url": "https://www.fz-juelich.de", "identifier": [{"identifier": "https://ror.org/02nv7yv05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://juser.fz-juelich.de/oai2d yes 9835 263792 +3397 {"name": "repository of vinnytsia national technical university", "language": "en"} [{"acronym": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0432\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0433\u043e \u0442\u0435\u0445\u043d\u0456\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443"}] http://ir.lib.vntu.edu.ua/ institutional [] 2022-01-12 15:35:47 2015-06-23 11:13:08 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "vinnytsia national technical university", "alternativeName": "", "country": "ua", "url": "http://vntu.edu.ua/en.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.vntu.edu.ua/oai/request yes 19686 +3407 {"name": "central environmental authority repository", "language": "en"} [{"acronym": "cea e-repository"}] http://cea.nsf.ac.lk/ institutional [] 2022-01-12 15:35:47 2015-07-07 12:36:08 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "central environmental authority (cea), sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.cea.lk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cea.nsf.ac.lk/oai/request yes 120 20201 +3406 {"name": "coconut research institute repository", "language": "en"} [{"acronym": "cri repository"}] http://cri.nsf.ac.lk/ institutional [] 2022-01-12 15:35:47 2015-07-07 12:25:41 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "coconut research institute (cri), sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.cri.gov.lk/", "identifier": [{"identifier": "https://ror.org/0098ak319", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cri.nsf.ac.lk/oai/request yes 888 2258 +3405 {"name": "hector kobbekaduwa agrarian research and training institute repository", "language": "en"} [{"acronym": "harti"}] http://harti.nsf.ac.lk/ institutional [] 2022-01-12 15:35:47 2015-07-07 12:14:40 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "hector kobbekaduwa agrarian research and training institute(harti) sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.harti.gov.lk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1687 +3404 {"name": "rubber research institute repository", "language": "en"} [{"acronym": "rri repository"}] http://rri.nsf.ac.lk/ institutional [] 2022-01-12 15:35:47 2015-07-07 10:42:35 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "rubber research institute,(rri) sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.rrisl.lk/", "identifier": [{"identifier": "https://ror.org/059kt3178", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1327 +3366 {"name": "sokoine university of agriculture institutional repository", "language": "en"} [] http://www.suaire.sua.ac.tz institutional [] 2022-01-12 15:35:47 2015-05-20 12:20:52 ["science"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "sokoine university of agriculture", "alternativeName": "", "country": "tz", "url": "http://www.suanet.ac.tz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.suaire.sua.ac.tz/oai/request yes 0 3125 +3371 {"name": "nilu brage", "language": "en"} [] https://nilu.brage.unit.no institutional [] 2022-01-12 15:35:47 2015-05-20 14:11:29 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "nilu \u2013 norwegian institute for air research", "alternativeName": "", "country": "no", "url": "http://www.nilu.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nilu.brage.unit.no/nilu-oai/request yes 61704 94293 +3419 {"name": "jukuri", "language": "en"} [] http://jukuri.luke.fi/ institutional [] 2022-01-12 15:35:47 2015-07-14 15:38:21 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "natural resources institute finland (luke)", "alternativeName": "", "country": "fi", "url": "http://www.luke.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://jukuri.luke.fi/oai/request yes 9506 92344 +3403 {"name": "tea research institute repository", "language": "en"} [] http://tri.nsf.ac.lk/ institutional [] 2022-01-12 15:35:47 2015-07-06 15:02:51 ["science"] ["journal_articles"] [{"name": "tea research institute,(tri) sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.tri.lk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1988 +3354 {"name": "digital repository of the institute of radiophysics and electronics, armenian national academy of sciences", "language": "en"} [] http://irphe.asj-oa.am/ institutional [] 2022-01-12 15:35:47 2015-05-06 13:32:44 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute of radiophysics and electronics, armenian national academy of sciences", "alternativeName": "", "country": "am", "url": "http://www.irphe.am/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 15 +3327 {"name": "eprints@moes:open access digital repository", "language": "en"} [] http://moeseprints.incois.gov.in/ institutional [] 2022-01-12 15:35:46 2015-04-13 12:36:53 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "ministry of earth sciences, government of india", "alternativeName": "", "country": "in", "url": "http://www.incois.gov.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 3118 +3408 {"name": "dokumentenserver klimawandel", "language": "en"} [] http://edoc.sub.uni-hamburg.de/klimawandel/ institutional [] 2022-01-12 15:35:47 2015-07-07 15:47:45 ["science"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "state and university library hamburg", "alternativeName": "", "country": "de", "url": "http://www.sub.uni-hamburg.de/", "identifier": [{"identifier": "https://ror.org/00pwcvj19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://edoc.sub.uni-hamburg.de/klimawandel/oai yes 409 +3357 {"name": "crti digital library", "language": "en"} [] http://library.crti.dz/ institutional [] 2022-01-12 15:35:47 2015-05-06 14:38:03 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "centre de recherche en technologies industrielles", "alternativeName": "crti", "country": "dz", "url": "http://www.crti.dz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1102 +3324 {"name": "projetos e disserta\u00e7\u00f5es em sistemas de informa\u00e7\u00e3o e gest\u00e3o do conhecimento", "language": "en"} [] http://www.fumec.br/revistas/index.php/sigc institutional [] 2022-01-12 15:35:46 2015-04-13 11:19:39 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidade fumec", "alternativeName": "", "country": "br", "url": "http://www.fumec.br/", "identifier": [{"identifier": "https://ror.org/013pajk64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.fumec.br/revistas/index.php/sigc/oai yes 277 +3390 {"name": "hybrid publishing consortium research repository", "language": "en"} [] https://research.consortium.io/ institutional [] 2022-01-12 15:35:47 2015-06-10 15:55:54 ["social sciences", "technology"] ["unpub_reports_and_working_papers", "software"] [{"name": "leuphana university of l\u00fcneburg", "alternativeName": "", "country": "de", "url": "http://www.leuphana.de/en/home.html", "identifier": [{"identifier": "https://ror.org/02w2y2t16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 8 +3350 {"name": "datorium", "language": "en"} [] https://data.gesis.org/sharing/#!home disciplinary [] 2022-01-12 15:35:47 2015-04-29 14:35:52 ["social sciences"] ["datasets"] [{"name": "leibniz institute for social sciences", "alternativeName": "gesis", "country": "de", "url": "http://www.gesis.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 74 +3416 {"name": "institutional repositary national state tax sevice university of ukraine", "language": "en"} [] http://ir.asta.edu.ua/jspui/ institutional [] 2022-01-12 15:35:47 2015-07-08 14:56:54 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "national state tax sevice university of ukraine", "alternativeName": "", "country": "ua", "url": "http://asta.edu.ua/", "identifier": [{"identifier": "https://ror.org/004ezwb23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3353 {"name": "tbmm k\u00fct\u00fcphanesi a\u00e7\u0131k eri\u015fim sistemi", "language": "en"} [] https://acikerisim.tbmm.gov.tr/ institutional [] 2022-01-12 15:35:47 2015-05-06 13:17:01 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "t\u00fcrkiye b\u00fcy\u00fck millet meclisi", "alternativeName": "", "country": "tr", "url": "http://www.tbmm.gov.tr/kutuphane/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.tbmm.gov.tr/oai/request yes 14 2419 +3383 {"name": "e knowledge center", "language": "en"} [] http://ekcenter.fdrindia.org/ institutional [] 2022-01-12 15:35:47 2015-06-10 12:57:45 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "foundation for democratic reforms", "alternativeName": "", "country": "in", "url": "http://www.fdrindia.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +3396 {"name": "the european jewish research archive", "language": "en"} [] http://archive.jpr.org.uk/ institutional [] 2022-01-12 15:35:47 2015-06-18 12:04:13 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute for jewish policy research", "alternativeName": "", "country": "gb", "url": "http://www.jpr.org.uk/", "identifier": [{"identifier": "https://ror.org/04j7q4722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 694 +3355 {"name": "miyagi university of education repository", "language": "en"} [{"name": "\u5bae\u57ce\u6559\u80b2\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mue.repo.nii.ac.jp institutional [] 2022-01-12 15:35:47 2015-05-06 14:16:54 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "miyagi university of education", "alternativeName": "", "country": "jp", "url": "http://www.miyakyo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mue.repo.nii.ac.jp/oai yes 432 +3411 {"name": "copelabs scientific commons", "language": "en"} [] http://siti2.ulusofona.pt:8085/xmlui/ institutional [] 2022-01-12 15:35:47 2015-07-08 12:58:40 ["technology", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade lus\u00f3fona", "alternativeName": "", "country": "pt", "url": "http://www.ulusofona.pt/", "identifier": [{"identifier": "https://ror.org/05xxfer42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://copelabs.ulusofona.pt/scicommons yes 0 586 +3398 {"name": "raiith", "language": "en"} [] http://raiith.iith.ac.in/ institutional [] 2022-01-12 15:35:47 2015-06-23 13:17:37 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "indian institute of technology hyderabad", "alternativeName": "", "country": "in", "url": "http://iith.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://raiith.iith.ac.in/cgi/oai2 yes 3822 +3362 {"name": "digital commons at framingham state university", "language": "en"} [] http://digitalcommons.framingham.edu/ institutional [] 2022-01-12 15:35:47 2015-05-13 14:41:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "framingham state university", "alternativeName": "", "country": "us", "url": "http://www.framingham.edu/", "identifier": [{"identifier": "https://ror.org/02mp2w060", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.framingham.edu/henry-whittemore-library/documents/rights-and-terms-of-use-for-material-posted-in-digital-commons-at-framingham-state-university.pdf", "type": "data"}, {"policy_url": "http://www.framingham.edu/henry-whittemore-library/documents/rights-and-terms-of-use-for-material-posted-in-digital-commons-at-framingham-state-university.pdf", "type": "submission"}] {"name": "other", "version": ""} http://digitalcommons.framingham.edu/do/oai/ yes 509 6999 +3341 {"name": "opus augsburg", "language": "en"} [] https://opus.bibliothek.uni-augsburg.de/opus4/home institutional [] 2022-01-12 15:35:46 2015-04-22 12:25:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e4t augsburg", "alternativeName": "", "country": "de", "url": "http://www.uni-augsburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opus.bibliothek.uni-augsburg.de/opus4/home/index/help", "type": "data"}, {"policy_url": "https://opus.bibliothek.uni-augsburg.de/opus4/home/index/help", "type": "content"}] {"name": "opus", "version": ""} http://opus.bibliothek.uni-augsburg.de/opus4/oai/ yes 3085 74342 +3367 {"name": "london met repository", "language": "en"} [] http://eprints.londonmet.ac.uk/ institutional [] 2022-01-12 15:35:47 2015-05-20 12:46:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "london metropolitan university", "alternativeName": "", "country": "gb", "url": "http://www.londonmet.ac.uk/", "identifier": [{"identifier": "https://ror.org/00ae33288", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.londonmet.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.londonmet.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://eprints.londonmet.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://eprints.londonmet.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://eprints.londonmet.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.londonmet.ac.uk/cgi/oai2 yes 4429 5192 +3336 {"name": "research archive of indian institute of technology hyderabad", "language": "en"} [{"acronym": "raiith"}] http://raiith.iith.ac.in/ institutional [] 2022-01-12 15:35:46 2015-04-15 12:12:56 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "indian institute of technology hyderabad", "alternativeName": "", "country": "in", "url": "http://iith.ac.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://raiith.iith.ac.in/policies.html", "type": "metadata"}, {"policy_url": "http://raiith.iith.ac.in/policies.html", "type": "data"}, {"policy_url": "http://raiith.iith.ac.in/policies.html", "type": "content"}, {"policy_url": "http://raiith.iith.ac.in/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://raiith.iith.ac.in/cgi/oai2 yes 1976 7141 +3409 {"name": "widya mandala catholic university surabaya repository", "language": "en"} [] http://repository.wima.ac.id/ institutional [] 2022-01-12 15:35:47 2015-07-08 12:12:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "widya mandala catholic univeristy surabaya", "alternativeName": "", "country": "id", "url": "http://www.wima.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.wima.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.wima.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.wima.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.wima.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.wima.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.wima.ac.id/cgi/oai2 yes 11950 14570 +3498 {"name": "conicet digital", "language": "en"} [] http://ri.conicet.gov.ar/ institutional [] 2022-01-12 15:35:49 2015-11-09 09:47:00 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles"] [{"name": "consejo nacional de investigaciones cient\u00edficas y t\u00e9cnicas", "alternativeName": "conicet", "country": "ar", "url": "http://www.conicet.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ri.conicet.gov.ar/oai/request yes 49500 +3502 {"name": "university of nigeria nsukka institutional repository", "language": "en"} [] http://www.repository.unn.edu.ng institutional [] 2022-01-12 15:35:49 2015-12-10 09:58:50 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of nigeria nsukka", "alternativeName": "", "country": "ng", "url": "http://www.unn.edu.ng/", "identifier": [{"identifier": "https://ror.org/01sn1yx84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repository.unn.edu.ng/oai yes 0 6464 +3520 {"name": "hal-universit\u00e9 de bretagne occidentale", "language": "en"} [] http://hal.univ-brest.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:48:15 ["arts", "humanities", "science", "mathematics", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "universit\u00e9 de bretagne occidentale", "alternativeName": "ubo", "country": "fr", "url": "http://www.univ-brest.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-brest yes 4347 48083 +3474 {"name": "publication server of helmholtz zentrum m\u00fcnchen", "language": "en"} [{"acronym": "push"}, {"name": "push - publication server of helmholtz zentrum m\u00fcnchen", "language": "en"}] http://push-zb.helmholtz-muenchen.de/ institutional [] 2022-01-12 15:35:48 2015-09-04 11:53:01 ["health and medicine", "science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "helmholtz zentrum m\u00fcnchen gmbh", "alternativeName": "", "country": "de", "url": "http://www.helmholtz-muenchen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://push-zb.helmholtz-muenchen.de/oai2/oai2.php yes 0 32560 +3428 {"name": "american college of healthcare sciences, theses and capstone projects", "language": "en"} [{"acronym": "achs, theses and capstone projects"}] https://www.achs.edu/achs-theses-capstone-projects/ institutional [] 2022-01-12 15:35:48 2015-07-21 10:20:48 ["health and medicine"] ["theses_and_dissertations"] [{"name": "american college of healthcare sciences", "alternativeName": "", "country": "us", "url": "https://www.achs.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 8 +3442 {"name": "sabzevar university of medical sciences electronic publications", "language": "en"} [] http://eprints.medsab.ac.ir/ institutional [] 2022-01-12 15:35:48 2015-07-29 11:29:59 ["health and medicine"] ["journal_articles"] [{"name": "sabzevar university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.medsab.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://eprints.medsab.ac.ir/cgi/oai2 yes 669 1610 +3452 {"name": "care - cclhd archive and research e-library", "language": "en"} [{"acronym": "cclhd"}] http://centralcoast.intersearch.com.au/jspui/community-list governmental [] 2022-01-12 15:35:48 2015-08-12 14:14:31 ["health and medicine"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central coast local health district", "alternativeName": "", "country": "au", "url": "http://www.cclhd.health.nsw.gov.au/", "identifier": [{"identifier": "https://ror.org/0423z3467", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3440 {"name": "heft repository", "language": "en"} [] http://www.repository.heartofengland.nhs.uk/ institutional [] 2022-01-12 15:35:48 2015-07-29 11:00:11 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "heart of england nhs foundation trust", "alternativeName": "", "country": "gb", "url": "http://www.heartofengland.nhs.uk/", "identifier": [{"identifier": "https://ror.org/041rme308", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.repository.heartofengland.nhs.uk/cgi/oai2 yes 285 4038 +3473 {"name": "cdv-upmc (ecole doctorale complexit\u00e9 du vivant - upmc)", "language": "en"} [] https://cdv-upmc.mysciencework.com/ institutional [] 2022-01-12 15:35:48 2015-09-04 11:06:13 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university pierre and marie curie", "alternativeName": "", "country": "fr", "url": "http://www.upmc.fr/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 174 +3472 {"name": "lbmcc repository (laboratoire de biologie mol\u00e9culaire et cellulaire du cancer)", "language": "en"} [] https://lbmcc.mysciencework.com/ disciplinary [] 2022-01-12 15:35:48 2015-09-04 10:48:08 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "lbmcc (laboratoire de biologie mol\u00e9culaire et cellulaire du cancer)", "alternativeName": "", "country": "lu", "url": "http://www.lbmcc.lu/home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 258 +3519 {"name": "hal-supelec", "language": "en"} [] https://hal-supelec.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:35:22 ["mathematics", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "supelec", "alternativeName": "", "country": "fr", "url": "http://www.supelec.fr/", "identifier": [{"identifier": "https://ror.org/00n7gwn90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/supelec yes 2614 35883 +3479 {"name": "sci-gaia open access repository", "language": "en"} [] http://oar.sci-gaia.eu/ institutional [] 2022-01-12 15:35:48 2015-09-16 11:03:13 ["science", "humanities"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "sci-gaia project", "alternativeName": "", "country": "it", "url": "http://www.sci-gaia.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://oar.sci-gaia.eu/oai2d yes 9 133 +3495 {"name": "rvc research online", "language": "en"} [] http://researchonline.rvc.ac.uk/ institutional [] 2022-01-12 15:35:49 2015-10-27 08:47:10 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets"] [{"name": "royal veterinary college", "alternativeName": "", "country": "gb", "url": "http://rvc.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://researchonline.rvc.ac.uk/cgi/oai2 yes 2496 9031 +3471 {"name": "iri repository", "language": "en"} [] https://iri.mysciencework.com/ disciplinary [] 2022-01-12 15:35:48 2015-09-04 10:18:39 ["science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "iri (institut de recherche et d innovation)", "alternativeName": "", "country": "fr", "url": "http://www.iri.centrepompidou.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3425 {"name": "iain antasari institutional repository", "language": "en"} [{"acronym": "idr iain antasari banjarmasin"}] http://idr.iain-antasari.ac.id/ institutional [] 2022-01-12 15:35:48 2015-07-20 10:10:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "iain antasari banjarmasin", "alternativeName": "iain antasari", "country": "id", "url": "http://www.iain-antasari.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://idr.iain-antasari.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://idr.iain-antasari.ac.id/policies.html", "type": "data"}, {"policy_url": "http://idr.iain-antasari.ac.id/policies.html", "type": "content"}, {"policy_url": "http://idr.iain-antasari.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://idr.iain-antasari.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://idr.iain-antasari.ac.id/cgi/oai2 yes 6718 +3501 {"name": "ihu institutional repository", "language": "en"} [] https://repository.ihu.edu.gr/xmlui/ institutional [] 2022-01-12 15:35:49 2015-12-10 09:17:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "international hellenic university", "alternativeName": "", "country": "gr", "url": "http://www.ihu.edu.gr/", "identifier": [{"identifier": "https://ror.org/00708jp83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repository.ihu.edu.gr/xmlui/page/metadata-policy-en", "type": "metadata"}, {"policy_url": "https://repository.ihu.edu.gr/xmlui/page/preservation-policy-en", "type": "data"}, {"policy_url": "https://repository.ihu.edu.gr/xmlui/page/collection-policy-en", "type": "content"}, {"policy_url": "https://repository.ihu.edu.gr/xmlui/page/terms-en", "type": "submission"}, {"policy_url": "https://repository.ihu.edu.gr/xmlui/page/preservation-policy-en", "type": "preservation"}] {"name": "dspace", "version": ""} yes 1361 27102 +3444 {"name": "repositorio digital de la universidad estatal de milagro", "language": "es"} [{"acronym": "unemi"}] http://www.unemi.edu.ec/index.php/bases-de-datos-2 institutional [] 2022-01-12 15:35:48 2015-08-04 16:49:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad estatal de milagro", "alternativeName": "unemi", "country": "ec", "url": "http://www.unemi.edu.ec", "identifier": [{"identifier": "https://ror.org/00gd7ns03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1609 2640 +3494 {"name": "institutional repository of zaporizhzhia state medical university", "language": "en"} [{"acronym": "irzsmu"}] http://dspace.zsmu.edu.ua/ institutional [] 2022-01-12 15:35:48 2015-10-09 15:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "zaporizhzhia state medical university", "alternativeName": "", "country": "ua", "url": "http://www.zsmu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 7281 +3426 {"name": "usiu africa digital repository", "language": "en"} [{"acronym": "usiu"}] http://erepo.usiu.ac.ke/ institutional [] 2022-01-12 15:35:48 2015-07-20 10:20:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "united states international university - africa", "alternativeName": "", "country": "ke", "url": "http://www.usiu.ac.ke/", "identifier": [{"identifier": "https://ror.org/05qj64q37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://erepo.usiu.ac.ke/oai/request yes 3604 +3464 {"name": "colecci\u00f3n digital uanl", "language": "en"} [] http://cd.dgb.uanl.mx/ institutional [] 2022-01-12 15:35:48 2015-08-27 10:56:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad aut\u00f3noma de nuevo le\u00f3n", "alternativeName": "", "country": "mx", "url": "http://www.uanl.mx/", "identifier": [{"identifier": "https://ror.org/01fh86n78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://cd.dgb.uanl.mx/oai yes 0 15487 +3432 {"name": "iris - institutional research information system of the university of trento", "language": "en"} [] https://iris.unitn.it/ institutional [] 2022-01-12 15:35:48 2015-07-22 11:31:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "universit\u00e0 degli studi di trento", "alternativeName": "", "country": "it", "url": "http://www.unitn.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 78382 +3481 {"name": "kea", "language": "en"} [] https://kea.ke.hu/ institutional [] 2022-01-12 15:35:48 2015-09-29 10:56:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kaposvar university", "alternativeName": "", "country": "hu", "url": "http://www.ke.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kea.ke.hu:8080/oai/request yes 0 0 +3492 {"name": "memoria", "language": "en"} [] http://memoria.ifrn.edu.br/ institutional [] 2022-01-12 15:35:48 2015-09-30 10:40:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto federal de educa\u00e7\u00e3o, ci\u00eancia e tecnologia do rio grande do norte", "alternativeName": "", "country": "br", "url": "http://www.ifrn.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1058 +3433 {"name": "tukenya institutional repository", "language": "en"} [] http://repository.tukenya.ac.ke/ institutional [] 2022-01-12 15:35:48 2015-07-22 11:40:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "technical university of kenya", "alternativeName": "", "country": "ke", "url": "http://tukenya.ac.ke/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 873 +3483 {"name": "repositorio universidad sergio arboleda", "language": "en"} [] http://repository.usergioarboleda.edu.co/ institutional [] 2022-01-12 15:35:48 2015-09-29 12:16:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad sergio arboleda", "alternativeName": "", "country": "co", "url": "http://www.usergioarboleda.edu.co/", "identifier": [{"identifier": "https://ror.org/02ckere89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.usergioarboleda.edu.co/oai/request yes 904 +3457 {"name": "reposit\u00f3rio digital da ufmg", "language": "en"} [] https://dspaceprod02.grude.ufmg.br/dspace/ institutional [] 2022-01-12 15:35:48 2015-08-20 09:37:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universidade federal de minas gerais", "alternativeName": "", "country": "br", "url": "https://www.ufmg.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 723 +3465 {"name": "reposit\u00f3rio institucional unifesp", "language": "en"} [] http://repositorio.unifesp.br/ institutional [] 2022-01-12 15:35:48 2015-09-01 11:34:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade federal de s\u00e3o paulo (unifesp)", "alternativeName": "", "country": "br", "url": "http://www.unifesp.br/", "identifier": [{"identifier": "https://ror.org/02k5swt12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unifesp.br/oai/request yes 41922 +3497 {"name": "unej repository", "language": "en"} [] http://repository.unej.ac.id/ institutional [] 2022-01-12 15:35:49 2015-11-09 09:08:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of jember", "alternativeName": "", "country": "id", "url": "http://unej.ac.id/", "identifier": [{"identifier": "https://ror.org/049f0ha78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unej.ac.id/oai/request? yes 0 56120 +3480 {"name": "university of dar es salaam", "language": "en"} [] http://repository.udsm.ac.tz:8080/xmlui/ institutional [] 2022-01-12 15:35:48 2015-09-29 10:29:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of dar es salaam", "alternativeName": "", "country": "tz", "url": "https://udsm.ac.tz/", "identifier": [{"identifier": "https://ror.org/0479aed98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.udsm.ac.tz:8080/oai/ yes 0 4565 +3476 {"name": "embu university repository", "language": "en"} [] http://repository.embuni.ac.ke/ institutional [] 2022-01-12 15:35:48 2015-09-08 15:17:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of embu", "alternativeName": "", "country": "ke", "url": "http://www.embuni.ac.ke/", "identifier": [{"identifier": "https://ror.org/00hzs6t60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1467 +3429 {"name": "kca academic commons", "language": "en"} [] http://41.89.49.13:8080/xmlui/ institutional [] 2022-01-12 15:35:48 2015-07-21 10:35:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "kca university", "alternativeName": "", "country": "ke", "url": "http://www.kca.ac.ke/", "identifier": [{"identifier": "https://ror.org/050pcd452", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 138 +3490 {"name": "moi university institutional repository", "language": "en"} [] http://ir.mu.ac.ke/ institutional [] 2022-01-12 15:35:48 2015-09-30 09:36:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "moi university", "alternativeName": "", "country": "ke", "url": "http://www.mu.ac.ke/", "identifier": [{"identifier": "https://ror.org/04p6eac84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.mu.ac.ke/oai yes 0 1000 +3460 {"name": "repositorio institucional del tecnol\u00f3gico de monterrey", "language": "es"} [] https://repositorio.tec.mx institutional [] 2022-01-12 15:35:48 2015-08-27 10:12:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "tecnol\u00f3gico de monterrey", "alternativeName": "", "country": "mx", "url": "http://www.tec.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.tec.mx/oai/request yes 0 23476 +3439 {"name": "the academia sinica institutional repository", "language": "en"} [] http://ir.sinica.edu.tw/ institutional [] 2022-01-12 15:35:48 2015-07-29 10:48:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "academia sinica", "alternativeName": "", "country": "tw", "url": "http://www.sinica.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.sinica.edu.tw/ir-oai/request yes 2 57741 +3437 {"name": "white library digital repository", "language": "en"} [] http://whitelibrary.dspacedirect.org/ institutional [] 2022-01-12 15:35:48 2015-07-28 12:06:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "spring arbor university", "alternativeName": "", "country": "us", "url": "http://www.arbor.edu/", "identifier": [{"identifier": "https://ror.org/02j8e5x02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 113 +3469 {"name": "medusa digital repository", "language": "en"} [] http://medusa.libver.gr/ institutional [] 2022-01-12 15:35:48 2015-09-03 16:47:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "veria public library", "alternativeName": "", "country": "gr", "url": "http://www.libver.gr/", "identifier": [{"identifier": "https://ror.org/022hr6a87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://medusa.libver.gr/oai/request yes 268 10037 +3462 {"name": "electronic library of belarusian-russian university", "language": "en"} [] http://e.biblio.bru.by/ institutional [] 2022-01-12 15:35:48 2015-08-27 10:47:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "belarusian-russian university", "alternativeName": "", "country": "by", "url": "http://bru.by/", "identifier": [{"identifier": "https://ror.org/0551qsw90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3454 {"name": "kovsiescholar", "language": "en"} [] http://scholar.ufs.ac.za/ institutional [] 2022-01-12 15:35:48 2015-08-19 16:11:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of the free state", "alternativeName": "", "country": "za", "url": "https://www.ufs.ac.za/", "identifier": [{"identifier": "https://ror.org/009xwd568", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 0 7537 +3455 {"name": "repositorio digital de la universidad autonoma del caribe", "language": "en"} [] http://repositorio.uac.edu.co/ institutional [] 2022-01-12 15:35:48 2015-08-19 16:48:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad aut\u00f3noma del caribe", "alternativeName": "", "country": "co", "url": "http://www.uac.edu.co/", "identifier": [{"identifier": "https://ror.org/05gqfsf87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uac.edu.co/oai/ yes 0 1896 +3445 {"name": "repository of baranovichi state university", "language": "en"} [] http://rep.barsu.by/ institutional [] 2022-01-12 15:35:48 2015-08-05 09:24:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "baranovichi state university", "alternativeName": "", "country": "by", "url": "http://www.barsu.by/", "identifier": [{"identifier": "https://ror.org/00fvwqz75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3541 +3491 {"name": "repository of the \u00f3buda university (\u00f3da)", "language": "en"} [] http://asp01.ex-lh.hu/ institutional [] 2022-01-12 15:35:48 2015-09-30 10:21:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "\u00f3buda university", "alternativeName": "", "country": "hu", "url": "http://uni-obuda.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://asp01.ex-lh.hu/oai-pub yes 0 1 +3436 {"name": "digital university repository", "language": "en"} [] http://repository.cuni.cz/ institutional [] 2022-01-12 15:35:48 2015-07-28 11:30:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "charles university", "alternativeName": "", "country": "cz", "url": "http://www.cuni.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://dingo.ruk.cuni.cz:8881/oai-pub? yes 0 1487 +3475 {"name": "okina", "language": "en"} [] http://okina.univ-angers.fr/ institutional [] 2022-01-12 15:35:48 2015-09-08 14:51:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e9 dangers", "alternativeName": "", "country": "fr", "url": "http://www.univ-angers.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://okina.univ-angers.fr/oai yes 16420 18301 +3496 {"name": "institutional repository of the institute of economic sciences", "language": "en"} [{"acronym": "iries"}] http://ebooks.ien.bg.ac.rs/ institutional [] 2022-01-12 15:35:49 2015-10-27 10:02:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "institute of economic sciences", "alternativeName": "", "country": "rs", "url": "http://www.ien.bg.ac.rs/en/", "identifier": [{"identifier": "https://ror.org/03gh3xj41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ebooks.ien.bg.ac.rs/cgi/oai2 yes 871 1356 +3448 {"name": "etheses of maulana malik ibrahim state islamic university", "language": "en"} [{"acronym": "uin"}] http://etheses.uin-malang.ac.id/ institutional [] 2022-01-12 15:35:48 2015-08-05 10:28:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "maulana malik ibrahim state islamic university (universitas islam negeri maulana malik ibrahim)", "alternativeName": "maulana malik ibrahim state islamic university (universitas islam negeri maulana malik ibrahim)", "country": "id", "url": "http://uin-malang.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etheses.uin-malang.ac.id/cgi/oai2 yes 2421 17500 +3458 {"name": "uajy repository", "language": "en"} [] http://eprints.uajy.ac.id/ institutional [] 2022-01-12 15:35:48 2015-08-20 10:11:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "universitas atma jaya yogyakarta", "alternativeName": "", "country": "id", "url": "http://www.uajy.ac.id/", "identifier": [{"identifier": "https://ror.org/01gmyr425", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://e-journal.uajy.ac.id/cgi/oai2/ yes 14863 21459 +3459 {"name": "repository universitas sanata dharma", "language": "en"} [] https://repository.usd.ac.id/ institutional [] 2022-01-12 15:35:48 2015-08-20 10:32:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "universitas sanata dharma", "alternativeName": "", "country": "id", "url": "http://www.usd.ac.id/", "identifier": [{"identifier": "https://ror.org/02105t278", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://repository.usd.ac.id/cgi/oai2/ yes 4487 39142 +3451 {"name": "repositorio institucional usac", "language": "en"} [] http://www.repositorio.usac.edu.gt/ institutional [] 2022-01-12 15:35:48 2015-08-12 14:11:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "software", "patents"] [{"name": "universidad de san carlos de guatemala", "alternativeName": "", "country": "gt", "url": "http://www.usac.edu.gt/", "identifier": [{"identifier": "https://ror.org/01b4w2923", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.repositorio.usac.edu.gt/cgi/oai2 yes 12110 12976 +3421 {"name": "curatend", "language": "en"} [] http://curate.nd.edu/ institutional [] 2022-01-12 15:35:47 2015-07-14 16:20:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of notre dame", "alternativeName": "", "country": "us", "url": "http://www.nd.edu/", "identifier": [{"identifier": "https://ror.org/00mkhxb43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 1707 +3510 {"name": "hal-ujm", "language": "en"} [] https://hal-ujm.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 09:39:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "universit\u00e9 jean monnet saint etienne", "alternativeName": "", "country": "fr", "url": "http://portail.univ-st-etienne.fr/", "identifier": [{"identifier": "https://ror.org/04yznqr36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ujm yes 4666 54476 +3512 {"name": "hal-cirad", "language": "en"} [] http://hal.cirad.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 09:47:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centre de coop\u00e9ration international en recherche agronomique pour le d\u00e9veloppement", "alternativeName": "cirad", "country": "fr", "url": "http://www.cirad.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/cirad yes 3120 41662 +3514 {"name": "hal-ineris", "language": "en"} [] http://hal-ineris.ccsd.cnrs.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:09:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institut national de l\u2019environnement industriel et des risques", "alternativeName": "ineris", "country": "fr", "url": "http://www.ineris.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ineris yes 1209 6967 +3516 {"name": "hal-insu", "language": "en"} [] https://hal-insu.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:18:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institut national des sciences de l univers", "alternativeName": "insu", "country": "fr", "url": "http://www.insu.cnrs.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/insu yes 20202 117024 +3513 {"name": "hal-obspm", "language": "en"} [] http://hal-obspm.ccsd.cnrs.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 09:55:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "observatoire de paris", "alternativeName": "", "country": "fr", "url": "http://www.obspm.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/obspm yes 1324 19680 +3515 {"name": "hal-cea", "language": "en"} [] https://hal-cea.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:13:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "commissariat \u00e0 l\u2019\u00e9nergie atomique et aux \u00e9nergies alternatives", "alternativeName": "cea", "country": "fr", "url": "http://www.cea.fr/", "identifier": [{"identifier": "https://ror.org/00jjx8s55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/cea yes 9123 90783 +3518 {"name": "hal-paris1", "language": "en"} [] https://hal-paris1.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:22:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 paris 1 panth\u00e9on sorbonne", "alternativeName": "", "country": "fr", "url": "http://www.univ-paris1.fr/", "identifier": [{"identifier": "https://ror.org/002t25c44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/paris1 yes 6998 67258 +3525 {"name": "hal-univ-nantes", "language": "en"} [] http://hal.univ-nantes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 11:02:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de nantes", "alternativeName": "", "country": "fr", "url": "http://www.univ-nantes.fr/", "identifier": [{"identifier": "https://ror.org/03gnr7b55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-nantes yes 7791 69107 +3430 {"name": "hal amu", "language": "en"} [] https://hal-amu.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:48 2015-07-22 11:00:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "aix marseille universit\u00e9", "alternativeName": "", "country": "fr", "url": "http://www.univ-amu.fr/", "identifier": [{"identifier": "https://ror.org/035xkbk20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/amu yes 12169 140211 +3523 {"name": "hal-artois", "language": "en"} [] https://hal-univ-artois.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:59:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 d artois", "alternativeName": "", "country": "fr", "url": "http://www.univ-artois.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-artois yes 587 10200 +3511 {"name": "hal-emse", "language": "en"} [] http://hal-emse.ccsd.cnrs.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 09:42:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ecole des mines de saint etienne", "alternativeName": "", "country": "fr", "url": "http://www.mines-stetienne.fr/", "identifier": [{"identifier": "https://ror.org/05a1dws80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/emse yes 1568 7422 +3522 {"name": "hal-lyon 3", "language": "en"} [] https://hal-univ-lyon3.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:56:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 jean moulin lyon 3", "alternativeName": "", "country": "fr", "url": "http://www.univ-lyon3.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-lyon3 yes 2038 41045 +3524 {"name": "hal-polytechnique", "language": "en"} [] https://hal-polytechnique.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 11:00:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ecole polytechnique", "alternativeName": "", "country": "fr", "url": "https://www.polytechnique.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/polytechnique yes 6085 39631 +3517 {"name": "hal-unice", "language": "en"} [] https://hal-unice.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:20:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 nice sophia antipolis", "alternativeName": "", "country": "fr", "url": "http://unice.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/unice yes 7991 30525 +3521 {"name": "hal-unilim", "language": "en"} [] https://hal-unilim.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 10:52:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de limoges", "alternativeName": "", "country": "fr", "url": "http://www.unilim.fr/", "identifier": [{"identifier": "https://ror.org/02cp04407", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/unilim yes 1443 28304 +3482 {"name": "publikationsserver der technischen universit\u00e4t clausthal", "language": "en"} [] https://dokumente.ub.tu-clausthal.de/content/main/index.xml institutional [] 2022-01-12 15:35:48 2015-09-29 11:43:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "technische universit\u00e4t clausthal", "alternativeName": "", "country": "de", "url": "http://www.tu-clausthal.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} https://dokumente.ub.tu-clausthal.de/servlets/oaidataprovider yes 1490 +3505 {"name": "repository of the university of ljubljana", "language": "en"} [] https://repozitorij.uni-lj.si/ institutional [] 2022-01-12 15:35:49 2016-01-22 15:24:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of ljubljana", "alternativeName": "", "country": "si", "url": "https://www.uni-lj.si/", "identifier": [{"identifier": "https://ror.org/05njb9z20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://repozitorij.uni-lj.si/oai/oai2.php yes 81102 +3507 {"name": "repository of university of nova gorica", "language": "en"} [{"acronym": "rung"}] https://repozitorij.ung.si/info/index.php institutional [] 2022-01-12 15:35:49 2016-01-22 15:37:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of nova gorica", "alternativeName": "", "country": "si", "url": "http://www.ung.si", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://repozitorij.ung.si/oai/oai2.php yes 53 5581 +3487 {"name": "national repository of open educational educational resources", "language": "en"} [] http://nroer.gov.in/ governmental [] 2022-01-12 15:35:48 2015-09-29 14:45:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "central institute of educational technology, ncert, new delhi", "alternativeName": "", "country": "in", "url": "http://ncert.nic.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3477 {"name": "etd - unsyiah central library", "language": "en"} [] http://etd.unsyiah.ac.id/ institutional [] 2022-01-12 15:35:48 2015-09-08 16:18:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "central library - syiah kuala university", "alternativeName": "", "country": "id", "url": "http://library.unsyiah.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://etd.unsyiah.ac.id/oai2.php yes 30275 +3485 {"name": "alicia: repositorio nacional digital de ciencia, tecnolog\u00eda e innovaci\u00f3n de acceso abierto", "language": "en"} [] http://alicia.concytec.gob.pe/ institutional [] 2022-01-12 15:35:48 2015-09-29 13:15:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "software"] [{"name": "consejo nacional de ciencia, tecnolog\u00eda e innovaci\u00f3n tecnol\u00f3gica - concytec", "alternativeName": "", "country": "pe", "url": "http://www.concytec.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://alicia.concytec.gob.pe:8090/oai yes 0 0 +3461 {"name": "portsmouth research portal", "language": "en"} [] https://researchportal.port.ac.uk/ institutional [] 2022-01-12 15:35:48 2015-08-27 10:27:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "university of portsmouth", "alternativeName": "", "country": "gb", "url": "http://www.port.ac.uk/", "identifier": [{"identifier": "https://ror.org/03ykbk197", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://researchportal.port.ac.uk/ws/oai yes 10827 29979 +3493 {"name": "tezukayama university repository", "language": "en"} [{"name": "\u5e1d\ufa10\u5c71\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tezukayama.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:48 2015-09-30 10:54:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "tezukayama university", "alternativeName": "", "country": "jp", "url": "http://www.tezukayama-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/0210pwe06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tezukayama.repo.nii.ac.jp/oai yes +3449 {"name": "gsi repository", "language": "en"} [] http://repository.gsi.de/ institutional [] 2022-01-12 15:35:48 2015-08-05 10:35:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "gsi helmholtzzentrum f\u00fcr schwerionenforschung gmbh", "alternativeName": "", "country": "de", "url": "http://www.gsi.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://repository.gsi.de/oai2d yes 1698 159472 +3446 {"name": "rinfi repositorio institucional intema-facultad de ingenier\u00eda", "language": "en"} [{"acronym": "rinfi"}] http://rinfi.fi.mdp.edu.ar/ institutional [] 2022-01-12 15:35:48 2015-08-05 09:56:41 ["science", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "intema - fac.ingenier\u00eda. univerdidad nacional de mar del plata", "alternativeName": "", "country": "ar", "url": "http://www.fi.mdp.edu.ar/. http://intema.gob.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3484 {"name": "upcommons. portal del coneixement obert de la upc", "language": "en"} [] http://upcommons.upc.edu/ institutional [] 2022-01-12 15:35:48 2015-09-29 12:48:13 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "universitat polit\u00e8nica de catalunya", "alternativeName": "upc", "country": "es", "url": "http://www.upc.edu/", "identifier": [{"identifier": "https://ror.org/03mb6wj31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://upcommons.upc.edu/oai/request yes 103677 +3424 {"name": "west dc", "language": "en"} [] http://westdc.westgis.ac.cn/ institutional [] 2022-01-12 15:35:48 2015-07-15 15:36:15 ["science"] ["datasets"] [{"name": "environmental and ecological science data center for west china", "alternativeName": "\u4e2d\u56fd\u897f\u90e8\u73af\u5883\u4e0e\u751f\u6001\u79d1\u5b66\u6570\u636e\u4e2d\u5fc3", "country": "cn", "url": "http://westdc.westgis.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 1432 +3450 {"name": "dspace at indian institute of geomagnetism", "language": "en"} [{"acronym": "iig"}] http://library.iigm.res.in:8080/jspui/ institutional [] 2022-01-12 15:35:48 2015-08-05 10:51:55 ["science"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "indian institute of geomagnetism", "alternativeName": "", "country": "in", "url": "http://www.iigm.res.in/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1140 +3500 {"name": "ciat research online", "language": "en"} [] https://cgspace.cgiar.org/handle/10568/35697 institutional [] 2022-01-12 15:35:49 2015-11-18 10:28:35 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "international center for tropical agriculture - ciat", "alternativeName": "ciat", "country": "co", "url": "http://ciat.cgiar.org/", "identifier": [{"identifier": "https://ror.org/037wny167", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 12325 +3423 {"name": "nm-aist repository", "language": "en"} [] http://dspace.nm-aist.ac.tz/ institutional [] 2022-01-12 15:35:48 2015-07-15 12:13:04 ["science"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "nelson mandela -african insitution of science and technology", "alternativeName": "", "country": "tz", "url": "http://www.nm-aist.ac.tz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nm-aist.ac.tz/oai/request?verb=identify yes 401 1058 +3441 {"name": "digtial repository of red sea university", "language": "en"} [] http://repository.rsu.edu.sd/ institutional [] 2022-01-12 15:35:48 2015-07-29 11:17:34 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "red sea university", "alternativeName": "", "country": "sd", "url": "http://rsu.edu.sd/", "identifier": [{"identifier": "https://ror.org/04k46b490", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.rsu.edu.sd/oai/request yes 0 2714 +3488 {"name": "repositorio abierto de entomolog\u00eda aplicada de la seea", "language": "en"} [] http://repositorioseea.es/ disciplinary [] 2022-01-12 15:35:48 2015-09-29 16:22:42 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "sociedad espa\u00f1ola de entomolog\u00eda aplicada", "alternativeName": "", "country": "es", "url": "http://www.seea.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorioseea.es/oai/request yes 18 +3467 {"name": "repositorio institucional de la universidad nacional agraria", "language": "en"} [] http://repositorio.una.edu.ni/ institutional [] 2022-01-12 15:35:48 2015-09-01 12:27:18 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional agraria", "alternativeName": "", "country": "ni", "url": "http://www.una.edu.ni/", "identifier": [{"identifier": "https://ror.org/02gne5439", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositorio.una.edu.ni/cgi/oai2 yes 2713 +3438 {"name": "oie repository", "language": "en"} [] http://doc.oie.int/ institutional [] 2022-01-12 15:35:48 2015-07-28 12:18:06 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "oie world organisation for animal health", "alternativeName": "", "country": "fr", "url": "http://oie.int/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://doc.oie.int/oai/provider yes 0 2301 +3509 {"name": "windesheim repository", "language": "en"} [] https://hbo-kennisbank.nl/en/page/search?q=&f=o_windesheimhogeschool institutional [] 2022-01-12 15:35:49 2016-01-26 09:28:22 ["social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hogeschool windesheim", "alternativeName": "", "country": "nl", "url": "http://www.windesheiminternational.nl/", "identifier": [{"identifier": "https://ror.org/04zmc0e16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://surfsharekit.nl:8080/oai/chw/ yes 0 1323 +3489 {"name": "centre for european reforms studies", "language": "en"} [] http://cers.eu.pn/archive.html/ institutional [] 2022-01-12 15:35:48 2015-09-29 17:11:35 ["social sciences"] ["journal_articles"] [{"name": "centre for european reforms studies", "alternativeName": "", "country": "lu", "url": "http://cers.eu.pn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3486 {"name": "the management univesity of africa repository", "language": "en"} [] http://repository.mua.ac.ke/ institutional [] 2022-01-12 15:35:48 2015-09-29 14:18:18 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "the management univesity of africa", "alternativeName": "", "country": "ke", "url": "http://www.mua.ac.ke/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.mua.ac.ke/cgi/oai2 yes 1821 +3468 {"name": "ntk institutional digital repository", "language": "en"} [] http://repozitar.techlib.cz/ institutional [] 2022-01-12 15:35:48 2015-09-03 16:15:45 ["technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national library of technology", "alternativeName": "n\u00e1rodn\u00ed technick\u00e1 knihovna", "country": "cz", "url": "http://www.techlib.cz/", "identifier": [{"identifier": "https://ror.org/028txef36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://repozitar.techlib.cz/oai2d yes +3422 {"name": "kyushu university of health and welfare repository", "language": "en"} [{"name": "\u4e5d\u5dde\u4fdd\u5065\u798f\u7949\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://phoenix.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:48 2015-07-15 11:59:02 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "kyushu university of health and welfare", "alternativeName": "", "country": "jp", "url": "http://www.phoenix.ac.jp/", "identifier": [{"identifier": "https://ror.org/01banz567", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://phoenix.repo.nii.ac.jp/oai yes 718 1389 +3435 {"name": "bear (buckingham e-archive of research)", "language": "en"} [] http://bear.buckingham.ac.uk/ institutional [] 2022-01-12 15:35:48 2015-07-28 10:19:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of buckingham", "alternativeName": "", "country": "gb", "url": "http://www.buckingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/03kd28f18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://bear.buckingham.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://bear.buckingham.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://bear.buckingham.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://bear.buckingham.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://bear.buckingham.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://bear.buckingham.ac.uk/cgi/oai2?verb=identify yes 282 369 +3508 {"name": "digital repository of slovenian research organizations", "language": "en"} [{"acronym": "dirros"}] http://dirros.openscience.si/info/index.php/eng aggregating [] 2022-01-12 15:35:49 2016-01-26 09:00:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of ljubljana", "alternativeName": "", "country": "si", "url": "https://www.uni-lj.si", "identifier": [{"identifier": "https://ror.org/05njb9z20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dirros.openscience.si/info/index.php/eng/10-vsebine-en/33-policies", "type": "metadata"}, {"policy_url": "http://dirros.openscience.si/info/index.php/eng/10-vsebine-en/33-policies", "type": "data"}, {"policy_url": "http://dirros.openscience.si/info/index.php/eng/10-vsebine-en/33-policies", "type": "content"}, {"policy_url": "http://dirros.openscience.si/info/index.php/eng/10-vsebine-en/33-policies", "type": "submission"}, {"policy_url": "http://dirros.openscience.si/info/index.php/eng/10-vsebine-en/33-policies", "type": "preservation"}] {"name": "other", "version": ""} http://dirros.openscience.si/oai/oai2.php yes 2360 6629 +3427 {"name": "golestan university of medical sciences repository", "language": "en"} [] http://eprints.goums.ac.ir/ institutional [] 2022-01-12 15:35:48 2015-07-20 10:58:44 ["health and medicine"] ["journal_articles"] [{"name": "golestan university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.goums.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.goums.ac.ir/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.goums.ac.ir/policies.html", "type": "data"}, {"policy_url": "http://eprints.goums.ac.ir/policies.html", "type": "content"}, {"policy_url": "http://eprints.goums.ac.ir/policies.html", "type": "submission"}, {"policy_url": "http://eprints.goums.ac.ir/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.goums.ac.ir/cgi/oai2 yes 912 2654 +3443 {"name": "norma", "language": "en"} [] http://norma.ncirl.ie institutional [] 2022-01-12 15:35:48 2015-07-30 10:37:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "national college of ireland", "alternativeName": "", "country": "ie", "url": "https://www.ncirl.ie/", "identifier": [{"identifier": "https://ror.org/02qzs9336", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://trap.ncirl.ie/policies.html", "type": "metadata"}, {"policy_url": "http://trap.ncirl.ie/policies.html", "type": "content"}, {"policy_url": "http://trap.ncirl.ie/policies.html", "type": "submission"}, {"policy_url": "http://trap.ncirl.ie/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://norma.ncirl.ie/cgi/oai2 yes 1814 4633 +3453 {"name": "udsspace", "language": "en"} [] http://www.udsspace.uds.edu.gh institutional [] 2022-01-12 15:35:48 2015-08-12 14:24:47 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university for development studies", "alternativeName": "", "country": "gh", "url": "https://www.uds.edu.gh", "identifier": [{"identifier": "https://ror.org/052nhnq73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.udsspace.uds.edu.gh/handle/123456789/253", "type": "metadata"}, {"policy_url": "http://www.udsspace.uds.edu.gh/handle/123456789/253", "type": "data"}, {"policy_url": "http://www.udsspace.uds.edu.gh/handle/123456789/253", "type": "content"}, {"policy_url": "http://www.udsspace.uds.edu.gh/handle/123456789/253", "type": "submission"}, {"policy_url": "http://www.udsspace.uds.edu.gh/handle/123456789/253", "type": "preservation"}] {"name": "dspace", "version": ""} http://udsspace.uds.edu.gh/oai yes 0 844 +3434 {"name": "nazarbayev university repository", "language": "en"} [{"acronym": "nufyp"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043d\u0430\u0437\u0430\u0440\u0431\u0430\u0435\u0432 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430", "language": "ru"}, {"name": "\u043d\u0430\u0437\u0430\u0440\u0431\u0430\u0435\u0432 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0456\u043d\u0456\u04a3 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456", "language": "kk"}] https://nur.nu.edu.kz institutional [] 2022-01-12 15:35:48 2015-07-23 10:33:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "nazarbayev university", "alternativeName": "nufyp", "country": "kz", "url": "https://nu.edu.kz", "identifier": [{"identifier": "https://ror.org/052bx8q98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://nur.nu.edu.kz/bitstream/handle/123456789/318/nur_policy.html", "type": "metadata"}, {"policy_url": "http://nur.nu.edu.kz/bitstream/handle/123456789/318/nur_policy.html", "type": "data"}, {"policy_url": "http://nur.nu.edu.kz/bitstream/handle/123456789/318/nur_policy.html", "type": "content"}, {"policy_url": "http://nur.nu.edu.kz/bitstream/handle/123456789/318/nur_policy.html", "type": "submission"}, {"policy_url": "http://nur.nu.edu.kz/bitstream/handle/123456789/318/nur_policy.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://nur.nu.edu.kz/oai/request yes 2442 3807 +3456 {"name": "digital repository of the btu cottbus \u2013 senftenberg", "language": "en"} [{"name": "digitales repositorium der btu cottbus \u2013 senftenberg", "language": "de"}] https://opus4.kobv.de/opus4-btu/home institutional [] 2022-01-12 15:35:48 2015-08-20 09:28:04 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "brandenburg university of technology", "alternativeName": "", "country": "de", "url": "https://www.b-tu.de/bibliothek", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opus4.kobv.de/opus4-btu/home/index/help/content/policies", "type": "content"}] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-btu/oai yes 3637 3986 +3431 {"name": "repositum", "language": "en"} [] https://repositum.tuwien.at institutional [] 2022-01-12 15:35:48 2015-07-22 11:17:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tu wien", "alternativeName": "", "country": "at", "url": "https://www.tuwien.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repositum.tuwien.at/termsofuse?locale=en", "type": "metadata"}, {"policy_url": "https://repositum.tuwien.at/termsofuse?locale=en", "type": "data"}, {"policy_url": "http://repositum.tuwien.ac.at/wiki/nutzungsbedingungen?lang=en", "type": "content"}, {"policy_url": "https://repositum.tuwien.at/termsofuse?locale=en", "type": "submission"}, {"policy_url": "https://repositum.tuwien.at/termsofuse?locale=en", "type": "preservation"}] {"name": "dspace", "version": ""} https://repositum.tuwien.at/oai/request yes 211 16645 +3504 {"name": "stirling online repository for research data", "language": "en"} [{"acronym": "datastorre"}] https://datastorre.stir.ac.uk/ institutional [] 2022-01-12 15:35:49 2016-01-08 16:16:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets", "other_special_item_types"] [{"name": "university of stirling", "alternativeName": "", "country": "gb", "url": "http://www.stir.ac.uk/", "identifier": [{"identifier": "https://ror.org/045wgfr59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.stir.ac.uk/media/stirling/services/internal/is/documents/datastorre-policies-gdpr.pdf", "type": "submission"}, {"policy_url": "https://www.stir.ac.uk/media/stirling/services/internal/is/documents/datastorre-policies-gdpr.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://shurda.shu.ac.uk/information.html yes 0 49 +3499 {"name": "famena repository", "language": "en"} [] http://repozitorij.fsb.hr/ institutional [] 2022-01-12 15:35:49 2015-11-18 09:47:05 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "sveu\u010dili\u0161ta u zagrebu", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repozitorij.fsb.hr/policies.html", "type": "metadata"}, {"policy_url": "http://repozitorij.fsb.hr/policies.html", "type": "data"}, {"policy_url": "http://repozitorij.fsb.hr/policies.html", "type": "content"}, {"policy_url": "http://repozitorij.fsb.hr/policies.html", "type": "submission"}, {"policy_url": "http://repozitorij.fsb.hr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://repozitorij.fsb.hr/cgi/oai2 yes 4295 8043 +3503 {"name": "sheffield hallam university research data archive", "language": "en"} [{"acronym": "shurda"}] http://shurda.shu.ac.uk/ institutional [] 2022-01-12 15:35:49 2016-01-08 16:02:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "sheffield hallam university", "alternativeName": "shu", "country": "gb", "url": "http://www.shu.ac.uk/", "identifier": [{"identifier": "https://ror.org/019wt1929", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://shurda.shu.ac.uk/information.html", "type": "metadata"}, {"policy_url": "http://shurda.shu.ac.uk/information.html", "type": "data"}, {"policy_url": "http://shurda.shu.ac.uk/information.html", "type": "content"}, {"policy_url": "http://shurda.shu.ac.uk/information.html", "type": "submission"}, {"policy_url": "http://shurda.shu.ac.uk/information.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://shurda.shu.ac.uk/cgi/oai2 yes 0 42 +3506 {"name": "repository of university of primorska", "language": "en"} [] https://repozitorij.upr.si/info/index.php/eng/ institutional [] 2022-01-12 15:35:49 2016-01-22 15:28:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of primorska", "alternativeName": "", "country": "si", "url": "http://www.upr.si/", "identifier": [{"identifier": "https://ror.org/05xefg082", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.upr.si/info/index.php/eng/policies", "type": "metadata"}, {"policy_url": "https://repozitorij.upr.si/info/index.php/eng/policies", "type": "data"}, {"policy_url": "https://repozitorij.upr.si/info/index.php/eng/policies", "type": "content"}, {"policy_url": "https://repozitorij.upr.si/info/index.php/eng/policies", "type": "submission"}, {"policy_url": "https://repozitorij.upr.si/info/index.php/eng/policies", "type": "preservation"}] {"name": "other", "version": ""} http://repozitorij.upr.si/oai/oai2.php yes 2899 15511 +3585 {"name": "e-publications@khm", "language": "en"} [] https://e-publications.khm.de institutional [] 2022-01-12 15:35:50 2016-05-03 16:13:42 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "academy of media arts cologne", "alternativeName": "", "country": "de", "url": "http://www.khm.de", "identifier": [{"identifier": "https://ror.org/00f2wje32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://e-publications.khm.de/oai yes 98 116 +3575 {"name": "open access to odia books", "language": "en"} [{"acronym": "oaob"}] http://oaob.nitrkl.ac.in/ disciplinary [] 2022-01-12 15:35:50 2016-05-03 15:12:12 ["arts", "humanities"] ["books_chapters_and_sections"] [{"name": "national institute of technology, rourkela", "alternativeName": "nitr", "country": "in", "url": "http://www.nitrkl.ac.in/", "identifier": [{"identifier": "https://ror.org/011gmn932", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 779 +3580 {"name": "publication server of the hochschule fuer musik detmold", "language": "en"} [{"name": "hochschulschriftenserver der hochschule f\u00fcr musik detmold", "language": "de"}] https://opus.hfm-detmold.de/home institutional [] 2022-01-12 15:35:50 2016-05-03 15:49:52 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "hochschule f\u00fcr musik detmold", "alternativeName": "", "country": "de", "url": "http://www.hfm-detmold.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.hfm-detmold.de/oai yes 3 12 +3572 {"name": "plymouth marine science electronic archive (plymea)", "language": "en"} [] http://plymsea.ac.uk/ institutional [] 2022-01-12 15:35:50 2016-05-03 14:34:15 ["health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "marine biological association", "alternativeName": "", "country": "gb", "url": "http://www.mba.ac.uk/", "identifier": [{"identifier": "https://ror.org/0431sk359", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://plymsea.ac.uk/cgi/oai2 yes 6429 +3529 {"name": "ist austria research explorer", "language": "en"} [] https://research-explorer.app.ist.ac.at institutional [] 2022-01-12 15:35:49 2016-02-11 10:35:12 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institute of science and technology austria research explorer", "alternativeName": "ist austria", "country": "at", "url": "https://ist.ac.at", "identifier": [{"identifier": "https://ror.org/03gnh5541", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.ist.ac.at/cgi/oai2 yes 527 759 +3545 {"name": "botho university institutional repository", "language": "en"} [] http://repository.bothouniversity.ac.bw/buir institutional [] 2022-01-12 15:35:49 2016-02-19 15:40:38 ["health and medicine", "social sciences", "technology"] ["journal_articles", "learning_objects"] [{"name": "botho university", "alternativeName": "", "country": "bw", "url": "http://www.bothouniversity.com/", "identifier": [{"identifier": "https://ror.org/00nfn7821", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.bothouniversity.ac.bw/oai/request yes 86 +3576 {"name": "cancerdata", "language": "en"} [] https://www.cancerdata.org/ disciplinary [] 2022-01-12 15:35:50 2016-05-03 15:16:03 ["health and medicine"] ["unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "maastro clinic", "alternativeName": "", "country": "nl", "url": "http://www.maastro.nl/en/1/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} https://www.cancerdata.org/oai yes 1 35 +3593 {"name": "lshtm data compass", "language": "en"} [] http://datacompass.lshtm.ac.uk/ institutional [] 2022-01-12 15:35:50 2016-05-19 16:22:17 ["health and medicine"] ["datasets"] [{"name": "london school of hygiene and tropical medicine", "alternativeName": "", "country": "gb", "url": "http://www.lshtm.ac.uk/", "identifier": [{"identifier": "https://ror.org/00a0jsq62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://datacompass.lshtm.ac.uk/cgi/oai2/ yes 594 +3594 {"name": "lshtm data compass", "language": "en"} [] http://datacompass.lshtm.ac.uk/ institutional [] 2022-01-12 15:35:50 2016-05-19 16:22:26 ["health and medicine"] ["datasets"] [{"name": "london school of hygiene and tropical medicine", "alternativeName": "", "country": "gb", "url": "http://www.lshtm.ac.uk/", "identifier": [{"identifier": "https://ror.org/00a0jsq62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://datacompass.lshtm.ac.uk/cgi/oai2/ yes 594 +3588 {"name": "niigata college of nursing repository", "language": "en"} [{"acronym": "niconurs"}, {"name": "\u65b0\u6f5f\u770c\u7acb\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://niconurs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:50 2016-05-16 10:10:04 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "niigata college of nursing", "alternativeName": "", "country": "jp", "url": "http://www.niigata-cn.ac.jp/", "identifier": [{"identifier": "https://ror.org/03yta1g89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://niconurs.repo.nii.ac.jp/oai yes 1043 1141 +3610 {"name": "bcams institutional repository data", "language": "en"} [{"acronym": "bird"}] https://bird.bcamath.org/ institutional [] 2022-01-12 15:35:51 2016-06-22 13:17:58 ["mathematics", "science", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "basque center for applied mathematics", "alternativeName": "bcam", "country": "es", "url": "http://www.bcamath.org/en/", "identifier": [{"identifier": "https://ror.org/03b21sh32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "www.bcamath.org/documentos_public/archivos/bcam%20institutional%20open-access%20policy.pdf", "type": "content"}, {"policy_url": "www.bcamath.org/documentos_public/archivos/bcam%20institutional%20open-access%20policy.pdf", "type": "submission"}, {"policy_url": "www.bcamath.org/documentos_public/archivos/bcam%20institutional%20open-access%20policy.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://bird.bcamath.org/oai/request yes 759 +3537 {"name": "nagoya university of economics academic repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u7d4c\u6e08\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nue.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:49 2016-02-16 08:55:18 ["science", "social sciences", "health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagoya university of economics", "alternativeName": "", "country": "jp", "url": "http://www.nagoya-ku.ac.jp/", "identifier": [{"identifier": "https://ror.org/04s6e0d17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nue.repo.nii.ac.jp/oai yes 0 143 +3538 {"name": "electronic photo archive of the belarusian state university", "language": "en"} [] http://earchives.bsu.by/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:07:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "belarusian state university", "alternativeName": "bsu", "country": "by", "url": "http://www.bsu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "metadata"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "data"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "content"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "submission"}, {"policy_url": "http://elib.bsu.by/handle/123456789/103102", "type": "preservation"}] {"name": "dspace", "version": ""} yes 2016 +3560 {"name": "tugraz open library", "language": "en"} [] http://openlib.tugraz.at/ institutional [] 2022-01-12 15:35:50 2016-03-08 13:34:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "graz university of technology", "alternativeName": "", "country": "at", "url": "http://www.tugraz.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://openlib.tugraz.at/oai yes 471 888 +3556 {"name": "eurocris", "language": "en"} [] http://dspacecris.eurocris.org/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:41:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "software", "other_special_item_types"] [{"name": "eurocris", "alternativeName": "", "country": "nl", "url": "http://www.eurocris.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace_cris", "version": ""} http://dspacecris.eurocris.org/oai/request yes 0 793 +3555 {"name": "almac\u00e9n de archivos digitales", "language": "es"} [{"acronym": "alma"}] https://rc.upr.edu.cu/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:16:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "la universidad de pinar del r\u00edo \u201chermanos sa\u00edz montes de oca\u201d", "alternativeName": "", "country": "cu", "url": "http://www.upr.edu.cu/", "identifier": [{"identifier": "https://ror.org/007chxf81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rc.upr.edu.cu/oai/request yes 1507 +3627 {"name": "lodz university of technology repository", "language": "en"} [{"acronym": "cyrena"}] http://repozytorium.p.lodz.pl/ institutional [] 2022-01-12 15:35:51 2016-07-04 16:14:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lodz university of technology", "alternativeName": "", "country": "pl", "url": "http://www.p.lodz.pl/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repozytorium.p.lodz.pl/oai/request yes 801 1431 +3569 {"name": "29 may\u0131s \u00fcniversitesi kurumsal akademik ar\u015fiv sistemi", "language": "tr"} [{"acronym": "dspace@29 may\u0131s"}] https://openaccess.29mayis.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:50 2016-05-03 14:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "istanbul 29 mayis university", "alternativeName": "", "country": "tr", "url": "https://www.29mayis.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1603 +3570 {"name": "mef university institutional repository", "language": "en"} [{"acronym": "dspace@mef"}] http://openaccess.mef.edu.tr/ institutional [] 2022-01-12 15:35:50 2016-05-03 14:13:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "mef university", "alternativeName": "", "country": "tr", "url": "http://www.mef.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.mef.edu.tr/oai/request yes 37 1184 +3612 {"name": "egerton university institutional repository", "language": "en"} [{"acronym": "euir"}] http://ir-library.egerton.ac.ke/ institutional [] 2022-01-12 15:35:51 2016-06-28 15:24:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects"] [{"name": "egerton university", "alternativeName": "", "country": "ke", "url": "http://www.egerton.ac.ke/", "identifier": [{"identifier": "https://ror.org/01jk2zc89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 885 +3587 {"name": "open access repository of ulm university", "language": "en"} [{"acronym": "oparu"}] https://oparu.uni-ulm.de/ institutional [] 2022-01-12 15:35:50 2016-05-03 16:18:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ulm university", "alternativeName": "", "country": "de", "url": "http://www.uni-ulm.de/index.php?id=82", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://oparu.uni-ulm.de/oai/request yes 0 4845 +3624 {"name": "repositorio institucional de la universidad aut\u00f3noma del estado de m\u00e9xico", "language": "en"} [{"acronym": "ri"}] http://ri.uaemex.mx/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:47:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad aut\u00f3noma del estado de m\u00e9xico", "alternativeName": "", "country": "mx", "url": "http://www.uaemex.mx/", "identifier": [{"identifier": "https://ror.org/0079gpv38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ri.uaemex.mx/oai/request yes 40253 +3614 {"name": "institutional repository of volodymyr vinnychenko central state pedagogical university", "language": "en"} [{"acronym": "ekspuir"}, {"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435 \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0456\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u0432\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440\u0430 \u0432\u0438\u043d\u043d\u0438\u0447\u0435\u043d\u043a\u0430", "language": "uk"}, {"acronym": "ekspuir"}] http://dspace.kspu.kr.ua/jspui institutional [] 2022-01-12 15:35:51 2016-06-28 15:30:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "central ukrainian state pedagogical university named after volodymyr vinnychenko", "alternativeName": "", "country": "ua", "url": "https://www.cuspu.edu.ua/ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.kspu.kr.ua/oai/request yes 1460 2048 +3601 {"name": "electronic odessa national economic university institutional repository", "language": "en"} [{"acronym": "eoneur"}] http://dspace.oneu.edu.ua/ institutional [] 2022-01-12 15:35:50 2016-05-23 11:23:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "odessa national economic university", "alternativeName": "", "country": "ua", "url": "http://oneu.edu.ua/", "identifier": [{"identifier": "https://ror.org/03xzjyz35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6771 +3632 {"name": "electronic repository kyiv national university of technologies and design", "language": "en"} [{"acronym": "erknutd"}] http://er.knutd.com.ua/ institutional [] 2022-01-12 15:35:51 2016-07-04 16:37:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "kyiv national university of technologies and design", "alternativeName": "", "country": "ua", "url": "http://knutd.com.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://er.knutd.com.ua/oai/request yes 9153 +3599 {"name": "taibah university digital repository", "language": "en"} [{"acronym": "\u0645\u0633\u062a\u0648\u062f\u0639 \u062c\u0627\u0645\u0639\u0629 \u0637\u064a\u0628\u0629 \u0627\u0644\u0631\u0642\u0645\u064a"}] http://repository.taibahu.edu.sa/ institutional [] 2022-01-12 15:35:50 2016-05-23 10:54:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "taibah university", "alternativeName": "", "country": "sa", "url": "https://taibahu.edu.sa/pages/ar/home.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.taibahu.edu.sa/oai/ yes 0 6553 +3552 {"name": "bilecik university", "language": "en"} [] http://acikkaynak.bilecik.edu.tr/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:03:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bilecik university", "alternativeName": "", "country": "tr", "url": "http://www.bilecik.edu.tr/", "identifier": [{"identifier": "https://ror.org/00dzfx204", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 959 +3550 {"name": "dspace@hku", "language": "en"} [] http://openaccess.hku.edu.tr/ institutional [] 2022-01-12 15:35:49 2016-02-23 14:43:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hasan kalyoncu university", "alternativeName": "", "country": "tr", "url": "http://www.hku.edu.tr/", "identifier": [{"identifier": "https://ror.org/054g2pw49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.hku.edu.tr/oai/request yes 397 1711 +3606 {"name": "mcstor", "language": "en"} [] https://mcstor.library.milligan.edu/ institutional [] 2022-01-12 15:35:51 2016-05-23 13:35:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "milligan college", "alternativeName": "", "country": "us", "url": "http://www.milligan.edu/", "identifier": [{"identifier": "https://ror.org/001ksx577", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3131 +3598 {"name": "masinde muliro university of science and technology digital repository", "language": "en"} [] http://ir-library.mmust.ac.ke/ institutional [] 2022-01-12 15:35:50 2016-05-23 10:52:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "masinde muliro university of science and technology", "alternativeName": "", "country": "ke", "url": "http://www.mmust.ac.ke/", "identifier": [{"identifier": "https://ror.org/02tpk0p14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir-library.mmust.ac.ke/oai yes 0 147 +3567 {"name": "baskent university institutional repository", "language": "en"} [] http://acikerisim.baskent.edu.tr/ institutional [] 2022-01-12 15:35:50 2016-05-03 13:55:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "baskent university", "alternativeName": "", "country": "tr", "url": "http://www.baskent.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.baskent.edu.tr/oai/driver yes 0 1983 +3539 {"name": "batman university institutional repository", "language": "en"} [] http://earsiv.batman.edu.tr/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:12:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "batman \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.batman.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.batman.edu.tr/oai yes 0 102 +3527 {"name": "digital repository, university of moratuwa", "language": "en"} [] http://dl.lib.mrt.ac.lk/ institutional [] 2022-01-12 15:35:49 2016-02-08 10:33:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of moratuwa", "alternativeName": "", "country": "lk", "url": "http://www.lib.mrt.ac.lk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dl.lib.mrt.ac.lk/oai/request yes 2068 6316 +3621 {"name": "dspace cread", "language": "en"} [] http://dspace.cread.dz:8080/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:28:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "centre de recherche en economie appliquee pour le developpement", "alternativeName": "cread", "country": "dz", "url": "http://www.cread.dz/", "identifier": [{"identifier": "https://ror.org/05xdwy846", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 289 +3551 {"name": "institutional repository of chernihiv national university of technology", "language": "en"} [] http://ir.stu.cn.ua/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:00:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "chernihiv national university of technology", "alternativeName": "", "country": "ua", "url": "http://en.stu.cn.ua/", "identifier": [{"identifier": "https://ror.org/048mcz794", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.stu.cn.ua/oai/ yes 7829 +3571 {"name": "mevlana \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "en"} [] http://openaccess.mevlana.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:50 2016-05-03 14:14:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "mevlana university", "alternativeName": "", "country": "tr", "url": "http://www.mevlana.edu.tr/", "identifier": [{"identifier": "https://ror.org/00zv6rh96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.mevlana.edu.tr:8080/oai/request yes 0 543 +3617 {"name": "ordu \u00fcniversitesi a\u00e7\u0131k ar\u015fiv sistemi", "language": "en"} [] http://earsiv.odu.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:51 2016-06-28 16:09:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "ordu \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.odu.edu.tr/", "identifier": [{"identifier": "https://ror.org/04r0hn449", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 439 +3608 {"name": "dspace university of palestine", "language": "en"} [] http://dspace.up.edu.ps/jspui institutional [] 2022-01-12 15:35:51 2016-05-23 14:00:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of palestine", "alternativeName": "", "country": "ps", "url": "http://en.up.edu.ps/", "identifier": [{"identifier": "https://ror.org/04yhapk09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.up.edu.ps/oai/request yes 376 +3611 {"name": "dspace@esogu", "language": "en"} [] http://openaccess.ogu.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:51 2016-06-22 13:32:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "eski\u015fehir osmangazi \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.ogu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 693 +3626 {"name": "electronic archive of tomsk polytechnic university", "language": "en"} [] http://earchive.tpu.ru/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:57:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tomsk polytechnic university", "alternativeName": "", "country": "ru", "url": "http://tpu.ru/", "identifier": [{"identifier": "https://ror.org/00a45v709", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earchive.tpu.ru/oai/request yes 46970 +3623 {"name": "institutional repository in agricultural sciences of state agrarian university of moldova", "language": "en"} [] http://dspace.uasm.md/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:42:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "state agrarian university of moldova", "alternativeName": "", "country": "md", "url": "http://www.uasm.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2511 +3566 {"name": "pamukkale \u00fcniversitesi a\u00e7\u0131k eri\u015fim ar\u015fivi", "language": "en"} [] http://acikerisim.pau.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:35:50 2016-05-03 13:51:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "pamukkale \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.pau.edu.tr/", "identifier": [{"identifier": "https://ror.org/01etz1309", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.pau.edu.tr:8080/oai/request yes 1549 32717 +3591 {"name": "reposit\u00f3rio institucional da escola bahiana de medicina e sa\u00fade p\u00fablica", "language": "en"} [] https://www.repositorio.bahiana.edu.br:8443/jspui/ institutional [] 2022-01-12 15:35:50 2016-05-16 11:16:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "escola bahiana de medicina e sa\u00fade p\u00fablica", "alternativeName": "", "country": "br", "url": "https://www.bahiana.edu.br/", "identifier": [{"identifier": "https://ror.org/0300yd604", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 739 +3628 {"name": "shendi university repository", "language": "en"} [] http://repository.ush.sd:8080/xmlui/ institutional [] 2022-01-12 15:35:51 2016-07-04 16:18:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "shendi university", "alternativeName": "", "country": "sd", "url": "http://www.ush.sd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ush.sd:8080 yes 0 349 +3616 {"name": "university of thessaly institutional repository", "language": "en"} [] https://ir.lib.uth.gr institutional [] 2022-01-12 15:35:51 2016-06-28 16:00:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects"] [{"name": "university of thessaly", "alternativeName": "", "country": "gr", "url": "http://www.uth.gr/", "identifier": [{"identifier": "https://ror.org/04v4g9h31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.lib.uth.gr/oai/request yes 28577 +3618 {"name": "biblioteca de tesis", "language": "en"} [] http://bibliotecavirtual.unl.edu.ar/tesis institutional [] 2022-01-12 15:35:51 2016-07-04 15:11:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional del litoral", "alternativeName": "unl", "country": "ar", "url": "http://www.unl.edu.ar/", "identifier": [{"identifier": "https://ror.org/00pt8r998", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecavirtual.unl.edu.ar/tesis/oai/request?verb=identify yes 4 886 +3605 {"name": "corpus innovationis europaensis", "language": "en"} [] http://corpus.hist-lab.ru/ institutional [] 2022-01-12 15:35:51 2016-05-23 13:29:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "other_special_item_types"] [{"name": "federal state autonomous educational institution of higher professional education ural federal university named after the first president of russia b.n.yeltsin", "alternativeName": "", "country": "ru", "url": "http://urfu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://corpus.hist-lab.ru/oai/request yes 687 +3602 {"name": "e-library on disaster management", "language": "en"} [] http://kmp.dmic.org.bd/ governmental [] 2022-01-12 15:35:50 2016-05-23 11:31:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "government of bangladesh, department of disaster management", "alternativeName": "", "country": "bd", "url": "http://www.ddm.gov.bd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1038 +3541 {"name": "ebonyi state university institutional repository", "language": "en"} [] http://ir.ebsu.edu.ng:8080/xmlui institutional [] 2022-01-14 12:17:38 2016-02-16 09:30:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ebonyi state university, abakaliki", "alternativeName": "", "country": "ng", "url": "https://www.ebsu.edu.ng", "identifier": [{"identifier": "https://ror.org/01jhpwy79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 814 +3613 {"name": "federal university of technology, minna institutional repository", "language": "en"} [] http://dspace.futminna.edu.ng/jspui/ institutional [] 2022-01-12 15:35:51 2016-06-28 15:27:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "federal university of technology", "alternativeName": "", "country": "ng", "url": "http://www.futminna.edu.ng/", "identifier": [{"identifier": "https://ror.org/0568y3j03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4454 +3607 {"name": "najran universitys repository", "language": "en"} [] http://repository.nu.edu.sa/ institutional [] 2022-01-12 15:35:51 2016-05-23 13:45:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "najran university", "alternativeName": "", "country": "sa", "url": "http://www.nu.edu.sa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2387 +3597 {"name": "repositorio universidad de concepci\u00f3n", "language": "en"} [] http://repositorio.udec.cl/ institutional [] 2022-01-12 15:35:50 2016-05-23 10:29:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de concepci\u00f3n", "alternativeName": "", "country": "cl", "url": "http://www.udec.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udec.cl/oai yes 1318 +3590 {"name": "scriptorium", "language": "en"} [] http://www.scriptorium.uh.cu/ institutional [] 2022-01-12 15:35:50 2016-05-16 10:39:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de la habana", "alternativeName": "", "country": "cu", "url": "http://www.uh.cu/", "identifier": [{"identifier": "https://ror.org/04204gr61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2759 +3540 {"name": "ub scholarworks", "language": "en"} [] https://scholarworks.bridgeport.edu/xmlui/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:28:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of bridgeport", "alternativeName": "", "country": "us", "url": "http://www.bridgeport.edu/", "identifier": [{"identifier": "https://ror.org/01rf3yp57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://scholarworks.bridgeport.edu/oai/request? yes 2950 4227 +3533 {"name": "bilkent university institutional repository", "language": "en"} [] http://repository.bilkent.edu.tr/ institutional [] 2022-01-12 15:35:49 2016-02-11 10:59:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bilkent university", "alternativeName": "", "country": "tr", "url": "http://w3.bilkent.edu.tr/www/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.bilkent.edu.tr/oai/request yes 6686 31664 +3595 {"name": "istanbul ticaret university institutional repository (dspace@ticaret)", "language": "en"} [] http://acikerisim.ticaret.edu.tr/xmlui/ institutional [] 2022-01-12 15:35:50 2016-05-19 16:28:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "istanbul ticaret university", "alternativeName": "", "country": "tr", "url": "http://www.ticaret.edu.tr/", "identifier": [{"identifier": "https://ror.org/02v3kkq53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.ticaret.edu.tr/oai/request yes 1095 14202 +3532 {"name": "lutpub", "language": "en"} [] http://lutpub.lut.fi/ institutional [] 2022-01-12 15:35:49 2016-02-11 10:51:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets"] [{"name": "lappeenranta-lahti university of technology lut", "alternativeName": "lut university", "country": "fi", "url": "https://www.lut.fi/web/en", "identifier": [{"identifier": "https://ror.org/0208vgz68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lutpub.lut.fi/oai/request yes 40 74 +3543 {"name": "ediss", "language": "en"} [] https://ediss.uni-goettingen.de/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:44:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "georg-august-universit\u00e4t g\u00f6ttingen", "alternativeName": "sub g\u00f6ttingen", "country": "de", "url": "http://www.uni-goettingen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3600 {"name": "indonesian institute of the art yogyakarta", "language": "en"} [] http://digilib.isi.ac.id/ institutional [] 2022-01-12 15:35:50 2016-05-23 11:15:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "indonesian institute of the art yogyakarta", "alternativeName": "", "country": "id", "url": "http://www/isi.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.isi.ac.id/cgi/oai2 yes 5312 7482 +3620 {"name": "repository universitas negeri makassar", "language": "en"} [] http://eprints.unm.ac.id/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:18:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universitas negeri makassar", "alternativeName": "", "country": "id", "url": "http://www.unm.ac.id/", "identifier": [{"identifier": "https://ror.org/05fzw1z08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.unm.ac.id/cgi/oai2 yes 8002 15268 +3609 {"name": "repository uin sumatera utara", "language": "en"} [] http://repository.uinsu.ac.id/ institutional [] 2022-01-12 15:35:51 2016-06-20 11:09:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universitas islam negeri sumatera utara", "alternativeName": "", "country": "id", "url": "http://uinsu.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.uinsu.ac.id/cgi/oai2 yes 2833 +3615 {"name": "ethesis@nitr", "language": "en"} [] http://ethesis.nitrkl.ac.in/ institutional [] 2022-01-12 15:35:51 2016-06-28 15:40:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national institute of technology, rourkela", "alternativeName": "nitr", "country": "in", "url": "http://www.nitrkl.ac.in/", "identifier": [{"identifier": "https://ror.org/011gmn932", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ethesis.nitrkl.ac.in/policies.html", "type": "metadata"}, {"policy_url": "http://ethesis.nitrkl.ac.in/policies.html", "type": "data"}, {"policy_url": "http://ethesis.nitrkl.ac.in/policies.html", "type": "content"}, {"policy_url": "http://ethesis.nitrkl.ac.in/policies.html", "type": "submission"}, {"policy_url": "http://ethesis.nitrkl.ac.in/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://ethesis.nitrkl.ac.in/cgi/oai2 yes 6543 +3536 {"name": "unika repository", "language": "en"} [] http://repository.unika.ac.id/ institutional [] 2022-01-12 15:35:49 2016-02-16 08:45:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "unika soegijapranata (soegijapranata catholic university)", "alternativeName": "", "country": "id", "url": "http://unika.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.unika.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.unika.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.unika.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.unika.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.unika.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.unika.ac.id/cgi/oai2 yes 14947 +3619 {"name": "repository universitas pgri yogyakarta", "language": "en"} [] http://repository.upy.ac.id/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:17:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universitas pgri yogyakarta", "alternativeName": "", "country": "id", "url": "http://upy.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.upy.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.upy.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.upy.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.upy.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.upy.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.upy.ac.id/cgi/oai2 yes 1668 +3526 {"name": "hal-inrap", "language": "en"} [] https://hal-inrap.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:49 2016-01-26 11:04:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institut national de recherches arch\u00e9ologiques pr\u00e9ventives", "alternativeName": "inrap", "country": "fr", "url": "http://www.inrap.fr/", "identifier": [{"identifier": "https://ror.org/04andmq85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/inrap yes 144 9045 +3586 {"name": "kirchlicher dokumentenserver", "language": "en"} [{"acronym": "kidoks"}] https://kidoks.bsz-bw.de/home institutional [] 2022-01-12 15:35:50 2016-05-03 16:14:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "arbeitsgemeinschaft katholisch-theologischer bibliotheken", "alternativeName": "", "country": "de", "url": "http://www.akthb.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://kidoks.bsz-bw.de/oai yes 746 +3584 {"name": "wissenschaftliche publikationsserver der frankfurt university of applied sciences", "language": "en"} [{"acronym": "wips"}] https://fhffm.bsz-bw.de/home institutional [] 2022-01-12 15:35:50 2016-05-03 16:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "frankfurt university of applied sciences", "alternativeName": "", "country": "de", "url": "https://www.frankfurt-university.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://fhffm.bsz-bw.de/oai yes 152 414 +3578 {"name": "hochschulschriftenserver der ostfalia hochschule f\u00fcr angewandte wissenschaften", "language": "en"} [] https://opus.ostfalia.de/ institutional [] 2022-01-12 15:35:50 2016-05-03 15:39:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ostfalia hochschule f\u00fcr angewandte wissenschaften", "alternativeName": "", "country": "de", "url": "https://www.ostfalia.de/cms/de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.ostfalia.de/oai yes 678 +3557 {"name": "pub h-brs - publikationsserver der hochschule bonn-rhein-sieg", "language": "en"} [] https://pub.h-brs.de/home institutional [] 2022-01-12 15:35:50 2016-02-23 15:44:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hochschule bonn-rhein-sieg", "alternativeName": "", "country": "de", "url": "https://www.h-brs.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://pub.h-brs.de/oai yes 211 5022 +3581 {"name": "hochschulschriftenserver der hochschule emden/leer", "language": "de"} [] https://opus.hs-emden-leer.de/home institutional [] 2022-01-12 15:35:50 2016-05-03 15:50:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hochschule emden-leer", "alternativeName": "", "country": "de", "url": "http://www.hs-emden-leer.de", "identifier": [{"identifier": "https://ror.org/01bc76c69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.hs-emden-leer.de/oai yes 11 16 +3579 {"name": "dokumentenrepositorium der rub / rub-repository ruhr-universit\u00e4t bochum", "language": "de"} [] http://hss-opus.ub.ruhr-uni-bochum.de/opus4/home institutional [] 2022-01-12 15:35:50 2016-05-03 15:45:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ruhr-universit\u00e4t bochum", "alternativeName": "rub", "country": "de", "url": "https://www.ruhr-uni-bochum.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://hss-opus.ub.ruhr-uni-bochum.de/opus4/oai yes 0 8040 +3582 {"name": "publication server of furtwangen university of applied sciences", "language": "en"} [{"name": "hochschulschriftenserver der hochschule furtwangen", "language": "de"}, {"acronym": "opus-hfu"}] https://opus.hs-furtwangen.de/home institutional [] 2022-01-12 15:35:50 2016-05-03 16:03:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hochschule furtwangen university", "alternativeName": "", "country": "de", "url": "http://www.hs-furtwangen.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.hs-furtwangen.de/oai yes 76 5360 +3528 {"name": "fuldok - fuldaer dokumentenserver der hochschul- und landesbibliothek", "language": "en"} [] http://fuldok.hs-fulda.de/opus4/ institutional [] 2022-01-12 15:35:49 2016-02-11 09:18:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hochschule fulda", "alternativeName": "", "country": "de", "url": "http://www.hs-fulda.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://fuldok.hs-fulda.de/opus4/oai yes 249 604 +3558 {"name": "hkbu institutional repository", "language": "en"} [] http://repository.hkbu.edu.hk/ institutional [] 2022-01-12 15:35:50 2016-02-23 15:54:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hong kong baptist university", "alternativeName": "", "country": "hk", "url": "http://buwww.hkbu.edu.hk/eng/main/index.jsp", "identifier": [{"identifier": "https://ror.org/0145fw131", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 10029 +3554 {"name": "digital commons @ gardner-webb university", "language": "en"} [] http://digitalcommons.gardner-webb.edu/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:12:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "gardner-webb university", "alternativeName": "", "country": "us", "url": "http://gardner-webb.edu/", "identifier": [{"identifier": "https://ror.org/02gj0v433", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.gardner-webb.edu/do/oai/ yes 1375 +3546 {"name": "lehigh preserve", "language": "en"} [] http://preserve.lehigh.edu/ institutional [] 2022-01-12 15:35:49 2016-02-22 11:04:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "lehigh university", "alternativeName": "", "country": "us", "url": "http://www.lehigh.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 6710 +3577 {"name": "source: sheridan scholarly output undergraduate research creative excellence", "language": "en"} [] http://source.sheridancollege.ca/ institutional [] 2022-01-12 15:35:50 2016-05-03 15:29:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "sheridan college", "alternativeName": "", "country": "ca", "url": "https://www.sheridancollege.ca/", "identifier": [{"identifier": "https://ror.org/05jdsfp91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://source.sheridancollege.ca/do/oai/ yes 759 +3622 {"name": "neliti", "language": "en"} [] http://www.neliti.com/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:31:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets"] [{"name": "neliti", "alternativeName": "", "country": "id", "url": "http://www.neliti.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.neliti.com/oai yes 198132 +3564 {"name": "lsbu open research", "language": "en"} [{"acronym": "lbsu"}] https://openresearch.lsbu.ac.uk institutional [] 2022-01-12 15:35:50 2016-04-28 16:28:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "london south bank university", "alternativeName": "lsbu", "country": "gb", "url": "http://www.lsbu.ac.uk", "identifier": [{"identifier": "https://ror.org/02vwnat91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://openresearch.lsbu.ac.uk/oai2 yes 1850 +3596 {"name": "kitopen", "language": "en"} [] https://www.bibliothek.kit.edu/cms/kitopen.php institutional [] 2022-01-12 15:35:50 2016-05-23 09:54:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "karlsruher institut f\u00fcr technologie (kit)", "alternativeName": "", "country": "de", "url": "http://www.kit.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://publikationen.bibliothek.kit.edu/oai/fulltext/ yes 25808 +3574 {"name": "fjsl - fondation jeunes scientifiques luxembourg", "language": "en"} [] https://fjsl.mysciencework.com/ institutional [] 2022-01-12 15:35:50 2016-05-03 15:01:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "fondation jeunes scientifiques luxembourg", "alternativeName": "", "country": "lu", "url": "http://www.jonk-fuerscher.lu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3542 {"name": "tohoku institute of technology academic repository", "language": "en"} [{"name": "\u6771\u5317\u5de5\u696d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tohtech.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:41:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tohoku institute of technology", "alternativeName": "", "country": "jp", "url": "https://opac.tohtech.ac.jp/lib/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tohtech.repo.nii.ac.jp/oai yes +3589 {"name": "agi repository", "language": "en"} [{"name": "agi\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://agi.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:50 2016-05-16 10:30:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "asian growth research institute", "alternativeName": "agi", "country": "jp", "url": "http://www.agi.or.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://agi.repo.nii.ac.jp/oai yes 110 +3630 {"name": "repository of the faculty of food technology and biotechnology", "language": "en"} [] https://repozitorij.pbf.unizg.hr/en institutional [] 2022-01-12 15:35:51 2016-07-04 16:24:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +3603 {"name": "dafwa research library", "language": "en"} [] http://researchlibrary.agric.wa.gov.au/ governmental [] 2022-01-12 15:35:50 2016-05-23 11:39:23 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "government of western australia, department of agriculture and food, western australia", "alternativeName": "dafwa", "country": "au", "url": "http://www.agric.wa.gov.au/", "identifier": [{"identifier": "https://ror.org/02jq36h12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4488 +3547 {"name": "repository of agricultural research outputs", "language": "en"} [{"acronym": "cgspace"}] https://cgspace.cgiar.org/ institutional [] 2022-01-12 15:35:49 2016-02-22 11:12:50 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "cgiar consortium", "alternativeName": "", "country": "fr", "url": "http://www.cgiar.org/", "identifier": [{"identifier": "https://ror.org/04c4bm785", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://cgspace.cgiar.org/oai/request? yes 12811 90959 +3625 {"name": "digital repository of the greek biotope-wetland centre (ekby)", "language": "en"} [] http://repository.biodiversity-info.gr/ institutional [] 2022-01-12 15:35:51 2016-07-04 15:50:40 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf \u03b2\u03b9\u03bf\u03c4\u03cc\u03c0\u03c9\u03bd-\u03c5\u03b3\u03c1\u03bf\u03c4\u03cc\u03c0\u03c9\u03bd (greek biotope-wetland centre)", "alternativeName": "ekby", "country": "gr", "url": "http://www.ekby.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.biodiversity-info.gr/oai/request yes 177 2034 +3604 {"name": "nlr reports repository", "language": "en"} [] https://reports.nlr.nl/xmlui/ institutional [] 2022-01-12 15:35:51 2016-05-23 11:48:59 ["science"] ["unpub_reports_and_working_papers"] [{"name": "netherlands aerospace centre", "alternativeName": "nlr", "country": "nl", "url": "http://www.nlr.nl/", "identifier": [{"identifier": "https://ror.org/022sw4578", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://reports.nlr.nl/oai/request yes 1307 +3530 {"name": "usra houston repository", "language": "en"} [] https://repository.hou.usra.edu disciplinary [] 2022-01-12 15:35:49 2016-02-11 10:40:05 ["science"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "universities space research association", "alternativeName": "usra", "country": "us", "url": "http://www.usra.edu/", "identifier": [{"identifier": "https://ror.org/043pgqy52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 579 1444 +3563 {"name": "school of business ipb repository", "language": "en"} [] http://repository.sb.ipb.ac.id/ institutional [] 2022-01-12 15:35:50 2016-04-28 15:53:15 ["social sciences"] ["theses_and_dissertations"] [{"name": "bogor agricultural university", "alternativeName": "", "country": "id", "url": "http://www.ipb.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.sb.ipb.ac.id/cgi/oai2? yes 163 3315 +3553 {"name": "source", "language": "en"} [] http://source.ucdenver.edu/ institutional [] 2022-01-12 15:35:49 2016-02-23 15:09:08 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of colorado denver", "alternativeName": "", "country": "us", "url": "http://www.ucdenver.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1409 +3562 {"name": "matdb", "language": "en"} [] https://odin.jrc.ec.europa.eu/alcor/main.jsp disciplinary [] 2022-01-12 15:35:50 2016-04-20 10:53:04 ["technology"] ["datasets"] [{"name": "european commission joint research centre", "alternativeName": "", "country": "be", "url": "https://ec.europa.eu/jrc", "identifier": [{"identifier": "https://ror.org/02qezmz13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3534 {"name": "reti medievali open archive", "language": "en"} [] http://www.rmoa.unina.it/ disciplinary [] 2022-01-12 15:35:49 2016-02-11 11:17:12 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di napoli federico il", "alternativeName": "unina", "country": "it", "url": "http://www.unina.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.rmoa.unina.it/policies.html", "type": "metadata"}, {"policy_url": "http://www.rmoa.unina.it/policies.html", "type": "data"}, {"policy_url": "http://www.rmoa.unina.it/policies.html", "type": "content"}, {"policy_url": "http://www.rmoa.unina.it/policies.html", "type": "submission"}, {"policy_url": "http://www.rmoa.unina.it/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://www.rmoa.unina.it/cgi/oai2 yes 5771 5988 +3573 {"name": "vault", "language": "en"} [] http://vault.cca.edu/ institutional [] 2022-01-12 15:35:50 2016-05-03 14:51:51 ["arts", "humanities"] ["journal_articles", "other_special_item_types"] [{"name": "california college of the arts", "alternativeName": "", "country": "us", "url": "https://www.cca.edu/", "identifier": [{"identifier": "https://ror.org/01mmcf932", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "equella", "version": ""} https://vault.cca.edu/oai yes 54 3433 +3544 {"name": "\u00e9duq", "language": "en"} [] https://eduq.info/ institutional [] 2022-01-12 15:35:49 2016-02-16 09:55:53 ["social sciences"] ["bibliographic_references", "learning_objects"] [{"name": "centre de documentation coll\u00e9giale", "alternativeName": "", "country": "ca", "url": "http://cdc.qc.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://eduq.info/oai/request yes 4691 37183 +3592 {"name": "natural history museum repository", "language": "en"} [] https://nhm.openrepository.com/nhm/ institutional [] 2022-01-12 15:35:50 2016-05-16 11:37:09 ["humanities", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "natural history museum", "alternativeName": "", "country": "gb", "url": "http://www.nhm.ac.uk/", "identifier": [{"identifier": "https://ror.org/039zvsn29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://nhm.openrepository.com/nhm/pages/about.html", "type": "metadata"}, {"policy_url": "https://nhm.openrepository.com/nhm/pages/about.html", "type": "data"}, {"policy_url": "https://nhm.openrepository.com/nhm/pages/about.html", "type": "content"}, {"policy_url": "https://nhm.openrepository.com/nhm/pages/about.html", "type": "submission"}, {"policy_url": "https://nhm.openrepository.com/nhm/pages/about.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://nhm.openrepository.com/nhm-oai/request yes 475 927 +3531 {"name": "institutionelles repositorium der leibniz universit\u00e4t hannover", "language": "en"} [] http://www.repo.uni-hannover.de/ institutional [] 2022-01-12 15:35:49 2016-02-11 10:48:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "leibniz universit\u00e4t hannover", "alternativeName": "", "country": "de", "url": "https://www.uni-hannover.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.repo.uni-hannover.de/page/depositlicense", "type": "metadata"}, {"policy_url": "https://www.repo.uni-hannover.de/page/publish", "type": "content"}, {"policy_url": "https://www.repo.uni-hannover.de/page/publish", "type": "submission"}, {"policy_url": "https://www.repo.uni-hannover.de/page/guidelines", "type": "preservation"}] {"name": "dspace", "version": ""} http://www.repo.uni-hannover.de/oai/request yes 6697 10711 +3549 {"name": "oar@um", "language": "en"} [] https://www.um.edu.mt/library/oar/ institutional [] 2022-01-12 15:35:49 2016-02-22 11:50:12 ["humanities", "arts", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "university of malta", "alternativeName": "um", "country": "mt", "url": "https://www.um.edu.mt", "identifier": [{"identifier": "https://ror.org/03a62bv60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.um.edu.mt/library/guidelinespolicies/oarpolicies", "type": "metadata"}, {"policy_url": "https://www.um.edu.mt/library/guidelinespolicies/oarpolicies", "type": "content"}, {"policy_url": "https://www.um.edu.mt/library/guidelinespolicies/oarpolicies", "type": "submission"}, {"policy_url": "https://www.um.edu.mt/library/guidelinespolicies/oarpolicies", "type": "preservation"}] {"name": "dspace", "version": ""} https://www.um.edu.mt/library/oar/oai/openaire yes 11320 13792 +3535 {"name": "iiasa pure", "language": "en"} [] http://pure.iiasa.ac.at/ institutional [] 2022-01-12 15:35:49 2016-02-15 16:13:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "international institute for applied systems analysis (iiasa)", "alternativeName": "", "country": "at", "url": "http://www.iiasa.ac.at/", "identifier": [{"identifier": "https://ror.org/02wfhk785", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://pure.iiasa.ac.at/policies.html", "type": "metadata"}, {"policy_url": "http://pure.iiasa.ac.at/policies.html", "type": "data"}, {"policy_url": "http://pure.iiasa.ac.at/policies.html", "type": "content"}, {"policy_url": "http://pure.iiasa.ac.at/policies.html", "type": "submission"}, {"policy_url": "http://pure.iiasa.ac.at/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://pure.iiasa.ac.at/cgi/oai2 yes 8926 16427 +3631 {"name": "agritrop", "language": "en"} [] http://agritrop.cirad.fr/ institutional [] 2022-01-12 15:35:51 2016-07-04 16:30:45 ["science", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "centre de coop\u00e9ration international en recherche agronomique pour le d\u00e9veloppement", "alternativeName": "cirad", "country": "fr", "url": "http://www.cirad.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://agritrop.cirad.fr/mention_legale.html", "type": "metadata"}, {"policy_url": "https://agritrop.cirad.fr/mention_legale.html", "type": "data"}, {"policy_url": "https://agritrop.cirad.fr/mention_legale.html", "type": "content"}] {"name": "eprints", "version": ""} http://agritrop.cirad.fr/cgi/oai2 yes 26727 109046 +3651 {"name": "acu research bank", "language": "en"} [] https://acuresearchbank.acu.edu.au institutional [] 2022-01-12 15:35:51 2016-07-20 14:00:44 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "australian catholic university", "alternativeName": "", "country": "au", "url": "http://www.acu.edu.au/", "identifier": [{"identifier": "https://ror.org/04cxm4j25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://acuresearchbank.acu.edu.au/oai2 yes 3088 27143 +3637 {"name": "ir south eastern university of sri lanka", "language": "en"} [{"acronym": "seuir"}] http://ir.lib.seu.ac.lk institutional [] 2022-01-12 15:35:51 2016-07-06 11:32:33 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "south eastern university of sri lanka", "alternativeName": "", "country": "lk", "url": "http://www.seu.ac.lk", "identifier": [{"identifier": "https://ror.org/007vzmy24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.lib.seu.ac.lk/oai/request yes 1188 2198 +3681 {"name": "medical academic repository", "language": "en"} [] http://eprints.mu-varna.bg/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:20:42 ["arts", "humanities", "science", "social sciences"] ["theses_and_dissertations"] [{"name": "medical university - varna", "alternativeName": "", "country": "bg", "url": "http://www.mu-varna.bg/en", "identifier": [{"identifier": "https://ror.org/03jkshc47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.mu-varna.bg/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.mu-varna.bg/policies.html", "type": "data"}, {"policy_url": "http://eprints.mu-varna.bg/policies.html", "type": "content"}, {"policy_url": "http://eprints.mu-varna.bg/policies.html", "type": "submission"}, {"policy_url": "http://eprints.mu-varna.bg/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.mu-varna.bg/cgi/oai2 yes 349 +3719 {"name": "biblio at institute of formal and applied linguistics", "language": "en"} [] http://ufal.mff.cuni.cz/biblio/ institutional [] 2022-01-12 15:35:52 2016-09-06 13:24:48 ["arts", "humanities"] ["journal_articles", "bibliographic_references"] [{"name": "charles university", "alternativeName": "", "country": "cz", "url": "http://www.cuni.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://lindat.mff.cuni.cz/biblio/oai yes 58 346 +3649 {"name": "linguistic electronic archive", "language": "en"} [{"acronym": "lear"}] http://lear.unive.it/ institutional [] 2022-01-12 15:35:51 2016-07-07 15:28:09 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ca foscari university of venice", "alternativeName": "", "country": "it", "url": "http://www.unive.it/pag/13526/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 6831 +3640 {"name": "the national museum of western art, tokyo /publications repository", "language": "en"} [{"name": "\u56fd\u7acb\u897f\u6d0b\u7f8e\u8853\u9928\u51fa\u7248\u7269\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nmwa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:51 2016-07-06 11:52:51 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "the national museum of western art, tokyo", "alternativeName": "kokuritsu seiy? bijutsukan", "country": "jp", "url": "http://www.nmwa.go.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nmwa.repo.nii.ac.jp/oai yes 663 755 +3694 {"name": "fachrepositorium lebenswissenschaften", "language": "de"} [{"acronym": "publisso"}, {"name": "repository for life sciences", "language": "en"}, {"acronym": "publisso"}] https://repository.publisso.de/ disciplinary [] 2022-01-12 15:35:52 2016-08-09 14:02:17 ["health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "zb med informationszentrum lebenswissenschaften", "alternativeName": "zb med", "country": "de", "url": "http://www.zbmed.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.publisso.de/open-access-publizieren/repositorien/fachrepositorium-lebenswissenschaften/leitlinien-policy/", "type": "data"}, {"policy_url": "http://www.publisso.de/open-access-publizieren/repositorien/fachrepositorium-lebenswissenschaften/leitlinien-policy/", "type": "preservation"}] {"name": "fedora", "version": ""} https://frl.publisso.de/oai-pmh/ yes 3892 +3713 {"name": "institutional repository in medical sciences of nicolae testemitanu state university of medicine and pharmacy of the republic of moldova", "language": "en"} [{"acronym": "irms \u2013 nicolae testemitanu sumph"}] http://repository.usmf.md institutional [] 2022-01-12 15:35:52 2016-09-02 13:24:17 ["health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "nicolae testemitanu state university of medicine and pharmacy of the republic of moldova", "alternativeName": "usmf", "country": "md", "url": "https://usmf.md", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.usmf.md/oai/request yes 4609 +3671 {"name": "repository of faculty of pharmacy and biochemistry university of zgreb", "language": "en"} [] https://repozitorij.pharma.unizg.hr/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:29:21 ["health and medicine", "science"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.pharma.unizg.hr/oai yes 816 1683 +3633 {"name": "national taipei university of nursing and health sciences repository", "language": "en"} [{"acronym": "ntunhsr"}] http://irlib.ntunhs.edu.tw/ institutional [] 2022-01-12 15:35:51 2016-07-06 10:34:09 ["health and medicine", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "national taipei university of nursing and health sciences", "alternativeName": "\u81fa\u5317\u8b77\u7406\u5065\u5eb7\u5927\u5b78", "country": "tw", "url": "http://www.ntunhs.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://irlib.ntunhs.edu.tw/ir-oai/request yes 2 6619 +3639 {"name": "kyoto prefectural university of medicine institutional repository (kissei)", "language": "en"} [{"name": "\u4eac\u90fd\u5e9c\u7acb\u533b\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea\u3000\u6a58\u4e95", "language": "ja"}] https://kpu-m.repo.nii.ac.jp institutional [] 2022-01-12 15:35:51 2016-07-06 11:50:38 ["health and medicine"] ["theses_and_dissertations"] [{"name": "kyoto prefectural university of medicine", "alternativeName": "", "country": "jp", "url": "http://www.kpu-m.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kpu-m.repo.nii.ac.jp/oai yes 127 +3699 {"name": "repository of the school of dental medicine university of zagreb", "language": "en"} [] https://repozitorij.sfzg.unizg.hr/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:28:42 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.sfzg.unizg.hr/oai yes 0 371 +3724 {"name": "heritage repository", "language": "en"} [] http://digi.nrf.ac.za/dspace institutional [] 2022-01-12 15:35:52 2016-09-06 14:27:27 ["humanities", "science", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "national research foundation", "alternativeName": "", "country": "za", "url": "http://www.nrf.ac.za/", "identifier": [{"identifier": "https://ror.org/05s0g1g46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 399 +3646 {"name": "archipelago", "language": "en"} [] http://archipelago.aegean.gr/ institutional [] 2022-01-12 15:35:51 2016-07-07 14:43:06 ["humanities", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of the aegean", "alternativeName": "", "country": "gr", "url": "http://www.aegean.gr/", "identifier": [{"identifier": "https://ror.org/03zsp3p94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://archipelago.aegean.gr/dr_policies_el.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} yes 5992 +3682 {"name": "electronic library of the belarusian state academy of agriculture", "language": "en"} [] http://elib.baa.by/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:34:04 ["humanities", "science"] ["journal_articles", "conference_and_workshop_papers", "learning_objects"] [{"name": "belarusian state academy of agriculture", "alternativeName": "", "country": "by", "url": "http://baa.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 533 +3693 {"name": "rural access library", "language": "en"} [] http://www.research4cap.org/index.php/resources/rural-access-library disciplinary [] 2022-01-12 15:35:52 2016-08-09 13:31:30 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "research for community access partnership (recap)", "alternativeName": "", "country": "gb", "url": "http://www.research4cap.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.research4cap.org/sitepages/ral-policies.aspx", "type": "metadata"}, {"policy_url": "http://www.research4cap.org/sitepages/ral-policies.aspx", "type": "data"}, {"policy_url": "http://www.research4cap.org/sitepages/ral-policies.aspx", "type": "content"}, {"policy_url": "http://www.research4cap.org/sitepages/ral-policies.aspx", "type": "submission"}, {"policy_url": "http://www.research4cap.org/sitepages/ral-policies.aspx", "type": "preservation"}] {"name": "other", "version": ""} yes 939 +3641 {"name": "repository of the chatolic faculty of theology in \u0111akovo", "language": "en"} [] https://repozitorij.djkbf.hr/ institutional [] 2022-01-12 15:35:51 2016-07-06 11:56:42 ["humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "catholic faculty of theology in \u0111akovo", "alternativeName": "", "country": "hr", "url": "http://www.djkbf.unios.hr/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.djkbf.hr/oai yes 2 160 +3715 {"name": "institutional repository of economic knowledge", "language": "en"} [{"acronym": "irek - aesm"}] http://irek.ase.md/xmlui/ institutional [] 2022-01-12 15:35:52 2016-09-02 13:49:57 ["mathematics", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "academia de studii economice a moldovei", "alternativeName": "", "country": "md", "url": "http://ase.md/", "identifier": [{"identifier": "https://ror.org/04d26v797", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 453 +3648 {"name": "repos", "language": "en"} [] http://repozytorium.uph.edu.pl/ institutional [] 2022-01-12 15:35:51 2016-07-07 15:04:10 ["science", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "siedlce university of natural sciences and humanities", "alternativeName": "", "country": "pl", "url": "http://www.uph.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repozytorium.uph.edu.pl/oai/request yes 2330 3218 +3735 {"name": "real corp", "language": "en"} [] http://repository.corp.at/ institutional [] 2022-01-12 15:35:52 2016-09-14 15:25:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "competence center of urban and regional planning", "alternativeName": "corp", "country": "at", "url": "http://www.corp.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.corp.at/policies.html", "type": "metadata"}] {"name": "eprints", "version": ""} http://repository.corp.at/cgi/oai2 yes 475 +3722 {"name": "brown digital repository", "language": "en"} [] https://repository.library.brown.edu/studio/ institutional [] 2022-01-12 15:35:52 2016-09-06 14:02:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "brown university", "alternativeName": "", "country": "us", "url": "https://www.brown.edu/", "identifier": [{"identifier": "https://ror.org/05gq02987", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3643 {"name": "digitale landesbibliothek ober\u00f6sterreichische", "language": "en"} [] http://digi.landesbibliothek.at/ institutional [] 2022-01-12 15:35:51 2016-07-06 12:15:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ober\u00f6sterreichische landesbibliothek", "alternativeName": "", "country": "at", "url": "http://www.landesbibliothek.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digi.landesbibliothek.at/oai yes 344 6284 +3665 {"name": "archivio istituzionale della ricerca - universit\u00e0 di trieste", "language": "en"} [{"acronym": "arts"}] https://arts.units.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:18:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di trieste", "alternativeName": "", "country": "it", "url": "http://www.units.it/", "identifier": [{"identifier": "https://ror.org/02n742c10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://arts.units.it/oai/request yes 3961 84203 +3726 {"name": "archivo climatol\u00f3gico y meteorol\u00f3gico institucional de aemet", "language": "en"} [{"acronym": "arcim\u00eds"}] http://repositorio.aemet.es/ institutional [] 2022-01-12 15:35:52 2016-09-07 13:45:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "agencia estatal de meteorolog\u00eda", "alternativeName": "aemet", "country": "es", "url": "http://www.aemet.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8531 +3716 {"name": "digital institutional repository of ion creang\u0103 pedagogical state university", "language": "en"} [{"acronym": "dir-spu"}] http://dir.upsc.md:8080/xmlui/ institutional [] 2022-01-12 15:35:52 2016-09-02 13:57:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ion creang\u0103 pedagogical state university", "alternativeName": "", "country": "md", "url": "http://www.upsc.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 869 +3674 {"name": "archivio istituzionale della ricerca - universit\u00e0 di modena e reggio emilia", "language": "en"} [{"acronym": "iris unimore"}] https://iris.unimore.it/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:44:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 di modena e reggio emilia", "alternativeName": "", "country": "it", "url": "http://www.unimore.it/", "identifier": [{"identifier": "https://ror.org/02d4c4y02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unimore.it/oai/request yes 6190 94942 +3684 {"name": "institutional research information system", "language": "en"} [{"acronym": "iris"}, {"name": "sistema informativo di ricerca istituzionale", "language": "it"}, {"acronym": "iris"}] https://unora.unior.it institutional [] 2022-01-12 15:35:52 2016-07-26 11:44:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of naples lorientale", "alternativeName": "", "country": "it", "url": "http://www.unior.it", "identifier": [{"identifier": "https://ror.org/01q9h8k89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://unora.unior.it/oai/openaire yes 0 14210 +3662 {"name": "archivio istituzionale della ricerca - universit\u00e0 di brescia", "language": "en"} [{"acronym": "openbs"}] https://iris.unibs.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:13:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di brescia", "alternativeName": "", "country": "it", "url": "http://www.unibs.it/", "identifier": [{"identifier": "https://ror.org/02q2d2610", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unibs.it/oai/request yes 2458 61259 +3714 {"name": "institutional repository open research archive of alecu russo b\u0103l\u021bi state university", "language": "en"} [{"acronym": "ora usarb"}] http://dspace.usarb.md:8080/jspui/ institutional [] 2022-01-12 15:35:52 2016-09-02 13:37:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universitatea de stat \u201ealecu russo\u201d din b\u0103l\u021bi", "alternativeName": "", "country": "md", "url": "http://www.usarb.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2948 +3679 {"name": "p\u00e9csi egyetemi arch\u00edvum", "language": "en"} [{"acronym": "pea"}] http://pea.lib.pte.hu/ institutional [] 2022-01-12 15:35:52 2016-07-26 10:48:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "p\u00e9csi tudom\u00e1nyegyetem (university of p\u00e9cs)", "alternativeName": "", "country": "hu", "url": "http://www.pte.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://pea.lib.pte.hu/oai/request yes 1781 3222 +3692 {"name": "registro nacional de trabajos de investigaci\u00f3n - renati", "language": "en"} [{"acronym": "renati"}] http://renati.sunedu.gob.pe/ institutional [] 2022-01-12 15:35:52 2016-08-05 10:47:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "superintendencia nacional de educaci\u00f3n superior universitaria", "alternativeName": "sunedu", "country": "pe", "url": "http://www.sunedu.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://renati.sunedu.gob.pe/oai/request yes 435 545631 +3731 {"name": "archivio istituzionale della ricerca - politecnico di milano", "language": "en"} [] https://re.public.polimi.it/ institutional [] 2022-01-12 15:35:52 2016-09-08 16:22:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "politecnico di milano", "alternativeName": "", "country": "it", "url": "http://www.polimi.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://re.public.polimi.it/oai/request? yes 7365 143581 +3732 {"name": "archivio istituzionale della ricerca - universit\u00e0 di macerata", "language": "en"} [] https://u-pad.unimc.it/ institutional [] 2022-01-12 15:35:52 2016-09-08 16:33:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di macerata", "alternativeName": "", "country": "it", "url": "http://www.unimc.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://u-pad.unimc.it/oai/request? yes 1810 31272 +3672 {"name": "electronic arhive of vitebsk state medical university library (\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0432\u0438\u0442\u0435\u0431\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043c\u0435\u0434\u0438\u0446\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430)", "language": "en"} [] http://elib.vsmu.by/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:37:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "vitebsk state medical university, belarus", "alternativeName": "", "country": "by", "url": "http://vsmu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.vsmu.by/oai/request yes 6490 15313 +3729 {"name": "institutional research information system at scuola superiore santanna", "language": "en"} [{"name": "archivio della ricerca della scuola superiore santanna", "language": "it"}] https://www.iris.sssup.it institutional [] 2022-01-12 15:35:52 2016-09-07 14:08:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "patents"] [{"name": "scuola superiore santanna", "alternativeName": "", "country": "it", "url": "https://www.santannapisa.it", "identifier": [{"identifier": "https://ror.org/025602r80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.iris.sssup.it/oai/request? yes 1119 19291 +3647 {"name": "jagiellonian university repository", "language": "en"} [] http://ruj.uj.edu.pl/ institutional [] 2022-01-12 15:35:51 2016-07-07 14:51:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "jagiellonian university", "alternativeName": "", "country": "pl", "url": "http://www.uj.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ruj.uj.edu.pl/oai/request yes 17497 225862 +3712 {"name": "opin visindi", "language": "en"} [] https://opinvisindi.is/ institutional [] 2022-01-12 15:35:52 2016-09-01 14:49:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of iceland; university of reykjavik; university of akureyri; agricultural university of iceland; university of bifr\u00f6st; iceland academy of the arts; h\u00f3lar university college and national and university library of iceland", "alternativeName": "", "country": "is", "url": "https://opinvisindi.is/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://opinvisindi.is/oai/request yes 466 2409 +3635 {"name": "repositorio institucional uladech cat\u00f3lica", "language": "en"} [] http://repositorio.uladech.edu.pe/ institutional [] 2022-01-12 15:35:51 2016-07-06 11:22:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica los \u00e1ngeles de chimbote", "alternativeName": "", "country": "pe", "url": "http://www.uladech.edu.pe/", "identifier": [{"identifier": "https://ror.org/054rm6z62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uladech.edu.pe/oai/ yes 0 3946 +3730 {"name": "archivio della ricerca - universit\u00e0 degli studi di napoli federico ii", "language": "en"} [] https://www.iris.unina.it/ institutional [] 2022-01-12 15:35:52 2016-09-07 14:19:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di napoli federico il", "alternativeName": "unina", "country": "it", "url": "http://www.unina.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.iris.unina.it/oai/request? yes 6088 275576 +3688 {"name": "archivio istituzionale della ricerca - universit\u00e0 di bari", "language": "en"} [] https://ricerca.uniba.it/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:52:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universit\u00e0 degli studi di bari", "alternativeName": "", "country": "it", "url": "http://www.uniba.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ricerca.uniba.it/oai/request? yes 65 119640 +3636 {"name": "reposit\u00f3rio institucional da unila", "language": "en"} [] https://dspace.unila.edu.br/ institutional [] 2022-01-12 15:35:51 2016-07-06 11:26:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade federal da integra\u00e7\u00e3o latino-americana", "alternativeName": "unila", "country": "br", "url": "https://www.unila.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.unila.edu.br/oai/request? yes 2945 +3664 {"name": "archivio della ricerca - universit\u00e0 degli studi di teramo", "language": "en"} [] https://research.unite.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:17:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di teramo", "alternativeName": "", "country": "it", "url": "http://www.unite.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://research.unite.it/oai/request yes 22 17404 +3687 {"name": "archivio della ricerca - universit\u00e0 degli studi di napoli \"parthenope\"", "language": "en"} [] https://ricerca.uniparthenope.it/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:50:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi napoli parthenope", "alternativeName": "", "country": "it", "url": "http://www.uniparthenope.it/", "identifier": [{"identifier": "https://ror.org/05pcv4v03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ricerca.uniparthenope.it/oai/request? yes 46 19668 +3686 {"name": "archivio della ricerca- universit\u00e0 di roma la sapienza", "language": "en"} [] https://iris.uniroma1.it/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:47:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi la sapienza di roma", "alternativeName": "", "country": "it", "url": "http://www.uniroma1.it/", "identifier": [{"identifier": "https://ror.org/02be6w209", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.uniroma1.it/oai/request? yes 13950 434892 +3685 {"name": "archivio istituzionale della ricerca - inrim", "language": "en"} [] https://iris.inrim.it/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:45:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "instituto nazionale di ricerca metrologica", "alternativeName": "inrim", "country": "it", "url": "http://www.inrim.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.inrim.it/oai/request? yes 154 6191 +3660 {"name": "archivio istituzionale della ricerca - universit\u00e0 dellinsubria", "language": "en"} [] https://irinsubria.uninsubria.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:08:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universit\u00e0 dell insubria (varese)", "alternativeName": "", "country": "it", "url": "http://www4.uninsubria.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://irinsubria.uninsubria.it/oai/request? yes 1116 46133 +3705 {"name": "archivio istituzionale della ricerca - universit\u00e0 di cagliari", "language": "en"} [] https://iris.unica.it/ institutional [] 2022-01-12 15:35:52 2016-08-26 14:18:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di cagliari", "alternativeName": "unica", "country": "it", "url": "http://www.unica.it/index.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unica.it/oai/request? yes 2425 82419 +3710 {"name": "archivio istituzionale della ricerca - universit\u00e0 di genova", "language": "en"} [] https://iris.unige.it/ institutional [] 2022-01-12 15:35:52 2016-08-30 13:04:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di genova", "alternativeName": "", "country": "it", "url": "https://www.unige.it/", "identifier": [{"identifier": "https://ror.org/0107c5v14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unige.it/oai/request? yes 1368 149092 +3657 {"name": "archivio istituzionale della ricerca - universit\u00e0 di padova", "language": "it"} [{"name": "institutional research repository of the university of padua", "language": "en"}] https://www.research.unipd.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:00:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of padua", "alternativeName": "", "country": "it", "url": "http://www.unipd.it/", "identifier": [{"identifier": "https://ror.org/01pyqxp87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.research.unipd.it/oai/request yes 3250 251278 +3656 {"name": "archivio istituzionale della ricerca - universit\u00e0 di urbino", "language": "en"} [] https://ora.uniurb.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 14:45:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e0 degli studi di urbino", "alternativeName": "", "country": "it", "url": "http://www.uniurb.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ora.uniurb.it/oai/request? yes 163 37430 +3670 {"name": "archivio istituzionale della ricerca - ecampus universit\u00e0 telematica", "language": "en"} [] https://iris.uniecampus.it/ institutional [] 2022-01-12 15:35:52 2016-07-20 15:27:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "ecampus universit\u00e0 telematica", "alternativeName": "", "country": "it", "url": "http://www.uniecampus.it/", "identifier": [{"identifier": "https://ror.org/006maft66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.uniecampus.it/oai/request yes 1 5909 +3683 {"name": "cam\u00f5es - reposit\u00f3rio institucional da universidade aut\u00f3noma de lisboa", "language": "en"} [] http://repositorio.ual.pt/ institutional [] 2022-01-12 15:35:52 2016-07-26 11:38:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents"] [{"name": "universidade aut\u00f3noma da lisboa", "alternativeName": "", "country": "pt", "url": "http://autonoma.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ual.pt/oaiextended/request yes 77 100 +3690 {"name": "investigo", "language": "en"} [] http://www.investigo.biblioteca.uvigo.es/xmlui institutional [] 2022-01-12 15:35:52 2016-08-01 09:47:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade de vigo", "alternativeName": "", "country": "es", "url": "https://uvigo.gal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.investigo.biblioteca.uvigo.es/oai/request yes 462 1994 +3707 {"name": "campus", "language": "it"} [] https://pubblicazioni.unicam.it institutional [] 2022-01-12 15:35:52 2016-08-26 14:28:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universita di camerino", "alternativeName": "", "country": "it", "url": "http://www.unicam.it", "identifier": [{"identifier": "https://ror.org/0005w8d69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://pubblicazioni.unicam.it/oai/request yes 617 25951 +3728 {"name": "archivio della ricerca - universit\u00e0 di pisa", "language": "en"} [] https://arpi.unipi.it/ institutional [] 2022-01-12 15:35:52 2016-09-07 14:05:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di pisa", "alternativeName": "", "country": "it", "url": "https://www.unipi.it/", "identifier": [{"identifier": "https://ror.org/03ad39j10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://arpi.unipi.it/oai/request? yes 5901 185316 +3668 {"name": "archivio della ricerca - universit\u00e0 di roma 3", "language": "en"} [] https://iris.uniroma3.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:25:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi roma tre", "alternativeName": "", "country": "it", "url": "http://www.uniroma3.it/", "identifier": [{"identifier": "https://ror.org/05vf0dg29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.uniroma3.it/oai/request yes 52 100076 +3678 {"name": "bartin university institutional repository", "language": "en"} [{"name": "bart\u0131n \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}] http://acikerisim.bartin.edu.tr institutional [] 2022-01-12 15:35:52 2016-07-26 10:22:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bartin university", "alternativeName": "", "country": "tr", "url": "https://w3.bartin.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.bartin.edu.tr/oai/request yes 138 +3642 {"name": "uvh repository", "language": "en"} [] http://repository.uvh.nl/ institutional [] 2022-01-12 15:35:51 2016-07-06 12:07:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of humanistic studies", "alternativeName": "", "country": "nl", "url": "http://www.uvh.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uvh.nl/oai/request?verb=identify yes 476 3693 +3706 {"name": "archivio della ricerca - universit\u00e0 della basilicata", "language": "en"} [] https://iris.unibas.it/ institutional [] 2022-01-12 15:35:52 2016-08-26 14:20:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi della basilicata", "alternativeName": "", "country": "it", "url": "http://portale.unibas.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unibas.it/oai/request yes 5 28321 +3666 {"name": "archivio della ricerca - universit\u00e0 di salerno", "language": "en"} [] https://www.iris.unisa.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:22:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di salerno", "alternativeName": "", "country": "it", "url": "http://www.unisa.it/", "identifier": [{"identifier": "https://ror.org/0192m2k53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.iris.unisa.it/oai/request yes 27 88366 +3661 {"name": "archivio istituzionale della ricerca - universit\u00e0 iuav di venezia", "language": "en"} [] https://air.iuav.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:09:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 iuav- venezia", "alternativeName": "", "country": "it", "url": "http://www.iuav.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://air.iuav.it/oai/request? yes 33 20954 +3659 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi di udine", "language": "en"} [] https://air.uniud.it/ institutional [] 2022-01-12 15:35:51 2016-07-20 15:05:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di udine", "alternativeName": "", "country": "it", "url": "http://www.uniud.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://air.uniud.it/oai/request? yes 2482 71699 +3709 {"name": "archivio istituzionale della ricerca - universit\u00e0 di ferrara", "language": "en"} [] https://iris.unife.it/ institutional [] 2022-01-12 15:35:52 2016-08-30 13:02:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di ferrara", "alternativeName": "", "country": "it", "url": "http://www.unife.it/", "identifier": [{"identifier": "https://ror.org/041zkgm14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.unife.it/oai/request? yes 836 80388 +3645 {"name": "current research information system, tei of epirus", "language": "en"} [] http://cris.teiep.gr/ institutional [] 2022-01-12 15:35:51 2016-07-07 14:36:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "technological educational institute of epirus", "alternativeName": "", "country": "gr", "url": "http://www.teiep.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 582 +3723 {"name": "repositorio de tesis electr\u00f3nicas - universidad cient\u00edfica del sur", "language": "en"} [] http://repositorio.cientifica.edu.pe/ institutional [] 2022-01-12 15:35:52 2016-09-06 14:06:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad cient\u00edfica del sur", "alternativeName": "", "country": "pe", "url": "http://www.cientifica.edu.pe/", "identifier": [{"identifier": "https://ror.org/04xr5we72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cientifica.edu.pe/oai/ yes 0 436 +3696 {"name": "biblioteca virtual de la diputaci\u00f3n de zaragoza", "language": "en"} [] http://www.bivizar.es/ governmental [] 2022-01-12 15:35:52 2016-08-09 14:57:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "diputaci\u00f3n de zaragoza", "alternativeName": "", "country": "es", "url": "http://www.dpz.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://www.bivizar.es/i18n/oai/oai_www.bivizar.es.cmd yes 45 1709 +3634 {"name": "repositorio institucional unan-managua", "language": "en"} [{"acronym": "riuma"}] http://repositorio.unan.edu.ni/ institutional [] 2022-01-12 15:35:51 2016-07-06 10:37:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional aut\u00f3noma de nicaragua, managua", "alternativeName": "", "country": "ni", "url": "http://www.unan.edu.ni/", "identifier": [{"identifier": "https://ror.org/04084tn63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositorio.unan.edu.ni/cgi/oai2 yes 7492 +3717 {"name": "fikt repository", "language": "en"} [] http://eprints.fikt.edu.mk/ institutional [] 2022-01-12 15:35:52 2016-09-02 14:51:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": ""st kliment ohridski" university - bitola", "alternativeName": "", "country": "mk", "url": "http://www.uklo.edu.mk/", "identifier": [{"identifier": "https://ror.org/04161ta68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.fikt.edu.mk/cgi/oai2 yes 114 161 +3725 {"name": "ocad university open research repository", "language": "en"} [] http://openresearch.ocadu.ca/ institutional [] 2022-01-12 15:35:52 2016-09-06 14:40:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "ocad university", "alternativeName": "", "country": "ca", "url": "http://www.ocadu.ca/", "identifier": [{"identifier": "https://ror.org/059ncap70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openresearch.ocadu.ca/policies.html", "type": "metadata"}, {"policy_url": "http://openresearch.ocadu.ca/policies.html", "type": "data"}, {"policy_url": "http://openresearch.ocadu.ca/policies.html", "type": "content"}, {"policy_url": "http://openresearch.ocadu.ca/policies.html", "type": "submission"}, {"policy_url": "http://openresearch.ocadu.ca/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://openresearch.ocadu.ca/cgi/oai2 yes 1590 +3720 {"name": "openemory", "language": "en"} [] https://open.library.emory.edu/ institutional [] 2022-01-12 15:35:52 2016-09-06 13:39:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "emory university", "alternativeName": "", "country": "us", "url": "http://www.emory.edu/home/index.html", "identifier": [{"identifier": "https://ror.org/03czfpz43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes 6576 +3736 {"name": "university of northern british columbia institutional repository", "language": "en"} [] http://unbc.arcabc.ca/ institutional [] 2022-01-12 15:35:53 2016-09-14 16:13:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of northern british columbia", "alternativeName": "", "country": "ca", "url": "http://unbc.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +3711 {"name": "hal-ub", "language": "en"} [] https://hal-univ-bourgogne.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:52 2016-08-31 08:59:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de bourgogne", "alternativeName": "", "country": "fr", "url": "http://www.u-bourgogne.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-bourgogne yes 1244 52530 +3676 {"name": "hal universit\u00e9 de tours", "language": "en"} [] https://hal-univ-tours.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:50:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e9 fran\u00e7ois-rabelais tours", "alternativeName": "", "country": "fr", "url": "http://www.univ-tours.fr/", "identifier": [{"identifier": "https://ror.org/02wwzvj46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-tours yes 2583 33006 +3675 {"name": "hal - universit\u00e9 de franche-comt\u00e9", "language": "en"} [] https://hal-univ-fcomte.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:49:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de franche-comt\u00e9", "alternativeName": "", "country": "fr", "url": "http://www.univ-fcomte.fr/", "identifier": [{"identifier": "https://ror.org/03pcc9z86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-fcomte yes 3469 36138 +3653 {"name": "publication server of weimar bauhaus-university", "language": "en"} [{"name": "online-publikationssystem der bauhaus-universit\u00e4t weimar", "language": ""}] https://e-pub.uni-weimar.de/opus4/home institutional [] 2022-01-12 15:35:51 2016-07-20 14:10:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "weimar bauhaus-university", "alternativeName": "", "country": "de", "url": "http://www.uni-weimar.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://e-pub.uni-weimar.de/opus4/oai? yes 2052 2800 +3695 {"name": "arquivo dixital de galicia", "language": "es"} [] http://arquivo.galiciana.gal/arpadweb/gl/inicio/inicio.do governmental [] 2022-01-12 15:35:52 2016-08-09 14:22:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "arquivo de galicia", "alternativeName": "", "country": "es", "url": "http://bibliotecadegalicia.xunta.gal", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://biblioteca.galiciana.gal/es//oai/oai.cmd yes 0 471100 +3727 {"name": "murray states digital commons", "language": "en"} [] http://digitalcommons.murraystate.edu/ institutional [] 2022-01-12 15:35:52 2016-09-07 13:51:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "murray state university", "alternativeName": "", "country": "us", "url": "http://www.murraystate.edu/", "identifier": [{"identifier": "https://ror.org/01fmwcn13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 4026 +3718 {"name": "digital howard", "language": "en"} [] http://dh.howard.edu/ institutional [] 2022-01-12 15:35:52 2016-09-06 11:49:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "howard university", "alternativeName": "", "country": "us", "url": "http://howard.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 13697 +3721 {"name": "cu scholar institutional repository", "language": "en"} [] http://scholar.colorado.edu/ institutional [] 2022-01-12 15:35:52 2016-09-06 13:45:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of colorado boulder", "alternativeName": "", "country": "us", "url": "http://www.colorado.edu/", "identifier": [{"identifier": "https://ror.org/02ttsq026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://scholar.colorado.edu/policies.html", "type": "metadata"}, {"policy_url": "http://scholar.colorado.edu/policies.html", "type": "data"}, {"policy_url": "http://scholar.colorado.edu/policies.html", "type": "content"}, {"policy_url": "http://scholar.colorado.edu/policies.html", "type": "submission"}, {"policy_url": "http://scholar.colorado.edu/policies.html", "type": "preservation"}] {"name": "other", "version": ""} http://scholar.colorado.edu/do/oai/ yes 8148 +3638 {"name": "cesgo", "language": "en"} [] https://cesgo.genouest.org/ institutional [] 2022-01-12 15:35:51 2016-07-06 11:43:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "datasets"] [{"name": "institut national de recherche en informatique et en automatique, rennes", "alternativeName": "inria - rennes", "country": "fr", "url": "http://www.inria.fr/en/centre/rennes", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://cesgo.genouest.org/oaipmh yes 2 50 +3680 {"name": "hzb repository", "language": "en"} [] https://www.helmholtz-berlin.de/zentrum/locations/bibliothek/literatur/publikationsserver_de.html institutional [] 2022-01-12 15:35:52 2016-07-26 11:17:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "patents"] [{"name": "helmholtz-zentrum berlin f\u00fcr materialien und energie", "alternativeName": "hzb", "country": "de", "url": "https://www.helmholtz-berlin.de/", "identifier": [{"identifier": "https://ror.org/02aj13c28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.helmholtz-berlin.de/pubbin/oai yes 885 18980 +3697 {"name": "forschungsindex und repositorium der leuphana universit\u00e4t l\u00fcneburg", "language": "en"} [] http://fox.leuphana.de/portal/de/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:13:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "universit\u00e4t l\u00fcneburg", "alternativeName": "", "country": "de", "url": "http://www.leuphana.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +3689 {"name": "university of johannesburg institutional repository", "language": "en"} [{"acronym": "uj ir"}] https://ujcontent.uj.ac.za/vital/access/manager/index institutional [] 2022-01-12 15:35:52 2016-08-01 09:28:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of johannesburg", "alternativeName": "uj", "country": "za", "url": "https://www.uj.ac.za", "identifier": [{"identifier": "https://ror.org/04z6c2n17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} https://ujcontent.uj.ac.za/vital/oai/provider yes 7144 41010 +3737 {"name": "arca", "language": "en"} [{"acronym": "british columbia\u2019s collaborative digital repository"}] http://arcabc.ca/ aggregating [] 2022-01-12 15:35:53 2016-09-20 10:52:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "british columbia electronic library network", "alternativeName": "", "country": "ca", "url": "http://bceln.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} http://arcabc.ca/oai2 yes 19767 108446 +3701 {"name": "repository of polytechnic in pozega", "language": "en"} [] https://repozitorij.vup.hr/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:36:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "polytecnic in po\u017eega", "alternativeName": "", "country": "hr", "url": "http://www.vup.hr/index_hr.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vup.hr/oai yes 35 1981 +3703 {"name": "repository of polytechnic nikola tesla in gospi\u0107", "language": "en"} [] https://repozitorij.velegs-nikolatesla.hr/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:45:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "polytechnic nikola tesla in gospi\u0107", "alternativeName": "", "country": "hr", "url": "http://www.velegs-nikolatesla.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.velegs-nikolatesla.hr/oai yes 225 497 +3673 {"name": "repozitorij grafi\u010dkog fakulteta sveu\u010dili\u0161ta u zagrebu", "language": "en"} [] http://eprints.grf.unizg.hr/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:42:13 ["science", "technology", "engineering"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.grf.hr/cgi/oai2 yes 278 2814 +3654 {"name": "seti institutes research repository", "language": "en"} [] http://seti.mysciencework.com/ institutional [] 2022-01-12 15:35:51 2016-07-20 14:30:42 ["science"] ["journal_articles", "bibliographic_references"] [{"name": "seti institute", "alternativeName": "", "country": "us", "url": "http://seti.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3652 {"name": "lbs research online", "language": "en"} [] http://lbsresearch.london.edu/ institutional [] 2022-01-12 15:35:51 2016-07-20 14:06:20 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "london business school", "alternativeName": "", "country": "gb", "url": "http://www.london.edu/", "identifier": [{"identifier": "https://ror.org/001c2sn75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://lbsresearch.london.edu/cgi/oai2 yes 340 1444 +3708 {"name": "uk data service reshare", "language": "en"} [] http://reshare.ukdataservice.ac.uk/ disciplinary [] 2022-01-12 15:35:52 2016-08-26 15:04:24 ["social sciences"] ["datasets"] [{"name": "uk data archive", "alternativeName": "", "country": "gb", "url": "http://data-archive.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://oai.ukdataservice.ac.uk/oai/ yes 0 6948 +3700 {"name": "fpszg repository", "language": "en"} [] https://repozitorij.fpzg.unizg.hr/en institutional [] 2022-01-12 15:35:52 2016-08-09 15:31:47 ["social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fpzg.unizg.hr/oai yes 312 1160 +3698 {"name": "imeche virtual archive", "language": "en"} [] http://archives.imeche.org/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:22:36 ["technology", "engineering"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "institution of mechanical engineers", "alternativeName": "", "country": "gb", "url": "http://www.imeche.org/", "identifier": [{"identifier": "https://ror.org/043w3h917", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3702 {"name": "university north digital repository", "language": "en"} [] https://repozitorij.unin.hr/ institutional [] 2022-01-12 15:35:52 2016-08-09 15:43:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university north (sveu\u010dili\u0161te sjever)", "alternativeName": "", "country": "hr", "url": "https://www.unin.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unin.hr/oai yes 329 3483 +3677 {"name": "hopes institutional research archive", "language": "en"} [{"acronym": "hira"}] http://hira.hope.ac.uk/ institutional [] 2022-01-12 15:35:52 2016-07-26 09:58:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "liverpool hope university", "alternativeName": "", "country": "gb", "url": "http://www.hope.ac.uk/", "identifier": [{"identifier": "https://ror.org/03ctjbj91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://hira.hope.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://hira.hope.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://hira.hope.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://hira.hope.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://hira.hope.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://hira.hope.ac.uk/cgi/oai2 yes 775 2330 +3644 {"name": "institute for social research in zagreb (isrz) repository", "language": "en"} [] http://idiprints.knjiznica.idi.hr/ institutional [] 2022-01-12 15:35:51 2016-07-07 14:05:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "institute for social research in zagreb", "alternativeName": "", "country": "hr", "url": "http://www.idi.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://idiprints.knjiznica.idi.hr/policies.html", "type": "metadata"}, {"policy_url": "http://idiprints.knjiznica.idi.hr/policies.html", "type": "data"}, {"policy_url": "http://idiprints.knjiznica.idi.hr/policies.html", "type": "content"}, {"policy_url": "http://idiprints.knjiznica.idi.hr/policies.html", "type": "submission"}, {"policy_url": "http://idiprints.knjiznica.idi.hr/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://idiprints.knjiznica.idi.hr/cgi/oai2 yes 536 918 +3658 {"name": "archivio istituzionale della ricerca - universit\u00e0 di palermo", "language": "it"} [] https://iris.unipa.it/ institutional [] 2022-01-27 11:30:35 2016-07-20 15:02:22 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di palermo", "alternativeName": "", "country": "it", "url": "https://www.unipa.it", "identifier": [{"identifier": "https://ror.org/044k9ta02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://iris.unipa.it/sr/cineca/unipa-html/iris_unipa_regolamento_ita-eng.html", "type": "metadata"}, {"policy_url": "https://iris.unipa.it/sr/cineca/unipa-html/iris_unipa_regolamento_ita-eng.html", "type": "data"}, {"policy_url": "https://iris.unipa.it/sr/cineca/unipa-html/iris_unipa_regolamento_ita-eng.html", "type": "content"}, {"policy_url": "https://iris.unipa.it/sr/cineca/unipa-html/iris_unipa_regolamento_ita-eng.html", "type": "preservation"}] {"name": "dspace", "version": ""} https://iris.unipa.it/oai/request? yes 12723 120011 +3734 {"name": "crs4 open archive", "language": "en"} [] http://oai.crs4.it institutional [] 2022-01-12 15:35:52 2016-09-14 14:43:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "crs4", "alternativeName": "", "country": "it", "url": "http://www.crs4.it/", "identifier": [{"identifier": "https://ror.org/03jdxdk20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://static-portale.crs4.it/misc/oai_policies.html", "type": "metadata"}, {"policy_url": "http://static-portale.crs4.it/misc/oai_policies.html", "type": "data"}, {"policy_url": "http://static-portale.crs4.it/misc/oai_policies.html", "type": "content"}, {"policy_url": "http://static-portale.crs4.it/misc/oai_policies.html", "type": "submission"}, {"policy_url": "http://static-portale.crs4.it/misc/oai_policies.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://oai.crs4.it/oai/request yes 4 12 +3704 {"name": "iris catalogo dei prodotti della ricerca scientifica luiss", "language": "en"} [] https://iris.luiss.it/ institutional [] 2022-01-12 15:35:52 2016-08-26 14:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "luiss - libera universit\u00e0 internazionale degli studi sociali guido carli", "alternativeName": "luiss", "country": "it", "url": "http://www.luiss.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.luiss.edu/sites/www.luiss.it/files/policy-oa-luiss-eng-2016.pdf", "type": "content"}, {"policy_url": "http://www.luiss.edu/sites/www.luiss.it/files/policy-oa-luiss-eng-2016.pdf", "type": "submission"}, {"policy_url": "http://www.luiss.edu/sites/www.luiss.it/files/policy-oa-luiss-eng-2016.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://iris.luiss.it/oai/request yes 907 13211 +3691 {"name": "datadoi", "language": "en"} [] https://datadoi.ee/ institutional [] 2022-01-12 15:35:52 2016-08-01 11:05:13 ["arts", "humanities", "health and medicine", "social sciences"] ["datasets"] [{"name": "tartu university", "alternativeName": "", "country": "ee", "url": "http://www.ut.ee/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://datadoi.ee/page/policy", "type": "submission"}] {"name": "dspace", "version": ""} https://datadoi.ee/oai yes 13 165 +3650 {"name": "bg research online", "language": "en"} [] https://bgro.collections.crest.ac.uk/ institutional [] 2022-01-12 15:35:51 2016-07-19 16:06:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bishop grosseteste university", "alternativeName": "", "country": "gb", "url": "http://www.bishopg.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchonline.bishopg.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://researchonline.bishopg.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} ttp://bgro.collections.crest.ac.uk/cgi/oai2 yes 13 625 +3803 {"name": "repository of the gomel state medical university", "language": "en"} [] http://elib.gsmu.by/ institutional [] 2022-01-12 15:35:54 2016-11-22 14:37:42 ["arts", "humanities", "health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "educational establishment gomel state medical university", "alternativeName": "", "country": "by", "url": "http://gsmu.by/", "identifier": [{"identifier": "https://ror.org/02hrree94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3595 +3802 {"name": "yamagata university academic repository", "language": "en"} [{"name": "\u5c71\u5f62\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://yamagata.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:54 2016-11-18 15:18:25 ["arts", "humanities", "science", "health and medicine", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "yamagata univesity", "alternativeName": "", "country": "jp", "url": "http://www.yamagata-u.ac.jp/jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yamagata.repo.nii.ac.jp/oai yes 4421 5015 +3759 {"name": "repository of faculty of civil engineering and architecture osijek", "language": "en"} [] https://repozitorij.gfos.hr/ institutional [] 2022-01-12 15:35:53 2016-09-30 11:08:48 ["engineering", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of josip juraj strossmayer in osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.gfos.hr/oai yes 287 1473 +3815 {"name": "electronic library of belarusian trade and economics university of consumer cooperatives", "language": "en"} [{"name": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0431\u0442\u044d\u0443 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438", "language": ""}] http://lib.i-bteu.by/ institutional [] 2022-01-12 15:35:54 2017-01-05 15:04:17 ["health and medicine", "social sciences", "engineering"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "learning_objects"] [{"name": "belarusian trade and economics university of consumer cooperatives", "alternativeName": "", "country": "by", "url": "http://i-bteu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://lib.i-bteu.by/oai/request yes 3762 4107 +3834 {"name": "pusan national university hospital repository", "language": "en"} [{"acronym": "pnuh repository"}] http://repository.pnuh.or.kr/ institutional [] 2022-01-12 15:35:54 2017-02-07 10:49:15 ["health and medicine", "social sciences"] ["journal_articles"] [{"name": "pusan national university hospital (\ubd80\uc0b0\ub300\ud559\uad50\ubcd1\uc6d0)", "alternativeName": "", "country": "kr", "url": "http://pnuh.or.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.pnuh.or.kr/oai/request yes 26 33 +3790 {"name": "publications repository", "language": "en"} [] http://repository.icr.ac.uk/ institutional [] 2022-01-12 15:35:53 2016-11-10 16:19:55 ["health and medicine"] ["journal_articles"] [{"name": "institute of cancer research", "alternativeName": "", "country": "gb", "url": "http://www.icr.ac.uk/", "identifier": [{"identifier": "https://ror.org/043jzw605", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1852 +3837 {"name": "kumel repository", "language": "en"} [] http://kumel.medlib.dsmc.or.kr/ institutional [] 2022-01-12 15:35:54 2017-02-07 11:53:51 ["health and medicine"] ["journal_articles"] [{"name": "keimyung university", "alternativeName": "", "country": "kr", "url": "http://www.dsmc.or.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kumel.medlib.dsmc.or.kr/oai/reqeust yes 0 3547 +3773 {"name": "saitama medical university repository", "language": "en"} [{"name": "\u57fc\u7389\u533b\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://saitama-med.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:25:43 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "saitama medical university", "alternativeName": "", "country": "jp", "url": "http://www.saitama-med.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://saitama-med.repo.nii.ac.jp/oai yes 466 646 +3804 {"name": "national museum of japanese history repository", "language": "en"} [{"name": "\u56fd\u7acb\u6b74\u53f2\u6c11\u4fd7\u535a\u7269\u9928\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://rekihaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:54 2016-11-23 08:50:41 ["humanities"] ["journal_articles"] [{"name": "national museum of japanese history", "alternativeName": "", "country": "jp", "url": "http://www.rekihaku.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rekihaku.repo.nii.ac.jp/oai yes +3742 {"name": "federal university lokoja institutional repository", "language": "en"} [] http://repository.fulokoja.edu.ng/ institutional [] 2022-01-12 15:35:53 2016-09-22 13:11:37 ["science", "arts", "humanities"] ["journal_articles"] [{"name": "federal university lokoja", "alternativeName": "", "country": "ng", "url": "http://www.fulokoja.edu.ng/", "identifier": [{"identifier": "https://ror.org/018ced875", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.fulokoja.edu.ng/oai/request yes 89 +3806 {"name": "institutional repository of ivano-frankivsk national technical university of oil and gas", "language": "en"} [] http://elar.nung.edu.ua/ institutional [] 2022-01-12 15:35:54 2016-12-07 14:10:29 ["science", "mathematics"] ["journal_articles", "bibliographic_references"] [{"name": "ivano-frankivsk national technical university of oil and gas", "alternativeName": "", "country": "ua", "url": "http://www.nung.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.nung.edu.ua/oai/request yes 5761 +3816 {"name": "udaff repositorio institucional", "language": "en"} [] http://repositorio.udaff.edu.pe/ institutional [] 2022-01-12 15:35:54 2017-01-05 15:10:43 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de ayacucho federico froebel", "alternativeName": "", "country": "pe", "url": "http://www.udaff.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udaff.edu.pe/oai yes 0 10 +3763 {"name": "birzeit university open access repository", "language": "en"} [{"acronym": "fada"}] http://fada.birzeit.edu/ institutional [] 2022-01-12 15:35:53 2016-11-07 10:56:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "birzeit university", "alternativeName": "", "country": "ps", "url": "http://www.birzeit.edu/", "identifier": [{"identifier": "https://ror.org/0256kw398", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 4291 +3764 {"name": "repository at st. cloud state", "language": "en"} [] http://repository.stcloudstate.edu/ institutional [] 2022-01-12 15:35:53 2016-11-07 15:40:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "st. cloud state university", "alternativeName": "", "country": "us", "url": "http://www.stcloudstate.edu/", "identifier": [{"identifier": "https://ror.org/016czhx14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1699 +3824 {"name": "aston data explorer", "language": "en"} [] http://researchdata.aston.ac.uk/ institutional [] 2022-01-12 15:35:54 2017-02-02 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "aston university", "alternativeName": "", "country": "gb", "url": "http://www.aston.ac.uk/", "identifier": [{"identifier": "https://ror.org/05j0ve876", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "hhttp://libguides.aston.ac.uk/researchdata", "type": "data"}, {"policy_url": "http://libguides.aston.ac.uk/researchdata", "type": "content"}, {"policy_url": "http://libguides.aston.ac.uk/researchdata", "type": "submission"}] {"name": "eprints", "version": ""} http://researchdata.aston.ac.uk/cgi/oai2 yes 219 +3836 {"name": "dgist library institutional repository", "language": "en"} [{"acronym": "dgist repository"}] http://scholar.dgist.ac.kr/ institutional [] 2022-01-12 15:35:54 2017-02-07 11:40:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "other_special_item_types"] [{"name": "dgist (\ub300\uad6c\uacbd\ubd81\uacfc\ud559\uae30\uc220\uc6d0)", "alternativeName": "", "country": "kr", "url": "http://www.dgist.ac.kr/site/dgist/menu/1.do", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scholar.dgist.ac.kr/oai/request yes 0 3774 +3752 {"name": "institutional repository of the anjuman-i-islams kalsekar technical campus", "language": "en"} [{"acronym": "institutional repository@aiktc"}] http://www.aiktcdspace.org:8080/jspui/ institutional [] 2022-01-12 15:35:53 2016-09-23 15:24:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "anjuman-i-islams kalsekar technical campus", "alternativeName": "", "country": "in", "url": "http://www.aiktc.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.aiktcdspace.org:8080/oai/request? yes 135 940 +3820 {"name": "repositorio - universidad de la costa", "language": "es"} [{"acronym": "redicuc"}] http://repositorio.cuc.edu.co institutional [] 2022-01-12 15:35:54 2017-01-30 10:32:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de la costa", "alternativeName": "cuc", "country": "co", "url": "https://www.cuc.edu.co", "identifier": [{"identifier": "https://ror.org/01v5nhr20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cuc.edu.co/oai/request yes 1164 +3829 {"name": "reposit\u00f3rio cient\u00edfico do ismai", "language": "en"} [{"acronym": "rismai"}] http://repositorio.ismai.pt/ institutional [] 2022-01-12 15:35:54 2017-02-06 15:50:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ismai", "alternativeName": "", "country": "pt", "url": "http://www.ismai.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ismai.pt/oaiextended/request yes 25 1625 +3828 {"name": "institutional repository ucam", "language": "en"} [{"acronym": "riucam"}] http://repositorio.ucam.edu/ institutional [] 2022-01-12 15:35:54 2017-02-06 11:22:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica san antonio de murcia", "alternativeName": "", "country": "es", "url": "http://www.ucam.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucam.edu/oai/request yes 551 1625 +3841 {"name": "reposit\u00f3rio da universidade atl\u00e2ntica", "language": "en"} [{"acronym": "rua"}] http://repositorio-cientifico.uatlantica.pt/ institutional [] 2022-01-12 15:35:54 2017-02-10 10:46:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade atl\u00e2ntica", "alternativeName": "", "country": "pt", "url": "http://www.uatlantica.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 800 +3744 {"name": "central ukrainian national technical university repozitory", "language": "en"} [{"acronym": "eakirntu"}] http://dspace.kntu.kr.ua/ institutional [] 2022-01-12 15:35:53 2016-09-22 13:20:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "central ukrainian national technical university", "alternativeName": "", "country": "ua", "url": "http://www.kntu.kr.ua/", "identifier": [{"identifier": "https://ror.org/01sm6nn11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.kntu.kr.ua/oai/request yes 7625 +3796 {"name": "comillas", "language": "en"} [] https://repositorio.comillas.edu/xmlui/ institutional [] 2022-01-12 15:35:53 2016-11-17 14:03:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad pontificia comillas", "alternativeName": "", "country": "es", "url": "http://www.comillas.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.comillas.edu/oai/request? yes 0 100 +3756 {"name": "ir@lsu", "language": "en"} [] http://ir.lsu.ac.zw/ institutional [] 2022-01-12 15:35:53 2016-09-27 16:18:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "lupane state university", "alternativeName": "", "country": "zw", "url": "http://lsu.ac.zw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 279 +3755 {"name": "repositorio usb", "language": "en"} [] http://repositorio.usb.edu.pe/ institutional [] 2022-01-12 15:35:53 2016-09-27 15:45:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad peruana sim\u00f3n bol\u00edvar", "alternativeName": "", "country": "pe", "url": "http://usb.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 33 +3801 {"name": "university of nevada, reno scholarworks repository", "language": "en"} [] https://scholarworks.unr.edu/ institutional [] 2022-01-12 15:35:54 2016-11-18 15:11:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "university of nevada, reno", "alternativeName": "", "country": "us", "url": "http://www.unr.edu/", "identifier": [{"identifier": "https://ror.org/01keh0577", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://scholarworks.unr.edu/oai/request yes 0 6853 +3821 {"name": "digital repository, university of kelaniya", "language": "en"} [] http://repository.kln.ac.lk/ institutional [] 2022-01-12 15:35:54 2017-01-31 10:45:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of kelaniya", "alternativeName": "", "country": "lk", "url": "http://www.kln.ac.lk/", "identifier": [{"identifier": "https://ror.org/02r91my29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 16274 +3808 {"name": "digtial repository of white nile university", "language": "en"} [] http://repository.wnu.edu.sd:8080/xmlui/ institutional [] 2022-01-12 15:35:54 2016-12-07 14:29:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "white nile university", "alternativeName": "", "country": "sd", "url": "http://www.wnu.edu.sd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 379 +3799 {"name": "maasai mara university institutional repository", "language": "en"} [] http://41.89.101.166:8080/xmlui/ institutional [] 2022-01-12 15:35:54 2016-11-17 14:27:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "maasai mara university", "alternativeName": "", "country": "ke", "url": "http://www.mmarau.ac.ke/", "identifier": [{"identifier": "https://ror.org/00dygpn15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 5249 +3761 {"name": "repositorio institucional digital de la universidad cat\u00f3lica sedes sapientiae", "language": "en"} [] http://repositorio.ucss.edu.pe/ institutional [] 2022-01-12 15:35:53 2016-10-31 14:08:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "universidad cat\u00f3lica sedes sapientiae", "alternativeName": "", "country": "pe", "url": "http://www.ucss.edu.pe/", "identifier": [{"identifier": "https://ror.org/03n7nwh86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucss.edu.pe/oai? yes 431 +3819 {"name": "repositorio institucional digital de la universidad nacional del santa", "language": "en"} [] http://repositorio.uns.edu.pe/ institutional [] 2022-01-12 15:35:54 2017-01-30 10:28:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional del santa", "alternativeName": "", "country": "pe", "url": "https://www.uns.edu.pe/", "identifier": [{"identifier": "https://ror.org/03zmnt269", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uns.edu.pe/oai yes 1055 1151 +3817 {"name": "cct conicet-cenpat institutional repository", "language": "en"} [] http://www.repositorio.cenpat-conicet.gob.ar/ institutional [] 2022-01-12 15:35:54 2017-01-12 14:26:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "cct conicet-cenpat", "alternativeName": "", "country": "ar", "url": "http://www.cenpat-conicet.gov.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 543 +3751 {"name": "corpusul", "language": "en"} [] https://corpus.ulaval.ca/ institutional [] 2022-01-12 15:35:53 2016-09-23 15:05:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 laval", "alternativeName": "", "country": "ca", "url": "http://www.ulaval.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://corpus.ulaval.ca/oai/request yes 14598 +3745 {"name": "dspace@uclv", "language": "en"} [] http://dspace.uclv.edu.cu/ institutional [] 2022-01-12 15:35:53 2016-09-22 13:42:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad central "marta abreu" de las villas", "alternativeName": "", "country": "cu", "url": "http://www.uclv.edu.cu/", "identifier": [{"identifier": "https://ror.org/01cdy6h50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 8697 +3738 {"name": "institutional repository of moldova state university", "language": "en"} [] http://dspace.usm.md:8080/xmlui/ institutional [] 2022-01-12 15:35:53 2016-09-21 11:42:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "moldova state university", "alternativeName": "", "country": "md", "url": "http://usm.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1376 +3822 {"name": "institutional repository of the state higher educational institution national academy of statistics, accounting and auditing", "language": "en"} [] http://194.44.12.92:8080/jspui/?locale=en institutional [] 2022-01-12 15:35:54 2017-02-01 13:40:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national academy of statistics, accounting and auditing", "alternativeName": "", "country": "ua", "url": "http://nasoa.edu.ua/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2573 +3741 {"name": "repositorio institucional universidad c\u00e9sar vallejo", "language": "en"} [] http://repositorio.ucv.edu.pe/ institutional [] 2022-01-12 15:35:53 2016-09-21 14:34:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad c\u00e9sar vallejo", "alternativeName": "", "country": "pe", "url": "http://www.ucv.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 14709 +3831 {"name": "reposit\u00f3rio institucional do instituto polit\u00e9cnico da guarda", "language": "en"} [] http://bdigital.ipg.pt/dspace/ institutional [] 2022-01-12 15:35:54 2017-02-06 16:09:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico da guarda", "alternativeName": "", "country": "pt", "url": "http://www.ipg.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bdigital.ipg.pt/dspace-oai/request yes 142 4811 +3839 {"name": "research information system of the university bamberg", "language": "en"} [{"name": "forschungsinformationssystem der universit\u00e4t bamberg", "language": "de"}] https://fis.uni-bamberg.de institutional [] 2022-01-12 15:35:54 2017-02-08 11:28:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "otto-friedrich-universit\u00e4t bamberg", "alternativeName": "", "country": "de", "url": "https://www.uni-bamberg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2747 50147 +3786 {"name": "trakia university - digital repository", "language": "en"} [] http://dspace.uni-sz.bg/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:52:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "trakia university", "alternativeName": "", "country": "bg", "url": "http://uni-sz.bg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 48 +3743 {"name": "weschool digital repository", "language": "en"} [] http://dspace.welingkar.org:8080/jspui/ institutional [] 2022-01-12 15:35:53 2016-09-22 13:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "welingkar institute of management development and research", "alternativeName": "", "country": "in", "url": "http://www.welingkar.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.welingkar.org/oai/request yes 0 241 +3746 {"name": "auk repository", "language": "en"} [] https://dspace.auk.edu.kw/ institutional [] 2022-01-12 15:35:53 2016-09-22 13:52:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "american university of kuwait", "alternativeName": "", "country": "kw", "url": "http://www.auk.edu.kw/", "identifier": [{"identifier": "https://ror.org/00w73cg32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2675 +3750 {"name": "intellectual repository of rajamangala university of technology lanna", "language": "en"} [] http://repository.rmutl.ac.th/ institutional [] 2022-01-12 15:35:53 2016-09-22 14:32:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "rajamangala university of technology lanna", "alternativeName": "", "country": "th", "url": "http://rmutl.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 229 +3811 {"name": "repositorio institucional universidad centroamericana jos\u00e9 sime\u00f3n ca\u00f1as", "language": "en"} [] http://repositorio.uca.edu.sv/ institutional [] 2022-01-12 15:35:54 2017-01-04 13:46:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad centroamericana jos\u00e9 sime\u00f3n ca\u00f1as", "alternativeName": "", "country": "sv", "url": "http://www.uca.edu.sv/", "identifier": [{"identifier": "https://ror.org/02bhgkk43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 831 +3797 {"name": "repository of almaty management university", "language": "en"} [] http://repository.almau.edu.kz/xmlui/ institutional [] 2022-01-12 15:35:53 2016-11-17 14:06:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "almaty management university", "alternativeName": "", "country": "kz", "url": "http://www.almau.edu.kz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1590 +3795 {"name": "university of eldoret institutional repository", "language": "en"} [] http://41.89.164.27:8080/xmlui institutional [] 2022-01-12 15:35:53 2016-11-17 13:50:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of eldoret", "alternativeName": "", "country": "ke", "url": "http://www.uoeld.ac.ke/karibu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://41.89.164.27:8080/oai/request yes 116 +3835 {"name": "hanyang repository", "language": "en"} [] http://repository.hanyang.ac.kr/ institutional [] 2022-01-12 15:35:54 2017-02-07 10:58:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hanyang university", "alternativeName": "", "country": "kr", "url": "https://www.hanyang.ac.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.hanyang.ac.kr/oai/request yes 451 76059 +3748 {"name": "kazan federal university digital repository", "language": "en"} [] http://dspace.kpfu.ru/ institutional [] 2022-01-12 15:35:53 2016-09-22 14:24:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "kazan federal university", "alternativeName": "", "country": "ru", "url": "http://kpfu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.kpfu.ru/oai/request yes 26094 +3762 {"name": "repositorio institucional de la universidad de hu\u00e1nuco", "language": "en"} [] http://repositorio.udh.edu.pe/ institutional [] 2022-01-12 15:35:53 2016-11-07 10:32:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad de hu\u00e1nuco", "alternativeName": "", "country": "pe", "url": "http://www.udh.edu.pe/", "identifier": [{"identifier": "https://ror.org/01fgscm92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udh.edu.pe/oai/request yes 975 2720 +3791 {"name": "repositorio ucal", "language": "en"} [] http://repositorio.ucal.edu.pe/ institutional [] 2022-01-12 15:35:53 2016-11-10 16:28:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de ciencias y artes de am\u00e9rica latina", "alternativeName": "", "country": "pe", "url": "http://ucal.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucal.edu.pe/oai/request yes 95 111 +3793 {"name": "repositorio institucional uam", "language": "en"} [] http://repositorio.autonoma.edu.co/jspui/ institutional [] 2022-01-12 15:35:53 2016-11-11 15:40:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad aut\u00f3noma de manizales", "alternativeName": "", "country": "co", "url": "http://www.autonoma.edu.co/", "identifier": [{"identifier": "https://ror.org/00jfare13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.autonoma.edu.co/oai/request yes 614 +3814 {"name": "repository of kazimierz wielki university", "language": "en"} [] http://repozytorium.ukw.edu.pl/ institutional [] 2022-01-12 15:35:54 2017-01-05 14:48:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "kazimierz wielki university", "alternativeName": "", "country": "pl", "url": "http://repozytorium.ukw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repozytorium.ukw.edu.pl/page/polityka", "type": "content"}, {"policy_url": "http://repozytorium.ukw.edu.pl/page/polityka", "type": "submission"}, {"policy_url": "http://repozytorium.ukw.edu.pl/page/polityka", "type": "preservation"}] {"name": "dspace", "version": ""} yes 4925 +3783 {"name": "university of arkansas scholarworks@uark", "language": "en"} [] https://scholarworks.uark.edu institutional [] 2022-01-12 15:35:53 2016-11-10 15:32:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "patents"] [{"name": "university of arkansas, fayetteville", "alternativeName": "", "country": "us", "url": "https://www.uark.edu", "identifier": [{"identifier": "https://ror.org/05jbt9m15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.uark.edu/do/oai yes 8073 +3838 {"name": "budapest business school repository (bory)", "language": "en"} [] http://repozitorium.uni-bge.hu/ institutional [] 2022-01-12 15:35:54 2017-02-08 11:17:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "budapest business school", "alternativeName": "", "country": "hu", "url": "http://uni-bge.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publikaciotar.repozitorium.bgf.hu/cgi/oai2 yes 596 +3812 {"name": "eke repository of publications", "language": "en"} [] http://publikacio.uni-eszterhazy.hu/ institutional [] 2022-01-12 15:35:54 2017-01-04 14:29:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "eszterhazy karoly university", "alternativeName": "", "country": "hu", "url": "https://uni-eszterhazy.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publikacio.uni-eszterhazy.hu/cgi/oai2 yes 365 +3749 {"name": "repositorio de ciencias agropecuarias y ambientales del noroeste argentino", "language": "en"} [] http://eprints.natura.unsa.edu.ar/ institutional [] 2022-01-12 15:35:53 2016-09-22 14:28:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universidad nacional de salta", "alternativeName": "unsa", "country": "ar", "url": "http://www.unsa.edu.ar/", "identifier": [{"identifier": "https://ror.org/00htwgm11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.natura.unsa.edu.ar/cgi/oai2 yes 455 +3782 {"name": "eprints@bangalore university", "language": "en"} [] http://eprints-bangaloreuniversity.in/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:29:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "bangalore university", "alternativeName": "", "country": "in", "url": "http://bangaloreuniversity.ac.in/", "identifier": [{"identifier": "https://ror.org/050j2vm64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints-bangaloreuniversity.in/cgi/oai2 yes 6043 +3813 {"name": "eke repository of phd dissertations", "language": "en"} [] http://disszertacio.uni-eszterhazy.hu/ institutional [] 2022-01-12 15:35:54 2017-01-04 14:40:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "eszterhazy karoly university", "alternativeName": "", "country": "hu", "url": "https://uni-eszterhazy.hu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://disszertacio.uni-eszterhazy.hu/cgi/oai2 yes 26 +3823 {"name": "repository ummi", "language": "en"} [] http://eprints.ummi.ac.id/ institutional [] 2022-01-12 15:35:54 2017-02-01 15:19:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of muhammadiyah sukabumi", "alternativeName": "", "country": "id", "url": "http://ummi.ac.id/", "identifier": [{"identifier": "https://ror.org/033243786", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ummi.ac.id/cgi/oai2 yes 190 +3827 {"name": "afe babalola university repository", "language": "en"} [] http://eprints.abuad.edu.ng/ institutional [] 2022-01-12 15:35:54 2017-02-06 11:12:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "afe babalola university", "alternativeName": "", "country": "ng", "url": "http://abuad.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.abuad.edu.ng/cgi/oai2 yes 707 744 +3776 {"name": "rpion college senior showcase", "language": "en"} [] http://rcseniorshowcase.omeka.net/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:41:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "ripon college", "alternativeName": "", "country": "us", "url": "http://www.ripon.edu/", "identifier": [{"identifier": "https://ror.org/025kav035", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} yes +3798 {"name": "scholar commons - santa clara university", "language": "en"} [] http://scholarcommons.scu.edu/ institutional [] 2022-01-12 15:35:54 2016-11-17 14:16:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "santa clara university", "alternativeName": "", "country": "us", "url": "http://www.scu.edu/", "identifier": [{"identifier": "https://ror.org/03ypqe447", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarcommons.scu.edu/do/oai/ yes 1818 5331 +3753 {"name": "digital commons @ acu", "language": "en"} [] http://digitalcommons.acu.edu/ institutional [] 2022-01-12 15:35:53 2016-09-23 16:06:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "abilene christian university", "alternativeName": "", "country": "us", "url": "http://www.acu.edu/", "identifier": [{"identifier": "https://ror.org/004srrf86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://digitalcommons.acu.edu/do/oai/ yes 2906 25024 +3788 {"name": "works", "language": "en"} [] http://works.swarthmore.edu/ institutional [] 2022-01-12 15:35:53 2016-11-10 16:00:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "swarthmore college", "alternativeName": "", "country": "us", "url": "http://www.swarthmore.edu/", "identifier": [{"identifier": "https://ror.org/012dg8a96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://works.swarthmore.edu/do/oai/ yes 1944 11828 +3740 {"name": "cornerstone: a collection of scholarly and creative works", "language": "en"} [] http://cornerstone.lib.mnsu.edu/ institutional [] 2022-01-12 15:35:53 2016-09-21 14:17:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "minnesota state university, mankato", "alternativeName": "", "country": "us", "url": "http://www.mnsu.edu/", "identifier": [{"identifier": "https://ror.org/04att9732", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 3029 +3765 {"name": "csusb scholarworks", "language": "en"} [] http://scholarworks.lib.csusb.edu/ institutional [] 2022-01-12 15:35:53 2016-11-07 15:48:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "california state university san bernardino", "alternativeName": "", "country": "us", "url": "http://www.csusb.edu/", "identifier": [{"identifier": "https://ror.org/02n651896", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.lib.csusb.edu/do/oai/ yes 11389 +3800 {"name": "sistem informasi tugas akhir", "language": "en"} [] http://sinta.ukdw.ac.id/sinta institutional [] 2022-01-12 15:35:54 2016-11-17 14:44:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas kristen duta wacana", "alternativeName": "ukdw", "country": "id", "url": "http://www.ukdw.ac.id/", "identifier": [{"identifier": "https://ror.org/036agwg70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://sinta.ukdw.ac.id/sinta/repo/oai yes 0 9144 +3830 {"name": "reposit\u00f3rio cient\u00edfico da cespu", "language": "en"} [] https://repositorio.cespu.pt/ institutional [] 2022-01-12 15:35:54 2017-02-06 16:05:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "cespu.cooperativa de ensino superior, polit\u00e9cnico e universit\u00e1rio, crl", "alternativeName": "", "country": "pt", "url": "https://www.cespu.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 1342 +3825 {"name": "digital library of slovenia", "language": "en"} [] http://www.dlib.si/ institutional [] 2022-01-12 15:35:54 2017-02-02 14:21:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national and university library of slovenia", "alternativeName": "", "country": "si", "url": "http://www.nuk.uni-lj.si/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://nukoai.nuk.uni-lj.si:8089/repox yes 0 0 +3758 {"name": "publikationsserver der universit\u00e4tsbibliothek bodenkultur wien", "language": "en"} [{"acronym": "boku:epub"}] http://epub.boku.ac.at/ institutional [] 2022-01-12 15:35:53 2016-09-30 10:19:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of natural resources and life sciences, vienna", "alternativeName": "", "country": "at", "url": "http://www.boku.ac.at/", "identifier": [{"identifier": "https://ror.org/057ff4y42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://epub.boku.ac.at/oai/ yes 2768 +3818 {"name": "the university of manchester - institutional repository", "language": "en"} [] https://www.research.manchester.ac.uk/portal institutional [] 2022-01-12 15:35:54 2017-01-26 10:19:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "university of manchester", "alternativeName": "", "country": "gb", "url": "http://www.manchester.ac.uk/", "identifier": [{"identifier": "https://ror.org/027m9bs27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.manchester.ac.uk/ws/oai yes 75 225769 +3810 {"name": "digital library (repository) of tomsk state university", "language": "en"} [] http://vital.lib.tsu.ru/vital/access/manager/index institutional [] 2022-01-12 15:35:54 2016-12-14 13:07:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tomsk state university", "alternativeName": "", "country": "ru", "url": "http://www.tsu.ru/", "identifier": [{"identifier": "https://ror.org/02he2nc27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} yes 33609 +3779 {"name": "fuji women\u2019s university academic repository", "language": "en"} [{"name": "\u85e4\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fujijoshi.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:11:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "fuji womens university", "alternativeName": "", "country": "jp", "url": "http://www.fujijoshi.ac.jp/", "identifier": [{"identifier": "https://ror.org/03hja9k84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fujijoshi.repo.nii.ac.jp/oai yes 1913 1924 +3780 {"name": "kyoto university of advanced science academic repository", "language": "en"} [{"name": "\u4eac\u90fd\u5148\u7aef\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyotogakuen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:12:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kyoto university of advanced science", "alternativeName": "", "country": "jp", "url": "http://www.kyotogakuen.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyotogakuen.repo.nii.ac.jp/oai yes 1322 1409 +3781 {"name": "gifu womens university repository", "language": "en"} [{"name": "\u5c90\u961c\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://gijodai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "gifu womens university", "alternativeName": "", "country": "jp", "url": "http://www.gijodai.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://gijodai.repo.nii.ac.jp/oai yes 73 109 +3772 {"name": "research institute for humanity and nature repository", "language": "en"} [{"name": "\u7dcf\u5408\u5730\u7403\u74b0\u5883\u5b66\u7814\u7a76\u6240\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chikyu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:24:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "research institute for humanity and nature", "alternativeName": "", "country": "jp", "url": "http://www.chikyu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chikyu.repo.nii.ac.jp/oai yes 2687 4139 +3775 {"name": "ryotokuji university institutional repository", "language": "en"} [{"name": "\u4e86\u5fb7\u5bfa\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ryotokuji-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:28:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ryotokuji university", "alternativeName": "", "country": "jp", "url": "http://www.ryotokuji-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/02k1vq030", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ryotokuji-u.repo.nii.ac.jp/oai yes 0 66 +3777 {"name": "musashino university academic institutional repository", "language": "en"} [{"name": "\u6b66\u8535\u91ce\u5927\u5b66 \u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:08:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "musashino university", "alternativeName": "", "country": "jp", "url": "http://www.musashino-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mu.repo.nii.ac.jp/oai yes 1229 1449 +3778 {"name": "naragakuen university academic repository", "language": "en"} [{"name": "\u5948\u826f\u5b66\u5712\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://naragakuen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:10:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "naragakuen university", "alternativeName": "", "country": "jp", "url": "http://www.naragakuen-u.jp/", "identifier": [{"identifier": "https://ror.org/00zxty319", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://naragakuen.repo.nii.ac.jp/oai yes 2261 3349 +3769 {"name": "teikyo university of science academic repository", "language": "en"} [{"name": "\u5e1d\u4eac\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tust.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:14:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "teikyo university of science", "alternativeName": "", "country": "jp", "url": "http://www.ntu.ac.jp/", "identifier": [{"identifier": "https://ror.org/025vmw012", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tust.repo.nii.ac.jp/oai yes 246 772 +3770 {"name": "asia university academic repositories", "language": "en"} [] https://asia-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:17:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "asia university", "alternativeName": "\u4e9e\u6d32\u5927\u5b78", "country": "tw", "url": "http://www.asia.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://asia-u.repo.nii.ac.jp/oai yes 1969 17631 +3768 {"name": "higashi nippon international university \u30fbiwaki junior college repository", "language": "en"} [{"name": "\u6771\u65e5\u672c\u56fd\u969b\u5927\u5b66\u30fb\u3044\u308f\u304d\u77ed\u671f\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shk.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:07:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "higashi nippon international university", "alternativeName": "", "country": "jp", "url": "http://www.shk-ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shk.repo.nii.ac.jp/oai yes 66 72 +3767 {"name": "sums academic repository", "language": "en"} [{"name": "\u9234\u9e7f\u533b\u7642\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sums.repo.nii.ac.jp institutional [] 2022-01-12 15:35:53 2016-11-10 13:55:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "suzuka university of medical science", "alternativeName": "", "country": "jp", "url": "http://www.suzuka-u.ac.jp/index.shtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sums.repo.nii.ac.jp/oai yes 38 53 +3774 {"name": "kanagawa dental university repository", "language": "en"} [{"name": "\u795e\u5948\u5ddd\u6b6f\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kdu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:26:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kanagawa dental university", "alternativeName": "", "country": "jp", "url": "http://www.kdu.ac.jp/", "identifier": [{"identifier": "https://ror.org/0514c4d93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kdu.repo.nii.ac.jp/oai yes 677 1246 +3766 {"name": "meiji university of integrative medicine academic repository", "language": "en"} [{"name": "\u660e\u6cbb\u56fd\u969b\u533b\u7642\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meiji-u.repo.nii.ac.jp institutional [] 2022-01-12 15:35:53 2016-11-10 13:51:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "meiji university of integrative medicine", "alternativeName": "", "country": "jp", "url": "http://www.meiji-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meiji-u.repo.nii.ac.jp/oai yes 1 5 +3771 {"name": "national institute for fusion science (nifs-repository)", "language": "en"} [] http://nifs-repository.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:53 2016-11-10 14:20:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national institute for fusion science", "alternativeName": "nifs", "country": "jp", "url": "http://www.nifs.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nifs-repository.repo.nii.ac.jp/oai yes 9133 10501 +3754 {"name": "repository of the university of rijeka, faculty of humanities and social sciences", "language": "en"} [] https://repository.ffri.uniri.hr/ institutional [] 2022-01-12 15:35:53 2016-09-23 16:10:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of rijeka, faculty of humanities and social sciences", "alternativeName": "", "country": "hr", "url": "http://www.ffri.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes 4 +3785 {"name": "saul archive", "language": "en"} [] http://archive.saulibrary.edu.bd/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:49:31 ["science"] ["theses_and_dissertations"] [{"name": "sher-e-bangla agricultural university", "alternativeName": "", "country": "bd", "url": "http://www.saulibrary.edu.bd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://archive.saulibrary.edu.bd:8080/oai/request yes 0 1120 +3792 {"name": "okeanos", "language": "en"} [] http://okeanos-dspace.hcmr.gr/ institutional [] 2022-01-12 15:35:53 2016-11-10 16:33:40 ["science"] ["journal_articles", "bibliographic_references"] [{"name": "hellenic centre for marine research", "alternativeName": "", "country": "gr", "url": "http://www.hcmr.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3155 +3832 {"name": "mineralis", "language": "en"} [] http://mineralis.cetem.gov.br/ institutional [] 2022-01-12 15:35:54 2017-02-07 09:57:52 ["science"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "centro de tecnologia mineral", "alternativeName": "cetem", "country": "br", "url": "http://www.cetem.gov.br/", "identifier": [{"identifier": "https://ror.org/00n4vrp79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2021 +3809 {"name": "eprints umsida", "language": "en"} [] http://eprints.umsida.ac.id/ institutional [] 2022-01-12 15:35:54 2016-12-07 14:45:11 ["social sciences", "technology", "engineering"] ["conference_and_workshop_papers"] [{"name": "universitas muhammadiyah sidoarjo", "alternativeName": "", "country": "id", "url": "http://umsida.ac.id/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.umsida.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.umsida.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.umsida.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.umsida.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.umsida.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.umsida.ac.id/cgi/oai2 yes 1332 +3840 {"name": "repositorio institucional universidad de am\u00e9rica", "language": "en"} [{"acronym": "lumieres"}] http://repository.uamerica.edu.co/ institutional [] 2022-01-12 15:35:54 2017-02-08 11:41:01 ["social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "fundaci\u00f3n universidad de am\u00e9rica", "alternativeName": "", "country": "co", "url": "http://www.uamerica.edu.co/", "identifier": [{"identifier": "https://ror.org/00kcjks51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uamerica.edu.co/oai/ yes 0 693 +3833 {"name": "kinu repository", "language": "en"} [] http://repo.kinu.or.kr/ institutional [] 2022-01-12 15:35:54 2017-02-07 10:23:41 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "korea institute for national unification (\ud1b5\uc77c\uc5f0\uad6c\uc6d0)", "alternativeName": "", "country": "kr", "url": "http://www.kinu.or.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.kinu.or.kr/oai yes 0 3328 +3826 {"name": "repositori universitas bhayangkara jakarta raya", "language": "en"} [] http://repository.ubharajaya.ac.id/ institutional [] 2022-01-12 15:35:54 2017-02-03 13:40:23 ["social sciences"] ["theses_and_dissertations"] [{"name": "universitas bhayangkara jakarta raya", "alternativeName": "", "country": "id", "url": "http://www.ubharajaya.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ubharajaya.ac.id/cgi/oai2 yes 1964 6190 +3807 {"name": "repositorio documental de la universidad pedag\u00f3gica nacional francisco moraz\u00e1n", "language": "en"} [] http://repositorio.upnfm.edu.hn:8081/xmlui/ institutional [] 2022-01-12 15:35:54 2016-12-07 14:15:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad pedag\u00f3gica nacional francisco moraz\u00e1n", "alternativeName": "", "country": "hn", "url": "http://www.upnfm.edu.hn/", "identifier": [{"identifier": "https://ror.org/05rsfnx05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio.upnfm.edu.hn:8081/xmlui/politicas.html", "type": "metadata"}, {"policy_url": "http://repositorio.upnfm.edu.hn:8081/xmlui/politicas.html", "type": "data"}, {"policy_url": "http://repositorio.upnfm.edu.hn:8081/xmlui/politicas.html", "type": "content"}, {"policy_url": "http://repositorio.upnfm.edu.hn:8081/xmlui/politicas.html", "type": "submission"}] {"name": "dspace", "version": ""} http://repositorio.upnfm.edu.hn:8081/oai yes 0 308 +3794 {"name": "winchester research portal", "language": "en"} [] https://winchester.elsevierpure.com/ institutional [] 2022-01-12 15:35:53 2016-11-15 14:24:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of winchester", "alternativeName": "", "country": "gb", "url": "http://www.winchester.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.winchester.ac.uk/help/#data", "type": "data"}] {"name": "pure", "version": ""} https://cris.winchester.ac.uk/ws/oai yes 905 3191 +3760 {"name": "zhaw digitalcollection", "language": "en"} [] https://digitalcollection.zhaw.ch/ institutional [] 2022-01-12 15:35:53 2016-10-27 10:48:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "zurich university of applied sciences", "alternativeName": "zhaw", "country": "ch", "url": "https://www.zhaw.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://appdoc-public.zhaw.ch/index.php/digitalcollection:policy", "type": "metadata"}, {"policy_url": "https://appdoc-public.zhaw.ch/index.php/digitalcollection:policy", "type": "data"}, {"policy_url": "https://appdoc-public.zhaw.ch/index.php/digitalcollection:policy", "type": "content"}, {"policy_url": "https://appdoc-public.zhaw.ch/index.php/digitalcollection:policy", "type": "submission"}, {"policy_url": "https://appdoc-public.zhaw.ch/index.php/digitalcollection:policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://digitalcollection.zhaw.ch/oai/request yes 4368 22193 +3784 {"name": "musi charitas catholic university repository", "language": "en"} [] http://eprints.ukmc.ac.id/ institutional [] 2022-01-12 15:35:53 2016-11-10 15:40:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "musi charitas catholic university", "alternativeName": "", "country": "id", "url": "http://ukmc.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.ukmc.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://eprints.ukmc.ac.id/policies.html", "type": "data"}, {"policy_url": "http://eprints.ukmc.ac.id/policies.html", "type": "content"}, {"policy_url": "http://eprints.ukmc.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://eprints.ukmc.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://eprints.ukmc.ac.id/cgi/oai2 yes 2158 3321 +3757 {"name": "university of reading research data archive", "language": "en"} [] http://researchdata.reading.ac.uk/ institutional [] 2022-01-12 15:35:53 2016-09-30 09:40:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of reading", "alternativeName": "", "country": "gb", "url": "http://www.reading.ac.uk/", "identifier": [{"identifier": "https://ror.org/05v62cm79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://researchdata.reading.ac.uk/metadata_policy.html", "type": "metadata"}, {"policy_url": "https://researchdata.reading.ac.uk/data_policy.html", "type": "data"}, {"policy_url": "https://researchdata.reading.ac.uk/collection_policy.html", "type": "content"}, {"policy_url": "https://researchdata.reading.ac.uk/submission_policy.html", "type": "submission"}, {"policy_url": "https://researchdata.reading.ac.uk/preservation_policy.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://researchdata.reading.ac.uk/cgi/oai2 yes 29 153 +3739 {"name": "4tu.researchdata", "language": "en"} [] https://data.4tu.nl aggregating [] 2022-01-12 15:35:53 2016-09-21 11:48:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "datasets"] [{"name": "4tu.researchdata", "alternativeName": "", "country": "nl", "url": "https://data.4tu.nl/info/en/about/organisation", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://data.4tu.nl/info/fileadmin/user_upload/documenten/4tu.research_data_-_deposit_agreement.pdf", "type": "metadata"}, {"policy_url": "https://data.4tu.nl/info/fileadmin/user_upload/documenten/4tu.research_data_-_deposit_agreement.pdf", "type": "submission"}, {"policy_url": "https://data.4tu.nl/info/fileadmin/user_upload/documenten/data_collection_policy_2020.pdf", "type": "preservation"}] {"name": "other", "version": ""} http://data.4tu.nl/oai yes 105 10542 +3847 {"name": "e.a. buketov karaganda university repository", "language": "en"} [] https://rep.ksu.kz institutional [] 2022-01-12 15:35:54 2017-02-20 10:27:25 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "academician e.a. buketov karaganda university", "alternativeName": "", "country": "kz", "url": "https://buketov.edu.kz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rep.ksu.kz/oai/request yes 2975 +3892 {"name": "lucerne open repository", "language": "en"} [{"acronym": "lory"}] https://zenodo.org/communities/lory/?page=1&size=20 institutional [] 2022-01-12 15:35:55 2017-07-20 13:50:04 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "zentral und hochschulbibliothek luzern", "alternativeName": "", "country": "ch", "url": "http://www.zhbluzern.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +3900 {"name": "vocedplus", "language": "en"} [] http://www.voced.edu.au/ disciplinary [] 2022-01-12 15:35:55 2017-07-26 14:14:51 ["arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "national centre for vocational education research", "alternativeName": "", "country": "au", "url": "http://www.ncver.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} yes +3912 {"name": "repository of ferit osijek", "language": "en"} [] https://repozitorij.etfos.hr/ institutional [] 2022-01-12 15:35:55 2017-08-02 15:03:19 ["engineering"] ["theses_and_dissertations"] [{"name": "university of osijek", "alternativeName": "", "country": "hr", "url": "https://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.etfos.hr/oai yes 103 2488 +3844 {"name": "repository of grodno state medical university", "language": "en"} [] http://elib.grsmu.by/ institutional [] 2022-01-12 15:35:54 2017-02-10 11:51:33 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "patents"] [{"name": "grodno state medical university", "alternativeName": "", "country": "by", "url": "http://www.grsmu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.grsmu.by/oai/request yes 7095 +3945 {"name": "repository of dnipropetrovsk medical academy", "language": "en"} [] http://repo.dma.dp.ua/ institutional [] 2022-01-12 15:35:56 2017-08-30 09:46:42 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "state establishment dnipropetrovsk medical academy (se dma)", "alternativeName": "", "country": "ua", "url": "http://dsma.dp.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.dma.dp.ua/cgi/oai2 yes 5591 5780 +3871 {"name": "cdc stacks", "language": "en"} [] https://stacks.cdc.gov/ institutional [] 2022-01-12 15:35:55 2017-03-22 11:01:29 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "centers for disease control and prevention", "alternativeName": "cdc", "country": "us", "url": "http://www.cdc.gov/", "identifier": [{"identifier": "https://ror.org/042twtr12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://stacks.cdc.gov/fedora/oai yes 45050 +3915 {"name": "el abrigo", "language": "en"} [] http://repositorio.smn.gob.ar/ institutional [] 2022-01-12 15:35:55 2017-08-16 10:29:36 ["humanities", "science"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "servicio meteorol\u00f3gico nacional", "alternativeName": "", "country": "ar", "url": "http://www.smn.gob.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3903 {"name": "suquia", "language": "en"} [] https://suquia.ffyh.unc.edu.ar/ institutional [] 2022-01-12 15:35:55 2017-08-01 10:06:47 ["humanities"] ["journal_articles", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "programa de arqueolog\u00eda digital, idacor, conicet y universidad nacional de c\u00f3rdoba", "alternativeName": "", "country": "ar", "url": "https://suquia.ffyh.unc.edu.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://suquia.ffyh.unc.edu.ar/oai yes 2374 +3917 {"name": "st. pauls university institutional repository", "language": "en"} [] http://41.89.51.173:8080/xmlui/ institutional [] 2022-01-12 15:35:55 2017-08-16 11:13:44 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "st. pauls university", "alternativeName": "", "country": "ke", "url": "http://www.spu.ac.ke/", "identifier": [{"identifier": "https://ror.org/00aze9982", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 650 +3909 {"name": "repository of the catholic faculty of theology university of zagreb", "language": "en"} [] https://repozitorij.kbf.unizg.hr/ institutional [] 2022-01-12 15:35:55 2017-08-02 15:00:54 ["humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kbf.unizg.hr/oai yes 26 38 +3938 {"name": "repository st3 telkom", "language": "en"} [] http://repository.st3telkom.ac.id/ institutional [] 2022-01-12 15:35:56 2017-08-24 15:43:01 ["mathematics", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "sekolah tinggi teknologi telematika telkom purwokerto", "alternativeName": "", "country": "id", "url": "http://st3telkom.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.st3telkom.ac.id/cgi/oai2 yes 1 17 +3895 {"name": "repositorio acad\u00e9mico utem", "language": "en"} [] http://repositorio.utem.cl/ institutional [] 2022-01-12 15:35:55 2017-07-21 13:21:28 ["science", "arts", "humanities", "social sciences", "technology"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad tecnol\u00f3gica metropolitana", "alternativeName": "", "country": "cl", "url": "https://www.utem.cl/", "identifier": [{"identifier": "https://ror.org/04bpsn575", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utem.cl/oai/request? yes 352 +3942 {"name": "odessa state academy of civil engineering and architecture electronic repository", "language": "en"} [{"acronym": "osaceaer"}] http://mx.ogasa.org.ua/ institutional [] 2022-01-12 15:35:56 2017-08-29 15:38:35 ["science", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "odessa state academy of civil engineering and architecture", "alternativeName": "", "country": "ua", "url": "http://www.ogasa.org.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3891 {"name": "uef erepository", "language": "en"} [] https://erepo.uef.fi/ institutional [] 2022-01-12 15:35:55 2017-07-20 11:52:11 ["science", "humanities", "social sciences", "health and medicine"] ["journal_articles"] [{"name": "university of eastern finland", "alternativeName": "uef", "country": "fi", "url": "http://www.uef.fi/uef", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://erepo.uef.fi/oai yes 0 1393 +3922 {"name": "colecci\u00f3n digital cemiegeo", "language": "en"} [] https://colecciondigital.cemiegeo.org/xmlui/ disciplinary [] 2022-01-12 15:35:56 2017-08-16 14:15:03 ["science", "mathematics", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "el centro mexicano para la innovaci\u00f3n en energ\u00eda geot\u00e9rmica, cemiegeo", "alternativeName": "", "country": "mx", "url": "http://www.cemiegeo.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3901 {"name": "faculty of textile technology university of zagreb - digital repository", "language": "en"} [] https://repozitorij.ttf.unizg.hr/ institutional [] 2022-01-12 15:35:55 2017-07-26 14:20:06 ["science", "social sciences", "health and medicine", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ttf.unizg.hr/oai yes 323 803 +3897 {"name": "chungnam institute (\ucda9\ub0a8\uc5f0\uad6c\uc6d0)", "language": "en"} [] http://oak.cni.re.kr/ institutional [] 2022-01-12 15:35:55 2017-07-21 14:35:18 ["science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "chungnam institute", "alternativeName": "", "country": "kr", "url": "http://www.cdi.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oak.cni.re.kr/oai/request yes 0 5610 +3925 {"name": "dr-ntu (data)", "language": "en"} [] https://researchdata.ntu.edu.sg institutional [] 2022-01-12 15:35:56 2017-08-18 15:22:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets", "other_special_item_types"] [{"name": "nanyang technological university", "alternativeName": "ntu", "country": "sg", "url": "http://www.ntu.edu.sg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.ntu.edu.sg/drntudataguidespolicies/termsofuse", "type": "metadata"}, {"policy_url": "https://libguides.ntu.edu.sg/drntudataguidespolicies/termsofuse", "type": "data"}, {"policy_url": "https://libguides.ntu.edu.sg/drntudataguidespolicies/collection", "type": "content"}, {"policy_url": "https://libguides.ntu.edu.sg/drntudataguidespolicies/depositor", "type": "content"}, {"policy_url": "https://libguides.ntu.edu.sg/drntudataguidespolicies/depositor", "type": "submission"}] {"name": "other", "version": ""} https://researchdata.ntu.edu.sg/oai yes 264 +3881 {"name": "mendeley data", "language": "en"} [] https://data.mendeley.com/ aggregating [] 2022-01-12 15:35:55 2017-06-28 15:05:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "mendeley elsevier", "alternativeName": "", "country": "gb", "url": "https://mendeley.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +3869 {"name": "hodges university institutional respository", "language": "en"} [] http://hodges.contentdm.oclc.org/cdm/ institutional [] 2022-01-12 15:35:55 2017-03-21 11:19:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "hodges university", "alternativeName": "", "country": "us", "url": "https://www.hodges.edu/", "identifier": [{"identifier": "https://ror.org/00s8h5d08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm17092.contentdm.oclc.org/oai/oai.php yes 26 +3857 {"name": "electronic kharkiv national pedagogic university institutional repository", "language": "en"} [{"acronym": "ekhnpuir"}] http://dspace.hnpu.edu.ua/ institutional [] 2022-01-12 15:35:54 2017-03-01 12:59:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "h.s. skovoroda kharkiv national pedagogical university", "alternativeName": "", "country": "ua", "url": "http://hnpu.edu.ua/uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1350 +3934 {"name": "technical university of mombasa institutional repository", "language": "en"} [{"acronym": "ir@tum"}] https://ir.tum.ac.ke institutional [] 2022-01-12 15:35:56 2017-08-23 16:46:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "technical university of mombasa", "alternativeName": "", "country": "ke", "url": "http://www.tum.ac.ke/", "identifier": [{"identifier": "https://ror.org/01grm2d66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.tum.ac.ke/oai/request yes +3928 {"name": "osol repository for digital content", "language": "en"} [{"acronym": "osol"}] http://dspace.qou.edu/ institutional [] 2022-01-12 15:35:56 2017-08-23 15:45:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "al-quds open university", "alternativeName": "", "country": "ps", "url": "http://www.qou.edu/home/englishindexpage.do", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3854 {"name": "repositorio institucional universidad cat\u00f3lica san pablo", "language": "en"} [{"acronym": "qolqa"}] http://repositorio.ucsp.edu.pe/ institutional [] 2022-01-12 15:35:54 2017-02-27 10:25:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad cat\u00f3lica san pablo", "alternativeName": "", "country": "pe", "url": "http://ucsp.edu.pe/", "identifier": [{"identifier": "https://ror.org/03db1hz44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucsp.edu.pe/oai/ yes 811 1141 +3906 {"name": "reposit\u00f3rio das universidades lus\u00edada", "language": "en"} [{"acronym": "rul"}] http://repositorio.ulusiada.pt/ institutional [] 2022-01-12 15:35:55 2017-08-02 14:38:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade lus\u00edada", "alternativeName": "", "country": "pt", "url": "http://www.lis.ulusiada.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 3599 +3898 {"name": "university of yangon repository", "language": "en"} [{"acronym": "uyr"}] http://uyr.uy.edu.mm/ institutional [] 2022-01-12 15:35:55 2017-07-26 11:46:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of yangon", "alternativeName": "", "country": "mm", "url": "http://uy.edu.mm/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://uyr.uy.edu.mm/oai yes 0 506 +3860 {"name": "electronic sumy state pedagogical university named after a. s. makarenko institutional repository", "language": "en"} [{"acronym": "esspuir"}] https://repository.sspu.edu.ua institutional [] 2022-01-12 15:35:54 2017-03-02 10:19:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "sumy state pedagogical university named after a. s. makarenko", "alternativeName": "", "country": "ua", "url": "https://sspu.sumy.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.sspu.edu.ua/oai/request yes 920 10128 +3914 {"name": "dspace - technical university of liberec", "language": "en"} [{"name": "dspace - technick\u00e1 univerzita v liberci", "language": "pl"}] https://dspace.tul.cz/ institutional [] 2022-01-12 15:35:55 2017-08-16 09:34:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "technical university of liberec", "alternativeName": "", "country": "cz", "url": "http://www.tul.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3935 {"name": "repositorio institucional udd", "language": "en"} [] http://repositorio.udd.cl/ institutional [] 2022-01-12 15:35:56 2017-08-24 10:28:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad del desarrollo", "alternativeName": "", "country": "cl", "url": "http://www.udd.cl/", "identifier": [{"identifier": "https://ror.org/05y33vv83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3918 {"name": "repositorio institucional usat", "language": "en"} [] http://repositorio.usat.edu.pe/ institutional [] 2022-01-12 15:35:55 2017-08-16 11:41:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica santo toribio de mogrovejo", "alternativeName": "", "country": "pe", "url": "http://www.usat.edu.pe/", "identifier": [{"identifier": "https://ror.org/01h558915", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usat.edu.pe/oai/request yes 1119 +3905 {"name": "cput electronic theses and dissertations repository", "language": "en"} [] http://etd.cput.ac.za/ institutional [] 2022-01-12 15:35:55 2017-08-02 14:24:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "cape peninsula university of technology", "alternativeName": "", "country": "za", "url": "http://www.cput.ac.za/", "identifier": [{"identifier": "https://ror.org/056e9h402", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://etd.cput.ac.za/oai/request yes 141 2190 +3843 {"name": "ipvc repository", "language": "en"} [] http://repositorio.ipvc.pt/ institutional [] 2022-01-12 15:35:54 2017-02-10 11:16:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "instituto polit\u00e9cnico de viana do castelo", "alternativeName": "", "country": "pt", "url": "http://www.ipvc.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipvc.pt/oai/request yes 965 1311 +3943 {"name": "international university of africa repository", "language": "en"} [] http://dspace.iua.edu.sd/ institutional [] 2022-01-12 15:35:56 2017-08-29 16:12:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "international university of africa", "alternativeName": "", "country": "sd", "url": "http://iua.edu.sd/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.iua.edu.sd/oai/request yes 3016 +3862 {"name": "mku rwanda repository", "language": "en"} [] http://repository.mkurwanda.ac.rw/ institutional [] 2022-01-12 15:35:55 2017-03-02 10:27:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "mku rwanda university", "alternativeName": "", "country": "rw", "url": "http://mkurwanda.ac.rw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.mkurwanda.ac.rw/oai/request yes 4 5141 +3873 {"name": "cu digital repository", "language": "en"} [] http://dspace.cuni.cz/ institutional [] 2022-01-12 15:35:55 2017-04-21 14:41:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "charles university", "alternativeName": "", "country": "cz", "url": "http://www.cuni.cz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.cuni.cz/oai/request yes 9374 121450 +3882 {"name": "digitized rare collection", "language": "en"} [] http://www.digital.lib.esn.ac.lk/xmlui/ institutional [] 2022-01-12 15:35:55 2017-07-05 09:39:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "eastern university", "alternativeName": "", "country": "lk", "url": "http://www.esn.ac.lk/", "identifier": [{"identifier": "https://ror.org/01jrs3715", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.digital.lib.esn.ac.lk/oai?request yes 0 1169 +3929 {"name": "ppu dspace", "language": "en"} [] http://scholar.ppu.edu/ institutional [] 2022-01-12 15:35:56 2017-08-23 15:48:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "palestine polytechnic university (ppu)", "alternativeName": "", "country": "ps", "url": "http://www.ppu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3861 {"name": "rediuc", "language": "en"} [] http://rediuc.reduc.edu.cu/ institutional [] 2022-01-12 15:35:55 2017-03-02 10:23:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de camag\u00fcey "ignacio agramonte loynaz"", "alternativeName": "", "country": "cu", "url": "http://www.reduc.edu.cu/", "identifier": [{"identifier": "https://ror.org/040qyzk67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1053 +3849 {"name": "repositorio institucional-universidad peruana de arte orval", "language": "en"} [] http://repositorio.orval.edu.pe/ institutional [] 2022-01-12 15:35:54 2017-02-22 10:24:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad peruana de arte orval", "alternativeName": "", "country": "pe", "url": "http://orval.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.orval.edu.pe/oai yes 0 59 +3904 {"name": "repositorio universidad pedag\u00f3gica y tecnol\u00f3gica de colombia", "language": "es"} [] https://repositorio.uptc.edu.co institutional [] 2022-01-12 15:35:55 2017-08-01 10:16:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad pedag\u00f3gica y tecnol\u00f3gica de colombia", "alternativeName": "uptc", "country": "co", "url": "http://www.uptc.edu.co", "identifier": [{"identifier": "https://ror.org/04vdmbk59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uptc.edu.co/oai/request yes 726 +3924 {"name": "reposit\u00f3rio digital da uffs", "language": "en"} [] https://rd.uffs.edu.br/ institutional [] 2022-01-12 15:35:56 2017-08-16 14:44:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidade federal da fronteira sul", "alternativeName": "", "country": "br", "url": "https://www.uffs.edu.br/", "identifier": [{"identifier": "https://ror.org/03z9wm572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3856 {"name": "bonndoc \u2013 der publikationsserver der universit\u00e4t bonn", "language": "en"} [] https://bonndoc.ulb.uni-bonn.de/ institutional [] 2022-01-12 15:35:54 2017-02-28 14:39:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "bonn university", "alternativeName": "", "country": "de", "url": "https://www.uni-bonn.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bonndoc.ulb.uni-bonn.de/oai yes 574 +3863 {"name": "eastern university institutional repository", "language": "en"} [] http://dspace.easternuni.edu.bd:8080/xmlui/ institutional [] 2022-01-12 15:35:55 2017-03-06 11:48:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "eastern university", "alternativeName": "", "country": "bd", "url": "http://www.easternuni.edu.bd/", "identifier": [{"identifier": "https://ror.org/05e2ncr14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 337 +3842 {"name": "repositorio cient\u00edfico do lnec", "language": "en"} [] http://repositorio.lnec.pt:8080/ institutional [] 2022-01-12 15:35:54 2017-02-10 11:12:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "laborat\u00f3rio nacional de engenharia civil", "alternativeName": "lnec", "country": "pt", "url": "http://www.lnec.pt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.lnec.pt:8080/oai/ yes 0 5927 +3896 {"name": "repositorio institucional universidad santo tom\u00e1s", "language": "en"} [] http://repository.usta.edu.co/ institutional [] 2022-01-12 15:35:55 2017-07-21 13:38:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidad santo tom\u00e1s", "alternativeName": "", "country": "co", "url": "http://www.usta.edu.co/", "identifier": [{"identifier": "https://ror.org/01x628269", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 11404 +3927 {"name": "repositorio acad\u00e9mico digital de la universidad ort uruguay", "language": "en"} [] https://dspace.ort.edu.uy/ institutional [] 2022-01-12 15:35:56 2017-08-22 15:05:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "universidad ort uruguay", "alternativeName": "", "country": "uy", "url": "http://www.ort.edu.uy/", "identifier": [{"identifier": "https://ror.org/03ypykr22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.ort.edu.uy/oai/ yes 0 0 +3893 {"name": "repository universitas medan area", "language": "en"} [] http://repository.uma.ac.id/ institutional [] 2022-01-12 15:35:55 2017-07-20 13:54:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universitas medan area", "alternativeName": "uma", "country": "id", "url": "http://www.uma.ac.id/", "identifier": [{"identifier": "https://ror.org/046581250", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.uma.ac.id/oai/request yes 8589 +3944 {"name": "reposit\u00f3rio institucional da unisul", "language": "en"} [] http://www.riuni.unisul.br/ institutional [] 2022-01-12 15:35:56 2017-08-29 16:25:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidade do sul de santa catarina", "alternativeName": "", "country": "br", "url": "http://www.unisul.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3932 {"name": "repositorio institucional universidad peruana cayetano heredia", "language": "es"} [] http://repositorio.upch.edu.pe institutional [] 2022-01-12 15:35:56 2017-08-23 16:31:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad peruana cayetano heredia", "alternativeName": "", "country": "pe", "url": "http://www.cayetano.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upch.edu.pe/oai/request yes 0 3505 +3852 {"name": "aab college repository", "language": "en"} [] https://dspace.aab-edu.net/ institutional [] 2022-01-12 15:35:54 2017-02-27 10:09:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "aab college", "alternativeName": "", "country": "xk", "url": "http://aab-edu.net/", "identifier": [{"identifier": "https://ror.org/0395pak08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.aab-edu.net/oai/request yes 1079 +3939 {"name": "ir@goa university", "language": "en"} [] http://irgu.unigoa.ac.in/ institutional [] 2022-01-12 15:35:56 2017-08-29 14:48:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "goa university", "alternativeName": "", "country": "in", "url": "https://www.unigoa.ac.in/", "identifier": [{"identifier": "https://ror.org/030reqw53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3859 {"name": "mut institutional repository", "language": "en"} [] http://repository.mut.ac.ke:8080/xmlui/ institutional [] 2022-01-12 15:35:54 2017-03-02 09:26:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "muranga university of technology", "alternativeName": "", "country": "ke", "url": "http://mut.ac.ke/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.mut.ac.ke:8080/oai/request yes 4 4452 +3913 {"name": "manancial - reposit\u00f3rio digital da ufsm", "language": "en"} [] http://repositorio.ufsm.br/ institutional [] 2022-01-12 15:35:55 2017-08-03 10:20:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade federal de santa maria", "alternativeName": "", "country": "br", "url": "http://site.ufsm.br/", "identifier": [{"identifier": "https://ror.org/01b78mz79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ufsm.br/oai yes 13265 +3902 {"name": "nottingham research data management repository", "language": "en"} [] https://rdmc.nottingham.ac.uk/ institutional [] 2022-01-12 15:35:55 2017-07-27 14:21:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk/", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 318 +3883 {"name": "repositorio institucional ulima", "language": "en"} [] http://repositorio.ulima.edu.pe/ institutional [] 2022-01-12 15:35:55 2017-07-05 09:50:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "universidad de lima", "alternativeName": "", "country": "pe", "url": "http://www.ulima.edu.pe/", "identifier": [{"identifier": "https://ror.org/01751w114", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ulima.edu.pe/oai/request yes 2 7289 +3919 {"name": "repository of mozyr state pedagogical university named after i.p. shamyakin", "language": "en"} [] http://dspace.mspu.by/ institutional [] 2022-01-12 15:35:56 2017-08-16 13:33:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "mozyr state pedagogical university named after i.p. shamyakin", "alternativeName": "", "country": "by", "url": "http://mspu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 2729 +3899 {"name": "university of mandalay open access repository", "language": "en"} [] http://umoar.mu.edu.mm/ institutional [] 2022-01-12 15:35:55 2017-07-26 11:49:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of mandalay", "alternativeName": "", "country": "mm", "url": "http://www.mu.edu.mm/", "identifier": [{"identifier": "https://ror.org/030xx9n34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://umoar.mu.edu.mm/oai yes 0 0 +3870 {"name": "birmingham city university open access repository", "language": "en"} [{"acronym": "bcu open access repository"}] http://www.open-access.bcu.ac.uk institutional [] 2022-01-12 15:35:55 2017-03-22 10:43:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "birmingham city university", "alternativeName": "bcu", "country": "gb", "url": "https://www.bcu.ac.uk", "identifier": [{"identifier": "https://ror.org/00t67pt25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://bcu.eprints-hosting.org/cgi/oai2 yes 2503 5744 +3889 {"name": "amu repository (knowledge repository)", "language": "en"} [] http://ir.amu.ac.in/ institutional [] 2022-01-12 15:35:55 2017-07-18 12:09:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "aligarh muslim university", "alternativeName": "", "country": "in", "url": "http://www.amu.ac.in/", "identifier": [{"identifier": "https://ror.org/03kw9gc02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ir.amu.ac.in/cgi/oai2 yes 10930 +3921 {"name": "trisakti university collection of scholarly and academic pa", "language": "en"} [] http://libprint.trisakti.ac.id/ institutional [] 2022-01-12 15:35:56 2017-08-16 14:02:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "trisakti university", "alternativeName": "", "country": "id", "url": "http://trisakti.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://libprint.trisakti.ac.id/cgi/oai2 yes 668 +3877 {"name": "openknowledge@nau", "language": "en"} [] http://openknowledge.nau.edu/ institutional [] 2022-01-12 15:35:55 2017-05-04 15:01:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "northern arizona university", "alternativeName": "", "country": "us", "url": "http://www.nau.edu/", "identifier": [{"identifier": "https://ror.org/0272j5188", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://openknowledge.nau.edu/cgi/oai2 yes 1224 1301 +3933 {"name": "stiesia institutional repository", "language": "en"} [] http://repository.stiesia.ac.id/ institutional [] 2022-01-12 15:35:56 2017-08-23 16:36:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sekolah tinggi ilmu ekonomi indonesia (stiesia) surabaya", "alternativeName": "", "country": "id", "url": "http://stiesia.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.stiesia.ac.id/cgi/oai2/ yes 1689 3487 +3926 {"name": "sunway institutional repository", "language": "en"} [] http://eprints.sunway.edu.my/ institutional [] 2022-01-12 15:35:56 2017-08-22 14:34:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sunway university", "alternativeName": "", "country": "my", "url": "https://university.sunway.edu.my/", "identifier": [{"identifier": "https://ror.org/04mjt7f73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.sunway.edu.my/cgi/oai2 yes 935 1445 +3936 {"name": "university of nahdlatul ulama surabaya repository", "language": "en"} [] http://repository.unusa.ac.id/ institutional [] 2022-01-12 15:35:56 2017-08-24 14:22:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of nahdlatul ulama surabaya", "alternativeName": "", "country": "id", "url": "http://www.unusa.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unusa.ac.id/cgi/oai2 yes 5680 6172 +3937 {"name": "arab open access", "language": "en"} [] https://zenodo.org/communities/aoa/?page=1&size=20 institutional [] 2022-01-12 15:35:56 2017-08-24 15:34:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "arab open access movement", "alternativeName": "", "country": "lb", "url": "https://zenodo.org/communities/aoa/?page=1&size=20", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +3874 {"name": "espace enap", "language": "en"} [] http://espace.enap.ca/ institutional [] 2022-01-12 15:35:55 2017-04-21 14:54:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "\u00e9cole nationale d administration publique", "alternativeName": "", "country": "ca", "url": "http://www.enap.ca/enap/fr/accueil.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://espace.enap.ca/cgi/oai2 yes 171 197 +3940 {"name": "kashan university of medical sciences repository", "language": "en"} [] http://eprints.kaums.ac.ir/ institutional [] 2022-01-12 15:35:56 2017-08-29 15:17:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kashan university of medical sciences", "alternativeName": "\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0639\u0644\u0648\u0645 \u067e\u0632\u0634\u06a9\u06cc \u06a9\u0627\u0634\u0627\u0646", "country": "ir", "url": "http://kaums.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.kaums.ac.ir/cgi/oai2 yes 2858 +3879 {"name": "opus-htw", "language": "en"} [] https://opus4.kobv.de/opus4-htw/home institutional [] 2022-01-12 15:35:55 2017-06-21 16:10:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "hochschule f\u00fcr technik und wirtschaft berlin", "alternativeName": "", "country": "de", "url": "http://www.htw-berlin.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 80 +3887 {"name": "zu|repositorium \u2013 der hochschul- und dokumentenschriftenserver der zeppelin universit\u00e4t", "language": "en"} [] https://repositorium.zu.de/ institutional [] 2022-01-12 15:35:55 2017-07-07 13:50:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "zeppelin universit\u00e4t gemeinn\u00fctzige gmbh", "alternativeName": "", "country": "de", "url": "https://www.zu.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://repositorium.zu.de/oai yes 14 +3888 {"name": "dopus dokumenten- und publikationsserver speyer", "language": "en"} [] https://dopus.uni-speyer.de/ institutional [] 2022-01-12 15:35:55 2017-07-07 14:28:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "deutsche universit\u00e4t f\u00fcr verwaltungswissenschaften speyer", "alternativeName": "", "country": "de", "url": "http://www.uni-speyer.de/de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://dopus.uni-speyer.de/oai yes 3212 +3885 {"name": "opus-hsma - hochschulschriftenserver der hochschule mannheim", "language": "en"} [] https://opus.bib.hs-mannheim.de/ institutional [] 2022-01-12 15:35:55 2017-07-07 13:39:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hochschule mannheim", "alternativeName": "", "country": "de", "url": "https://www.hs-mannheim.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bib.hs-mannheim.de/oai yes 3 +3855 {"name": "public research access institutional repository and information exchange", "language": "en"} [{"acronym": "open prairie"}] http://openprairie.sdstate.edu/ institutional [] 2022-01-12 15:35:54 2017-02-27 10:30:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "south dakota state university", "alternativeName": "", "country": "us", "url": "http://www.sdstate.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://openprairie.sdstate.edu/do/oai/ yes 14221 +3851 {"name": "the open repository @binghamton (the orb)", "language": "en"} [] http://orb.binghamton.edu/ institutional [] 2022-01-12 15:35:54 2017-02-27 09:56:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "binghamton university", "alternativeName": "", "country": "us", "url": "http://www.binghamton.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://orb.binghamton.edu/do/oai/ yes 2478 +3876 {"name": "dominican scholar", "language": "en"} [] http://scholar.dominican.edu/ institutional [] 2022-01-12 15:35:55 2017-05-02 09:58:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "dominican university of california", "alternativeName": "", "country": "us", "url": "http://www.dominican.edu/", "identifier": [{"identifier": "https://ror.org/056d3gw71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholar.dominican.edu/do/oai/ yes 2645 +3930 {"name": "repositorio institucional universidad cat\u00f3lica de salta", "language": "en"} [{"acronym": "repositorio institucional ucasal"}] http://bibliotecas.ucasal.edu.ar/opac_css/index.php?lvl=cmspage&pageid=16 institutional [] 2022-01-12 15:35:56 2017-08-23 16:17:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de salta", "alternativeName": "", "country": "ar", "url": "http://www.ucasal.edu.ar/", "identifier": [{"identifier": "https://ror.org/01n006s45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bibliotecas.ucasal.edu.ar/ws/oai2_7 yes 0 26101 +3941 {"name": "eplus", "language": "en"} [{"acronym": "open access publikationsserver der universit\u00e4t salzburg"}] http://eplus.uni-salzburg.at institutional [] 2022-01-12 15:35:56 2017-08-29 15:22:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of salzburg", "alternativeName": "", "country": "at", "url": "https://www.uni-salzburg.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://eplus.uni-salzburg.at/oai yes 312 1649 +3858 {"name": "hanze uas repository", "language": "en"} [] https://research.hanze.nl/ institutional [] 2022-01-12 15:35:54 2017-03-02 09:03:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "other_special_item_types"] [{"name": "hanze university of applied sciences", "alternativeName": "", "country": "nl", "url": "https://www.hanze.nl/eng", "identifier": [{"identifier": "https://ror.org/00xqtxw43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.hanze.nl/ws/oai yes 3517 8814 +3884 {"name": "leeds trinity university", "language": "en"} [] http://research.leedstrinity.ac.uk/en/publications/search.html institutional [] 2022-01-12 15:35:55 2017-07-05 11:10:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "leeds trinity university", "alternativeName": "", "country": "gb", "url": "http://www.leedstrinity.ac.uk/", "identifier": [{"identifier": "https://ror.org/02x80b031", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes 2740 +3880 {"name": "university of st andrews research portal", "language": "en"} [] https://risweb.st-andrews.ac.uk/portal/ institutional [] 2022-01-12 15:35:55 2017-06-22 14:06:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of st andrews", "alternativeName": "", "country": "gb", "url": "http://www.st-andrews.ac.uk/", "identifier": [{"identifier": "https://ror.org/02wn5qz54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://risweb.st-andrews.ac.uk/ws/oai yes 0 64756 +3848 {"name": "vrije universiteit brussel research portal", "language": "en"} [] https://cris.vub.be institutional [] 2022-01-12 15:35:54 2017-02-22 10:18:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "learning_objects"] [{"name": "vrije universiteit brussel", "alternativeName": "", "country": "be", "url": "http://www.vub.ac.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://biblio.vub.ac.be/oai yes +3864 {"name": "university of south wales research explorer", "language": "en"} [] https://pure.southwales.ac.uk/ institutional [] 2022-01-12 15:35:55 2017-03-06 12:06:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "university of south wales", "alternativeName": "", "country": "gb", "url": "http://www.southwales.ac.uk/", "identifier": [{"identifier": "https://ror.org/02mzn7s88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes 7403 +3868 {"name": "kwansei gakuin university repository", "language": "en"} [{"name": "\u95a2\u897f\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwansei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:55 2017-03-21 10:31:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kwansei gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.kwansei.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwansei.repo.nii.ac.jp/oai yes 12331 29556 +3946 {"name": "tokyo national research institute for cultural properties - publications repository", "language": "en"} [{"name": "\u6771\u4eac\u6587\u5316\u8ca1\u7814\u7a76\u6240\u520a\u884c\u7269\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tobunken.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:56 2017-08-30 10:08:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "independent administrative institution national research institute for cultural properties, tokyo", "alternativeName": "", "country": "jp", "url": "http://www.tobunken.go.jp/index_e.html", "identifier": [{"identifier": "https://ror.org/02j18km55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tobunken.repo.nii.ac.jp/oai yes 3467 8993 +3850 {"name": "truspace", "language": "en"} [] http://tru.arcabc.ca/ institutional [] 2022-01-12 15:35:54 2017-02-22 12:20:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "thompson rivers university", "alternativeName": "", "country": "ca", "url": "http://www.tru.ca/", "identifier": [{"identifier": "https://ror.org/01v9wj339", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes 1170 +3846 {"name": "university of toledo digital repository", "language": "en"} [] http://utdr.utoledo.edu/ institutional [] 2022-01-12 15:35:54 2017-02-16 15:19:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of toledo", "alternativeName": "", "country": "us", "url": "http://www.utoledo.edu/", "identifier": [{"identifier": "https://ror.org/01pbdzh19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://utdr.utoledo.edu/oai2/?verb=identify yes 16895 +3923 {"name": "hm digital", "language": "en"} [] http://www.bib.hm.edu/recherche/hmdigital/index.de.html institutional [] 2022-01-12 15:35:56 2017-08-16 14:30:14 ["science"] ["bibliographic_references", "books_chapters_and_sections"] [{"name": "hochschule m\u00fcnchen", "alternativeName": "", "country": "de", "url": "http://www.hm.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://digipool.bib-bvb.de/bvb/vir_oai/oai.pl?verb=listrecords&metadataprefix=oai_dc yes 0 141 +3908 {"name": "repository of faculty of science, university of zagreb", "language": "en"} [] https://repozitorij.pmf.unizg.hr/ institutional [] 2022-01-12 15:35:55 2017-08-02 15:00:24 ["science"] ["bibliographic_references"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.pmf.unizg.hr/oai yes 4457 8264 +3931 {"name": "repository of the department of chemistry, osijek", "language": "en"} [] https://repozitorij.kemija.unios.hr/ institutional [] 2022-01-12 15:35:56 2017-08-23 16:22:23 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kemija.unios.hr/oai yes 0 0 +3910 {"name": "repository of the faculty of chemistry and technology, university of split", "language": "en"} [] https://repozitorij.ktf-split.hr/ institutional [] 2022-01-12 15:35:55 2017-08-02 15:01:44 ["science"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ktf-split.hr/oai yes 28 618 +3878 {"name": "repositori obert de coneixement de lajuntament de barcelona", "language": "en"} [{"acronym": "bcnroc"}] https://bcnroc.ajuntament.barcelona.cat/ governmental [] 2022-01-12 15:35:55 2017-05-31 10:35:27 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ajuntament de barcelona", "alternativeName": "", "country": "es", "url": "http://ajuntament.barcelona.cat/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bcnroc.ajuntament.barcelona.cat/oai/request yes 603 68533 +3916 {"name": "biblioteca digital universidad de san buenaventura", "language": "en"} [] http://bibliotecadigital.usb.edu.co/ institutional [] 2022-01-12 15:35:55 2017-08-16 10:52:21 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de san buenaventura", "alternativeName": "", "country": "co", "url": "http://www.usb.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecadigital.usb.edu.co/oai/ yes 0 5303 +3911 {"name": "repository of the faculty of education", "language": "en"} [] https://repozitorij.foozos.hr/ institutional [] 2022-01-12 15:35:55 2017-08-02 15:02:28 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.foozos.hr/oai yes 705 1249 +3920 {"name": "repositorio institucional de la universidad la salle", "language": "en"} [{"acronym": "ruls"}] http://repositorio.ulasalle.edu.pe/ institutional [] 2022-01-12 15:35:56 2017-08-16 13:37:25 ["technology"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad la salle", "alternativeName": "ulasalle", "country": "pe", "url": "http://www.ulasalle.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ulasalle.edu.pe/oai/ yes 0 9 +3894 {"name": "sintef open", "language": "en"} [] https://sintef.brage.unit.no institutional [] 2022-01-12 15:35:55 2017-07-20 14:14:35 ["technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "sintef", "alternativeName": "", "country": "no", "url": "https://www.sintef.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://sintef.brage.unit.no/sintef-oai/request yes 3699 +3845 {"name": "io pwr", "language": "en"} [] http://io.pwr.edu.pl/eprints/ institutional [] 2022-01-12 15:35:54 2017-02-14 13:27:55 ["technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "wroclaw university of science and technology", "alternativeName": "", "country": "pl", "url": "http://pwr.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://io.pwr.edu.pl/eprints/policies.html", "type": "metadata"}, {"policy_url": "http://io.pwr.edu.pl/eprints/policies.html", "type": "data"}, {"policy_url": "http://io.pwr.edu.pl/eprints/policies.html", "type": "content"}, {"policy_url": "http://io.pwr.edu.pl/eprints/policies.html", "type": "submission"}, {"policy_url": "http://io.pwr.edu.pl/eprints/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://io.pwr.edu.pl/eprints/cgi/oai2 yes 82 +3853 {"name": "tyler collection of romanian and modern art: university of tasmania", "language": "en"} [] http://tylercollection.omeka.net/ institutional [] 2022-01-12 15:35:54 2017-02-27 10:16:09 ["humanities", "arts"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of tasmania", "alternativeName": "utas", "country": "au", "url": "http://www.utas.edu.au/", "identifier": [{"identifier": "https://ror.org/01nfmeh72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://tylercollection.omeka.net/oai-pmh-repository/request yes 0 1434 +3875 {"name": "emu dspace", "language": "en"} [] https://dspace.emu.ee institutional [] 2022-01-12 15:35:55 2017-05-02 09:51:54 ["science", "social sciences", "technology"] ["theses_and_dissertations", "learning_objects"] [{"name": "estonian university of life sciences", "alternativeName": "emu", "country": "ee", "url": "https://www.emu.ee", "identifier": [{"identifier": "https://ror.org/00s67c790", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://library.emu.ee/en/research/digital-archiv-emu-dspace/data-policy/", "type": "data"}, {"policy_url": "https://library.emu.ee/en/research/digital-archiv-emu-dspace/data-policy/", "type": "metadata"}] {"name": "dspace", "version": ""} https://dspace.emu.ee/oai yes 538 5867 +3890 {"name": "ilc4clarin repository of language resources and tools", "language": "en"} [] https://dspace-clarin-it.ilc.cnr.it/repository/xmlui disciplinary [] 2022-01-12 15:35:55 2017-07-20 11:31:58 ["arts", "humanities", "social sciences"] ["datasets"] [{"name": "institute for computational linguistics \u201ca. zampolli\u201d", "alternativeName": "", "country": "it", "url": "http://www.ilc.cnr.it/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/about#metadata-policy", "type": "metadata"}, {"policy_url": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/about#preservation-policy", "type": "preservation"}] {"name": "dspace", "version": ""} http://dspace-clarin-it.ilc.cnr.it/repository/oai/request yes 1 99 +3866 {"name": "universitas airlangga repository", "language": "en"} [] http://repository.unair.ac.id/ institutional [] 2022-01-12 15:35:55 2017-03-20 09:33:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universitas airlangga", "alternativeName": "", "country": "id", "url": "http://www.unair.ac.id/", "identifier": [{"identifier": "https://ror.org/04ctejd88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.unair.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.unair.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.unair.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.unair.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.unair.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.unair.ac.id/cgi/pai2 yes 16837 54025 +4004 {"name": "repository of the faculty of humanities and social sciences osijek", "language": "en"} [] https://repozitorij.ffos.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 15:32:11 ["arts", "humanities", "mathematics", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://wt.foozos.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ffos.hr/oai yes 2323 +4044 {"name": "griffith open", "language": "en"} [] https://go.griffith.ie/ institutional [] 2022-01-12 15:35:57 2018-02-08 11:17:44 ["arts", "humanities", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "griffith college", "alternativeName": "", "country": "ie", "url": "https://www.griffith.ie/", "identifier": [{"identifier": "https://ror.org/032nfpx77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://go.griffith.ie/cgi/oai2 yes 72 +4026 {"name": "fhs brage", "language": "en"} [] https://fhs.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-01-25 09:32:58 ["arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "norwegian defence university college", "alternativeName": "", "country": "no", "url": "https://forsvaret.no/hogskolene/forsvarets-hogskole", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fhs.brage.unit.no/fhs-oai/request yes 682 +4018 {"name": "repository of faculty of humanities and social sciences, university of split", "language": "en"} [] https://repozitorij.ffst.unist.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:02:00 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ffst.unist.hr/oai yes 908 +4023 {"name": "repository of university of zagreb, centre for croatian studies", "language": "en"} [] https://repozitorij.hrstud.unizg.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:55:14 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.hrstud.unizg.hr/oai yes 1060 +4010 {"name": "repository of the academy of arts, university of osijek", "language": "en"} [] https://repozitorij.uaos.unios.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 08:52:13 ["arts", "humanities"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.uaos.unios.hr/oai yes 278 +4027 {"name": "nofima repository", "language": "en"} [{"name": "nofima vitenarkiv", "language": "no"}] https://nofima.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-01-25 09:42:07 ["health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "nofima", "alternativeName": "", "country": "no", "url": "https://nofima.no/", "identifier": [{"identifier": "https://ror.org/02v1rsx93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nofima.brage.unit.no/nofima-oai/request yes 779 +4030 {"name": "norwegian institute of public health open repository", "language": "en"} [] https://fhi.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-01-25 10:58:48 ["health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "norwegian institute of public health (folkehelseinstituttet)", "alternativeName": "", "country": "no", "url": "https://www.fhi.no/", "identifier": [{"identifier": "https://ror.org/046nvst19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fhi.brage.unit.no/fhi-oai/ yes 2773 +4025 {"name": "repository of the sestre milosrdnice university hospital center", "language": "en"} [] https://repozitorij.kbcsm.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 11:05:48 ["health and medicine"] ["journal_articles", "books_chapters_and_sections", "datasets"] [{"name": "university clinical hospital center sestre milosrdnice", "alternativeName": "", "country": "hr", "url": "http://www.kbcsm.hr/", "identifier": [{"identifier": "https://ror.org/024a8dx81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kbcsm.hr/oai yes 15 +4015 {"name": "university department of health studies repository", "language": "en"} [] https://repo.ozs.unist.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 09:22:35 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repo.ozs.unist.hr/oai yes 106 +4013 {"name": "repository of faculty of kinesiology, university of zagreb - kiforep", "language": "en"} [] https://repozitorij.kif.unizg.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 09:16:30 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kif.unizg.hr/oai yes 489 +3986 {"name": "clarin service center of the zentrum sprache at the bbaw", "language": "en"} [] https://clarin.bbaw.de/ institutional [] 2022-01-12 15:35:56 2017-11-14 11:16:20 ["humanities", "arts"] ["bibliographic_references", "datasets"] [{"name": "berlin-brandenburg academy of sciences and humanities", "alternativeName": "", "country": "de", "url": "http://www.bbaw.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://clarin.bbaw.de:8088/oaiprovider yes 4614 +4040 {"name": "norwegian geotechnical institute (ngi) digital archive", "language": "en"} [] https://ngi.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-02-06 10:35:36 ["humanities", "science", "mathematics", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "norwegian geotechnical institute", "alternativeName": "ngi", "country": "no", "url": "https://www.ngi.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ngi.brage.unit.no/ngi-oai/request yes 202 +3997 {"name": "faculty of mining, geology and petroleum engineering repository", "language": "en"} [] https://repozitorij.rgn.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:46:42 ["humanities", "science", "technology"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.rgn.unizg.hr/oai yes 608 +4041 {"name": "nupi research online", "language": "en"} [] https://nupi.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-02-06 10:43:46 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "norwegian institute of international affairs", "alternativeName": "", "country": "no", "url": "http://www.nupi.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nupi.brage.unit.no/nupi-oai/ yes 779 +3947 {"name": "digitalna zbirka hrvatske akademije znanosti i umjetnosti", "language": "en"} [{"acronym": "dizbi.hazu"}] http://dizbi.hazu.hr/ institutional [] 2022-01-12 15:35:56 2017-08-30 11:37:10 ["science", "arts", "humanities"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "croatian academy of sciences and arts", "alternativeName": "", "country": "hr", "url": "http://info.hazu.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dizbi.hazu.hr/oai/ yes 31127 +4046 {"name": "bam-publica", "language": "en"} [] https://opus4.kobv.de/opus4-bam/home institutional [] 2022-01-12 15:35:57 2018-02-08 11:31:25 ["science", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "bundesanstalt f\u00fcr materialforschung und -pr\u00fcfung", "alternativeName": "bam", "country": "de", "url": "https://www.bam.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes 43234 +4000 {"name": "repository of faculty of chemical engineering and technology university of zagreb", "language": "en"} [] https://repozitorij.fkit.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 15:04:36 ["science", "mathematics", "technology", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fkit.unizg.hr/oai yes 442 +4045 {"name": "people @ fh burgenland", "language": "en"} [] https://people.fh-burgenland.at/ institutional [] 2022-01-12 15:35:57 2018-02-08 11:25:20 ["science", "social sciences", "health and medicine", "technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "patents"] [{"name": "fh burgenland", "alternativeName": "", "country": "at", "url": "http://www.fh-burgenland.at/", "identifier": [{"identifier": "https://ror.org/00t6gnv18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://people.fh-burgenland.at/oai/request yes 1020 +4006 {"name": "serbian academy of science and arts digital archive", "language": "en"} [{"acronym": "dais"}] http://dais.sanu.ac.rs/ institutional [] 2022-01-12 15:35:57 2017-12-20 11:51:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "serbian academy of science and arts", "alternativeName": "", "country": "rs", "url": "http://sanu.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://dais.sanu.ac.rs/files/policy-dais-en.html", "type": "metadata"}, {"policy_url": "http://dais.sanu.ac.rs/files/policy-dais-en.html", "type": "data"}, {"policy_url": "http://dais.sanu.ac.rs/files/policy-dais-en.html", "type": "content"}, {"policy_url": "http://dais.sanu.ac.rs/files/policy-dais-en.html", "type": "submission"}, {"policy_url": "http://dais.sanu.ac.rs/files/policy-dais-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://dais.sanu.ac.rs/oai/request yes 3219 +3971 {"name": "chinaxiv", "language": "en"} [] http://chinaxiv.org/ institutional [] 2022-01-12 15:35:56 2017-09-07 12:08:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national science library, chinese academy of sciences", "alternativeName": "", "country": "cn", "url": "http://english.las.cas.cn/", "identifier": [{"identifier": "https://ror.org/04ndjyr10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.chinaxiv.org/oai/ yes 9556 +3985 {"name": "osf preprints", "language": "en"} [] https://osf.io/preprints/ aggregating [] 2022-01-12 15:35:56 2017-09-27 11:26:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "center for open science", "alternativeName": "cos", "country": "us", "url": "https://cos.io", "identifier": [{"identifier": "https://ror.org/05d5mza29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 2097029 +3960 {"name": "hal-ifpen : archive ouverte ifp energies nouvelles", "language": "en"} [] https://hal-ifp.archives-ouvertes.fr/ disciplinary [] 2022-01-12 15:35:56 2017-09-04 11:23:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ifp energies nouvelles", "alternativeName": "", "country": "fr", "url": "http://www.ifpenergiesnouvelles.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4017 {"name": "juraj dobrila university of pula digital repository", "language": "en"} [] https://repozitorij.unipu.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 09:59:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "juraj dobrila university of pula", "alternativeName": "", "country": "hr", "url": "https://unipu.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://repozitorij.unipu.hr/oai yes 1449 +3958 {"name": "science media", "language": "en"} [] http://www.science-media.org/ disciplinary [] 2022-01-12 15:35:56 2017-08-31 15:38:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "the science media network gmbh", "alternativeName": "", "country": "de", "url": "http://science-media.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4039 {"name": "phiq - das repository der p\u00e4dagogischen hochschule st.gallen", "language": "en"} [] http://phsg.contentdm.oclc.org/ institutional [] 2022-01-12 15:35:57 2018-02-06 10:13:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "p\u00e4dagogische hochschule st.gallen", "alternativeName": "", "country": "ch", "url": "https://www.phsg.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.phsg.ch/sites/default/files/cms/dienstleistung/medienverbund/services/beratungsstelle%20open%20access/200204_oa-policy_phsg.pdf", "type": "data"}] {"name": "contentdm", "version": ""} http://cdm15782.contentdm.oclc.org/oai/oai.php yes 1657 +4005 {"name": "archivio istituzionale della ricerca- universit\u00e0 degli studi di foggia", "language": "en"} [] https://fair.unifg.it/ institutional [] 2022-01-12 15:35:57 2017-12-20 11:35:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di foggia", "alternativeName": "", "country": "it", "url": "http://www.unifg.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fair.unifg.it/oai/request? yes 32682 +3990 {"name": "alfred university research and archives", "language": "en"} [{"acronym": "aura"}] https://aura.alfred.edu/ institutional [] 2022-01-12 15:35:56 2017-12-05 11:15:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "alfred university", "alternativeName": "", "country": "us", "url": "https://alfred.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aura.alfred.edu/oai/ yes 4282 +3965 {"name": "national repository of dissertations in serbia", "language": "en"} [{"acronym": "nardus"}] http://nardus.mpn.gov.rs/ institutional [] 2022-01-12 15:35:56 2017-09-05 11:37:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ministry of education, science and technological develompent", "alternativeName": "", "country": "rs", "url": "http://www.mpn.gov.rs/", "identifier": [{"identifier": "https://ror.org/01znas443", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://harvester.rcub.bg.ac.rs/oai/request yes 4796 +3967 {"name": "casa nara", "language": "en"} [] https://arhiva.nara.ac.rs/ institutional [] 2022-01-12 15:35:56 2017-09-05 15:32:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of belgrade, faculty of agriculture", "alternativeName": "", "country": "rs", "url": "http://www.agrif.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arhiva.nara.ac.rs/oai/request yes 1937 +3989 {"name": "dep\u00f3sito digital e-ucjc", "language": "en"} [] http://repositorio.ucjc.edu/ institutional [] 2022-01-12 15:35:56 2017-12-04 11:45:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad camilo jos\u00e9 cela", "alternativeName": "", "country": "es", "url": "http://www.ucjc.edu/", "identifier": [{"identifier": "https://ror.org/03f6h9044", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ucjc.edu/oai/request yes 733 +4028 {"name": "nifu open access archive", "language": "en"} [] https://nifu.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-01-25 10:24:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "nordisk institutt for studier av innovasjon, forskning og utdanning", "alternativeName": "nifu", "country": "no", "url": "https://www.nifu.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nifu.brage.unit.no/nifu-oai/ yes 1858 +3954 {"name": "repositorio institucional unif\u00e9", "language": "en"} [] http://repositorio.unife.edu.pe/ institutional [] 2022-01-12 15:35:56 2017-08-31 11:09:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad femenina del sagrado coraz\u00f3n", "alternativeName": "", "country": "pe", "url": "http://www.unife.edu.pe/", "identifier": [{"identifier": "https://ror.org/03sdg3x20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unife.edu.pe/oai/request yes 0 298 +3974 {"name": "reposit\u00f3rio digital fgv", "language": "en"} [] http://bibliotecadigital.fgv.br/dspace/ disciplinary [] 2022-01-12 15:35:56 2017-09-13 11:30:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o getulio vargas", "alternativeName": "", "country": "br", "url": "http://portal.fgv.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bibliotecadigital.fgv.br/dspace-oai yes 20818 +3953 {"name": "rspace", "language": "en"} [] http://rspace.uwaterloo.ca/ institutional [] 2022-01-12 15:35:56 2017-08-30 16:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "renison unversity college", "alternativeName": "", "country": "ca", "url": "https://uwaterloo.ca/renison/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +3959 {"name": "repositorio institucional universidad alas peruanas", "language": "en"} [] http://repositorio.uap.edu.pe/ institutional [] 2022-01-12 15:35:56 2017-08-31 16:01:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad alas peruanas", "alternativeName": "", "country": "pe", "url": "http://www.uap.edu.pe/", "identifier": [{"identifier": "https://ror.org/00s582s04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uap.edu.pe/oai yes 0 5027 +3991 {"name": "scientia, dip\u00f2sit d\u2019informaci\u00f3 digital del departament de salut", "language": "en"} [] https://scientiasalut.gencat.cat/ governmental [] 2022-01-12 15:35:56 2017-12-18 10:09:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "departament de salut de la generalitat de catalunya", "alternativeName": "", "country": "es", "url": "http://salutweb.gencat.cat/ca/inici/", "identifier": [{"identifier": "https://ror.org/00nyrjc53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scientiasalut.gencat.cat/oai/request yes 2442 +3964 {"name": "allegheny college digital repository", "language": "en"} [] https://dspace.allegheny.edu/ institutional [] 2022-01-12 15:35:56 2017-09-05 10:55:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "allegheny college", "alternativeName": "", "country": "us", "url": "http://allegheny.edu/", "identifier": [{"identifier": "https://ror.org/02jgzjj54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 21032 +3992 {"name": "electronic library of belarusian state technological university", "language": "en"} [] https://elib.belstu.by institutional [] 2022-01-12 15:35:57 2017-12-18 11:39:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "belarusian state technological university", "alternativeName": "bstu", "country": "by", "url": "https://www.belstu.by/", "identifier": [{"identifier": "https://ror.org/00cp8c465", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.belstu.by/oai/request yes 12106 +4007 {"name": "ldh brage", "language": "en"} [] https://ldh.brage.unit.no institutional [] 2022-01-12 15:35:57 2017-12-20 15:15:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lovisenberg diaconal university college", "alternativeName": "", "country": "no", "url": "https://www.ldh.no/", "identifier": [{"identifier": "https://ror.org/015rzvz05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ldh.brage.unit.no/ldh-oai/request yes 195 +3956 {"name": "american university of nigeria (aun) digital repository", "language": "en"} [] http://digitallibrary.aun.edu.ng:8080/xmlui/ institutional [] 2022-01-12 15:35:56 2017-08-31 12:25:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "american university of nigeria", "alternativeName": "", "country": "ng", "url": "http://www.aun.edu.ng/", "identifier": [{"identifier": "https://ror.org/02kv8bx48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digitallibrary.aun.edu.ng:8080/oai/request?verb=identify yes 0 0 +4038 {"name": "ibn haldun university institutional repository", "language": "en"} [] http://openaccess.ihu.edu.tr/ institutional [] 2022-01-12 15:35:57 2018-01-25 14:43:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ibn haldun university", "alternativeName": "", "country": "tr", "url": "http://www.ihu.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.ihu.edu.tr/oai/request yes 280 +3957 {"name": "juslaboris - biblioteca digital da justi\u00e7a do trabalho", "language": "en"} [] http://juslaboris.tst.jus.br/ governmental [] 2022-01-12 15:35:56 2017-08-31 15:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "tribunal superior do trabalho", "alternativeName": "", "country": "br", "url": "http://www.tst.jus.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://juslaboris.tst.jus.br/oai yes 0 0 +3955 {"name": "repository vitebsk state technological university", "language": "en"} [] http://rep.vstu.by/ institutional [] 2022-01-12 15:35:56 2017-08-31 11:59:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "vitebsk state technological university", "alternativeName": "", "country": "by", "url": "http://vstu.by/", "identifier": [{"identifier": "https://ror.org/00q96wx12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://vstu.by/ yes 0 0 +3968 {"name": "repozytorium uniwersytetu warszawskiego (university of warsaw repository)", "language": "en"} [] http://depotuw.ceon.pl/ institutional [] 2022-01-12 15:35:56 2017-09-06 14:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of warsaw library", "alternativeName": "", "country": "pl", "url": "http://www.buw.uw.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://depotuw.ceon.pl/oaiextended/request yes 1738 +3973 {"name": "activos digitales iaph", "language": "en"} [] http://repositorio.iaph.es/ institutional [] 2022-01-12 15:35:56 2017-09-13 11:20:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "instituto andaluz de patrimonio hist\u00f3rico", "alternativeName": "", "country": "es", "url": "http://www.iaph.es/", "identifier": [{"identifier": "https://ror.org/01p1xdv40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repositorio.iaph.es/ayuda/politicas_rea_2020_definitivo_202010.pdf", "type": "data"}, {"policy_url": "https://repositorio.iaph.es/ayuda/politicas_rea_2020_definitivo_202010.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://repositorio.iaph.es/oai/request yes 83165 +4043 {"name": "dias access to institutional repository", "language": "en"} [{"acronym": "dair"}] https://dair.dias.ie/ institutional [] 2022-01-12 15:35:57 2018-02-08 11:11:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "dublin institute for advanced studies", "alternativeName": "dias", "country": "ie", "url": "https://www.dias.ie/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dair.dias.ie/cgi/oai2 yes 680 +3962 {"name": "szte egyetemi kiadv\u00e1nyok / university of szeged repository of papers and books", "language": "en"} [] http://acta.bibl.u-szeged.hu/ institutional [] 2022-01-12 15:35:56 2017-09-04 15:41:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of szeged", "alternativeName": "", "country": "hu", "url": "http://www.u-szeged.hu/", "identifier": [{"identifier": "https://ror.org/01pnej532", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://acta.bibl.u-szeged.hu/cgi/oai2 yes 51750 +3966 {"name": "pasundan repository", "language": "en"} [] http://repository.unpas.ac.id/ institutional [] 2022-01-12 15:35:56 2017-09-05 11:51:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universitas pasundan", "alternativeName": "", "country": "id", "url": "http://unpas.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unpas.ac.id/cgi/oai2 yes 10763 +4036 {"name": "vilnius university institutional repository", "language": "en"} [] https://repository.vu.lt/ institutional [] 2022-01-12 15:35:57 2018-01-25 14:00:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "vilnius university", "alternativeName": "", "country": "lt", "url": "https://www.vu.lt/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://epublications.vu.lt/oai yes +4047 {"name": "hal evry", "language": "en"} [] https://hal-univ-evry.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:57 2018-02-08 13:21:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "universit\u00e9 devry val dessonne", "alternativeName": "", "country": "fr", "url": "http://www.univ-evry.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-evry yes 5514 +4048 {"name": "centralesupelec", "language": "en"} [] https://hal-centralesupelec.archives-ouvertes.fr/ institutional [] 2022-01-12 15:35:57 2018-02-08 13:25:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "centralesupelec", "alternativeName": "", "country": "fr", "url": "http://www.centralesupelec.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes 13189 +3952 {"name": "digital commons @ buffalo state", "language": "en"} [] http://digitalcommons.buffalostate.edu/ institutional [] 2022-01-12 15:35:56 2017-08-30 15:52:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "buffalo state college", "alternativeName": "", "country": "us", "url": "http://suny.buffalostate.edu/", "identifier": [{"identifier": "https://ror.org/05ms04m92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 9434 +3963 {"name": "digital usd", "language": "en"} [] http://digital.sandiego.edu/ institutional [] 2022-01-12 15:35:56 2017-09-04 16:07:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of san diego", "alternativeName": "", "country": "us", "url": "http://www.sandiego.edu/", "identifier": [{"identifier": "https://ror.org/03jbbze48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4009 {"name": "royal holloway data archive", "language": "en"} [] https://royalholloway.figshare.com/ institutional [] 2022-01-12 15:35:57 2018-01-11 10:29:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "datasets", "other_special_item_types"] [{"name": "royal holloway, university of london", "alternativeName": "", "country": "gb", "url": "https://www.royalholloway.ac.uk/home.aspx", "identifier": [{"identifier": "https://ror.org/04g2vpn86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4034 {"name": "archivio istituzionale della ricerca- universit\u00e0 del salento", "language": "en"} [{"acronym": "airus"}] https://airus.unisalento.it/ institutional [] 2022-01-12 15:35:57 2018-01-25 11:38:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universit\u00e0 dedel salento", "alternativeName": "", "country": "it", "url": "http://www.unisalento.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://iris.unisalento.it/oai/request yes 53596 +3980 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi di cassino", "language": "en"} [] https://iris.unicas.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:56:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di cassino e del lazio meridionale", "alternativeName": "", "country": "it", "url": "http://www.unicas.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4049 {"name": "apeiron - iulm", "language": "en"} [] http://apeiron.iulm.it/ institutional [] 2022-01-12 15:35:57 2018-02-13 09:29:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "istituto universitario lingue moderne", "alternativeName": "iulm", "country": "it", "url": "http://www.iulm.it/", "identifier": [{"identifier": "https://ror.org/04pp4xq32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://apeiron.iulm.it/oai/request yes 7442 +3978 {"name": "archivio istituzionale della ricerca- universit\u00e0 degli studi di messina", "language": "en"} [] https://iris.unime.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:55:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universita di messina", "alternativeName": "", "country": "it", "url": "http://www.unime.it/", "identifier": [{"identifier": "https://ror.org/05ctdxz19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4033 {"name": "archivio istituzionale della ricerca- universit\u00e0 del piemonte orientale", "language": "en"} [] https://iris.uniupo.it/ institutional [] 2022-01-12 15:35:57 2018-01-25 11:27:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "universit\u00e0 degli studi del piemonte orientale", "alternativeName": "", "country": "it", "url": "https://www.uniupo.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://iris.uniupo.it/oai/request? yes 34191 +3977 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi della campania \"luigi vanvitelli\"", "language": "en"} [] https://iris.unicampania.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:54:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi della campania "luigi vanvitelli"", "alternativeName": "", "country": "it", "url": "http://www.unicampania.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://iris.unicampania.it/oai/request yes 75120 +3982 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi di perugia", "language": "en"} [] https://research.unipg.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:56:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di perugia", "alternativeName": "", "country": "it", "url": "http://www.unipg.it/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3983 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi dell aquila", "language": "en"} [] https://ricerca.univaq.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:57:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e0 degli studi dell aquila", "alternativeName": "", "country": "it", "url": "http://www.univaq.it/en/", "identifier": [{"identifier": "https://ror.org/01j9p1r26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +3981 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi del molise", "language": "en"} [] https://iris.unimol.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:56:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi del molise", "alternativeName": "", "country": "it", "url": "http://www.unimol.it/unimolise/s2magazine/index1.jsp?idpagina=50001", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4050 {"name": "archivio istituzionale della ricerca - bocconi", "language": "en"} [] https://iris.unibocconi.it/ institutional [] 2022-01-12 15:35:57 2018-02-13 09:41:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 commerciale luigi bocconi", "alternativeName": "", "country": "it", "url": "http://www.unibocconi.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://iris.unibocconi.it/oai/request yes 19354 +4042 {"name": "hbo knowledgebase", "language": "en"} [] https://hbo-kennisbank.nl/en/page/home aggregating [] 2022-01-12 15:35:57 2018-02-08 11:01:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "surf", "alternativeName": "", "country": "nl", "url": "https://www.surf.nl/", "identifier": [{"identifier": "https://ror.org/009vhk114", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 44253 +3972 {"name": "repository poltekkes kemenkes yogyakarta", "language": "en"} [] http://eprints.poltekkesjogja.ac.id/ institutional [] 2022-01-12 15:35:56 2017-09-07 14:49:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "poltekkes kemenkes yogyakarta", "alternativeName": "", "country": "id", "url": "http://poltekkesjogja.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://eprints.poltekkesjogja.ac.id/cgi/oai2 yes +3951 {"name": "repositorio institucional de la uacj", "language": "en"} [] http://ri.uacj.mx/ institutional [] 2022-01-12 15:35:56 2017-08-30 14:35:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad aut\u00f3noma de ciudad ju\u00e1rez", "alternativeName": "", "country": "mx", "url": "http://www.uacj.mx/", "identifier": [{"identifier": "https://ror.org/05fj8cf83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ri.uacj.mx/vufind/oai/server yes 0 8354 +3979 {"name": "archivio istituzionale della ricerca - politecnico di bari", "language": "en"} [] https://iris.poliba.it/ institutional [] 2022-01-12 15:35:56 2017-09-20 14:55:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "politecnico di bari", "alternativeName": "", "country": "it", "url": "http://www.poliba.it/", "identifier": [{"identifier": "https://ror.org/03c44v465", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4008 {"name": "abertay research portal", "language": "en"} [] https://rke.abertay.ac.uk/ institutional [] 2022-01-12 15:35:57 2018-01-11 10:26:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "abertay university", "alternativeName": "", "country": "gb", "url": "http://www.abertay.ac.uk/", "identifier": [{"identifier": "https://ror.org/04mwwnx67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://rke.abertay.ac.uk/ws/oai yes 3256 +3949 {"name": "kansai gaidai university repository", "language": "en"} [{"name": "\u95a2\u897f\u5916\u56fd\u8a9e\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kansaigaidai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:56 2017-08-30 14:15:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kansai gaidai university", "alternativeName": "", "country": "jp", "url": "http://www.kansaigaidai.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kansaigaidai.repo.nii.ac.jp/oai yes 729 7905 +3976 {"name": "kobe tokiwa university institutional repository", "language": "en"} [{"name": "\u795e\u6238\u5e38\u76e4\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-tokiwa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:56 2017-09-13 14:48:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "kobe tokiwa university", "alternativeName": "", "country": "jp", "url": "http://www.kobe-tokiwa.ac.jp/univ/", "identifier": [{"identifier": "https://ror.org/05vv4xn30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-tokiwa.repo.nii.ac.jp/oai yes +3950 {"name": "konan university repository", "language": "en"} [{"name": "\u7532\u5357\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://konan-u.repo.nii.ac.jp institutional [] 2022-01-12 15:35:56 2017-08-30 14:20:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "konan university", "alternativeName": "", "country": "jp", "url": "http://www.konan-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/059b5pb30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://konan-u.repo.nii.ac.jp/oai yes 2955 3800 +3970 {"name": "nit,akita college-repository", "language": "en"} [{"name": "\u79cb\u7530\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://akita.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:56 2017-09-07 11:38:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national institute of technology, akita college", "alternativeName": "", "country": "jp", "url": "https://akira.repo.nii.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://akita.repo.nii.ac.jp/oai yes +4016 {"name": "repository of the university of rijeka", "language": "en"} [] https://www.unirepository.svkri.uniri.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 09:56:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://www.unirepository.svkri.uniri.hr/oai yes 8391 +3995 {"name": "repository of faculty of geotechnical engineering", "language": "en"} [] https://repozitorij.gfv.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:27:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.gfv.unizg.hr/oai yes 209 +4011 {"name": "repository of the college in slavonski brod", "language": "en"} [] https://rzr.vusb.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 08:58:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "college of slavonski brod", "alternativeName": "", "country": "hr", "url": "http://www.vusb.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://rzr.vusb.hr/oai yes 560 +3994 {"name": "repository of the university of rijeka, department of biotechnology", "language": "en"} [] https://repository.biotech.uniri.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:21:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.biotech.uniri.hr/oai yes 100 +4012 {"name": "university of zadar institutional repository of evaluation works", "language": "en"} [{"name": "digitalni repozitorij ocjenskih radova sveu\u010dili\u0161ta u zadru", "language": "hr"}] https://repozitorij.unizd.hr institutional [] 2022-01-12 15:35:57 2018-01-23 09:11:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of zadar", "alternativeName": "", "country": "hr", "url": "https://www.unizd.hr", "identifier": [{"identifier": "https://ror.org/00t89vb53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unizd.hr/oai yes 1708 +4024 {"name": "repository of the university of dubrovnik", "language": "en"} [] https://repozitorij.unidu.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 11:02:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of dubrovnik", "alternativeName": "", "country": "hr", "url": "http://www.unidu.hr/", "identifier": [{"identifier": "https://ror.org/05yptqp13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unidu.hr/oai yes 448 +3996 {"name": "repository of the faculty of transport and traffic sciences", "language": "en"} [] https://repozitorij.fpz.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:34:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fpz.unizg.hr/oai yes 1137 +4022 {"name": "repository of the rrif college of financial management", "language": "en"} [] https://repozitorij.rvs.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:51:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "college of financial management", "alternativeName": "rrif", "country": "hr", "url": "http://www.rvs.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.rvs.hr/oai yes 59 +4037 {"name": "institutional repository of the technical university of crete", "language": "en"} [{"acronym": "dias"}] http://dias.library.tuc.gr/ institutional [] 2022-01-12 15:35:57 2018-01-25 14:33:57 ["science", "technology", "social sciences", "engineering"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects"] [{"name": "technical university of crete (\u03c0\u03bf\u03bb\u03c5\u03c4\u03b5\u03c7\u03bd\u03b5\u03af\u03bf \u03ba\u03c1\u03ae\u03c4\u03b7\u03c2)", "alternativeName": "", "country": "gr", "url": "http://www.tuc.gr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://dias.library.tuc.gr/oaihandler yes 12901 +3998 {"name": "repository of faculty of metallurgy university of zagreb", "language": "en"} [] https://repozitorij.simet.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:49:55 ["science", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.simet.unizg.hr/oai yes 79 +3969 {"name": "electronic archive odessa national academy of food technologies", "language": "en"} [{"acronym": "eonaft"}] https://card-file.onaft.edu.ua disciplinary [] 2022-01-12 15:35:56 2017-09-06 15:28:51 ["science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "odessa national academy of food technologies", "alternativeName": "", "country": "ua", "url": "http://www.onaft.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://card-file.onaft.edu.ua/oai/request yes 2105 +4031 {"name": "cicero research archive", "language": "en"} [] https://pub.cicero.oslo.no institutional [] 2022-01-12 15:35:57 2018-01-25 11:07:33 ["science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "cicero center for international climate research", "alternativeName": "cicero", "country": "no", "url": "https://cicero.oslo.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://pub.cicero.oslo.no/cicero-oai/ yes 470 +4035 {"name": "digital repository of archived publications - institute for biological research sinisa stankovic", "language": "en"} [{"acronym": "radar"}] http://ibiss-r.rcub.bg.ac.rs institutional [] 2022-01-12 15:35:57 2018-01-25 13:40:35 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ibiss-r.rcub.bg.ac.rs/files/policy-ibiss-en.html", "type": "metadata"}, {"policy_url": "https://ibiss-r.rcub.bg.ac.rs/files/policy-ibiss-en.html", "type": "content"}, {"policy_url": "https://ibiss-r.rcub.bg.ac.rs/files/policy-ibiss-en.html", "type": "submission"}, {"policy_url": "https://ibiss-r.rcub.bg.ac.rs/files/policy-ibiss-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://ibiss-r.rcub.bg.ac.rs/oai/request yes 2520 +3948 {"name": "eprints@atree", "language": "en"} [] http://eprints.atree.org/ institutional [] 2022-01-12 15:35:56 2017-08-30 12:12:16 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ashoka trust for research in ecology and the environment", "alternativeName": "", "country": "in", "url": "http://www.atree.org/", "identifier": [{"identifier": "https://ror.org/02e22ra24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.atree.org/cgi/oai2/ yes 228 572 +3961 {"name": "agroparistech institutional research repository", "language": "en"} [] https://hal-agroparistech.archives-ouvertes.fr/ disciplinary [] 2022-01-12 15:35:56 2017-09-04 12:07:52 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "agroparistech", "alternativeName": "", "country": "fr", "url": "https://hal-agroparistech.archives-ouvertes.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +3975 {"name": "osaka museum of natural history research repository", "language": "en"} [{"name": "\u5927\u962a\u5e02\u7acb\u81ea\u7136\u53f2\u535a\u7269\u9928\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://omnh.repo.nii.ac.jp/ institutional [] 2022-01-12 15:35:56 2017-09-13 14:30:55 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "osaka museum of natural history", "alternativeName": "", "country": "jp", "url": "http://www.mus-nh.city.osaka.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://omnh.repo.nii.ac.jp/oai yes +3999 {"name": "repository faculty of agriculture university of zagreb", "language": "en"} [] https://repozitorij.agr.unizg.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 14:52:02 ["science"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/homepage/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.agr.unizg.hr/oai yes 758 +4021 {"name": "repository of department of physics in osijek", "language": "en"} [] https://repozitorij.fizika.unios.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:47:23 ["science"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://wt.foozos.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fizika.unios.hr/oai yes 61 +4019 {"name": "repository of karlovac university of applied sciences - institutional repository", "language": "en"} [] https://repozitorij.vuka.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:32:36 ["science"] ["theses_and_dissertations"] [{"name": "university of applied sciences karlovac", "alternativeName": "polytechnic of karlovac", "country": "hr", "url": "http://www.vuka.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vuka.hr/oai yes 794 +4001 {"name": "digital repository of polytechnic pula", "language": "en"} [] https://repozitorij.politehnika-pula.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 15:10:53 ["social sciences", "technology", "engineering"] ["theses_and_dissertations"] [{"name": "polytechnic pula - college of applied sciences", "alternativeName": "", "country": "hr", "url": "http://www.politehnika-pula.hr/", "identifier": [{"identifier": "https://ror.org/04z58j690", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.politehnika-pula.hr/oai yes 96 +4032 {"name": "dmmh brage", "language": "en"} [] https://open.dmmh.no institutional [] 2022-01-12 15:35:57 2018-01-25 11:14:36 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "queen maud university college of early childhood education", "alternativeName": "", "country": "no", "url": "https://dmmh.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://open.dmmh.no/dmmh-oai//request yes 188 +4020 {"name": "repository of economics faculty in split", "language": "en"} [{"acronym": "refst"}] https://repozitorij.efst.unist.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 10:35:22 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.efst.unist.hr/oai yes +4014 {"name": "repository of zagreb school of business", "language": "en"} [] https://repozitorij.vpsz.hr/ institutional [] 2022-01-12 15:35:57 2018-01-23 09:19:20 ["social sciences"] ["theses_and_dissertations"] [{"name": "zagreb school of business", "alternativeName": "", "country": "hr", "url": "http://vpsz.hr/hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vpsz.hr/oai yes 229 +4002 {"name": "repository of the university of rijeka, faculty of economics and business", "language": "en"} [] https://repository.efri.uniri.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 15:17:11 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.efri.uniri.hr/oai yes 1046 +4003 {"name": "fceag repository", "language": "en"} [] https://repozitorij.gradst.unist.hr/ institutional [] 2022-01-12 15:35:57 2017-12-18 15:23:32 ["technology", "engineering"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.gradst.unist.hr/oai yes 853 +4029 {"name": "ife brage", "language": "en"} [] https://ife.brage.unit.no institutional [] 2022-01-12 15:35:57 2018-01-25 10:51:59 ["technology"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "institute for energy technology", "alternativeName": "", "country": "no", "url": "https://www.ife.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ife.brage.unit.no/ife-oai/request yes 216 +4074 {"name": "hal-insa toulouse", "language": "fr"} [] https://hal.insa-toulouse.fr/ institutional [] 2022-01-12 15:35:58 2018-03-23 10:32:50 ["arts", "humanities", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "insa de toulouse", "alternativeName": "", "country": "fr", "url": "http://bib.insa-toulouse.fr/fr/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/insa-toulouse/ yes 2965 +4075 {"name": "repositorio digital universidad torcuato di tella", "language": ""} [] http://repositorio.utdt.edu/ institutional [] 2022-01-12 15:35:58 2018-03-27 08:51:15 ["arts", "humanities", "social sciences", "technology"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad torcuato di tella", "alternativeName": "", "country": "ar", "url": "http://www.utdt.edu/", "identifier": [{"identifier": "https://ror.org/04sxme922", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utdt.edu/oai/ yes 3868 +4122 {"name": "repository of the university of rijeka, faculty of teacher education", "language": "en"} [{"acronym": "fteri repository"}] https://repository.ufri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 14:41:11 ["arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.ufri.uniri.hr/oai yes +4101 {"name": "repository of the diploma theses of the department of cultural studies, josip juraj strossmayer university of osijek", "language": ""} [] https://repozitorij.kulturologija.unios.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:06:02 ["arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4116 {"name": "repository of arts academy", "language": "en"} [] https://repozitorij.umas.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 12:38:08 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.umas.unist.hr/oai yes +4079 {"name": "dip\u00f2sit digital eina", "language": ""} [] http://diposit.eina.cat/ institutional [] 2022-01-12 15:35:58 2018-04-09 08:32:14 ["arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "eina centre universitari de disseny i art de barcelona", "alternativeName": "", "country": "es", "url": "https://www.eina.cat/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://diposit.eina.cat/oai/request yes 194 +4128 {"name": "digital repository of music academy", "language": "en"} [{"acronym": "drma"}] https://drma.muza.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 10:52:10 ["arts"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://drma.muza.unizg.hr/oai yes +4127 {"name": "academy of fine arts repository", "language": "en"} [{"acronym": "rep alu unizg"}] https://repozitorij.alu.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 10:48:52 ["arts"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.alu.unizg.hr/oai yes +4139 {"name": "repository of academy of dramatic art", "language": "en"} [] https://repozitorij.adu.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:54:23 ["arts"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.adu.unizg.hr/oai yes +4120 {"name": "repository of the university of rijeka, faculty of engineering", "language": "en"} [] https://repository.riteh.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 14:24:04 ["engineering", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.riteh.uniri.hr/oai yes +4063 {"name": "embry-riddle aeronautical university scholarly commons", "language": "en"} [{"acronym": "erau"}] https://commons.erau.edu institutional [] 2022-01-12 15:35:58 2018-02-28 09:04:26 ["engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "embry-riddle aeronautical university", "alternativeName": "", "country": "us", "url": "http://erau.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4107 {"name": "repository of the university of rijeka, faculty of civil engineering - fceri repository", "language": ""} [] https://repository.gradri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 09:11:19 ["engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4100 {"name": "repository of mechanical engineering in slavonski brod", "language": ""} [] https://repozitorij.sfsb.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:02:39 ["engineering"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr", "identifier": [{"identifier": "https://ror.org/05sw4wc49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4072 {"name": "harare institute of technology repository", "language": "en"} [{"acronym": "hitscholar"}] http://ir.hit.ac.zw:8080/jspui/ institutional [] 2022-01-12 15:35:58 2018-03-21 13:57:41 ["health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "harare institute of technology", "alternativeName": "", "country": "zw", "url": "https://www.hit.ac.zw/", "identifier": [{"identifier": "https://ror.org/02e7r0h80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 1503 +4117 {"name": "repository of faculty of kinesiology, university of split", "language": "en"} [] https://repozitorij.kifst.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 12:42:42 ["health and medicine", "science"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kifst.unist.hr/oai yes +4073 {"name": "meduni wien epub", "language": ""} [] http://repositorium.meduniwien.ac.at/ institutional [] 2022-01-12 15:35:58 2018-03-23 10:25:24 ["health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "medizinische universit\u00e4t wien", "alternativeName": "", "country": "at", "url": "https://www.meduniwien.ac.at/web/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repositorium.meduniwien.ac.at/oai yes 12885 +4121 {"name": "repository of the university of rijeka, faculty of medicine", "language": "en"} [{"acronym": "fmri repository"}] https://repository.medri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 14:38:04 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.medri.uniri.hr/oai yes +4152 {"name": "sveznalica", "language": "en"} [] https://sveznalica.zvu.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:14:56 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of applied health sciences", "alternativeName": "", "country": "hr", "url": "https://www.zvu.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://sveznalica.zvu.hr/oai yes +4113 {"name": "university of split school of medicine\u00a0repository", "language": ""} [] https://repozitorij.mefst.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 10:26:40 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.mefst.unist.hr/oai yes +4137 {"name": "dr med - university of zagreb school of medicine graduate thesis repository", "language": "en"} [] https://repozitorij.mef.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:49:41 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.mef.unizg.hr/oai yes +4144 {"name": "college of occupational safety and health repository", "language": "en"} [] https://repozitorij.vss.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 10:44:30 ["health and medicine"] ["theses_and_dissertations"] [{"name": "college of occupational safety and health", "alternativeName": "", "country": "hr", "url": "http://www.vss.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vss.hr/oai yes +4103 {"name": "repository of the faculty of medicine osijek", "language": ""} [] https://repozitorij.mefos.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:15:44 ["health and medicine"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4118 {"name": "repository of the university of rijeka, faculty of law", "language": "en"} [] https://repository.pravri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 14:10:25 ["humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.pravri.uniri.hr/oai yes +4095 {"name": "efos repository - repository of the faculty of economics in osijek", "language": ""} [] https://repozitorij.efos.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 07:24:31 ["mathematics", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4098 {"name": "repository of department of mathematics osijek", "language": ""} [] https://repozitorij.mathos.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 07:39:46 ["mathematics"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4115 {"name": "repository of faculty of science", "language": ""} [] https://repozitorij.pmfst.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 10:34:25 ["science", "mathematics", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.pmfst.unist.hr/oai yes +4067 {"name": "university of tampa institutional repository", "language": "en"} [] https://utampa.dspacedirect.org/ institutional [] 2022-01-12 15:35:58 2018-02-28 12:01:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "university of tampa", "alternativeName": "", "country": "us", "url": "http://www.ut.edu/", "identifier": [{"identifier": "https://ror.org/007h1g065", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libguides.utopia.ut.edu/c.php?g=491017&p=4251521", "type": "preservation"}] {"name": "dspace", "version": ""} yes 250 +4160 {"name": "chalmers research", "language": "en"} [] https://research.chalmers.se/ institutional [] 2022-01-12 15:35:59 2018-08-28 12:59:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software"] [{"name": "chalmers university of technology", "alternativeName": "", "country": "se", "url": "http://www.chalmers.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://research.chalmers.se/oai-pmh/general/ yes +4162 {"name": "nottingham research repository", "language": "en"} [] https://nottingham-repository.worktribe.com institutional [] 2022-01-12 15:35:59 2018-09-28 07:48:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "university of nottingham", "alternativeName": "", "country": "gb", "url": "http://www.nottingham.ac.uk", "identifier": [{"identifier": "https://ror.org/01ee9ar58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://nottingham-repository.worktribe.com/oaiprovider yes +4078 {"name": "odessa national medical university institutional repository", "language": "en"} [{"acronym": "onmuir"}] https://repo.odmu.edu.ua/xmlui institutional [] 2022-01-12 15:35:58 2018-04-04 13:02:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "odessa national medical university", "alternativeName": "onmedu", "country": "ua", "url": "http://onmedu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repo.odmu.edu.ua/oai/request yes 318 +4057 {"name": "repositorio institucional de la universidad ricardo palma", "language": "es"} [{"acronym": "urp"}] http://repositorio.urp.edu.pe/ institutional [] 2022-01-12 15:35:57 2018-02-19 13:45:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad ricardo palma", "alternativeName": "urp", "country": "pe", "url": "http://www.urp.edu.pe", "identifier": [{"identifier": "https://ror.org/02mb17771", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.urp.edu.pe/oai/request yes 1196 +4081 {"name": "ashesi institutional repository", "language": ""} [] https://air.ashesi.edu.gh/ institutional [] 2022-01-12 15:35:58 2018-04-09 10:12:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ashesi university college", "alternativeName": "", "country": "gh", "url": "http://www.ashesi.edu.gh/", "identifier": [{"identifier": "https://ror.org/028kehd60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://air.ashesi.edu.gh/oai/request yes 25 +4086 {"name": "corepaedia university of dubai", "language": ""} [] http://uod.corepaedia.4science.it/ institutional [] 2022-01-12 15:35:58 2018-04-26 12:58:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of dubai", "alternativeName": "", "country": "ae", "url": "https://www.ud.ac.ae/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4082 {"name": "karaganda state medical university repository", "language": ""} [] http://repoz.kgmu.kz/ institutional [] 2022-01-12 15:35:58 2018-04-09 10:40:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "karaganda state medical university", "alternativeName": "", "country": "kz", "url": "http://www.kgmu.kz/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 237 +4110 {"name": "kemu institutional repository", "language": ""} [] http://repository.kemu.ac.ke:8080/xmlui institutional [] 2022-01-12 15:35:58 2018-07-04 14:39:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "kenya methodist university", "alternativeName": "", "country": "ke", "url": "http://www.kemu.ac.ke/", "identifier": [{"identifier": "https://ror.org/033tvp994", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4065 {"name": "reposit\u00f3rio institucional da universidade federal do tocantins", "language": "en"} [] http://repositorio.uft.edu.br/ institutional [] 2022-01-12 15:35:58 2018-02-28 11:26:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "unniversidaded federal do tocantins", "alternativeName": "", "country": "br", "url": "http://ww2.uft.edu.br/", "identifier": [{"identifier": "https://ror.org/053xy8k29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uft.edu.br/oai/request yes 674 +4087 {"name": "repozytorium ifj pan", "language": "pl"} [{"name": "institute of nuclear physics, polish academy of sciences repository", "language": "en"}] https://rifj.ifj.edu.pl/ institutional [] 2022-01-12 15:35:58 2018-04-26 13:05:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "institute of nuclear physics, polish academy of sciences", "alternativeName": "", "country": "pl", "url": "https://www.ifj.edu.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rifj.ifj.edu.pl:8080/oai/request yes +4084 {"name": "repozytorium uniwersytetu \u015bl\u0105skiego re-bu\u015b", "language": ""} [] https://rebus.us.edu.pl/ institutional [] 2022-01-12 15:35:58 2018-04-26 12:48:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "uniwersytet \u015bl\u0105ski", "alternativeName": "", "country": "pl", "url": "http://www.us.edu.pl/", "identifier": [{"identifier": "https://ror.org/0104rcc94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rebus.us.edu.pl/oai/request yes +4085 {"name": "udimundus", "language": ""} [] https://udimundus.udima.es institutional [] 2022-01-12 15:35:58 2018-04-26 12:53:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad a distancia de madrid", "alternativeName": "", "country": "es", "url": "https://www.udima.es/", "identifier": [{"identifier": "https://ror.org/01r9skd65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://udimundus.udima.es/oai/request yes +4161 {"name": "hvl open", "language": "no"} [] https://hvlopen.brage.unit.no institutional [] 2022-01-12 15:35:59 2018-09-05 09:46:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "h\u00f8gskolen p\u00e5 vestlandet", "alternativeName": "", "country": "no", "url": "https://www.hvl.no/", "identifier": [{"identifier": "https://ror.org/05phns765", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://hvlopen.brage.unit.no/hvlopen-oai/ yes +4068 {"name": "a. o. kovalevsky institute of biology of the southern seas of ras open access repository", "language": "en"} [] https://repository.marine-research.org institutional [] 2022-01-12 15:35:58 2018-02-28 14:29:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "a. o. kovalevsky institute of biology of the southern seas of ras", "alternativeName": "ibss", "country": "ru", "url": "http://ibss-ras.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.marine-research.org/oai/request yes 1898 +4094 {"name": "archivio istituzionale della ricerca - alma mater studiorum universit\u00e0 di bologna", "language": "it"} [{"name": "iris universit\u00e0 degli studi di bologna", "language": "it"}] https://cris.unibo.it/ institutional [] 2022-01-12 15:35:58 2018-06-29 07:12:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "patents"] [{"name": "alma mater studiorum universit\u00e0 di bologna", "alternativeName": "", "country": "it", "url": "http://www.unibo.it", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://cris.unibo.it/oai/request yes +4061 {"name": "repositorio emi+d", "language": "en"} [] http://www.madrimasd.org/madrid-ciencia-tecnologia/e-ciencia/repositorio-emid institutional [] 2022-01-12 15:35:58 2018-02-23 11:58:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "madri+d", "alternativeName": "", "country": "es", "url": "http://www.madrimasd.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dpmadrono.uned.es/oai/request yes 5 +4066 {"name": "digital repository of kazguu university", "language": "en"} [] http://repository.kazguu.kz/ institutional [] 2022-01-12 15:35:58 2018-02-28 11:44:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "kazguu university", "alternativeName": "", "country": "kz", "url": "http://kazguu.kz/", "identifier": [{"identifier": "https://ror.org/03gvsr558", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.kazguu.kz/oai/request?verb=identify", "type": "preservation"}] {"name": "dspace", "version": ""} http://repository.kazguu.kz/oai/request yes 410 +4158 {"name": "genderopen", "language": "en"} [] https://www.genderopen.de/ disciplinary [] 2022-01-12 15:35:59 2018-08-03 09:05:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "freie universitat berlin", "alternativeName": "", "country": "de", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://blog-genderopen.de/ueber-uns/leitlinien", "type": "content"}] {"name": "dspace", "version": ""} https://www.genderopen.de/oai/request yes +4126 {"name": "digitalcommons@umaine", "language": "en"} [] http://digitalcommons.library.umaine.edu/ institutional [] 2022-01-12 15:35:59 2018-07-12 07:58:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of maine", "alternativeName": "", "country": "us", "url": "https://umaine.edu/", "identifier": [{"identifier": "https://ror.org/01adr0w49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.library.umaine.edu/do/oai/ yes +4070 {"name": "hal universit\u00e9 de lorraine", "language": "en"} [] https://hal.univ-lorraine.fr/ institutional [] 2022-01-12 15:35:58 2018-03-12 14:44:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "universit\u00e9 de lorraine", "alternativeName": "", "country": "fr", "url": "http://vers.univ-lorraine.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes 15745 +4059 {"name": "carleton universitys institutional repository", "language": "en"} [] http://ir.library.carleton.ca/ institutional [] 2022-01-12 15:35:58 2018-02-23 10:40:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "carleton university", "alternativeName": "", "country": "ca", "url": "http://www.carleton.ca/", "identifier": [{"identifier": "https://ror.org/02qtvee93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.library.carleton.ca/oai yes +4062 {"name": "e-cienciadatos", "language": "en"} [] https://edatos.consorciomadrono.es/ institutional [] 2022-01-12 15:35:58 2018-02-23 13:11:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "consorcio madro\u00f1o", "alternativeName": "", "country": "es", "url": "http://www.consorciomadrono.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://edatos.consorciomadrono.es/oai yes 108 +4053 {"name": "archivio della ricerca - fondazione bruno kessler", "language": "en"} [] https://cris.fbk.eu/ institutional [] 2022-01-12 15:35:57 2018-02-13 09:58:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "fondazione bruno kessler", "alternativeName": "fbk", "country": "it", "url": "https://www.fbk.eu/", "identifier": [{"identifier": "https://ror.org/01j33xk10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://cris.fbk.eu/oai/request yes 13837 +4051 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi di pavia", "language": "en"} [] https://iris.unipv.it/ institutional [] 2022-01-12 15:35:57 2018-02-13 09:45:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e0 degli studi di pavia", "alternativeName": "", "country": "it", "url": "http://www.unipv.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://iris.unipv.it/oai/request yes 91498 +4052 {"name": "archivio istituzionale della ricerca - universit\u00e0 degli studi di parma", "language": "en"} [] http://air.unipr.it/ institutional [] 2022-01-12 15:35:57 2018-02-13 09:50:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universit\u00e1 degli studi di parma", "alternativeName": "", "country": "it", "url": "http://www.unipr.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://air.unipr.it/oai/request yes 87680 +4054 {"name": "archivio istituzionale della ricerca - scuola normale superiore", "language": "en"} [] https://ricerca.sns.it/ institutional [] 2022-01-12 15:35:57 2018-02-13 10:00:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "scuola normale superiore", "alternativeName": "", "country": "it", "url": "http://www.sns.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ricerca.sns.it/oai/request yes 14395 +4055 {"name": "university of hull worktribe cris", "language": "en"} [{"acronym": "repository@hull"}] https://hull-repository.worktribe.com/ institutional [] 2022-01-12 15:35:57 2018-02-19 10:04:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of hull", "alternativeName": "", "country": "gb", "url": "http://www2.hull.ac.uk/", "identifier": [{"identifier": "https://ror.org/04nkhwh30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://hull-repository.worktribe.com/oaiprovider yes +4159 {"name": "university of birmingham research portal", "language": "en"} [] https://research.birmingham.ac.uk/portal/en/ institutional [] 2022-01-12 15:35:59 2018-08-17 10:06:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "university of birmingham", "alternativeName": "", "country": "gb", "url": "https://www.birmingham.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://pure-oai.bham.ac.uk/ws/oai?verb=identify yes +4111 {"name": "hartpury pure", "language": ""} [] https://hartpury.pure.elsevier.com/ institutional [] 2022-01-12 15:35:58 2018-07-05 08:10:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university centre hartpury", "alternativeName": "", "country": "gb", "url": "http://www.hartpury.ac.uk/", "identifier": [{"identifier": "https://ror.org/020jfw620", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +4125 {"name": "university of brighton research repository", "language": "en"} [] https://research.brighton.ac.uk/en/ institutional [] 2022-01-12 15:35:59 2018-07-10 10:21:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "university of brighton", "alternativeName": "", "country": "gb", "url": "http://www.brighton.ac.uk", "identifier": [{"identifier": "https://ror.org/04kp2b655", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://cris.brighton.ac.uk/ws/oai yes 5866 20613 +4147 {"name": "polytechnic of rijeka digital repository", "language": "en"} [{"acronym": "dr polyri"}] https://repozitorij.veleri.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:03:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "polytechnic of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.veleri.hr/", "identifier": [{"identifier": "https://ror.org/013zrke44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.veleri.hr/oai yes +4156 {"name": "croatian digital dissertations repository", "language": "en"} [{"acronym": "dr"}] https://dr.nsk.hr/en aggregating [] 2022-01-12 15:35:59 2018-08-02 13:25:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national and university library in zagreb", "alternativeName": "", "country": "hr", "url": "http://www.nsk.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://dr.nsk.hr/oai yes +4155 {"name": "repository of josip juraj strossmayer university of osijek", "language": "en"} [{"acronym": "runios"}] https://repozitorij.unios.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:21:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "josip juraj strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "https://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unios.hr/oai yes +4157 {"name": "croatian digital thesis repository", "language": "en"} [{"acronym": "zir"}] https://zir.nsk.hr/en aggregating [] 2022-01-12 15:35:59 2018-08-02 13:27:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "national and university library in zagreb", "alternativeName": "", "country": "hr", "url": "http://www.nsk.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://zir.nsk.hr/oai yes +4141 {"name": "repository of algebra university college", "language": "en"} [] https://repozitorij.algebra.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 10:38:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "algebra university college", "alternativeName": "", "country": "hr", "url": "http://www.algebra.hr/", "identifier": [{"identifier": "https://ror.org/019m6wk21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.algebra.hr/oai yes +4146 {"name": "repository of polytechnic lavoslav ru\u017ei\u010dka vukovar", "language": "en"} [] https://repozitorij.vevu.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:00:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "polytechnic lavoslav ru\u017ei\u010dka in vukovar", "alternativeName": "", "country": "hr", "url": "http://www.vevu.hr/", "identifier": [{"identifier": "https://ror.org/01w4tn863", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vevu.hr/oai yes +4148 {"name": "vus repository", "language": "en"} [] https://repozitorij.vus.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:06:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "polytechnic of \u0161ibenik", "alternativeName": "", "country": "hr", "url": "http://www.vus.hr/", "identifier": [{"identifier": "https://ror.org/04sv2e820", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vus.hr/oai yes +4123 {"name": "repository of the university of rijeka, faculty of tourism and hospitality management, opatija", "language": "en"} [] https://www.fmtu.uniri.hr/ institutional [] 2022-01-12 15:35:58 2018-07-05 14:43:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "https://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.fthm.uniri.hr/oai yes +4105 {"name": "repository of the university of rijeka library - url repository", "language": ""} [] https://repository.svkri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:25:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4060 {"name": "univoak", "language": "en"} [] https://univoak.eu institutional [] 2022-01-12 15:35:58 2018-02-23 11:12:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets"] [{"name": "univoak", "alternativeName": "", "country": "fr", "url": "https://univoak.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://univoak.eu/oai_integral yes +4142 {"name": "digital repository of the catholic university of croatia", "language": "en"} [] https://repozitorij.unicath.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 10:40:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "catholic university of croatia", "alternativeName": "", "country": "hr", "url": "http://www.unicath.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unicath.hr/oai yes +4140 {"name": "university of zagreb repository", "language": "en"} [] https://repozitorij.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:56:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.unizg.hr/oai yes +4145 {"name": "edward bernays university college repository", "language": "en"} [] https://repozitorij.bernays.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 12:54:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "edward bernays university college", "alternativeName": "", "country": "hr", "url": "http://www.bernays.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.bernays.hr/oai yes +4104 {"name": "repository of the university of rijeka university centers", "language": ""} [] https://repository.ricent.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:23:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4112 {"name": "university of split repository", "language": ""} [] https://repozitorij.svkst.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 10:23:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.svkst.unist.hr/oai yes +4058 {"name": "ecolib-library of national research and development institute for industrial ecology", "language": "en"} [{"acronym": "ecolib"}] http://dspace.incdecoind.ro institutional [] 2022-01-12 15:35:58 2018-02-19 14:13:00 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national research and development institute for industrial ecology", "alternativeName": "", "country": "ro", "url": "http://www.incdecoind.ro/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.incdecoind.ro/oai/request yes 926 +4083 {"name": "oceanbestpractices : repository of ocean community practices for ocean research, observation and data/information management.", "language": "en"} [] https://www.oceanbestpractices.org/ disciplinary [] 2022-01-12 15:35:58 2018-04-26 08:16:07 ["science"] ["other_special_item_types"] [{"name": "international oceanographic data and information exchange of ioc", "alternativeName": "iode", "country": "be", "url": "https://iode.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes 197 +4133 {"name": "university of zagreb faculty of forestry repository", "language": "en"} [] https://repozitorij.sumfak.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:27:52 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.sumfak.unizg.hr/oai yes +4096 {"name": "repository faculty of agriculture in osijek - repository senior and graduate students", "language": ""} [] https://repozitorij.pfos.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 07:28:33 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4136 {"name": "veterinary medicine - repository of phd, masters thesis", "language": ""} [] https://repozitorij.vef.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:47:52 ["science"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.mef.unizg.hr/oai yes +4143 {"name": "repository of the college of agriculture krizevci", "language": "en"} [] https://repozitorij.vguk.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 10:42:30 ["science"] ["theses_and_dissertations"] [{"name": "college of agriculture krizevci", "alternativeName": "", "country": "hr", "url": "https://www.vguk.hr/", "identifier": [{"identifier": "https://ror.org/022485d27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vguk.hr/oai yes +4097 {"name": "repository of department of biology, josip juraj strossmayer university of osijek", "language": ""} [] https://repozitorij.biologija.unios.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 07:36:31 ["science"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4102 {"name": "repository of the faculty of food technology osijek", "language": ""} [] https://repozitorij.ptfos.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 08:13:32 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4119 {"name": "repository of the university of rijeka, faculty of maritime studies", "language": "en"} [] https://repository.pfri.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 14:13:36 ["social sciences", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.pfri.uniri.hr/oai yes +4153 {"name": "vern university of applied sciences repository", "language": "en"} [] https://repozitorij.vern.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:17:18 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "vern university of applied sciences", "alternativeName": "", "country": "hr", "url": "http://www.vern.hr/", "identifier": [{"identifier": "https://ror.org/00mff5m03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vern.hr/oai yes +4106 {"name": "repository of the university of rijeka, department of informatics - infori repository", "language": ""} [] https://repository.inf.uniri.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 09:00:58 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "http://www.uniri.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4077 {"name": "repositorio institucional - banrep", "language": "es"} [] https://repositorio.banrep.gov.co institutional [] 2022-01-12 15:35:58 2018-04-04 10:42:41 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "banco de la rep\u00fablica de colombia", "alternativeName": "", "country": "co", "url": "https://www.banrep.gov.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://repositorio.banrep.gov.co/oai/request yes 304 +4069 {"name": "kim repository", "language": "en"} [] http://41.89.43.7/ institutional [] 2022-01-12 15:35:58 2018-03-05 15:35:18 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "kenya institute of management", "alternativeName": "", "country": "ke", "url": "https://www.kim.ac.ke/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes 13 +4108 {"name": "repositorio institucional digital de la universidad nacional de quilmes", "language": ""} [] http://ridaa.unq.edu.ar/ institutional [] 2022-01-12 15:35:58 2018-07-04 08:55:38 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad nacional de quilmes", "alternativeName": "", "country": "ar", "url": "http://http://www.unq.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ridaa.unq.edu.ar/oai/ yes +4129 {"name": "digital repository - faculty of economcs & business zagreb", "language": "en"} [{"acronym": "repefzg"}] https://repozitorij.efzg.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 10:55:59 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.efzg.unizg.hr/oai yes +4154 {"name": "repository of the city and university library osijek", "language": "en"} [{"acronym": "rgisko"}] https://repozitorij.gskos.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:19:24 ["social sciences"] ["journal_articles"] [{"name": "city and university library in osijek", "alternativeName": "", "country": "hr", "url": "http://www.gskos.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.gskos.hr/oai yes +4134 {"name": "faculty of organization and informatics - digital repository", "language": "en"} [] https://repozitorij.foi.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:42:13 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.foi.unizg.hr/oai yes +4135 {"name": "university of zagreb faculty of teacher education - digital repository", "language": "en"} [] https://repozitorij.ufzg.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:44:57 ["social sciences"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ufzg.unizg.hr/oai yes +4132 {"name": "repository faculty of law university of zagreb", "language": "en"} [] https://repozitorij.pravo.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:21:42 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.pravo.unizg.hr/oai yes +4151 {"name": "university college of economics, entrepreneurship and management nikola \u0161ubi\u0107 zrinski repository", "language": "en"} [] https://repo.zrinski.org/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:12:55 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university college of economics, entrepreneurship and management \"nikola subic zrinski\"", "alternativeName": "", "country": "hr", "url": "http://www.zrinski.org/nikola/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repo.zrinski.org/oai yes +4130 {"name": "faculty of education and rehabilitation sciences - digital repository", "language": "en"} [] https://repozitorij.erf.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:01:39 ["social sciences"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://www.erf.unizg.hr/oai yes +4099 {"name": "repository of faculty of law in osijek", "language": ""} [] https://repozitorij.pravos.unios.hr/en institutional [] 2022-01-12 15:35:58 2018-06-29 07:41:54 ["social sciences"] ["theses_and_dissertations"] [{"name": "j. j. strossmayer university of osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +4149 {"name": "repository of the institute of economics, zagreb", "language": "en"} [{"name": "ekonomski institut, zagreb - repozitorij", "language": "hr"}] https://repozitorij.eizg.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:08:26 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "the institute of economics, zagreb", "alternativeName": "", "country": "hr", "url": "http://www.eizg.hr/", "identifier": [{"identifier": "https://ror.org/016a9kk10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.eizg.hr/oai yes +4150 {"name": "zagreb school of economics and management - repository", "language": "en"} [] https://repository.zsem.hr/en institutional [] 2022-01-12 15:35:59 2018-08-02 13:10:34 ["social sciences"] ["theses_and_dissertations"] [{"name": "the zagreb school of economics and management", "alternativeName": "", "country": "hr", "url": "https://www.zsem.hr/", "identifier": [{"identifier": "https://ror.org/04bqkh239", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.zsem.hr/oai yes +4131 {"name": "fer repository", "language": "en"} [] https://repozitorij.fer.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:19:21 ["technology", "engineering"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fer.unizg.hr/oai yes +4114 {"name": "repository of the university of split, faculty of maritime studies", "language": "en"} [] https://repozitorij.pfst.unist.hr/en institutional [] 2022-01-12 15:35:58 2018-07-05 10:31:58 ["technology", "engineering"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "http://www.unist.hr/", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.pfst.unist.hr/oai yes +4109 {"name": "riarte", "language": ""} [] http://www.riarte.es/ institutional [] 2022-01-12 15:35:58 2018-07-04 14:30:21 ["technology"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "consejo general de la arquitectura t\u00e9cnica de espa\u00f1a", "alternativeName": "", "country": "es", "url": "http://www.arquitectura-tecnica.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.riarte.es/oai/request yes +4138 {"name": "digital repository of the university computing centre", "language": "en"} [] https://repozitorij.srce.unizg.hr/en institutional [] 2022-01-12 15:35:59 2018-07-31 12:51:56 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "http://www.unizg.hr/", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.srce.unizg.hr/oai yes +4184 {"name": "repositorio institucional universidad del azuay", "language": "es"} [] https://dspace.uazuay.edu.ec institutional [] 2022-01-12 15:35:59 2018-11-21 09:54:12 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad del azuay", "alternativeName": "", "country": "ec", "url": "http://www.uazuay.edu.ec", "identifier": [{"identifier": "https://ror.org/037xrmj59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.uazuay.edu.ec/oai yes +4260 {"name": "derep-k", "language": "hu"} [] http://derep-k.drhe.hu/ institutional [] 2022-01-12 15:36:00 2019-02-06 16:28:05 ["arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "debreceni reform\u00e1tus hittudom\u00e1nyi egyetem", "alternativeName": "drhe", "country": "hu", "url": "https://www.drhe.hu", "identifier": [{"identifier": "https://ror.org/01jrrs026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://derep-k.drhe.hu/cgi/oai2 yes +4272 {"name": "media/rep/ - repository for media studies", "language": "en"} [] https://mediarep.org disciplinary [] 2022-01-12 15:36:01 2019-02-08 11:18:35 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "philipps-universit\u00e4t marburg", "alternativeName": "", "country": "de", "url": "https://www.uni-marburg.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://mediarep.org/oai/ yes +4215 {"name": "derep-okt", "language": "hu"} [] http://derep-okt.drhe.hu/ institutional [] 2022-01-12 15:36:00 2019-01-24 11:35:52 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "debreceni reform\u00e1tus hittudom\u00e1nyi egyetem", "alternativeName": "drhe", "country": "hu", "url": "https://www.drhe.hu", "identifier": [{"identifier": "https://ror.org/01jrrs026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://derep-okt.drhe.hu/cgi/oai2 yes +4244 {"name": "hydraulic engineering repository", "language": "en"} [{"acronym": "henry"}] https://henry.baw.de institutional [] 2022-01-12 15:36:00 2019-02-01 11:31:12 ["engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "federal waterways engineering and research institute", "alternativeName": "baw", "country": "de", "url": "https://www.baw.de/de/home/home_node.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://henry.baw.de/oai/request yes +4175 {"name": "vinar - repository of the vin\u010da institute of nuclear sciences", "language": ""} [] http://vinar.vin.bg.ac.rs/ institutional [] 2022-01-12 15:35:59 2018-11-20 11:33:45 ["health and medicine", "science", "mathematics"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://vinar.vin.bg.ac.rs/files/policy-vinar-en.html", "type": "metadata"}, {"policy_url": "http://vinar.vin.bg.ac.rs/files/policy-vinar-en.html", "type": "data"}, {"policy_url": "http://vinar.vin.bg.ac.rs/files/policy-vinar-en.html", "type": "content"}, {"policy_url": "http://vinar.vin.bg.ac.rs/files/policy-vinar-en.html", "type": "submission"}, {"policy_url": "http://vinar.vin.bg.ac.rs/files/policy-vinar-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://vinar.vin.bg.ac.rs/oai/request yes +4164 {"name": "biodare2 - biological data repository", "language": "en"} [{"acronym": "biodare2"}] https://biodare2.ed.ac.uk disciplinary [] 2022-01-12 15:35:59 2018-10-22 09:27:00 ["health and medicine", "science"] ["datasets"] [{"name": "university of edinburgh", "alternativeName": "", "country": "gb", "url": "https://www.ed.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4176 {"name": "repository of the institute of food technology in novi sad", "language": ""} [] http://oa.fins.uns.ac.rs/oa/ institutional [] 2022-01-12 15:35:59 2018-11-20 11:46:18 ["health and medicine", "science"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of novi sad", "alternativeName": "", "country": "rs", "url": "http://www.uns.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oa.fins.uns.ac.rs/oai yes +4166 {"name": "image data resource", "language": "en"} [] https://idr.openmicroscopy.org disciplinary [] 2022-01-12 15:35:59 2018-10-22 09:58:33 ["health and medicine", "science"] ["datasets"] [{"name": "open microscopy environment", "alternativeName": "ome", "country": "gb", "url": "http://openmicroscopy.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4271 {"name": "sciensano publications repository", "language": "en"} [] https://www.sciensano.be/node/5 institutional [] 2022-01-12 15:36:01 2019-02-08 10:59:48 ["health and medicine", "science"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "sciensano", "alternativeName": "", "country": "be", "url": "https://www.sciensano.be", "identifier": [{"identifier": "https://ror.org/04ejags36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} https://www.sciensano.be/en/oai/ yes +4169 {"name": "research repository", "language": "en"} [] https://aecc.archive.knowledgearc.net/ institutional [] 2022-01-12 15:35:59 2018-11-05 09:44:41 ["health and medicine"] ["journal_articles"] [{"name": "aecc university college", "alternativeName": "", "country": "gb", "url": "https://www.aecc.ac.uk/", "identifier": [{"identifier": "https://ror.org/03rd8mf35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4214 {"name": "asklepius - the health sciences repository of asklepieio voulas hospital", "language": "en"} [{"name": "\u03b1\u03c3\u03ba\u03bb\u03b7\u03c0\u03b9\u03cc\u03c2 - \u03b9\u03b4\u03c1\u03c5\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03b1\u03c0\u03bf\u03b8\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03ce\u03bd \u03c5\u03b3\u03b5\u03af\u03b1\u03c2 \u03b1\u03c3\u03ba\u03bb\u03b7\u03c0\u03b9\u03b5\u03af\u03bf\u03c5 \u03b2\u03bf\u03cd\u03bb\u03b1\u03c2", "language": "el"}] http://repository-asklepieio.ekt.gr institutional [] 2022-01-12 15:36:00 2019-01-23 14:11:17 ["health and medicine"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "national documentation centre", "alternativeName": "ekt", "country": "gr", "url": "http://www.ekt.gr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4197 {"name": "the stacks", "language": ""} [] https://thestacks.libaac.de/ disciplinary [] 2022-01-12 15:35:59 2018-11-21 15:04:18 ["humanities", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "g\u00f6ttingen state and university library", "alternativeName": "", "country": "de", "url": "https://www.sub.uni-goettingen.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4248 {"name": "paleorxiv", "language": "en"} [] https://paleorxiv.org/ disciplinary [] 2022-01-12 15:36:00 2019-02-01 15:43:46 ["humanities", "science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets"] [{"name": "paleorxiv", "alternativeName": "", "country": "gb", "url": "http://paleorxiv.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4216 {"name": "derep-di", "language": "hu"} [] http://derep-di.drhe.hu institutional [] 2022-01-12 15:36:00 2019-01-24 11:47:10 ["humanities"] ["theses_and_dissertations"] [{"name": "debreceni reform\u00e1tus hittudom\u00e1nyi egyetem", "alternativeName": "drhe", "country": "hu", "url": "https://www.drhe.hu", "identifier": [{"identifier": "https://ror.org/01jrrs026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://derep-di.drhe.hu/cgi/oai2 yes +4257 {"name": "publikationsserver des herder-instituts f\u00fcr historische ostmitteleuropaforschung", "language": "de"} [{"name": "publication server of the herder institute for historical research on east central europe", "language": "en"}] https://digital.herder-institut.de/publications/home institutional [] 2022-01-12 15:36:00 2019-02-06 14:31:19 ["humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "herder-institut f\u00fcr historische ostmitteleuropaforschung", "alternativeName": "", "country": "de", "url": "https://www.herder-institut.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} http://digital.herder-institut.de/publications/oai yes +4220 {"name": "repository of the department of marine studies at the university of split", "language": "en"} [{"name": "repozitorij sveu\u010dili\u0161nog odjela za studije mora sveu\u010dili\u0161ta u splitu", "language": "hr"}] https://repozitorij.more.unist.hr/en institutional [] 2022-01-12 15:36:00 2019-01-24 15:21:56 ["science", "mathematics"] ["theses_and_dissertations"] [{"name": "department of marine studies, univeristy of split", "alternativeName": "", "country": "hr", "url": "http://more.unist.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.more.unist.hr/oai yes +4163 {"name": "dartmouth digital commons", "language": "en"} [] https://digitalcommons.dartmouth.edu/ institutional [] 2022-01-12 15:35:59 2018-10-19 10:23:34 ["science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "dartmouth college", "alternativeName": "", "country": "us", "url": "https://home.dartmouth.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4241 {"name": "texas data repository", "language": "en"} [] https://dataverse.tdl.org/ institutional [] 2022-01-12 15:36:00 2019-01-31 11:30:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "texas digital libraries", "alternativeName": "", "country": "us", "url": "http://tdl.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://texasdigitallibrary.atlassian.net/wiki/spaces/tdrud/pages/287965267/policies", "type": "content"}] {"name": "other", "version": ""} yes +4170 {"name": "aberystwyth research portal", "language": "en"} [{"name": "porth ymchwil aberystwyth", "language": "cy"}] https://research.aber.ac.uk/portal institutional [] 2022-01-12 15:35:59 2018-11-08 09:59:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "aberystwyth university", "alternativeName": "", "country": "gb", "url": "https://www.aber.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.aber.ac.uk/en/research/excellence/portal/#re-use", "type": "data"}] {"name": "pure", "version": ""} https://research.aber.ac.uk/ws/oai yes +4239 {"name": "angelo state university digital repository", "language": "en"} [] https://asu-ir.tdl.org institutional [] 2022-01-12 15:36:00 2019-01-31 10:40:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "angelo state university", "alternativeName": "", "country": "us", "url": "https://www.angelo.edu", "identifier": [{"identifier": "https://ror.org/04n34rm95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.angelo.edu/content/files/25465-ppm13", "type": "metadata"}, {"policy_url": "https://www.angelo.edu/content/files/25465-ppm13", "type": "data"}, {"policy_url": "https://www.angelo.edu/content/files/25465-ppm13", "type": "content"}, {"policy_url": "https://www.angelo.edu/content/files/25465-ppm13", "type": "submission"}] {"name": "dspace", "version": ""} https://asu-ir.tdl.org/oai/request yes +4211 {"name": "open repository of the national natural science foundation of china", "language": "en"} [{"acronym": "nsfc-or"}] http://or.nsfc.gov.cn/ institutional [] 2022-01-12 15:36:00 2019-01-21 15:05:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "national natural science foundation of china", "alternativeName": "nsfc", "country": "cn", "url": "http://www.nsfc.gov.cn", "identifier": [{"identifier": "https://ror.org/01h0zpd94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4205 {"name": "ecoevorxiv preprints", "language": "en"} [] https://ecoevorxiv.org/ disciplinary [] 2022-01-12 15:36:00 2019-01-16 09:52:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "center for open science", "alternativeName": "cos", "country": "us", "url": "https://cos.io/", "identifier": [{"identifier": "https://ror.org/05d5mza29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4249 {"name": "institutional repository of the university of hang tuah", "language": "en"} [] http://repository.hangtuah.ac.id institutional [] 2022-01-12 15:36:00 2019-02-01 16:18:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "universitas hang tuah", "alternativeName": "", "country": "id", "url": "http://www.hangtuah.ac.id/", "identifier": [{"identifier": "https://ror.org/05h0pqw77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repository.hangtuah.ac.id/repository/oai2.php yes +4275 {"name": "colecciones digitales - biblioteca virtual del banco de la rep\u00fablica", "language": "es"} [{"name": "digital collections - virtual library of the central bank of the republic", "language": "en"}] http://babel.banrepcultural.org institutional [] 2022-01-12 15:36:01 2019-02-11 10:14:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "banco de la rep\u00fablica de colombia", "alternativeName": "", "country": "co", "url": "http://www.banrep.gov.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://babel.banrepcultural.org/oai/oai.php yes +4187 {"name": "repositorio digital de la utmach", "language": ""} [] http://repositorio.utmachala.edu.ec/ institutional [] 2022-01-12 15:35:59 2018-11-21 10:46:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad tecnica de machala", "alternativeName": "", "country": "ec", "url": "https://www.utmachala.edu.ec/portalwp/", "identifier": [{"identifier": "https://ror.org/036zk8k10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utmachala.edu.ec/oai yes +4198 {"name": "lille open archive", "language": ""} [{"acronym": "lilloa"}] https://lilloa.univ-lille.fr/ institutional [] 2022-01-12 15:35:59 2018-11-22 10:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of lille", "alternativeName": "", "country": "fr", "url": "https://www.univ-lille.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://lilloa.univ-lille.fr/oai/ yes +4183 {"name": "online repository of texts in the field of slavic studies", "language": "en"} [{"acronym": "ireteslaw"}, {"name": "internetowe repozytorium tekst\u00f3w slawistycznych", "language": "pl"}, {"acronym": "ireteslaw"}] https://ispan.waw.pl/ireteslaw institutional [] 2022-01-12 15:35:59 2018-11-20 16:14:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute of slavic studies polish academy of sciences", "alternativeName": "instytutu slawistyki pan", "country": "pl", "url": "https://ispan.waw.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ispan.waw.pl/ireteslaw/oai/request yes +4223 {"name": "utupub", "language": "en"} [] https://www.utupub.fi/ institutional [] 2022-01-12 15:36:00 2019-01-25 10:21:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of turku", "alternativeName": "", "country": "fi", "url": "https://www.utu.fi/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.utupub.fi/oai/request yes +4233 {"name": "university ferhat abbas s\u00e9tif 1 repository", "language": "en"} [] http://dspace.univ-setif.dz institutional [] 2022-01-12 15:36:00 2019-01-29 16:56:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universit\u00e9 ferhat abbas de s\u00e9tif", "alternativeName": "ufas", "country": "dz", "url": "https://www.univ-setif.dz", "identifier": [{"identifier": "https://ror.org/02rzqza52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4261 {"name": "mississippi state university institutional repository", "language": "en"} [] https://ir.library.msstate.edu/ institutional [] 2022-01-12 15:36:00 2019-02-06 16:44:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "mississippi state university", "alternativeName": "msu", "country": "us", "url": "https://www.msstate.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.library.msstate.edu/dspace yes +4246 {"name": "repository of ss cyril & methodius university in skopje", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0443\u043c \u043d\u0430 \u0442\u0440\u0443\u0434\u043e\u0432\u0438 \u043d\u0430 \u0443\u043a\u0438\u043c", "language": "mk"}] https://repository.ukim.mk/ institutional [] 2022-01-12 15:36:00 2019-02-01 12:01:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "\u0443\u043d\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442 \u0441\u0432. \u043a\u0438\u0440\u0438\u043b \u0438 \u043c\u0435\u0442\u043e\u0434\u0438\u0458 - \u0441\u043a\u043e\u043f\u0458\u0435", "alternativeName": "ukim", "country": "mk", "url": "http://www.ukim.edu.mk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.ukim.mk/oai/ yes +4253 {"name": "repositorio institucional investigare pucmm", "language": "es"} [{"name": "institutional repository of the pucmm", "language": "en"}] http://investigare.pucmm.edu.do:8080/xmlui/ institutional [] 2022-01-12 15:36:00 2019-02-04 15:37:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "pontificia universidad cat\u00f3lica madre y maestra", "alternativeName": "pucmm", "country": "do", "url": "https://www.pucmm.edu.do/", "identifier": [{"identifier": "https://ror.org/02m457w49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4247 {"name": "repositorio upd", "language": "es"} [] http://repositorio.upd.edu.pe institutional [] 2022-01-12 15:36:00 2019-02-01 15:20:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad privada leonardo da vinci", "alternativeName": "upd", "country": "pe", "url": "http://www.upd.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4242 {"name": "repositorio universidad sim\u00f3n bol\u00edvar", "language": "es"} [] http://bonga.unisimon.edu.co institutional [] 2022-01-12 15:36:00 2019-02-01 10:36:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad sim\u00f3n bol\u00edvar", "alternativeName": "", "country": "co", "url": "https://unisimon.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bonga.unisimon.edu.co/oai/openaire?verb=identify yes +4195 {"name": "erd\u00e9lyi digit\u00e1lis adatt\u00e1r", "language": "ro"} [{"name": "transylvanian digital database", "language": "en"}] https://eda.eme.ro institutional [] 2022-01-12 15:35:59 2018-11-21 14:50:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "erd\u00e9lyi m\u00fazeum-egyes\u00fclet", "alternativeName": "", "country": "ro", "url": "http://eme.ro/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://eda.eme.ro/oai/request yes +4189 {"name": "repositorio digital universidad t\u00e9cnica del norte", "language": "es"} [{"name": "digital repository of the northern technical university", "language": "en"}] http://repositorio.utn.edu.ec/ institutional [] 2022-01-12 15:35:59 2018-11-21 10:59:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universidad t\u00e9cnica del norte", "alternativeName": "", "country": "ec", "url": "http://www.utn.edu.ec", "identifier": [{"identifier": "https://ror.org/03f0t8b71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utn.edu.ec/oai/request?verb=identify yes +4188 {"name": "repositorio dspace de la universidad catolica de cuenca", "language": ""} [] http://dspace.ucacue.edu.ec/ institutional [] 2022-01-12 15:35:59 2018-11-21 10:55:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad cat\u00f3lica de cuenca", "alternativeName": "", "country": "ec", "url": "https://www.ucacue.edu.ec/", "identifier": [{"identifier": "https://ror.org/0036b6n81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4190 {"name": "repositorio universidad metropolitana del ecuador", "language": ""} [] http://koha.umet.edu.ec:8011/ institutional [] 2022-01-12 15:35:59 2018-11-21 11:05:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad metropolitana del ecuador", "alternativeName": "", "country": "ec", "url": "https://umet.edu.ec", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4262 {"name": "repository of the belarusian state agrarian technical university", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0431\u0433\u0430\u0442\u0443", "language": "be"}] https://rep.bsatu.by/ institutional [] 2022-01-12 15:36:00 2019-02-07 09:50:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "belarusian state agrarian technical university", "alternativeName": "bsatu", "country": "by", "url": "http://bsatu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rep.bsatu.by/oai/request yes +4201 {"name": "research une", "language": ""} [] https://rune.une.edu.au/ institutional [] 2022-01-12 15:36:00 2018-12-07 14:00:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "patents", "other_special_item_types"] [{"name": "university of new england", "alternativeName": "", "country": "au", "url": "https://www.une.edu.au/", "identifier": [{"identifier": "https://ror.org/04r659a56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4228 {"name": "university of houston institutional repository", "language": "en"} [] https://uh-ir.tdl.org institutional [] 2022-01-12 15:36:00 2019-01-29 11:07:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of houston", "alternativeName": "", "country": "us", "url": "https://www.uh.edu", "identifier": [{"identifier": "https://ror.org/048sx0r50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uh-ir.tdl.org/oai/request yes 909 7114 +4263 {"name": "digital georgetown", "language": "en"} [] https://repository.library.georgetown.edu/ institutional [] 2022-01-12 15:36:00 2019-02-07 10:09:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "georgetown university", "alternativeName": "", "country": "us", "url": "https://www.georgetown.edu/", "identifier": [{"identifier": "https://ror.org/05vzafd60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4232 {"name": "digital repository of the department of mediamatics and cultural heritage at the university of zilina", "language": "en"} [] https://repozitar.kmkd.uniza.sk/xmlui/ institutional [] 2022-01-12 15:36:00 2019-01-29 14:07:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "university of \u017eilina at \u017eilina", "alternativeName": "", "country": "sk", "url": "https://www.uniza.sk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4268 {"name": "hacettepe university institutional repository", "language": "en"} [] http://www.openaccess.hacettepe.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:36:00 2019-02-08 10:05:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hacettepe \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.hacettepe.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.openaccess.hacettepe.edu.tr:8080/oai/request yes +4212 {"name": "institutional repository of poltava v.g. korolenko national pedagogical university", "language": "en"} [] http://dspace.pnpu.edu.ua/ institutional [] 2022-01-12 15:36:00 2019-01-23 10:24:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "poltava v.g. korolenko national pedagogical university", "alternativeName": "", "country": "ua", "url": "http://pnpu.edu.ua", "identifier": [{"identifier": "https://ror.org/02stszq80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4204 {"name": "muranga university of technology institutional repository", "language": "en"} [] http://repository.mut.ac.ke:8080/xmlui/ institutional [] 2022-01-12 15:36:00 2019-01-15 11:16:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "muranga university of technology", "alternativeName": "mut", "country": "ke", "url": "http://www.mut.ac.ke/", "identifier": [{"identifier": "https://ror.org/057k4ej49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.mut.ac.ke:8080/oai/xmlui yes +4243 {"name": "repository of brest state a. s. pushkin university", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0431\u0440\u0433\u0443 \u0438\u043c\u0435\u043d\u0438 \u0430.\u0441. \u043f\u0443\u0448\u043a\u0438\u043d\u0430", "language": "ru"}] http://rep.brsu.by institutional [] 2022-01-12 15:36:00 2019-02-01 10:46:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "brest state a.s. pushkin university", "alternativeName": "", "country": "by", "url": "http://www.brsu.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rep.brsu.by/oai/request yes +4240 {"name": "scientific repository of the academy of the ministry of internal affairs of the republic of belarus", "language": "en"} [{"name": "\u043d\u0430\u0443\u0447\u043d\u044b\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0443\u0447\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043c\u0432\u0434 \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c", "language": "ru"}] https://elib.amia.by governmental [] 2022-01-12 15:36:00 2019-01-31 11:18:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "academy of the ministry of internal affairs of the republic of belarus", "alternativeName": "", "country": "by", "url": "https://www.amia.by", "identifier": [{"identifier": "https://ror.org/04pejce58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://elib.amia.by/oai/request yes +4229 {"name": "repositorio institucional expeditio", "language": "es"} [] https://expeditiorepositorio.utadeo.edu.co/ institutional [] 2022-01-12 15:36:00 2019-01-29 11:26:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad de bogot\u00e1 jorge tadeo lozano", "alternativeName": "", "country": "co", "url": "https://www.utadeo.edu.co/es", "identifier": [{"identifier": "https://ror.org/04wbzgn90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://expeditiorepositorio.utadeo.edu.co/tadeo/oai yes +4237 {"name": "repositorio unid", "language": "es"} [{"name": "unid institutional repository", "language": "en"}] http://repositorio.unid.edu.pe/ institutional [] 2022-01-12 15:36:00 2019-01-31 10:07:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad interamericana para el desarrollo", "alternativeName": "unid", "country": "pe", "url": "http://www.unid.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4186 {"name": "repositorio de la universidad de cuenca", "language": "es"} [] http://dspace.ucuenca.edu.ec/ institutional [] 2022-01-12 15:35:59 2018-11-21 10:23:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad de cuenca", "alternativeName": "", "country": "ec", "url": "https://www.ucuenca.edu.ec/", "identifier": [{"identifier": "https://ror.org/04r23zn56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4222 {"name": "osuva", "language": "en"} [] https://osuva.uwasa.fi/ institutional [] 2022-01-12 15:36:00 2019-01-25 10:09:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of vassa", "alternativeName": "", "country": "fi", "url": "https://www.univaasa.fi/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://osuva.uwasa.fi/oai/request yes +4185 {"name": "repositorio digital de la universidad nacional de educaci\u00f3n", "language": ""} [] http://repositorio.unae.edu.ec/ institutional [] 2022-01-12 15:35:59 2018-11-21 10:00:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad nacional de educacion", "alternativeName": "unae", "country": "ec", "url": "https://unae.edu.ec", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unae.edu.ec/oai yes +4264 {"name": "scholarworks @ university of texas rio grande valley", "language": "en"} [{"acronym": "scholarworks @ utrcv"}] https://scholarworks.utrgv.edu institutional [] 2022-01-12 15:36:00 2019-02-07 10:23:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of texas rio grande valley", "alternativeName": "utrgv", "country": "us", "url": "https://www.utrgv.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.utrgv.edu/do/oai yes +4255 {"name": "pillars at taylor university", "language": "en"} [] https://pillars.taylor.edu/ institutional [] 2022-01-12 15:36:00 2019-02-04 16:43:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "taylor university", "alternativeName": "", "country": "us", "url": "http://www.taylor.edu/", "identifier": [{"identifier": "https://ror.org/005aghs32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4238 {"name": "ccu digital commons", "language": "en"} [] https://digitalcommons.coastal.edu/ institutional [] 2022-01-12 15:36:00 2019-01-31 10:15:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "coastal carolina university", "alternativeName": "", "country": "us", "url": "https://www.coastal.edu/", "identifier": [{"identifier": "https://ror.org/01621q256", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.coastal.edu/do/oai/ yes +4168 {"name": "instrumentul bibliometric na\u021bional", "language": "ro"} [{"acronym": "ibn"}, {"name": "ibn national bibliometric instrument", "language": "en"}] https://ibn.idsi.md/ governmental [] 2022-01-12 15:35:59 2018-10-31 09:15:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "information society development institute", "alternativeName": "", "country": "md", "url": "https://idsi.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +4236 {"name": "data repository of the international institute of applied systems analysis", "language": "en"} [{"acronym": "iiasa-dare"}] http://dare.iiasa.ac.at/ institutional [] 2022-01-12 15:36:00 2019-01-30 15:59:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "international institute for applied systems analysis", "alternativeName": "", "country": "at", "url": "http://www.iiasa.ac.at/", "identifier": [{"identifier": "https://ror.org/02wfhk785", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dare.iiasa.ac.at/cgi/oai2 yes +4226 {"name": "repository politeknik ilmu pelayaran semarang", "language": "id"} [] http://repository.pip-semarang.ac.id/ institutional [] 2022-01-12 15:36:00 2019-01-29 10:26:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "politeknik ilmu pelayaran semarang", "alternativeName": "", "country": "id", "url": "https://pip-semarang.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.pip-semarang.ac.id/cgi/oai2 yes +4269 {"name": "boris theses", "language": "en"} [] https://boristheses.unibe.ch/ institutional [] 2022-01-12 15:36:01 2019-02-08 10:19:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of bern", "alternativeName": "", "country": "ch", "url": "http://www.unibe.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://boristheses.unibe.ch/cgi/oai2 yes +4245 {"name": "kent data repository", "language": "en"} [] https://data.kent.ac.uk/ institutional [] 2022-01-12 15:36:00 2019-02-01 11:49:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of kent", "alternativeName": "", "country": "gb", "url": "http://www.kent.ac.uk", "identifier": [{"identifier": "https://ror.org/00xkeyj56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://data.kent.ac.uk/cgi/oai2 yes +4172 {"name": "electronic archiving system", "language": "en"} [{"acronym": "easy"}] https://easy.dans.knaw.nl aggregating [] 2022-01-12 15:35:59 2018-11-14 11:14:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "dans", "alternativeName": "data archiving and networked services", "country": "nl", "url": "https://dans.knaw.nl/nl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://easy.dans.knaw.nl/oai/ yes +4181 {"name": "qucosa: hochschule f\u00fcr technik und wirtschaft dresden", "language": "de"} [{"acronym": "htw"}] https://htw-dresden.qucosa.de/ institutional [] 2022-01-12 15:35:59 2018-11-20 14:48:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "hochschule f\u00fcr technik und wirtschaft dresden", "alternativeName": "", "country": "de", "url": "https://www.htw-dresden.de/startseite.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://htw-dresden.qucosa.de/oai/ yes +4182 {"name": "qucosa: s\u00e4chsische landesbibliothek - staats- und universit\u00e4tsbibliothek dresden", "language": "de"} [{"acronym": "slub"}] http://slub.qucosa.de institutional [] 2022-01-12 15:35:59 2018-11-20 15:34:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "s\u00e4chsische landesbibliothek - staats- und universit\u00e4tsbibliothek dresden", "alternativeName": "slub", "country": "de", "url": "https://www.slub-dresden.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +4178 {"name": "qucosa - publikationsserver der universit\u00e4t leipzig", "language": ""} [] http://ul.qucosa.de/ institutional [] 2022-01-12 15:35:59 2018-11-20 14:09:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references"] [{"name": "leipzig university", "alternativeName": "", "country": "de", "url": "https://www.uni-leipzig.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://ul.qucosa.de/oai/ yes +4179 {"name": "qucosa - technische universit\u00e4t dresden", "language": ""} [] http://tud.qucosa.de institutional [] 2022-01-12 15:35:59 2018-11-20 14:17:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "technische universit\u00e4t dresden", "alternativeName": "", "country": "de", "url": "https://tu-dresden.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +4231 {"name": "phaidra @ fh st p\u00f6lten", "language": "en"} [] https://phaidra.fhstp.ac.at/ institutional [] 2022-01-12 15:36:00 2019-01-29 13:51:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "fachhochschule st. p\u00f6lten", "alternativeName": "", "country": "at", "url": "https://www.fhstp.ac.at/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +4267 {"name": "hal normandie universit\u00e9", "language": "fr"} [] https://hal-normandie-univ.archives-ouvertes.fr institutional [] 2022-01-12 15:36:00 2019-02-08 09:38:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "normandie universit\u00e9", "alternativeName": "", "country": "fr", "url": "http://www.normandie-univ.fr", "identifier": [{"identifier": "https://ror.org/01k40cz91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/hal/?verb=identify yes +4254 {"name": "hal - universit\u00e9 de lille", "language": "fr"} [] http://hal.univ-lille.fr/ institutional [] 2022-01-12 15:36:00 2019-02-04 15:57:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de lille", "alternativeName": "", "country": "fr", "url": "https://www.univ-lille.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-lille yes +4266 {"name": "hal - universit\u00e9 de reims champagne-ardenne", "language": "fr"} [] https://hal.univ-reims.fr/ institutional [] 2022-01-12 15:36:00 2019-02-07 14:37:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 de reims champagne-ardenne", "alternativeName": "", "country": "fr", "url": "https://www.univ-reims.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ_reims/ yes +4250 {"name": "hal imt mines-al\u00e8s", "language": "fr"} [] https://hal.archives-ouvertes.fr/em-ales institutional [] 2022-01-12 15:36:00 2019-02-04 10:41:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "imt mines al\u00e8s - ecole mines-t\u00e9l\u00e9com", "alternativeName": "", "country": "fr", "url": "https://www.mines-ales.fr/", "identifier": [{"identifier": "https://ror.org/03e8rf594", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4251 {"name": "hal universit\u00e9 de montpellier", "language": "fr"} [] https://hal.umontpellier.fr/ institutional [] 2022-01-12 15:36:00 2019-02-04 11:21:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de montpellier", "alternativeName": "", "country": "fr", "url": "https://www.umontpellier.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4173 {"name": "openagrar", "language": "en"} [] https://www.openagrar.de/content/index.xml governmental [] 2022-01-12 15:35:59 2018-11-20 11:17:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "federal ministry of food and agriculture", "alternativeName": "bmel", "country": "de", "url": "https://www.bmel.de", "identifier": [{"identifier": "https://ror.org/04jw21793", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} yes +4199 {"name": "rostocker dokumentenserver", "language": "de"} [{"acronym": "rosdok"}] http://rosdok.uni-rostock.de/ institutional [] 2022-01-12 15:35:59 2018-11-22 10:58:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "rostock university", "alternativeName": "", "country": "de", "url": "http://www.uni-rostock.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rosdok.uni-rostock.de/site/about/policies", "type": "content"}] {"name": "mycore", "version": ""} http://rosdok.uni-rostock.de/oai yes +4213 {"name": "publikationsserver der universit\u00e4tsbibliothek greifswald", "language": "de"} [{"name": "university of greifswald library publications server", "language": "en"}] https://epub.ub.uni-greifswald.de institutional [] 2022-01-12 15:36:00 2019-01-23 11:21:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e4t greifswald", "alternativeName": "", "country": "de", "url": "https://www.uni-greifswald.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://epub.ub.uni-greifswald.de/oai yes +4194 {"name": "dataversenl", "language": ""} [] https://dataverse.nl aggregating [] 2022-01-12 15:35:59 2018-11-21 14:45:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "dans", "alternativeName": "data archiving and networked services", "country": "nl", "url": "https://dans.knaw.nl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dataverse.nl/oai yes +4256 {"name": "repositorio digital de la universidad nacional de villa mar\u00eda", "language": "es"} [] http://catalogo.unvm.edu.ar/ institutional [] 2022-01-12 15:36:00 2019-02-06 14:08:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad nacional de villa mar\u00eda", "alternativeName": "", "country": "ar", "url": "https://www.unvm.edu.ar/", "identifier": [{"identifier": "https://ror.org/031m0fr54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://biblio.unvm.edu.ar/ws/pmboai yes +4193 {"name": "publikationsserver der universit\u00e4t klagenfurt (netlibrary)", "language": "de"} [] http://netlibrary.aau.at/ institutional [] 2022-01-12 15:35:59 2018-11-21 14:27:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e4t klagenfurt", "alternativeName": "", "country": "at", "url": "https://www.aau.at/", "identifier": [{"identifier": "https://ror.org/001zf8v27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4227 {"name": "shirayuri university repository", "language": "en"} [{"name": "\u767d\u767e\u5408\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shirayuri-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:00 2019-01-29 10:55:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "shirayuri university", "alternativeName": "", "country": "jp", "url": "http://www.shirayuri.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shirayuri-u.repo.nii.ac.jp/oai yes +4230 {"name": "national academic repository of ethiopia", "language": "en"} [] http://nadre.ethernet.edu.et institutional [] 2022-01-12 15:36:00 2019-01-29 11:57:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "ethiopian education and research network", "alternativeName": "ethernet", "country": "et", "url": "http://www.ethernet.edu.et", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} http://nadre.ethernet.edu.et/oai2d yes +4221 {"name": "rit croatia digital repository", "language": "en"} [{"acronym": "rit"}, {"name": "digitalni repozitorij rit croatia", "language": "hr"}] https://repository.acmt.hr/en institutional [] 2022-01-12 15:36:00 2019-01-24 15:28:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "rit croatia", "alternativeName": "", "country": "hr", "url": "http://www.croatia.rit.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.acmt.hr/oai yes +4219 {"name": "repository of the college for management in tourism and informatics in virovitica", "language": "en"} [] https://repozitorij.vsmti.hr institutional [] 2022-01-12 15:36:00 2019-01-24 15:05:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "college for management in tourism and informatics in virovitica", "alternativeName": "", "country": "hr", "url": "https://vsmti.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vsmti.hr/oai yes +4217 {"name": "polytechnic of me\u0111imurje in \u010dakovec undergraduate and graduate theses repository", "language": "en"} [{"name": "repozitorij zavr\u0161nih i diplomskih radova me\u0111imurskog veleu\u010dili\u0161ta u \u010dakovcu", "language": "hr"}] https://repozitorij.mev.hr institutional [] 2022-01-12 15:36:00 2019-01-24 14:42:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "polytechnic of me\u0111imurje in \u010dakovec", "alternativeName": "", "country": "hr", "url": "https://www.mev.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.mev.hr/oai yes +4218 {"name": "repository of bjelovar university of applied sciences", "language": "en"} [{"name": "repozitorij veleu\u010dili\u0161ta u bjelovaru", "language": "hr"}] https://repozitorij.vub.hr institutional [] 2022-01-12 15:36:00 2019-01-24 14:57:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "bjelovar university of applied sciences", "alternativeName": "vub", "country": "hr", "url": "https://vub.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vub.hr/oai yes +4207 {"name": "ristocar - repository of the institute of animal husbandry", "language": "en"} [{"name": "\u0440\u0438\u0441\u0442\u043e\u0447\u0430\u0440 - \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0458\u0443\u043c \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430 \u0437\u0430 \u0441\u0442\u043e\u0447\u0430\u0440\u0441\u0442\u0432\u043e", "language": "sr"}] http://r.istocar.bg.ac.rs institutional [] 2022-01-12 15:36:00 2019-01-16 11:28:08 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "institute of animal husbandry, belgrade", "alternativeName": "", "country": "rs", "url": "http://istocar.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://r.istocar.bg.ac.rs/files/policy-ristocar-en.html", "type": "metadata"}, {"policy_url": "http://r.istocar.bg.ac.rs/files/policy-ristocar-en.html", "type": "data"}, {"policy_url": "http://r.istocar.bg.ac.rs/files/policy-ristocar-en.html", "type": "submission"}, {"policy_url": "http://r.istocar.bg.ac.rs/files/policy-ristocar-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://r.istocar.bg.ac.rs/oai/request yes +4265 {"name": "repository of the kharkiv petro vasylenko national technical university of agriculture", "language": "en"} [] http://dspace.khntusg.com.ua/ institutional [] 2022-01-12 15:36:00 2019-02-07 13:59:11 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kharkiv petro vasylenko national technical university of agriculture", "alternativeName": "", "country": "ua", "url": "http://www.khntusg.com.ua/", "identifier": [{"identifier": "https://ror.org/04srpf911", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.khntusg.com.ua/oai/ yes +4174 {"name": "polish botanical society repository", "language": ""} [] https://pbsociety.org.pl/repository/ institutional [] 2022-01-12 15:35:59 2018-11-20 11:25:12 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets"] [{"name": "polish botanical society", "alternativeName": "", "country": "pl", "url": "https://pbsociety.org.pl/", "identifier": [{"identifier": "https://ror.org/008enam71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://pbsociety.org.pl/repository/oai yes +4273 {"name": "central repository of the institute of chemistry, technology and metallurgy", "language": "en"} [{"acronym": "cer"}] http://cer.ihtm.bg.ac.rs/ institutional [] 2022-01-12 15:36:01 2019-02-11 09:46:44 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://cer.ihtm.bg.ac.rs/contact?locale-attribute=en", "type": "metadata"}, {"policy_url": "http://cer.ihtm.bg.ac.rs/files/policy-cer-en.html", "type": "data"}, {"policy_url": "http://cer.ihtm.bg.ac.rs/files/policy-cer-en.html", "type": "content"}, {"policy_url": "http://cer.ihtm.bg.ac.rs/files/policy-cer-en.html", "type": "submission"}, {"policy_url": "http://cer.ihtm.bg.ac.rs/files/policy-cer-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://cer.ihtm.bg.ac.rs/oai/ yes +4206 {"name": "cherry - repository of the faculty of chemistry, university of belgrade", "language": "en"} [] http://cherry.chem.bg.ac.rs/ institutional [] 2022-01-12 15:36:00 2019-01-16 11:11:27 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://cherry.chem.bg.ac.rs/files/policy-cherry-en.html", "type": "metadata"}, {"policy_url": "http://cherry.chem.bg.ac.rs/files/policy-cherry-en.html", "type": "data"}, {"policy_url": "http://cherry.chem.bg.ac.rs/files/policy-cherry-en.html", "type": "content"}, {"policy_url": "http://cherry.chem.bg.ac.rs/files/policy-cherry-en.html", "type": "submission"}, {"policy_url": "http://cherry.chem.bg.ac.rs/files/policy-cherry-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://cherry.chem.bg.ac.rs/oai/request yes +4225 {"name": "rothamsted repository", "language": "en"} [] https://repository.rothamsted.ac.uk/ institutional [] 2022-01-12 15:36:00 2019-01-25 11:05:38 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "rothamsted research", "alternativeName": "", "country": "gb", "url": "https://www.rothamsted.ac.uk/", "identifier": [{"identifier": "https://ror.org/0347fy350", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://repository.rothamsted.ac.uk/oai2 yes +4235 {"name": "repositorio institucional universidad nacional de frontera", "language": "es"} [] http://repositorio.unf.edu.pe/ institutional [] 2022-02-04 16:12:44 2019-01-30 15:43:45 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de frontera", "alternativeName": "", "country": "pe", "url": "http://unfs.edu.pe/unfs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unf.edu.pe/oai yes +4234 {"name": "bpatc institutional repository", "language": "en"} [] http://dspace.bpatc.org.bd/ institutional [] 2022-01-12 15:36:00 2019-01-30 14:51:45 ["social sciences", "humanities"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "bangladesh public administration training centre", "alternativeName": "", "country": "bd", "url": "http://bpatc.org.bd", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4224 {"name": "open archive inapp", "language": "en"} [{"acronym": "oa-inapp"}] https://oa.inapp.org/xmlui/ institutional [] 2022-01-12 15:36:00 2019-01-25 10:35:54 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "istituto nazionale per lanalisi delle politiche pubbliche", "alternativeName": "inapp", "country": "it", "url": "https://inapp.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4192 {"name": "d.a.tsenov academy of economics digital repository", "language": ""} [] http://dlib.uni-svishtov.bg/ institutional [] 2022-01-12 15:35:59 2018-11-21 14:22:59 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "d.a.tsenov academy of economics", "alternativeName": "", "country": "bg", "url": "http://www.uni-svishtov.bg", "identifier": [{"identifier": "https://ror.org/02fdpqd66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dlib.uni-svishtov.bg/oai/request yes +4177 {"name": "aussda \u2013 the social science data archive", "language": "en"} [{"acronym": "aussda"}] https://data.aussda.at/ aggregating [] 2022-01-12 15:35:59 2018-11-20 13:50:14 ["social sciences"] ["datasets"] [{"name": "aussda - the social science data archive", "alternativeName": "aussda", "country": "at", "url": "https://aussda.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4274 {"name": "revistas y boletines - banco de la rep\u00fablica", "language": "es"} [] https://publicaciones.banrepcultural.org institutional [] 2022-01-12 15:36:01 2019-02-11 09:57:56 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "banco de la rep\u00fablica de colombia", "alternativeName": "", "country": "co", "url": "http://www.banrep.gov.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://publicaciones.banrepcultural.org/index.php/index/oai yes +4208 {"name": "raumplan - repository of architecture, urbanism and planning", "language": "en"} [{"name": "\u0440\u0430\u0443\u043c\u043f\u043b\u0430\u043d - \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0458\u0443\u043c \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0435 \u0443\u0440\u0431\u0430\u043d\u0438\u0437\u043c\u0430 \u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u045a\u0430", "language": "sr"}] http://raumplan.iaus.ac.rs/ institutional [] 2022-01-12 15:36:00 2019-01-16 11:43:58 ["technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "institute of architecture and urban & spatial planning of serbia, belgrade", "alternativeName": "", "country": "rs", "url": "http://iaus.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://raumplan.iaus.ac.rs/files/policy-raumplan-en.html", "type": "metadata"}, {"policy_url": "http://raumplan.iaus.ac.rs/files/policy-raumplan-en.html", "type": "data"}, {"policy_url": "http://raumplan.iaus.ac.rs/files/policy-raumplan-en.html", "type": "content"}, {"policy_url": "http://raumplan.iaus.ac.rs/files/policy-raumplan-en.html", "type": "submission"}, {"policy_url": "http://raumplan.iaus.ac.rs/files/policy-raumplan-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://raumplan.iaus.ac.rs/oai/request yes +4210 {"name": "tangaza university college digital repository", "language": "en"} [] http://repository.tangaza.ac.ke:8080/xmlui/ institutional [] 2021-05-21 18:03:46 2019-01-21 11:58:42 [] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tangaza university college", "alternativeName": "", "country": "ke", "url": "http://tangaza.ac.ke", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.tangaza.ac.ke:8080/oai yes +4252 {"name": "hal - universit\u00e9 de n\u00eemes", "language": "fr"} [] https://hal.archives-ouvertes.fr/unimes institutional [] 2019-10-17 14:35:12 2019-02-04 11:34:55 [] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de n\u00eemes", "alternativeName": "", "country": "fr", "url": "http://www.unimes.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4340 {"name": "humanities commons core", "language": "en"} [] https://hcommons.org/core disciplinary [] 2022-01-12 15:36:02 2019-02-22 15:20:57 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "humanities commons", "alternativeName": "", "country": "us", "url": "https://hcommons.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://support.hcommons.org/getting-started/core/", "type": "submission"}, {"policy_url": "https://support.hcommons.org/category/core/", "type": "preservation"}] {"name": "other", "version": ""} https://hcommons.org/deposits/oai yes +4302 {"name": "common language resources and technology infrastructure - slovenia", "language": "en"} [{"acronym": "clarin.si"}] https://www.clarin.si/repository/xmlui disciplinary [] 2022-01-12 15:36:01 2019-02-14 10:24:00 ["arts", "humanities"] ["learning_objects", "other_special_item_types"] [{"name": "jo\u017eef stefan institute", "alternativeName": "", "country": "si", "url": "https://www.ijs.si/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.clarin.si/repository/oai/request? yes +4292 {"name": "digital repository of the milutin bojic library", "language": "en"} [{"name": "\u0434\u0438\u0433\u0438\u0442\u0430\u043b\u043d\u0438 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0458\u0443\u043c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435 \"\u043c\u0438\u043b\u0443\u0442\u0438\u043d \u0431\u043e\u0458\u0438\u045b\"", "language": "sr"}] https://milutinbojic.digitalna.rs/ institutional [] 2022-01-12 15:36:01 2019-02-13 14:28:05 ["arts", "humanities"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "the milutin bojic library", "alternativeName": "", "country": "rs", "url": "https://milutinbojic.org.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://milutinbojic.digitalna.rs/oai yes +4277 {"name": "seguro social de salud repositorio digital", "language": "es"} [{"acronym": "essalud"}, {"name": "", "language": ""}] http://repositorio.essalud.gob.pe/ governmental [] 2022-01-12 15:36:01 2019-02-11 11:44:47 ["health and medicine"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "seguro social de salud", "alternativeName": "essalud", "country": "pe", "url": "http://www.essalud.gob.pe/", "identifier": [{"identifier": "https://ror.org/0232mk144", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.essalud.gob.pe/oai/request yes +4317 {"name": "ural state medical university repository", "language": "en"} [] http://elib.usma.ru/ institutional [] 2022-01-12 15:36:02 2019-02-18 15:25:53 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ural state medical university", "alternativeName": "", "country": "ru", "url": "http://usma.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.usma.ru/oai/request yes +4372 {"name": "tabriz university of medical sciences repository", "language": "en"} [] http://dspace.tbzmed.ac.ir/xmlui/ institutional [] 2022-01-12 15:36:03 2019-03-04 14:20:14 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tabriz university of medical sciences", "alternativeName": "", "country": "ir", "url": "https://www.tbzmed.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4365 {"name": "russian opthalmology online", "language": "en"} [{"name": "\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u043e\u0444\u0442\u0430\u043b\u044c\u043c\u043e\u043b\u043e\u0433\u0438\u044f \u043e\u043d\u043b\u0430\u0439\u043d", "language": "ru"}] https://eyepress.ru/search/searcharticle.aspx disciplinary [] 2022-01-12 15:36:02 2019-03-01 15:48:18 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "opthalmology publishing, moscow", "alternativeName": "", "country": "ru", "url": "https://eyepress.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4309 {"name": "sekolah tinggi theologia jaffray repository", "language": "id"} [] https://repository.sttjaffray.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-18 10:13:44 ["humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "sekolah tinggi theologia jaffray", "alternativeName": "", "country": "id", "url": "https://www.sttjaffray.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://repository.sttjaffray.ac.id/oai yes +4339 {"name": "publications server of the weierstrass institute for applied analysis and stochastics", "language": "en"} [{"name": "der publikationsserver des weierstra\u00df-instituts f\u00fcr angewandte analysis und stochastik", "language": "de"}] http://archive.wias-berlin.de institutional [] 2022-01-12 15:36:02 2019-02-22 13:49:11 ["mathematics"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "weierstrass institute", "alternativeName": "", "country": "de", "url": "https://www.wias-berlin.de/", "identifier": [{"identifier": "https://ror.org/00h1x4t21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} http://archive.wias-berlin.de/servlets/oaidataprovider yes +4364 {"name": "institutional repository of the ismmm", "language": "en"} [{"acronym": "n\u00ednive"}, {"name": "repositorio institucional ismmm", "language": "es"}, {"acronym": "n\u00ednive"}] http://ninive.ismm.edu.cu/ institutional [] 2022-01-12 15:36:02 2019-03-01 14:53:16 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "instituto superior minero-metal\u00fargico de moa dr antonio n\u00fa\u00f1ez jim\u00e9nez", "alternativeName": "ismmm", "country": "cu", "url": "http://www.ismm.edu.cu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ninive.ismm.edu.cu/oai yes +4366 {"name": "hitit university institutional repository", "language": "en"} [{"name": "hitit \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}] http://earsiv.hitit.edu.tr institutional [] 2022-01-12 15:36:02 2019-03-04 10:11:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "hitit university", "alternativeName": "", "country": "tr", "url": "http://www.hitit.edu.tr/", "identifier": [{"identifier": "https://ror.org/01x8m3269", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://earsiv.hitit.edu.tr/dokumanlar/oa_politika.pdf", "type": "content"}] {"name": "dspace", "version": ""} http://earsiv.hitit.edu.tr/oai yes +4351 {"name": "odu digital commons", "language": "en"} [] https://digitalcommons.odu.edu institutional [] 2022-01-12 15:36:02 2019-02-26 11:04:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "old dominion university", "alternativeName": "odu", "country": "us", "url": "https://odu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://guides.lib.odu.edu/ir", "type": "content"}] {"name": "digital_commons", "version": ""} http://digitalcommons.odu.edu/do/oai yes +4338 {"name": "the open access and research data repository of the university libraries in saxony-anhalt", "language": "en"} [{"acronym": "share it"}, {"name": "open access und forschungsdaten-repositorium der hochschulbibliotheken in sachsen-anhalt", "language": "de"}, {"acronym": "share it"}] https://opendata.uni-halle.de/ institutional [] 2022-01-12 15:36:02 2019-02-22 11:49:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "universit\u00e4ts- und landesbibliothek sachsen-anhalt", "alternativeName": "", "country": "de", "url": "https://bibliothek.uni-halle.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opendata.uni-halle.de/leitlinien.jsp", "type": "content"}] {"name": "dspace", "version": ""} https://opendata.uni-halle.de/oai/ yes +4368 {"name": "phaidra", "language": ""} [] https://phaidra.cab.unipd.it/ institutional [] 2022-01-12 15:36:02 2019-03-04 11:29:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "university of padua", "alternativeName": "", "country": "it", "url": "http://www.unipd.it", "identifier": [{"identifier": "https://ror.org/01pyqxp87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://phaidra.cab.unipd.it/terms_of_use/show_terms_of_use", "type": "metadata"}, {"policy_url": "https://phaidra.cab.unipd.it/help/editorial_policies", "type": "submission"}] {"name": "fedora", "version": ""} https://fc.cab.unipd.it/oaiprovider/ yes +4284 {"name": "uni scholarworks", "language": "en"} [] https://scholarworks.uni.edu/ institutional [] 2022-01-12 15:36:01 2019-02-12 11:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of northern iowa", "alternativeName": "uni", "country": "us", "url": "https://uni.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://scholarworks.uni.edu/about.html", "type": "metadata"}, {"policy_url": "https://scholarworks.uni.edu/about.html", "type": "data"}, {"policy_url": "https://scholarworks.uni.edu/about.html", "type": "content"}, {"policy_url": "https://scholarworks.uni.edu/about.html", "type": "submission"}] {"name": "digital_commons", "version": ""} https://scholarworks.uni.edu/do/oai/ yes +4319 {"name": "zivahub - open data uct", "language": "en"} [] https://zivahub.uct.ac.za/ institutional [] 2022-01-12 15:36:02 2019-02-19 10:06:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of cape town", "alternativeName": "", "country": "za", "url": "https://www.uct.ac.za/", "identifier": [{"identifier": "https://ror.org/03p74gp79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.uct.ac.za/sites/default/files/image_tool/images/328/about/policies/tgo_policy_research_data_management_2018.pdf", "type": "data"}, {"policy_url": "https://www.uct.ac.za/downloads/uct.ac.za/about/policies/uctopenaccesspolicy.pdf", "type": "content"}, {"policy_url": "https://www.uct.ac.za/downloads/uct.ac.za/about/policies/intellect_property.pdf", "type": "content"}, {"policy_url": "http://www.digitalservices.lib.uct.ac.za/uct-terms-data-deposit", "type": "submission"}, {"policy_url": "http://www.digitalservices.lib.uct.ac.za/uct-terms-data-deposit", "type": "preservation"}] {"name": "", "version": ""} yes +4357 {"name": "cimav institutional repository", "language": "en"} [{"name": "repositorio cimav", "language": "es"}] https://cimav.repositorioinstitucional.mx/jspui/ institutional [] 2022-01-12 15:36:02 2019-02-28 10:16:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro de investigaci\u00f3n en materiales avanzados, chihuahua", "alternativeName": "cimav", "country": "mx", "url": "http://cimav.edu.mx", "identifier": [{"identifier": "https://ror.org/03h954e30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4354 {"name": "digital repository of smt. akkatai ramgonda patil kanya mahavidyalaya, ichalkaranji", "language": ""} [] https://earpkmi.in institutional [] 2022-01-12 15:36:02 2019-02-26 15:01:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "smt. a.r.p. kanya college, ichalkaranji", "alternativeName": "", "country": "in", "url": "http://arpkmi.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4312 {"name": "patu\u00e1 - repositorio digital do instituto evandro chagas", "language": "pt"} [] https://patua.iec.gov.br/ institutional [] 2022-01-12 15:36:02 2019-02-18 13:29:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "instituto evandro chagas", "alternativeName": "", "country": "br", "url": "http://www.iec.gov.br/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4311 {"name": "repositorio institucional universidad piloto de colombia re-pilo", "language": "es"} [] http://repository.unipiloto.edu.co/ institutional [] 2022-01-12 15:36:02 2019-02-18 11:48:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad piloto de colombia", "alternativeName": "", "country": "co", "url": "http://www.unipiloto.edu.co/", "identifier": [{"identifier": "https://ror.org/03m5f7m65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repository.unipiloto.edu.co/oai/request?verb=identify yes +4331 {"name": "ewing memorial library digital archives", "language": "en"} [] http://cdm16779.contentdm.oclc.org/cdm/ institutional [] 2022-01-12 15:36:02 2019-02-21 11:31:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "ewing memorial library", "alternativeName": "", "country": "pk", "url": "http://library.fccollege.edu.pk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16779.contentdm.oclc.org/cdm/oai yes +4299 {"name": "university of saskatchewans research archive - harvest", "language": "en"} [{"acronym": "harvest"}] https://harvest.usask.ca/ institutional [] 2022-01-12 15:36:01 2019-02-13 16:29:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of saskatchewan", "alternativeName": "", "country": "ca", "url": "https://www.usask.ca/", "identifier": [{"identifier": "https://ror.org/010x8gc63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://harvest.usask.ca/oai/request yes +4294 {"name": "institutional repository of the islamic university of gaza", "language": "en"} [{"acronym": "iugspace"}, {"name": "\u0627\u0644\u0645\u0633\u062a\u0648\u062f\u0639 \u0627\u0644\u0631\u0642\u0645\u064a \u0644\u0644\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629 \u0628\u063a\u0632\u0629", "language": "ar"}] https://iugspace.iugaza.edu.ps institutional [] 2022-01-12 15:36:01 2019-02-13 15:00:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "islamic university of gaza", "alternativeName": "", "country": "ps", "url": "http://iugaza.edu.ps", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iugspace.iugaza.edu.ps/oai yes +4335 {"name": "lviv state university of internal affairs institutional repository", "language": "en"} [{"acronym": "lvsuiair"}] http://dspace.lvduvs.edu.ua institutional [] 2022-01-12 15:36:02 2019-02-22 10:16:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lviv state university of internal affairs", "alternativeName": "", "country": "ua", "url": "http://www.lvduvs.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.lvduvs.edu.ua/oai yes +4377 {"name": "national open repository aggregator", "language": "en"} [{"acronym": "nora"}, {"name": "\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0430\u0433\u0440\u0435\u0433\u0430\u0442\u043e\u0440 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0435\u0432", "language": "ru"}, {"acronym": "hopa"}] https://openrepository.ru/ aggregating [] 2022-01-12 15:36:03 2019-03-05 10:28:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "neicon", "alternativeName": "national electronic information consortium", "country": "ru", "url": "https://neicon.ru/", "identifier": [{"identifier": "https://ror.org/0012p6j68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rour.neicon.ru/oai/ yes +4327 {"name": "rui barbosa cultural information repository", "language": "en"} [{"acronym": "rubi"}] http://rubi.casaruibarbosa.gov.br/ institutional [] 2022-01-12 15:36:02 2019-02-21 09:43:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "funda\u00e7\u00e3o casa de rui barbosa", "alternativeName": "", "country": "br", "url": "http://casaruibarbosa.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rubi.casaruibarbosa.gov.br/oai yes +4313 {"name": "repositorio institucional de la universidad tecnol\u00f3gica de panam\u00e1", "language": "es"} [{"acronym": "utp-ridda2"}] https://ridda2.utp.ac.pa institutional [] 2022-01-12 15:36:02 2019-02-18 13:36:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "universidad tecnol\u00f3gica de panam\u00e1", "alternativeName": "utp", "country": "pa", "url": "http://www.utp.ac.pa", "identifier": [{"identifier": "https://ror.org/030ve2c48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ridda2.utp.ac.pa/oai/request yes +4373 {"name": "yeshiva academic institutional repository", "language": "en"} [{"acronym": "yair"}] https://repository.yu.edu institutional [] 2022-01-12 15:36:03 2019-03-04 15:10:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "yeshiva university", "alternativeName": "", "country": "us", "url": "https://www.yu.edu", "identifier": [{"identifier": "https://ror.org/045x93337", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.yu.edu/oai yes +4345 {"name": "firat university open archive", "language": "en"} [{"name": "f\u0131rat \u00fcniversitesi kurumsal a\u00e7\u0131k ar\u015fiv", "language": "tr"}] https://openaccess.firat.edu.tr institutional [] 2022-01-12 15:36:02 2019-02-25 10:53:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "firat university", "alternativeName": "", "country": "tr", "url": "http://www.firat.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.firat.edu.tr/oai/request?verb=identify yes +4332 {"name": "uganda christian university digital institutional repository", "language": "en"} [] http://ucudir.ucu.ac.ug institutional [] 2022-01-12 15:36:02 2019-02-22 09:42:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "uganda christian university", "alternativeName": "", "country": "ug", "url": "http://ucu.ac.ug/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ucudir.ucu.ac.ug/oai/request?verb=identify yes +4306 {"name": "repository of francisk skorina gomel state university", "language": "en"} [] http://elib.gsu.by/ institutional [] 2022-01-12 15:36:02 2019-02-15 11:54:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "\u0433\u043e\u043c\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0438\u043c\u0435\u043d\u0438 \u0444\u0440\u0430\u043d\u0446\u0438\u0441\u043a\u0430 \u0441\u043a\u043e\u0440\u0438\u043d\u044b", "alternativeName": "", "country": "by", "url": "http://gsu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4278 {"name": "repository of the k.d. ushynsky south ukrainian national pedagogical university", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043b\u0430\u0434\u0443 \u043f\u0456\u0432\u0434\u0435\u043d\u043d\u043e\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439 \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0456\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u043a. \u0434. \u0443\u0448\u0438\u043d\u0441\u044c\u043a\u043e\u0433\u043e", "language": "uk"}] http://dspace.pdpu.edu.ua institutional [] 2022-01-12 15:36:01 2019-02-11 12:04:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "k.d. ushynsky south ukrainian national pedagogical university", "alternativeName": "", "country": "ua", "url": "http://pdpu.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4281 {"name": "university of tripoli digital repository", "language": "en"} [] http://oa.uot.edu.ly institutional [] 2022-01-12 15:36:01 2019-02-11 16:00:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "university of tripoli", "alternativeName": "", "country": "ly", "url": "http://uot.edu.ly", "identifier": [{"identifier": "https://ror.org/00taa2s29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4322 {"name": "reposit\u00f3rio institucional ufscar", "language": "pt"} [] https://repositorio.ufscar.br institutional [] 2022-01-12 15:36:02 2019-02-19 15:31:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal de s\u00e3o carlos", "alternativeName": "", "country": "br", "url": "https://www2.ufscar.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufscar.br/oai/ yes +4376 {"name": "repositorio digital - academia colombiana de ciencias exactas, fisicas y naturales", "language": "es"} [] https://accefyn-dspace.metabiblioteca.org institutional [] 2022-01-12 15:36:03 2019-03-05 10:04:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "colombian academy of exact, physical and natural sciences", "alternativeName": "", "country": "co", "url": "https://accefyn.com/wp/inicio/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://accefyn-dspace.metabiblioteca.org/oai yes +4324 {"name": "repositorio institucional usel", "language": "es"} [] http://repositorio.usel.edu.pe/ institutional [] 2022-01-12 15:36:02 2019-02-20 11:58:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universidad seminario evang\u00e9lico de lima", "alternativeName": "", "country": "pe", "url": "http://www.usel.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usel.edu.pe/oai/ yes +4358 {"name": "fresno state digital repository", "language": "en"} [] http://repository.library.fresnostate.edu institutional [] 2022-01-12 15:36:02 2019-02-28 10:37:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "california state university, fresno", "alternativeName": "", "country": "us", "url": "http://www.csufresno.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4353 {"name": "machakos university digital repository", "language": "en"} [] http://ir.mksu.ac.ke/ institutional [] 2022-01-12 15:36:02 2019-02-26 14:21:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "machakos university", "alternativeName": "", "country": "ke", "url": "https://www.mksu.ac.ke/", "identifier": [{"identifier": "https://ror.org/05eyrmk93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4350 {"name": "nile university repository", "language": "en"} [] http://repository.nileuniversity-edu.com:8080/xmlui/ institutional [] 2022-01-12 15:36:02 2019-02-26 10:38:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nile university", "alternativeName": "", "country": "sd", "url": "http://nileuniversity-edu.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4371 {"name": "repositoria institucional da universidade eduardo mondlane", "language": ""} [] http://www.repositorio.uem.mz/ institutional [] 2022-01-12 15:36:03 2019-03-04 14:14:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "eduardo mondlane university", "alternativeName": "uem", "country": "mz", "url": "www.uem.mz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4282 {"name": "repositorio de tesis - universidad cat\u00f3lica de santa mar\u00eda", "language": "es"} [{"name": "thesis repository of the catholic university of santa mar\u00eda", "language": "en"}] http://tesis.ucsm.edu.pe/repositorio/ institutional [] 2022-01-12 15:36:01 2019-02-11 16:22:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad catolica de santa mar\u00eda", "alternativeName": "", "country": "pe", "url": "http://www.ucsm.edu.pe/", "identifier": [{"identifier": "https://ror.org/027ryxs60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tesis.ucsm.edu.pe/oai/request yes +4362 {"name": "repository of the national university of the peruvian amazon", "language": "en"} [] http://repositorio.unapiquitos.edu.pe/ institutional [] 2022-01-12 15:36:02 2019-03-01 13:58:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national university of the peruvian amazon", "alternativeName": "", "country": "pe", "url": "https://www.unapiquitos.edu.pe/", "identifier": [{"identifier": "https://ror.org/05h6yvy73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4334 {"name": "umn knowledge center", "language": "en"} [] http://kc.umn.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-22 10:03:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universitas multimedia nusantara", "alternativeName": "umn", "country": "id", "url": "http://www.umn.ac.id/", "identifier": [{"identifier": "https://ror.org/00sefv038", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kc.umn.ac.id/cgi/oai2 yes +4370 {"name": "west kordufan university repository", "language": "en"} [] http://dspacewku.repository.edu.sd/ institutional [] 2022-01-12 15:36:03 2019-03-04 13:46:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "west kordufan university", "alternativeName": "", "country": "sd", "url": "http://www.wku.edu.sd/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4305 {"name": "mount kenya university institutional repository", "language": "en"} [] https://erepository.mku.ac.ke institutional [] 2022-01-12 15:36:02 2019-02-15 11:42:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "mount kenya university", "alternativeName": "", "country": "ke", "url": "https://www.mku.ac.ke", "identifier": [{"identifier": "https://ror.org/04kq7tf63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://erepository.mku.ac.ke/oai/ yes +4321 {"name": "repositorio institucional unjfsc", "language": "es"} [] http://repositorio.unjfsc.edu.pe/ institutional [] 2022-01-12 15:36:02 2019-02-19 13:46:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional jos\u00e9 faustino s\u00e1nchez carri\u00f3n", "alternativeName": "", "country": "pe", "url": "http://www.unjfsc.edu.pe/", "identifier": [{"identifier": "https://ror.org/040akr227", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4374 {"name": "holmesglen institutional repository", "language": "en"} [] http://holmesglen.intersearch.com.au/holmesglenjspui/ institutional [] 2022-01-12 15:36:03 2019-03-04 16:08:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "holmesglen institute", "alternativeName": "", "country": "au", "url": "https://holmesglen.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4314 {"name": "repository of kostanay state pedagogical university", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043a\u0433\u043f\u0443", "language": "ru"}] http://repo.kspi.kz institutional [] 2022-01-12 15:36:02 2019-02-18 13:49:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "\u043a\u043e\u0441\u0442\u0430\u043d\u0430\u0439\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442", "alternativeName": "kspu", "country": "kz", "url": "http://kspi.kz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4308 {"name": "valto", "language": "fi"} [] https://julkaisut.valtioneuvosto.fi/ governmental [] 2022-01-12 15:36:02 2019-02-18 09:42:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "finnish governement", "alternativeName": "", "country": "fi", "url": "https://valtioneuvosto.fi", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://julkaisut.valtioneuvosto.fi/oai/request yes +4369 {"name": "institutional repository of the national university of rio negro", "language": "en"} [{"name": "repositorio institucional digital de la universidad nacional de r\u00edo negro", "language": "es"}, {"acronym": "rid-unrn"}] https://rid.unrn.edu.ar/ institutional [] 2022-01-12 15:36:02 2019-03-04 11:44:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad nacional de r\u00edo negro", "alternativeName": "", "country": "ar", "url": "https://www.unrn.edu.ar/", "identifier": [{"identifier": "https://ror.org/048zgak80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rid.unrn.edu.ar/jspui/politicas.jsp", "type": "metadata"}, {"policy_url": "http://rid.unrn.edu.ar/jspui/politicas.jsp", "type": "data"}, {"policy_url": "http://rid.unrn.edu.ar/jspui/politicas.jsp", "type": "content"}, {"policy_url": "http://rid.unrn.edu.ar/jspui/politicas.jsp", "type": "submission"}, {"policy_url": "http://rid.unrn.edu.ar/jspui/politicas.jsp", "type": "preservation"}] {"name": "dspace", "version": ""} yes +4326 {"name": "repositorio institucional s\u00e9neca - universidad de los andes", "language": "es"} [] https://repositorio.uniandes.edu.co/ institutional [] 2022-01-12 15:36:02 2019-02-20 16:01:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of the andes", "alternativeName": "", "country": "co", "url": "https://uniandes.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repositorio.uniandes.edu.co/page/policies", "type": "content"}] {"name": "dspace", "version": ""} yes +4297 {"name": "csu epress", "language": "en"} [] https://csuepress.columbusstate.edu/ institutional [] 2022-01-12 15:36:01 2019-02-13 16:04:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "columbus state university", "alternativeName": "csu", "country": "us", "url": "https://www.columbusstate.edu/", "identifier": [{"identifier": "https://ror.org/002nf6z37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4295 {"name": "thinkir", "language": "en"} [] https://ir.library.louisville.edu/ institutional [] 2022-01-12 15:36:01 2019-02-13 15:31:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of louisville", "alternativeName": "", "country": "us", "url": "http://louisville.edu/", "identifier": [{"identifier": "https://ror.org/01ckdn478", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4349 {"name": "majapahit islamic university institutional repository", "language": "en"} [] http://repository.unim.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-26 09:52:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "majapahit islamic university", "alternativeName": "", "country": "id", "url": "http://unim.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unim.ac.id/cgi/oai2 yes +4323 {"name": "universitas terbuka repository", "language": "id"} [] http://repository.ut.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-20 10:28:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "indonesia open university", "alternativeName": "", "country": "id", "url": "http://www.ut.ac.id", "identifier": [{"identifier": "https://ror.org/03zwesg40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ut.ac.id/cgi/oai2 yes +4328 {"name": "repository fakultas ekonomi unj", "language": "id"} [] http://repository.fe.unj.ac.id institutional [] 2022-01-12 15:36:02 2019-02-21 10:06:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universitas negeri jakarta", "alternativeName": "", "country": "id", "url": "http://unj.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4360 {"name": "itb erepository", "language": "en"} [] https://eprints.itb.ac.id/ institutional [] 2022-01-12 15:36:02 2019-03-01 10:02:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "institut teknologi bandung", "alternativeName": "", "country": "id", "url": "https://www.itb.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4310 {"name": "repositori uin alauddin makassar", "language": "id"} [] https://repositori.uin-alauddin.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-18 11:38:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universitas islam negeri alauddin makassar", "alternativeName": "", "country": "id", "url": "http://uin-alauddin.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositori.uin-alauddin.ac.id/cgi/oai2 yes +4343 {"name": "repository iain palopo", "language": "en"} [] http://repository.iainpalopo.ac.id institutional [] 2022-01-12 15:36:02 2019-02-25 10:05:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "institut agama islam negeri - palopo", "alternativeName": "iain", "country": "id", "url": "http://iainpalopo.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.iainpalopo.ac.id/cgi/oai2 yes +4363 {"name": "research data unipd", "language": "en"} [] http://researchdata.cab.unipd.it/ institutional [] 2022-01-12 15:36:02 2019-03-01 14:12:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "universit\u00e0 degli studi di padova", "alternativeName": "", "country": "it", "url": "https://www.unipd.it/", "identifier": [{"identifier": "https://ror.org/01pyqxp87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://researchdata.cab.unipd.it/information.html", "type": "metadata"}, {"policy_url": "http://researchdata.cab.unipd.it/information.html", "type": "data"}, {"policy_url": "http://researchdata.cab.unipd.it/submission_policy.html", "type": "submission"}] {"name": "eprints", "version": ""} http://researchdata.cab.unipd.it/cgi/oai2 yes +4285 {"name": "institutional repository of the general jonas zemaitis military academy of lithuania", "language": "en"} [] https://vb.lka.lt/repository institutional [] 2022-01-12 15:36:01 2019-02-12 13:11:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "general jonas \u017eemaitis military academy of lithuania", "alternativeName": "", "country": "lt", "url": "http://www.lka.lt/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vb.lka.lt/oai yes +4276 {"name": "hal - sorbonne nouvelle paris 3", "language": "fr"} [] https://hal-univ-paris3.archives-ouvertes.fr/ institutional [] 2022-01-12 15:36:01 2019-02-11 10:25:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "universit\u00e9 sorbonne nouvelle paris 3", "alternativeName": "", "country": "fr", "url": "http://www.univ-paris3.fr/", "identifier": [{"identifier": "https://ror.org/03z6jp965", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4325 {"name": "hal - upec / upem", "language": "en"} [] https://hal-upec-upem.archives-ouvertes.fr/ institutional [] 2022-01-12 15:36:02 2019-02-20 15:21:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "universit\u00e9 paris-est marne-la-vall\u00e9e", "alternativeName": "upem", "country": "fr", "url": "http://www.u-pem.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/univ-mlv yes +4355 {"name": "africarxiv", "language": "en"} [] http://africarxiv.org/ disciplinary [] 2022-01-12 15:36:02 2019-02-26 15:52:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "access2perspectives", "alternativeName": "", "country": "de", "url": "http://access2perspectives.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} yes +4352 {"name": "kilthub", "language": "en"} [] https://kilthub.figshare.com/ institutional [] 2022-01-12 15:36:02 2019-02-26 11:16:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "carnegie mellon university", "alternativeName": "", "country": "us", "url": "https://www.cmu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listrecords&metadataprefix=oai_dc&set=portal_231 yes +4288 {"name": "deycrit sur base de datos", "language": "es"} [] http://www.deycrit-sur.com/index/basededatos.html aggregating [] 2022-01-12 15:36:01 2019-02-13 10:46:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections"] [{"name": "corriente nuestram\u00e9rica desde abajo", "alternativeName": "", "country": "cl", "url": "http://corriente.revistanuestramerica.cl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.deycrit-sur.com/index.php/oai yes +4347 {"name": "theses.fr", "language": "en"} [] http://www.theses.fr aggregating [] 2022-01-12 15:36:02 2019-02-25 14:11:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "agence bibliographique de lenseignement sup\u00e9rieur", "alternativeName": "abes", "country": "fr", "url": "http://www.abes.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://staroai.theses.fr/oaihandler yes +4359 {"name": "iris universit\u00e0 politecnica delle marche", "language": "it"} [] https://iris.univpm.it/ institutional [] 2022-01-12 15:36:02 2019-02-28 14:48:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "universit\u00e0 politecnica delle marche", "alternativeName": "univpm", "country": "it", "url": "https://www.univpm.it/entra/", "identifier": [{"identifier": "https://ror.org/00x69rs40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4341 {"name": "qucosa \u2013 hemholtz-zentrum dresden-rossendorf", "language": "de"} [] http://hzdr.qucosa.de/ institutional [] 2022-01-12 15:36:02 2019-02-22 16:48:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "hemholtz-zentrum dresden-rossendorf", "alternativeName": "", "country": "de", "url": "https://www.hzdr.de/", "identifier": [{"identifier": "https://ror.org/01zy2cs03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://hzdr.qucosa.de/oai/ yes +4342 {"name": "qucosa \u2013 dresden international university", "language": "en"} [] http://diu.qucosa.de/ institutional [] 2022-01-12 15:36:02 2019-02-22 16:52:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "dresden international university", "alternativeName": "", "country": "de", "url": "https://www.di-uni.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://diu.qucosa.de/oai/ yes +4290 {"name": "breda university of applied sciences portal", "language": "en"} [{"acronym": "buas"}] https://pure.buas.nl/ institutional [] 2022-01-12 15:36:01 2019-02-13 13:41:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "breda university of applied sciences", "alternativeName": "buas", "country": "nl", "url": "https://www.buas.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.buas.nl/ws/oai yes +4291 {"name": "repository of the university of namur", "language": "en"} [] https://researchportal.unamur.be/ institutional [] 2022-01-12 15:36:01 2019-02-13 13:53:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "university of namur", "alternativeName": "", "country": "be", "url": "https://www.unamur.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.unamur.be/ws/oai yes +4344 {"name": "uwa profiles and research repository", "language": "en"} [] https://research-repository.uwa.edu.au institutional [] 2022-01-12 15:36:02 2019-02-25 10:29:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "university of western australia", "alternativeName": "", "country": "au", "url": "https://www.uwa.edu.au/", "identifier": [{"identifier": "https://ror.org/047272k79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +4301 {"name": "open university of the netherlands research portal", "language": "en"} [] https://research.ou.nl/ institutional [] 2022-01-12 15:36:01 2019-02-14 10:07:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "open university of the netherlands", "alternativeName": "ou", "country": "nl", "url": "https://www.ou.nl/", "identifier": [{"identifier": "https://ror.org/018dfmf50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.ou.nl/ws/oai yes +4280 {"name": "inspire @ redlands", "language": "en"} [] https://inspire.redlands.edu institutional [] 2022-01-12 15:36:01 2019-02-11 14:25:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of redlands", "alternativeName": "", "country": "us", "url": "https://www.redlands.edu/", "identifier": [{"identifier": "https://ror.org/02hfyct53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "samvera", "version": ""} https://dashboard.inspire.redlands.edu/catalog/oai yes +4300 {"name": "scientific electronic library online - ecuador", "language": "en"} [{"acronym": "scielo"}] http://scielo.senescyt.gob.ec/ aggregating [] 2022-01-12 15:36:01 2019-02-14 09:47:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "secretaria de educaci\u00f3n superior, ciencia, tecnolog\u00eda, innovaci\u00f3n y saberes ancestrales", "alternativeName": "senescyt", "country": "ec", "url": "https://www.educacionsuperior.gob.ec/", "identifier": [{"identifier": "https://ror.org/056c6e777", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "scielo", "version": ""} https://oaipmh.scielo.org/ec yes +4287 {"name": "shokei gakuin university academic institutional repository", "language": "en"} [{"name": "\u5c1a\u7d45\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shokei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:01 2019-02-13 10:15:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "shokei gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.shokei.jp/", "identifier": [{"identifier": "https://ror.org/01qheje62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shokei.repo.nii.ac.jp/oai yes 518 525 +4315 {"name": "saitama prefectural university repository", "language": "en"} [{"name": "\u57fc\u7389\u770c\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://spu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:02 2019-02-18 15:08:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "saitama prefectural university", "alternativeName": "", "country": "jp", "url": "https://www.spu.ac.jp/", "identifier": [{"identifier": "https://ror.org/04bpsyk42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://spu.repo.nii.ac.jp/oai yes +4336 {"name": "reposit\u00f3rio institucional de geoci\u00eancias", "language": "pt"} [{"acronym": "rigeo"}] http://rigeo.cprm.gov.br/jspui/ institutional [] 2022-01-12 15:36:02 2019-02-22 10:25:27 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "cprm", "alternativeName": "companhia de pesquisa de recursos minerais - servi\u00e7o geol\u00f3gico do brasil", "country": "br", "url": "http://www.cprm.gov.br/", "identifier": [{"identifier": "https://ror.org/04ry0c837", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4318 {"name": "repositorio digital de recursos h\u00eddricos", "language": "es"} [{"name": "digital repository of water resources", "language": "en"}] http://repositorio.ana.gob.pe disciplinary [] 2022-01-12 15:36:02 2019-02-19 09:46:15 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "autoridad nacional del agua", "alternativeName": "", "country": "pe", "url": "http://ana.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ana.gob.pe/oai yes +4289 {"name": "repository of the university of applied & environmental sciences", "language": "en"} [{"name": "repositorio - universidad de ciencias aplicadas y ambientale", "language": "es"}] https://repository.udca.edu.co institutional [] 2022-01-12 15:36:01 2019-02-13 11:46:52 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of applied and environmental sciences", "alternativeName": "udca", "country": "co", "url": "https://udca.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.udca.edu.co/oai/request yes +4316 {"name": "university of mohaghegh ardabili scientific repository", "language": "en"} [] http://repository.uma.ac.ir/ institutional [] 2022-01-12 15:36:02 2019-02-18 15:17:02 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of mohaghegh ardabili", "alternativeName": "uma", "country": "ir", "url": "http://uma.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4378 {"name": "repository of the agricultural research centre", "language": "en"} [] http://www.arc.sci.eg/pub_search.aspx?tabid=1&lang=en institutional [] 2022-01-12 15:36:03 2019-03-05 10:45:52 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "arc", "alternativeName": "egyptian agricultural research centre", "country": "eg", "url": "http://www.arc.sci.eg", "identifier": [{"identifier": "https://ror.org/05hcacp57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.arc.sci.eg/oai/oai.aspx yes +4296 {"name": "morphobank", "language": "en"} [] https://morphobank.org disciplinary [] 2022-01-12 15:36:01 2019-02-13 15:39:33 ["science"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "morphobank", "alternativeName": "", "country": "us", "url": "https://morphobank.org/index.php/about/index", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4304 {"name": "repositorio de la escuela de postgrado g\u011brens", "language": "es"} [] http://repositorio.gerens.edu.pe/ institutional [] 2022-01-12 15:36:02 2019-02-15 11:19:22 ["social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "escuela de postgrado g\u011brens", "alternativeName": "", "country": "pe", "url": "http://www.gerens.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.gerens.edu.pe/oai/request yes +4367 {"name": "repository of the sri lankan institute of information technology", "language": "en"} [{"acronym": "sliit"}] http://dspace.sliit.lk/ institutional [] 2022-01-12 15:36:02 2019-03-04 10:36:20 ["social sciences", "technology"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "sri lanka institute of information technology", "alternativeName": "sliit", "country": "lk", "url": "https://www.sliit.lk", "identifier": [{"identifier": "https://ror.org/00fhk4582", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4320 {"name": "ru econ\u00f3micas", "language": "es"} [] http://ru.iiec.unam.mx institutional [] 2022-01-12 15:36:02 2019-02-19 10:51:49 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "http://www.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ru.iiec.unam.mx/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} yes +4307 {"name": "college of business education - institutional repository", "language": "en"} [{"acronym": "cbe"}] http://www.dspace.cbe.ac.tz:8080/xmlui/ institutional [] 2022-01-12 15:36:02 2019-02-15 14:13:34 ["social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "college of business education", "alternativeName": "cbe", "country": "tz", "url": "https://www.cbe.ac.tz/index.php/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4329 {"name": "cracow university of economics repository", "language": "en"} [] https://r.uek.krakow.pl/ institutional [] 2022-01-12 15:36:02 2019-02-21 11:01:08 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "cracow university of economics", "alternativeName": "", "country": "pl", "url": "http://uek.krakow.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4286 {"name": "klri repository", "language": "en"} [] http://klri.re.kr:9090 institutional [] 2022-01-12 15:36:01 2019-02-13 10:04:18 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "korea legislation research institute", "alternativeName": "klri", "country": "kr", "url": "http://klri.re.kr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4283 {"name": "cyber open repository of the warsaw school of economics", "language": "en"} [{"name": "cyfrowe otwarte repozytorium sgh", "language": "pl"}] https://cor.sgh.waw.pl/ institutional [] 2022-01-12 15:36:01 2019-02-12 09:46:08 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "warsaw school of economics", "alternativeName": "", "country": "pl", "url": "http://www.sgh.waw.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://cor.sgh.waw.pl/oai/ yes +4356 {"name": "red investigadores de econom\u00eda", "language": "es"} [] http://repositorio.redinvestigadores.org institutional [] 2022-01-12 15:36:02 2019-02-28 09:39:39 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "network of economics researchers", "alternativeName": "", "country": "co", "url": "http://www.redinvestigadores.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4333 {"name": "repositorio institucional de publicaciones digitales del midis", "language": "es"} [{"name": "midis institutional repository", "language": "en"}] http://repositorio.midis.gob.pe/ governmental [] 2022-01-12 15:36:02 2019-02-22 09:52:58 ["social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ministerio de desarrollo e inclusi\u00f3n social", "alternativeName": "midis", "country": "pe", "url": "http://midis.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4375 {"name": "repository of the academy of law enforcement agencies under the prosecutor generals office of the republic of kazakhstan", "language": "en"} [] http://185.107.174.154:8080 institutional [] 2022-01-12 15:36:03 2019-03-05 09:52:19 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "republic of kazakhstan academy of law enforcement agencies", "alternativeName": "", "country": "kz", "url": "https://www.academy-gp.kz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://185.107.174.154:8080/oai/request yes +4298 {"name": "osgoode digital commons", "language": "en"} [] http://digitalcommons.osgoode.yorku.ca/ institutional [] 2022-01-12 15:36:01 2019-02-13 16:24:04 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "york university", "alternativeName": "", "country": "ca", "url": "http://www.yorku.ca/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4303 {"name": "perbanas institutional repository", "language": "en"} [] http://eprints.perbanas.ac.id/ institutional [] 2022-01-12 15:36:02 2019-02-14 12:45:50 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "stie perbanas surabaya", "alternativeName": "", "country": "id", "url": "https://www.perbanas.ac.id/id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.perbanas.ac.id/cgi/oai2 yes +4361 {"name": "lis scholarship archive", "language": "en"} [] https://osf.io/preprints/lissa disciplinary [] 2022-01-12 15:36:02 2019-03-01 11:31:01 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "the lis scholarship archive", "alternativeName": "", "country": "us", "url": "https://lissarchive.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4279 {"name": "institut teknologi nasional malang repository", "language": "id"} [] http://eprints.itn.ac.id/ institutional [] 2022-01-12 15:36:01 2019-02-11 13:39:58 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institut teknologi nasional malang", "alternativeName": "", "country": "id", "url": "http://itn.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.itn.ac.id/cgi/oai2 yes +4293 {"name": "qucosa - technische universit\u00e4t bergakademie freiberg", "language": "de"} [] http://tubaf.qucosa.de/ institutional [] 2022-01-12 15:36:01 2019-02-13 14:47:41 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "technische universit\u00e4t bergakademie freiberg", "alternativeName": "", "country": "de", "url": "https://tu-freiberg.de/", "identifier": [{"identifier": "https://ror.org/031vc2293", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4346 {"name": "hungarian electronic library: electronic periodicals archive & database", "language": "en"} [{"name": "elektronikus periodika arch\u00edvum \u00e9s adatb\u00e1zis", "language": "hu"}] http://epa.oszk.hu aggregating [] 2021-02-18 18:00:13 2019-02-25 11:00:02 [] ["journal_articles", "bibliographic_references"] [{"name": "national sz\u00e9ch\u00e9nyi library", "alternativeName": "", "country": "hu", "url": "http://www.oszk.hu", "identifier": [{"identifier": "https://ror.org/02ye9h922", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4417 {"name": "collections patrimoniales num\u00e9ris\u00e9es de la biblioth\u00e8que de lepfl", "language": "fr"} [{"acronym": "plume"}, {"name": "digital hertiage collections of the epfl library", "language": "en"}] https://plume.epfl.ch institutional [] 2022-01-12 15:36:04 2019-03-12 10:22:24 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "epfl", "alternativeName": "\u00e9cole polytechnique f\u00e9d\u00e9rale de lausanne", "country": "ch", "url": "https://library.epfl.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://plume.epfl.ch/oai yes +4404 {"name": "repozytorium instytucjonalne katolickiego uniwersytetu lubelskiego jana paw\u0142a ii", "language": "pl"} [{"acronym": "rekul"}, {"name": "repository of the john paul ii catholic university of lublin", "language": "en"}] https://repozytorium.kul.pl/ institutional [] 2022-01-12 15:36:03 2019-03-11 10:18:35 ["arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "john paul ii catholic university of lublin", "alternativeName": "", "country": "pl", "url": "http://www.kul.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4379 {"name": "micisan repositorio institucional", "language": "en"} [] http://ru.micisan.unam.mx institutional [] 2022-01-12 15:36:03 2019-03-05 11:17:41 ["arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico", "alternativeName": "unam", "country": "mx", "url": "https://www.unam.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://ru.micisan.unam.mx/page/politicas", "type": "metadata"}, {"policy_url": "http://ru.micisan.unam.mx/page/politicas", "type": "data"}, {"policy_url": "http://ru.micisan.unam.mx/page/terminos", "type": "data"}, {"policy_url": "http://ru.micisan.unam.mx/page/politicas#bsearch", "type": "content"}, {"policy_url": "http://ru.micisan.unam.mx/page/politicas#bsearch", "type": "submission"}, {"policy_url": "http://ru.micisan.unam.mx/page/politicas#bsearch", "type": "preservation"}] {"name": "dspace", "version": ""} http://ru.micisan.unam.mx/oai yes +4445 {"name": "biblioteca digital de la facultad de filosof\u00eda y letras de la universidad de buenos aires", "language": "es"} [{"name": "digitial repository of the faculty of philosophy & letters at the university of buenos aires", "language": "en"}] http://repositorio.filo.uba.ar institutional [] 2022-01-12 15:36:04 2019-03-15 15:48:51 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of buenos aires", "alternativeName": "", "country": "ar", "url": "http://www.uba.ar", "identifier": [{"identifier": "https://ror.org/0081fs513", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.filo.uba.ar/oai yes +4465 {"name": "repositorio digital institucional una", "language": "es"} [] http://repositorio.una.edu.ar institutional [] 2022-01-12 15:36:04 2019-03-19 11:21:59 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad nacional de las artes", "alternativeName": "una", "country": "ar", "url": "http://www.una.edu.ar", "identifier": [{"identifier": "https://ror.org/05dx64395", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.una.edu.ar/oai/request yes +4434 {"name": "repository of the belarusian state academy of music", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0438\u0442\u043e\u0440\u0438\u0439 \u0443\u0447\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \"\u0431\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u043a\u0430\u044f \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043c\u0443\u0437\u044b\u043a\u0438\"", "language": "ru"}] http://rep.bgam.edu.by/xmlui/ institutional [] 2022-01-12 15:36:04 2019-03-13 16:37:08 ["arts"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "belarusian state academy of music", "alternativeName": "", "country": "by", "url": "https://www.bgam.edu.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4403 {"name": "electronic archive of the ukrainian medical stomatological academy", "language": "en"} [{"acronym": "eaumsa"}] http://elib.umsa.edu.ua/ institutional [] 2022-01-12 15:36:03 2019-03-11 10:09:26 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ukrainian medical stomatological academy", "alternativeName": "umsa", "country": "ua", "url": "http://www.umsa.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.umsa.edu.ua/oai/request?verb=identify yes +4412 {"name": "repository of the west kazakhstan marat ospanov state medical unversity", "language": "en"} [] http://elib.zkgmu.kz/xmlui/ institutional [] 2022-01-12 15:36:03 2019-03-11 15:08:52 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "west kazakhstan marat ospanov state medical university", "alternativeName": "", "country": "kz", "url": "http://zkgmu.kz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4469 {"name": "austin health research online", "language": "en"} [] http://ahro.austin.org.au/austinjspui/ institutional [] 2022-01-12 15:36:04 2019-03-19 13:37:13 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "austin health", "alternativeName": "", "country": "au", "url": "http://www.austin.org.au/", "identifier": [{"identifier": "https://ror.org/05dbj6g52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4393 {"name": "dspace at ternopil state medical university", "language": "en"} [] http://repository.tdmu.edu.ua/ institutional [] 2022-01-12 15:36:03 2019-03-06 15:49:57 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "i. horbachevsky state medical university", "alternativeName": "", "country": "ua", "url": "https://www.tdmu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.tdmu.edu.ua/dspace-oai yes +4444 {"name": "libyan international medical university", "language": "en"} [] http://repository.limu.edu.ly/ institutional [] 2022-01-12 15:36:04 2019-03-15 15:40:29 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "libyan international medical university, benghazi", "alternativeName": "", "country": "ly", "url": "http://limu.edu.ly/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4477 {"name": "rd&e research repository", "language": "en"} [] https://rde.dspace-express.com/ institutional [] 2022-01-12 15:36:04 2019-03-20 13:22:34 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "royal devon & exeter nhs foundation trust", "alternativeName": "", "country": "gb", "url": "https://www.rdehospital.nhs.uk/", "identifier": [{"identifier": "https://ror.org/03085z545", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4392 {"name": "stikes insan cendekia medika repository", "language": ""} [] http://repo.stikesicme-jbg.ac.id/ institutional [] 2022-01-12 15:36:03 2019-03-06 15:37:00 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "stikes insan cendekia medika jombang", "alternativeName": "", "country": "id", "url": "https://stikesicme-jbg.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4442 {"name": "vinnytsia mykhailo kotsiubynskyi state pedagogical university", "language": "en"} [{"acronym": "irvspu"}, {"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0432\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0433\u043e \u043f\u0435\u0434\u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443", "language": "uk"}] http://library.vspu.net/ disciplinary [] 2022-01-12 15:36:04 2019-03-15 14:37:22 ["humanities", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "vinnytsia mykhailo kotsiubynskyi state pedagogical university", "alternativeName": "", "country": "ua", "url": "http://vspu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4400 {"name": "repositorium des wissensportals lsbti\u00b2", "language": "de"} [] https://opus.bsz-bw.de/fhdo08/home institutional [] 2022-01-12 15:36:03 2019-03-08 10:26:01 ["humanities", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fachhochschule dortmund", "alternativeName": "", "country": "de", "url": "https://www.fh-dortmund.de", "identifier": [{"identifier": "https://ror.org/03dv91853", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bsz-bw.de/fhdo08/oai yes +4447 {"name": "digital repository of the national university of water and environmental engineering", "language": "en"} [] http://ep3.nuwm.edu.ua/ institutional [] 2022-01-12 15:36:04 2019-03-15 16:15:03 ["science", "engineering"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "\u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0432\u043e\u0434\u043d\u043e\u0433\u043e \u0433\u043e\u0441\u043f\u043e\u0434\u0430\u0440\u0441\u0442\u0432\u0430 \u0442\u0430 \u043f\u0440\u0438\u0440\u043e\u0434\u043e\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u043d\u043d\u044f, \u0440\u0456\u0432\u043d\u0435", "alternativeName": "", "country": "ua", "url": "http://nuwm.edu.ua/", "identifier": [{"identifier": "https://ror.org/00ppfcz28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4472 {"name": "nighthawks open institutional repository", "language": "en"} [] http://digitalcommons.northgeorgia.edu/ institutional [] 2022-01-12 15:36:04 2019-03-19 16:16:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of north georgia", "alternativeName": "", "country": "us", "url": "http://ung.edu", "identifier": [{"identifier": "https://ror.org/001pe5g24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://digitalcommons.northgeorgia.edu/policies.html", "type": "submission"}] {"name": "digital_commons", "version": ""} yes +4402 {"name": "international research center for japanese studies repository", "language": "en"} [{"name": "\u56fd\u969b\u65e5\u672c\u6587\u5316\u7814\u7a76\u30bb\u30f3\u30bf\u30fc\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nichibun.repo.nii.ac.jp/?lang=english institutional [] 2022-01-12 15:36:03 2019-03-11 09:51:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "international research center for japanese studies", "alternativeName": "ircjs", "country": "jp", "url": "http://www.nichibun.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://id.nii.ac.jp/1368/00007000", "type": "content"}] {"name": "weko", "version": ""} http://nichibun.repo.nii.ac.jp/oai yes +4474 {"name": "w&m scholarworks", "language": "en"} [] https://scholarworks.wm.edu/ institutional [] 2022-01-12 15:36:04 2019-03-20 10:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "college of william and mary, williamsburg, va", "alternativeName": "", "country": "us", "url": "https://www.wm.edu/", "identifier": [{"identifier": "https://ror.org/03hsf0573", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://publish.wm.edu/about.html", "type": "metadata"}, {"policy_url": "http://publish.wm.edu/about.html", "type": "data"}, {"policy_url": "http://publish.wm.edu/about.html", "type": "content"}, {"policy_url": "http://publish.wm.edu/about.html", "type": "submission"}, {"policy_url": "http://publish.wm.edu/about.html", "type": "preservation"}] {"name": "digital_commons", "version": ""} yes +4384 {"name": "centr\u00e1lny register z\u00e1vere\u010dn\u00fdch pr\u00e1c", "language": "sk"} [{"acronym": "crzp"}, {"name": "central repository of final theses and dissertations", "language": "en"}] https://opac.crzp.sk institutional [] 2022-01-12 15:36:03 2019-03-05 16:20:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "centrum vedecko-technick\u00fdch inform\u00e1ci\u00ed sr", "alternativeName": "cvti sr", "country": "sk", "url": "http://www.cvtisr.sk", "identifier": [{"identifier": "https://ror.org/054ys1f07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4464 {"name": "arch", "language": "en"} [] https://arch.library.northwestern.edu/ institutional [] 2022-01-12 15:36:04 2019-03-19 11:13:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "northwestern university", "alternativeName": "", "country": "us", "url": "https://www.northwestern.edu/", "identifier": [{"identifier": "https://ror.org/000e0be47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4407 {"name": "red de repositorios latinoamericanos", "language": "es"} [] http://repositorioslatinoamericanos.uchile.cl/ aggregating [] 2022-01-12 15:36:03 2019-03-11 11:46:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de chile", "alternativeName": "", "country": "cl", "url": "http://www.uchile.cl", "identifier": [{"identifier": "https://ror.org/047gc3g35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4425 {"name": "repositori stkip pgri sumenep", "language": "id"} [] http://repository.stkippgrisumenep.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-12 13:41:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "stkip pgri sumenep", "alternativeName": "sekolah tinggi keguruan & ilmu pendidkan: persatuan guru republik indonesia sumenep", "country": "id", "url": "http://stkippgrisumenep.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4394 {"name": "muni university institutional repository", "language": "en"} [{"acronym": "muni-ir"}] http://dir.muni.ac.ug/ institutional [] 2022-01-12 15:36:03 2019-03-06 16:33:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "muni university, arua", "alternativeName": "", "country": "ug", "url": "https://muni.ac.ug/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4424 {"name": "reposit\u00f3rio institucional da universidade federal rural da amaz\u00f4nia", "language": "pt"} [{"acronym": "reposit\u00f3rio institucional da ufra"}] http://repositorio.ufra.edu.br/jspui institutional [] 2022-01-12 15:36:04 2019-03-12 13:21:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ufra", "alternativeName": "amazon rural federal university", "country": "br", "url": "https://novo.ufra.edu.br", "identifier": [{"identifier": "https://ror.org/02j71c790", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ufra.edu.br/oai/request yes +4451 {"name": "repositorio institucional digital de la universidad de panam\u00e1", "language": "es"} [{"acronym": "up-rid"}, {"name": "institutional repository of the university of panama", "language": "en"}] http://up-rid.up.ac.pa/ institutional [] 2022-01-12 15:36:04 2019-03-18 10:14:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad de panam\u00e1", "alternativeName": "", "country": "pa", "url": "https://upanama.up.ac.pa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.up.ac.pa/cgi/oai2 yes +4467 {"name": "institutional repository \u2013 suphes", "language": "en"} [] http://109.185.200.51/ institutional [] 2022-01-12 15:36:04 2019-03-19 11:52:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "state university of physical education and sport", "alternativeName": "", "country": "md", "url": "http://www.usefs.md/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4439 {"name": "scientific & educational publications repository of ncfu", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043d\u0430\u0443\u0447\u043d\u044b\u0445 \u0438 \u0443\u0447\u0435\u0431\u043d\u043e-\u043c\u0435\u0442\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0439", "language": "ru"}] https://dspace.ncfu.ru institutional [] 2022-01-12 15:36:04 2019-03-14 14:41:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "north-caucasus federal university", "alternativeName": "ncfu", "country": "ru", "url": "http://www.ncfu.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4398 {"name": "jooust repository", "language": "en"} [] http://ir.jooust.ac.ke institutional [] 2022-01-12 15:36:03 2019-03-07 14:37:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "jaramogi oginga odinga university of science and technology, bondo", "alternativeName": "jooust", "country": "ke", "url": "http://www.jooust.ac.ke", "identifier": [{"identifier": "https://ror.org/03ffvb852", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4441 {"name": "learning resource centre: digital repository of chitkara university", "language": "en"} [] http://dspace.chitkara.edu.in/jspui/ institutional [] 2022-01-12 15:36:04 2019-03-15 13:46:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "chitkara university punjab", "alternativeName": "", "country": "in", "url": "https://www.chitkara.edu.in/", "identifier": [{"identifier": "https://ror.org/057d6z539", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.chitkara.edu.in/jspui/components/contact-info.jsp yes +4416 {"name": "reposit\u00f3rio da mem\u00f3ria regional", "language": "pt"} [] https://memoria.ipb.pt/ institutional [] 2022-01-12 15:36:04 2019-03-12 10:12:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "instituto polit\u00e9cnico de bragan\u00e7a", "alternativeName": "", "country": "pt", "url": "http://www.ipb.pt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://memoria.ipb.pt/oai yes +4479 {"name": "br\u00fajula - repositorio institucional", "language": "es"} [] https://repositorio.uloyola.es/ institutional [] 2022-01-12 15:36:04 2019-03-20 15:28:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad loyola andaluc\u00eda", "alternativeName": "", "country": "es", "url": "https://www.uloyola.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uloyola.es/oai/request yes +4457 {"name": "repositorio institucional digital uncp", "language": "es"} [] http://repositorio.uncp.edu.pe/ institutional [] 2022-01-12 15:36:04 2019-03-18 15:13:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional del centro del per\u00fa", "alternativeName": "uncp", "country": "pe", "url": "http://www.uncp.edu.pe/", "identifier": [{"identifier": "https://ror.org/008d6q968", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4406 {"name": "biblioteca digital - universidad externado de colombia", "language": "es"} [] https://bdigital.uexternado.edu.co/ institutional [] 2022-01-12 15:36:03 2019-03-11 10:42:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad externado de colombia, bogot\u00e1", "alternativeName": "", "country": "co", "url": "https://www.uexternado.edu.co/", "identifier": [{"identifier": "https://ror.org/02xtwpk10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4409 {"name": "electronic institutional repository of mariupol state university", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u043c\u0430\u0440\u0456\u0443\u043f\u043e\u043b\u044c\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443", "language": "uk"}] http://repository.mdu.in.ua/jspui/ institutional [] 2022-01-12 15:36:03 2019-03-11 12:08:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "mariupol state university", "alternativeName": "", "country": "ua", "url": "http://mdu.in.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4453 {"name": "federal university dutsin-ma institutional repository", "language": "en"} [] http://dspace.fudutsinma.edu.ng/jspui/ institutional [] 2022-01-12 15:36:04 2019-03-18 11:24:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "federal university dutsin-ma", "alternativeName": "", "country": "ng", "url": "http://www.fudutsinma.edu.ng", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4388 {"name": "iie space", "language": ""} [] http://iiespace.iie.ac.za/ institutional [] 2022-01-12 15:36:03 2019-03-06 14:14:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "the independent institute of education", "alternativeName": "", "country": "za", "url": "https://www.iie.ac.za/", "identifier": [{"identifier": "https://ror.org/038cnrz59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4387 {"name": "institutional repository of the academy of public administration", "language": "en"} [] http://dspace.aap.gov.md governmental [] 2022-01-12 15:36:03 2019-03-06 10:47:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "academy of public administration, moldova", "alternativeName": "", "country": "md", "url": "http://aap.gov.md", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4471 {"name": "montana state university scholarworks", "language": "en"} [] http://scholarworks.montana.edu institutional [] 2022-01-12 15:36:04 2019-03-19 16:05:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "montana state university", "alternativeName": "msu", "country": "us", "url": "http://montana.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4475 {"name": "new jersey state library digital collections", "language": "en"} [] https://dspace.njstatelib.org/xmlui/ governmental [] 2022-01-12 15:36:04 2019-03-20 11:57:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "new jersey state library", "alternativeName": "", "country": "us", "url": "http://www.njstatelib.org/", "identifier": [{"identifier": "https://ror.org/025yf4572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4423 {"name": "repositori universitas muhammadiyah sumatera utara", "language": "id"} [] http://repositori.umsu.ac.id institutional [] 2022-01-12 15:36:04 2019-03-12 11:53:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas muhammadiyah sumatera utara", "alternativeName": "", "country": "id", "url": "http://www.umsu.ac.id/", "identifier": [{"identifier": "https://ror.org/03ve0eh58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.umsu.ac.id/oai/request yes +4438 {"name": "repositorio ipicyt", "language": "es"} [] https://repositorio.ipicyt.edu.mx/ institutional [] 2022-01-12 15:36:04 2019-03-14 11:15:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents"] [{"name": "instituto potosino de investigaci\u00f3n cient\u00edfica y tecnol\u00f3gica a.c.", "alternativeName": "", "country": "mx", "url": "http://www.ipicyt.edu.mx/", "identifier": [{"identifier": "https://ror.org/03sbzv212", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipicyt.edu.mx/oai/request?verb=identify yes +4422 {"name": "repositorio institucional - universidad nacional daniel alomia robles", "language": "es"} [] http://repositorio.undar.edu.pe/ institutional [] 2022-01-12 15:36:04 2019-03-12 11:36:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional daniel alomia robles, hu\u00e1nuco", "alternativeName": "undar", "country": "pe", "url": "http://www.undar.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4437 {"name": "repositorio institucional sineace", "language": "es"} [{"name": "sineace institutional repository", "language": "en"}] http://repositorio.sineace.gob.pe/ institutional [] 2022-01-12 15:36:04 2019-03-14 10:13:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "sineace", "alternativeName": "sistema nacional de evaluaci\u00f3n, acreditaci\u00f3n y certificaci\u00f3n de la calidad educativa", "country": "pe", "url": "https://www.sineace.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.sineace.gob.pe/oai/request?verb=identify yes +4420 {"name": "repositorio institucional unilibre", "language": "es"} [] https://repository.unilibre.edu.co/ institutional [] 2022-01-12 15:36:04 2019-03-12 11:18:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad libre, bogot\u00e1", "alternativeName": "", "country": "co", "url": "http://www.unilibre.edu.co/", "identifier": [{"identifier": "https://ror.org/04mtaqb21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unilibre.edu.co/ulibre/oai/request yes +4419 {"name": "umaza digital", "language": "es"} [] http://repositorio.umaza.edu.ar/ institutional [] 2022-01-12 15:36:04 2019-03-12 11:02:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad juan agust\u00edn maza, mendoza", "alternativeName": "", "country": "ar", "url": "http://www.umaza.edu.ar", "identifier": [{"identifier": "https://ror.org/03w1cw951", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.umaza.edu.ar/oai/request yes +4395 {"name": "hku scholars hub", "language": "en"} [] https://hub.hku.hk/ institutional [] 2022-01-12 15:36:03 2019-03-06 16:41:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of hong kong", "alternativeName": "", "country": "hk", "url": "https://hku.hk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://hub.hku.hk/oai yes +4473 {"name": "kibabii university institutional repository", "language": "en"} [] https://erepository.kibu.ac.ke institutional [] 2022-01-12 15:36:04 2019-03-19 16:54:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kibabii university", "alternativeName": "", "country": "ke", "url": "https://kibu.ac.ke", "identifier": [{"identifier": "https://ror.org/0111z3553", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4430 {"name": "mohamed boudiaf university of msila repository", "language": "en"} [] http://dspace.univ-msila.dz:8080/xmlui/ institutional [] 2022-01-12 15:36:04 2019-03-12 15:58:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universit\u00e9 mohamed boudiaf de msila", "alternativeName": "", "country": "dz", "url": "https://www.univ-msila.dz/fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4382 {"name": "university of ibadan repository", "language": "en"} [] http://ir.library.ui.edu.ng/ institutional [] 2022-01-12 15:36:03 2019-03-05 14:15:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of ibadan", "alternativeName": "", "country": "ng", "url": "http://ui.edu.ng", "identifier": [{"identifier": "https://ror.org/03wx2rr30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4448 {"name": "bhogawati mahavidyalaya institutional repository", "language": "en"} [] http://61.1.85.128:8080/xmlui institutional [] 2022-01-12 15:36:04 2019-03-15 16:31:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "bhogawati mahavidyalaya, kurukali", "alternativeName": "", "country": "in", "url": "http://www.bhogawaticollege.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4470 {"name": "igu institutional open access repository", "language": "en"} [] http://acikerisim.gelisim.edu.tr/ institutional [] 2022-01-12 15:36:04 2019-03-19 13:58:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "istanbul gelisim university", "alternativeName": "", "country": "tr", "url": "http://www.gelisim.edu.tr", "identifier": [{"identifier": "https://ror.org/0188hvh39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.gelisim.edu.tr/oai yes +4397 {"name": "repositorio digital universidad del magdalena", "language": "es"} [] http://repositorio.unimagdalena.edu.co/jspui/ institutional [] 2022-01-12 15:36:03 2019-03-07 13:33:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad del magdalena", "alternativeName": "", "country": "co", "url": "https://www.unimagdalena.edu.co/", "identifier": [{"identifier": "https://ror.org/038mvjn28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unimagdalena.edu.co/oai/request?verb=identify yes +4440 {"name": "reposit\u00f3rio institucional unicat\u00f3lica", "language": "pt"} [] http://repositorio.fcrs.edu.br institutional [] 2022-01-12 15:36:04 2019-03-14 15:07:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro universit\u00e1rio cat\u00f3lica de quixad\u00e1", "alternativeName": "", "country": "br", "url": "http://unicatolicaquixada.edu.br", "identifier": [{"identifier": "https://ror.org/053kjm920", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4476 {"name": "academic commons - stony brook university", "language": "en"} [] http://commons.library.stonybrook.edu/ institutional [] 2022-01-12 15:36:04 2019-03-20 12:03:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "stony brook university", "alternativeName": "", "country": "us", "url": "http://www.stonybrook.edu/", "identifier": [{"identifier": "https://ror.org/05qghxh33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://commons.library.stonybrook.edu/do/oai/ yes +4454 {"name": "dickinson scholar", "language": "en"} [] https://scholar.dickinson.edu/ institutional [] 2022-01-12 15:36:04 2019-03-18 11:37:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "dickinson college", "alternativeName": "", "country": "us", "url": "http://www.dickinson.edu", "identifier": [{"identifier": "https://ror.org/02ydh7m84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4481 {"name": "scholar commons - institutional repository of the university of south carolina", "language": ""} [] http://scholarcommons.sc.edu/ institutional [] 2022-01-12 15:36:04 2019-03-21 10:12:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of south carolina", "alternativeName": "", "country": "us", "url": "https://sc.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarcommons.sc.edu/do/oai/?verb=identify yes +4411 {"name": "una scholarly repository", "language": "en"} [] https://ir.una.edu/ institutional [] 2022-01-12 15:36:03 2019-03-11 14:21:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "university of north alabama, florence", "alternativeName": "", "country": "us", "url": "https://www.una.edu", "identifier": [{"identifier": "https://ror.org/0584fj407", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://ir.una.edu/do/oai/ yes +4410 {"name": "ur scholarship", "language": "en"} [] https://scholarship.richmond.edu/ institutional [] 2022-01-12 15:36:03 2019-03-11 14:15:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of richmond", "alternativeName": "", "country": "us", "url": "https://www.richmond.edu/", "identifier": [{"identifier": "https://ror.org/03y71xh61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4449 {"name": "neiu digital commons", "language": "en"} [] https://neiudc.neiu.edu/ institutional [] 2022-01-12 15:36:04 2019-03-15 16:41:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "northeastern illinois university", "alternativeName": "neiu", "country": "us", "url": "https://www.neiu.edu", "identifier": [{"identifier": "https://ror.org/04edns687", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4450 {"name": "carroll scholars", "language": "en"} [] https://scholars.carroll.edu/ institutional [] 2022-01-12 15:36:04 2019-03-18 09:45:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "carroll college", "alternativeName": "", "country": "us", "url": "https://www.carroll.edu/", "identifier": [{"identifier": "https://ror.org/00x5b2p37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://scholars.carroll.edu/about.html", "type": "data"}, {"policy_url": "https://scholars.carroll.edu/about.html", "type": "content"}, {"policy_url": "https://scholars.carroll.edu/about.html", "type": "submission"}] {"name": "digital_commons", "version": ""} http://scholars.carroll.edu/do/oai yes +4462 {"name": "online repository of bina darma university", "language": "en"} [] http://eprints.binadarma.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-19 10:22:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universitas bina darma, palembang", "alternativeName": "", "country": "id", "url": "http://www.binadarma.ac.id", "identifier": [{"identifier": "https://ror.org/02579k123", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4386 {"name": "repositori universitas islam negeri alauddin makassar", "language": "id"} [] https://repositori.uin-alauddin.ac.id/ institutional [] 2022-01-12 15:36:03 2019-03-05 16:36:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "alauddin state islamic university makassar", "alternativeName": "", "country": "id", "url": "http://uin-alauddin.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4389 {"name": "repositori universitas kristen indonesia", "language": "id"} [] http://repository.uki.ac.id/ institutional [] 2022-01-12 15:36:03 2019-03-06 14:45:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universitas kristen indonesia, jakarta", "alternativeName": "", "country": "id", "url": "http://www.uki.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4459 {"name": "umg institutional repository", "language": "en"} [] http://eprints.umg.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-18 16:46:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas muhammadiyah gresik", "alternativeName": "", "country": "id", "url": "http://umg.ac.id", "identifier": [{"identifier": "https://ror.org/00f8d9297", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4418 {"name": "university of bangka belitung repository", "language": "en"} [] http://ubb.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-12 10:34:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of bangka belitung, pangkalpinang", "alternativeName": "", "country": "id", "url": "http://ubb.ac.id/", "identifier": [{"identifier": "https://ror.org/05gtb4824", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ubb.ac.id/cgi/oai2 yes +4443 {"name": "iain jember institutional repository", "language": "en"} [] http://digilib.iain-jember.ac.id institutional [] 2022-01-12 15:36:04 2019-03-15 14:42:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "institut agama islam negeri, jember", "alternativeName": "iain", "country": "id", "url": "http://www.iain-jember.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.iain-jember.ac.id/cgi/oai2 yes +4426 {"name": "repositori universitas alma ata yogyakarta", "language": "id"} [] http://elibrary.almaata.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-12 14:24:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of alma ata yogyakarta", "alternativeName": "", "country": "id", "url": "https://almaata.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://elibrary.almaata.ac.id/cgi/oai2 yes +4452 {"name": "digital repository of warmadewa university", "language": "en"} [] http://repository.warmadewa.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-18 10:22:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "warmadewa university", "alternativeName": "", "country": "id", "url": "https://www.warmadewa.ac.id/", "identifier": [{"identifier": "https://ror.org/02eehp307", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.warmadewa.ac.id/cgi/oai2 yes +4461 {"name": "eprints umpo", "language": "en"} [] http://eprints.umpo.ac.id institutional [] 2022-01-12 15:36:04 2019-03-19 10:11:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universitas muhammadiyah ponorogo", "alternativeName": "umpo", "country": "id", "url": "http://umpo.ac.id", "identifier": [{"identifier": "https://ror.org/03d9vfb50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.umpo.ac.id/cgi/oai2 yes +4463 {"name": "repositori stkip pgri sidoarjo", "language": "id"} [] http://repository.stkippgri-sidoarjo.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-19 11:01:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "stkip pgri sidoarjo", "alternativeName": "sekolah tinggi keguruan & ilmu pendidkan: persatuan guru republik indonesia sidoarjo", "country": "id", "url": "http://www.stkippgri-sidoarjo.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4390 {"name": "repository universitas muhammadiyah jember", "language": "id"} [] http://repository.unmuhjember.ac.id/ institutional [] 2022-01-12 15:36:03 2019-03-06 14:50:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas muhammadiyah jember", "alternativeName": "", "country": "id", "url": "http://unmuhjember.ac.id/", "identifier": [{"identifier": "https://ror.org/021p32893", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4468 {"name": "repository stikes patria husada blitar", "language": "id"} [] http://repository.phb.ac.id/ institutional [] 2022-01-12 15:36:04 2019-03-19 13:20:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "stikes patria husada blitar", "alternativeName": "", "country": "id", "url": "http://www.phb.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.phb.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.phb.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.phb.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.phb.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.phb.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.phb.ac.id/cgi/oai2 yes +4456 {"name": "community archive @ lbcc", "language": "en"} [] http://libarchive.linnbenton.edu/ institutional [] 2022-01-12 15:36:04 2019-03-18 13:43:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "linn-benton community college", "alternativeName": "", "country": "us", "url": "https://www.linnbenton.edu", "identifier": [{"identifier": "https://ror.org/01zzhbb93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +4480 {"name": "hal - imt atlantique", "language": "fr"} [] https://hal-imt-atlantique.archives-ouvertes.fr/ institutional [] 2022-01-12 15:36:04 2019-03-20 15:36:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "imt atlantique bretagne pays de la loire", "alternativeName": "", "country": "fr", "url": "https://www.imt-atlantique.fr", "identifier": [{"identifier": "https://ror.org/030hj3061", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4421 {"name": "meidoks - der dokumentenserver der hsf mei\u00dfen", "language": "de"} [{"name": "hsf meissen repository", "language": "en"}] https://opus.bsz-bw.de/hsf institutional [] 2022-01-12 15:36:04 2019-03-12 11:26:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hochschule mei\u00dfen und fortbildungszentrum", "alternativeName": "", "country": "de", "url": "https://www.hsf.sachsen.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bsz-bw.de/hsf/oai yes +4399 {"name": "publikationsserver der fachhochschule potsdam", "language": "de"} [{"name": "repository of the university of applied sciences potsdam", "language": "en"}] https://opus4.kobv.de/opus4-fhpotsdam/home institutional [] 2022-01-12 15:36:03 2019-03-08 10:13:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fachhochschule potsdam", "alternativeName": "", "country": "de", "url": "https://www.fh-potsdam.de/", "identifier": [{"identifier": "https://ror.org/012m9bp23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-fhpotsdam/oai yes +4415 {"name": "repositorio de tesis", "language": "es"} [{"name": "infomed thesis repository", "language": "en"}] http://www.repotesis.art.sld.cu/ institutional [] 2022-01-12 15:36:03 2019-03-11 17:06:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "infomed, artemisa", "alternativeName": "", "country": "cu", "url": "http://www.sld.cu", "identifier": [{"identifier": "https://ror.org/02zttza43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4414 {"name": "repositorio de publicaciones cient\u00edficas", "language": "es"} [] http://www.repoarticulos.art.sld.cu/ institutional [] 2022-01-12 15:36:03 2019-03-11 17:00:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "infomed", "alternativeName": "", "country": "cu", "url": "http://www.sld.cu", "identifier": [{"identifier": "https://ror.org/02zttza43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4408 {"name": "ibict dataverse", "language": ""} [] https://repositoriopesquisas.ibict.br/ institutional [] 2022-01-12 15:36:03 2019-03-11 12:03:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "ibict", "alternativeName": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "country": "br", "url": "http://www.ibict.br", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4432 {"name": "miyagi gakuin women\u2019s university repository", "language": "en"} [{"name": "\u5bae\u57ce\u5b66\u9662\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mgu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:04 2019-03-13 13:43:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "miyagi gakuin women\u2019s university", "alternativeName": "", "country": "jp", "url": "https://www.mgu.ac.jp/", "identifier": [{"identifier": "https://ror.org/036feze91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mgu.repo.nii.ac.jp/oai yes +4429 {"name": "indrastra global open repository", "language": "en"} [{"acronym": "igor"}] https://zenodo.org/communities/igor/ institutional [] 2022-01-12 15:36:04 2019-03-12 15:29:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "indrastra global", "alternativeName": "", "country": "us", "url": "https://www.indrastra.com", "identifier": [{"identifier": "https://ror.org/01jvhre18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://zenodo.org/oai2d?verb=listrecords&set=user-igor&metadataprefix=oai_dc yes +4413 {"name": "archive ouverte universitaire tunisien", "language": "fr"} [] http://www.pist.tn/ governmental [] 2022-01-12 15:36:03 2019-03-11 16:54:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "cnudst", "alternativeName": "centre national universitaire de documentation scientifique et technique", "country": "tn", "url": "http://www.cnudst.rnrt.tn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +4478 {"name": "state library of oregon digital collections", "language": "en"} [] http://digital.osl.state.or.us governmental [] 2022-01-12 15:36:04 2019-03-20 14:28:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "state library of oregon", "alternativeName": "", "country": "us", "url": "https://www.oregon.gov/library/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://digital.osl.state.or.us/oai2 yes +4380 {"name": "krishi publications and data repository", "language": "en"} [] https://krishi.icar.gov.in/jspui aggregating [] 2022-01-12 15:36:03 2019-03-05 13:56:27 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets"] [{"name": "indian council of agricultural research", "alternativeName": "icar", "country": "in", "url": "http://www.icar.org.in/", "identifier": [{"identifier": "https://ror.org/04fw54a43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://icar.org.in/node/5542", "type": "metadata"}, {"policy_url": "https://icar.org.in/node/5542", "type": "content"}, {"policy_url": "https://icar.org.in/node/5542", "type": "submission"}] {"name": "dspace", "version": ""} https://krishi.icar.gov.in/oai/request yes +4401 {"name": "open repository for federal organisations", "language": "en"} [{"acronym": "orfeo"}] https://orfeo.kbr.be governmental [] 2022-01-12 15:36:03 2019-03-08 11:31:35 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "belgian science policy office", "alternativeName": "belspo", "country": "be", "url": "https://www.belspo.be/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4428 {"name": "assaf research repository", "language": "en"} [] http://research.assaf.org.za/ institutional [] 2022-01-12 15:36:04 2019-03-12 15:21:55 ["science"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "academy of science of south africa", "alternativeName": "assaf", "country": "za", "url": "https://www.assaf.org.za/", "identifier": [{"identifier": "https://ror.org/02qsf1r97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4381 {"name": "agrisearch repository", "language": "en"} [] http://agricrepo.gov.ls/ governmental [] 2022-01-12 15:36:03 2019-03-05 14:03:55 ["science"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "department of agricultural research, lesotho", "alternativeName": "", "country": "ls", "url": "http://www.agricresearch.gov.ls/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4431 {"name": "repository of the chittagong veterinary and animal sciences university", "language": "en"} [] http://101.2.160.165:8080 institutional [] 2022-01-12 15:36:04 2019-03-12 16:23:23 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "chittagong veterinary and animal sciences university", "alternativeName": "", "country": "bd", "url": "http://cvasu.ac.bd/", "identifier": [{"identifier": "https://ror.org/045v4z873", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4427 {"name": "differ: publications", "language": "en"} [] https://www.differ.nl/publications/biblio institutional [] 2022-01-12 15:36:04 2019-03-12 14:53:11 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "differ", "alternativeName": "dutch institute for fundamental energy research", "country": "nl", "url": "https://www.differ.nl/", "identifier": [{"identifier": "https://ror.org/03w5dn804", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} https://www.differ.nl/oai yes +4385 {"name": "eartharxiv", "language": "en"} [] https://eartharxiv.org disciplinary [] 2022-01-12 15:36:03 2019-03-05 16:33:37 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "eartharxiv", "alternativeName": "", "country": "gb", "url": "https://eartharxiv.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4460 {"name": "usda national agricultural library", "language": "en"} [{"acronym": "pubag"}] https://pubag.nal.usda.gov/catalog/ governmental [] 2022-01-12 15:36:04 2019-03-19 09:56:53 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets"] [{"name": "united states department of agriculture", "alternativeName": "usda", "country": "us", "url": "http://www.usda.gov", "identifier": [{"identifier": "https://ror.org/01na82s61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4433 {"name": "water jpi open data & open access repository", "language": "en"} [] http://opendata.waterjpi.eu/ disciplinary [] 2022-01-12 15:36:04 2019-03-13 14:31:54 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "water jpi", "alternativeName": "joint programming initiative on \"water challenges for a changing world\"", "country": "it", "url": "http://www.waterjpi.eu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opendata.waterjpi.eu/oai yes +4436 {"name": "naro-ir", "language": "en"} [{"name": "\u8fb2\u7814\u6a5f\u69cb\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repository.naro.go.jp/ institutional [] 2022-01-12 15:36:04 2019-03-14 09:51:54 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "national agriculture and food research organization", "alternativeName": "", "country": "jp", "url": "http://www.naro.affrc.go.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repository.naro.go.jp/oai yes +4446 {"name": "repositorium phzh", "language": "de"} [] https://zenodo.org/communities/repositorium-phzh/ institutional [] 2022-01-12 15:36:04 2019-03-15 15:58:45 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "phzh", "alternativeName": "p\u00e4dagogische hochschule z\u00fcrich", "country": "ch", "url": "https://phzh.ch/de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +4466 {"name": "repository of the central bank of nigeria", "language": "en"} [] http://library.cbn.gov.ng:8092/jspui/ institutional [] 2022-01-12 15:36:04 2019-03-19 11:32:40 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "central bank of nigeria", "alternativeName": "", "country": "ng", "url": "https://www.cbn.gov.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4396 {"name": "repositorio institucional reims", "language": "es"} [] http://repositorio.lasalle.mx/ institutional [] 2022-01-12 15:36:03 2019-03-07 09:13:01 ["social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad la salle", "alternativeName": "", "country": "mx", "url": "http://www.lasalle.mx/", "identifier": [{"identifier": "https://ror.org/05c99rg80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.lasalle.mx/oai yes +4383 {"name": "upjohn research", "language": "en"} [] https://research.upjohn.org/ institutional [] 2022-01-12 15:36:03 2019-03-05 15:55:05 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "w.e. upjohn institute for employment research", "alternativeName": "", "country": "us", "url": "https://upjohn.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://research.upjohn.org/do/oai/ yes +4435 {"name": "ebiltegia", "language": ""} [] http://ebiltegia.mondragon.edu institutional [] 2022-01-12 15:36:04 2019-03-14 09:06:59 ["technology", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "mondragon unibertsitatea", "alternativeName": "", "country": "es", "url": "https://www.mondragon.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ebiltegia.mondragon.edu/oai/driver yes +4455 {"name": "kabu repository", "language": "en"} [] http://ir.kabarak.ac.ke institutional [] 2021-05-21 18:04:44 2019-03-18 13:36:53 [] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "kabarak university", "alternativeName": "", "country": "ke", "url": "http://kabarak.ac.ke", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.kabarak.ac.ke/oai yes +4596 {"name": "hal sorbonne universit\u00e9", "language": ""} [] https://hal.sorbonne-universite.fr/ institutional [] 2022-01-12 15:36:06 2019-06-06 14:37:01 ["arts", "humanities", "health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "sorbonne universit\u00e9", "alternativeName": "", "country": "fr", "url": "https://www.sorbonne-universite.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4606 {"name": "euspace", "language": "en"} [] http://repository.elizadeuniversity.edu.ng institutional [] 2022-01-12 15:36:06 2019-06-19 08:32:28 ["arts", "humanities", "science", "social sciences", "technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "elizade university", "alternativeName": "", "country": "ng", "url": "https://www.elizadeuniversity.edu.ng", "identifier": [{"identifier": "https://ror.org/02qjtnr91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.elizadeuniversity.edu.ng/oai/request yes +4494 {"name": "akita university of art repository", "language": "en"} [{"name": "\u79cb\u7530\u516c\u7acb\u7f8e\u8853\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://akibi.repo.nii.ac.jp institutional [] 2022-01-12 15:36:05 2019-03-26 10:21:36 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "akita university of art", "alternativeName": "", "country": "jp", "url": "http://www.akibi.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://akibi.repo.nii.ac.jp/oai yes +4573 {"name": "central research and creativity online", "language": "en"} [] http://crco.cssd.ac.uk institutional [] 2022-01-12 15:36:06 2019-05-22 09:16:48 ["arts", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "royal central school of speech and drama", "alternativeName": "", "country": "gb", "url": "https://www.cssd.ac.uk/", "identifier": [{"identifier": "https://ror.org/05wtfef22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://crco.cssd.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "http://crco.cssd.ac.uk/policies.html", "type": "data"}, {"policy_url": "http://crco.cssd.ac.uk/policies.html", "type": "content"}, {"policy_url": "http://crco.cssd.ac.uk/policies.html", "type": "submission"}, {"policy_url": "http://crco.cssd.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://crco.cssd.ac.uk/cgi/oai2 yes +4518 {"name": "soar@usa: scholarship and open access repository", "language": "en"} [] https://soar.usa.edu institutional [] 2022-01-12 15:36:05 2019-03-29 09:50:45 ["health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of st. augustine for health sciences", "alternativeName": "usa", "country": "us", "url": "https://www.usa.edu", "identifier": [{"identifier": "https://ror.org/02b108x81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://soar.usa.edu/do/oai yes +4493 {"name": "idun", "language": "en"} [] http://idun.augsburg.edu institutional [] 2022-01-12 15:36:05 2019-03-26 10:08:00 ["health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "augsburg university, minneapolis", "alternativeName": "", "country": "us", "url": "http://www.augsburg.edu", "identifier": [{"identifier": "https://ror.org/057ewhh68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://idun.augsburg.edu/do/oai/ yes +4487 {"name": "institutional repository of the shupyk national medical academy of postgraduate education", "language": "en"} [] http://ir.nmapo.edu.ua:8080/jspui/ institutional [] 2022-01-12 15:36:04 2019-03-25 10:56:20 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "shupyk national medical academy of postgraduate education", "alternativeName": "", "country": "ua", "url": "https://nmapo.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4548 {"name": "knowledge bank of the health systems research institute", "language": "en"} [{"name": "\u0e04\u0e25\u0e31\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e23\u0e30\u0e1a\u0e1a\u0e2a\u0e38\u0e02\u0e20\u0e32\u0e1e", "language": "th"}] http://kb.hsri.or.th institutional [] 2022-01-12 15:36:06 2019-04-05 09:25:54 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "health systems research institute", "alternativeName": "hsri", "country": "th", "url": "https://www.hsri.or.th", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kb.hsri.or.th:8080/dspace-oai yes +4609 {"name": "bal\u0131kesir university institutional repository", "language": "en"} [] http://dspace.balikesir.edu.tr institutional [] 2022-01-12 15:36:06 2019-06-25 09:04:45 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "bal\u0131kesir university", "alternativeName": "", "country": "tr", "url": "http://www.balikesir.edu.tr", "identifier": [{"identifier": "https://ror.org/02tv7db43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.balikesir.edu.tr/oai yes +4504 {"name": "repository of research and investigative information", "language": "en"} [] http://eprints.hums.ac.ir/ institutional [] 2022-01-12 15:36:05 2019-03-26 16:02:24 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "hormozgan university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.hums.ac.ir", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4526 {"name": "repository of the iran university of medical sciences, tehran", "language": "en"} [] http://eprints.iums.ac.ir/ institutional [] 2022-01-12 15:36:05 2019-03-29 14:01:54 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "iran university of medical sciences", "alternativeName": "iums", "country": "ir", "url": "http://www.iums.ac.ir", "identifier": [{"identifier": "https://ror.org/03w04rv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4502 {"name": "repository of shahrekord university of medical sciences", "language": "en"} [] http://eprints.skums.ac.ir institutional [] 2022-01-12 15:36:05 2019-03-26 14:27:42 ["health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "shahrekord university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.skums.ac.ir/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.skums.ac.ir/cgi/oai2 yes +4522 {"name": "mashhad university of medical sciences repository", "language": "en"} [] http://eprints.mums.ac.ir/ institutional [] 2022-01-12 15:36:05 2019-03-29 11:21:09 ["health and medicine"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "mashhad university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://www.mums.ac.ir", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4508 {"name": "polish theological society repository", "language": "en"} [{"name": "repozytorium instytucjonalne polskiego towarzystwa teologicznego", "language": "pl"}] https://repozytorium.ptt.net.pl/xmlui/ institutional [] 2022-01-12 15:36:05 2019-03-27 10:52:26 ["humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "polish theological society, krakow", "alternativeName": "", "country": "pl", "url": "https://ptt.net.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4509 {"name": "repositorio institucional segemar", "language": "es"} [] http://repositorio.segemar.gob.ar governmental [] 2022-01-12 15:36:05 2019-03-27 10:57:40 ["science", "engineering"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "servicio geol\u00f3gico minero argentino", "alternativeName": "segemar", "country": "ar", "url": "http://www.segemar.gov.ar/", "identifier": [{"identifier": "https://ror.org/04t8w3r40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.segemar.gob.ar/oai/ yes +4533 {"name": "toyama science museum repository", "language": "en"} [{"name": "\u5bcc\u5c71\u5e02\u79d1\u5b66\u535a\u7269\u9928\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repo.tsm.toyama.toyama.jp/ institutional [] 2022-01-12 15:36:05 2019-04-03 08:53:40 ["science", "mathematics"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "toyama science museum", "alternativeName": "", "country": "jp", "url": "http://www.tsm.toyama.toyama.jp/", "identifier": [{"identifier": "https://ror.org/02863ez16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repo.tsm.toyama.toyama.jp/oai yes +4605 {"name": "krei repository", "language": ""} [] http://repository.krei.re.kr/ institutional [] 2022-01-12 15:36:06 2019-06-19 08:12:17 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "\ud55c\uad6d\ub18d\ucd0c\uacbd\uc81c\uc5f0\uad6c\uc6d0", "alternativeName": "", "country": "kr", "url": "http://www.krei.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.krei.re.kr/oai yes +4561 {"name": "ardahan university institutional repository", "language": "en"} [] http://openaccess.ardahan.edu.tr institutional [] 2022-01-12 15:36:06 2019-04-24 08:59:46 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ardahan university", "alternativeName": "", "country": "tr", "url": "https://www.ardahan.edu.tr/", "identifier": [{"identifier": "https://ror.org/042ejbk14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.ardahan.edu.tr/oai yes +4532 {"name": "jakov - repository of the university of criminal investigation and police studies, belgrade", "language": "en"} [] http://jakov.kpu.edu.rs/ institutional [] 2022-01-12 15:36:05 2019-04-03 08:42:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of criminal investigation and police studies", "alternativeName": "", "country": "rs", "url": "http://www.kpu.edu.rs/cms/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://jakov.kpu.edu.rs/files/policy-jakov-en.html", "type": "metadata"}, {"policy_url": "http://jakov.kpu.edu.rs/files/policy-jakov-en.html", "type": "data"}, {"policy_url": "http://jakov.kpu.edu.rs/files/policy-jakov-en.html", "type": "content"}, {"policy_url": "http://jakov.kpu.edu.rs/files/policy-jakov-en.html", "type": "submission"}, {"policy_url": "http://jakov.kpu.edu.rs/files/policy-jakov-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://jakov.kpu.edu.rs/oai/request yes +4539 {"name": "askuis: academic and scholarly repository of kuis", "language": "en"} [{"name": "\u795e\u7530\u5916\u8a9e\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea\u3000askuis", "language": "ja"}] http://kuis.repo.nii.ac.jp institutional [] 2022-01-12 15:36:05 2019-04-03 15:00:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kanda university of international studies", "alternativeName": "", "country": "jp", "url": "http://www.kandagaigo.ac.jp/kuis/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kuis.libguides.com/copyright_askuis", "type": "content"}] {"name": "weko", "version": ""} http://kuis.repo.nii.ac.jp/oai yes +4578 {"name": "dataverse unimi", "language": "it"} [] https://dataverse.unimi.it/ institutional [] 2022-01-12 15:36:06 2019-05-31 10:22:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "universita degli studi di milano", "alternativeName": "", "country": "it", "url": "https://www.unimi.it/it", "identifier": [{"identifier": "https://ror.org/00wjc7c48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.unimi.it/it/ateneo/normative/policy/policy-sulla-gestione-dei-dati-della-ricerca-rdm", "type": "metadata"}, {"policy_url": "https://www.unimi.it/it/ateneo/normative/policy/policy-sulla-gestione-dei-dati-della-ricerca-rdm", "type": "data"}, {"policy_url": "https://www.unimi.it/it/ateneo/normative/policy/policy-sulla-gestione-dei-dati-della-ricerca-rdm", "type": "content"}, {"policy_url": "https://www.unimi.it/it/ateneo/normative/policy/policy-sulla-gestione-dei-dati-della-ricerca-rdm", "type": "submission"}] {"name": "other", "version": ""} https://dataverse.unimi.it/oai?verb=identify yes +4598 {"name": "d\u00e9p\u00f4t institutionnel de l\u2019universit\u00e9 de mons", "language": "fr"} [{"acronym": "di-umons"}] http://di.umons.ac.be/ institutional [] 2022-01-12 15:36:06 2019-06-18 10:15:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "software", "patents"] [{"name": "umons", "alternativeName": "university of mons", "country": "be", "url": "https://web.umons.ac.be/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4498 {"name": "publikationsserver der bayerischen akademie der wissenschaften", "language": "de"} [] http://publikationen.badw.de/ institutional [] 2022-01-12 15:36:05 2019-03-26 13:38:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "bayerische akademie der wissenschaften, munich", "alternativeName": "", "country": "de", "url": "http://www.badw.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4524 {"name": "repositorio nacional", "language": "es"} [{"name": "national repository of mexico", "language": "en"}] https://repositorionacionalcti.mx/ aggregating [] 2022-01-12 15:36:05 2019-03-29 11:46:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects"] [{"name": "conacyt", "alternativeName": "consejo nacional de ciencia y tecnologia", "country": "mx", "url": "http://www.conacyt.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4599 {"name": "repozytorium politechniki krakowskiej", "language": "pl"} [{"name": "repository of the cracow university of technology", "language": "en"}] https://repozytorium.biblos.pk.edu.pl/ institutional [] 2022-01-12 15:36:06 2019-06-18 10:28:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "cracow university of technology", "alternativeName": "", "country": "pl", "url": "https://www.pk.edu.pl/index.php?lang=en", "identifier": [{"identifier": "https://ror.org/00pdej676", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4489 {"name": "kozminski university repository", "language": "en"} [] https://repozytorium.kozminski.edu.pl/ institutional [] 2022-01-12 15:36:05 2019-03-25 13:50:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kozminski university", "alternativeName": "", "country": "pl", "url": "https://www.kozminski.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4531 {"name": "bishop stuart university repository", "language": "en"} [{"acronym": "bsuspace"}] http://ir.bsu.ac.ug institutional [] 2022-01-12 15:36:05 2019-03-29 15:59:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bishop stuart university, mbarara", "alternativeName": "", "country": "ug", "url": "http://bsu.ac.ug", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4552 {"name": "repository of the national coffee research centre", "language": "en"} [{"acronym": "cenicafe"}, {"name": "repositorio digital del centro nacional de investigaciones de cafe", "language": "es"}, {"acronym": "cenicafe"}] http://biblioteca.cenicafe.org/ institutional [] 2022-01-12 15:36:06 2019-04-05 10:32:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "centro nacional de investigaciones de caf\u00e9, manizales", "alternativeName": "", "country": "co", "url": "http://www.cenicafe.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4520 {"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0432\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0456\u0447\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c\u0435\u043d\u0456 \u043c\u0438\u0445\u0430\u0439\u043b\u0430 \u043a\u043e\u0446\u044e\u0431\u0438\u043d\u0441\u044c\u043a\u043e\u0433\u043e", "language": "uk"} [{"acronym": "irvspu"}, {"name": "institutional repository of vinnitsa state pedagogical university named after mikhail kotsyubinsky", "language": "en"}] http://library.vspu.net/ institutional [] 2022-01-12 15:36:05 2019-03-29 10:14:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "vinnytsia mykhailo kotsiubynskyi state pedagogical university", "alternativeName": "", "country": "ua", "url": "http://vspu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4511 {"name": "kampala international university institutional repository", "language": "en"} [{"acronym": "kiuir"}] http://www.ir.kiu.ac.ug institutional [] 2022-01-12 15:36:05 2019-03-27 14:02:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kampala international university", "alternativeName": "", "country": "ug", "url": "http://www.kiu.ac.ug", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4529 {"name": "korean polar research institute repository", "language": "en"} [{"acronym": "kopri"}] http://repository.kopri.re.kr/ institutional [] 2022-01-12 15:36:05 2019-03-29 15:34:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "korea polar research institute", "alternativeName": "", "country": "kr", "url": "http://www.kopri.re.kr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4547 {"name": "reposit\u00f3rio institucional da ufam", "language": "pt"} [{"acronym": "riu"}] http://riu.ufam.edu.br/ institutional [] 2022-01-12 15:36:06 2019-04-05 09:20:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade federal do amazonas, manaus", "alternativeName": "ufam", "country": "br", "url": "http://ufam.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://200.129.163.19:8080/oai/request yes +4545 {"name": "repository of the international university of la rioja", "language": "en"} [{"acronym": "re-unir"}] https://reunir.unir.net institutional [] 2022-01-12 15:36:06 2019-04-04 14:36:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad internacional de la rioja, logro\u00f1o", "alternativeName": "unir", "country": "es", "url": "https://unir.net", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://reunir.unir.net/oai/request yes 2395 9425 +4523 {"name": "social impact open repository", "language": "en"} [{"acronym": "sior"}] http://sior.ub.edu institutional [] 2022-01-12 15:36:05 2019-03-29 11:38:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of barcelona", "alternativeName": "", "country": "es", "url": "http://www.ub.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4558 {"name": "electronic institutional repository of the tavria state agrotechnological university", "language": "en"} [{"acronym": "elartsatu"}] http://elar.tsatu.edu.ua/ institutional [] 2022-01-12 15:36:06 2019-04-05 12:48:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "tavria state agrotechnological university", "alternativeName": "", "country": "ua", "url": "http://www.tsatu.edu.ua", "identifier": [{"identifier": "https://ror.org/01v2hty12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elar.tsatu.edu.ua/oai/request?verb=identify yes +4512 {"name": "busitema university open access digital repository", "language": "en"} [] http://ir.busitema.ac.ug/ institutional [] 2022-01-12 15:36:05 2019-03-27 14:12:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "busitema university", "alternativeName": "", "country": "ug", "url": "http://www.busitema.ac.ug/", "identifier": [{"identifier": "https://ror.org/035d9jb31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4542 {"name": "digital repository of the university of peradeniya", "language": "en"} [] http://dlib.pdn.ac.lk/ institutional [] 2022-01-12 15:36:06 2019-04-04 10:18:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of peradeniya", "alternativeName": "", "country": "lk", "url": "http://www.pdn.ac.lk/", "identifier": [{"identifier": "https://ror.org/025h79t26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4601 {"name": "future repository", "language": "en"} [{"name": "fue digital repository", "language": "en"}] http://repository.fue.edu.eg institutional [] 2022-01-12 15:36:06 2019-06-18 12:25:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "future university in egypt", "alternativeName": "", "country": "eg", "url": "https://www.fue.edu.eg/", "identifier": [{"identifier": "https://ror.org/03s8c2x09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.fue.edu.eg/oai/request?verb=identify yes +4495 {"name": "must digital archive and research repository", "language": "en"} [] http://dspace.must.edu.eg/ institutional [] 2022-01-12 15:36:05 2019-03-26 10:56:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "misr university for science and technology, giza", "alternativeName": "must", "country": "eg", "url": "http://must.edu.eg/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4572 {"name": "munzur university institutional repository", "language": "en"} [] http://acikerisim.munzur.edu.tr institutional [] 2022-01-12 15:36:06 2019-04-30 09:42:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "munzur university", "alternativeName": "", "country": "tr", "url": "https://www.munzur.edu.tr", "identifier": [{"identifier": "https://ror.org/05v0p1f11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.munzur.edu.tr/oai/request yes +4538 {"name": "alejandria - repositorio comunidad polit\u00e9cnico grancolombiano", "language": "es"} [] http://alejandria.poligran.edu.co/ institutional [] 2022-01-12 15:36:05 2019-04-03 13:58:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "politecnico grancolombiano, bogot\u00e1", "alternativeName": "", "country": "co", "url": "http://www.poligran.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4517 {"name": "continental institutional repository", "language": "en"} [{"name": "repositorio institucional - continental", "language": "es"}] http://repositorio.continental.edu.pe institutional [] 2022-01-12 15:36:05 2019-03-28 15:00:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad continental", "alternativeName": "", "country": "pe", "url": "https://ucontinental.edu.pe", "identifier": [{"identifier": "https://ror.org/05rcf8d17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.continental.edu.pe/oai/request?verb=identify yes +4521 {"name": "expeditio", "language": "es"} [{"name": "", "language": ""}] http://expeditiorepositorio.utadeo.edu.co institutional [] 2022-01-12 15:36:05 2019-03-29 10:29:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of bogot\u00e1 jorge tadeo lozano", "alternativeName": "", "country": "co", "url": "http://www.utadeo.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://expeditiorepositorio.utadeo.edu.co/tadeo/oai yes +4485 {"name": "gnosis institutional repository", "language": "en"} [] https://gnosis.library.ucy.ac.cy institutional [] 2022-01-12 15:36:04 2019-03-25 10:21:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of cyprus", "alternativeName": "", "country": "cy", "url": "http://www.ucy.ac.cy/el/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://gnosis.library.ucy.ac.cy/oai/request yes +4560 {"name": "irta pubpro", "language": "es"} [] http://repositori.irta.cat/ institutional [] 2022-01-12 15:36:06 2019-04-08 10:17:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "institut de recerca i tecnologia agroalimentaries", "alternativeName": "irta", "country": "es", "url": "http://www.irta.cat", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4486 {"name": "maltepe university institutional repository", "language": "en"} [] http://openaccess.maltepe.edu.tr institutional [] 2022-01-12 15:36:04 2019-03-25 10:49:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "maltepe university", "alternativeName": "", "country": "tr", "url": "https://www.maltepe.edu.tr", "identifier": [{"identifier": "https://ror.org/004dg2369", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.maltepe.edu.tr/oai yes +4492 {"name": "nile valley university repository", "language": "en"} [] http://dglib.nilevalley.edu.sd:8080/xmlui/ institutional [] 2022-01-12 15:36:05 2019-03-25 15:30:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "nile valley university", "alternativeName": "", "country": "sd", "url": "http://nilevalley.edu.sd", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4559 {"name": "recursos educativos abiertos - universidad austral de chile", "language": "es"} [{"name": "open educational resources at the austral university of chile", "language": "en"}] http://rea.uach.cl/ institutional [] 2022-01-12 15:36:06 2019-04-05 12:54:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad austral de chile", "alternativeName": "uach", "country": "cl", "url": "https://www.uach.cl/", "identifier": [{"identifier": "https://ror.org/029ycp228", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rea.uach.cl/oai/request yes +4575 {"name": "rediumh", "language": ""} [] http://dspace.umh.es/handle/11000/6 institutional [] 2022-01-12 15:36:06 2019-05-31 09:49:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad miguel hernandez", "alternativeName": "", "country": "es", "url": "https://www.umh.es", "identifier": [{"identifier": "https://ror.org/01azzms13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4515 {"name": "repositorio digital universidad del quind\u00edo", "language": "es"} [] http://bdigital.uniquindio.edu.co/ institutional [] 2022-01-12 15:36:05 2019-03-28 10:05:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad del quind\u00edo", "alternativeName": "", "country": "co", "url": "https://www.uniquindio.edu.co/", "identifier": [{"identifier": "https://ror.org/01358s213", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bdigital.uniquindio.edu.co/oai/request?verb=identify yes +4600 {"name": "repositorio universitario - uam", "language": ""} [] http://biblioteca.uam.edu.ni/xmlui/ institutional [] 2022-01-12 15:36:06 2019-06-18 12:10:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad americana", "alternativeName": "", "country": "ni", "url": "http://www.uam.edu.ni/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://biblioteca.uam.edu.ni/oai/request yes +4607 {"name": "repositorio de la universidad nacional hermilio valdiz\u00e1n", "language": ""} [] http://repositorio.unheval.edu.pe/ institutional [] 2022-01-12 15:36:06 2019-06-20 07:37:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations"] [{"name": "universidad nacional hermilio valdiz\u00e1n", "alternativeName": "", "country": "pe", "url": "https://www.unheval.edu.pe/portal/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4604 {"name": "reposit\u00f3rio da produ\u00e7\u00e3o cient\u00edfica e intelectual do senai cimatec", "language": ""} [] http://repositoriosenaiba.fieb.org.br/ institutional [] 2022-01-12 15:36:06 2019-06-18 12:42:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "senai bahia", "alternativeName": "", "country": "br", "url": "http://www.fieb.org.br/senai/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositoriosenaiba.fieb.org.br/oai yes +4525 {"name": "ubuntunet alliance repository", "language": ""} [] https://repository.ubuntunet.net institutional [] 2022-01-12 15:36:05 2019-03-29 13:53:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "ubuntunet alliance", "alternativeName": "", "country": "mw", "url": "https://ubuntunet.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4536 {"name": "zaporizhzhya state engineering academy repository", "language": "en"} [] http://dspace.zsea.edu.ua/ institutional [] 2022-01-12 15:36:05 2019-04-03 13:41:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "zaporizhzhya state engineering academy", "alternativeName": "", "country": "ua", "url": "http://www.zgia.zp.ua/", "identifier": [{"identifier": "https://ror.org/0525x3k72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4488 {"name": "bronco scholar", "language": "en"} [] http://broncoscholar.library.cpp.edu/ institutional [] 2022-01-12 15:36:05 2019-03-25 11:56:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "california state polytechnic university, pomona", "alternativeName": "", "country": "us", "url": "https://www.cpp.edu/index.shtml", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4513 {"name": "makerere university business school institutional repository", "language": "en"} [] http://mubsir.mubs.ac.ug institutional [] 2022-01-12 15:36:05 2019-03-27 14:20:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "makerere university business school", "alternativeName": "", "country": "ug", "url": "https://mubs.ac.ug", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4497 {"name": "university of alabama institutional repository", "language": "en"} [] https://ir.ua.edu/ institutional [] 2022-01-12 15:36:05 2019-03-26 11:49:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of alabama, tuscaloosa", "alternativeName": "", "country": "us", "url": "https://www.ua.edu/", "identifier": [{"identifier": "https://ror.org/03xrrjk67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4534 {"name": "hacettepe university thesis archive", "language": "en"} [] http://bbytezarsivi.hacettepe.edu.tr/jspui institutional [] 2022-01-12 15:36:05 2019-04-03 13:12:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hacettepe university, ankara", "alternativeName": "", "country": "tr", "url": "http://www.hacettepe.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4507 {"name": "pantheon", "language": "en"} [] https://pantheon.ufrj.br/ institutional [] 2022-01-12 15:36:05 2019-03-27 10:06:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidade federal do rio de janeiro", "alternativeName": "ufrj", "country": "br", "url": "http://www.ufrj.br", "identifier": [{"identifier": "https://ror.org/03490as77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4537 {"name": "repository of the wroblewski library, lithuanian academy of sciences", "language": "en"} [] https://elibrary.mab.lt/ institutional [] 2022-01-12 15:36:05 2019-04-03 13:54:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "wroblewski library of the lithuanian academy of sciences, vilnius", "alternativeName": "", "country": "lt", "url": "http://www.mab.lt/en/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4483 {"name": "tobb et\u00fc institutional repository", "language": "en"} [] http://earsiv.etu.edu.tr/xmlui/ institutional [] 2022-01-12 15:36:04 2019-03-21 14:44:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "tobb university of economics and technology", "alternativeName": "", "country": "tr", "url": "https://www.etu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.etu.edu.tr/oai/request yes +4506 {"name": "uganda martyrs university repository", "language": "en"} [] http://ir.umu.ac.ug/ institutional [] 2022-01-12 15:36:05 2019-03-27 09:55:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "uganda martyrs university", "alternativeName": "", "country": "ug", "url": "http://umu.ac.ug/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.umu.ac.ug/oai/ yes +4608 {"name": "amasya university institutional repository", "language": "en"} [] http://openaccess.amasya.edu.tr institutional [] 2022-01-12 15:36:06 2019-06-25 08:53:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "amasya university", "alternativeName": "", "country": "tr", "url": "https://www.amasya.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digitool", "version": ""} http://openaccess.amasya.edu.tr/oai yes +4482 {"name": "elischolar", "language": "en"} [] https://elischolar.library.yale.edu/ institutional [] 2022-01-12 15:36:04 2019-03-21 10:27:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "yale university", "alternativeName": "", "country": "us", "url": "https://www.yale.edu/", "identifier": [{"identifier": "https://ror.org/03v76x132", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4490 {"name": "touro scholar", "language": ""} [] http://touroscholar.touro.edu institutional [] 2022-01-12 15:36:05 2019-03-25 14:33:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "touro college & university system", "alternativeName": "", "country": "us", "url": "http://www.touro.edu", "identifier": [{"identifier": "https://ror.org/05hwfvk38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4553 {"name": "digital commons @ new haven", "language": "en"} [] http://digitalcommons.newhaven.edu institutional [] 2022-01-12 15:36:06 2019-04-05 10:40:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of new haven", "alternativeName": "", "country": "us", "url": "https://www.newhaven.edu/", "identifier": [{"identifier": "https://ror.org/00zm4rq24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4500 {"name": "landmark university repository", "language": "en"} [] http://eprints.lmu.edu.ng/ institutional [] 2022-01-12 15:36:05 2019-03-26 14:07:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "landmark university", "alternativeName": "", "country": "ng", "url": "http://lmu.edu.ng", "identifier": [{"identifier": "https://ror.org/04gw4zv66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4556 {"name": "uklo repository", "language": "en"} [] http://eprints.uklo.edu.mk/ institutional [] 2022-01-12 15:36:06 2019-04-05 12:30:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "st. kliment ohridski university, bitola", "alternativeName": "uklo", "country": "mk", "url": "http://www.uklo.edu.mk/", "identifier": [{"identifier": "https://ror.org/04161ta68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4555 {"name": "repositorio upoli", "language": "es"} [] http://repositorio.upoli.edu.ni/ institutional [] 2022-01-12 15:36:06 2019-04-05 12:18:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad politecnica de nicaragua", "alternativeName": "upoli", "country": "ni", "url": "https://www.upoli.edu.ni/", "identifier": [{"identifier": "https://ror.org/02k0z7185", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4549 {"name": "institutional repository of uin ar-raniry, banda aceh", "language": "en"} [] https://repository.ar-raniry.ac.id/ institutional [] 2022-01-12 15:36:06 2019-04-05 09:33:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ar-raniry state islamic university, banda aceh", "alternativeName": "", "country": "id", "url": "http://ar-raniry.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes +4603 {"name": "repository universitas negeri jakarta", "language": "en"} [] http://repository.unj.ac.id/ institutional [] 2022-01-12 15:36:06 2019-06-18 12:39:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas negeri jakarta", "alternativeName": "", "country": "id", "url": "http://www.unj.ac.id", "identifier": [{"identifier": "https://ror.org/01hgg7b81", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unj.ac.id/cgi/oai2 yes +4527 {"name": "wakayama university academic repository", "language": "en"} [{"name": "\u548c\u6b4c\u5c71\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.center.wakayama-u.ac.jp/ institutional [] 2022-01-12 15:36:05 2019-03-29 14:21:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "wakayama university", "alternativeName": "", "country": "jp", "url": "http://wakayama-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://repository.center.wakayama-u.ac.jp/api/oai/request yes +4530 {"name": "repositorio digital institucional universidad de buenos aires", "language": "pt"} [] http://repositoriouba.sisbi.uba.ar institutional [] 2022-01-12 15:36:05 2019-03-29 15:50:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of buenos aires", "alternativeName": "", "country": "ar", "url": "http://www.uba.ar/", "identifier": [{"identifier": "https://ror.org/0081fs513", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +4597 {"name": "hal anses", "language": ""} [] https://hal-anses.archives-ouvertes.fr/ institutional [] 2022-01-12 15:36:06 2019-06-06 14:44:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "anses", "alternativeName": "agence nationale de s\u00e9curit\u00e9 sanitaire de l\u2019alimentation, de l\u2019environnement et du travail", "country": "fr", "url": "https://www.anses.fr/fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +4514 {"name": "institutional repository of the ibero-american institute, berlin", "language": "en"} [] http://publications.iai.spk-berlin.de/content/main/index.xml?lang=en institutional [] 2022-01-12 15:36:05 2019-03-27 14:39:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "ibero-amerikanisches institut", "alternativeName": "", "country": "de", "url": "https://www.iai.spk-berlin.de/en/home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "mycore", "version": ""} https://publications.iai.spk-berlin.de/servlets/oaidataprovider yes +4503 {"name": "lenguas - biblioteca digital", "language": "es"} [] http://bibliotecadelenguas.uncoma.edu.ar/ institutional [] 2022-01-12 15:36:05 2019-03-26 15:52:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional del comahue", "alternativeName": "", "country": "ar", "url": "http://www.uncoma.edu.ar/", "identifier": [{"identifier": "https://ror.org/02zvkba47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} yes +4544 {"name": "acervo digital institucional en seguridad social", "language": "es"} [] http://biblioteca.ciess.org/adiss/ institutional [] 2022-01-12 15:36:06 2019-04-04 14:29:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "centro interamericano de estudios de seguridad social", "alternativeName": "ciess", "country": "mx", "url": "http://ciess.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4569 {"name": "bozen - bolzano institutional archive", "language": "en"} [{"acronym": "bia"}] https://bia.unibz.it institutional [] 2022-01-12 15:36:06 2019-04-30 08:32:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "other_special_item_types"] [{"name": "free university of bozen-bolzano", "alternativeName": "unibz", "country": "it", "url": "https://www.unibz.it", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4577 {"name": "robis", "language": ""} [] https://www.hzdr.de/robis institutional [] 2022-01-12 15:36:06 2019-05-31 10:08:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents"] [{"name": "helmholtz-zentrum dresden-rossendorf", "alternativeName": "", "country": "de", "url": "https://www.hzdr.de", "identifier": [{"identifier": "https://ror.org/01zy2cs03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.hzdr.de/publications/oai-pmh yes +4554 {"name": "larchive ouverte de lined", "language": "fr"} [{"acronym": "archined"}] https://archined.ined.fr institutional [] 2022-01-12 15:36:06 2019-04-05 12:12:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "french institute for demographic studies", "alternativeName": "ined", "country": "fr", "url": "https://www.ined.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://archined.ined.fr/oai yes +4499 {"name": "american university of beirut (aub) scholarworks", "language": "en"} [] https://scholarworks.aub.edu.lb/ institutional [] 2022-01-12 15:36:05 2019-03-26 13:45:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "american university of beirut", "alternativeName": "aub", "country": "lb", "url": "https://www.aub.edu.lb/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4496 {"name": "repositorio centroamericano siidca", "language": "es"} [] http://repositoriosiidca.csuca.org/ aggregating [] 2022-01-12 15:36:05 2019-03-26 11:42:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "consejo superior universitario centroamericano", "alternativeName": "csuca", "country": "ni", "url": "http://www.csuca.org/", "identifier": [{"identifier": "https://ror.org/00d7a9n23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repositoriosiidca.csuca.org/oai/server yes +4540 {"name": "academia", "language": "en"} [] https://academia.lndb.lv/ aggregating [] 2022-01-12 15:36:05 2019-04-03 15:38:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national library of latvia", "alternativeName": "", "country": "lv", "url": "http://lnb.lv/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4563 {"name": "bond university research portal", "language": "en"} [] https://research.bond.edu.au/ institutional [] 2022-01-12 15:36:06 2019-04-24 09:25:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "bond university", "alternativeName": "", "country": "au", "url": "http://www.bond.edu.au/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.bond.edu.au/ws/oai yes +4568 {"name": "cbs research portal", "language": ""} [] https://research.cbs.dk/ institutional [] 2022-01-12 15:36:06 2019-04-30 08:25:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "copenhagen business school", "alternativeName": "cbs", "country": "dk", "url": "http://uk.cbs.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +4501 {"name": "university of lapland current research system", "language": "en"} [] https://lacris.ulapland.fi/ institutional [] 2022-01-12 15:36:05 2019-03-26 14:17:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "university of lapland, rovaniemi", "alternativeName": "", "country": "fi", "url": "https://www.ulapland.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +4505 {"name": "clover", "language": "en"} [{"acronym": "clover"}, {"name": "\u916a\u8fb2\u5b66\u5712\u5927\u5b66\u5b66\u8853\u7814\u7a76\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://rakuno.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:05 2019-03-26 16:33:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "rakuno gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.rakuno.ac.jp/", "identifier": [{"identifier": "https://ror.org/014rqt829", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rakuno.repo.nii.ac.jp/oai yes +4557 {"name": "mimasaka university & mimasaka junior college repository", "language": "en"} [{"name": "\u7f8e\u4f5c\u5927\u5b66\u30fb\u7f8e\u4f5c\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mimasaka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:06 2019-04-05 12:42:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "mimasaka university", "alternativeName": "", "country": "jp", "url": "http://mimasaka.jp/", "identifier": [{"identifier": "https://ror.org/01wz7zs96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mimasaka.repo.nii.ac.jp/oai yes +4551 {"name": "the academic repository of okazaki women\u2019s university and okazaki women\u2019s junior college", "language": "en"} [{"name": "\u5ca1\u5d0e\u5973\u5b50\u5927\u5b66\u30fb\u5ca1\u5d0e\u5973\u5b50\u77ed\u671f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://okazaki.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:06 2019-04-05 10:24:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "okazaki womens university", "alternativeName": "", "country": "jp", "url": "http://www.okazaki-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/01p3pd878", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://okazaki.repo.nii.ac.jp/oai yes +4519 {"name": "arodes - haute \u00e9cole sp\u00e9cialis\u00e9e de suisse occidentale", "language": "fr"} [{"acronym": "hes-so"}] https://arodes.hes-so.ch/ institutional [] 2022-01-12 15:36:05 2019-03-29 10:03:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hes-souniversity of applied sciences and arts western switzerland", "alternativeName": "hes-so", "country": "ch", "url": "https://www.hes-so.ch/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +4491 {"name": "usgs publications warehouse", "language": "en"} [] https://pubs.er.usgs.gov/ governmental [] 2022-01-12 15:36:05 2019-03-25 15:08:37 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "datasets"] [{"name": "usgs", "alternativeName": "united states geological survey", "country": "us", "url": "https://www.usgs.gov/", "identifier": [{"identifier": "https://ror.org/035a68863", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www2.usgs.gov/laws/policies_notices.html", "type": "content"}] {"name": "", "version": ""} yes +4510 {"name": "reposit\u00f3rio digital do ipen/sp - brasil", "language": "pt"} [] http://repositorio.ipen.br institutional [] 2022-01-12 15:36:05 2019-03-27 13:46:40 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ipen", "alternativeName": "instituto de pesquisas energeticas e nucleares", "country": "br", "url": "http://www.ipen.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ipen.br/oai/request yes +4570 {"name": "phaidra - repository of the university of veterinary medicine, vienna", "language": "en"} [] https://phaidra.vetmeduni.ac.at institutional [] 2022-01-12 15:36:06 2019-04-30 09:00:31 ["science"] ["bibliographic_references", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "vetmeduni vienna", "alternativeName": "", "country": "at", "url": "https://www.vetmeduni.ac.at", "identifier": [{"identifier": "https://ror.org/01w6qp003", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +4535 {"name": "environmental marine information system repository", "language": ""} [] http://siam.invemar.org.co/documentos institutional [] 2022-01-12 15:36:05 2019-04-03 13:26:48 ["science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "jos\u00e9 benito vives de andr\u00e9is marine and coastal research institute, santa marta", "alternativeName": "", "country": "co", "url": "http://www.invemar.org.co", "identifier": [{"identifier": "https://ror.org/024109974", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4516 {"name": "east african community repository", "language": "en"} [] http://repository.eac.int/ governmental [] 2022-01-12 15:36:05 2019-03-28 11:05:08 ["social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "east african community", "alternativeName": "eac", "country": "tz", "url": "http://eac.int", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.eac.int/oai/request yes +4562 {"name": "erzincan binali y\u0131ld\u0131r\u0131m university institutional repository", "language": "en"} [] http://earsiv.erzincan.edu.tr institutional [] 2022-01-12 15:36:06 2019-04-24 09:06:10 ["social sciences"] ["journal_articles"] [{"name": "erzincan binali y\u0131ld\u0131r\u0131m university", "alternativeName": "", "country": "tr", "url": "http://www.ebyu.edu.tr/tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.erzincan.edu.tr/oai yes +4579 {"name": "repository of the institute of public finance, zagreb", "language": ""} [] https://repozitorij.ijf.hr/en institutional [] 2022-01-12 15:36:06 2019-05-31 10:35:13 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "institute of public finance, zagreb", "alternativeName": "", "country": "hr", "url": "http://www.ijf.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ijf.hr/oai yes +4550 {"name": "iit gandhinagar digital repository", "language": "en"} [{"acronym": "iitdr"}] https://repository.iitgn.ac.in institutional [] 2022-01-12 15:36:06 2019-04-05 09:52:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "indian institute of technology gandhinagar", "alternativeName": "iit", "country": "in", "url": "http://iitgn.ac.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.iitgn.ac.in/oai/request yes 57 3989 +4567 {"name": "plantarum - repository of the institute for plant protection and environment", "language": "en"} [] http://plantarum.izbis.bg.ac.rs institutional [] 2022-01-12 15:36:06 2019-04-30 08:20:04 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "institute for plant protection and environment", "alternativeName": "", "country": "rs", "url": "http://www.izbis.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://plantarum.izbis.bg.ac.rs/files/policy-plantarum-en.html", "type": "metadata"}, {"policy_url": "http://plantarum.izbis.bg.ac.rs/files/policy-plantarum-en.html", "type": "data"}, {"policy_url": "http://plantarum.izbis.bg.ac.rs/files/policy-plantarum-en.html", "type": "content"}, {"policy_url": "http://plantarum.izbis.bg.ac.rs/files/policy-plantarum-en.html", "type": "submission"}, {"policy_url": "http://plantarum.izbis.bg.ac.rs/files/policy-plantarum-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://plantarum.izbis.bg.ac.rs/oai yes 281 599 +4693 {"name": "grafar - repository of the faculty of civil engineering", "language": "sr"} [] http://grafar.grf.bg.ac.rs/ institutional [] 2022-01-12 15:36:07 2019-07-12 10:31:00 ["engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of belgrade, faculty of civil engineering", "alternativeName": "", "country": "rs", "url": "http://www.grf.bg.ac.rs/home/e", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://grafar.grf.bg.ac.rs/files/policy-grafar-en.html", "type": "metadata"}, {"policy_url": "http://grafar.grf.bg.ac.rs/files/policy-grafar-en.html", "type": "data"}, {"policy_url": "http://grafar.grf.bg.ac.rs/files/policy-grafar-en.html", "type": "content"}, {"policy_url": "http://grafar.grf.bg.ac.rs/files/policy-grafar-en.html", "type": "submission"}, {"policy_url": "http://grafar.grf.bg.ac.rs/files/policy-grafar-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://grafar.grf.bg.ac.rs/oai/request yes +4631 {"name": "rongo university repository", "language": "en"} [] http://repository.rongovarsity.ac.ke institutional [] 2022-01-12 15:36:06 2019-07-10 09:07:56 ["health and medicine", "arts", "humanities", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rongo university", "alternativeName": "", "country": "ke", "url": "http://rongovarsity.ac.ke", "identifier": [{"identifier": "https://ror.org/019z2v446", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.rongovarsity.ac.ke/oai yes +4623 {"name": "repository of bjelovar university of applied sciences", "language": ""} [] https://repozitorij.vub.hr/ institutional [] 2022-01-12 15:36:06 2019-07-10 07:46:53 ["health and medicine", "science", "mathematics", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bjelovar university of applied sciences", "alternativeName": "", "country": "hr", "url": "https://vub.hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +4713 {"name": "biblioteca\u00a0digital\u00a0de\u00a0teses\u00a0e\u00a0disserta\u00e7\u00f5es\u00a0da\u00a0cat\u00f3lica\u00a0de\u00a0santos", "language": "pt"} [] http://biblioteca.unisantos.com.br/tede/index.php institutional [] 2022-01-12 15:36:08 2019-07-18 07:53:50 ["health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidade\u00a0cat\u00f3lica\u00a0de\u00a0santos", "alternativeName": "", "country": "br", "url": "https://www.unisantos.br/", "identifier": [{"identifier": "https://ror.org/00vcyhn10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4652 {"name": "guaiaca", "language": "pt"} [] http://guaiaca.ufpel.edu.br institutional [] 2022-01-12 15:36:07 2019-07-10 13:56:22 ["health and medicine", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidade federal de pelotas", "alternativeName": "ufpel", "country": "br", "url": "https://portal.ufpel.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4660 {"name": "earsiv@uskudar", "language": "tr"} [] http://earsiv.uskudar.edu.tr/ institutional [] 2022-01-12 15:36:07 2019-07-11 08:54:19 ["health and medicine", "science", "social sciences"] ["journal_articles"] [{"name": "uskudar university", "alternativeName": "", "country": "tr", "url": "https://uskudar.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.uskudar.edu.tr/oai/request yes +4734 {"name": "repisalud", "language": ""} [] https://repisalud.isciii.es/ institutional [] 2022-01-12 15:36:08 2019-07-31 09:43:59 ["health and medicine", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "instituto de salud carlos iii", "alternativeName": "", "country": "es", "url": "http://www.isciii.es/", "identifier": [{"identifier": "https://ror.org/00ca2c886", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repisalud.isciii.es/oai/request yes +4743 {"name": "repositorio institucional de la direcci\u00f3n general de medicamentos, insumos y drogas", "language": ""} [] http://repositorio.digemid.minsa.gob.pe/ institutional [] 2022-01-12 15:36:08 2019-07-31 13:31:39 ["health and medicine", "science"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "ministry of health of peru", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/minsa/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4739 {"name": "nordlandsforskning open research archive", "language": "no"} [] https://nforsk.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-07-31 11:32:09 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "nordlandsforskning", "alternativeName": "", "country": "no", "url": "http://www.nordlandsforskning.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nforsk.brage.unit.no/nforsk-oai/ yes +4691 {"name": "digitalhub", "language": "en"} [] https://digitalhub.northwestern.edu/ institutional [] 2022-01-12 15:36:07 2019-07-12 09:53:09 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "northwestern university, feinberg school of medicine", "alternativeName": "", "country": "us", "url": "https://www.northwestern.edu/", "identifier": [{"identifier": "https://ror.org/000e0be47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://galter.northwestern.edu/galterguides?url=https%3a%2f%2flibguides.galter.northwestern.edu%2fdigitalhub%2fcontent", "type": "content"}, {"policy_url": "https://galter.northwestern.edu/galterguides?url=https%3a%2f%2flibguides.galter.northwestern.edu%2fdigitalhub%2fcontent", "type": "submission"}] {"name": "invenio", "version": ""} yes +4622 {"name": "african digital health library", "language": "en"} [{"acronym": "adhl"}] http://adhlui.com.ui.edu.ng/ institutional [] 2022-01-12 15:36:06 2019-07-10 07:38:44 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of ibadan", "alternativeName": "", "country": "ng", "url": "https://www.com.ui.edu.ng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://adhlui.com.ui.edu.ng/oai/request yes +4700 {"name": "african digital health library- university of ibadan", "language": "en"} [] http://adhlui.com.ui.edu.ng/ institutional [] 2022-01-12 15:36:07 2019-07-12 13:54:17 ["health and medicine"] ["theses_and_dissertations"] [{"name": "college of medicine, university of ibadan", "alternativeName": "", "country": "ng", "url": "http://www.com.ui.edu.ng", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://com.ui.edu.ng/ yes +4711 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es famerp - faculdade de medicina de s\u00e3o jos\u00e9 do rio preto", "language": "pt"} [] http://bdtd.famerp.br/ institutional [] 2022-01-12 15:36:07 2019-07-17 08:27:50 ["health and medicine"] ["theses_and_dissertations"] [{"name": "faculdade de medicina de s\u00e3o jos\u00e9 do rio preto", "alternativeName": "famerp", "country": "br", "url": "http://www.famerp.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4721 {"name": "riucv", "language": "es"} [] https://riucv.ucv.es institutional [] 2022-01-12 15:36:08 2019-07-24 08:45:45 ["humanities", "health and medicine", "science", "mathematics", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de valencia san vicente m\u00e1rtir", "alternativeName": "", "country": "es", "url": "https://www.ucv.es/", "identifier": [{"identifier": "https://ror.org/03d7a9c68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://riucv.ucv.es/oai/request?verb=identify yes +4654 {"name": "hal uvsq", "language": "fr"} [] https://hal-uvsq.archives-ouvertes.fr/ institutional [] 2022-01-12 15:36:07 2019-07-10 14:38:57 ["mathematics", "science", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "universit\u00e9 de versailles saint-quentin-en-yvelines", "alternativeName": "", "country": "fr", "url": "http://www.uvsq.fr", "identifier": [{"identifier": "https://ror.org/03mkjjy25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/uvsq yes +4655 {"name": "chalmers open digital repository", "language": ""} [] https://odr.chalmers.se institutional [] 2022-01-12 15:36:07 2019-07-10 14:58:53 ["science", "social sciences", "technology", "engineering"] ["theses_and_dissertations"] [{"name": "chalmers university of technology", "alternativeName": "", "country": "se", "url": "https://www.chalmers.se", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://odr.chalmers.se/oai/ yes +4666 {"name": "institutional repository - graduate institute geneva", "language": "en"} [] https://repository.graduateinstitute.ch institutional [] 2022-01-12 15:36:07 2019-07-11 11:19:45 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "graduate institute of international and development studies", "alternativeName": "", "country": "ch", "url": "https://graduateinstitute.ch", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +4732 {"name": "refubium", "language": ""} [] https://refubium.fu-berlin.de institutional [] 2022-01-12 15:36:08 2019-07-31 09:13:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "freie universit\u00e4t berlin", "alternativeName": "", "country": "de", "url": "https://www.fu-berlin.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.fu-berlin.de/sites/refubium/ueber-uns/leitlinien/leitlinien_publ/index.html", "type": "data"}, {"policy_url": "https://www.fu-berlin.de/sites/refubium/ueber-uns/leitlinien/leitlinien_publ/index.html", "type": "content"}, {"policy_url": "https://www.fu-berlin.de/sites/refubium/ueber-uns/leitlinien/leitlinien_publ/index.html", "type": "submission"}] {"name": "dspace", "version": ""} https://refubium.fu-berlin.de/oai yes +4696 {"name": "dune: digitalune", "language": "en"} [] https://dune.une.edu/ institutional [] 2022-01-12 15:36:07 2019-07-12 11:14:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of new england", "alternativeName": "", "country": "us", "url": "https://www.une.edu", "identifier": [{"identifier": "https://ror.org/02n2ava60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4661 {"name": "western sydney researchdirect", "language": "en"} [] https://researchdirect.westernsydney.edu.au/ institutional [] 2022-01-12 15:36:07 2019-07-11 09:23:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "western sydney university", "alternativeName": "", "country": "au", "url": "https://www.westernsydney.edu.au/", "identifier": [{"identifier": "https://ror.org/03t52dk35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://researchdirect.westernsydney.edu.au/oai2 yes +4669 {"name": "rudn repository", "language": "ru"} [] https://repository.rudn.ru/ru/records/all/ institutional [] 2022-01-12 15:36:07 2019-07-11 13:17:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "patents"] [{"name": "rudn university", "alternativeName": "", "country": "ru", "url": "http://www.rudn.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://repository.rudn.ru/oai2 yes +4687 {"name": "digital commons @ texas a&m university-san antonio", "language": ""} [] https://digitalcommons.tamusa.edu/ institutional [] 2022-01-12 15:36:07 2019-07-12 08:29:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "texas a&m university-san antonio", "alternativeName": "", "country": "us", "url": "http://www.tamusa.edu/library/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digitalcommons.tamusa.edu/do/oai/ yes +4673 {"name": "vernsky", "language": ""} [] https://vernsky.ru/ institutional [] 2022-01-12 15:36:07 2019-07-11 14:15:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "moscow state university", "alternativeName": "", "country": "ru", "url": "https://www.msu.ru/en/", "identifier": [{"identifier": "https://ror.org/010pmpe69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://vernsky.ru/api/v1/pubs yes +4627 {"name": "center for indonesian policy studies institutional repository", "language": "id"} [] https://repository.cips-indonesia.org/ institutional [] 2022-01-12 15:36:06 2019-07-10 08:46:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "center for indonesian policy studies", "alternativeName": "", "country": "id", "url": "https://www.cips-indonesia.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://repository.cips-indonesia.org/oai yes +4684 {"name": "knowledge@uchicago", "language": "en"} [] https://knowledge.uchicago.edu/ institutional [] 2022-01-12 15:36:07 2019-07-12 07:34:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "university of chicago", "alternativeName": "", "country": "us", "url": "https://www.lib.uchicago.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://knowledge.uchicago.edu/pages/?page=policies", "type": "data"}, {"policy_url": "https://knowledge.uchicago.edu/pages/?page=policies", "type": "content"}, {"policy_url": "https://knowledge.uchicago.edu/pages/?page=policies", "type": "submission"}] {"name": "", "version": ""} https://uchicago.tind.io/oia2d yes +4634 {"name": "i\u0307stanbul ayd\u0131n \u00fcniversitesi a\u00e7\u0131k ar\u015fiv sistemi", "language": "en"} [{"name": "", "language": "tr"}] https://acikarsiv.aydin.edu.tr/ institutional [] 2022-01-12 15:36:06 2019-07-10 09:37:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "i\u0307stanbul ayd\u0131n university", "alternativeName": "", "country": "tr", "url": "https://www.aydin.edu.tr/en-us/pages/default.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4706 {"name": "repositorio universidad\u00a0aut\u00f3noma\u00a0de\u00a0manizales", "language": "es"} [{"acronym": "repo uam"}] https://repositorio.autonoma.edu.co institutional [] 2022-01-12 15:36:07 2019-07-15 10:11:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universidad\u00a0aut\u00f3noma\u00a0de\u00a0manizales", "alternativeName": "uam", "country": "co", "url": "https://www.autonoma.edu.co", "identifier": [{"identifier": "https://ror.org/00jfare13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.autonoma.edu.co/oai/request yes +4645 {"name": "reposit\u00f3rio institucional da ufmt", "language": "pt"} [{"acronym": "riufmt"}] http://ri.ufmt.br/ institutional [] 2022-01-12 15:36:07 2019-07-10 11:48:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal de mato grosso", "alternativeName": "", "country": "br", "url": "https://www.ufmt.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4643 {"name": "reposit\u00f3rio institucional digital da produ\u00e7\u00e3o cient\u00edfica e intelectual da ufjf", "language": "pt"} [{"acronym": "ri-ufjf"}] https://repositorio.ufjf.br/jspui/ institutional [] 2022-01-12 15:36:07 2019-07-10 11:21:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidade federal de juiz de fora", "alternativeName": "", "country": "br", "url": "https://www2.ufjf.br/ufjf/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ufjf.br/jspui/ yes 12318 +4741 {"name": "osmaniye korkut ata university dspace repository", "language": ""} [{"acronym": "dspace@oku"}] http://openaccess.osmaniye.edu.tr/ institutional [] 2022-01-12 15:36:08 2019-07-31 12:11:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "osmaniye korkut ata university", "alternativeName": "", "country": "tr", "url": "http://www.osmaniye.edu.tr", "identifier": [{"identifier": "https://ror.org/03h8sa373", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.osmaniye.edu.tr/oai yes +4725 {"name": "dspace sebha university", "language": "ar"} [] http://dspace.sebhau.edu.ly/ institutional [] 2022-01-12 15:36:08 2019-07-25 08:18:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "sebha university", "alternativeName": "", "country": "ly", "url": "https://sebhau.edu.ly", "identifier": [{"identifier": "https://ror.org/04m1ha467", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4707 {"name": "repositori\u00a0institucional\u00a0de\u00a0la\u00a0uib", "language": "ca"} [] http://repositori.uib.cat/ institutional [] 2022-01-12 15:36:07 2019-07-15 10:54:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "universitat\u00a0de\u00a0les\u00a0illes\u00a0balears", "alternativeName": "", "country": "es", "url": "https://www.uib.cat/", "identifier": [{"identifier": "https://ror.org/03e10x626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.uib.es/oai/request?verb=identify yes +4610 {"name": "biruni university institutional repository", "language": "en"} [] https://openaccess.biruni.edu.tr institutional [] 2022-01-12 15:36:06 2019-06-25 09:16:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "biruni university", "alternativeName": "", "country": "tr", "url": "https://www.biruni.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.biruni.edu.tr/oai yes +4641 {"name": "institutional repository of the catholic university of bras\u00edlia", "language": "en"} [{"name": "reposit\u00f3rio institucional da universidade cat\u00f3lica de bras\u00edlia", "language": "pt"}] https://repositorio.ucb.br:9443/jspui institutional [] 2022-01-12 15:36:06 2019-07-10 11:00:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "catholic university of bras\u00edlia", "alternativeName": "ucb", "country": "br", "url": "https://ucb.catolica.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4677 {"name": "sorbonne university abu dhabi", "language": "en"} [] https://depot.sorbonne.ae institutional [] 2022-01-12 15:36:07 2019-07-11 15:47:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "sorbonne university abu dhabi", "alternativeName": "", "country": "ae", "url": "https://www.sorbonne.ae/", "identifier": [{"identifier": "https://ror.org/03e1ymy32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://depot.sorbonne.ae/oai/request yes +4637 {"name": "university of dodoma institutional repository", "language": "en"} [] http://repository.udom.ac.tz/ institutional [] 2022-01-12 15:36:06 2019-07-10 09:55:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "the university of dodoma", "alternativeName": "", "country": "tz", "url": "https://udom.ac.tz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4682 {"name": "university of rwanda digital repository", "language": "en"} [] http://dr.ur.ac.rw/ institutional [] 2022-01-12 15:36:07 2019-07-11 18:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of rwanda", "alternativeName": "", "country": "rw", "url": "https://ur.ac.rw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dr.ur.ac.rw/ yes +4649 {"name": "alpha - reposit\u00f3rio digital da facimed", "language": "pt"} [] http://repositorio.facimed.edu.br/xmlui/ institutional [] 2022-01-12 15:36:07 2019-07-10 13:30:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "facimed", "alternativeName": "", "country": "br", "url": "http://www.facimed.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4658 {"name": "reposit\u00f3rio comum do brasil - deposita", "language": "pt"} [] http://deposita.ibict.br/ institutional [] 2022-01-12 15:36:07 2019-07-11 08:20:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "alternativeName": "ibict", "country": "br", "url": "http://www.ibict.br/", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://deposita.ibict.br/oai/request yes +4642 {"name": "reposit\u00f3rio institucional da universidade federal de sergipe (riufs)", "language": "pt"} [] https://ri.ufs.br/ institutional [] 2022-01-12 15:36:07 2019-07-10 11:14:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidade federal de sergipe (ufs)", "alternativeName": "", "country": "br", "url": "http://www.ufs.br/", "identifier": [{"identifier": "https://ror.org/028ka0n85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ri.ufs.br/oai yes +4646 {"name": "universidade cat\u00f3lica de pernambuco: biblioteca digital de teses e disserta\u00e7\u00f5es", "language": "pt"} [] http://tede2.unicap.br:8080/ institutional [] 2022-01-12 15:36:07 2019-07-10 12:00:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade cat\u00f3lica de pernambuco", "alternativeName": "", "country": "br", "url": "http://www.unicap.br/", "identifier": [{"identifier": "https://ror.org/02ktfmz27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4728 {"name": "repository of belarusian state university of physical culture", "language": "ru"} [] http://elib.sportedu.by/ institutional [] 2022-01-12 15:36:08 2019-07-25 10:19:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "belarusian state university of physical culture", "alternativeName": "", "country": "by", "url": "http://www.sportedu.by/", "identifier": [{"identifier": "https://ror.org/02vwdd886", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4672 {"name": "utmn repository", "language": "ru"} [] https://elib.utmn.ru/jspui/ institutional [] 2022-01-12 15:36:07 2019-07-11 14:09:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of tyumen", "alternativeName": "", "country": "ru", "url": "https://www.utmn.ru", "identifier": [{"identifier": "https://ror.org/05vehv290", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://elib.utmn.ru/dspace/oai/request yes +4667 {"name": "a\u011fr\u0131 i\u0307brahim \u00e7e\u00e7en university institutional repository", "language": "tr"} [] http://acikerisim.agri.edu.tr institutional [] 2022-01-12 15:36:07 2019-07-11 11:55:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "a\u011fr\u0131 i\u0307brahim \u00e7e\u00e7en university", "alternativeName": "", "country": "tr", "url": "https://www.agri.edu.tr", "identifier": [{"identifier": "https://ror.org/054y2mb78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.agri.edu.tr/oai yes +4724 {"name": "dspace@tedu", "language": "tr"} [] https://acikerisim.tedu.edu.tr/ institutional [] 2022-01-12 15:36:08 2019-07-25 08:00:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ted university", "alternativeName": "", "country": "tr", "url": "https://www.tedu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.tedu.edu.tr/oai yes +4662 {"name": "nisantasi university", "language": "tr"} [] http://openaccess.nisantasi.edu.tr institutional [] 2022-01-12 15:36:07 2019-07-11 09:55:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nisantasi univers,ty", "alternativeName": "", "country": "tr", "url": "http://www.nisantasi.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.nisantasi.edu.tr/oai yes +4663 {"name": "openknowledge ecology repository", "language": "tr"} [] http://arsiv.ekoloji.org.tr disciplinary [] 2022-01-12 15:36:07 2019-07-11 10:10:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ekoloji kolektifi", "alternativeName": "", "country": "tr", "url": "http://ekolojikolektifi.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arsiv.ekoloji.org.tr/oai/request yes +4712 {"name": "osmaniye korkut ata university academic repository", "language": "tr"} [] https://openaccess.osmaniye.edu.tr/xmlui/ institutional [] 2022-01-12 15:36:08 2019-07-17 14:00:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "osmaniye korkut ata university", "alternativeName": "", "country": "tr", "url": "http://www.osmaniye.edu.tr", "identifier": [{"identifier": "https://ror.org/03h8sa373", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.osmaniye.edu.tr/oai yes +4668 {"name": "acibadem university repository", "language": "tr"} [] http://openaccess.acibadem.edu.tr:8080/xmlui/ institutional [] 2022-01-12 15:36:07 2019-07-11 12:09:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "acibadem mehmet ali aydinlar university", "alternativeName": "", "country": "tr", "url": "https://www.acibadem.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.acibadem.edu.tr:8080/oai/request yes +4659 {"name": "ankara \u00fcniversitesi akademik ar\u015fivi", "language": "tr"} [] https://dspace.ankara.edu.tr institutional [] 2022-01-12 15:36:07 2019-07-11 08:37:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ankara \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://acikarsiv.ankara.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4676 {"name": "bstu repository", "language": "ru"} [] http://dspace.bstu.ru/ institutional [] 2022-01-12 15:36:07 2019-07-11 15:17:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "belgorod state technological university named after v.g. shkhov", "alternativeName": "", "country": "ru", "url": "http://en.bstu.ru/", "identifier": [{"identifier": "https://ror.org/02v40vz65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.bstu.ru/oai/request yes +4692 {"name": "chulalongkorn university intellectual repository", "language": ""} [] http://cuir.car.chula.ac.th/ institutional [] 2022-01-12 15:36:07 2019-07-12 09:57:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "chulalongkorn university", "alternativeName": "", "country": "th", "url": "https://chula.ac.th/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4624 {"name": "dspace knau", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 \u0445\u043d\u0430\u0443 \u0456\u043c. \u0432.\u0432. \u0434\u043e\u043a\u0443\u0447\u0430\u0454\u0432\u0430", "language": "uk"}] http://dspace.knau.kharkov.ua/jspui/ institutional [] 2022-01-12 15:36:06 2019-07-10 08:03:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hnau", "alternativeName": "", "country": "ua", "url": "https://knau.kharkov.ua/", "identifier": [{"identifier": "https://ror.org/01z23y265", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4657 {"name": "dspace@kto karatay", "language": "tr"} [] http://acikerisim.karatay.edu.tr:8080/xmlui institutional [] 2022-01-12 15:36:07 2019-07-11 08:08:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "kto karatay university", "alternativeName": "", "country": "tr", "url": "http://karatay.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.karatay.edu.tr:8080/oai yes +4616 {"name": "institutional repository of bila tserkva national agrarian university", "language": "en"} [{"name": "\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0431\u0456\u043b\u043e\u0446\u0435\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0443", "language": "uk"}] http://rep.btsau.edu.ua institutional [] 2022-01-12 15:36:06 2019-07-09 14:10:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "bila tserkva national agrarian university", "alternativeName": "", "country": "ua", "url": "https://btsau.edu.ua/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4723 {"name": "iskenderun technical university institutional repository", "language": ""} [] http://openaccess.iste.edu.tr institutional [] 2022-01-12 15:36:08 2019-07-24 11:58:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "iskenderun technical university", "alternativeName": "", "country": "tr", "url": "https://www.iste.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.iste.edu.tr/oai yes +4656 {"name": "nisantasi university", "language": "tr"} [] http://openaccess.nisantasi.edu.tr institutional [] 2022-01-12 15:36:07 2019-07-11 07:46:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "nisantasi university", "alternativeName": "", "country": "tr", "url": "http://www.nisantasi.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.nisantasi.edu.tr/oai yes +4735 {"name": "pmu research repository", "language": "en"} [] http://research.pmu.edu.sa/jspui/ institutional [] 2022-01-12 15:36:08 2019-07-31 09:56:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "prince mohammad bin fahd university", "alternativeName": "", "country": "sa", "url": "https://www.pmu.edu.sa/default", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4716 {"name": "repositorio institucional upci", "language": ""} [] http://repositorio.upci.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-07-22 14:13:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad peruana de ciencias e inform\u00e1tica", "alternativeName": "", "country": "pe", "url": "http://portal.upci.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upci.edu.pe/oai/ yes +4729 {"name": "repositorio institucional del itba", "language": ""} [] https://ri.itba.edu.ar/ institutional [] 2022-01-12 15:36:08 2019-07-26 07:19:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto tecnol\u00f3gico de buenos aires (itba)", "alternativeName": "", "country": "ar", "url": "https://www.itba.edu.ar/", "identifier": [{"identifier": "https://ror.org/02qwadn23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4680 {"name": "repositorio utn", "language": ""} [] http://repositorio.utn.ac.cr/ institutional [] 2022-01-12 15:36:07 2019-07-11 17:11:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad t\u00e9cnica nacional", "alternativeName": "", "country": "cr", "url": "http://utn.ac.cr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4689 {"name": "repositorio institucional - concytec", "language": "es"} [] http://repositorio.concytec.gob.pe/ governmental [] 2022-01-12 15:36:07 2019-07-12 09:36:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "consejo nacional de ciencia, tecnolog\u00e3\u00ada e innovaci\u00e3\u00b3n tecnol\u00e3\u00b3gica", "alternativeName": "", "country": "pe", "url": "https://portal.concytec.gob.pe/", "identifier": [{"identifier": "https://ror.org/05c7j7r25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.concytec.gob.pe/oai/request yes +4681 {"name": "repository of the o.s. popov odessa national academy of telecommunications", "language": ""} [] https://biblio.onat.edu.ua/ institutional [] 2022-01-12 15:36:07 2019-07-11 17:58:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "o.s. popov odessa national academy of telecommunications", "alternativeName": "", "country": "ua", "url": "https://onat.edu.ua/", "identifier": [{"identifier": "https://ror.org/03fx0zp19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4710 {"name": "reposit\u00f3rio institucional da unesc", "language": "pt"} [] http://repositorio.unesc.net/ institutional [] 2022-01-12 15:36:07 2019-07-15 14:17:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidade do extremo sul catarinense (ri-unesc)", "alternativeName": "", "country": "br", "url": "http://www.unesc.net/portal/", "identifier": [{"identifier": "https://ror.org/052z2q786", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4648 {"name": "reposit\u00f3rio institucional da universidade federal de alagoas", "language": ""} [] http://www.repositorio.ufal.br/ institutional [] 2022-01-12 15:36:07 2019-07-10 12:32:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "universidade federal de alagoas", "alternativeName": "", "country": "br", "url": "https://ufal.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4695 {"name": "sivas cumhuriyet \u00e3\u0153niversitesi a\u00e3\u00a7\u00e4\u00b1k eri\u00e5\u00ffim sistemi - sivas cumhuriyet university open access system", "language": "tr"} [] http://acikerisim.cumhuriyet.edu.tr institutional [] 2022-01-12 15:36:07 2019-07-12 10:55:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "sivas cumhuriyet \u00e3\u0153niversitesi", "alternativeName": "", "country": "tr", "url": "http://www.cumhuriyet.edu.tr", "identifier": [{"identifier": "https://ror.org/04f81fm77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.cumhuriyet.edu.tr/oai yes +4625 {"name": "the catholic university of eastern africa digital repository", "language": "en"} [] http://ir.cuea.edu/jspui/ institutional [] 2022-01-12 15:36:06 2019-07-10 08:04:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "catholic university of eastern africa", "alternativeName": "", "country": "ke", "url": "http://www.cuea.edu/", "identifier": [{"identifier": "https://ror.org/02jm1re07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4742 {"name": "ufuk \u00fcniversitesi", "language": ""} [] http://acikerisim.ufuk.edu.tr:8080/xmlui institutional [] 2022-01-12 15:36:08 2019-07-31 12:52:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ufuk \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.ufuk.edu.tr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4727 {"name": "\u00e7a\u011f university institutional repository", "language": ""} [] http://openaccess.cag.edu.tr institutional [] 2022-01-12 15:36:08 2019-07-25 09:34:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "cag university", "alternativeName": "", "country": "tr", "url": "http://www.cag.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.cag.edu.tr/oai yes +4611 {"name": "k\u00fctahya dumlup\u0131nar university institutional repository", "language": "en"} [] http://openaccess.dpu.edu.tr institutional [] 2022-01-12 15:36:06 2019-06-25 09:23:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "k\u00fctahya dumlup\u0131nar university", "alternativeName": "", "country": "tr", "url": "http://www.dpu.edu.tr", "identifier": [{"identifier": "https://ror.org/03jtrja12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.dpu.edu.tr/oai yes +4731 {"name": "iris - universit\u00e0 degli studi di catania", "language": ""} [] https://www.iris.unict.it institutional [] 2022-01-12 15:36:08 2019-07-31 08:15:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universit\u00e0 degli studi di catania", "alternativeName": "", "country": "it", "url": "https://www.unict.it", "identifier": [{"identifier": "https://ror.org/03a64bh57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4730 {"name": "digital repository ikip pgri bali", "language": "en"} [] http://repo.ikippgribali.ac.id/ institutional [] 2022-01-12 15:36:08 2019-07-30 08:03:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "ikip pgri bali", "alternativeName": "", "country": "id", "url": "http://ikippgribali.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.ikippgribali.ac.id/cgi/oai2 yes +4688 {"name": "iain salatiga online repository", "language": "id"} [] http://e-repository.perpus.iainsalatiga.ac.id/ institutional [] 2022-01-12 15:36:07 2019-07-12 09:13:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "iain salatiga", "alternativeName": "", "country": "id", "url": "http://iainsalatiga.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://e-repository.perpus.iainsalatiga.ac.id/cgi/oai2 yes +4675 {"name": "the repository of karrc ras", "language": "ru"} [] http://elibrary.krc.karelia.ru/ institutional [] 2022-01-12 15:36:07 2019-07-11 14:42:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "karelian research centre of the ras", "alternativeName": "", "country": "ru", "url": "http://www.krc.karelia.ru/index.php?plang=e", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://elibrary.krc.karelia.ru/cgi/oai2 yes +4674 {"name": "document repository universitas andalas", "language": "en"} [] http://repo.unand.ac.id/ institutional [] 2022-01-12 15:36:07 2019-07-11 14:38:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "universitas andalas", "alternativeName": "", "country": "id", "url": "https://www.unand.ac.id/id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.unand.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repo.unand.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repo.unand.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repo.unand.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repo.unand.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repo.unand.ac.id/cgi/oai2 yes +4698 {"name": "digital repository iain purwokerto", "language": "id"} [] http://repository.iainpurwokerto.ac.id institutional [] 2022-01-12 15:36:07 2019-07-12 12:29:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "state institute on islamic studies purwokerto", "alternativeName": "", "country": "id", "url": "http://iainpurwokerto.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.iainpurwokerto.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.iainpurwokerto.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.iainpurwokerto.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.iainpurwokerto.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.iainpurwokerto.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.iainpurwokerto.ac.id/cgi/oai2 yes +4678 {"name": "repositorio documental y de datos undav", "language": ""} [] http://rdd.undav.edu.ar/cgi-bin/library.cgi institutional [] 2022-01-12 15:36:07 2019-07-11 16:03:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "undav", "alternativeName": "", "country": "ar", "url": "http://undav.edu.ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rdd.undav.edu.ar/cgi-bin/library.cgi?p=politicas", "type": "metadata"}, {"policy_url": "http://rdd.undav.edu.ar/cgi-bin/library.cgi?p=politicas", "type": "content"}, {"policy_url": "http://rdd.undav.edu.ar/cgi-bin/library.cgi?p=politicas", "type": "submission"}] {"name": "greenstone", "version": ""} http://rdd.undav.edu.ar/cgi-bin/oaiserver.cgi yes +4628 {"name": "a\u00e7\u0131k\u00a0eri\u015fim\u00a0ve\u00a0kurumsal\u00a0ar\u015fiv", "language": "tr"} [] https://acikarsiv.com/ institutional [] 2022-01-12 15:36:06 2019-07-10 08:47:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "parantez\u00a0teknoloji\u00a0e\u011fitim\u00a0bili\u015fim\u00a0ltd.\u00a0\u015fti", "alternativeName": "", "country": "tr", "url": "http://app.parantezteknoloji.com.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://acikarsiv.com/home/oai/ yes +4705 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es da universidade federal de alfenas", "language": "es"} [] https://bdtd.unifal-mg.edu.br:8443/ institutional [] 2022-01-12 15:36:07 2019-07-15 09:49:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal de alfenas", "alternativeName": "", "country": "br", "url": "https://www.unifal-mg.edu.br/portal/", "identifier": [{"identifier": "https://ror.org/034vpja60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4704 {"name": "hac\u0131 bayram veli \u00fcniversitesi a\u00e7\u0131k eri\u015fim ve kurumsal ar\u015fiv", "language": "tr"} [] https://acikerisim.hacibayram.edu.tr/ institutional [] 2022-01-12 15:36:07 2019-07-15 08:38:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ankara hac\u0131 bayram veli \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://hacibayram.edu.tr", "identifier": [{"identifier": "https://ror.org/05mskc574", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://acikerisim.hacibayram.edu.tr/home/oai yes +4745 {"name": "huddersfield research portal", "language": "en"} [] https://pure.hud.ac.uk/en/publications/ institutional [] 2022-01-12 15:36:08 2019-08-19 10:32:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of huddersfield", "alternativeName": "", "country": "gb", "url": "https://www.hud.ac.uk/", "identifier": [{"identifier": "https://ror.org/05t1h8f27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.hud.ac.uk/ws/oai yes +4612 {"name": "vrije universiteit amsterdam (vu amsterdam) - institutional repository", "language": "en"} [] https://research.vu.nl/ institutional [] 2022-01-12 15:36:06 2019-06-28 10:05:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "vu amsterdam", "alternativeName": "vrije universiteit amsterdam", "country": "nl", "url": "https://www.vu.nl", "identifier": [{"identifier": "https://ror.org/008xxew50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.vu.nl/ws/oai yes 17359 40565 +4744 {"name": "the uws academic portal", "language": "en"} [] https://research-portal.uws.ac.uk institutional [] 2022-01-12 15:36:08 2019-08-06 09:34:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers"] [{"name": "university of the west of scotland", "alternativeName": "", "country": "gb", "url": "https://www.uws.ac.uk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://myresearchspace.uws.ac.uk/ws/oai yes +4726 {"name": "arch", "language": "en"} [] http://arch.library.northwestern.edu institutional [] 2022-01-12 15:36:08 2019-07-25 08:24:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "northwestern\u00a0university", "alternativeName": "", "country": "us", "url": "http://northwestern.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "samvera", "version": ""} yes +4670 {"name": "fefu repository", "language": "ru"} [] https://www.dvfu.ru/library/electronic-storage/ institutional [] 2022-01-12 15:36:07 2019-07-11 13:35:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "far eastern federal university", "alternativeName": "", "country": "ru", "url": "https://www.dvfu.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "vital", "version": ""} https://elib.dvfu.ru/vital/oai/provider yes +4702 {"name": "the tokyo foundation for policy research repository", "language": ""} [] https://repo-tkfd.jp/ institutional [] 2022-01-12 15:36:07 2019-07-12 14:56:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "software"] [{"name": "the tokyo foundation for policy research", "alternativeName": "", "country": "jp", "url": "https://www.tkfd.or.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://repo-tkfd.jp/oai/ yes +4636 {"name": "the tokyo foundation for policy research repository", "language": "en"} [{"name": "\u6771\u4eac\u8ca1\u56e3\u653f\u7b56\u7814\u7a76\u6240\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repo-tkfd.jp institutional [] 2022-01-12 15:36:06 2019-07-10 10:13:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects"] [{"name": "the tokyo foundation for policy research", "alternativeName": "", "country": "jp", "url": "https://www.tkfd.or.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repo-tkfd.jp/oai yes +4653 {"name": "reposit\u00f3rio fei", "language": ""} [] https://repositorio.fei.edu.br/ institutional [] 2022-01-12 15:36:07 2019-07-10 14:38:23 ["science", "technology", "engineering"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "centro universit\u00e1rio fei", "alternativeName": "", "country": "br", "url": "https://portal.fei.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4701 {"name": "repositorio geof\u00edsico nacional", "language": "es"} [{"acronym": "regen igp"}] https://repositorio.igp.gob.pe governmental [] 2022-01-12 15:36:07 2019-07-12 14:23:51 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "instituto geosf\u00edsico del per\u00fa", "alternativeName": "", "country": "pe", "url": "https://portal.igp.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.igp.gob.pe/oai/request yes +4647 {"name": "reposit\u00f3rio institucional da ufla", "language": "pt"} [{"acronym": "riufla"}] http://repositorio.ufla.br/ institutional [] 2022-01-12 15:36:07 2019-07-10 13:16:41 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidade federal de lavras", "alternativeName": "", "country": "br", "url": "https://ufla.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4748 {"name": "fni vitenarkiv", "language": "no"} [{"name": "fni open archive", "language": "en"}] https://fni.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-08-30 11:41:53 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "fridtjof nansens institutt", "alternativeName": "", "country": "no", "url": "https://www.fni.no", "identifier": [{"identifier": "https://ror.org/04ep2t954", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fni.brage.unit.no/fni-oai/request yes +4640 {"name": "repository of vitebsk state academy of veterinary medicine", "language": "ru"} [] https://repo.vsavm.by institutional [] 2022-01-12 15:36:06 2019-07-10 10:52:50 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "ee vitebsk state academy of veterinary medicine", "alternativeName": "", "country": "by", "url": "https://www.vsavm.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repo.vsavm.by/oai/request yes +4738 {"name": "research portal for sruc, scotlands rural college", "language": ""} [] https://pure.sruc.ac.uk/ institutional [] 2022-01-12 15:36:08 2019-07-31 10:06:41 ["science"] ["journal_articles", "bibliographic_references", "datasets"] [{"name": "sruc", "alternativeName": "scotlands rural college", "country": "gb", "url": "http://www.sruc.ac.uk/", "identifier": [{"identifier": "https://ror.org/044e2ja82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +4633 {"name": "institutional repository samara university", "language": "ru"} [] http://repo.ssau.ru/ institutional [] 2022-01-12 15:36:06 2019-07-10 09:32:02 ["social sciences", "technology", "engineering"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "samara university", "alternativeName": "", "country": "ru", "url": "https://ssau.ru/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4747 {"name": "universidad global del cusco", "language": "es"} [{"name": "global university cusco", "language": "en"}] http://repositorio.uglobal.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-08-30 09:23:37 ["social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad global del cusco", "alternativeName": "", "country": "pe", "url": "https://uglobal.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uglobal.edu.pe/oai/request yes +4690 {"name": "open access repository of the scientific information service for mobility and transport research (fid move)", "language": ""} [] https://publish.fid-move.de institutional [] 2022-01-12 15:36:07 2019-07-12 09:33:05 ["social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "scientific information service for mobility and transport research (fid move)", "alternativeName": "", "country": "de", "url": "https://fid-move.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} http://publish.fid-move.de/oai/ yes +4714 {"name": "reposit\u00f3rio institucional do ifam", "language": "pt"} [] http://repositorio.ifam.edu.br institutional [] 2022-01-12 15:36:08 2019-07-19 14:08:17 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "instituto federal do amazonas", "alternativeName": "", "country": "br", "url": "http://www2.ifam.edu.br/", "identifier": [{"identifier": "https://ror.org/045nsn047", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4650 {"name": "biblioteca digital do banco nacional de desenvolvimento econ\u00f4mico e social", "language": "pt"} [] https://web.bndes.gov.br/bib/jspui/ institutional [] 2022-01-12 15:36:07 2019-07-10 13:41:12 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "banco nacional de desenvolvimento econ\u00f4mico e social", "alternativeName": "", "country": "br", "url": "https://web.bndes.gov.br/bib/jspui/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4679 {"name": "risc publications", "language": ""} [] https://risc.jku.at/publications/ institutional [] 2022-01-12 15:36:07 2019-07-11 16:43:04 ["technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "research institute for symbolic computation (risc), johannes kepler university linz, austria", "alternativeName": "", "country": "at", "url": "https://risc.jku.at/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +4683 {"name": "repositorio institucional conare", "language": "es"} [] http://repositorio.conare.ac.cr/ institutional [] 2022-01-12 15:36:07 2019-07-11 19:49:11 ["technology"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "consejo nacional de rectores", "alternativeName": "", "country": "cr", "url": "https://www.conare.ac.cr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4847 {"name": "repositorio institucional de la unsa", "language": "es"} [] http://repositorio.unsa.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-17 07:10:36 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional de san agust\u00edn de arequipa", "alternativeName": "unsa", "country": "pe", "url": "http://www.unsa.edu.pe/", "identifier": [{"identifier": "https://ror.org/01e9gfg41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unsa.edu.pe/oai/request yes +4810 {"name": "rowan digital works", "language": "en"} [] https://rdw.rowan.edu/ institutional [] 2022-01-12 15:36:09 2019-09-11 12:25:56 ["arts", "humanities", "health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rowan university", "alternativeName": "", "country": "us", "url": "https://www.rowan.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://rdw.rowan.edu/do/oai/request yes +4848 {"name": "repositorio institucional - ujbm", "language": "es"} [{"acronym": "universidad jaime bausate y meza"}] http://repositorio.bausate.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-17 07:31:11 ["arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad jaime bausate y meza", "alternativeName": "ujbm", "country": "pe", "url": "ttp://www.bausate.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.bausate.edu.pe/oai/request yes +4764 {"name": "repositorio institucional acad\u00e9mico ensfjma", "language": "es"} [{"name": "institutional repository of the national school of folklore \"jos\u00e9 mar\u00eda arguedas\"", "language": "en"}] http://repositorio.escuelafolklore.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-03 08:43:44 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "escuela nacional superior de folklore jos\u00e9 mar\u00eda arguedas", "alternativeName": "", "country": "pe", "url": "https://www.escuelafolklore.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.escuelafolklore.edu.pe/oai/ yes +4862 {"name": "repositorio digital de la universidad jos\u00e9 carlos mari\u00e1tegui", "language": "es"} [{"acronym": "repositorio institucional - ujcm"}] http://repositorio.ujcm.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-18 11:29:05 ["health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad jos\u00e9 carlos mari\u00e1tegui", "alternativeName": "ujcm", "country": "pe", "url": "https://www.ujcm.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ujcm.edu.pe/oai/request yes +4869 {"name": "repositorio institucional - universidad nacional de ucayali", "language": "es"} [{"acronym": "repositorio institucional unu"}] http://repositorio.unu.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-19 14:38:04 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional de ucayali", "alternativeName": "unu", "country": "pe", "url": "http://unu.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unu.edu.pe/oai/request yes +4832 {"name": "repositorio institucional de la universidad cat\u00f3lica los \u00e1ngeles de chimbote", "language": "es"} [{"acronym": "uladec cat\u00f3lica"}] http://repositorio.uladech.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 09:46:20 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad cat\u00f3lica los \u00e1ngeles de chimbote", "alternativeName": "uladech cat\u00f3lica", "country": "pe", "url": "https://www.uladech.edu.pe", "identifier": [{"identifier": "https://ror.org/054rm6z62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uladech.edu.pe/oai/request yes +4814 {"name": "repositorio institucional digital de la universidad nacional de piura", "language": "es"} [] http://repositorio.unp.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-11 13:24:16 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional de piura", "alternativeName": "", "country": "pe", "url": "http://www.unp.edu.pe", "identifier": [{"identifier": "https://ror.org/031vfrf75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unp.edu.pe/oai/request yes +4826 {"name": "repositorio institucional universidad nacional aut\u00f3noma de chota", "language": "es"} [] http://repositorio.unach.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-12 11:57:01 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de chota", "alternativeName": "", "country": "pe", "url": "http://unach.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unach.edu.pe/oai/request yes +4834 {"name": "repositorio institucional universidad nacional de tumbes", "language": "es"} [] http://repositorio.untumbes.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-16 09:58:47 ["health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad nacional de tumbes", "alternativeName": "untumbes", "country": "pe", "url": "http://www.untumbes.edu.pe", "identifier": [{"identifier": "https://ror.org/03wbarw78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.untumbes.edu.pe/oai/request yes +4813 {"name": "repositorio de la universidad peruana del oriente", "language": "es"} [] http://repositorio.upouni.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-11 13:18:52 ["health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad peruana del oriente", "alternativeName": "", "country": "pe", "url": "http://upouni.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upouni.edu.pe/oai/request yes +4844 {"name": "repositorio digital institucional de la universidad privada juan pablo ii", "language": "es"} [] http://repositorio.unijuanpablo.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 13:57:50 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad privada juan pablo ii", "alternativeName": "", "country": "pe", "url": "https://unijuanpablo.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unijuanpablo.edu.pe/oai/request yes +4839 {"name": "repositorio institucional digital unap", "language": "es"} [] http://repositorio.unapiquitos.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-16 12:05:09 ["health and medicine", "science", "social sciences", "technology"] ["other_special_item_types"] [{"name": "universidad nacional de la amazonia peruana", "alternativeName": "unap", "country": "pe", "url": "https://www.unapiquitos.edu.pe/", "identifier": [{"identifier": "https://ror.org/05h6yvy73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unapiquitos.edu.pe/oai/request yes +4868 {"name": "repositorio institucional de la universidad nacional de cajamarca", "language": "es"} [{"name": "institutional repository of the national university of cajamarca", "language": "en"}] http://repositorio.unc.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-19 13:32:08 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional de cajamarca", "alternativeName": "", "country": "pe", "url": "http://www.unc.edu.pe", "identifier": [{"identifier": "https://ror.org/004fs0e42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unc.edu.pe/oai/request yes +4872 {"name": "data@lincoln", "language": "en"} [] https://data.lincoln.ac.nz institutional [] 2022-01-12 15:36:09 2019-09-19 15:12:09 ["health and medicine", "science", "social sciences", "technology"] ["datasets"] [{"name": "lincoln university", "alternativeName": "", "country": "nz", "url": "http://www.lincoln.ac.nz", "identifier": [{"identifier": "https://ror.org/04ps1r162", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listrecords&metadataprefix=oai_dc&set=portal_510 yes +4755 {"name": "repository akademi farmasi putera indonesia malang", "language": "en"} [{"name": "", "language": "ia"}] http://repository.pimedu.ac.id institutional [] 2022-01-12 15:36:08 2019-09-02 13:36:31 ["health and medicine", "science"] ["journal_articles", "theses_and_dissertations"] [{"name": "akademi farmasi putera indonesia malang", "alternativeName": "", "country": "id", "url": "http://pim.siakadcloud.com/spmbfront/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.pimedu.ac.id/cgi/oai2/ yes +4752 {"name": "rbups vitenarkiv", "language": "no"} [{"name": "rbup open archive", "language": "en"}] https://r-bup.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-09-02 07:17:51 ["health and medicine", "social sciences"] ["journal_articles"] [{"name": "rbup \u00f8st og s\u00f8r", "alternativeName": "", "country": "no", "url": "https://www.r-bup.no", "identifier": [{"identifier": "https://ror.org/042s03372", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://r-bup.brage.unit.no/r-bup-oai/request yes +4859 {"name": "repositorio de la universidad privada de huancayo franklin roosevelt", "language": "es"} [] http://repositorio.uroosevelt.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-18 10:40:34 ["health and medicine"] ["theses_and_dissertations"] [{"name": "universidad privada de huancayo franklin roosevelt", "alternativeName": "", "country": "pe", "url": "http://uroosevelt.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uroosevelt.edu.pe/oai/request yes +4769 {"name": "repositorio universidad interamericana para el desarrollo", "language": "es"} [] http://repositorio.unid.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-03 14:49:11 ["health and medicine"] ["journal_articles"] [{"name": "universidad interamericana para el desarrollo", "alternativeName": "", "country": "pe", "url": "http://unid.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unid.edu.pe/oai/request yes +4750 {"name": "sihf vitenarkiv", "language": "no"} [{"name": "sihf open archive", "language": "en"}] https://sihf.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-08-30 12:05:05 ["health and medicine"] ["journal_articles"] [{"name": "sykehuset innlandet hf", "alternativeName": "", "country": "no", "url": "https://sykehuset-innlandet.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://sihf.brage.unit.no/sihf-oai/request yes +4812 {"name": "repositorio institucional de la facultad de teolog\u00eda pontificia y civil de lima", "language": "es"} [{"acronym": "repositorio institucional ftpcl"}] http://repositorio.ftpcl.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-11 12:44:53 ["humanities"] ["theses_and_dissertations"] [{"name": "facultad de teolog\u00eda pontificia y civil de lima", "alternativeName": "ftpcl", "country": "pe", "url": "http://www.ftpcl.edu.pe/", "identifier": [{"identifier": "https://ror.org/053zbv090", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ftpcl.edu.pe/oai/request yes +4824 {"name": "repositorio institucional uarm", "language": "es"} [{"name": "institutional repository - university of antonio ruiz de montoya", "language": "en"}, {"acronym": "uarm"}] http://repositorio.uarm.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-12 10:36:07 ["mathematics", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad antonio ruiz de montoya", "alternativeName": "uarm", "country": "pe", "url": "https://www.uarm.edu.pe/", "identifier": [{"identifier": "https://ror.org/02nv8wk59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uarm.edu.pe/oai/request yes +4815 {"name": "repositorio institucional unsaac", "language": "es"} [] http://repositorio.unsaac.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-11 13:30:20 ["science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad naional de san antonio abad del cusco", "alternativeName": "unsaac", "country": "pe", "url": "http://unsaac.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unsaac.edu.pe/oai/request yes +4835 {"name": "repositorio institucional de la universidad esan", "language": "es"} [] http://repositorio.esan.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 10:07:12 ["science", "social sciences", "technology"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad esan", "alternativeName": "", "country": "pe", "url": "https://www.ue.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.esan.edu.pe/oai/request yes +4753 {"name": "t\u00f8i vitenarkiv", "language": "no"} [{"name": "t\u00f8i open archive", "language": "en"}] https://toi.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-09-02 07:39:46 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "transport\u00f8konomisk institutt", "alternativeName": "t\u00f8i", "country": "no", "url": "https://www.toi.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://toi.brage.unit.no/toi-oai/request yes +4846 {"name": "aerc repository", "language": "en"} [] http://publications.aercafricalibrary.org/ institutional [] 2022-01-12 15:36:09 2019-09-16 14:56:43 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "african economic research consortium", "alternativeName": "aerc", "country": "ke", "url": "https://aercafrica.org", "identifier": [{"identifier": "https://ror.org/05fxg9b69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://publications.aercafricalibrary.org/oai/request yes +4828 {"name": "repository of institute of agricultural economics", "language": "en"} [] http://repository.iep.bg.ac.rs/ institutional [] 2022-01-12 15:36:09 2019-09-12 12:14:49 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "institute of agricultural economics", "alternativeName": "", "country": "rs", "url": "http://www.iep.bg.ac.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.iep.bg.ac.rs/cgi/oai2 yes +4845 {"name": "repository of colleges and higher education institutions", "language": "en"} [{"acronym": "revis"}] http://revis.openscience.si/info/index.php/eng aggregating [] 2022-01-12 15:36:09 2019-09-16 14:24:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "slovenian colleges and standalone higher education institutions", "alternativeName": "", "country": "si", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://revis.openscience.si/info/index.php/eng/10-vsebine-en/34-policies", "type": "metadata"}, {"policy_url": "http://revis.openscience.si/info/index.php/eng/10-vsebine-en/34-policies", "type": "data"}, {"policy_url": "http://revis.openscience.si/info/index.php/eng/10-vsebine-en/34-policies", "type": "content"}, {"policy_url": "http://revis.openscience.si/info/index.php/eng/10-vsebine-en/34-policies", "type": "submission"}] {"name": "other", "version": ""} http://revis.openscience.si/oai/oai2.php yes +4870 {"name": "repository of the maize research institute, \"zemun polje\"", "language": "en"} [{"acronym": "rik"}, {"name": "repozitorijum instituta za kukuruz \"zemun polje\"", "language": "sr"}, {"acronym": "rik"}] http://rik.mrizp.rs institutional [] 2022-01-12 15:36:09 2019-09-19 14:47:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "maize research institute zemun polje", "alternativeName": "mrizp", "country": "rs", "url": "http://mrizp.rs/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rik.mrizp.rs/files/policy-rik-en.html", "type": "metadata"}, {"policy_url": "http://rik.mrizp.rs/files/policy-rik-en.html", "type": "data"}, {"policy_url": "http://rik.mrizp.rs/files/policy-rik-en.html", "type": "content"}, {"policy_url": "http://rik.mrizp.rs/files/policy-rik-en.html", "type": "submission"}, {"policy_url": "http://rik.mrizp.rs/files/policy-rik-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rik.mrizp.rs/oai/request yes +4829 {"name": "repositorio institucional - universidad se\u00f1or de sip\u00e1n", "language": "es"} [{"acronym": "repositorio institucional uss"}] http://repositorio.uss.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-12 12:38:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad se\u00f1or de sip\u00e1n", "alternativeName": "", "country": "pe", "url": "https://www.uss.edu.pe", "identifier": [{"identifier": "https://ror.org/05p4rzq96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://www.uss.edu.pe/uss/transparencia/investigacion/directiva/directiva%20repositorio%20institucional%20v1%202019.pdf", "type": "metadata"}, {"policy_url": "http://www.uss.edu.pe/uss/transparencia/investigacion/directiva/directiva%20repositorio%20institucional%20v1%202019.pdf", "type": "content"}, {"policy_url": "http://www.uss.edu.pe/uss/transparencia/investigacion/directiva/directiva%20repositorio%20institucional%20v1%202019.pdf", "type": "submission"}, {"policy_url": "http://www.uss.edu.pe/uss/transparencia/investigacion/directiva/directiva%20repositorio%20institucional%20v1%202019.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://repositorio.uss.edu.pe/oai/request yes +4855 {"name": "scipedia", "language": "en"} [] https://www.scipedia.com aggregating [] 2022-01-12 15:36:09 2019-09-17 14:59:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "scipedia s.l.", "alternativeName": "", "country": "es", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.scipedia.com/help/openaccess", "type": "data"}, {"policy_url": "https://www.scipedia.com/help/openaccess", "type": "submission"}] {"name": "other", "version": ""} yes +4804 {"name": "repositorio universidad privada lider peruana", "language": "es"} [] http://repositorio.ulp.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-10 10:34:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad privada lider peruana sac", "alternativeName": "", "country": "pe", "url": "http://ulp.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repositorio.ulp.edu.pe/oai/request yes +4827 {"name": "repositorio digital institucional de la universidad tecnol\u00f3gica de los andes", "language": "es"} [{"acronym": "(utea)"}] http://repositorio.utea.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-12 12:06:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad tecnol\u00f3gica de los andes", "alternativeName": "", "country": "pe", "url": "https://www.utea.edu.pe/", "identifier": [{"identifier": "https://ror.org/048gbrn88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utea.edu.pe/oai/request yes +4785 {"name": "repository of brest state technical university", "language": "en"} [{"acronym": "brstu"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0431\u0440\u0435\u0441\u0442\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430", "language": "ru"}] https://rep.bstu.by/ institutional [] 2022-01-12 15:36:08 2019-09-09 10:14:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "brest state technical university", "alternativeName": "brstu", "country": "by", "url": "http://www.bstu.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rep.bstu.by/oai/request yes +4865 {"name": "mardin artuklu university institutional repository", "language": "en"} [{"acronym": "dspace@artuklu"}, {"name": "mardin artuklu \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@artuklu"}] http://acikerisim.artuklu.edu.tr institutional [] 2022-01-12 15:36:09 2019-09-19 08:50:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "mardin artuklu university", "alternativeName": "", "country": "tr", "url": "http://www.artuklu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.artuklu.edu.tr/oai/request yes +4871 {"name": "repositorio institucional de la universidad nacional del nordeste", "language": "es"} [{"acronym": "riunne"}] https://repositorio.unne.edu.ar institutional [] 2022-01-12 15:36:09 2019-09-19 14:59:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional del nordeste", "alternativeName": "unne", "country": "ar", "url": "https://www.unne.edu.ar", "identifier": [{"identifier": "https://ror.org/057ecva72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unne.edu.ar/oai/request yes +4817 {"name": "repositorio universidad inca garcilaso de la vega", "language": "es"} [{"acronym": "repositorio instituticional uigv"}] http://repositorio.uigv.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-11 14:12:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad inca garcilaso de la vega", "alternativeName": "", "country": "pe", "url": "https://www.uigv.edu.pe", "identifier": [{"identifier": "https://ror.org/03svsaq22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uigv.edu.pe/oai/request yes +4851 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es da universidade federal de campina grande", "language": "pt"} [{"acronym": "ufcg"}] http://dspace.sti.ufcg.edu.br:8080/jspui/ institutional [] 2022-01-12 15:36:09 2019-09-17 13:31:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal de campina grande", "alternativeName": "ufcg", "country": "br", "url": "http://www.ufcg.edu.br/index1.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.sti.ufcg.edu.br:8080/oai/request yes +4816 {"name": "repositorio institucional umb", "language": "es"} [{"acronym": "universidad privada juan mej\u00eda baca"}, {"name": "institutional repository", "language": "en"}] http://repositorio.umb.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-11 14:03:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad privada juan mej\u00eda baca", "alternativeName": "umb", "country": "pe", "url": "https://www.umb.edu.pe/", "identifier": [{"identifier": "https://ror.org/045qvhf73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.umb.edu.pe/oai/request yes +4778 {"name": "hatay mustafa kemal university institutional repository", "language": "en"} [] http://openaccess.mku.edu.tr institutional [] 2022-01-12 15:36:08 2019-09-06 12:24:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "hatay mustafa kemal university", "alternativeName": "", "country": "tr", "url": "https://www.mku.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.mku.edu.tr/oai/request yes +4853 {"name": "trepo - institutional repository of tampere university", "language": "en"} [] https://trepo.tuni.fi/ institutional [] 2022-01-12 15:36:09 2019-09-17 14:17:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tampere university", "alternativeName": "", "country": "fi", "url": "https://www.tuni.fi/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://trepo.tuni.fi/oai/request yes +4854 {"name": "uic open acces archive", "language": "en"} [] http://repositori.uic.es/ institutional [] 2022-01-12 15:36:09 2019-09-17 14:41:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitat internacional de catalunya", "alternativeName": "", "country": "es", "url": "https://www.uic.es/es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositori.uic.es/oai/request yes +4779 {"name": "r\u00e9pertoire des travaux de l\u2019\u00e9cole sup\u00e9rieure polytechnique", "language": "fr"} [] http://recherche.esp.sn:8080/xmlui institutional [] 2022-01-12 15:36:08 2019-09-06 12:36:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "\u00e9cole sup\u00e9rieure polytechnique", "alternativeName": "", "country": "sn", "url": "http://www.esp.sn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://recherche.esp.sn:8080/oai/request yes +4781 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es da universidade cat\u00f3lica de bras\u00edlia", "language": "pt"} [{"name": "digital library of theses and dissertations of the catholic university of brasilia", "language": "en"}] https://bdtd.ucb.br:8443/jspui/ institutional [] 2022-01-12 15:36:08 2019-09-06 14:12:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade cat\u00f3lica de bras\u00edlia", "alternativeName": "", "country": "br", "url": "https://ucb.catolica.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4803 {"name": "repositorio institucional abierto - uaeh", "language": "es"} [] https://repository.uaeh.edu.mx/bitstream/ institutional [] 2022-01-12 15:36:09 2019-09-10 10:01:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad aut\u00f3noma del estado de hidalgo", "alternativeName": "", "country": "mx", "url": "https://www.uaeh.edu.mx", "identifier": [{"identifier": "https://ror.org/031f8kt38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.uaeh.edu.mx/oai/request yes +4861 {"name": "repositorio institucional digital - universidad nacional san luis gonzaga", "language": "es"} [] http://repositorio.unica.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-18 11:18:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional san luis gonzaga", "alternativeName": "", "country": "pe", "url": "https://unica.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unica.edu.pe/oai/request yes +4789 {"name": "repositorio institucional ulc", "language": "es"} [] http://repositorio.ulc.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-09 12:39:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad latinoamericana cima", "alternativeName": "ulc", "country": "pe", "url": "http://ulc.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ulc.edu.pe/oai/request yes +4776 {"name": "repositorio institucional universidad cat\u00f3lica del oriente", "language": "es"} [] http://repositorio.uco.edu.co/ institutional [] 2022-01-12 15:36:08 2019-09-06 10:28:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad cat\u00f3lica del oriente", "alternativeName": "", "country": "co", "url": "http://www.uco.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uco.edu.co/oai/request yes +4773 {"name": "repositorio de acceso abierto buap", "language": "es"} [{"name": "buap open access repository", "language": "en"}] https://repositorioinstitucional.buap.mx institutional [] 2022-01-12 15:36:08 2019-09-05 09:43:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "benem\u00e9rita universidad aut\u00f3noma de puebla", "alternativeName": "", "country": "mx", "url": "https://www.buap.mx", "identifier": [{"identifier": "https://ror.org/03p2z7827", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorioinstitucional.buap.mx/oai/request yes +4771 {"name": "colibri: repositorio institucional de la universidad de la rep\u00fablica", "language": "es"} [{"name": "colibri: institutional repository of the university of the republic", "language": "en"}] https://www.colibri.udelar.edu.uy/jspui/ institutional [] 2022-01-12 15:36:08 2019-09-05 09:11:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de la rep\u00fablica (uruguay)", "alternativeName": "", "country": "uy", "url": "http://www.universidad.edu.uy/", "identifier": [{"identifier": "https://ror.org/030bbe882", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4780 {"name": "eiposgrado", "language": "es"} [] http://repositorio.eiposgrado.edu.pe institutional [] 2022-01-12 15:36:08 2019-09-06 13:03:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "escuela internacional de posgrado", "alternativeName": "", "country": "pe", "url": "http://eiposgrado.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.eiposgrado.edu.pe/oai/request yes +4772 {"name": "iuiu institutional repository", "language": ""} [] https://ir.iuiu.ac.ug institutional [] 2022-01-12 15:36:08 2019-09-05 09:22:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "islamic university in uganda", "alternativeName": "iuiu", "country": "ug", "url": "https://iuiu.ac.ug/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ir.iuiu.ac.ug/oai/request yes +4787 {"name": "notre dame university-louaize institutional repository", "language": "en"} [] http://ir.ndu.edu.lb/ institutional [] 2022-01-12 15:36:08 2019-09-09 12:16:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "notre dame university-louaize", "alternativeName": "", "country": "lb", "url": "http://www.ndu.edu.lb/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4766 {"name": "repositori institusi stikes bina sehat ppni", "language": "id"} [] http://repository.stikes-ppni.ac.id:8080/xmlui/ institutional [] 2022-01-12 15:36:08 2019-09-03 09:53:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "stikes bina sehat ppni", "alternativeName": "", "country": "id", "url": "http://stikes-ppni.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.stikes-ppni.ac.id:8080/oai/request?verb=identify yes +4811 {"name": "repositorio acad\u00e9mico para el acceso libre de informaci\u00f3n en ciencia, tecnolog\u00eda e innovaci\u00f3n", "language": ""} [] http://repositorio.upsc.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-11 12:39:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad privada san carlos", "alternativeName": "", "country": "pe", "url": "http://www.upsc.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upsc.edu.pe/oai/request yes +4842 {"name": "repositorio digital universidad andina del cusco", "language": "es"} [] http://repositorio.uandina.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 13:38:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad andina del cusco", "alternativeName": "", "country": "pe", "url": "http://www.uandina.edu.pe", "identifier": [{"identifier": "https://ror.org/04jzwa923", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uandina.edu.pe/oai/request yes +4788 {"name": "repositorio institucional digital", "language": "es"} [] http://repositorio.unasam.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-09 12:27:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad nacional santiago antunez de mayolo", "alternativeName": "", "country": "pe", "url": "https://unasam.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unasam.edu.pe/oai/request yes +4783 {"name": "repositorio institucional uch", "language": ""} [] http://repositorio.uch.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-06 14:41:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de ciencias y humanidades", "alternativeName": "", "country": "pe", "url": "https://www.uch.edu.pe/", "identifier": [{"identifier": "https://ror.org/01dm2pd27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uch.edu.pe/oai/request yes +4840 {"name": "repositorio institucional upeu", "language": "es"} [] https://repositorio.upeu.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 12:20:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad peruana uni\u00f3n", "alternativeName": "upeu", "country": "pe", "url": "https://www.upeu.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.upeu.edu.pe/oai/request yes +4850 {"name": "repositorio institucional universidad el bosque", "language": "es"} [] https://repositorio.unbosque.edu.co institutional [] 2022-01-12 15:36:09 2019-09-17 13:21:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad el bosque", "alternativeName": "", "country": "co", "url": "https://www.unbosque.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4838 {"name": "repositorio institucional de la academia diplom\u00e1tica del per\u00fa", "language": "es"} [] http://repositorio.adp.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 10:33:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "academia diplom\u00e1tica del per\u00fa", "alternativeName": "", "country": "pe", "url": "http://www.adp.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.adp.edu.pe/oai/request yes +4782 {"name": "repositorio institucional de la utp", "language": "es"} [] http://repositorio.utp.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-06 14:25:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad tecnol\u00f3gica del per\u00fa", "alternativeName": "utp", "country": "pe", "url": "https://www.utp.edu.pe/", "identifier": [{"identifier": "https://ror.org/0406pmf58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utp.edu.pe/oai/request yes +4777 {"name": "repositorio usel", "language": "es"} [] http://repositorio.usel.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-06 10:50:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad seminario evang\u00e9lico de lima", "alternativeName": "usel", "country": "", "url": "https://usel.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usel.edu.pe/oai/request yes +4863 {"name": "repositorio de la escuela de postgrado san francisco xavier - sfx", "language": ""} [] http://repositorio.sfx.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-18 12:52:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "escuela de postgrado san francisco xavier", "alternativeName": "sfx", "country": "pe", "url": "https://sfx.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.sfx.edu.pe/oai/request yes +4774 {"name": "repositorio institucional de la universidad aut\u00f3noma del per\u00fa", "language": "es"} [] http://repositorio.autonoma.edu.pe/ institutional [] 2022-01-12 15:36:08 2019-09-05 11:54:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad aut\u00f3noma del per\u00fa", "alternativeName": "", "country": "pe", "url": "https://www.autonoma.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.autonoma.edu.pe/oai/request yes +4786 {"name": "tudatalib", "language": ""} [] https://tudatalib.ulb.tu-darmstadt.de institutional [] 2022-01-12 15:36:08 2019-09-09 10:39:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "technische universit\u00e4t darmstadt", "alternativeName": "", "country": "de", "url": "https://www.tu-darmstadt.de", "identifier": [{"identifier": "https://ror.org/05n911h24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tudatalib.ulb.tu-darmstadt.de/oai/request yes +4866 {"name": "aksaray university institutional repository", "language": "en"} [] http://acikerisim.aksaray.edu.tr institutional [] 2022-01-12 15:36:09 2019-09-19 12:08:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "aksaray university", "alternativeName": "", "country": "tr", "url": "https://www.aksaray.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://acikerisim.aksaray.edu.tr/dokumanlar/oa_yonerge.pdf", "type": "data"}, {"policy_url": "http://acikerisim.aksaray.edu.tr/dokumanlar/oa_yonerge.pdf", "type": "content"}, {"policy_url": "http://acikerisim.aksaray.edu.tr/dokumanlar/oa_yonerge.pdf", "type": "submission"}, {"policy_url": "http://acikerisim.aksaray.edu.tr/dokumanlar/oa_yonerge.pdf", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.aksaray.edu.tr/oai/request yes +4757 {"name": "trinity college digital repository", "language": "en"} [] https://digitalrepository.trincoll.edu institutional [] 2022-01-12 15:36:08 2019-09-02 15:13:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "trinity college", "alternativeName": "", "country": "us", "url": "https://www.trincoll.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +4852 {"name": "scholarly communication and research at bates", "language": "en"} [{"acronym": "scarab"}] https://scarab.bates.edu/ institutional [] 2022-01-12 15:36:09 2019-09-17 13:46:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bates college", "alternativeName": "", "country": "us", "url": "https://www.bates.edu/", "identifier": [{"identifier": "https://ror.org/003yn7c76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://libguides.bates.edu/ld.php?content_id=36670889", "type": "metadata"}, {"policy_url": "http://libguides.bates.edu/ld.php?content_id=36670889", "type": "data"}, {"policy_url": "http://libguides.bates.edu/ld.php?content_id=36670889", "type": "content"}, {"policy_url": "http://libguides.bates.edu/ld.php?content_id=36670889", "type": "submission"}, {"policy_url": "http://libguides.bates.edu/ld.php?content_id=36670889", "type": "preservation"}] {"name": "digital_commons", "version": ""} http://libguides.bates.edu/ld.php?content_id=36670889 yes +4765 {"name": "applied research bern open repository", "language": "en"} [{"acronym": "arbor"}] https://arbor.bfh.ch/ institutional [] 2022-01-12 15:36:08 2019-09-03 09:15:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "bern university of applied sciences", "alternativeName": "", "country": "ch", "url": "https://www.bfh.ch/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://arbor.bfh.ch/cgi/oai2 yes +4858 {"name": "repository unitri", "language": "en"} [] http://repository.unitri.ac.id/ institutional [] 2022-01-12 15:36:09 2019-09-18 10:29:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universitas tribhuwana tunggadewi", "alternativeName": "unitri", "country": "id", "url": "https://unitri.ac.id", "identifier": [{"identifier": "https://ror.org/015k56t61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unitri.ac.id/cgi/oai2 yes +4867 {"name": "repository of slovak academy of sciences", "language": "en"} [] https://www.library.sk/arl-sav/ institutional [] 2022-01-12 15:36:09 2019-09-19 12:47:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central library of slovak academy of sciences", "alternativeName": "", "country": "sk", "url": "http://www.uk.sav.sk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +4761 {"name": "institutional repository of the technical university of moldova", "language": ""} [{"acronym": "irtum"}] http://repository.utm.md institutional [] 2022-01-12 15:36:08 2019-09-03 07:43:29 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "technical university of moldova", "alternativeName": "", "country": "md", "url": "https://utm.md", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://http:/repository.utm.md/oai/request yes +4821 {"name": "repositorio institucional del iiap", "language": "es"} [{"acronym": "instituto de investigaciones de la amazon\u00eda peruana"}] http://repositorio.iiap.org.pe institutional [] 2022-01-12 15:36:09 2019-09-12 09:45:24 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto de investigaciones de la amazon\u00eda peruana", "alternativeName": "", "country": "pe", "url": "http://www.iiap.org.pe", "identifier": [{"identifier": "https://ror.org/010ywy128", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.iiap.org.pe/oai/request yes +4760 {"name": "reposit\u00f3rio institucional do instituto federal do esp\u00edrito santo", "language": "pt"} [{"acronym": "ri/ifes"}, {"name": "institutional repository of the federal institute of the holy spirit", "language": "en"}] http://repositorio.ifes.edu.br/ institutional [] 2022-01-12 15:36:08 2019-09-03 07:25:15 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "instituto federal do esp\u00edrito santo", "alternativeName": "", "country": "br", "url": "https://ifes.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ifes.edu.br/oai/request yes +4820 {"name": "repositorio - universidad nacional de ja\u00e9n", "language": "es"} [{"acronym": "unj"}] http://repositorio.unj.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-12 09:31:30 ["science", "technology"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad nacional de ja\u00e9n", "alternativeName": "", "country": "pe", "url": "https://unj.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unj.edu.pe/oai/request yes +4856 {"name": "repository of publications of institute of geophysics, polish academy of sciences", "language": "en"} [] https://dspace.igf.edu.pl/xmlui/handle/123456789/1 institutional [] 2022-01-12 15:36:09 2019-09-18 09:44:45 ["science", "technology"] ["journal_articles"] [{"name": "institute of geophysics, polish academy of sciences", "alternativeName": "igf pan", "country": "pl", "url": "https://www.igf.edu.pl/home.php", "identifier": [{"identifier": "https://ror.org/04rc9d057", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4801 {"name": "repositorio institucional unitru", "language": "es"} [] http://dspace.unitru.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-10 09:21:31 ["science", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad nacional de trujillo", "alternativeName": "", "country": "pe", "url": "http://unitru.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.unitru.edu.pe/oai/request yes +4841 {"name": "repositorio unajma", "language": "es"} [] http://repositorio.unajma.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-16 12:52:27 ["science", "technology"] ["theses_and_dissertations"] [{"name": "universidad nacional jos\u00e9 mar\u00eda arguedas", "alternativeName": "unajma", "country": "pe", "url": "http://www.unajma.edu.pe", "identifier": [{"identifier": "https://ror.org/0030hgr47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unajma.edu.pe/oai/request yes +4823 {"name": "repositorio institucional - usdg", "language": "es"} [] http://repositorio.usdg.edu.pe/ institutional [] 2022-01-12 15:36:09 2019-09-12 10:24:08 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "universidad santo domingo de guzm\u00e1n", "alternativeName": "usdg", "country": "pe", "url": "https://www.usdg.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usdg.edu.pe/oai/request yes +4790 {"name": "repositorio institucional digital unas", "language": "es"} [] http://repositorio.unas.edu.pe institutional [] 2022-01-12 15:36:08 2019-09-09 12:47:47 ["science", "technology"] ["theses_and_dissertations"] [{"name": "universidad nacional agraria de la selva", "alternativeName": "unas", "country": "pe", "url": "https://portal.unas.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unas.edu.pe/oai/request yes +4822 {"name": "repositorio institucional utec", "language": "es"} [{"name": "institutional repository - universidad de ingenier\u00eda y tecnolog\u00eda", "language": "en"}, {"acronym": "utec"}] https://repositorio.utec.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-12 09:54:41 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de ingenier\u00eda y tecnolog\u00eda", "alternativeName": "utec", "country": "pe", "url": "https://www.utec.edu.pe/", "identifier": [{"identifier": "https://ror.org/040gykh71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.utec.edu.pe/oai/request yes +4794 {"name": "repositorio institucional universidad polit\u00e9cnica amaz\u00f3nica", "language": "es"} [{"name": "amazon polytechnic university", "language": "en"}] http://repositorio.upa.edu.pe institutional [] 2022-01-12 15:36:08 2019-09-09 13:32:20 ["science", "technology"] ["theses_and_dissertations"] [{"name": "universidad polit\u00e9cnica amaz\u00f3nica", "alternativeName": "upa", "country": "pe", "url": "https://upa.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upa.edu.pe/oai/request yes +4762 {"name": "nina brage", "language": "no"} [] https://brage.nina.no institutional [] 2022-01-12 15:36:08 2019-09-03 07:58:45 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "norsk institutt for naturforskning", "alternativeName": "", "country": "no", "url": "https://nina.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://brage.nina.no/nina-oai/request yes +4818 {"name": "repositorio institucional - servicio nacional de meteorolog\u00eda e hidrolog\u00eda del per\u00fa", "language": "es"} [{"acronym": "senamhi"}] http://repositorio.senamhi.gob.pe governmental [] 2022-01-12 15:36:09 2019-09-11 14:39:37 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "servicio nacional de meteorolog\u00eda e hidrolog\u00eda del per\u00fa", "alternativeName": "senamhi", "country": "pe", "url": "https://www.senamhi.gob.pe", "identifier": [{"identifier": "https://ror.org/05h7xpn20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.senamhi.gob.pe/oai/request yes +4759 {"name": "oa@inaf - istituto nazionale di astrofisica", "language": "it"} [] https://openaccess.inaf.it institutional [] 2022-01-12 15:36:08 2019-09-02 15:28:13 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "datasets", "software", "other_special_item_types"] [{"name": "istituto nazionale di astrofisica", "alternativeName": "inaf", "country": "it", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.inaf.it/oai/request yes +4798 {"name": "ruralis brage", "language": "no"} [] https://ruralis.brage.unit.no institutional [] 2022-01-12 15:36:09 2019-09-10 08:44:16 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ruralis \u2013 institutt for rural- og regionalforskning", "alternativeName": "", "country": "no", "url": "https://ruralis.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ruralis.brage.unit.no/ruralis-oai/request yes +4784 {"name": "herbario paul standley", "language": "es"} [] https://herbario.zamorano.edu institutional [] 2022-01-12 15:36:08 2019-09-09 10:01:01 ["science"] ["other_special_item_types"] [{"name": "universidad zamorano", "alternativeName": "", "country": "hn", "url": "https://www.zamorano.edu", "identifier": [{"identifier": "https://ror.org/01kt2cx88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://herbario.zamorano.edu/oai/request yes +4830 {"name": "repositorio institucional inia", "language": "es"} [] http://repositorio.inia.gob.pe governmental [] 2022-01-12 15:36:09 2019-09-12 13:05:34 ["science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto nacional de innovaci\u00f3n agraria", "alternativeName": "inia", "country": "pe", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.inia.gob.pe/oai/request yes +4763 {"name": "niva open access archive", "language": "en"} [] https://niva.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-09-03 08:06:40 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "norsk institutt for vannforskning", "alternativeName": "", "country": "no", "url": "https://www.niva.no/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://niva.brage.unit.no/niva-oai/request yes +4802 {"name": "repositorio institucional del oefa", "language": ""} [] https://repositorio.oefa.gob.pe/ institutional [] 2022-01-12 15:36:09 2019-09-10 09:30:03 ["science"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "organismo de evaluaci\u00f3n y fiscalizaci\u00f3n ambiental", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/minam/oefa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.oefa.gob.pe/oai/request yes +4792 {"name": "repositorio nacional del serfor", "language": "es"} [] http://repositorio.serfor.gob.pe/ institutional [] 2022-01-12 15:36:08 2019-09-09 13:16:10 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "servicio nacional forestal y fauna silvestre", "alternativeName": "", "country": "pe", "url": "https://www.serfor.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.serfor.gob.pe/oai/request yes +4768 {"name": "portal de conocimiento", "language": "es"} [] http://fp.une.edu.py:8080/jspui/ institutional [] 2022-01-12 15:36:08 2019-09-03 13:21:14 ["social sciences", "technology"] ["journal_articles"] [{"name": "universidad nacional del este", "alternativeName": "", "country": "py", "url": "http://www.une.edu.py/web/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://fp.une.edu.py:8080/oai/request yes +4819 {"name": "institutional repository of institute of social sciences", "language": "en"} [{"acronym": "iriss"}] http://iriss.idn.org.rs institutional [] 2022-01-12 15:36:09 2019-09-11 14:56:04 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "institute of social sciences", "alternativeName": "", "country": "rs", "url": "https://www.idn.org.rs/", "identifier": [{"identifier": "https://ror.org/01dx39x96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://iriss.idn.org.rs/politics.html", "type": "metadata"}, {"policy_url": "http://iriss.idn.org.rs/politics.html", "type": "data"}, {"policy_url": "http://iriss.idn.org.rs/politics.html", "type": "content"}, {"policy_url": "http://iriss.idn.org.rs/politics.html", "type": "submission"}, {"policy_url": "http://iriss.idn.org.rs/politics.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://iriss.idn.org.rs/cgi/oai2 yes +4751 {"name": "institutt for samfunnsforskning - vitenarkiv", "language": "no"} [{"name": "institute for social research - open archive", "language": "en"}] https://samfunnsforskning.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-08-30 15:06:03 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "institutt for samfunnsforskning", "alternativeName": "", "country": "no", "url": "https://www.samfunnsforskning.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://samfunnsforskning.brage.unit.no/samfunnsforskning-oai/request yes +4797 {"name": "norges banks vitenarkiv", "language": "no"} [{"name": "the central bank of norways open archive", "language": "en"}] https://norges-bank.brage.unit.no institutional [] 2022-01-12 15:36:08 2019-09-10 08:30:34 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "norges bank", "alternativeName": "", "country": "no", "url": "https://www.norges-bank.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://norges-bank.brage.unit.no/norges-bank-oai/request yes +4849 {"name": "repositorio escuela de postgrado neumann", "language": "es"} [] https://repositorio.epneumann.edu.pe/xmlui institutional [] 2022-01-12 15:36:09 2019-09-17 08:03:29 ["social sciences"] ["theses_and_dissertations"] [{"name": "escuela de postgrado neumann", "alternativeName": "", "country": "pe", "url": "https://www.epneumann.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.neumann.edu.pe/oai/request yes +4874 {"name": "cispa helmholtz center for information security publication database", "language": "en"} [] https://publications.cispa.saarland institutional [] 2022-01-12 15:36:09 2019-09-20 07:13:00 ["technology"] ["journal_articles"] [{"name": "helmholtz center for information security", "alternativeName": "cispa", "country": "de", "url": "https://cispa.saarland", "identifier": [{"identifier": "https://ror.org/02njgxr09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://publications.cispa.saarland/cgi/oai2 yes +4806 {"name": "repositorio institucional de la universidad cat\u00f3lica de trujillo benedicto xvi", "language": "es"} [] http://repositorio.uct.edu.pe/ institutional [] 2021-02-18 18:03:05 2019-09-10 12:55:08 [] ["theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de trujillo benedicto xvi", "alternativeName": "", "country": "pe", "url": "http://www.uct.edu.pe", "identifier": [{"identifier": "https://ror.org/05ggcs531", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uct.edu.pe/oai/request yes +4837 {"name": "repositorio institucional unfv", "language": "es"} [] http://repositorio.unfv.edu.pe institutional [] 2021-05-21 18:04:08 2019-09-16 10:14:58 [] ["theses_and_dissertations"] [{"name": "universidad nacional federico villarreal", "alternativeName": "unfv", "country": "pe", "url": "http://www.unfv.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unfv.edu.pe/oai/request yes +4891 {"name": "repositorio institucional - une", "language": "es"} [{"acronym": "repositorio institucional de la universidad nacional de educacion institucional - une"}] https://repositorio.une.edu.pe institutional [] 2022-01-12 15:36:10 2019-09-27 08:05:35 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad nacional de educaci\u00f3n enrique guzm\u00e1n y valle", "alternativeName": "une", "country": "pe", "url": "http://www.une.edu.pe", "identifier": [{"identifier": "https://ror.org/0431avj27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.une.edu.pe/oai/request yes +5143 {"name": "royal college of music research online", "language": "en"} [{"acronym": "rcm"}] http://researchonline.rcm.ac.uk institutional [] 2022-01-12 15:36:11 2019-09-27 11:20:20 ["arts"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "royal college of music", "alternativeName": "rcm", "country": "gb", "url": "https://www.rcm.ac.uk/", "identifier": [{"identifier": "https://ror.org/04kwn3124", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://researchonline.rcm.ac.uk/cgi/oai2 yes 96 1612 +5061 {"name": "digital commons @ ru", "language": "en"} [] http://digitalcommons.rockefeller.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:06:27 ["health and medicine", "science", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the rockefeller university", "alternativeName": "", "country": "us", "url": "https://www.rockefeller.edu", "identifier": [{"identifier": "https://ror.org/0420db125", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.rockefeller.edu/do/oai yes 558 4065 +4884 {"name": "repositorio de la universidad peruana del centro", "language": "es"} [] http://repositorio.upecen.edu.pe/ institutional [] 2022-01-12 15:36:10 2019-09-25 09:07:09 ["health and medicine", "science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad peruana del centro", "alternativeName": "", "country": "pe", "url": "https://www.upecen.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upecen.edu.pe/oai/request yes +4885 {"name": "repositorio de la universidad mar\u00eda auxiliadora", "language": "es"} [] http://repositorio.uma.edu.pe institutional [] 2022-01-12 15:36:10 2019-09-25 09:17:01 ["health and medicine", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad mar\u00eda auxiliadora", "alternativeName": "uma", "country": "pe", "url": "https://uma.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uma.edu.pe/oai/request yes +5451 {"name": "the institute of cancer research publications repository", "language": "en"} [] https://repository.icr.ac.uk institutional [] 2022-01-12 15:36:11 2019-09-27 12:19:32 ["health and medicine"] ["journal_articles"] [{"name": "the institute of cancer research", "alternativeName": "", "country": "gb", "url": "https://www.icr.ac.uk", "identifier": [{"identifier": "https://ror.org/043jzw605", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://publications.icr.ac.uk/cgi/oai2 yes 1933 4424 +4877 {"name": "farfar - pharmacy repository", "language": "en"} [] http://farfar.pharmacy.bg.ac.rs institutional [] 2022-01-12 15:36:10 2019-09-23 09:53:49 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://bg.ac.rs/en/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://farfar.pharmacy.bg.ac.rs/files/policy-farfar-en.html", "type": "metadata"}, {"policy_url": "http://farfar.pharmacy.bg.ac.rs/files/policy-farfar-en.html", "type": "data"}, {"policy_url": "http://farfar.pharmacy.bg.ac.rs/files/policy-farfar-en.html", "type": "content"}, {"policy_url": "http://farfar.pharmacy.bg.ac.rs/files/policy-farfar-en.html", "type": "submission"}, {"policy_url": "http://farfar.pharmacy.bg.ac.rs/files/policy-farfar-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://farfar.pharmacy.bg.ac.rs/oai/request yes +5376 {"name": "kirchlicher dokumentenserver", "language": "de"} [{"acronym": "kidoks"}] https://kidoks.bsz-bw.de institutional [] 2022-01-12 15:36:11 2019-09-27 12:02:19 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "arbeitsgemeinschaft katholisch-theologischer bibliotheken", "alternativeName": "akthb", "country": "de", "url": "http://www.akthb.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://kidoks.bsz-bw.de/oai yes 729 1382 +4886 {"name": "biblioteca digital de teses e disserta\u00e7\u00f5es puc-campinas", "language": "pt"} [{"acronym": "tede"}] http://tede.bibliotecadigital.puc-campinas.edu.br institutional [] 2022-01-12 15:36:10 2019-09-25 13:57:01 ["humanities", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "pontif\u00edcia universidade cat\u00f3lica de campinas", "alternativeName": "puc-campinas", "country": "br", "url": "https://www.puc-campinas.edu.br/", "identifier": [{"identifier": "https://ror.org/01wjxn842", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4928 {"name": "xavier university", "language": "en"} [] http://www.exhibit.xavier.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:44:14 ["humanities"] ["learning_objects", "other_special_item_types"] [{"name": "xavier university", "alternativeName": "", "country": "us", "url": "https://www.xavier.edu/", "identifier": [{"identifier": "https://ror.org/00f266q65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://www.exhibit.xavier.edu/do/oai/ yes 2178 27500 +4916 {"name": "epublications at the regis university", "language": "en"} [] http://epublications.regis.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:42:10 ["humanities"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "regis university", "alternativeName": "", "country": "us", "url": "https://www.regis.edu", "identifier": [{"identifier": "https://ror.org/043ae9h44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://epublications.regis.edu/do/oai yes 2058 2545 +4889 {"name": "sciencepaper online", "language": "en"} [] http://www.paper.edu.cn aggregating [] 2022-01-12 15:36:10 2019-09-26 08:32:08 ["science", "social sciences", "technology"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sciencepaper online, science and technology development center, ministry of education of the peoples republic of china", "alternativeName": "", "country": "cn", "url": "http://www.cutech.edu.cn/cn/index.htm", "identifier": [{"identifier": "https://ror.org/05w1m1q56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +5166 {"name": "research institute of agricultural economics", "language": "en"} [] http://repo.aki.gov.hu institutional [] 2022-01-12 15:36:11 2019-09-27 11:27:15 ["science", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "research institute of agricultural economics", "alternativeName": "", "country": "hu", "url": "https://www.gfar.net", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.aki.gov.hu/cgi/oai2 yes 2085 3049 +5057 {"name": "nc digital online collection of knowledge and scholarship", "language": "en"} [{"acronym": "nc docks"}] https://libres.uncg.edu/ir aggregating [] 2022-01-12 15:36:10 2019-09-27 11:05:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the university of north carolina system", "alternativeName": "unc system", "country": "us", "url": "https://www.northcarolina.edu", "identifier": [{"identifier": "https://ror.org/0566a8c54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://libres.uncg.edu/ir/oai/oai.aspx yes 22247 28942 +5167 {"name": "research@leeds trinity university", "language": "en"} [] http://research.leedstrinity.ac.uk institutional [] 2022-01-12 15:36:11 2019-09-27 11:27:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "leeds trinity university", "alternativeName": "", "country": "gb", "url": "http://www.leedstrinity.ac.uk", "identifier": [{"identifier": "https://ror.org/02x80b031", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://research.leedstrinity.ac.uk/ws/oai?verb=identify yes 313 2857 +5142 {"name": "royal holloway university of london", "language": "en"} [] https://pure.royalholloway.ac.uk institutional [] 2022-01-12 15:36:11 2019-09-27 11:20:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "royal holloway university of london", "alternativeName": "", "country": "gb", "url": "https://www.royalholloway.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://pure.royalholloway.ac.uk/ws/oai yes 6602 8044 +5226 {"name": "repositorio universidad de la costa", "language": "es"} [] http://repositorio.cuc.edu.co institutional [] 2022-01-12 15:36:11 2019-09-27 11:32:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "universidad de la costa", "alternativeName": "cuc", "country": "co", "url": "https://www.cuc.edu.co", "identifier": [{"identifier": "https://ror.org/01v5nhr20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repositorio.cuc.edu.co/oai/request? yes 1372 6631 +5072 {"name": "temaria", "language": "es"} [] http://temaria.net/simple.php aggregating [] 2022-01-12 15:36:10 2019-09-27 11:08:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "universitat de barcelona", "alternativeName": "ub", "country": "es", "url": "https://www.ub.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://temaria.net/metadatos.php yes 4168 +5077 {"name": "cologne open science", "language": "en"} [] https://cos.bibl.th-koeln.de institutional [] 2022-01-12 15:36:10 2019-09-27 11:09:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "th koln technology arts sciences", "alternativeName": "", "country": "de", "url": "https://www.th-koeln.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://cos.bibl.th-koeln.de/oai yes 144 164 +4925 {"name": "arxiv", "language": "en"} [] https://arxiv.org institutional [] 2022-01-12 15:36:10 2019-09-27 10:43:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "cornell university", "alternativeName": "", "country": "us", "url": "https://www.cornell.edu", "identifier": [{"identifier": "https://ror.org/05bnh6r87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://export.arxiv.org/oai2 yes 1817531 1123 +5109 {"name": "federal senate digital library", "language": "en"} [{"acronym": "bdsf"}, {"name": "biblioteca digital do senado federal", "language": "pt"}, {"acronym": "bdsf"}] https://www2.senado.leg.br/bdsf governmental [] 2022-01-12 15:36:10 2019-09-27 11:15:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "federal senate", "alternativeName": "", "country": "br", "url": "https://www12.senado.leg.br/hpsenado", "identifier": [{"identifier": "https://ror.org/05bdz6951", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www2.senado.gov.br/bdsf-oai/request yes 281838 +4883 {"name": "selcuk university institutional repository", "language": "en"} [{"acronym": "dspace@sel\u00e7uk"}, {"name": "sel\u00e7uk \u00fcniversitesi acik erisim sistemi", "language": "tr"}, {"acronym": "dspace@sel\u00e7uk"}] http://acikerisim.selcuk.edu.tr institutional [] 2022-01-12 15:36:10 2019-09-25 08:43:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "sel\u00e7uk university", "alternativeName": "", "country": "tr", "url": "http://www.kutuphane.selcuk.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.selcuk.edu.tr/oai/request yes +4920 {"name": "eeast-ukrnuir (electronic volodymyr dahl east ukrainian national university institutional repository)", "language": "en"} [{"acronym": "eeast-ukrnuir"}, {"name": "eeast-ukrnuir \u0432\u043d\u0443 \u0438\u043c. \u0432. \u0434\u0430\u043b\u044f (\u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0438\u0439 \u0432\u043e\u0441\u0442\u043e\u0447\u043d\u043e\u0443\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u0438\u043c. \u0432. \u0434\u0430\u043b\u044f)", "language": "ru"}, {"acronym": "eeast-ukrnuir"}, {"name": "eeast-ukrnuir \u0441\u043d\u0443 \u0456\u043c. \u0432.\u0434\u0430\u043b\u044f (\u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0456\u0439\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439 \u0441\u0445\u0456\u0434\u043d\u043e\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0456\u043c. \u0432\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440\u0430 \u0434\u0430\u043b\u044f)", "language": "uk"}, {"acronym": "eeast-ukrnuir"}] http://dspace.snu.edu.ua:8080/jspui/?locale=uk institutional [] 2022-01-12 15:36:10 2019-09-27 10:42:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "east ukrainian volodymyr dahl national university", "alternativeName": "snu", "country": "ua", "url": "https://snu.edu.ua", "identifier": [{"identifier": "https://ror.org/03arvq761", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.snu.edu.ua:8080/oai/request yes 981 1225 +5334 {"name": "ministry of education of peru - institutional repository", "language": "en"} [{"name": "ministerio de educaci\u00f3n del per\u00fa - repositorio institucional", "language": "es"}] http://repositorio.minedu.gob.pe governmental [] 2022-01-12 15:36:11 2019-09-27 11:55:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "ministry of education of peru", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/minedu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.minedu.gob.pe/oai/request?verb=identify yes 935 5040 +4875 {"name": "repositorio institucional universidad sise", "language": "es"} [] http://repositorio.universidadsise.edu.pe institutional [] 2022-01-12 15:36:09 2019-09-20 08:00:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad sise", "alternativeName": "", "country": "pe", "url": "https://www.universidadsise.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.universidadsise.edu.pe/oai/request yes +4876 {"name": "haramaya university institutional repository", "language": "en"} [] http://ir.haramaya.edu.et/hru institutional [] 2022-01-12 15:36:09 2019-09-20 08:55:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "haramaya university", "alternativeName": "", "country": "et", "url": "http://www.haramaya.edu.et", "identifier": [{"identifier": "https://ror.org/059yk7s89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +4899 {"name": "turkeys information and records management section", "language": "en"} [{"name": "t\u00fcrkiye bilgi ve belge y\u00f6netimi b\u00f6l\u00fcmleri", "language": "tr"}] http://bbytezarsivi.hacettepe.edu.tr institutional [] 2022-01-12 15:36:10 2019-09-27 10:39:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "hacettepe university", "alternativeName": "", "country": "tr", "url": "https://www.hacettepe.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bbytezarsivi.hacettepe.edu.tr/oai/request yes 12 541 +4880 {"name": "up baguio open digital repository", "language": "en"} [] http://dspace.upb.edu.ph/jspui/ institutional [] 2022-01-12 15:36:10 2019-09-24 08:28:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of the philippines", "alternativeName": "", "country": "ph", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +5231 {"name": "royal academy of history digital library", "language": "en"} [{"name": "real academia de la historia biblioteca digital.", "language": "es"}] http://bibliotecadigital.rah.es institutional [] 2022-01-12 15:36:11 2019-09-27 11:34:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "royal academy of history", "alternativeName": "", "country": "es", "url": "https://www.rah.es/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digibib", "version": ""} http://bibliotecadigital.rah.es/dgbrah/i18n/oai/oai_bibliotecadigital.rah.es.cmd yes 23008 +5355 {"name": "digital commons @ liu", "language": "en"} [{"acronym": "liu"}] http://digitalcommons.liu.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:58:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "long island university", "alternativeName": "liu", "country": "us", "url": "https://www.liu.edu", "identifier": [{"identifier": "https://ror.org/0324fzh77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.liu.edu/do/oai/ yes 225 973 +5352 {"name": "the lsu digital commons", "language": "en"} [{"acronym": "lsu"}] http://digitalcommons.lsu.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:58:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "louisiana state university", "alternativeName": "lsu", "country": "us", "url": "https://www.lsu.edu", "identifier": [{"identifier": "https://ror.org/05ect4e57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.lsu.edu/do/oai yes 11320 35800 +5093 {"name": "southeastern university", "language": "en"} [{"acronym": "seu"}] http://firescholars.seu.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:13:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "southeastern university", "alternativeName": "", "country": "us", "url": "https://www.seu.edu/", "identifier": [{"identifier": "https://ror.org/01b25wz12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://firescholars.seu.edu/do/oai/ yes 102 390 +5092 {"name": "scholarly publications and repository of knowledge", "language": "en"} [{"acronym": "spark"}] https://spark.siue.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:12:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southern illinois university edwardsville", "alternativeName": "siue", "country": "us", "url": "http://siue.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://spark.siue.edu/do/oai yes 2187 3093 +5379 {"name": "digital commons - an institutional repository", "language": "en"} [] https://digitalcommons.kettering.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:02:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kettering university", "alternativeName": "", "country": "um", "url": "https://www.kettering.edu", "identifier": [{"identifier": "https://ror.org/03rcspa57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.kettering.edu/do/oai yes 117 1873 +5127 {"name": "digitalcommons@sarah lawrence", "language": "en"} [] http://digitalcommons.slc.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:18:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sarah lawrence college", "alternativeName": "slc", "country": "us", "url": "https://www.sarahlawrence.edu", "identifier": [{"identifier": "https://ror.org/04sxj4848", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.slc.edu/do/oai yes 144 893 +5316 {"name": "nwcommons", "language": "en"} [] http://nwcommons.nwciowa.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:53:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "northwestern college", "alternativeName": "", "country": "us", "url": "https://www.nwciowa.edu", "identifier": [{"identifier": "https://ror.org/05x31d492", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes 1222 2097 +4970 {"name": "research online", "language": "en"} [] https://ir.stthomas.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:48:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of minesota", "alternativeName": "", "country": "us", "url": "https://www.stthomas.edu", "identifier": [{"identifier": "https://ror.org/05vfxvp80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://ir.stthomas.edu/do/oai yes 2005 7026 +4974 {"name": "scholarship & creative works @ digital unc", "language": "en"} [] https://digscholarship.unco.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of northern colorado", "alternativeName": "unc", "country": "us", "url": "https://www.unco.edu", "identifier": [{"identifier": "https://ror.org/016bysn57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digscholarship.unco.edu/do/oai yes 1585 3709 +4971 {"name": "scholarship repository university of san francsico", "language": "en"} [] http://repository.usfca.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:49:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of san francisco", "alternativeName": "", "country": "us", "url": "https://www.usfca.edu", "identifier": [{"identifier": "https://ror.org/029m7xn54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://repository.usfca.edu/do/oai yes 4419 6717 +4963 {"name": "umw digital commons", "language": "en"} [] http://dc.uwm.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:48:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "university of wisconsin-milwaukee", "alternativeName": "", "country": "us", "url": "https://uwm.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://dc.uwm.edu/do/oai/ yes 3623 5980 +4979 {"name": "university of minnesota law school", "language": "en"} [] http://scholarship.law.umn.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects", "other_special_item_types"] [{"name": "university of minnesota", "alternativeName": "umn", "country": "us", "url": "https://twin-cities.umn.edu", "identifier": [{"identifier": "https://ror.org/017zqws13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.umn.edu/do/oai yes 6505 6978 +4936 {"name": "whitworth digital commons", "language": "en"} [] https://digitalcommons.whitworth.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:44:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "whitworth university", "alternativeName": "", "country": "us", "url": "https://www.whitworth.edu/cms", "identifier": [{"identifier": "https://ror.org/04j9d0s43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.whitworth.edu/do/oai yes 1396 7418 +4962 {"name": "wyoming scholars repository", "language": "en"} [] https://repository.uwyo.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:48:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of wyoming", "alternativeName": "uwyo", "country": "us", "url": "http://www.uwyo.edu", "identifier": [{"identifier": "https://ror.org/01485tq96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.uwyo.edu/do/oai yes 6751 +4991 {"name": "digital commons @ du", "language": "en"} [] http://digitalcommons.du.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:51:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of denver", "alternativeName": "", "country": "us", "url": "https://www.du.edu", "identifier": [{"identifier": "https://ror.org/04w7skc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.du.edu/do/oai yes 1832 9998 +4976 {"name": "digital repository @ the university of new mexico", "language": "en"} [] http://digitalrepository.unm.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of new mexico", "alternativeName": "unm", "country": "us", "url": "http://www.unm.edu", "identifier": [{"identifier": "https://ror.org/05fs6jp91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalrepository.unm.edu/do/oai yes 77787 131414 +4932 {"name": "digital commons @ wofford college", "language": "en"} [] https://digitalcommons.wofford.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:44:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "wofford college", "alternativeName": "", "country": "us", "url": "https://www.wofford.edu", "identifier": [{"identifier": "https://ror.org/04dzs7b08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.wofford.edu/do/oai yes 1231 2136 +4977 {"name": "irl @the university of missouri-st. louis institutional repository library", "language": "en"} [] http://irl.umsl.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of missouri-st.louis", "alternativeName": "umsl", "country": "us", "url": "https://missouri.edu", "identifier": [{"identifier": "https://ror.org/02ymw8z06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://irl.umsl.edu/do/oai yes 3090 3585 +5413 {"name": "ithaca college", "language": "en"} [] http://digitalcommons.ithaca.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:15:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "ithaca college", "alternativeName": "", "country": "us", "url": "https://www.ithaca.edu/", "identifier": [{"identifier": "https://ror.org/01kw1gj07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.ithaca.edu/do/oai/ yes 9756 13530 +5361 {"name": "lux scholarship and creativity at lawrence university", "language": "en"} [] http://lux.lawrence.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:00:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "lawrence university", "alternativeName": "", "country": "us", "url": "http://www.lawrence.edu", "identifier": [{"identifier": "https://ror.org/005w9jb47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://lux.lawrence.edu/do/oai yes 4680 5520 +5332 {"name": "mc law digital commons", "language": "en"} [] http://dc.law.mc.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:55:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "mississippi college school of law", "alternativeName": "mc law", "country": "us", "url": "http://www.law.mc.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://dc.law.mc.edu/do/oai yes 255 972 +5347 {"name": "mushare scholarship, history, art, research, and engagement", "language": "en"} [] http://mushare.marian.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:57:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "marian university", "alternativeName": "mu", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://mushare.marian.edu/do/oai yes 756 1992 +5333 {"name": "minnesota state university, moorhead", "language": "en"} [] http://red.mnstate.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:55:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "minnesota state university moorhead", "alternativeName": "", "country": "us", "url": "https://www.mnstate.edu/", "identifier": [{"identifier": "https://ror.org/03msdae35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://red.mnstate.edu/do/oai/ yes 1194 3247 +5293 {"name": "olivet nazarene university", "language": "en"} [] https://digitalcommons.olivet.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:47:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "olivet nazarene university", "alternativeName": "", "country": "us", "url": "https://www.olivet.edu/", "identifier": [{"identifier": "https://ror.org/038nb9c73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.olivet.edu/cgi/oai2.cgi yes 4071 6420 +5279 {"name": "otterbein university", "language": "en"} [] http://digitalcommons.otterbein.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:45:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "otterbein university", "alternativeName": "", "country": "us", "url": "https://www.otterbein.edu/", "identifier": [{"identifier": "https://ror.org/0384yev14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.otterbein.edu/do/oai yes 2706 10667 +5267 {"name": "pittsburg state university", "language": "en"} [] http://digitalcommons.pittstate.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:41:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "pittsburg state university", "alternativeName": "", "country": "us", "url": "https://www.pittstate.edu/", "identifier": [{"identifier": "https://ror.org/04hteea03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.pittstate.edu/do/oai/ yes 5085 9469 +5091 {"name": "smu scholar", "language": "en"} [] http://scholar.smu.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:12:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "southern methodist university", "alternativeName": "smu", "country": "us", "url": "https://www.smu.edu", "identifier": [{"identifier": "https://ror.org/042tdr378", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholar.smu.edu/do/oai yes 13861 15020 +5131 {"name": "saint marys digital commons", "language": "en"} [] https://digitalcommons.stmarys-ca.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:18:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "saint marys college of california", "alternativeName": "", "country": "us", "url": "https://www.stmarys-ca.edu", "identifier": [{"identifier": "https://ror.org/01hgj5t98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.stmarys-ca.edu/do/oai yes 910 9894 +5331 {"name": "scholarworks @ morehead state", "language": "en"} [] http://scholarworks.moreheadstate.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:54:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "morehead state university", "alternativeName": "", "country": "us", "url": "https://www.moreheadstate.edu", "identifier": [{"identifier": "https://ror.org/018yta094", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarworks.moreheadstate.edu/do/oai yes 6172 30769 +5356 {"name": "the scholars repositor@llu", "language": "en"} [] https://scholarsrepository.llu.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:59:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "loma linda university university libraries", "alternativeName": "llu libraries", "country": "us", "url": "https://library.llu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarsrepository.llu.edu/do/oai yes 1492 2230 +5042 {"name": "tuskegee scholarly publications", "language": "en"} [] http://tuspubs.tuskegee.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:03:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tuskegee university", "alternativeName": "", "country": "us", "url": "https://www.tuskegee.edu", "identifier": [{"identifier": "https://ror.org/0137n4m74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://tuspubs.tuskegee.edu/do/oai/ yes 125 156 +4960 {"name": "university of the incarnate word", "language": "en"} [] http://athenaeum.uiw.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:48:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "university of the incarnate word", "alternativeName": "", "country": "us", "url": "https://www.uiw.edu/", "identifier": [{"identifier": "https://ror.org/044a5dk27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://athenaeum.uiw.edu/do/oai/ yes 143 576 +4945 {"name": "walden university scholar works.", "language": "en"} [] http://scholarworks.waldenu.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:45:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "walden university", "alternativeName": "", "country": "us", "url": "https://www.waldenu.edu/", "identifier": [{"identifier": "https://ror.org/02qp2hh41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarworks.waldenu.edu/do/oai/ yes 10397 12208 +4938 {"name": "wellesley college digital scholarship and archive", "language": "en"} [] http://repository.wellesley.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:45:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "wellesley college", "alternativeName": "", "country": "us", "url": "https://www.wellesley.edu", "identifier": [{"identifier": "https://ror.org/01srpnj69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://repository.wellesley.edu/do/oai yes 8125 22362 +4934 {"name": "winthrop university", "language": "en"} [] http://digitalcommons.winthrop.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:44:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "winthrop university", "alternativeName": "", "country": "us", "url": "https://www.winthrop.edu/", "identifier": [{"identifier": "https://ror.org/04mpzkf73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.winthrop.edu/do/oai yes 9404 13479 +5097 {"name": "sound ideas", "language": "en"} [] http://soundideas.pugetsound.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:13:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of puget sound", "alternativeName": "", "country": "us", "url": "https://www.pugetsound.edu", "identifier": [{"identifier": "https://ror.org/042drmv40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://soundideas.pugetsound.edu/cgi/oai2.cgi yes 3912 7635 +5415 {"name": "rian - pathways to irish research", "language": "en"} [{"acronym": "rian"}, {"name": "rian - cos\u00e1in go taighde \u00e9ireannach", "language": "ga"}, {"acronym": "rian"}] http://rian.ie aggregating [] 2022-01-12 15:36:11 2019-09-27 12:15:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "multiple irish universities", "alternativeName": "", "country": "ie", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://rian.ie/proxy/oai2.php yes 77297 +4878 {"name": "repository universitas katolik darma cendika", "language": "en"} [{"acronym": "repository ukdc"}] http://repositori.ukdc.ac.id institutional [] 2022-01-12 15:36:10 2019-09-23 10:09:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universitas katolik darma cendika", "alternativeName": "", "country": "id", "url": "http://www.ukdc.ac.id", "identifier": [{"identifier": "https://ror.org/05n4f1v75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositori.ukdc.ac.id/cgi/oai2 yes +5058 {"name": "sally mcdonnell barksdale honors college thesis repository", "language": "en"} [{"acronym": "smbhc thesis repository"}] http://thesis.honors.olemiss.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:05:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "the sally mcdonnell barksdale honors college at the university of mississippi", "alternativeName": "smbhc", "country": "us", "url": "https://www.honors.olemiss.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://thesis.honors.olemiss.edu/cgi/oai2 yes 1177 1289 +5034 {"name": "electronic theses and dissertations", "language": "en"} [{"acronym": "ums etd"}] http://eprints.ums.ac.id institutional [] 2022-01-12 15:36:10 2019-09-27 11:02:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universitas muhammadiyah surakarta", "alternativeName": "ums", "country": "id", "url": "https://www.ums.ac.id", "identifier": [{"identifier": "https://ror.org/03cnmz153", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.ums.ac.id/cgi/oai2 yes 48890 50008 +5414 {"name": "tishk international university repository", "language": "en"} [] http://eprints.tiu.edu.iq institutional [] 2022-01-12 15:36:11 2019-09-27 12:15:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tishk international university", "alternativeName": "", "country": "iq", "url": "https://tiu.edu.iq", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.tiu.edu.iq/cgij/oai2 yes 119 119 +5021 {"name": "institutional repository of unipdu jombang", "language": "en"} [] http://eprints.unipdu.ac.id institutional [] 2022-01-12 15:36:10 2019-09-27 10:59:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "unipdu jombang", "alternativeName": "", "country": "id", "url": "https://unipdu.ac.id", "identifier": [{"identifier": "https://ror.org/01km1t027", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.unipdu.ac.id/cgi/oai2 yes 515 2021 +5186 {"name": "repository upi", "language": "en"} [] http://repository.upi.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:29:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of indonesia", "alternativeName": "", "country": "id", "url": "https://www.upi.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.upi.edu/cgi/oai2 yes 30219 46317 +5079 {"name": "ted ankara college foundation schools", "language": "en"} [{"name": "ted ankara koleji", "language": "tr"}] http://eprints.tedankara.k12.tr institutional [] 2022-01-12 15:36:10 2019-09-27 11:09:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "ted ankara college foundation schools", "alternativeName": "", "country": "tr", "url": "https://www.tedankara.k12.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.tedankara.k12.tr/cgi/oai2 yes 993 +5014 {"name": "universidad de nari\u00f1o", "language": "es"} [] http://sired.udenar.edu.co institutional [] 2022-01-12 15:36:10 2019-09-27 10:56:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of nari\u00f1o", "alternativeName": "", "country": "co", "url": "http://sired.udenar.edu.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://sired.udenar.edu.co/cgi/oai2 yes 1521 5872 +4997 {"name": "university of bath research data archive", "language": "en"} [] https://researchdata.bath.ac.uk/ institutional [] 2022-01-12 15:36:10 2019-09-27 10:52:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of bath", "alternativeName": "", "country": "gb", "url": "https://www.bath.ac.uk", "identifier": [{"identifier": "https://ror.org/002h8g185", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://researchdata.bath.ac.uk/cgi/oai2 yes 39 602 +4901 {"name": "weblyzard publications", "language": "en"} [] http://eprints.weblyzard.com institutional [] 2022-01-12 15:36:10 2019-09-27 10:39:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "weblyzard", "alternativeName": "", "country": "", "url": "http://eprints.weblyzard.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.weblyzard.com/cgi/oai2 yes 2 95 +4919 {"name": "eprints@azim premji university", "language": "en"} [] http://publications.azimpremjifoundation.org institutional [] 2022-01-12 15:36:10 2019-09-27 10:42:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "azim premji university", "alternativeName": "", "country": "in", "url": "https://azimpremjiuniversity.edu.in/sitepages/index.aspx", "identifier": [{"identifier": "https://ror.org/00521fv82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.azimpremjifoundation.org/cgi/oai2 yes 1689 2136 +5441 {"name": "institute of soil and water conservation,chinese academy of sciences and ministry of water resources", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6c34\u5229\u90e8\u6c34\u571f\u4fdd\u6301\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://159.226.153.81 institutional [] 2022-01-12 15:36:11 2019-09-27 12:19:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "institute of soil and water conservation,chinese academy of sciences and ministry of water resources", "alternativeName": "", "country": "cn", "url": "http://iswc.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://159.226.153.81/casirgrid-oai/request yes 7076 +5446 {"name": "institute of hydrobiology, chinese academy of sciences", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6c34\u751f\u751f\u7269\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.ihb.ac.cn institutional [] 2022-01-12 15:36:11 2019-09-27 12:19:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "institute of hydrobiology, chinese academy of sciences", "alternativeName": "", "country": "cn", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ir.ihb.ac.cn/casirgrid-oai/request yes 502 20122 +5409 {"name": "joint institute for nuclear research document server", "language": "en"} [{"acronym": "jinr server"}] http://jds.jinr.ru institutional [] 2022-01-12 15:36:11 2019-09-27 12:13:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "joint institute for nuclear research", "alternativeName": "jinr", "country": "ru", "url": "http://www.jinr.ru", "identifier": [{"identifier": "https://ror.org/044yd9t77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://jds.jinr.ru/oai2d yes 61302 +4900 {"name": "auth library - prothiki", "language": "en"} [{"acronym": "auth"}, {"name": "\u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b1\u03c0\u03b8 - \u03c0\u03c1\u03bf\u03b8\u03ae\u03ba\u03b7", "language": "el"}] http://ejournals.lib.auth.gr institutional [] 2022-01-12 15:36:10 2019-09-27 10:39:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "aristotle university of thessaloniki", "alternativeName": "", "country": "gr", "url": "https://www.auth.gr/en", "identifier": [{"identifier": "https://ror.org/02j61yw88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://ejournals.lib.auth.gr/poliphilos/oai yes 52 248 +5074 {"name": "teesside university research", "language": "en"} [] https://research.tees.ac.uk institutional [] 2022-01-12 15:36:10 2019-09-27 11:09:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "teesside university", "alternativeName": "", "country": "gb", "url": "https://research.tees.ac.uk/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.tees.ac.uk/ws/oai yes 2661 5196 +5348 {"name": "main library of warsaw university of technology", "language": "en"} [] http://bcpw.bg.pw.edu.pl institutional [] 2022-01-12 15:36:11 2019-09-27 11:58:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "warsaw university of technology", "alternativeName": "", "country": "pl", "url": "https://www.pw.edu.pl/engpw", "identifier": [{"identifier": "https://ror.org/00y0xnp53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bcpw.bg.pw.edu.pl/oai-pmh-repository.xml yes 119 +4882 {"name": "electronic institutional repository kherson state maritime academy", "language": "en"} [{"acronym": "eksmair"}] https://rep.ksma.ks.ua institutional [] 2022-01-12 15:36:10 2019-09-24 14:49:41 ["science", "technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "kherson state maritime academy", "alternativeName": "", "country": "ua", "url": "http://kma.ks.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rep.ksma.ks.ua/oai/request yes +4887 {"name": "repositorio inaigem", "language": "es"} [] http://repositorio.inaigem.gob.pe institutional [] 2022-01-12 15:36:10 2019-09-26 07:58:07 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "instituto nacional de investigaci\u00f3n en glaciares y ecosistemas de monta\u00f1a", "alternativeName": "", "country": "pe", "url": "https://inaigem.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.inaigem.gob.pe/oai/request yes +4929 {"name": "maritime commons - the digital repository of world maritime university", "language": "en"} [{"acronym": "wmu"}] http://commons.wmu.se institutional [] 2022-01-12 15:36:10 2019-09-27 10:44:20 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "world maritime university", "alternativeName": "wmu", "country": "se", "url": "https://www.wmu.se", "identifier": [{"identifier": "https://ror.org/00v542r37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://commons.wmu.se/do/oai yes 1292 2936 +5026 {"name": "northwest irrigation & soils research laboratory publications", "language": "en"} [{"acronym": "nwisrl@usda"}] https://eprints.nwisrl.ars.usda.gov governmental [] 2022-01-12 15:36:10 2019-09-27 11:01:19 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "united states department of agriculture agricultural research service", "alternativeName": "usda ars", "country": "us", "url": "https://www.ars.usda.gov", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://eprints.nwisrl.ars.usda.gov/cgi/oai2 yes 1719 +5064 {"name": "the linnean collections", "language": "en"} [] http://www.linnean-online.org institutional [] 2022-01-12 15:36:10 2019-09-27 11:07:11 ["science"] ["unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "the linnean society of london", "alternativeName": "", "country": "gb", "url": "https://www.linnean.org", "identifier": [{"identifier": "https://ror.org/00td0dz58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://www.linnean-online.org/cgi/oai2 yes 159900 +4978 {"name": "university of missouri school of law", "language": "en"} [{"acronym": "mizzou"}] http://scholarship.law.missouri.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:34 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "mizzou", "alternativeName": "university of missouri", "country": "us", "url": "https://missouri.edu/", "identifier": [{"identifier": "https://ror.org/02ymw8z06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.missouri.edu/do/oai/ yes 6103 6187 +5271 {"name": "penn law: legal scholarship repository", "language": "en"} [] https://scholarship.law.upenn.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:43:22 ["social sciences"] ["journal_articles"] [{"name": "university of pennsylvania law school", "alternativeName": "", "country": "us", "url": "https://www.law.upenn.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.upenn.edu/do/oai yes 14252 14913 +5138 {"name": "sj quinney college of law, university of utah", "language": "en"} [] http://dc.law.utah.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:19:40 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of utah", "alternativeName": "", "country": "us", "url": "https://www.utah.edu/", "identifier": [{"identifier": "https://ror.org/03r0ha626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://dc.law.utah.edu/do/oai/ yes 492 608 +5128 {"name": "santa clara university school of law", "language": "en"} [] http://digitalcommons.law.scu.edu disciplinary [] 2022-01-12 15:36:11 2019-09-27 11:18:22 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "santa clara university", "alternativeName": "", "country": "us", "url": "https://www.scu.edu/", "identifier": [{"identifier": "https://ror.org/03ypqe447", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.law.scu.edu/do/oai/ yes 6635 7236 +5065 {"name": "the john marshall law school", "language": "en"} [] http://repository.jmls.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:07:24 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of illinois at chicago", "alternativeName": "ulc", "country": "us", "url": "https://www.uic.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://repository.jmls.edu/do/oai/ yes 3605 4056 +4972 {"name": "university of oklahoma college of law digital commons", "language": "en"} [] http://digitalcommons.law.ou.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:00 ["social sciences"] ["journal_articles"] [{"name": "the university of oklahoma college of law", "alternativeName": "", "country": "us", "url": "http://www.law.ou.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.law.ou.edu/do/oai yes 4802 10669 +4988 {"name": "digital commons @ uldaho law", "language": "en"} [] http://digitalcommons.law.uidaho.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:51:09 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of idaho", "alternativeName": "", "country": "us", "url": "https://www.uidaho.edu", "identifier": [{"identifier": "https://ror.org/03hbp5t65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.law.uidaho.edu/do/oai yes 6021 12822 +5088 {"name": "st. johns law scholarship repository", "language": "en"} [] https://scholarship.law.stjohns.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:11:55 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "st. johns university", "alternativeName": "", "country": "us", "url": "https://www.stjohns.edu", "identifier": [{"identifier": "https://ror.org/00bgtad15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.stjohns.edu/do/oai yes 9023 9404 +5068 {"name": "texas a&m university school of law", "language": "en"} [] http://scholarship.law.tamu.edu institutional [] 2022-01-12 15:36:10 2019-09-27 11:08:43 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "texas a&m university", "alternativeName": "", "country": "us", "url": "https://www.tamu.edu/", "identifier": [{"identifier": "https://ror.org/01f5ytq51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.tamu.edu/do/oai/ yes 632 1803 +4975 {"name": "university of north carolina school of law", "language": "en"} [] http://scholarship.law.unc.edu institutional [] 2022-01-12 15:36:10 2019-09-27 10:50:08 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of north carolina", "alternativeName": "", "country": "us", "url": "https://www.unc.edu/", "identifier": [{"identifier": "https://ror.org/0130frc33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.unc.edu/do/oai/ yes 5525 8729 +5344 {"name": "marquette university law school", "language": "en"} [] http://scholarship.law.marquette.edu institutional [] 2022-01-12 15:36:11 2019-09-27 11:57:44 ["social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "marquette university law school", "alternativeName": "", "country": "us", "url": "https://law.marquette.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://scholarship.law.marquette.edu/do/oai/ yes 6297 6654 +5037 {"name": "ulcc publications archive", "language": "en"} [] http://pubs.ulcc.ac.uk institutional [] 2022-01-12 15:36:10 2019-09-27 11:02:28 ["technology"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "university of london computer centre", "alternativeName": "ulcc", "country": "gb", "url": "https://cosector.com/cosector-digital", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pubs.ulcc.ac.uk/cgi/oai2 yes 58 98 +6062 {"name": "upper iowa university archives", "language": "en"} [] https://cdm17238.contentdm.oclc.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:28:32 ["arts", "humanities", "science"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "upper iowa university", "alternativeName": "", "country": "us", "url": "https://uiu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm17238.contentdm.oclc.org/oai/oai.php yes 1402 +6099 {"name": "uwm libraries digital collections", "language": "en"} [] https://collections.lib.uwm.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:30:42 ["arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of wisconsin milwaukee", "alternativeName": "uwm", "country": "us", "url": "https://uwm.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://collections.lib.uwm.edu/oai/oai.php yes 209337 +5708 {"name": "st. norbert college", "language": "en"} [] http://digitalcommons.snc.edu institutional [] 2022-01-12 15:36:12 2019-09-27 17:46:51 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "st. norbert college", "alternativeName": "", "country": "us", "url": "https://www.snc.edu/", "identifier": [{"identifier": "https://ror.org/01hw93t68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.snc.edu/do/oai/ yes 915 4464 +6111 {"name": "sydney college of the arts archive", "language": "en"} [{"acronym": "sca archive"}] http://va.library.usyd.edu.au institutional [] 2022-01-12 15:36:13 2019-09-28 01:31:49 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of sydney", "alternativeName": "", "country": "au", "url": "https://sydney.edu.au", "identifier": [{"identifier": "https://ror.org/0384j8v12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://va.library.usyd.edu.au/oai yes 3158 +5667 {"name": "collections numerisees - universit\u00e9 rennes 2", "language": "fr"} [] http://bibnum.univ-rennes2.fr institutional [] 2022-01-12 15:36:12 2019-09-27 12:45:29 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "universite rennes 2", "alternativeName": "", "country": "fr", "url": "https://www.univ-rennes2.fr", "identifier": [{"identifier": "https://ror.org/01m84wm78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibnum.univ-rennes2.fr/oai yes 342 +5514 {"name": "aragon virtual library", "language": "en"} [{"name": "biblioteca virtual de aragon", "language": "es"}] http://bibliotecavirtual.aragon.es governmental [] 2022-01-12 15:36:11 2019-09-27 12:25:32 ["arts", "science", "technology", "engineering", "mathematics", "health and medicine", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "government of aragon", "alternativeName": "", "country": "es", "url": "https://www.aragon.es", "identifier": [{"identifier": "https://ror.org/05e08c338", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibliotecavirtual.aragon.es/i18n/oai/oai.cmd yes 4771 15545 +5638 {"name": "centracare health", "language": "en"} [] http://digitalcommons.centracare.com institutional [] 2022-01-12 15:36:12 2019-09-27 12:40:58 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "centracare", "alternativeName": "", "country": "us", "url": "https://www.centracare.com/", "identifier": [{"identifier": "https://ror.org/04t99fj98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.centracare.com/do/oai/ yes 469 1596 +5886 {"name": "electronic theses and dissertations of the tamil nadu dr. m.g.r. medical university", "language": "en"} [] http://repository-tnmgrmu.ac.in institutional [] 2022-01-12 15:36:12 2019-09-28 01:08:06 ["health and medicine"] ["theses_and_dissertations"] [{"name": "tamil nadu dr. m.g.r. medical university", "alternativeName": "", "country": "in", "url": "https://tnmgrmu.ac.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository-tnmgrmu.ac.in/cgi/oai2 yes 11844 16199 +5942 {"name": "authors@fred hutch", "language": "en"} [] http://authors.fhcrc.org institutional [] 2022-01-12 15:36:12 2019-09-28 01:11:35 ["health and medicine"] ["journal_articles", "datasets", "learning_objects"] [{"name": "fred hutch", "alternativeName": "", "country": "us", "url": "https://www.fredhutch.org/en.html", "identifier": [{"identifier": "https://ror.org/007ps6h72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://authors.fhcrc.org/cgi/oai2 yes 806 1096 +5779 {"name": "repository politeknik kesehatan kemenkes semarang", "language": "id"} [] http://repository.poltekkes-smg.ac.id institutional [] 2022-01-12 15:36:12 2019-09-28 01:02:16 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ministry of health polytechnic semarang", "alternativeName": "", "country": "id", "url": "http://www.poltekkes-smg.ac.id/", "identifier": [{"identifier": "https://ror.org/05hkzza95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.poltekkes-smg.ac.id/oai2.php yes 20341 +5966 {"name": "yamagata prefectural university of health sciences repositry", "language": "en"} [{"name": "\u5c71\u5f62\u770c\u7acb\u4fdd\u5065\u533b\u7642\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://yachts.repo.nii.ac.jp institutional [] 2022-01-12 15:36:13 2019-09-28 01:13:08 ["health and medicine"] ["journal_articles"] [{"name": "yamagata prefectural university of health sciences", "alternativeName": "", "country": "jp", "url": "https://www.yamagata-u.ac.jp/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yachts.repo.nii.ac.jp/oai yes 172 200 +6054 {"name": "uyo gakuen college repository", "language": "en"} [{"name": "\u7fbd\u967d\u5b66\u5712\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://uyo.repo.nii.ac.jp institutional [] 2022-01-12 15:36:13 2019-09-28 01:27:45 ["health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "uyo gakuen college", "alternativeName": "", "country": "jp", "url": "http://www.uyo.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://uyo.repo.nii.ac.jp/oai yes 144 333 +5506 {"name": "qucosa", "language": "en"} [] http://www.qucosa.de/startseite aggregating [] 2022-01-12 15:36:11 2019-09-27 12:24:58 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "slub", "alternativeName": "s\u00e4chsische landesbibliothek - staats- und universit\u00e4tsbibliothek dresden (slub)", "country": "de", "url": "https://www.slub-dresden.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://hsss.slub-dresden.de/oai/oai-2.0 yes 31457 +6084 {"name": "mannheim research data repository", "language": "en"} [{"acronym": "madata"}] https://madata.bib.uni-mannheim.de institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets", "other_special_item_types"] [{"name": "university of mannheimnheim", "alternativeName": "", "country": "de", "url": "https://www.uni-mannheim.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://madata.bib.uni-mannheim.de/cgi/oai2 yes 12 150 +5720 {"name": "aecid digital library", "language": "en"} [{"name": "biblioteca digital aecid", "language": "es"}] http://bibliotecadigital.aecid.es/bibliodig/es/estaticos/contenido.cmd?pagina=estaticos/presentacion governmental [] 2022-01-12 15:36:12 2019-09-27 18:17:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ministry of foreign affairs, european union and cooperation", "alternativeName": "", "country": "es", "url": "http://www.exteriores.gob.es/portal/en/paginas/inicio.aspx", "identifier": [{"identifier": "https://ror.org/04dxd1f80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibliotecadigital.aecid.es/bibliodig/i18n/oai/oai_bibliotecadigital.aecid.es.cmd yes 1616 16280 +5936 {"name": "dilibri", "language": "en"} [{"name": "dilibri (landesbibliothekszentrum rheinland-pfalz)", "language": "de"}] https://www.dilibri.de institutional [] 2022-01-12 15:36:12 2019-09-28 01:11:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "national library center rhineland-palatinate", "alternativeName": "", "country": "de", "url": "https://lbz.rlp.de/de/startseite/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://www.dilibri.de/oai yes 9747 +5767 {"name": "la biblioth\u00e8que num\u00e9rique de l\u2019\u00e9cole nationale des chartes", "language": "fr"} [] http://bibnum.enc.sorbonne.fr institutional [] 2022-01-12 15:36:12 2019-09-28 01:01:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "\u00e9cole nationale des chartes", "alternativeName": "", "country": "fr", "url": "http://www.chartes.psl.eu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://bibnum.enc.sorbonne.fr/oai-pmh-repository/request yes 3867 +5675 {"name": "the digital library of the fcen", "language": "en"} [{"name": "la biblioteca digital de la fcen", "language": "es"}] http://digital.bl.fcen.uba.ar institutional [] 2022-01-12 15:36:12 2019-09-27 12:46:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of buenos aires", "alternativeName": "", "country": "ar", "url": "http://www.uba.ar", "identifier": [{"identifier": "https://ror.org/0081fs513", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digital.bl.fcen.uba.ar/gsdl-282/cgi-bin/oaiserver.cgi yes 3125 10174 +6074 {"name": "university of bordeaux: babordnum", "language": "en"} [{"name": "universit\u00e9 de bordeaux: babordnum", "language": "fr"}] http://www.babordnum.fr institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of bordeaux", "alternativeName": "", "country": "fr", "url": "https://www.u-bordeaux.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.babordnum.fr/oai-pmh-repository/request yes 2276 +5870 {"name": "heidata", "language": "en"} [] https://heidata.uni-heidelberg.de institutional [] 2022-01-12 15:36:12 2019-09-28 01:06:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "datasets"] [{"name": "universitat heidelberg", "alternativeName": "", "country": "de", "url": "https://www.uni-heidelberg.de/de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://heidata.uni-heidelberg.de/oai yes 224 +6070 {"name": "university of montreal digital collections", "language": "en"} [{"name": "universit\u00e9 de montr\u00e9al (udem): calypso - collections dobjets num\u00e9riques", "language": "fr"}] https://calypso.bib.umontreal.ca institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of montreal", "alternativeName": "", "country": "ca", "url": "https://www.umontreal.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://calypso.bib.umontreal.ca/oai/oai.php yes 42300 +5517 {"name": "gestion del repositorio documental de la universidad de salamanca", "language": "es"} [{"acronym": "gredos"}, {"name": "", "language": ""}] http://gredos.usal.es institutional [] 2022-01-12 15:36:11 2019-09-27 12:25:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of salamanca", "alternativeName": "usal", "country": "es", "url": "https://www.usal.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://gredos.usal.es/oai yes 3559 118046 +6108 {"name": "the university of texas rio grande valley scholarworks", "language": "en"} [{"acronym": "utrgv scholarworks"}] https://utrgv-ir.tdl.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:31:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the university of texas rio grande valley", "alternativeName": "utrgv", "country": "us", "url": "https://www.utrgv.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://utrgv-ir.tdl.org/oai/request yes +5576 {"name": "dnipropetrovsk electronic archive national university of railway transport", "language": "en"} [{"acronym": "eadnurt"}] http://eadnurt.diit.edu.ua institutional [] 2022-01-12 15:36:12 2019-09-27 12:33:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "dnipropetrovsk national university of railway transport", "alternativeName": "eadnurt", "country": "ua", "url": "http://diit.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eadnurt.diit.edu.ua/oai yes 8 4809 +5872 {"name": "electronic repository kyiv national university of technologies and design", "language": "en"} [{"acronym": "erknutd"}, {"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0430\u0440\u0445\u0456\u0432\u0443 \u043a\u0438\u0457\u0432\u0441\u044c\u043a\u043e\u0433\u043e \u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u0439 \u0442\u0430 \u0434\u0438\u0437\u0430\u0439\u043d\u0443", "language": "uk"}, {"acronym": "erknutd"}] https://er.knutd.edu.ua institutional [] 2022-01-12 15:36:12 2019-09-28 01:07:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "kyiv national university of technologies and design", "alternativeName": "", "country": "ua", "url": "https://knutd.edu.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://er.knutd.edu.ua/oai/openaire yes +6089 {"name": "university of parma: dspaceunipr", "language": "en"} [{"name": "universit\u00e0 degli studi di parma: dspaceunipr", "language": "it"}] http://dspace-unipr.cineca.it institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of parma", "alternativeName": "unipr", "country": "it", "url": "https://www.unipr.it/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace-unipr.cineca.it/dspace-oai/request yes +5990 {"name": "wtamu dspace repository", "language": "en"} [] https://wtamu-ir.tdl.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "west texas a&m university", "alternativeName": "wtamu", "country": "us", "url": "https://www.wtamu.edu", "identifier": [{"identifier": "https://ror.org/04gnp7x40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://wtamu-ir.tdl.org/oai/openaire yes +5963 {"name": "yaroslav the wise national law university kharkiv: enulauir", "language": "en"} [{"name": "\u043d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u044e\u0440\u0438\u0434\u0438\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u044f\u0440\u043e\u0441\u043b\u0430\u0432\u0430 \u043c\u0443\u0434\u0440\u043e\u0433\u043e", "language": "uk"}] http://dspace.nulau.edu.ua institutional [] 2022-01-12 15:36:13 2019-09-28 01:13:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "yaroslav mudryi national law university", "alternativeName": "", "country": "ua", "url": "https://nlu.edu.ua/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.nulau.edu.ua/oai/openaire yes +5761 {"name": "institutional repository hellanicus", "language": "en"} [{"name": "\u03b9\u03b4\u03c1\u03c5\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03b1\u03c0\u03bf\u03b8\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf hellanicus", "language": "el"}] http://hellanicus.lib.aegean.gr institutional [] 2022-01-12 15:36:12 2019-09-28 01:01:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of the aegean", "alternativeName": "", "country": "gr", "url": "http://www1.aegean.gr/aegean2", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hellanicus.lib.aegean.gr/oai/request yes 1 14579 +6048 {"name": "viurrspace", "language": "en"} [] https://viurrspace.ca institutional [] 2022-01-12 15:36:13 2019-09-28 01:27:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "royal roads university", "alternativeName": "", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://viurrspace.ca/oai/request yes +5988 {"name": "digital commons @ western oregon university", "language": "en"} [{"acronym": "digital commons@wou"}] https://digitalcommons.wou.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:14:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "western oregon university", "alternativeName": "wou", "country": "us", "url": "http://www.wou.edu", "identifier": [{"identifier": "https://ror.org/002xn4752", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.wou.edu/do/oai yes 1900 3519 +5989 {"name": "western connecticut state university: westcollections - digitalcommons@wcsu", "language": "en"} [{"acronym": "wcsu"}] https://repository.wcsu.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:15:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "western connecticut state university", "alternativeName": "wcsu", "country": "us", "url": "https://www.wcsu.edu/", "identifier": [{"identifier": "https://ror.org/01565p617", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.wcsu.edu/do/oai yes 1796 2209 +5661 {"name": "brandman digital repository", "language": "en"} [] http://digitalcommons.brandman.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:44:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "brandman university", "alternativeName": "", "country": "us", "url": "https://www.brandman.edu", "identifier": [{"identifier": "https://ror.org/013922990", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.brandman.edu/do/oai yes 130 662 +5657 {"name": "bucknell university", "language": "en"} [] http://digitalcommons.bucknell.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:44:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "bucknell university", "alternativeName": "", "country": "us", "url": "https://www.bucknell.edu/", "identifier": [{"identifier": "https://ror.org/00fc1qt65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.bucknell.edu/do/oai/ yes 1087 4450 +5627 {"name": "clark university", "language": "en"} [] http://commons.clarku.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:40:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "clark university", "alternativeName": "", "country": "us", "url": "https://www.clarku.edu/", "identifier": [{"identifier": "https://ror.org/04123ky43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://commons.clarku.edu/do/oai/ yes 1123 4009 +5598 {"name": "denison university", "language": "en"} [] https://digitalcommons.denison.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:35:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "denison university", "alternativeName": "", "country": "us", "url": "https://denison.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes 683 4130 +5647 {"name": "digital commons @ ciis", "language": "en"} [] https://digitalcommons.ciis.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:41:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "california institute of integral studies", "alternativeName": "", "country": "us", "url": "https://www.ciis.edu", "identifier": [{"identifier": "https://ror.org/01qcqyr62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.ciis.edu/do/oai yes 407 1361 +5558 {"name": "east tennessee state university", "language": "en"} [] http://dc.etsu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:30:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "east tennessee state university", "alternativeName": "", "country": "us", "url": "https://www.etsu.edu/ehome", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://dc.etsu.edu/do/oai/ yes 4217 13659 +5513 {"name": "governors state university", "language": "en"} [] http://opus.govst.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:25:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "governors state university", "alternativeName": "", "country": "us", "url": "https://www.govst.edu/", "identifier": [{"identifier": "https://ror.org/00wtq7t14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://opus.govst.edu/do/oai/ yes 5587 10774 +5466 {"name": "knowledge repository @ iup", "language": "en"} [] https://knowledge.library.iup.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:20:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "indiana university of pennsylvania", "alternativeName": "", "country": "us", "url": "https://www.iup.edu", "identifier": [{"identifier": "https://ror.org/0511cmw96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://knowledge.library.iup.edu/do/oai yes 3607 +5632 {"name": "scholarly commons @ iit chicago-kent college of law", "language": "en"} [] http://scholarship.kentlaw.iit.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:40:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "chicago-kent college of law - illinois institute of technology", "alternativeName": "", "country": "us", "url": "https://www.kentlaw.iit.edu", "identifier": [{"identifier": "https://ror.org/0062tv278", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.kentlaw.iit.edu/do/oai yes 2463 8054 +5600 {"name": "scholarly and creative work from depauw university", "language": "en"} [] http://scholarship.depauw.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:36:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "depauw university", "alternativeName": "", "country": "us", "url": "https://www.depauw.edu", "identifier": [{"identifier": "https://ror.org/02mks6v46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.depauw.edu/do/oai yes 319 610 +6115 {"name": "university of southern maine: digital commons@usm", "language": "en"} [] https://digitalcommons.usm.maine.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:31:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of southern maine", "alternativeName": "usm", "country": "us", "url": "https://usm.maine.edu/", "identifier": [{"identifier": "https://ror.org/03ke6tv85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.usm.maine.edu/do/oai/ yes 3928 16760 +6046 {"name": "vtc institutional repository (vocational training council)", "language": "en"} [] https://repository.vtc.edu.hk institutional [] 2022-01-12 15:36:13 2019-09-28 01:27:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "vocational training council (vtc) libraries", "alternativeName": "vtc", "country": "hk", "url": "http://library.vtc.edu.hk/web", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.vtc.edu.hk/do/oai yes 326 2588 +5662 {"name": "bowdoin digital commons", "language": "en"} [] http://digitalcommons.bowdoin.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:44:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bowdoin college", "alternativeName": "", "country": "us", "url": "https://www.bowdoin.edu", "identifier": [{"identifier": "https://ror.org/03gh96r95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.bowdoin.edu/do/oai yes 1307 1670 +5523 {"name": "galileo open learning materials", "language": "en"} [] http://oer.galileo.usg.edu governmental [] 2022-01-12 15:36:11 2019-09-27 12:26:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects"] [{"name": "university system of georgia", "alternativeName": "usg", "country": "us", "url": "https://www.usg.edu", "identifier": [{"identifier": "https://ror.org/017wcm924", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://oer.galileo.usg.edu/do/oai yes 118 467 +5477 {"name": "iain syekh nurjati cirebon", "language": "en"} [] http://repository.syekhnurjati.ac.id institutional [] 2022-01-12 15:36:11 2019-09-27 12:22:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "iain sheikh nurjati", "alternativeName": "", "country": "id", "url": "http://sc.syekhnurjati.ac.id/smartcampus/dosen/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://repository.syekhnurjati.ac.id/cgi/oai2 yes 3172 3985 +5536 {"name": "scholarly commons @ famu law", "language": "en"} [] https://commons.law.famu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:26:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "famu college of law", "alternativeName": "florida agricultural and mechanical university college of law", "country": "us", "url": "https://law.famu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://commons.law.famu.edu/do/oai yes 251 711 +6101 {"name": "uw tacoma digital commons", "language": "en"} [] https://digitalcommons.tacoma.uw.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:30:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of washington", "alternativeName": "", "country": "us", "url": "https://www.washington.edu", "identifier": [{"identifier": "https://ror.org/00cvxb145", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.tacoma.uw.edu/do/oai/ yes 802 4748 +5995 {"name": "washington university st. louis: open scholarship", "language": "en"} [] https://openscholarship.wustl.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:15:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "washington university in st. louis", "alternativeName": "", "country": "us", "url": "https://wustl.edu/", "identifier": [{"identifier": "https://ror.org/01yc7t268", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://openscholarship.wustl.edu/do/oai/ yes 14378 26337 +5968 {"name": "xavier university of louisiana: xula digital commons", "language": "en"} [] https://digitalcommons.xula.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:13:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "xavier university of louisiana", "alternativeName": "", "country": "us", "url": "https://www.xula.edu/", "identifier": [{"identifier": "https://ror.org/0085d9t86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.xula.edu/do/oai/ yes 160 704 +5686 {"name": "eplace", "language": "en"} [] http://place.asburyseminary.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:50:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "asbury theological seminary", "alternativeName": "", "country": "us", "url": "https://place.asburyseminary.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://place.asburyseminary.edu/do/oai yes 8557 29438 +5532 {"name": "fhsu scholars repository", "language": "en"} [] http://scholars.fhsu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:26:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "fort hays state university", "alternativeName": "", "country": "us", "url": "https://www.fhsu.edu", "identifier": [{"identifier": "https://ror.org/00rwzgx62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholars.fhsu.edu/do/oai yes 2490 8959 +5470 {"name": "indiana university scholarworks", "language": "en"} [{"acronym": "iu"}] http://scholarworks.iu.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:20:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "indiana university", "alternativeName": "iu", "country": "us", "url": "https://www.indiana.edu/", "identifier": [{"identifier": "https://ror.org/02k40bc56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://scholarworks.iu.edu/dspace-oai/request yes 5476 21184 +6010 {"name": "the world library solidarity house", "language": "en"} [{"name": "v\u00e4rldsbiblioteket solidaritetshuset", "language": "sv"}] http://www.globalarkivet.se aggregating [] 2022-01-12 15:36:13 2019-09-28 01:16:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the world library solidarity house", "alternativeName": "", "country": "se", "url": "https://www.solidaritetshuset.se/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www.globalarkivet.se/cgi/oai2 yes +5940 {"name": "brawijaya knowledge garden", "language": "en"} [{"acronym": "bkg"}] http://repository.ub.ac.id institutional [] 2022-01-12 15:36:12 2019-09-28 01:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "university of brawijaya", "alternativeName": "ub", "country": "id", "url": "https://ub.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ub.ac.id/cgi/oai2 yes 346 98344 +5869 {"name": "the heidelberg document repository", "language": "en"} [{"acronym": "heidok"}] http://archiv.ub.uni-heidelberg.de institutional [] 2022-01-12 15:36:12 2019-09-28 01:06:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "heidelberg university", "alternativeName": "heidok", "country": "de", "url": "https://www.uni-heidelberg.de/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archiv.ub.uni-heidelberg.de/volltextserver/cgi/oai2 yes +5478 {"name": "digital library iain palangka raya", "language": "en"} [] http://digilib.iain-palangkaraya.ac.id institutional [] 2022-01-12 15:36:11 2019-09-27 12:22:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "iain palangka raya", "alternativeName": "isntitut agama islam negeri palangka raya", "country": "id", "url": "http://www.iain-palangkaraya.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.iain-palangkaraya.ac.id/cgi/oai2 yes 2429 2672 +5875 {"name": "raden fatah state islamic university repository", "language": "en"} [{"name": "eprint uin raden fatah palembang", "language": "id"}] http://eprints.radenfatah.ac.id institutional [] 2022-01-12 15:36:12 2019-09-28 01:07:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "raden fatah state islamic university", "alternativeName": "", "country": "id", "url": "https://radenfatah.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.radenfatah.ac.id/cgi/oai2 yes 708 2934 +6005 {"name": "waterford institute of technology - open access repository", "language": "en"} [] https://repository.wit.ie institutional [] 2022-01-12 15:36:13 2019-09-28 01:16:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "wit repository", "alternativeName": "waterford institute of technology", "country": "ie", "url": "https://www.wit.ie", "identifier": [{"identifier": "https://ror.org/03ypxwh20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://repository.wit.ie/cgi/oai2 yes 1434 +5884 {"name": "eskripsi universitas andalas", "language": "en"} [] http://scholar.unand.ac.id institutional [] 2022-01-12 15:36:12 2019-09-28 01:08:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "andalas university", "alternativeName": "", "country": "id", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://scholar.unand.ac.id/cgi/oai2 yes 21639 37273 +6081 {"name": "dbis repository", "language": "en"} [] http://eprints.dbis.informatik.uni-rostock.de institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "university of rostock", "alternativeName": "", "country": "de", "url": "https://www.uni-rostock.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.dbis.informatik.uni-rostock.de/cgi/oai2 yes 200 938 +5483 {"name": "hokkaido university collection of scholarly and academic papers", "language": "en"} [] http://eprints.lib.hokudai.ac.jp institutional [] 2022-01-12 15:36:11 2019-09-27 12:23:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "hokkaido university", "alternativeName": "", "country": "jp", "url": "https://www.global.hokudai.ac.jp/", "identifier": [{"identifier": "https://ror.org/02e16g702", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.lib.hokudai.ac.jp/dspace-oai/request yes 150 68294 +5458 {"name": "indonesian institute of the arts, surakarta", "language": "en"} [{"name": "institut seni indonesia surakarta", "language": "id"}] http://repository.isi-ska.ac.id institutional [] 2022-01-12 15:36:11 2019-09-27 12:19:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "indonesian institute of the arts, surakarta", "alternativeName": "", "country": "id", "url": "https://isi-ska.ac.id/", "identifier": [{"identifier": "https://ror.org/036gv0184", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.isi-ska.ac.id/cgi/oai2 yes 2253 4437 +5782 {"name": "repository universitas gadjah mada", "language": "en"} [] http://repository.ugm.ac.id institutional [] 2022-01-12 15:36:12 2019-09-28 01:02:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "universitas gadjah mada", "alternativeName": "", "country": "id", "url": "https://ugm.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.ugm.ac.id/cgi/oai2 yes 95764 +5880 {"name": "edshare@gcu", "language": "en"} [] https://edshare.gcu.ac.uk institutional [] 2022-01-12 15:36:12 2019-09-28 01:07:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "glasgow caledonian university", "alternativeName": "gcu", "country": "gb", "url": "https://www.gcu.ac.uk", "identifier": [{"identifier": "https://ror.org/03dvm1235", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://edshare.gcu.ac.uk/cgi/oai2 yes +5595 {"name": "depositum - the institutional repository", "language": "en"} [{"name": "depositum - le d\u00e9p\u00f4t institutionnel", "language": "fr"}] http://depositum.uqat.ca institutional [] 2022-01-12 15:36:12 2019-09-27 12:35:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of quebec in abitibi-t\u00e9miscamingue and c\u00e9gep de labitibi-t\u00e9miscamingue", "alternativeName": "uqat", "country": "ca", "url": "https://www.uqat.ca", "identifier": [{"identifier": "https://ror.org/02mqrrm75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://depositum.uqat.ca/cgi/oai2 yes 1021 1117 +5487 {"name": "publication server of ph schw\u00e4bisch gm\u00fcnd", "language": "en"} [{"name": "nserver der ph schw\u00e4bisch gm\u00fcnd", "language": "de"}] https://phsg.bsz-bw.de institutional [] 2022-01-12 15:36:11 2019-09-27 12:23:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "p\u00e4dagogische hochschule schw\u00e4bisch gm\u00fcnduniversity of education", "alternativeName": "ph schw\u00e4bisch gm\u00fcnduniversity of education", "country": "de", "url": "http://www.ph-gmuend.de", "identifier": [{"identifier": "https://ror.org/02g2sh456", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://phsg.bsz-bw.de/oai yes 2 57 +5903 {"name": "e-rara", "language": "en"} [] https://www.e-rara.ch institutional [] 2022-01-27 11:45:41 2019-09-28 01:09:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "e-rara", "alternativeName": "", "country": "ch", "url": "https://www.e-rara.ch/wiki/libraries", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} https://www.e-rara.ch/oai yes 77561 +5456 {"name": "knowledge management system of institue of mechanics, cas", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u529b\u5b66\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://dspace.imech.ac.cn institutional [] 2022-01-12 15:36:11 2019-09-27 12:19:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "chinese academy of sciences", "alternativeName": "", "country": "cn", "url": "http://english.cas.cn/", "identifier": [{"identifier": "https://ror.org/034t30j35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://dspace.imech.ac.cn/casirgrid-oai/request yes 640 22791 +6077 {"name": "open repository kassel", "language": "en"} [{"acronym": "orka"}, {"name": "universit\u00e4tsbibliothek kassel", "language": "de"}, {"acronym": "orka"}] https://orka.bibliothek.uni-kassel.de institutional [] 2022-01-12 15:36:13 2019-09-28 01:29:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of kassel", "alternativeName": "", "country": "de", "url": "https://www.uni-kassel.de/uni/", "identifier": [{"identifier": "https://ror.org/04zc7p361", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://orka.bibliothek.uni-kassel.de/viewer/oai yes 20870 +5714 {"name": "philipps university of marburg", "language": "en"} [{"name": "philipps-universit\u00e4t marburg", "language": "de"}] http://archiv.ub.uni-marburg.de institutional [] 2022-01-12 15:36:12 2019-09-27 18:08:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the philipps university of marburg", "alternativeName": "", "country": "de", "url": "https://www.uni-marburg.de/de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://archiv.ub.uni-marburg.de/ubfind/oai/server yes 1173 16791 +6026 {"name": "villanova university. falvey memorial library: villanova digital library", "language": "en"} [] https://digital.library.villanova.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:26:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "villanova university", "alternativeName": "", "country": "us", "url": "https://www1.villanova.edu/university.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://digital.library.villanova.edu/oai/server yes 40394 +5858 {"name": "koara-a", "language": "en"} [] http://koara-a.lib.keio.ac.jp institutional [] 2022-01-12 15:36:12 2019-09-28 01:06:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "keio university", "alternativeName": "", "country": "jp", "url": "https://www.keio.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://koara-a.lib.keio.ac.jp/xoonips/modules/xoonips/oai.php yes 1778 +5731 {"name": "korean research memory", "language": "en"} [{"acronym": "krm"}, {"name": "\uae30\ucd08\ud559\ubb38\uc790\ub8cc\uc13c\ud130", "language": "ko"}] http://www.krm.or.kr governmental [] 2022-01-12 15:36:12 2019-09-28 00:59:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "nrf", "alternativeName": "national research foundation of korea", "country": "kr", "url": "https://www.nrf.re.kr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.krm.or.kr/oai/oai/dp_common/oai.jsp yes +6059 {"name": "urawa university repository", "language": "en"} [{"name": "\u6d66\u548c\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://urawa.repo.nii.ac.jp institutional [] 2022-01-12 15:36:13 2019-09-28 01:28:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "urawa university", "alternativeName": "", "country": "jp", "url": "http://www.urawa.ac.jp/", "identifier": [{"identifier": "https://ror.org/0207r1190", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://urawa.repo.nii.ac.jp/oai yes 236 291 +6117 {"name": "university of shimane academic and global institution repository", "language": "en"} [{"name": "\u5cf6\u6839\u770c\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000usagi", "language": "ja"}] https://ushimane.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:32:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the university of shimane", "alternativeName": "", "country": "jp", "url": "https://www.shimane-u.ac.jp/en", "identifier": [{"identifier": "https://ror.org/01jaaym28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ushimane.repo.nii.ac.jp/oai yes 1805 1965 +6098 {"name": "university of the sacred heart academic repository", "language": "en"} [{"name": "\u8056\u5fc3\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-sacred-heart.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:30:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of the sacred heart", "alternativeName": "", "country": "jp", "url": "http://www.u-sacred-heart.ac.jp/", "identifier": [{"identifier": "https://ror.org/04qszbx34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-sacred-heart.repo.nii.ac.jp/oai yes 82 1008 +6000 {"name": "wakkanai hokusei gakuen university repository (japanese)", "language": "en"} [{"name": "\u7a1a\u5185\u5317\u661f\u5b66\u5712\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://wakhok.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:15:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "wakkanai hokusei gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.wakhok.ac.jp", "identifier": [{"identifier": "https://ror.org/02v91zq07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://wakhok.repo.nii.ac.jp/oai yes 314 450 +5993 {"name": "wayo womens university repository", "language": "en"} [{"name": "\u548c\u6d0b\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://wayo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:15:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "wayo womens university", "alternativeName": "", "country": "jp", "url": "https://www.wayo.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://wayo.repo.nii.ac.jp/oai yes 1222 1870 +5967 {"name": "yamagata prefectural public university corporation academic repository", "language": "en"} [{"name": "\u5c71\u5f62\u770c\u516c\u7acb\u5927\u5b66\u6cd5\u4eba\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://yone.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:13:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "yamagata prefectural yonezawa university of nutrition sciences", "alternativeName": "", "country": "jp", "url": "https://www.yachts.ac.jp", "identifier": [{"identifier": "https://ror.org/04qcq6322", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yone.repo.nii.ac.jp/oai yes 326 503 +5961 {"name": "yasuda womens university academic repository", "language": "en"} [{"name": "\u5b89\u7530\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://yasuda-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:12 2019-09-28 01:12:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "yasuda womens university", "alternativeName": "", "country": "jp", "url": "https://www.yasuda-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03c5e1619", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yasuda-u.repo.nii.ac.jp/oai yes 420 545 +5959 {"name": "yokohama college of commerce academic repository", "language": "en"} [{"name": "\u6a2a\u6d5c\u5546\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ycc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:12 2019-09-28 01:12:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "yokohama college of commerce", "alternativeName": "", "country": "jp", "url": "https://www.shodai.ac.jp/", "identifier": [{"identifier": "https://ror.org/02s5d1b23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ycc.repo.nii.ac.jp/oai yes 1471 2315 +5735 {"name": "toyo university repository (japanese)", "language": "en"} [{"name": "\u6771\u6d0b\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:12 2019-09-28 00:59:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "toyo university", "alternativeName": "", "country": "jp", "url": "https://www.toyo.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyo.repo.nii.ac.jp/oai yes 3580 10758 +5960 {"name": "yokohama city university repository", "language": "en"} [{"name": "\u6a2a\u6d5c\u5e02\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ycu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:12 2019-09-28 01:12:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "yokohama city university", "alternativeName": "", "country": "jp", "url": "https://www.yokohama-cu.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ycu.repo.nii.ac.jp/oai yes 1656 2089 +5634 {"name": "repositorio institutional comisi\u00f3n de investigaciones cient\u00edficas", "language": "es"} [{"acronym": "cic digital"}] https://digital.cic.gba.gob.ar institutional [] 2022-01-12 15:36:12 2019-09-27 12:40:43 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "comision de investigaciones cientificas", "alternativeName": "cic", "country": "ar", "url": "https://www.gba.gob.ar/cic", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digital.cic.gba.gob.ar/oai/request yes 3607 8469 +5955 {"name": "zb med - information centre for life sciences digital collections", "language": "en"} [{"acronym": "zbmed"}, {"name": "zb med - informationszentrum lebenswissenschaften digitale sammlungen", "language": "de"}, {"acronym": "zbmed"}] http://digital.zbmed.de institutional [] 2022-01-12 15:36:12 2019-09-28 01:12:36 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "zbmed", "alternativeName": "information centre for life sciences", "country": "de", "url": "https://www.zbmed.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digital.zbmed.de/oai yes 6735 +5865 {"name": "istardb (the astronomy education research repository)", "language": "en"} [{"acronym": "istar"}] https://istardb.org disciplinary [] 2022-01-12 15:36:12 2019-09-28 01:06:44 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "istar", "alternativeName": "international studies of astronomy education research database", "country": "", "url": "https://istardb.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://istardb.org/cgi/oai2 yes 2077 +5660 {"name": "portal of the chamber of deputies", "language": "en"} [{"name": "portal da camara dos deputados", "language": "pt"}] http://bd.camara.gov.br governmental [] 2022-01-12 15:36:12 2019-09-27 12:44:24 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "house of representatives - palace of the national congress", "alternativeName": "", "country": "br", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bd.camara.gov.br/oai/request yes 5923 +5658 {"name": "brigham young university law school digital library", "language": "en"} [{"acronym": "byu law digital library"}] http://digitalcommons.law.byu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:44:20 ["social sciences"] ["journal_articles"] [{"name": "byu law school", "alternativeName": "brigham young university law school", "country": "us", "url": "https://law.byu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.law.byu.edu/do/oai yes 37275 39302 +5639 {"name": "case western reserve university school of law", "language": "en"} [] http://scholarlycommons.law.case.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:41:03 ["social sciences"] ["journal_articles", "learning_objects"] [{"name": "cwru", "alternativeName": "case western reserve university", "country": "us", "url": "https://case.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarlycommons.law.case.edu/do/oai/ yes 9087 11199 +6040 {"name": "vanderbilt university law school: scholarship@vanderbilt law", "language": "en"} [] https://scholarship.law.vanderbilt.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:27:17 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "vanderbilt university", "alternativeName": "", "country": "us", "url": "https://www.vanderbilt.edu/", "identifier": [{"identifier": "https://ror.org/02vm5rt34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.vanderbilt.edu/do/oai/ yes 1481 4697 +5625 {"name": "colorado law scholarly commons", "language": "en"} [] https://scholar.law.colorado.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:39:04 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of colorado boulder", "alternativeName": "cu", "country": "us", "url": "https://www.colorado.edu", "identifier": [{"identifier": "https://ror.org/02ttsq026", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholar.law.colorado.edu/do/oai/ yes 262 3166 +5676 {"name": "berkeley law scholarship repository", "language": "en"} [] http://scholarship.law.berkeley.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:46:58 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of california", "alternativeName": "", "country": "us", "url": "https://www.universityofcalifornia.edu", "identifier": [{"identifier": "https://ror.org/00pjdza24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://scholarship.law.berkeley.edu/do/oai yes 2 19516 +6027 {"name": "digital repository villanova university", "language": "en"} [] https://digitalcommons.law.villanova.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:26:41 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "villanova university charles widger school of law", "alternativeName": "", "country": "us", "url": "https://www1.villanova.edu/university/law.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.villanova.edu/do/oai yes 32901 35456 +5535 {"name": "florida international university college of law", "language": "en"} [] http://ecollections.law.fiu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:26:57 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "fiu", "alternativeName": "florida international university", "country": "us", "url": "https://www.fiu.edu", "identifier": [{"identifier": "https://ror.org/02gz6gg07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://ecollections.law.fiu.edu/do/oai yes 989 2232 +5534 {"name": "florida state university college of law", "language": "en"} [] http://ir.law.fsu.edu institutional [] 2022-01-12 15:36:12 2019-09-27 12:26:56 ["social sciences"] ["journal_articles"] [{"name": "florida state university", "alternativeName": "fsu", "country": "us", "url": "https://www.fsu.edu/", "identifier": [{"identifier": "https://ror.org/05g3dte14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://ir.law.fsu.edu/do/oai/ yes 2304 2464 +5901 {"name": "ecommons university of dayton school of law", "language": "en"} [] https://ecommons.udayton.edu institutional [] 2022-01-12 15:36:12 2019-09-28 01:09:00 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of dayton", "alternativeName": "", "country": "us", "url": "https://udayton.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://ecommons.udayton.edu/do/oai yes +5464 {"name": "industry studies association", "language": "en"} [] http://isapapers.pitt.edu disciplinary [] 2022-01-12 15:36:11 2019-09-27 12:20:09 ["social sciences"] ["journal_articles"] [{"name": "industry studies assosiation", "alternativeName": "", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://isapapers.pitt.edu/cgi/oai2 yes 130 137 +5505 {"name": "scholar works at harding", "language": "en"} [{"acronym": "harding"}] http://scholarworks.harding.edu institutional [] 2022-01-12 15:36:11 2019-09-27 12:24:41 ["humanities", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "harding", "alternativeName": "harding university", "country": "us", "url": "https://www.harding.edu", "identifier": [{"identifier": "https://ror.org/00t4cvq91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://scholarworks.harding.edu/do/oai/ yes 12558 24230 +6419 {"name": "trinity digital collections (trinity university, san antonio)", "language": "en"} [] https://cdm16264.contentdm.oclc.org institutional [] 2022-01-12 15:36:14 2019-09-28 01:56:41 ["arts", "humanities"] ["other_special_item_types"] [{"name": "trinity university", "alternativeName": "", "country": "us", "url": "https://new.trinity.edu/", "identifier": [{"identifier": "https://ror.org/00t8gz605", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16264.contentdm.oclc.org/oai/oai.php yes 2327 +6141 {"name": "university of lethbridge digitized collections", "language": "en"} [] https://digitallibrary.uleth.ca institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:51 ["arts", "humanities"] ["other_special_item_types"] [{"name": "university of lethbridge", "alternativeName": "", "country": "ca", "url": "http://www.uleth.ca", "identifier": [{"identifier": "https://ror.org/044j76961", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://digitallibrary.uleth.ca/oai/oai.php yes 87731 +6219 {"name": "universitas ciputra", "language": "id"} [] https://dspace.uc.ac.id institutional [] 2022-01-12 15:36:14 2019-09-28 01:40:53 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universitas ciputra", "alternativeName": "", "country": "id", "url": "https://www.uc.ac.id", "identifier": [{"identifier": "https://ror.org/01zj4g759", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.uc.ac.id/oai/openaire yes +6333 {"name": "union | digital works", "language": "en"} [] https://digitalworks.union.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:50:02 ["arts", "humanities"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "union college", "alternativeName": "", "country": "us", "url": "https://www.union.edu", "identifier": [{"identifier": "https://ror.org/058w5nk68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalworks.union.edu/do/oai yes 2925 6327 +6435 {"name": "tokyo zokei university academic repository", "language": "en"} [{"name": "\u6771\u4eac\u9020\u5f62\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://zokei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:28 ["arts", "humanities"] ["bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "tokyo zokei university", "alternativeName": "", "country": "jp", "url": "https://www.zokei.ac.jp", "identifier": [{"identifier": "https://ror.org/059nxy021", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://zokei.repo.nii.ac.jp/oai yes 48 64 +6465 {"name": "tohoku bunkyo college tohoku bunkyo junior college academic repository", "language": "en"} [{"name": "\u6771\u5317\u6587\u6559\u5927\u5b66\u30fb\u6771\u5317\u6587\u6559\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://t-bunkyo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:09 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "tohoku bunkyo college", "alternativeName": "", "country": "jp", "url": "http://www.t-bunkyo.jp", "identifier": [{"identifier": "https://ror.org/00gnxy932", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://t-bunkyo.repo.nii.ac.jp/oai yes 102 142 +6459 {"name": "tohoku university of art and design repository", "language": "en"} [{"name": "\u6771\u5317\u82b8\u8853\u5de5\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tuad.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 01:58:42 ["arts"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "tohoku university of art and design", "alternativeName": "", "country": "jp", "url": "https://www.tuad.ac.jp", "identifier": [{"identifier": "https://ror.org/0318kta67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tuad.repo.nii.ac.jp/oai yes 193 476 +6450 {"name": "tokyo college of music repository", "language": "en"} [{"name": "\u6771\u4eac\u97f3\u697d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tokyo-ondai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:16 ["arts"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "tokyo college of music", "alternativeName": "", "country": "jp", "url": "https://www.tokyo-ondai.ac.jp", "identifier": [{"identifier": "https://ror.org/050nxyk29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokyo-ondai.repo.nii.ac.jp/oai yes 588 1297 +6359 {"name": "usd red (university of south dakota)", "language": "en"} [{"acronym": "usd red"}] https://red.library.usd.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:48 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "usd", "alternativeName": "university of south dakota", "country": "us", "url": "https://www.usd.edu/", "identifier": [{"identifier": "https://ror.org/0043h8f16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://red.library.usd.edu/do/oai yes 84 900 +6354 {"name": "ut southwestern medical center institutional repository", "language": "en"} [{"acronym": "utsw"}] https://utswmed-ir.tdl.org institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:27 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "ut southwestern medical center", "alternativeName": "utsw", "country": "us", "url": "https://www.utsouthwestern.edu", "identifier": [{"identifier": "https://ror.org/05byvp690", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://utswmed-ir.tdl.org/oai/openaire yes +6127 {"name": "digitalcommons@unmc", "language": "en"} [] https://digitalcommons.unmc.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:33:51 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of nebraska medical center", "alternativeName": "", "country": "us", "url": "https://www.unmc.edu", "identifier": [{"identifier": "https://ror.org/00thqtb16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.unmc.edu/do/oai yes 1304 3766 +6146 {"name": "university of kochi repository for academic resources", "language": "en"} [{"name": "\u9ad8\u77e5\u770c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-kochi.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:35:03 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of kochi", "alternativeName": "", "country": "jp", "url": "https://www.u-kochi.ac.jp/site/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-kochi.repo.nii.ac.jp/oai yes 1248 2952 +6429 {"name": "toyama college academic repository", "language": "en"} [{"name": "\u5bcc\u5c71\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyama-c.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:17 ["health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "toyama college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyama-c.repo.nii.ac.jp/oai yes 248 350 +6461 {"name": "tohoku medical and pharmaceutical university academic repository", "language": "en"} [{"name": "\u6771\u5317\u533b\u79d1\u85ac\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tohoku-mpu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 01:58:59 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "tohoku medical and pharmaceutical university", "alternativeName": "", "country": "jp", "url": "http://www.tohoku-mpu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tohoku-mpu.repo.nii.ac.jp/oai yes 651 765 +6457 {"name": "tohoku women\u2019s college repository", "language": "en"} [{"name": "\u6771\u5317\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tojo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 01:58:37 ["health and medicine"] ["journal_articles"] [{"name": "tohoku women\u2019s college", "alternativeName": "", "country": "jp", "url": "http://tojo.ac.jp", "identifier": [{"identifier": "https://ror.org/00sme9021", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tojo.repo.nii.ac.jp/oai yes 37 171 +6448 {"name": "tokyo medical university repository", "language": "en"} [{"name": "\u6771\u4eac\u533b\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tmu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:11 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "tokyo medical university", "alternativeName": "", "country": "jp", "url": "https://www.tokyo-med.ac.jp/english/", "identifier": [{"identifier": "https://ror.org/00k5j5c86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tmu.repo.nii.ac.jp/oai yes 7657 9652 +6439 {"name": "tokyo university of pharmacy and life sciences academic repository", "language": "en"} [{"name": "\u6771\u4eac\u85ac\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:49 ["health and medicine"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "tokyo university of pharmacy and life sciences", "alternativeName": "", "country": "jp", "url": "https://www.toyaku.ac.jp/", "identifier": [{"identifier": "https://ror.org/057jm7w82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyaku.repo.nii.ac.jp/oai yes 243 298 +6118 {"name": "university of sheffield library digital collections", "language": "en"} [] http://cdm15847.contentdm.oclc.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:32:10 ["humanities"] ["other_special_item_types"] [{"name": "university of sheffield", "alternativeName": "", "country": "gb", "url": "https://www.sheffield.ac.uk/", "identifier": [{"identifier": "https://ror.org/05krs5044", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm15847.contentdm.oclc.org/oai/oai.php yes 86710 +6318 {"name": "repositorio universidad estatal pen\u00ednsula de santa elena", "language": "es"} [] https://repositorio.upse.edu.ec institutional [] 2022-01-12 15:36:14 2019-09-28 01:49:02 ["science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "upse", "alternativeName": "universidad estatal pen\u00ednsula de santa elena", "country": "ec", "url": "https://www.upse.edu.ec", "identifier": [{"identifier": "https://ror.org/01k410495", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.upse.edu.ec/oai/request yes 52 4928 +6471 {"name": "think - asia", "language": "en"} [] https://think-asia.org institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "asian development bank institute (adbinstitute)", "alternativeName": "", "country": "jp", "url": "https://www.adb.org/adbi/mai", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://think-asia.org/oai/driver yes +6384 {"name": "ulb d\u00fcsseldorf: digitale sammlungen (universit\u00e4ts- und landesbibliothek)", "language": "en"} [] http://digital.ub.uni-duesseldorf.de institutional [] 2022-01-12 15:36:14 2019-09-28 01:53:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "heinrich-heine-university d\u00fcsseldorf", "alternativeName": "hhu", "country": "de", "url": "https://www.uni-duesseldorf.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digital.ub.uni-duesseldorf.de/oai yes 108737 +6154 {"name": "university of houston digital library", "language": "en"} [] https://digital.lib.uh.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:35:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "university of houston", "alternativeName": "", "country": "us", "url": "http://www.uh.edu/", "identifier": [{"identifier": "https://ror.org/048sx0r50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digital.lib.uh.edu/oai yes 7 84455 +6231 {"name": "ubibliorum repositorio digital da ubi", "language": "pt"} [] https://ubibliorum.ubi.pt institutional [] 2022-01-12 15:36:14 2019-09-28 01:41:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university beira interior", "alternativeName": "", "country": "pt", "url": "https://www.ubi.pt", "identifier": [{"identifier": "https://ror.org/03nf36p02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ubithesis.ubi.pt/oaiextended/request yes 100 +6250 {"name": "federal university of roraima electronic system of magazine editing", "language": "en"} [{"name": "universidade federal de roraima: sistema eletr\u00f4nico de editora\u00e7\u00e3o de revistas da ufrr", "language": "pt"}] https://revista.ufrr.br institutional [] 2022-01-12 15:36:14 2019-09-28 01:43:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "federal university of roraima", "alternativeName": "ufrr", "country": "br", "url": "http://ufrr.br/", "identifier": [{"identifier": "https://ror.org/03ehp1h78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://revista.ufrr.br/index/oai yes +6175 {"name": "university of arkansas: digital collections", "language": "en"} [] https://digitalcollections.uark.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:37:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university of arkansas", "alternativeName": "", "country": "us", "url": "https://www.uark.edu/", "identifier": [{"identifier": "https://ror.org/05jbt9m15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://digitalcollections.uark.edu/oai/oai.php yes 37485 +6142 {"name": "university of leicester:special collections online", "language": "en"} [] http://specialcollections.le.ac.uk institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of leicester", "alternativeName": "", "country": "gb", "url": "https://le.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://specialcollections.le.ac.uk/oai/oai.php yes 12414 +6351 {"name": "utsa libraries special collections digital collections", "language": "en"} [] https://digital.utsa.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "the university of texas at san antonio", "alternativeName": "", "country": "us", "url": "https://www.utsa.edu", "identifier": [{"identifier": "https://ror.org/01kd65564", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://digital.utsa.edu/oai/oai.php yes 79180 +6177 {"name": "university of alabama in huntsville digital collections (uah digital projects)", "language": "en"} [] https://cdm16608.contentdm.oclc.org institutional [] 2022-01-12 15:36:14 2019-09-28 01:37:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "uah", "alternativeName": "university of alabama in huntsville", "country": "us", "url": "https://www.uah.edu", "identifier": [{"identifier": "https://ror.org/02zsxwr40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 2418 +6134 {"name": "university of maryland university college: umuc digital repository", "language": "en"} [] https://cdm16240.contentdm.oclc.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "university of maryland, global campus.", "alternativeName": "", "country": "us", "url": "https://www.umgc.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16240.contentdm.oclc.org/oai/oai.php yes 3630 +6434 {"name": "dspace at tomas bata university zl\u00edn", "language": "en"} [{"acronym": "tbu"}, {"name": "dspace na univerzit\u011b tom\u00e1\u0161e bati ve zl\u00edn\u011b", "language": "cs"}, {"acronym": "tbu"}] http://digilib.k.utb.cz institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "tomas bata university in zl\u00edn", "alternativeName": "", "country": "cz", "url": "https://www.utb.cz/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digilib.k.utb.cz/oai/openaire yes +6152 {"name": "university of houston-clear lake institutional repository", "language": "en"} [{"acronym": "uhcl"}] https://uhcl-ir.tdl.org institutional [] 2022-01-12 15:36:13 2019-09-28 01:35:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of houston-clear lake", "alternativeName": "", "country": "us", "url": "https://www.uhcl.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://uhcl-ir.tdl.org/oai/openaire yes +6149 {"name": "university of illinois at chicago: uic indigo", "language": "en"} [{"acronym": "uic"}] https://indigo.lib.uic.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:35:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of illinois at chicago", "alternativeName": "ulc", "country": "us", "url": "https://www.uic.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://indigo.lib.uic.edu/oai/driver yes +6315 {"name": "uide digital repository", "language": "en"} [{"acronym": "uide"}, {"name": "repositorio digital uide", "language": "es"}, {"acronym": "uide"}] https://repositorio.uide.edu.ec institutional [] 2022-01-12 15:36:14 2019-09-28 01:48:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "uide", "alternativeName": "international university of ecuador", "country": "ec", "url": "https://www.uide.edu.ec", "identifier": [{"identifier": "https://ror.org/04xf2rc74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uide.edu.ec/oai/openaire yes 2 2 +6304 {"name": "universidad nacional de huancavelica: repositorio institucional digital", "language": "en"} [{"acronym": "unh"}] http://repositorio.unh.edu.pe institutional [] 2022-01-12 15:36:14 2019-09-28 01:48:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "national university of huancavelica", "alternativeName": "unh", "country": "pe", "url": "http://www.unh.edu.pe/web", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unh.edu.pe/oai/openaire yes +6290 {"name": "repositorio institucional de la universidad peruana los andes", "language": "es"} [{"acronym": "upla research"}] http://repositorio.upla.edu.pe institutional [] 2022-01-12 15:36:14 2019-09-28 01:46:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "upla", "alternativeName": "los andes peruvian university", "country": "pe", "url": "https://upla.edu.pe", "identifier": [{"identifier": "https://ror.org/009kktb11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upla.edu.pe/oai/request yes 1906 +6350 {"name": "uvic\u2019s research and learning repository", "language": "en"} [{"acronym": "uvicspace"}, {"name": "", "language": "en"}] https://dspace.library.uvic.ca institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of victoria", "alternativeName": "", "country": "ca", "url": "https://www.uvic.ca", "identifier": [{"identifier": "https://ror.org/04s5mat29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.library.uvic.ca/oai/openaire yes +6266 {"name": "digital repository of universidad de sucre", "language": "en"} [{"name": "repositorio universidad de sucre", "language": "es"}, {"acronym": "unisucre"}] https://repositorio.unisucre.edu.co institutional [] 2022-01-12 15:36:14 2019-09-28 01:44:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of sucre", "alternativeName": "", "country": "co", "url": "https://unisucre.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unisucre.edu.co/oai/request yes +6325 {"name": "private archbishop loayza university", "language": "en"} [{"name": "universidad arzobispo loayza: dspace", "language": "es"}] http://repositorio.ual.edu.pe institutional [] 2022-01-12 15:36:14 2019-09-28 01:49:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "private archbishop loayza university", "alternativeName": "", "country": "pe", "url": "http://ual.edu.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ual.edu.pe/oai/openaire yes +6391 {"name": "udesc - repository of theses and dissertations", "language": "en"} [{"name": "udesc - reposit\u00f3rio de teses e dissesta\u00e7\u00f5es", "language": "pt"}] http://www.tede.udesc.br institutional [] 2022-01-12 15:36:14 2019-09-28 01:54:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "santa catarina state university", "alternativeName": "", "country": "br", "url": "https://www.udesc.brb", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.tede.udesc.br/oai/request yes 2204 +6140 {"name": "ul space", "language": "en"} [] http://ulspace.ul.ac.za institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of limpopo", "alternativeName": "", "country": "za", "url": "https://www.ul.ac.za", "identifier": [{"identifier": "https://ror.org/017p87168", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ulspace.ul.ac.za/oai/openaire yes +6163 {"name": "university of central missouri: central repository", "language": "en"} [] https://centralspace.ucmo.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "university of central missouri", "alternativeName": "", "country": "us", "url": "https://www.ucmo.edu", "identifier": [{"identifier": "https://ror.org/02c63wv67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://centralspace.ucmo.edu/oai/openaire yes 558 +6402 {"name": "ua campus repository", "language": "en"} [] https://repository.arizona.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:55:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of arizona", "alternativeName": "ua", "country": "us", "url": "https://www.arizona.edu", "identifier": [{"identifier": "https://ror.org/03m2x1q45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.arizona.edu/oai yes +6395 {"name": "ucispace @ the libraries", "language": "en"} [] http://ucispace.lib.uci.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:54:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of california", "alternativeName": "", "country": "dz", "url": "https://uci.edu", "identifier": [{"identifier": "https://ror.org/04gyf1771", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ucispace.lib.uci.edu/oai/request yes 73 13502 +6307 {"name": "untels institutional repository", "language": "en"} [{"name": "universidad nacional tecnologica de lima sur repositorio institucional", "language": "es"}] http://repositorio.untels.edu.pe institutional [] 2022-01-12 15:36:14 2019-09-28 01:48:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "untels", "alternativeName": "universidad nacional tecnologica de lima sur", "country": "pe", "url": "http://www.untels.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.untels.edu.pe/oai/openaire yes 501 +6453 {"name": "tokaigakuen university repository", "language": "en"} [{"name": "\u6771\u6d77\u5b66\u5712\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.tokaigakuen-u.ac.jp/dspace institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tokaigakuen university repository", "alternativeName": "", "country": "jp", "url": "https://www.tokaigakuen-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03aet8853", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.tokaigakuen-u.ac.jp/dspace-oai/request yes 14 1132 +6329 {"name": "united arab emirates university: scholarworks@uaeu", "language": "en"} [{"acronym": "uaeu"}, {"name": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629", "language": "ar"}] https://scholarworks.uaeu.ac.ae institutional [] 2022-01-12 15:36:14 2019-09-28 01:49:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "united arab emirates university", "alternativeName": "", "country": "", "url": "https://www.uaeu.ac.ae/ar/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.uaeu.ac.ae/do/oai yes 570 2058 +6179 {"name": "university at albany, state university of new york (suny): scholars archive", "language": "en"} [{"acronym": "ualbany"}] https://scholarsarchive.library.albany.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:37:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "ualbany", "alternativeName": "university at albany", "country": "us", "url": "https://www.albany.edu/", "identifier": [{"identifier": "https://ror.org/012zs8222", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarsarchive.library.albany.edu/do/oai/ yes 1123 1552 +6169 {"name": "university of business and technology in kosovo: ubt knowledge center collections", "language": "en"} [{"acronym": "ubt"}] https://knowledgecenter.ubt-uni.net institutional [] 2022-01-12 15:36:13 2019-09-28 01:37:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ubt", "alternativeName": "university for business and technology kosovo", "country": "xk", "url": "https://www.ubt-uni.net/sq/ballina/", "identifier": [{"identifier": "https://ror.org/00033n668", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://knowledgecenter.ubt-uni.net/do/oai/ yes 791 5145 +6164 {"name": "university of central florida (ucf): stars (showcase of text, archives, research & scholarship)", "language": "en"} [{"acronym": "ucf"}] https://stars.library.ucf.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "ucf", "alternativeName": "university of central florida", "country": "us", "url": "https://www.ucf.edu/", "identifier": [{"identifier": "https://ror.org/036nfer12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://stars.library.ucf.edu/do/oai/ yes 12601 108963 +6167 {"name": "university of california, irvine: uci law scholarly commons", "language": "en"} [{"acronym": "uci"}] https://scholarship.law.uci.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of california, irvine school of law", "alternativeName": "", "country": "us", "url": "https://www.law.uci.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.uci.edu/do/oai/ yes 330 1441 +6377 {"name": "und scholarly commons (university of north dakota)", "language": "en"} [{"acronym": "und"}] https://commons.und.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:53:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "university of north dakota", "alternativeName": "und", "country": "us", "url": "https://und.edu/", "identifier": [{"identifier": "https://ror.org/04a5szx83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.und.edu/do/oai/ yes 5056 28608 +6357 {"name": "usma digital commons", "language": "en"} [] https://digitalcommons.usmalibrary.org institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "united states military academy", "alternativeName": "umsa", "country": "us", "url": "https://westpoint.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.usmalibrary.org/do/oai yes 99 867 +6353 {"name": "uthsc digital commons (university of tennessee health science center)", "language": "en"} [] https://dc.uthsc.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "university of tennessee", "alternativeName": "", "country": "us", "url": "https://www.utk.edu/", "identifier": [{"identifier": "https://ror.org/020f3ap87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://dc.uthsc.edu/do/oai/ yes 575 757 +6132 {"name": "scholar works university of massachusetts boston", "language": "en"} [] https://scholarworks.umb.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of massachusetts boston", "alternativeName": "umass boston", "country": "us", "url": "https://www.umb.edu", "identifier": [{"identifier": "https://ror.org/04ydmy275", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.umb.edu/do/oai yes 3562 9995 +6430 {"name": "touro college: digital commons @ touro law center", "language": "en"} [] https://digitalcommons.tourolaw.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "touro college and university system", "alternativeName": "", "country": "us", "url": "https://www.touro.edu/", "identifier": [{"identifier": "https://ror.org/05hwfvk38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.tourolaw.edu/do/oai/ yes 2224 2843 +6159 {"name": "university of dallas: udigital commons", "language": "en"} [] https://digitalcommons.udallas.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of dallas", "alternativeName": "", "country": "us", "url": "https://udallas.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.udallas.edu/do/oai yes 115 1478 +6139 {"name": "university of maine at farmington: scholar works", "language": "en"} [] https://scholarworks.umf.maine.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "learning_objects"] [{"name": "university of maine at farmington", "alternativeName": "", "country": "us", "url": "https://www.umf.maine.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.umf.maine.edu/do/oai/ yes 64 413 +6129 {"name": "university of minnesota, morris: digital well", "language": "en"} [] https://digitalcommons.morris.umn.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of minnesota morris", "alternativeName": "", "country": "us", "url": "https://morris.umn.edu", "identifier": [{"identifier": "https://ror.org/05vzqzh92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.morris.umn.edu/do/oai yes 7632 10012 +6387 {"name": "university of muhammadiyah prof. dr.hamka institutional repository", "language": "en"} [{"acronym": "uhamka repository"}] http://repository.uhamka.ac.id institutional [] 2022-01-12 15:36:14 2019-09-28 01:54:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "patents"] [{"name": "uhamka", "alternativeName": "university of muhammadiyah prof. dr.hamka", "country": "id", "url": "https://uhamka.ac.id", "identifier": [{"identifier": "https://ror.org/01wqn3353", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.uhamka.ac.id/cgi/oai2 yes 648 6216 +6186 {"name": "universiti teknikal malaysia melaka institutional repository", "language": "en"} [] http://eprints.utem.edu.my institutional [] 2022-01-12 15:36:14 2019-09-28 01:38:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "universiti teknikal malaysia melaka", "alternativeName": "utem", "country": "my", "url": "https://www.utem.edu.my", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.utem.edu.my/cgi/oai2 yes 3115 20672 +6368 {"name": "unisnu repository", "language": "en"} [] http://eprints.unisnu.ac.id institutional [] 2022-01-12 15:36:14 2019-09-28 01:52:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "nahdlatul ulama islamic university", "alternativeName": "", "country": "id", "url": "https://unisnu.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.unisnu.ac.id/cgi/oai2 yes 252 2 +6188 {"name": "universitdad de la laguna (ull): patrimonio bibliogr\u00e1fico lacunense", "language": "en"} [] https://hermes.bbtk.ull.es institutional [] 2022-01-12 15:36:14 2019-09-28 01:38:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of la laguna", "alternativeName": "", "country": "es", "url": "https://www.ull.es/", "identifier": [{"identifier": "https://ror.org/01r9z8p25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://hermes.bbtk.ull.es/pandora/cgi-bin/oai.exe yes 3202 +6464 {"name": "tohoku fukushi university repository", "language": "en"} [{"name": "\u6771\u5317\u798f\u7949\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tfulib.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "tohoku fukushi university", "alternativeName": "", "country": "jp", "url": "https://www.tfu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tfulib.repo.nii.ac.jp/oai yes 609 761 +6410 {"name": "tsurumi university tsurumi junior college repository", "language": "en"} [{"name": "\u9db4\u898b\u5927\u5b66\u30fb\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tsurumi-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:56:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "tsurumi university", "alternativeName": "", "country": "jp", "url": "https://www.tsurumi-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tsurumi-u.repo.nii.ac.jp/oai yes 783 949 +6347 {"name": "ueda womens junior college repository", "language": "en"} [{"name": "\u4e0a\u7530\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://uedawjc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "ueda womens junior college", "alternativeName": "", "country": "jp", "url": "http://www.uedawjc.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://uedawjc.repo.nii.ac.jp/oai yes 1710 1986 +6444 {"name": "tokyo polytechnic university repository", "language": "en"} [{"name": "\u6771\u4eac\u5de5\u82b8\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kougei.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "tokyo polytechnic university", "alternativeName": "", "country": "jp", "url": "https://www.t-kougei.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kougei.repo.nii.ac.jp/oai yes 1946 2074 +6466 {"name": "tohoku bunka gakuen university repository", "language": "en"} [{"name": "\u6771\u5317\u6587\u5316\u5b66\u5712\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tbgu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "tohoku bunka gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.tbgu.ac.jp", "identifier": [{"identifier": "https://ror.org/01wmx5158", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tbgu.repo.nii.ac.jp/oai yes 3 925 +6463 {"name": "tohoku gakuin university repository for academic information", "language": "en"} [{"name": "\u6771\u5317\u5b66\u9662\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tohoku-gakuin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "patents"] [{"name": "tohoku gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.tohoku-gakuin.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tohoku-gakuin.repo.nii.ac.jp/oai yes 822 8673 +6451 {"name": "tokyo city university academic repository", "language": "en"} [{"name": "\u6771\u4eac\u90fd\u5e02\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tcu-ar.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "tokyo city university", "alternativeName": "", "country": "jp", "url": "https://www.u-tokyo.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tcu-ar.repo.nii.ac.jp/oai yes 58 76 +6440 {"name": "tokyo university of arts repository", "language": "en"} [{"name": "\u6771\u4eac\u85dd\u8853\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://geidai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "tokyo university of the arts", "alternativeName": "", "country": "jp", "url": "https://www.geidai.ac.jp", "identifier": [{"identifier": "https://ror.org/00y809n33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://geidai.repo.nii.ac.jp/oai yes 757 1110 +6436 {"name": "tokyo women\u2019s college of physical education academic repository", "language": "en"} [{"name": "\u6771\u4eac\u5973\u5b50\u4f53\u80b2\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://twcpe.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tokyo women\u2019s college physical education", "alternativeName": "", "country": "jp", "url": "https://www.twcpe.ac.jp/", "identifier": [{"identifier": "https://ror.org/05dx9zk73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://twcpe.repo.nii.ac.jp/oai yes 27 815 +6427 {"name": "toyo eiwa university repository (japanese)", "language": "en"} [{"name": "\u6771\u6d0b\u82f1\u548c\u5973\u5b66\u9662\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyoeiwa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "toyo eiwa university", "alternativeName": "", "country": "jp", "url": "https://www.toyoeiwa.ac.jp", "identifier": [{"identifier": "https://ror.org/03weam126", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyoeiwa.repo.nii.ac.jp/oai yes 330 633 +6151 {"name": "university of hyogo academic repository", "language": "en"} [{"name": "\u5175\u5eab\u770c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-hyogo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:13 2019-09-28 01:35:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of hyogo", "alternativeName": "", "country": "jp", "url": "https://www.u-hyogo.ac.jp", "identifier": [{"identifier": "https://ror.org/0151bmh98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-hyogo.repo.nii.ac.jp/oai yes 1116 3793 +6446 {"name": "miyako-dori", "language": "en"} [{"name": "\u307f\u3084\u3053\u9ce5", "language": "ja"}] https://tokyo-metro-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tokyo metropolitan university", "alternativeName": "", "country": "jp", "url": "https://www.tmu.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokyo-metro-u.repo.nii.ac.jp/oai yes 4323 8649 +6455 {"name": "toita women\u2019s college academic repository", "language": "en"} [{"name": "\u6238\u677f\u5973\u5b50\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toita.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "toita womens college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toita.repo.nii.ac.jp/oai yes 59 84 +6426 {"name": "toyo gakuen university institutional repository", "language": "en"} [{"name": "\u6771\u6d0b\u5b66\u5712\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://togaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "toyo gakuen university", "alternativeName": "", "country": "jp", "url": "https://www.tyg.jp", "identifier": [{"identifier": "https://ror.org/048c1xv24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://togaku.repo.nii.ac.jp/oai yes 392 791 +6425 {"name": "toyohashi university of technology repository", "language": "en"} [{"name": "\u8c4a\u6a4b\u6280\u8853\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repo.lib.tut.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "toyohashi university of technology", "alternativeName": "", "country": "jp", "url": "https://www.tut.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repo.lib.tut.ac.jp/oai yes 195 2155 +6411 {"name": "tsukuba international university and tsukuba international junior college institutional repository", "language": "en"} [{"name": "\u3064\u304f\u3070\u56fd\u969b\u5927\u5b66\u30fb\u3064\u304f\u3070\u56fd\u969b\u77ed\u671f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tiu-tijc.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:56:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tsukuba international university", "alternativeName": "", "country": "jp", "url": "http://www.tsukuba.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tiu-tijc.repo.nii.ac.jp/oai yes 569 645 +6458 {"name": "koeki university academic repository", "language": "en"} [{"name": "\u6771\u5317\u516c\u76ca\u6587\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://koeki.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 01:58:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tohoku university of community service and science", "alternativeName": "", "country": "jp", "url": "https://www.koeki-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/005hf4246", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://koeki.repo.nii.ac.jp/oai yes 430 497 +6454 {"name": "tokai gakuin university academic repository", "language": "en"} [{"name": "\u6771\u6d77\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tokaigakuin-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "tokai gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.tokaigakuin-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03b55sb49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokaigakuin-u.repo.nii.ac.jp/oai yes 1792 1994 +6437 {"name": "tokyo womans christian university repository", "language": "en"} [{"name": "\u6771\u4eac\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://twcu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations"] [{"name": "tokyo womans christian university", "alternativeName": "", "country": "jp", "url": "http://www.twcu.ac.jp/univ/english", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://twcu.repo.nii.ac.jp/oai yes 6044 26670 +6346 {"name": "uekuda gakuen repository", "language": "en"} [{"name": "\u690d\u8349\u5b66\u5712\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://uekusa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "uekusa gakuen university", "alternativeName": "", "country": "jp", "url": "https://www.uekusa.ac.jp", "identifier": [{"identifier": "https://ror.org/03vejgn42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://uekusa.repo.nii.ac.jp/oai yes 423 506 +6413 {"name": "tsu city college repository", "language": "en"} [{"name": "\u4e09\u91cd\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mietan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:56:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tsu city college", "alternativeName": "", "country": "jp", "url": "https://www.tsu-cc.ac.jp/", "identifier": [{"identifier": "https://ror.org/01gjxh181", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mietan.repo.nii.ac.jp/oai yes 158 418 +6432 {"name": "tottori college of nursing and tottori college academic repository", "language": "en"} [{"name": "\u9ce5\u53d6\u770b\u8b77\u5927\u5b66\u30fb\u9ce5\u53d6\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cygnus.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tottori college", "alternativeName": "", "country": "jp", "url": "https://www.tcn.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cygnus.repo.nii.ac.jp/oai yes 127 325 +6428 {"name": "toyama prefectural university repository", "language": "en"} [{"name": "\u5bcc\u5c71\u770c\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://pu-toyama.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "toyama prefectural university", "alternativeName": "", "country": "jp", "url": "https://www.pu-toyama.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://pu-toyama.repo.nii.ac.jp/oai yes 15 32 +6412 {"name": "tsuda university repository", "language": "en"} [{"name": "\u6d25\u7530\u587e\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://tsuda.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:56:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "tsuda university", "alternativeName": "", "country": "jp", "url": "https://www.tsuda.ac.jp", "identifier": [{"identifier": "https://ror.org/027mg2511", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tsuda.repo.nii.ac.jp/oai yes 254 299 +6441 {"name": "tokyo university of agriculture and technology repository", "language": "en"} [{"name": "\u6771\u4eac\u8fb2\u5de5\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tuat.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:54 ["science", "technology"] ["theses_and_dissertations"] [{"name": "tokyo university of agriculture and technology", "alternativeName": "", "country": "jp", "url": "https://www.tuat.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tuat.repo.nii.ac.jp/oai yes 370 1848 +6438 {"name": "tokyo university of science repository for academic resources", "language": "en"} [{"name": "\u6771\u4eac\u7406\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tus.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:47 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "tokyo university of science", "alternativeName": "", "country": "jp", "url": "https://www.tus.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tus.repo.nii.ac.jp/oai yes 789 3495 +6443 {"name": "tokyo seiei college repositories", "language": "en"} [{"name": "\u6771\u4eac\u8056\u6804\u5927\u5b66 \u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tsc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:57:59 ["science"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "tokyo seiei college", "alternativeName": "", "country": "jp", "url": "https://www.tsc-05.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tsc.repo.nii.ac.jp/oai yes 773 1373 +6445 {"name": "tokyo online university repository", "language": "en"} [{"name": "\u6771\u4eac\u901a\u4fe1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tou.repo.nii.ac.jp institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:04 ["social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "tokyo online university", "alternativeName": "", "country": "jp", "url": "https://www.internet.ac.jp/lang/english.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tou.repo.nii.ac.jp/oai yes 31 47 +6349 {"name": "uw law digital commons (university of washington)", "language": "en"} [{"acronym": "uw"}] https://digitalcommons.law.uw.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:51:12 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects"] [{"name": "university of washington", "alternativeName": "uw", "country": "us", "url": "https://www.washington.edu/", "identifier": [{"identifier": "https://ror.org/00cvxb145", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.uw.edu/do/oai/ yes 6236 6889 +6397 {"name": "uc hastings scholarship repository", "language": "en"} [] https://repository.uchastings.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:54:44 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "datasets"] [{"name": "uc hastings college of law san francisco", "alternativeName": "", "country": "us", "url": "https://www.uchastings.edu", "identifier": [{"identifier": "https://ror.org/006dpe828", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.uchastings.edu/do/oai yes 7189 15411 +6138 {"name": "university of maine school of law digital commons", "language": "en"} [] https://digitalcommons.mainelaw.maine.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:40 ["social sciences"] ["journal_articles"] [{"name": "university of maine school of law", "alternativeName": "", "country": "us", "url": "https://mainelaw.maine.edu", "identifier": [{"identifier": "https://ror.org/04625j688", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.mainelaw.maine.edu/do/oai yes 1209 1317 +6176 {"name": "bowen law repository scholarship & archives", "language": "en"} [] https://lawrepository.ualr.edu institutional [] 2022-01-12 15:36:14 2019-09-28 01:37:43 ["social sciences"] ["journal_articles"] [{"name": "university of arkansas at little rock", "alternativeName": "ualr", "country": "us", "url": "https://ualr.edu", "identifier": [{"identifier": "https://ror.org/04fttyv97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://lawrepository.ualr.edu/do/oai yes 779 1691 +6162 {"name": "chicago unbound", "language": "en"} [] https://chicagounbound.uchicago.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:26 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "the university of chicago the law school", "alternativeName": "", "country": "us", "url": "https://www.law.uchicago.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://chicagounbound.uchicago.edu/do/oai yes 5795 20369 +6160 {"name": "university of cincinnati, college of law: scholarship and publications", "language": "en"} [] https://scholarship.law.uc.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:36:22 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of cincinnati", "alternativeName": "uc", "country": "us", "url": "https://www.uc.edu/", "identifier": [{"identifier": "https://ror.org/01e3m7079", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.uc.edu/do/oai/ yes 340 827 +6131 {"name": "scholarship repository", "language": "en"} [] https://scholarship.law.umassd.edu institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:15 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of massachusetts", "alternativeName": "umass", "country": "us", "url": "https://www.massachusetts.edu", "identifier": [{"identifier": "https://ror.org/0260j1g46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.umassd.edu/do/oai yes 117 403 +6135 {"name": "university of marketing and distribution sciences repository (japanese)", "language": "en"} [{"name": "\u6d41\u901a\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ryuka.repo.nii.ac.jp institutional [] 2022-01-12 15:36:13 2019-09-28 01:34:28 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of marketing and distribution sciences", "alternativeName": "", "country": "jp", "url": "https://www.umds.ac.jp", "identifier": [{"identifier": "https://ror.org/05k4ves29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ryuka.repo.nii.ac.jp/oai yes 75 1441 +6456 {"name": "tohoku women\u2019s junior college academic repository", "language": "en"} [{"name": "\u6771\u5317\u5973\u5b50\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toutan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:35 ["social sciences"] ["journal_articles"] [{"name": "tohoku women\u2019s junior college", "alternativeName": "", "country": "jp", "url": "http://www.toutan.ac.jp", "identifier": [{"identifier": "https://ror.org/05011v920", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toutan.repo.nii.ac.jp/oai yes 1 100 +6447 {"name": "tokyo metropolitan college of industrial technology repository(\u4eee\u79f0\uff09", "language": "en"} [{"name": "\u6771\u4eac\u90fd\u7acb\u7523\u696d\u6280\u8853\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://metro-cit.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:14 2019-09-28 01:58:09 ["technology"] ["journal_articles"] [{"name": "tokyo metropolitan college of industrial technology", "alternativeName": "", "country": "jp", "url": "https://www.metro-cit.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://metro-cit.repo.nii.ac.jp/oai yes 235 250 +6738 {"name": "seijoh university repository", "language": "en"} [{"name": "\u661f\u57ce\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seijoh-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:08 ["arts", "humanities", "health and medicine"] ["journal_articles"] [{"name": "seijoh university", "alternativeName": "", "country": "jp", "url": "http://www.seijoh-u.ac.jp", "identifier": [{"identifier": "https://ror.org/0085wxm22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seijoh-u.repo.nii.ac.jp/oai yes 240 287 +6717 {"name": "senzoku gakuen college of music and senzoku junior college of childhood education repository", "language": "en"} [{"name": "\u6d17\u8db3\u5b66\u5712\u97f3\u697d\u5927\u5b66\u30fb\u6d17\u8db3\u3053\u3069\u3082\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://senzoku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:15:56 ["arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "senzoku gakuen college of music", "alternativeName": "", "country": "jp", "url": "https://www.senzoku.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://senzoku.repo.nii.ac.jp/oai yes 93 801 +6710 {"name": "sewanee dspace repository", "language": "en"} [] https://dspace.sewanee.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:15:23 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "the university of the south", "alternativeName": "", "country": "us", "url": "https://new.sewanee.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.sewanee.edu/oai/openaire yes +6675 {"name": "creative matter", "language": "en"} [] https://creativematter.skidmore.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:12:39 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "skidmore college", "alternativeName": "", "country": "us", "url": "https://www.skidmore.edu", "identifier": [{"identifier": "https://ror.org/04nzrzs08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://creativematter.skidmore.edu/do/oai/ yes 540 1935 +6697 {"name": "shizuoka institute of science and technology repository", "language": "en"} [{"name": "\u9759\u5ca1\u7406\u5de5\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sist.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:06 ["arts", "humanities"] ["journal_articles"] [{"name": "shizuoka institute of science and technology", "alternativeName": "", "country": "jp", "url": "https://www.sist.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sist.repo.nii.ac.jp/oai yes 245 272 +6620 {"name": "sugino fashion college academic repository", "language": "en"} [{"name": "\u6749\u91ce\u670d\u98fe\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sugino-fc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:09:11 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "sugino fashion college", "alternativeName": "", "country": "jp", "url": "https://www.sugino-fc.ac.jp", "identifier": [{"identifier": "https://ror.org/00jcrsy58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sugino-fc.repo.nii.ac.jp/oai yes 666 1254 +6516 {"name": "the japan foundation repository", "language": "en"} [{"name": "\u56fd\u969b\u4ea4\u6d41\u57fa\u91d1\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jpf.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:02:09 ["arts", "humanities"] ["journal_articles"] [{"name": "the japan foundation", "alternativeName": "", "country": "jp", "url": "https://www.jpf.org.uk", "identifier": [{"identifier": "https://ror.org/024jbvq59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jpf.repo.nii.ac.jp/oai yes 491 812 +6741 {"name": "segi gakuen repository", "language": "en"} [{"name": "\u702c\u6728\u5b66\u5712\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mizuho.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:19 ["arts", "humanities"] ["journal_articles"] [{"name": "aichi mizuho college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mizuho.repo.nii.ac.jp/oai yes 228 569 +6694 {"name": "shobi university academic repository", "language": "en"} [{"name": "\u5c1a\u7f8e\u5b66\u5712\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shobi-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:50 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "shobi university academic repository", "alternativeName": "", "country": "jp", "url": "https://www.shobi-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/00wtb8g49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shobi-u.repo.nii.ac.jp/oai yes 415 719 +6706 {"name": "shiga junior college academic repository", "language": "en"} [{"name": "\u6ecb\u8cc0\u77ed\u671f\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shigatan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:41 ["arts", "humanities"] ["other_special_item_types"] [{"name": "shiga junior college", "alternativeName": "", "country": "jp", "url": "https://www.sumire.ac.jp/tandai", "identifier": [{"identifier": "https://ror.org/04ny33f60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shigatan.repo.nii.ac.jp/oai yes 88 143 +6786 {"name": "scholarly commons @ baystate health", "language": "en"} [] https://scholarlycommons.libraryinfo.bhs.org institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:18 ["health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "baystate health", "alternativeName": "", "country": "us", "url": "https://www.baystatehealth.org", "identifier": [{"identifier": "https://ror.org/02x011m46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarlycommons.libraryinfo.bhs.org/do/oai yes 164 6749 +6735 {"name": "seirei christpher university repository (japanese)", "language": "en"} [{"name": "\u8056\u96b7\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seirei-univ.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:55 ["health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "seirei christopher university", "alternativeName": "", "country": "jp", "url": "https://www.seirei.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seirei-univ.repo.nii.ac.jp/oai yes 1192 1392 +6653 {"name": "south australian health library service", "language": "en"} [] http://cdm20042.contentdm.oclc.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:11:24 ["health and medicine"] ["learning_objects", "other_special_item_types"] [{"name": "south australian health library", "alternativeName": "", "country": "au", "url": "https://salus.sa.gov.au/salus", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm20042.contentdm.oclc.org/oai/oai.php yes 1912 +6633 {"name": "st. lukes international university library (sliu@rchive)", "language": "en"} [{"name": "\u8056\u8def\u52a0\u56fd\u969b\u5927\u5b66\u56f3\u66f8\u9928 (sliu@rchive)", "language": "ja"}] http://arch.luke.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:09:49 ["health and medicine"] ["journal_articles"] [{"name": "st. lukes international university", "alternativeName": "", "country": "jp", "url": "http://university.luke.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arch.luke.ac.jp/dspace-oai/request yes +6783 {"name": "scholarly commons @ baptist health south florida", "language": "en"} [] https://scholarlycommons.baptisthealth.net institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:12 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "baptist health south florida", "alternativeName": "", "country": "us", "url": "https://baptisthealth.net", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarlycommons.baptisthealth.net/do/oai/ yes 296 3894 +6531 {"name": "the college of physicians of philadelphia digital library", "language": "en"} [] https://www.cppdigitallibrary.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:03:05 ["health and medicine"] ["other_special_item_types"] [{"name": "the college of physicians of philadelphia", "alternativeName": "", "country": "us", "url": "https://www.collegeofphysicians.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} https://www.cppdigitallibrary.org/oai-pmh-repository/request yes 2724 +6688 {"name": "showa university academic resource repository", "language": "en"} [{"name": "\u662d\u548c\u5927\u5b66\u5b66\u8853\u696d\u7e3e\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://showa.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:23 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "showa university", "alternativeName": "", "country": "jp", "url": "http://www.showa-u.ac.jp/en/index.html", "identifier": [{"identifier": "https://ror.org/04mzk4q39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://showa.repo.nii.ac.jp/oai yes 1690 3697 +6615 {"name": "summit memory", "language": "en"} [{"acronym": "sm"}] https://www.summitmemory.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:08:56 ["humanities"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "akron-summit county public library", "alternativeName": "", "country": "us", "url": "https://www.akronlibrary.org", "identifier": [{"identifier": "https://ror.org/05p403c12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://www.summitmemory.org/oai/oai.php yes 2365 +6505 {"name": "the pontifical university of john paul ii in kracow (upjpii) digital library", "language": "en"} [{"name": "uniwersytet papieski jana paw\u0142a ii w krakowie", "language": "pl"}] http://bc.upjp2.edu.pl institutional [] 2022-01-12 15:36:15 2019-09-28 02:01:16 ["humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "pontifical university of john paul ii", "alternativeName": "", "country": "pl", "url": "http://upjp2.edu.pl/eng/", "identifier": [{"identifier": "https://ror.org/0583g9182", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} http://bc.upjp2.edu.pl/dlibra/oai-pmh-repository.xml yes +6740 {"name": "seigakuin repository for academic archive", "language": "en"} [{"name": "\u8056\u5b66\u9662\u5b66\u8853\u60c5\u5831\u767a\u4fe1\u30b7\u30b9\u30c6\u30e0\u3000serve", "language": "ja"}] https://serve.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:17 ["science", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "seigakuin university", "alternativeName": "", "country": "jp", "url": "https://www.seigakuin.jp", "identifier": [{"identifier": "https://ror.org/04p9zgs78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://serve.repo.nii.ac.jp/oai yes 1096 3370 +6479 {"name": "the university of utah: j. willard marriott digital library", "language": "en"} [] https://collections.lib.utah.edu institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "the university of utah", "alternativeName": "", "country": "us", "url": "https://www.utah.edu", "identifier": [{"identifier": "https://ror.org/03r0ha626", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://collections.lib.utah.edu/oai yes 10415 586745 +6545 {"name": "akm digital repository", "language": "en"} [] https://cdm16771.contentdm.oclc.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:03:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "texas a&m university-kingsville", "alternativeName": "", "country": "us", "url": "https://www.tamuk.edu", "identifier": [{"identifier": "https://ror.org/05abs3w97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://cdm16771.contentdm.oclc.org/oai/oai.php yes 1088 +6611 {"name": "swinburne commons", "language": "en"} [] https://commons.swinburne.edu.au institutional [] 2022-01-12 15:36:15 2019-09-28 02:08:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "swinburne university", "alternativeName": "", "country": "au", "url": "https://www.swinburne.edu.au", "identifier": [{"identifier": "https://ror.org/031rekg67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://commons.swinburne.edu.au/oai yes 9560 +6481 {"name": "the university of scranton archives and helen gallagher mchugh special collections", "language": "en"} [] http://digitalservices.scranton.edu institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the university of scranton a jesuit university", "alternativeName": "", "country": "us", "url": "https://www.scranton.edu", "identifier": [{"identifier": "https://ror.org/05xwb6v37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digitalservices.scranton.edu/oai/oai.php yes 112095 +6642 {"name": "springfield college digital collections", "language": "en"} [] https://cdm16122.contentdm.oclc.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:10:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "springfield college", "alternativeName": "", "country": "us", "url": "https://springfield.edu", "identifier": [{"identifier": "https://ror.org/02ak1t432", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16122.contentdm.oclc.org/oai/oai.php yes 19773 +6650 {"name": "southwestern university scholar", "language": "en"} [{"acronym": "su scholar"}] https://suscholar.southwestern.edu institutional [] 2022-01-12 15:36:15 2019-09-28 02:10:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southwestern university", "alternativeName": "", "country": "us", "url": "https://www.southwestern.edu", "identifier": [{"identifier": "https://ror.org/05gj63w50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://suscholar.southwestern.edu/oai/openaire yes +6785 {"name": "scholarly commons @ miamioh", "language": "en"} [{"acronym": "scholarly commons @ mu"}] https://sc.lib.miamioh.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "miami university", "alternativeName": "", "country": "us", "url": "http://miamioh.edu", "identifier": [{"identifier": "https://ror.org/05nbqxr67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://sc.lib.miamioh.edu/oai/openaire yes 304 805 +6590 {"name": "sistema de publicacao electronica de teses e dissertacoes", "language": "pt"} [{"acronym": "tede"}] https://bibliotecatede.uninove.br institutional [] 2022-01-12 15:36:15 2019-09-28 02:07:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "uninove", "alternativeName": "universidade nove de julho", "country": "br", "url": "https://www.uninove.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bibliotecatede.uninove.br/oai/request yes +6754 {"name": "scientific documents from the saarland university,", "language": "en"} [] http://scidok.sulb.uni-saarland.de institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "saarland university", "alternativeName": "", "country": "de", "url": "https://www.uni-saarland.de/nc/en/home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://scidok.sulb.uni-saarland.de/phpoai/oai2.php yes 3154 6034 +6547 {"name": "tamu-cc repository", "language": "en"} [] https://tamucc-ir.tdl.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:04:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers"] [{"name": "texas a&m university corpus christi", "alternativeName": "", "country": "mx", "url": "https://tamucc.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tamucc-ir.tdl.org/oai/openaire yes +6551 {"name": "territory stories (northern territory government, australia)", "language": "en"} [] https://www.territorystories.nt.gov.au governmental [] 2022-01-12 15:36:15 2019-09-28 02:04:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "northern territory government", "alternativeName": "nt.gov.au", "country": "au", "url": "https://nt.gov.au/", "identifier": [{"identifier": "https://ror.org/01537wn74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://www.territorystories.nt.gov.au/oai/request yes 230588 +6511 {"name": "the knowledge bank", "language": "en"} [] https://kb.osu.edu institutional [] 2022-01-12 15:36:15 2019-09-28 02:01:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the ohio state university", "alternativeName": "", "country": "us", "url": "https://www.osu.edu", "identifier": [{"identifier": "https://ror.org/00rs6vg23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://kb.osu.edu/dspace/oai/openaire yes +6658 {"name": "soka university & soka womens college repository", "language": "en"} [{"name": "\u5275\u4fa1\u5927\u5b66\u30fb\u5275\u4fa1\u5973\u5b50\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://soka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:11:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "soka university", "alternativeName": "", "country": "jp", "url": "https://www.soka.ac.jp/en", "identifier": [{"identifier": "https://ror.org/003qdfg20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://soka.repo.nii.ac.jp/oai yes 1335 40611 +6737 {"name": "seinan gakuin university institutional repository", "language": "en"} [{"name": "\u897f\u5357\u5b66\u9662\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.seinan-gu.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "seinan gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.seinan-gu.ac.jp/eng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seinan-gu.ac.jp/dspace-oai/request yes +6657 {"name": "sophos repositorio institucional", "language": "es"} [] http://repository.lasalle.edu.co institutional [] 2022-01-12 15:36:15 2019-09-28 02:11:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "la salle university, colombia", "alternativeName": "", "country": "co", "url": "https://www.lasalle.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.lasalle.edu.co/oai yes +6546 {"name": "tamug dspace repository", "language": "en"} [] https://tamug-ir.tdl.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:04:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "texas a&m university", "alternativeName": "", "country": "gb", "url": "https://www.tamu.edu", "identifier": [{"identifier": "https://ror.org/01f5ytq51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tamug-ir.tdl.org/oai/openaire yes +6593 {"name": "tede- puc goi\u00e1s", "language": "en"} [] http://tede2.pucgoias.edu.br:8080 institutional [] 2022-01-12 15:36:15 2019-09-28 02:07:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "pontifical catholic university of goi\u00e1s", "alternativeName": "puc-goi\u00e1s", "country": "br", "url": "http://www.pucgoias.edu.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://tede2.pucgoias.edu.br:8080/oai/request yes +6592 {"name": "tede- ufam", "language": "en"} [] https://tede.ufam.edu.br institutional [] 2022-01-12 15:36:15 2019-09-28 02:07:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade federal do amazonas", "alternativeName": "ufam", "country": "br", "url": "https://ufam.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tede.ufam.edu.br/oai/request yes +6743 {"name": "seattle pacific university: digital commons @ spu", "language": "en"} [{"acronym": "spu"}] https://digitalcommons.spu.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "seattle pacific university", "alternativeName": "spu", "country": "us", "url": "https://spu.edu/", "identifier": [{"identifier": "https://ror.org/02gzbg991", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.spu.edu/do/oai/ yes +6788 {"name": "scholarworks @ seattleu (seattle university)", "language": "en"} [{"acronym": "su"}] https://scholarworks.seattleu.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "seattle university", "alternativeName": "su", "country": "us", "url": "https://www.seattleu.edu/", "identifier": [{"identifier": "https://ror.org/02jqc0m91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.seattleu.edu/do/oai/ yes 1489 3316 +6544 {"name": "texas southern university, school of public affairs: digital scholarship", "language": "en"} [{"acronym": "tsu"}] https://digitalscholarship.tsu.edu institutional [] 2022-01-12 15:36:15 2019-09-28 02:03:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "texas southern university", "alternativeName": "tsu", "country": "us", "url": "http://www.tsu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalscholarship.tsu.edu/do/oai/ yes 477 19498 +6779 {"name": "scholarspace @ johnson county community college", "language": "en"} [] https://scholarspace.jccc.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:19:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "johnson county community college", "alternativeName": "", "country": "us", "url": "https://www.jccc.edu/", "identifier": [{"identifier": "https://ror.org/059r8r572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarspace.jccc.edu/do/oai/ yes 549 1646 +6670 {"name": "smith college: smith scholarworks", "language": "en"} [] https://scholarworks.smith.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:12:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "smith college", "alternativeName": "", "country": "us", "url": "https://www.smith.edu/", "identifier": [{"identifier": "https://ror.org/0497crr92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.smith.edu/do/oai/ yes 875 3844 +6787 {"name": "scholarly commons university of the pacific", "language": "en"} [] https://scholarlycommons.pacific.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of the pacific", "alternativeName": "", "country": "us", "url": "https://www.pacific.edu", "identifier": [{"identifier": "https://ror.org/05ma4gw77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarlycommons.pacific.edu/do/oai yes 6534 59858 +6780 {"name": "scholarship, research, and creative work at bryn mawr college", "language": "en"} [] https://repository.brynmawr.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:19:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "bryn mawr college", "alternativeName": "", "country": "us", "url": "https://www.brynmawr.edu", "identifier": [{"identifier": "https://ror.org/05sjwtp51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.brynmawr.edu/do/oai/ yes 3390 4218 +6728 {"name": "selectedworks @ chapman university dale e. fowler school of law", "language": "en"} [] https://chapmanlaw.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "chapman university", "alternativeName": "", "country": "us", "url": "https://www.chapman.edu/index.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://chapmanlaw.works.bepress.com/do/oai/ yes 1539 +6712 {"name": "seton hall university erepository", "language": "en"} [] https://scholarship.shu.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:15:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "seton hall university", "alternativeName": "", "country": "us", "url": "https://www.shu.edu", "identifier": [{"identifier": "https://ror.org/007tn5k56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.shu.edu/do/oai yes 2613 12733 +6634 {"name": "st. johns university: st. johns scholar", "language": "en"} [] https://scholar.stjohns.edu institutional [] 2022-01-12 15:36:15 2019-09-28 02:09:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "st. johns university", "alternativeName": "", "country": "us", "url": "https://www.stjohns.edu/", "identifier": [{"identifier": "https://ror.org/00bgtad15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholar.stjohns.edu/do/oai/ yes 138 487 +6564 {"name": "technical disclosure common", "language": "en"} [] https://www.tdcommons.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:05:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "", "alternativeName": "", "country": "ad", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://www.tdcommons.org/do/oai yes 1617 4282 +6517 {"name": "the jackson laboratory: the mouseion at the jaxlibrary", "language": "en"} [] https://mouseion.jax.org institutional [] 2022-01-12 15:36:15 2019-09-28 02:02:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "the jackson laboratory", "alternativeName": "", "country": "us", "url": "https://www.jax.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://mouseion.jax.org/do/oai yes 358 74769 +6580 {"name": "tubiblio", "language": "en"} [] http://tubiblio.ulb.tu-darmstadt.de institutional [] 2022-01-12 15:36:15 2019-09-28 02:06:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "technical university darmstadt", "alternativeName": "", "country": "de", "url": "https://www.tu-darmstadt.de/index.en.jsp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://tubiblio.ulb.tu-darmstadt.de/cgi/oai2 yes 99446 +6521 {"name": "the international islamic university malaysia repository", "language": "en"} [] http://irep.iium.edu.my institutional [] 2022-01-12 15:36:15 2019-09-28 02:02:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "international islamic university malaysia", "alternativeName": "", "country": "my", "url": "http://www.iium.edu.my/", "identifier": [{"identifier": "https://ror.org/03s9hs139", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://irep.iium.edu.my/cgi/oai2 yes 10254 52043 +6475 {"name": "theological university: repository", "language": "en"} [{"name": "theologische universiteit: repository", "language": "nl"}] http://theoluniv.ub.rug.nl institutional [] 2022-01-12 15:36:15 2019-09-28 01:59:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "protestant theological university", "alternativeName": "", "country": "nl", "url": "https://www.pthu.nl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://theoluniv.ub.rug.nl/cgi/oai2 yes 92 104 +6635 {"name": "st. andrew\u2019s repository system", "language": "en"} [{"acronym": "stars"}, {"name": "\u6843\u5c71\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://stars.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:10:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "monoyama gakuin university", "alternativeName": "", "country": "gb", "url": "https://www.andrew.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://stars.repo.nii.ac.jp/oai yes 8337 8671 +6693 {"name": "shohoku college repository", "language": "en"} [{"name": "\u6e58\u5317\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shohoku.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "shohoku college", "alternativeName": "", "country": "jp", "url": "https://www.shohoku.ac.jp", "identifier": [{"identifier": "https://ror.org/013wq3j16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shohoku.repo.nii.ac.jp/oai yes 200 932 +6483 {"name": "nagano university repository", "language": "en"} [{"name": "\u9577\u91ce\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagano.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:00:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "nagano university", "alternativeName": "", "country": "jp", "url": "https://www.nagano.ac.jp", "identifier": [{"identifier": "https://ror.org/03aptyv62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagano.repo.nii.ac.jp/oai yes 835 1300 +6718 {"name": "senri kinran university academic repository", "language": "en"} [{"name": "\u5343\u91cc\u91d1\u862d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kinran.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "senri kinran university", "alternativeName": "", "country": "jp", "url": "https://www.kinran.ac.jp/", "identifier": [{"identifier": "https://ror.org/022rp9q74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kinran.repo.nii.ac.jp/oai yes 347 390 +6698 {"name": "shitennoji university repository", "language": "en"} [{"name": "\u56db\u5929\u738b\u5bfa\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shitennojiuniversity.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "shitennoji university", "alternativeName": "", "country": "jp", "url": "http://www.shitennoji.ac.jp/ibu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shitennojiuniversity.repo.nii.ac.jp/oai yes 221 250 +6695 {"name": "shizuoka university of art and culture academic repository", "language": "en"} [{"name": "\u9759\u5ca1\u6587\u5316\u82b8\u8853\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://suac.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "shizuoka university of art and culture", "alternativeName": "", "country": "jp", "url": "https://www.suac.ac.jp", "identifier": [{"identifier": "https://ror.org/04q1n2n82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://suac.repo.nii.ac.jp/oai yes 1099 1650 +6687 {"name": "showa womens university repository", "language": "en"} [{"name": "\u662d\u548c\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://swu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "showa womens university", "alternativeName": "", "country": "jp", "url": "https://en.swu.ac.jp", "identifier": [{"identifier": "https://ror.org/03sf6p593", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://swu.repo.nii.ac.jp/oai yes 4866 6492 +6612 {"name": "suzuka university academic repository", "language": "en"} [{"name": "\u9234\u9e7f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://suzuka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:08:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "suzuka university", "alternativeName": "", "country": "jp", "url": "https://www.suzuka-iu.ac.jp", "identifier": [{"identifier": "https://ror.org/028vh3r56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://suzuka.repo.nii.ac.jp/oai yes 1172 3000 +6575 {"name": "takasaki city university of economics institutional repository", "language": "en"} [{"name": "\u9ad8\u5d0e\u7d4c\u6e08\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tcue.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:06:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "takasaki city university of economics", "alternativeName": "", "country": "jp", "url": "https://www.tcue.ac.jp", "identifier": [{"identifier": "https://ror.org/05m6adj80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tcue.repo.nii.ac.jp/oai yes 626 1166 +6490 {"name": "the university of aizu, junior college division academic repository", "language": "en"} [{"name": "\u4f1a\u6d25\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jc.u-aizu.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:00:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "the university of aizu, junior college division", "alternativeName": "", "country": "jp", "url": "http://www.jc.u-aizu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jc.u-aizu.repo.nii.ac.jp/oai yes 68 1321 +6739 {"name": "seijo university repository", "language": "en"} [{"name": "\u6210\u57ce\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seijo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "seijo university", "alternativeName": "", "country": "jp", "url": "https://www.seijo.ac.jp/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seijo.repo.nii.ac.jp/oai yes 4292 5743 +6736 {"name": "seinan jo gakuin university academic repository", "language": "en"} [{"name": "\u897f\u5357\u5973\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seinan-jo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "seinan jo gakuin university", "alternativeName": "", "country": "jp", "url": "http://seinan-jo.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seinan-jo.repo.nii.ac.jp/oai yes 293 319 +6734 {"name": "seisen jogakuin repository", "language": "en"} [{"name": "\u6e05\u6cc9\u5973\u5b66\u9662\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seisen-jc.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "seisen jogakuin college", "alternativeName": "", "country": "jp", "url": "https://www.seisen-jc.ac.jp/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seisen-jc.repo.nii.ac.jp/oai yes 440 518 +6733 {"name": "seitoku university repository", "language": "en"} [{"name": "\u8056\u5fb3\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seitoku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "seitoku university", "alternativeName": "", "country": "jp", "url": "http://www.seitoku.jp/univ/", "identifier": [{"identifier": "https://ror.org/0441s6w50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seitoku.repo.nii.ac.jp/oai yes 176 1255 +6708 {"name": "shibaura institute of technology repository", "language": "en"} [{"name": "\u829d\u6d66\u5de5\u696d\u5927\u5b66\u3000\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shibaura.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "shibaura institute of technology", "alternativeName": "", "country": "jp", "url": "https://www.shibaura-it.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shibaura.repo.nii.ac.jp/oai yes 122 164 +6703 {"name": "shijonawate gakuen university \u30fbshijonawate gakuen junior college repository", "language": "en"} [{"name": "\u56db\u689d\u7577\u5b66\u5712\u5927\u5b66\u30fb\u56db\u689d\u7577\u5b66\u5712\u77ed\u671f\u5927\u5b66 \u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shijonawate-gakuen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "shijonawate gakuen university", "alternativeName": "", "country": "jp", "url": "https://www.shijonawate-gakuen.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shijonawate-gakuen.repo.nii.ac.jp/oai yes 412 729 +6701 {"name": "shinshu honan junior college repository", "language": "en"} [{"name": "\u4fe1\u5dde\u8c4a\u5357\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://honan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "shinshu honan junior college", "alternativeName": "", "country": "jp", "url": "https://www.honan.ac.jp/", "identifier": [{"identifier": "https://ror.org/016qc0h19", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://honan.repo.nii.ac.jp/oai yes 286 305 +6686 {"name": "shukutoku university academic repository", "language": "en"} [{"name": "\u6dd1\u5fb3\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shukutoku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "shukutoku university", "alternativeName": "", "country": "jp", "url": "https://www.shukutoku.ac.jp", "identifier": [{"identifier": "https://ror.org/02std5y37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shukutoku.repo.nii.ac.jp/oai yes 1101 1945 +6601 {"name": "takenoko:institutional repository", "language": "en"} [{"name": "\u540d\u5916\u5927\u30fb\u540d\u5b66\u82b8\u5927\u30ea\u30dd\u30b8\u30c8\u30ea\uff1a\u7af9\u306e\u5eab", "language": "ja"}] https://nufs-nuas.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:07:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "nagoya university of foreign studies", "alternativeName": "", "country": "jp", "url": "http://en.nagoya-u.ac.jp", "identifier": [{"identifier": "https://ror.org/04chrp450", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nufs-nuas.repo.nii.ac.jp/oai yes 1255 1573 +6578 {"name": "taisho university institutional repository", "language": "en"} [{"name": "\u5927\u6b63\u5927\u5b66 \u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tais.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:06:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "taisho university", "alternativeName": "", "country": "jp", "url": "https://www.tais.ac.jp/", "identifier": [{"identifier": "https://ror.org/00c2t9540", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tais.repo.nii.ac.jp/oai yes 1016 1722 +6518 {"name": "the international university of kagoshima repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u56fd\u969b\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iuk-repo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:02:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "the international university of kagoshima", "alternativeName": "", "country": "jp", "url": "http://www.iuk.ac.jp/english", "identifier": [{"identifier": "https://ror.org/01h6cr239", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iuk-repo.repo.nii.ac.jp/oai yes 606 1243 +6704 {"name": "shigakukan university repository", "language": "en"} [{"name": "\u5fd7\u5b78\u9928\u5927\u5b66 \u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shigakukan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "shigakukan university", "alternativeName": "", "country": "jp", "url": "http://www.shigakukan.ac.jp/english.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shigakukan.repo.nii.ac.jp/oai yes 757 +6702 {"name": "shikoku university academic repository", "language": "en"} [{"name": "\u56db\u56fd\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shikoku-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "shikoku university", "alternativeName": "", "country": "jp", "url": "https://www.shikoku-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03jeahd70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shikoku-u.repo.nii.ac.jp/oai yes 418 540 +6700 {"name": "shiraume gakuen university & college repository", "language": "en"} [{"name": "\u767d\u6885\u5b66\u5712\u5927\u5b66\u30fb\u77ed\u671f\u5927\u5b66 \u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shiraume.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "shiraume gakuen university", "alternativeName": "", "country": "jp", "url": "http://daigaku.shiraume.ac.jp/", "identifier": [{"identifier": "https://ror.org/03ram9582", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shiraume.repo.nii.ac.jp/oai yes 2011 2368 +6689 {"name": "showa pharmaceutical university repository", "language": "en"} [{"name": "\u662d\u548c\u85ac\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shoyaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "showa pharmaceutical university", "alternativeName": "", "country": "jp", "url": "https://www.shoyaku.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shoyaku.repo.nii.ac.jp/oai yes 82 109 +6619 {"name": "sugiyama jogakuen university academic repository", "language": "en"} [{"name": "\u6919\u5c71\u5973\u5b66\u5712\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://lib.sugiyama-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:09:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "sugiyama jogakuen university", "alternativeName": "", "country": "jp", "url": "http://www.sugiyama-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://lib.sugiyama-u.repo.nii.ac.jp/oai yes 717 2809 +6719 {"name": "sendai university repositry", "language": "en"} [{"name": "\u4ed9\u53f0\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sendai-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "sendai university", "alternativeName": "", "country": "jp", "url": "https://www.sendaidaigaku.jp/", "identifier": [{"identifier": "https://ror.org/00r8qyj34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sendai-u.repo.nii.ac.jp/oai yes 1286 1360 +6571 {"name": "tama art university repository", "language": "en"} [{"name": "\u591a\u6469\u7f8e\u8853\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tamabi.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:06:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "tama art university", "alternativeName": "", "country": "jp", "url": "https://www.tamabi.ac.jp", "identifier": [{"identifier": "https://ror.org/01044vd48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tamabi.repo.nii.ac.jp/oai yes 94 981 +6669 {"name": "tenshi college repository", "language": "en"} [{"name": "\u5929\u4f7f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tenshi.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:12:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "tenshi college", "alternativeName": "", "country": "jp", "url": "https://www.tenshi.ac.jp", "identifier": [{"identifier": "https://ror.org/01981np70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tenshi.repo.nii.ac.jp/oai yes 323 338 +6506 {"name": "the open university of japan repository", "language": "en"} [{"name": "\u653e\u9001\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ouj.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:01:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the open university of japan", "alternativeName": "", "country": "jp", "url": "https://www.ouj.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ouj.repo.nii.ac.jp/oai yes 4858 5666 +6690 {"name": "shonan institute of technology repository", "language": "en"} [{"name": "\u6e58\u5357\u5de5\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shonan-it.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:13:28 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "shonan institute of technology", "alternativeName": "", "country": "jp", "url": "https://www.shonan-it.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shonan-it.repo.nii.ac.jp/oai yes 79 664 +6696 {"name": "shizuoka sangyo unversity academic repository", "language": "en"} [{"name": "\u9759\u5ca1\u7523\u696d\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shizusan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:16 2019-09-28 02:14:04 ["science"] ["journal_articles"] [{"name": "shizuoka sangyo university", "alternativeName": "", "country": "jp", "url": "https://www.ssu.ac.jp/news/news_detail463.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shizusan.repo.nii.ac.jp/oai yes 1420 1748 +6541 {"name": "repository@twu", "language": "en"} [] https://twu-ir.tdl.org institutional [] 2022-01-28 09:38:28 2019-09-28 02:03:40 ["social sciences", "humanities", "arts", "health and medicine", "mathematics", "engineering", "technology", "science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "twu", "alternativeName": "texas womans university", "country": "us", "url": "https://twu.edu", "identifier": [{"identifier": "https://ror.org/04dyzkj40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://twu-ir.tdl.org/oai yes +6625 {"name": "studenttheses@cbs", "language": "en"} [] https://studenttheses.cbs.dk institutional [] 2022-01-12 15:36:15 2019-09-28 02:09:25 ["social sciences"] ["theses_and_dissertations"] [{"name": "copenhagen business school", "alternativeName": "", "country": "dk", "url": "https://www.cbs.dk/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://studenttheses.cbs.dk/oai/request yes 5120 +6727 {"name": "selectedworks @ charleston school of law", "language": "en"} [] https://charlestonlaw.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:36 ["social sciences"] ["journal_articles"] [{"name": "charleston school of law", "alternativeName": "", "country": "us", "url": "http://www.charlestonlaw.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://charlestonlaw.works.bepress.com/do/oai yes 343 +6723 {"name": "selectedworks @ university of south dakota school of law", "language": "en"} [] https://lawusd.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:19 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of south dakota", "alternativeName": "", "country": "us", "url": "https://www.usd.edu", "identifier": [{"identifier": "https://ror.org/0043h8f16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://lawusd.works.bepress.com/do/oai yes 410 +6501 {"name": "the research repository @ wvu", "language": "en"} [] https://researchrepository.wvu.edu institutional [] 2022-01-12 15:36:15 2019-09-28 02:01:07 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "wvu", "alternativeName": "west virginia university", "country": "us", "url": "https://www.wvu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://researchrepository.wvu.edu/do/oai yes 7633 47005 +6784 {"name": "scholarly commons at boston university school of law", "language": "en"} [] https://scholarship.law.bu.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:14 ["social sciences"] ["journal_articles"] [{"name": "boston university school of law", "alternativeName": "", "country": "us", "url": "http://www.bu.edu/law", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.bu.edu/do/oai/ yes 554 1475 +6742 {"name": "seattleu school of law digital commons", "language": "en"} [] https://digitalcommons.law.seattleu.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:17:22 ["social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "seattle university", "alternativeName": "", "country": "us", "url": "https://www.seattleu.edu", "identifier": [{"identifier": "https://ror.org/02jqc0m91", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.seattleu.edu/do/oai yes 1802 4183 +6726 {"name": "selectedworks @ melbourne business school", "language": "en"} [] https://mbs.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:29 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "the university of melbourne", "alternativeName": "", "country": "au", "url": "https://mbs.edu/home", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://mbs.works.bepress.com/do/oai yes 713 +6725 {"name": "selectedworks @ rutgers school of law-newark", "language": "en"} [] https://rutgerslawnewark.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:27 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "rutgers the state university of new jersey", "alternativeName": "", "country": "us", "url": "https://law.rutgers.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://rutgerslawnewark.works.bepress.com/do/oai yes 32 +6724 {"name": "selectedworks @ university of pennsylvania - biostatistics", "language": "en"} [] https://upennbiostats.works.bepress.com institutional [] 2022-01-12 15:36:16 2019-09-28 02:16:20 ["social sciences"] ["journal_articles"] [{"name": "university of pennsylvania", "alternativeName": "", "country": "us", "url": "https://home.www.upenn.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://upennbiostats.works.bepress.com/do/oai/ yes 21 +6722 {"name": "selectedworks @ widener university commonwealth law school", "language": "en"} [] https://commonwealthlawwidener.works.bepress.com disciplinary [] 2022-01-12 15:36:16 2019-09-28 02:16:17 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "widener university", "alternativeName": "", "country": "us", "url": "https://www.widener.edu/", "identifier": [{"identifier": "https://ror.org/00nsyd297", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commonwealthlawwidener.works.bepress.com/do/oai/ yes 645 +6486 {"name": "the university of human environments repository", "language": "en"} [{"name": "\u4eba\u9593\u74b0\u5883\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://uhe.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:00:26 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the university of human environments", "alternativeName": "", "country": "jp", "url": "https://www.uhe.ac.jp", "identifier": [{"identifier": "https://ror.org/029smmd76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://uhe.repo.nii.ac.jp/oai yes 73 298 +6515 {"name": "the japan institute of international affairs (jiia) repository", "language": "en"} [{"name": "\u65e5\u672c\u56fd\u969b\u554f\u984c\u7814\u7a76\u6240\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jiia.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:02:06 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "the japan institute of international affairs (jiia)", "alternativeName": "", "country": "jp", "url": "http://www2.jiia.or.jp", "identifier": [{"identifier": "https://ror.org/030b5a298", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jiia.repo.nii.ac.jp/oai yes 79 1210 +6487 {"name": "the university of fukuchiyama academic repository", "language": "en"} [{"name": "\u798f\u77e5\u5c71\u516c\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fukuchiyama.repo.nii.ac.jp institutional [] 2022-01-12 15:36:15 2019-09-28 02:00:29 ["social sciences"] ["journal_articles"] [{"name": "the university of fukuchiyama", "alternativeName": "", "country": "jp", "url": "https://www.fukuchiyama.ac.jp", "identifier": [{"identifier": "https://ror.org/04w7k2121", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fukuchiyama.repo.nii.ac.jp/oai yes 365 379 +6576 {"name": "takachiho university academic repository", "language": "en"} [{"name": "\u9ad8\u5343\u7a42\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://takachiho.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:15 2019-09-28 02:06:19 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "takachiho university", "alternativeName": "", "country": "jp", "url": "https://www.takachiho.jp", "identifier": [{"identifier": "https://ror.org/00dwyn417", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://takachiho.repo.nii.ac.jp/oai yes 117 179 +6804 {"name": "saitama toho junior college academic repository", "language": "en"} [{"name": "\u57fc\u7389\u6771\u840c\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://saitamatoho.repo.nii.ac.jp institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:05 ["arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "saitama toho junior college", "alternativeName": "", "country": "jp", "url": "http://www.saitamatoho.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://saitamatoho.repo.nii.ac.jp/oai yes 111 277 +6872 {"name": "rosalis - tolouse digital library", "language": "en"} [{"name": "rosalis - biblioth\u00e8que num\u00e9rique de tolouse", "language": "fr"}] https://rosalis.bibliotheque.toulouse.fr institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:21 ["arts"] ["learning_objects", "other_special_item_types"] [{"name": "municipal library of toulouse", "alternativeName": "", "country": "fr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://rosalis.bibliotheque.toulouse.fr/cgi-bin/hub-oaiserver yes 100 +7044 {"name": "unifei institutional repository", "language": "en"} [{"acronym": "riunifei"}, {"name": "reposit\u00f3rio institucional da unifei", "language": "pt"}, {"acronym": "riunifei"}] https://repositorio.unifei.edu.br institutional [] 2022-01-12 15:36:17 2019-09-28 02:36:34 ["engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "unifei", "alternativeName": "federal university of itajuba", "country": "br", "url": "https://unifei.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unifei.edu.br/oai/request yes 28 2060 +6798 {"name": "sano nihon university college academic repository", "language": "en"} [{"name": "\u4f50\u91ce\u65e5\u672c\u5927\u5b66\u77ed\u671f\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sanotan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:20:50 ["health and medicine", "social sciences"] ["journal_articles"] [{"name": "sano nihon university college academic repository", "alternativeName": "", "country": "jp", "url": "http://sanotan.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sanotan.repo.nii.ac.jp/oai yes 116 141 +7209 {"name": "profiles in science", "language": "en"} [] http://profiles.nlm.nih.gov institutional [] 2022-01-12 15:36:18 2019-09-28 02:50:15 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "nih u.s. national library of medicine", "alternativeName": "nlm", "country": "us", "url": "https://www.nlm.nih.gov", "identifier": [{"identifier": "https://ror.org/0060t0j89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +6869 {"name": "royal devon and exeter research repository", "language": "en"} [] https://rde.openrepository.com institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:16 ["health and medicine"] ["journal_articles"] [{"name": "exeter health library", "alternativeName": "", "country": "gb", "url": "https://exeterhealthlibrary.net/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://rde.openrepository.com/rde/oai/openaire yes +7351 {"name": "digitalcommons@pcom", "language": "en"} [] https://digitalcommons.pcom.edu institutional [] 2022-01-12 15:36:18 2019-09-28 02:59:14 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "pcom", "alternativeName": "philadelphia college of osteopathic medicine", "country": "us", "url": "https://www.pcom.edu", "identifier": [{"identifier": "https://ror.org/00m9c2804", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.pcom.edu/do/oai yes 2143 5254 +7205 {"name": "providence st. joseph health digital commons", "language": "en"} [] https://digitalcommons.psjhealth.org institutional [] 2022-01-12 15:36:18 2019-09-28 02:50:02 ["health and medicine"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "providence st. joseph health", "alternativeName": "", "country": "us", "url": "https://www.psjhealth.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.psjhealth.org/do/oai yes 759 5261 +7060 {"name": "repository of japanese red cross toyota college of nursing", "language": "en"} [{"name": "\u65e5\u672c\u8d64\u5341\u5b57\u8c4a\u7530\u770b\u8b77\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea(humanity)", "language": "ja"}] https://rctoyota.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:37 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "japanese red cross toyota college of nursing", "alternativeName": "", "country": "jp", "url": "https://www.rctoyota.ac.jp/", "identifier": [{"identifier": "https://ror.org/023ntbt15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rctoyota.repo.nii.ac.jp/oai yes 213 303 +7425 {"name": "osaka aoyama university repository (japanese)", "language": "en"} [{"name": "\u5927\u962a\u9752\u5c71\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://osaka-aoyama.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:44 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "osaka aoyama university", "alternativeName": "", "country": "jp", "url": "https://www.osaka-aoyama.ac.jp", "identifier": [{"identifier": "https://ror.org/031jpet61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://osaka-aoyama.repo.nii.ac.jp/oai yes 161 190 +7411 {"name": "osakauniversity of pharmaceutical sciences knowledge archive", "language": "en"} [{"name": "\u5927\u962a\u85ac\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oups.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:08 ["health and medicine"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "osaka university of pharmaceutical sciences", "alternativeName": "", "country": "jp", "url": "https://www.oups.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oups.repo.nii.ac.jp/oai yes 165 180 +6808 {"name": "saint louis university libraries digital collections", "language": "en"} [] http://cdm.slu.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:21 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "saint louis university", "alternativeName": "", "country": "us", "url": "http://www.slu.edu/", "identifier": [{"identifier": "https://ror.org/01p7jjy08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm.slu.edu/oai/oai.php yes 57862 +7322 {"name": "pontifical catholic university of chile: uc repository", "language": "en"} [{"name": "pontificia universidad cat\u00f3lica de chile: repositorio uc", "language": "es"}] http://repositorio.uc.cl institutional [] 2022-01-12 15:36:18 2019-09-28 02:57:18 ["mathematics", "science"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "pontifical catholic university of chile", "alternativeName": "", "country": "cl", "url": "https://www.uc.cl/", "identifier": [{"identifier": "https://ror.org/04teye511", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uc.cl/oai/openaire yes +7055 {"name": "repository: freie universit\u00e4t berlin, math department", "language": "en"} [] http://publications.imp.fu-berlin.de institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:28 ["mathematics"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "freie universitat berlin", "alternativeName": "", "country": "de", "url": "https://www.fu-berlin.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.imp.fu-berlin.de/cgi/oai2 yes 687 1789 +7416 {"name": "osaka sangyo university repository", "language": "en"} [{"name": "\u5927\u962a\u7523\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://osu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:21 ["mathematics"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka sangyo university", "alternativeName": "", "country": "jp", "url": "https://www.osaka-sandai.ac.jp", "identifier": [{"identifier": "https://ror.org/01h2m4f20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://osu.repo.nii.ac.jp/oai yes 2094 2222 +7151 {"name": "repository of the institute of statistical mathematics", "language": "en"} [{"name": "\u7d71\u8a08\u6570\u7406\u7814\u7a76\u6240\u5b66\u8853\u7814\u7a76\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ismrepo.ism.ac.jp institutional [] 2022-01-12 15:36:18 2019-09-28 02:45:32 ["mathematics"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software"] [{"name": "the institute of statistical mathematics", "alternativeName": "", "country": "jp", "url": "http://www.kurims.kyoto-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ismrepo.ism.ac.jp/oai yes 2793 34137 +6870 {"name": "royal agricultural university repository", "language": "en"} [{"acronym": "rau"}] https://rau.repository.guildhe.ac.uk institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:17 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "royal agricultural university", "alternativeName": "rau", "country": "gb", "url": "https://www.rau.ac.uk", "identifier": [{"identifier": "https://ror.org/033byn085", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://rau.repository.guildhe.ac.uk/cgi/oai2 yes 99 +7160 {"name": "reposit\u00f3rios cient\u00edficos de acesso aberto de portugal", "language": "pt"} [{"acronym": "rcaap"}] https://www.rcaap.pt aggregating [] 2022-01-12 15:36:18 2019-09-28 02:46:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "reposit\u00f3rios cient\u00edficos de acesso aberto de portugal", "alternativeName": "", "country": "pt", "url": "https://www.rcaap.pt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://www.rcaap.pt/oai/openaire yes +7224 {"name": "pqdt open", "language": "en"} [] https://pqdtopen.proquest.com aggregating [] 2022-01-12 15:36:18 2019-09-28 02:51:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "proquest", "alternativeName": "", "country": "us", "url": "https://www.proquest.com", "identifier": [{"identifier": "https://ror.org/05aq38y40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://pqdtoai.proquest.com/oaihandler yes 45508 +7208 {"name": "project muse", "language": "en"} [] http://muse.jhu.edu aggregating [] 2022-01-12 15:36:18 2019-09-28 02:50:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "muse", "alternativeName": "", "country": "us", "url": "https://muse.jhu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://muse.jhu.edu/oai yes +6877 {"name": "rollins digital collections", "language": "en"} [] https://cdm16496.contentdm.oclc.org institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "rollins college", "alternativeName": "", "country": "us", "url": "https://www.rollins.edu", "identifier": [{"identifier": "https://ror.org/009vh5d61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16496.contentdm.oclc.org/oai/oai.php yes 4699 +7168 {"name": "queen\u2019s university belfast: special collections & archives", "language": "en"} [] https://cdm15979.contentdm.oclc.org institutional [] 2022-01-12 15:36:18 2019-09-28 02:46:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "queens university belfast", "alternativeName": "", "country": "gb", "url": "https://www.qub.ac.uk/", "identifier": [{"identifier": "https://ror.org/00hswnk62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm15979.contentdm.oclc.org/oai/oai.php yes 37196 +7154 {"name": "federal university of rio grande", "language": "en"} [{"acronym": "ri furg"}, {"name": "universidade federal do rio grande", "language": "pt"}] http://200.19.254.174 institutional [] 2022-01-12 15:36:18 2019-09-28 02:45:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "federal university of rio grande", "alternativeName": "", "country": "br", "url": "https://www.furg.br/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://200.19.254.174/oai/request yes 5631 +7149 {"name": "reposit\u00f3rio institucional da universidade federal fluminense", "language": "pt"} [{"acronym": "riuff"}] https://app.uff.br/riuff institutional [] 2022-01-12 15:36:17 2019-09-28 02:45:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidade federal fluminense", "alternativeName": "uff", "country": "br", "url": "http://www.uff.br", "identifier": [{"identifier": "https://ror.org/02rjhbb08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://app.uff.br/oai/request yes 4879 +7074 {"name": "repositorio de la universidad privada de tacna", "language": "es"} [{"acronym": "upt"}, {"name": "repository of the private university of tacna", "language": ""}, {"acronym": "upt"}] http://repositorio.upt.edu.pe institutional [] 2022-01-12 15:36:17 2019-09-28 02:38:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidad privada de tacna", "alternativeName": "", "country": "pe", "url": "http://www.upt.edu.pe", "identifier": [{"identifier": "https://ror.org/014pqsx51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upt.edu.pe/oai/openaire yes +7054 {"name": "euripides university center of marilia", "language": "en"} [] https://aberto.univem.edu.br institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "the euripides university center of marilia", "alternativeName": "", "country": "br", "url": "https://www.univem.edu.br/vestibular", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aberto.univem.edu.br/oai/openaire yes +7071 {"name": "institutional repository university of ica", "language": "en"} [{"name": "repositorio institucional universidad aut\u00f3noma de ica", "language": "es"}] http://repositorio.autonomadeica.edu.pe institutional [] 2022-01-12 15:36:17 2019-09-28 02:38:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of ica", "alternativeName": "", "country": "pe", "url": "https://autonomadeica.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.autonomadeica.edu.pe/oai/openaire yes +7163 {"name": "rbdu reposit\u00e3\u00b3rio digital da biblioteca da unisinos", "language": "en"} [] http://www.repositorio.jesuita.org.br institutional [] 2022-01-12 15:36:18 2019-09-28 02:46:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of the rio dos sinos valley", "alternativeName": "", "country": "br", "url": "http://www.unisinos.br/", "identifier": [{"identifier": "https://ror.org/05ctmmy43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.jesuita.org.br/oai/request yes 7721 +6884 {"name": "rissho university\u2019s institutional repository (rissho-ir)", "language": "en"} [{"name": "\u7acb\u6b63\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.ris.ac.jp/dspace/index.jsp?locale=en institutional [] 2022-01-12 15:36:17 2019-09-28 02:27:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "rissho university", "alternativeName": "", "country": "jp", "url": "http://www.ris.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.ris.ac.jp/dspace-oai/request yes 546 5829 +7108 {"name": "repositorio digital institutional universidad nacional del comahue (rdi unco)", "language": "en"} [] http://rdi.uncoma.edu.ar institutional [] 2022-01-12 15:36:17 2019-09-28 02:42:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national university of comahue", "alternativeName": "", "country": "ar", "url": "https://www.uncoma.edu.ar/", "identifier": [{"identifier": "https://ror.org/02zvkba47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rdi.uncoma.edu.ar/oai/openaire yes +7110 {"name": "cudi respository", "language": "en"} [{"name": "cudi repositorio", "language": "es"}] http://repositorio.cudi.edu.mx institutional [] 2022-01-12 15:36:17 2019-09-28 02:42:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university corporation for internet development", "alternativeName": "cudi", "country": "mx", "url": "http://virtual.cudi.edu.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cudi.edu.mx/oai/openaire yes +7086 {"name": "repositorio pucesa", "language": "es"} [] http://repositorio.pucesa.edu.ec institutional [] 2022-01-12 15:36:17 2019-09-28 02:39:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "pontificia universidad cat\u00f3lica del ecuador", "alternativeName": "", "country": "ec", "url": "https://www.puce.edu.ec", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.pucesa.edu.ec/oai/openaire yes +7407 {"name": "otago university research archive", "language": "en"} [] https://ourarchive.otago.ac.nz institutional [] 2022-01-12 15:36:18 2019-09-28 03:03:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of otago", "alternativeName": "", "country": "nz", "url": "https://www.otago.ac.nz", "identifier": [{"identifier": "https://ror.org/01jmxt844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://ourarchive.otago.ac.nz/oai yes +7085 {"name": "repositorio universidad de santander", "language": "es"} [] https://repositorio.udes.edu.co institutional [] 2022-01-12 15:36:17 2019-09-28 02:39:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "udes", "alternativeName": "universidad de santander", "country": "co", "url": "https://www.udes.edu.co", "identifier": [{"identifier": "https://ror.org/04n6qsf08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.udes.edu.co/oai/openaire yes +7042 {"name": "reposit\u00f3rio dados cient\u00edficos", "language": "pt"} [] http://dados.rcaap.pt institutional [] 2022-01-12 15:36:17 2019-09-28 02:36:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "datasets"] [{"name": "rcaap", "alternativeName": "repositorios cientificas de accesso aberto de portugal", "country": "pt", "url": "https://www.rcaap.pt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dados.rcaap.pt/oai/openaire yes 5 2014 +6806 {"name": "saint marys university, halifax: institutional repository", "language": "en"} [] http://library2.smu.ca institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "saint marys university", "alternativeName": "", "country": "ca", "url": "https://smu.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://library2.smu.ca/oai/openaire yes 11806 +7094 {"name": "umch institutional repository (marcelino champagnat university)", "language": "en"} [{"name": "repositorio institucional umch (universidad marcelino champagnat)", "language": "es"}] http://repositorio.umch.edu.pe institutional [] 2022-01-12 15:36:17 2019-09-28 02:40:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "marcelino champagnat private university", "alternativeName": "", "country": "pe", "url": "https://umch.edu.pe/", "identifier": [{"identifier": "https://ror.org/04e8qfh32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.umch.edu.pe/oai/openaire yes 249 +7429 {"name": "openspaces@unk (university of nebraska at kearney)", "language": "en"} [{"acronym": "unk"}] https://openspaces.unk.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of nebraska kearney", "alternativeName": "", "country": "us", "url": "https://www.unk.edu/", "identifier": [{"identifier": "https://ror.org/04d5mb615", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://openspaces.unk.edu/do/oai yes 254 751 +6892 {"name": "digital commons @ risd", "language": "en"} [] http://digitalcommons.risd.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:27:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rhode island school of design", "alternativeName": "", "country": "us", "url": "https://www.risd.edu", "identifier": [{"identifier": "https://ror.org/04mxsc976", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://digitalcommons.risd.edu/do/oai yes 1074 23357 +6800 {"name": "digital commons at salem state university", "language": "en"} [] https://digitalcommons.salemstate.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:20:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "salem state university", "alternativeName": "", "country": "us", "url": "https://www.salemstate.edu", "identifier": [{"identifier": "https://ror.org/023qmza96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.salemstate.edu/do/oai yes 279 2081 +7034 {"name": "research commons kutztown university", "language": "en"} [] https://research.library.kutztown.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:36:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "kutztown university of pennsylvania", "alternativeName": "", "country": "us", "url": "https://www.kutztown.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://research.library.kutztown.edu/do/oai/ yes 1477 2153 +6878 {"name": "rollins college: rollins scholarship online (rso)", "language": "en"} [] https://scholarship.rollins.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rollins college", "alternativeName": "", "country": "us", "url": "https://www.rollins.edu/", "identifier": [{"identifier": "https://ror.org/009vh5d61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.rollins.edu/do/oai/ yes 3273 4039 +6818 {"name": "suny geneseo knightscholar (state university of new york)", "language": "en"} [] https://knightscholar.geneseo.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "state university of new york", "alternativeName": "", "country": "us", "url": "https://www.suny.edu/", "identifier": [{"identifier": "https://ror.org/01q1z8k08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://knightscholar.geneseo.edu/do/oai/ yes 505 2476 +6816 {"name": "swosu digital commons", "language": "en"} [] https://dc.swosu.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "southwestern oklahoma state university", "alternativeName": "swosu", "country": "us", "url": "https://www.swosu.edu", "identifier": [{"identifier": "https://ror.org/01y8xtk20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://dc.swosu.edu/do/oai yes 6307 22794 +7432 {"name": "opencommons@uconn", "language": "en"} [] https://opencommons.uconn.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:05:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of connecticut", "alternativeName": "uconn", "country": "us", "url": "https://uconn.edu", "identifier": [{"identifier": "https://ror.org/02der9h97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://opencommons.uconn.edu/do/oai yes 8778 15867 +7430 {"name": "openriver", "language": "en"} [] https://openriver.winona.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "winona state university", "alternativeName": "", "country": "us", "url": "https://www.winona.edu", "identifier": [{"identifier": "https://ror.org/00kmxt141", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://openriver.winona.edu/do/oai yes 2162 14225 +7235 {"name": "portland public library: digital commons", "language": "en"} [] https://digitalcommons.portlandlibrary.com institutional [] 2022-01-12 15:36:18 2019-09-28 02:51:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "portland public library", "alternativeName": "", "country": "us", "url": "https://www.portlandlibrary.com", "identifier": [{"identifier": "https://ror.org/05jk8qm79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.portlandlibrary.com/do/oai yes 5 50140 +6789 {"name": "scholar works", "language": "en"} [] https://scholarworks.uttyler.edu institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "the university of texas at tyler", "alternativeName": "", "country": "us", "url": "https://www.uttyler.edu", "identifier": [{"identifier": "https://ror.org/01azfw069", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.uttyler.edu/do/oai yes 2009 3807 +7069 {"name": "repository institut agama islam negeri bukittinggi", "language": "en"} [{"acronym": "iain"}] http://repo.iainbukittinggi.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:38:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "iain", "alternativeName": "institut agama islam negeri of bukittinggi", "country": "id", "url": "http://febi.iainbukittinggi.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.iainbukittinggi.ac.id/cgi/oai2 yes 70 162 +7169 {"name": "queensland university of technology: qut digital collections", "language": "en"} [{"acronym": "qut"}] http://digitalcollections.qut.edu.au institutional [] 2022-01-12 15:36:18 2019-09-28 02:46:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "queensland university of technology", "alternativeName": "qut", "country": "au", "url": "https://www.qut.edu.au/", "identifier": [{"identifier": "https://ror.org/03pnv4752", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digitalcollections.qut.edu.au/cgi/oai2 yes +6852 {"name": "service de documentation en etudes et interventions regionales", "language": "fr"} [{"acronym": "sdeir"}] https://e-sdeir.uqac.ca institutional [] 2022-01-12 15:36:17 2019-09-28 02:25:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "uqac", "alternativeName": "universit\u00e9 du qu\u00e9bec \u00e0 chicoutimi", "country": "ca", "url": "https://www.uqac.ca", "identifier": [{"identifier": "https://ror.org/00y3hzd62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://e-sdeir.uqac.ca/cgi/oai2 yes 627 +7337 {"name": "plymouth marjon university repository (crest)", "language": "en"} [] https://marjon.collections.crest.ac.uk institutional [] 2022-01-12 15:36:18 2019-09-28 02:58:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "plymouth marjon university", "alternativeName": "", "country": "gb", "url": "https://www.marjon.ac.uk/", "identifier": [{"identifier": "https://ror.org/03f914y84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://marjon.collections.crest.ac.uk/cgi/oai2 yes 293 645 +7329 {"name": "politeknik nsc repository", "language": "en"} [] http://repository.nscpolteksby.ac.id institutional [] 2022-01-12 15:36:18 2019-09-28 02:57:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "polytechnic nsc surabaya", "alternativeName": "", "country": "ax", "url": "https://en.nscpolteksby.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.nscpolteksby.ac.id/cgi/oai2 yes 201 409 +7146 {"name": "raden intan repository", "language": "en"} [] http://repository.radenintan.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:44:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas islam negeri raden intan lampung", "alternativeName": "", "country": "id", "url": "https://www.radenintan.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.radenintan.ac.id/cgi/oai2 yes 7046 13159 +7115 {"name": "repositori universitas muria kudus", "language": "en"} [] http://eprints.umk.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:43:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "muria kudus university", "alternativeName": "", "country": "id", "url": "https://umk.ac.id", "identifier": [{"identifier": "https://ror.org/05pg3mb97", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.umk.ac.id/cgi/oai2 yes 11635 12156 +7063 {"name": "repository universitas palangka raya", "language": "en"} [] http://repository.upr.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "university of palangka raya", "alternativeName": "", "country": "id", "url": "http://www.upr.ac.id/", "identifier": [{"identifier": "https://ror.org/045n0ms44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.upr.ac.id/cgi/oai2 yes 58 110 +7033 {"name": "research data leeds repository (university of leeds)", "language": "en"} [] http://archive.researchdata.leeds.ac.uk institutional [] 2022-01-12 15:36:17 2019-09-28 02:36:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of leeds", "alternativeName": "", "country": "gb", "url": "http://www.leeds.ac.uk/", "identifier": [{"identifier": "https://ror.org/024mrxd33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://archive.researchdata.leeds.ac.uk/cgi/oai2 yes 144 803 +7212 {"name": "academic production", "language": "en"} [{"name": "producci\u00f3n acad\u00e9mica", "language": "es"}] http://pa.bibdigital.uccor.edu.ar institutional [] 2022-01-12 15:36:18 2019-09-28 02:50:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "catholic university of cordoba", "alternativeName": "ucc", "country": "es", "url": "https://www.uccor.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://pa.bibdigital.uccor.edu.ar/cgi/oai2 yes 1954 2796 +7164 {"name": "racimo - repositorio institucional", "language": "es"} [] https://racimo.usal.edu.ar institutional [] 2022-01-12 15:36:18 2019-09-28 02:46:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad del salvador", "alternativeName": "usal", "country": "ar", "url": "http://movil.usal.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://racimo.usal.edu.ar/cgi/oai2 yes 6566 6709 +7066 {"name": "repository unikama", "language": "en"} [] http://repository.unikama.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "kanjuruhan university malang", "alternativeName": "", "country": "id", "url": "https://unikama.ac.id", "identifier": [{"identifier": "https://ror.org/058na1954", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unikama.ac.id/cgi/oai2 yes 932 2980 +7027 {"name": "researchonline @jcu", "language": "en"} [] https://researchonline.jcu.edu.au institutional [] 2022-01-12 15:36:17 2019-09-28 02:35:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "james cook university", "alternativeName": "jcu", "country": "au", "url": "https://www.jcu.edu.au", "identifier": [{"identifier": "https://ror.org/04gsp2c11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://researchonline.jcu.edu.au/cgi/oai2 yes 9774 47929 +7065 {"name": "repository of the islamic university of riau", "language": "en"} [{"name": "universitas islam riau", "language": "id"}] http://repository.uir.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "islamic university of riau", "alternativeName": "", "country": "id", "url": "https://uir.ac.id", "identifier": [{"identifier": "https://ror.org/01gk55t56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.uir.ac.id/cgi/oai2 yes 268 1943 +6836 {"name": "senayan library management system repository", "language": "en"} [] http://lib.ummetro.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:24:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universitas muhammadiyah metro", "alternativeName": "", "country": "id", "url": "https://perpustakaan.ummetro.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://lib.ummetro.ac.id/oai.php yes +7138 {"name": "rare & special e-zone", "language": "en"} [] http://lbezone.ust.hk institutional [] 2022-01-12 15:36:17 2019-09-28 02:44:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "hong kong university of science and technology", "alternativeName": "", "country": "hk", "url": "https://www.ust.hk/", "identifier": [{"identifier": "https://ror.org/00q4vv597", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://lbezone.ust.hk/rse/oai/server yes +7423 {"name": "osaka christian college repository", "language": "en"} [{"name": "\u5927\u962a\u30ad\u30ea\u30b9\u30c8\u6559\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://occ.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka christian college", "alternativeName": "", "country": "jp", "url": "http://www.occ.ac.jp/", "identifier": [{"identifier": "https://ror.org/00r76tg20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://occ.repo.nii.ac.jp/oai yes 63 72 +7412 {"name": "osaka university of comprehensive children education and osaka jonan women\u2019s junior college repository", "language": "en"} [{"name": "\u5927\u962a\u7dcf\u5408\u4fdd\u80b2\u5927\u5b66\u30fb\u5927\u962a\u57ce\u5357\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jonan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "osaka university of comprehensive children education and osaka jonan women\u2019s junior college", "alternativeName": "", "country": "jp", "url": "http://www.jonan.ac.jp/?_ga=2.141034484.714096384.1573480542-917268100.1573480542", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jonan.repo.nii.ac.jp/oai yes 171 977 +6832 {"name": "soai open access repository of archives (japanese)", "language": "en"} [{"name": "\u76f8\u611b\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://soai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:23:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "soai university", "alternativeName": "", "country": "jp", "url": "https://www.soai.ac.jp", "identifier": [{"identifier": "https://ror.org/059fmyk31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://soai.repo.nii.ac.jp/oai yes 11 1364 +6803 {"name": "saku university institutional repository", "language": "en"} [{"name": "\u4f50\u4e45\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://saku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "saku university", "alternativeName": "", "country": "jp", "url": "https://www.saku.ac.jp/", "identifier": [{"identifier": "https://ror.org/01sbmsw53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://saku.repo.nii.ac.jp/oai yes 220 269 +7417 {"name": "osaka ohtani university library intelligence valuable entrance-institutional repositories", "language": "en"} [{"name": "\u5927\u962a\u5927\u8c37\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://osaka-ohtani.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka ohtani university", "alternativeName": "", "country": "jp", "url": "https://www.osaka-ohtani.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://osaka-ohtani.repo.nii.ac.jp/oai yes 316 409 +7406 {"name": "otani university academic repository", "language": "en"} [{"name": "\u5927\u8c37\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://otani.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:03:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "otani university", "alternativeName": "", "country": "jp", "url": "http://www.otani.ac.jp", "identifier": [{"identifier": "https://ror.org/05b7rex33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://otani.repo.nii.ac.jp/oai yes 7502 9715 +7420 {"name": "osaka gakuin university repository", "language": "en"} [{"name": "\u5927\u962a\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ogu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka gakuin university repository", "alternativeName": "", "country": "jp", "url": "https://www.osaka-gu.ac.jp/", "identifier": [{"identifier": "https://ror.org/04a8t1e98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ogu.repo.nii.ac.jp/oai yes 287 358 +7419 {"name": "osaka institute of technology repository", "language": "en"} [{"name": "\u5927\u962a\u5de5\u696d\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oit.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.oit.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oit.repo.nii.ac.jp/oai yes 83 456 +7122 {"name": "reitaku university academic repository (japanese)", "language": "en"} [{"name": "\u9e97\u6fa4\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://reitaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:43:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "reitaku university", "alternativeName": "", "country": "jp", "url": "https://www.reitaku-u.ac.jp", "identifier": [{"identifier": "https://ror.org/02rwyg032", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://reitaku.repo.nii.ac.jp/oai yes 951 1200 +6857 {"name": "ryutsu keizai university repository", "language": "en"} [{"name": "\u6d41\u901a\u7d4c\u6e08\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://rku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:25:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ryutsu keizai university", "alternativeName": "", "country": "jp", "url": "https://www.rku.ac.jp/global/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rku.repo.nii.ac.jp/oai yes 5048 7184 +6809 {"name": "saijo academic repository", "language": "en"} [{"name": "\u57fc\u7389\u5973\u5b50\u77ed\u671f\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://saijo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "saitama womens junior college", "alternativeName": "", "country": "jp", "url": "http://www.saijo.ac.jp/", "identifier": [{"identifier": "https://ror.org/05nts6117", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://saijo.repo.nii.ac.jp/oai yes 407 549 +6805 {"name": "saitama gakuen university & kawaguchi junior college academic repository", "language": "en"} [{"name": "\u57fc\u7389\u5b66\u5712\u5927\u5b66\u30fb\u5ddd\u53e3\u77ed\u671f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://saigaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "saitama gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.saigaku.ac.jp/", "identifier": [{"identifier": "https://ror.org/02ewm5p09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://saigaku.repo.nii.ac.jp/oai yes 1025 1357 +6796 {"name": "sapporo city university academic repository", "language": "en"} [{"name": "\u672d\u5e4c\u5e02\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://scu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "sapporo city university", "alternativeName": "", "country": "jp", "url": "https://www.scu.ac.jp", "identifier": [{"identifier": "https://ror.org/000yk5876", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://scu.repo.nii.ac.jp/oai yes 145 186 +6794 {"name": "sapporo university academic repository", "language": "en"} [{"name": "\u672d\u5e4c\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sapporo-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:16 2019-09-28 02:20:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "sapporo university", "alternativeName": "", "country": "jp", "url": "https://www.sapporo-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04bz6gw73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sapporo-u.repo.nii.ac.jp/oai yes 7582 7772 +7421 {"name": "osaka electro-communication university repository", "language": "en"} [{"name": "\u5927\u962a\u96fb\u6c17\u901a\u4fe1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oecu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka electro-communication university", "alternativeName": "", "country": "jp", "url": "https://oecu.repo.nii.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oecu.repo.nii.ac.jp/oai yes 36 264 +7418 {"name": "osaka international university osaka international college repository", "language": "en"} [{"name": "\u5927\u962a\u56fd\u969b\u5927\u5b66\u30fb\u5927\u962a\u56fd\u969b\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oiu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "osaka international univesity", "alternativeName": "", "country": "jp", "url": "https://www.oiu.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oiu.repo.nii.ac.jp/oai yes 15 1062 +6849 {"name": "seisa university repository", "language": "en"} [{"name": "\u661f\u69ce\u5927\u5b66 \u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://seisa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:25:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "seisa university", "alternativeName": "", "country": "jp", "url": "https://www.hosei.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://seisa.repo.nii.ac.jp/oai yes 102 175 +6830 {"name": "sozo academic information repository", "language": "en"} [{"name": "\u8c4a\u6a4b\u5275\u9020\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sozo-air.repo.nii.ac.jp institutional [] 2022-01-12 15:36:17 2019-09-28 02:23:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "toyohashi sozo university", "alternativeName": "", "country": "jp", "url": "http://www.sozo.ac.jp", "identifier": [{"identifier": "https://ror.org/02fvj8330", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sozo-air.repo.nii.ac.jp/oai yes 399 500 +7096 {"name": "humboldt institutional repository", "language": "en"} [{"name": "repositorio institucional humboldt", "language": "es"}] http://repository.humboldt.org.co institutional [] 2022-01-12 15:36:17 2019-09-28 02:41:05 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "alexander von humboldt biological resources research institute", "alternativeName": "", "country": "es", "url": "http://www.humboldt.org.co/es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repository.humboldt.org.co/oai/openaire yes +7335 {"name": "polar data catalogue", "language": "en"} [] http://www.polardata.ca institutional [] 2022-01-12 15:36:18 2019-09-28 02:58:27 ["science"] ["datasets"] [{"name": "ccin", "alternativeName": "canadian cryospheric information network", "country": "ca", "url": "https://www.ccin.ca", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.polardata.ca/oai/provider yes 769 +7422 {"name": "osaka dental university academic repository", "language": "en"} [{"name": "\u5927\u962a\u6b6f\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://osaka-dent.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:36 ["science"] ["theses_and_dissertations"] [{"name": "osaka dental university", "alternativeName": "", "country": "jp", "url": "https://www.osaka-dent.ac.jp", "identifier": [{"identifier": "https://ror.org/053kccs63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://osaka-dent.repo.nii.ac.jp/oai yes 37 283 +6873 {"name": "national transportation library repository and open access portal", "language": "en"} [{"acronym": "rosap"}] https://rosap.ntl.bts.gov governmental [] 2022-01-12 15:36:17 2019-09-28 02:26:22 ["social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "united states department of transportation", "alternativeName": "", "country": "", "url": "https://www.transportation.gov", "identifier": [{"identifier": "https://ror.org/02xfw2e90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://rosap.ntl.bts.gov/fedora/oai yes 54761 +7078 {"name": "repositorio de la escuela superior de guerra naval", "language": "es"} [] https://repositorio.esup.edu.pe institutional [] 2022-01-12 15:36:17 2019-09-28 02:38:54 ["social sciences", "technology"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "naval war superior school", "alternativeName": "", "country": "pe", "url": "https://www.esup.edu.pe/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.esup.edu.pe:8080/oai/request yes +7081 {"name": "digital university repository institute of social research", "language": "en"} [{"name": "repositorio universitario digital instituto de investigaciones sociales", "language": "es"}] http://ru.iis.sociales.unam.mx institutional [] 2022-01-12 15:36:17 2019-09-28 02:39:08 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national autonomous university of mexico", "alternativeName": "", "country": "es", "url": "https://www.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ru.iis.sociales.unam.mx/oai/openaire yes +7372 {"name": "dickinson law inspire digital engagement, archives and scholarship", "language": "en"} [{"acronym": "dickinson law ideas"}] https://ideas.dickinsonlaw.psu.edu institutional [] 2022-01-12 15:36:18 2019-09-28 03:00:08 ["social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "pennstate dickinson law", "alternativeName": "", "country": "us", "url": "https://dickinsonlaw.psu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://ideas.dickinsonlaw.psu.edu/do/oai yes 771 3744 +7371 {"name": "pennstate law elibrary", "language": "en"} [] https://elibrary.law.psu.edu institutional [] 2022-01-12 15:36:18 2019-09-28 03:00:07 ["social sciences"] ["journal_articles"] [{"name": "penn state law", "alternativeName": "", "country": "us", "url": "https://law.psu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://elibrary.law.psu.edu/do/oai yes 843 2407 +7320 {"name": "population council knowledge commons", "language": "en"} [] https://knowledgecommons.popcouncil.org institutional [] 2022-01-12 15:36:18 2019-09-28 02:57:12 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the population council", "alternativeName": "", "country": "us", "url": "https://www.popcouncil.org", "identifier": [{"identifier": "https://ror.org/03zjj0p70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://knowledgecommons.popcouncil.org/do/oai/ yes 1780 3640 +6807 {"name": "scholarship commons", "language": "en"} [] https://scholarship.law.slu.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:21:18 ["social sciences"] ["journal_articles"] [{"name": "saint louis university school of law", "alternativeName": "", "country": "us", "url": "https://scholarship.law.slu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.slu.edu/do/oai yes 2612 2626 +7056 {"name": "repositori skripsi", "language": "id"} [] http://repository.fkip.unla.ac.id institutional [] 2022-01-12 15:36:17 2019-09-28 02:37:30 ["social sciences"] ["other_special_item_types"] [{"name": "fkip universitas langlangbuana", "alternativeName": "", "country": "id", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://repository.fkip.unla.ac.id/oai-pmh-repository/request yes 455 +7413 {"name": "osaka university of commerce repository", "language": "en"} [{"name": "\u5927\u962a\u5546\u696d\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ouc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:13 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka university of commerce", "alternativeName": "", "country": "jp", "url": "https://ouc.daishodai.ac.jp", "identifier": [{"identifier": "https://ror.org/05xc0dy80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ouc.repo.nii.ac.jp/oai yes 520 963 +7424 {"name": "osaka chiyoda junior college", "language": "en"} [{"name": "\u5927\u962a\u5343\u4ee3\u7530\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chiyoda.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:04:42 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "osaka chiyoda junior college", "alternativeName": "", "country": "jp", "url": "https://www.chiyoda.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chiyoda.repo.nii.ac.jp/oai yes 70 98 +7410 {"name": "osaka university of tourism academic repository", "language": "en"} [{"name": "\u5927\u962a\u89b3\u5149\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tourism.repo.nii.ac.jp institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:06 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "osaka university of tourism", "alternativeName": "", "country": "jp", "url": "https://www.tourism.ac.jp", "identifier": [{"identifier": "https://ror.org/02zp6e752", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tourism.repo.nii.ac.jp/oai yes 41 279 +6802 {"name": "sakura no seibo junior college repository", "language": "en"} [{"name": "\u685c\u306e\u8056\u6bcd\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sakuranoseibo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:17 2019-09-28 02:20:59 ["social sciences"] ["journal_articles"] [{"name": "sakura no seibo junior college", "alternativeName": "", "country": "jp", "url": "https://www.sakuranoseibo.jp", "identifier": [{"identifier": "https://ror.org/00rz19f75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sakuranoseibo.repo.nii.ac.jp/oai yes 6 183 +7415 {"name": "osaka shoin womens university repository (japanese)", "language": "en"} [{"name": "\u5927\u962a\u6a1f\u852d\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://osaka-shoin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:18 2019-09-28 03:04:19 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "osaka shoin womens university repository", "alternativeName": "", "country": "jp", "url": "https://www.osaka-shoin.ac.jp", "identifier": [{"identifier": "https://ror.org/04n731m62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://osaka-shoin.repo.nii.ac.jp/oai yes 700 2070 +6871 {"name": "rose-hulman scholar", "language": "en"} [] https://scholar.rose-hulman.edu institutional [] 2022-01-12 15:36:17 2019-09-28 02:26:20 ["technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rose-hulman institute of technolgy", "alternativeName": "", "country": "us", "url": "https://www.rose-hulman.edu", "identifier": [{"identifier": "https://ror.org/00mp6e841", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholar.rose-hulman.edu/do/oai yes 1323 5823 +6801 {"name": "sakushin university academic repository", "language": "en"} [{"name": "\u4f5c\u65b0\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sakushin-u.repo.nii.ac.jp/ institutional [] 2021-02-18 18:10:18 2019-09-28 02:20:56 [] ["journal_articles", "theses_and_dissertations"] [{"name": "sakushin university", "alternativeName": "", "country": "jp", "url": "https://www.sakushin-u.ac.jp", "identifier": [{"identifier": "https://ror.org/01xjgpq49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sakushin-u.repo.nii.ac.jp/oai yes 878 1234 +7438 {"name": "open space @ dmacc (des moines area community college)", "language": "en"} [{"acronym": "dmacc"}] https://openspace.dmacc.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:05:31 ["arts", "humanities", "health and medicine"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "dmacc", "alternativeName": "des moines area community college", "country": "us", "url": "https://www.dmacc.edu/pages/welcome.aspx", "identifier": [{"identifier": "https://ror.org/0016w2w54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://openspace.dmacc.edu/do/oai/ yes 470 1196 +7616 {"name": "ndsu repository", "language": "en"} [] https://library.ndsu.edu/ir institutional [] 2022-01-12 15:36:21 2019-09-28 03:19:07 ["arts", "humanities", "social sciences"] ["books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "north dakota state university", "alternativeName": "ndsu", "country": "us", "url": "https://www.ndsu.edu", "identifier": [{"identifier": "https://ror.org/05h1bnb22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://library.ndsu.edu/oai/openaire yes +7623 {"name": "museo f\u00e9lix ca\u00f1ada", "language": "en"} [] http://museovirtualfelixcanada.digibis.com institutional [] 2022-01-12 15:36:21 2019-09-28 03:19:36 ["arts", "humanities"] ["other_special_item_types"] [{"name": "museo f\u00e9lix ca\u00f1ada", "alternativeName": "", "country": "es", "url": "http://museo.fundaciongomezpardo.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://museovirtualfelixcanada.digibis.com/en/oai yes 69 +7629 {"name": "digitales bradenburg", "language": "de"} [] https://digital.ub.uni-potsdam.de institutional [] 2022-01-12 15:36:21 2019-09-28 03:20:06 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "universitat potsdam", "alternativeName": "", "country": "de", "url": "https://www.uni-potsdam.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digital.ub.uni-potsdam.de/oai yes 993 +7615 {"name": "neh digital repository (national endowment for the humanities)", "language": "en"} [] https://neh.dspacedirect.org governmental [] 2022-01-12 15:36:21 2019-09-28 03:19:05 ["arts", "humanities"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "national endowment for the humanities", "alternativeName": "neh", "country": "us", "url": "https://www.neh.gov/", "identifier": [{"identifier": "https://ror.org/02vdm1p28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://neh.dspacedirect.org/oai/openaire yes +7602 {"name": "nagasaki junshin catholic university repository", "language": "en"} [{"name": "\u9577\u5d0e\u7d14\u5fc3\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://n-junshin.repo.nii.ac.jp institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:51 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagasaki junshin catholic university", "alternativeName": "", "country": "jp", "url": "http://www.n-junshin.ac.jp", "identifier": [{"identifier": "https://ror.org/04756ha57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://n-junshin.repo.nii.ac.jp/oai yes 60 85 +7640 {"name": "morioka university morioka daigaku junior college repository", "language": "en"} [{"name": "\u76db\u5ca1\u5927\u5b66\u30fb\u76db\u5ca1\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://morioka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:03 ["arts", "humanities"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "morioka university", "alternativeName": "", "country": "jp", "url": "http://www.morioka-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03wkbyb17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://morioka.repo.nii.ac.jp/oai yes 875 4234 +7546 {"name": "nippon medical school institutional repository", "language": "en"} [{"name": "\u65e5\u672c\u533b\u79d1\u5927\u5b66 \u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nms.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:26 ["arts", "humanities"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "nippon medical school", "alternativeName": "", "country": "jp", "url": "https://www.nms.ac.jp/college", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nms.repo.nii.ac.jp/oai yes 303 365 +7591 {"name": "nara national museum repository", "language": "en"} [{"name": "\u5948\u826f\u56fd\u7acb\u535a\u7269\u9928\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://narahaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:17:08 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "nara national museum", "alternativeName": "", "country": "jp", "url": "https://www.narahaku.go.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://narahaku.repo.nii.ac.jp/oai yes 9 774 +7624 {"name": "musashino academia musicae repository", "language": "en"} [{"name": "\u6b66\u8535\u91ce\u97f3\u697d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://musashino-music.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:19:39 ["arts", "social sciences"] ["theses_and_dissertations"] [{"name": "musashino academia musicae", "alternativeName": "", "country": "jp", "url": "http://www.musashino-music.ac.jp/", "identifier": [{"identifier": "https://ror.org/008bb2h75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://musashino-music.repo.nii.ac.jp/oai yes 71 87 +7489 {"name": "oita prefectural college of arts and culture repository", "language": "en"} [{"name": "\u5927\u5206\u770c\u7acb\u82b8\u8853\u6587\u5316\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://geitan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:23 ["arts"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "oita prefectural college of arts and culture", "alternativeName": "", "country": "jp", "url": "https://www.oita-pjc.ac.jp/", "identifier": [{"identifier": "https://ror.org/00enjfk59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://geitan.repo.nii.ac.jp/oai yes 862 1668 +7538 {"name": "north carolina central university (nccu), school of law: history and scholarship digital archive", "language": "en"} [] https://archives.law.nccu.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:05 ["health and medicine", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "north carolina central university", "alternativeName": "", "country": "us", "url": "https://www.nccu.edu/", "identifier": [{"identifier": "https://ror.org/051r3tx83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://archives.law.nccu.edu/do/oai/ yes 467 1051 +7597 {"name": "nagoya ryujo junior college repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u67f3\u57ce\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ryujo.repo.nii.ac.jp institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:33 ["health and medicine", "social sciences"] ["journal_articles"] [{"name": "nagoya ryujo junior college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ryujo.repo.nii.ac.jp/oai yes 402 457 +7656 {"name": "misericordia digital commons", "language": "en"} [] https://digitalcommons.misericordia.edu institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:59 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "misericordia university", "alternativeName": "", "country": "us", "url": "https://www.misericordia.edu", "identifier": [{"identifier": "https://ror.org/00d2y1254", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.misericordia.edu/do/oai yes 67 308 +7721 {"name": "mainehealth knowledge connection", "language": "en"} [] https://knowledgeconnection.mainehealth.org institutional [] 2022-01-12 15:36:22 2019-09-28 03:25:55 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "learning_objects"] [{"name": "mainehealth", "alternativeName": "", "country": "us", "url": "https://mainehealth.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://knowledgeconnection.mainehealth.org/do/oai/ yes 161 2704 +7561 {"name": "ners unair repository", "language": "en"} [] http://eprints.ners.unair.ac.id institutional [] 2022-01-12 15:36:20 2019-09-28 03:14:08 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "unair", "alternativeName": "airlangga university faculty of nursing", "country": "id", "url": "http://ners.unair.ac.id/site", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://eprints.ners.unair.ac.id/cgi/oai2 yes 730 994 +7665 {"name": "mie prefectural college of nursing academic repository", "language": "en"} [{"name": "\u4e09\u91cd\u770c\u7acb\u770b\u8b77\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mcn.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:22:33 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "mie prefectural college of nursing", "alternativeName": "", "country": "jp", "url": "http://www.mcn.ac.jp", "identifier": [{"identifier": "https://ror.org/05p38tr07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mcn.repo.nii.ac.jp/oai yes 259 288 +7490 {"name": "ohu university repository", "language": "en"} [{"name": "\u5965\u7fbd\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ohu-lib.repo.nii.ac.jp/en/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:26 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "ohu university", "alternativeName": "", "country": "jp", "url": "http://www.ohu-u.ac.jp", "identifier": [{"identifier": "https://ror.org/01fe6f215", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ohu-lib.repo.nii.ac.jp/oai yes 1691 1780 +7488 {"name": "oita university of nursing and health sciences repository", "language": "en"} [{"name": "\u5927\u5206\u770c\u7acb\u770b\u8b77\u79d1\u5b66\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://oita-nhs.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:16 ["health and medicine"] ["theses_and_dissertations"] [{"name": "oita university of nursing and health sciences", "alternativeName": "", "country": "jp", "url": "http://www.oita-nhs.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oita-nhs.repo.nii.ac.jp/oai yes 19 26 +7700 {"name": "matsumoto junior college repository", "language": "en"} [{"name": "\u677e\u672c\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://matsutan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:22 2019-09-28 03:24:29 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "matsumoto junior college library", "alternativeName": "", "country": "jp", "url": "http://www.matsutan.jp", "identifier": [{"identifier": "https://ror.org/00c3hvv49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://matsutan.repo.nii.ac.jp/oai yes 258 271 +7609 {"name": "nagahama institute of bio-science and technology repository", "language": "en"} [{"name": "\u9577\u6d5c\u30d0\u30a4\u30aa\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nbio.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:18:12 ["health and medicine"] ["theses_and_dissertations"] [{"name": "nagahama institute of bio-science and technology", "alternativeName": "", "country": "jp", "url": "https://www.nagahama-i-bio.ac.jp/legacy/english", "identifier": [{"identifier": "https://ror.org/03m5fme96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nbio.repo.nii.ac.jp/oai yes 18 37 +7683 {"name": "medica", "language": "en"} [] http://digital.library.musc.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:23:47 ["humanities", "health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "medical university of south carolina", "alternativeName": "", "country": "us", "url": "https://web.musc.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://digital.library.musc.edu/oai/oai.php yes 7775 +7635 {"name": "digital archives collections of mount st marys university", "language": "en"} [] https://cdm17146.contentdm.oclc.org institutional [] 2022-01-12 15:36:21 2019-09-28 03:20:47 ["humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "mount st. marys university", "alternativeName": "", "country": "us", "url": "https://msmary.edu", "identifier": [{"identifier": "https://ror.org/02nmv9618", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm17146.contentdm.oclc.org/oai/oai.php yes 519 +7728 {"name": "mundus gateway", "language": "en"} [] http://www.mundus.ac.uk institutional [] 2022-01-12 15:36:22 2019-09-28 03:26:17 ["humanities"] ["other_special_item_types"] [{"name": "soas university of london", "alternativeName": "school of oriental and african studies - university of london", "country": "gb", "url": "https://www.soas.ac.uk", "identifier": [{"identifier": "https://ror.org/04vrxay34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.mundus.ac.uk/cgi-bin/oai/oai2.0 yes 516 +7493 {"name": "ohio memory", "language": "en"} [] https://www.ohiomemory.org institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:45 ["humanities"] ["other_special_item_types"] [{"name": "ohio history connection", "alternativeName": "", "country": "us", "url": "https://www.ohiohistory.org/", "identifier": [{"identifier": "https://ror.org/04jta8a45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://www.ohiomemory.org/oai/oai.php yes 188257 +7659 {"name": "minobusan university repository", "language": "en"} [{"name": "\u8eab\u5ef6\u5c71\u5927\u5b66\u3000\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://minobu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:22:07 ["humanities"] ["journal_articles"] [{"name": "minobusan university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://minobu.repo.nii.ac.jp/oai yes 2546 2706 +7528 {"name": "notre dame seishin university academic repository", "language": "en"} [{"name": "\u30ce\u30fc\u30c8\u30eb\u30c0\u30e0\u6e05\u5fc3\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ndsu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:20 ["humanities"] ["journal_articles", "unpub_reports_and_working_papers", "datasets"] [{"name": "notre dame seishin university", "alternativeName": "", "country": "jp", "url": "https://www.ndsu.ac.jp/english", "identifier": [{"identifier": "https://ror.org/04t4jzh38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ndsu.repo.nii.ac.jp/oai yes 420 471 +7442 {"name": "telkom university open library", "language": "en"} [] https://openlibrary.telkomuniversity.ac.id institutional [] 2022-01-12 15:36:19 2019-09-28 03:05:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "telkom university", "alternativeName": "", "country": "id", "url": "https://telkomuniversity.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://openlibrary.telkomuniversity.ac.id/oai.html yes 37581 104621 +7575 {"name": "n\u00e1rodn\u00ed\u00ad knihovna \u010desk\u00e9 republiky - digit\u00e1ln\u00ed knihovna kramerius", "language": "cs"} [] http://kramerius.nkp.cz institutional [] 2022-01-12 15:36:20 2019-09-28 03:15:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "n\u00e1rodn\u00ed\u00ad knihovna \u010desk\u00e9 republiky", "alternativeName": "", "country": "cz", "url": "http://kramerius5.nkp.cz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://kramerius.nkp.cz/kramerius/oai yes 12655 +7551 {"name": "digital collections newton gresham library", "language": "en"} [] https://cdm16042.contentdm.oclc.org institutional [] 2022-01-12 15:36:20 2019-09-28 03:13:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "sam houston state university", "alternativeName": "sh", "country": "us", "url": "https://www.shsu.edu", "identifier": [{"identifier": "https://ror.org/00yh3cz06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16042.contentdm.oclc.org/oai/oai.php yes 21590 +7557 {"name": "nmsu library digital collections", "language": "en"} [] http://contentdm.nmsu.edu institutional [] 2022-01-12 15:36:20 2019-09-28 03:13:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "nmsu library", "alternativeName": "new mexico state university library", "country": "us", "url": "http://lib.nmsu.edu/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://contentdm.nmsu.edu/oai/oai.php yes 34780 +7573 {"name": "national library of jamaica: contentdm", "language": "en"} [] http://cdm16964.contentdm.oclc.org institutional [] 2022-01-12 15:36:20 2019-09-28 03:15:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "national library of jamaica", "alternativeName": "", "country": "jm", "url": "https://nlj.gov.jm/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16964.contentdm.oclc.org/oai/oai.php yes 71 +7536 {"name": "northern ireland official publications archive", "language": "en"} [{"acronym": "(niopa)"}] http://niopa.qub.ac.uk institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "queens university belfast", "alternativeName": "", "country": "gb", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://niopa.qub.ac.uk/oai/request yes +7440 {"name": "open repository - aut library", "language": "en"} [{"acronym": "aut"}] https://aut.researchgateway.ac.nz institutional [] 2022-01-12 15:36:19 2019-09-28 03:05:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "auckland university of technology", "alternativeName": "aut", "country": "nz", "url": "https://www.aut.ac.nz", "identifier": [{"identifier": "https://ror.org/01zvqw119", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://aut.researchgateway.ac.nz/oai/request yes 8362 +7667 {"name": "middle tennessee state university", "language": "en"} [] http://jewlscholar.mtsu.edu institutional [] 2022-01-12 15:36:21 2019-09-28 03:22:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "middle tennessee state university", "alternativeName": "", "country": "us", "url": "https://www.mtsu.edu/", "identifier": [{"identifier": "https://ror.org/02n1hzn07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://jewlscholar.mtsu.edu/oai yes +7568 {"name": "national taiwan normal university: ntnu institutional repository", "language": "en"} [{"name": "\u570b\u7acb\u81fa\u7063\u5e2b\u7bc4\u5927\u5b78\u5716\u66f8\u9928", "language": "zh"}] http://rportal.lib.ntnu.edu.tw institutional [] 2022-01-12 15:36:20 2019-09-28 03:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "national taiwan normal university", "alternativeName": "", "country": "tw", "url": "https://www.ntnu.edu.tw/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rportal.lib.ntnu.edu.tw/oai/openaire yes +7535 {"name": "northern kentucky university (nku): digital repository", "language": "en"} [] https://dspace.nku.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "northern kentucky university", "alternativeName": "nku", "country": "us", "url": "https://www.nku.edu", "identifier": [{"identifier": "https://ror.org/01k44g025", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.nku.edu/oai/openaire yes 3239 +7524 {"name": "nowosibirsk elektronnaja sibir", "language": "en"} [{"name": "\u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u043d\u0430\u044f \u043d\u0430\u0443\u0447\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430: \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0441\u0438\u0431\u0438\u0440\u044c", "language": "ru"}] http://elib.ngonb.ru institutional [] 2022-01-12 15:36:19 2019-09-28 03:10:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "the digital siberia digital library", "alternativeName": "", "country": "ru", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.ngonb.ru/oai/request yes 243 20604 +7613 {"name": "nida (national institute of development administration): wisdom repository", "language": "en"} [{"name": "\u0e2a\u0e16\u0e32\u0e1a\u0e31\u0e19\u0e1a\u0e31\u0e13\u0e11\u0e34\u0e15\u0e1e\u0e31\u0e12\u0e19\u0e1a\u0e23\u0e34\u0e2b\u0e32\u0e23\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c", "language": "th"}] https://repository.nida.ac.th institutional [] 2022-01-12 15:36:21 2019-09-28 03:18:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "national institute of development administration", "alternativeName": "", "country": "th", "url": "http://www.nida.ac.th/", "identifier": [{"identifier": "https://ror.org/010g30191", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.nida.ac.th/oai/openaire yes +7582 {"name": "nie digital repository", "language": "en"} [] https://repository.nie.edu.sg institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "national institute of education", "alternativeName": "nie", "country": "sg", "url": "https://www.nie.edu.sg", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.nie.edu.sg/oai/openaire yes +7574 {"name": "national library of finland: fragmenta membranea", "language": "en"} [{"name": "kansalliskirjaston fragmenta membranea", "language": "fi"}] http://fragmenta.kansalliskirjasto.fi institutional [] 2022-01-12 15:36:20 2019-09-28 03:15:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "national library of finland", "alternativeName": "", "country": "fi", "url": "https://www.kansalliskirjasto.fi/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://fragmenta.kansalliskirjasto.fi/oai/request yes 1 1620 +7497 {"name": "our@oakland", "language": "en"} [] https://our.oakland.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:09:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "oakland university", "alternativeName": "", "country": "us", "url": "https://wwwp.oakland.edu", "identifier": [{"identifier": "https://ror.org/01ythxj32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://our.oakland.edu/oai yes +7534 {"name": "northern michigan university: the commons", "language": "en"} [{"acronym": "nmu"}] https://commons.nmu.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "northern michigan university", "alternativeName": "nmu", "country": "us", "url": "https://www.nmu.edu/", "identifier": [{"identifier": "https://ror.org/01epvyf46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.nmu.edu/do/oai/ yes 859 4993 +7644 {"name": "world transit research", "language": "en"} [{"acronym": "wtr"}] https://www.worldtransitresearch.info institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "institute of transport studies", "alternativeName": "", "country": "au", "url": "https://www.monash.edu/engineering/its", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://www.worldtransitresearch.info/do/oai yes 126 8317 +7655 {"name": "bearworks", "language": "en"} [] https://bearworks.missouristate.edu institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "missouri state university", "alternativeName": "msu", "country": "us", "url": "https://www.missouristate.edu", "identifier": [{"identifier": "https://ror.org/01d2sez20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://bearworks.missouristate.edu/do/oai yes 764 10766 +7675 {"name": "merrimack college: merrimack scholarworks", "language": "en"} [] https://scholarworks.merrimack.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:23:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "merrimack college", "alternativeName": "", "country": "us", "url": "https://www.merrimack.edu/", "identifier": [{"identifier": "https://ror.org/00bqy3h17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.merrimack.edu/do/oai/ yes 293 1660 +7642 {"name": "montclair state university digital commons", "language": "en"} [] https://digitalcommons.montclair.edu institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "montclair state university", "alternativeName": "", "country": "us", "url": "https://www.montclair.edu", "identifier": [{"identifier": "https://ror.org/01nxc2t48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.montclair.edu/do/oai yes 2665 10417 +7722 {"name": "digitalmaine repository", "language": "en"} [] https://digitalmaine.com institutional [] 2022-01-12 15:36:22 2019-09-28 03:26:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "maine state library", "alternativeName": "msl", "country": "us", "url": "https://www.maine.gov/msl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalmaine.com/do/oai yes 85604 177531 +7647 {"name": "digital commons@molloy", "language": "en"} [] https://digitalcommons.molloy.edu institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "molloy college", "alternativeName": "", "country": "us", "url": "https://www.molloy.edu", "identifier": [{"identifier": "https://ror.org/0277z0p27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.molloy.edu/do/oai yes 409 3670 +7492 {"name": "digitalcommons@onu", "language": "en"} [] https://digitalcommons.onu.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ohio northern university", "alternativeName": "onu", "country": "us", "url": "https://www.onu.edu", "identifier": [{"identifier": "https://ror.org/052963a64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.onu.edu/do/oai yes 150 1192 +7672 {"name": "messiah college: mosaic (messiahs open scholarship and intellectual creativity)", "language": "en"} [] https://mosaic.messiah.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:23:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "messiah college", "alternativeName": "", "country": "us", "url": "https://www.messiah.edu", "identifier": [{"identifier": "https://ror.org/03wanmk11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://mosaic.messiah.edu/do/oai yes 251 4606 +7514 {"name": "ohio open library (ohio university)", "language": "en"} [] https://ohioopen.library.ohio.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:10:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "ohio university", "alternativeName": "", "country": "us", "url": "https://www.ohio.edu/", "identifier": [{"identifier": "https://ror.org/01jr3y717", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://ohioopen.library.ohio.edu/do/oai/ yes 70 1016 +7587 {"name": "narotama university repository", "language": "en"} [] http://repository.narotama.ac.id institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "narotama university", "alternativeName": "unar", "country": "id", "url": "https://narotama.ac.id", "identifier": [{"identifier": "https://ror.org/051wzgj54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.narotama.ac.id/cgi/oai2 yes 524 691 +7553 {"name": "newman university repository (crest)", "language": "en"} [] https://newman.collections.crest.ac.uk institutional [] 2022-01-12 15:36:20 2019-09-28 03:13:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "newman university - birmingham", "alternativeName": "", "country": "gb", "url": "https://www.newman.ac.uk/", "identifier": [{"identifier": "https://ror.org/009tnsj43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://newman.collections.crest.ac.uk/cgi/oai2 yes 82 125 +7462 {"name": "open data lmu", "language": "en"} [] https://data.ub.uni-muenchen.de institutional [] 2022-01-12 15:36:19 2019-09-28 03:06:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "ludwig-maximillians-universitat munchen", "alternativeName": "lmu", "country": "de", "url": "http://www.en.uni-muenchen.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://data.ub.uni-muenchen.de/cgi/oai2 yes +7542 {"name": "nishogakusha university academic repository", "language": "en"} [{"name": "\u4e8c\u677e\u5b66\u820e\u5927\u5b66\u3000\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nishogakusha.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "nishogakusha university", "alternativeName": "", "country": "jp", "url": "https://www.nishogakusha-u.ac.jp", "identifier": [{"identifier": "https://ror.org/02m71k567", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nishogakusha.repo.nii.ac.jp/oai yes 2714 3081 +7699 {"name": "matsumoto university repository", "language": "en"} [{"name": "\u677e\u672c\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://matsumoto-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:22 2019-09-28 03:24:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "matsumoto university", "alternativeName": "", "country": "jp", "url": "http://www.matsumoto-u.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://matsumoto-u.repo.nii.ac.jp/oai yes 1002 1177 +7625 {"name": "musashigaoka college repository", "language": "en"} [{"name": "\u6b66\u8535\u4e18\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://musashigaoka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:19:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "musashigaoka college", "alternativeName": "", "country": "jp", "url": "https://www.musashigaoka.ac.jp", "identifier": [{"identifier": "https://ror.org/02x9b2s62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://musashigaoka.repo.nii.ac.jp/oai yes 484 528 +7607 {"name": "nagano womens junior college repository", "language": "en"} [{"name": "\u9577\u91ce\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagajo-junior-college.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:18:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "nagano womens junior college", "alternativeName": "", "country": "jp", "url": "http://www.nagajo-junior-college.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagajo-junior-college.repo.nii.ac.jp/oai yes 57 63 +7652 {"name": "mei library academic repository", "language": "en"} [{"name": "\u5bae\u5d0e\u5b66\u5712\u56f3\u66f8\u9928\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meilib.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "miyazaki international college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meilib.repo.nii.ac.jp/oai yes 381 773 +7698 {"name": "matsuyama university repository", "language": "en"} [{"name": "\u677e\u5c71\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://matsuyama-u-r.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:22 2019-09-28 03:24:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "matsuyama university", "alternativeName": "", "country": "jp", "url": "https://www.matsuyama-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://matsuyama-u-r.repo.nii.ac.jp/oai yes 2078 2627 +7678 {"name": "mejiro university repository", "language": "en"} [{"name": "\u76ee\u767d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mejiro.repo.nii.ac.jp institutional [] 2022-01-12 15:36:22 2019-09-28 03:23:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "mejiro university", "alternativeName": "", "country": "jp", "url": "https://www.mejiro.ac.jp/eng/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mejiro.repo.nii.ac.jp/oai yes 1564 1787 +7645 {"name": "momoyama gakuin university of education repository system", "language": "en"} [{"name": "\u6843\u5c71\u5b66\u9662\u6559\u80b2\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://momokyo.repo.nii.ac.jp institutional [] 2022-01-12 15:36:21 2019-09-28 03:21:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "momoyama gakuin university of education", "alternativeName": "", "country": "jp", "url": "http://www.andrew.ac.jp/english/", "identifier": [{"identifier": "https://ror.org/048z9th72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://momokyo.repo.nii.ac.jp/oai yes 35 35 +7601 {"name": "nagasaki university of foreign studies repository", "language": "en"} [{"name": "\u9577\u5d0e\u5916\u5927\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nufs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "nagasaki university of foreign studies", "alternativeName": "", "country": "jp", "url": "http://www.nagasaki-gaigo.ac.jp/", "identifier": [{"identifier": "https://ror.org/01ypcyq30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nufs.repo.nii.ac.jp/oai yes 336 776 +7600 {"name": "nagasaki wesleyan university repository", "language": "en"} [{"name": "\u9577\u5d0e\u30a6\u30a8\u30b9\u30ec\u30e4\u30f3\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://wesleyan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "nagasaki wesleyan university", "alternativeName": "", "country": "jp", "url": "http://www.wesleyan.ac.jp/", "identifier": [{"identifier": "https://ror.org/014bbcf72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://wesleyan.repo.nii.ac.jp/oai yes 819 893 +7599 {"name": "nagoya college of music repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u97f3\u697d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meion.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "nagoya college of music", "alternativeName": "", "country": "jp", "url": "https://www.meion.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meion.repo.nii.ac.jp/oai yes 34 66 +7594 {"name": "nagoya zokei university of art & design academic repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u9020\u5f62\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nzu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagoya zokei university of art & design", "alternativeName": "", "country": "jp", "url": "https://www.nzu.ac.jp/", "identifier": [{"identifier": "https://ror.org/03kd43413", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nzu.repo.nii.ac.jp/oai yes 606 811 +7592 {"name": "nanzan university repository", "language": "en"} [{"name": "\u5357\u5c71\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nanzan-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:20 2019-09-28 03:17:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nanzan university", "alternativeName": "", "country": "jp", "url": "https://www.nanzan-u.ac.jp/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nanzan-u.repo.nii.ac.jp/oai yes 2521 3093 +7589 {"name": "nara saho college repository", "language": "en"} [{"name": "\u5948\u826f\u4f50\u4fdd\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://narasaho-c.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:17:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "nara saho college", "alternativeName": "", "country": "jp", "url": "https://www.narasaho-c.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://narasaho-c.repo.nii.ac.jp/oai yes 142 275 +7583 {"name": "national institute for educational policy research results archive", "language": "en"} [{"name": "\u56fd\u7acb\u6559\u80b2\u653f\u7b56\u7814\u7a76\u6240\u7814\u7a76\u6210\u679c\u30a2\u30fc\u30ab\u30a4\u30d6", "language": "ja"}] https://nier.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "national institute for educational policy research", "alternativeName": "", "country": "jp", "url": "https://www.nier.go.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nier.repo.nii.ac.jp/oai yes 440 1825 +7577 {"name": "national institute of technology, sasebo college academic repository", "language": "en"} [{"name": "\u4f50\u4e16\u4fdd\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sasebo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:15:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national institute of technology,sasebo college", "alternativeName": "", "country": "jp", "url": "http://accreditation.org/university/jp/national-institute-technology-sasebo-college", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sasebo.repo.nii.ac.jp/oai yes 154 883 +7549 {"name": "nihon fukushi university institutional repository", "language": "en"} [{"name": "\u65e5\u672c\u798f\u7949\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nfu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:13:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "nihon fukushi university", "alternativeName": "", "country": "jp", "url": "http://www.n-fukushi.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nfu.repo.nii.ac.jp/oai yes 1771 3347 +7548 {"name": "niigata university of international and information studies repository", "language": "en"} [{"name": "\u65b0\u6f5f\u56fd\u969b\u60c5\u5831\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nuis.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:12:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "niigata university of international and information studies", "alternativeName": "", "country": "jp", "url": "https://www.nuis.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nuis.repo.nii.ac.jp/oai yes 451 624 +7547 {"name": "niimi university repository", "language": "en"} [{"name": "\u65b0\u898b\u516c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://niimi-c.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "niimi university", "alternativeName": "", "country": "jp", "url": "https://www.unipage.net/en/19730/niimi_college", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://niimi-c.repo.nii.ac.jp/oai yes 648 1219 +7513 {"name": "oistir", "language": "en"} [{"name": "oistir", "language": "ja"}] https://oist.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:10:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "okinawa institute of science and technology graduate university", "alternativeName": "", "country": "jp", "url": "https://www.oist.jp/", "identifier": [{"identifier": "https://ror.org/02qg15b79", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://oist.repo.nii.ac.jp/oai yes 1069 1668 +7579 {"name": "qst-repository", "language": "en"} [{"name": "\u91cf\u5b50\u79d1\u5b66\u6280\u8853\u7814\u7a76\u958b\u767a\u6a5f\u69cb \u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repo.qst.go.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "national institutes for quantum and radiological science and technology", "alternativeName": "", "country": "jp", "url": "https://www.nirs.qst.go.jp/eng/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repo.qst.go.jp/oai yes 291 82808 +7637 {"name": "mfri-repository", "language": "en"} [{"name": "\u5bcc\u58eb\u5c71\u7814\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://mfri.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:20:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "mount fuji research institute, yamanashi prefectural government", "alternativeName": "", "country": "jp", "url": "https://www.pref.yamanashi.jp.e.aao.hp.transer.com/fujisanlb/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://mfri.repo.nii.ac.jp/oai yes 48 76 +7603 {"name": "nagasaki junior college academic repository", "language": "en"} [{"name": "\u9577\u5d0e\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://njc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "nagasaki junior college", "alternativeName": "", "country": "jp", "url": "http://www.njc.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://njc.repo.nii.ac.jp/oai yes 236 247 +7585 {"name": "naruto university of education digital collection", "language": "en"} [{"name": "\u9cf4\u9580\u6559\u80b2\u5927\u5b66\u5b66\u8853\u7814\u7a76\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://naruto.repo.nii.ac.jp institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "naruto university of education", "alternativeName": "", "country": "jp", "url": "http://www.naruto-u.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://naruto.repo.nii.ac.jp/oai yes 1658 18015 +7565 {"name": "national womens education center of japan", "language": "en"} [{"name": "\u56fd\u7acb\u5973\u6027\u6559\u80b2\u4f1a\u9928\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nwec.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:14:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national womens education center of japan", "alternativeName": "", "country": "jp", "url": "https://www.nwec.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nwec.repo.nii.ac.jp/oai yes 2933 8134 +7604 {"name": "nias_repo", "language": "en"} [{"name": "\u9577\u5d0e\u7dcf\u5408\u79d1\u5b66\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nias.repo.nii.ac.jp institutional [] 2022-01-12 15:36:21 2019-09-28 03:17:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "nagasaki institute of applied science", "alternativeName": "", "country": "jp", "url": "https://web.archive.org/web/20061221161052/http://www.nias.ac.jp/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nias.repo.nii.ac.jp/oai yes 497 823 +7679 {"name": "meikai university repository", "language": "en"} [{"name": "\u660e\u6d77\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meikai.repo.nii.ac.jp institutional [] 2022-01-12 15:36:22 2019-09-28 03:23:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "meikai university", "alternativeName": "", "country": "jp", "url": "http://www.meikai.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meikai.repo.nii.ac.jp/oai yes 177 258 +7539 {"name": "aggie digital collections and scholarship", "language": "en"} [] https://digital.library.ncat.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:07 ["science", "technology"] ["journal_articles"] [{"name": "north carolina agricultural and technical state university", "alternativeName": "", "country": "us", "url": "https://www.ncat.edu", "identifier": [{"identifier": "https://ror.org/02aze4h65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digital.library.ncat.edu/do/oai yes 1195 2470 +7731 {"name": "moist - multidisciplinary oceanic information system", "language": "en"} [] http://moist.rm.ingv.it institutional [] 2022-01-12 15:36:22 2019-09-28 03:26:27 ["science"] ["datasets"] [{"name": "moist", "alternativeName": "multidisciplinary oceanic information system", "country": "af", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://moist.rm.ingv.it/search/oai-pmh yes +7532 {"name": "northwestern michigan college (nmc): dspace repository", "language": "en"} [{"acronym": "nmc"}] https://dspace.nmc.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:29 ["science"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "datasets"] [{"name": "northwestern michigan college", "alternativeName": "nmc", "country": "us", "url": "https://www.nmc.edu/", "identifier": [{"identifier": "https://ror.org/025e3bx20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.nmc.edu/oai/openaire yes +7610 {"name": "national research institute for earth science and disaster resilience repository", "language": "en"} [{"name": "\u9632\u707d\u79d1\u5b66\u6280\u8853\u7814\u7a76\u6240\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nied-ir.bosai.go.jp/ institutional [] 2022-01-12 15:36:21 2019-09-28 03:18:15 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national research institute for earth science and disaster resilience", "alternativeName": "", "country": "jp", "url": "http://www.bosai.go.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nied-ir.bosai.go.jp/oai yes 430 3229 +7593 {"name": "nakamura gakuen university repository (japanese)", "language": "en"} [{"name": "\u4e2d\u6751\u5b66\u5712\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nakamura-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:17:17 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "nakamura gakuen university", "alternativeName": "", "country": "jp", "url": "https://www.nakamura-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nakamura-u.repo.nii.ac.jp/oai yes 823 2627 +7545 {"name": "nippon verterinary and life science university repository", "language": "en"} [{"name": "\u65e5\u672c\u7363\u533b\u751f\u547d\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://nvlu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:24 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "nippon veterinary and life science university", "alternativeName": "", "country": "jp", "url": "https://www.nvlu.ac.jp", "identifier": [{"identifier": "https://ror.org/04wsgqy55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nvlu.repo.nii.ac.jp/oai yes 199 248 +7563 {"name": "digital commons@nlu", "language": "en"} [] https://digitalcommons.nl.edu institutional [] 2022-01-12 15:36:20 2019-09-28 03:14:24 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national louis university", "alternativeName": "nlu", "country": "us", "url": "https://www.nl.edu", "identifier": [{"identifier": "https://ror.org/0374c0d66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.nl.edu/do/oai yes 893 1319 +7554 {"name": "new york law school digital commons", "language": "en"} [] https://digitalcommons.nyls.edu institutional [] 2022-01-12 15:36:20 2019-09-28 03:13:19 ["social sciences"] ["journal_articles", "bibliographic_references", "books_chapters_and_sections", "other_special_item_types"] [{"name": "new york law school", "alternativeName": "", "country": "us", "url": "https://www.nyls.edu", "identifier": [{"identifier": "https://ror.org/011yp0a52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.nyls.edu/do/oai yes 2795 6635 +7529 {"name": "notre dame law school: ndlscholarship", "language": "en"} [] https://scholarship.law.nd.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:22 ["social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of notre dame", "alternativeName": "", "country": "us", "url": "https://www.nd.edu/", "identifier": [{"identifier": "https://ror.org/00mkhxb43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.nd.edu/do/oai/ yes 4045 11139 +7668 {"name": "digital commons at michigan state university college of law", "language": "en"} [] https://digitalcommons.law.msu.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:22:39 ["social sciences"] ["journal_articles"] [{"name": "michigan state university college of law", "alternativeName": "", "country": "us", "url": "http://www.law.msu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.msu.edu/do/oai yes +7531 {"name": "northwestern pritzker school of law scholarly commons", "language": "en"} [] https://scholarlycommons.law.northwestern.edu institutional [] 2022-01-12 15:36:19 2019-09-28 03:11:27 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "northwestern pritzker school of law", "alternativeName": "", "country": "us", "url": "http://www.law.northwestern.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarlycommons.law.northwestern.edu/do/oai yes 7413 9266 +7590 {"name": "nara prefectural university repository", "language": "en"} [{"name": "\u5948\u826f\u770c\u7acb\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://narapu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:20 2019-09-28 03:17:05 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "nara prefectural university", "alternativeName": "", "country": "jp", "url": "http://www.narapu.ac.jp", "identifier": [{"identifier": "https://ror.org/03ydd9q52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://narapu.repo.nii.ac.jp/oai yes 15 1634 +7580 {"name": "national institute of japanese literature repository", "language": "en"} [{"name": "\u56fd\u6587\u5b66\u7814\u7a76\u8cc7\u6599\u9928\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kokubunken.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:07 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national institute of japanese literature", "alternativeName": "", "country": "jp", "url": "https://www.nijl.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kokubunken.repo.nii.ac.jp/oai yes 2241 4174 +7543 {"name": "nishikyushu university\u30fbnishikyushu university junior college repository", "language": "en"} [{"name": "\u897f\u4e5d\u5dde\u5927\u5b66\u30fb\u897f\u4e5d\u5dde\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nisikyu-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:12:21 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "nishikyushu university", "alternativeName": "", "country": "jp", "url": "https://www.nisikyu-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nisikyu-u.repo.nii.ac.jp/oai yes 61 126 +7491 {"name": "ohkagakuen university \u30fb nagoya college repository", "language": "en"} [{"name": "\u685c\u82b1\u5b66\u5712\u5927\u5b66\u30fb\u540d\u53e4\u5c4b\u77ed\u671f\u5927\u5b66\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ohka.repo.nii.ac.jp institutional [] 2022-01-12 15:36:19 2019-09-28 03:08:33 ["social sciences"] ["journal_articles"] [{"name": "ohkagakuen university", "alternativeName": "", "country": "jp", "url": "https://www.nagoyacollege.ac.jp", "identifier": [{"identifier": "https://ror.org/04wa64s85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ohka.repo.nii.ac.jp/oai yes 154 268 +7578 {"name": "national institute of technology, kitakyushu college repository", "language": "en"} [{"name": "\u5317\u4e5d\u5dde\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kitakyushu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:20 2019-09-28 03:16:02 ["technology"] ["journal_articles"] [{"name": "national institute of technology, kitakyushu college", "alternativeName": "", "country": "jp", "url": "http://library.kct.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kitakyushu.repo.nii.ac.jp/oai yes 286 +7584 {"name": "ncrm eprints repository", "language": "en"} [] http://eprints.ncrm.ac.uk institutional [] 2021-02-18 18:11:50 2019-09-28 03:16:37 [] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "national centre for research methods", "alternativeName": "ncrm", "country": "gb", "url": "https://www.ncrm.ac.uk", "identifier": [{"identifier": "https://ror.org/027q2tw68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} yes 792 3392 +7641 {"name": "morinomiya university of medical sciences academic repository", "language": "en"} [{"name": "\u68ee\u30ce\u5bae\u533b\u7642\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://morinomiya.repo.nii.ac.jp institutional [] 2021-02-18 18:12:05 2019-09-28 03:21:06 [] ["journal_articles"] [{"name": "morinomiya university of medical sciences", "alternativeName": "", "country": "jp", "url": "https://www.morinomiya-u.ac.jp", "identifier": [{"identifier": "https://ror.org/05sjznd72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://morinomiya.repo.nii.ac.jp/oai yes 44 140 +7886 {"name": "kenyon college: digital kenyon - research, scholarship, and creative exchange", "language": "en"} [] https://digital.kenyon.edu institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:22 ["arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "kenyon college", "alternativeName": "", "country": "us", "url": "https://www.kenyon.edu/", "identifier": [{"identifier": "https://ror.org/04ckqgs57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digital.kenyon.edu/do/oai/ yes 64455 108968 +7820 {"name": "kyushu lutheran college repository", "language": "en"} [{"name": "\u4e5d\u5dde\u30eb\u30fc\u30c6\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://klc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:52 ["arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kyushu lutheran college", "alternativeName": "", "country": "jp", "url": "https://www.klc.ac.jp", "identifier": [{"identifier": "https://ror.org/02byy8g27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://klc.repo.nii.ac.jp/oai yes 205 359 +7800 {"name": "landesbibliothek oldenburg digital", "language": "de"} [] https://digital.lb-oldenburg.de institutional [] 2022-01-12 15:36:22 2019-09-28 03:30:30 ["arts", "humanities"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "landesbibliothek oldenburg", "alternativeName": "", "country": "de", "url": "https://www.lb-oldenburg.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digital.lb-oldenburg.de/oai yes 2064 +7810 {"name": "lindat/clariah-cz digital library", "language": "en"} [] https://lindat.mff.cuni.cz/repository/xmlui institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:00 ["arts", "humanities"] ["datasets"] [{"name": "lindat/clariah-cz", "alternativeName": "", "country": "", "url": "https://lindat.cz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://lindat.mff.cuni.cz/oai/request yes 1604 +7788 {"name": "leeds arts university repository", "language": "en"} [] http://lau.collections.crest.ac.uk institutional [] 2022-01-12 15:36:22 2019-09-28 03:29:52 ["arts", "humanities"] ["journal_articles", "other_special_item_types"] [{"name": "leeds arts university", "alternativeName": "", "country": "gb", "url": "https://www.leeds-art.ac.uk", "identifier": [{"identifier": "https://ror.org/0031n1577", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://lau.repository.guildhe.ac.uk/cgi/oai2 yes 100 +7798 {"name": "language science press", "language": "en"} [] http://langsci-press.org institutional [] 2022-01-12 15:36:22 2019-09-28 03:30:25 ["arts", "humanities"] ["books_chapters_and_sections"] [{"name": "public knowledge project", "alternativeName": "", "country": "ca", "url": "https://pkp.sfu.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://langsci-press.org/oai yes 2828 +7897 {"name": "osrodek karta biblioteka cyfrowa", "language": "pl"} [] http://dlibra.karta.org.pl institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:56 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "the karta center foundation", "alternativeName": "", "country": "pl", "url": "https://www.karta.org.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +7732 {"name": "mmu repository of academic resources", "language": "en"} [{"name": "\u5bae\u5d0e\u516c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://miyazaki-mu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:22 2019-09-28 03:26:29 ["arts", "humanities"] ["journal_articles"] [{"name": "miyazaki municipal university", "alternativeName": "", "country": "jp", "url": "http://www.miyazaki-mu.ac.jp", "identifier": [{"identifier": "https://ror.org/01gfny940", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://miyazaki-mu.repo.nii.ac.jp/oai yes 1242 +7866 {"name": "kobe design university repository (japanese)", "language": "en"} [{"name": "\u795e\u6238\u82b8\u8853\u5de5\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-du.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:13 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "kobe design university", "alternativeName": "", "country": "jp", "url": "https://english.kobe-du.ac.jp", "identifier": [{"identifier": "https://ror.org/023x0pn29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-du.repo.nii.ac.jp/oai yes 209 240 +7905 {"name": "kanazawa college of art repository", "language": "en"} [{"name": "\u91d1\u6ca2\u7f8e\u8853\u5de5\u82b8\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kanazawa-bidai.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:37:56 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "kanazawa college of art", "alternativeName": "", "country": "jp", "url": "https://www.kanazawa-bidai.ac.jp", "identifier": [{"identifier": "https://ror.org/00nv3pd93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kanazawa-bidai.repo.nii.ac.jp/oai yes 620 631 +7920 {"name": "kyoto university of foreign studies repository", "language": "en"} [{"name": "\u4eac\u90fd\u5916\u56fd\u8a9e\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kufs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:58 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kyoto university of foreign studies", "alternativeName": "", "country": "jp", "url": "http://www.kufs.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kufs.repo.nii.ac.jp/oai yes 246 381 +7840 {"name": "kunitachi college of music repository", "language": "en"} [{"name": "\u56fd\u7acb\u97f3\u697d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kunion.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:33:36 ["arts", "social sciences"] ["theses_and_dissertations"] [{"name": "kunitachi college of music", "alternativeName": "", "country": "jp", "url": "https://www.kunitachi.ac.jp/", "identifier": [{"identifier": "https://ror.org/056gdnv76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kunion.repo.nii.ac.jp/oai yes 3 1547 +7804 {"name": "la salle university, philadelphia: connelly library digital collections", "language": "en"} [] https://cdm15860.contentdm.oclc.org institutional [] 2022-01-12 15:36:23 2019-09-28 03:30:36 ["arts"] ["other_special_item_types"] [{"name": "la salle university", "alternativeName": "", "country": "us", "url": "https://www.lasalle.edu/", "identifier": [{"identifier": "https://ror.org/02beve479", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm15860.contentdm.oclc.org/oai/oai.php yes 68 +7830 {"name": "kyoto city university of arts repository", "language": "en"} [{"name": "\u4eac\u90fd\u5e02\u7acb\u82b8\u8853\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kcua.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:30 ["arts"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kyoto city university of arts", "alternativeName": "", "country": "jp", "url": "http://www.kcua.ac.jp", "identifier": [{"identifier": "https://ror.org/02hxajc23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kcua.repo.nii.ac.jp/oai yes 186 318 +7902 {"name": "kuis-maps", "language": "en"} [{"name": "kuis-maps", "language": "ja"}] https://kuins.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:37:19 ["health and medicine", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "kansai university of international studies", "alternativeName": "", "country": "jp", "url": "http://www.kansai-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kuins.repo.nii.ac.jp/oai yes 721 793 +7860 {"name": "kobe university of welfare institutional repository", "language": "en"} [{"name": "\u795e\u6238\u533b\u7642\u798f\u7949\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kinwu.repo.nii.ac.jp/?lang=english institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:59 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kobe university of welfare", "alternativeName": "", "country": "jp", "url": "http://www.kinwu.ac.jp", "identifier": [{"identifier": "https://ror.org/02z6whe68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kinwu.repo.nii.ac.jp/oai yes 247 276 +7903 {"name": "kansai university of welfare sciences repository", "language": "en"} [{"name": "\u95a2\u897f\u798f\u7949\u79d1\u5b66\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fuksi-kagk-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:37:22 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kansai university of welfare sciences", "alternativeName": "", "country": "jp", "url": "https://www.fuksi-kagk-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/016epqy31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fuksi-kagk-u.repo.nii.ac.jp/oai yes 266 775 +7873 {"name": "kio university repository", "language": "en"} [{"name": "\u757f\u592e\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kio.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:35:40 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kio university", "alternativeName": "", "country": "jp", "url": "http://www.kio.ac.jp/", "identifier": [{"identifier": "https://ror.org/03b657f73", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kio.repo.nii.ac.jp/oai yes 44 61 +7872 {"name": "kitasato university repository", "language": "en"} [{"name": "\u5317\u91cc\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kitasato.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:35:37 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kitasato university", "alternativeName": "", "country": "jp", "url": "https://www.kitasato-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kitasato.repo.nii.ac.jp/oai yes 518 649 +7863 {"name": "kobe pharmaceutical university repository", "language": "en"} [{"name": "\u795e\u6238\u85ac\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobeyakka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:06 ["health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kobe pharmaceutical university", "alternativeName": "", "country": "jp", "url": "https://www.kobepharma-u.ac.jp", "identifier": [{"identifier": "https://ror.org/00088z429", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobeyakka.repo.nii.ac.jp/oai yes 65 104 +8469 {"name": "inova digital e-archives", "language": "en"} [{"acronym": "idea"}] http://www.inovaideas.org institutional [] 2022-01-12 15:36:25 2019-09-28 04:11:46 ["health and medicine"] ["journal_articles"] [{"name": "inova health system", "alternativeName": "", "country": "us", "url": "https://www.inova.org", "identifier": [{"identifier": "https://ror.org/04mrb6c22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} http://www.inovaideas.org/do/oai yes 38 321 +7740 {"name": "mdc institutional repository", "language": "en"} [] http://edoc.mdc-berlin.de institutional [] 2022-01-12 15:36:22 2019-09-28 03:26:45 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "max delbr\u00fcck center for molecular medicine in the helmholtz association", "alternativeName": "mdc", "country": "de", "url": "https://www.mdc-berlin.de", "identifier": [{"identifier": "https://ror.org/04p5ggc03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://edoc.mdc-berlin.de/cgi/oai2 yes 3067 19193 +8347 {"name": "ishikawa prefectural nursing university academic repository", "language": "en"} [{"name": "\u77f3\u5ddd\u770c\u7acb\u770b\u8b77\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ipnu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:00:43 ["health and medicine"] ["journal_articles"] [{"name": "ishikawa prefectural nursing university", "alternativeName": "", "country": "jp", "url": "https://www.ishikawa-nu.ac.jp", "identifier": [{"identifier": "https://ror.org/04vb9qy63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ipnu.repo.nii.ac.jp/oai yes 234 267 +8305 {"name": "japanese red cross repository", "language": "en"} [{"name": "\u8d64\u5341\u5b57\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://redcross.repo.nii.ac.jp institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:46 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "japanese red cross society", "alternativeName": "", "country": "jp", "url": "http://www.jrc.or.jp", "identifier": [{"identifier": "https://ror.org/044s9gr80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://redcross.repo.nii.ac.jp/oai yes 12835 16412 +7914 {"name": "kagoshima junshin university repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u7d14\u5fc3\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kjunshin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:43 ["health and medicine"] ["journal_articles"] [{"name": "kagoshima immaculate heart university", "alternativeName": "", "country": "jp", "url": "https://www.k-junshin.ac.jp", "identifier": [{"identifier": "https://ror.org/02sqfdy44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kjunshin.repo.nii.ac.jp/oai yes 421 475 +7890 {"name": "kawasaki medical school institutional repository", "language": "en"} [{"name": "\u5ddd\u5d0e\u533b\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwmed.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:39 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "kawasaki medical school", "alternativeName": "", "country": "jp", "url": "https://m.kawasaki-m.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwmed.repo.nii.ac.jp/oai yes 1915 2910 +8306 {"name": "japanese red cross kyushu international college of nursing repository", "language": "en"} [{"name": "\u65e5\u672c\u8d64\u5341\u5b57\u4e5d\u5dde\u56fd\u969b\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea\uff08\u4eee\u79f0\uff09", "language": "ja"}] https://jrckicn.repo.nii.ac.jp institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:48 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "the japanese red cross kyushu international college of nursing", "alternativeName": "", "country": "jp", "url": "https://www.jrckicn.ac.jp/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jrckicn.repo.nii.ac.jp/oai yes 209 648 +7854 {"name": "konan womens university academic information repository", "language": "en"} [{"name": "\u7532\u5357\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://konan-wu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:41 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "konan womens university", "alternativeName": "", "country": "jp", "url": "https://www.konan-wu.ac.jp", "identifier": [{"identifier": "https://ror.org/051zns832", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://konan-wu.repo.nii.ac.jp/oai yes 512 1817 +7818 {"name": "kyushu university of nursing and social welfare institutional repository", "language": "en"} [{"name": "\u4e5d\u5dde\u770b\u8b77\u798f\u7949\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyukan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:45 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "kyushu university of nursing and social welfare", "alternativeName": "", "country": "jp", "url": "https://www.kyushu-ns.ac.jp", "identifier": [{"identifier": "https://ror.org/050r2qc20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyukan.repo.nii.ac.jp/oai yes 4 377 +8430 {"name": "international budo university institutional repository", "language": "en"} [{"name": "\u56fd\u969b\u6b66\u9053\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://budo-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:04:46 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "international budo university", "alternativeName": "", "country": "jp", "url": "http://www.budo-u.ac.jp", "identifier": [{"identifier": "https://ror.org/004th3s59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://budo-u.repo.nii.ac.jp/oai yes 12 25 +7845 {"name": "kumamoto health science university repository", "language": "en"} [{"name": "\u718a\u672c\u4fdd\u5065\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://khsu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:00 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "kumamoto health science university", "alternativeName": "", "country": "jp", "url": "https://www.kumamoto-hsu.ac.jp", "identifier": [{"identifier": "https://ror.org/03pm2yz25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://khsu.repo.nii.ac.jp/oai yes 185 229 +7824 {"name": "kyoto tachibana university academic repiository", "language": "en"} [{"name": "\u4eac\u90fd\u6a58\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tachibana.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:13 ["health and medicine"] ["journal_articles"] [{"name": "kyoto tachibana university", "alternativeName": "", "country": "jp", "url": "https://www.tachibana-u.ac.jp", "identifier": [{"identifier": "https://ror.org/02e2wvy23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tachibana.repo.nii.ac.jp/oai yes 245 448 +7892 {"name": "kawasaki city college of nursing repository", "language": "en"} [{"name": "\u5ddd\u5d0e\u5e02\u7acb\u770b\u8b77\u77ed\u671f\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kawa-ccon.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:45 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "kawasaki city college of nursing", "alternativeName": "", "country": "jp", "url": "https://www.kawasaki-nursing-c.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kawa-ccon.repo.nii.ac.jp/oai yes 357 581 +8307 {"name": "japanese red cross akita college of nursing and japanese red cross junior college of akita repository", "language": "en"} [{"name": "\u65e5\u672c\u8d64\u5341\u5b57\u79cb\u7530\u770b\u8b77\u5927\u5b66\u30fb\u65e5\u672c\u8d64\u5341\u5b57\u79cb\u7530\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://rcakita.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:50 ["health and medicine"] ["journal_articles"] [{"name": "japanese red cross akita college of nursing", "alternativeName": "", "country": "jp", "url": "https://www.rcakita.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://rcakita.repo.nii.ac.jp/oai yes 410 454 +7891 {"name": "kawasaki college of allied health professions institutional repository", "language": "en"} [{"name": "\u5ddd\u5d0e\u533b\u7642\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwtan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:42 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "kawasaki college of allied health professions", "alternativeName": "", "country": "jp", "url": "https://j.kawasaki-m.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwtan.repo.nii.ac.jp/oai yes 177 725 +7856 {"name": "collections of the federal institute of hydraulic engineering", "language": "en"} [{"name": "kollektionen der bundesanstalt f\u00fcr wasserbau (baw)", "language": "de"}] http://medienarchiv.baw.de institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:44 ["humanities", "science", "engineering"] ["other_special_item_types"] [{"name": "federal institute of hydraulic engineering", "alternativeName": "baw", "country": "de", "url": "https://www.baw.de", "identifier": [{"identifier": "https://ror.org/03z6hnk02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://medienarchiv.baw.de/oai/oai.php yes 17197 +8310 {"name": "japan lutheran college & theological seminary institutional repository (japanese)", "language": "en"} [{"name": "\u30eb\u30fc\u30c6\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://luther.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:57 ["humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "japan lutheran college", "alternativeName": "", "country": "jp", "url": "http://www.luther.ac.jp", "identifier": [{"identifier": "https://ror.org/01dafqj83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://luther.repo.nii.ac.jp/oai yes 276 629 +8497 {"name": "nebraska wesleyan university archives", "language": "en"} [] http://cdm15721.contentdm.oclc.org institutional [] 2022-01-12 15:36:25 2019-09-28 04:13:32 ["mathematics"] ["other_special_item_types"] [{"name": "nebraska wesleyan university", "alternativeName": "", "country": "us", "url": "https://www.nebrwesleyan.edu", "identifier": [{"identifier": "https://ror.org/03xp4dz54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm15721.contentdm.oclc.org/oai/oai.php yes 1767 +7910 {"name": "kakanien revisited", "language": "en"} [] http://www.kakanien-revisited.at institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universitat wien", "alternativeName": "", "country": "at", "url": "https://www.univie.ac.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.kakanien-revisited.at/oai yes +7749 {"name": "lund university publications", "language": "en"} [] https://lup.lub.lu.se institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "lund university", "alternativeName": "", "country": "se", "url": "https://www.lu.se", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://lup.lub.lu.se/student-papers/oai yes 17796 53505 +8493 {"name": "indiana memory hosted digital collections", "language": "en"} [] http://cdm16066.contentdm.oclc.org governmental [] 2022-01-12 15:36:25 2019-09-28 04:13:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "indiana state library", "alternativeName": "", "country": "us", "url": "https://www.in.gov/library", "identifier": [{"identifier": "https://ror.org/0152xpa72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16066.contentdm.oclc.org/oai/oai.php yes 3 +8300 {"name": "johnson c. smith university (jcsu):digital smith", "language": "en"} [] https://cdm16324.contentdm.oclc.org institutional [] 2022-01-12 15:36:24 2019-09-28 03:58:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "jcsu", "alternativeName": "johnson c. smith university", "country": "us", "url": "https://www.jcsu.edu", "identifier": [{"identifier": "https://ror.org/00s3z8519", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16324.contentdm.oclc.org/oai/oai.php yes 3569 +7875 {"name": "kaust research repository", "language": "en"} [] http://repository.kaust.edu.sa institutional [] 2022-01-12 15:36:24 2019-09-28 03:35:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "king abdullah university of science and technology", "alternativeName": "kaust", "country": "sa", "url": "https://www.kaust.edu.sa", "identifier": [{"identifier": "https://ror.org/01q3tbs38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kaust.edu.sa/kaust/oai/openaire yes +7889 {"name": "kedzierzyn-kozle digital library", "language": "en"} [{"name": "miejska biblioteka publiczna w k\u0119dzierzynie-ko\u017alu: k\u0119dzierzy\u0144sko-kozielska biblioteka cyfrowa", "language": "pl"}] http://dlibra.mbpkk.pl institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "municipal public library in k\u0119dzierzyn-ko\u017ale:", "alternativeName": "", "country": "pl", "url": "http://www.mbpkk.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dlibra.mbpkk.pl/dlibra/oai-pmh-repository.xml yes +8470 {"name": "inmetro", "language": "en"} [] http://repositorios.inmetro.gov.br governmental [] 2022-01-12 15:36:25 2019-09-28 04:11:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "the national institute of metrology, standardization and industrial quality", "alternativeName": "", "country": "br", "url": "http://www4.inmetro.gov.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorios.inmetro.gov.br/oai/request yes 1446 +7771 {"name": "prism: university of calgary digital repository", "language": "en"} [] https://prism.ucalgary.ca institutional [] 2022-01-12 15:36:22 2019-09-28 03:28:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "university of calgary", "alternativeName": "", "country": "ca", "url": "https://ucalgary.ca", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://prism.ucalgary.ca/oai/request yes +7745 {"name": "scholarly publications, institutional repository and archives at lynn", "language": "en"} [{"acronym": "spiral"}] https://spiral.lynn.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lynn university", "alternativeName": "", "country": "us", "url": "https://www.lynn.edu", "identifier": [{"identifier": "https://ror.org/04nqv0v23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://spiral.lynn.edu/do/oai yes +7746 {"name": "digital showcase university of lynchburg", "language": "en"} [] https://digitalshowcase.lynchburg.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of lynchburg", "alternativeName": "", "country": "us", "url": "https://www.lynchburg.edu", "identifier": [{"identifier": "https://ror.org/03grk0f38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalshowcase.lynchburg.edu/do/oai yes 341 1522 +7763 {"name": "lincoln university: blue tiger commons@lincolnu", "language": "en"} [] https://bluetigercommons.lincolnu.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:28:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "lincoln university of missouri - lincoln university", "alternativeName": "", "country": "us", "url": "https://www.lincolnu.edu/", "identifier": [{"identifier": "https://ror.org/05hn3aw08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://bluetigercommons.lincolnu.edu/do/oai/ yes 126 529 +7753 {"name": "louisiana tech digital commons", "language": "en"} [] https://digitalcommons.latech.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "louisiana tech university", "alternativeName": "", "country": "us", "url": "https://www.latech.edu/", "identifier": [{"identifier": "https://ror.org/04q9esz89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.latech.edu/do/oai/ yes 832 2446 +8457 {"name": "institute of technologists repository", "language": "en"} [{"name": "\u3082\u306e\u3064\u304f\u308a\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iot.repo.nii.ac.jp institutional [] 2022-01-12 15:36:25 2019-09-28 04:09:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "institute of technologists", "alternativeName": "", "country": "jp", "url": "http://www.iot.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iot.repo.nii.ac.jp/oai yes 118 225 +8302 {"name": "jissen womens university institutional repository", "language": "en"} [{"name": "\u5b9f\u8df5\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jissen.repo.nii.ac.jp institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "jissen womens university", "alternativeName": "", "country": "jp", "url": "https://www.jissen.ac.jp", "identifier": [{"identifier": "https://ror.org/01k9bj230", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jissen.repo.nii.ac.jp/oai yes 1348 1791 +7907 {"name": "kamakura women\u2019s university repository", "language": "en"} [{"name": "\u938c\u5009\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kamakura-wu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kamakura womens university", "alternativeName": "", "country": "jp", "url": "https://www.kamakura-u.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kamakura-wu.repo.nii.ac.jp/oai yes 329 401 +7829 {"name": "kyoto koka womens university repository", "language": "en"} [{"name": "\u4eac\u90fd\u5149\u83ef\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://koka.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kyoto koka womens university", "alternativeName": "", "country": "jp", "url": "https://www.koka.ac.jp/english", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://koka.repo.nii.ac.jp/oai yes 574 959 +7827 {"name": "kyoto prefectural university repository", "language": "en"} [{"name": "\u4eac\u90fd\u5e9c\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kpu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kyoto prefectural university", "alternativeName": "", "country": "jp", "url": "https://www.kyoto-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kpu.repo.nii.ac.jp/oai yes 3142 6230 +7816 {"name": "kyusyu institute of information sciences academic repository", "language": "en"} [{"name": "\u4e5d\u5dde\u60c5\u5831\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kiis.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "kyusyu institute of information sciences", "alternativeName": "", "country": "jp", "url": "https://www.kiis.ac.jp", "identifier": [{"identifier": "https://ror.org/01pt4x202", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kiis.repo.nii.ac.jp/oai yes 235 451 +8309 {"name": "japan university of economics repository", "language": "en"} [{"name": "\u65e5\u672c\u7d4c\u6e08\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jue.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "japan university of economics", "alternativeName": "", "country": "jp", "url": "https://www.jue.ac.jp/", "identifier": [{"identifier": "https://ror.org/039k5fe46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jue.repo.nii.ac.jp/oai yes 863 1636 +8308 {"name": "japan women\u2019s university institutional repository", "language": "en"} [{"name": "\u65e5\u672c\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://jwu.repo.nii.ac.jp/oai institutional [] 2022-01-12 15:36:25 2019-09-28 03:58:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "japan womens university", "alternativeName": "", "country": "jp", "url": "http://www.jwu.ac.jp/eng.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jwu.repo.nii.ac.jp/oai yes 1889 3250 +7888 {"name": "keiai university & chiba keiai junior college repository", "language": "en"} [{"name": "\u656c\u611b\u5927\u5b66\u30fb\u5343\u8449\u656c\u611b\u77ed\u671f\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://keiai.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "keiai university", "alternativeName": "", "country": "jp", "url": "https://www.u-keiai.ac.jp/", "identifier": [{"identifier": "https://ror.org/056nwn519", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://keiai.repo.nii.ac.jp/oai yes 2971 +7874 {"name": "kinjo gakuin university repository", "language": "en"} [{"name": "\u91d1\u57ce\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kinjo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:35:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kinjo gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.kinjo-u.ac.jp/eng/index.html", "identifier": [{"identifier": "https://ror.org/0475w6974", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kinjo.repo.nii.ac.jp/oai yes 928 1081 +7831 {"name": "kyoto bunkyo university academic repository", "language": "en"} [{"name": "\u4eac\u90fd\u6587\u6559\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kbu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kyoto bunkyo university", "alternativeName": "", "country": "jp", "url": "https://www.kbu.ac.jp/kbu", "identifier": [{"identifier": "https://ror.org/0037an472", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kbu.repo.nii.ac.jp/oai yes 787 1234 +7817 {"name": "kyushu womens university &kyushu womens junior college academic repository", "language": "en"} [{"name": "\u4e5d\u5dde\u5973\u5b50\u5927\u5b66\u30fb\u4e5d\u5dde\u5973\u5b50\u77ed\u671f\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyujyo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "kyushu women\u2019s university", "alternativeName": "", "country": "jp", "url": "http://www.kwuc.ac.jp/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyujyo.repo.nii.ac.jp/oai yes 250 327 +8299 {"name": "josai international university repository", "language": "en"} [{"name": "\u57ce\u897f\u56fd\u969b\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jiu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:58:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "josai international university", "alternativeName": "", "country": "jp", "url": "http://www.jiu.ac.jp/englishsite/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jiu.repo.nii.ac.jp/oai yes 3 136 +7924 {"name": "kanagawa university repository", "language": "en"} [{"name": "\u795e\u5948\u5ddd\u5927\u5b66\u3000\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kanagawa-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:39:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kanagawa university", "alternativeName": "", "country": "jp", "url": "https://www.kanagawa-u.ac.jp/english/", "identifier": [{"identifier": "https://ror.org/02j6c0d67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kanagawa-u.repo.nii.ac.jp/oai yes 2867 13780 +7904 {"name": "kansai university of social welfare repository", "language": "en"} [{"name": "\u95a2\u897f\u798f\u7949\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kusw.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:37:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kansai university of social welfare", "alternativeName": "", "country": "jp", "url": "https://www.kusw.ac.jp/", "identifier": [{"identifier": "https://ror.org/007avbc90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kusw.repo.nii.ac.jp/oai yes 544 632 +7887 {"name": "keisen university repository", "language": "en"} [{"name": "\u6075\u6cc9\u5973\u5b66\u5712\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://keisen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "keisen university", "alternativeName": "", "country": "jp", "url": "https://www.keisen.ac.jp", "identifier": [{"identifier": "https://ror.org/027dkjg03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://keisen.repo.nii.ac.jp/oai yes 761 1029 +7879 {"name": "kibi international university academic repository", "language": "en"} [{"name": "\u5409\u5099\u56fd\u969b\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kiui.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:35:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kibi international university", "alternativeName": "", "country": "jp", "url": "http://kiui.jp/pc/english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kiui.repo.nii.ac.jp/oai yes 517 786 +7865 {"name": "kobe gakuin university institutional repository", "language": "en"} [{"name": "\u795e\u6238\u5b66\u9662\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobegakuin.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kobe gakuin university", "alternativeName": "", "country": "jm", "url": "https://www.kobegakuin.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://kobegakuin.repo.nii.ac.jp/oai yes 93 178 +7844 {"name": "kumamoto national college of technology repository", "language": "en"} [{"name": "\u718a\u672c\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kumamoto.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:33:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national institute of technology, kumamoto college", "alternativeName": "", "country": "jp", "url": "https://kumamoto-nct.ac.jp/english-home.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kumamoto.repo.nii.ac.jp/oai yes 132 142 +8429 {"name": "international christian university repository", "language": "en"} [{"name": "\u56fd\u969b\u57fa\u7763\u6559\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://icu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:04:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "international christian university", "alternativeName": "", "country": "jp", "url": "https://www.icu.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://icu.repo.nii.ac.jp/oai yes 4430 4862 +7832 {"name": "kwu repository (japanese)", "language": "en"} [{"name": "\u5171\u7acb\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyoritsu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "kyoritsu womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyoritsu.repo.nii.ac.jp/oai yes 542 1172 +7867 {"name": "kobe college repository", "language": "en"} [{"name": "\u795e\u6238\u5973\u5b66\u9662\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-c.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "kobe college", "alternativeName": "", "country": "jp", "url": "https://www.kobe-c.ac.jp", "identifier": [{"identifier": "https://ror.org/014phfv49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-c.repo.nii.ac.jp/oai yes 2534 5145 +7858 {"name": "kogakkan university repository", "language": "en"} [{"name": "\u7687\u5b78\u9928\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kogakkan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kogakkan university", "alternativeName": "", "country": "jp", "url": "https://www.kogakkan-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/02y6r1c45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kogakkan.repo.nii.ac.jp/oai yes 197 483 +7857 {"name": "kokushikan university academic information repository", "language": "en"} [{"name": "\u56fd\u58eb\u8218\u5927\u5b66\u3000\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kokushikan.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:34:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kokushikan university", "alternativeName": "", "country": "jp", "url": "https://www.kokushikan.ac.jp", "identifier": [{"identifier": "https://ror.org/02qrpey68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kokushikan.repo.nii.ac.jp/oai yes 5467 14696 +8336 {"name": "iwate prefectural university institutional repository", "language": "en"} [{"name": "\u5ca9\u624b\u770c\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iwate-pu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:00:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "iwate prefectural university", "alternativeName": "", "country": "jp", "url": "https://www.iwate-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iwate-pu.repo.nii.ac.jp/oai yes 3293 3623 +7864 {"name": "kobe kaisei college repository", "language": "en"} [{"name": "\u795e\u6238\u6d77\u661f\u5973\u5b50\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kaisei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "kobe kaisei college", "alternativeName": "", "country": "jp", "url": "https://www.kaisei.ac.jp/", "identifier": [{"identifier": "https://ror.org/040kwjv41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kaisei.repo.nii.ac.jp/oai yes 172 214 +7917 {"name": "kaetsu university repository", "language": "en"} [{"name": "\u5609\u60a6\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kaetsu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "kaetsu university", "alternativeName": "", "country": "jp", "url": "http://www.kaetsu.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kaetsu.repo.nii.ac.jp/oai yes 346 937 +7913 {"name": "kagoshima junshin college repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u7d14\u5fc3\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://k-junshin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "kagoshima immaculate heart college", "alternativeName": "", "country": "jp", "url": "https://www.k-junshin.ac.jp/juntan/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://k-junshin.repo.nii.ac.jp/oai yes 26 198 +7862 {"name": "kobe shinwa women\u2019s university academic repository", "language": "en"} [{"name": "\u795e\u6238\u89aa\u548c\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-shinwa.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "kobe shinwa womens university", "alternativeName": "", "country": "jp", "url": "https://www.kobe-shinwa.ac.jp/", "identifier": [{"identifier": "https://ror.org/00xwryd04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-shinwa.repo.nii.ac.jp/oai yes 2098 3360 +7868 {"name": "kobe city college of nursing repository", "language": "en"} [{"name": "\u795e\u6238\u5e02\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kobe-ccn.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:35:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "kobe city college of nursing", "alternativeName": "", "country": "jp", "url": "https://www.kobe-ccn.ac.jp/", "identifier": [{"identifier": "https://ror.org/01ryrzh03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kobe-ccn.repo.nii.ac.jp/oai yes 106 232 +7828 {"name": "kyoto notre dame university academic repository (japanese)", "language": "en"} [{"name": "\u4eac\u90fd\u30ce\u30fc\u30c8\u30eb\u30c0\u30e0\u5973\u5b50\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://notredame.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kyoto notre dame university", "alternativeName": "", "country": "jp", "url": "http://www.notredame.ac.jp/english/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://notredame.repo.nii.ac.jp/oai yes 209 383 +7825 {"name": "kyoto sangyo university academic repository", "language": "en"} [{"name": "\u4eac\u90fd\u7523\u696d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ksu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "kyoto sangyo university", "alternativeName": "", "country": "jp", "url": "http://www.kyoto-su.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ksu.repo.nii.ac.jp/oai yes 2007 10598 +8355 {"name": "international union of crystallography", "language": "en"} [{"acronym": "iucr"}] https://www.iucr.org/education disciplinary [] 2022-01-12 15:36:25 2019-09-28 04:01:03 ["science"] ["journal_articles", "datasets", "learning_objects"] [{"name": "international union of crystallography", "alternativeName": "iucr", "country": "gb", "url": "https://www.iucr.org", "identifier": [{"identifier": "https://ror.org/00vdend65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://scripts.iucr.org/cgi-bin/oai yes +8331 {"name": "jica research institute repository", "language": "en"} [{"name": "jica ri \u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jicari.repo.nii.ac.jp institutional [] 2022-01-12 15:36:25 2019-09-28 03:59:55 ["social sciences"] ["journal_articles"] [{"name": "jica", "alternativeName": "", "country": "jp", "url": "https://www.jica.go.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://jicari.repo.nii.ac.jp/oai yes 187 1046 +7815 {"name": "larc lillian & rebecca chutick scholarly repository & institutional archives", "language": "en"} [{"acronym": "larc"}] https://larc.cardozo.yu.edu institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:35 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "yeshiva university", "alternativeName": "yu", "country": "us", "url": "https://www.yu.edu", "identifier": [{"identifier": "https://ror.org/045x93337", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://larc.cardozo.yu.edu/do/oai/ yes 616 1760 +7754 {"name": "louisiana state university: digitalcommons @ lsu law center", "language": "en"} [{"acronym": "lsu law"}] https://digitalcommons.law.lsu.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:37 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "louisiana state university", "alternativeName": "lsu", "country": "us", "url": "https://www.lsu.edu/", "identifier": [{"identifier": "https://ror.org/05ect4e57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.lsu.edu/do/oai/ yes 5629 6232 +7752 {"name": "law ecommons", "language": "en"} [] https://lawecommons.luc.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:27:29 ["social sciences"] ["journal_articles"] [{"name": "loyola university chicago school of law", "alternativeName": "", "country": "us", "url": "https://www.luc.edu/law", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://lawecommons.luc.edu/do/oai yes 2190 4877 +7764 {"name": "lmu digital comons", "language": "en"} [] https://digitalcommons.lmunet.edu institutional [] 2022-01-12 15:36:22 2019-09-28 03:28:18 ["social sciences"] ["journal_articles"] [{"name": "lincoln memorial university", "alternativeName": "lmu", "country": "us", "url": "https://www.lmunet.edu", "identifier": [{"identifier": "https://ror.org/02qma2225", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.lmunet.edu/do/oai yes 51 260 +8346 {"name": "ishikawa prefectural university academic information repository", "language": "en"} [{"name": "\u77f3\u5ddd\u770c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ishikawa-pu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:00:40 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ishikawa prefectural university", "alternativeName": "", "country": "jp", "url": "https://www.ishikawa-pu.ac.jp", "identifier": [{"identifier": "https://ror.org/00b45dj41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ishikawa-pu.repo.nii.ac.jp/oai yes 118 180 +7893 {"name": "kawamura gakuen woman\u2019s university repository", "language": "en"} [{"name": "\u5ddd\u6751\u5b66\u5712\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kgwu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:36:48 ["social sciences"] ["journal_articles"] [{"name": "kawamura gakuen woman\u2019s university", "alternativeName": "", "country": "jp", "url": "https://www.kgwu.ac.jp", "identifier": [{"identifier": "https://ror.org/03sqexp58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kgwu.repo.nii.ac.jp/oai yes 695 718 +7911 {"name": "kagoshima womens junior college repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwjc.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:38:19 ["social sciences"] ["journal_articles"] [{"name": "kagoshima womens college", "alternativeName": "", "country": "jp", "url": "http://www.jkajyo.ac.jp", "identifier": [{"identifier": "https://ror.org/04raysj94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwjc.repo.nii.ac.jp/oai yes 803 1220 +7822 {"name": "kyushu international university repository", "language": "en"} [{"name": "\u4e5d\u5dde\u56fd\u969b\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kiu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:23 2019-09-28 03:31:57 ["social sciences"] ["journal_articles"] [{"name": "kyushu international university", "alternativeName": "", "country": "jp", "url": "http://www.kiu.ac.jp", "identifier": [{"identifier": "https://ror.org/02s22e816", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kiu.repo.nii.ac.jp/oai yes 576 727 +8311 {"name": "japan college of social work repository", "language": "en"} [{"name": "\u65e5\u672c\u793e\u4f1a\u4e8b\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jcsw.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 03:59:10 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "japan college of social work", "alternativeName": "", "country": "jp", "url": "https://www.jcsw.ac.jp", "identifier": [{"identifier": "https://ror.org/04whwem28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jcsw.repo.nii.ac.jp/oai yes 444 507 +8154 {"name": "jumonji university academic repository", "language": "en"} [{"name": "\u5341\u6587\u5b57\u5b66\u5712\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jumonji-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:24 2019-09-28 03:51:53 ["social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "jumonji university", "alternativeName": "", "country": "jp", "url": "http://www.jumonji-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03068df82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jumonji-u.repo.nii.ac.jp/oai yes 308 1213 +7833 {"name": "kyoei university repository", "language": "en"} [{"name": "\u5171\u6804\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyoei.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:32:38 ["social sciences"] ["journal_articles"] [{"name": "kyoei university", "alternativeName": "", "country": "jp", "url": "https://www.kyoei.ac.jp", "identifier": [{"identifier": "https://ror.org/01gtgc095", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyoei.repo.nii.ac.jp/oai yes 588 622 +7837 {"name": "kurume institute of technology repository", "language": "en"} [{"name": "\u4e45\u7559\u7c73\u5de5\u696d\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kurume-it.repo.nii.ac.jp institutional [] 2022-01-12 15:36:23 2019-09-28 03:33:01 ["technology"] ["journal_articles"] [{"name": "kurume institute of technology", "alternativeName": "", "country": "jp", "url": "https://www.kurume-it.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kurume-it.repo.nii.ac.jp/oai yes 257 312 +7851 {"name": "institutional repository of koriyama women\u2019s university", "language": "en"} [{"name": "\u90e1\u5c71\u5973\u5b50\u5927\u5b66\u5b66\u8853\u6210\u679c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://libkgc.repo.nii.ac.jp/ institutional [] 2021-02-18 18:12:37 2019-09-28 03:34:25 [] ["journal_articles"] [{"name": "library of koriyama womens university", "alternativeName": "", "country": "jp", "url": "http://www.koriyama-kgc.ac.jp", "identifier": [{"identifier": "https://ror.org/04h794874", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://libkgc.repo.nii.ac.jp/oai yes 77 104 +7912 {"name": "kagoshima prefectural college repository", "language": "en"} [{"name": "\u9e7f\u5150\u5cf6\u770c\u7acb\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://k-kentan.repo.nii.ac.jp institutional [] 2021-02-18 18:12:52 2019-09-28 03:38:33 [] ["journal_articles"] [{"name": "kagoshima prefectural college", "alternativeName": "", "country": "jp", "url": "http://www.k-kentan.ac.jp", "identifier": [{"identifier": "https://ror.org/05tc6tx51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://k-kentan.repo.nii.ac.jp/oai yes +7846 {"name": "kumamoto gakuen university repository", "language": "en"} [{"name": "\u718a\u672c\u5b66\u5712\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kumagaku.repo.nii.ac.jp/?lang=english institutional [] 2021-02-18 18:12:36 2019-09-28 03:34:02 [] ["theses_and_dissertations"] [{"name": "kumamoto gakuen university", "alternativeName": "", "country": "jp", "url": "https://www.kumagaku.ac.jp", "identifier": [{"identifier": "https://ror.org/04jhcmb20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kumagaku.repo.nii.ac.jp/oai yes 942 3387 +7821 {"name": "kyushu kyoritsu university academic repository", "language": "en"} [{"name": "\u4e5d\u5dde\u5171\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyukyo.repo.nii.ac.jp/ institutional [] 2020-09-09 12:14:30 2019-09-28 03:31:55 [] ["journal_articles"] [{"name": "kyushu kyoritsu university", "alternativeName": "", "country": "jp", "url": "http://www.kyukyo-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyukyo.repo.nii.ac.jp/oai yes 337 366 +8895 {"name": "duquesne scholarship collection", "language": "en"} [] https://dsc.duq.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:41:25 ["arts", "humanities", "health and medicine", "science", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "duquesne university", "alternativeName": "", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://dsc.duq.edu/do/oai yes 6014 9453 +8586 {"name": "hirosakigakuin university repository for academic information", "language": "en"} [{"name": "\u5f18\u524d\u5b66\u9662\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hirogaku-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:18:55 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles"] [{"name": "hirosaki gakuin university", "alternativeName": "", "country": "jp", "url": "http://www.hirogaku-u.ac.jp", "identifier": [{"identifier": "https://ror.org/01hq9q866", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hirogaku-u.repo.nii.ac.jp/oai yes 42 551 +8610 {"name": "hamilton digital commons", "language": "en"} [] https://digitalcommons.hamilton.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:29 ["arts", "humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hamilton college", "alternativeName": "", "country": "us", "url": "https://www.hamilton.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.hamilton.edu/do/oai/ yes 422 1431 +8658 {"name": "brandenburgisches landesamt f\u00fcr denkmalpflege und arch\u00e4ologisches landesmuseum", "language": "de"} [] http://plansammlung.bldam-brandenburg.de institutional [] 2022-01-12 15:36:26 2019-09-28 04:25:26 ["arts", "humanities"] ["other_special_item_types"] [{"name": "brandenburgisches landesamt f\u00fcr denkmalpflege und arch\u00e4ologisches landesmuseum", "alternativeName": "", "country": "de", "url": "http://plansammlung.bldam-brandenburg.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://plansammlung.bldam-brandenburg.de/planarchiv_module/oai.php yes +8645 {"name": "gettdigital special collections and college archives digital collections", "language": "en"} [] http://gettysburg.cdmhost.com institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:23 ["arts", "humanities"] ["other_special_item_types"] [{"name": "gettysburg college", "alternativeName": "", "country": "us", "url": "https://www.gettysburg.edu", "identifier": [{"identifier": "https://ror.org/045e26x92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://gettysburg.cdmhost.com/oai/oai.php yes 3818 +8707 {"name": "fairleigh dickinson university digital archives", "language": "en"} [] https://cdm16322.contentdm.oclc.org institutional [] 2022-01-12 15:36:27 2019-09-28 04:28:44 ["arts", "humanities"] ["other_special_item_types"] [{"name": "fairleigh dickinson university", "alternativeName": "", "country": "us", "url": "https://www.fdu.edu", "identifier": [{"identifier": "https://ror.org/04wkzvc75", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16322.contentdm.oclc.org/oai/oai.php yes 4875 +8527 {"name": "ir@cgcri", "language": "en"} [] http://cgcri.csircentral.net institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:48 ["arts", "humanities"] ["journal_articles"] [{"name": "csir - central glass and ceramic research institute", "alternativeName": "", "country": "in", "url": "http://www.cgcri.res.in", "identifier": [{"identifier": "https://ror.org/039d1mp60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://cgcri.csircentral.net/cgi/oai2 yes 233 4255 +8571 {"name": "hokusho university repository", "language": "en"} [{"name": "\u5317\u7fd4\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hokusho.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:37 ["arts", "humanities"] ["journal_articles"] [{"name": "hokusho university", "alternativeName": "", "country": "jp", "url": "https://www.hokusho-u.ac.jp", "identifier": [{"identifier": "https://ror.org/001wjeh94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hokusho.repo.nii.ac.jp/oai yes 2737 2926 +8575 {"name": "hokkaido university of science institutional repository", "language": "en"} [{"name": "\u5317\u6d77\u9053\u79d1\u5b66\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hus.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:48 ["engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "hokkaido university of science", "alternativeName": "", "country": "jp", "url": "https://www.hus.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hus.repo.nii.ac.jp/oai yes 279 377 +8587 {"name": "hirosaki university of health and welfare repository", "language": "en"} [{"name": "\u5f18\u524d\u533b\u7642\u798f\u7949\u5927\u5b66\u30fb\u5f18\u524d\u533b\u7642\u798f\u7949\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hirosakiuhw.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:02 ["health and medicine", "engineering"] ["journal_articles"] [{"name": "hirosaki university of health and welfare", "alternativeName": "", "country": "jp", "url": "https://www.hirosakiuhw.jp", "identifier": [{"identifier": "https://ror.org/05cpcfk84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hirosakiuhw.repo.nii.ac.jp/oai yes 32 234 +8520 {"name": "ir@neist csir north east institute of science and technology open access institutional repository", "language": "en"} [{"acronym": "ir@neist"}] http://neist.csircentral.net institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:35 ["health and medicine", "science", "engineering"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "north east institute of science and technology", "alternativeName": "neist", "country": "in", "url": "http://www.rrljorhat.res.in", "identifier": [{"identifier": "https://ror.org/02p8nt844", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://neist.csircentral.net/cgi/oai2 yes 316 340 +8745 {"name": "reposit\u00f3rio de produ\u00e7\u00e0o cientifica", "language": "pt"} [] http://www6.ensp.fiocruz.br/repositorio institutional [] 2022-01-12 15:36:27 2019-09-28 04:31:01 ["health and medicine", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "ensp", "alternativeName": "escola nacional de sa\u00fade p\u00fablica s\u00e9rgio arouca", "country": "br", "url": "http://ensp.fiocruz.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www6.ensp.fiocruz.br/repositorio/oai yes 100 +8578 {"name": "hofstra northwell academic works (hofstra northwell school of medicine)", "language": "en"} [] https://academicworks.medicine.hofstra.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:18:13 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "the donald and barbara zucker school of medicine at hofstra/northwell", "alternativeName": "", "country": "us", "url": "https://medicine.hofstra.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://academicworks.medicine.hofstra.edu/do/oai/ yes 896 7723 +8905 {"name": "dokkyo medical university repository", "language": "en"} [{"name": "\u7368\u5354\u533b\u79d1\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dmu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:27 2019-09-28 04:42:17 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "dokkyo medical university", "alternativeName": "", "country": "jp", "url": "https://www.dokkyomed.ac.jp/dmu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://dmu.repo.nii.ac.jp/oai yes 1853 2204 +8677 {"name": "fujita health university academic information repository", "language": "en"} [{"name": "\u85e4\u7530\u533b\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fujita-hu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:26:10 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "fujita health university", "alternativeName": "", "country": "jp", "url": "https://www.fujita-hu.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fujita-hu.repo.nii.ac.jp/oai yes 258 1051 +8615 {"name": "hakodate junior college repository", "language": "en"} [{"name": "\u51fd\u9928\u77ed\u671f\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hakodate-jc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:53 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "hakodate junior college", "alternativeName": "", "country": "jp", "url": "http://www.hakodate-jc.ac.jp", "identifier": [{"identifier": "https://ror.org/04qbzaj86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hakodate-jc.repo.nii.ac.jp/oai yes +8566 {"name": "hoshi university institutional repository", "language": "en"} [{"name": "\u661f\u85ac\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea\u3000stella", "language": "ja"}] https://stella.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:20 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "hoshi university", "alternativeName": "", "country": "jp", "url": "https://www.hoshi.ac.jp/site/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://stella.repo.nii.ac.jp/oai yes 525 560 +8556 {"name": "hyogo university of health sciences repository", "language": "en"} [{"name": "\u5175\u5eab\u533b\u7642\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://huhs.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:25 2019-09-28 04:16:16 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "hyogo university of health sciences", "alternativeName": "", "country": "jp", "url": "https://www.huhs.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://huhs.repo.nii.ac.jp/oai yes 69 90 +8925 {"name": "university and state library of saxony-anhalt", "language": "en"} [{"name": "universit\u00e4ts- und landesbibliothek sachsen-anhalt", "language": "de"}] http://digitale.bibliothek.uni-halle.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:39 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "martin luther university halle-wittenberg", "alternativeName": "", "country": "de", "url": "https://www.uni-halle.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://digitale.bibliothek.uni-halle.de/oai yes 74017 +8939 {"name": "digital commons@hope college", "language": "en"} [] https://digitalcommons.hope.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:21 ["humanities"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "hope college", "alternativeName": "", "country": "us", "url": "https://hope.edu/?gclid=eaiaiqobchmi27wp3ph15qivrz3vch38eggreaayasaaegl47vd_bwe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.hope.edu/do/oai/ yes 5055 15517 +8921 {"name": "digital collections of mannheim university library", "language": "en"} [{"name": "digitale sammlungen der universit\u00e4tsbibliothek mannheim", "language": "de"}] https://digi.bib.uni-mannheim.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:34 ["humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university of mannheim", "alternativeName": "", "country": "de", "url": "https://www.uni-mannheim.de/en", "identifier": [{"identifier": "https://ror.org/031bsb921", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://digi.bib.uni-mannheim.de/oai yes 3648 +8926 {"name": "digital library mecklenburg-vorpommern", "language": "en"} [{"name": "digitale bibliothek mecklenburg-vorpommern", "language": "de"}] http://www.digitale-bibliothek-mv.de governmental [] 2022-01-12 15:36:27 2019-09-28 04:43:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "mecklenburg-vorpommern", "alternativeName": "", "country": "de", "url": "https://en.mecklenburg-vorpommern.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://www.digitale-bibliothek-mv.de/viewer/oai yes +8920 {"name": "berlin state library digitized collections", "language": "en"} [{"name": "staatsbibliothek zu berlin digitalisierte sammlungen", "language": "de"}] https://digital.staatsbibliothek-berlin.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "berlin state library", "alternativeName": "", "country": "de", "url": "https://staatsbibliothek-berlin.de/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digital.staatsbibliothek-berlin.de/oai/openaire yes +8678 {"name": "digitized @ henry madden library", "language": "en"} [] https://digitized.library.fresnostate.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:26:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "fresno state henry madden library", "alternativeName": "", "country": "us", "url": "https://library.fresnostate.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digitized.library.fresnostate.edu/oai/oai.php yes 38701 +8509 {"name": "iuscholarworks open", "language": "en"} [] https://iu.tind.io institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "indiana university bloomington", "alternativeName": "", "country": "us", "url": "https://www.indiana.edu/", "identifier": [{"identifier": "https://ror.org/02k40bc56", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://iu.tind.io/oai2d.py/ yes 3015 +8569 {"name": "hope international university (hiu) digital archives", "language": "en"} [] http://cdm16679.contentdm.oclc.org institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "hope international university", "alternativeName": "", "country": "us", "url": "https://www.hiu.edu/", "identifier": [{"identifier": "https://ror.org/03vfpjp29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16679.contentdm.oclc.org/oai/oai.php yes 233 +8502 {"name": "idaho state archives digital collections", "language": "en"} [] https://cdm16281.contentdm.oclc.org governmental [] 2022-01-12 15:36:25 2019-09-28 04:13:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "idaho state historical society", "alternativeName": "", "country": "us", "url": "https://history.idaho.gov/archives-collections", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16281.contentdm.oclc.org/oai/oai.php yes 7328 +8652 {"name": "george c. marshall european center for security studies", "language": "en"} [] http://cdm16378.contentdm.oclc.org institutional [] 2022-01-12 15:36:26 2019-09-28 04:25:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "george c. marshall european center for security studies", "alternativeName": "", "country": "de", "url": "https://www.marshallcenter.org/mcpublicweb", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes 105 +8570 {"name": "holy names university digital collections", "language": "en"} [] https://cdm16082.contentdm.oclc.org institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "holy names university", "alternativeName": "hnu", "country": "us", "url": "https://hnu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16082.contentdm.oclc.org/oai/oai.php yes 8017 +8558 {"name": "hunter library digital collections (western carolina university)", "language": "en"} [] http://wcudigitalcollection.contentdm.oclc.org institutional [] 2022-01-12 15:36:25 2019-09-28 04:16:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "western carolina university", "alternativeName": "", "country": "us", "url": "https://www.wcu.edu/", "identifier": [{"identifier": "https://ror.org/010h78f45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://wcudigitalcollection.contentdm.oclc.org/oai/oai.php yes 25016 +8937 {"name": "digital institutional repository @upr", "language": "en"} [{"acronym": "dire.upr"}] https://dire.upr.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of puerto rico", "alternativeName": "upr", "country": "es", "url": "https://www.upr.edu", "identifier": [{"identifier": "https://ror.org/02yg0nm07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dire.upr.edu/oai/openaire yes +8936 {"name": "digital library university of west bohemia", "language": "en"} [{"acronym": "digital library of uwb"}] https://dspace5.zcu.cz institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "uwb", "alternativeName": "university of west bohemia", "country": "cz", "url": "https://www.zcu.cz/cs/index.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace5.zcu.cz/oai/openaire yes +8547 {"name": "illinois digital environment for access to learning and scholarship", "language": "en"} [{"acronym": "ideals"}] http://www.ideals.uiuc.edu institutional [] 2022-01-12 15:36:25 2019-09-28 04:15:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of illinois", "alternativeName": "", "country": "us", "url": "https://illinois.edu", "identifier": [{"identifier": "https://ror.org/047426m28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ideals.uiuc.edu/dspace-oai/request yes +8919 {"name": "digit\u00e1ln\u00ed knihovna univerzity pardubice", "language": "cs"} [] https://dspace.upce.cz institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of pardubice", "alternativeName": "", "country": "cz", "url": "https://www.upce.cz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.upce.cz/oai/openaire yes 972 +8653 {"name": "george brown college: researcch@george brown", "language": "en"} [] https://archive.georgebrown.ca institutional [] 2022-01-12 15:36:26 2019-09-28 04:25:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "george brown college", "alternativeName": "", "country": "ca", "url": "https://www.georgebrown.ca/", "identifier": [{"identifier": "https://ror.org/03e8vv411", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://archive.georgebrown.ca/oai/openaire yes +8649 {"name": "georgia gwinnett college: generalspace", "language": "en"} [] https://generalspace.ggc.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "georgia gwinnett college", "alternativeName": "", "country": "us", "url": "https://www.ggc.edu", "identifier": [{"identifier": "https://ror.org/05vkmhj10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://generalspace.ggc.edu/oai/openaire yes +8544 {"name": "ifpb - repositorio digital", "language": "pt"} [] http://repositorio.ifpb.edu.br institutional [] 2022-01-12 15:36:25 2019-09-28 04:15:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "instituto federal paraiba", "alternativeName": "ifpb", "country": "br", "url": "https://www.ifpb.edu.br", "identifier": [{"identifier": "https://ror.org/01xc5jm57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ifpb.edu.br/oai/request yes 577 940 +8789 {"name": "eldorado- repository of the tu dortmund", "language": "en"} [{"name": "eldorado-repository der tu dortmund", "language": "de"}] https://eldorado.tu-dortmund.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:34:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "technical university of dortmund", "alternativeName": "", "country": "de", "url": "https://www.tu-dortmund.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://eldorado.tu-dortmund.de/oai/request yes +8738 {"name": "eteze arts", "language": "en"} [{"name": "\u0443\u043d\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442\u0443 \u0443\u043c\u0435\u0442\u043d\u043e\u0441\u0442\u0438 \u0443 \u0431\u0435\u043e\u0433\u0440\u0430\u0434\u0443", "language": "ru"}] http://eteze.arts.bg.ac.rs institutional [] 2022-01-12 15:36:27 2019-09-28 04:30:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of arts in belgrade", "alternativeName": "", "country": "rs", "url": "https://www.arts.bg.ac.rs", "identifier": [{"identifier": "https://ror.org/03scay082", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://eteze.arts.bg.ac.rs/oai/openaire yes +8675 {"name": "fukuoka jo gakuin institutional repository", "language": "en"} [{"name": "\u798f\u5ca1\u5973\u5b66\u9662\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.fukujo.ac.jp/dspace institutional [] 2022-01-12 15:36:27 2019-09-28 04:26:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "fukuoka jo gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.fukujo.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.fukujo.ac.jp/dspace-oai/request yes 231 692 +8637 {"name": "goescholar", "language": "de"} [] https://goescholar.uni-goettingen.de institutional [] 2022-01-12 15:36:26 2019-09-28 04:23:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "georg-august university of g\u00f6ttingen", "alternativeName": "", "country": "de", "url": "https://www.uni-goettingen.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://goescholar.uni-goettingen.de/oai yes 1165 +8702 {"name": "fanshawe college: first (fanshawe innovation research scholarship teaching)", "language": "en"} [{"acronym": "first"}] https://first.fanshawec.ca institutional [] 2022-01-12 15:36:27 2019-09-28 04:28:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "fanshawe college", "alternativeName": "", "country": "ca", "url": "https://www.fanshawec.ca/", "identifier": [{"identifier": "https://ror.org/01jmwd314", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://first.fanshawec.ca/do/oai/ yes 1572 3519 +8938 {"name": "digital commons@humboldt state university (hsu)", "language": "en"} [{"acronym": "hsu"}] https://digitalcommons.humboldt.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "humboldt state university", "alternativeName": "", "country": "us", "url": "https://www.humboldt.edu/", "identifier": [{"identifier": "https://ror.org/02qt0xs84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.humboldt.edu/do/oai/ yes 617 12864 +8942 {"name": "digital commons at oberlin (oberlin college)", "language": "en"} [] https://digitalcommons.oberlin.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "oberlin college", "alternativeName": "", "country": "us", "url": "https://www.oberlin.edu/", "identifier": [{"identifier": "https://ror.org/05ac26z88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.oberlin.edu/do/oai/ yes 643 5894 +8928 {"name": "digitalcommons@csp", "language": "en"} [] https://digitalcommons.csp.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "concordia university saint paul", "alternativeName": "", "country": "us", "url": "https://www.csp.edu", "identifier": [{"identifier": "https://ror.org/01qxhf360", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.csp.edu/do/oai yes 1079 3367 +8822 {"name": "eagle scholar university of mary washington", "language": "en"} [] https://scholar.umw.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:36:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of mary washington", "alternativeName": "umw", "country": "us", "url": "https://www.umw.edu/", "identifier": [{"identifier": "https://ror.org/03b48gv34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholar.umw.edu/do/oai/ yes 352 5379 +8650 {"name": "georgia college: knowledge box", "language": "en"} [] https://kb.gcsu.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "georgia college", "alternativeName": "", "country": "us", "url": "https://www.gcsu.edu/", "identifier": [{"identifier": "https://ror.org/05kr7zx86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://kb.gcsu.edu/do/oai/ yes 555 2171 +8596 {"name": "henry ford health system scholarly commons", "language": "en"} [] https://scholarlycommons.henryford.com institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "henry ford health system", "alternativeName": "", "country": "us", "url": "https://www.henryford.com", "identifier": [{"identifier": "https://ror.org/02kwnkm68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarlycommons.henryford.com/do/oai yes 1476 11925 +8498 {"name": "illinois mathematics and science academy: digitalcommons@imsa", "language": "en"} [] https://digitalcommons.imsa.edu institutional [] 2022-01-12 15:36:25 2019-09-28 04:13:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "illinois mathematics and science academy", "alternativeName": "", "country": "us", "url": "https://www.imsa.edu/", "identifier": [{"identifier": "https://ror.org/024xf4148", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.imsa.edu/do/oai/ yes 1429 6671 +8636 {"name": "digital commons @ golden gate university school of law", "language": "en"} [] https://digitalcommons.law.ggu.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:23:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "golden gate university", "alternativeName": "", "country": "us", "url": "http://www.ggu.edu", "identifier": [{"identifier": "https://ror.org/01wj7vt66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.ggu.edu/do/oai/ yes 2720 6453 +8945 {"name": "digital commons @ west chester university", "language": "en"} [] https://digitalcommons.wcupa.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "west chester university", "alternativeName": "wcu", "country": "us", "url": "https://www.wcupa.edu", "identifier": [{"identifier": "https://ror.org/0053n5071", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.wcupa.edu/do/oai/ yes 1119 3415 +8648 {"name": "digital commons@georgia southern", "language": "en"} [] https://digitalcommons.georgiasouthern.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "georgia southern university", "alternativeName": "", "country": "us", "url": "https://www.georgiasouthern.edu", "identifier": [{"identifier": "https://ror.org/04agmb972", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.georgiasouthern.edu/do/oai yes 26851 78076 +8708 {"name": "digitalcommons@fairfield", "language": "en"} [] https://digitalcommons.fairfield.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:28:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "fairfield university", "alternativeName": "", "country": "us", "url": "https://www.fairfield.edu", "identifier": [{"identifier": "https://ror.org/04z49n283", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.fairfield.edu/do/oai yes 768 5248 +8818 {"name": "eastern washington university: ewu digital commons", "language": "en"} [] https://dc.ewu.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:36:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "eastern washington university", "alternativeName": "", "country": "us", "url": "https://dc.ewu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://dc.ewu.edu/do/oai/ yes 1861 9492 +8609 {"name": "hamline university: digitalcommons@hamline", "language": "en"} [] https://digitalcommons.hamline.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "hamline university", "alternativeName": "", "country": "us", "url": "https://www.hamline.edu/", "identifier": [{"identifier": "https://ror.org/01bcdmq48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.hamline.edu/do/oai/ yes 1177 17645 +8768 {"name": "jayscholar@etown", "language": "en"} [] https://jayscholar.etown.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:32:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "elizabethtown college", "alternativeName": "", "country": "us", "url": "https://www.etown.edu", "identifier": [{"identifier": "https://ror.org/01y0mgq54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://jayscholar.etown.edu/do/oai yes 97 488 +8521 {"name": "neeri institutional repository", "language": "en"} [{"acronym": "ir@neeri"}] http://neeri.csircentral.net institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "neeri", "alternativeName": "csir - national environmental engineering research institute", "country": "in", "url": "http://www.neeri.res.in", "identifier": [{"identifier": "https://ror.org/021r5ns39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://neeri.csircentral.net/cgi/oai2 yes 95 796 +8510 {"name": "institut teknologi sepuluh nopember repository", "language": "id"} [{"acronym": "its repository"}] http://repository.its.ac.id institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "institut teknologi sepuluh nopember", "alternativeName": "", "country": "id", "url": "https://www.its.ac.id", "identifier": [{"identifier": "https://ror.org/05kbmmt89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.its.ac.id/cgi/oai2 yes 10794 19387 +8934 {"name": "digital library uin sunan gunung djati", "language": "en"} [] http://digilib.uinsgd.ac.id institutional [] 2022-01-12 15:36:27 2019-09-28 04:44:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "uin sunan gunung djati", "alternativeName": "", "country": "id", "url": "https://uinsgd.ac.id", "identifier": [{"identifier": "https://ror.org/01j33fx63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.uinsgd.ac.id/cgi/oai2 yes 13346 21105 +8891 {"name": "d\u00fcsseldorf university press (d|u|p)", "language": "en"} [] http://dup.oa.hhu.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:41:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "heinrich heine university d\u00fcsseldorf", "alternativeName": "", "country": "de", "url": "http://dup.oa.hhu.de/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dup.oa.hhu.de/cgi/oai2 yes 585 590 +8773 {"name": "electronic theses of iain ponorogo", "language": "en"} [] http://etheses.stainponorogo.ac.id institutional [] 2022-01-12 15:36:27 2019-09-28 04:32:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "the ponorogo state islamic institute", "alternativeName": "", "country": "id", "url": "https://iainponorogo.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etheses.stainponorogo.ac.id/cgi/oai2 yes +8923 {"name": "digital collection of the university library stuttgart", "language": "en"} [{"name": "digitale sammlung der universit\u00e4tbibliothek stuttgart", "language": "de"}] https://digibus.ub.uni-stuttgart.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "university library of stuttgart", "alternativeName": "", "country": "de", "url": "https://www.uni-stuttgart.de/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://digibus.ub.uni-stuttgart.de/viewer/oai yes 2301 +8927 {"name": "digital collections of the university library kiel", "language": "en"} [{"name": "digitale best\u00e4nde der universit\u00e4tsbibliothek kiel (ub kiel digital)", "language": "de"}] https://dibiki.ub.uni-kiel.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "kiel university", "alternativeName": "", "country": "de", "url": "https://www.uni-kiel.de/de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dibiki.ub.uni-kiel.de/viewer/oai yes 17 6431 +8924 {"name": "digital state library berlin (central and regional library berlin)", "language": "en"} [{"name": "digitale landesbibliothek berlin (zentral- und landesbibliothek berlin)", "language": "de"}] https://digital.zlb.de institutional [] 2022-01-12 15:36:27 2019-09-28 04:43:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "central and regional library berlin", "alternativeName": "", "country": "de", "url": "https://www.zlb.de/de.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://digital.zlb.de/viewer/oai yes 48931 +8935 {"name": "digital library", "language": "en"} [{"name": "biblioteka cyfrowa", "language": "pl"}] http://bc.wbp.lodz.pl institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ozef pilsudski regional and municipal public library", "alternativeName": "", "country": "pl", "url": "https://wbp.lodz.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bc.wbp.lodz.pl/dlibra/oai-pmh-repository.xml yes +8654 {"name": "georg eckert institute for international textbook research: gei digital - the digital textbook library", "language": "en"} [{"name": "georg-eckert-institut f\u00fcr internationale schulbuchforschung: gei digital - die digitale schulbuch-bibliothek", "language": "de"}] http://gei-digital.gei.de institutional [] 2022-01-12 15:36:26 2019-09-28 04:25:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "georg eckert institute for international textbook research", "alternativeName": "gei", "country": "de", "url": "http://www.gei.de/en/home.html", "identifier": [{"identifier": "https://ror.org/01hnv8x68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://gei-digital.gei.de/viewer/oai yes 7300 +8594 {"name": "hes-so: arodes open archive (university of applied sciences and arts western switzerland", "language": "en"} [{"name": "haute \u00e9cole sp\u00e9cialis\u00e9e de suisse occidentale", "language": "fr"}, {"name": "fh westschweiz", "language": "de"}] https://hesso.tind.io institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of applied sciences and arts of western switzerland", "alternativeName": "", "country": "ch", "url": "https://www.hes-so.ch/en/homepage-hes-so-1679.html", "identifier": [{"identifier": "https://ror.org/01xkakk17", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://hesso.tind.io/oai2d.py/ yes 164 6722 +8613 {"name": "hakuoh university repository", "language": "en"} [{"name": "\u767d\u9d0e\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hakuoh.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "hakuoh university", "alternativeName": "", "country": "jp", "url": "https://hakuoh.jp", "identifier": [{"identifier": "https://ror.org/05vkk5g69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hakuoh.repo.nii.ac.jp/oai yes 1877 2548 +8698 {"name": "ferris university institutional repository", "language": "en"} [{"name": "\u30d5\u30a7\u30ea\u30b9\u5973\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea fair", "language": "ja"}] https://ferris.repo.nii.ac.jp institutional [] 2022-01-12 15:36:27 2019-09-28 04:28:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ferris university", "alternativeName": "", "country": "jp", "url": "https://www.ferris.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ferris.repo.nii.ac.jp/oai yes 1085 2398 +8671 {"name": "fukuyama university repository (japanese)", "language": "en"} [{"name": "\u798f\u5c71\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://fukuyama-u.repo.nii.ac.jp institutional [] 2022-01-12 15:36:27 2019-09-28 04:25:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fukuyama university", "alternativeName": "", "country": "jp", "url": "http://www.fukuyama-u.ac.jp", "identifier": [{"identifier": "https://ror.org/00mrjbj15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fukuyama-u.repo.nii.ac.jp/oai yes 3530 8905 +8642 {"name": "gifu shotoku gakuen university repository", "language": "en"} [{"name": "\u5c90\u961c\u8056\u5fb3\u5b66\u5712\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shotoku.repo.nii.ac.jp institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "gifu shotoku gakuen university", "alternativeName": "", "country": "jp", "url": "http://www.shotoku.ac.jp/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shotoku.repo.nii.ac.jp/oai yes 2150 2383 +8906 {"name": "doho university academic repository", "language": "en"} [{"name": "\u540c\u670b\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://doho.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:42:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "doho university", "alternativeName": "", "country": "jp", "url": "https://www.doho.ac.jp", "identifier": [{"identifier": "https://ror.org/026j13a09", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://doho.repo.nii.ac.jp/oai yes 448 2264 +8611 {"name": "hamamatsu gakuin university repojitory", "language": "en"} [{"name": "\u6d5c\u677e\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hamagaku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers"] [{"name": "hamamatsu gakuin university", "alternativeName": "", "country": "jp", "url": "https://hamagaku.ac.jp/hgu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hamagaku.repo.nii.ac.jp/oai yes 90 222 +8590 {"name": "himeji dokkyo university academic repository", "language": "en"} [{"name": "\u59eb\u8def\u7368\u5354\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hdu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "himeji dokkyo university", "alternativeName": "", "country": "jp", "url": "https://www.himeji-du.ac.jp/", "identifier": [{"identifier": "https://ror.org/011xca688", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hdu.repo.nii.ac.jp/oai yes 143 182 +8574 {"name": "hokuriku gakuin university repository", "language": "en"} [{"name": "\u5317\u9678\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hokurikugakuin.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hokuriku gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.hokurikugakuin.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hokurikugakuin.repo.nii.ac.jp/oai yes 1004 1075 +8572 {"name": "hokusei gakuen university repository", "language": "en"} [{"name": "\u5317\u661f\u5b66\u5712\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hokusei.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hokusei gakuen university", "alternativeName": "", "country": "jp", "url": "https://en.hokusei.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hokusei.repo.nii.ac.jp/oai yes 2247 2446 +8567 {"name": "hosen repository", "language": "en"} [{"name": "\u3053\u3069\u3082\u6559\u80b2\u5b9d\u4ed9\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hosen.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hosen college of childhood education", "alternativeName": "", "country": "jp", "url": "https://www.hosen.ac.jp/", "identifier": [{"identifier": "https://ror.org/03mxwtc74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hosen.repo.nii.ac.jp/oai yes 150 237 +8904 {"name": "dokkyo university academic repository", "language": "en"} [{"name": "\u7368\u5354\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dokkyo.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:42:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "dokkyo university", "alternativeName": "", "country": "jp", "url": "http://www.dokkyo.ac.jp", "identifier": [{"identifier": "https://ror.org/01vj3cz23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://dokkyo.repo.nii.ac.jp/oai yes 1356 1952 +8608 {"name": "hannan university academic institutional repository", "language": "en"} [{"name": "\u962a\u5357\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hannan-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hannan university", "alternativeName": "", "country": "jp", "url": "https://www.hannan-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04jb7yj10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hannan-u.repo.nii.ac.jp/oai yes 924 2420 +8598 {"name": "heian jogakuin(st. agnes\u2019) university institutional repository", "language": "en"} [{"name": "\u5e73\u5b89\u5973\u5b66\u9662\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://st.agnes.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "heian jogakuin (st.agnes) university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://st.agnes.repo.nii.ac.jp/oai yes 807 2466 +8573 {"name": "hokuriku university repository", "language": "en"} [{"name": "\u5317\u9678\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hokuriku.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hokuriku university", "alternativeName": "", "country": "jp", "url": "https://www.hokuriku-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/04wcpjy25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hokuriku.repo.nii.ac.jp/oai yes 281 594 +8673 {"name": "fukuoka university repository", "language": "en"} [{"name": "\u798f\u5ca1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fukuoka-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:26:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "fukuoka university", "alternativeName": "", "country": "jp", "url": "https://www.fukuoka-u.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fukuoka-u.repo.nii.ac.jp/oai yes 382 4967 +8577 {"name": "hokkaido bunkyo university repository", "language": "en"} [{"name": "\u5317\u6d77\u9053\u6587\u6559\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://do-bunkyodai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:17:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "hokkaido bunkyo university", "alternativeName": "", "country": "jp", "url": "http://www.do-bunkyodai.ac.jp", "identifier": [{"identifier": "https://ror.org/01rkrzs64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://do-bunkyodai.repo.nii.ac.jp/oai yes 120 860 +8643 {"name": "gifu-cwc.repository", "language": "en"} [{"name": "\u5c90\u961c\u5e02\u7acb\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://gifu-cwc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "gifu city women\u2019s college", "alternativeName": "", "country": "jp", "url": "http://www.gifu-cwc.ac.jp", "identifier": [{"identifier": "https://ror.org/00xs4kt25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://gifu-cwc.repo.nii.ac.jp/oai yes 6 466 +8525 {"name": "ir@central leather research institute", "language": "en"} [{"acronym": "ir@clri"}] http://clri.csircentral.net institutional [] 2022-01-12 15:36:25 2019-09-28 04:14:44 ["science", "technology", "engineering"] ["journal_articles"] [{"name": "clri", "alternativeName": "central leather research institute", "country": "in", "url": "https://www.clri.org", "identifier": [{"identifier": "https://ror.org/02kp7p620", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://clri.csircentral.net/cgi/oai2 yes 5 41 +8827 {"name": "artheque", "language": "fr"} [] http://artheque.ens-cachan.fr institutional [] 2022-01-12 15:36:27 2019-09-28 04:37:35 ["science", "technology"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "ecole normal superieure paris-saclay", "alternativeName": "ens paris - saclay", "country": "fr", "url": "https://ens-paris-saclay.fr", "identifier": [{"identifier": "https://ror.org/00hx6zz33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://artheque.ens-cachan.fr/oai-pmh-repository/request yes 4235 +8940 {"name": "digital commons@center for the blue economy", "language": "en"} [] https://cbe.miis.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:23 ["science"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "learning_objects", "other_special_item_types"] [{"name": "middlebury institute of international studies", "alternativeName": "miis", "country": "us", "url": "https://www.middlebury.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://cbe.miis.edu/do/oai/ yes 54 130 +8603 {"name": "haverford scholarship", "language": "en"} [] https://scholarship.haverford.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:19:50 ["science"] ["journal_articles", "other_special_item_types"] [{"name": "haverford college faculty", "alternativeName": "", "country": "us", "url": "https://www.haverford.edu", "identifier": [{"identifier": "https://ror.org/04fnrxr62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.haverford.edu/do/oai yes 693 7183 +8676 {"name": "fukuoka dental college academic repository", "language": "en"} [{"name": "\u798f\u5ca1\u6b6f\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fdc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:26:07 ["science"] ["theses_and_dissertations"] [{"name": "fukuoka dental college", "alternativeName": "", "country": "jp", "url": "https://www.fdcnet.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fdc.repo.nii.ac.jp/oai yes 70 105 +8806 {"name": "edogawa university repository", "language": "en"} [{"name": "\u6c5f\u6238\u5ddd\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://edo.repo.nii.ac.jp institutional [] 2022-01-12 15:36:27 2019-09-28 04:35:11 ["social sciences", "technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "edogawa university", "alternativeName": "", "country": "jp", "url": "https://www.edogawa-u.ac.jp", "identifier": [{"identifier": "https://ror.org/03y8n3k44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://edo.repo.nii.ac.jp/oai yes 769 984 +8612 {"name": "halifax public libraries digital archives", "language": "en"} [] http://digitalcollections.halifaxpubliclibraries.ca institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:46 ["social sciences"] ["other_special_item_types"] [{"name": "halifax public libraries", "alternativeName": "", "country": "gb", "url": "https://www.halifaxpubliclibraries.ca/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digitalcollections.halifaxpubliclibraries.ca/oai/request yes 946 +8932 {"name": "cui digital repository", "language": "en"} [] https://cui.dspacedirect.org institutional [] 2022-01-12 15:36:27 2019-09-28 04:44:33 ["social sciences"] ["theses_and_dissertations"] [{"name": "concordia university irvine", "alternativeName": "cui", "country": "us", "url": "https://www.cui.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://cui.dspacedirect.org/oai/openaire yes +8842 {"name": "educate the research, publications, and creative works of bank street college", "language": "en"} [] https://educate.bankstreet.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:38:12 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bank street college of education", "alternativeName": "", "country": "us", "url": "https://www.bankstreet.edu", "identifier": [{"identifier": "https://ror.org/04v44vh53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://educate.bankstreet.edu/do/oai yes 346 816 +8946 {"name": "digital commons @ university at buffalo school of law", "language": "en"} [] https://digitalcommons.law.buffalo.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:36 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university at buffalo school of law", "alternativeName": "", "country": "us", "url": "http://www.law.buffalo.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.law.buffalo.edu/do/oai yes 3726 8065 +8941 {"name": "digital commons at st. marys university", "language": "en"} [] https://commons.stmarytx.edu institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:26 ["social sciences"] ["journal_articles"] [{"name": "st. marys university", "alternativeName": "", "country": "us", "url": "https://www.stmarytx.edu", "identifier": [{"identifier": "https://ror.org/03fvnza37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.stmarytx.edu/do/oai yes 484 1158 +8646 {"name": "reading room georgia state university college of law", "language": "en"} [] https://readingroom.law.gsu.edu institutional [] 2022-01-12 15:36:26 2019-09-28 04:24:31 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "georgia state university college of law", "alternativeName": "", "country": "us", "url": "https://law.gsu.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://readingroom.law.gsu.edu/do/oai yes 3218 6151 +8672 {"name": "fukuyama heisei university academic repository", "language": "en"} [{"name": "\u798f\u5c71\u5e73\u6210\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fukuyamaheisei-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:27 2019-09-28 04:25:58 ["social sciences"] ["journal_articles"] [{"name": "fukuyama heisei university", "alternativeName": "", "country": "jp", "url": "https://www.heisei-u.ac.jp", "identifier": [{"identifier": "https://ror.org/01exjg943", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fukuyamaheisei-u.repo.nii.ac.jp/oai yes 61 86 +8617 {"name": "hachinohe gakuin institutional repository", "language": "en"} [{"name": "\u516b\u6238\u5b66\u9662\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hachinohe-hachitan.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:58 ["social sciences"] ["journal_articles"] [{"name": "hachinohe gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.hachinohe-u.ac.jp", "identifier": [{"identifier": "https://ror.org/0445d5g14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hachinohe-hachitan.repo.nii.ac.jp/oai yes 826 1235 +8606 {"name": "harper adams university repository (crest)", "language": "en"} [] https://hau.collections.crest.ac.uk institutional [] 2022-01-12 15:36:26 2019-09-28 04:20:10 ["technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "harper adams university", "alternativeName": "", "country": "us", "url": "https://www.harper-adams.ac.uk/", "identifier": [{"identifier": "https://ror.org/00z20c921", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://hau.collections.crest.ac.uk/cgi/oai2 yes 230 862 +8616 {"name": "hachinohe institute of technology repository (japanese)", "language": "en"} [{"name": "\u516b\u6238\u5de5\u696d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hi-tech.repo.nii.ac.jp/ institutional [] 2020-09-09 12:17:50 2019-09-28 04:20:55 [] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hachinohe institute of technology", "alternativeName": "", "country": "jp", "url": "https://www.hi-tech.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hi-tech.repo.nii.ac.jp/oai yes 1513 2372 +9215 {"name": "johnson county community college digital collection", "language": "en"} [{"acronym": "jccc digital collections"}] http://digitallibrary.jccc.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:04:59 ["arts", "humanities"] ["other_special_item_types"] [{"name": "johnson county community college", "alternativeName": "jccc", "country": "us", "url": "https://www.jccc.edu", "identifier": [{"identifier": "https://ror.org/059r8r572", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://digitallibrary.jccc.edu/oai/oai.php yes 26473 +9196 {"name": "bismarck state college mystic memories", "language": "en"} [] https://cdm16441.contentdm.oclc.org/digital institutional [] 2022-01-12 15:36:29 2019-09-28 05:03:46 ["arts", "humanities"] ["other_special_item_types"] [{"name": "bismark state college", "alternativeName": "bsc", "country": "us", "url": "https://bismarckstate.edu", "identifier": [{"identifier": "https://ror.org/042fn4q48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://cdm16441.contentdm.oclc.org/oai/oai.php yes 6632 +9258 {"name": "bank street college library - digital collections", "language": "en"} [] https://cdm16081.contentdm.oclc.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:34 ["arts", "humanities"] ["other_special_item_types"] [{"name": "bank street college of education", "alternativeName": "", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cdm16081.contentdm.oclc.org/oai/oai.php yes 121 +9006 {"name": "dspace at amu", "language": "en"} [] https://dspace.amu.cz institutional [] 2022-01-12 15:36:28 2019-09-28 04:49:53 ["arts"] ["other_special_item_types"] [{"name": "academy of performing arts in prague", "alternativeName": "", "country": "cz", "url": "https://www.amu.cz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.amu.cz/oai/request yes 8195 +9245 {"name": "bennington college digital repository", "language": "en"} [] https://crossettlibrary.dspacedirect.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:07:50 ["arts"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "bennington college", "alternativeName": "", "country": "us", "url": "http://www.bennington.edu", "identifier": [{"identifier": "https://ror.org/01pq38j30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://crossettlibrary.dspacedirect.org/oai/openaire yes +9363 {"name": "papers on engineering education repository", "language": "en"} [{"acronym": "peer"}] https://peer.asee.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:16:14 ["engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "asee", "alternativeName": "american society for engineering education", "country": "us", "url": "http://www.asee.org", "identifier": [{"identifier": "https://ror.org/03ac64295", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://peer.asee.org/oai yes 35852 +9209 {"name": "bioline international", "language": "en"} [] http://www.bioline.org.br disciplinary [] 2022-01-12 15:36:29 2019-09-28 05:04:43 ["health and medicine", "science"] ["datasets"] [{"name": "bioline international", "alternativeName": "", "country": "ca", "url": "http://www.bioline.org.br/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.bioline.org.br/oai yes +9145 {"name": "cu find (campbell university, catherine w. wood school of nursing)", "language": "en"} [] https://cufind.campbell.edu institutional [] 2022-01-12 15:36:29 2019-09-28 04:59:24 ["health and medicine", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "campbell university", "alternativeName": "", "country": "us", "url": "https://www.campbell.edu/", "identifier": [{"identifier": "https://ror.org/00dv9q566", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://cufind.campbell.edu/do/oai/ yes 119 7981 +9158 {"name": "child abuse library online", "language": "en"} [{"acronym": "calio"}] https://calio.dspacedirect.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:00:54 ["health and medicine", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "national childrens advocacy center", "alternativeName": "", "country": "us", "url": "https://www.nationalcac.org", "identifier": [{"identifier": "https://ror.org/03qg5ja35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://calio.dspacedirect.org/oai/openaire yes +8977 {"name": "deposito digital francisco de vitoria", "language": "en"} [{"acronym": "deposito digital ufv"}] http://ddfv.ufv.es institutional [] 2022-01-12 15:36:28 2019-09-28 04:47:30 ["health and medicine"] ["journal_articles"] [{"name": "universidad francisco de vitoria", "alternativeName": "ufv madrid", "country": "es", "url": "https://www.ufv.es", "identifier": [{"identifier": "https://ror.org/03ha64j07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ddfv.ufv.es/oai/openaire yes 1546 +9287 {"name": "aurora health care digital repository", "language": "en"} [] https://digitalrepository.aurorahealthcare.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:11:14 ["health and medicine"] ["journal_articles", "learning_objects"] [{"name": "aurora health care", "alternativeName": "", "country": "us", "url": "https://www.aurorahealthcare.org/", "identifier": [{"identifier": "https://ror.org/04d5w7479", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalrepository.aurorahealthcare.org/do/oai/ yes 16 4333 +8956 {"name": "digital commons @ cortland", "language": "en"} [] https://digitalcommons.cortland.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:58 ["health and medicine"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "suny college cortland", "alternativeName": "", "country": "us", "url": "http://www2.cortland.edu/home", "identifier": [{"identifier": "https://ror.org/05a4pj207", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.cortland.edu/do/oai yes 879 5079 +9008 {"name": "e-print repository for the danish research centre for magnetic resonance", "language": "en"} [{"acronym": "drcmr eprints"}] http://eprints.drcmr.dk institutional [] 2022-01-12 15:36:28 2019-09-28 04:50:08 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "drcmr", "alternativeName": "danish research centre for magnetic resonance", "country": "dk", "url": "http://www.drcmr.dk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.drcmr.dk/cgi/oai2 yes 17 26 +9117 {"name": "cartoteca digital", "language": "es"} [{"name": "digital maplibrary", "language": ""}] http://cartotecadigital.icc.cat institutional [] 2022-01-12 15:36:28 2019-09-28 04:57:26 ["humanities"] ["other_special_item_types"] [{"name": "institute cartografic i geologic de catalunya", "alternativeName": "icgc", "country": "es", "url": "https://www.icgc.cat", "identifier": [{"identifier": "https://ror.org/03d2ezn18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} http://cartotecadigital.icc.cat/cgi-bin/oai.exe yes 74104 +8955 {"name": "digital commons @ fuller", "language": "en"} [] https://digitalcommons.fuller.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:56 ["humanities"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "fuller", "alternativeName": "fuller theological seminary", "country": "us", "url": "https://www.fuller.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.fuller.edu/do/oai/ yes 1979 5862 +9264 {"name": "baden state library", "language": "en"} [{"name": "badische landesbibliothek", "language": "de"}, {"acronym": "blb"}] https://digital.blb-karlsruhe.de institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "", "alternativeName": "", "country": "de", "url": "https://www.blb-karlsruhe.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://digital.blb-karlsruhe.de/oai yes 12578 +9232 {"name": "biblioteca digital de les illes balears", "language": "es"} [] http://ibdigital.uib.es institutional [] 2022-01-12 15:36:29 2019-09-28 05:06:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of the balearic islands", "alternativeName": "", "country": "es", "url": "https://www.uib.eu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ibdigital.uib.es/greenstone/cgi-bin/oaiserver.cgi yes +9226 {"name": "umcs digital library", "language": "en"} [] http://dlibra.umcs.lublin.pl/dlibra institutional [] 2022-01-12 15:36:29 2019-09-28 05:05:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "umcs", "alternativeName": "maria curie-sklodowska university", "country": "pl", "url": "https://www.umcs.pl", "identifier": [{"identifier": "https://ror.org/015h0qg34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://dlibra.umcs.lublin.pl/dlibra/oai-pmh-repository.xml yes +8963 {"name": "western michigan university libraries digital collections", "language": "en"} [{"acronym": "wmu libraries digital collections"}] https://digitalcollections-wmich.contentdm.oclc.org institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "western michigan university", "alternativeName": "wmu", "country": "us", "url": "https://wmich.edu", "identifier": [{"identifier": "https://ror.org/04j198w64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://digitalcollections-wmich.contentdm.oclc.org/oai/oai.php yes 2722 +9318 {"name": "arizona memory project", "language": "en"} [] https://azmemory.azlibrary.gov governmental [] 2022-01-12 15:36:29 2019-09-28 05:13:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "arizona state library, archives and public records", "alternativeName": "", "country": "us", "url": "https://azlibrary.gov", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://azmemory.azlibrary.gov/oai/oai.php yes 20305 +9366 {"name": "american library association institutional repository", "language": "en"} [{"acronym": "alair"}] https://alair.ala.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:16:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "american library association", "alternativeName": "", "country": "us", "url": "http://www.ala.org", "identifier": [{"identifier": "https://ror.org/03eg6ys02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://alair.ala.org/oai/openaire yes +9059 {"name": "commonwealth of learning (col)", "language": "en"} [{"acronym": "col"}] http://oasis.col.org institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "commonwealth of learning", "alternativeName": "col", "country": "ca", "url": "https://www.col.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://oasis.col.org/oai/openaire yes +9190 {"name": "boloka institutional repository", "language": "en"} [] https://repository.nwu.ac.za institutional [] 2022-01-12 15:36:29 2019-09-28 05:03:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "north-west university", "alternativeName": "", "country": "za", "url": "http://www.nwu.ac.za/", "identifier": [{"identifier": "https://ror.org/010f1sq29", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.nwu.ac.za/oai/openaire yes +9066 {"name": "coastal scholar repository", "language": "en"} [] https://coastalscholar.ccga.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "university system of georgia", "alternativeName": "", "country": "us", "url": "https://www.usg.edu", "identifier": [{"identifier": "https://ror.org/017wcm924", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://coastalscholar.ccga.edu/oai/openaire yes +8996 {"name": "dut open scholar", "language": "en"} [] http://openscholar.dut.ac.za institutional [] 2022-01-12 15:36:28 2019-09-28 04:48:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "dut", "alternativeName": "durban university of technology", "country": "za", "url": "https://www.dut.ac.za", "identifier": [{"identifier": "https://ror.org/0303y7a51", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openscholar.dut.ac.za/oai/openaire yes +9290 {"name": "scholarly commons", "language": "en"} [] https://augusta.openrepository.com institutional [] 2022-01-12 15:36:29 2019-09-28 05:11:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "augusta university", "alternativeName": "", "country": "us", "url": "https://www.augusta.edu", "identifier": [{"identifier": "https://ror.org/012mef835", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://augusta.openrepository.com/oai/rioxx yes +9105 {"name": "chstu repository", "language": "en"} [{"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 \u0447\u0434\u0442\u0443", "language": "uk"}, {"name": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0447\u0433\u0442\u0443", "language": "ru"}] http://er.chdtu.edu.ua institutional [] 2022-01-12 15:36:28 2019-09-28 04:56:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents"] [{"name": "cherkasy state technological university", "alternativeName": "chstu", "country": "ua", "url": "https://chdtu.edu.ua", "identifier": [{"identifier": "https://ror.org/01m54ds80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://er.chdtu.edu.ua/oai/openaire yes +9043 {"name": "connacht-ulster alliance libraries: cual repository", "language": "en"} [] https://research.thea.ie institutional [] 2022-01-12 15:36:28 2019-09-28 04:52:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "datasets"] [{"name": "thea", "alternativeName": "", "country": "", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://research.thea.ie/oai/openaire yes +8976 {"name": "dalnet digital archive", "language": "en"} [] http://dalnetarchive.org institutional [] 2022-01-12 15:36:28 2019-09-28 04:47:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "detroit area library network", "alternativeName": "dalnet", "country": "us", "url": "https://www.dalnet.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dalnetarchive.org/oai/openaire yes +9005 {"name": "dspace at masaryk university", "language": "en"} [] http://dspace.muni.cz institutional [] 2022-01-12 15:36:28 2019-09-28 04:49:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "masaryk university", "alternativeName": "muni", "country": "cz", "url": "https://www.muni.cz", "identifier": [{"identifier": "https://ror.org/02j46qs45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.muni.cz/oai/openaire yes +9007 {"name": "dspace indoamerica university", "language": "en"} [{"name": "dspace universidad indoamerica", "language": "es"}] http://repositorio.uti.edu.ec institutional [] 2022-01-12 15:36:28 2019-09-28 04:49:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "indoamerica university", "alternativeName": "", "country": "es", "url": "http://www.uti.edu.ec", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uti.edu.ec/oai/openaire yes 365 381 +9255 {"name": "reposit\u00f3rio digital institucional ufpr - base de dadod cient\u00edficos", "language": "pt"} [] https://bdc.c3sl.ufpr.br institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "ufpr", "alternativeName": "universidade federal do paran\u00e1", "country": "br", "url": "https://www.ufpr.br/portalufpr", "identifier": [{"identifier": "https://ror.org/05syd6y78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bdc.c3sl.ufpr.br/oai/openaire yes +9341 {"name": "antioch university repository & archive", "language": "en"} [{"acronym": "aura"}] https://aura.antioch.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:15:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "antioch university", "alternativeName": "", "country": "us", "url": "https://www.antioch.edu", "identifier": [{"identifier": "https://ror.org/03ekzka28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://aura.antioch.edu/do/oai yes 376 1210 +8951 {"name": "digital commons @ new jersey institute of technology", "language": "en"} [{"acronym": "njit"}] https://digitalcommons.njit.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "njit", "alternativeName": "new jersey institute of technology", "country": "us", "url": "https://www.njit.edu", "identifier": [{"identifier": "https://ror.org/05e74xb87", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.njit.edu/do/oai yes 2481 6828 +9046 {"name": "cu commons", "language": "en"} [] https://commons.cu-portland.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:52:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "concordia university", "alternativeName": "", "country": "us", "url": "https://www.cu-portland.edu", "identifier": [{"identifier": "https://ror.org/04dwckp88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.cu-portland.edu/do/oai yes 88 3543 +8962 {"name": "cedarville university digital commons", "language": "en"} [] https://digitalcommons.cedarville.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "cedarville university", "alternativeName": "", "country": "us", "url": "https://www.cedarville.edu", "identifier": [{"identifier": "https://ror.org/01t28d595", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.cedarville.edu/do/oai yes 19372 53337 +9077 {"name": "clemson university: tigerprints", "language": "en"} [] https://tigerprints.clemson.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "clemson university", "alternativeName": "", "country": "us", "url": "http://www.clemson.edu/", "identifier": [{"identifier": "https://ror.org/037s24f05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://tigerprints.clemson.edu/do/oai/ yes 10802 31171 +9063 {"name": "cross works", "language": "en"} [] https://crossworks.holycross.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "college of the holy cross", "alternativeName": "", "country": "us", "url": "https://www.holycross.edu", "identifier": [{"identifier": "https://ror.org/05dwp6855", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://crossworks.holycross.edu/do/oai yes 1547 4884 +8959 {"name": "digital commons @ assumption college", "language": "en"} [] https://digitalcommons.assumption.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "assumption college", "alternativeName": "", "country": "us", "url": "https://www.assumption.edu/", "identifier": [{"identifier": "https://ror.org/039k72y49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.assumption.edu/do/oai/ yes 509 894 +8954 {"name": "digital commons @ harrisburg university of science and technology", "language": "en"} [] https://digitalcommons.harrisburgu.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "harrisburg university of science and technology", "alternativeName": "", "country": "us", "url": "https://harrisburgu.edu/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.harrisburgu.edu/do/oai/ yes 115 165 +9061 {"name": "digital commons@columbia college chicago", "language": "en"} [] https://digitalcommons.colum.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "columbia college chicago", "alternativeName": "", "country": "us", "url": "https://www.colum.edu", "identifier": [{"identifier": "https://ror.org/03a3kvy61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.colum.edu/do/oai yes 2785 3503 +9185 {"name": "scholarworks@bgsu", "language": "en"} [] https://scholarworks.bgsu.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:02:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "bgsu", "alternativeName": "bowling green state university", "country": "us", "url": "https://www.bgsu.edu", "identifier": [{"identifier": "https://ror.org/00ay7va13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.bgsu.edu/do/oai yes 12927 18360 +9331 {"name": "aquila digital community", "language": "en"} [] https://aquila.usm.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:14:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "the university of southern mississippi", "alternativeName": "", "country": "us", "url": "https://www.usm.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://aquila.usm.edu/do/oai yes 5791 17292 +9260 {"name": "bangor community: digital commons@bpl", "language": "en"} [] https://digicom.bpl.lib.me.us institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "bangor public library", "alternativeName": "", "country": "us", "url": "https://www.bangorpubliclibrary.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digicom.bpl.lib.me.us/do/oai yes 926 1903 +9252 {"name": "beadle scholar", "language": "en"} [] https://scholar.dsu.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:08:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "dakota state university", "alternativeName": "dsu", "country": "us", "url": "https://dsu.edu", "identifier": [{"identifier": "https://ror.org/016yv6y68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholar.dsu.edu/do/oai yes 719 945 +9246 {"name": "belmont digital repository", "language": "en"} [] https://repository.belmont.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:07:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "belmont university", "alternativeName": "", "country": "us", "url": "http://www.belmont.edu", "identifier": [{"identifier": "https://ror.org/033vjpd42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://repository.belmont.edu/do/oai yes 509 2070 +9182 {"name": "bridgewater college digital commons", "language": "en"} [] https://digitalcommons.bridgewater.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:02:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "bridgewater college", "alternativeName": "", "country": "us", "url": "https://www.bridgewater.edu/", "identifier": [{"identifier": "https://ror.org/016119s16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.bridgewater.edu/do/oai/ yes 460 2781 +9084 {"name": "ciencia unisalle - universidad de la salle", "language": "es"} [] https://ciencia.lasalle.edu.co institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "universidad de la salle", "alternativeName": "", "country": "co", "url": "https://www.lasalle.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://ciencia.lasalle.edu.co/do/oai yes 58 31996 +9070 {"name": "colgate university: digital commons @ colgate", "language": "en"} [] https://commons.colgate.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "colgate university", "alternativeName": "", "country": "", "url": "https://www.colgate.edu/", "identifier": [{"identifier": "https://ror.org/05d23ve83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.colgate.edu/do/oai/ yes 165 463 +9062 {"name": "collin college: digitalcommons@collin", "language": "en"} [] https://digitalcommons.collin.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects"] [{"name": "collin college", "alternativeName": "", "country": "us", "url": "https://www.collin.edu/", "identifier": [{"identifier": "https://ror.org/05t5ek106", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.collin.edu/do/oai/ yes 2858 4694 +8994 {"name": "daemen digital commons", "language": "en"} [] https://digitalcommons.daemen.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:48:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "deamen college", "alternativeName": "", "country": "us", "url": "https://www.daemen.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.daemen.edu/do/oai yes 91 1602 +8958 {"name": "digital commons @ biola", "language": "en"} [] https://digitalcommons.biola.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "biola university", "alternativeName": "", "country": "us", "url": "https://www.biola.edu", "identifier": [{"identifier": "https://ror.org/02han2n82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.biola.edu/do/oai yes 225 4628 +8957 {"name": "digital commons @ csumb (california state university, monterey bay)", "language": "en"} [] https://digitalcommons.csumb.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "california state university, monterey bay", "alternativeName": "", "country": "us", "url": "https://csumb.edu", "identifier": [{"identifier": "https://ror.org/00mjdtw98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.csumb.edu/do/oai/ yes 3501 9087 +8953 {"name": "digital commons @ langston university", "language": "en"} [] https://dclu.langston.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "langston university", "alternativeName": "", "country": "us", "url": "https://www.langston.edu/", "identifier": [{"identifier": "https://ror.org/04z893x06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://dclu.langston.edu/do/oai/ yes 179 534 +8950 {"name": "digital commons @ plymouth state university", "language": "en"} [] https://digitalcommons.plymouth.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "learning_objects"] [{"name": "plymouth state university", "alternativeName": "", "country": "us", "url": "https://www.plymouth.edu/", "identifier": [{"identifier": "https://ror.org/00fpz4c36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.plymouth.edu/do/oai/ yes 402 2331 +8949 {"name": "digital commons @ sia", "language": "en"} [] https://digitalcommons.sia.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "sothebys institute of art", "alternativeName": "", "country": "us", "url": "https://www.sothebysinstitute.com", "identifier": [{"identifier": "https://ror.org/012jge305", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.sia.edu/do/oai yes 69 246 +8948 {"name": "digital commons @ shawnee state university", "language": "en"} [] https://digitalcommons.shawnee.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "shawnee state university", "alternativeName": "ssu", "country": "us", "url": "https://www.shawnee.edu", "identifier": [{"identifier": "https://ror.org/0095r2297", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.shawnee.edu/do/oai yes 287 594 +8947 {"name": "digital commons @ tru library", "language": "en"} [] https://digitalcommons.library.tru.ca institutional [] 2022-01-12 15:36:27 2019-09-28 04:45:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "thompson rivers university", "alternativeName": "tru", "country": "ca", "url": "https://www.tru.ca", "identifier": [{"identifier": "https://ror.org/01v9wj339", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.library.tru.ca/do/oai yes 179 1287 +9065 {"name": "digitalcommons@csb/sju", "language": "en"} [] https://digitalcommons.csbsju.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "the college of saint benedict and saint johns university", "alternativeName": "csb & sju", "country": "us", "url": "https://www.csbsju.edu", "identifier": [{"identifier": "https://ror.org/00watgv28", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.csbsju.edu/do/oai yes 2018 7350 +9247 {"name": "scholarworks@bellarmine", "language": "en"} [] https://scholarworks.bellarmine.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:07:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "bellarmine university", "alternativeName": "", "country": "us", "url": "https://www.bellarmine.edu", "identifier": [{"identifier": "https://ror.org/04p81nz21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarworks.bellarmine.edu/do/oai yes 67 320 +9121 {"name": "stritch shares", "language": "en"} [] https://digitalcommons.stritch.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:57:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "cardinal stritch university library", "alternativeName": "", "country": "us", "url": "https://library.stritch.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.stritch.edu/do/oai yes 510 1337 +8952 {"name": "digital commons @ luther seminary", "language": "en"} [] https://digitalcommons.luthersem.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:45:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "luther seminary", "alternativeName": "", "country": "us", "url": "https://www.luthersem.edu", "identifier": [{"identifier": "https://ror.org/04zsgrk35", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.luthersem.edu/do/oai yes 418 1231 +9010 {"name": "digital library at aisyiyah health sciences college, yogyakarta", "language": "en"} [{"name": "digilib at universitas aisyiyah yogyakarta (unisa)", "language": "id"}] http://digilib.unisayogya.ac.id institutional [] 2022-01-12 15:36:28 2019-09-28 04:50:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "aisyiyah health sciences college, yogyakarta", "alternativeName": "", "country": "id", "url": "https://www.unisayogya.ac.id/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://digilib.unisayogya.ac.id/cgi/oai2 yes 2296 4506 +9259 {"name": "bangor university: ebangor / prifysgol bangor", "language": "en"} [] http://e.bangor.ac.uk institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects"] [{"name": "bangor university", "alternativeName": "", "country": "gb", "url": "https://research.bangor.ac.uk/portal/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://e.bangor.ac.uk/cgi/oai2 yes 1174 10334 +9175 {"name": "bucks new university: bucks knowledge archive", "language": "en"} [] https://bucks.collections.crest.ac.uk institutional [] 2022-01-12 15:36:29 2019-09-28 05:01:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "buckinghamshire new university", "alternativeName": "", "country": "gb", "url": "https://bucks.ac.uk/", "identifier": [{"identifier": "https://ror.org/02q3bak66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://bucks.collections.crest.ac.uk/cgi/oai2 yes 215 1644 +9015 {"name": "dbis epub", "language": "en"} [] http://dbis.eprints.uni-ulm.de institutional [] 2022-01-12 15:36:28 2019-09-28 04:50:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ulm", "alternativeName": "ulm university", "country": "de", "url": "https://www.uni-ulm.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dbis.eprints.uni-ulm.de/cgi/oai2 yes 1035 1639 +9321 {"name": "uarctic library", "language": "en"} [] http://library.vlt.is institutional [] 2022-01-12 15:36:29 2019-09-28 05:13:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "uarctic", "alternativeName": "university of the artic", "country": "us", "url": "https://www.uarctic.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://library.vlt.is/cgi/oai2 yes 34 47 +9195 {"name": "bibliotheksportal - ruhr-universit\u00e4t bochum", "language": "de"} [{"acronym": "rub"}] https://www.ub.rub.de/index institutional [] 2022-01-12 15:36:29 2019-09-28 05:03:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "rub", "alternativeName": "ruhr-universit\u00e4t bochum", "country": "de", "url": "https://www.ruhr-uni-bochum.de/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +8965 {"name": "digimagazines - oai frontend", "language": "en"} [{"name": "digizeitschriften", "language": "de"}] http://www.digizeitschriften.de institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "digizeitschriften", "alternativeName": "", "country": "de", "url": "http://www.digizeitschriften.de/en/startseite/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.digizeitschriften.de/oai2 yes 1073856 +9238 {"name": "bialska biblioteka cyfrowa", "language": "en"} [] http://www.bbc.mbp.org.pl institutional [] 2022-01-12 15:36:29 2019-09-28 05:07:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "municipal public library in bia\u0142a podlaska", "alternativeName": "", "country": "pl", "url": "http://mbp.org.pl/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://www.bbc.mbp.org.pl/dlibra/oai-pmh-repository.xml yes +9313 {"name": "asahikawa university repository", "language": "en"} [{"name": "\u65ed\u5ddd\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aulib.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:29 2019-09-28 05:12:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "asahikawa university", "alternativeName": "", "country": "jp", "url": "https://www.asahikawa-u.ac.jp/", "identifier": [{"identifier": "https://ror.org/03vgqy581", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aulib.repo.nii.ac.jp/oai yes 270 946 +9275 {"name": "baika womens university academic repository", "language": "en"} [{"name": "\u6885\u82b1\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://baika.repo.nii.ac.jp institutional [] 2022-01-12 15:36:29 2019-09-28 05:10:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "baika womens university", "alternativeName": "", "country": "us", "url": "https://www.baika.ac.jp", "identifier": [{"identifier": "https://ror.org/02kqv7v54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://baika.repo.nii.ac.jp/oai yes 118 165 +9088 {"name": "chukyo university repository for academic resources", "language": "en"} [{"name": "\u4e2d\u4eac\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chukyo-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "chukyo university", "alternativeName": "", "country": "jp", "url": "https://www.chukyo-u.ac.jp/english/", "identifier": [{"identifier": "https://ror.org/04ajrmg05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chukyo-u.repo.nii.ac.jp/oai yes 9568 18358 +8979 {"name": "den-en chofu university repository for academic resources", "language": "en"} [{"name": "\u7530\u5712\u8abf\u5e03\u5b66\u5712\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://dcu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:28 2019-09-28 04:47:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "den-en chofu university", "alternativeName": "", "country": "jp", "url": "https://www.dcu.ac.jp", "identifier": [{"identifier": "https://ror.org/05gz40769", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://dcu.repo.nii.ac.jp/oai yes 616 638 +9087 {"name": "chukyogakuin university repository", "language": "en"} [{"name": "\u4e2d\u4eac\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chukyogakuin.repo.nii.ac.jp institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "chukyogakuin university", "alternativeName": "", "country": "jp", "url": "http://www.chukyogakuin-u.ac.jp", "identifier": [{"identifier": "https://ror.org/02saqjz85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chukyogakuin.repo.nii.ac.jp/oai yes 8 329 +9335 {"name": "aomori public university repository", "language": "en"} [{"name": "\u9752\u68ee\u516c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://nebuta.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:29 2019-09-28 05:14:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "aomori public university", "alternativeName": "", "country": "jp", "url": "https://www.nebuta.ac.jp", "identifier": [{"identifier": "https://ror.org/029zx7z39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nebuta.repo.nii.ac.jp/oai yes 320 338 +9312 {"name": "ashikaga university repository", "language": "en"} [{"name": "\u8db3\u5229\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ashitech.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:29 2019-09-28 05:12:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ashikaga university", "alternativeName": "", "country": "jp", "url": "http://www.ashitech.ac.jp", "identifier": [{"identifier": "https://ror.org/0330rc745", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ashitech.repo.nii.ac.jp/oai yes 100 149 +9097 {"name": "chiba university of commerce academic repository", "language": "en"} [{"name": "\u5343\u8449\u5546\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cuc.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:55:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "chiba university of commerce", "alternativeName": "", "country": "jp", "url": "https://www.cuc.ac.jp", "identifier": [{"identifier": "https://ror.org/02qn0vb48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cuc.repo.nii.ac.jp/oai yes 2267 5809 +9089 {"name": "chubu gakuin university repository", "language": "en"} [{"name": "\u4e2d\u90e8\u5b66\u9662\u5927\u5b66\u30fb\u4e2d\u90e8\u5b66\u9662\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chubu-gu.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "chubu gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.chubu-gu.ac.jp/", "identifier": [{"identifier": "https://ror.org/0364c8r59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chubu-gu.repo.nii.ac.jp/oai yes 347 534 +9085 {"name": "chuo university academic information repository", "language": "en"} [{"name": "\u4e2d\u592e\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chuo-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "chuo university", "alternativeName": "", "country": "jp", "url": "https://www.chuo-u.ac.jp/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chuo-u.repo.nii.ac.jp/oai yes 4067 9502 +9086 {"name": "chuogakuin university academic repository", "language": "en"} [{"name": "\u4e2d\u592e\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cgu.repo.nii.ac.jp institutional [] 2022-01-12 15:36:28 2019-09-28 04:54:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "chuo gakuin university", "alternativeName": "", "country": "jp", "url": "https://www.cgu.ac.jp", "identifier": [{"identifier": "https://ror.org/03zfwg795", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cgu.repo.nii.ac.jp/oai yes 716 1811 +9314 {"name": "asahi university institutional repository", "language": "en"} [{"name": "\u671d\u65e5\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://asahi-u.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:29 2019-09-28 05:12:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "asahi university", "alternativeName": "", "country": "jp", "url": "http://asahibekka-english.mystrikingly.com/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://asahi-u.repo.nii.ac.jp/oai yes 132 11494 +9278 {"name": "azabu university science information repository", "language": "en"} [{"name": "\u9ebb\u5e03\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://az.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:29 2019-09-28 05:10:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "azabu university", "alternativeName": "", "country": "jp", "url": "https://www.azabu-u.ac.jp", "identifier": [{"identifier": "https://ror.org/00wzjq897", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://az.repo.nii.ac.jp/oai yes 661 4038 +9093 {"name": "chitose institute of science and technology academic repository", "language": "en"} [{"name": "\u516c\u7acb\u5343\u6b73\u79d1\u5b66\u6280\u8853\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cist.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:55:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "chitose institute of science and technology", "alternativeName": "", "country": "jp", "url": "https://www.chitose.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cist.repo.nii.ac.jp/oai yes 296 660 +9322 {"name": "arctic portal library", "language": "en"} [] http://library.arcticportal.org institutional [] 2022-01-12 15:36:29 2019-09-28 05:13:19 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "arctic portal", "alternativeName": "", "country": "is", "url": "https://arcticportal.org", "identifier": [{"identifier": "https://ror.org/00zpk0t94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://library.arcticportal.org/cgi/oai2 yes 485 1167 +9223 {"name": "bibnum education", "language": "en"} [] http://www.bibnum.education.fr institutional [] 2022-01-12 15:36:29 2019-09-28 05:05:29 ["science"] ["books_chapters_and_sections"] [{"name": "foundation house of human sciences", "alternativeName": "fmsh", "country": "fr", "url": "http://www.fmsh.fr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://www.bibnum.education.fr/oai/oai2.php yes +9017 {"name": "czech academy of sciences: dknav", "language": "en"} [{"acronym": "dknav"}, {"name": "knihovna akademie v\u011bd \u010desk\u00e9 republiky", "language": "cs"}, {"acronym": "dknav"}] http://dlib.lib.cas.cz disciplinary [] 2022-01-12 15:36:28 2019-09-28 04:50:24 ["science"] ["journal_articles"] [{"name": "czech academy of sciences", "alternativeName": "", "country": "cz", "url": "http://www.avcr.cz/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://dlib.lib.cas.cz/cgi/oai2 yes 8278 +9016 {"name": "dbgprints repository", "language": "en"} [] http://eprints.dbges.de institutional [] 2022-01-12 15:36:28 2019-09-28 04:50:23 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "dbg", "alternativeName": "german soil science society", "country": "de", "url": "https://www.dbges.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.dbges.de/cgi/oai2 yes 1216 1362 +8991 {"name": "daiichi university of pharmacy institutional repository", "language": "en"} [{"name": "\u7b2c\u4e00\u85ac\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://daiichi-cps.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:48:45 ["science"] ["journal_articles"] [{"name": "daiichi university of pharmacy", "alternativeName": "", "country": "jp", "url": "http://www.daiichi-cps.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://daiichi-cps.repo.nii.ac.jp/oai yes 52 67 +9374 {"name": "allard research commons (peter a. allard school of law)", "language": "en"} [] https://commons.allard.ubc.ca institutional [] 2022-01-12 15:36:29 2019-09-28 05:16:42 ["social sciences"] ["journal_articles"] [{"name": "university of british columbia", "alternativeName": "ubc", "country": "us", "url": "https://www.ubc.ca/", "identifier": [{"identifier": "https://ror.org/03rmrcq20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://commons.allard.ubc.ca/do/oai/ yes 566 1314 +9178 {"name": "brooklyn law school: brooklynworks", "language": "en"} [] https://brooklynworks.brooklaw.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:02:01 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "brooklyn law school", "alternativeName": "", "country": "us", "url": "https://www.brooklaw.edu/", "identifier": [{"identifier": "https://ror.org/002w9k038", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://brooklynworks.brooklaw.edu/do/oai/ yes 4336 4384 +9060 {"name": "columbia law school scholarship archive", "language": "en"} [] https://scholarship.law.columbia.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:53:08 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "columbia university in the city of new york", "alternativeName": "", "country": "us", "url": "https://www.columbia.edu", "identifier": [{"identifier": "https://ror.org/00hj8s172", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://scholarship.law.columbia.edu/do/oai/ yes 1156 3157 +8960 {"name": "digital commons @ american university washington college of law", "language": "en"} [] https://digitalcommons.wcl.american.edu institutional [] 2022-01-12 15:36:28 2019-09-28 04:46:06 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "american university washington college of law", "alternativeName": "", "country": "us", "url": "https://www.wcl.american.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://digitalcommons.wcl.american.edu/do/oai yes 3097 9180 +9256 {"name": "digital commons @ barry law", "language": "en"} [] https://lawpublications.barry.edu institutional [] 2022-01-12 15:36:29 2019-09-28 05:09:09 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "barry university dwayne o. andreas school of law i", "alternativeName": "", "country": "us", "url": "https://www.barry.edu/law", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://lawpublications.barry.edu/do/oai yes 190 394 +9144 {"name": "cued publications database", "language": "en"} [] http://publications.eng.cam.ac.uk institutional [] 2022-01-12 15:36:28 2019-09-28 04:59:22 ["technology"] ["journal_articles"] [{"name": "university of cambridge", "alternativeName": "", "country": "gb", "url": "https://www.cam.ac.uk", "identifier": [{"identifier": "https://ror.org/013meh722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publications.eng.cam.ac.uk/cgi/oai2 yes 46209 +8992 {"name": "daiichi institute of technology repository", "language": "en"} [{"name": "\u7b2c\u4e00\u5de5\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://daiichi-koudai.repo.nii.ac.jp/ institutional [] 2022-01-12 15:36:28 2019-09-28 04:48:48 ["technology"] ["journal_articles"] [{"name": "daiichi institute of technology", "alternativeName": "", "country": "jp", "url": "http://www.daiichi-koudai.ac.jp", "identifier": [{"identifier": "https://ror.org/02v6fyw83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://daiichi-koudai.repo.nii.ac.jp/oai yes 603 +9327 {"name": "archive on demand", "language": "en"} [{"acronym": "aod"}] https://archiveondemand.fitnyc.edu institutional [] 2021-02-18 18:15:07 2019-09-28 05:13:32 [] ["learning_objects", "other_special_item_types"] [{"name": "fashion institute of technology state university of new york", "alternativeName": "fit", "country": "us", "url": "http://www.fitnyc.edu", "identifier": [{"identifier": "https://ror.org/03jwrn541", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://archiveondemand.fitnyc.edu/oai-pmh-repository/request yes 779 +9292 {"name": "atomi university repository", "language": "en"} [{"name": "\u8de1\u898b\u5b66\u5712\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://atomi.repo.nii.ac.jp/ institutional [] 2020-09-09 12:19:00 2019-09-28 05:11:32 [] ["journal_articles"] [{"name": "atomi university", "alternativeName": "", "country": "jp", "url": "http://www.atomi.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://atomi.repo.nii.ac.jp/oai yes 3247 3663 +9098 {"name": "chiba keizai university & college academic repository", "language": "en"} [{"name": "\u5343\u8449\u7d4c\u6e08\u5927\u5b66\u30fb\u5343\u8449\u7d4c\u6e08\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://lib.cku.repo.nii.ac.jp/ institutional [] 2021-02-18 18:14:37 2019-09-28 04:55:19 [] ["journal_articles"] [{"name": "chiba keizai university", "alternativeName": "", "country": "jp", "url": "https://www.cku.ac.jp/top.html", "identifier": [{"identifier": "https://ror.org/05540h853", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://lib.cku.repo.nii.ac.jp/oai yes 576 1558 +9096 {"name": "chikushi jogakuen university repository", "language": "en"} [{"name": "\u7b51\u7d2b\u5973\u5b66\u5712\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://chikushi-u.repo.nii.ac.jp institutional [] 2020-09-09 12:18:50 2019-09-28 04:55:14 [] ["journal_articles"] [{"name": "chikushi jogakuen university", "alternativeName": "", "country": "jp", "url": "https://www.chikushi.ac.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://chikushi-u.repo.nii.ac.jp/oai yes 55 +9477 {"name": "i\u0307stanbul medipol university institutional repository", "language": "en"} [{"acronym": "dspace@medipol"}, {"name": "i\u0307stanbul medipol \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@medipol"}] https://acikerisim.medipol.edu.tr institutional [] 2022-01-12 15:36:30 2020-01-06 08:14:41 ["arts", "health and medicine", "science", "social sciences", "technology"] ["journal_articles"] [{"name": "i\u0307stanbul medipol university", "alternativeName": "", "country": "tr", "url": "https://www.medipol.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.medipol.edu.tr/oai/request yes +9428 {"name": "repositorio institucional de la universidad nacional de ingenier\u00eda", "language": "es"} [{"acronym": "ribuni"}] http://ribuni.uni.edu.ni institutional [] 2022-01-12 15:36:30 2019-11-01 08:29:38 ["arts", "humanities", "engineering"] ["theses_and_dissertations"] [{"name": "universidad nacional de ingenier\u00eda", "alternativeName": "uni", "country": "ni", "url": "https://www.uni.edu.ni", "identifier": [{"identifier": "https://ror.org/00brc6r59", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://ribuni.uni.edu.ni/cgi/oai2 yes +9478 {"name": "siirt university institutional repository", "language": "en"} [{"acronym": "dspace@siirt"}, {"name": "siirt \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@siirt"}] https://acikerisim.siirt.edu.tr institutional [] 2022-01-12 15:36:30 2020-01-06 08:28:04 ["arts", "humanities", "health and medicine", "science", "social sciences", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "siirt university", "alternativeName": "", "country": "tr", "url": "http://www.siirt.edu.tr", "identifier": [{"identifier": "https://ror.org/05ptwtz25", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.siirt.edu.tr/oai/request yes +9501 {"name": "repositorio universidad de los llanos", "language": "es"} [{"name": "digital repository of universidad de los llanos", "language": "en"}] https://repositorio.unillanos.edu.co institutional [] 2022-01-12 15:36:31 2020-01-27 10:21:01 ["arts", "humanities", "health and medicine", "science", "social sciences", "engineering"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de los llanos", "alternativeName": "", "country": "co", "url": "https://www.unillanos.edu.co", "identifier": [{"identifier": "https://ror.org/042335e16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unillanos.edu.co/oai/request yes +9406 {"name": "chuka university institutional repository", "language": "en"} [] http://repository.chuka.ac.ke institutional [] 2022-01-12 15:36:30 2019-10-16 08:32:31 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "chuka university", "alternativeName": "", "country": "ke", "url": "https://www.chuka.ac.ke", "identifier": [{"identifier": "https://ror.org/05cqafq62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.chuka.ac.ke/oai/request yes +9469 {"name": "online research data", "language": "en"} [{"acronym": "orda"}] https://orda.shef.ac.uk/ institutional [] 2022-01-12 15:36:30 2020-01-02 10:58:47 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["datasets"] [{"name": "the university of sheffield", "alternativeName": "", "country": "gb", "url": "https://www.sheffield.ac.uk", "identifier": [{"identifier": "https://ror.org/05krs5044", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://orda.shef.ac.uk/ yes +9503 {"name": "the new zealand digital library", "language": "en"} [] http://puka.cs.waikato.ac.nz institutional [] 2022-01-12 15:36:31 2020-01-28 18:25:13 ["arts", "humanities", "social sciences", "technology"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of waikato", "alternativeName": "", "country": "nz", "url": "https://www.waikato.ac.nz", "identifier": [{"identifier": "https://ror.org/013fsnh78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9415 {"name": "open repository of the university of zagreb faculty of humanities and social sciences", "language": "en"} [{"acronym": "odraz"}, {"name": "otvoreni digitalni repozitorij akademske zajednice ffzg-a", "language": "hr"}, {"acronym": "odraz"}] https://repozitorij.ffzg.unizg.hr institutional [] 2022-01-12 15:36:30 2019-10-25 07:41:12 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://ffzg.unizg.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ffzg.unizg.hr/oai yes +9418 {"name": "rutgers optimality archive", "language": "en"} [{"acronym": "roa"}] http://roa.rutgers.edu disciplinary [] 2022-01-12 15:36:30 2019-10-29 09:17:30 ["arts", "humanities"] ["journal_articles"] [{"name": "rutgers, the state university of new jersey", "alternativeName": "", "country": "us", "url": "https://www.rutgers.edu", "identifier": [{"identifier": "https://ror.org/05vt9qd57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9512 {"name": "institutional repository of the mozarteum university", "language": "en"} [{"name": "das repositorium der universit\u00e4t mozarteum", "language": "de"}] http://repository.moz.ac.at institutional [] 2022-01-12 15:36:31 2020-02-03 08:53:54 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "mozarteum university", "alternativeName": "", "country": "at", "url": "http://www.uni-mozarteum.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9408 {"name": "sound and vision publications", "language": "en"} [] https://publications.beeldengeluid.nl institutional [] 2022-01-12 15:36:30 2019-10-18 07:52:36 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "netherlands institute for sound and vision", "alternativeName": "", "country": "nl", "url": "https://www.beeldengeluid.nl", "identifier": [{"identifier": "https://ror.org/025ae8628", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://publications.beeldengeluid.nl/oai yes +9488 {"name": "reposit\u00f3rio institucional da universidade do estado do amazonas", "language": "pt"} [{"acronym": "reposit\u00f3rio institucional uea"}] http://repositorioinstitucional.uea.edu.br institutional [] 2022-01-12 15:36:30 2020-01-14 12:01:33 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidade do estado do amazonas", "alternativeName": "uea", "country": "br", "url": "http://www1.uea.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorioinstitucional.uea.edu.br/oai/request yes +9397 {"name": "repositorio institucional del ministerio de cultura", "language": "es"} [] http://repositorio.cultura.gob.pe institutional [] 2022-01-12 15:36:29 2019-10-11 07:51:16 ["arts", "humanities"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ministry of culture", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/cultura", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cultura.gob.pe/oai/request yes +9510 {"name": "repository of the academy of arts and culture in osijek", "language": "en"} [{"name": "repozitorij akademije za umjetnost i kulturu u osijeku", "language": "hr"}] https://repozitorij.aukos.unios.hr institutional [] 2022-01-12 15:36:31 2020-02-03 08:14:25 ["arts", "humanities"] ["theses_and_dissertations"] [{"name": "university of osijek", "alternativeName": "unios", "country": "hr", "url": "http://www.uaos.unios.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.aukos.unios.hr/oai yes +9511 {"name": "zhdk open publications in the arts repository", "language": "en"} [{"acronym": "zopar"}] https://www.zenodo.org/communities/zhdk institutional [] 2022-01-12 15:36:31 2020-02-03 08:44:08 ["arts"] ["journal_articles", "other_special_item_types"] [{"name": "zurich university of the arts", "alternativeName": "zhdk", "country": "ch", "url": "https://www.zhdk.ch", "identifier": [{"identifier": "https://ror.org/05r0ap620", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://zenodo.org/oai2d yes +9422 {"name": "advanced research center for nanolithography", "language": "en"} [{"acronym": "arcnl"}] https://ir.arcnl.nl institutional [] 2022-01-12 15:36:30 2019-10-29 11:15:33 ["engineering"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "arcnl", "alternativeName": "advanced research center for nanolithography", "country": "nl", "url": "https://arcnl.nl", "identifier": [{"identifier": "https://ror.org/04xe7ws48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9507 {"name": "repositorio de escuela colombiana de ingenier\u00eda julio garavito", "language": "es"} [] https://repositorio.escuelaing.edu.co institutional [] 2022-01-12 15:36:31 2020-01-30 08:41:00 ["engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "escuela colombiana de ingenier\u00eda julio garavito", "alternativeName": "", "country": "co", "url": "https://www.escuelaing.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.escuelaing.edu.co/oai/request yes +9468 {"name": "digital object repository at psi", "language": "en"} [{"acronym": "dora psi"}] https://www.dora.lib4ri.ch/psi institutional [] 2022-01-12 15:36:30 2020-01-02 10:29:06 ["engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "psi", "alternativeName": "paul scherrer institute", "country": "ch", "url": "https://www.psi.ch", "identifier": [{"identifier": "https://ror.org/03eh3y714", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.dora.lib4ri.ch/psi/dora_content_policy", "type": "metadata"}, {"policy_url": "https://www.dora.lib4ri.ch/psi/dora_content_policy", "type": "data"}, {"policy_url": "https://www.dora.lib4ri.ch/psi/dora_content_policy", "type": "content"}, {"policy_url": "https://www.dora.lib4ri.ch/psi/dora_content_policy", "type": "submission"}] {"name": "islandora", "version": ""} https://www.dora.lib4ri.ch/psi/oai2 yes +9383 {"name": "repositorio institucional digital de la universidad nacional toribio rodr\u00edguez de mendoza", "language": "es"} [{"acronym": "repositorio institucional digital - untrm"}] http://repositorio.untrm.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-03 10:44:13 ["health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional toribio rodr\u00edguez de mendoza", "alternativeName": "untrm", "country": "pe", "url": "https://www.untrm.edu.pe", "identifier": [{"identifier": "https://ror.org/0323wfn23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.untrm.edu.pe/oai/request yes +9404 {"name": "repositorio institucional - universidad nacional pedro ruiz", "language": "es"} [{"acronym": "repositorio institucional unprg"}] https://repositorio.unprg.edu.pe institutional [] 2022-01-12 15:36:30 2019-10-15 07:06:34 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidad de pedro ruiz gallo", "alternativeName": "", "country": "pe", "url": "http://www.unprg.edu.pe", "identifier": [{"identifier": "https://ror.org/040hbk441", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unprg.edu.pe/oai/request yes +9419 {"name": "institutional repository of the evangelical university of el salvador", "language": "en"} [{"name": "repositorio institucional de la universidad evang\u00e9lica de el salvador", "language": "es"}, {"acronym": "repositorio institucional ruees"}] http://dsuees.uees.edu.sv institutional [] 2022-01-12 15:36:30 2019-10-29 09:27:14 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "evangelical university of el salvador", "alternativeName": "uees", "country": "sv", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dsuees.uees.edu.sv/oai/request yes +9459 {"name": "norce research archive", "language": "en"} [{"name": "norce vitenarkiv", "language": "no"}] https://norceresearch.brage.unit.no institutional [] 2022-01-12 15:36:30 2019-12-18 09:02:16 ["health and medicine", "science", "social sciences", "technology"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "norce norwegian research centre", "alternativeName": "", "country": "no", "url": "https://norceresearch.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://norceresearch.brage.unit.no/norceresearch-oai/request yes +9447 {"name": "erciyes university - avesis", "language": "en"} [{"name": "erciyes \u00fcniversitesi - avesis", "language": "tr"}] https://avesis.erciyes.edu.tr institutional [] 2022-01-12 15:36:30 2019-11-13 18:07:20 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "erciyes university", "alternativeName": "", "country": "tr", "url": "https://www.erciyes.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.erciyes.edu.tr/api/oai2 yes +9519 {"name": "lokman hekim university institutional repository", "language": "en"} [{"acronym": "dspace@lokmanhekim"}] http://openaccess.lokmanhekim.edu.tr institutional [] 2022-01-12 15:36:31 2020-02-12 16:00:49 ["health and medicine", "science"] ["unpub_reports_and_working_papers"] [{"name": "lokman hekim university", "alternativeName": "lhu", "country": "tr", "url": "https://www.lokmanhekim.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.lokmanhekim.edu.tr/oai/request yes +9387 {"name": "centre of information and education for the prevention of drug abuse", "language": "en"} [{"name": "centro de informaci\u00f3n y educaci\u00f3n para la prevenci\u00f3n del abuso de drogas", "language": "es"}, {"acronym": "biblioteca virtual - cedro"}] http://repositorio.cedro.org.pe institutional [] 2022-01-12 15:36:29 2019-10-04 07:57:08 ["health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "centro de informaci\u00f3n y educaci\u00f3n para la prevenci\u00f3n del abuso de drogas", "alternativeName": "cedro`", "country": "pe", "url": "http://www.cedro.org.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cedro.org.pe/oai/request yes +9411 {"name": "fordatis", "language": "de"} [] https://fordatis.fraunhofer.de institutional [] 2022-01-12 15:36:30 2019-10-21 09:13:01 ["health and medicine", "social sciences"] ["datasets"] [{"name": "fraunhofer-gesellschaft", "alternativeName": "", "country": "de", "url": "https://www.fraunhofer.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://fordatis.fraunhofer.de/oai/request yes +9409 {"name": "medrxiv", "language": "en"} [] https://www.medrxiv.org disciplinary [] 2022-01-12 15:36:30 2019-10-18 08:07:54 ["health and medicine"] ["journal_articles"] [{"name": "cold spring harbor laboratory", "alternativeName": "cshl", "country": "us", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9470 {"name": "deccan college of medical sciences - cris", "language": "en"} [] http://183.82.11.228:8282/jspui institutional [] 2022-01-12 15:36:30 2020-01-02 11:12:43 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "deccan college of medical sciences", "alternativeName": "", "country": "in", "url": "http://deccancollegeofmedicalsciences.com", "identifier": [{"identifier": "https://ror.org/02akmdw70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace_cris", "version": ""} http://183.82.11.228:8282/oai/request yes +9402 {"name": "accede", "language": ""} [] http://www.accede.iuacj.edu.uy institutional [] 2022-01-12 15:36:30 2019-10-14 08:42:20 ["health and medicine"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "instituto universitario asociaci\u00f3n cristiana de j\u00f3venes", "alternativeName": "iuacj", "country": "uy", "url": "http://www.iuacj.edu.uy", "identifier": [{"identifier": "https://ror.org/022r3pj76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.accede.iuacj.edu.uy/oai/request yes +9379 {"name": "repository of research and investigative information", "language": "en"} [] http://eprints.mubabol.ac.ir institutional [] 2022-01-12 15:36:29 2019-10-01 08:42:02 ["health and medicine"] ["journal_articles"] [{"name": "babol university of medical sciences", "alternativeName": "", "country": "ir", "url": "http://en.mubabol.ac.ir", "identifier": [{"identifier": "https://ror.org/02r5cmz65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.mubabol.ac.ir/cgi/oai2 yes +9380 {"name": "lithuanian sports university virtual library", "language": "en"} [{"acronym": "lsu vl"}, {"name": "apie lsu virtuali\u0105 bibliotek\u0105", "language": "lt"}, {"acronym": "lsu vb"}] https://vb.lsu.lt/repository institutional [] 2022-01-12 15:36:29 2019-10-01 12:49:44 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "lithuanian sports university", "alternativeName": "lsu", "country": "lt", "url": "https://www.lsu.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vb.lsu.lt/oai yes +9391 {"name": "trovare repositorio institucional", "language": "es"} [] http://trovare.hospitalitaliano.org.ar institutional [] 2022-01-12 15:36:29 2019-10-10 07:51:02 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "instituto universitario hospital italiano de buenos aires", "alternativeName": "", "country": "ar", "url": "https://www1.hospitalitaliano.org.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} yes +9493 {"name": "jewish digital library", "language": "en"} [{"name": "\u0458\u0435\u0432\u0440\u0435\u0458\u0441\u043a\u0430 \u0434\u0438\u0433\u0438\u0442\u0430\u043b\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430", "language": "sr"}] http://jevrejskadigitalnabiblioteka.rs disciplinary [] 2022-01-12 15:36:30 2020-01-22 08:48:46 ["humanities", "arts"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "jewish digital library association", "alternativeName": "", "country": "rs", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://jevrejskadigitalnabiblioteka.rs/files/policy-jdb-en.html", "type": "metadata"}, {"policy_url": "http://jevrejskadigitalnabiblioteka.rs/files/policy-jdb-en.html", "type": "data"}, {"policy_url": "http://jevrejskadigitalnabiblioteka.rs/files/policy-jdb-en.html", "type": "content"}, {"policy_url": "http://jevrejskadigitalnabiblioteka.rs/files/policy-jdb-en.html", "type": "submission"}, {"policy_url": "http://jevrejskadigitalnabiblioteka.rs/files/policy-jdb-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://jevrejskadigitalnabiblioteka.rs/oai/request yes +9495 {"name": "digitaler lesesaal zur staedtepartnerschaft ludwigsburg und montb\u00e9liard", "language": "de"} [{"name": "jumelage montb\u00e9liard-ludwigsburg: salle de lecture en ligne", "language": "fr"}] https://ludwigsburg-montbeliard.bsz-bw.de institutional [] 2022-01-12 15:36:31 2020-01-22 16:43:12 ["humanities"] ["other_special_item_types"] [{"name": "deutsch-franz\u00f6sisches institut", "alternativeName": "dfi", "country": "de", "url": "https://www.dfi.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://ludwigsburg-montbeliard.bsz-bw.de/oai yes +9449 {"name": "repositorio institucional universidad peruana de las am\u00e9ricas", "language": "es"} [] http://repositorio.ulasamericas.edu.pe institutional [] 2022-01-12 15:36:30 2019-11-21 08:33:26 ["science", "social sciences", "technology"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidad peruana de las am\u00e9ricas", "alternativeName": "", "country": "pe", "url": "https://www.ulasamericas.edu.pe", "identifier": [{"identifier": "https://ror.org/01jmhvd34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://repositorio.ulasamericas.edu.pe/oai/request yes +9378 {"name": "repositorio institucional universidad peruana santo tom\u00e1s", "language": "es"} [] http://repositorio.ust.edu.pe institutional [] 2022-01-12 15:36:29 2019-09-30 07:26:13 ["science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad peruana santo tom\u00e1s", "alternativeName": "ust", "country": "pe", "url": "https://www.ust.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ust.edu.pe/oai/request yes +9504 {"name": "repositorio universidad nacional de san mart\u00edn - tarapoto", "language": "es"} [] http://repositorio.unsm.edu.pe institutional [] 2022-01-12 15:36:31 2020-01-29 08:53:54 ["science", "social sciences", "technology"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de san martin", "alternativeName": "", "country": "pe", "url": "http://www.unsm.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unsm.edu.pe/oai/request yes +9463 {"name": "digital repository of university of zilina", "language": "en"} [{"name": "digit\u00e1lna kni\u017enica \u017eilinskej univerzity", "language": "sk"}] https://drepo.uniza.sk institutional [] 2022-01-12 15:36:30 2019-12-19 08:39:41 ["science", "social sciences", "technology"] ["journal_articles", "other_special_item_types"] [{"name": "university of zilina", "alternativeName": "", "country": "sk", "url": "http://www.uniza.sk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://drepo.uniza.sk/oai/request yes +9382 {"name": "repositorio institucional digital de la universidad nacional del altiplano", "language": "es"} [] http://repositorio.unap.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-03 10:36:36 ["science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "national university of altiplano", "alternativeName": "", "country": "pe", "url": "https://portal.unap.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unap.edu.pe/oai/request yes +9474 {"name": "online publikationsserver der fh vorarlberg", "language": "de"} [] https://opus.fhv.at institutional [] 2022-01-12 15:36:30 2020-01-02 12:19:17 ["science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "fh vorarlberg - university of applied sciences", "alternativeName": "", "country": "at", "url": "https://www.fhv.at", "identifier": [{"identifier": "https://ror.org/031wyx077", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.fhv.at/oai yes +9450 {"name": "heriot-watt research portal", "language": "en"} [] https://researchportal.hw.ac.uk institutional [] 2022-01-12 15:36:30 2019-11-26 08:13:50 ["science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "software"] [{"name": "heriot-watt university", "alternativeName": "", "country": "gb", "url": "https://www.hw.ac.uk", "identifier": [{"identifier": "https://ror.org/04mghma93", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +9486 {"name": "repository socio-economic sciences", "language": "en"} [] http://dspace.ince.md institutional [] 2022-01-12 15:36:30 2020-01-10 12:17:14 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "national institute for economic research", "alternativeName": "nier", "country": "md", "url": "https://ince.md", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://brts.md/wp-content/uploads/2019/05/politica_acces_ince_ri_englez-2.pdf", "type": "submission"}] {"name": "dspace", "version": ""} http://dspace.ince.md/oai/request yes +9480 {"name": "dspace at aus", "language": "en"} [] https://dspace.aus.edu institutional [] 2022-01-12 15:36:30 2020-01-06 09:19:03 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "american university of sharjah", "alternativeName": "aus", "country": "ae", "url": "https://www.aus.edu", "identifier": [{"identifier": "https://ror.org/001g2fj96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://dspace.aus.edu:8443/xmlui/page/submission-policies", "type": "submission"}] {"name": "dspace", "version": ""} yes +9413 {"name": "data.gov.uk", "language": "en"} [] https://data.gov.uk governmental [] 2022-01-12 15:36:30 2019-10-23 10:28:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "gov.uk", "alternativeName": "uk government", "country": "gb", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9456 {"name": "antalya bilim university institutional repository", "language": "en"} [] http://acikerisim.antalya.edu.tr institutional [] 2022-01-12 15:36:30 2019-12-13 13:46:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "antalya bilim university", "alternativeName": "", "country": "tr", "url": "https://antalya.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "cybertesis", "version": ""} http://acikerisim.antalya.edu.tr/oai/request yes +9489 {"name": "bayburt university institutional repository", "language": "en"} [{"acronym": "dspace@bayburt"}, {"name": "bayburt \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@bayburt"}] https://openaccess.bayburt.edu.tr institutional [] 2022-01-12 15:36:30 2020-01-17 15:57:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "bayburt university", "alternativeName": "", "country": "tr", "url": "https://www.bayburt.edu.tr", "identifier": [{"identifier": "https://ror.org/050ed7z50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://openaccess.bayburt.edu.tr/oai/request yes +9479 {"name": "necmettin erbakan university institutional repository", "language": "en"} [{"acronym": "dspace@erbakan"}, {"name": "necmettin erbakan \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@erbakan"}] https://acikerisim.erbakan.edu.tr institutional [] 2022-01-12 15:36:30 2020-01-06 08:39:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "necmettin erbakan university", "alternativeName": "", "country": "tr", "url": "https://www.erbakan.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.erbakan.edu.tr/oai/request yes +9506 {"name": "k\u0131r\u0131kkale \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"} [{"acronym": "dspace@kku kirikkale"}] http://acikerisim.kku.edu.tr/xmlui/ institutional [] 2022-01-12 15:36:31 2020-01-29 09:07:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "k\u0131r\u0131kkale \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://kku.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.kku.edu.tr/oai/request yes +9439 {"name": "i\u0307zmir kavram vocational school institutional repository", "language": "en"} [{"acronym": "dspace@kavram"}, {"name": "i\u0307zmir kavram meslek y\u00fcksekokulu akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@kavram"}] http://openaccess.kavram.edu.tr institutional [] 2022-01-12 15:36:30 2019-11-05 08:04:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "i\u0307zmir kavram vocational school", "alternativeName": "", "country": "tr", "url": "https://www.kavram.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.kavram.edu.tr/oai/request yes +9438 {"name": "k\u0131r\u015fehir ahi evran university institutional repository", "language": "en"} [{"acronym": "dspace@k\u0131r\u015fehir"}, {"name": "k\u0131r\u015fehir ahi evran \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@k\u0131r\u015fehir"}] http://openaccess.ahievran.edu.tr institutional [] 2022-01-12 15:36:30 2019-11-04 11:18:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "k\u0131r\u015fehir ahi evran university", "alternativeName": "", "country": "tr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.ahievran.edu.tr/oai/request yes +9491 {"name": "\u00e7ukurova university institutional repository", "language": "en"} [{"acronym": "dspace@\u00e7ukuorva"}, {"name": "\u00e7ukurova \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@\u00e7ukuorva"}] http://openaccess.cu.edu.tr institutional [] 2022-01-12 15:36:30 2020-01-20 08:41:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "\u00e7ukurova university", "alternativeName": "", "country": "tr", "url": "https://www.cu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.cu.edu.tr/oai/request yes +9394 {"name": "reposit\u00f3rio institucional da universidade estadual de maring\u00e1", "language": "pt"} [{"acronym": "ri-uem"}] http://repositorio.uem.br:8080/jspui institutional [] 2022-01-12 15:36:29 2019-10-11 07:13:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "universidade estadual de maring\u00e1", "alternativeName": "uem", "country": "br", "url": "http://www.uem.br", "identifier": [{"identifier": "https://ror.org/04bqqa360", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9462 {"name": "repositorio institucional de la universidad nacional de barranca", "language": "es"} [{"acronym": "repositorio institucional de la unab"}] http://repositorio.unab.edu.pe institutional [] 2022-01-12 15:36:30 2019-12-19 08:29:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de barranca", "alternativeName": "", "country": "pe", "url": "https://www.unab.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unab.edu.pe/oai/request yes +9381 {"name": "repository of the peruvian austral university of cusco", "language": "en"} [{"acronym": "repositorio upac"}, {"name": "repositorio de la universidad peruana austral del cusco", "language": "es"}, {"acronym": "repositorio upac"}] http://repositorio.uaustral.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-01 14:11:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "peruvian austral university of cusco", "alternativeName": "upac", "country": "pe", "url": "http://uaustral.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uaustral.edu.pe/oai/request yes +9395 {"name": "repositorio institucional de la universidad andina n\u00e9stor c\u00e1ceres vel\u00e1squez", "language": "es"} [{"acronym": "uancv"}] http://repositorio.uancv.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-11 07:25:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad andina n\u00e9stor c\u00e1ceres vel\u00e1squez", "alternativeName": "uancv", "country": "pe", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uancv.edu.pe/oai/request yes +9386 {"name": "repositorio institucional - universidad privada sergio bernales", "language": "es"} [{"acronym": "upsb"}] http://repositorio.upsb.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-03 14:18:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad privada sergio bernales", "alternativeName": "upsb", "country": "pe", "url": "http://upsb.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upsb.edu.pe/oai/request yes +9398 {"name": "repositorio digital de la universidad norbert wiener", "language": "es"} [{"acronym": "uwiener"}] http://repositorio.uwiener.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-11 08:02:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad norbert wiener", "alternativeName": "uwiener", "country": "pe", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uwiener.edu.pe/oai/request yes +9518 {"name": "university of ilorin institutional repository", "language": "en"} [] http://uilspace.unilorin.edu.ng:8081/jspui institutional [] 2022-01-12 15:36:31 2020-02-10 08:40:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of ilorin", "alternativeName": "", "country": "ng", "url": "http://www.unilorin.edu.ng", "identifier": [{"identifier": "https://ror.org/032kdwk38", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://uilspace.unilorin.edu.ng:8081/oai/request yes +9427 {"name": "repositorio institucional unan - le\u00f3n", "language": "es"} [] http://riul.unanleon.edu.ni:8080/jspui institutional [] 2022-01-12 15:36:30 2019-11-01 08:18:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "unan", "alternativeName": "universidad nacional aut\u00f3noma de nicaragua, le\u00f3n", "country": "ni", "url": "https://www.unanleon.edu.ni", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://riul.unanleon.edu.ni:8080/oai/request yes +9384 {"name": "repositorio institucional universidad san pedro", "language": "es"} [] http://repositorio.usanpedro.edu.pe institutional [] 2022-01-12 15:36:29 2019-10-03 10:52:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad san pedro", "alternativeName": "usp", "country": "pe", "url": "https://www.usanpedro.edu.pe", "identifier": [{"identifier": "https://ror.org/03fehwj53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.usanpedro.edu.pe/oai/request yes +9494 {"name": "repositorio de la universidad de c\u00f3rdoba", "language": "es"} [] https://repositorio.unicordoba.edu.co institutional [] 2022-01-12 15:36:30 2020-01-22 08:59:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de c\u00f3rdoba", "alternativeName": "", "country": "co", "url": "https://www.unicordoba.edu.co", "identifier": [{"identifier": "https://ror.org/04nmbd607", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unicordoba.edu.co/oai/request yes +9458 {"name": "a\u00e7\u0131k eri\u015fim@buu", "language": "tr"} [] http://acikerisim.uludag.edu.tr institutional [] 2022-01-12 15:36:30 2019-12-17 09:33:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "bursa uludag university", "alternativeName": "", "country": "tr", "url": "http://uludag.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.uludag.edu.tr/oai/request yes +9505 {"name": "al-quds university digital repository", "language": "en"} [] https://dspace.alquds.edu institutional [] 2022-01-12 15:36:31 2020-01-29 08:59:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "al-quds university", "alternativeName": "", "country": "ps", "url": "https://www.alquds.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.alquds.edu/oai/request yes +9444 {"name": "ambrose alli university ekpoma institutional repository", "language": ""} [] http://154.68.224.61:8080 institutional [] 2022-01-12 15:36:30 2019-11-08 16:03:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "ambrose alli university", "alternativeName": "aau", "country": "ng", "url": "https://aauekpoma.edu.ng", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://154.68.224.61:8080/oai/request yes +9436 {"name": "ege university institutional repository", "language": "en"} [] https://acikerisim.ege.edu.tr institutional [] 2022-01-12 15:36:30 2019-11-04 10:36:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ege university", "alternativeName": "", "country": "tr", "url": "https://www.ege.edu.tr", "identifier": [{"identifier": "https://ror.org/02eaafc18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.ege.edu.tr/oai/request yes +9464 {"name": "gazi university dspace", "language": "en"} [{"name": "gazi \u00fcniversitesi dspace", "language": "tr"}] https://dspace.gazi.edu.tr institutional [] 2022-01-12 15:36:30 2019-12-19 09:29:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "gazi university", "alternativeName": "", "country": "tr", "url": "https://gazi.edu.tr", "identifier": [{"identifier": "https://ror.org/054xkpr46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.gazi.edu.tr/oai/request yes +9457 {"name": "hebron university dspace", "language": "en"} [] http://dspace.hebron.edu institutional [] 2022-01-12 15:36:30 2019-12-16 08:28:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hebron university", "alternativeName": "", "country": "ps", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9517 {"name": "repositorio acad\u00e9mico de la universidad cat\u00f3lica de el salvador", "language": "es"} [] http://repositoriounicaes.catolica.edu.sv institutional [] 2022-01-12 15:36:31 2020-02-10 08:19:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de el salvador", "alternativeName": "", "country": "sv", "url": "https://www.catolica.edu.sv", "identifier": [{"identifier": "https://ror.org/0565s5e83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9440 {"name": "repositorio fundaci\u00f3n universitaria los libertadores", "language": "es"} [] https://repository.libertadores.edu.co institutional [] 2022-01-12 15:36:30 2019-11-06 10:14:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "fundaci\u00f3n universitaria los libertadores", "alternativeName": "", "country": "co", "url": "https://www.ulibertadores.edu.co", "identifier": [{"identifier": "https://ror.org/05pm0vd24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.libertadores.edu.co/oai/request yes +9430 {"name": "repositorio institucional j\u00e4 dimike", "language": "es"} [] http://jadimike.unachi.ac.pa institutional [] 2022-01-12 15:36:30 2019-11-01 09:26:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad aut\u00f3noma de chiriqu\u00ed", "alternativeName": "", "country": "pa", "url": "http://www.unachi.ac.pa", "identifier": [{"identifier": "https://ror.org/05s3rh916", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://jadimike.unachi.ac.pa/oai/request yes +9429 {"name": "repositorio institucional de udelas", "language": "es"} [{"acronym": "ri-udelas"}] http://repositorio2.udelas.ac.pa institutional [] 2022-01-12 15:36:30 2019-11-01 08:53:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad especializada de las am\u00e9ricas", "alternativeName": "", "country": "pa", "url": "http://udelas.ac.pa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio2.udelas.ac.pa/politicas", "type": "metadata"}, {"policy_url": "http://repositorio2.udelas.ac.pa/politicas", "type": "data"}, {"policy_url": "http://repositorio2.udelas.ac.pa/politicas", "type": "content"}, {"policy_url": "http://repositorio2.udelas.ac.pa/politicas", "type": "submission"}, {"policy_url": "http://repositorio2.udelas.ac.pa/politicas", "type": "preservation"}] {"name": "dspace", "version": ""} http://repositorio2.udelas.ac.pa/oai/request yes +9416 {"name": "institutional repository of bohdan khmelnitskiy melitopol state pedagogical university", "language": "en"} [{"acronym": "mdpu repository"}] http://eprints.mdpu.org.ua institutional [] 2022-01-12 15:36:30 2019-10-29 08:45:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "bohdan khmelnitskiy melitopol state pedagogical university", "alternativeName": "", "country": "ua", "url": "https://mdpu.org.ua", "identifier": [{"identifier": "https://ror.org/01by48y20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.mdpu.org.ua/cgi/oai yes +9401 {"name": "hal e2s uppa", "language": ""} [] https://hal-univ-pau.archives-ouvertes.fr institutional [] 2022-01-12 15:36:29 2019-10-11 14:22:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 de pau et des pays de ladour", "alternativeName": "uppa", "country": "fr", "url": "https://www.univ-pau.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +9483 {"name": "university college london research data repository", "language": "en"} [{"acronym": "ucl rdr"}] https://rdr.ucl.ac.uk institutional [] 2022-01-12 15:36:30 2020-01-08 09:09:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university college london", "alternativeName": "ucl", "country": "gb", "url": "https://www.ucl.ac.uk", "identifier": [{"identifier": "https://ror.org/02jx3x895", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9400 {"name": "monash university research portal", "language": "en"} [] https://research.monash.edu institutional [] 2022-01-12 15:36:29 2019-10-11 08:11:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "monash university", "alternativeName": "", "country": "au", "url": "http://www.monash.edu", "identifier": [{"identifier": "https://ror.org/02bfwt286", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} http://researchmgt.monash.edu/ws/oai yes +9405 {"name": "research@wur", "language": "en"} [] https://research.wur.nl institutional [] 2022-01-12 15:36:30 2019-10-15 08:34:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "patents", "other_special_item_types"] [{"name": "wageningen university & research", "alternativeName": "", "country": "nl", "url": "https://www.wur.nl", "identifier": [{"identifier": "https://ror.org/04qw24q55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +9451 {"name": "solent university research portal", "language": "en"} [] https://pure.solent.ac.uk institutional [] 2022-01-12 15:36:30 2019-11-29 08:46:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "solent university", "alternativeName": "", "country": "gb", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.solent.ac.uk/ws/oai? yes +9520 {"name": "k\u00fctahya health sciences university research information system", "language": "en"} [{"acronym": "avesis"}, {"name": "k\u00fctahya sa\u011fl\u0131k bilimleri \u00fcniversitesi akademik veri y\u00f6netim sistemi", "language": "tr"}, {"acronym": "avesis"}] https://avesis.ksbu.edu.tr institutional [] 2022-01-12 15:36:31 2020-02-13 08:28:46 ["science", "technology", "health and medicine"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "k\u00fctahya health high school", "alternativeName": "", "country": "tr", "url": "https://ksbu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.ksbu.edu.tr/api/oai2 yes +9423 {"name": "amolf institutional repository", "language": "en"} [] https://ir.amolf.nl institutional [] 2022-01-12 15:36:30 2019-10-29 11:36:46 ["science", "technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "amolf", "alternativeName": "", "country": "nl", "url": "https://amolf.nl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9421 {"name": "redi - digital repository of the national agency of research and innovation", "language": "en"} [{"acronym": "redi - digital repository of anii, uruguay"}, {"name": "redi - repositorio digital de la agencia nacional de investigaci\u00f3n e innovaci\u00f3n, uruguay", "language": "es"}, {"acronym": "redi - repositorio digital de anii, uruguay"}] http://redi.anii.org.uy institutional [] 2022-01-12 15:36:30 2019-10-29 10:27:45 ["science", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "national agency of research and innovation", "alternativeName": "anii", "country": "uy", "url": "https://anii.org.uy", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://redi.anii.org.uy/oai/request yes +9396 {"name": "open access repository of the physikalisch-technische bundesanstalt", "language": "en"} [{"acronym": "ptb-oar"}] https://oar.ptb.de governmental [] 2022-01-12 15:36:29 2019-10-11 07:34:02 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "physikalisch-technische bundesanstalt", "alternativeName": "ptb-oar", "country": "de", "url": "https://www.ptb.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9467 {"name": "digital object repository at wsl", "language": "en"} [{"acronym": "dora wsl"}] https://www.dora.lib4ri.ch/wsl institutional [] 2022-01-12 15:36:30 2020-01-02 10:16:49 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "swiss federal institute for forest, snow and landscape research", "alternativeName": "wsl", "country": "ch", "url": "https://www.wsl.ch", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.dora.lib4ri.ch/wsl/dora_content_policy", "type": "metadata"}, {"policy_url": "https://www.dora.lib4ri.ch/wsl/dora_content_policy", "type": "data"}, {"policy_url": "https://www.dora.lib4ri.ch/wsl/dora_content_policy", "type": "content"}, {"policy_url": "https://www.dora.lib4ri.ch/wsl/dora_content_policy", "type": "submission"}] {"name": "islandora", "version": ""} https://www.dora.lib4ri.ch/wsl/oai2 yes +9390 {"name": "repositorio institucional minagri", "language": "es"} [{"acronym": "ministerio de agricultura y riego"}] http://repositorio.minagri.gob.pe governmental [] 2022-01-12 15:36:29 2019-10-10 07:31:12 ["science"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "ministerio de agricultura y riego", "alternativeName": "minagri", "country": "pe", "url": "https://www.gob.pe/minagri", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9461 {"name": "nibio brage", "language": "en"} [{"name": "nibio brage", "language": "no"}] https://nibio.brage.unit.no institutional [] 2022-01-12 15:36:30 2019-12-18 09:16:22 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "norwegian institute of bioeconomy research", "alternativeName": "nibio", "country": "no", "url": "https://nibio.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://nibio.brage.unit.no/nibio-oai/request yes +9484 {"name": "beilstein archives", "language": "en"} [] https://www.beilstein-archives.org disciplinary [] 2022-01-12 15:36:30 2020-01-09 10:51:51 ["science"] ["unpub_reports_and_working_papers"] [{"name": "beilstein-institut", "alternativeName": "", "country": "de", "url": "https://www.beilstein-institut.de", "identifier": [{"identifier": "https://ror.org/05jdrrw50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.portico.org/our-work/preservation-approach", "type": "preservation"}, {"policy_url": "https://www.portico.org/wp-content/uploads/2017/12/portico-content-modification-and-deletion-policy.pdf", "type": "preservation"}] {"name": "other", "version": ""} yes +9465 {"name": "digital object repository at eawag", "language": "en"} [{"acronym": "dora eawag"}] https://www.dora.lib4ri.ch/eawag institutional [] 2022-01-12 15:36:30 2020-01-02 09:34:54 ["science"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "swiss federal institute of aquatic science and technology", "alternativeName": "eawag", "country": "ch", "url": "https://www.eawag.ch", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://www.dora.lib4ri.ch/eawag/oai2 yes +9513 {"name": "repositorio institucional secretar\u00eda de educaci\u00f3n del distrito", "language": "es"} [] https://repositoriosed.educacionbogota.edu.co institutional [] 2022-01-12 15:36:31 2020-02-03 09:05:01 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "secretar\u00eda de educaci\u00f3n del distrito bogot\u00e1", "alternativeName": "", "country": "co", "url": "https://www.educacionbogota.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositoriosed.educacionbogota.edu.co/oai/request yes +9476 {"name": "repositorio institucional de la universidad le cordon bleu", "language": "es"} [] http://repositorio.ulcb.edu.pe institutional [] 2022-01-12 15:36:30 2020-01-02 12:45:09 ["social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad le cordon bleu", "alternativeName": "", "country": "pe", "url": "https://www.ulcb.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ulcb.edu.pe/oai/request yes +9487 {"name": "repositorio institucional del banco de espa\u00f1a", "language": "es"} [] https://repositorio.bde.es institutional [] 2022-01-12 15:36:30 2020-01-14 11:35:29 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "banco de espa\u00f1a", "alternativeName": "", "country": "es", "url": "https://www.bde.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.bde.es/oai/request yes +9385 {"name": "samforsk open", "language": "en"} [] https://samforsk.brage.unit.no institutional [] 2022-01-12 15:36:29 2019-10-03 14:05:28 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ntnu samfunnsforskning", "alternativeName": "", "country": "no", "url": "https://samforsk.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://samforsk.brage.unit.no/samforsk-oai/request yes +9516 {"name": "vlerick repository", "language": "en"} [] https://repository.vlerick.com institutional [] 2022-01-12 15:36:31 2020-02-10 08:00:42 ["social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "vlerick business school", "alternativeName": "", "country": "be", "url": "https://www.vlerick.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.vlerick.com/oai/request yes +9514 {"name": "rhinosec - repository of the faculty of security studies", "language": "en"} [] http://rhinosec.fb.bg.ac.rs institutional [] 2022-01-12 15:36:31 2020-02-03 09:19:33 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://fb.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rhinosec.fb.bg.ac.rs/files/policy-rhinosec-en.html", "type": "metadata"}, {"policy_url": "http://rhinosec.fb.bg.ac.rs/files/policy-rhinosec-en.html", "type": "data"}, {"policy_url": "http://rhinosec.fb.bg.ac.rs/files/policy-rhinosec-en.html", "type": "content"}, {"policy_url": "http://rhinosec.fb.bg.ac.rs/files/policy-rhinosec-en.html", "type": "submission"}, {"policy_url": "http://rhinosec.fb.bg.ac.rs/files/policy-rhinosec-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rhinosec.fb.bg.ac.rs/oai/request yes +9496 {"name": "krimpub - publication server of the centre for criminology", "language": "en"} [{"name": "krimpub - dokumentenserver der kriminologischen zentralstelle", "language": "de"}] https://krimpub.krimz.de institutional [] 2022-01-12 15:36:31 2020-01-23 09:08:15 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "kriminologische zentralstelle", "alternativeName": "", "country": "de", "url": "https://www.krimz.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://krimpub.krimz.de/oai yes +9445 {"name": "repository of the faculty of architecture", "language": "en"} [{"acronym": "raf"}] http://raf.arh.bg.ac.rs institutional [] 2022-01-12 15:36:30 2019-11-12 19:57:52 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "https://www.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://raf.arh.bg.ac.rs/files/policy-raf-sr.html", "type": "metadata"}, {"policy_url": "http://raf.arh.bg.ac.rs/files/policy-raf-sr.html", "type": "data"}, {"policy_url": "http://raf.arh.bg.ac.rs/files/policy-raf-sr.html", "type": "content"}, {"policy_url": "http://raf.arh.bg.ac.rs/files/policy-raf-sr.html", "type": "submission"}] {"name": "dspace", "version": ""} http://raf.arh.bg.ac.rs/oai/request yes +9466 {"name": "digital object repository at empa", "language": "en"} [{"acronym": "dora empa"}] https://www.dora.lib4ri.ch/empa institutional [] 2022-01-12 15:36:30 2020-01-02 09:48:53 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "swiss federal laboratories for materials science and technology", "alternativeName": "empa", "country": "ch", "url": "https://www.empa.ch", "identifier": [{"identifier": "https://ror.org/02x681a42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.dora.lib4ri.ch/empa/dora_content_policy", "type": "metadata"}, {"policy_url": "https://www.dora.lib4ri.ch/empa/dora_content_policy", "type": "content"}, {"policy_url": "https://www.dora.lib4ri.ch/empa/dora_content_policy", "type": "submission"}] {"name": "islandora", "version": ""} https://www.dora.lib4ri.ch/empa/oai2 yes +9389 {"name": "california institute of technology (caltech) data", "language": "en"} [{"acronym": "caltech"}] https://data.caltech.edu institutional [] 2022-01-12 15:36:29 2019-10-10 07:19:37 ["technology"] ["datasets"] [{"name": "california institute of technology", "alternativeName": "caltech", "country": "us", "url": "https://www.caltech.edu/", "identifier": [{"identifier": "https://ror.org/05dxps055", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://data.caltech.edu/oai2d yes +9508 {"name": "repositorio unidad de planeaci\u00f3n minero energ\u00e9tica", "language": "es"} [{"acronym": "repositorio umpe"}] https://bdigital.upme.gov.co governmental [] 2022-01-12 15:36:31 2020-01-30 08:50:12 ["technology"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "unidad de planeaci\u00f3n minero energ\u00e9tica", "alternativeName": "umpe", "country": "co", "url": "https://www1.upme.gov.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://bdigital.upme.gov.co yes +9446 {"name": "austrian platform for research and technology policy evaluation", "language": "en"} [{"acronym": "fteval"}, {"name": "\u00f6sterreichischen plattform f\u00fcr forschungs und technologiepolitikevaluierung\"", "language": "de"}, {"acronym": "fteval"}] https://repository.fteval.at disciplinary [] 2022-01-12 15:36:30 2019-11-12 21:20:48 ["technology"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "austrian platform for research and technology policy evaluation", "alternativeName": "", "country": "at", "url": "https://www.fteval.at", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://repository.fteval.at/cgi/oai2 yes +9498 {"name": "repositorio institucional - corporaci\u00f3n universitaria iberoamericana", "language": "es"} [{"acronym": "repositorio institucional - ibero"}] http://repositorio.iberoamericana.edu.co institutional [] 2021-05-21 18:04:10 2020-01-23 09:40:23 [] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "corporaci\u00f3n universitaria iberoamericana", "alternativeName": "ibero", "country": "co", "url": "https://www.ibero.edu.co", "identifier": [{"identifier": "https://ror.org/04331z002", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.iberoamericana.edu.co/oai/request yes +9497 {"name": "hochschulrepositoriumimwesten", "language": "de"} [{"acronym": "hrw"}] https://repositorium.hs-ruhrwest.de institutional [] 2020-01-23 09:20:41 2020-01-23 09:18:26 [] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hochschule ruhr west", "alternativeName": "hrw", "country": "de", "url": "https://www.hochschule-ruhr-west.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://repositorium.hs-ruhrwest.de/oai yes +9619 {"name": "kristiania open archive", "language": "en"} [] https://kristiania.brage.unit.no institutional [] 2022-01-12 15:36:32 2020-05-11 10:25:38 ["arts", "humanities", "health and medicine", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "kristiania university college", "alternativeName": "", "country": "no", "url": "https://www.kristiania.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://kristiania.brage.unit.no/kristiania-oai/request yes +9522 {"name": "ici berlin repository", "language": "en"} [] https://oa.ici-berlin.org/repository institutional [] 2022-01-12 15:36:31 2020-02-19 09:11:30 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "ici berlin institute for cultural inquiry", "alternativeName": "ici berlin", "country": "de", "url": "https://www.ici-berlin.org", "identifier": [{"identifier": "https://ror.org/01fcbp662", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.ici-berlin.org/oa/policy.html", "type": "metadata"}, {"policy_url": "https://www.ici-berlin.org/oa/policy.html", "type": "data"}, {"policy_url": "https://www.ici-berlin.org/oa/policy.html", "type": "content"}, {"policy_url": "https://www.ici-berlin.org/oa/policy.html", "type": "submission"}, {"policy_url": "https://www.ici-berlin.org/oa/policy.html", "type": "preservation"}] {"name": "", "version": ""} https://oa.ici-berlin.org/oai yes +9625 {"name": "humadoc repositorio", "language": "es"} [] http://humadoc.mdp.edu.ar institutional [] 2022-01-12 15:36:32 2020-05-14 08:48:50 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "facultad de humanidades (universidad nacional de mar del plata)", "alternativeName": "", "country": "ar", "url": "https://humanidades.mdp.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://humadoc.mdp.edu.ar:8080/oai/request yes +9654 {"name": "trinity laban research online", "language": ""} [] https://researchonline.trinitylaban.ac.uk institutional [] 2022-01-12 15:36:32 2020-06-10 12:34:41 ["arts", "humanities"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "trinity laban conservatoire of music & dance", "alternativeName": "", "country": "gb", "url": "https://www.trinitylaban.ac.uk", "identifier": [{"identifier": "https://ror.org/01gx2kf62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9675 {"name": "a resource centre for the humanities", "language": "en"} [{"acronym": "arche"}] https://arche.acdh.oeaw.ac.at disciplinary [] 2022-01-12 15:36:32 2020-06-23 08:39:22 ["arts", "humanities"] ["datasets"] [{"name": "austrian centre for digital humanities and cultural heritage", "alternativeName": "acdh-ch", "country": "at", "url": "https://www.oeaw.ac.at/acdh", "identifier": [{"identifier": "https://ror.org/028bsh698", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://arche.acdh.oeaw.ac.at/browser/deposition-agreement", "type": "metadata"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/terms-of-use", "type": "metadata"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/terms-of-use", "type": "data"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/collection-policy", "type": "content"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/collection-policy", "type": "submission"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/deposition-agreement", "type": "submission"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/preservation-policy", "type": "preservation"}, {"policy_url": "https://arche.acdh.oeaw.ac.at/browser/deposition-agreement", "type": "preservation"}] {"name": "other", "version": ""} https://arche.acdh.oeaw.ac.at/oai yes +9526 {"name": "pub.mdw - open access publication server", "language": "en"} [] https://pub.mdw.ac.at institutional [] 2022-01-12 15:36:31 2020-02-21 10:44:06 ["arts", "science", "technology", "engineering", "mathematics", "health and medicine", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "university of music and performing arts vienna", "alternativeName": "mdw", "country": "at", "url": "https://www.mdw.ac.at", "identifier": [{"identifier": "https://ror.org/000ymgt65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://pub.mdw.ac.at/cgi-bin/oai-xmlfile-2.21/xmlfile/pub.mdw/oai.pl yes +9564 {"name": "tate research repository", "language": "en"} [] https://tate.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-12 08:11:46 ["arts"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "tate", "alternativeName": "", "country": "gb", "url": "https://www.tate.org.uk", "identifier": [{"identifier": "https://ror.org/04s55st49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://tate.iro.bl.uk/help", "type": "data"}, {"policy_url": "https://tate.iro.bl.uk/help", "type": "content"}, {"policy_url": "https://tate.iro.bl.uk/help", "type": "submission"}] {"name": "samvera", "version": ""} https://tate.iro.bl.uk/catalog/oai yes +9524 {"name": "engineering archive", "language": "en"} [{"acronym": "engrxiv"}] https://www.engrxiv.org disciplinary [] 2022-01-12 15:36:31 2020-02-19 09:33:25 ["engineering", "technology"] ["journal_articles"] [{"name": "open engineering inc", "alternativeName": "", "country": "us", "url": "https://www.openengr.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://blog.engrxiv.org/guidelines", "type": "submission"}, {"policy_url": "https://blog.engrxiv.org/guidelines", "type": "preservation"}] {"name": "other", "version": ""} yes +9594 {"name": "brage - statens vegvesen", "language": "no"} [] https://vegvesen.brage.unit.no institutional [] 2022-01-12 15:36:31 2020-04-09 14:01:02 ["engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "the norwegian public roads administration", "alternativeName": "", "country": "no", "url": "https://www.vegvesen.no", "identifier": [{"identifier": "https://ror.org/009kqch10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://vegvesen.brage.unit.no/vegvesen-oai yes +9523 {"name": "repositorio institucional osiptel", "language": "es"} [] https://repositorio.osiptel.gob.pe institutional [] 2022-01-12 15:36:31 2020-02-19 09:24:28 ["engineering"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "organismo supervisor de inversi\u00f3n privada en telecomunicaciones", "alternativeName": "osiptel", "country": "pe", "url": "https://www.osiptel.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.osiptel.gob.pe/oai/request yes +9595 {"name": "repository of faculty of mechanical engineering and naval architecture university of zagreb", "language": "en"} [{"name": "repozitorij fakulteta strojarstva i brodogradnje sveu\u010dili\u0161ta u zagrebu", "language": "hr"}] https://repozitorij.fsb.unizg.hr institutional [] 2022-01-12 15:36:31 2020-04-09 14:07:15 ["engineering"] ["theses_and_dissertations"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://www.fsb.unizg.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fsb.unizg.hr/oai yes +9534 {"name": "sakarya \u00fcniversitesi kurumsal a\u00e7\u0131k akademik ar\u015fivi", "language": "tr"} [] https://acikerisim.sakarya.edu.tr institutional [] 2022-01-12 15:36:31 2020-02-28 09:08:58 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles"] [{"name": "sakarya \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.sakarya.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.sakarya.edu.tr/oai/request yes +9604 {"name": "repository of croatian defence academy \"dr. franjo tu\u0111man\"", "language": "en"} [{"name": "repozitorij hrvatskog vojnog u\u010dili\u0161ta \"dr. franjo tu\u0111man\"", "language": "hr"}] https://repozitorij.vojni.unizg.hr institutional [] 2022-01-12 15:36:32 2020-04-15 13:04:37 ["health and medicine", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vojni.unizg.hr/oai yes +9646 {"name": "kapadokya university institutional repository", "language": "en"} [{"acronym": "dspace@kapadokya"}, {"name": "kapadokya \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@kapadokya"}] http://acikerisim.kapadokya.edu.tr institutional [] 2022-01-12 15:36:32 2020-06-02 09:06:08 ["health and medicine", "science"] ["journal_articles"] [{"name": "kapadokya university", "alternativeName": "", "country": "tr", "url": "https://www.kapadokya.edu.tr", "identifier": [{"identifier": "https://ror.org/01zx17h33", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.kapadokya.edu.tr/oai/request yes +9535 {"name": "sistema de gesti\u00f3n del conocimiento anlis malbr\u00e1n", "language": "es"} [{"acronym": "(sgc-anlis"}] http://sgc.anlis.gob.ar institutional [] 2022-01-12 15:36:31 2020-03-03 10:06:41 ["health and medicine", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "administraci\u00f3n nacional de laboratorios e institutos de salud \u201cdr. carlos g. malbr\u00e1n\u201d", "alternativeName": "anlis", "country": "ar", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://sgc.anlis.gob.ar/oai/request yes +9658 {"name": "repositorio digital de la fundaci\u00f3n universitaria de ciencias de la salud", "language": "es"} [{"acronym": "repositorio institucional de la fucs"}] https://repositorio.fucsalud.edu.co institutional [] 2022-01-12 15:36:32 2020-06-11 08:49:17 ["health and medicine"] ["theses_and_dissertations"] [{"name": "fundaci\u00f3n universitaria de ciencias de la salud", "alternativeName": "fucs", "country": "co", "url": "https://www.fucsalud.edu.co", "identifier": [{"identifier": "https://ror.org/02yr3f298", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.fucsalud.edu.co/oai/request yes +9617 {"name": "omsorgsbiblioteket", "language": "no"} [] https://omsorgsforskning.brage.unit.no institutional [] 2022-01-12 15:36:32 2020-05-07 13:15:46 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "senter for omsorgsforskning", "alternativeName": "", "country": "no", "url": "https://www.omsorgsforskning.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://omsorgsforskning.brage.unit.no/omsorgsforskning-oai/request yes +9530 {"name": "runa - repositorio de sa\u00fade", "language": "gl"} [] https://runa.sergas.gal institutional [] 2022-01-12 15:36:31 2020-02-25 08:49:10 ["health and medicine"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "servicio gallego de salud", "alternativeName": "sergas", "country": "es", "url": "https://www.sergas.es", "identifier": [{"identifier": "https://ror.org/0591s4t67", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://runa.sergas.gal/oai/request yes +9546 {"name": "repositorio digital del hospital el cruce", "language": "es"} [] https://repositorio.hospitalelcruce.org institutional [] 2022-01-12 15:36:31 2020-03-03 11:14:13 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "hospital de alta complejidad en red el cruce dr. n\u00e9stor c. kirchne", "alternativeName": "", "country": "ar", "url": "https://www.hospitalelcruce.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.hospitalelcruce.org/oai/request yes +9651 {"name": "bezmialem vakif university academic open access system", "language": "en"} [{"acronym": "institutional academic archive"}, {"name": "bezmialem vak\u0131f \u00fcniversitesinin akademik a\u00e7\u0131k eri\u015fim sistemidir", "language": "tr"}, {"acronym": "kurumsal akademik ar\u015fiv"}] https://openaccess.bezmialem.edu.tr institutional [] 2022-01-12 15:36:32 2020-06-04 08:30:23 ["health and medicine"] ["journal_articles"] [{"name": "bezmialem vakif university", "alternativeName": "", "country": "tr", "url": "https://bezmialem.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +9581 {"name": "repository university hospital centre osijek", "language": "en"} [{"acronym": "repository uhc osijek"}, {"name": "repozitorij klini\u010dkoga bolni\u010dkog centra osijek", "language": "hr"}, {"acronym": "repozitorij kbc osijek"}] https://repozitorij.kbco.hr institutional [] 2022-01-12 15:36:31 2020-04-03 08:07:39 ["health and medicine"] ["journal_articles"] [{"name": "university hospital centre osijek", "alternativeName": "uhc", "country": "hr", "url": "http://www.kbco.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kbco.hr/oai yes +9605 {"name": "repository of the university of rijeka, faculty of health studies", "language": "en"} [{"name": "repozitorij fakulteta zdravstvenih studija", "language": "hr"}] https://repository.fzsri.uniri.hr institutional [] 2022-01-12 15:36:32 2020-04-15 13:30:06 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "uniri", "country": "hr", "url": "https://www.uniri.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.fzsri.uniri.hr/oai yes +9569 {"name": "national museums scotland research repository", "language": "en"} [] https://nms.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-16 15:13:17 ["humanities", "science", "technology", "engineering", "mathematics", "health and medicine", "arts", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national museums scotland", "alternativeName": "", "country": "gb", "url": "https://www.nms.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://nms.iro.bl.uk/help", "type": "content"}, {"policy_url": "https://nms.iro.bl.uk/help", "type": "submission"}] {"name": "samvera", "version": ""} https://nms.iro.bl.uk/catalog/oai yes +9528 {"name": "repositorio institucional hist\u00f3ricas - unam", "language": "es"} [] http://ru.historicas.unam.mx institutional [] 2022-01-12 15:36:31 2020-02-25 08:36:10 ["humanities", "technology"] ["journal_articles", "other_special_item_types"] [{"name": "unam", "alternativeName": "instituto de investigaciones hist\u00f3ricas", "country": "mx", "url": "http://www.historicas.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ru.historicas.unam.mx/oai/request yes +9563 {"name": "british museum research repository", "language": "en"} [] https://britishmuseum.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-11 17:48:13 ["humanities"] ["journal_articles", "books_chapters_and_sections", "datasets"] [{"name": "british museum", "alternativeName": "", "country": "gb", "url": "https://www.britishmuseum.org", "identifier": [{"identifier": "https://ror.org/00pbh0a34", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://britishmuseum.iro.bl.uk/help", "type": "data"}, {"policy_url": "https://britishmuseum.iro.bl.uk/help", "type": "content"}, {"policy_url": "https://britishmuseum.iro.bl.uk/help", "type": "submission"}] {"name": "samvera", "version": ""} https://britishmuseum.iro.bl.uk/catalog/oai yes +9562 {"name": "mola research repository", "language": "en"} [] https://mola.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-11 17:25:23 ["humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "museum of london archaeology", "alternativeName": "mola", "country": "gb", "url": "https://www.mola.org.uk", "identifier": [{"identifier": "https://ror.org/01qedwh63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://mola.iro.bl.uk/help", "type": "data"}, {"policy_url": "https://mola.iro.bl.uk/help", "type": "content"}, {"policy_url": "https://mola.iro.bl.uk/help", "type": "submission"}] {"name": "samvera", "version": ""} https://mola.iro.bl.uk/catalog/oai yes +9639 {"name": "repository of the institute for contemporary history", "language": "en"} [{"acronym": "risi"}, {"name": "repozitorijum instituta za savremenu istoriju", "language": "sr"}, {"acronym": "risi"}] https://risi.unilib.rs institutional [] 2022-01-12 15:36:32 2020-06-01 10:48:05 ["humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute for contemporary history", "alternativeName": "", "country": "rs", "url": "https://isi.co.rs", "identifier": [{"identifier": "https://ror.org/01y6sx232", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://risi.unilib.rs/oai2 yes +9666 {"name": "mediateca inah", "language": "es"} [] http://mediateca.inah.gob.mx institutional [] 2022-01-12 15:36:32 2020-06-18 08:58:21 ["humanities"] ["journal_articles", "theses_and_dissertations"] [{"name": "inah", "alternativeName": "instituto nacional de antropolog\u00eda e historia", "country": "mx", "url": "http://www.inah.gob.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} http://mediateca.inah.gob.mx/islandora_74/oai2 yes +9638 {"name": "kms of academy of mathematics and systems sciences, cas", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6570\u5b66\u4e0e\u7cfb\u7edf\u79d1\u5b66\u7814\u7a76\u9662\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.amss.ac.cn institutional [] 2022-01-12 15:36:32 2020-05-29 15:09:40 ["mathematics"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "kms of academy of mathematics and systems sciences, cas", "alternativeName": "", "country": "cn", "url": "http://www.amss.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9531 {"name": "techrxiv", "language": "en"} [] https://www.techrxiv.org disciplinary [] 2022-01-12 15:36:31 2020-02-25 09:00:31 ["science", "engineering", "technology"] ["journal_articles"] [{"name": "ieee", "alternativeName": "institute of electrical and electronics engineers", "country": "us", "url": "https://www.ieee.org", "identifier": [{"identifier": "https://ror.org/034kz8m70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9623 {"name": "repositorio utb", "language": "es"} [] http://repositorio.utb.edu.co institutional [] 2022-01-12 15:36:32 2020-05-11 12:46:19 ["science", "social sciences", "technology"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad tecnol\u00f3gica de bol\u00edvar", "alternativeName": "", "country": "co", "url": "https://www.utb.edu.co", "identifier": [{"identifier": "https://ror.org/01d171k92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.utb.edu.co/oai/request yes +9590 {"name": "digital repository of the university of applied sciences baltazar zapre\u0161i\u0107", "language": "en"} [{"name": "digitalni repozitorij veleu\u010dili\u0161ta baltazar zapre\u0161i\u0107", "language": "hr"}] https://repozitorij.bak.hr institutional [] 2022-01-12 15:36:31 2020-04-08 08:16:31 ["science", "social sciences"] ["theses_and_dissertations"] [{"name": "university of applied sciences baltazar zapresic", "alternativeName": "", "country": "hr", "url": "https://www.bak.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.bak.hr/oai yes +9567 {"name": "british library research repository", "language": "en"} [] https://bl.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-13 14:46:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "the british library", "alternativeName": "", "country": "gb", "url": "https://www.bl.uk", "identifier": [{"identifier": "https://ror.org/05dhe8b71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://bl.iro.bl.uk/help", "type": "content"}, {"policy_url": "https://bl.iro.bl.uk/help", "type": "submission"}] {"name": "samvera", "version": ""} https://bl.iro.bl.uk/catalog/oai yes +9626 {"name": "bulgarian portal for open science", "language": "en"} [{"acronym": "bpos"}, {"name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u043f\u043e\u0440\u0442\u0430\u043b \u0437\u0430 \u043e\u0442\u0432\u043e\u0440\u0435\u043d\u0430 \u043d\u0430\u0443\u043a\u0430", "language": "bg"}, {"acronym": "bpos"}] https://bpos.bg governmental [] 2022-01-12 15:36:32 2020-05-14 08:59:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "national centre for information and documentation", "alternativeName": "nacid", "country": "bg", "url": "https://nacid.bg", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://pub.bpos.bg/oai/request yes +9645 {"name": "knowledge commons of national science library, cas", "language": "en"} [{"acronym": "nsl openir"}, {"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6587\u732e\u60c5\u62a5\u4e2d\u5fc3\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.las.ac.cn institutional [] 2022-01-12 15:36:32 2020-06-01 16:08:15 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "knowledge commons of national science library, cas", "alternativeName": "knowledge commons of national science library, chinese academy of sciences", "country": "cn", "url": "http://www.las.ac.cn", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9652 {"name": "botswana international university of science and technology repository", "language": "en"} [{"acronym": "biustre"}] http://repository.biust.ac.bw/ institutional [] 2022-01-12 15:36:32 2020-06-04 08:37:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "biust", "alternativeName": "botswana international university of science and technology", "country": "bw", "url": "https://www.biust.ac.bw", "identifier": [{"identifier": "https://ror.org/04cr2sq58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9647 {"name": "giresun university institutional repository", "language": "en"} [{"acronym": "dspace@giresun"}, {"name": "giresun \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@giresun"}] http://acikerisim.giresun.edu.tr institutional [] 2022-01-12 15:36:32 2020-06-02 09:14:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "giresun university", "alternativeName": "", "country": "tr", "url": "https://www.giresun.edu.tr", "identifier": [{"identifier": "https://ror.org/05szaq822", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.giresun.edu.tr/oai/request yes +9656 {"name": "mu\u015f alparslan university institutional repository", "language": "en"} [{"acronym": "dspace@m\u015fu"}, {"name": "mu\u015f alparslan \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@m\u015fu"}] http://akademikarsiv.alparslan.edu.tr institutional [] 2022-01-12 15:36:32 2020-06-10 13:19:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "mu\u015f alparslan university", "alternativeName": "", "country": "tr", "url": "http://www.alparslan.edu.tr/", "identifier": [{"identifier": "https://ror.org/009axq942", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://akademikarsiv.alparslan.edu.tr/oai/request yes +9650 {"name": "reposit\u00f3rio institucional da universidade federal de rond\u00f4nia", "language": "pt"} [{"acronym": "riunir"}] http://ri.unir.br/jspui/ institutional [] 2022-01-12 15:36:32 2020-06-03 08:47:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "unir", "alternativeName": "funda\u00e7\u00e3o universidade federal de rond\u00f4nia", "country": "br", "url": "https://www.unir.br", "identifier": [{"identifier": "https://ror.org/02842cb31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9661 {"name": "repositorio institucional del indecopi", "language": "es"} [{"acronym": "repositorio indecopi"}] http://repositorio.indecopi.gob.pe governmental [] 2022-01-12 15:36:32 2020-06-16 09:59:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "instituto nacional de defensa de la competencia y de la protecci\u00f3n de la propiedad intelectual", "alternativeName": "indecopi", "country": "pe", "url": "http://www.indecopi.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.indecopi.gob.pe/oai/request yes +9672 {"name": "repositorio digital universidad ecci", "language": "es"} [] https://repositorio.ecci.edu.co institutional [] 2022-01-12 15:36:32 2020-06-22 13:04:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad ecci", "alternativeName": "", "country": "co", "url": "https://www.ecci.edu.co", "identifier": [{"identifier": "https://ror.org/01vf7gd47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ecci.edu.co/oai/request yes +9662 {"name": "repositorio universidad de lambayeque", "language": "es"} [] http://repositorio.udl.edu.pe institutional [] 2022-01-12 15:36:32 2020-06-16 10:05:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad de lambayeque", "alternativeName": "", "country": "pe", "url": "http://www.udl.edu.pe", "identifier": [{"identifier": "https://ror.org/05akw7810", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udl.edu.pe/oai/request yes +9572 {"name": "benue state university institutional repository", "language": ""} [] http://bsuir.bsum.edu.ng institutional [] 2022-01-12 15:36:31 2020-03-20 15:36:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "benue state university", "alternativeName": "", "country": "", "url": "https://www.bsum.edu.ng", "identifier": [{"identifier": "https://ror.org/04hfv3620", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://bsuir.bsum.edu.ng:8080/oai/request yes +9573 {"name": "caxcan repositorio institucional de la universidad aut\u00f3noma de zacatecas", "language": "es"} [] http://ricaxcan.uaz.edu.mx institutional [] 2022-01-12 15:36:31 2020-03-24 09:08:42 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad aut\u00f3noma de zacatecas", "alternativeName": "", "country": "mx", "url": "https://www.uaz.edu.mx", "identifier": [{"identifier": "https://ror.org/01m296r74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ricaxcan.uaz.edu.mx/oai/request yes +9674 {"name": "entrep\u00f4t num\u00e9rique de luniversit\u00e9 dalger 2", "language": "fr"} [{"name": "\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u062c\u0632\u0627\u0626\u0631 2 \u0623\u0628\u0648 \u0627\u0644\u0642\u0627\u0633\u0645 \u0633\u0639\u062f \u0627\u0644\u0644\u0647", "language": "ar"}] http://193.194.83.152:8080/xmlui institutional [] 2022-01-12 15:36:32 2020-06-23 08:27:07 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universit\u00e9 dalger 2 abou elkacem saadallah", "alternativeName": "", "country": "dz", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://193.194.83.152:8080/oai/request yes +9663 {"name": "repositorio - fundaci\u00f3n universitaria konrad lorenz", "language": "es"} [] https://repositorio.konradlorenz.edu.co institutional [] 2022-01-12 15:36:32 2020-06-18 08:31:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections", "learning_objects"] [{"name": "fundaci\u00f3n universitaria konrad lorenz", "alternativeName": "", "country": "co", "url": "http://www.konradlorenz.edu.co", "identifier": [{"identifier": "https://ror.org/03ca7a577", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.konradlorenz.edu.co/oai/request yes +9549 {"name": "repositorio institucional cetys", "language": "es"} [] https://repositorio.cetys.mx institutional [] 2022-01-12 15:36:31 2020-03-05 08:24:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "cetys universidad", "alternativeName": "", "country": "mx", "url": "https://www.cetys.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.cetys.mx/oai/request yes +9579 {"name": "repositorio institucional de la universidad nacional de san mart\u00edn", "language": "es"} [] http://ri.unsam.edu.ar institutional [] 2022-01-12 15:36:31 2020-03-31 07:39:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de san mart\u00edn", "alternativeName": "", "country": "ar", "url": "http://unsam.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ri.unsam.edu.ar/oai/request yes +9622 {"name": "reposit\u00f3rio ifpe", "language": "pt"} [] https://repositorio.ifpe.edu.br institutional [] 2022-01-12 15:36:32 2020-05-11 12:32:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "ifpe", "alternativeName": "instituto federal de pernambuco", "country": "br", "url": "https://portal.ifpe.edu.br/", "identifier": [{"identifier": "https://ror.org/02y7zaj23", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ifpe.edu.br/oai/request yes +9541 {"name": "i\u0307stanbul \u00fcniversitesi a\u00e7\u0131k eri\u015fim sistemi", "language": "tr"} [] http://acikerisim.istanbul.edu.tr institutional [] 2022-01-12 15:36:31 2020-03-03 10:47:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "istanbul university", "alternativeName": "", "country": "tr", "url": "https://kutuphane.istanbul.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.istanbul.edu.tr/oai/request yes +9565 {"name": "institutional repository polinema", "language": "en"} [] http://repository.polinema.ac.id institutional [] 2022-01-12 15:36:31 2020-03-12 08:42:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "state polytechnic of malang", "alternativeName": "", "country": "id", "url": "https://www.polinema.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.polinema.ac.id/cgi/oai2 yes +9525 {"name": "repositorio institucional de uraccan", "language": "es"} [] http://repositorio.uraccan.edu.ni institutional [] 2022-01-12 15:36:31 2020-02-20 07:18:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "universidad uraccan", "alternativeName": "universidad de las regiones aut\u00f3nomas de la costa caribe nicarag\u00fcense", "country": "ni", "url": "http://www.uraccan.edu.ni", "identifier": [{"identifier": "https://ror.org/005vzbh90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositorio.uraccan.edu.ni/cgi/oai2 yes +9642 {"name": "reposit\u00f3rio febab", "language": "pt"} [] http://repositorio.febab.org.br aggregating [] 2022-01-12 15:36:32 2020-06-01 12:33:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "federa\u00e7\u00e3o brasileira de associa\u00e7\u00f5es de bibliotec\u00e1rios, cientistas de informa\u00e7\u00e3o e institui\u00e7\u00f5es", "alternativeName": "febab", "country": "br", "url": "http://www.febab.org.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://repositorio.febab.org.br/oai-pmh-repository/request yes +9608 {"name": "universidad del aconcagua - repositorio institucional", "language": "es"} [] http://bibliotecadigital.uda.edu.ar institutional [] 2022-01-12 15:36:32 2020-04-17 08:27:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad del aconcagua", "alternativeName": "", "country": "ar", "url": "https://www.uda.edu.ar", "identifier": [{"identifier": "https://ror.org/03dr5vm44", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://bibliotecadigital.uda.edu.ar/oai yes +9643 {"name": "research data repository of the leibniz university of hannover", "language": "en"} [] https://data.uni-hannover.de institutional [] 2022-01-12 15:36:32 2020-06-01 12:46:50 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "leibniz university hannover", "alternativeName": "", "country": "de", "url": "https://www.uni-hannover.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9580 {"name": "university of northamptons research explorer", "language": "en"} [] https://pure.northampton.ac.uk institutional [] 2022-01-12 15:36:31 2020-04-03 07:54:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "datasets"] [{"name": "university of northampton", "alternativeName": "", "country": "gb", "url": "https://www.northampton.ac.uk", "identifier": [{"identifier": "https://ror.org/04jp2hx10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.northampton.ac.uk/ws/oai yes +9593 {"name": "universty of zagreb archives", "language": "en"} [{"acronym": "unizg archives"}, {"name": "arhiv sveu\u010dili\u0161ta u zagrebu", "language": "hr"}, {"acronym": "sveu\u010dili\u0161ni arhiv"}] https://arhiv.unizg.hr institutional [] 2022-01-12 15:36:31 2020-04-09 13:51:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of zagreb", "alternativeName": "", "country": "hr", "url": "https://arhiv.unizg.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://arhiv.unizg.hr/oai yes +9588 {"name": "national and university library in zagreb repository", "language": "en"} [{"name": "repozitorij nacionalne i sveu\u010dili\u0161ne knji\u017enice u zagrebu", "language": "hr"}] https://repozitorij.nsk.hr institutional [] 2022-01-12 15:36:31 2020-04-07 08:40:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "national and university library in zagreb", "alternativeName": "", "country": "hr", "url": "https://www.nsk.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.nsk.hr/oai yes +9596 {"name": "polytechnic \"marko marulic\u201d in knin", "language": "en"} [{"name": "veleu\u010dili\u0161te \"marko maruli\u0107\" u kninu", "language": "hr"}] https://repozitorij.veleknin.hr institutional [] 2022-01-12 15:36:31 2020-04-09 14:16:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "polytechnic marko marulic knin", "alternativeName": "", "country": "hr", "url": "https://www.veleknin.hr", "identifier": [{"identifier": "https://ror.org/0163r0829", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.veleknin.hr/oai yes +9597 {"name": "repository of doctoral school, josip juraj strossmayer university in osijek", "language": "en"} [{"name": "repozitorij doktorske \u0161kole sveu\u010dili\u0161ta josipa jurja u osijeku", "language": "hr"}] https://repozitorij.ds.unios.hr institutional [] 2022-01-12 15:36:32 2020-04-09 14:20:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "josip juraj strossmayer university in osijek", "alternativeName": "", "country": "hr", "url": "http://www.unios.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.ds.unios.hr/oai yes +9521 {"name": "repositorio indicasat aip", "language": "es"} [] http://repositorio-indicasat.org.pa institutional [] 2022-01-12 15:36:31 2020-02-19 08:50:16 ["science", "technology"] ["journal_articles"] [{"name": "indicasat", "alternativeName": "institute for scientific research and technology services", "country": "pa", "url": "http://indicasat.org.pa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio-indicasat.org.pa/oai/request yes +9631 {"name": "oskar bordeaux", "language": "fr"} [] https://oskar-bordeaux.fr institutional [] 2022-01-12 15:36:32 2020-05-21 10:54:26 ["science", "technology"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 de bordeaux", "alternativeName": "", "country": "fr", "url": "https://www.u-bordeaux.com", "identifier": [{"identifier": "https://ror.org/057qpr032", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://oskar-bordeaux.fr/oai/request yes +9550 {"name": "usthb repository", "language": "en"} [] http://repository.usthb.dz institutional [] 2022-01-12 15:36:31 2020-03-05 08:46:01 ["science", "technology"] ["theses_and_dissertations"] [{"name": "universit\u00e9 des sciences et de la technologie houari boumediene", "alternativeName": "usthb", "country": "dz", "url": "https://www.usthb.dz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.usthb.dz/oai/request yes +9532 {"name": "aircraft design and systems group (aero) @ hamburg university of applied sciences - prof. dr. scholz", "language": "en"} [{"acronym": "reports @ aero"}] http://repository.profscholz.de institutional [] 2022-01-12 15:36:31 2020-02-27 08:10:18 ["science", "technology"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "aircraft design and systems group", "alternativeName": "aero", "country": "de", "url": "http://aero.profscholz.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorypolicies.profscholz.de", "type": "metadata"}, {"policy_url": "http://repositorypolicies.profscholz.de", "type": "data"}, {"policy_url": "http://repositorypolicies.profscholz.de", "type": "content"}, {"policy_url": "http://repositorypolicies.profscholz.de", "type": "submission"}, {"policy_url": "http://repositorypolicies.profscholz.de", "type": "preservation"}] {"name": "other", "version": ""} http://oaigateway.library.ucla.edu/gatewaynet/oai.aspx/www.fzt.haw-hamburg.de/pers/scholz/repository1.xml yes +9677 {"name": "veterinar \u2013 repository of the faculty of veterinary medicine, university of belgrade", "language": "en"} [{"name": "veterinar - repozitorijum fakulteta veterinarske medicine", "language": "sr"}] http://vet-erinar.vet.bg.ac.rs institutional [] 2022-01-12 15:36:32 2020-06-23 09:38:44 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://vet-erinar.vet.bg.ac.rs/files/policy-veterinar-en.html", "type": "metadata"}, {"policy_url": "http://vet-erinar.vet.bg.ac.rs/files/policy-veterinar-en.html", "type": "data"}, {"policy_url": "http://vet-erinar.vet.bg.ac.rs/files/policy-veterinar-en.html", "type": "content"}, {"policy_url": "http://vet-erinar.vet.bg.ac.rs/files/policy-veterinar-en.html", "type": "submission"}, {"policy_url": "http://vet-erinar.vet.bg.ac.rs/files/policy-veterinar-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://vet-erinar.vet.bg.ac.rs/oai/request yes +9554 {"name": "repositorio institucional \u2013 biblioteca digital", "language": "es"} [{"acronym": "inta digital"}] https://repositorio.inta.gob.ar governmental [] 2022-01-12 15:36:31 2020-03-09 21:55:17 ["science"] ["journal_articles"] [{"name": "inta", "alternativeName": "instituto nacional de tecnolog\u00eda agropecuaria", "country": "ar", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.inta.gob.ar/oai/request yes +9612 {"name": "csir-ncl digital repository", "language": "en"} [] https://dspace.ncl.res.in/oai/request institutional [] 2022-01-12 15:36:32 2020-04-29 07:56:33 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "csir-national chemical laboratory", "alternativeName": "", "country": "in", "url": "http://ncl-india.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.ncl.res.in yes +9671 {"name": "repositorio institucional del catie", "language": "es"} [] http://repositorio.bibliotecaorton.catie.ac.cr institutional [] 2022-01-12 15:36:32 2020-06-22 12:11:58 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "catie", "alternativeName": "centro agron\u00f3mico tropical de investigaci\u00f3n y ense\u00f1anza", "country": "cr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.bibliotecaorton.catie.ac.cr/oai/request yes +9641 {"name": "repositorio institucional del iica", "language": "es"} [] https://repositorio.iica.int institutional [] 2022-01-12 15:36:32 2020-06-01 12:19:50 ["science"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "instituto interamericano de cooperaci\u00f3n para la agricultura", "alternativeName": "iica", "country": "cr", "url": "https://www.iica.int", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.iica.int/oai/request yes +9598 {"name": "icipe digital repository", "language": "en"} [] http://34.250.91.188:8080/xmlui/ institutional [] 2022-01-12 15:36:32 2020-04-14 08:20:57 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "international centre of insect physiology & ecology", "alternativeName": "icipe", "country": "ke", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://34.250.91.188:8080/oai/request yes +9649 {"name": "eprints imdea water institute", "language": ""} [] http://eprints.imdea-agua.org:13000/ institutional [] 2022-01-12 15:36:32 2020-06-03 08:00:19 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "imdea water institute", "alternativeName": "", "country": "es", "url": "https://www.water.imdea.org", "identifier": [{"identifier": "https://ror.org/04rhps755", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.imdea-agua.org:13000/cgi/oai2 yes +9676 {"name": "institutional repository of nature research centre", "language": "en"} [] https://vb.gamtc.lt/repository institutional [] 2022-01-12 15:36:32 2020-06-23 09:29:27 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "nature research centre", "alternativeName": "nrc", "country": "lt", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vb.gamtc.lt/oai yes +9629 {"name": "knowledge commons of national science library", "language": "en"} [{"acronym": "cas"}, {"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6587\u732e\u60c5\u62a5\u4e2d\u5fc3\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.las.ac.cn governmental [] 2022-01-12 15:36:32 2020-05-21 09:54:57 ["science"] ["conference_and_workshop_papers"] [{"name": "knowledge commons of national science library", "alternativeName": "cas", "country": "cn", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9635 {"name": "knowledge management system of shanghai institute of materia medica, cas", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u4e0a\u6d77\u836f\u7269\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://119.78.100.183 institutional [] 2022-01-12 15:36:32 2020-05-29 14:00:33 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "patents"] [{"name": "knowledge management system of shanghai institute of materia medica, cas", "alternativeName": "", "country": "cn", "url": "http://www.simm.ac.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9634 {"name": "kms qingdao institute of biomass energy and bioprocess technology, cas", "language": "zh"} [] http://ir.qibebt.ac.cn/ institutional [] 2022-01-12 15:36:32 2020-05-29 11:26:29 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents"] [{"name": "kms qingdao institute of biomass energy and bioprocess technology, cas", "alternativeName": "", "country": "cn", "url": "http://www.qibebt.cas.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9636 {"name": "knowledge management system of institute of deep-sea science and engineering,cas", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6df1\u6d77\u79d1\u5b66\u4e0e\u5de5\u7a0b\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://124.16.219.133 institutional [] 2022-01-12 15:36:32 2020-05-29 14:43:43 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents"] [{"name": "knowledge management system of institute of deep-sea science and engineering,cas", "alternativeName": "", "country": "cn", "url": "http://www.idsse.cas.cn/", "identifier": [{"identifier": "https://ror.org/050spgz68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9561 {"name": "royal botanic gardens, kew research repository", "language": "en"} [] https://kew.iro.bl.uk institutional [] 2022-01-12 15:36:31 2020-03-11 17:11:29 ["science"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "royal botanic gardens kew", "alternativeName": "", "country": "gb", "url": "https://www.kew.org", "identifier": [{"identifier": "https://ror.org/00ynnr806", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "samvera", "version": ""} https://kew.iro.bl.uk/catalog/oai yes +9589 {"name": "repository of the university of rijeka, department of physics", "language": "en"} [{"acronym": "phyri repository"}, {"name": "repozitorij odjela za fiziku sveu\u010dili\u0161ta u rijeci", "language": "hr"}, {"acronym": "repozitorij phyri"}] https://repository.phy.uniri.hr institutional [] 2022-01-12 15:36:31 2020-04-08 08:11:48 ["science"] ["theses_and_dissertations"] [{"name": "university of rijeka", "alternativeName": "", "country": "hr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repository.phy.uniri.hr/oai yes +9583 {"name": "meteorological and hydrological service of croatia repository", "language": "en"} [{"name": "repozitorij dr\u017eavnog hidrometeorolo\u0161kog zavoda", "language": "hr"}] https://repozitorij.meteo.hr institutional [] 2022-01-12 15:36:31 2020-04-03 08:28:33 ["science"] ["theses_and_dissertations"] [{"name": "croatian meteorological and hydrological service", "alternativeName": "", "country": "hr", "url": "https://meteo.hr", "identifier": [{"identifier": "https://ror.org/02w95hf30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.meteo.hr/oai yes +9606 {"name": "repository of the croatian geological survey", "language": "en"} [{"name": "repozitorij hrvatskog geolo\u0161kog instituta", "language": "hr"}] https://repozitorij.hgi-cgs.hr institutional [] 2022-01-12 15:36:32 2020-04-15 14:05:53 ["science"] ["conference_and_workshop_papers"] [{"name": "croatian geological survey", "alternativeName": "", "country": "hr", "url": "http://www.hgi-cgs.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.hgi-cgs.hr/oai yes +9592 {"name": "repository of university department for forensic sciences", "language": "en"} [{"name": "repozitorij sveu\u010dili\u0161nog odjela za forenzi\u010dne znanosti sveu\u010dili\u0161ta u splitu", "language": "hr"}] https://repozitorij.forenzika.unist.hr institutional [] 2022-01-12 15:36:31 2020-04-09 07:52:47 ["science"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.forenzika.unist.hr/oai yes +9582 {"name": "repository of the faculty of agrobiotechnical sciences osijek", "language": ""} [{"name": "repozitorij fakulteta agrobiotehni\u010dkih znanosti osijek", "language": ""}] https://repozitorij.fazos.hr institutional [] 2022-01-12 15:36:31 2020-04-03 08:18:23 ["science"] ["theses_and_dissertations"] [{"name": "josip juraj strossmayer university of osijek", "alternativeName": "unios", "country": "hr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.fazos.hr/oai yes +9552 {"name": "jernbanebiblioteket", "language": "no"} [] https://banenor.brage.unit.no institutional [] 2022-01-12 15:36:31 2020-03-09 21:39:00 ["social sciences", "engineering"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "bane nor", "alternativeName": "", "country": "no", "url": "https://www.banenor.no", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://banenor.brage.unit.no/banenor-oai/request yes +9640 {"name": "learning and teaching repository", "language": ""} [] https://ltr.edu.au governmental [] 2022-01-12 15:36:32 2020-06-01 12:13:12 ["social sciences"] ["unpub_reports_and_working_papers", "learning_objects"] [{"name": "universities australia", "alternativeName": "", "country": "au", "url": "https://www.universitiesaustralia.edu.au", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9547 {"name": "ranepa repository", "language": "en"} [{"name": "ranepa \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439", "language": ""}] https://www.ranepa.ru/repository governmental [] 2022-01-12 15:36:31 2020-03-03 11:45:02 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "russian presidential academy of national economy and public administration", "alternativeName": "ranepa", "country": "ru", "url": "https://www.ranepa.ru", "identifier": [{"identifier": "https://ror.org/04xnm9a92", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9670 {"name": "repositorio del instituto para la investigaci\u00f3n educativa y el desarrollo pedag\u00f3gico", "language": "es"} [{"acronym": "idep"}] https://repositorio.idep.edu.co institutional [] 2022-01-12 15:36:32 2020-06-22 12:04:12 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "instituto para la investigaci\u00f3n educativa y el desarrollo pedag\u00f3gico", "alternativeName": "idep", "country": "co", "url": "http://www.idep.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.idep.edu.co/oai/request yes +9533 {"name": "novosibirsk state pedagogical university repository", "language": "en"} [{"acronym": "ngpu repository"}, {"name": "p\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430", "language": "ru"}, {"acronym": "\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043d\u0433\u043f\u0443"}] http://repo.nspu.ru institutional [] 2022-01-12 15:36:31 2020-02-27 08:26:48 ["social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "novosibirsk state pedagogical university", "alternativeName": "ngpu", "country": "ru", "url": "https://nspu.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repo.nspu.ru/oai/request yes +9545 {"name": "repositorio digital del cedes", "language": "es"} [{"acronym": "repocedes"}] http://repositorio.cedes.org institutional [] 2022-01-12 15:36:31 2020-03-03 11:05:54 ["social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "cedes", "alternativeName": "centro de estudios de estado y sociedad", "country": "ar", "url": "http://www.cedes.org", "identifier": [{"identifier": "https://ror.org/04w908n49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.cedes.org/oai/request yes +9665 {"name": "repositorio digital \u00f3rgano judicial", "language": "es"} [] http://repositoriodigital.organojudicial.gob.pa governmental [] 2022-01-12 15:36:32 2020-06-18 08:46:08 ["social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rep\u00fablica de panam\u00e1 - \u00f3rgano judicial", "alternativeName": "", "country": "pa", "url": "https://www.organojudicial.gob.pa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositoriodigital.organojudicial.gob.pa/oai/request yes +9621 {"name": "repository of the academy of public administration under the president of the republic of kazakhstan", "language": "en"} [{"name": "\u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0435 \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u043a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", "language": "ru"}, {"name": "\u049b\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0456\u043d\u0456\u04a3 \u0436\u0430\u043d\u044b\u043d\u0434\u0430\u0493\u044b \u043c\u0435\u043c\u043b\u0435\u043a\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f\u0441\u044b\u043d\u044b\u04a3 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0446\u0438\u043e\u043d\u0430\u043b\u0434\u044b\u049b", "language": "kk"}] https://repository.apa.kz institutional [] 2022-01-12 15:36:32 2020-05-11 11:14:40 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "academy of public administration under the president of the republic of kazakhstan", "alternativeName": "", "country": "kz", "url": "https://www.apa.kz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.apa.kz/oai/request yes +9657 {"name": "grape working papers", "language": "en"} [] http://grape.org.pl/publications/wps institutional [] 2022-01-12 15:36:32 2020-06-10 13:54:53 ["social sciences"] ["journal_articles"] [{"name": "grape | fame", "alternativeName": "group for research in applied economics | foundation of admirers and mavens of economics", "country": "pl", "url": "http://grape.org.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +9655 {"name": "knowledge management platform", "language": "en"} [{"name": "\u4e2d\u5171\u7518\u8083\u7701\u59d4\u515a\u6821\uff08\u7518\u8083\u884c\u653f\u5b66\u9662\uff09\u77e5\u8bc6\u7ba1\u7406\u5e73\u53f0", "language": "zh"}] http://ir.gsdx.gov.cn:82 institutional [] 2022-01-12 15:36:32 2020-06-10 12:48:18 ["social sciences"] ["journal_articles"] [{"name": "party school of the gansu committee of c.p.c. (gansu academy of governance)", "alternativeName": "", "country": "cn", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9591 {"name": "repository of university department of professional studies", "language": "en"} [{"name": "repozitorij sveu\u010dili\u0161nog odjela za stru\u010dne studije sveu\u010dili\u0161ta u splitu", "language": "hr"}] https://repozitorij.oss.unist.hr institutional [] 2022-01-12 15:36:31 2020-04-09 07:46:09 ["social sciences"] ["theses_and_dissertations"] [{"name": "university of split", "alternativeName": "", "country": "hr", "url": "https://www.unist.hr", "identifier": [{"identifier": "https://ror.org/00m31ft63", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.oss.unist.hr/oai yes +9600 {"name": "digital academic repository of graduate theses of the college for inspection and personnel management in split", "language": "en"} [{"name": "digitalni akademski repozitorij zavr\u0161nih i diplomskih radova visoke \u0161kole za inspekcijski i kadrovski menad\u017ement u splitu", "language": "hr"}] https://repozitorij.vsikmp.hr institutional [] 2022-01-12 15:36:32 2020-04-14 13:23:44 ["social sciences"] ["theses_and_dissertations"] [{"name": "college of inspection and personnel management", "alternativeName": "", "country": "hr", "url": "https://www.vsikmp.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.vsikmp.hr/oai yes +9607 {"name": "ir@nitk", "language": "en"} [] https://idr.nitk.ac.in/jspui institutional [] 2022-01-12 15:36:32 2020-04-15 15:26:17 ["technology"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "national institute of technology karnataka", "alternativeName": "nitk", "country": "in", "url": "http://www.nitk.ac.in", "identifier": [{"identifier": "https://ror.org/01hz4v948", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9620 {"name": "repositorio institucional itm", "language": "es"} [] https://repositorio.itm.edu.co institutional [] 2022-01-12 15:36:32 2020-05-11 10:55:03 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "instituto tecnol\u00f3gico metropolitano", "alternativeName": "itm", "country": "co", "url": "https://www.itm.edu.co", "identifier": [{"identifier": "https://ror.org/03zb5p722", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.itm.edu.co/oai/request yes +9659 {"name": "lanzhou university of technology institutional repository", "language": "en"} [{"acronym": "lut_ir"}, {"name": "\u5170\u5dde\u7406\u5de5\u5927\u5b66\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.lut.edu.cn institutional [] 2022-01-12 15:36:32 2020-06-16 09:16:29 ["technology"] ["journal_articles"] [{"name": "lanzhou university of technology", "alternativeName": "", "country": "cn", "url": "http://www.lut.edu.cn", "identifier": [{"identifier": "https://ror.org/03panb555", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9660 {"name": "knowledge commons of southern university of science and technology", "language": "en"} [{"name": "\u5357\u65b9\u79d1\u6280\u5927\u5b66\u77e5\u8bc6\u82d1", "language": "zh"}] https://kc.sustech.edu.cn institutional [] 2022-01-12 15:36:32 2020-06-16 09:39:06 ["technology"] ["journal_articles"] [{"name": "southern university of science and technology", "alternativeName": "", "country": "cn", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9637 {"name": "knowledge management system of shenyang institute of automation, cas", "language": "en"} [{"name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u6c88\u9633\u81ea\u52a8\u5316\u7814\u7a76\u6240\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://119.78.100.139 institutional [] 2022-01-12 15:36:32 2020-05-29 14:59:21 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "knowledge management system of shenyang institute of automation, cas", "alternativeName": "", "country": "cn", "url": "http://www.sia.cn/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9653 {"name": "most wiedzy - bridge of knowledge", "language": "en"} [] https://mostwiedzy.pl/en/open-access/catalog institutional [] 2022-01-12 15:36:32 2020-06-08 10:10:20 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "gda\u0144sk university of technology", "alternativeName": "", "country": "pl", "url": "https://pg.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9699 {"name": "arch", "language": "en"} [] https://arch.library.northwestern.edu institutional [] 2022-01-12 15:36:32 2020-07-02 08:07:14 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "northwestern university libraries", "alternativeName": "", "country": "us", "url": "https://www.library.northwestern.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://arch.library.northwestern.edu/agreement", "type": "metadata"}, {"policy_url": "https://arch.library.northwestern.edu/agreement", "type": "data"}, {"policy_url": "https://arch.library.northwestern.edu/agreement", "type": "content"}, {"policy_url": "https://arch.library.northwestern.edu/about?locale=en", "type": "content"}, {"policy_url": "https://arch.library.northwestern.edu/about?locale=en", "type": "submission"}, {"policy_url": "https://arch.library.northwestern.edu/agreement", "type": "submission"}, {"policy_url": "https://www.library.northwestern.edu/about/administration/policies/digital-preservation-policy.html", "type": "preservation"}, {"policy_url": "https://arch.library.northwestern.edu/about?locale=en", "type": "preservation"}] {"name": "fedora", "version": ""} https://oai.datacite.org/oai yes +9693 {"name": "ministry of culture research portal", "language": "en"} [{"name": "kulturministeriets forskningsportal", "language": "da"}] https://pure.kb.dk institutional [] 2022-01-12 15:36:32 2020-06-29 09:35:34 ["arts", "humanities"] ["journal_articles"] [{"name": "royal danish library", "alternativeName": "", "country": "dk", "url": "https://www.kb.dk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.kb.dk/ws/oai yes +9745 {"name": "repositorio institucional de la escuela nacional superior de arte dram\u00e1tico", "language": "es"} [{"acronym": "repositorio institucional - ensad"}] http://repositorio.ensad.edu.pe institutional [] 2022-01-12 15:36:33 2020-08-10 07:31:26 ["arts"] ["theses_and_dissertations"] [{"name": "escuela nacional superior de arte dram\u00e1tico", "alternativeName": "ensad", "country": "pe", "url": "https://www.ensad.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.ensad.edu.pe/oai/request yes +9704 {"name": "library digital repository - university of the visual and performing arts", "language": "en"} [] http://repository.lib.vpa.ac.lk institutional [] 2022-01-12 15:36:33 2020-07-07 10:49:01 ["arts"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "university of the visual and performing arts", "alternativeName": "", "country": "lk", "url": "http://www.vpa.ac.lk", "identifier": [{"identifier": "https://ror.org/046pqvy32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.lib.vpa.ac.lk/oai/request yes +9772 {"name": "mbarara university institutional repository", "language": "en"} [{"acronym": "must institutional repository"}] http://ir.must.ac.ug institutional [] 2022-01-12 15:36:33 2020-09-07 13:29:14 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "mbarara university", "alternativeName": "", "country": "ug", "url": "https://www.must.ac.ug", "identifier": [{"identifier": "https://ror.org/01bkn5154", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.must.ac.ug/oai/request yes +9709 {"name": "gigascience database", "language": "en"} [{"acronym": "gigadb"}] http://www.gigadb.org disciplinary [] 2022-01-12 15:36:33 2020-07-09 14:56:00 ["health and medicine", "science"] ["datasets"] [{"name": "gigascience press", "alternativeName": "", "country": "hk", "url": "https://en.genomics.cn/en-periodical-1818.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://gigadb.org/site/term", "type": "metadata"}, {"policy_url": "http://gigadb.org/site/term#statement", "type": "data"}, {"policy_url": "http://gigadb.org/site/term#statement", "type": "content"}, {"policy_url": "http://gigadb.org/site/term#statement", "type": "submission"}, {"policy_url": "http://gigadb.org/site/guide", "type": "submission"}] {"name": "", "version": ""} yes +9712 {"name": "school of dental medicine digital archive", "language": "en"} [{"acronym": "smile"}, {"name": "repozitorijum stomatolo\u0161kog fakulteta", "language": "sr"}, {"acronym": "smile"}] http://smile.stomf.bg.ac.rs institutional [] 2022-01-12 15:36:33 2020-07-13 09:32:30 ["health and medicine"] ["journal_articles"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://smile.stomf.bg.ac.rs/files/policy-smile-en.html", "type": "metadata"}, {"policy_url": "http://smile.stomf.bg.ac.rs/files/policy-smile-en.html", "type": "data"}, {"policy_url": "http://smile.stomf.bg.ac.rs/files/policy-smile-en.html", "type": "content"}, {"policy_url": "http://smile.stomf.bg.ac.rs/files/policy-smile-en.html", "type": "submission"}, {"policy_url": "http://smile.stomf.bg.ac.rs/files/policy-smile-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://smile.stomf.bg.ac.rs/oai/request yes +9770 {"name": "nivel repository", "language": "en"} [] https://www.nivel.nl/publicaties institutional [] 2022-01-12 15:36:33 2020-09-07 12:53:37 ["health and medicine"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "netherlands institute for health services research", "alternativeName": "nivel", "country": "nl", "url": "https://www.nivel.nl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} http://nvl006.nivel.nl/oai/oai.ashx yes +9700 {"name": "african union (au) common repository", "language": "en"} [{"name": "d\u00e9p\u00f4t commun de lunion africaine", "language": "fr"}] https://archives.au.int governmental [] 2022-01-12 15:36:32 2020-07-03 08:25:34 ["humanities", "health and medicine", "science", "social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "african union", "alternativeName": "au", "country": "et", "url": "https://au.int", "identifier": [{"identifier": "https://ror.org/020ktwj02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://archives.au.int/oai/request yes +9678 {"name": "jesuit centre for theological reflection (jctr) digital repository", "language": "en"} [{"acronym": "jctr repository"}] https://repository.jctr.org.zm institutional [] 2022-01-12 15:36:32 2020-06-23 10:18:20 ["humanities", "science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "jesuit centre for theological reflection", "alternativeName": "jctr", "country": "zm", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.jctr.org.zm/oai/request yes +9749 {"name": "electronic library of the minsk theological academy", "language": "en"} [{"name": "\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043c\u0438\u043d\u0441\u043a\u043e\u0439 \u0434\u0443\u0445\u043e\u0432\u043d\u043e\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438", "language": "be"}] http://elib.minda.by institutional [] 2022-01-12 15:36:33 2020-08-21 09:20:04 ["humanities"] ["journal_articles", "theses_and_dissertations", "learning_objects"] [{"name": "library of the minsk theological academy", "alternativeName": "", "country": "by", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://elib.minda.by/oai/request yes +9765 {"name": "universitas islam malang (unisma) repository", "language": "id"} [] http://repository.unisma.ac.id institutional [] 2022-01-12 15:36:33 2020-09-07 10:17:22 ["humanities"] ["journal_articles"] [{"name": "universitas islam malang", "alternativeName": "", "country": "id", "url": "http://unisma.ac.id", "identifier": [{"identifier": "https://ror.org/05ghynn27", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unisma.ac.id/oai/request yes +9711 {"name": "reposit\u00f3rio digital do instituto federal de educa\u00e7\u00e3o, ci\u00eancia e tecnologia farroupilha", "language": "pt"} [{"acronym": "arandu"}] http://arandu.iffarroupilha.edu.br institutional [] 2022-01-12 15:36:33 2020-07-13 08:45:31 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "instituto federal de educa\u00e7\u00e3o, ci\u00eancia e tecnologia farroupilha", "alternativeName": "iffar", "country": "br", "url": "https://iffarroupilha.edu.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://arandu.iffarroupilha.edu.br/oai/request yes +9773 {"name": "ondokuz may\u0131s university institutional repository", "language": "en"} [{"acronym": "dspace@omu"}, {"name": "ondokuz may\u0131s \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@omu"}] http://acikerisim.omu.edu.tr institutional [] 2022-01-12 15:36:33 2020-09-08 07:52:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "ondokuz may\u0131s university", "alternativeName": "", "country": "tr", "url": "http://www.omu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.omu.edu.tr/oai/request yes +9679 {"name": "recep tayyip erdo\u011fan university institutional repository", "language": "en"} [{"acronym": "dspace@rte\u00fc"}, {"name": "recep tayyip erdo\u011fan \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@rte\u00fc"}] http://acikerisim.erdogan.edu.tr institutional [] 2022-01-12 15:36:32 2020-06-23 10:30:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "recep tayyip erdo\u011fan university", "alternativeName": "", "country": "tr", "url": "https://www.erdogan.edu.tr", "identifier": [{"identifier": "https://ror.org/0468j1635", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.erdogan.edu.tr/oai/request yes +9763 {"name": "i\u0307stinye university institutional repository", "language": "en"} [{"acronym": "dspace@i\u0307s\u00fc"}, {"name": "i\u0307stinye \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@i\u0307s\u00fc"}] https://acikerisim.istinye.edu.tr institutional [] 2022-01-12 15:36:33 2020-09-07 10:03:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "i\u0307stinye university", "alternativeName": "", "country": "tr", "url": "https://www.istinye.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.istinye.edu.tr/oai/request yes +9746 {"name": "american college of education (ace) scholarworks", "language": "en"} [{"acronym": "scholarworks@ace library"}] https://scholarworks.ace.edu institutional [] 2022-01-12 15:36:33 2020-08-14 10:19:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "american college of education", "alternativeName": "ace", "country": "us", "url": "https://www.ace.edu", "identifier": [{"identifier": "https://ror.org/03vqkag84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://scholarworks.ace.edu/oai/request yes +9718 {"name": "manisa celal bayar \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"} [] http://acikerisim.mcbu.edu.tr:8080/xmlui institutional [] 2022-01-12 15:36:33 2020-07-14 11:03:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "manisa celal bayar \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.mcbu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.mcbu.edu.tr:8080/oai/request yes +9738 {"name": "samrc infospace", "language": "en"} [] https://infospace.mrc.ac.za institutional [] 2022-01-12 15:36:33 2020-07-23 09:19:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "south african medical research council", "alternativeName": "", "country": "za", "url": "https://www.samrc.ac.za", "identifier": [{"identifier": "https://ror.org/05q60vz69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://infospace.mrc.ac.za/oai/request yes +9767 {"name": "university of novi sad repository", "language": "en"} [] https://open.uns.ac.rs institutional [] 2022-01-12 15:36:33 2020-09-07 10:45:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "university of novi sad", "alternativeName": "", "country": "rs", "url": "http://www.uns.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://open.uns.ac.rs/oai/request yes +9771 {"name": "rise research institutes of sweden", "language": "en"} [] http://ri.diva-portal.org institutional [] 2022-01-12 15:36:33 2020-09-07 13:16:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "rise research institutes of sweden", "alternativeName": "", "country": "se", "url": "https://www.ri.se", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} yes +9764 {"name": "repository universitas ngudi waluyo", "language": "en"} [] http://repository2.unw.ac.id institutional [] 2022-01-12 15:36:33 2020-09-07 10:12:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas ngudi waluyo", "alternativeName": "", "country": "id", "url": "http://unw.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository2.unw.ac.id/cgi/oai2 yes +9715 {"name": "repositorio institucional bluefields indian & caribbean university", "language": "es"} [] http://repositorio.bicu.edu.ni institutional [] 2022-01-12 15:36:33 2020-07-14 10:34:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "bluefields indian & caribbean university", "alternativeName": "bicu", "country": "ni", "url": "http://www.bicu.edu.ni", "identifier": [{"identifier": "https://ror.org/058znsm64", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repositorio.bicu.edu.ni/cgi/oai2 yes +9735 {"name": "repository universitas jenderal soedirman", "language": ""} [] http://repository.unsoed.ac.id institutional [] 2022-01-12 15:36:33 2020-07-23 08:49:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "perpustakaan universitas jenderal soedirman", "alternativeName": "", "country": "id", "url": "http://perpus.unsoed.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.unsoed.ac.id/cgi/oai2 yes +9705 {"name": "institutional repository of klaip\u0117da university", "language": "en"} [] https://vb.ku.lt/repository institutional [] 2022-01-12 15:36:33 2020-07-07 11:08:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "klaipeda university", "alternativeName": "", "country": "lt", "url": "https://www.ku.lt", "identifier": [{"identifier": "https://ror.org/027sdcz20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vb.ku.lt/oai yes +9743 {"name": "uva dataverse", "language": "en"} [{"acronym": "libradata"}] https://dataverse.lib.virginia.edu institutional [] 2022-01-12 15:36:33 2020-08-06 07:40:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets", "software", "other_special_item_types"] [{"name": "university of virginia", "alternativeName": "", "country": "us", "url": "https://www.virginia.edu", "identifier": [{"identifier": "https://ror.org/0153tk833", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "metadata"}, {"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "data"}, {"policy_url": "https://www.library.virginia.edu/files/2018-03/libracollectionspolicy-20180122.pdf", "type": "content"}, {"policy_url": "https://www.library.virginia.edu/libra/datasets/public-dataset-license", "type": "submission"}, {"policy_url": "https://www.library.virginia.edu/libra/terms-of-use", "type": "preservation"}] {"name": "other", "version": ""} https://dataverse.lib.virginia.edu/oai yes +9731 {"name": "rhodes research data repository", "language": ""} [] https://researchdata.ru.ac.za institutional [] 2022-01-12 15:36:33 2020-07-20 12:04:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "datasets", "other_special_item_types"] [{"name": "rhodes university", "alternativeName": "", "country": "za", "url": "https://www.ru.ac.za", "identifier": [{"identifier": "https://ror.org/016sewp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai? yes +9737 {"name": "record", "language": "en"} [] https://record-net.org disciplinary [] 2022-01-12 15:36:33 2020-07-23 09:12:56 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "record", "alternativeName": "", "country": "fr", "url": "http://record-net.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9748 {"name": "iasspublic", "language": ""} [] https://publications.iass-potsdam.de institutional [] 2022-01-12 15:36:33 2020-08-21 09:01:46 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "institute for advanced sustainability studies", "alternativeName": "iass", "country": "de", "url": "https://www.iass-potsdam.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://publications.iass-potsdam.de/oai yes +9701 {"name": "international nuclear information system repository", "language": "en"} [{"acronym": "inis repository"}] http://inis.iaea.org/search institutional [] 2022-01-12 15:36:32 2020-07-03 08:35:09 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "iaea", "alternativeName": "international atomic energy agency", "country": "at", "url": "https://www.iaea.org", "identifier": [{"identifier": "https://ror.org/02zt1gg83", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9752 {"name": "european xfel publication database", "language": "en"} [] https://xfel.tind.io institutional [] 2022-01-12 15:36:33 2020-08-21 14:12:16 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "european x-ray free-electron laser facility gmbh", "alternativeName": "", "country": "de", "url": "https://www.xfel.eu", "identifier": [{"identifier": "https://ror.org/01wp2jz98", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://xfel.tind.io/oai2d yes +9710 {"name": "inspire", "language": "en"} [] https://inspirehep.net disciplinary [] 2022-01-12 15:36:33 2020-07-13 08:22:37 ["science"] ["theses_and_dissertations"] [{"name": "cern", "alternativeName": "", "country": "ch", "url": "https://home.cern", "identifier": [{"identifier": "https://ror.org/01ggx4157", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9768 {"name": "science data bank", "language": "en"} [] http://www.scidb.cn institutional [] 2022-01-12 15:36:33 2020-09-07 12:44:16 ["science"] ["datasets"] [{"name": "computer network information center, chinese academy of sciences", "alternativeName": "", "country": "cn", "url": "http://www.cnic.cas.cn", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +9739 {"name": "reposit\u00f3rio institucional do instituto nacional de pesquisas da amaz\u00f4nia", "language": "pt"} [{"acronym": "reposit\u00f3rio do inpa"}] https://repositorio.inpa.gov.br institutional [] 2022-01-12 15:36:33 2020-07-23 09:26:12 ["science"] ["journal_articles"] [{"name": "instituto nacional de pesquisas da amaz\u00f4nia", "alternativeName": "inpa", "country": "br", "url": "http://portal.inpa.gov.br", "identifier": [{"identifier": "https://ror.org/01xe86309", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.inpa.gov.br/oai/request yes +9728 {"name": "southeast asian fisheries development center institutional repository", "language": "en"} [{"acronym": "seafdec institutional repository"}] http://repository.seafdec.org institutional [] 2022-01-12 15:36:33 2020-07-17 08:51:02 ["science"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southeast asian fisheries development center", "alternativeName": "seafdec", "country": "th", "url": "http://www.seafdec.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seafdec.org/oai/request yes +9717 {"name": "southeast asian fisheries development center, marine fishery resources development and management department institutional repository", "language": "en"} [{"acronym": "seafdec/mfrdmd institutional repository"}] http://repository.seafdec.org.my institutional [] 2022-01-12 15:36:33 2020-07-14 10:51:47 ["science"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southeast asian fisheries development center, marine fishery resources development and management department", "alternativeName": "", "country": "my", "url": "http://www.seafdec.org.my", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seafdec.org.my/oai/request yes +9716 {"name": "southeast asian fisheries development center, training department institutional repository", "language": "en"} [{"acronym": "seafdec/td institutional repository"}] http://repository.seafdec.or.th institutional [] 2022-01-12 15:36:33 2020-07-14 10:43:38 ["science"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "southeast asian fisheries development center, training department", "alternativeName": "", "country": "th", "url": "http://www.seafdec.or.th", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.seafdec.or.th/oai/request yes +9760 {"name": "san diego zoo global repository", "language": "en"} [] https://repository.sandiegozoo.org institutional [] 2022-01-12 15:36:33 2020-09-04 08:57:39 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "san diego zoo global library and archives", "alternativeName": "", "country": "us", "url": "https://library.sandiegozoo.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9713 {"name": "materials data repository", "language": "en"} [{"acronym": "mdr"}] https://mdr.nims.go.jp institutional [] 2022-01-12 15:36:33 2020-07-13 10:09:55 ["science"] ["journal_articles", "conference_and_workshop_papers", "datasets"] [{"name": "national institute for materials science", "alternativeName": "nims", "country": "jp", "url": "https://www.nims.go.jp", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://mdr.nims.go.jp/catalog/oai yes +9730 {"name": "hal inrae", "language": "fr"} [] https://hal.inrae.fr institutional [] 2022-01-12 15:36:33 2020-07-20 10:41:28 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "inrae", "alternativeName": "institut national de recherche pour lagriculture, lalimentation et lenvironnement", "country": "fr", "url": "https://www.inrae.fr", "identifier": [{"identifier": "https://ror.org/003vg9w96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/inrae yes +9762 {"name": "vti publikationer", "language": "sv"} [] https://vti.diva-portal.org/smash/search.jsf institutional [] 2022-01-12 15:36:33 2020-09-07 09:49:38 ["social sciences", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "vti", "alternativeName": "swedish national road and transport research institute", "country": "se", "url": "https://www.vti.se", "identifier": [{"identifier": "https://ror.org/04zmmpw58", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} yes +9747 {"name": "gambling research exchange dataverse", "language": "en"} [] https://dataverse.scholarsportal.info/dataverse/greo institutional [] 2022-01-12 15:36:33 2020-08-17 07:47:08 ["social sciences"] ["unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "gambling research exchange", "alternativeName": "greo", "country": "ca", "url": "https://www.greo.ca/en/index.aspx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.greo.ca/en/greo-resource/resources/documents/policy_dataset_terms_of_use_agreement-update-ec-2019.pdf", "type": "data"}, {"policy_url": "https://www.greo.ca/en/greo-resource/resources/documents/policy_dataset_terms_of_use_agreement-update-ec-2019.pdf", "type": "content"}, {"policy_url": "https://www.greo.ca/en/greo-resource/resources/documents/policy_dataset_depositor_update_may2018.pdf", "type": "submission"}, {"policy_url": "https://www.greo.ca/en/greo-resource/service-level-definition.aspx", "type": "submission"}, {"policy_url": "https://www.greo.ca/en/greo-resource/resources/documents/policy_dataset_depositor_update_may2018.pdf", "type": "preservation"}] {"name": "other", "version": ""} yes +9766 {"name": "ceibs research online", "language": "en"} [{"acronym": "cro"}] http://ir.ceibs.edu institutional [] 2022-01-12 15:36:33 2020-09-07 10:38:56 ["social sciences"] ["journal_articles"] [{"name": "china europe international business school", "alternativeName": "ceibs", "country": "cn", "url": "https://www.ceibs.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ir.ceibs.edu/irpui/oai yes +9759 {"name": "uew institutional repository", "language": "en"} [] http://ir.uew.edu.gh institutional [] 2022-01-12 15:36:33 2020-09-04 08:10:38 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of education, winneba", "alternativeName": "", "country": "gh", "url": "https://uew.edu.gh", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.uew.edu.gh/oai/request yes +9690 {"name": "greyguide", "language": "en"} [] http://greyguiderep.isti.cnr.it disciplinary [] 2022-01-12 15:36:32 2020-06-26 13:37:36 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "cnr-isti", "alternativeName": "consiglio nazionale delle ricerche - istituto di scienza e tecnologie dell\u2019informazione \u201ca. faedo\u201d", "country": "it", "url": "http://www.isti.cnr.it", "identifier": [{"identifier": "https://ror.org/05kacka20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +9744 {"name": "repositorio institucional tecnologico de antioquia", "language": "es"} [{"acronym": "tdea"}] https://dspace.tdea.edu.co institutional [] 2022-01-12 15:36:33 2020-08-06 07:59:05 ["technology"] ["theses_and_dissertations"] [{"name": "tecnol\u00f3gico de antioquia", "alternativeName": "", "country": "co", "url": "https://www.tdea.edu.co/index.php", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.tdea.edu.co/oai/request yes +9692 {"name": "research@thea", "language": "en"} [] https://research.thea.ie disciplinary [] 2022-01-12 15:36:32 2020-06-29 08:36:42 ["technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "thea", "alternativeName": "technological higher education association", "country": "ie", "url": "http://www.thea.ie", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://research.thea.ie/oai/request yes +9687 {"name": "south west open research deposit", "language": "en"} [{"acronym": "sword"}] https://sword.cit.ie institutional [] 2022-01-12 15:36:32 2020-06-25 12:14:18 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "cork institute of technology", "alternativeName": "", "country": "ie", "url": "https://www.cit.ie", "identifier": [{"identifier": "https://ror.org/012qxnm65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.cit.ie/contentfiles/academic-policies/cit%20open%20access%20policy%20official%20v1.pdf", "type": "submission"}] {"name": "digital_commons", "version": ""} https://sword.cit.ie/do/oai yes +9736 {"name": "aviation polytechnic of surabaya institutional repository", "language": "en"} [] https://repo.poltekbangsby.ac.id institutional [] 2022-01-12 15:36:33 2020-07-23 09:04:13 ["technology"] ["journal_articles"] [{"name": "aviation polytechnic of surabaya", "alternativeName": "", "country": "id", "url": "https://poltekbangsby.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.poltekbangsby.ac.id/cgi/oai2 yes +9750 {"name": "biblioteca digital arq. hilario zalba", "language": ""} [] http://bdzalba.fau.unlp.edu.ar institutional [] 2022-01-12 15:36:33 2020-08-21 13:55:02 ["technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad nacional de la plata: facultad de arquitectura y urbanismo", "alternativeName": "", "country": "ar", "url": "https://www.fau.unlp.edu.ar", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://bdzalba.fau.unlp.edu.ar/greenstone/cgi-bin/oaiserver.cgi yes +9814 {"name": "digital repository of prefectural university of kumamoto", "language": "en"} [{"name": "\u718a\u672c\u770c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://rp-kumakendai.pu-kumamoto.ac.jp/dspace/?locale=en institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "prefectural university of kumamoto", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rp-kumakendai.pu-kumamoto.ac.jp/dspace-oai/request yes +9784 {"name": "tsuru repository of academic institutional library trail", "language": "en"} [{"name": "\u90fd\u7559\u6587\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea\u3000 \u30c8\u30ec\u30a4\u30eb", "language": "ja"}] http://trail.tsuru.ac.jp/dspace/ institutional [] 2021-10-05 15:14:32 2020-09-09 14:54:59 [] [] [{"name": "tsuru university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://trail.tsuru.ac.jp/dspace-oai/request yes +9751 {"name": "dspace at togliatti state university", "language": "en"} [] https://dspace.tltsu.ru institutional [] 2021-02-18 18:17:17 2020-08-21 14:04:48 [] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "togliatti state university", "alternativeName": "", "country": "ru", "url": "https://www.tltsu.ru", "identifier": [{"identifier": "https://ror.org/03e2ja558", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.tltsu.ru/oai/request yes +9779 {"name": "tamagawa university academic repository", "language": "en"} [{"name": "\u7389\u5ddd\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://libds.tamagawa.ac.jp/dspace/?locale=en institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "university of tamagawa", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://libds.tamagawa.ac.jp/dspace-oai/request yes +9789 {"name": "tokyo keizai university institutional repository", "language": "en"} [{"name": "\u6771\u4eac\u7d4c\u6e08\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.tku.ac.jp/dspace/index.jsp?locale=en institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo keizai university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.tku.ac.jp/dspace-oai/request yes +9799 {"name": "the university of shiga prefecture repository", "language": "en"} [{"name": "\u6ecb\u8cc0\u770c\u7acb\u5927\u5b66\u5b66\u8853\u60c5\u5831\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://usprepo.office.usp.ac.jp/?locale=en institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "the university of shiga prefecture", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://usprepo.office.usp.ac.jp/dspace-oai/request yes +9786 {"name": "tokyo university of science, sanyo onoda yamaguchi institutional repository", "language": "en"} [{"name": "\u5c71\u967d\u5c0f\u91ce\u7530\u5e02\u7acb\u5c71\u53e3\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/tr/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo university of science, sanyo onoda yamaguchi", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/tr/oai/request yes +9794 {"name": "repository of the tokuyama university", "language": "en"} [{"name": "\u5fb3\u5c71\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/tu/eng.e institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokuyama university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/tu/oai/request yes +9777 {"name": "ypu repository", "language": "en"} [{"name": "\u5c71\u53e3\u770c\u7acb\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/yp/ institutional [] 2021-10-05 15:14:31 2020-09-09 14:54:59 [] [] [{"name": "yamaguchi prefectural university.", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/yp/oai/request yes +9811 {"name": "repository of the shimonoseki junior college", "language": "en"} [{"name": "\u4e0b\u95a2\u5e02\u7acb\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/sc/eng.e institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "shimonoseki city university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/sc/oai/request yes +9810 {"name": "the shimonoseki city university repository", "language": "en"} [{"name": "\u4e0b\u95a2\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/sj/eng.e institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "shimonoseki junior college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/sj/oai/request yes +9783 {"name": "ube frontier university\u30fbube frontier college repository", "language": "en"} [{"name": "\u5b87\u90e8\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2\u5927\u5b66\u30fb\u5b87\u90e8\u30d5\u30ed\u30f3\u30c6\u30a3\u30a2\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/uf/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "ube frontier university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/uf/oai/request yes +9818 {"name": "repository of the oshima national college of maritime technology", "language": "en"} [{"name": "\u5927\u5cf6\u5546\u8239\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/on/eng.e institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "oshima national college of maritime technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/on/oai/request yes +9809 {"name": "repository of the shiseikan university", "language": "en"} [{"name": "\u81f3\u8aa0\u9928\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/fb/eng.e institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "shiseikan university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/fb/oai/request yes +9781 {"name": "university of east asia repository", "language": "en"} [{"name": "\u6771\u4e9c\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/ea/eng.e institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "university of east asia", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/ea/oai/request yes +9778 {"name": "yamaguchi gakugei university\u30fbyamaguchi college of arts repository", "language": "en"} [{"name": "\u5c71\u53e3\u5b66\u82b8\u5927\u5b66\u30fb\u5c71\u53e3\u82b8\u8853\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/yg/ institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "yamaguchi gakugei university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/yg/oai/request yes +9802 {"name": "tenri university repository for authorized resources", "language": "en"} [{"name": "\u5929\u7406\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opac.tenri-u.ac.jp/opac/repository/metadata/?lang=1 institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tenri university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.tenri-u.ac.jp/opac/mmd_api/oai-pmh/ yes +9801 {"name": "rouken digital archive", "language": "en"} [{"name": "\u52b4\u7814\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6", "language": "ja"}] http://darch.isl.or.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "the ohara memorial institute for science of labour", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://darch.isl.or.jp/il/oai_repository/pmh/g0000002-repository yes +9816 {"name": "otemon gakuin university repository", "language": "en"} [{"name": "\u8ffd\u624b\u9580\u5b66\u9662\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.i-repository.net/il/meta_pub/g0000145otemon institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "otemon gakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.i-repository.net/il/oai_repository/pmh/g0000145-repository yes +9775 {"name": "yamanashi prefectural university repository", "language": "en"} [{"name": "\u5c71\u68a8\u770c\u7acb\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://libweb.nlib.yamanashi-ken.ac.jp/infolib/meta_pub/g0000002repository institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "yamanashi prefectural university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://libweb.nlib.yamanashi-ken.ac.jp/infolib/oai_repository/pmh/g0000002-repository yes +9819 {"name": "oue institutional repository", "language": "en"} [{"name": "\u5927\u962a\u7d4c\u6e08\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.i-repository.net/il/meta_pub/g0000031repository institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "osaka university of economics", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.i-repository.net/il/oai_repository/pmh/g0000031-repository yes +9791 {"name": "tokyo tech research repository", "language": "en"} [{"name": "\u6771\u4eac\u5de5\u696d\u5927\u5b66\u30ea\u30b5\u30fc\u30c1\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://t2r2.star.titech.ac.jp/index_en.html institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://t2r2.star.titech.ac.jp/oaipmh/oaihandler yes +9821 {"name": "nippon institute of technology repository", "language": "en"} [{"name": "\u65e5\u672c\u5de5\u696d\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://lib.nit.ac.jp institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "nippon institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://mlib.nit.ac.jp/oai/oai-pmh.do yes +9803 {"name": "teikyo university repository", "language": "en"} [{"name": "\u5e1d\u4eac\u5927\u5b66\u7814\u7a76\u30fb\u6559\u80b2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tk-opac.main.teikyo-u.ac.jp/?page_id=122 institutional [] 2021-10-05 15:14:32 2020-09-09 14:54:59 [] [] [{"name": "teikyo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://tk-opac2.main.teikyo-u.ac.jp/oai/oai-pmh.do yes +9798 {"name": "toho gakuen college repository", "language": "en"} [{"name": "\u6850\u670b\u5b66\u5712\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://webopac.tohomusic.ac.jp institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "toho gakuen college music department", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opactoho.tohomusic.ac.jp/oai/oai-pmh.do yes +9807 {"name": "showa university of music repository", "language": "en"} [{"name": "\u662d\u548c\u97f3\u697d\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://lib.tosei-showa-music.ac.jp/index.php?action=pages_view_main&active_action=v3search_view_main_init&block_id=296&tab_num=3&search_mode=detail institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "showa university of music library", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://opac.tosei-showa-music.ac.jp/oai/oai-pmh.do yes +9813 {"name": "sagami women\u2019s university repository", "language": "en"} [{"name": "\u76f8\u6a21\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://lib.sagami-wu.ac.jp/?lang=english institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "sagami womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://libopac.sagami-wu.ac.jp/oai/oai-pmh.do yes +9804 {"name": "teikyo heisei university repository", "language": "en"} [{"name": "\u5e1d\u4eac\u5e73\u6210\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www-std01.ufinity.jp/thulib/index.php?action=pages_view_main&active_action=v3search_view_main_init&block_id=296&tab_num=2 institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "teikyo heisei university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://lib.thu.ac.jp/oai/oai-pmh.do yes +9797 {"name": "tokai university repository", "language": "en"} [{"name": "\u6771\u6d77\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opac.time.u-tokai.ac.jp/webopac/ufirdi.do?ufi_target=ctlsrh institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokai university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.time.u-tokai.ac.jp/oai/oai-pmh.do yes +9800 {"name": "nippon dental university repositoy", "language": "en"} [{"name": "\u65e5\u672c\u6b6f\u79d1\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ndu-rep.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "the nippon dental university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ndu-rep.repo.nii.ac.jp/oai yes +9792 {"name": "tokyo denki university repository", "language": "en"} [{"name": "\uff54\uff44\uff55\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tdu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo denki university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tdu.repo.nii.ac.jp/oai yes +9820 {"name": "academic reository of okayama university of science(arous)", "language": "en"} [{"name": "\u5ca1\u5c71\u7406\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ous.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "okayama university of science", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ous.repo.nii.ac.jp/oai yes +9785 {"name": "ernest (toyo bunko e-resource network storage)", "language": "en"} [{"name": "\u6771\u6d0b\u6587\u5eab\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://toyo-bunko.repo.nii.ac.jp institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "toyo bunko (the oriental library)", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://toyo-bunko.repo.nii.ac.jp/oai yes +9822 {"name": "niigata university of rehabilitation repository", "language": "en"} [{"name": "\u65b0\u6f5f\u30ea\u30cf\u30d3\u30ea\u30c6\u30fc\u30b7\u30e7\u30f3\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nur.repo.nii.ac.jp institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "niigata university of rehabilitation", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nur.repo.nii.ac.jp/oai yes +9815 {"name": "otsuma womens university repository", "language": "en"} [{"name": "\u5927\u59bb\u5973\u5b50\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://otsuma.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "otsuma womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://otsuma.repo.nii.ac.jp/oai yes +9812 {"name": "setsunan university academic repository", "language": "en"} [{"name": "\u6442\u5357\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://setsunan.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "setsunan university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://setsunan.repo.nii.ac.jp/oai yes +9805 {"name": "takushoku-university institutional repository", "language": "en"} [{"name": "\u62d3\u6b96\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://takushoku-u.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "takushoku university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://takushoku-u.repo.nii.ac.jp/oai yes +9796 {"name": "tokiwa university repository", "language": "en"} [{"name": "\u5e38\u78d0\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tokiwa.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokiwa university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokiwa.repo.nii.ac.jp/oai yes +9823 {"name": "niigata seiryo university institutional repository", "language": "en"} [{"name": "\u65b0\u6f5f\u9752\u9675\u5927\u5b66\u30fb\u65b0\u6f5f\u9752\u9675\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://n-seiryo.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "niigata seiryo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://n-seiryo.repo.nii.ac.jp/oai yes +9808 {"name": "shonan university of medical sciences repository", "language": "en"} [{"name": "\u6e58\u5357\u533b\u7642\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shonan-ums.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "shonan university of medical sciences", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shonan-ums.repo.nii.ac.jp/oai yes +9806 {"name": "suwa university of science repository for academic resources", "language": "en"} [{"name": "\u516c\u7acb\u8acf\u8a2a\u6771\u4eac\u7406\u79d1\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sus.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "suwa university of science", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sus.repo.nii.ac.jp/oai yes +9787 {"name": "tokyo university of agriculture repository", "language": "en"} [{"name": "\u6771\u4eac\u8fb2\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://nodai.repo.nii.ac.jp institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo university of agriculture", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nodai.repo.nii.ac.jp/oai yes +9780 {"name": "university of niigata prefecture academic repository", "language": "en"} [{"name": "\u65b0\u6f5f\u770c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://unii.repo.nii.ac.jp institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "university of niigata prefecture", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://unii.repo.nii.ac.jp/oai yes +9776 {"name": "yamanashi gakuin repository", "language": "en"} [{"name": "\u5c71\u68a8\u5b66\u9662\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ygu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:31 2020-09-18 12:53:47 [] [] [{"name": "yamanashi gakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ygu.repo.nii.ac.jp/oai yes +9817 {"name": "otemae university & otemae college repository", "language": "en"} [{"name": "\u5927\u624b\u524d\u5927\u5b66\u30fb\u5927\u624b\u524d\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://otemae.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:47 [] [] [{"name": "otemae university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://otemae.repo.nii.ac.jp/oai yes +9795 {"name": "tokoha university, tokoha university junior college repository", "language": "en"} [{"name": "\u5e38\u8449\u5927\u5b66\u30fb\u5e38\u8449\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tokoha-u.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-09 14:54:59 [] [] [{"name": "tokoha university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokoha-u.repo.nii.ac.jp/oai yes +9790 {"name": "tokyo kasei university institutional repository", "language": "en"} [{"name": "\u6771\u4eac\u5bb6\u653f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tokyo-kasei.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo kasei university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tokyo-kasei.repo.nii.ac.jp/oai yes +9788 {"name": "tokyo medical and dental university institutional repository", "language": "en"} [{"name": "\u6771\u4eac\u533b\u79d1\u6b6f\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tmdu.repo.nii.ac.jp institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo medical and dental university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tmdu.repo.nii.ac.jp/oai yes +9782 {"name": "university of aizu repository for academic resources", "language": "en"} [{"name": "\u4f1a\u6d25\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-aizu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "university of aizu", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-aizu.repo.nii.ac.jp/oai yes +9793 {"name": "tokyo christian university repository", "language": "en"} [{"name": "\u6771\u4eac\u57fa\u7763\u6559\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://tcu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:32 2020-09-18 12:53:47 [] [] [{"name": "tokyo christian university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://tcu.repo.nii.ac.jp/oai yes +9930 {"name": "suleyman university institutional repository", "language": "en"} [] https://acikerisim.sdu.edu.tr institutional [] 2022-01-12 15:36:33 2020-09-15 13:30:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "suleyman demirel university", "alternativeName": "", "country": "tr", "url": "https://w3.sdu.edu.tr", "identifier": [{"identifier": "https://ror.org/04fjtte88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.sdu.edu.tr/oai/request yes +9929 {"name": "sistem informasi polije repository asset", "language": "id"} [{"acronym": "sipora"}] https://sipora.polije.ac.id institutional [] 2022-01-12 15:36:33 2020-09-15 13:18:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "politeknik negeri jember", "alternativeName": "", "country": "id", "url": "https://www.polije.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://sipora.polije.ac.id/cgi/oai2 yes +9926 {"name": "institutional repository stie widya gama lumajang", "language": "en"} [] http://repository.stiewidyagamalumajang.ac.id institutional [] 2022-01-12 15:36:33 2020-09-15 10:49:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "stie widya gama lumajang", "alternativeName": "", "country": "id", "url": "https://stiewidyagamalumajang.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.stiewidyagamalumajang.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.stiewidyagamalumajang.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.stiewidyagamalumajang.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.stiewidyagamalumajang.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.stiewidyagamalumajang.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.stiewidyagamalumajang.ac.id/cgi/oai2 yes +9925 {"name": "stockholm university figshare repository", "language": "en"} [] https://su.figshare.com institutional [] 2022-01-12 15:36:33 2020-09-15 10:26:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "datasets"] [{"name": "stockholm university", "alternativeName": "", "country": "se", "url": "https://su.se//english/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai yes +9924 {"name": "havs- och vattenmyndighetens diva", "language": "sv"} [] http://havochvatten.diva-portal.org institutional [] 2022-01-12 15:36:33 2020-09-15 09:42:10 ["science"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "swedish agency for marine and water management", "alternativeName": "", "country": "se", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "diva_portal", "version": ""} http://havochvatten.diva-portal.org/dice/oai yes +9927 {"name": "itenas repository", "language": "en"} [] http://eprints.itenas.ac.id institutional [] 2022-01-12 15:36:33 2020-09-15 11:17:29 ["technology"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "institut teknologi nasional, bandung", "alternativeName": "itenas", "country": "id", "url": "https://www.itenas.ac.id", "identifier": [{"identifier": "https://ror.org/01w3rm550", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.itenas.ac.id/cgi/oai2 yes +9928 {"name": "qucosa - hochschule f\u00fcr technik, wirtschaft und kultur leipzig", "language": "de"} [{"acronym": "htwk"}] https://htwk-leipzig.qucosa.de institutional [] 2022-01-12 15:36:33 2020-09-15 13:07:43 ["technology"] ["journal_articles"] [{"name": "hochschule f\u00fcr technik, wirtschaft und kultur leipzig", "alternativeName": "htwk", "country": "de", "url": "https://www.htwk-leipzig.de/startseite/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +9860 {"name": "iuj repository", "language": "en"} [{"name": "\u56fd\u969b\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iuj.repo.nii.ac.jp institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "international university of japan", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://iuj.repo.nii.ac.jp/oai yes +9884 {"name": "aomori university of health and welfare repository", "language": "en"} [{"name": "\u9752\u68ee\u770c\u7acb\u4fdd\u5065\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://auhw.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aomori university of health and welfare", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://auhw.repo.nii.ac.jp/oai yes +9912 {"name": "kobe womens university & junior college institutional repository", "language": "en"} [{"name": "\u795e\u6238\u5973\u5b50\u5927\u5b66\u30fb\u795e\u6238\u5973\u5b50\u77ed\u671f\u5927\u5b66\u3000\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://suica.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "kobe womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://suica.repo.nii.ac.jp/oai yes +9891 {"name": "ait associated repository of academic resources", "language": "en"} [{"name": "\u611b\u77e5\u5de5\u696d\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.aitech.ac.jp/dspace/index.jsp?locale=en institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.aitech.ac.jp/dspace-oai/request yes +9865 {"name": "hermes-ir(hitotsubashi university repository):special collections", "language": "en"} [{"name": "hermes-ir(\u4e00\u6a4b\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea) : special collections", "language": "ja"}] http://hermes-ir.lib.hit-u.ac.jp/da/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "hitotsubashi university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hermes-ir.lib.hit-u.ac.jp/da-oai/request yes +9864 {"name": "hokkai-gakuen organization of knowledge ubiquitous through gaining archives", "language": "en"} [{"name": "\u5317\u6d77\u5b66\u5712\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://hokuga.hgu.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "hokkai-gakuen university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hokuga.hgu.jp/dspace-oai/request yes +9857 {"name": "jwcpe repository", "language": "en"} [{"name": "\u65e5\u672c\u5973\u5b50\u4f53\u80b2\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ir.jwcpe.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "japan womens college of physical education", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.jwcpe.ac.jp/dspace-oai/request yes +9825 {"name": "nihon university repository", "language": "en"} [{"name": "\u65e5\u672c\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repository.nihon-u.ac.jp/xmlui/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "nihon university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.cin.nihon-u.ac.jp/oai/request yes +9908 {"name": "bulletin of maebashi institute of technology", "language": "en"} [{"name": "\u524d\u6a4b\u5de5\u79d1\u5927\u5b66\u7814\u7a76\u7d00\u8981", "language": "ja"}] https://gair.media.gunma-u.ac.jp/dspace/handle/10087/6409 institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "maebashi institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://gair.media.gunma-u.ac.jp/dspace-oai/request yes +9869 {"name": "gifu keizai university institutional repository", "language": "en"} [{"name": "\u5c90\u961c\u7d4c\u6e08\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://gku-repository.gifu-keizai.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "gifu keizai university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://gku-repository.gifu-keizai.ac.jp/dspace-oai/request yes +9832 {"name": "national defense academy research repository", "language": "en"} [{"name": "\u9632\u885b\u5927\u5b66\u6821\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://nda-repository.nda.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national defense academy", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://nda-repository.nda.ac.jp/dspace-oai/request yes +9914 {"name": "hokkai-gakuen organization of knowledge ubiquitous through gaining archives", "language": "en"} [{"name": "\u5317\u6d77\u5b66\u5712\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://hokuga.hgu.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:49 [] [] [{"name": "hokkai school of commerce", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://hokuga.hgu.jp/dspace-oai/request yes +9849 {"name": "kinki hospital library association repository", "language": "en"} [{"name": "\u8fd1\u757f\u75c5\u9662\u56f3\u66f8\u5ba4\u5354\u8b70\u4f1a\u5171\u540c\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://kintore.hosplib.info/dspace/index.jsp?locale=en institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kinki hospital library association", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://kintore.hosplib.info/dspace-oai/request yes +9826 {"name": "ntut repository", "language": "en"} [{"name": "\u7b51\u6ce2\u6280\u8853\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://www.tsukuba-tech.ac.jp/repo/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national university corporation tsukuba university of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.tsukuba-tech.ac.jp/repo/dspace-oai/request yes +9881 {"name": "repository of the baiko gakuin university", "language": "en"} [{"name": "\u6885\u5149\u5b66\u9662\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/bg/eng.e institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "baiko gakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/bg/oai/request yes +9828 {"name": "repository of the national institute of technology, ube college", "language": "en"} [{"name": "\u5b87\u90e8\u5de5\u696d\u9ad8\u7b49\u5c02\u9580\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/un/eng.e institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national institute of technology, ube college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/un/oai/request yes +9895 {"name": "takamatsu university takamatsu junior college repository", "language": "en"} [{"name": "\u9ad8\u677e\u5927\u5b66\u9ad8\u677e\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://shark.lib.kagawa-u.ac.jp/tuir/?l=en institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "takamatsu university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://shark.lib.kagawa-u.ac.jp/tuir/oai/request yes +9831 {"name": "national fisheries university repository", "language": "en"} [{"name": "\u6c34\u7523\u5927\u5b66\u6821\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ypir.lib.yamaguchi-u.ac.jp/fu/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national fisheries university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "earmas", "version": ""} http://ypir.lib.yamaguchi-u.ac.jp/fu/oai/request yes +9845 {"name": "komazawa university institutional repository", "language": "en"} [{"name": "\u99d2\u6fa4\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://repo.komazawa-u.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "komazawa university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repo.komazawa-u.ac.jp/opac/mmd_api/oai-pmh/ yes +9875 {"name": "daito bunka university repository", "language": "en"} [{"name": "\u5927\u6771\u6587\u5316\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://opac.daito.ac.jp/portal/index_e.html institutional [] 2021-10-05 15:14:35 2020-09-09 14:54:59 [] [] [{"name": "daito bunka university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.daito.ac.jp/repo/mmd_api/oai-pmh/ yes +9850 {"name": "kanazawa institute of technology & international college of technology, kanazawa institutional repository", "language": "en"} [{"name": "\u91d1\u6ca2\u5de5\u696d\u5927\u5b66\u30fb\u56fd\u969b\u9ad8\u7b49\u5c02\u9580\u5b66\u6821 \u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kitir.kanazawa-it.ac.jp/infolib/meta_pub/g0000002repository institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kanazawa institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://kitir.kanazawa-it.ac.jp/infolib/oai_repository/pmh/g0000002-repository yes +9853 {"name": "kagawa nutrition university institutional repository", "language": "en"} [{"name": "\u5973\u5b50\u6804\u990a\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://www.i-repository.net/il/meta_pub/g0000155repository institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kagawa nutrition university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://www.i-repository.net/il/oai_repository/pmh/g0000155-repository yes +9854 {"name": "jair: juntendo academic information repository", "language": "en"} [{"name": "\u9806\u5929\u5802\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://library.med.juntendo.ac.jp/il4/meta_pub/g0000002gakui institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "juntendo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://library.med.juntendo.ac.jp/il4/oai_repository/pmh/g0000002-repository yes +9880 {"name": "bukkyo university academic knowledge & e-resources repository: baker", "language": "en"} [{"name": "\u4f5b\u6559\u5927\u5b66\u8ad6\u6587\u76ee\u9332\u30ea\u30dd\u30b8\u30c8\u30ea baker", "language": "ja"}] http://archives.bukkyo-u.ac.jp/repository/baker/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "bukkyo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://archives.bukkyo-u.ac.jp/il4/oai_repository/pmh/g0000019-repository yes +9858 {"name": "jopss:jaea originated papers searching system", "language": "en"} [{"name": "jopss:jaea originated papers searching system", "language": "ja"}] https://jopss.jaea.go.jp/search/servlet/intersearch?language=1 institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "japan atomic energy agency", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://jopss.jaea.go.jp/search/servlet/oaipmh yes +9872 {"name": "fukuoka institute of technology repository", "language": "en"} [{"name": "\u798f\u5ca1\u5de5\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea\u30b7\u30b9\u30c6\u30e0", "language": "ja"}] http://repository.lib.fit.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-09 14:54:59 [] [] [{"name": "fukuoka institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repository.lib.fit.ac.jp/dspace-oai/request yes +9843 {"name": "kyorin university institutional repository", "language": "en"} [{"name": "\u674f\u6797\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://lib.kyorin-u.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kyorin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.kyorin-u.ac.jp/oai/oai-pmh.do yes +9848 {"name": "kogakuin university library repository", "language": "en"} [{"name": "\u5de5\u5b66\u9662\u5927\u5b66\u56f3\u66f8\u9928\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ufinity08.jp.fujitsu.com/kogakuin/index.php?action=pages_view_main&active_action=v3search_view_main_init&block_id=296&tab_num=5&search_mode=detail institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kogakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac2015.lib.kogakuin.ac.jp/oai/oai-pmh.do yes +9847 {"name": "kokugakuin university repositry", "language": "en"} [{"name": "\u570b\u5b78\u9662\u5927\u5b78\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kaiser.kokugakuin.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kokugakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac.kokugakuin.ac.jp/oai/oai-pmh.do yes +9874 {"name": "institutional repository: the ehime area - iyokan", "language": "en"} [{"name": "\u611b\u5a9b\u5730\u533a\u5171\u540c\u30ea\u30dd\u30b8\u30c8\u30ea\u3000iyokan", "language": "ja"}] https://opac.lib.ehime-u.ac.jp/index.php?action=pages_view_main&active_action=v3search_view_main_init&block_id=6311&change_locale=en institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "ehime university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://opac1.lib.ehime-u.ac.jp/oai/oai-pmh.do yes +9840 {"name": "meijo university repository", "language": "en"} [{"name": "\u540d\u57ce\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://opac.meijo-u.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "meijo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://mylib.meijo-u.ac.jp/oai/oai-pmh.do yes +9890 {"name": "aichi prefectural university repository", "language": "en"} [{"name": "\u611b\u77e5\u770c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aichi-pu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi prefectural university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aichi-pu.repo.nii.ac.jp/oai yes +9888 {"name": "aichi toho university academic repository", "language": "en"} [{"name": "\u611b\u77e5\u6771\u90a6\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aichi-toho.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi toho university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aichi-toho.repo.nii.ac.jp/oai yes +9883 {"name": "asia university academic repository", "language": "en"} [{"name": "\u4e9c\u7d30\u4e9c\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://asia-u.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "asia university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://asia-u.repo.nii.ac.jp/oai yes +9879 {"name": "bunkyo university academic repository", "language": "en"} [{"name": "\u6587\u6559\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://bunkyo.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "bunkyo univerity", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://bunkyo.repo.nii.ac.jp/oai yes +9871 {"name": "fukuoka prefectural university repository", "language": "en"} [{"name": "\u798f\u5ca1\u770c\u7acb\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://fukuoka-pu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "fukuoka prefectural university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fukuoka-pu.repo.nii.ac.jp/oai yes +9839 {"name": "meisei university academic institutional repository", "language": "en"} [{"name": "\u660e\u661f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meisei.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "meisei university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meisei.repo.nii.ac.jp/oai yes +9910 {"name": "yamato univercity repository", "language": "en"} [{"name": "\u5927\u548c\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://yamato-u.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-09 14:54:59 [] [] [{"name": "\uff59\uff41\uff4d\uff41\uff54\uff4f \uff55\uff4e\uff49\uff56\uff45\uff52\uff53\uff49\uff54\uff59", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yamato-u.repo.nii.ac.jp/oai yes +9898 {"name": "acgu / acjc academic repository", "language": "en"} [{"name": "\u9752\u68ee\u4e2d\u592e\u5b66\u9662\u5927\u5b66\u30fb\u9752\u68ee\u4e2d\u592e\u77ed\u671f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://acguacjc.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "aomori chuo gakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://acguacjc.repo.nii.ac.jp/oai yes +9886 {"name": "aichi university of the arts repository", "language": "en"} [{"name": "\u611b\u77e5\u770c\u7acb\u82b8\u8853\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ai-arts.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi university of the arts", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ai-arts.repo.nii.ac.jp/oai yes +9913 {"name": "akikusa gakuen junior college repository", "language": "en"} [{"name": "\u79cb\u8349\u5b66\u5712\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://akitan.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:49 [] [] [{"name": "akikusa gakuen junior college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://akitan.repo.nii.ac.jp/oai yes +9900 {"name": "dsc reference portal, national institute of informatics", "language": "en"} [{"name": "\u56fd\u7acb\u60c5\u5831\u5b66\u7814\u7a76\u6240 dsc\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30dd\u30fc\u30bf\u30eb", "language": "ja"}] https://dsc.repo.nii.ac.jp/?lang=english institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "center for dataset sharing and collaborative research, national institute of informatics", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://dsc.repo.nii.ac.jp/oai yes +9867 {"name": "hakodate university repository", "language": "en"} [{"name": "\u51fd\u9928\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hakodate-u.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-09 14:54:59 [] [] [{"name": "hakodate university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hakodate-u.repo.nii.ac.jp/oai yes +9861 {"name": "iuhw repository (japanese)", "language": "en"} [{"name": "\u56fd\u969b\u533b\u7642\u798f\u7949\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://iuhw.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "international university of health and welfare", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://iuhw.repo.nii.ac.jp/oai yes +9851 {"name": "kanagawa university of human services repository", "language": "en"} [{"name": "\u795e\u5948\u5ddd\u770c\u7acb\u4fdd\u5065\u798f\u7949\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kuhs.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kanagawa university of human services", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kuhs.repo.nii.ac.jp/oai yes +9842 {"name": "kyoto university of art and design repository", "language": "en"} [{"name": "\u4eac\u90fd\u9020\u5f62\u82b8\u8853\u5927\u5b66 \u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kyoto-art.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kyoto university of art and design", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kyoto-art.repo.nii.ac.jp/oai yes +9841 {"name": "meiji gakuin university institutional repository", "language": "en"} [{"name": "\u660e\u6cbb\u5b66\u9662\u5927\u5b66\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://meigaku.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "meiji gakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://meigaku.repo.nii.ac.jp/oai yes +9903 {"name": "national institute of science and technology policy (nistep) library", "language": "en"} [{"name": "\u79d1\u5b66\u6280\u8853\u30fb\u5b66\u8853\u653f\u7b56\u7814\u7a76\u6240 \u30e9\u30a4\u30d6\u30e9\u30ea", "language": "ja"}] https://nistep.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "national institute of science and technology policy (nistep)", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nistep.repo.nii.ac.jp/oai yes +9911 {"name": "sapporo otani university \u30fb junior college of sapporo otani university repository", "language": "en"} [{"name": "\u672d\u5e4c\u5927\u8c37\u5927\u5b66\u30fb\u672d\u5e4c\u5927\u8c37\u5927\u5b66\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://s-otani.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "sapporo otani university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://s-otani.repo.nii.ac.jp/oai yes +9835 {"name": "the university of nagano repository", "language": "en"} [{"name": "\u9577\u91ce\u770c\u7acb\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-nagano.repo.nii.ac.jp institutional [] 2021-10-05 15:14:33 2020-09-09 14:54:59 [] [] [{"name": "the university of nagano", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-nagano.repo.nii.ac.jp/oai yes +9904 {"name": "the japanese red cross college of nursing repository", "language": "en"} [{"name": "\u65e5\u672c\u8d64\u5341\u5b57\u770b\u8b77\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jrccn.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "the japanese red cross college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jrccn.repo.nii.ac.jp/oai yes +9915 {"name": "yashima repository", "language": "en"} [{"name": "\u3084\u3057\u307e\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://yashima.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:49 [] [] [{"name": "yashima gakuen university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://yashima.repo.nii.ac.jp/oai yes +9889 {"name": "aichi shukutoku knowledge archive repository", "language": "en"} [{"name": "\u611b\u77e5\u6dd1\u5fb3\u5927\u5b66 \u77e5\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30ea\u30dd\u30b8\u30c8\u30ea aska-r", "language": "ja"}] https://aska-r.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi shukutoku university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aska-r.repo.nii.ac.jp/oai yes +9887 {"name": "aichi university repository", "language": "en"} [{"name": "\u611b\u77e5\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aichiu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aichiu.repo.nii.ac.jp/oai yes +9885 {"name": "aikoku gakuen university academic repository", "language": "en"} [{"name": "\u611b\u56fd\u5b66\u5712\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aikoku-u.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aikoku gakuen university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aikoku-u.repo.nii.ac.jp/oai yes +9906 {"name": "aino university institutional repository", "language": "en"} [{"name": "\u85cd\u91ce\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://aino.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "aino university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://aino.repo.nii.ac.jp/oai yes +9876 {"name": "chiba institute of technology repository", "language": "en"} [{"name": "\u5343\u8449\u5de5\u696d\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://cit.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "ciba institute of technology", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cit.repo.nii.ac.jp/oai yes +9873 {"name": "fuji university institutional repository", "language": "en"} [{"name": "\u5bcc\u58eb\u5927\u5b66\u5b66\u8853\u7814\u7a76\u30b3\u30ec\u30af\u30b7\u30e7\u30f3", "language": "ja"}] https://fuji.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "fuji university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://fuji.repo.nii.ac.jp/oai yes +9868 {"name": "gifu pharmaceutical university research information repository", "language": "en"} [{"name": "\u5c90\u961c\u85ac\u79d1\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://gifu-pu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-09 14:54:59 [] [] [{"name": "gifu pharmaceutical university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://gifu-pu.repo.nii.ac.jp/oai yes +9863 {"name": "hokkaido musashi women\u2019s junior college repository", "language": "en"} [{"name": "\u5317\u6d77\u9053\u6b66\u8535\u5973\u5b50\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hmjc.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "hokkaido musashi women\u2019s junior college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hmjc.repo.nii.ac.jp/oai yes +9859 {"name": "j.f.oberlin university academic repository", "language": "en"} [{"name": "\u685c\u7f8e\u6797\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://obirin.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "j.f.oberlin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://obirin.repo.nii.ac.jp/oai yes +9856 {"name": "jichi medical university repository", "language": "en"} [{"name": "\u81ea\u6cbb\u533b\u79d1\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://jichi-ir.repo.nii.ac.jp institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "jichi medical university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://jichi-ir.repo.nii.ac.jp/oai yes +9899 {"name": "kansai university of nursing and health sciences \"kki\" repository", "language": "en"} [{"name": "\u95a2\u897f\u770b\u8b77\u533b\u7642\u5927\u5b66kki\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kki.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "kansai university of nursing and health sciences", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kki.repo.nii.ac.jp/oai yes +9846 {"name": "komazawa women\u2019s university and komazawa women\u2019s junior college repository", "language": "en"} [{"name": "\u99d2\u6ca2\u5973\u5b50\u5927\u5b66\u30fb\u99d2\u6ca2\u5973\u5b50\u77ed\u671f\u5927\u5b66 \u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://komajo.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "komazawa womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://komajo.repo.nii.ac.jp/oai yes +9844 {"name": "kurashiki university of science and the arts repository", "language": "en"} [{"name": "\u5009\u6577\u82b8\u8853\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30eakusarepo", "language": "ja"}] https://kusa.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "kurashiki university of science and the arts", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kusa.repo.nii.ac.jp/oai yes +9905 {"name": "nii repository", "language": "en"} [{"name": "\u56fd\u7acb\u60c5\u5831\u5b66\u7814\u7a76\u6240\u3000\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repository.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "national institute of informatics", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repository.nii.ac.jp/oai yes +9836 {"name": "nagano college of nursing repository", "language": "en"} [{"name": "\u9577\u91ce\u770c\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://ncn.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "nagano college of nursing", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ncn.repo.nii.ac.jp/oai yes +9834 {"name": "nagaoka institute of design repository", "language": "en"} [{"name": "\u9577\u5ca1\u9020\u5f62\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagaoka-id.repo.nii.ac.jp institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "nagaoka institute of design", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagaoka-id.repo.nii.ac.jp/oai yes +9833 {"name": "nagoya womens university repository", "language": "en"} [{"name": "\u540d\u53e4\u5c4b\u5973\u5b50\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nagoya-wu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "nagoya womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nagoya-wu.repo.nii.ac.jp/oai yes +9827 {"name": "national institution for academic degrees and quality enhancement of higher education repository", "language": "en"} [{"name": "\u5927\u5b66\u6539\u9769\u652f\u63f4\u30fb\u5b66\u4f4d\u6388\u4e0e\u6a5f\u69cb\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://niad.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national institution for academic degrees and quality enhancement of higher education", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://niad.repo.nii.ac.jp/oai yes +9824 {"name": "niigata sangyo university repository", "language": "en"} [{"name": "\u65b0\u6f5f\u7523\u696d\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nsu.repo.nii.ac.jp institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "niigata sangyo university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nsu.repo.nii.ac.jp/oai yes +9837 {"name": "st. andrew\u2019s repository system\uff08\u7565\u79f0 stars\uff09", "language": "en"} [{"name": "\u6843\u5c71\u5b66\u9662\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://stars.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-09 14:54:59 [] [] [{"name": "momoyamagakuin university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://stars.repo.nii.ac.jp/oai yes +9909 {"name": "the national museum of modern art, tokyo ? repository", "language": "en"} [{"name": "\u6771\u4eac\u56fd\u7acb\u8fd1\u4ee3\u7f8e\u8853\u9928\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://momat.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "the national museum of modern art, tokyo", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://momat.repo.nii.ac.jp/oai yes +9894 {"name": "university of shizuoka repository", "language": "en"} [{"name": "\u9759\u5ca1\u770c\u7acb\u5927\u5b66\u30fb\u77ed\u671f\u5927\u5b66\u90e8\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://u-shizuoka-ken.repo.nii.ac.jp institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "university of shizuoka", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://u-shizuoka-ken.repo.nii.ac.jp/oai yes +9830 {"name": "academic repository of the national institute for japanese language and linguistics", "language": "en"} [{"name": "\u56fd\u7acb\u56fd\u8a9e\u7814\u7a76\u6240\u5b66\u8853\u60c5\u5831\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://repository.ninjal.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "national institute for japanese language and linguistics", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://repository.ninjal.ac.jp/oai yes +9892 {"name": "aichi gakusen university aichi gakusen college repository", "language": "en"} [{"name": "\u611b\u77e5\u5b66\u6cc9\u5927\u5b66\u30fb\u611b\u77e5\u5b66\u6cc9\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://gakusen.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "aichi gakusen university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://gakusen.repo.nii.ac.jp/oai yes +9878 {"name": "humanities research data repository", "language": "en"} [{"name": "\u4eba\u6587\u5b66\u7814\u7a76\u30c7\u30fc\u30bf\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://codh.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "center for open data in the humanities", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://codh.repo.nii.ac.jp/oai yes +9862 {"name": "ibaraki cristian university academic repository", "language": "en"} [{"name": "ic\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] http://ic.repo.nii.ac.jp/en/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "ibaraki christian university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://ic.repo.nii.ac.jp/oai yes +9917 {"name": "kobe college of education repository", "language": "en"} [{"name": "\u795e\u6238\u6559\u80b2\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://shukugawa.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:49 [] [] [{"name": "kobe college of education", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://shukugawa.repo.nii.ac.jp/oai yes +9916 {"name": "kwassui womens university repository", "language": "en"} [{"name": "\u6d3b\u6c34\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kwassui.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:49 [] [] [{"name": "kwassui womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kwassui.repo.nii.ac.jp/oai yes +9897 {"name": "scientific instrument repository", "language": "en"} [{"name": "\u79d1\u5b66\u5b9f\u9a13\u6a5f\u5668\u8cc7\u6599\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sci-instrument.repon.org/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "academic repository network", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sci-instrument.repon.org/oai yes +9902 {"name": "shiga bunkyo junior college repository", "language": "en"} [{"name": "\u6ecb\u8cc0\u6587\u6559\u77ed\u671f\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://s-bunkyo.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "shiga bunkyo junior college", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://s-bunkyo.repo.nii.ac.jp/oai yes +9901 {"name": "the advanced academic agency institutinal repository", "language": "en"} [{"name": "\u5b66\u6821\u6cd5\u4eba \u5148\u7aef\u6559\u80b2\u6a5f\u69cb \u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://sentankyo.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "the graduate school of project design", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://sentankyo.repo.nii.ac.jp/oai yes +9893 {"name": "wallchart repository", "language": "en"} [{"name": "\u6559\u80b2\u639b\u56f3\u8cc7\u6599\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://wallchart.repon.org/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "academic repository network", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://wallchart.repon.org/oai yes +9877 {"name": "academic repository of chiba institute of science", "language": "en"} [{"name": "\u5343\u8449\u79d1\u5b66\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://cis.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "chiba institute of science", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://cis.repo.nii.ac.jp/oai yes +9882 {"name": "baika womens university academic repository", "language": "en"} [{"name": "\u6885\u82b1\u5973\u5b50\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://baika.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "baika womens university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://baika.repo.nii.ac.jp/oai yes +9870 {"name": "gifu college of nursing repository", "language": "en"} [{"name": "\u5c90\u961c\u770c\u7acb\u770b\u8b77\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://gcnr.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "gifu college of nursing", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://gcnr.repo.nii.ac.jp/oai yes +9866 {"name": "hanazono university repository", "language": "en"} [{"name": "\u82b1\u5712\u5927\u5b66\u5b66\u8853\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://hu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:35 2020-09-18 12:53:48 [] [] [{"name": "hanazono university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://hu.repo.nii.ac.jp/oai yes +9896 {"name": "iryo sosei university repository", "language": "en"} [{"name": "\u533b\u7642\u5275\u751f\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://isu.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "iryo sosei university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://isu.repo.nii.ac.jp/oai yes +9855 {"name": "junshin gakuen university and junshin junior college academic repository", "language": "en"} [{"name": "\u7d14\u771f\u5b66\u5712\u5927\u5b66\u30fb\u7d14\u771f\u77ed\u671f\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://junshin.repo.nii.ac.jp institutional [] 2021-10-05 15:14:34 2020-09-18 12:53:48 [] [] [{"name": "junshin gakuen university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://junshin.repo.nii.ac.jp/oai yes +9852 {"name": "kagawa prefectural university of health sciences repository", "language": "en"} [{"name": "\u9999\u5ddd\u770c\u7acb\u4fdd\u5065\u533b\u7642\u5927\u5b66\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://kagawa-puhs.repo.nii.ac.jp institutional [] 2021-10-26 08:24:48 2020-09-18 12:53:48 [] [] [{"name": "kagawa prefectural university of health sciences", "alternativeName": "", "country": "jp", "url": "http://www.kagawa-puhs.ac.jp/", "identifier": [{"identifier": "https://ror.org/00hdt0550", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://kagawa-puhs.repo.nii.ac.jp/oai yes +9838 {"name": "miyagi university academic repository", "language": "en"} [{"name": "\u516c\u7acb\u5927\u5b66\u6cd5\u4eba\u5bae\u57ce\u5927\u5b66\u5b66\u8853\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://myu.repo.nii.ac.jp/ institutional [] 2021-10-05 15:14:33 2020-09-18 12:53:48 [] [] [{"name": "miyagi university", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://myu.repo.nii.ac.jp/oai yes +9907 {"name": "nagano university of health and medicine institutional repository", "language": "en"} [{"name": "\u9577\u91ce\u4fdd\u5065\u533b\u7642\u5927\u5b66\u6a5f\u95a2\u30ea\u30dd\u30b8\u30c8\u30ea", "language": "ja"}] https://nuhm.repo.nii.ac.jp institutional [] 2021-10-05 15:14:36 2020-09-18 12:53:48 [] [] [{"name": "nagano university of health and medicine", "alternativeName": "", "country": "jp", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} http://nuhm.repo.nii.ac.jp/oai yes +9948 {"name": "ekrpoch repository", "language": "en"} [] https://ekrpoch.culturehealth.org institutional [] 2022-01-12 15:36:33 2020-10-07 08:51:10 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "bibliographic_references", "unpub_reports_and_working_papers"] [{"name": "kharkiv regional public organization \"culture of health\"", "alternativeName": "", "country": "ua", "url": "https://culturehealth.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10062 {"name": "digital repository of ireland", "language": "en"} [] https://repository.dri.ie disciplinary [] 2022-01-12 15:36:35 2021-02-18 08:51:01 ["arts", "humanities", "social sciences"] ["books_chapters_and_sections", "other_special_item_types"] [{"name": "digital repository of ireland", "alternativeName": "", "country": "ie", "url": "https://dri.ie", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +10047 {"name": "warburg library commons", "language": "en"} [] https://commons.warburg.sas.ac.uk institutional [] 2022-01-12 15:36:34 2021-02-02 09:46:36 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "warburg institute", "alternativeName": "", "country": "gb", "url": "https://warburg.sas.ac.uk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes +10061 {"name": "taju", "language": "fi"} [] https://taju.uniarts.fi/ institutional [] 2022-01-12 15:36:35 2021-02-16 14:41:52 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of the arts helsinki", "alternativeName": "", "country": "fi", "url": "https://www.uniarts.fi", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://taju.uniarts.fi/oai/request yes +9963 {"name": "biblioteca digital palabra", "language": "es"} [] http://bibliotecadigital.caroycuervo.gov.co institutional [] 2022-01-12 15:36:34 2020-10-21 15:09:26 ["arts", "humanities"] [] [{"name": "instituto caro y cuervo", "alternativeName": "", "country": "co", "url": "https://www.caroycuervo.gov.co", "identifier": [{"identifier": "https://ror.org/01a27ax82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://bibliotecadigital.caroycuervo.gov.co/cgi/oai2 yes +9932 {"name": "opus - schriftenserver der hochschule f\u00fcr musik freiburg (mit fzm)", "language": "de"} [] https://opus.bsz-bw.de/hfmfr/home institutional [] 2022-01-12 15:36:33 2020-09-16 15:34:18 ["arts", "humanities"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "hochschule fuer musik freiburg", "alternativeName": "", "country": "de", "url": "https://www.mh-freiburg.de/start", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus.bsz-bw.de/hfmfr/oai yes +9953 {"name": "archivo jos\u00e9 carlos mari\u00e1tegui", "language": "es"} [] http://archivo.mariategui.org/index.php institutional [] 2022-01-12 15:36:33 2020-10-13 08:04:56 ["arts", "humanities"] ["other_special_item_types"] [{"name": "archivo jos\u00e9 carlos mari\u00e1tegui", "alternativeName": "", "country": "pe", "url": "https://www.mariategui.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10023 {"name": "repositorio de la universidad nacional de m\u00fasica", "language": "es"} [] https://repositorio.unm.edu.pe institutional [] 2022-01-12 15:36:34 2020-12-18 13:51:52 ["arts"] ["theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de m\u00fasica", "alternativeName": "unm", "country": "pe", "url": "https://www.unm.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unm.edu.pe/oai/request yes +9983 {"name": "kuet institutional repository", "language": "en"} [] http://dspace.kuet.ac.bd institutional [] 2022-01-12 15:36:34 2020-11-06 09:53:07 ["engineering"] ["theses_and_dissertations", "learning_objects"] [{"name": "khulna university of engineering & technology", "alternativeName": "kuet", "country": "bd", "url": "http://kuet.ac.bd", "identifier": [{"identifier": "https://ror.org/04y58d606", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.kuet.ac.bd/oai/request yes +9949 {"name": "enac open archive", "language": "en"} [{"acronym": "hal-enac"}, {"name": "enac archive ouverte", "language": "fr"}, {"acronym": "hal-enac"}] https://hal-enac.archives-ouvertes.fr institutional [] 2022-01-12 15:36:33 2020-10-08 07:37:42 ["health and medicine", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "enac", "alternativeName": "ecole nationale de laviation civile", "country": "fr", "url": "https://www.enac.fr", "identifier": [{"identifier": "https://ror.org/022zdgq74", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/enac yes +9937 {"name": "ni4os europe repository", "language": "en"} [] https://repo.ni4os.eu disciplinary [] 2022-01-12 15:36:33 2020-09-24 07:35:30 ["health and medicine", "science", "technology"] ["theses_and_dissertations", "datasets", "software", "other_special_item_types"] [{"name": "national infrastructures for research and technology", "alternativeName": "grnet", "country": "gr", "url": "https://www.grnet.gr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repo.ni4os.eu/oai/request yes +10019 {"name": "hira oak repository", "language": "en"} [] http://repository.hira.or.kr institutional [] 2022-01-12 15:36:34 2020-12-14 08:42:10 ["health and medicine", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "health insurance review & assessment service", "alternativeName": "hira", "country": "kr", "url": "https://www.hira.or.kr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.hira.or.kr/oai/request yes +10041 {"name": "akafarma repository", "language": "en"} [] http://repo.akafarmaponorogo.ac.id institutional [] 2022-01-12 15:36:34 2021-01-19 11:54:58 ["health and medicine"] ["journal_articles"] [{"name": "akafarma", "alternativeName": "akademi analis farmasi dan makanan sunan giri ponorogo", "country": "id", "url": "http://akafarmaponorogo.ac.id/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.akafarmaponorogo.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repo.akafarmaponorogo.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repo.akafarmaponorogo.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repo.akafarmaponorogo.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repo.akafarmaponorogo.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repo.akafarmaponorogo.ac.id/cgi/oai2 yes +10051 {"name": "bashkir state medical university repository", "language": "en"} [] https://repo.bashgmu.ru institutional [] 2022-01-12 15:36:34 2021-02-02 11:46:18 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "patents"] [{"name": "bashkir state medical university", "alternativeName": "", "country": "ru", "url": "https://bashgmu.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repo.bashgmu.ru/oai/request yes +10038 {"name": "nirtir", "language": "en"} [] https://eprints.nirt.res.in institutional [] 2022-01-12 15:36:34 2021-01-13 09:21:32 ["health and medicine"] ["journal_articles"] [{"name": "national institute for research in tuberculosis", "alternativeName": "", "country": "in", "url": "http://www.nirt.res.in", "identifier": [{"identifier": "https://ror.org/03qp1eh12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://eprints.nirt.res.in/cgi/oai2 yes +10010 {"name": "amber - ambulance research repository", "language": "en"} [] https://amber.openrepository.com disciplinary [] 2022-01-12 15:36:34 2020-12-01 08:52:29 ["health and medicine"] ["journal_articles", "other_special_item_types"] [{"name": "library and knowledge services for nhs ambulance services in england", "alternativeName": "lks ase", "country": "gb", "url": "https://ambulance.libguides.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://amber.openrepository.com/pages/amberrepositorypolicies", "type": "metadata"}, {"policy_url": "https://amber.openrepository.com/pages/amberrepositorypolicies", "type": "data"}, {"policy_url": "https://amber.openrepository.com/pages/amberrepositorypolicies", "type": "content"}, {"policy_url": "https://amber.openrepository.com/pages/amberrepositorypolicies", "type": "submission"}, {"policy_url": "https://amber.openrepository.com/pages/amberrepositorypolicies", "type": "preservation"}] {"name": "open_repository", "version": ""} yes +10049 {"name": "polish platform of medical research", "language": "en"} [{"acronym": "ppm"}] https://ppm.edu.pl institutional [] 2022-01-12 15:36:34 2021-02-02 11:28:56 ["health and medicine"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "other_special_item_types"] [{"name": "wroclaw medical university", "alternativeName": "", "country": "pl", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ppm.edu.pl:7443/oaicat yes +10057 {"name": "repository perpustakaan rumah sakit mata cicendo", "language": "id"} [] http://perpustakaanrsmcicendo.com institutional [] 2022-01-12 15:36:35 2021-02-11 08:01:52 ["health and medicine"] ["theses_and_dissertations"] [{"name": "perpustakaan rumah sakit mata cicendo", "alternativeName": "", "country": "id", "url": "https://www.cicendoeyehospital.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10043 {"name": "suvag polyclinic repository", "language": "en"} [] https://repozitorij.suvag.hr institutional [] 2022-01-12 15:36:34 2021-01-21 16:59:57 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "suvag polyclinic", "alternativeName": "", "country": "hr", "url": "https://www.suvag.hr/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.suvag.hr/oai yes +10052 {"name": "repository of the catholic faculty of theology", "language": "en"} [{"name": "repozitorij katoli\u010dkog bogoslovnog fakulteta sveu\u010dili\u0161ta u splitu", "language": "hr"}] https://repozitorij.kbf.unist.hr institutional [] 2022-01-12 15:36:34 2021-02-05 09:25:31 ["humanities"] ["theses_and_dissertations"] [{"name": "catholic faculty of theology", "alternativeName": "", "country": "hr", "url": "https://www.kbf.unist.hr/hr/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kbf.unist.hr/oai yes +9970 {"name": "jthink repository", "language": "en"} [] http://repository.jthink.kr institutional [] 2022-01-12 15:36:34 2020-10-23 08:41:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "jthink", "alternativeName": "", "country": "kr", "url": "http://www.jthink.kr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.jthink.kr/oai/request yes +9974 {"name": "iain parepare", "language": "id"} [] http://repository.iainpare.ac.id institutional [] 2022-01-12 15:36:34 2020-10-28 07:54:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "iain parepare", "alternativeName": "", "country": "id", "url": "http://iainpare.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.iainpare.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.iainpare.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.iainpare.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.iainpare.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.iainpare.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.iainpare.ac.id/cgi/oai2 yes +9964 {"name": "repository uin jambi", "language": "en"} [] http://repository.uinjambi.ac.id institutional [] 2022-01-12 15:36:34 2020-10-21 15:14:12 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "uin sulthan thaha saifuddin jambi", "alternativeName": "", "country": "id", "url": "https://uinjambi.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.uinjambi.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.uinjambi.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.uinjambi.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.uinjambi.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.uinjambi.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.uinjambi.ac.id/cgi/oai2 yes +10075 {"name": "bolu abant i\u0307zzet baysal university institutional repository", "language": "en"} [{"acronym": "dspace@bai\u0307b\u00fc"}, {"name": "bolu abant i\u0307zzet baysal \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@bai\u0307b\u00fc"}] http://acikerisim.ibu.edu.tr institutional [] 2022-01-12 15:36:35 2021-03-03 08:59:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university institutional repository", "alternativeName": "", "country": "tr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://hdl.handle.net/20.500.12491/143", "type": "metadata"}, {"policy_url": "https://hdl.handle.net/20.500.12491/143", "type": "data"}, {"policy_url": "https://hdl.handle.net/20.500.12491/143", "type": "content"}, {"policy_url": "https://hdl.handle.net/20.500.12491/143", "type": "submission"}, {"policy_url": "https://hdl.handle.net/20.500.12491/143", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.ibu.edu.tr/oai yes +10040 {"name": "institutional repository at brandon university", "language": "en"} [{"acronym": "irbu"}] https://irbu.arcabc.ca institutional [] 2022-01-12 15:36:34 2021-01-15 09:55:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "brandon university", "alternativeName": "", "country": "ca", "url": "https://www.brandonu.ca", "identifier": [{"identifier": "https://ror.org/02qp25a50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://irbu.arcabc.ca/islandora/object/irbu%3a188", "type": "metadata"}, {"policy_url": "https://irbu.arcabc.ca/islandora/object/irbu%3a188", "type": "content"}, {"policy_url": "https://irbu.arcabc.ca/islandora/object/irbu%3a188", "type": "submission"}, {"policy_url": "https://irbu.arcabc.ca/islandora/object/irbu%3a188", "type": "preservation"}] {"name": "islandora", "version": ""} yes +9935 {"name": "aijr preprints", "language": "en"} [] https://preprints.aijr.org/index.php/ap/preprints aggregating [] 2022-01-12 15:36:33 2020-09-21 07:54:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "aijr publisher", "alternativeName": "", "country": "in", "url": "https://www.aijr.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://preprints.aijr.org/index.php/ap/ethics", "type": "metadata"}, {"policy_url": "https://preprints.aijr.org/index.php/ap/ethics", "type": "data"}, {"policy_url": "https://preprints.aijr.org/index.php/ap/ethics", "type": "content"}, {"policy_url": "https://preprints.aijr.org/index.php/ap/ethics", "type": "preservation"}] {"name": "other", "version": ""} http://preprints.aijr.org/index.php/ap/oai yes +10068 {"name": "suny open access repository", "language": "en"} [] https://soar.suny.edu institutional [] 2022-01-12 15:36:35 2021-02-19 09:27:30 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "state university of new york", "alternativeName": "suny", "country": "us", "url": "https://www.suny.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://soar.suny.edu/pages/soar_content_guidelines", "type": "content"}, {"policy_url": "https://soar.suny.edu/pages/soar_content_guidelines", "type": "submission"}, {"policy_url": "https://soar.suny.edu/pages/soar_content_guidelines", "type": "preservation"}] {"name": "dspace", "version": ""} https://soar.suny.edu/oai/request yes +10055 {"name": "hal paris nanterre", "language": "fr"} [] https://hal.parisnanterre.fr institutional [] 2022-01-12 15:36:35 2021-02-08 10:21:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 paris nanterre", "alternativeName": "", "country": "fr", "url": "https://www.parisnanterre.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes +10060 {"name": "roskilde university research portal", "language": "en"} [] https://forskning.ruc.dk/en institutional [] 2022-01-12 15:36:35 2021-02-16 14:25:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "bibliographic_references", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "roskilde university", "alternativeName": "ruc", "country": "dk", "url": "https://ruc.dk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} https://taju.uniarts.fi/oai/request yes +10032 {"name": "abdullah g\u00fcl university institutional repository", "language": "en"} [{"acronym": "dspace@ag\u00fc"}, {"name": "abdullah g\u00fcl \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@ag\u00fc"}] http://acikerisim.agu.edu.tr institutional [] 2022-01-12 15:36:34 2021-01-04 11:30:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "abdullah g\u00fcl university", "alternativeName": "", "country": "tr", "url": "http://www.agu.edu.tr", "identifier": [{"identifier": "https://ror.org/00zdyy359", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.agu.edu.tr/oai/request yes +10071 {"name": "alanya alaaddin keykubat university institutional repository", "language": "en"} [{"acronym": "dspace@alk\u00fc"}, {"name": "alanya alaaddin keykubat \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@alk\u00fc"}] http://acikerisim.alanya.edu.tr institutional [] 2022-01-12 15:36:35 2021-02-22 08:31:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "alanya alaaddin keykubat university", "alternativeName": "", "country": "tr", "url": "https://www.alanya.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.alanya.edu.tr/oai/request yes +10009 {"name": "hakkari university institutional repository", "language": "en"} [{"acronym": "dspace@hakkari"}, {"name": "hakkari \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@hakkari"}] http://acikerisim.hakkari.edu.tr/xmlui institutional [] 2022-01-12 15:36:34 2020-11-27 09:10:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "hakkari university", "alternativeName": "", "country": "tr", "url": "https://www.hakkari.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.hakkari.edu.tr/oai/request yes +10033 {"name": "istanbul university - cerrahpasa institutional repository", "language": "en"} [{"acronym": "dspace@iu-cerrahpasa"}, {"name": "i\u0307stanbul \u00fcniversitesi - cerrahpa\u015fa akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@i\u0307\u00fc-cerrahpa\u015fa"}] http://acikerisim.istanbulc.edu.tr institutional [] 2022-01-12 15:36:34 2021-01-04 11:40:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "istanbul university - cerrahpasa", "alternativeName": "", "country": "tr", "url": "https://www.istanbul.edu.tr", "identifier": [{"identifier": "https://ror.org/03a5qrr21", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.istanbulc.edu.tr/oai/request yes +9946 {"name": "istanbul kent university institutional repository", "language": "en"} [{"acronym": "dspace@kent"}, {"name": "i\u0307stanbul kent \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@kent"}] http://acikerisim.kent.edu.tr/xmlui institutional [] 2022-01-12 15:36:33 2020-10-06 09:52:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "istanbul kent university", "alternativeName": "", "country": "tr", "url": "http://www.kent.edu.tr", "identifier": [{"identifier": "https://ror.org/01w9wgg77", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.kent.edu.tr/oai/request yes +10004 {"name": "mu\u011fla s\u0131tk\u0131 ko\u00e7man university institutional repository", "language": "en"} [{"acronym": "dspace@mu\u011fla"}] http://acikerisim.mu.edu.tr institutional [] 2022-01-12 15:36:34 2020-11-25 08:47:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "mu\u011fla s\u0131tk\u0131 ko\u00e7man university", "alternativeName": "", "country": "tr", "url": "https://www.mu.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.mu.edu.tr/oai/request yes +10036 {"name": "t\u00fcrk-alman university institutional repository", "language": "en"} [{"acronym": "dspace@t\u00fcrk-alman"}, {"name": "t\u00fcrk-alman \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@t\u00fcrk-alman"}] http://openaccess.tau.edu.tr institutional [] 2022-01-12 15:36:34 2021-01-11 09:18:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "t\u00fcrk-alman university", "alternativeName": "", "country": "tr", "url": "http://www.tau.edu.tr", "identifier": [{"identifier": "https://ror.org/017bbc354", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.tau.edu.tr/oai/request yes +10007 {"name": "yeditepe university institutional repository", "language": "en"} [{"acronym": "dspace@yeditepe"}, {"name": "yeditepe \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@yeditepe"}] http://openaccess.yeditepe.edu.tr/xmlui/ institutional [] 2022-01-12 15:36:34 2020-11-27 08:45:22 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "yeditepe \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://yeditepe.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.yeditepe.edu.tr/oai/request yes +9936 {"name": "institutional repository - university of north bengal", "language": "en"} [{"acronym": "institutional repository nbu"}] http://ir.nbu.ac.in institutional [] 2022-01-12 15:36:33 2020-09-24 07:14:39 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "university of north bengal", "alternativeName": "", "country": "in", "url": "http://www.nbu.ac.in", "identifier": [{"identifier": "https://ror.org/039w8qr24", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir.nbu.ac.in/oai/request yes +9968 {"name": "abdelhamid mehri university constantine2 scholarlyworks repository", "language": "en"} [] http://dspace.univ-constantine2.dz institutional [] 2022-01-12 15:36:34 2020-10-23 08:16:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "abdelhamid mehri university constantine2", "alternativeName": "", "country": "dz", "url": "https://www.univ-constantine2.dz", "identifier": [{"identifier": "https://ror.org/056mctw68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univ-constantine2.dz/oai/request yes +10024 {"name": "dspace repository of digit\u00e1ln\u00ed knihovna uhk", "language": "en"} [] https://digilib.uhk.cz institutional [] 2022-01-12 15:36:34 2020-12-18 13:58:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of hradec kr\u00e1lov\u00e9", "alternativeName": "", "country": "cz", "url": "https://www.uhk.cz/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digilib.uhk.cz/oai/request yes +10028 {"name": "grodno state agrarian university repository", "language": "en"} [] https://elib.ggau.by institutional [] 2022-01-12 15:36:34 2021-01-04 10:10:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "grodno state agrarian university", "alternativeName": "", "country": "by", "url": "https://www.ggau.by/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://elib.ggau.by/oai/request yes +10002 {"name": "riga stradi\u0146\u0161 university repository", "language": "en"} [] https://dspace.rsu.lv institutional [] 2022-01-12 15:36:34 2020-11-25 08:31:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "riga stradi\u0146\u0161 university", "alternativeName": "rsu", "country": "lv", "url": "https://www.rsu.lv/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.rsu.lv/oai/request yes +9981 {"name": "scidar", "language": "en"} [] https://scidar.kg.ac.rs institutional [] 2022-01-12 15:36:34 2020-11-02 16:51:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of kragujevac", "alternativeName": "", "country": "rs", "url": "https://www.kg.ac.rs/eng", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://scidar.kg.ac.rs/oai/request yes +10030 {"name": "shiv dnyansagar: institutional repository of shivaji university", "language": "en"} [] http://ir.unishivaji.ac.in:8080/jspui institutional [] 2022-01-12 15:36:34 2021-01-04 10:58:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "shivaji university", "alternativeName": "", "country": "in", "url": "http://www.unishivaji.ac.in", "identifier": [{"identifier": "https://ror.org/01bsn4x02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10027 {"name": "scientific repository of the mogilev institute of the ministry of internal affairs of the republic of belarus", "language": "en"} [] https://elib.institutemvd.by governmental [] 2022-01-12 15:36:34 2021-01-04 09:20:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "mogilev institute of the ministry of internal affairs of the republic of belarus", "alternativeName": "", "country": "by", "url": "https://www.institutemvd.by", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://elib.institutemvd.by/oai/request yes +10074 {"name": "repositorio - unamba", "language": "es"} [] http://repositorio.unamba.edu.pe institutional [] 2022-01-12 15:36:35 2021-02-26 09:12:23 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad nacional micaela bastidas de apurimac", "alternativeName": "unamba", "country": "pe", "url": "https://www.unamba.edu.pe", "identifier": [{"identifier": "https://ror.org/013m3my89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unamba.edu.pe/oai yes +10001 {"name": "repositorio digital de la universidad villanueva", "language": "es"} [] http://digiuv.villanueva.edu institutional [] 2022-01-12 15:36:34 2020-11-24 16:21:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad villanueva", "alternativeName": "", "country": "es", "url": "https://www.villanueva.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digiuv.villanueva.edu/oai/request yes +9952 {"name": "repositorio ibero", "language": "es"} [] http://ri.ibero.mx institutional [] 2022-01-12 15:36:33 2020-10-12 08:11:09 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad iberoamericana ciudad de m\u00e9xico", "alternativeName": "ibero", "country": "mx", "url": "https://ibero.mx/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ri.ibero.mx/oai/request yes +9973 {"name": "repositorio ucc", "language": "es"} [] https://repository.ucc.edu.co institutional [] 2022-01-12 15:36:34 2020-10-28 07:42:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad cooperativa de colombia", "alternativeName": "ucc", "country": "co", "url": "https://www.ucc.edu.co/paginas/inicio.aspx", "identifier": [{"identifier": "https://ror.org/04td15k45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.ucc.edu.co/oai/request yes +9985 {"name": "aiias online repository", "language": "en"} [] https://dspace.aiias.edu institutional [] 2022-01-12 15:36:34 2020-11-06 10:36:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "adventist international instituted of advanced studies", "alternativeName": "aiias", "country": "ph", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.aiias.edu/oai/request yes +9945 {"name": "crs4 open archive", "language": "en"} [] https://dspace.crs4.it institutional [] 2022-01-12 15:36:33 2020-10-06 08:23:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "center for advanced studies, research and development n sardinia", "alternativeName": "crs4", "country": "it", "url": "https://www.crs4.it", "identifier": [{"identifier": "https://ror.org/03jdxdk20", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.crs4.it/oai/request yes +9988 {"name": "dspace @ p.e.societys modern college of arts, science and commerce (autonomous)", "language": "en"} [] http://125.99.47.158:8090/jspui institutional [] 2022-01-12 15:36:34 2020-11-09 08:36:05 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "learning_objects", "other_special_item_types"] [{"name": "progressive education societys modern college of arts, science and commerce (autonomous)", "alternativeName": "", "country": "in", "url": "http://moderncollegepune.edu.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://125.99.47.158:8090/oai/request yes +9954 {"name": "openmetu", "language": "en"} [] https://open.metu.edu.tr institutional [] 2022-01-12 15:36:34 2020-10-13 08:10:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "middle east technical university", "alternativeName": "metu", "country": "tr", "url": "https://www.metu.edu.tr", "identifier": [{"identifier": "https://ror.org/014weej12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://open.metu.edu.tr/oai/request yes +9947 {"name": "repositorio institucional de la universidad de la guajira", "language": "es"} [] https://repositoryinst.uniguajira.edu.co institutional [] 2022-01-12 15:36:33 2020-10-07 08:40:16 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "universidad de la guajira", "alternativeName": "", "country": "co", "url": "https://www.uniguajira.edu.co", "identifier": [{"identifier": "https://ror.org/04cjjhh62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositoryinst.uniguajira.edu.co/oai/request yes +9986 {"name": "repository of the university of the holy quran and taseel", "language": "en"} [] http://lib.uofq.edu.sd/index.html institutional [] 2022-01-12 15:36:34 2020-11-09 08:18:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "learning_objects", "other_special_item_types"] [{"name": "the university of the holy quran and taseel", "alternativeName": "", "country": "sd", "url": "http://en.uofq.edu.sd", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9972 {"name": "reposit\u00f3rio da universidade portucalense", "language": "pt"} [] http://repositorio.uportu.pt institutional [] 2022-01-12 15:36:34 2020-10-23 09:25:29 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidade portucalense", "alternativeName": "upt", "country": "pt", "url": "https://www.upt.pt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.uportu.pt/oai/request yes +9996 {"name": "research repository of iain padangsidimpuan", "language": "en"} [] http://repo.iain-padangsidimpuan.ac.id institutional [] 2022-01-12 15:36:34 2020-11-16 08:19:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "iain padangsidimpuan", "alternativeName": "", "country": "id", "url": "https://www.iain-padangsidimpuan.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.iain-padangsidimpuan.ac.id/cgi/oai2 yes +9990 {"name": "electronic theses of iain padangsidimpuan", "language": "en"} [] http://etd.iain-padangsidimpuan.ac.id institutional [] 2022-01-12 15:36:34 2020-11-11 09:31:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "iain padangsidimpuan", "alternativeName": "", "country": "id", "url": "https://www.iain-padangsidimpuan.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://etd.iain-padangsidimpuan.ac.id/cgi/oai2 yes +9971 {"name": "widya mandala surabaya catholic university in madiun city campus repository", "language": "en"} [] http://repository.widyamandala.ac.id institutional [] 2022-01-12 15:36:34 2020-10-23 09:19:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "widya mandala surabaya catholic university in madiun city campus", "alternativeName": "", "country": "id", "url": "http://unika.widyamandala.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.widyamandala.ac.id/cgi/oai2 yes +9969 {"name": "repository universitas satya negara indonesia", "language": "en"} [] http://perpustakaan.usni.ac.id institutional [] 2022-01-12 15:36:34 2020-10-23 08:22:37 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universitas satya negara indonesia", "alternativeName": "", "country": "id", "url": "https://usni.ac.id", "identifier": [{"identifier": "https://ror.org/05c132b31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.usni.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repo.usni.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repo.usni.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repo.usni.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repo.usni.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes +10059 {"name": "door", "language": "en"} [] https://door.donau-uni.ac.at/search#?page=1&pagesize=10 institutional [] 2022-01-12 15:36:35 2021-02-16 14:01:56 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "danube university krems", "alternativeName": "", "country": "at", "url": "https://www.donau-uni.ac.at/en.html", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +9951 {"name": "hal - cnam", "language": "fr"} [] https://hal-cnam.archives-ouvertes.fr institutional [] 2022-01-12 15:36:33 2020-10-08 07:57:33 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "conservatoire national des arts et m\u00e9tiers", "alternativeName": "cnam", "country": "fr", "url": "https://www.cnam.fr", "identifier": [{"identifier": "https://ror.org/0175hh227", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +10012 {"name": "kayseri university - avesis", "language": "en"} [] https://avesis.kayseri.edu.tr institutional [] 2022-01-12 15:36:34 2020-12-04 09:40:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "kayseri university", "alternativeName": "", "country": "tr", "url": "https://www.kayseri.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10011 {"name": "kocaeli \u00fcniversitesi - avesi\u0307s", "language": "en"} [] https://avesis.kocaeli.edu.tr institutional [] 2022-01-12 15:36:34 2020-12-04 09:25:40 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "kocaeli university", "alternativeName": "", "country": "tr", "url": "http://www.kocaeli.edu.tr", "identifier": [{"identifier": "https://ror.org/0411seq30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.kocaeli.edu.tr/api/oai2 yes +10072 {"name": "yildiz technical university - avesis", "language": "en"} [{"name": "y\u0131ld\u0131z teknik \u00fcniversitesi - avesis", "language": "tr"}] https://avesis.yildiz.edu.tr institutional [] 2022-01-12 15:36:35 2021-02-26 08:50:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "yildiz technical university", "alternativeName": "ytu", "country": "tr", "url": "", "identifier": [{"identifier": "https://ror.org/0547yzj13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.yildiz.edu.tr/api/oai2 yes +9933 {"name": "ataturk university - avesis", "language": "en"} [{"name": "atat\u00fcrk \u00fcniversitesi - avesis", "language": "tr"}] https://avesis.atauni.edu.tr institutional [] 2022-01-12 15:36:33 2020-09-17 08:14:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "ataturk university", "alternativeName": "", "country": "tr", "url": "https://www.atauni.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.atauni.edu.tr/api/oai2 yes +10017 {"name": "galatasaray university - avesis", "language": "en"} [{"name": "galatasaray \u00fcniversitesi - avesis", "language": "tr"}] https://avesis.gsu.edu.tr institutional [] 2022-01-12 15:36:34 2020-12-08 15:23:32 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "galatasaray \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://gsu.edu.tr", "identifier": [{"identifier": "https://ror.org/00btgsb62", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.gsu.edu.tr/api/oai2 yes +10046 {"name": "gazi \u00fcniversitesi - avesis", "language": "tr"} [] https://avesis.gazi.edu.tr institutional [] 2022-01-12 15:36:34 2021-02-01 08:36:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "gazi university", "alternativeName": "", "country": "tr", "url": "http://gazi.edu.tr", "identifier": [{"identifier": "https://ror.org/054xkpr46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.gazi.edu.tr/api/oai2 yes +10044 {"name": "metu - avesis", "language": "en"} [] https://avesis.metu.edu.tr institutional [] 2022-01-12 15:36:34 2021-01-22 09:38:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "middle east technical university", "alternativeName": "", "country": "tr", "url": "https://www.metu.edu.tr", "identifier": [{"identifier": "https://ror.org/014weej12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://avesis.metu.edu.tr/api/oai2 yes +10056 {"name": "nrc digital repository", "language": "en"} [{"acronym": "nrc-dr"}, {"name": "d\u00e9p\u00f4t num\u00e9rique du cnrc", "language": "fr"}, {"acronym": "nrc-dr"}] https://nrc-digital-repository.canada.ca/ institutional [] 2022-01-12 15:36:35 2021-02-08 10:36:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "national research council of canada", "alternativeName": "nrc", "country": "ca", "url": "https://nrc.canada.ca", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://oai-pmh.nrc-cnrc.gc.ca/dr-dn yes +10042 {"name": "yareta", "language": "en"} [] https://yareta.unige.ch institutional [] 2022-01-12 15:36:34 2021-01-19 12:01:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "university of geneva", "alternativeName": "", "country": "ch", "url": "https://www.unige.ch", "identifier": [{"identifier": "https://ror.org/01swzsf04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.unige.ch/eresearch/en/services/yareta/policies/", "type": "metadata"}, {"policy_url": "https://www.unige.ch/eresearch/en/services/yareta/policies/", "type": "data"}, {"policy_url": "https://www.unige.ch/eresearch/en/services/yareta/policies/", "type": "content"}, {"policy_url": "https://www.unige.ch/eresearch/en/services/yareta/policies/", "type": "submission"}, {"policy_url": "https://www.unige.ch/eresearch/en/services/yareta/policies/", "type": "preservation"}] {"name": "other", "version": ""} https://yareta.unige.ch/oai?verb=identify yes +9934 {"name": "datahub", "language": "en"} [] https://datahub.hku.hk institutional [] 2022-01-12 15:36:33 2020-09-21 07:44:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "the university of hong kong", "alternativeName": "hku", "country": "hk", "url": "https://hku.hk", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listrecords&metadataprefix=oai_dc&set=portal_886 yes +10050 {"name": "commonknowledge", "language": "en"} [] https://commons.pacificu.edu institutional [] 2022-01-12 15:36:34 2021-02-02 11:38:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "learning_objects"] [{"name": "pacific university", "alternativeName": "", "country": "us", "url": "https://www.pacificu.edu", "identifier": [{"identifier": "https://ror.org/059z5w858", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes 5796 12191 +10045 {"name": "repositori universitas faletehan", "language": "id"} [] http://perpustakaan.uf.ac.id/etd institutional [] 2022-01-12 15:36:34 2021-01-29 10:03:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "univeritas faletehan", "alternativeName": "", "country": "id", "url": "https://www.uf.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://perpustakaan.uf.ac.id/etd/oai2.php?verb=listrecords&metadata yes +10008 {"name": "digital library of the jan kochanowski university", "language": "en"} [{"name": "biblioteka cyfrowa uniwersytetu jana kochanowskiego", "language": "pl"}] https://bibliotekacyfrowa.ujk.edu.pl/dlibra institutional [] 2022-01-12 15:36:34 2020-11-27 08:53:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "jan kochanowski university in kielce", "alternativeName": "", "country": "pl", "url": "https://www.ujk.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} https://bibliotekacyfrowa.ujk.edu.pl/dlibra/oai-pmh-repository.xml yes +10006 {"name": "repository of the jan kochanowski university", "language": "en"} [{"name": "repozytorium uniwersytetu jana kochanowskiego", "language": "pl"}] https://repozytorium.ujk.edu.pl/dlibra institutional [] 2022-01-12 15:36:34 2020-11-26 09:48:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "jan kochanowski university in kielce", "alternativeName": "", "country": "pl", "url": "https://www.ujk.edu.pl", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} https://repozytorium.ujk.edu.pl/dlibra/oai-pmh-repository.xml yes +10073 {"name": "pubdb", "language": "en"} [] https://pubdb.desy.de institutional [] 2022-01-12 15:36:35 2021-02-26 08:57:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "deutsches elektronen-synchrotron, desy", "alternativeName": "", "country": "de", "url": "https://www.desy.de", "identifier": [{"identifier": "https://ror.org/01js2sh04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://pubdb.desy.de/oai2d yes +10037 {"name": "edata: the stfc research data repository", "language": "en"} [] https://edata.stfc.ac.uk institutional [] 2022-01-12 15:36:34 2021-01-11 09:30:12 ["science", "technology"] ["datasets", "software"] [{"name": "science and technology facilities council", "alternativeName": "stfc", "country": "gb", "url": "https://www.ukri.org/councils/stfc", "identifier": [{"identifier": "https://ror.org/057g20z61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://edata.stfc.ac.uk/page/policy", "type": "metadata"}, {"policy_url": "https://edata.stfc.ac.uk/page/policy", "type": "data"}, {"policy_url": "https://edata.stfc.ac.uk/page/policy", "type": "submission"}, {"policy_url": "https://edata.stfc.ac.uk/page/policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://edata.stfc.ac.uk/oai/request yes +9984 {"name": "isti open portal", "language": "it"} [] https://openportal.isti.cnr.it institutional [] 2022-01-12 15:36:34 2020-11-06 09:59:42 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "other_special_item_types"] [{"name": "institute of information science and technologies \"alessandro faedo\" - national research council", "alternativeName": "", "country": "it", "url": "https://www.isti.cnr.it/en", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://openportal.isti.cnr.it/isti-guidelines/policy-open-access-dell-isti", "type": "content"}, {"policy_url": "https://openportal.isti.cnr.it/isti-guidelines/policy-open-access-dell-isti", "type": "submission"}] {"name": "other", "version": ""} https://openportal.isti.cnr.it/oai yes +10022 {"name": "university of science & technology repository", "language": "en"} [{"acronym": "ust repository"}] http://repo.ust.edu.sd:8080/xmlui/ institutional [] 2022-01-12 15:36:34 2020-12-16 16:13:26 ["science", "technology"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of science & technology", "alternativeName": "ust", "country": "sd", "url": "http://ust.edu.sd", "identifier": [{"identifier": "https://ror.org/004qjck53", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repos.ust.edu.sd:8080/oai/request yes +10013 {"name": "repositorio de resultados de investigaci\u00f3n del inia", "language": "es"} [] http://r2i2.inia.es institutional [] 2022-01-12 15:36:34 2020-12-04 09:54:01 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "instituto nacional de investigaci\u00f3n y tecnolog\u00eda agraria y alimentaria", "alternativeName": "inia", "country": "es", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://r2i2.inia.es/oai/request yes +9944 {"name": "orvium", "language": "en"} [] https://dapp.orvium.io aggregating [] 2022-01-12 15:36:33 2020-09-29 15:12:24 ["science", "technology"] ["journal_articles"] [{"name": "orvium", "alternativeName": "", "country": "ee", "url": "https://orvium.io", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} https://dapp.orvium.io/api/v1/oai yes +10034 {"name": "knowledge management system of first institute of oceanography, mnr", "language": "en"} [{"name": "\u81ea\u7136\u8d44\u6e90\u90e8\u7b2c\u4e00\u6d77\u6d0b\u7814\u7a76\u6240", "language": "zh"}] http://ir.fio.com.cn:8080/ institutional [] 2022-01-12 15:36:34 2021-01-06 09:40:59 ["science"] ["journal_articles"] [{"name": "first institute of oceanography, ministry of natural resources", "alternativeName": "", "country": "cn", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} yes +10069 {"name": "redivia", "language": "ca"} [] http://redivia.gva.es institutional [] 2022-01-12 15:36:35 2021-02-22 08:13:27 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "instituto valenciano de investigaciones agrarias", "alternativeName": "", "country": "es", "url": "http://ivia.gva.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://redivia.gva.es/oai/request yes +9943 {"name": "biblioteca digital agropecuaria de colombia", "language": "es"} [] https://repository.agrosavia.co disciplinary [] 2022-01-12 15:36:33 2020-09-28 07:35:35 ["science"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "corporaci\u00f3n colombiana de investigaci\u00f3n agropecuaria", "alternativeName": "", "country": "co", "url": "https://www.agrosavia.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.agrosavia.co/oai/request yes +10029 {"name": "agrospace - repository of the university of belgrade, faculty of agriculture", "language": "en"} [] http://aspace.agrif.bg.ac.rs institutional [] 2022-01-12 15:36:34 2021-01-04 10:41:32 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of belgrade, faculty of agriculture", "alternativeName": "", "country": "rs", "url": "http://www.agrif.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://aspace.agrif.bg.ac.rs/files/policy-agrospace-en.html", "type": "metadata"}, {"policy_url": "http://aspace.agrif.bg.ac.rs/files/policy-agrospace-en.html", "type": "content"}, {"policy_url": "http://aspace.agrif.bg.ac.rs/files/policy-agrospace-en.html", "type": "submission"}, {"policy_url": "http://aspace.agrif.bg.ac.rs/files/policy-agrospace-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://aspace.agrif.bg.ac.rs/oai/request yes +10026 {"name": "ag data commons", "language": "en"} [] https://data.nal.usda.gov governmental [] 2022-01-12 15:36:34 2021-01-04 08:49:31 ["science"] ["datasets"] [{"name": "national agricultural library", "alternativeName": "", "country": "us", "url": "https://www.nal.usda.gov", "identifier": [{"identifier": "https://ror.org/00z6b1508", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +10053 {"name": "agrirxiv", "language": "en"} [] https://agrirxiv.org/ disciplinary [] 2022-01-12 15:36:34 2021-02-05 09:33:09 ["science"] ["journal_articles"] [{"name": "cabi", "alternativeName": "", "country": "gb", "url": "https://www.cabi.org", "identifier": [{"identifier": "https://ror.org/02y5sbr94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://agrirxiv.org/about/", "type": "data"}, {"policy_url": "https://agrirxiv.org/about/", "type": "content"}] {"name": "other", "version": ""} yes +10035 {"name": "open forest data", "language": "en"} [] https://dataverse.openforestdata.pl institutional [] 2022-01-12 15:36:34 2021-01-11 08:37:51 ["science"] ["datasets"] [{"name": "mammal research institute, polish academy of sciences", "alternativeName": "", "country": "pl", "url": "https://ibs.bialowieza.pl", "identifier": [{"identifier": "https://ror.org/05pz4yk52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dataverse.openforestdata.pl/oai yes +10039 {"name": "bonares repository", "language": "en"} [] https://maps.bonares.de/mapapps/resources/apps/bonares institutional [] 2022-01-12 15:36:34 2021-01-14 08:03:58 ["science"] ["datasets"] [{"name": "leibniz centre for agricultural landscape research", "alternativeName": "zalf", "country": "de", "url": "https://www.zalf.de", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://doi.org/10.20387/bonares-5pgg-8yrp", "type": "metadata"}, {"policy_url": "https://doi.org/10.20387/bonares-e1az-etd7", "type": "data"}, {"policy_url": "https://doi.org/10.20387/bonares-e1az-etd7", "type": "content"}, {"policy_url": "https://doi.org/10.20387/bonares-e1az-etd7", "type": "submission"}, {"policy_url": "https://doi.org/10.20387/bonares-e1az-etd7", "type": "preservation"}] {"name": "other", "version": ""} yes +10018 {"name": "public policy repository", "language": "en"} [{"acronym": "ppr"}] http://repository.kippra.or.ke institutional [] 2022-01-12 15:36:34 2020-12-14 08:17:52 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "kenya institute for public policy research and analysis", "alternativeName": "kippra", "country": "ke", "url": "https://kippra.or.ke", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.kippra.or.ke/oai/request yes +9998 {"name": "digital collection of ceibal foundation", "language": "en"} [{"name": "repositorio digital de fundaci\u00f3n ceibal", "language": "es"}] https://digital.fundacionceibal.edu.uy institutional [] 2022-01-12 15:36:34 2020-11-19 09:46:30 ["social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "fundaci\u00f3n ceibal", "alternativeName": "", "country": "uy", "url": "http://fundacionceibal.edu.uy", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +9997 {"name": "repositorio upel", "language": ""} [] http://espaciodigital.upel.edu.ve institutional [] 2022-01-12 15:36:34 2020-11-16 08:31:22 ["social sciences"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "universidad pedag\u00f3gica experimental libertador", "alternativeName": "upel", "country": "ve", "url": "http://www.upel.edu.ve", "identifier": [{"identifier": "https://ror.org/05xc4qj60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://espaciodigital.upel.edu.ve/oai/request yes +10020 {"name": "repositorio institucional de la asociaci\u00f3n mutual de protecci\u00f3n familiar", "language": "es"} [{"acronym": "ampf"}] http://repositorio.ampf.org.ar/greenstone/library institutional [] 2022-01-12 15:36:34 2020-12-15 15:07:37 ["social sciences"] ["books_chapters_and_sections"] [{"name": "asociaci\u00f3n mutual de protecci\u00f3n familiar", "alternativeName": "", "country": "ar", "url": "https://www.ampf.org.ar/ampf", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "greenstone", "version": ""} http://repositorio.ampf.org.ar/greenstone/oaiserver yes +9982 {"name": "myanmar education research and learning portal", "language": "en"} [{"acronym": "meral"}] https://meral.edu.mm governmental [] 2022-01-12 15:36:34 2020-11-04 09:52:11 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "myanmar rectors\u2019 committee", "alternativeName": "", "country": "mm", "url": "http://rectorscommittee.edu.mm", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "weko", "version": ""} https://meral.edu.mm/oai yes +10058 {"name": "etri knowledge sharing platform", "language": "en"} [] https://ksp.etri.re.kr institutional [] 2022-01-12 15:36:35 2021-02-11 08:11:12 ["technology", "engineering"] ["patents"] [{"name": "electronics and telecommunications research institute", "alternativeName": "", "country": "kr", "url": "https://www.etri.re.kr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://ksp.etri.re.kr/ksp/oai yes +10005 {"name": "budapest university of technology and economy digital archives", "language": "en"} [{"acronym": "mda"}] http://repozitorium.omikk.bme.hu institutional [] 2022-01-12 15:36:34 2020-11-25 08:54:38 ["technology"] ["theses_and_dissertations"] [{"name": "budapest university of technology and economy", "alternativeName": "bme", "country": "hu", "url": "http://www.bme.hu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repozitorium.omikk.bme.hu/oai/request yes +10070 {"name": "institutional repository of imdea nanociencia", "language": "en"} [{"name": "repositorio de imdea nanociencia", "language": "es"}] https://repositorio.imdeananociencia.org institutional [] 2022-01-12 15:36:35 2021-02-22 08:23:59 ["technology"] ["journal_articles"] [{"name": "imdea nanociencia", "alternativeName": "", "country": "es", "url": "http://nanociencia.imdea.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.imdeananociencia.org/oai/request yes +9950 {"name": "repositorio universitario de la dgtic, unam", "language": "es"} [] http://www.ru.tic.unam.mx institutional [] 2022-01-12 15:36:33 2020-10-08 07:50:17 ["technology"] ["journal_articles"] [{"name": "unam, dgtic", "alternativeName": "direcci\u00f3n general de c\u00f3mputo y de tecnolog\u00edas de informaci\u00f3n y comunicaci\u00f3n de la universidad nacional aut\u00f3noma de m\u00e9xico", "country": "mx", "url": "https://www.tic.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.ru.tic.unam.mx:8080/oai/request yes +10021 {"name": "plemochoe repository", "language": "en"} [] https://repo.euc.ac.cy institutional [] 2020-12-15 15:15:33 2020-12-15 15:14:56 [] ["theses_and_dissertations"] [{"name": "european university cyprus", "alternativeName": "", "country": "cy", "url": "https://euc.ac.cy", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repo.euc.ac.cy/oai/request yes +10186 {"name": "the knowledge base of the university of gda\u0144sk", "language": "en"} [{"name": "baza wiedzy uniwersytetu gda\u0144skiego", "language": "pl"}] https://repozytorium.bg.ug.edu.pl institutional [] 2022-01-12 15:36:36 2021-07-26 07:59:23 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "the university of gda\u0144sk", "alternativeName": "", "country": "pl", "url": "https://ug.edu.pl", "identifier": [{"identifier": "https://ror.org/011dv8m48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} yes +10185 {"name": "repositorio institucional del centro cultural de la cooperaci\u00f3n floreal gorini", "language": "es"} [] https://repositorioccc.omeka.net institutional [] 2022-01-12 15:36:36 2021-07-22 07:40:24 ["arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "centro cultural de la cooperaci\u00f3n floreal gorini", "alternativeName": "", "country": "ar", "url": "https://www.centrocultural.coop/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} yes +10142 {"name": "institute of art history repository", "language": "en"} [{"acronym": "podest"}, {"name": "repozitorij instituta za povijest umjetnosti", "language": "hr"}, {"acronym": "podest"}] https://podest.ipu.hr institutional [] 2022-01-12 15:36:36 2021-06-03 15:54:35 ["arts", "humanities"] ["journal_articles", "books_chapters_and_sections"] [{"name": "institute of art history repository", "alternativeName": "", "country": "hr", "url": "https://www.ipu.hr", "identifier": [{"identifier": "https://ror.org/00wmm1d15", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://podest.ipu.hr/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://podest.ipu.hr/politike-repozitorija", "type": "data"}, {"policy_url": "https://podest.ipu.hr/politike-repozitorija", "type": "content"}, {"policy_url": "https://podest.ipu.hr/politike-repozitorija", "type": "submission"}, {"policy_url": "https://podest.ipu.hr/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://podest.ipu.hr/oai yes +10132 {"name": "]a[repository", "language": "en"} [] https://repository.akbild.ac.at institutional [] 2022-01-12 15:36:36 2021-05-25 07:28:48 ["arts"] ["journal_articles", "books_chapters_and_sections", "other_special_item_types"] [{"name": "academy of fine arts vienna", "alternativeName": "", "country": "at", "url": "https://www.akbild.ac.at", "identifier": [{"identifier": "https://ror.org/029djt864", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.akbild.ac.at/portal_en/library/repository/repository", "type": "data"}] {"name": "other", "version": ""} yes +10093 {"name": "technorep - faculty of technology and metallurgy repository", "language": "en"} [] http://technorep.tmf.bg.ac.rs institutional [] 2022-01-12 15:36:35 2021-03-24 16:22:11 ["engineering"] ["journal_articles"] [{"name": "university of belgrade", "alternativeName": "", "country": "rs", "url": "http://www.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://technorep.tmf.bg.ac.rs/files/policy-technorep-en.html", "type": "metadata"}, {"policy_url": "http://technorep.tmf.bg.ac.rs/files/policy-technorep-en.html", "type": "content"}, {"policy_url": "http://technorep.tmf.bg.ac.rs/files/policy-technorep-en.html", "type": "submission"}, {"policy_url": "http://technorep.tmf.bg.ac.rs/files/policy-technorep-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://technorep.tmf.bg.ac.rs/oai/request yes +10087 {"name": "repositorio cientifico del instituto nacional de salud", "language": "es"} [] https://repositorio.ins.gob.pe institutional [] 2022-01-12 15:36:35 2021-03-19 10:24:36 ["health and medicine", "science"] ["unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "instituto nacional de salud", "alternativeName": "", "country": "pe", "url": "https://web.ins.gob.pe", "identifier": [{"identifier": "https://ror.org/03gx6zj11", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ins.gob.pe/oai/request yes +10088 {"name": "repository of the institute \"torlak\"", "language": "en"} [{"acronym": "intor"}] http://intor.torlakinstitut.com institutional [] 2022-01-12 15:36:35 2021-03-19 10:38:06 ["health and medicine", "science"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute of virology, vaccines and sera \u201ctorlak\u201d", "alternativeName": "", "country": "rs", "url": "http://torlakinstitut.com", "identifier": [{"identifier": "https://ror.org/0150fxq66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://intor.torlakinstitut.com/files/policy-intor-en.html", "type": "metadata"}, {"policy_url": "http://intor.torlakinstitut.com/files/policy-intor-en.html", "type": "data"}, {"policy_url": "http://intor.torlakinstitut.com/files/policy-intor-en.html", "type": "content"}, {"policy_url": "http://intor.torlakinstitut.com/files/policy-intor-en.html", "type": "submission"}, {"policy_url": "http://intor.torlakinstitut.com/files/policy-intor-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://intor.torlakinstitut.com/oai/request yes +10166 {"name": "repositori stikes indah medan", "language": "id"} [] http://repository.stikesindah.ac.id/repo institutional [] 2022-01-12 15:36:36 2021-06-29 07:49:44 ["health and medicine", "science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "sekolah tinggi ilmu kesehatan indah medan", "alternativeName": "", "country": "id", "url": "http://stikesindah.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10108 {"name": "repository of the institute for medical research", "language": "en"} [{"acronym": "rimi"}] http://rimi.imi.bg.ac.rs institutional [] 2022-01-12 15:36:35 2021-04-26 08:56:32 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute for medical research, university of belgrade", "alternativeName": "", "country": "rs", "url": "http://imi.bg.ac.rs", "identifier": [{"identifier": "https://ror.org/02qsmb048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rimi.imi.bg.ac.rs/files/policy-rimi-en.html", "type": "metadata"}, {"policy_url": "http://rimi.imi.bg.ac.rs/files/policy-rimi-en.html", "type": "data"}, {"policy_url": "http://rimi.imi.bg.ac.rs/files/policy-rimi-en.html", "type": "content"}, {"policy_url": "http://rimi.imi.bg.ac.rs/files/policy-rimi-en.html", "type": "submission"}, {"policy_url": "http://rimi.imi.bg.ac.rs/files/policy-rimi-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rimi.imi.bg.ac.rs/oai/request yes +10137 {"name": "repository of the childrens hospital zagreb", "language": "en"} [] https://repozitorij.kdb.hr institutional [] 2022-01-12 15:36:36 2021-05-27 09:01:33 ["health and medicine"] ["journal_articles"] [{"name": "childrens hospital zagreb", "alternativeName": "", "country": "hr", "url": "https://www.kdb.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.kdb.hr/en/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repozitorij.kdb.hr/en/politike-repozitorija", "type": "data"}, {"policy_url": "https://repozitorij.kdb.hr/en/politike-repozitorija", "type": "content"}, {"policy_url": "https://repozitorij.kdb.hr/en/politike-repozitorija", "type": "submission"}, {"policy_url": "https://repozitorij.kdb.hr/en/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://data.fulir.irb.hr/oai yes +10184 {"name": "afyonkarahisar health sciences university institutional repository", "language": "en"} [{"acronym": "dspace@afs\u00fc"}, {"name": "afyonkarahisar sa\u011fl\u0131k bilimleri \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@afs\u00fc"}] http://acikerisim.afsu.edu.tr institutional [] 2022-01-12 15:36:36 2021-07-22 07:14:58 ["health and medicine"] ["theses_and_dissertations"] [{"name": "afyonkarahisar health sciences university", "alternativeName": "", "country": "tr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.afsu.edu.tr/oai yes +10153 {"name": "ankara sosyal bilimler university institutional repository", "language": "en"} [{"acronym": "dspace@asb\u00fc"}, {"name": "ankara sosyal bilimler \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@asb\u00fc"}] http://openaccess.asbu.edu.tr institutional [] 2022-01-12 15:36:36 2021-06-16 07:33:31 ["health and medicine"] ["journal_articles", "theses_and_dissertations"] [{"name": "ankara sosyal bilimler university", "alternativeName": "", "country": "tr", "url": "https://www.asbu.edu.tr", "identifier": [{"identifier": "https://ror.org/025y36b60", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.asbu.edu.tr/oai yes +10187 {"name": "repository stikes muhammadiyah kendal", "language": "en"} [] http://repo.stikesmuhkendal.ac.id/index.php/repository institutional [] 2022-01-12 15:36:36 2021-07-29 09:09:52 ["health and medicine"] ["unpub_reports_and_working_papers"] [{"name": "perpustakaan stikes muhammadiyah kendal", "alternativeName": "", "country": "id", "url": "http://lib.stikesmuhkendal.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://repo.stikesmuhkendal.ac.id/index.php/repository/oai yes +10172 {"name": "research portal amsterdam umc - vrije universiteit amsterdam", "language": "en"} [] https://research.vumc.nl institutional [] 2022-01-12 15:36:36 2021-07-02 10:47:38 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "amsterdam umc - vrije universiteit amsterdam", "alternativeName": "amsterdam umc", "country": "nl", "url": "https://www.vumc.nl", "identifier": [{"identifier": "https://ror.org/00q6h8f30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research.vumc.nl/ws/oai yes +10151 {"name": "merkur university hospital repository", "language": ""} [] https://repozitorij.kb-merkur.hr institutional [] 2022-01-12 15:36:36 2021-06-14 07:57:43 ["health and medicine"] ["conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "merkur university hospital", "alternativeName": "", "country": "hr", "url": "https://www.kb-merkur.hr", "identifier": [{"identifier": "https://ror.org/01b6d9h22", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} https://repozitorij.kb-merkur.hr/oai yes +10145 {"name": "faculty of dental medicine and health osijek repository", "language": "en"} [{"name": "repozitorij fakulteta za dentalnu medicinu i zdravstvo osijek", "language": "hr"}] https://repozitorij.fdmz.hr institutional [] 2022-01-12 15:36:36 2021-06-04 07:55:57 ["health and medicine"] ["theses_and_dissertations"] [{"name": "university of josip juraj strossmayer in osijek, faculty of dental medicine and health", "alternativeName": "", "country": "hr", "url": "http://www.fdmz.hr", "identifier": [{"identifier": "https://ror.org/05sw4wc49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.fdmz.hr/en/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repozitorij.fdmz.hr/en/politike-repozitorija", "type": "data"}, {"policy_url": "https://repozitorij.fdmz.hr/en/politike-repozitorija", "type": "content"}, {"policy_url": "https://repozitorij.fdmz.hr/en/politike-repozitorija", "type": "submission"}] {"name": "islandora", "version": ""} https://repozitorij.fdmz.hr/oai yes +10141 {"name": "repository of faculty of philosophy and religious studies", "language": "en"} [] https://repozitorij.ffrz.unizg.hr institutional [] 2022-01-12 15:36:36 2021-06-03 15:45:45 ["humanities"] ["theses_and_dissertations"] [{"name": "university of zagreb, faculty of philosophy and religious studies", "alternativeName": "", "country": "hr", "url": "https://www.ffrz.unizg.hr", "identifier": [{"identifier": "https://ror.org/00mv6sv71", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.ffrz.unizg.hr/en/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repozitorij.ffrz.unizg.hr/en/politike-repozitorija", "type": "data"}, {"policy_url": "https://repozitorij.ffrz.unizg.hr/en/politike-repozitorija", "type": "content"}, {"policy_url": "https://repozitorij.ffrz.unizg.hr/en/politike-repozitorija", "type": "submission"}, {"policy_url": "https://repozitorij.ffrz.unizg.hr/en/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://repozitorij.ffrz.unizg.hr/oai yes +10138 {"name": "repository of the institute of philosophy", "language": "en"} [{"name": "repozitorij instituta za filozofiju", "language": "hr"}] https://repozitorij.ifzg.hr institutional [] 2022-01-12 15:36:36 2021-05-27 09:10:07 ["humanities"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "institute of philosophy", "alternativeName": "", "country": "hr", "url": "https://www.ifzg.hr", "identifier": [{"identifier": "https://ror.org/00p574j49", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.ifzg.hr/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repozitorij.ifzg.hr/politike-repozitorija", "type": "data"}, {"policy_url": "https://repozitorij.ifzg.hr/politike-repozitorija", "type": "content"}, {"policy_url": "https://repozitorij.ifzg.hr/politike-repozitorija", "type": "submission"}, {"policy_url": "https://repozitorij.ifzg.hr/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://repozitorij.ifzg.hr/oai yes +10135 {"name": "archaeological map of the czech republic", "language": "en"} [{"acronym": "amcr"}] https://digiarchiv.aiscr.cz disciplinary [] 2022-01-12 15:36:36 2021-05-25 08:21:52 ["humanities"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "archeological information system of the czech republic", "alternativeName": "", "country": "cz", "url": "https://www.aiscr.cz", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.aiscr.cz/dapro/oai yes +10144 {"name": "repository of the university of rijeka, department of mathematics", "language": "en"} [{"acronym": "mathri repository"}, {"name": "repozitorij odjela za matematiku sveu\u010dili\u0161ta u rijeci", "language": "hr"}, {"acronym": "repozitorij mathri"}] https://repository.math.uniri.hr institutional [] 2022-01-12 15:36:36 2021-06-04 07:43:49 ["mathematics"] ["theses_and_dissertations"] [{"name": "university of rijeka, department of mathematics", "alternativeName": "", "country": "hr", "url": "https://www.math.uniri.hr", "identifier": [{"identifier": "https://ror.org/05r8dqr10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repository.math.uniri.hr/en/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repository.math.uniri.hr/en/politike-repozitorija", "type": "data"}, {"policy_url": "https://repository.math.uniri.hr/en/politike-repozitorija", "type": "content"}, {"policy_url": "https://repository.math.uniri.hr/en/politike-repozitorija", "type": "submission"}, {"policy_url": "https://repository.math.uniri.hr/en/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://repository.math.uniri.hr/oai yes +10171 {"name": "dataverseno", "language": "en"} [] https://dataverse.no institutional [] 2022-01-12 15:36:36 2021-07-02 10:12:15 ["science", "social sciences", "technology"] ["datasets"] [{"name": "uit the arctic university of norway", "alternativeName": "", "country": "no", "url": "https://en.uit.no", "identifier": [{"identifier": "https://ror.org/00wge5k78", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://site.uit.no/dataverseno/about/policy-framework/access-and-use-policy/", "type": "metadata"}, {"policy_url": "https://site.uit.no/dataverseno/about/policy-framework/", "type": "data"}, {"policy_url": "https://site.uit.no/dataverseno/about/policy-framework/deposit-agreement/", "type": "submission"}, {"policy_url": "https://site.uit.no/dataverseno/about/policy-framework/access-and-use-policy/", "type": "preservation"}, {"policy_url": "https://site.uit.no/dataverseno/about/policy-framework/preservation-policy/", "type": "preservation"}] {"name": "digitool", "version": ""} https://dataverse.no/oai yes +10182 {"name": "the british university in dubai (buid) digital repository", "language": "en"} [{"acronym": "bspace"}] https://bspace.buid.ac.ae institutional [] 2022-01-12 15:36:36 2021-07-19 07:11:23 ["science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "the british university in dubai", "alternativeName": "", "country": "ae", "url": "https://buid.ac.ae", "identifier": [{"identifier": "https://ror.org/00mc18523", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://library.buid.ac.ae/bspace_policy", "type": "metadata"}, {"policy_url": "https://library.buid.ac.ae/bspace_policy", "type": "data"}, {"policy_url": "https://library.buid.ac.ae/bspace_policy", "type": "content"}, {"policy_url": "https://library.buid.ac.ae/bspace_policy", "type": "submission"}, {"policy_url": "https://library.buid.ac.ae/bspace_policy", "type": "preservation"}] {"name": "dspace", "version": ""} https://bspace.buid.ac.ae/oai/request yes +10104 {"name": "repositorio institucional de la universidad san jorge", "language": "es"} [{"acronym": "r-usj"}] https://repositorio.usj.es institutional [] 2022-01-12 15:36:35 2021-04-16 14:52:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "universidad san jorge", "alternativeName": "usj", "country": "es", "url": "https://www.usj.es", "identifier": [{"identifier": "https://ror.org/01wbg2c90", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repositorio.usj.es/servicios/ni-033%20rev.0%20politica%20del%20repositorio%20institucional%20usj%20(r-usj).pdf", "type": "content"}, {"policy_url": "https://repositorio.usj.es/servicios/ni-033%20rev.0%20politica%20del%20repositorio%20institucional%20usj%20(r-usj).pdf", "type": "submission"}, {"policy_url": "https://repositorio.usj.es/servicios/ni-033%20rev.0%20politica%20del%20repositorio%20institucional%20usj%20(r-usj).pdf", "type": "preservation"}] {"name": "dspace", "version": ""} https://repositorio.usj.es/oai/request yes +10139 {"name": "repository of the university of slavonski brod", "language": ""} [] https://repozitorij.unisb.hr institutional [] 2022-01-12 15:36:36 2021-05-27 09:21:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "university of slavonski brod", "alternativeName": "", "country": "hr", "url": "https://www.unisb.hr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repozitorij.unisb.hr/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://repozitorij.unisb.hr/politike-repozitorija", "type": "data"}, {"policy_url": "https://repozitorij.unisb.hr/politike-repozitorija", "type": "content"}, {"policy_url": "https://repozitorij.unisb.hr/politike-repozitorija", "type": "submission"}, {"policy_url": "https://repozitorij.unisb.hr/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://repozitorij.unisb.hr/oai yes +10083 {"name": "beykoz university institutional repository", "language": "en"} [{"acronym": "dspace@beykoz"}, {"name": "beykoz \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@beykoz"}] http://acikerisim.beykoz.edu.tr institutional [] 2022-01-12 15:36:35 2021-03-18 10:03:45 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "beykoz university", "alternativeName": "", "country": "tr", "url": "http://www.beykoz.edu.tr", "identifier": [{"identifier": "https://ror.org/01wmq0x68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} http://acikerisim.beykoz.edu.tr/oai yes +10157 {"name": "van y\u00fcz\u00fcnc\u00fc y\u0131l university academic data management system", "language": "en"} [{"name": "van y\u00fcz\u00fcnc\u00fc y\u0131l \u00fcniversitesi akademik veri y\u00f6netim sistemi", "language": "tr"}] https://avesis.yyu.edu.tr institutional [] 2022-01-12 15:36:36 2021-06-18 07:48:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "van y\u00fcz\u00fcnc\u00fc y\u0131l university", "alternativeName": "", "country": "tr", "url": "https://www.yyu.edu.tr", "identifier": [{"identifier": "https://ror.org/041jyzp61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "", "version": ""} https://avesis.yyu.edu.tr/api/oai2 yes +10148 {"name": "hal ecole nationale des chartes", "language": "fr"} [] https://hal-enc.archives-ouvertes.fr institutional [] 2022-01-12 15:36:36 2021-06-08 07:50:58 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "ecole nationale des chartes", "alternativeName": "", "country": "fr", "url": "http://www.chartes.psl.eu", "identifier": [{"identifier": "https://ror.org/013xvg556", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes +10176 {"name": "alt\u0131nba\u015f university institutional repository", "language": "en"} [{"acronym": "dspace@alt\u0131nba\u015f"}, {"name": "alt\u0131nba\u015f \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@alt\u0131nba\u015f"}] http://openaccess.altinbas.edu.tr/xmlui institutional [] 2022-01-12 15:36:36 2021-07-12 07:37:17 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "alt\u0131nba\u015f university", "alternativeName": "", "country": "tr", "url": "https://www.altinbas.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.altinbas.edu.tr/oai yes +10100 {"name": "i\u0307stanbul atlas university institutional repository", "language": "en"} [{"acronym": "dspace@atlas"}, {"name": "i\u0307stanbul atlas \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@atlas"}] http://acikerisim.atlas.edu.tr institutional [] 2022-01-12 15:36:35 2021-04-12 12:23:48 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "i\u0307stanbul atlas university", "alternativeName": "", "country": "tr", "url": "https://www.atlas.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.atlas.edu.tr/oai/request yes +10089 {"name": "tokat gaziosmanpa\u015fa university institutional repository", "language": "en"} [{"acronym": "dspace@gop"}, {"name": "tokat gaziosmanpa\u015fa \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@gop"}] http://earsiv.gop.edu.tr institutional [] 2022-01-12 15:36:35 2021-03-19 10:56:25 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "tokat gaziosmanpa\u015fa university", "alternativeName": "", "country": "tr", "url": "http://www.gop.edu.tr", "identifier": [{"identifier": "https://ror.org/01rpe9k96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://earsiv.gop.edu.tr/oai/request yes +10122 {"name": "i\u0307stanbul galata university institutional repository", "language": "en"} [{"acronym": "dspace@galata"}, {"name": "i\u0307stanbul galata \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@galata"}] http://openaccess.galata.edu.tr institutional [] 2022-01-12 15:36:35 2021-05-19 07:11:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "i\u0307stanbul galata university", "alternativeName": "", "country": "tr", "url": "https://www.galata.edu.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.galata.edu.tr/oai yes +10152 {"name": "piri reis university institutional repository", "language": "en"} [{"acronym": "dspace@piri"}, {"name": "piri reis \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@piri"}] http://openaccess.pirireis.edu.tr institutional [] 2022-01-12 15:36:36 2021-06-14 08:05:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "piri reis univesity", "alternativeName": "", "country": "tr", "url": "http://www.pirireis.edu.tr", "identifier": [{"identifier": "https://ror.org/02eq60031", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://openaccess.pirireis.edu.tr/oai yes +10099 {"name": "malatya turgut \u00f6zal university institutional repository", "language": "en"} [{"acronym": "dspace@\u00f6zal"}, {"name": "malatya turgut \u00f6zal \u00fcniversitesi akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@\u00f6zal"}] http://acikerisim.ozal.edu.tr institutional [] 2022-01-12 15:36:35 2021-04-12 10:55:01 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "malatya turgut \u00f6zal university", "alternativeName": "", "country": "tr", "url": "https://ozal.edu.tr", "identifier": [{"identifier": "https://ror.org/01v2xem26", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.ozal.edu.tr/oai yes +10131 {"name": "repos. das open science repositoy der hcu", "language": "de"} [{"acronym": "repos"}] https://www.repos.hcu-hamburg.de/ institutional [] 2022-01-12 15:36:36 2021-05-25 07:20:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "hafencity universit\u00e4t hamburg", "alternativeName": "hcu", "country": "de", "url": "https://www.hcu-hamburg.de", "identifier": [{"identifier": "https://ror.org/01fzsd381", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repos.hcu-hamburg.de/oai/request yes +10078 {"name": "bahandian: institutional repository of central philippine university", "language": "en"} [] https://repository.cpu.edu.ph institutional [] 2022-01-12 15:36:35 2021-03-03 09:31:00 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "central philippine university", "alternativeName": "", "country": "ph", "url": "https://cpu.edu.ph", "identifier": [{"identifier": "https://ror.org/0238cf984", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.cpu.edu.ph/oai/request yes +10162 {"name": "centre de ressources virtuel des rivi\u00e8res du sud", "language": "fr"} [] https://rivieresdusud.uasz.sn institutional [] 2022-01-12 15:36:36 2021-06-24 08:07:51 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers"] [{"name": "universit\u00e9 assane seck de ziguinchor", "alternativeName": "", "country": "sn", "url": "", "identifier": [{"identifier": "https://ror.org/01xprs690", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10079 {"name": "reposit\u00f3rio institucional da unilab", "language": "pt"} [] http://repositorio.unilab.edu.br:8080/jspui institutional [] 2022-01-12 15:36:35 2021-03-10 15:34:36 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidade da integra\u00e7\u00e3o internacional da lusofonia afro-brasileira", "alternativeName": "unilab", "country": "br", "url": "http://www.unilab.edu.br", "identifier": [{"identifier": "https://ror.org/02p928v94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unilab.edu.br:8080/oai/request yes +10165 {"name": "repositorio digital institucional de la universidad de holgu\u00edn", "language": "es"} [] https://repositorio.uho.edu.cu institutional [] 2022-01-12 15:36:36 2021-06-28 08:02:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad de holgu\u00edn", "alternativeName": "", "country": "cu", "url": "https://www.uho.edu.cu", "identifier": [{"identifier": "https://ror.org/03m84a908", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.uho.edu.cu/oai yes +10178 {"name": "repositorio fundaci\u00f3n universitaria compensar", "language": "es"} [] https://repositoriocrai.ucompensar.edu.co institutional [] 2022-01-12 15:36:36 2021-07-14 07:43:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "fundaci\u00f3n universitaria compensar", "alternativeName": "", "country": "co", "url": "https://ucompensar.edu.co", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositoriocrai.ucompensar.edu.co/oai/request yes +10146 {"name": "repositorio universidad cat\u00f3lica de manizales", "language": "es"} [] https://repositorio.ucm.edu.co institutional [] 2022-01-12 15:36:36 2021-06-04 08:04:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad cat\u00f3lica de manizales", "alternativeName": "", "country": "co", "url": "https://www.ucm.edu.co", "identifier": [{"identifier": "https://ror.org/05kaxtp50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.ucm.edu.co/oai yes +10189 {"name": "mendelu repository", "language": ""} [] https://repozitar.mendelu.cz/xmlui institutional [] 2022-01-12 15:36:36 2021-08-02 08:33:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "mendel university in brno", "alternativeName": "mendelu", "country": "cz", "url": "https://mendelu.cz", "identifier": [{"identifier": "https://ror.org/058aeep47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repozitar.mendelu.cz/oai/openaire yes +10183 {"name": "najah national university repository", "language": "en"} [] https://repository.najah.edu institutional [] 2022-01-12 15:36:36 2021-07-19 07:36:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "najah national university", "alternativeName": "", "country": "ps", "url": "https://www.najah.edu", "identifier": [{"identifier": "https://ror.org/0046mja08", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.najah.edu/oai/request yes +10150 {"name": "repositorio digital fundaci\u00f3n universitaria juan n. corpas", "language": "es"} [] https://repositorio.juanncorpas.edu.co institutional [] 2022-01-12 15:36:36 2021-06-10 08:26:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["books_chapters_and_sections"] [{"name": "fundaci\u00f3n universitaria juan n. corpas", "alternativeName": "", "country": "co", "url": "https://www.juanncorpas.edu.co", "identifier": [{"identifier": "https://ror.org/04yk0nx57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.juanncorpas.edu.co/oai/request yes +10124 {"name": "repositorio institucional - unamad", "language": ""} [] https://repositorio.unamad.edu.pe institutional [] 2022-01-12 15:36:35 2021-05-19 07:32:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad nacional amaz\u00f3nica de madre de dios", "alternativeName": "", "country": "pe", "url": "https://www.unamad.edu.pe", "identifier": [{"identifier": "https://ror.org/00skffm42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unamad.edu.pe/oai/request yes +10177 {"name": "repositorio institucional upea", "language": "es"} [] http://repositorio.upea.bo institutional [] 2022-01-12 15:36:36 2021-07-12 07:45:24 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad p\u00fablica de el alto", "alternativeName": "upea", "country": "bo", "url": "https://www.upea.bo", "identifier": [{"identifier": "https://ror.org/05khdc453", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upea.bo/oai yes +10154 {"name": "scholarly works @ shsu", "language": "en"} [] https://shsu-ir.tdl.org institutional [] 2022-01-12 15:36:36 2021-06-16 07:51:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "sam houston state university", "alternativeName": "", "country": "us", "url": "https://shsu.edu", "identifier": [{"identifier": "https://ror.org/00yh3cz06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10173 {"name": "tcu digital repository", "language": "en"} [] https://repository.tcu.edu institutional [] 2022-01-12 15:36:36 2021-07-02 10:57:59 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "texas christian university", "alternativeName": "tcu", "country": "us", "url": "https://www.tcu.edu", "identifier": [{"identifier": "https://ror.org/054b0b564", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.tcu.edu/oai/request yes +10121 {"name": "university of eloued dspace", "language": "en"} [] http://dspace.univ-eloued.dz/ institutional [] 2022-01-12 15:36:35 2021-05-14 08:33:55 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of eloued", "alternativeName": "", "country": "dz", "url": "https://www.univ-eloued.dz/en/index.php/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.univ-eloued.dz/oai/request yes +10102 {"name": "gutenberg open science", "language": "en"} [] https://openscience.ub.uni-mainz.de institutional [] 2022-01-12 15:36:35 2021-04-15 07:30:19 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "johannes gutenberg universit\u00e4t", "alternativeName": "", "country": "de", "url": "https://www.uni-mainz.de", "identifier": [{"identifier": "https://ror.org/023b0x485", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://openscience.ub.uni-mainz.de/help-faq", "type": "content"}, {"policy_url": "https://openscience.ub.uni-mainz.de/help-faq", "type": "submission"}, {"policy_url": "https://openscience.ub.uni-mainz.de/help-faq", "type": "preservation"}] {"name": "dspace", "version": ""} https://openscience.ub.uni-mainz.de/oai/request yes +10169 {"name": "encompass digital archive", "language": "en"} [] https://encompass.eku.edu institutional [] 2022-01-12 15:36:36 2021-06-30 08:26:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "eastern kentucky university", "alternativeName": "", "country": "us", "url": "https://library.eku.edu", "identifier": [{"identifier": "https://ror.org/012xks909", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://encompass.eku.edu/about.html", "type": "content"}] {"name": "digital_commons", "version": ""} https://encompass.eku.edu/do/oai yes +10096 {"name": "publication of university of duna\u00fajv\u00e1ros", "language": "en"} [] http://publication.repo.uniduna.hu institutional [] 2022-01-12 15:36:35 2021-04-01 14:34:11 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of duna\u00fajv\u00e1ros", "alternativeName": "", "country": "hu", "url": "https://uniduna.hu", "identifier": [{"identifier": "https://ror.org/05x0g9h76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://publication.repo.uniduna.hu/cgi/oai2 yes +10155 {"name": "institutional repository of lcc international university", "language": "en"} [] https://vl.lcc.lt/repository institutional [] 2022-01-12 15:36:36 2021-06-16 07:59:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "lcc international university", "alternativeName": "", "country": "lt", "url": "https://lcc.lt", "identifier": [{"identifier": "https://ror.org/01rqcwn02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vl.lcc.lt/oai yes +10147 {"name": "hal - universit\u00e9 de technologie de troyes (utt)", "language": "fr"} [{"acronym": "hal - utt"}] https://hal-utt.archives-ouvertes.fr institutional [] 2022-01-12 15:36:36 2021-06-04 08:09:53 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universit\u00e9 de technologie de troyes", "alternativeName": "", "country": "fr", "url": "https://www.utt.fr", "identifier": [{"identifier": "https://ror.org/01qhqcj41", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/utt yes +10125 {"name": "university of opole base of knowledge", "language": "en"} [{"name": "baza wiedzy uniwersytetu opolskiego", "language": "pl"}] http://repo.uni.opole.pl/ institutional [] 2022-01-12 15:36:35 2021-05-19 07:37:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "university of opole", "alternativeName": "", "country": "pl", "url": "http://www.uni.opole.pl", "identifier": [{"identifier": "https://ror.org/04gbpnx96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} yes +10158 {"name": "rinarxiv preprint server of indonesia", "language": "en"} [] https://rinarxiv.lipi.go.id institutional [] 2022-01-12 15:36:36 2021-06-18 08:06:02 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "tim sains terbuka indonesia", "alternativeName": "", "country": "id", "url": "https://sainsterbuka.carrd.co/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} https://rinarxiv.lipi.go.id/oai yes +10076 {"name": "national open access research data archive", "language": "en"} [{"acronym": "midas"}, {"name": "nacionalinis atviros prieigos mokslini\u0173 tyrim\u0173 duomen\u0173 archyvas", "language": "lt"}, {"acronym": "midas"}] https://midas.lt/public-app.html#/midas?lang=en aggregating [] 2022-01-12 15:36:35 2021-03-03 09:10:10 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "vilnius university", "alternativeName": "", "country": "lt", "url": "https://www.vu.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10112 {"name": "repository for open data", "language": "en"} [{"acronym": "repod"}, {"name": "repozytorium otwartych danych", "language": "pl"}, {"acronym": "repod"}] https://repod.icm.edu.pl disciplinary [] 2022-01-12 15:36:35 2021-04-29 08:01:41 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "interdisciplinary centre for mathematical and computational modelling, university of warsaw", "alternativeName": "", "country": "pl", "url": "https://icm.edu.pl", "identifier": [{"identifier": "https://ror.org/039bjqg32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://repod.icm.edu.pl/terms-of-use-page.xhtml", "type": "metadata"}, {"policy_url": "https://repod.icm.edu.pl/terms-of-use-page.xhtml", "type": "data"}, {"policy_url": "https://repod.icm.edu.pl/terms-of-use-page.xhtml", "type": "submission"}, {"policy_url": "https://repod.icm.edu.pl/info/?page_id=354", "type": "submission"}, {"policy_url": "https://repod.icm.edu.pl/info/?page_id=354", "type": "preservation"}] {"name": "other", "version": ""} https://repod.icm.edu.pl/oai yes +10175 {"name": "riur - repositorio institucional de la universidad de la rioja", "language": "es"} [] https://investigacion.unirioja.es institutional [] 2022-01-12 15:36:36 2021-07-02 15:28:49 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "universidad de la rioja", "alternativeName": "", "country": "es", "url": "https://www.unirioja.es", "identifier": [{"identifier": "https://ror.org/0553yr311", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://investigacion.unirioja.es/oai/openaire yes +10120 {"name": "soar: scholarly open access at rutgers", "language": "en"} [{"acronym": "soar"}] https://soar.libraries.rutgers.edu/ institutional [] 2022-01-12 15:36:35 2021-05-13 07:20:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rutgers university", "alternativeName": "", "country": "us", "url": "https://www.rutgers.edu/", "identifier": [{"identifier": "https://ror.org/05vt9qd57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://na04.alma.exlibrisgroup.com/view/oai/01rut_inst/request yes +10092 {"name": "open access victoria university of wellington | te herenga waka", "language": "en"} [] https://openaccess.wgtn.ac.nz institutional [] 2022-01-12 15:36:35 2021-03-24 16:09:57 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "victoria university of wellington", "alternativeName": "", "country": "nz", "url": "https://wgtn.ac.nz", "identifier": [{"identifier": "https://ror.org/0040r6f76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://api.figshare.com/v2/oai?verb=listrecords&metadataprefix=oai_dc&set=portal_771 yes +10149 {"name": "repositorio acad\u00e9mico de la universidad central de chile", "language": "es"} [] https://ucdc.ent.sirsidynix.net/client/es_cl/repositorio institutional [] 2022-01-12 15:36:36 2021-06-08 08:18:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "universidad central de chile", "alternativeName": "", "country": "cl", "url": "https://www.ucentral.cl/", "identifier": [{"identifier": "https://ror.org/0577avk88", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ucdc.ent.sirsidynix.net/discovery-search/oaihandler yes +10161 {"name": "macquarie university research portal", "language": "en"} [] https://researchers.mq.edu.au institutional [] 2022-01-12 15:36:36 2021-06-22 07:34:35 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "macquarie university", "alternativeName": "", "country": "au", "url": "https://www.mq.edu.au", "identifier": [{"identifier": "https://ror.org/01sf06y89", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://research-management.mq.edu.au/ws/oai?verb=listrecords&metadataprefix=oai_dc&set=publications:all yes +10080 {"name": "aalto university\u2019s research portal", "language": "en"} [] https://research.aalto.fi institutional [] 2022-01-12 15:36:35 2021-03-10 15:42:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "aalto university", "alternativeName": "", "country": "fi", "url": "https://www.aalto.fi", "identifier": [{"identifier": "https://ror.org/020hwjq30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://acris.aalto.fi/ws/oai yes +10140 {"name": "repository of university of wroclaw", "language": "en"} [{"name": "repozytorium uniwersytetu wroc\u0142awskiego", "language": "pl"}] https://www.repozytorium.uni.wroc.pl/ institutional [] 2022-01-12 15:36:36 2021-06-01 08:28:18 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "university of wroclaw", "alternativeName": "", "country": "pl", "url": "https://uni.wroc.pl/en/", "identifier": [{"identifier": "https://ror.org/00yae6e25"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dlibra", "version": ""} yes +10091 {"name": "niner commons", "language": "en"} [] https://ninercommons.charlotte.edu institutional [] 2022-01-12 15:36:35 2021-03-23 09:55:13 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "university of north carolina at charlotte", "alternativeName": "", "country": "us", "url": "https://library.charlotte.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "islandora", "version": ""} yes +10143 {"name": "fulir data rudjer boskovic institute research data repository", "language": "en"} [{"name": "repozitorij istra\u017eiva\u010dkih podataka instituta ru\u0111er bo\u0161kovi\u0107", "language": "hr"}] https://data.fulir.irb.hr institutional [] 2022-01-12 15:36:36 2021-06-04 07:25:46 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["datasets"] [{"name": "ru\u0111er bo\u0161kovi\u0107 institute", "alternativeName": "", "country": "hr", "url": "https://www.irb.hr", "identifier": [{"identifier": "https://ror.org/02mw21745", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://data.fulir.irb.hr/politike-repozitorija", "type": "metadata"}, {"policy_url": "https://data.fulir.irb.hr/politike-repozitorija", "type": "data"}, {"policy_url": "https://data.fulir.irb.hr/politike-repozitorija", "type": "content"}, {"policy_url": "https://data.fulir.irb.hr/politike-repozitorija", "type": "submission"}, {"policy_url": "https://data.fulir.irb.hr/politike-repozitorija", "type": "preservation"}] {"name": "islandora", "version": ""} https://data.fulir.irb.hr/oai yes +10116 {"name": "repositorio institucional de acceso abierto de la facultad de tecnolog\u00eda y ciencias aplicadas de la universidad nacional catamarca", "language": "es"} [{"acronym": "riaa"}] http://repositorios.tecno.unca.edu.ar:8080/xmlui/ institutional [] 2022-01-12 15:36:35 2021-05-05 07:37:56 ["science", "technology"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "facultad de tecnolog\u00eda y ciencias aplicadas - universidad nacional de catamarca", "alternativeName": "", "country": "ar", "url": "http://tecno.unca.edu.ar", "identifier": [{"identifier": "https://ror.org/01za8kp04", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorios.tecno.unca.edu.ar:8080/oai/request yes +10167 {"name": "digital.inta", "language": "es"} [] https://digital.inta.es institutional [] 2022-01-12 15:36:36 2021-06-30 08:12:49 ["science", "technology"] ["journal_articles"] [{"name": "inta", "alternativeName": "instituto nacional de t\u00e9cnica aeroespacial", "country": "es", "url": "https://www.inta.es", "identifier": [{"identifier": "https://ror.org/02m44ak47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://digital.inta.es:8443/oai/request yes +10170 {"name": "docu-menta", "language": "es"} [] http://documenta.ciemat.es institutional [] 2022-01-12 15:36:36 2021-07-01 08:22:53 ["science", "technology"] ["journal_articles"] [{"name": "centro de investigaciones energ\u00e9ticas, medio ambientales y tecnol\u00f3gicas", "alternativeName": "ciemat", "country": "es", "url": "http://www.ciemat.es", "identifier": [{"identifier": "https://ror.org/05xx77y52", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://documenta.ciemat.es/oai/request yes +10188 {"name": "imdea networks institute digital repository", "language": ""} [] https://dspace.networks.imdea.org institutional [] 2022-01-12 15:36:36 2021-08-02 07:39:19 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "imdea networks institute", "alternativeName": "", "country": "es", "url": "https://networks.imdea.org", "identifier": [{"identifier": "https://ror.org/04mm9fg30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.networks.imdea.org/oai/request yes +10090 {"name": "toubkal: le catalogue national des th\u00e8ses et m\u00e9moires", "language": "fr"} [] https://toubkal.imist.ma institutional [] 2022-01-12 15:36:35 2021-03-19 11:06:21 ["science", "technology"] ["theses_and_dissertations"] [{"name": "institut marocain de linformation scientifique et technique", "alternativeName": "imist", "country": "ma", "url": "https://www.imist.ma", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://toubkal.imist.ma/oai/request yes +10129 {"name": "repository politeknik negeri bengkalis eprints", "language": "en"} [] http://eprints.polbeng.ac.id institutional [] 2022-01-12 15:36:35 2021-05-20 10:11:46 ["science", "technology"] ["other_special_item_types"] [{"name": "politeknik negeri bengkalis", "alternativeName": "", "country": "id", "url": "http://polbeng.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://eprints.polbeng.ac.id/cgi/oai2 yes +10095 {"name": "hva research database", "language": "en"} [{"acronym": "auas"}] https://research.hva.nl institutional [] 2022-01-12 15:36:35 2021-03-25 16:12:20 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "hogeschool van amsterdam", "alternativeName": "hva", "country": "nl", "url": "https://www.amsterdamuas.com", "identifier": [{"identifier": "https://ror.org/00y2z2s03", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://pure.hva.nl/ws/oai yes +10113 {"name": "macromolecular xtallography raw data repository", "language": "en"} [{"acronym": "mx-rdr"}] https://mxrdr.icm.edu.pl/ disciplinary [] 2022-01-12 15:36:35 2021-04-29 08:13:42 ["science"] ["datasets"] [{"name": "interdisciplinary centre for mathematical and computational modelling, university of warsaw", "alternativeName": "", "country": "pl", "url": "https://icm.edu.pl", "identifier": [{"identifier": "https://ror.org/039bjqg32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://mxrdr.icm.edu.pl/terms-of-use-page.xhtml", "type": "metadata"}, {"policy_url": "https://mxrdr.icm.edu.pl/terms-of-use-page.xhtml", "type": "data"}, {"policy_url": "https://mxrdr.icm.edu.pl/terms-of-use-page.xhtml", "type": "submission"}] {"name": "other", "version": ""} https://mxrdr.icm.edu.pl/oai yes +10098 {"name": "alse repository of ia\u0219i university of life sciences, romania", "language": "en"} [] https://repository.uaiasi.ro/xmlui institutional [] 2022-01-12 15:36:35 2021-04-12 10:49:50 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "the university of agricultural sciences and veterinary medicine ia\u015fi \"university of applied life sciences and environment\"", "alternativeName": "", "country": "ro", "url": "http://www.uaiasi.ro", "identifier": [{"identifier": "https://ror.org/01s1a1r54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.uaiasi.ro/oai/request yes +10133 {"name": "iris catalogo del gran sasso science institute - gssi", "language": "it"} [] https://iris.gssi.it institutional [] 2022-01-12 15:36:36 2021-05-25 07:54:42 ["science"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "gran sasso science institute", "alternativeName": "gssi", "country": "it", "url": "https://www.gssi.it", "identifier": [{"identifier": "https://ror.org/043qcb444", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://iris.gssi.it/oai/request?verb=identify yes +10117 {"name": "fiver - repository of the institute of field and vegetable crops", "language": "en"} [] http://fiver.ifvcns.rs institutional [] 2022-01-12 15:36:35 2021-05-10 07:20:32 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute of field and vegetable crops", "alternativeName": "", "country": "rs", "url": "https://ifvcns.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://fiver.ifvcns.rs/files/policy-fiver-en.html", "type": "metadata"}, {"policy_url": "http://fiver.ifvcns.rs/files/policy-fiver-en.html", "type": "data"}, {"policy_url": "http://fiver.ifvcns.rs/files/policy-fiver-en.html", "type": "content"}, {"policy_url": "http://fiver.ifvcns.rs/files/policy-fiver-en.html", "type": "submission"}, {"policy_url": "http://fiver.ifvcns.rs/files/policy-fiver-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://fiver.ifvcns.rs/oai/request yes +10160 {"name": "rivec - repository of the institute for vegetable crops", "language": "en"} [] http://rivec.institut-palanka.rs institutional [] 2022-01-12 15:36:36 2021-06-22 07:11:22 ["science"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute for vegetable crops", "alternativeName": "", "country": "rs", "url": "https://institut-palanka.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rivec.institut-palanka.rs/files/policy-rivec-en.html", "type": "metadata"}, {"policy_url": "http://rivec.institut-palanka.rs/files/policy-rivec-en.html", "type": "data"}, {"policy_url": "http://rivec.institut-palanka.rs/files/policy-rivec-en.html", "type": "content"}, {"policy_url": "http://rivec.institut-palanka.rs/files/policy-rivec-en.html", "type": "submission"}, {"policy_url": "http://rivec.institut-palanka.rs/files/policy-rivec-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rivec.institut-palanka.rs/oai/request yes +10134 {"name": "inptdat", "language": ""} [] https://www.inptdat.de disciplinary [] 2022-01-12 15:36:36 2021-05-25 08:03:47 ["science"] ["datasets", "patents"] [{"name": "leibniz institute for plasma science and technology", "alternativeName": "", "country": "de", "url": "https://www.inp-greifswald.de", "identifier": [{"identifier": "https://ror.org/004hd5y14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "drupal", "version": ""} yes +10119 {"name": "publication server of kempten university", "language": "en"} [{"name": "publikationsserver der hochschule kempten", "language": "de"}] https://opus4.kobv.de/opus4-hs-kempten/home institutional [] 2022-01-12 15:36:35 2021-05-12 16:11:53 ["science"] ["journal_articles", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "hochschule kempten", "alternativeName": "", "country": "de", "url": "https://www.hs-kempten.de", "identifier": [{"identifier": "https://ror.org/02m4p8096", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-hs-kempten/oai yes +10101 {"name": "world data centre for climate", "language": "en"} [{"acronym": "wdcc"}] https://cera-www.dkrz.de institutional [] 2022-01-12 15:36:35 2021-04-12 12:37:43 ["science"] ["datasets"] [{"name": "deutsches klimarechenzentrum gmbh", "alternativeName": "dkrz", "country": "de", "url": "https://www.dkrz.de", "identifier": [{"identifier": "https://ror.org/03ztgj037", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://c3grid1.dkrz.de:8080/oai/provider yes +10077 {"name": "croatian scientific bibliography", "language": "en"} [{"acronym": "crosbi"}, {"name": "hrvatska znanstvena bibliografija", "language": "hr"}, {"acronym": "crosbi"}] https://v2.sherpa.ac.uk/id/repository/10076 aggregating [] 2022-01-12 15:36:35 2021-03-03 09:19:27 ["science"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "ru\u0111er bo\u0161kovi\u0107 institute", "alternativeName": "", "country": "hr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://bib.irb.hr/oai2/ yes +10179 {"name": "warsaw university of life sciences base of knowledge", "language": "en"} [{"name": "baza wiedzy szko\u0142y g\u0142\u00f3wnej gospodarstwa wiejskiego w warszawie", "language": "pl"}] https://bw.sggw.edu.pl/index.seam institutional [] 2022-01-12 15:36:36 2021-07-14 07:59:05 ["science"] ["journal_articles", "books_chapters_and_sections"] [{"name": "warsaw university of life sciences", "alternativeName": "", "country": "pl", "url": "https://www.sggw.edu.pl", "identifier": [{"identifier": "https://ror.org/05srvzs48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10159 {"name": "ridaa-cfe repositorio institucional de acceso abierto del consejo de formaci\u00f3n en educaci\u00f3n", "language": "es"} [] http://repositorio.cfe.edu.uy/handle/123456789/5 institutional [] 2022-01-12 15:36:36 2021-06-18 08:12:51 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "consejo de formaci\u00f3n en educaci\u00f3n", "alternativeName": "", "country": "uy", "url": "http://www.cfe.edu.uy", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repositorio.cfe.edu.uy/page/politicas", "type": "metadata"}, {"policy_url": "http://repositorio.cfe.edu.uy/page/politicas", "type": "data"}, {"policy_url": "http://repositorio.cfe.edu.uy/page/politicas", "type": "content"}, {"policy_url": "http://repositorio.cfe.edu.uy/page/politicas", "type": "submission"}, {"policy_url": "http://repositorio.cfe.edu.uy/page/politicas", "type": "preservation"}] {"name": "dspace", "version": ""} https://repositorio.cfe.edu.uy/oai/request yes +10164 {"name": "rfasper - repository of the university of belgrade, faculty of special education and rehabilitation", "language": "en"} [] http://rfasper.fasper.bg.ac.rs institutional [] 2022-01-12 15:36:36 2021-06-28 07:33:00 ["social sciences"] ["journal_articles"] [{"name": "university of belgrade, faculty of special education and rehabilitation", "alternativeName": "", "country": "rs", "url": "http://www.fasper.bg.ac.rs", "identifier": [{"identifier": "https://ror.org/02qsmb048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rfasper.fasper.bg.ac.rs/files/policy-rfasper-en.html", "type": "metadata"}, {"policy_url": "http://rfasper.fasper.bg.ac.rs/files/policy-rfasper-en.html", "type": "data"}, {"policy_url": "http://rfasper.fasper.bg.ac.rs/files/policy-rfasper-en.html", "type": "content"}, {"policy_url": "http://rfasper.fasper.bg.ac.rs/files/policy-rfasper-en.html", "type": "submission"}, {"policy_url": "http://rfasper.fasper.bg.ac.rs/files/policy-rfasper-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rfasper.fasper.bg.ac.rs/oai/request yes +10114 {"name": "social data repository", "language": "en"} [{"acronym": "rds"}, {"name": "repozytorium danych spo\u0142ecznych", "language": "pl"}, {"acronym": "rds"}] https://rds.icm.edu.pl disciplinary [] 2022-01-12 15:36:35 2021-04-29 08:20:00 ["social sciences"] ["datasets"] [{"name": "interdisciplinary centre for mathematical and computational modelling, university of warsaw", "alternativeName": "", "country": "pl", "url": "https://icm.edu.pl", "identifier": [{"identifier": "https://ror.org/039bjqg32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://rds.icm.edu.pl/terms-of-use-page.xhtml", "type": "metadata"}, {"policy_url": "https://rds.icm.edu.pl/terms-of-use-page.xhtml", "type": "data"}, {"policy_url": "https://rds.icm.edu.pl/terms-of-use-page.xhtml", "type": "submission"}] {"name": "other", "version": ""} https://rds.icm.edu.pl/oai yes +10081 {"name": "smu research data repository", "language": "en"} [{"acronym": "smu rdr"}] http://researchdata.smu.edu.sg institutional [] 2022-01-12 15:36:35 2021-03-10 15:48:26 ["social sciences"] ["journal_articles", "datasets"] [{"name": "singapore management university", "alternativeName": "smu", "country": "sg", "url": "http://smu.edu.sg", "identifier": [{"identifier": "https://ror.org/050qmg959", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://researchguides.smu.edu.sg/rdr/terms", "type": "content"}, {"policy_url": "https://researchguides.smu.edu.sg/rdr/terms", "type": "submission"}] {"name": "other", "version": ""} yes +10094 {"name": "ipir - repository of the institute for educational research", "language": "en"} [] http://ipir.ipisr.org.rs institutional [] 2022-01-12 15:36:35 2021-03-25 15:58:47 ["social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "institute for educational research", "alternativeName": "", "country": "rs", "url": "https://www.ipisr.org.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ipir.ipisr.org.rs/oai/request yes +10180 {"name": "recursos educativos digitales", "language": "es"} [] http://www.repositorio.se.gob.hn governmental [] 2022-01-12 15:36:36 2021-07-15 07:32:18 ["social sciences"] ["learning_objects", "other_special_item_types"] [{"name": "secretar\u00eda de educaci\u00f3n de honduras", "alternativeName": "", "country": "hn", "url": "https://www.se.gob.hn", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://www.repositorio.se.gob.hn/oai yes +10103 {"name": "academic repository of municipal establishment \"kharkiv humanitarian and pedagogical academy\" of the kharkiv regional council", "language": "en"} [{"name": "\u0430\u043a\u0430\u0434\u0435\u043c\u0456\u0447\u043d\u0438\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0456\u0439 \u043a\u043e\u043c\u0443\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043a\u043b\u0430\u0434\u0443 \"\u0445\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u0430 \u0433\u0443\u043c\u0430\u043d\u0456\u0442\u0430\u0440\u043d\u043e-\u043f\u0435\u0434\u0430\u0433\u043e\u0433\u0456\u0447\u043d\u0430 \u0430\u043a\u0430\u0434\u0435\u043c\u0456\u044f\" \u0445\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u043d\u043e\u0457 \u0440\u0430\u0434\u0438", "language": "uk"}] http://repository.khpa.edu.ua:8080/jspui/ institutional [] 2022-01-12 15:36:35 2021-04-16 14:43:43 ["social sciences"] ["journal_articles"] [{"name": "municipal establishment \"kharkiv humanitarian and pedagogical academy\" of the kharkiv regional council", "alternativeName": "", "country": "ua", "url": "http://www.hgpa.kharkov.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.khpa.edu.ua:8080/oai/request yes +10107 {"name": "faculty of political sciences repository", "language": "en"} [{"acronym": "rfpn"}] http://rfpn.fpn.bg.ac.rs institutional [] 2022-01-12 15:36:35 2021-04-26 08:42:04 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "university of belgrade, faculty of political sciences", "alternativeName": "", "country": "rs", "url": "https://www.fpn.bg.ac.rs", "identifier": [{"identifier": "https://ror.org/02qsmb048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://rfpn.fpn.bg.ac.rs/files/policy-rfpn-en.html", "type": "metadata"}, {"policy_url": "http://rfpn.fpn.bg.ac.rs/files/policy-rfpn-en.html", "type": "data"}, {"policy_url": "http://rfpn.fpn.bg.ac.rs/files/policy-rfpn-en.html", "type": "content"}, {"policy_url": "http://rfpn.fpn.bg.ac.rs/files/policy-rfpn-en.html", "type": "submission"}, {"policy_url": "http://rfpn.fpn.bg.ac.rs/files/policy-rfpn-en.html", "type": "preservation"}] {"name": "dspace", "version": ""} http://rfpn.fpn.bg.ac.rs/oai/request yes +10123 {"name": "university of michigan law school scholarship repository", "language": "en"} [] https://repository.law.umich.edu institutional [] 2022-01-12 15:36:35 2021-05-19 07:24:41 ["social sciences"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of michigan law school", "alternativeName": "", "country": "us", "url": "https://michigan.law.umich.edu", "identifier": [{"identifier": "https://ror.org/00jmfr291", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} yes +10156 {"name": "temis: repositorio de investigaciones formativas en derecho", "language": "es"} [] https://derecho.unap.edu.pe/temis institutional [] 2022-01-12 15:36:36 2021-06-18 07:41:49 ["social sciences"] ["unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "facultad de ciencias jur\u00eddicas y pol\u00edticas de la universidad nacional del altiplano de puno", "alternativeName": "", "country": "pe", "url": "", "identifier": [{"identifier": "https://ror.org/03kqcyw85", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} https://derecho.unap.edu.pe/temis/oai-pmh-repository/request yes +10168 {"name": "crimrxiv", "language": "en"} [] https://crimrxiv.com disciplinary [] 2022-01-12 15:36:36 2021-06-30 08:18:17 ["social sciences"] ["journal_articles"] [{"name": "criminology open", "alternativeName": "", "country": "us", "url": "https://criminologyopen.com", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10115 {"name": "fhpub", "language": "de"} [] https://fhpub.fh-vie.ac.at institutional [] 2022-01-12 15:36:35 2021-04-29 08:28:11 ["social sciences"] ["journal_articles"] [{"name": "fachhochschule des bfi wien", "alternativeName": "", "country": "at", "url": "https://www.fh-vie.ac.at", "identifier": [{"identifier": "https://ror.org/01x98fq76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://fhpub.fh-vie.ac.at/oai yes +10082 {"name": "somali research and educaiton repository", "language": "en"} [{"acronym": "sorer"}] https://sorer.somaliren.org.so disciplinary [] 2022-01-12 15:36:35 2021-03-17 08:47:42 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers"] [{"name": "somali research and education network", "alternativeName": "somaliren", "country": "so", "url": "https://somaliren.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://sorer.somaliren.org.so/oai2d yes +10163 {"name": "technical university of sofia scholar electronic repository", "language": "en"} [] http://digilib.nalis.bg/xmlui/ institutional [] 2022-01-21 16:26:36 2021-06-24 08:14:55 ["technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "technical university of sofia", "alternativeName": "", "country": "bg", "url": "", "identifier": [{"identifier": "https://ror.org/052prhs50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://digilib.nalis.bg/oai/request yes +10126 {"name": "bursa technical university institutional repository", "language": ""} [] http://acikerisim.btu.edu.tr institutional [] 2022-01-12 15:36:35 2021-05-19 07:41:21 ["technology"] ["theses_and_dissertations"] [{"name": "bursa technical university", "alternativeName": "dspace@bt\u00fc", "country": "tr", "url": "https://www.btu.edu.tr/", "identifier": [{"identifier": "https://ror.org/03rdpn141", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.btu.edu.tr/oai yes +10106 {"name": "lsuls digital repository", "language": "en"} [] https://sci.ldubgd.edu.ua institutional [] 2022-01-12 15:36:35 2021-04-26 07:55:52 ["technology"] ["journal_articles"] [{"name": "lviv state university of life safety", "alternativeName": "", "country": "ua", "url": "https://ldubgd.edu.ua", "identifier": [{"identifier": "https://ror.org/057g9bh47", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://sci.ldubgd.edu.ua/oai yes +10097 {"name": "repositorio del instituto tecnol\u00f3gico de la producci\u00f3n - itp", "language": "es"} [] https://repositorio.itp.gob.pe institutional [] 2022-01-12 15:36:35 2021-04-12 10:29:57 ["technology"] ["journal_articles"] [{"name": "intituto tecnol\u00f3gico de la producci\u00f3n", "alternativeName": "itp", "country": "pe", "url": "https://www.itp.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.itp.gob.pe/oai/request yes +10357 {"name": "electronic institutional repository of ttu", "language": "en"} [{"acronym": "repttu"}] https://rep.ttu.tj institutional [] 2022-01-28 09:34:49 2022-01-28 09:33:50 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "tajik technical university named after academician m.s.osimi", "alternativeName": "", "country": "tj", "url": "http://web.ttu.tj", "identifier": [{"identifier": "https://ror.org/01c1kpg39", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10354 {"name": "titula", "language": "es"} [] https://titula.universidadeuropea.com institutional [] 2022-01-17 16:24:52 2022-01-17 16:23:49 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["other_special_item_types"] [{"name": "universidad europea", "alternativeName": "", "country": "es", "url": "", "identifier": [{"identifier": "https://universidadeuropea.com", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://titula.universidadeuropea.com/oai/request yes +10355 {"name": "hal lyon 1", "language": "fr"} [] https://hal-univ-lyon1.archives-ouvertes.fr/ institutional [] 2022-01-21 16:16:02 2022-01-21 16:14:32 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universit\u00e9 claude bernard lyon 1", "alternativeName": "", "country": "fr", "url": "https://www.univ-lyon1.fr", "identifier": [{"identifier": "https://ror.org/029brtt94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +10278 {"name": "institutional repository fhnw", "language": "en"} [{"acronym": "irf"}] https://irf.fhnw.ch institutional [] 2022-01-12 15:36:37 2021-10-28 08:55:16 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "university of applied sciences and arts northwestern switzerland", "alternativeName": "fhnw", "country": "ch", "url": "https://www.fhnw.ch", "identifier": [{"identifier": "https://ror.org/04mq2g308", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://irf.fhnw.ch/irf-reglement/", "type": "metadata"}, {"policy_url": "https://irf.fhnw.ch/irf-reglement/", "type": "content"}, {"policy_url": "https://irf.fhnw.ch/irf-reglement/", "type": "submission"}, {"policy_url": "https://irf.fhnw.ch/irf-reglement/", "type": "preservation"}] {"name": "dspace", "version": ""} yes +10279 {"name": "cuhk research data repository", "language": "en"} [] https://researchdata.cuhk.edu.hk institutional [] 2022-01-12 15:36:37 2021-11-01 10:07:25 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["datasets"] [{"name": "the chinese university of hong kong", "alternativeName": "", "country": "hk", "url": "https://cuhk.edu.hk", "identifier": [{"identifier": "https://ror.org/00t33hh48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://libguides.lib.cuhk.edu.hk/datarepository/guidelines", "type": "metadata"}, {"policy_url": "https://libguides.lib.cuhk.edu.hk/datarepository/guidelines", "type": "data"}, {"policy_url": "https://libguides.lib.cuhk.edu.hk/datarepository/guidelines", "type": "content"}, {"policy_url": "https://libguides.lib.cuhk.edu.hk/datarepository/guidelines", "type": "submission"}, {"policy_url": "https://libguides.lib.cuhk.edu.hk/datarepository/guidelines", "type": "preservation"}] {"name": "other", "version": ""} https://researchdata.cuhk.edu.hk/oai yes +10313 {"name": "coventry pure portal", "language": "en"} [] https://pureportal.coventry.ac.uk institutional [] 2022-01-12 15:36:38 2021-12-01 16:57:39 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents"] [{"name": "coventry university", "alternativeName": "", "country": "gb", "url": "https://www.coventry.ac.uk", "identifier": [{"identifier": "https://ror.org/01tgmhj36", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.coventry.ac.uk/globalassets/media/documents/publications-and-open-access-standard.pdf", "type": "submission"}] {"name": "pure", "version": ""} yes +10293 {"name": "g\u00fcm\u00fc\u015fhane university institutional", "language": "en"} [{"acronym": "dspace@g\u00fcm\u00fc\u015fhane"}, {"name": "g\u00fcm\u00fc\u015fhane \u00fcniversitesi kurumsal akademik ar\u015fiv sistemi", "language": "tr"}, {"acronym": "dspace@g\u00fcm\u00fc\u015fhane"}] http://acikerisim.gumushane.edu.tr institutional [] 2022-01-12 15:36:38 2021-11-15 12:54:41 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "gumushane university", "alternativeName": "", "country": "tr", "url": "https://www.gumushane.edu.tr", "identifier": [{"identifier": "https://ror.org/00r9t7n55", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.gumushane.edu.tr/oai yes +10271 {"name": "repositorio universidad aut\u00f3noma de bucaramanga", "language": "es"} [{"acronym": "repositorio institucional unab"}] https://repository.unab.edu.co institutional [] 2022-01-12 15:36:37 2021-10-25 08:22:43 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "universidad aut\u00f3noma de bucaramanga", "alternativeName": "unab", "country": "co", "url": "http://unab.edu.co", "identifier": [{"identifier": "https://ror.org/00gkhpw57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.unab.edu.co/oai yes +10334 {"name": "nam\u0131k kemal university institutional repository", "language": "en"} [] http://acikerisim.nku.edu.tr institutional [] 2022-01-12 15:36:38 2021-12-10 16:50:12 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "tekirda\u011f nam\u0131k kemal university", "alternativeName": "", "country": "tr", "url": "http://www.nku.edu.tr/", "identifier": [{"identifier": "https://ror.org/01a0mk874", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.nku.edu.tr/oai yes +10201 {"name": "univenir", "language": "en"} [] https://univendspace.univen.ac.za institutional [] 2022-01-12 15:36:37 2021-08-19 07:26:14 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "university of venda", "alternativeName": "", "country": "za", "url": "https://www.univen.ac.za", "identifier": [{"identifier": "https://ror.org/0338xea48", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://univendspace.univen.ac.za/oai yes +10286 {"name": "fenerbah\u00e7e \u00fcniversitesi kurumsal akademik ar\u015fiv", "language": "tr"} [] https://acikerisim.fbu.edu.tr institutional [] 2022-01-12 15:36:37 2021-11-03 08:41:19 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "fenerbah\u00e7e \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.fbu.edu.tr", "identifier": [{"identifier": "https://ror.org/00xf89h18", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikerisim.fbu.edu.tr/oai yes +10277 {"name": "adelpha - reposit\u00f3rio digital mackenzie", "language": "pt"} [] https://dspace.mackenzie.br institutional [] 2022-01-12 15:36:37 2021-10-28 08:48:52 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["theses_and_dissertations"] [{"name": "universidade presbiteriana mackenzie", "alternativeName": "", "country": "br", "url": "https://www.mackenzie.br", "identifier": [{"identifier": "https://ror.org/006nc8n95", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://dspace.mackenzie.br/oai yes +10342 {"name": "l\u00edberi: repositorio digital de la universidad cat\u00f3lica del uruguay", "language": "es"} [] https://liberi.ucu.edu.uy/xmlui institutional [] 2022-01-12 15:36:38 2021-12-17 09:53:01 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad cat\u00f3lica del uruguay", "alternativeName": "", "country": "uy", "url": "https://ucu.edu.uy", "identifier": [{"identifier": "https://ror.org/019xvpc30", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://liberi.ucu.edu.uy/oai yes +10294 {"name": "repositorio institucional digital unasam", "language": "es"} [] http://repositorio.unasam.edu.pe institutional [] 2022-01-12 15:36:38 2021-11-17 11:31:34 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "unasam", "alternativeName": "universidad nacional santiago antunez de mayolo", "country": "pe", "url": "https://www.gob.pe/unasam", "identifier": [{"identifier": "https://ror.org/03w7bgm07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unasam.edu.pe/oai yes +10299 {"name": "uin satu repository", "language": "en"} [] http://repo.uinsatu.ac.id institutional [] 2022-01-12 15:36:38 2021-11-22 08:11:23 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "patents", "other_special_item_types"] [{"name": "universitas islam negeri sayyid ali rahmatullah", "alternativeName": "uin satu", "country": "id", "url": "http://www.uinsatu.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repo.uinsatu.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repo.uinsatu.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repo.uinsatu.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repo.uinsatu.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repo.uinsatu.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repo.uinsatu.ac.id/cgi/oai2 yes +10273 {"name": "ljmu data repository", "language": "en"} [] https://opendata.ljmu.ac.uk institutional [] 2022-01-12 15:36:37 2021-10-27 08:55:30 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["datasets", "software"] [{"name": "liverpool john moores university", "alternativeName": "ljmu", "country": "gb", "url": "https://www.ljmu.ac.uk", "identifier": [{"identifier": "https://ror.org/04zfme737", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://opendata.ljmu.ac.uk/policies.html", "type": "metadata"}, {"policy_url": "https://opendata.ljmu.ac.uk/policies.html", "type": "data"}, {"policy_url": "https://opendata.ljmu.ac.uk/policies.html", "type": "content"}, {"policy_url": "https://opendata.ljmu.ac.uk/policies.html", "type": "submission"}, {"policy_url": "https://opendata.ljmu.ac.uk/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://opendata.ljmu.ac.uk/cgi/oai2 yes +10280 {"name": "hal-uphf", "language": "fr"} [] https://hal-uphf.archives-ouvertes.fr institutional [] 2022-01-12 15:36:37 2021-11-01 10:15:23 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "patents", "other_special_item_types"] [{"name": "universit\u00e9 polytechnique hauts-de-france", "alternativeName": "uphf", "country": "fr", "url": "http://www.uphf.fr/", "identifier": [{"identifier": "https://ror.org/02ezch769", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} yes +10317 {"name": "esango", "language": "en"} [] https://esango.cput.ac.za institutional [] 2022-01-12 15:36:38 2021-12-02 16:38:03 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["datasets"] [{"name": "cape peninsula university of technology", "alternativeName": "", "country": "za", "url": "https://www.cput.ac.za/", "identifier": [{"identifier": "https://ror.org/056e9h402", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} yes +10295 {"name": "dcobiss.si digital repository", "language": "en"} [] https://plus.si.cobiss.net/opac7/bib/search institutional [] 2022-01-12 15:36:38 2021-11-19 08:17:37 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "institute of information science", "alternativeName": "izum", "country": "si", "url": "https://izum.si", "identifier": [{"identifier": "https://ror.org/055q8rh54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://d.cobiss.net/repository/si/oaipmh/archive yes +10274 {"name": "university of arizona research data repository", "language": "en"} [{"acronym": "redata"}] https://arizona.figshare.com institutional [] 2022-01-12 15:36:37 2021-10-27 09:05:36 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["datasets", "software", "other_special_item_types"] [{"name": "university of arizona", "alternativeName": "", "country": "us", "url": "https://www.arizona.edu", "identifier": [{"identifier": "https://ror.org/03m2x1q45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://osf.io/7qmxw/", "type": "metadata"}, {"policy_url": "https://osf.io/7qmxw/", "type": "data"}, {"policy_url": "https://osf.io/7qmxw/", "type": "content"}, {"policy_url": "https://osf.io/7qmxw/", "type": "submission"}, {"policy_url": "https://osf.io/7qmxw/", "type": "preservation"}] {"name": "other", "version": ""} yes +10326 {"name": "publikationsserver der fachhochschule bielefeld", "language": "de"} [] https://www.fh-bielefeld.de/publikationsserver/ institutional [] 2022-01-12 15:36:38 2021-12-08 15:42:39 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "fachhochschule bielefeld", "alternativeName": "", "country": "de", "url": "https://fh-bielefeld.de", "identifier": [{"identifier": "https://ror.org/00edvg943", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://www.fh-bielefeld.de/open-access/policy", "type": "data"}] {"name": "other", "version": ""} yes +10289 {"name": "portal de livros da unb", "language": "pt"} [] https://livros.unb.br/index.php/portal institutional [] 2022-01-12 15:36:37 2021-11-09 15:53:54 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["books_chapters_and_sections"] [{"name": "universidade de bras\u00edlia", "alternativeName": "unb", "country": "br", "url": "https://unb.br", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://livros.unb.br/index.php/portal/oai yes +10330 {"name": "rhodes university digital commons", "language": "en"} [] https://commons.ru.ac.za/ institutional [] 2022-01-12 15:36:38 2021-12-10 16:33:40 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rhodes university", "alternativeName": "", "country": "za", "url": "https://www.ru.ac.za", "identifier": [{"identifier": "https://ror.org/016sewp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://commons.ru.ac.za/vital/oai yes +10290 {"name": "stax - strathclyde theses and exam papers", "language": "en"} [] https://stax.strath.ac.uk institutional [] 2022-01-12 15:36:37 2021-11-12 16:12:39 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["theses_and_dissertations", "unpub_reports_and_working_papers", "other_special_item_types"] [{"name": "university of strathclyde", "alternativeName": "", "country": "gb", "url": "https://www.strath.ac.uk", "identifier": [{"identifier": "https://ror.org/00n3w3b69", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "samvera", "version": ""} https://stax.strath.ac.uk/catalog/oai yes +10270 {"name": "sanko \u00fcniversitesi kurumsal akademik ar\u015fiv sistemi", "language": "tr"} [] http://openaccess.sanko.edu.tr institutional [] 2022-01-12 15:36:37 2021-10-22 15:08:50 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations"] [{"name": "sanko \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "https://www.sanko.edu.tr", "identifier": [{"identifier": "https://ror.org/04a94ee43", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://openaccess.sanko.edu.tr/page/policy", "type": "metadata"}, {"policy_url": "http://openaccess.sanko.edu.tr/page/policy", "type": "submission"}] {"name": "dspace", "version": ""} http://openaccess.sanko.edu.tr/oai yes +10268 {"name": "msar", "language": "en"} [] http://repository.msa.edu.eg/xmlui institutional [] 2022-01-12 15:36:37 2021-10-19 07:34:44 ["arts", "humanities", "health and medicine", "science", "mathematics", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "october university for modern sciences and arts", "alternativeName": "msa university", "country": "eg", "url": "https://msa.edu.eg/msauniversity/", "identifier": [{"identifier": "https://ror.org/01nvnhx40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repository.msa.edu.eg/oai yes +10288 {"name": "aperta turkey open archive", "language": "en"} [] https://aperta.ulakbim.gov.tr/ institutional [] 2022-01-12 15:36:37 2021-11-09 15:30:03 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents"] [{"name": "t\u00fcbi\u0307tak ulakbi\u0307m", "alternativeName": "", "country": "tr", "url": "https://ulakbim.tubitak.gov.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://acikveri.ulakbim.gov.tr/wp-content/uploads/2019/03/tubitak-open-sciency-policy.pdf", "type": "submission"}] {"name": "invenio", "version": ""} https://aperta.ulakbim.gov.tr/oai2d?verb=identify yes +10347 {"name": "tarsus university institutional repository", "language": "en"} [] http://acikerisim.tarsus.edu.tr institutional [] 2022-01-12 15:36:38 2022-01-06 16:48:45 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology", "engineering"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "tarsus university", "alternativeName": "", "country": "tr", "url": "https://www.tarsus.edu.tr", "identifier": [{"identifier": "https://ror.org/0397szj42", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://acikerisim.tarsus.edu.tr/oai yes +10275 {"name": "repositorio institucional digital", "language": "es"} [] http://repositorio.unasam.edu.pe/ institutional [] 2022-01-12 15:36:37 2021-10-27 09:16:27 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "universidad nacional santiago ant\u00fanez de mayolo", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/unasam", "identifier": [{"identifier": "https://ror.org/03w7bgm07", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unasam.edu.pe/oai/ yes +10267 {"name": "bing\u00f6l \u00fcniversitesi kurumsal akademik", "language": "tr"} [] http://acikerisim.bingol.edu.tr institutional [] 2022-01-12 15:36:37 2021-10-19 07:02:23 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "bing\u00f6l \u00fcniversitesi", "alternativeName": "", "country": "tr", "url": "http://www.bingol.edu.tr", "identifier": [{"identifier": "https://ror.org/03hx84x94", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://kutuphane.bingol.edu.tr/acik-erisim/acik-erisim-politikasi/", "type": "submission"}, {"policy_url": "http://kutuphane.bingol.edu.tr/acik-erisim/acik-erisim-politikasi/", "type": "preservation"}] {"name": "dspace", "version": ""} http://acikerisim.bingol.edu.tr/oai yes +10229 {"name": "university of kerbala repository", "language": "en"} [] https://uokerbala.edu.iq/en/repository institutional [] 2022-01-12 15:36:37 2021-09-22 08:40:43 ["arts", "humanities", "health and medicine", "science", "social sciences", "technology"] ["theses_and_dissertations", "learning_objects"] [{"name": "university of kerbala", "alternativeName": "uok", "country": "iq", "url": "https://uokerbala.edu.iq", "identifier": [{"identifier": "https://ror.org/0449bkp65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10297 {"name": "the digital repository of medina research and studies center", "language": "en"} [] https://repositorymrsc.com institutional [] 2022-01-12 15:36:38 2021-11-19 08:39:37 ["arts", "humanities", "health and medicine", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "al-madinah al-munawara research & studies center", "alternativeName": "mrsc", "country": "sa", "url": "http://mrsc.org.sa", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorymrsc.com/oai yes +10300 {"name": "eprints@nias", "language": "en"} [] http://eprints.nias.res.in institutional [] 2022-01-12 15:36:38 2021-11-22 08:31:20 ["arts", "humanities", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "national institute of advanced studies", "alternativeName": "", "country": "in", "url": "https://www.nias.res.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://eprints.nias.res.in/policies.html", "type": "content"}, {"policy_url": "http://eprints.nias.res.in/policies.html", "type": "submission"}] {"name": "eprints", "version": ""} http://eprints.nias.res.in/cgi/oai2 yes +10311 {"name": "institutional repository of the northwest normal university", "language": "en"} [] http://ir.nwnu.edu.cn institutional [] 2022-01-12 15:36:38 2021-11-29 08:45:11 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "northwest normal university", "alternativeName": "", "country": "cn", "url": "https://www.nwnu.edu.cn", "identifier": [{"identifier": "https://ror.org/00gx3j908", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10346 {"name": "bibliopen", "language": "en"} [] https://bibliopen.org institutional [] 2022-01-12 15:36:38 2022-01-04 09:28:46 ["arts", "humanities", "science", "social sciences"] ["books_chapters_and_sections"] [{"name": "bibliovault", "alternativeName": "", "country": "us", "url": "https://bibliovault.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10296 {"name": "ul lafayette institutional repository", "language": "en"} [] https://ir.louisiana.edu institutional [] 2022-01-12 15:36:38 2021-11-19 08:32:18 ["arts", "humanities", "science", "social sciences"] ["journal_articles", "other_special_item_types"] [{"name": "university of louisiana at lafayette", "alternativeName": "", "country": "us", "url": "https://louisiana.edu", "identifier": [{"identifier": "https://ror.org/01x8rc503", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ir.louisiana.edu/institutional-repository-policy", "type": "metadata"}, {"policy_url": "https://ir.louisiana.edu/institutional-repository-policy", "type": "data"}, {"policy_url": "https://ir.louisiana.edu/institutional-repository-policy", "type": "content"}, {"policy_url": "https://ir.louisiana.edu/institutional-repository-policy", "type": "submission"}, {"policy_url": "https://ir.louisiana.edu/institutional-repository-policy", "type": "preservation"}] {"name": "islandora", "version": ""} yes +10312 {"name": "reff - faculty of filosophy repository", "language": "en"} [] http://reff.f.bg.ac.rs institutional [] 2022-01-12 15:36:38 2021-12-01 16:49:40 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of belgrade - faculty of philosophy", "alternativeName": "", "country": "rs", "url": "https://www.f.bg.ac.rs", "identifier": [{"identifier": "https://ror.org/02qsmb048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://reff.f.bg.ac.rs/oai/request yes +10298 {"name": "electronic archive (repository) of dnipropetrovsk state university of internal affairs", "language": "en"} [{"name": "\u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0430\u0440\u0445\u0456\u0432 (\u0440\u0435\u043f\u043e\u0437\u0438\u0442\u0430\u0440\u0456\u0439) \u0434\u043d\u0456\u043f\u0440\u043e\u043f\u0435\u0442\u0440\u043e\u0432\u0441\u044c\u043a\u043e\u0433\u043e", "language": "uk"}] https://er.dduvs.in.ua institutional [] 2022-01-12 15:36:38 2021-11-19 08:43:38 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "dnipropetrovsk state university of internal affairs", "alternativeName": "", "country": "ua", "url": "https://dduvs.in.ua", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://er.dduvs.in.ua/oai yes +10283 {"name": "repositorio universitario leopoldo zea", "language": "es"} [] http://rilzea.cialc.unam.mx/jspui institutional [] 2022-01-12 15:36:37 2021-11-01 10:38:33 ["arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "other_special_item_types"] [{"name": "universidad nacional aut\u00f3noma de m\u00e9xico, centro de investigaciones sobre am\u00e9rica latina y el caribe", "alternativeName": "", "country": "mx", "url": "http://www.cialc.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://rilzea.cialc.unam.mx/oai yes +10190 {"name": "repository of minsk state linguistic university", "language": "en"} [] http://e-lib.mslu.by institutional [] 2022-01-12 15:36:36 2021-08-02 08:55:30 ["arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "books_chapters_and_sections"] [{"name": "minsk state linguistic university", "alternativeName": "", "country": "by", "url": "https://mslu.by", "identifier": [{"identifier": "https://ror.org/04t2ykm02", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://e-lib.mslu.by/oai yes +10333 {"name": "rhodes university african music repository", "language": "en"} [] https://ilamcommons.ru.ac.za institutional [] 2022-01-12 15:36:38 2021-12-10 16:46:34 ["arts", "humanities", "social sciences"] ["other_special_item_types"] [{"name": "rhodes university - international library of african music", "alternativeName": "", "country": "za", "url": "https://www.ru.ac.za/ilam", "identifier": [{"identifier": "https://ror.org/016sewp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://ilamcommons.ru.ac.za/vital/oai/provider yes +10331 {"name": "rhodes university historical commons & archive", "language": "en"} [] https://commons.ru.ac.za institutional [] 2022-01-12 15:36:38 2021-12-10 16:38:10 ["arts", "humanities", "social sciences"] ["unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "rhodes university", "alternativeName": "", "country": "za", "url": "https://www.ru.ac.za", "identifier": [{"identifier": "https://ror.org/016sewp10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://corycommons.ru.ac.za/vital/oai/provider yes +10233 {"name": "laboratorio de culturas e impresos populares iberoamericanos", "language": "es"} [] http://lacipi.humanidades.unam.mx/ipm/w/inicio institutional [] 2022-01-12 15:36:37 2021-09-22 10:46:15 ["arts", "humanities"] ["other_special_item_types"] [{"name": "unidad de investigaci\u00f3n sobre representaciones culturales y sociales", "alternativeName": "", "country": "mx", "url": "https://www.udir.humanidades.unam.mx", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10337 {"name": "digital repository@indira gandhi national tribal university", "language": "en"} [] http://14.139.51.124/jspui institutional [] 2022-01-12 15:36:38 2021-12-13 09:27:16 ["engineering", "technology", "social sciences", "mathematics", "science", "health and medicine", "arts", "humanities"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "indira gandhi national tribal university, amarkantak", "alternativeName": "", "country": "in", "url": "http://www.igntu.ac.in", "identifier": [{"identifier": "https://ror.org/04yayy336", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://14.139.51.124/oai/request yes +10348 {"name": "repositorio institucional de la universidad nacional agraria la molina", "language": "es"} [] https://repositorio.lamolina.edu.pe institutional [] 2022-01-12 15:36:38 2022-01-07 16:11:00 ["health and medicine", "science", "mathematics", "engineering"] ["theses_and_dissertations"] [{"name": "universidad nacional agraria la molina", "alternativeName": "", "country": "pe", "url": "http://www.lamolina.edu.pe", "identifier": [{"identifier": "https://ror.org/00vr49948"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.lamolina.edu.pe/oai yes +10336 {"name": "ri-unicoc repositorio institucional unicoc", "language": "es"} [] http://repositorio.unicoc.edu.co:8080/ institutional [] 2022-01-12 15:36:38 2021-12-13 09:14:03 ["health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "other_special_item_types"] [{"name": "instituci\u00f3n universitaria colegios de colombia", "alternativeName": "unicoc", "country": "co", "url": "https://www.unicoc.edu.co/", "identifier": [{"identifier": "https://ror.org/041wsqp45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unicoc.edu.co:8080/oai yes +10329 {"name": "scholars portal dataverse", "language": "en"} [] https://dataverse.scholarsportal.info institutional [] 2022-01-12 15:36:38 2021-12-10 16:22:35 ["health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["datasets"] [{"name": "scholars portal", "alternativeName": "", "country": "ca", "url": "https://scholarsportal.info", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://dataverse.scholarsportal.info/oai yes +10327 {"name": "taltechdata", "language": "en"} [] https://data.taltech.ee institutional [] 2022-01-12 15:36:38 2021-12-08 15:48:04 ["health and medicine", "science", "mathematics", "social sciences", "technology", "engineering"] ["conference_and_workshop_papers", "datasets"] [{"name": "tallinn university of technology", "alternativeName": "", "country": "ee", "url": "https://taltech.ee", "identifier": [{"identifier": "https://ror.org/0443cwa12", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} yes +10197 {"name": "data inrae", "language": "fr"} [] https://data.inrae.fr institutional [] 2022-01-12 15:36:36 2021-08-11 07:43:02 ["health and medicine", "science", "social sciences", "technology"] ["datasets", "software"] [{"name": "inrae", "alternativeName": "", "country": "fr", "url": "https://www.inrae.fr/", "identifier": [{"identifier": "https://ror.org/003vg9w96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://data.inrae.fr/oai yes +10282 {"name": "liverpool school of tropical medicine", "language": "en"} [] https://archive.lstmed.ac.uk institutional [] 2022-01-12 15:36:37 2021-11-01 10:34:05 ["health and medicine", "science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "liverpool school of tropical medicine", "alternativeName": "", "country": "gb", "url": "https://www.lstmed.ac.uk", "identifier": [{"identifier": "https://ror.org/03svjbs84", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} https://archive.lstmed.ac.uk/cgi/oai2 yes +10251 {"name": "covid-19.\u0440\u0444: information against the pandemic", "language": "en"} [] https://covid19.neicon.ru institutional [] 2022-01-12 15:36:37 2021-10-08 09:31:18 ["health and medicine", "science"] ["journal_articles"] [{"name": "neicon", "alternativeName": "", "country": "ru", "url": "https://neicon.ru", "identifier": [{"identifier": "https://ror.org/0012p6j68", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://covid19.neicon.ru/oai/request yes +10285 {"name": "reposit\u00f3rio da escola superior sa\u00fade santa maria", "language": "pt"} [] https://repositorio.santamariasaude.pt institutional [] 2022-01-12 15:36:37 2021-11-03 08:27:42 ["health and medicine"] ["conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "escola superior de sa\u00fade de santa maria", "alternativeName": "", "country": "pt", "url": "https://www.santamariasaude.pt", "identifier": [{"identifier": "https://ror.org/02evem426", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.santamariasaude.pt/oai yes +10325 {"name": "repositorio institucional eug", "language": "es"} [] https://eugdspace.eug.es institutional [] 2022-01-12 15:36:38 2021-12-08 15:16:08 ["health and medicine"] ["theses_and_dissertations", "other_special_item_types"] [{"name": "escuela universitaria gimbernat", "alternativeName": "", "country": "es", "url": "https://www.eug.es", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://eugdspace.eug.es/oai/request yes +10204 {"name": "templateflow", "language": "en"} [] https://templateflow.org disciplinary [] 2022-01-12 15:36:37 2021-08-20 14:40:12 ["health and medicine"] ["datasets", "other_special_item_types"] [{"name": "the nipreps community", "alternativeName": "", "country": "us", "url": "https://www.nipreps.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10266 {"name": "cu anschutz digital collections", "language": "en"} [] https://digitalcollections.cuanschutz.edu institutional [] 2022-01-12 15:36:37 2021-10-18 14:39:31 ["health and medicine"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "datasets", "learning_objects"] [{"name": "university of colorado anschutz medical campus", "alternativeName": "", "country": "us", "url": "https://www.cuanschutz.edu/", "identifier": [{"identifier": "https://ror.org/03wmf1y16", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "samvera", "version": ""} yes +10310 {"name": "cirm audiovisual mathematics library", "language": "en"} [] http://library.cirm-math.fr institutional [] 2022-01-12 15:36:38 2021-11-29 08:24:35 ["mathematics"] ["other_special_item_types"] [{"name": "centre international de rencontres math\u00e9matiques", "alternativeName": "cirm", "country": "fr", "url": "https://www.cirm-math.fr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} http://library.cirm-math.fr/oai yes +10323 {"name": "dspace@sfit", "language": "en"} [] http://dspace.sfit.co.in:8004/jspui institutional [] 2022-01-12 15:36:38 2021-12-07 16:45:28 ["science", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations"] [{"name": "st. francis institute of technology", "alternativeName": "", "country": "in", "url": "https://www.sfit.ac.in", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://dspace.sfit.co.in:8004/oai yes +10284 {"name": "repositorio yachay tech", "language": "es"} [] https://repositorio.yachaytech.edu.ec institutional [] 2022-01-12 15:36:37 2021-11-02 07:57:18 ["science", "mathematics", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "universidad yachay tech", "alternativeName": "", "country": "ec", "url": "https://www.yachaytech.edu.ec", "identifier": [{"identifier": "https://ror.org/04jjswc10", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.yachaytech.edu.ec/oai yes +10335 {"name": "pure research portal leoben", "language": "en"} [] https://pure.unileoben.ac.at/portal institutional [] 2022-01-12 15:36:38 2021-12-13 09:06:56 ["science", "mathematics", "technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents"] [{"name": "montanuniversit\u00e4t leoben", "alternativeName": "", "country": "at", "url": "https://www.unileoben.ac.at/en/", "identifier": [{"identifier": "https://ror.org/02fhfw393", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +10281 {"name": "repositorio institucional de la universidad para el desarrollo andino", "language": "es"} [{"acronym": "repositorio udea"}] http://repositorio.udea.edu.pe institutional [] 2022-01-12 15:36:37 2021-11-01 10:22:48 ["science", "social sciences", "technology", "engineering"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections", "software", "other_special_item_types"] [{"name": "universidad para el desarrollo andino", "alternativeName": "udea", "country": "pe", "url": "https://udea.edu.pe/", "identifier": [{"identifier": "https://ror.org/04gazzm76", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.udea.edu.pe/oai yes +10324 {"name": "unida gontor repository", "language": "en"} [] http://repo.unida.gontor.ac.id/ institutional [] 2022-01-12 15:36:38 2021-12-07 16:49:31 ["science", "social sciences", "technology", "engineering"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of darussalam gontor", "alternativeName": "", "country": "id", "url": "https://unida.gontor.ac.id", "identifier": [{"identifier": "https://ror.org/029tp8j70", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repo.unida.gontor.ac.id/cgi/oai2 yes +10210 {"name": "electronic library of the central scientific library of the far east branch of the russian academy of sciences", "language": "en"} [{"name": "\u043d\u0430\u0443\u0447\u043d\u043e\u0435 \u043d\u0430\u0441\u043b\u0435\u0434\u0438\u0435 \u0434\u0430\u043b\u044c\u043d\u0435\u0433\u043e \u0432\u043e\u0441\u0442\u043e\u043a\u0430. \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0446\u043d\u0431 \u0434\u0432\u043e \u0440\u0430\u043d", "language": "ru"}] https://cnbdvo.elpub.ru/ institutional [] 2022-01-12 15:36:37 2021-09-09 09:19:38 ["science", "social sciences", "technology"] ["journal_articles"] [{"name": "central scientific library of the far eastern branch of the russian academy of sciences", "alternativeName": "", "country": "ru", "url": "https://www.cnb.dvo.ru", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://cnbdvorep.elpub.ru/oai/request yes +10202 {"name": "h_docs", "language": "en"} [] https://opus4.kobv.de/opus4-h-da/home institutional [] 2022-01-12 15:36:37 2021-08-19 07:32:15 ["science", "social sciences", "technology"] ["journal_articles", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "hochschule darmstadt university of applied sciences", "alternativeName": "", "country": "de", "url": "https://h-da.de/?1", "identifier": [{"identifier": "https://ror.org/047wbd030", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} https://opus4.kobv.de/opus4-h-da/oai yes +10276 {"name": "geography repository", "language": "en"} [{"acronym": "gery"}] https://gery.gef.bg.ac.rs institutional [] 2022-01-12 15:36:37 2021-10-27 09:27:10 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "other_special_item_types"] [{"name": "university of belgrade - faculty of geography", "alternativeName": "", "country": "rs", "url": "http://www.gef.bg.ac.rs/", "identifier": [{"identifier": "https://ror.org/02qsmb048", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://gery.gef.bg.ac.rs/oai/request yes +10343 {"name": "institutional repository of lithuanian centre for social sciences", "language": "en"} [] https://vb.lcss.lt/repository institutional [] 2022-01-12 15:36:38 2021-12-17 10:06:11 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "lithuanian centre for social sciences", "alternativeName": "", "country": "lt", "url": "https://lcss.lt", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} https://vb.lcss.lt/oai yes +10206 {"name": "repository uin sunan ampel surabaya", "language": "en"} [] http://books.uinsby.ac.id institutional [] 2022-01-12 15:36:37 2021-08-20 14:50:52 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "patents", "other_special_item_types"] [{"name": "uin sunan ampel surabaya", "alternativeName": "universitas islam negeri surabaya", "country": "id", "url": "http://uinsby.ac.id", "identifier": [{"identifier": "https://ror.org/009cc1d57", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://books.uinsby.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://books.uinsby.ac.id/policies.html", "type": "data"}, {"policy_url": "http://books.uinsby.ac.id/policies.html", "type": "content"}, {"policy_url": "http://books.uinsby.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://books.uinsby.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://books.uinsby.ac.id/cgi/oai2 yes +10249 {"name": "repository universitas muhammadiyah palangkaraya", "language": "en"} [] https://repository.umpr.ac.id/ institutional [] 2022-01-12 15:36:37 2021-10-08 08:31:38 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "universitas muhammadiyah palangkaraya", "alternativeName": "", "country": "id", "url": "https://umpr.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.umpr.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.umpr.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.umpr.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.umpr.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.umpr.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.umpr.ac.id/cgi/oai2 yes +10208 {"name": "y\u00f6k a\u00e7\u0131k bilim - cohe open science", "language": "en"} [] https://acikbilim.yok.gov.tr governmental [] 2022-01-12 15:36:37 2021-09-08 07:53:47 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "council of higher education", "alternativeName": "cohe", "country": "tr", "url": "https://www.yok.gov.tr", "identifier": [{"identifier": "https://ror.org/00j1q0b46", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://acikbilim.yok.gov.tr/oai/request yes +10211 {"name": "archivio delle tesi", "language": "it"} [] http://dspace.unive.it/handle/10579/1895 institutional [] 2022-01-12 15:36:37 2021-09-09 09:24:34 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "ca foscari university of venice", "alternativeName": "", "country": "it", "url": "https://www.unive.it", "identifier": [{"identifier": "https://ror.org/04yzxz566", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10250 {"name": "repositorio institucional digital unaj", "language": "es"} [] http://repositorio.unaj.edu.pe institutional [] 2022-01-12 15:36:37 2021-10-08 08:56:20 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations", "unpub_reports_and_working_papers"] [{"name": "universidad nacional de juliaca", "alternativeName": "unaj", "country": "pe", "url": "https://web.unaj.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.unaj.edu.pe/oai/request yes +10205 {"name": "amref institutional repository", "language": "en"} [] https://repository.amref.org institutional [] 2022-01-12 15:36:37 2021-08-20 14:45:27 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "amref international university", "alternativeName": "", "country": "ke", "url": "https://amref.ac.ke", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repository.amref.org/oai yes +10222 {"name": "darius", "language": "en"} [] https://darius.hbu.edu institutional [] 2022-01-12 15:36:37 2021-09-14 08:38:31 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations"] [{"name": "houston baptist university", "alternativeName": "", "country": "us", "url": "https://hbu.edu", "identifier": [{"identifier": "https://ror.org/00x75sk82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://darius.hbu.edu/oai/request yes +10255 {"name": "gyan pravah", "language": "en"} [] http://idr.cuh.ac.in:8080/jspui institutional [] 2022-01-12 15:36:37 2021-10-12 07:59:06 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "other_special_item_types"] [{"name": "central university of haryana", "alternativeName": "", "country": "in", "url": "http://www.cuh.ac.in", "identifier": [{"identifier": "https://ror.org/03mtwkv54", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://idr.cuh.ac.in:8080/oai yes +10253 {"name": "lebanese american university repository", "language": "en"} [] https://laur.lau.edu.lb:8443/xmlui institutional [] 2022-01-12 15:36:37 2021-10-12 07:40:21 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "lebanese american university", "alternativeName": "", "country": "lb", "url": "https://www.lau.edu.lb/", "identifier": [{"identifier": "https://ror.org/00hqkan37", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://laur.lau.edu.lb:8443/oai yes +10242 {"name": "repositorio institucional digital de la universidad nacional de moquegua", "language": "es"} [] https://repositorio.unam.edu.pe institutional [] 2022-01-12 15:36:37 2021-10-05 15:01:43 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "books_chapters_and_sections"] [{"name": "universidad nacional de moquegua", "alternativeName": "unam", "country": "pe", "url": "https://repositorio.unam.edu.pe", "identifier": [{"identifier": "https://ror.org/05v2asf50", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.unam.edu.pe/oai/request yes +10212 {"name": "university of kabianga (uok ) institutional repository", "language": "en"} [] http://ir-library.kabianga.ac.ke institutional [] 2022-01-12 15:36:37 2021-09-09 09:37:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "theses_and_dissertations"] [{"name": "university of kabianga", "alternativeName": "", "country": "ke", "url": "http://kabianga.ac.ke/main/", "identifier": [{"identifier": "https://ror.org/03rk9qf06", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://ir-library.kabianga.ac.ke/oai yes +10209 {"name": "emerging research information", "language": "en"} [{"acronym": "emeri"}] https://preprints.ibict.br aggregating [] 2022-01-12 15:36:37 2021-09-09 08:57:28 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "instituto brasileiro de informa\u00e7\u00e3o em ci\u00eancia e tecnologia", "alternativeName": "ibict", "country": "br", "url": "https://www.gov.br/ibict/pt-br", "identifier": [{"identifier": "https://ror.org/006c42y96", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://preprints.ibict.br/jspui/licenca-en.pdf", "type": "data"}, {"policy_url": "https://preprints.ibict.br/jspui/politica-en.pdf", "type": "content"}, {"policy_url": "https://preprints.ibict.br/jspui/politica-en.pdf", "type": "submission"}] {"name": "dspace", "version": ""} https://preprints.ibict.br/oai yes +10200 {"name": "zu scholars", "language": "en"} [] https://zuscholars.zu.ac.ae institutional [] 2022-01-12 15:36:37 2021-08-17 08:04:08 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "zayed university", "alternativeName": "", "country": "ae", "url": "https://www.zu.ac.ae", "identifier": [{"identifier": "https://ror.org/03snqfa66", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "digital_commons", "version": ""} https://zuscholars.zu.ac.ae/do/oai yes +10192 {"name": "repository universiitas muhammadiyah palembang", "language": "en"} [] http://repository.um-palembang.ac.id institutional [] 2022-01-12 15:36:36 2021-08-05 06:33:04 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["theses_and_dissertations", "learning_objects"] [{"name": "universitas muhammadiyah palembang", "alternativeName": "", "country": "id", "url": "https://um-palembang.ac.id", "identifier": [{"identifier": "https://ror.org/05w462p65", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "eprints", "version": ""} http://repository.um-palembang.ac.id/cgi/oai2 yes +10207 {"name": "repository of politeknik negeri banjarmasin", "language": "en"} [] http://repository.poliban.ac.id institutional [] 2022-01-12 15:36:37 2021-09-06 13:28:44 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "politeknik negeri banjarmasin", "alternativeName": "", "country": "id", "url": "https://poliban.ac.id", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repository.poliban.ac.id/policies.html", "type": "metadata"}, {"policy_url": "http://repository.poliban.ac.id/policies.html", "type": "data"}, {"policy_url": "http://repository.poliban.ac.id/policies.html", "type": "content"}, {"policy_url": "http://repository.poliban.ac.id/policies.html", "type": "submission"}, {"policy_url": "http://repository.poliban.ac.id/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} http://repository.poliban.ac.id/cgi/oai2 yes +10260 {"name": "regionaliaopen \u2013 open-access-publikationsserver f\u00fcr den s\u00fcdwesten", "language": "de"} [] https://regionalia.blb-karlsruhe.de institutional [] 2022-01-12 15:36:37 2021-10-15 10:55:26 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "books_chapters_and_sections"] [{"name": "badische landesbibliothek", "alternativeName": "", "country": "de", "url": "https://www.blb-karlsruhe.de", "identifier": [{"identifier": "https://ror.org/00nxdn656", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "opus", "version": ""} yes +10228 {"name": "institutional repository of lanzhou university", "language": "en"} [{"name": "\u5170\u5dde\u5927\u5b66\u673a\u6784\u77e5\u8bc6\u5e93", "language": "zh"}] http://ir.lzu.edu.cn institutional [] 2022-01-12 15:36:37 2021-09-16 08:11:14 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles"] [{"name": "lanzhou university", "alternativeName": "", "country": "cn", "url": "http://www.lzu.edu.cn", "identifier": [{"identifier": "https://ror.org/01mkqqe32", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10254 {"name": "\u00e5bo akademi university research portal", "language": "en"} [] https://research.abo.fi institutional [] 2022-01-12 15:36:37 2021-10-12 07:50:54 ["science", "technology", "engineering", "mathematics", "health and medicine", "arts", "humanities", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "\u00e5bo akademi university", "alternativeName": "", "country": "fi", "url": "https://www.abo.fi", "identifier": [{"identifier": "https://ror.org/029pk6x14", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} yes +10309 {"name": "t\u00fcrkiye enerji, n\u00fckleer ve maden ara\u015ft\u0131rma kurumu kurumsal ara\u015ft\u0131rma ar\u015fivi", "language": "tr"} [] https://kurumsalarsiv.tenmak.gov.tr institutional [] 2022-01-12 15:36:38 2021-11-29 08:16:15 ["science", "technology"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects", "other_special_item_types"] [{"name": "t\u00fcrkiye enerji, n\u00fckleer ve maden ara\u015ft\u0131rma kurumu", "alternativeName": "tenmak", "country": "tr", "url": "https://www.tenmak.gov.tr", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://kurumsalarsiv.tenmak.gov.tr/oai yes +10234 {"name": "pnipa institutional repository", "language": "en"} [{"name": "repositorio pnipa", "language": "es"}] https://repositorio.pnipa.gob.pe governmental [] 2022-01-12 15:36:37 2021-09-22 10:58:59 ["science"] ["unpub_reports_and_working_papers"] [{"name": "programa nacional de innovaci\u00f3n en pesca y acuicultura", "alternativeName": "pnipa", "country": "pe", "url": "https://pnipa.gob.pe/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace_cris", "version": ""} yes +10236 {"name": "digital repository of georgian scientific works", "language": "en"} [] https://openscience.ge institutional [] 2022-01-12 15:36:37 2021-10-01 09:16:30 ["science"] ["theses_and_dissertations"] [{"name": "georgian integrated library information system consortium", "alternativeName": "", "country": "ge", "url": "https://www.facebook.com/gilisc", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://openscience.ge/files/repository%20policy.html", "type": "metadata"}, {"policy_url": "https://openscience.ge/files/repository%20policy.html", "type": "content"}, {"policy_url": "https://openscience.ge/files/repository%20policy.html", "type": "submission"}, {"policy_url": "https://openscience.ge/files/repository%20policy.html", "type": "preservation"}] {"name": "dspace_cris", "version": ""} https://openscience.ge/oai/request yes +10345 {"name": "aquadocs", "language": "en"} [] https://aquadocs.org disciplinary [] 2022-01-12 15:36:38 2022-01-04 09:06:54 ["science"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "international oceanographic data and information exchange", "alternativeName": "", "country": "be", "url": "https://www.iode.org", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://aquadocs.org/pages/policies", "type": "metadata"}, {"policy_url": "https://aquadocs.org/pages/policies", "type": "data"}, {"policy_url": "https://aquadocs.org/pages/policies", "type": "content"}, {"policy_url": "https://aquadocs.org/pages/policies", "type": "submission"}, {"policy_url": "https://aquadocs.org/pages/policies", "type": "preservation"}] {"name": "dspace", "version": ""} https://aquadocs.org/oai yes +10328 {"name": "national ecosystem data bank", "language": "en"} [] http://ecodb-intl.cern.ac.cn/ disciplinary [] 2022-01-12 15:36:38 2021-12-09 16:23:34 ["science"] ["datasets"] [{"name": "institute of geographic sciences and natural resources research, cas", "alternativeName": "nesdc", "country": "cn", "url": "http://english.igsnrr.cas.cn", "identifier": [{"identifier": "https://ror.org/04t1cdb72", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10220 {"name": "uganda management institute space", "language": "en"} [] http://umispace.umi.ac.ug institutional [] 2022-01-12 15:36:37 2021-09-14 08:01:05 ["social sciences"] ["journal_articles", "theses_and_dissertations", "other_special_item_types"] [{"name": "uganda management institute", "alternativeName": "", "country": "ug", "url": "https://umi.ac.ug", "identifier": [{"identifier": "https://ror.org/05yh37w40", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://umispace.umi.ac.ug/oai/request yes +10243 {"name": "repositorio aurora", "language": "es"} [] https://repositorio.aurora.gob.pe governmental [] 2022-01-12 15:36:37 2021-10-05 15:07:00 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "ministerio de la mujer y poblaciones vulnerables", "alternativeName": "", "country": "pe", "url": "https://www.gob.pe/aurora", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.aurora.gob.pe/oai yes +10232 {"name": "repositorio de la superintedencia de mercado y valores", "language": "es"} [] https://repositorio.smv.gob.pe/ governmental [] 2022-01-12 15:36:37 2021-09-22 10:32:26 ["social sciences"] ["unpub_reports_and_working_papers"] [{"name": "superintendencia de mercado y valores del per\u00fa", "alternativeName": "", "country": "pe", "url": "https://www.smv.gob.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.smv.gob.pe/oai/request yes +10231 {"name": "repositorium of institute of international politics and economics", "language": "en"} [] http://repozitorijum.diplomacy.bg.ac.rs institutional [] 2022-01-12 15:36:37 2021-09-22 09:11:33 ["social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "institute of international politics and economics", "alternativeName": "", "country": "rs", "url": "https://www.diplomacy.bg.ac.rs/en/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "http://repozitorijum.diplomacy.bg.ac.rs/politics.html", "type": "metadata"}, {"policy_url": "http://repozitorijum.diplomacy.bg.ac.rs/politics.html", "type": "data"}, {"policy_url": "http://repozitorijum.diplomacy.bg.ac.rs/politics.html", "type": "content"}, {"policy_url": "http://repozitorijum.diplomacy.bg.ac.rs/politics.html", "type": "submission"}, {"policy_url": "http://repozitorijum.diplomacy.bg.ac.rs/politics.html", "type": "preservation"}] {"name": "eprints", "version": ""} yes +10269 {"name": "pyxida", "language": "en"} [] http://www.pyxida.aueb.gr institutional [] 2022-01-12 15:36:37 2021-10-22 14:56:54 ["social sciences"] ["conference_and_workshop_papers", "theses_and_dissertations", "books_chapters_and_sections"] [{"name": "athens university of economics and business", "alternativeName": "", "country": "gr", "url": "https://www.aueb.gr", "identifier": [{"identifier": "https://ror.org/03s262162", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "fedora", "version": ""} yes +10230 {"name": "lanzhou university of finance and economics repository", "language": "en"} [{"name": "\u5170\u5dde\u8d22\u7ecf\u5927\u5b66\u77e5\u8bc6\u7ba1\u7406\u7cfb\u7edf", "language": "zh"}] http://ir.lzufe.edu.cn institutional [] 2022-01-12 15:36:37 2021-09-22 08:57:08 ["social sciences"] ["journal_articles"] [{"name": "lanzhou university of finance and economics", "alternativeName": "", "country": "cn", "url": "http://www.lzufe.edu.cn", "identifier": [{"identifier": "https://ror.org/04v7yv031", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10272 {"name": "data.sciencespo", "language": "en"} [] https://data.sciencespo.fr disciplinary [] 2022-01-12 15:36:37 2021-10-27 08:36:31 ["social sciences"] ["datasets"] [{"name": "sciences po", "alternativeName": "", "country": "fr", "url": "https://sciencespo.fr", "identifier": [{"identifier": "https://ror.org/05fe7ax82", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} https://data.sciencespo.fr/oai yes +10292 {"name": "eurosocial+", "language": "es"} [] https://eurosocial.eu/biblioteca institutional [] 2022-01-12 15:36:38 2021-11-15 12:42:49 ["social sciences"] ["conference_and_workshop_papers", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "eurosocial and international and ibero-american foundation for administration and public policies", "alternativeName": "", "country": "es", "url": "https://www.fiiapp.org/", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "other", "version": ""} yes +10287 {"name": "dr rgf - rgf repository", "language": "en"} [] http://dr.rgf.bg.ac.rs institutional [] 2022-01-12 15:36:37 2021-11-08 09:53:46 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "rudarsko-geolo\u0161ki fakultet - univerzitet u beogradu", "alternativeName": "", "country": "rs", "url": "https://rgf.bg.ac.rs", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "omeka", "version": ""} http://dr.rgf.bg.ac.rs/oai yes +10291 {"name": "base of knowledge", "language": "en"} [] https://repo.bg.wat.edu.pl disciplinary [] 2022-01-12 15:36:37 2021-11-15 12:25:19 ["technology", "engineering"] ["journal_articles", "conference_and_workshop_papers"] [{"name": "military university of technology", "alternativeName": "wat", "country": "pl", "url": "https://www.wojsko-polskie.pl/wat", "identifier": [{"identifier": "https://ror.org/05fct5h31", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "open_repository", "version": ""} yes +10198 {"name": "base of knowledge bialystok university of technology", "language": "en"} [{"name": "baza wiedzy politechniki bia\u0142ostockiej", "language": "pl"}] http://bazawiedzy.pb.edu.pl institutional [] 2022-01-12 15:36:36 2021-08-13 16:58:52 ["technology"] ["journal_articles", "books_chapters_and_sections"] [{"name": "bialystok university of technology", "alternativeName": "", "country": "pl", "url": "http://www.pb.edu.pl", "identifier": [{"identifier": "https://ror.org/02bzfsy61", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "contentdm", "version": ""} yes +10221 {"name": "hal - ephe", "language": "fr"} [] https://hal-ephe.archives-ouvertes.fr institutional [] 2021-09-14 08:35:05 2021-09-14 08:34:18 [] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "\u00e9cole pratique des hautes \u00e9tudes - psl", "alternativeName": "", "country": "fr", "url": "https://www.ephe.psl.eu", "identifier": [{"identifier": "https://ror.org/046b3cj80", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "hal", "version": ""} https://api.archives-ouvertes.fr/oai/ephe yes +10360 {"name": "repository of open access research", "language": "en"} [{"acronym": "rooar"}] https://ir.una.edu institutional [] 2022-01-31 11:46:46 2022-01-31 11:46:26 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "university of north alabama", "alternativeName": "", "country": "us", "url": "", "identifier": [{"identifier": "https://www.una.edu/", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://ir.una.edu/terms-of-use", "type": "data"}] {"name": "samvera", "version": ""} yes +10367 {"name": "aruda", "language": "it"} [] https://ricerca.unich.it institutional [] 2022-02-04 15:51:05 2022-02-04 15:49:44 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "software", "patents", "other_special_item_types"] [{"name": "university \"g. dannunzio\" chieti-pescara", "alternativeName": "", "country": "it", "url": "https://en.unich.it", "identifier": [{"identifier": "https://ror.org/00qjgza05", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} yes +10368 {"name": "repositorio de la escuela naval del per\u00fa", "language": "es"} [] http://repositorio.escuelanaval.edu.pe institutional [] 2022-02-07 09:27:03 2022-02-07 09:26:07 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "learning_objects"] [{"name": "escuela naval del per\u00fa", "alternativeName": "", "country": "pe", "url": "https://www.escuelanaval.edu.pe", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://repositorio.escuelanaval.edu.pe/oai yes +10366 {"name": "ci\u00eancia-ucp", "language": "pt"} [] https://ciencia.ucp.pt institutional [] 2022-02-04 15:33:11 2022-02-04 15:32:14 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "patents", "other_special_item_types"] [{"name": "universidade cat\u00f3lica portuguesa", "alternativeName": "", "country": "pt", "url": "https://www.ucp.pt/pt-pt", "identifier": [{"identifier": "https://ror.org/03b9snr86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "pure", "version": ""} https://ciencia.ucp.pt/ws/oai?verb=identify yes +10359 {"name": "auraria library digital collections", "language": "en"} [] https://digital.auraria.edu institutional [] 2022-01-28 09:49:35 2022-01-28 09:49:03 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects"] [{"name": "auraria higher education center", "alternativeName": "", "country": "us", "url": "https://www.ahec.edu", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://digital.auraria.edu/terms-of-use", "type": "metadata"}, {"policy_url": "https://digital.auraria.edu/terms-of-use", "type": "data"}] {"name": "samvera", "version": ""} yes +10363 {"name": "sonar - swiss open access repository", "language": ""} [] https://sonar.ch/ aggregating [] 2022-02-02 16:07:22 2022-02-02 16:06:33 ["arts", "engineering", "health and medicine", "humanities", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "software", "patents", "other_special_item_types"] [{"name": "rero+", "alternativeName": "", "country": "ch", "url": "https://www.rero.ch", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [] {"name": "invenio", "version": ""} https://sonar.ch/oai2d? yes +10362 {"name": "open repository for educational e-prints", "language": "en"} [{"acronym": "orfee"}] https://orfee.hepl.ch institutional [] 2022-02-02 15:53:26 2022-02-02 15:52:47 ["arts", "mathematics", "science", "social sciences", "technology"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections"] [{"name": "haute \u00e9cole p\u00e9dagogique vaud", "alternativeName": "", "country": "ch", "url": "https://www.hepl.ch", "identifier": [{"identifier": "https://ror.org/01bvm0h13", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://orfee.hepl.ch/oai/request?verb=identify yes +10364 {"name": "repositorio institucional de la universidad privada de pucallpa", "language": "es"} [] http://repositorio.upp.edu.pe institutional [] 2022-02-02 16:11:31 2022-02-02 16:11:00 ["engineering", "science", "social sciences", "technology"] ["theses_and_dissertations"] [{"name": "universidad privada de pucallpa", "alternativeName": "upp", "country": "pe", "url": "https://upp.edu.pe", "identifier": [{"identifier": "https://ror.org/01jgs5r19"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} http://repositorio.upp.edu.pe/oai yes +10365 {"name": "k\u00f6zszolg\u00e1lati tud\u00e1sport\u00e1l", "language": "hu"} [] https://tudasportal.uni-nke.hu/tudasportal institutional [] 2022-02-02 16:27:32 2022-02-02 16:26:52 ["science", "social sciences"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "other_special_item_types"] [{"name": "university of public service", "alternativeName": "", "country": "hu", "url": "https://en.uni-nke.hu", "identifier": [{"identifier": "https://ror.org/040yeqy86", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [] {"name": "dspace", "version": ""} https://tudasportal.uni-nke.hu/oai yes +10358 {"name": "qora: qawami open repository and archive", "language": "en"} [] https://qora.qawami.org institutional [] 2022-01-28 09:43:20 2022-01-28 09:41:15 ["social sciences", "arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets"] [{"name": "qawami", "alternativeName": "", "country": "fr", "url": "", "identifier": [], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://qora.qawami.org/policies.html", "type": "metadata"}, {"policy_url": "https://qora.qawami.org/policies.html", "type": "data"}, {"policy_url": "https://qora.qawami.org/policies.html", "type": "content"}, {"policy_url": "https://qora.qawami.org/policies.html", "type": "submission"}, {"policy_url": "https://qora.qawami.org/policies.html", "type": "preservation"}] {"name": "eprints", "version": ""} https://qora.qawami.org/cgi/oai2 yes +10361 {"name": "nsu digital library", "language": "en"} [] https://digitallibrary.nsuok.edu institutional [] 2022-02-07 10:24:28 2022-01-31 11:49:01 ["technology", "social sciences", "science", "mathematics", "humanities", "health and medicine", "engineering", "arts"] ["journal_articles", "conference_and_workshop_papers", "theses_and_dissertations", "unpub_reports_and_working_papers", "books_chapters_and_sections", "datasets", "learning_objects", "other_special_item_types"] [{"name": "northeastern state university", "alternativeName": "", "country": "us", "url": "https://www.nsuok.edu", "identifier": [{"identifier": "https://ror.org/01z7kzb45", "type": "ror"}], "location": {"latitude": "", "longiture": ""}}] [{"policy_url": "https://digitallibrary.nsuok.edu/terms-of-use", "type": "data"}] {"name": "samvera", "version": ""} yes diff --git a/data/in/re3data.tsv b/data/in/re3data.tsv new file mode 100644 index 0000000..4033a87 --- /dev/null +++ b/data/in/re3data.tsv @@ -0,0 +1,2794 @@ +orgIdentifier repositoryName repositoryName.language additionalName repositoryURL repositoryIdentifier repositoryContact description description.language type size startDate endDate repositoryLanguage subject missionStatementURL contentType providerType keyword institution policy databaseAccess databaseLicense dataAccess dataLicense dataUploadType dataUploadLicense software versioning api pidSystem citationGuidelineURL aidSystem enhancedPublication qualityManagement certificate metadataStandard syndication remarks entryDate lastUpdate +r3d100000001 Odum Institute Archive Dataverse eng [] https://dataverse.unc.edu/dataverse/odum [] ["https://dataverse.unc.edu/dataverse/odum#", "odumarchive@unc.edu"] The Odum Institute Archive Dataverse contains social science data curated and archived by the Odum Institute Data Archive at the University of North Carolina at Chapel Hill. Some key collections include the primary holdings of the Louis Harris Data Center, the National Network of State Polls, and other Southern-focused public opinion data. Please note that some datasets in this collection are restricted to University of North Carolina at Chapel Hill affiliates. Access to these datasets require UNC ONYEN institutional login to the Dataverse system. eng ["disciplinary"] {"size": "13 dataverses; 3.050 datasets", "updatedp": "2020-12-04"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Middle East", "crime", "demography", "economy", "education", "election", "environment", "finance", "health care", "presidents United States", "taxes"] [{"institutionName": "Odum Institute for Research in Social Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://odum.unc.edu/archive/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Collection Development Policy", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_CollectionDevelopment_20170501.pdf"}, {"policyName": "CoreTrustSealAssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/10/Odum-Institute-Data-Archive.pdf"}, {"policyName": "Data Security Guidelines", "policyURL": "https://odum.unc.edu/files/2020/01/Guidelines_DataSecurity_20170501-1.pdf"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_DigitalPreservation_2020200124.pdf"}, {"policyName": "Metadata Guidelines", "policyURL": "https://odum.unc.edu/files/2020/01/Guidelines_Metadata_20170501.pdf"}, {"policyName": "Odum Institute Data Archive Data Curation Workflow", "policyURL": "https://odum.unc.edu/files/2020/01/Pipeline_201703.pdf"}, {"policyName": "UNC Dataverse terms of use", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_UNCDataverseTermsofUse_20170501.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [] ["DataVerse"] {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Odum Dataverse is covered by Thomson Reuters Data Citation Index. Odum Institute Archive Dataverse is part of UNC Dataverse 2013-06-10 2021-07-06 +r3d100000002 Access to Archival Databases eng [{"additionalName": "AAD", "additionalNameLanguage": "eng"}] https://aad.archives.gov/aad/ ["RRID:SCR_010479", "RRID:nlx_157752"] ["https://www.archives.gov/contact"] You will find in the Access to Archival Databases (AAD) resource online access to records in a small selection of historic databases preserved permanently in NARA. Out of the nearly 200,000 data files in its holdings, NARA has selected approximately 475 of them for public searching through AAD. We selected these data because the records identify specific persons, geographic areas, organizations, and dates. The records cover a wide variety of civilian and military functions and have many genealogical, social, political, and economic research uses. AAD provides: Access to over 85 million historic electronic records created by more than 30 agencies of the U.S. federal government and from collections of donated historical materials. Both free-text and fielded searching options. The ability to retrieve, print, and download records with the specific information that you seek. Information to help you find and understand the records. eng ["disciplinary"] {"size": "", "updatedp": ""} 1985 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.archives.gov/publications/general-info-leaflets/1-about-archives.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["US History"] [{"institutionName": "The U.S. National Archives and Records Administration", "institutionAdditionalName": ["NARA", "National Archives"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.archives.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.archives.gov/contact/"]}, {"institutionName": "The USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usa.gov/Contact.shtml"]}] [{"policyName": "Contribution Policy", "policyURL": "https://www.archives.gov/developer#toc-contribution-policy"}, {"policyName": "Freedom of Information Act - FOAI", "policyURL": "https://www.archives.gov/foia"}, {"policyName": "Privacy and Use", "policyURL": "https://www.archives.gov/global-pages/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html#copyright"}] restricted [] ["unknown"] no {"api": "https://www.archives.gov/developer#toc-application-programming-interfaces-apis-", "apiType": "other"} ["none"] https://aad.archives.gov/aad/help/getting-started-guide.html#cite [] unknown unknown [] [] {"syndication": "http://www.archives.gov/social-media/rss-feeds.html", "syndicationType": "RSS"} 2012-07-04 2021-05-25 +r3d100000004 Datenbank Gesprochenes Deutsch deu [{"additionalName": "DGD", "additionalNameLanguage": "eng"}, {"additionalName": "DGD2 (formerly)", "additionalNameLanguage": "deu"}, {"additionalName": "Database for Spoken German", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ AGD", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum Archiv f\u00fcr Gesprochenes Deutsch am Institut f\u00fcr Deutsche Sprache", "additionalNameLanguage": "deu"}] https://dgd.ids-mannheim.de/ [] ["dgd@ids-mannheim.de"] The "Database for Spoken German (DGD)" is a corpus management system in the program area Oral Corpora of the Institute for German Language (IDS). It has been online since the beginning of 2012 and since mid-2014 replaces the spoken German database, which was developed in the "Deutsches Spracharchiv (DSAv)" of the IDS. After single registration, the DGD offers external users a web-based access to selected parts of the collection of the "Archive Spoken German (AGD)" for use in research and teaching. The selection of the data for external use depends on the consent of the respective data provider, who in turn must have the appropriate usage and exploitation rights. Also relevant to the selection are certain protection needs of the archive. The Archive for Spoken German (AGD) collects and archives data of spoken German in interactions (conversation corpora) and data of domestic and non-domestic varieties of German (variation corpora). Currently, the AGD hosts around 50 corpora comprising more than 15000 audio and 500 video recordings amounting to around 5000 hours of recorded material with more than 7000 transcripts. With the Research and Teaching Corpus of Spoken German (FOLK) the AGD is also compiling an extensive German conversation corpus of its own. !!! Access to data of Datenbank Gesprochenes Deutsch (DGD) is also provided by: IDS Repository https://www.re3data.org/repository/r3d100010382 !!! eng ["disciplinary"] {"size": "34 corpora", "updatedp": "2020-02-03"} 2012 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://dgd.ids-mannheim.de/dgd/pragdb.dgd_extern.sys_desc [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Australian German", "FOLK", "German dialects", "Pfeffer corpus", "Zwirner corpus", "linguistic corpora", "spoken German language"] [{"institutionName": "Institut f\u00fcr Deutsche Sprache, Archiv f\u00fcr Gesprochenes Deutsch", "institutionAdditionalName": ["AGD"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://agd.ids-mannheim.de/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["agd@ids-mannheim.de"]}] [{"policyName": "Erfurter Aufruf zur Sicherung von Sprachinseldaten", "policyURL": "https://igdd.org/wp-content/uploads/2018/05/Erfurter_Aufruf_Unterschriften.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Nutzungsbedingungen", "policyURL": "https://dgd.ids-mannheim.de/dgd/pragdb.dgd_extern.sys_use?"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://agd.ids-mannheim.de/konditionen.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www1.ids-mannheim.de/allgemein/impressum.html"}] restricted [] ["other"] yes {} ["none"] http://agd.ids-mannheim.de/konditionen.shtml [] unknown unknown ["RatSWD"] [] {} 2012-07-20 2020-08-27 +r3d100000005 UNC Dataverse eng [{"additionalName": "University of North Carolina Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.unc.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.pS2p8c"] ["https://dataverse.unc.edu/", "odumarchive@unc.edu"] UNC Dataverse is an open-source repository software application for archiving, sharing, and accessing research data of all kinds. Each dataverse within the larger repository contains a multitude of datasets, and each dataset contains descriptive metadata and data files. UNC Dataverse is hosted by Odum Institute for Research in Social Science. eng ["institutional"] {"size": "186 dataverses; 25.272 studies; 229.442 files", "updatedp": "2020-11-30"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://odum.unc.edu/about/mission-vision/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "census", "demographic survey", "demography", "human behavior", "human societies", "microdata", "multidisciplinary", "public health"] [{"institutionName": "Odum Institute for Research in Social Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://odum.unc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://odum.unc.edu/contact/contact-form/", "odumarchive@unc.edu"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact/", "support@dataverse.org"]}, {"institutionName": "University of North Carolina at Chapel Hill", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unc.edu/", "institutionIdentifier": ["ROR:0130frc33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Collection Development Policy", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_CollectionDevelopment_20170501.pdf"}, {"policyName": "Data Security Guidelines", "policyURL": "https://odum.unc.edu/files/2020/01/Guidelines_DataSecurity_20170501-1.pdf"}, {"policyName": "Digital preservation policiy", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_DigitalPreservation_2020200124.pdf"}, {"policyName": "Metadata Guidelines", "policyURL": "https://odum.unc.edu/files/2020/01/Guidelines_Metadata_20170501.pdf"}, {"policyName": "UNC Dataverse Terms of Use", "policyURL": "https://odum.unc.edu/files/2020/01/Policy_UNCDataverseTermsofUse_20170501.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [{"dataUploadLicenseName": "Data Deposit Form", "dataUploadLicenseURL": "https://odum.unc.edu/files/2017/05/Form_DataDeposit_201705.pdf"}, {"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://odum.unc.edu/files/2017/05/Policy_UNCDataverseTermsofUse_20170501.pdf"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["ARK", "DOI", "PURL", "URN", "hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} UNC Dataverse is covered by Clarivate Data Citation Index ; The Odum Institute houses one of the oldest and largest catalogs of machine-readable data in the United States. The Data Archive has an extensive collection of U.S. Census data, including one of the most comprehensive holdings for 1970 Census files. It also contains data from the North Carolina State Data Center, National Center for Health Statistics and Harris Polls. Almost all of the data holdings are available online in the UNC Dataverse. 2012-07-23 2021-10-25 +r3d100000006 Archaeology Data Service eng [{"additionalName": "ADS", "additionalNameLanguage": "eng"}] https://archaeologydataservice.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.hm1mfg"] ["help@archaeologydataservice.ac.uk", "https://archaeologydataservice.ac.uk/about/contact.xhtml"] The ADS is an accredited digital repository for heritage data that supports research, learning and teaching with freely available, high quality and dependable digital resources by preserving and disseminating digital data in the long term. The ADS also promotes good practice in the use of digital data, provides technical advice to the heritage community, and supports the deployment of digital technologies. eng ["disciplinary"] {"size": "1837 results", "updatedp": "2020-05-20"} 1996-10-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://archaeologydataservice.ac.uk/about/ourWork.xhtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "archaeology", "cultural heritage", "prehistory"] [{"institutionName": "Arts and Humanities Research Council", "institutionAdditionalName": ["AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": ["ROR:0505m1554"], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["enquiries@ahrc.ac.uk"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86", "RRID:SCR_011331", "RRID:nlx_23596"], "responsibilityStartDate": "2003", "responsibilityEndDate": "2008-03-31", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}, {"institutionName": "University of York, Institute of fine Arts", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nyu.edu/gsas/dept/fineart/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["help@archaeologydataservice.ac.uk"]}] [{"policyName": "ADS Guides to good practice", "policyURL": "https://guides.archaeologydataservice.ac.uk/g2gp/Contents"}, {"policyName": "ADS Terms of Use and Access", "policyURL": "https://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess.xhtml"}, {"policyName": "CTS assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/04/Archaeology-Data-Service.pdf"}, {"policyName": "Collections Policy", "policyURL": "https://archaeologydataservice.ac.uk/advice/collectionsPolicy.xhtml"}, {"policyName": "Preservation Policy", "policyURL": "https://archaeologydataservice.ac.uk/advice/PolicyDocuments.xhtml#PresPol"}, {"policyName": "Repository Operations", "policyURL": "https://archaeologydataservice.ac.uk/advice/PolicyDocuments.xhtml#RepOp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archaeologydataservice.ac.uk/advice/IdentifyingCopyright.xhtml"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archaeologydataservice.ac.uk/advice/WebsiteTerms.xhtml"}] restricted [{"dataUploadLicenseName": "Guidelines for Depositors", "dataUploadLicenseURL": "https://archaeologydataservice.ac.uk/advice/guidelinesForDepositors.xhtml#section-guidelinesForDepositors-1.2.HowToDeposit"}] ["other"] yes {"api": "https://archaeologydataservice.ac.uk/about/endpoints.xhtml", "apiType": "OAI-PMH"} ["DOI"] https://archaeologydataservice.ac.uk/advice/termsOfUseAndAccess.xhtml [] unknown yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "MIDAS-Heritage", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://archaeologydataservice.ac.uk/rss/ads.rdf", "syndicationType": "RSS"} ADS is covered by Clarivate Data Citation Index. is covered by Elsevier. ADS is one of the Data Centres of NERC, https://nerc.ukri.org/research/sites/data/ The Archaeology Data Service (ADS) was established in September 1996, as one of five discipline-based service providers within the Arts and Humanities Data Service (AHDS).The ADS is a member of the Europeana Council of Content Providers and Aggregators. The ADS is an associate member of the Digital Preservation Coalition (DPC) 2012-07-23 2021-09-02 +r3d100000007 ESO Science Archive Facility eng [{"additionalName": "ESO/ST-ECF", "additionalNameLanguage": "eng"}, {"additionalName": "European Southern Observatory Science Archive Facility", "additionalNameLanguage": "eng"}] http://archive.eso.org/cms.html [] ["https://www.eso.org/sci/contacts.html"] The ESO/ST-ECF science archive is a joint collaboration of the European Organisation for Astronomical Research in the Southern Hemisphere (ESO) and the Space Telescope - European Coordinating Facility (ST-ECF). ESO observational data can be requested after the proprietary period by the astronomical community. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1991 ["ces", "dan", "deu", "eng", "fin", "fra", "ita", "nld", "por", "spa", "swe"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.eso.org/public/about-eso/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["astronomy", "galaxies", "observatory", "space sciences", "space telescopes"] [{"institutionName": "European Organisation for Astronomical Research in the Southern Hemisphere", "institutionAdditionalName": ["ESO"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eso.org/public/", "institutionIdentifier": ["ROR:01qtasp15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["archive@eso.org", "https://www.eso.org/sci/contacts.html"]}, {"institutionName": "Space Telescope - European Coordinating Facility", "institutionAdditionalName": ["ST-ECF"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stecf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012-12-31", "institutionContact": ["https://www.stecf.org/contact/"]}] [{"policyName": "ESO Data Access Policy", "policyURL": "https://archive.eso.org/cms/eso-data-access-policy.html"}, {"policyName": "VLT/VLTI SCIENCE OPERATIONS POLICY", "policyURL": "http://www.eso.org/sci/observing/policies/cou996-rev.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://archive.eso.org/cms/eso-data-access-policy.html"}] restricted [] ["unknown"] no {} ["none"] https://archive.eso.org/cms/eso-data-access-policy.html [] unknown unknown [] [] {"syndication": "http://archive.eso.org/cms/news/RSS", "syndicationType": "RSS"} The European Southern Observatory (ESO) Science Archive Facility contains data from ESO telescopes at La Silla Paranal Observatory, including the APEX submillimeter telescope on Llano de Chajnantor, as well as the UKIDSS/WFCAM data obtained at the UK Infrared Telescope facility in Hawaii. 2012-08-08 2021-03-10 +r3d100000011 The CEDA Archive eng [{"additionalName": "BADC (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "British Atmospheric Data Centre (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "NERC Earth Observation Data Centre (NEODC) is integrated in CEDA Archive", "additionalNameLanguage": "eng"}, {"additionalName": "The Centre for Environmental Data Analysis Archive", "additionalNameLanguage": "eng"}] http://archive.ceda.ac.uk/ [] ["http://www.ceda.ac.uk/contact/", "support@ceda.ac.uk"] The Natural Environment Research Council's Data Repository for Atmospheric Science and Earth Observation. The Centre for Environmental Data Analysis (CEDA) serves the environmental science community through three data centres, data analysis environments, and participation in a host of relevant research projects. We aim to support environmental science, further environmental data archival practices, and develop and deploy new technologies to enhance access to data. Additionally we provide services to aid large scale data analysis. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ceda.ac.uk/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climatic changes", "clouds", "radiation", "stratosphere"] [{"institutionName": "National Center for Atmospheric Science", "institutionAdditionalName": ["NCAS"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ncas.ac.uk/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncas.ac.uk/index.php/en/contact"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "Access Rules", "policyURL": "http://artefacts.ceda.ac.uk/badc_datadocs/rules.html"}, {"policyName": "BADC Policy and Guidelines", "policyURL": "https://help.ceda.ac.uk/article/4300-archiving-of-simulations-guide"}, {"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/06/20210629-CEDA_CTS_Certification_2020-2022.pdf"}, {"policyName": "NCAS - AMF Data Policy", "policyURL": "https://www.ncas.ac.uk/index.php/en/access-amf/189-amf-main-category/1006-amf-data-policy"}, {"policyName": "Policies", "policyURL": "https://help.ceda.ac.uk/article/3846-policies"}, {"policyName": "Terms and Conditions", "policyURL": "http://licences.ceda.ac.uk/image/data_access_condition/badc.pdf"}, {"policyName": "UK Met. Office", "policyURL": "http://artefacts.ceda.ac.uk/badc_datadocs/surface/met-nerc_agreement.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://artefacts.ceda.ac.uk/badc_datadocs/rules.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncas.ac.uk/en/access-amf/189-amf-main-category/1006-amf-data-policy"}] restricted [{"dataUploadLicenseName": "CEDA Arrivals", "dataUploadLicenseURL": "https://arrivals.ceda.ac.uk/intro/"}] ["unknown"] no {"api": "https://help.ceda.ac.uk/article/280-ftp", "apiType": "FTP"} ["DOI"] https://help.ceda.ac.uk/article/102-data-citation ["AuthorClaim"] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "http://www.ceda.ac.uk/blog/feeds/atom/", "syndicationType": "ATOM"} NEODC is now part of Ceda Archive: https://www.re3data.org/repository/r3d100000011 ; British Atmospheric Data Centre was covered by SCOPUS. The BADC is one of the centres and facilities in the NERC Centres for Atmospheric Sciences, NCAS and now integrated in CEDA Archive 2012-08-07 2022-01-03 +r3d100000012 Biological and Chemical Oceanography Data Management Office eng [{"additionalName": "BCO-DMO", "additionalNameLanguage": "eng"}] https://www.bco-dmo.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.pjj4gd"] ["info@bco-dmo.org"] The Biological and Chemical Oceanography Data Management Office (BCO-DMO) is a publicly accessible earth science data repository created to curate, publicly serve (publish), and archive digital data and information from biological, chemical and biogeochemical research conducted in coastal, marine, great lakes and laboratory environments. The BCO-DMO repository works closely with investigators funded through the NSF OCE Division’s Biological and Chemical Sections and the Division of Polar Programs Antarctic Organisms & Ecosystems. The office provides services that span the full data life cycle, from data management planning support and DOI creation, to archive with appropriate national facilities. eng ["disciplinary"] {"size": "46 Programs; 1.220Projects; 3.024 Deployments; 9.672 Datasets; 498 Instruments; 1.424 Parameters", "updatedp": "2020-07-28"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bco-dmo.org/sites/default/files/BCO-DMO_Introduction_v3.pdf [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biological oceanography", "chemical oceanography", "marine biogeochemistry"] [{"institutionName": "DataONE", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": ["ROR:00hr5y405"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dataone.org/contact"]}, {"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthcube.org/group/council-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.whoi.edu/", "institutionIdentifier": ["ROR:03zbnzt98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/main/contact-us", "information@whoi.edu"]}] [{"policyName": "CoreTrustSealAssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/07/Biological-and-Chemical-Oceanography-Data-Management-Office.pdf"}, {"policyName": "NSF OCE Sample and Data Policy", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037"}, {"policyName": "Terms of Use", "policyURL": "https://www.bco-dmo.org/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/pubs/2011/nsf11060/nsf11060.pdf"}] restricted [{"dataUploadLicenseName": "How to Get Started Contributing Data", "dataUploadLicenseURL": "https://www.bco-dmo.org/how-get-started"}] ["MySQL"] yes {"api": "https://www.bco-dmo.org/faq-page#what_formats_avail_for_download", "apiType": "NetCDF"} ["DOI", "hdl"] https://www.bco-dmo.org/terms-use ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.bco-dmo.org/rss/datasets/recent.xml", "syndicationType": "RSS"} 2012-08-19 2022-01-03 +r3d100000013 Blue Obelisk Data Repository eng [{"additionalName": "BODR", "additionalNameLanguage": "eng"}] https://sourceforge.net/projects/blueobelisk/ [] ["https://sourceforge.net/projects/blueobelisk/support"] The Blue Obelisk Data Repository lists many important chemoinformatics data such as element and isotope properties, atomic radii, etc. including references to original literature. Developers can use this repository to make their software interoperable. eng ["other"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Configuration data", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "cheminformatics", "molecular science"] [{"institutionName": "SourceForge", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sourceforge.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sourceforge.net/support"]}, {"institutionName": "University of Cambridge, Churchill College", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.chu.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://slashdotmedia.com/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://slashdotmedia.com/terms-of-use/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/docs/osd"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} Blue Obelisk is an informal group of chemists who promote open data, open source, and open standards; it was initiated by Peter Murray-Rust and others in 2005 // Include the Networks: Sourceforge, ThinkGeek, Slashdot, Freecode 2012-08-19 2021-03-10 +r3d100000015 California Water CyberInfrastructure eng [] [] [] The repository is no longer available. >>>!!!<<< 2021-01-25: no more access to California Water CyberInfrastructure >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2021-01-25 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://web.archive.org/web/20161122225155/http://bwc.lbl.gov/California/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["water resources"] [{"institutionName": "Microsoft Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://research.microsoft.com/en-us/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Berkeley Water Center Data Server", "institutionAdditionalName": ["BWC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://bwc.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [] closed [] ["other"] no {} ["none"] [] unknown unknown [] [] {} FDR offer access to data from: National Climatic Data Center; USGS Surface-Water Data for California !!! formerly description: Through the Microsoft eScience Project, the Berkeley Water Center is developing a Water Cyberinfrastructure prototype that can be used to investigate and eventually manage water resources. The Water Cyberinfrastructure is developing in close collaboration between IT, physical science, and California water agency leaders. The value of the Cyberinfrastructure prototype will be tested through relevant end-to-end demonstration focused on important California Basins. The study region(s) are chosen based on several criteria, including availability of the data, importance of the problem that can be tackled given the cyberinfrastructure to California, leveraging opportunity, and scientific importance of the problems to be addressed. The BWC is currently building partnerships with several water representatives, such as the USGS, Sonoma County Water Agency, the Monterey County Water Resource Agency, and the NOAA National Marine Fisheries Service. Our objective with the California Water projects is to first assemble only the most critical components needed to address relevant science questions, rather than to initially create fully developed problem solving environments or construct a grand scale solution. 2012-08-26 2021-03-10 +r3d100000016 Canadian Astronomy Data Centre eng [{"additionalName": "CADC", "additionalNameLanguage": "eng"}, {"additionalName": "CCDA", "additionalNameLanguage": "fra"}, {"additionalName": "Centre canadien de donn\u00e9es astronomiques", "additionalNameLanguage": "fra"}] http://www.cadc-ccda.hia-iha.nrc-cnrc.gc.ca/en/ [] ["cadc@nrc.gc.ca"] The Canadian Astronomy Data Centre (CADC) was established in 1986 by the National Research Council of Canada (NRC), through a grant provided by the Canadian Space Agency (CSA). Over the past 30 years the CADC has evolved from an archiving centre---hosting data from Hubble Space Telescope, Canada-France-Hawaii Telescope, the Gemini observatories, and the James Clerk Maxwell Telescope---into a Science Platform for data-intensive astronomy. The CADC, in partnership with Shared Services Canada, Compute Canada, CANARIE and the university community (funded through the Canadian Foundation for Innovation), offers cloud computing, user-managed storage, group management, and data publication services, in addition to its ongoing mission to provide permanent storage for major data collections. Located at NRC Herzberg Astronomy and Astrophysics Research Centre in Victoria, BC, the CADC staff consists of professional astronomers, software developers, and operations staff who work with the community to develop and deliver leading-edge services to advance Canadian research. The CADC plays a leading role in international efforts to improve the scientific/technical landscape that supports data intensive science. This includes leadership roles in the International Virtual Observatory Alliance and participation in organizations like the Research Data Alliance, CODATA, and the World Data Systems. CADC also contributes significantly to future Canadian projects like the Square Kilometre Array and TMT. In 2019, the Canadian Astronomy Data Centre (CADC) delivered over 2 Petabytes of data (over 200 million individual files) to thousands of astronomers in Canada and in over 80 other countries. The cloud processing system completed over 6 million jobs (over 1100 core years) in 2019. eng ["disciplinary"] {"size": "", "updatedp": ""} 1986 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.cadc-ccda.hia-iha.nrc-cnrc.gc.ca/en/about.html#mandate [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["CFHT", "CGPS", "DAO", "FUSE", "Gemini", "HST", "Hubble", "JCMT", "MACHO", "MOST"] [{"institutionName": "Canadian Space Agency", "institutionAdditionalName": ["Agence spatiale canadienne"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.asc-csa.gc.ca/eng/", "institutionIdentifier": ["ROR:03a1gte98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.asc-csa.gc.ca/eng/contact.asp"]}, {"institutionName": "National Research Council Canada", "institutionAdditionalName": ["CNRC", "Conseil national de recherches Canada", "NRC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nrc.canada.ca/en", "institutionIdentifier": ["ROR:04mte1k06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cadc@hia.nrc.ca", "cadc@nrc.gc.ca"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}, {"policyName": "Terms and Conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nrc-cnrc.gc.ca/eng/notices/index.html#copy_perm"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}] restricted [] ["unknown"] {"api": "http://www.cadc-ccda.hia-iha.nrc-cnrc.gc.ca/en/doc/data/", "apiType": "other"} ["none"] http://www.cadc-ccda.hia-iha.nrc-cnrc.gc.ca/en/about.html#acknowledgements [] unknown unknown ["WDS"] [] {} The Canadian Astronomy Data Centre is aiming for regular ICSU-WDS membership . The Letter of Agreement (LoA) is Pending (10.03.2020) 2012-08-06 2020-03-10 +r3d100000017 RNA Abundance Database eng [{"additionalName": "RAD", "additionalNameLanguage": "eng"}] https://www.cbil.upenn.edu/RAD ["RRID:OMICS_00869", "RRID:SCR_002771", "RRID:nif-0000-00133"] [] === !!!!! Due to changes in technology and funding, the RAD website is no longer available !!!!! === eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.cbil.upenn.edu/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["gene expression studies", "microarray data", "transcriptomics"] [{"institutionName": "University of Pennsylvania, PerelmanSchool of Medizine, Computational Biology and Informatics Laboratory", "institutionAdditionalName": ["CBIL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cbil.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["RAD@pcbi.upenn.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cbil.upenn.edu/node/86"}] closed [] ["unknown"] no {} ["none"] [] unknown unknown [] [] {} Due to changes in technology and funding, the RAD website is no longer available. RAD as a schema is still very much active and incorporated in the GUS (Genomics Unified Schema) database system used by CBIL (EuPathDB, Beta Cell Genomics) and others. The schema for RAD can be viewed along with the other GUS namespaces through our Schema Browser. // GUS is the Genomics Unified Schema, an extensive relational database schema and associated application framework designed to store, integrate, analyze, and present functional genomics data. Description: (a historical description is provided below). RAD as a schema is still very much active and incorporated in the GUS (Genomics Unified Schema) database system used by CBIL (EuPathDB, Beta Cell Genomics) and others. The schema for RAD can be viewed along with the other GUS namespaces through our Schema Browser. RAD is a resource for gene expression studies, which stores highly curated MIAME-compliant studies (i.e. experiments) employing a variety of technologies such as filter arrays, 2-channel microarrays, Affymetrix chips, SAGE, MPSS and RT-PCR. Data are available for querying and downloading based on the MGED ontology, publications or genes. Both public and private studies (the latter viewable only by users having appropriate logins and permissions) are available from this website. Former content: 130 Experiments; 3.942 Hybridizations; 104 Arrays; 662 Protocols; 100 Publications 2012-08-27 2021-03-10 +r3d100000018 Cell Centered Database eng [{"additionalName": "CCDB", "additionalNameLanguage": "eng"}] https://library.ucsd.edu/dc/collection/bb5940732k ["RRID:SCR_002168", "RRID:nif-0000-00007"] ["webmaster@ccdb.ucsd.edu"] >>> !!!!! The Cell Centered Database is no longer on serice. It has been merged with "Cell image library": https://www.re3data.org/repository/r3d100000023 !!!!! <<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 2017 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ccdb.ucsd.edu/about/index.shtm [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Human Brain"] [{"institutionName": "National Biomedical Computation Resource", "institutionAdditionalName": ["NBCR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://nbcr.ucsd.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nbcr.ucsd.edu/wordpress2/?page_id=168"]}, {"institutionName": "National Center for Microscopy and Imaging Research", "institutionAdditionalName": ["NCMIR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://ncmir.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@ccdb.ucsd.edu"]}, {"institutionName": "National Institute of Biomedical Imaging and Bioengineering", "institutionAdditionalName": ["NIBIB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nibib.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nibib.nih.gov"]}, {"institutionName": "National Institute of Drug Abuse", "institutionAdditionalName": ["NIDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.drugabuse.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.drugabuse.gov/about-nida/contact-nida"]}, {"institutionName": "National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, San Diego, Center for Research in Biological Systems", "institutionAdditionalName": ["CRBS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://crbs.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://crbs.ucsd.edu/contact-us"]}] [{"policyName": "New user account agreement: terms & conditions", "policyURL": "http://ccdb.ucsd.edu/agreement/index.shtm"}, {"policyName": "Privacy Notice", "policyURL": "http://ccdb.ucsd.edu/privacy/index.shtm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://ccdb.ucsd.edu/copyright/index.shtm"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ccdb.ucsd.edu/agreement/index.shtm"}] restricted [{"dataUploadLicenseName": "Depositing Data to the CCDB", "dataUploadLicenseURL": "http://ccdb.ucsd.edu/agreement/index.shtm"}] ["unknown"] yes {"api": "http://ccdb.ucsd.edu/software/ccdbAPIDoc.html", "apiType": "SOAP"} ["none"] http://ccdb.ucsd.edu/data/index.shtm [] unknown yes [] [] {} Description: The CCDB project was started in 1998 under the auspices of the Human Brain Project to provide a venue for sharing and mining cellular and subcellular data derived from light and electron microscopy, including correlated imaging. It was one of the first web databases devoted to the then emerging technique of electron tomography. The CCDB has been on-line since 2002. Cell Centered Database is covered by Thomson Reuters Data Citation Index. The Cell Centered Database is now part of the Cell Image Library http://www.cellimagelibrary.org/ 2012-08-27 2018-12-07 +r3d100000019 ESS-DIVE eng [{"additionalName": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CDIAC", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Carbon Dioxide Information Analysis Center archive (1982 - Sept. 2017)", "additionalNameLanguage": "eng"}] https://ess-dive.lbl.gov/ ["FAIRsharing_doi:10.25504/fairsharing.d6pe1f"] ["ess-dive-support@lbl.gov", "http://ess-dive.lbl.gov/contact/"] The U.S. Department of Energy’s (DOE) Environmental Systems Science Data Infrastructure for a Virtual Ecosystem (ESS-DIVE) data archive serves Earth and environmental science data. ESS-DIVE is funded by the Data Management program within the Climate and Environmental Science Division under the DOE’s Office of Biological and Environmental Research program (BER), and is maintained by the Lawrence Berkeley National Laboratory. ESS-DIVE will archive and publicly share data obtained from observational, experimental, and modeling research that is funded by the DOE’s Office of Science under its Subsurface Biogeochemical Research (SBR) and Terrestrial Ecosystem Science (TES) programs within the Environmental Systems Science (ESS) activity. ESS-DIVE was launched in July 2017, and is designed to provide long-term stewardship and use of data from observational, experimental and modeling activities in the DOE in the Subsurface Biogeochemical Research (SBR) and Terrestrial Ecosystem Science (TES) Programs in the Environmental System Science (ESS) activity. eng ["disciplinary"] {"size": ">400 datasets", "updatedp": "2021-07-08"} 2017-07 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ess-dive.lbl.gov/about/# [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Carbon Cycle", "Carbon Dioxide", "Climate change", "Emissions", "FAIR", "Greenhouse effect", "Sea level rise", "co2"] [{"institutionName": "DataOne", "institutionAdditionalName": ["Data Oberservation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": ["ROR:00hr5y405", "RRID:SCR_003999"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ROR:02jbv0t02", "RRID:SCR_011336"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": ["ROR:0146z4r19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Energy Research Scientific Computing Center", "institutionAdditionalName": ["NERSC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nersc.gov/", "institutionIdentifier": ["ROR:05v3mvq14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nersc.gov/about/contact-us/"]}, {"institutionName": "U.S. Department of Energy, Biological and Environmental Research", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/ber/biological-and-environmental-research", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S.Department of Energy, Office of Science, Biological and Environmental Research", "institutionAdditionalName": ["BER"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/ber/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DOE Policy for Digital Research Data Management", "policyURL": "https://www.energy.gov/datamanagement/doe-policy-digital-research-data-management"}, {"policyName": "Terms of Use", "policyURL": "http://ess-dive.lbl.gov/about/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ess-dive.lbl.gov/data-use-and-citation/"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "https://docs.google.com/document/d/1deGmb0Q786gUsLAKtNkOnqSn8S2fddlxXrHt97kyxoE/edit"}] ["other"] yes {} ["DOI"] https://ess-dive.lbl.gov/data-use-and-citation/ ["ORCID"] unknown yes [] [] {} CDIAC website http://cdiac.ess-dive.lbl.gov/home.html provides access to the CDIAC archive data temporarily. It will be gradually transitioned into data packages in the new ESS-DIVE archive. This site will continue to operate in parallel during and after the transition, and will be retired at a future date. is covered by Elsevier. ESS-DIVE is covered by Clarivate Data Citation Index. The Carbon Dioxide Information Analysis Center (CDIAC) was the primary climate-change data and information analysis center of the U.S. Department of Energy (DOE). CDIAC was located at DOE's Oak Ridge National Laboratory (ORNL) and included the World Data Center for Atmospheric Trace Gases.CDIAC's data holdings include records of the atmospheric concentrations of carbon dioxide and other radiatively active gases; the role of the terrestrial biosphere and the oceans in the biogeochemical cycles of greenhouse gases; emissions of carbon dioxide from fossil-fuel consumption and land-use changes; long-term climate trends; the effects of elevated carbon dioxide on vegetation; and the vulnerability of coastal areas to rising sea level. CDIAC's data holdings include records of the atmospheric concentrations of carbon dioxide and other radiatively active gases; the role of the terrestrial biosphere and the oceans in the biogeochemical cycles of greenhouse gases; emissions of carbon dioxide from fossil-fuel consumption and land-use changes; long-term climate trends; the effects of elevated carbon dioxide on vegetation; and the vulnerability of coastal areas to rising sea level. // 2012-08-25 2021-09-02 +r3d100000020 Coastal Data Information Program eng [{"additionalName": "CDIP", "additionalNameLanguage": "eng"}] http://cdip.ucsd.edu/ [] ["http://cdip.ucsd.edu/?&nav=documents&sub=faq&xitem=contact"] The Coastal Data Information Program (CDIP) is an extensive network for monitoring waves and beaches along the coastlines of the United States. Since its inception in 1975, the program has produced a vast database of publicly-accessible environmental data for use by coastal engineers and planners, scientists, mariners, and marine enthusiasts. The program has also remained at the forefront of coastal monitoring, developing numerous innovations in instrumentation, system control and management, computer hardware and software, field equipment, and installation techniques. eng ["disciplinary"] {"size": "", "updatedp": ""} 1975 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://cdip.ucsd.edu/?nav=documents&sub=index&units=metric&tz=UTC&pub=public&xitem=intro#goals [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Brazil", "Carribean", "Coastal Data", "East Coast", "Great Lakes", "Gulf Coast", "North Pacific", "Pacific Islands", "West Coast"] [{"institutionName": "California Sea Grant Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://caseagrant.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["caseagrant@ucsd.edu"]}, {"institutionName": "Department of Parks and Recreation , Division of Boating and Waterways", "institutionAdditionalName": ["DBW"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.dbw.ca.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dbw.ca.gov/?page_id=28837"]}, {"institutionName": "US Army Corps of Engineers", "institutionAdditionalName": ["USACE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usace.army.mil", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usace.army.mil/Contact.aspx"]}, {"institutionName": "University of California San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["SIO", "UC San diego, SIO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://scripps.ucsd.edu/about/contact-us"]}] [{"policyName": "Data Use and Acknowledgements", "policyURL": "http://cdip.ucsd.edu/m/documents/data_access.html#data-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&ved=2ahUKEwiiqOvzg93cAhWQa1AKHaX2BJIQFjAEegQIBhAC&url=https%3A%2F%2Friojournal.com%2Farticle%2F8827%2Fdownload%2Fpdf%2F&usg=AOvVaw1glPYI5VDPj-P8ESwgxKc5"}] restricted [{"dataUploadLicenseName": "SUBMITTING SPECTRAL DATA TO CDIP", "dataUploadLicenseURL": "http://cdip.ucsd.edu/?nav=documents&sub=index&xitem=product&xtxt=sp_submission"}] ["unknown"] no {"api": "http://cdip.ucsd.edu/?nav=documents&sub=index&xitem=product&xtxt=sp_submission", "apiType": "FTP"} ["none"] https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&ved=2ahUKEwiiqOvzg93cAhWQa1AKHaX2BJIQFjAEegQIBhAC&url=https%3A%2F%2Friojournal.com%2Farticle%2F8827%2Fdownload%2Fpdf%2F&usg=AOvVaw1glPYI5VDPj-P8ESwgxKc5 [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} CDIP is operated by the Ocean Engineering Research Group (OERG), part of the Integrative Oceanography Division (IOD) at Scripps Institution of Oceanography (SIO). CDIP's archives include output from the Southern California Bight Swell Model from January 6, 1998 to the present. The remaining swell models are available from October 31, 2002, and the SIO surfzone models from November 1, 2004 2012-08-26 2018-08-08 +r3d100000021 Chemical Database Service eng [{"additionalName": "CDS", "additionalNameLanguage": "eng"}, {"additionalName": "STFC Chemical Database Service", "additionalNameLanguage": "eng"}] http://cds.dl.ac.uk/ [] ["cdsbb@stfc.ac.uk"] Most or all of the features are no longer available via the CDS/DL website since provision of the EPSRC UK national Chemical Database Service has been taken over by the Royal Society of Chemistry from 1st January 2013. See: http://cds.rsc.org/ . Daresbury now offers reduced database access, but CrystalWorks developments continue here. Some related features may be available via the RSC/CSD portal. For details of what is currently available on the CDS/DL website and also links to the RSC/CDS portal follow the link to the CDS/DL Homepage. // The service gives on-line access to a rich variety of quality databases in fields relating to chemistry. The CDS team also provides general support, training and advice. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://cds.dl.ac.uk/cds/service_info/about.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["chemistry", "crystallography", "materials"] [{"institutionName": "Daresbury Laboratory", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.stfc.ac.uk/about-us/where-we-work/daresbury-laboratory/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.stfc.ac.uk/about-us/where-we-work/daresbury-laboratory/how-to-get-to-daresbury-laboratory/"]}, {"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.epsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epsrc.ac.uk/about/contactus/"]}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://community.jisc.ac.uk/library/acceptable-use-policy"}, {"policyName": "Eligibility & Terms of Use", "policyURL": "http://cds.dl.ac.uk/cgi-bin/reg/cou"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cds.dl.ac.uk/cgi-bin/reg/cou"}] restricted [] ["unknown"] no {} ["none"] http://cds.rsc.org/about.asp [] unknown unknown [] [] {"syndication": "https://twitter.com/cds_daresbury", "syndicationType": "RSS"} The Chemical Database Service at Daresbury has now ceased providing general user access. An EPSRC funded national service is now operated by the Royal Society of Chemistry. For further details of this service go to the CDS/RSC website: http://cds.rsc.org/. Please note, however, that access to various components of the original CDS at Daresbury is still possible from within the STFC domain. Daresbury now offers reduced database access, but "CrystalWorks" developments continue here. 2012-08-26 2018-12-07 +r3d100000022 Comprehensive Epidemiological Data Resource eng [{"additionalName": "CEDR", "additionalNameLanguage": "eng"}] https://oriseapps.orau.gov/cedr/ [] ["cedr@orau.org"] The Comprehensive Epidemiologic Data Resource (CEDR) is the U.S. Department of Energy (DOE) electronic database comprised of health studies of DOE contract workers and environmental studies of areas surrounding DOE facilities. DOE recognizes the benefits of data sharing and supports the public's right to know about worker and community health risks. CEDR provides independent researchers and educators with access to de-identified data collected since the Department's early production years. Current CEDR holdings include more than 76 studies of over 1 million workers at 31 DOE sites. Access to these data is at no cost to the user. eng ["disciplinary", "institutional"] {"size": "Analytic Data File Sets = 243 data files (63 studies), Working Data File Sets = 157 data files", "updatedp": "2022-01-26"} 1964 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://oriseapps.orau.gov/cedr/the-cedr-program.aspx [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["epidemiology", "health studies"] [{"institutionName": "Oak Ridge Institute for Science and Education", "institutionAdditionalName": ["ORISE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://orise.orau.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://orise.orau.gov/contact-us/default.aspx"]}, {"institutionName": "US Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}] [{"policyName": "Federal Information Security Management Act (FISMA) Implementation Project", "policyURL": "https://csrc.nist.gov/projects/risk-management"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://oriseapps.orau.gov/cedr/data-file-sets.aspx"}] restricted [] ["unknown"] no {} [] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Description: The Comprehensive Epidemiologic Data Resource (CEDR) is the Department of Energy's (DOE) electronic database comprised of health studies of DOE contract workers and environmental studies of areas surrounding DOE facilities. DOE recognizes the benefits of data sharing and supports the public's right to know about worker and community health risks. CEDR provides independent researchers and the public with access to de-identified data collected since the Department's early production years. Current CEDR holdings include more than 80 studies of over 1 million workers at 31 DOE sites. Access to these data is at no cost to the user. Most of CEDR's holdings are derived from epidemiologic studies of DOE workers at many large nuclear weapons plants, such as Hanford, Los Alamos, the Oak Ridge reservation, Savannah River Site, and Rocky Flats. These studies primarily use death certificate information to identify excess deaths and patterns of disease among workers to determine what factors contribute to the risk of developing cancer and other illnesses. In addition, many of these studies have radiation exposure measurements on individual workers. CEDR is supported by the Oak Ridge Institute for Science and Education (ORISE) in Oak Ridge, Tennessee. Now a mature system in routine operational use, CEDR's modern internet-based systems respond to thousands of requests to its web server daily. With about 1,500 Internet sites pointing to CEDR's web site, CEDR is a national user facility, with a large audience for data that are not available elsewhere. 2012-08-26 2022-01-26 +r3d100000023 The Cell Image Library eng [{"additionalName": "CIL", "additionalNameLanguage": "eng"}, {"additionalName": "The Cell", "additionalNameLanguage": "eng"}] http://www.cellimagelibrary.org/home ["FAIRsharing_doi:10.25504/FAIRsharing.8t18te", "OMICS_05631", "RRID:SCR_003510", "RRID:nif-0000-37639"] ["dorloff@ncmir.ucsd.edu"] This library is a public and easily accessible resource database of images, videos, and animations of cells, capturing a wide diversity of organisms, cell types, and cellular processes. The Cell Image Library has been merged with "Cell Centered Database" in 2017. The purpose of the database is to advance research on cellular activity, with the ultimate goal of improving human health. eng ["disciplinary"] {"size": "over 10,000 unique datasets and 20 TB of data", "updatedp": "2018-08-10"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20206 Plant Cell and Developmental Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.cellimagelibrary.org/pages/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Cell Biology", "DNA", "RNA", "biochemistry", "chromosome", "endosome", "metabolism", "microscopy data", "plasma", "vacuole", "virus"] [{"institutionName": "American Society for Cell Biology", "institutionAdditionalName": ["ASCB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ascb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ascb.org/contact/"]}, {"institutionName": "National Center for Microscopy and Imaging Research", "institutionAdditionalName": ["NCMIR"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ncmir.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dorloff@ncmir.ucsd.edu", "https://ncmir.ucsd.edu/about/contact-2"]}, {"institutionName": "National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "U.S. National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of California at Berkeley, Department of Molecular and Cell Biology", "institutionAdditionalName": ["MCB", "Molecular and Cell Biology"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mcb.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mcb.berkeley.edu/about-the-department/contact"]}, {"institutionName": "University of Utah, Department of Biochemistry", "institutionAdditionalName": ["Department of Biochemistry"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://medicine.utah.edu/biochemistry/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biochem.web.utah.edu/iwasa/contact.html"]}] [{"policyName": "Licensing Policy", "policyURL": "http://www.cellimagelibrary.org/pages/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cellimagelibrary.org/pages/license"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.cellimagelibrary.org/pages/license"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cellimagelibrary.org/pages/license"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "http://www.cellimagelibrary.org/pages/contribute"}] ["unknown"] no {} [] http://www.cellimagelibrary.org/pages/help#citing_the_library [] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} is covered by Elsevier. The Cell is covered by Thomson Reuters Data Citation Index. We are accumulating images of all cell types from all organisms, including intracellular structures and movies or animations demonstrating functions. This ambitious project obviously is multiyear and relies upon the cell biology community to populate the library. The Cell: An Image Library™ aims to be as useful to the researcher and the public as are the sequence databases for nucleic acids and proteins. Toward that end, the images and videos will be annotated by professionals with broad disciplinary expertise. Raw data as well as data with limited processing will be the most valuable. Please join us in this effort by allowing us to include your image collections and videos in this open access library, and by sharing your raw data. Our team of professional annotators will work with your valuable data to assure its accuracy before presenting it to the scientific and lay communities. Their annotations will provide useful information about the images to allow researchers to explore data generated by biologists. 2012-08-26 2021-09-02 +r3d100000027 CiteSeerX eng [] https://citeseerx.ist.psu.edu/index [] ["https://csxstatic.ist.psu.edu/contact/"] CiteSeerx is an evolving scientific literature digital library and search engine that focuses primarily on the literature in computer and information science. CiteSeerx aims to improve the dissemination of scientific literature and to provide improvements in functionality, usability, availability, cost, comprehensiveness, efficiency, and timeliness in the access of scientific and scholarly knowledge. Rather than creating just another digital library, CiteSeerx attempts to provide resources such as algorithms, data, metadata, services, techniques, and software that can be used to promote other digital libraries. CiteSeerx has developed new methods and algorithms to index PostScript and PDF research articles on the Web. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://csxstatic.ist.psu.edu/home [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Computer Science", "Information Science"] [{"institutionName": "Allen Institute for Artifical Intelligence", "institutionAdditionalName": ["AI2"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://allenai.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Microsoft Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://www.microsoft.com/en-us/research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2003", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "2003", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "2003", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "Pennsylvania State University, The College of Information Sciences and Technology", "institutionAdditionalName": ["Pennsylvania State University, IST"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ist.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://ist.psu.edu/about/contact"]}] [{"policyName": "Privacy Policy", "policyURL": "https://csxstatic.ist.psu.edu/privacy-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] ["unknown"] no {"api": "https://citeseerx.ist.psu.edu/oai2", "apiType": "OAI-PMH"} ["none"] [] unknown unknown [] [] {} 2012-09-09 2021-03-31 +r3d100000028 The Data Hub eng [{"additionalName": "datahub", "additionalNameLanguage": "eng"}] https://datahub.io/ ["RRID:SCR_003996", "RRID:nlx_158409"] ["https://www.datopian.com/contact/"] the Data Hub is a community-run catalogue of useful sets of data on the Internet. You can collect links here to data from around the web for yourself and others to use, or search for data that others have collected. Depending on the type of data (and its conditions of use), the Data Hub may also be able to store a copy of the data or host it in a database, and provide some basic visualisation tools. eng ["other"] {"size": "11.110 datasets, 867 organizations", "updatedp": "2017-01-19"} 2006 ["bul", "cat", "deu", "eng", "fin", "fra", "hun", "ita", "jpn", "kor", "lav", "nld", "nob", "pol", "por", "rus", "slk", "spa", "sqi", "srp", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://datahub.io/docs/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": ["Sloan Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198", "RRID:SCR_005099", "RRID:nlx_144112"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Datopian", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.datopian.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.datopian.com/contact/"]}, {"institutionName": "Open Knowledge Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://okfn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://okfn.org/contact/"]}] [{"policyName": "Privacy Policy", "policyURL": "https://okfn.org/privacy-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [] ["CKAN"] yes {"api": "https://tech.datopian.com/datahub/developers/api.html", "apiType": "REST"} ["none"] [] unknown unknown [] [] {"syndication": "http://ckan.disqus.com/airborne_antarctic_ozone_experiment_aaoe_87_datasets_the_data_hub/latest.rss", "syndicationType": "RSS"} 2012-10-12 2021-04-08 +r3d100000031 Google Code Project Hosting eng [{"additionalName": "Google Code", "additionalNameLanguage": "eng"}, {"additionalName": "Google Code Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Google Project Hosting", "additionalNameLanguage": "eng"}] https://code.google.com/archive/ [] [] The Google Code Archive contains the data found on the Google Code Project Hosting Service, which turned down in early 2016. This archive contains over 1.4 million projects, 1.5 million downloads, and 12.6 million issues. Google Project Hosting powers Project Hosting on Google Code and Eclipse Labs. Project Hosting on Google Code Eclipse Labs. It provides a fast, reliable, and easy open source hosting service with the following features: Instant project creation on any topic; Git, Mercurial and Subversion code hosting with 2 gigabyte of storage space and download hosting support with 2 gigabytes of storage space; Integrated source code browsing and code review tools to make it easy to view code, review contributions, and maintain a high quality code base; An issue tracker and project wiki that are simple, yet flexible and powerful, and can adapt to any development process; Starring and update streams that make it easy to keep track of projects and developers that you care about. eng ["other"] {"size": "", "updatedp": ""} 2007 2016 ["eng", "jpn", "kor", "por", "rus", "spa", "zho"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://code.google.com/archive/about [{"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["open source projects"] [{"institutionName": "Google", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://about.google/intl/com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://about.google/intl/com/contact-google/"]}] [{"policyName": "Google Project Hosting: User Content and Conduct Policy", "policyURL": "https://code.google.com/projecthosting/policy.html"}, {"policyName": "Google Terms of Service", "policyURL": "https://policies.google.com/terms?hl=com"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}] closed [] ["other"] no {"api": "https://cloud.google.com/storage/docs/json_api/v1/", "apiType": "REST"} ["none"] [] unknown no [] [] {} 2012-10-14 2021-04-08 +r3d100000032 Communication Portal for Accessing Social Statistics eng [{"additionalName": "COMPASS", "additionalNameLanguage": "eng"}] http://forscenter.ch/en/data-and-research-information-services/2221-2/public-statistics/ [] ["compass@fors.unil.ch"] The repository is no longer available. >>>!!!<<< 2018-11-20; COMPASS used to be provided and available at FORS but is no longer supported. >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2010 2018-11-20 ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["public statistics"] [{"institutionName": "Consortium of European Social Science Data Archives", "institutionAdditionalName": ["cessda"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "FORS", "institutionAdditionalName": ["Swiss Foundation for Research in Social Sciences"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://forscenter.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://forscenter.ch/en/contact/"]}, {"institutionName": "Swiss Academy of Humanities and Social Sciences", "institutionAdditionalName": ["Acad\u00e9mie suisse des sciences humaines et sociales", "Accademia svizzera di scienze umane e sociali", "SAGW", "Schweizerische Akademie der Geistes- und Sozialwissenschaften"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sagw.ch/sagw.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Lausanne", "institutionAdditionalName": ["UNIL", "Universit\u00e4t Lausanne"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.unil.ch/central/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/eng/Projects/All-projects/CESSDA-SaW/WP3/CESSDA-CDM/Part-2-CRA2-Digital-Object-Management/CPA2.3-Access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://forscenter.ch/en/data-and-research-information-services/2221-2/obtain-data/"}] closed [] ["other"] no {} ["none"] [] unknown unknown [] [] {} COMPASS serves the scientific community with the intention of promoting data from public statistics, by: facilitating access to micro-data, which covers themes such as economics, education, mobility, and health; offering support in terms of choice and use of the data sets; generating public use samples, which are accessible without contract; preparing and disseminating data documentation following an international standard. see also: http://fors-getdata.unil.ch/webview/ 2012-10-20 2019-01-17 +r3d100000033 Forest Global Earth Observatory eng [{"additionalName": "CTFS-ForestGEO", "additionalNameLanguage": "eng"}, {"additionalName": "ForestGEO", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CTFS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Center for Tropical Forest Science", "additionalNameLanguage": "eng"}] https://forestgeo.si.edu/ [] ["ForestGEO@si.edu", "https://forestgeo.si.edu/contact-us"] The Center for Tropical Forest Science (CTFS) is a global network of forest research plots committed to the study of tropical and temperate forest function and diversity. The multi-institutional network comprises more than forty forest research plots across the Americas, Africa, Asia, and Europe, with a strong focus on tropical regions. CTFS monitors the growth and survival of about 6 million trees of approximately 10,000 species. eng ["disciplinary"] {"size": "72 Sites; 27 Countries; 7.000.000 Trees; 12.000 Species", "updatedp": "2021-04-08"} 1980 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://forestgeo.si.edu/what-forestgeo [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological diversity", "forest research"] [{"institutionName": "Smithsonian Tropical Research Institute", "institutionAdditionalName": ["STRI"], "institutionCountry": "PAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://stri.si.edu/facilities", "institutionIdentifier": ["ROR:035jbxr46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://stri.si.edu/contact"]}] [{"policyName": "Smithsonian Institution's Privacy Statement", "policyURL": "https://www.si.edu/privacy/"}, {"policyName": "Terms of Use", "policyURL": "https://www.si.edu/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.si.edu/termsofuse"}] restricted [] ["unknown"] no {} ["none"] https://www.si.edu/termsofuse [] unknown unknown [] [] {"syndication": "https://ctfsnews.blogspot.com/", "syndicationType": "other"} CTFS also includes the data from a subordinate repository CTFS-Panama http://ctfs.si.edu/webatlas/datasets/ (r3d100010689) 2012-11-05 2021-04-12 +r3d100000034 Cornell University Geospatial Information Repository eng [{"additionalName": "CUGIR", "additionalNameLanguage": "eng"}] https://cugir.library.cornell.edu/ ["biodbcore-001506"] ["mann-gis-l@cornell.edu"] CUGIR is an active online repository in the National Spatial Data Clearinghouse program. CUGIR provides geospatial data and metadata for New York State, with special emphasis on those natural features relevant to agriculture, ecology, natural resources, and human-environment interactions. In order to provide the best possible access to geospatial data for New York State, CUGIR coordinates its activities with those of the New York State GIS Clearinghouse eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://cugir.library.cornell.edu/pages/about [{"name": "Images", "scheme": "parse"}] ["serviceProvider"] ["agricultural activities", "environmental hazards", "hydrology", "landforms", "natural resource management", "soils", "topography", "wildlife"] [{"institutionName": "Cornell University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cornell.edu/", "institutionIdentifier": ["ROR:05bnh6r87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cornell University, Albert R. Mann Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mann.library.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cugir.library.cornell.edu/comments"]}] [{"policyName": "Checklist for fair use", "policyURL": "https://copyright.cornell.edu/sites/default/files/2016-10/Fair_Use_Checklist.pdf"}, {"policyName": "Cornell University Library Public Policies", "policyURL": "https://www.library.cornell.edu/about/policies"}, {"policyName": "Guidelines for Using Text, Images, Audio, and Video from Cornell University Library Collections", "policyURL": "https://www.library.cornell.edu/about/policies/public-domain"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.library.cornell.edu/about/policies/public-domain"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2012-11-05 2021-11-16 +r3d100000036 Goddard Earth Sciences Data and Information Services Center eng [{"additionalName": "GES DISC", "additionalNameLanguage": "eng"}] https://disc.gsfc.nasa.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.7388wt"] ["david.j.meyer@nasa.gov", "gsfc-help-disc@lists.nasa.gov", "https://disc.gsfc.nasa.gov/information/documents?title=Contact%20Us"] One of twelve NASA Science Mission Directorate (SMD) Data Centers that provide Earth science data, information, and services to research scientists, applications scientists, applications users, and students. The GES DISC is the home (archive) of NASA Precipitation and Hydrology, as well as Atmospheric Composition and Dynamics remote sensing data and information. The DISC also houses the Modern Era Retrospective-Analysis for Research and Applications (MERRA) data assimilation datasets (generated by GSFC’s Global Modeling and Assimilation Office), and the North American Land Data Assimilation System (NLDAS) and Global Land Data Assimilation System (GLDAS) data products (both generated by GSFC's Hydrological Sciences Branch). eng ["disciplinary"] {"size": "1.428 datasets", "updatedp": "2021-04-12"} 1996 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://disc.gsfc.nasa.gov/information/documents?title=Who%20We%20Are [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["atmospheric composition and dynamics", "earth science data", "hydrology", "precipitation (meteorology)"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://disc.gsfc.nasa.gov/information/documents?title=Contact%20Us"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "GES DISC Data Policy", "policyURL": "https://disc.gsfc.nasa.gov/information/documents?title=data-policy"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws/constitution"}, {"policyName": "NASA Data and Information Policy", "policyURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://disc.gsfc.nasa.gov/information/documents?title=data-policy"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] ["unknown"] no {"api": "https://disc.gsfc.nasa.gov/information/faqs", "apiType": "FTP"} ["DOI"] https://disc.gsfc.nasa.gov/information/documents?title=data-policy [] unknown unknown ["WDS"] [] {} The repository is part of a network of NASA Science Mission Directorate (SMD) Data Centers and part of the ICSU World Data System 2013-01-10 2021-04-12 +r3d100000037 Oak Ridge National Laboratory Distributed Active Archive Center for Biogeochemical Dynamics eng [{"additionalName": "ORNL DAAC", "additionalNameLanguage": "eng"}] https://daac.ornl.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.a833sq"] ["uso@daac.ornl.gov"] The Oak Ridge National Laboratory Distributed Active Archive Center (ORNL DAAC) for biogeochemical dynamics is one of the National Aeronautics and Space Administration (NASA) Earth Observing System Data and Information System (EOSDIS) data centers managed by the Earth Science Data and Information System (ESDIS) Project. The ORNL DAAC archives data produced by NASA's Terrestrial Ecology Program. The DAAC provides data and information relevant to biogeochemical dynamics, ecological data, and environmental processes, critical for understanding the dynamics relating to the biological, geological, and chemical components of Earth's environment. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://daac.ornl.gov/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biogeochemical dynamics", "ecological data", "environmental processes"] [{"institutionName": "National Aeronautics and Space Administration, Terrestrial Ecology Program", "institutionAdditionalName": ["NASA Terrestrial Ecology Program"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cce.nasa.gov/terrestrial_ecology/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": ["ROR:01qz5mb56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["USO@daac.ornl.gov"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/01/Oak-Ridge-National-Laboratory-DAAC.pdf"}, {"policyName": "Data Management for Data Providers", "policyURL": "https://daac.ornl.gov/datamanagement/"}, {"policyName": "Data Product Citation Policy", "policyURL": "https://daac.ornl.gov/about/#citation_policy"}, {"policyName": "Privacy Policy", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://earthdata.nasa.gov/earth-observation-data/data-citations-acknowledgements"}] restricted [{"dataUploadLicenseName": "Data Management for Data Providers", "dataUploadLicenseURL": "https://daac.ornl.gov/datamanagement/"}] ["unknown"] yes {"api": "https://www.unidata.ucar.edu/software/tds/current/reference/NetcdfSubsetServiceConfigure.html", "apiType": "NetCDF"} ["DOI"] https://daac.ornl.gov/about/#citation_policy [] yes yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "https://daac-news.ornl.gov/rss.xml", "syndicationType": "RSS"} is covered by Elsevier. ORNL DAAC is covered by Thomson Reuters Data Citation Index. ORNL DAAC is part of National Aeronautics and Space Administration (NASA) Earth Observing System Data and Information System (EOSDIS) data centers https://earthdata.nasa.gov/eosdis/science-system-description/eosdis-services | Much of the data is in the public domain. Data licenses usually appears under 'Access Restrictions'. 2013-01-14 2021-09-02 +r3d100000038 Australian Antarctic Data Centre eng [{"additionalName": "AADC", "additionalNameLanguage": "eng"}, {"additionalName": "Data management and spatial data services", "additionalNameLanguage": "eng"}] https://data.aad.gov.au/ ["FAIRsharing_doi:10.25504/FAIRsharing.t1tvm9", "RRID:SCR_006320", "RRID:nlx_152019"] ["https://data.aad.gov.au/aadc/requests/new.cfm"] The Australian Antarctic Data Centre (AADC) provides data collection and data management services in Australia's Antarctic Science Program. The AADC manages science data from Australia's Antarctic research, maps Australia's areas of interest in the Antarctic region, manages Australia's Antarctic state of the environment reporting, and provides advice and education and a range of other products. eng ["disciplinary"] {"size": "", "updatedp": ""} 1959 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Antarctic Data", "Antarctic Treaty System", "Polar Data"] [{"institutionName": "Department of Agriculture, Water and the Environment, Australian Antarctic Division", "institutionAdditionalName": ["AAD"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.antarctica.gov.au/", "institutionIdentifier": ["ROR:05e89k615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aadcwebqueries@aad.gov.au", "https://data.aad.gov.au/aadc/about/contact_aadc.cfm"]}] [{"policyName": "Conditions of Use", "policyURL": "https://data.aad.gov.au/aadc/about/condition_of_use.cfm"}, {"policyName": "Data Policy", "policyURL": "https://data.aad.gov.au/aadc/about/data_policy.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [{"dataUploadLicenseName": "Discover and Manage Data", "dataUploadLicenseURL": "https://data.aad.gov.au/metadata/"}] ["unknown"] no {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} AADC is covered by Thomson Reuters Data Citation Index. AADC is member of ICSU World Data System 2013-01-17 2021-04-12 +r3d100000039 Global Biodiversity Information Facility eng [{"additionalName": "Data index of the Global Biodiversity Information Facility", "additionalNameLanguage": "eng"}, {"additionalName": "GBIF.org", "additionalNameLanguage": "eng"}] https://www.gbif.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.zv11j3", "OMICS_19240", "ROR:05fjyn938", "RRID:SCR_005904", "RRID:nlx_149475"] ["https://www.gbif.org/contact-us"] GBIF is an international organisation that is working to make the world's biodiversity data accessible everywhere in the world. GBIF and its many partners work to mobilize the data, and to improve search mechanisms, data and metadata standards, web services, and the other components of an Internet-based information infrastructure for biodiversity. GBIF makes available data that are shared by hundreds of data publishers from around the world. These data are shared according to the GBIF Data Use Agreement, which includes the provision that users of any data accessed through or retrieved via the GBIF Portal will always give credit to the original data publishers. eng ["disciplinary", "institutional"] {"size": "1.671.116.190 occurence records;57.589 datasets;", "updatedp": "2021-04-12"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.gbif.org/what-is-gbif [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal", "archaea", "bacteria", "biodiversity", "chromista", "fungi", "plant", "protozoa", "virus"] [{"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": ["ROR:05fjyn938"], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["communication@gbif.org"]}] [{"policyName": "Data User Agreement", "policyURL": "https://www.gbif.org/terms/data-user"}, {"policyName": "Terms of use", "policyURL": "https://www.gbif.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gbif.org/mou"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gbif.org/terms"}] restricted [{"dataUploadLicenseName": "Data publisher agreement", "dataUploadLicenseURL": "https://www.gbif.org/terms/data-publisher"}] [] yes {"api": "https://www.gbif.org/developer/summary", "apiType": "REST"} ["DOI"] https://www.gbif.org/citation-guidelines [] unknown unknown ["WDS"] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} 2013-01-31 2021-04-12 +r3d100000042 The World Bank Open Data eng [] https://data.worldbank.org/ ["RRID:SCR_012767", "RRID:nlx_156929"] ["data@worldbank.org", "https://www.worldbank.org/en/about/contacts"] The World Bank recognizes that transparency and accountability are essential to the development process and central to achieving the Bank’s mission to alleviate poverty. The Bank’s commitment to openness is also driven by a desire to foster public ownership, partnership and participation in development from a wide range of stakeholders. As a knowledge institution, the World Bank’s first step is to share its knowledge freely and openly. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["ara", "eng", "fra", "rus", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://data.worldbank.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Agriculture and Rural Development", "Aid Effectiveness", "Climate Change", "Economic Policy", "Education", "Energy and Mining", "Environment", "External Debt", "Financial Sector", "Gender", "Health", "Labor Protection", "Microdata", "Poverty", "Private Sector", "Public Sector", "Science and Technology", "Social Development", "Social Protection", "Urban Development"] [{"institutionName": "ICSID", "institutionAdditionalName": ["International Centre for Settlement of Investment Disputes"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://icsid.worldbank.org/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Bank for Reconstruction and Development", "institutionAdditionalName": ["IBRD"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.worldbank.org/en/who-we-are/ibrd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Development Association", "institutionAdditionalName": ["IDA"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://ida.worldbank.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Finance Corporation", "institutionAdditionalName": ["IFC"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ifc.org/wps/wcm/connect/corp_ext_content/ifc_external_corporate_site/home", "institutionIdentifier": ["ROR:049rm1a24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Multilateral Investment Guarantee Agency", "institutionAdditionalName": ["MIGA"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.miga.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The World Bank Group", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worldbank.org/en/home", "institutionIdentifier": ["ROR:00ae7jd04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.worldbank.org/en/about/contacts"]}] [{"policyName": "Terms of Use", "policyURL": "https://archivesphotos.worldbank.org/en/about/archives/photo-gallery/terms-of-use"}, {"policyName": "The World Bank Terms of Use for Datasets", "policyURL": "https://www.worldbank.org/en/about/legal/terms-of-use-for-datasets"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worldbank.org/en/about/legal"}] closed [] ["unknown"] {"api": "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL", "apiType": "REST"} ["none"] https://data.worldbank.org/restricted-data [] unknown unknown [] [] {} 2013-02-11 2021-08-24 +r3d100000043 DataBasin eng [{"additionalName": "Data Basin", "additionalNameLanguage": "eng"}] https://databasin.org/ ["biodbcore-001647"] ["databasin@consbio.org", "https://databasin.org/services/contact/"] Data Basin is a science-based mapping and analysis platform that supports learning, research, and sustainable environmental stewardship. eng ["disciplinary"] {"size": "32.167 datasets; 15.142 maps; 1.146 galleries; 167 public guides and case studies", "updatedp": "2021-04-13"} 2009 ["eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://databasin.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "climate change", "protected areas"] [{"institutionName": "Conservation Biology Institute", "institutionAdditionalName": ["Bridging conservation science and practice", "CBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://consbio.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://databasin.org/services/contact"]}, {"institutionName": "The Kresge Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://kresge.org/", "institutionIdentifier": ["ROR:043ttpn32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wilburforce Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wilburforce.org/", "institutionIdentifier": ["ROR:000b2tt25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://consbio.org/general/pages/terms-and-conditions"}, {"policyName": "Terms of Use", "policyURL": "https://databasin.org/pages/terms-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://consbio.org/general/pages/terms-and-conditions"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://databasin.org/about"}] restricted [{"dataUploadLicenseName": "Processing and Uploading Data", "dataUploadLicenseURL": "https://databasin.org/services/services"}] ["unknown"] no {} ["none"] https://databasin.org/pages/terms-service [] unknown unknown [] [] {} 2013-02-13 2021-11-17 +r3d100000044 DRYAD eng [] https://datadryad.org/stash ["FAIRsharing_dOI:10.25504/FAIRsharing.wkggtx", "OMICS_20678", "ROR:00x6h5n95", "RRID:SCR_005910", "RRID:nlx_149486"] ["curator@datadryad.org", "help@datadryad.org"] Dryad is an international repository of data underlying peer-reviewed scientific and medical literature, particularly data for which no specialized repository exists. The content is considered to be integral to the published research. All material in Dryad is associated with a scholarly publication eng ["other"] {"size": "40.098 data packages", "updatedp": "2021-04-13"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datadryad.org/stash/our_mission#community [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "biodiversity", "interdisciplinary", "scientific and medical publications"] [{"institutionName": "California Digital Library", "institutionAdditionalName": ["CDL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cdlib.org/", "institutionIdentifier": ["ROR:03yrm5c26"], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dryad", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://datadryad.org/stash/our_community", "institutionIdentifier": ["ROR:00x6h5n95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["director@datadryad.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Our community", "policyURL": "https://datadryad.org/stash/our_community#institutional"}, {"policyName": "Publication policy", "policyURL": "https://datadryad.org/stash/terms#publication"}, {"policyName": "Terms of Service", "policyURL": "https://datadryad.org/stash/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://datadryad.org/stash/faq#searching"}] restricted [{"dataUploadLicenseName": "Depositing data to Dryad", "dataUploadLicenseURL": "https://datadryad.org/stash/faq#depositing-acceptable-data"}] ["DSpace"] yes {"api": "https://v1.datadryad.org/oai/request?", "apiType": "OAI-PMH"} ["DOI"] https://datadryad.org/stash/faq#cite ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} Dryad is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. Dryad is a nonprofit organization, governed by its member organizations, including journals, publishers, scientific societies, funding agencies, and other stakeholders, and an international repository of data underlying scientific and medical publications. For more information see https://datadryad.org/stash/our_membership 2013-02-06 2021-09-03 +r3d100000045 DataONE eng [{"additionalName": "Data Observation Network for Earth", "additionalNameLanguage": "eng"}] https://www.dataone.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.yyf78h", "MIR:00100815", "ROR:00hr5y405", "RRID:SCR_003999", "RRID:nlx_158410"] ["https://www.dataone.org/contact/", "support@dataone.org"] Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data. Supported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.dataone.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["climate", "climate change", "environmental science"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oak Ridge National Laboratory, Oak Ridge Campus", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": ["ROR:01qz5mb56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Tennessee, Knoxville", "institutionAdditionalName": ["UTK"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utk.edu/", "institutionIdentifier": ["ROR:020f3ap87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California Santa Barbara", "institutionAdditionalName": ["UCSB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucsb.edu/", "institutionIdentifier": ["ROR:02t274463"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Mexico", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unm.edu/", "institutionIdentifier": ["ROR:05fs6jp91"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.dataone.org/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://old.dataone.org/citing-dataone"}] restricted [] ["other"] no {} ["DOI"] https://old.dataone.org/citing-dataone [] unknown unknown [] [] {} DataONE is a portal (long-term data preservation and access network) which searches different member nodes for enviromental data (see https://www.dataone.org/network/#list-of-member-repositories). 2013-02-01 2021-09-08 +r3d100000046 European Environment Agency, Datasets eng [{"additionalName": "EEA", "additionalNameLanguage": "eng"}] https://www.eea.europa.eu/data-and-maps [] [] The European Environment Agency (EEA) is an agency of the European Union. Our task is to provide sound, independent information on the environment. We are a major information source for those involved in developing, adopting, implementing and evaluating environmental policy, and also the general public. Currently, the EEA has 33 member countries. EEA's mandate is: To help the Community and member countries make informed decisions about improving the environment, integrating environmental considerations into economic policies and moving towards sustainability To coordinate the European environment information and observation network (Eionet) eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1996 ["ces", "dan", "deu", "ell", "eng", "est", "fin", "fra", "hun", "isl", "ita", "lav", "lit", "mlt", "nor", "pol", "por", "ron", "slk", "slv", "spa", "swe", "tur"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.eea.europa.eu/about-us/what [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Air pollution", "Air quality", "Biodiversity", "Climate change", "Coasts and seas", "Energy", "Green economy", "Industry", "Land use", "Natural resources", "Policy instruments", "Soil", "Urban environment", "environmental data", "environmental policy"] [{"institutionName": "The European Environment Agency", "institutionAdditionalName": ["EEA"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eea.europa.eu/", "institutionIdentifier": ["ROR:02k4b9v70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eea.europa.eu/contact-us"]}] [{"policyName": "Specific privacy statement", "policyURL": "https://www.eea.europa.eu/about-us/what/public-events/competitions/imaginair/imaginair-competition-rules/specific-privacy-statement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.eea.europa.eu/legal/copyright"}] closed [] ["other"] no {} ["other"] [] unknown unknown [] [] {"syndication": "https://www.eea.europa.eu/subscription/news-feeds", "syndicationType": "RSS"} The EEA now has 32 member countries and six cooperating countries 2013-01-17 2021-04-13 +r3d100000047 Edinburgh DataShare eng [{"additionalName": "DataShare", "additionalNameLanguage": "eng"}, {"additionalName": "DataShareProject", "additionalNameLanguage": "eng"}] https://datashare.ed.ac.uk/ [] ["https://www.ed.ac.uk/information-services/research-support/research-data-service/contact", "r.rice@ed.ac.uk"] Edinburgh DataShare is an online digital repository of multi-disciplinary research datasets produced at the University of Edinburgh, hosted by the Data Library in Information Services. Edinburgh University researchers who have produced research data associated with an existing or forthcoming publication, or which has potential use for other researchers, are invited to upload their dataset for sharing and safekeeping. A persistent identifier and suggested citation will be provided. eng ["institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ed.ac.uk/information-services/research-support/research-data-service/after [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86", "RRID:SCR_011331", "RRID:nlx_23596"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "The University of Edinburgh, Information Services", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/information-services", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://www.ed.ac.uk/information-services/help-consultancy/contact-helpline"]}] [{"policyName": "Service policies", "policyURL": "https://www.ed.ac.uk/information-services/research-support/research-data-service/after/data-repository/service-policies"}, {"policyName": "Terms and conditions of use", "policyURL": "https://www.ed.ac.uk/about/website/website-terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ed.ac.uk/about/website/website-terms-conditions"}, {"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/norms/odc-by-sa/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ed.ac.uk/information-services/research-support/research-data-service/after/data-repository/service-policies/data-metadata-policy"}] restricted [{"dataUploadLicenseName": "Submission policy", "dataUploadLicenseURL": "https://www.ed.ac.uk/information-services/research-support/research-data-service/after/data-repository/service-policies/submission-policy"}] ["DSpace"] yes {} ["DOI", "hdl"] https://www.wiki.ed.ac.uk/display/datashare/metadata [] unknown yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://datashare.ed.ac.uk/feed/rss_2.0/site", "syndicationType": "RSS"} Edinburgh DataShare is covered by Thomson Reuters Data Citation Index. The DISC-UK DataShare Project was funded from March 2007-March 2009 as part of JISC’s Repositories and Preservation programme, Repositories Enhancement strand. It was led by EDINA and Edinburgh University Data Library in partnership with the University of Oxford and the University of Southampton. The project built on the existing informal collaboration of UK data librarians and data managers who formed DISC-UK (Data Information Specialists Committee – UK). 2012-11-02 2021-04-13 +r3d100000049 Potsdam Carte du Ciel Plates fra [] https://dc.zah.uni-heidelberg.de/potsdam/q/raw/info [] [] Publication of scans of photographic plates from the so-called "Potsdam zone" of the Carte du Ciel project (32 deg to 39 deg). A total of 977 plates of 2 square degree sky regions was observed and recorded between 1913 to 1924. Since Potsdam Observatory ended participation in the Carte du Ciel project, these observations were so far not analysed or published. Plates were scanned in by a flat bed scanner in 2007-2008. Limitations in astrometric precision as well are to be expected, and specific observational restrains apply, such as multiple exposures on certain plates (see literature) eng ["other"] {"size": "", "updatedp": ""} 2009-08-02 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Astrophotography", "History and philosophy of astronomy", "Photographic plate"] [{"institutionName": "German Astrophysical Virtual Observatory", "institutionAdditionalName": ["GAVO"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.g-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["gavo@ari.uni-heidelberg.de"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute for Astrophysics Potsdam", "institutionAdditionalName": ["AIP", "Astrophysikalisches Institut Potsdam"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aip.de/en/", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://dc.zah.uni-heidelberg.de/static/doc/disclaimer.shtml"}, {"policyName": "Privacy", "policyURL": "https://dc.zah.uni-heidelberg.de/static/doc/privpol.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/home.en.html"}] restricted [{"dataUploadLicenseName": "Publishing your data in the VO", "dataUploadLicenseURL": "https://www.g-vo.org/pmwiki/About/GettingStarted"}] ["other"] no {} ["other"] https://dc.zah.uni-heidelberg.de/__system__/services/root/howtocite [] unknown unknown [] [] {} The repository is a part of the GAVO data center: https://dc.zah.uni-heidelberg.de/ 2012-11-01 2021-04-13 +r3d100010035 The Chandra Data Archive eng [{"additionalName": "CDA", "additionalNameLanguage": "eng"}] https://cxc.cfa.harvard.edu/cda/ [] ["arcops@head.cfa.harvard.edu"] The Chandra Data Archive (CDA) plays a central role in the operation of the Chandra X-ray Center (CXC) by providing support to the astronomical community in accessing Chandra data. Its primary role is one of storage and distribution of all data products including those that users of the observatory need to perform their scientific studies using Chandra data. The CDA offers access to digital archives through powerful query engines, including VO-compliant interfaces. The CDA also serves as a permanent storage repository of contributed data products by authors who have processed images or other pertinent and valuable datasets that are essential to their publications. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["x-ray"] [{"institutionName": "Chandra X-ray Observatory", "institutionAdditionalName": ["CXC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cxc.harvard.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cxchelp@head.cfa.harvard.edu"]}, {"institutionName": "National Aeronautics and Space Administration, Marshall Space Flight Center", "institutionAdditionalName": ["NASA-MSFC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/marshall/home/index.html", "institutionIdentifier": ["ROR:02epydz83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Smithsonian Astrophysical Observatory", "institutionAdditionalName": ["SAO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://pweb.cfa.harvard.edu/about/about-smithsonian-astrophysical-observatory", "institutionIdentifier": ["ROR:04mh52z70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.si.edu/Termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://chandra.harvard.edu/photo/image_use.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/fls/fl102.html"}] restricted [] ["unknown"] no {} ["none"] https://cxc.cfa.harvard.edu/cdo/scipubs.html [] unknown yes [] [] {} 2012-11-15 2021-04-13 +r3d100010050 Research Data Archive at NCAR eng [{"additionalName": "NCAR CISL RDA", "additionalNameLanguage": "eng"}, {"additionalName": "National Center for Atmospheric Research Research Data Archive", "additionalNameLanguage": "eng"}] https://rda.ucar.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.q31z3g"] ["https://rda.ucar.edu/#!about", "rdahelp@ucar.edu"] The Research Data Archive (RDA) at NCAR contains a large and diverse collection of meteorological and oceanographic observations, operational and reanalysis model outputs, and remote sensing datasets to support atmospheric and geosciences research, along with ancillary datasets, such as topography/bathymetry, vegetation, and land use. eng ["disciplinary"] {"size": "710 datasets", "updatedp": "2021-04-13"} 1965 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://rda.ucar.edu/#!about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmospheric and geosciences research", "global atmospheric reanalyses", "meteorological and oceanographic observations", "remote sensing", "topography/bathymetry"] [{"institutionName": "National Center for Atmospheric Research, Computational and Information Systems Laboratory, Data Engineering and Curation Section", "institutionAdditionalName": ["CISL, DECS", "NCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.cisl.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1965", "responsibilityEndDate": "", "institutionContact": ["rdahelp@ucar.edu"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "1965", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucar.edu/", "institutionIdentifier": ["ROR:04zhhyn23"], "responsibilityStartDate": "1965", "responsibilityEndDate": "", "institutionContact": ["https://www.ucar.edu/who-we-are/contact-us"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/06/Research-Data-Archive-at-the-National-Center-for-Atmospheric-Research-NCAR.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://www.ucar.edu/terms-of-use"}, {"policyName": "Terms of Use for UCAR Data Repositories", "policyURL": "https://rda.ucar.edu/index.html#repository_terms_conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://rda.ucar.edu/index.html#repository_terms_conditions"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rda.ucar.edu/index.html#repository_terms_conditions"}] restricted [] ["MySQL"] yes {"api": "https://rda.ucar.edu/cgi-bin/oai", "apiType": "OAI-PMH"} ["DOI"] https://rda.ucar.edu/#!data-citation [] yes yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://ncarrda.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} The Research Data Archive at NCAR is covered by Thomson Reuters Data Citation Index. NCAR is a regular member of ICSU World Data System - WDS. 2012-08-03 2021-10-14 +r3d100010051 Harvard Dataverse eng [{"additionalName": "The Dataverse Project", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/ ["FAIRSharing_doi:10.25504/fairsharing.t2e1ss", "RRID:SCR_001997", "RRID:nif-0000-00316"] [] The Harvard Dataverse is open to all scientific data from all disciplines worldwide. It includes the world's largest collection of social science research data. It is hosting data for projects, archives, researchers, journals, organizations, and institutions. eng ["disciplinary", "institutional"] {"size": "4.749 dataverses,108.231 datasets,953.876 files", "updatedp": "2021-04-08"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://dataverse.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "automes research", "demography", "epidemiology", "human societies", "human behavior", "multidisciplinary", "social societies"] [{"institutionName": "Harvard University, Institute for Quantitative Social Sciences", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["support@thedata.org"]}] [{"policyName": "API Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-api-tou"}, {"policyName": "Terms of use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Data deposit terms", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown no [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Harvard Dataverse is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. A collaboration with Harvard Library, Harvard University IT, and IQSS 2012-07-30 2021-09-03 +r3d100010052 Encyclopedia of Astronomy and Astrophysics eng [{"additionalName": "EAA", "additionalNameLanguage": "eng"}] http://eaa.crcpress.com/ [] ["e-reference@taylorandfrancis.com", "http://eaa.crcpress.com/default.asp"] This unique resource covers the entire field of astronomy and astrophysics and this online version includes the full text of over 2,750 articles, plus sophisticated search and retrieval functionality, links to the primary literature, and is frequently updated with new material. An active editorial team, headed by the Encyclopedia's editor-in-chief, Paul Murdin, oversees the continual commissioning, reviewing and loading of new and revised content.In a unique collaboration, Nature Publishing Group and Institute of Physics Publishing published the most extensive and comprehensive reference work in astronomy and astrophysics in both print and online formats. First published as a four volume print edition in 2001, the initial Web version went live in 2002, and contained the original print material and was rapidly supplemented with numerous updates and newly commissioned material. Since July 2006 the Encyclopedia is published solely by Taylor & Francis. eng ["other"] {"size": "over 2.750 articles", "updatedp": "2019-12-02"} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://eaa.crcpress.com/default.asp?action=about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["archaeoastronomy", "cosmology", "earth", "galaxies", "interstellar medium", "solar system", "space missions", "stars", "sun"] [{"institutionName": "Taylor & Francis", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://taylorandfrancis.com/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["e-reference@taylorandfrancis.com"]}] [{"policyName": "subscription information", "policyURL": "http://eaa.crcpress.com/default.asp?action=subscribe"}, {"policyName": "subscription information", "policyURL": "http://eaa.crcpress.com/pdf/subsform.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://eaa.crcpress.com/default.asp?action=TermsAndCondition"}, {"databaseLicenseName": "other", "databaseLicenseURL": "http://eaa.crcpress.com/pdf/subsform.pdf"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://eaa.crcpress.com/pdf/subsform.pdf"}] closed [] ["unknown"] yes {} ["DOI"] [] unknown yes [] [] {} In a unique collaboration, Nature Publishing Group and Institute of Physics Publishing published the most extensive and comprehensive reference work in astronomy and astrophysics in both print and online formats. First published as a four volume print edition in 2001, the initial Web version went live in 2002, and contained the original print material and was rapidly supplemented with numerous updates and newly commissioned material. Since July 2006 the Encyclopedia is published solely by Taylor & Francis. This unique resource covers the entire field of astronomy and astrophysics and this online version includes the full text of over 2,750 articles, plus sophisticated search and retrieval functionality, links to the primary literature, and is frequently updated with new material. An active editorial team, headed by the Encyclopedia's editor-in-chief, Paul Murdin, oversees the continual commissioning, reviewing and loading of new and revised content. The Encyclopedia's authority is assured by editorial and advisory boards drawn from the world's foremost astronomers and astrophysicists. This first class resource will be an essential source of information for undergraduates, graduate students, researchers and seasoned professionals, as well as for committed amateurs, librarians and lay people wishing to consult the definitive astronomy and astrophysics reference work. 2012-09-04 2021-06-25 +r3d100010054 U.S. Geological Survey eng [{"additionalName": "including: USGS Science Data Catalog", "additionalNameLanguage": "eng"}] https://www.usgs.gov/products/data-and-tools/overview [] ["https://answers.usgs.gov/", "sciencedatacatalog@usgs.gov"] USGS data and tools are the digital information in a format suitable for direct input to software that can analyze its meaning in the scientific, engineering, or business context for which the data were collected. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.usgs.gov/datacatalog/#about [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["earthquake", "ecosystems", "missions", "wildlife"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["ROR:00hr5y405", "RRID:SCR_003999", "RRID:nlx_158410"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "U.S. Department of the Interior", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.doi.gov/", "institutionIdentifier": ["ROR:03v0pmy70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863", "RRID:SCR_010168"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "Open Data requirements", "policyURL": "https://project-open-data.cio.gov/"}, {"policyName": "Policies an notices", "policyURL": "https://www.usgs.gov/policies-notices"}, {"policyName": "Policy Principles", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/microsites/ostp/ostp_public_access_memo_2013.pdf"}, {"policyName": "USGS Data Management", "policyURL": "https://www.usgs.gov/products/data-and-tools/data-management/overview-data-management"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits"}] restricted [] [] yes {"api": "https://www.usgs.gov/products/data-and-tools/apis", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} USGS is covered by Clarivate Data Citation Index. USGS science Data Catalog is a member node of DataONE: https://search.dataone.org/#profile/USGS_SDC . Other tools to retrieve USGS Data: The USGS EarthExplorer (EE) for aerial photos, elevation data and satellite products http://earthexplorer.usgs.gov/; USGS Global Visualization Viewer (GloVis) for Landsat missions, ASTER and MODIS data holdings http://glovis.usgs.gov/; LandsatLookViewer http://landsatlook.usgs.gov/ 2012-09-06 2021-09-03 +r3d100010055 European Climate Assessment & Dataset project eng [{"additionalName": "ECA&D", "additionalNameLanguage": "eng"}] https://www.ecad.eu/ [] ["eca@knmi.nl"] Presented is information on changes in weather and climate extremes, as well as the daily dataset needed to monitor and analyse these extremes. map of participating countries. Today, ECA&D is receiving data from 59 participants for 62 countries and the ECA dataset contains 33265 series of observations for 12 elements at 7512 meteorological stations throughout Europe and the Mediterranean (see Daily data > Data dictionary). 51% of these series is public, which means downloadable from this website for non-commercial research. Participation to ECA&D is open to anyone maintaining daily station data eng ["disciplinary", "institutional"] {"size": "74186 series of observations; for 13 elements; at 20110 meteorological stations throughout Europe and the Mediterranean", "updatedp": "2021-04-08"} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["climate", "weather"] [{"institutionName": "EUMETNET, European Climate Support Network", "institutionAdditionalName": ["ECSN"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.eumetnet.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": ["ROR:00k4n6c32", "RRID:SCR_011211", "RRID:nlx_47458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Netherlands Meteorological Institute", "institutionAdditionalName": ["KNMI", "Koninklijk Nederlands Meteorologisch Instituut"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.knmi.nl/over-het-knmi/about", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["eca@knmi.nl"]}] [{"policyName": "data policy", "policyURL": "https://www.ecad.eu/documents/ECAD_datapolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ecad.eu/documents/ECAD_datapolicy.pdf"}] restricted [{"dataUploadLicenseName": "ECAD datapolicy", "dataUploadLicenseURL": "https://www.ecad.eu/documents/ECAD_datapolicy.pdf"}] ["unknown"] yes {} ["none"] https://www.ecad.eu/documents/ECAD_datapolicy.pdf [] unknown yes [] [] {} ECA&D has been designated as Regional Climate Centre for Climate Data (RCC-CD) in WMO Region VI (Europe and the Middle East). ECA&D forms the backbone of the climate data node in the Regional Climate Centre (RCC) for WMO Region VI (Europe and the Middle East) since 2010. The data and information products contribute to the Global Framework for Climate Services (GFCS). 2012-09-11 2021-04-09 +r3d100010056 CoRIS eng [{"additionalName": "Coral Reef Information System", "additionalNameLanguage": "eng"}] https://www.coris.noaa.gov/ [] ["coris@noaa.gov", "http://www.coris.noaa.gov/backmatter/contactus.html"] NOAA's Coral Reef Information System (CoRIS) is a web-based information portal that provides access to NOAA coral reef information and data products with emphasis on the U.S. states, territories and remote island areas. NOAA Coral Reef activities include coral reef mapping, monitoring and assessment; natural and socioeconomic research and modeling; outreach and education; and management and stewardship. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animalia", "artificial intelligence", "atmosphere", "biological survey", "climatology", "coastal change", "coral reef mapping; natural research", "coral reefs", "ecology", "ecosystem", "fungi", "geographic information systems", "glacier", "marine systems", "monera", "natural research", "ocean", "oceanographic equipment", "oceanography", "plankton", "plantae", "protista", "sensor arrays", "socioeconomic research", "water quality monitoring"] [{"institutionName": "National Oceanic and Atmospheric Administration, Coral Reef Conservation Program", "institutionAdditionalName": ["CRCP", "NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://coralreef.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1961", "responsibilityEndDate": "", "institutionContact": ["https://www.coris.noaa.gov/backmatter/contactus.html"]}] [{"policyName": "disclaimer", "policyURL": "https://www.coris.noaa.gov/backmatter/disclaimer.html"}, {"policyName": "privacy policy", "policyURL": "https://www.coris.noaa.gov/backmatter/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://coralreef.noaa.gov/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.coris.noaa.gov/backmatter/siteinfo.html"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "https://www.coris.noaa.gov/rss/latest_pubs.xml", "syndicationType": "RSS"} 2012-11-19 2021-06-25 +r3d100010057 eCrystals eng [{"additionalName": "eCrystals - Southampton", "additionalNameLanguage": "eng"}] http://ecrystals.chem.soton.ac.uk/ ["FAIRSharing_doi:10.25504/fairsharing.v448pt"] [] eCrystals - Southampton is the archive for Crystal Structures generated by the Southampton Chemical Crystallography Group and the EPSRC UK National Crystallography Service. eng ["disciplinary"] {"size": "1026 records", "updatedp": "2015-09-15"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://ecrystals.chem.soton.ac.uk/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["crystallography", "ecrystals", "structure"] [{"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://epsrc.ukri.org/", "institutionIdentifier": ["ROR:0439y7842", "RRID:SCR_013495", "RRID:nlx_10253"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK National Crystallography Service", "institutionAdditionalName": ["NCS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncs.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southampton", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.southampton.ac.uk/", "institutionIdentifier": ["RRID:SCR_008086", "RRID:nlx_56990"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Rights for eCrystals", "policyURL": "http://ecrystals.chem.soton.ac.uk/rights.html"}, {"policyName": "The Open Definition", "policyURL": "http://opendefinition.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "http://opendatacommons.org/licenses/dbcl/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "http://opendatacommons.org/licenses/by/draft"}] restricted [] ["EPrints"] yes {"api": "http://ecrystals.chem.soton.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] http://ecrystals.chem.soton.ac.uk/rights.html [] unknown yes [] [] {} eCrystals is covered by Thomson Reuters Data Citation Index. The archive for Crystal Structures is generated by the Southampton Chemical Crystallography Group and the EPSRC UK National Crystallography Service. 2012-09-22 2021-09-03 +r3d100010059 ShareGeo open eng [{"additionalName": "Edinburgh DataShare", "additionalNameLanguage": "eng"}] https://datashare.ed.ac.uk/handle/10283/2345 [] ["edina@ed.ac.uk", "http://www.sharegeo.ac.uk/contact-form"] ShareGeo Open was a repository of geospatial data, previously hosted by EDINA. ShareGeo Open has been discontinued, so its datasets have been migrated to this Edinburgh DataShare Collection, for preservation, in accordance with the agreement signed by all ShareGeo depositors. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2010 2019-12-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["boundaries", "city planning", "economic history", "environment", "geospatial data", "historical geography", "satellite image maps"] [{"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "University of Edinburgh", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data Management Policy", "policyURL": "https://www.ed.ac.uk/information-services/about/policies-and-regulations/research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "DataShare depositor agreement", "dataUploadLicenseURL": "https://www.ed.ac.uk/information-services/research-support/research-data-service/after/data-repository/depositor-agreement"}] ["DSpace"] {} ["hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ShareGeo open is covered by Thomson Reuters Data Citation Index. ShareGeo parts in 2 sections: ShareGeo Open and ShareGeo digimap; Digimap is a service offering free access to maps and geospatial data from a number of national data providers only for users from subscribing UK universities and colleges. 2012-09-28 2021-08-09 +r3d100010060 OpenEI eng [{"additionalName": "Open Energy Information", "additionalNameLanguage": "eng"}, {"additionalName": "OpenEnergyInfo", "additionalNameLanguage": "eng"}] https://openei.org/wiki/Main_Page [] ["openeiweb@nrel.gov"] The Open Energy Information (OpenEI.org) initiative is a free, open source knowledge-sharing platform created to facilitate access to data, models, tools, and information that accelerate the transition to clean energy systems through informed decisions. Sponsored by the Department of Energy, and developed by the National Renewable Energy Lab, in support of the Open Government Initiative, OpenEI strives to make energy-related data and information searchable, accessible, and useful to both people and machines eng ["disciplinary", "institutional"] {"size": "2.240 datasets", "updatedp": "2021-08-06"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://openei.org/wiki/OpenEI:About [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["energy", "energy data", "energy efficiency", "energy information", "geothermal energy", "oil and gas", "renewable energy", "solar energy", "water energy", "wind energy"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["openei.webmaster@nrel.gov"]}, {"institutionName": "U.S.Department of Energy, Office of Energy Efficiency and Renewable Energy", "institutionAdditionalName": ["DOE", "EERE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/office-energy-efficiency-renewable-energy", "institutionIdentifier": ["ROR:02xznz413"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "OpenEI core content policies", "policyURL": "https://openei.org/wiki/OpenEI:Core_content_policies"}, {"policyName": "The Open Definition", "policyURL": "https://opendefinition.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "core content policies", "dataUploadLicenseURL": "https://openei.org/wiki/OpenEI:Core_content_policies"}] [] yes {"api": "https://openei.org/services/", "apiType": "REST"} ["DOI"] https://openei.org/wiki/Help:Citations [] unknown yes [] [] {"syndication": "https://en.openei.org/w/index.php?title=Special:RecentChanges&feed=atom", "syndicationType": "ATOM"} NREL is a national laboratory of the U.S. Department of Energy, Office of Energy Effciency and Renewable Energy, operated by the Alliance for Sustainable Energy, LLC 2012-10-02 2021-08-11 +r3d100010061 Atmospheric Science Data Center eng [{"additionalName": "ASDC", "additionalNameLanguage": "eng"}, {"additionalName": "LaRC ASDC", "additionalNameLanguage": "eng"}, {"additionalName": "NASA Langley Research Center, Atmospheric Science Data Center", "additionalNameLanguage": "eng"}] https://eosweb.larc.nasa.gov/ [] [] The Atmospheric Science Data Center (ASDC) at NASA Langley Research Center is responsible for processing, archiving, and distribution of NASA Earth science data in the areas of radiation budget, clouds, aerosols, and tropospheric chemistry.The ASDC specializes in atmospheric data important to understanding the causes and processes of global climate change and the consequences of human activities on the climate. eng ["disciplinary", "other"] {"size": "61 projects; more than 1000 archived datasets", "updatedp": "2019-05-15"} 1991 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://eosweb.larc.nasa.gov/more-about-asdc [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CALIPSO", "CERES", "Global climate change", "ISCCP", "MOPITT", "SRB", "TES", "aerosols", "astrophysics", "atmospheric chemistry", "clouds", "meteorology", "radiation budget", "satellite program", "tropospheric chemistry"] [{"institutionName": "Atmospheric Science Data Center at NASA Langley Research Center", "institutionAdditionalName": ["ASDC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/centers/langley/about/contact.html"]}, {"institutionName": "NASA's Earth Observing System Data and Information System", "institutionAdditionalName": ["EOSDIS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "Policy statement", "policyURL": "https://eosweb.larc.nasa.gov/citing-asdc-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}, {"dataLicenseName": "other", "dataLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}] restricted [{"dataUploadLicenseName": "Data Rights & related issues", "dataUploadLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues/"}] ["other"] yes {"api": "http://l0dup05.larc.nasa.gov/opendap/", "apiType": "OpenDAP"} ["DOI"] https://eosweb.larc.nasa.gov/citing-asdc-data [] yes yes ["WDS"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {"syndication": "https://eosweb.larc.nasa.gov/rss/asdc_news.xml", "syndicationType": "RSS"} The Data Center was established in 1991 to support the Earth Observing System (EOS) as part of NASA's Earth Science enterprise and the U.S. Global Change Research Program, and is one of several Distributed Active Archive Centers (DAACs) sponsored by NASA as part of the Earth Observing System Data and Information System (EOSDIS). The Data Center specializes in atmospheric data important to understanding the causes and processes of global climate change and the consequences of human activities on the climate.---- NASA ESDIS is a network member of ICSU World Data System. 2013-08-07 2021-06-25 +r3d100010062 SAFER-Data eng [{"additionalName": "EPA Secure Archive For Environmental Research Data", "additionalNameLanguage": "eng"}] http://erc.epa.ie/safer/ [] ["http://erc.epa.ie/safer/information/contactUs.jsp", "research@epa.ie"] SAFER-Data is a web-based interface to the Environmental Data Archive maintained by the Environmental Research Centre (ERC) in the Environmental Protection Agency (EPA) of Ireland, who has responsibilities for a wide range of licensing, enforcement, monitoring and assessment activities associated with environmental protection. eng ["disciplinary", "other"] {"size": "429 Resources, 4.532 Files, 165 EPA research reports", "updatedp": "2019-12-02"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.epa.ie/about/roles/mission/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GIS", "biodiversity", "cartography", "climatology", "environmental sciences", "geography", "soils"] [{"institutionName": "Ireland Environmental Protection Agency, Environmental Research Centre", "institutionAdditionalName": ["EPA", "ERC"], "institutionCountry": "IRL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://epa.ie/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["http://erc.epa.ie/safer/information/contactUs.jsp"]}] [{"policyName": "Access to Information on the Environment", "policyURL": "http://www.epa.ie/about/info/aie/"}, {"policyName": "Disclaimer", "policyURL": "http://www.epa.ie/footer/disclaimer/"}, {"policyName": "Privacy policy", "policyURL": "http://www.epa.ie/footer/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.epa.ie/about/info/"}] restricted [{"dataUploadLicenseName": "Submission of Final Reports", "dataUploadLicenseURL": "http://www.epa.ie/pubs/reports/research/abouteparesearch/submission/eparesearchguidelinesforreport.html"}] ["MySQL"] yes {"api": "http://erc.epa.ie/safer/webservices/safer_json.jsp", "apiType": "REST"} ["none"] http://erc.epa.ie/safer/iso19115/cite.jsp?isoID=64 [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://erc.epa.ie/safer/rss/index.jsp", "syndicationType": "RSS"} Every project funded under the STRIVE programme is obliged to submit all significant data sets and information generated during the project to the EPA at the conclusion of the research project7. To support researchers in meeting this requirement, the EPA has developed a large-scale computer system named the ERC Server for the upload, storage, management, dissemination, and long-term preservation of these data resources. This development was assisted by the ERC Postdoctoral Fellowship Environmental Research Data Management which ran from 2004 until 2007. One of the key deliverables of this fellowship was the establishment of a software-based data management system for use by the environmental research community. The SAFER-Data system (http:// erc.epa.ie/safer) was developed. SAFER-Data is a fully web-based interface to the ERC Server for use by STRIVE-funded researchers and the environmental science community to upload and manage data resources generated during their research. SAFERData is also the principal point on the EPA website for the dissemination of environmental research data generated by STRIVE-funded research projects. 2012-08-13 2021-06-25 +r3d100010063 Earth Resources Observation and Science Center eng [{"additionalName": "USGS EROS Archive", "additionalNameLanguage": "eng"}, {"additionalName": "USGS EROS Center", "additionalNameLanguage": "eng"}, {"additionalName": "WDC - Earth Resources Observation and Science EROS", "additionalNameLanguage": "eng"}] https://eros.usgs.gov/ [] ["custserv@usgs.gov"] Earth Resources Observation and Science (EROS) Center is a remotely sensed data management, systems development, and research field center for the U.S. Geological Survey's (USGS) Climate and Land Use Change Mission Area. The USGS is a bureau of the U.S. Department of the Interior. It currently houses one of the largest computer complexes in the Department of the Interior. EROS has approximately 600 government and contractor employees. eng ["disciplinary"] {"size": "4 million frames of worldwide satellite images and 8 million high-altitude aerial photographs", "updatedp": "2019-05-15"} 1970 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www2.usgs.gov/info_qual/#vision [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Airborne Science Program", "Landsat Program", "climate change", "hazards and disasters", "landscape dynamics", "maps", "remote sensing", "satellite images", "satellites"] [{"institutionName": "U.S. Department of the Interior, United States Geological Survey, Earth Resources Observation and Science Center", "institutionAdditionalName": ["EROS", "USGS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://eros.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1970", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://lta.cr.usgs.gov/citation"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] restricted [{"dataUploadLicenseName": "survey manual", "dataUploadLicenseURL": "https://www2.usgs.gov/usgs-manual/toc.html"}] ["unknown"] yes {} ["none"] https://lta.cr.usgs.gov/citation [] unknown yes ["other"] [] {"syndication": "https://eros.usgs.gov/views-news/feed", "syndicationType": "RSS"} EROS is a regular member of World Data System - WDS. 2012-08-15 2019-05-15 +r3d100010064 Ecological Archives eng [{"additionalName": "esa's ecological archives", "additionalNameLanguage": "eng"}] http://esapubs.org/archive/ [] ["esa_journals@cornell.edu"] >>>!!!<<< Ecological Archives through the end of 2015 will be hosted on FigShare once the transition to publishing with Wiley is completed. Thereafter, supplemental material may be hosted on Wiley Online, and/or data deposited with FigShare, Dryad, and other repositories. >>>!!!<<< Ecological Archives publishes materials that are supplemental to articles that appear in the ESA journals (Ecology, Ecological Applications, Ecological Monographs, Ecosphere, Ecosystem Health and Sustainability and Bulletin of the Ecological Society of America), as well as peer-reviewed data papers with abstracts published in the printed journals. Three kinds of publications appear in Ecological Archives: appendices, supplements, and data papers. eng ["disciplinary"] {"size": "", "updatedp": ""} 1982 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://esapubs.org/archive/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biotechnology", "ecological restoration", "ecosystem management", "global climate change", "habitat alteration and destruction", "natural resource management", "ozone depletion", "species extinction", "sustainable ecological systems"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": [], "responsibilityStartDate": "2012-07-23", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "Ecological Society of America", "institutionAdditionalName": ["esa"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.esa.org/esa/", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["esa_journals@cornell.edu"]}] [{"policyName": "Instructions for Authors", "policyURL": "http://esapubs.org/archive/instruct_d.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://esapubs.org/archive/copyright.htm"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Instructions for Authors", "dataUploadLicenseURL": "http://esapubs.org/archive/instruct_d.htm"}] ["unknown"] {} ["URN"] http://esapubs.org/archive/instruct_d.htm [] yes yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} In addition, all authors are encouraged to register their data at DRYAD at http://datadryad.org or another appropriate Data Registry. 2012-08-20 2018-04-03 +r3d100010065 JEDI eng [{"additionalName": "JEDI\u3078\u3088\u3046\u3053\u305d", "additionalNameLanguage": "jpn"}] https://www.hyogo-u.ac.jp/english/facilities/museum.html [] [] >>>!!!<<< Jedi is no longer online 2019-05-14 >>>!!!<<>>!!!<<>>!!!<<< Information Archived on the Web Information identified as archived on the Web is for reference, research or recordkeeping purposes. It has not been altered or updated after the date of archiving. Web pages that are archived on the Web are not subject to the Government of Canada Web Standards. As per the Communications Policy of the Government of Canada, you can request alternate formats. Please "contact us" to request a format other than those available. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1999 2015 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Canada", "economic growth", "environmental management", "geoscience data", "geospatial data"] [{"institutionName": "Canadian Geospatial Data Infrastructure", "institutionAdditionalName": ["CGDI", "ICDG", "Infrastructure canadienne de donn\u00e9es g\u00e9ospatiale"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/earth-sciences/geomatics/canadas-spatial-data-infrastructure/8904", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Resources Canada", "institutionAdditionalName": ["Ressources naturelles Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rncan.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://portal.opengeospatial.org/modules/admin/license_agreement.php?suppressHeaders=0&access_license_id=3&target=http://portal.opengeospatial.org/files/%3fartifact_id=26608"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The GeoConnections Discovery Portal was an on-line metadata catalogue of geospatial and geoscience data products and Web services for Canada. The technologies of the Canadian Geospatial Data Infrastructure have matured and reside in federal, provincial and territorial portals. We encourage you to explore these resources for current information on geospatial products and services. In particular we wish to point you to, GeoGratis http://geogratis.cgdi.gc.ca/ and Open Government, open data http://open.canada.ca/en GeoConnections Discovery Portal was the Canadian node of the CEOS International Directory Network. 5565 entries; 2010-10-05 2021-06-25 +r3d100010075 GeoGratis eng [{"additionalName": "G\u00e9ogratis", "additionalNameLanguage": "fra"}] http://geogratis.cgdi.gc.ca/ [] ["https://www.nrcan.gc.ca/earth-sciences/geography/topographic-information/free-data-geogratis/contact-geogratis/17286", "nrcan.geoinfo.rncan@canada.ca"] GeoGratis is a portal provided by the Earth Sciences Sector (ESS) of Natural Resources Canada (NRCan) which provides geospatial data at no cost and without restrictions via your Web browser. The data will be useful whether you are a novice who needs a geographic map for a presentation, or an expert who wants to overlay a vector layer of digital data on a classified multiband image, with a digital elevation model as a backdrop. The geospatial data are grouped in over 100 collections and are compatible with the most popular geographic information systems (GIS), with image analysis systems and the graphics applications of editing software. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2009 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["cartography", "earth sciences", "geography", "geospatial data", "maps", "surveying", "topographica surveying"] [{"institutionName": "Natural Resources Canada, Earth Sciences", "institutionAdditionalName": ["NRCan/ESS", "RNCan", "Ressources naturelles Canada, Secteur des sciences de la Terre", "SST"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.nrcan.gc.ca/earth-sciences/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://contact-contactez.nrcan-rncan.gc.ca/index.cfm?lang=eng&sid=7&context=earth-sciences"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] closed [] ["unknown"] yes {} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://www.nrcan.gc.ca/xml/geogratis.xml", "syndicationType": "RSS"} All GeoBase products are available on GeoGratis. GeoGratis API: http://geogratis.gc.ca/api/en/nrcan-rncan/ess-sst/$categories?scheme=urn:iso:series 2012-10-05 2018-03-21 +r3d100010076 Chesapeake Bay Environmental Observatory eng [{"additionalName": "CBEO", "additionalNameLanguage": "eng"}] http://cbeo.communitymodeling.org/ ["biodbcore-001508"] [] The Chesapeake Bay Environmental Observatory (CBEO) is a prototype to demonstrate the utility of newly developed Cyberinfrastructure (CI) components for transforming environmental research, education, and management. The CBEO project uses a specific problem of water quality (hypoxia) as means of directly involving users and demonstrating the prototype’s utility. Data from the Test Bed are being brought into a CBEO Portal on a National Geoinformatics Grid developed by the NSF funded GEON. This is a cyberinfrastructure netwrok that allows users access to datasets as well as the tools with which to analyze the data. Currently, Test Bed data avaialble on the CBEO Portal includes Water Quality Model output and water quality monitorig data from the Chesapeake Bay Program's CIMS database. This data is also available as aggregated "data cubes". Avaialble tools include the Data Access System for Hydrology (DASH), Hydroseek and an online R-based interpolator. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://cbeo.communitymodeling.org/merit.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cyberinfrastructure", "ecosystem dynamics", "environmental observatory", "environmental science", "hydrodynamics", "trophic exchanges", "water quality", "watershed interactions", "watershed-estuary model"] [{"institutionName": "Chesapeake Research Consortium", "institutionAdditionalName": ["CRC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.chesapeake.org/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["http://cbeo.communitymodeling.org/contact.php", "http://www.chesapeake.org/directions.php"]}, {"institutionName": "National Science foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy and Security Policy", "policyURL": "http://www.westcoastoceans.org/index.cfm?fuseaction=content.display&pageID=89"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.westcoastoceans.org/index.cfm?fuseaction=content.display&pageID=94"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} s.php; The CBEO Data portal provides search capability to discover data available from the Chesapeake Bay Environmental Observatory research project: http://maxim.ucsd.edu/about/ 2012-11-13 2021-11-17 +r3d100010078 Data.gov eng [] https://www.data.gov/ ["RRID:nlx_70953", "biodbcore-001655"] ["datagov@gsa.gov", "https://www.data.gov/contact"] Data.gov increases the ability of the public to easily find, download, and use datasets that are generated and held by the Federal Government. Data.gov provides descriptions of the Federal datasets (metadata), information about how to access the datasets, and tools that leverage government datasets eng ["institutional", "other"] {"size": "250.864 datasets", "updatedp": "2019-12-02"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.data.gov/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "biology", "business", "climate", "communication", "culture"] [{"institutionName": "U.S. General Services Adminstration", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gsa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S.Government", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.data.gov/contact"]}] [{"policyName": "data policy", "policyURL": "https://www.data.gov/privacy-policy"}, {"policyName": "privacy policy", "policyURL": "https://www.data.gov/privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.data.gov/privacy-policy"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["CKAN", "other"] yes {"api": "https://www.data.gov/developers/apis", "apiType": "other"} ["none"] https://www.data.gov/privacy-policy [] no unknown [] [] {} As part of our continuing efforts to increase awareness of and access to geospatial data and services, Data.gov has integrated the Geospatial One-Stop (GOS) portal and catalog, and added some exciting improvements to both the user interface as well as the underlying infrastructure. A complete list of Data.gov APIs can be found at https://www.data.gov/developers/apis 2012-10-16 2021-11-16 +r3d100010079 High Energy Astrophysics Science Archive Research Center eng [{"additionalName": "HEASARC", "additionalNameLanguage": "eng"}, {"additionalName": "NASA's HEASARC", "additionalNameLanguage": "eng"}] https://heasarc.gsfc.nasa.gov/ [] ["https://heasarc.gsfc.nasa.gov/cgi-bin/Feedback"] The HEASARC is a multi-mission astronomy archive for the EUV, X-ray, and Gamma ray wave bands. Because EUV, X and Gamma rays cannot reach the Earth's surface it is necessary to place the telescopes and sensors on spacecraft. The HEASARC now holds the data from 25 observatories covering over 30 years of X-ray, extreme-ultraviolet and gamma-ray astronomy. Data and software from many of the older missions were restored by the HEASARC staff. Examples of these archived missions include ASCA, BeppoSAX, Chandra, Compton GRO, HEAO 1, Einstein Observatory (HEAO 2), EUVE, EXOSAT, HETE-2, INTEGRAL, ROSAT, Rossi XTE, Suzaku, Swift, and XMM-Newton. eng ["disciplinary", "other"] {"size": "86 Terabytes of data", "updatedp": "2019-05-15"} 1990-11-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://heasarc.gsfc.nasa.gov/docs/HHP_heasarc_info.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ASCA", "CGRO", "Chandra", "Integral", "ROSAT", "RXTE", "Suzaku", "Swift", "X-Ray", "XMM-Newton", "astronomy", "cosmic data", "galactic", "gamma-ray", "high-energy", "space", "wavelength"] [{"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["https://heasarc.gsfc.nasa.gov/docs/heasarc/contact.html"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center", "institutionAdditionalName": ["NASA, Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://heasarc.gsfc.nasa.gov/docs/heasarc/contact.html"]}, {"institutionName": "The High Energy Astrophysics Science Archive Research Center", "institutionAdditionalName": ["HEASARC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://heasarc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": ["https://heasarc.gsfc.nasa.gov/docs/heasarc/contact.html"]}] [{"policyName": "Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://archive.stsci.edu/dss/copyright.html"}] open [] ["other"] yes {"api": "ftp://legacy.gsfc.nasa.gov/", "apiType": "FTP"} ["none"] https://www.nasa.gov/about/highlights/HP_Privacy.html [] unknown yes [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {"syndication": "https://heasarc.gsfc.nasa.gov/docs/rss/heasarc.xml", "syndicationType": "RSS"} 2012-10-18 2021-09-27 +r3d100010080 X-Ray Database eng [{"additionalName": "X-ray interactions with matter", "additionalNameLanguage": "eng"}] http://henke.lbl.gov/optical_constants/ [] ["http://cxro.lbl.gov/contact", "jjones@lbl.gov"] The primary interaction of low-energy x rays within matter, viz. photoabsorption and coherent scattering, have been described for photon energies outside the absorption threshold regions. These tables are based on a compilation of the available experimental measurements and theoretical calculations. For many elements there is little or no published data and in such cases it was necessary to rely on theoretical calculations and interpolations across Z. In order to improve the accuracy in the future considerably more experimental measurements are needed. eng ["disciplinary"] {"size": "92 elements", "updatedp": "2012-11-26"} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "30701 Experimental Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atomic scattering factors", "x-ray attenuation length", "x-ray properties of the elements", "x-ray transmission"] [{"institutionName": "Lawrence Berkeley National Laboratory, Materials Science Division, Center for X-Ray Optics", "institutionAdditionalName": ["CXRO"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cxro.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["http://www.cxro.lbl.gov/contact"]}] [{"policyName": "Privacy, Security, Copyright, Disclaimers, and Accessibility Information", "policyURL": "https://www.lbl.gov/disclaimers/"}, {"policyName": "Requirements and policies manual RPM", "policyURL": "https://commons.lbl.gov/display/rpm2/Home"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://commons.lbl.gov/display/rpm2/Home"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://commons.lbl.gov/display/rpm2/Home"}] closed [{"dataUploadLicenseName": "Copyright", "dataUploadLicenseURL": "https://commons.lbl.gov/display/rpm2/Home"}] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2012-11-27 2021-08-24 +r3d100010081 HEPData eng [{"additionalName": "High Energy Physics Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Durham HEPData Project", "additionalNameLanguage": "eng"}] https://hepdata.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.awgyhy"] ["info@hepdata.net"] The Durham High Energy Physics Database (HEPData), formerly: the Durham HEPData Project, has been built up over the past four decades as a unique open-access repository for scattering data from experimental particle physics. It currently comprises the data points from plots and tables related to several thousand publications including those from the Large Hadron Collider (LHC). The Durham HepData Project has for more than 25 years compiled the Reactions Database containing what can be loosly described as cross sections from HEP scattering experiments. The data comprise total and differential cross sections, structure functions, fragmentation functions, distributions of jet measures, polarisations, etc... from a wide range of interactions. In the new HEPData site (hepdata.net), you can explore new functionalities for data providers and data consumers, as well as the submission interface. HEPData is operated by CERN and IPPP at Durham University and is based on the digital library framework Invenio. eng ["disciplinary"] {"size": "68252 data tables", "updatedp": "2017-01-19"} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://hepdata.net/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Large Hadron Collider (LHC)", "distributions of jet measures", "fragmentation functions", "high energy physics", "particle physics", "polarisation", "scattering experiments", "structure functions"] [{"institutionName": "CERN", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://home.cern/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@hepdata.net"]}, {"institutionName": "Durham University, Institute for Particle Physics Phenomenology", "institutionAdditionalName": ["IP3", "IPPP"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ippp.dur.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Graeme.Watt@durham.ac.uk"]}, {"institutionName": "Science & Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.stfc.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://hepdata.net/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://hepdata.net/terms"}] restricted [{"dataUploadLicenseName": "Submission steps", "dataUploadLicenseURL": "https://hepdata.net/submission"}] ["other"] yes {} ["DOI"] [] yes yes [] [] {} HepData is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. The LHC (Large Hadron Collider) is an international project based at CERN, in which the UK has a leading role. It is designed to answer some of the big questions about the Universe and the world we live in. Data from the LHC are stored on HEPDATA: Atlas, CMS, LHCb ALICE. This new site is still under development. In the meantime, please continue using the old site at http://hepdata.cedar.ac.uk. . The new site was presented in a meeting at CERN on 25th April 2016. 2012-08-29 2021-09-02 +r3d100010082 CUAHSI eng [{"additionalName": "Universities Allied for Water Research", "additionalNameLanguage": "eng"}] https://www.cuahsi.org/ ["RRID:SCR_002197", "RRID:nlx_154706"] ["https://www.cuahsi.org/about/contact-us/"] CUAHSI's Hydrologic Information System (CUAHSI-HIS) provides web services, tools, standards and procedures that enhance access to more and better data for hydrologic analysis eng ["disciplinary"] {"size": "5.1 billion + data points", "updatedp": "2019-05-15"} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cuahsi.org/about/what-is-cuahsi/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "GIS data", "NEXRAD rainfall", "hydrologic data", "satellite remote sensing data", "water conditions"] [{"institutionName": "Consortium of Universities for the Advancement of Hydrologic Science, Inc.", "institutionAdditionalName": ["CUAHSI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cuahsi.org/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["https://www.cuahsi.org/about/contact-us/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CUAHSI Software Licensing Policy", "policyURL": "http://his.cuahsi.org/documents/HIS-software-policy-20080225.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] restricted [{"dataUploadLicenseName": "Publish your Data", "dataUploadLicenseURL": "https://www.cuahsi.org/data-models/publication/"}] ["other"] yes {"api": "https://www.cuahsi.org/data-models/publication", "apiType": "NetCDF"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2012-08-31 2019-05-15 +r3d100010083 HubbleSite eng [] http://hubblesite.org/gallery/ [] [] STScI's innovative ways to share Hubble's remarkable discoveries with the public.HubbleSite prepares and disseminates the photographs and animations seen in the news... as well as posters, slide shows, exhibits, and educational products in print and electronic formats eng ["institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://hubblesite.org/about_us/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Hubble telescope", "astronomy", "galaxy", "nebulae", "planet", "space missions", "spacecraft", "stars"] [{"institutionName": "Space Telescope Science Institute, Office of Public Outreach", "institutionAdditionalName": ["OPO", "STScI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://outreachoffice.stsci.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "copyright notice", "policyURL": "http://hubblesite.org/about_us/copyright.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://hubblesite.org/about_us/copyright.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://hubblesite.org/about_us/copyright.php"}] closed [] ["unknown"] {} ["none"] http://hubblesite.org/about_us/copyright.php [] unknown yes [] [] {"syndication": "http://hubblesite.org/newscenter/archive/releases/2012/36/", "syndicationType": "RSS"} Hubble does not travel to stars, planets, and galaxies. It takes pictures of them as it whirls around Earth at 17,500 miles an hour. In its 20 years of viewing the heavens, NASA's Hubble Space Telescope has made more than 930,000 observations and snapped over 570,000 images of 30,000 celestial objects. In its 20-year lifetime the telescope has made more than 110,000 trips around our planet. With those trips, Hubble has racked up plenty of frequent-flier miles, about 2.8 billion, which is Neptune's average distance from the Sun. The 20 years' worth of observations has produced more than 45 terabytes of data, enough information to fill nearly 5,800 DVDs. Each month the orbiting observatory generates more than 360 gigabytes of data, which could fill the storage space of an average home computer. About 4,000 astronomers from all over the world have used the telescope to probe the universe. Astronomers using Hubble data have published more than 8,700 scientific papers, making it one of the most productive scientific instruments ever built. In 2009 scientists published 648 journal articles on Hubble telescope data. Hubble weighs 24,500 pounds -- as much as two full-grown elephants. Hubble's primary mirror is 2.4 meters (7 feet, 10.5 inches) across -- taller than retired NBA player Gheorghe Muresan, who is 2.3 meters (7 feet, 7 inches) tall. Muresan is the tallest man ever to play in the NBA. Hubble is 13.3 meters (43.5 feet) long -- the length of a large school bus. 2012-11-26 2017-01-23 +r3d100010084 Historical hydrographic data from BSH eng [{"additionalName": "Historische hydrographische Daten des BSH", "additionalNameLanguage": "deu"}] http://icdc.cen.uni-hamburg.de/daten/ocean/historical-hydrographic-bsh.html [] ["viktor.gouretski@uni-hamburg.de"] Thousands of Temperature and salinity profiles obtained by means of Nansen hydrographic casts and available earlier only as station sheets have been digitized at the German Maritime and Hydrographic Agency (BSH). In a cooperative effort between the KlimaCampus of the University of Hamburg and the German Oceanographic Data Centre (DOD, Hamburg) about 7500 hydrographic profiles were checked and identified as missing in the international oceanographic databases. Since most of the profiles were obtained in the decades before the second World War they represent an important extension of the international historical database and a respective contribution to the IOC Global Oceanographic Data Archeology and Rescue Project (GODAR). Since 2009 our efforts resulted in locating about 7500 hydrographic profiles that are not yet available for the oceanographic community. eng ["disciplinary", "institutional"] {"size": "7.500 hydrographic profiles", "updatedp": "2019-11-27"} 2009 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://icdc.cen.uni-hamburg.de/beratung/concept.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Nansen", "hydrography", "oceanography", "salinity data", "temperature distribution"] [{"institutionName": "Bundesamt f\u00fcr Seeschiffahrt und Hydrographie, Deutsches Ozeanographisches Zentrum", "institutionAdditionalName": ["BSH", "DOD"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bsh.de/EN/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Hamburg, Institut f\u00fcr Meereskunde, Integrated Climate Data Center", "institutionAdditionalName": ["ICDC", "ZMAW"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://icdc.cen.uni-hamburg.de/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["http://icdc.cen.uni-hamburg.de/beratung.html", "viktor.gouretski@zmaw.de"]}, {"institutionName": "Universit\u00e4t Hamburg, KlimaCampus , Integrated Climate Data Center", "institutionAdditionalName": ["KlimaCampus Hamburg"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.klimacampus-hamburg.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "copyright", "policyURL": "https://www.klimacampus-hamburg.de/impressum/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.klimacampus-hamburg.de/impressum/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.klimacampus-hamburg.de/impressum/"}] closed [] ["unknown"] {"api": "ftp://ftp-icdc.cen.uni-hamburg.de/historical_hydrographic_data/bsh/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} Part of 'Integrated Climate Data Center' r3d100010405 2012-09-10 2019-11-27 +r3d100010085 Inorganic Crystal Structure Database eng [{"additionalName": "Die Kristallographie-Datenbank f\u00fcr anorganische Kristalle", "additionalNameLanguage": "deu"}, {"additionalName": "ICSD", "additionalNameLanguage": "eng"}, {"additionalName": "ICSD Web", "additionalNameLanguage": "eng"}] https://icsd.fiz-karlsruhe.de/search/basic.xhtml ["biodbcore-001709"] ["https://icsd.fiz-karlsruhe.de/authorization/contact.xhtml"] The most comprehensive database on fully determined inorganic crystal structures • Full structural data: cell parameters, atom positions for all entries, displacement parameters • Full bibliographic data: publication title, journal reference(s), author names • Full structure description: Structural formula, compositions, ANX formulae, structure types • High-quality data: extensive data evaluation and correction by senior experts • Web and PC based software solutions, data updated twice a year • 25+ years of serving the scientific community eng ["disciplinary"] {"size": "More than 187.000 entries, including 2.033 crystal structures of the elements, 34.785 records for binary compounds, 68.730 records for ternary compounds, 68.083 records for quarternary and quintenary compounds. About 149.000 entries (80%) have been assigned a structure type. There are currently 9,093 structure prototypes.", "updatedp": "2017-01-24"} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://www2.fiz-karlsruhe.de/icsd_home.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["cell", "chemistry", "crystal chemistry", "inorganic crystal structure", "intermetallic compounds"] [{"institutionName": "Fachinformationszentrum Karlsruhe", "institutionAdditionalName": ["FIZ Karlsruhe", "Leibniz Institute for Information Infrastructure", "Leibniz-Institut f\u00fcr Informationsinfrastruktur"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.fiz-karlsruhe.de/en/leistungen/kristallographie/icsd.html", "institutionIdentifier": [], "responsibilityStartDate": "1978", "responsibilityEndDate": "", "institutionContact": ["https://www.fiz-karlsruhe.de/fiz_contact.html"]}, {"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["http://www.nist.gov/public_affairs/contact.cfm"]}] [{"policyName": "FIZ Terms and Conditions", "policyURL": "https://www.fiz-karlsruhe.de/en/service/terms-and-conditions.html"}, {"policyName": "General Terms and Conditions for the Licensing of the Inorganic Crystal Structure Database", "policyURL": "http://www2.fiz-karlsruhe.de/fileadmin/be_user/ICSD/PDF/ICSD_AGB_EN_16.pdf"}, {"policyName": "ICSD Terms and Conditions", "policyURL": "http://www2.fiz-karlsruhe.de/icsd_term_conditions.html?&L=%5C%5C%5C%5C%5C%5C%5C"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www2.fiz-karlsruhe.de/fileadmin/be_user/ICSD/PDF/ICSD_AGB_EN_16.pdf"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www2.fiz-karlsruhe.de/fileadmin/be_user/ICSD/PDF/ICSD_AGB_EN_16.pdf"}] restricted [{"dataUploadLicenseName": "input philosophy", "dataUploadLicenseURL": "http://www2.fiz-karlsruhe.de/fileadmin/be_user/ICSD/PDF/sci_man_ICSD_v1.pdf"}] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} Most of the structures contained in ICSD are published in journals, only a few entries were submitted as private communications. If you are a registered user of the ICSD database (Inorganic Crystal Structure Database), you will also find the deposited inorganic crystal structure data sets from 'Crystal Structure Depot' = r3d100010237 in this database, with a short production-dependent delay. The records in ICSD are produced from the original publication and the deposited data and have the advantage of having undergone additional checking. 2012-09-10 2021-11-17 +r3d100010086 MIRAGE eng [{"additionalName": "MIRAGE 2011: Repository Enrichment from Archiving to Creation", "additionalNameLanguage": "eng"}, {"additionalName": "Middlesex medical Image Repository with a CBIR Archiving Environment", "additionalNameLanguage": "eng"}] http://www.mitime.org/mirage/ [] ["x.gao@mdx.ac.uk", "y.qian@mdx.ac.uk"] >>>!!!<<< 2019-05-15: the repository is offline >>>!!!<<< MIRAGE is developing a warehouse of medical images to facilitate effective online retrieval tools in the institutional web site to complement the existing online e-leaning and teaching system OASISplus, also known as Blackboard Vista , that is currently in operation at Middlesex University (MU); Follow-up project MIRAGE 2011: http://image.mdx.ac.uk/mirage2011/ eng ["institutional"] {"size": "", "updatedp": ""} 2009-04-01 2019-05-15 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://image.mdx.ac.uk/mirage2011/ [{"name": "Images", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3D brain images", "CT", "MR", "content-based image", "echocardiogram", "higher dimensional images", "medical images", "retrieval", "ultrasound"] [{"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Middlesex University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdx.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.mdx.ac.uk/get-in-touch/contact-details"]}] [{"policyName": "Freedom of information", "policyURL": "https://www.mdx.ac.uk/about-us/policies/public-policy-statements"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [] open [] ["other"] yes {} ["none"] [] unknown yes [] [] {} The repository is no longer maintained, but you can access images: http://158.94.0.60/time/demo.php - click on connect 2012-09-28 2019-05-15 +r3d100010087 Aktuelle Wetter- und Klimawerte deutscher Stationen deu [] http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetterwerte.html ["RRID:SCR_003611", "RRID:nlx_157759"] ["info@wolkenatlas.de"] Day averages, maximum, minimum and month sums of the precipitation of about 70 German stations with archive since 2008. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.imk-tro.kit.edu/english/4350.php [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["average daily temperature", "average monthly temperature", "barometric pressure", "barometric pressure tendency", "maximum daily temperature", "minimum daily temperature", "precipitation 12 hours", "precipitation monthly"] [{"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung -Forschungsbereich Troposph\u00e4re", "institutionAdditionalName": ["KIT IMK-TRO", "Karlsruhe Institute of Technology, Institute for Meteorology and Climate Research - Troposphere Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imk-tro.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["info@wolkenatlas.de"]}] [{"policyName": "Copyright", "policyURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html"}, {"policyName": "Grunds\u00e4tzliche Regelung", "policyURL": "http://www.imk-tro.kit.edu/download/Regelung_Datenabgabe.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html"}] closed [] ["unknown"] {"api": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/Stundenwerte/Archiv/", "apiType": "FTP"} ["none"] http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html [] unknown no [] [] {} Aktuelle Wetterwerte is part of the portal 'Wetter, Wolken, Klima' http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html 2012-09-28 2020-10-16 +r3d100010088 Ocean Biogeographic Information System eng [{"additionalName": "OBIS", "additionalNameLanguage": "eng"}] http://iobis.org/ ["RRID:SCR_006933", "RRID:nlx_154698"] ["http://iobis.org/contact", "info@iobis.org"] OBIS strives to document the ocean's diversity, distribution and abundance of life. Created by the Census of Marine Life, OBIS is now part of the Intergovernmental Oceanographic Commission (IOC) of UNESCO, under its International Oceanographic Data and Information Exchange (IODE) programme eng ["disciplinary", "institutional"] {"size": "1.801 datasets; 43,3 million records; 147.881 valid species; 158.728 valid marine taxa", "updatedp": "2015-04-23"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://iobis.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animalia", "archaea", "bacteria", "biodiversity", "chromista", "eukarya", "fungi", "life in the oceans", "maintainance of species distribution", "marine ecosystems", "marine organisms", "plantae", "protoctista", "protozoa"] [{"institutionName": "Census of Marine Life", "institutionAdditionalName": ["CoML"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.coml.org/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "2008", "institutionContact": []}, {"institutionName": "Rutgers State University of New Jersey, School of Environmental and biological Sciences, Department of Marine and Coastal Sciences", "institutionAdditionalName": ["Rutgers University, SEBS, DMCS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://marine.rutgers.edu/main/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "UNESCO Intergovernmental Oceanographic Commission, International Oceanographic Data and Information Exchange", "institutionAdditionalName": ["IOC", "IODE"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iode.org/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy", "policyURL": "http://iobis.org/data/policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "Guidelines for contribution", "dataUploadLicenseURL": "http://iobis.org/manual/#contribute"}] ["other"] yes {"api": "http://iobis.org/manual/api/", "apiType": "other"} ["none"] http://iobis.org/data/policy/ [] yes yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} OBIS strives to document the ocean's diversity, distribution and abundance of life. Created by the Census of Marine Life, OBIS is now part of the Intergovernmental Oceanographic Commission (IOC) of UNESCO, under its International Oceanographic Data and Information Exchange (IODE) programme 2012-10-01 2018-07-27 +r3d100010089 NASA/IPAC InfraRed Science Archive eng [{"additionalName": "IRSA", "additionalNameLanguage": "eng"}] https://irsa.ipac.caltech.edu/frontpage/ [] ["https://irsasupport.ipac.caltech.edu/", "irsasupport@ipac.caltech.edu"] IRSA is chartered to curate the calibrated science products from NASAs infrared and sub-millimeter missions, including five major large-area/all-sky surveys. IRSA exploits a re-useable architecture to deploy cost-effective archives for customers, including: the Spitzer Space Telescope; the 2MASS and IRAS all-sky surveys; and multi-mission datasets such as COSMOS, WISE and Planck mission eng ["disciplinary", "institutional"] {"size": "all-sky surveys in 20 bands; 88 billion rows of catalog data; 100 million images; and over 100,000 spectra.", "updatedp": "2019-05-15"} 1986 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://irsa.ipac.caltech.edu/charter.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["2MASS", "AKARI", "BLAST", "BOLOCAM", "COSMOS", "DENIS", "Herschel", "IRAS", "IRTS", "ISO", "MSX", "PPXML", "Planck", "SDSS", "SWAS", "Spitzer Space Telescope", "USNO", "WISE", "infrared missions", "mapping", "satellite missions", "sub-millimeter missions"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["CALTECH"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1986", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Infrared Processing and Analysis Center, Science and Data Center for Infrared Astronomy", "institutionAdditionalName": ["IPAC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipac.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1986", "responsibilityEndDate": "", "institutionContact": ["https://irsasupport.ipac.caltech.edu/"]}, {"institutionName": "Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1986", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1986", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA web privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/offices/ogc/about/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/privacy/#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/about/disclaimer.html"}] restricted [{"dataUploadLicenseName": "IRSA Data Validation Tool", "dataUploadLicenseURL": "https://irsa.ipac.caltech.edu/irsa-dataQA.html"}] ["unknown"] {"api": "http://irsa.ipac.caltech.edu/voapi.html", "apiType": "other"} ["none"] https://irsa.ipac.caltech.edu/ack.html [] unknown yes [] [] {} NASA/IPAC Infrared Science Archive is covered by Thomson Reuters Data Citation Index. IRSA is part of the Infrared Processing and Analysis Center (IPAC) 2012-10-02 2021-09-27 +r3d100010090 IUBio-Archive eng [{"additionalName": "IUBio", "additionalNameLanguage": "eng"}] http://iubioarchive.bio.net/ [] ["archive@iubioarchive.bio.net"] IUBio Archive is an archive of biology data and software. The archive includes items to browse, search and fetch public software, molecular data, biology news and documents. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1989 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://iubioarchive.bio.net/soft/About-IUBio-Archive.text [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["RNA secondary structure", "Software", "arthorpos", "daphina - water flea", "drosophila species genome", "euGenes", "general biology", "genome", "molecular biology", "molecular data"] [{"institutionName": "FlyBase", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://flybase.org/", "institutionIdentifier": [], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University Bloomington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.indiana.edu/", "institutionIdentifier": ["ROR:02k40bc56"], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University Bloomington, Center for Genomics and Bioinformatics", "institutionAdditionalName": ["CGB"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cgb.indiana.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": ["https://cgb.indiana.edu/contact/index.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BIOSCI/Bionet Terms of Use", "policyURL": "http://iubioarchive.bio.net/bionet/docs/biosci-termsofuse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://iubioarchive.bio.net/bionet/docs/biosci-termsofuse.html"}] closed [] ["unknown"] {"api": "http://www.bio.net/docs/biosci.FAQ.html#q27", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2012-10-01 2021-10-20 +r3d100010091 JASPAR eng [] http://jaspar.genereg.net/ ["RRID:OMICS_00538", "RRID:SCR_003030", "RRID:nif-0000-03061"] ["http://jaspar.genereg.net/contact-us"] JASPAR is the leading open-access database of matrix profiles describing the DNA-binding patterns of transcription factors and other proteins interacting with DNA in a sequence-specific manner. eng ["disciplinary"] {"size": "2.404 profiles; 1.564 Jaspar CORE profiles", "updatedp": "2019-05-15"} 2004 ["dan", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://jaspar.genereg.net/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "bioinformatics", "funghi", "insect", "matrix models", "nematoda", "pattern", "plant", "protein", "structures", "vertebrata"] [{"institutionName": "University of Copenhagen, Department of Biology, The Bioinformatics Centre", "institutionAdditionalName": ["Kobenhavns Universitet, Biologisk Institut, Bioinformatik-centret"], "institutionCountry": "DNK", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.binf.ku.dk/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["info@binf.ku.dk"]}] [{"policyName": "Documentation", "policyURL": "http://jaspar.binf.ku.dk/html/TEMPLATES/help.html"}, {"policyName": "JASPAR data submission", "policyURL": "http://jaspar.binf.ku.dk/html/TEMPLATES/submission.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://jaspar.binf.ku.dk/html/TEMPLATES/help.html"}] restricted [{"dataUploadLicenseName": "JASPAR Data Submission", "dataUploadLicenseURL": "http://jaspar.binf.ku.dk/html/TEMPLATES/submission.html"}] ["unknown"] yes {"api": "http://jaspar.genereg.net/api/", "apiType": "REST"} ["none"] http://jaspar.genereg.net/faq/ [] unknown yes [] [] {} Authority: Albin Sandelin (University of Copenhagen); Boris Lenhard (University of Bergen) 2012-10-08 2019-05-15 +r3d100010092 KNB Data Repository eng [{"additionalName": "KNB", "additionalNameLanguage": "eng"}, {"additionalName": "Knowledge Network for Biocomplexity", "additionalNameLanguage": "eng"}] https://knb.ecoinformatics.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.jjka8c"] ["knb-help@nceas.ucsb.edu"] The KNB Data Repository is an international repository intended to facilitate ecological, environmental and earth science research in the broadest senses. For scientists, the KNB Data Repository is an efficient way to share, discover, access and interpret complex ecological, environmental, earth science, and sociological data and the software used to create and manage those data. Due to rich contextual information provided with data in the KNB, scientists are able to integrate and analyze data with less effort. The data originate from a highly-distributed set of field stations, laboratories, research sites, and individual researchers. The KNB supports rich, detailed metadata to promote data discovery as well as automated and manual integration of data into new projects. The KNB supports a rich set of modern repository services, including the ability to assign Digital Object Identifiers (DOIs) so data sets can be confidently referenced in any publication, the ability to track the versions of datasets as they evolve through time, and metadata to establish the provenance relationships between source and derived data. eng ["disciplinary", "other"] {"size": "26.886 public datasets", "updatedp": "2018-04-06"} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://knb.ecoinformatics.org/#about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biocomplexity", "biodiversity", "biology", "botany", "earth science", "ecology", "entomology", "environmental aspects", "environmental sciences", "evolution", "life sciences"] [{"institutionName": "DataOne", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": ["ROR:0146z4r19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nceas.ucsb.edu/contact", "jones@nceas.ucsb.edu"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Best Practices DataOne", "policyURL": "https://www.dataone.org/best-practices"}, {"policyName": "Data Management Planning", "policyURL": "https://www.dataone.org/data-management-planning"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "Database Legal Protection", "dataUploadLicenseURL": "https://www.bitlaw.com/copyright/database.html"}] ["other"] yes {"api": "https://knb.ecoinformatics.org/#about", "apiType": "NetCDF"} ["ARK", "DOI", "PURL", "URN"] https://knb.ecoinformatics.org/#about [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} KNB is covered by Thomson Reuters Data Citation Index. KNB is a DataOne member node. 2012-10-02 2020-06-29 +r3d100010093 National Center for Ecological Analysis and Synthesis Data Repository eng [{"additionalName": "NCEAS Data Repository", "additionalNameLanguage": "eng"}] https://www.nceas.ucsb.edu/ [] [] The NCEAS Data Repository contains information about the research data sets collected and collated as part of NCEAS' funded activities. Information in the NCEAS Data Repository is concurrently available through the Knowledge Network for Biocomplexity (KNB), an international data repository. A number of the data sets were synthesized from multiple data sources that originated from the efforts of many contributors, while others originated from a single. Datasets can be found at KNB repository https://knb.ecoinformatics.org/data , creator=NCEAS eng ["institutional"] {"size": "296 data packages", "updatedp": "2019-05-14"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] http://www.nceas.ucsb.edu/overview [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biocomplexity", "biodiversity", "botany evolution", "ecology", "environmental science", "life sciences"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California Santa Barbara, National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["webmaster@nceas.ucsb.edu"]}] [{"policyName": "Data and Information Policy", "policyURL": "https://www.nceas.ucsb.edu/datapolicy"}, {"policyName": "Terms of Use", "policyURL": "https://www.ucsb.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ucsb.edu/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucsb.edu/terms-of-use"}] restricted [] ["other"] yes {} ["ARK", "DOI", "other"] https://knb.ecoinformatics.org/about [] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "https://www.nceas.ucsb.edu/news/feed", "syndicationType": "RSS"} NCEAS Data Repository is a Information in the NCEAS Data Repository is concurrently available through the Knowledge Network for Biocomplexity (KNB), an international data repository. NCEAS has hosted over 4,000 individuals and supported more than 400 projects since its inception in 1995. UC Santa Barbara's National Center for Ecological Analysis and Synthesis (NCEAS), is a core partner in a joint effort to streamline research. 2012-10-11 2019-05-14 +r3d100010094 Kujawsko-Pomorska Digital Library eng [{"additionalName": "Kujawsko-Pomorska Biblioteka Cyfrowa", "additionalNameLanguage": "pol"}, {"additionalName": "Kujawsko-Pomorska digitale Bibliothek", "additionalNameLanguage": "deu"}] https://kpbc.umk.pl/dlibra ["OpenDOAR:186144"] ["kpbc@umk.pl"] The KPDL covers cultural heritage, scientific and regional collections – digital copies of different forms of publications: books, journals, graphics, articles, leaflets, posters, playbills, photographs, invitations, maps, exhibition catalogues and trade fairs of the region. The Kujawsko-Pomorska Digital Library is to serve scientists, students, schoolchildren and all the citizens of the region. eng ["disciplinary", "institutional"] {"size": "235.298 digital objects", "updatedp": "2021-02-25"} 2004 ["deu", "eng", "pol"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "10504 General and Comparative Literature and Cultural Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://kpbc.umk.pl/dlibra/text?id=library-desc [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Kujawsko-Pomorska", "cultural heritage", "didactics", "history", "incunabula", "maps Poland", "music"] [{"institutionName": "University Library in Torun", "institutionAdditionalName": ["Biblioteka Uniwersytecka w Toruniu"], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bu.umk.pl/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://kpbc.umk.pl/dlibra/contact"]}] [{"policyName": "Preservation Policy", "policyURL": "https://kpbc.umk.pl/dlibra/text?id=polityka"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Contributions Submission Policy", "dataUploadLicenseURL": "https://kpbc.umk.pl/dlibra/text?id=authors-and-editors"}] ["dLibra"] yes {"api": "https://kpbc.umk.pl/dlibra/oai-pmh-repository.xml?verb=Identify", "apiType": "OAI-PMH"} ["none"] [] unknown yes [] [] {"syndication": "https://kpbc.umk.pl/latest_en.rss", "syndicationType": "RSS"} Original language is polsky. 2012-10-15 2021-02-25 +r3d100010096 LOGKOW eng [{"additionalName": "A databank of evaluated octanol-water partition coefficients (Log P)", "additionalNameLanguage": "eng"}, {"additionalName": "Log P", "additionalNameLanguage": "eng"}] http://logkow.cisti.nrc.ca/logkow/ [] [] >>>!!! <<< 2019-05-15: LogKOW is offline >>>!!!<<< A databank of experimental data about partition coefficients, retrieved from the literature, on over 20.000 organic coumpounds (carbon numbers 1 - 130; gases, liquids and solids). former URL: http://logkow.cisti.nrc.ca/logkow/; http://www.tds-tds.com/c5/application/files/7314/7360/9080/LOGKOWFS2016e.pdf eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2006 2014-10-02 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Octanol/water partition coefficients", "biocides", "drugs", "dyes", "environmentally hazardous substances", "pharmaceuticals", "poisons", "toxins"] [{"institutionName": "Canadian National Committee for CODATA", "institutionAdditionalName": ["CNC/CODATA"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.codata.info/membership/nationalmembers/canada.html", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sangster Research Laboratories", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Access to the LogKOW database is unavailable due to a cyber intrusion on the IT infrastructure of the National Research Council of Canada. [updated: 2014 10-03] 2012-10-22 2019-05-15 +r3d100010097 Mansfeld's World Database of Agriculture and Horticultural Crops eng [{"additionalName": "Mansfeld-Datenbank f\u00fcr landwirtschaftliche und g\u00e4rtnerische Kulturpflanzen", "additionalNameLanguage": "deu"}] https://mansfeld.ipk-gatersleben.de/apex/f?p=185:3 [] ["http://mansfeld.ipk-gatersleben.de/apex/f?p=185:6:"] The Mansfeld's World Database of Agriculture and Horticultural Crops is an online database. As a contribution to the project "Federal Information System on Genetic Resources" (BIG, http://www.big-flora.de/). It reflects the contents of "Mansfeld's Encyclopedia of Agricultural and Horticultural Crops" (Hanelt and IPK 2001) and contains information on 6,100 crop plant species, excluding forestry and ornamental plants. Each species entry provides nomenclature and synonymy, common names in different languages, spontaneous distribution and regions of cultivation, uses, images, references, but also the ancestral species and notes on the phylogeny, variation and history. eng ["disciplinary", "institutional"] {"size": "6.100 crop plant species", "updatedp": "2012-11-23"} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20703 Plant Nutrition", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://mansfeld.ipk-gatersleben.de/apex/f?p=185:18 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agricultural crops", "horticultural crops"] [{"institutionName": "BundesInformationssystem Genetische Ressourcen", "institutionAdditionalName": ["BIG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.big-flora.de/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute of Plant Genetics and Crop Plant Research", "institutionAdditionalName": ["IPK", "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipk-gatersleben.de/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["https://www.ipk-gatersleben.de/en/contact/address/"]}] [{"policyName": "Disclaimer", "policyURL": "http://mansfeld.ipk-gatersleben.de/apex/f?p=185:29"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://mansfeld.ipk-gatersleben.de/apex/f?p=185:4"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://mansfeld.ipk-gatersleben.de/apex/f?p=185:29"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} Parallel to the book edition a database version available in the Internet is being developed. For this purpose the electronic text files of the submitted manuscripts are structured and converted into tables, so that they can be imported into a database.The information in this database is mainly based on "Hanelt, P. & Institute of Plant Genetics and Crop Plant Research 2001: Mansfeld's Encyclopedia of Agricultural and Horticultural Crops", published by Springer. © of the electronic version: IPK Gatersleben. 2012-11-23 2021-09-27 +r3d100010098 World Data Centre for Precipitation Chemistry eng [{"additionalName": "GAW World Data Centre for Precipitation Chemistry", "additionalNameLanguage": "eng"}, {"additionalName": "WDCPC", "additionalNameLanguage": "eng"}] http://wdcpc.org/ [] ["http://www.wdcpc.org/contact", "manager@qasac-americas.org"] This centre receives and archives precipitation chemistry data and complementary information from stations around the world. Data archived by this centre are accessible via connections with the WDCPC database. Freely available data from regional and national programmes with their own Web sites are accessible via links to these sites. The WDCPC is one of six World Data Centres in the World Meteorological Organization Global Atmosphere Watch (GAW). The focus on precipitation chemistry is described in the GAW Precipitation Chemistry Programme. Guidance on all aspects of collecting precipitation for chemical analysis is provided in the Manual for the GAW Precipitation Chemistry Programme (WMO-GAW Report No. 160). eng ["disciplinary", "other"] {"size": "Access to more than 200 global, regional, and contributing stations worldwide.", "updatedp": "2019-05-15"} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["acid deposition", "air", "atmosphere", "atmospheric science", "biogeochemical cycling", "ecosystem", "eutrophication", "global climate change", "health", "measurement", "meterology", "pecipitation chemistry", "trace metal deposition"] [{"institutionName": "NOAA Air Resources Laboratory", "institutionAdditionalName": ["ARL", "NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.arl.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": ["https://www.arl.noaa.gov/more/contact-us/"]}, {"institutionName": "Quality Assurance/Science Activity Centre \u2013 Americas", "institutionAdditionalName": ["QA/SAC-America"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://qasac-americas.org/", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": ["manager@qasac-americas.org"]}, {"institutionName": "University of Illinois, Illinois State Water Survey", "institutionAdditionalName": ["ISWS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isws.illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Meteorological Organization, Global Atsmosphere Watch, Precipitation Chemistry Programme", "institutionAdditionalName": ["GAW", "WMO"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wmo.int/pages/prog/arep/gaw/precip_chem.html", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "WDCPC Data and Information Use Conditions", "policyURL": "http://www.wdcpc.org/conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.wdcpc.org/conditions"}, {"dataLicenseName": "other", "dataLicenseURL": "http://qasac-americas.org/manual"}] closed [] ["unknown"] {"api": "http://www.wmo.int/pages/prog/arep/gaw/PrecipitationChemistry.html", "apiType": "FTP"} ["none"] http://www.wdcpc.org/conditions [] unknown yes [] [] {} OThe WDCPC is one of six World Data Centres in the World Meteorological Organization Global Atmosphere Watch (GAW). The focus on precipitation chemistry is described in the GAW Precipitation Chemistry Programme. Guidance on all aspects of collecting precipitation for chemical analysis is provided in the Manual for the GAW Precipitation Chemistry Programme (WMO-GAW Report No. 160). 2012-10-22 2019-05-15 +r3d100010100 MolTable eng [{"additionalName": "Molecule table", "additionalNameLanguage": "eng"}] http://moltable.ncl.res.in/web/guest [] [] <<<>>> MolTable: An Open Access (Molecule Table) Portal for "Advanced Chemoinformatics Research, Training and Services" eng ["disciplinary"] {"size": "44 datasets", "updatedp": "2018-10-05"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aids", "biodiversity informatics", "bioinformatics", "cancer", "chemoinformatics", "cloud computing", "drug research", "infectious diseases", "malaria"] [{"institutionName": "National Chemical Laboratory, Digital Information Resource Center", "institutionAdditionalName": ["DIRC", "NCL"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncl-india.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://moltable.ncl.res.in/web/guest/contacts", "m.karthikeyan@ncl.res.in"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://moltable.ncl.res.in/web/guest/direction"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} NCL belongs to the family of Council of Scientific and Industrial Research (CSIR), the largest chain of public funded research organization in world. 2012-10-04 2021-04-06 +r3d100010101 MorphoBank eng [{"additionalName": "Homology of phenotypes over the web", "additionalNameLanguage": "eng"}, {"additionalName": "MorphoBank Project", "additionalNameLanguage": "eng"}] https://morphobank.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.1y63n8", "RRID:SCR_003213", "RRID:nlx_156938"] ["https://morphobank.org/index.php/Contact/Index"] MorphoBank is a web application with tools and archives for evolutionary research, specifically systematics (the science of determining the evolutionary relationships among species). Study of the phenotype, which is often visually-based, is central to contemporary systematics and taxonomic research. MorphoBank was developed specifically to provide much needed tools for the expansion and modernization of phylogenetic work on the phenotype eng ["disciplinary"] {"size": "636 projects; 106.481 images; 888 matrices", "updatedp": "2018-10-05"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://morphobank.org/index.php/FAQ/Index [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Homology of phenotypes", "cladistic matrices", "cladistic matrix", "cladistics", "comparative anatomy", "evolutionary research", "morphology", "phylogenetic matrices", "phylogenetic matrix", "phylogenetic work", "phylophenomics", "tree of life"] [{"institutionName": "American Museum of Natural History", "institutionAdditionalName": ["AMNH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.amnh.org/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "2004", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2007", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stony Brook University, School of Medicine, Department of Anatomical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://medicine.stonybrookmedicine.edu/anatomy", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["https://medicine.stonybrookmedicine.edu/anatomy/about/contactus"]}] [{"policyName": "Policy on copyrighted media", "policyURL": "https://morphobank.org/index.php/FAQ/Index"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://morphobank.org/index.php/FAQ/Index"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://morphobank.org/index.php/FAQ/Index"}] ["other"] yes {} ["DOI"] https://morphobank.org/doc/user_guide/#using_publishing_citing_data [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} MorphoBank is covered by Thomson Reuters Data Citation Index. 2012-10-04 2021-11-16 +r3d100010102 bii eng [{"additionalName": "BioInvIndex", "additionalNameLanguage": "eng"}, {"additionalName": "BioInvestigationIndex", "additionalNameLanguage": "eng"}] https://github.com/ISA-tools/BioInvIndex [] ["https://isa-tools.org/team/index.html", "isatools@googlegroups.com"] BioInvestigation Index database enables storing and querying functionalities of experimental biological and biomedical metadata of Leibniz Institute of Plant Biochemistry eng ["institutional"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "chromatography", "mass spectrometry", "microtof", "plant metabolomics"] [{"institutionName": "ISA -Tools", "institutionAdditionalName": ["Investigation Study Assay"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://isa-tools.org/", "institutionIdentifier": ["RRID:SCR_002041", "RRID:nif-0000-12074"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["isatools@googlegroups.com"]}, {"institutionName": "University of Oxford, Oxford e-Research Center", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.oerc.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.oerc.ox.ac.uk/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://github.com/ISA-tools/BioInvIndex"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://help.github.com/articles/github-terms-of-service/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://github.com/ISA-tools/BioInvIndex"}] restricted [] ["other"] yes {"api": "https://github.com/ISA-tools/BioInvIndex/wiki/FAQ", "apiType": "SOAP"} ["none"] [] unknown yes [] [] {} 2012-10-05 2020-09-15 +r3d100010103 IPB MassBank eng [{"additionalName": "High resolution mass spectral database", "additionalNameLanguage": "eng"}, {"additionalName": "IPB MS Database", "additionalNameLanguage": "eng"}, {"additionalName": "JST-BIRD MassBank", "additionalNameLanguage": "eng"}] http://msbi.ipb-halle.de/MassBank/ [] ["admin@massbank.jp", "massbank@iab.keio.ac.jp"] MassBank is the first public repository of mass spectral data for sharing them among scientific research community. MassBank data are useful for the chemical identification and structure elucidation of chemical comounds detected by mass spectrometry.MassBank system is originally designed for public sharing of reference mass spectra for metabolite identification. It is also useful for their in-house or local sharing. Recently it finds another application; sharing mass spectra of unknown metabolites for metabolite profiling. The IPB is operating the first european MassBank site, that is part of the consortial MassBank Project. You can access both the set of IPB Tandem-MS and Ion Trap spectra, as well as the other massbank sites. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["deu", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ipb-halle.de/forschung/netzwerke-und-verbundprojekte/netzwerke/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["chemical compounds", "mass spectra", "mass spectrometry", "metabolomics"] [{"institutionName": "Institute for Bioinformatics Research and Development", "institutionAdditionalName": ["BIRD"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.jst.go.jp/nbdc/bird/index_e.html", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Pflanzenbiochemie", "institutionAdditionalName": ["IPB", "Leibniz Institute for Plant Biochemistry"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipb-halle.de/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.ipb-halle.de/kontakt/"]}, {"institutionName": "Mass Spectorometry Society of Japan", "institutionAdditionalName": ["MSSJ"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mssj.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mssj.jp/en/"]}, {"institutionName": "National Institute of Biomedical Innovation", "institutionAdditionalName": ["NIBO"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nibiohn.go.jp/english/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "2013", "institutionContact": ["https://www.nibiohn.go.jp/english/contact/index.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ipb-halle.de/kontakt/impressum-datenschutz/"}] restricted [] ["unknown"] yes {"api": "https://msbi.ipb-halle.de/MassBank/api/services/MassBankAPI?wsdl", "apiType": "SOAP"} ["none"] [] unknown yes [] [] {} As of January 2010, 16 research groups, 12 in Japan, 3 in the United States and 1 in Germany, are contributing data to MassBank (Table 2). Mass spectral data, chemical compounds and analytical methods are summarized for each research group on the website (http://www.massbank.jp/en/published.html). These data are distributed on eight MassBank data servers, one of which is located in the Leibniz Institute of Plant Biochemistry (Halle, Germany). Eight small research groups currently without their own data servers contribute their data to the MassBank data servers in Japan or Germany. http://onlinelibrary.wiley.com/doi/10.1002/jms.1777/abstract;jsessionid=8279FC05CA737F0FC8F8D1B9C9B0D6FE.f04t01?systemMessage=WOL+Usage+report+download+page+will+be+unavailable+on+Friday+27th+January+2017+at+23%3A00+GMT%2F+18%3A00+EST%2F+07%3A00+SGT+%28Saturday+28th+Jan+for+SGT%29++for+up+to+2+hours+due+to+essential+server+maintenance.+Apologies+for+the+inconvenience. 2012-10-05 2018-12-11 +r3d100010104 EnvBase eng [{"additionalName": "A searchable index to environmental 'omic' datasets.", "additionalNameLanguage": "eng"}, {"additionalName": "EnvBase data catalogue", "additionalNameLanguage": "eng"}] http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//data/envbase.html [] ["datasets@nebc.nerc.ac.uk", "helpdesk@nebc.nerc.ac.uk"] >>>!!<<>>!!!<<< Ongoing NEBC activities, including the development of Bio-Linux, are being moved into the new EOS programme http://environmentalomics.org/portfolio/big-data-infrastructure/ . Once the current material from this website has been moved into EOS, this NEBC site will remain on-line as an archive. EnvBase is the searchable index to the data deposited through the NEBC, as well as related NERC experimental data. At present this is chiefly from the grants funded by the NERC Environmental Genomics Science Programme and the subsequent Post-genomics and Proteomics Science Programme, but more data from ongoing projects continues to be added eng ["institutional", "other"] {"size": "53 datasets", "updatedp": "2019-05-20"} 2002 2018-10-17 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//about-us/history [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "genomics", "post-genomics", "proteomics"] [{"institutionName": "Natural Environment Research Council, Environmental Bioinformatics Centre", "institutionAdditionalName": ["NEBC", "NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//about-us/contact-us.html"]}] [{"policyName": "Data policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/"}, {"policyName": "NEBC data policy", "policyURL": "http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//data/nebc-data-policy/nebc-policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//data/nebc-data-policy/nebc-policy.html"}] restricted [{"dataUploadLicenseName": "Procedure for submitting new or updated entries to EnvBase", "dataUploadLicenseURL": "http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//data/envbase/envbase-submission.html"}] ["other"] yes {} ["none"] [] unknown yes [] [] {"syndication": "http://nebc.nerc.ac.uk/nebc_website_frozen/nebc.nerc.ac.uk//news/news/RSS", "syndicationType": "RSS"} NERC has a strong data policy and requires every NERC Science Programme to establish a data management plan compliant with this policy. The Environmental Genomics Science Programme (2002-2007) chose to establish a new bioinformatics data centre to meets its obligations to NERC to provide forward-looking stewartship of the data outputs produced by its researchers. 2012-10-05 2021-09-03 +r3d100010105 NEEShub eng [{"additionalName": "Network for Earthquake Engineering Simulations", "additionalNameLanguage": "eng"}, {"additionalName": "The George E. Brown, Jr. Network for Earthquake Engineering Simulation", "additionalNameLanguage": "eng"}, {"additionalName": "a platform for research, collaboration and education", "additionalNameLanguage": "eng"}] http://nees.org/ [] [] >>>!!!<<< As stated 2017-08-28 NEEShub is no longer available. >>>!!!<<< >>>!!!<<< NEES.org is no longer available. The NEES published projects from the Project Warehouse can be found in the DesignSafe Data Depot https://www.designsafe-ci.org/data/browser/public/nees.public/. The NEES Databases https://datacenterhub.org/resources/395 are being transitioned to DataHub https://datacenterhub.org/ . Please visit DesignSafe https://www.designsafe-ci.org/ for all other inquiries. >>>!!!<<< NEES network features 14 geographically-distributed, shared-use laboratories that support several types of experimental work: geotechnical centrifuge research, shake table tests, large-scale structural testing, tsunami wave basin experiments, and field site research eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 2017-08-28 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquake", "field experimentation and monitoring", "geotechnical centrifuges", "large-scale laboratory experimentation", "seismology", "shake tables", "tsunami wave basin"] [{"institutionName": "George E. Brown, Jr. Network for Earthquake Engineering Simulation", "institutionAdditionalName": ["NEES"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nees.org/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}] restricted [] ["other"] yes {} ["DOI"] [] unknown yes [] [] {} Data from NEEShub have been transitioned to DesignSafe-CI (https://www.designsafe-ci.org/) and to DataHub https://datacenterhub.org/ . // NEEShub is covered by Thomson Reuters Data Citation Index. The George E. Brown, Jr. Network for Earthquake Engineering Simulation (NEES) was created by the National Science Foundation (NSF) to aggressively move forward the development of improvements and innovations in infrastructure design and construction practices to prevent or minimize damage during such an event. 2012-10-08 2019-05-15 +r3d100010106 Neuroscience Information Framework eng [{"additionalName": "NIF", "additionalNameLanguage": "eng"}] https://neuinfo.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.v11s0z", "RRID:OMICS_01190", "RRID:SCR_002894", "RRID:nif-0000-25673"] ["info@neuinfo.org"] The Neuroscience Information Framework is a dynamic index of data, materials, and tools. Please note, we do not accept direct data deposits, but if you wish to make your data repository or database available through our search, please contact us. An initiative of the NIH Blueprint for Neuroscience Research, NIF advances neuroscience research by enabling discovery and access to public research data and tools worldwide through an open source, networked environment. eng ["disciplinary"] {"size": "847,288,491 results from 300 data sources", "updatedp": "2019-12-12"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://neuinfo.org/about/index.shtm [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "antibodies", "biospecimen", "brain regions", "drugs", "genes", "nervous system function", "neuroanatomy", "neurosciences", "plasmids"] [{"institutionName": "National Institutes of Health, Blueprint for Neuroscience Research", "institutionAdditionalName": ["NIH Blueprint"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://neuroscienceblueprint.nih.gov/", "institutionIdentifier": ["ROR:012wp4251", "RRID:SCR_003670", "RRID:nif-0000-00219"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["blueprint@mail.nih.gov"]}, {"institutionName": "Neuroscience Information Framework", "institutionAdditionalName": ["NIF"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://neuinfo.org/", "institutionIdentifier": ["FAIRsharing:doi:10.25504/FAIRsharing.v11s0z", "OMICS_01190", "RRID:SCR_002894", "RRID:nif-0000-25673"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["info@neuinfo.org"]}, {"institutionName": "SciCrunch", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://scicrunch.org/", "institutionIdentifier": ["FAIRsharing_doi:10.25504/FAIRsharing.kj4pvk", "RRID:SCR_005400", "RRID:nlx_144509"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@scicrunch.org"]}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181", "RRID:SCR_009983", "RRID:nlx_inv_1005043", "doi:10.13039/100000016"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://neuinfo.org/page/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://neuinfo.org/page/terms"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] closed [] ["unknown"] yes {"api": "https://neuinfo.org/about/devsupport", "apiType": "REST"} ["other"] [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://blog.neuinfo.org/index.php/feed", "syndicationType": "RSS"} Established in 2004, the NIH Blueprint for Neuroscience Research brings the 16 NIH Institutes, Centers and Offices that support neuroscience research into a collaborative framework to coordinate their ongoing efforts and to plan new cross-cutting initiatives. Working together, representatives from the partner Institutes, Centers, and Offices identify pervasive challenges in neuroscience and any technological barriers to solving them. 2012-10-08 2021-06-17 +r3d100010107 NeuroMorpho.Org eng [{"additionalName": "NeuroMorpho", "additionalNameLanguage": "eng"}] http://neuromorpho.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.drcy7r", "OMICS_06594", "RRID:SCR_002145", "nif-0000-00006"] ["neuromorpho@gmail.com", "nmadmin@gmu.edu"] NeuroMorpho.Org is a centrally curated inventory of digitally reconstructed neurons associated with peer-reviewed publications. It contains contributions from over 80 laboratories worldwide and is continuously updated as new morphological reconstructions are collected, published, and shared. To date, NeuroMorpho.Org is the largest collection of publicly accessible 3D neuronal reconstructions and associated metadata which can be used for detailed single cell simulations. eng ["disciplinary"] {"size": "396 brain regions", "updatedp": "2021-12-08"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://neuromorpho.org/about.jsp [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal neurons", "brain region,", "cell types", "morphology", "neurology", "neurosciences"] [{"institutionName": "George Mason University, Krasnow Institute for Advanced Study, The Center for Neural Informatics, Neural Structures, and Neural Plasticity", "institutionAdditionalName": ["CN3"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://krasnow1.gmu.edu/cn3/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["ascoli@gmu.edu"]}] [{"policyName": "Terms of use", "policyURL": "http://neuromorpho.org/useterm.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://neuromorpho.org/useterm.jsp"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://neuromorpho.org/useterm.jsp"}] restricted [{"dataUploadLicenseName": "Data Submission Guide", "dataUploadLicenseURL": "http://neuromorpho.org/data_submission_guide.jsp"}] ["Fedora"] yes {"api": "http://neuromorpho.org/api.jsp", "apiType": "REST"} [] http://neuromorpho.org/useterm.jsp [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. This project is part of a consortium for the creation of a "Neuroscience Information Framework," endorsed by the Society for Neuroscience, funded by the National Institutes of Health, led by Cornell University and including numerous academic institutions such as Yale University , Stanford University and University of California, San Diego 2012-10-09 2021-12-08 +r3d100010108 National Forestry Database eng [{"additionalName": "BDNF", "additionalNameLanguage": "fra"}, {"additionalName": "Base de donn\u00e9es nationale sur les forets", "additionalNameLanguage": "fra"}, {"additionalName": "NFD", "additionalNameLanguage": "eng"}] http://nfdp.ccfm.org/ [] ["http://nfdp.ccfm.org/en/contact.php", "nrcan.nfd-bdnf.rncan@canada.ca"] The National Forestry Database is used to compile national statistics. Most of the data are provided by the provincial or territorial resource management organizations. Federal land data are provided by the responsible federal departments and compiled by the CFS. eng ["other"] {"size": "", "updatedp": ""} 2008 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://nfdp.ccfm.org/en/about.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["forest fires", "forest inventory", "forest products", "pest control", "silviculture", "wood supply"] [{"institutionName": "Canadian Council of Forest Ministers", "institutionAdditionalName": ["Conseil canadien des ministres des forets"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.ccfm.org/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Forest Service", "institutionAdditionalName": ["CFS", "SCF", "Service canadien des forets"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/forests", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://contact-contactez.nrcan-rncan.gc.ca/index.cfm?lang=eng&sid=7&context=simply-science", "michael.vasseur@nrcan-rncan.gc.ca"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://nfdp.ccfm.org/en/terms.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://nfdp.ccfm.org/en/terms.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nfdp.ccfm.org/en/terms.php"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/c-42/"}] closed [] ["unknown"] {} ["none"] [] unknown no [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} The Program is a partnership between the federal government and provincial and territorial governments. The Canadian Forest Service (CFS) at Natural Resources Canada, which developed and maintains the database, has responsibility for disseminating national forestry statistics 2012-10-09 2018-12-11 +r3d100010109 NASA Distributed Active Archive Center at National Snow & Ice Data Center eng [{"additionalName": "DAAC", "additionalNameLanguage": "eng"}, {"additionalName": "NASA DAAC at NSIDC", "additionalNameLanguage": "eng"}] https://nsidc.org/daac/ [] ["nsidc@nsidc.org"] The NSIDC Distributed Active Archive Center (DAAC) processes, archives, documents, and distributes data from NASA's past and current Earth Observing System (EOS) satellites and field measurement programs. The NSIDC DAAC focuses on the study of the cryosphere. The NSIDC DAAC is one of NASA's Earth Observing System Data and Information System (EOSDIS) Data Centers. eng ["disciplinary", "institutional"] {"size": "602 data sets", "updatedp": "2018-10-31"} 1982 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nsidc.org/daac/about-the-daac [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Earth Observing System (EOS)", "cryosphere", "field measurement programs", "satellites"] [{"institutionName": "NASA's Earth Observing System Data and Information System", "institutionAdditionalName": ["EOSDIS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://earthdata.nasa.gov/"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["webmaster@noaa.gov"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["rgov@nsf.gov"]}, {"institutionName": "National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://nsidc.org/about/contact.html"]}, {"institutionName": "University of Boulder, Cooperative Institute for Research in Environmental Sciences", "institutionAdditionalName": ["CIRES"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cires.colorado.edu", "institutionIdentifier": [], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://cires.colorado.edu/contact"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/03/NSIDC-DAAC.pdf"}, {"policyName": "NSIDC data policy", "policyURL": "https://nsidc.org/about/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://earthdata.nasa.gov/earth-science-data-systems-program/policies/data-information-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earthdata.nasa.gov/earth-science-data-systems-program/policies/data-information-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earthdata.nasa.gov/earth-science-data-systems-program/policies/data-information-policy/data-rights-related-issues"}] restricted [{"dataUploadLicenseName": "NSIDC DAAC Data Acceptance Plan", "dataUploadLicenseURL": "https://nsidc.org/sites/nsidc.org/files/files/data/daac/daac_data_policy_v09-1.pdf"}] ["unknown"] yes {"api": "https://nsidc.org/api/opendap/", "apiType": "OpenDAP"} ["DOI"] https://nsidc.org/daac/citing-daac-data [] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://nsidc.org/the-drift//feed", "syndicationType": "RSS"} The NSIDC DAAC is one of NASA's Earth Observing System Data and Information System (EOSDIS) Data Centers. Each data center serves one or more specific Earth science disciplines and provides its user community with data products, data information, user services, and tools unique to its particular science. Each data center is also guided by a User Working Group (UWG) in identifying and generating these needed data products. NSIDC DAAC is a regular member of ICSU World Data System. 2012-10-09 2019-03-18 +r3d100010110 National Snow and Ice Data Center eng [{"additionalName": "NSIDC", "additionalNameLanguage": "eng"}, {"additionalName": "WDC - CU", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Glaciology", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center for Glaciology", "additionalNameLanguage": "eng"}] https://nsidc.org/data/ ["RRID:SCR_002220", "RRID:nlx_154742"] ["https://nsidc.org/about/contact.html", "nsidc@nsidc.org"] NSIDC offers hundreds of scientific data sets for research, focusing on the cryosphere and its interactions. Data are from satellites and field observations. All data are free of charge. eng ["disciplinary"] {"size": "1122 data sets", "updatedp": "2018-10-31"} 1976 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nsidc.org/about/overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arctic sea ice", "biosphere", "climatology", "cryosphere", "glaciology", "global warming", "ice", "ice sheets", "ice shelves", "icebergs", "snow"] [{"institutionName": "Cooperative Institute for Research in Environmental Sciences, National Snow and Ice Data Center", "institutionAdditionalName": ["CIRES", "NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": ["ROR:00bdqav06"], "responsibilityStartDate": "1976", "responsibilityEndDate": "", "institutionContact": ["https://nsidc.org/about/contact.html"]}, {"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/group/council-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.earthcube.org/contact/General-Inquiries"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "1982", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Colorado Boulder", "institutionAdditionalName": ["CU Boulder"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.colorado.edu/", "institutionIdentifier": ["ROR:02ttsq026"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.colorado.edu/contact-us"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/03/WDC-NSIDC.pdf"}, {"policyName": "NSIDC web policy", "policyURL": "https://nsidc.org/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://nsidc.org/about/policies"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nsidc.org/about/use_copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nsidc.org/about/policies"}] restricted [{"dataUploadLicenseName": "submit data", "dataUploadLicenseURL": "https://nsidc.org/data/submit/intro"}] ["unknown"] {"api": "https://nsidc.org/data/data_pool", "apiType": "FTP"} ["DOI"] https://nsidc.org/about/use_copyright.html [] yes yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://nsidc.org/the-drift/data-update/feed/", "syndicationType": "RSS"} WDC - CU is a regular member of ICSU World Data System. NSIDC is covered by Clarivate Data Citation Index. The World Data Center (WDC) for Glaciology, Boulder, a data center responsible for archiving all available glaciological information, was established at the American Geographical Society In 1982, NOAA created the National Snow and Ice Data Center (NSIDC) as a means to expand the WDC holdings and as a place to archive data from some NOAA programs. In 1976, responsibility for the WDC for Glaciology was transferred to NOAA, Environmental Data and Information Service (EDIS), and the center moved to the University of Colorado at Boulder in 1957. Between 1971 and 1976 it was operated by the U.S. Geological Survey, Glaciology Project Office 2012-11-21 2021-06-29 +r3d100010111 NASA Space Science Data Coordinated Archive eng [{"additionalName": "NASA's archive for space science mission data", "additionalNameLanguage": "eng"}, {"additionalName": "NSSDCA", "additionalNameLanguage": "eng"}] https://nssdc.gsfc.nasa.gov/ ["PSSB-00666"] ["nssdc-request@lists.nasa.gov"] The NASA Space Science Data Coordinated Archive serves as the permanent archive for NASA space science mission data. "Space science" means astronomy and astrophysics, solar and space plasma physics, and planetary and lunar science. As permanent archive, NSSDCA teams with NASA's discipline-specific space science "active archives" which provide access to data to researchers and, in some cases, to the general public. NSSDCA also serves as NASA's permanent archive for space physics mission data. It provides access to several geophysical models and to data from some non-NASA mission data. In addition to supporting active space physics and astrophysics researchers, NSSDCA also supports the general public both via several public-interest web-based services (e.g., the Photo Gallery) and via the offline mailing of CD-ROMs, photoprints, and other items. eng ["disciplinary", "institutional"] {"size": "NSSDCA archives more than 400 TB of digital data from about 550 mostly-NASA space science spacecraft, of which the most important 7 TB are electronically accessible", "updatedp": "2018-10-31"} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://nssdc.gsfc.nasa.gov/about/charter.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["asteroids", "astrophysics", "comets", "lunar and planetary science", "planets", "solar and space plasma physics", "space missions"] [{"institutionName": "National Aeronautics and Space Administration, NASA Space Science Data Coordinated Archive", "institutionAdditionalName": ["NSSDCA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nssdc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["nate.james@gsfc.nasa.gov"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "Policy for Preservation and Dissemination of Data Deposited with NSSDCA", "policyURL": "https://nssdc.gsfc.nasa.gov/nssdc/preservation_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://nssdc.gsfc.nasa.gov/publication/DataAccessPolicy.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://nssdc.gsfc.nasa.gov/archive/mou/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nssdc.gsfc.nasa.gov/nssdc/PDS_Data_Policies_110330.pdf"}] restricted [{"dataUploadLicenseName": "Submitting data to the NSSDCA", "dataUploadLicenseURL": "https://nssdc.gsfc.nasa.gov/nssdc/submitting_data.html"}] [] yes {"api": "https://nssdcftp.gsfc.nasa.gov/", "apiType": "FTP"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} Link check 31.10.18 Re; NASA’s Heliophysics Science Division at NASA HQs issued a revised Heliophysics Science Data Management Policy in 2009 (see http://hpde.gsfc.nasa.gov/Heliophysics_Data_Policy_2009Apr12.html). This revised policy redefined the Heliophysics role of the NASA Space Science Data Coordinated Archive (NSSDCA) at Goddard to be solely that of a “deep archive” and defined a new role for the Space Physics Data Facility (SPDF)(re3data100010168) to be one of two “active Final Archives” charged to work with NASA HQs to ensure the long-term accessibility and availability of all important NASA heliophysics data. 2012-10-12 2018-12-11 +r3d100010113 ONSchallenge eng [{"additionalName": "ONS", "additionalNameLanguage": "eng"}] http://onschallenge.wikispaces.com/list+of+experiments [] [] ---<<< This repository is no longer available. This record is out-dated >>>--- The ONS challenge contains open solubility data, experiments with raw data from different scientists and institutions. It is part of the The Open Notebook Science wiki community, ideally suited for community-wide collaborative research projects involving mathematical modeling and computer simulation work, as it allows researchers to document model development in a step-by-step fashion, then link model prediction to experiments that test the model, and in turn, use feeback from experiments to evolve the model. By making our laboratory notebooks public, the evolutionary process of a model can be followed in its totality by the interested reader. Researchers from laboratories around the world can now follow the progress of our research day-to-day, borrow models at various stages of development, comment or advice on model developments, discuss experiments, ask questions, provide feedback, or otherwise contribute to the progress of science in any manner possible. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 2018 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30101 Inorganic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://onschallenge.wikispaces.com/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["measurements", "solubility data"] [{"institutionName": "Royal Society of Chemistry", "institutionAdditionalName": ["RSC"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.rsc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tangient LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wikispaces.com/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["info@wikispaces.com"]}] [{"policyName": "terms", "policyURL": "http://www.wikispaces.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] ["other"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://onschallenge.wikispaces.com/page/xml/home?v=rss_2_0", "syndicationType": "RSS"} Wikispaces, a Free web hosting service (sometimes called a wiki farm) based in San Francisco, California. Launched March 2005, Wikispaces is owned by Tangient LLC and is among the largest wiki hosts. Since 2010 Wikispaces have cooperated with web 2.0 education platform Glogster EDU. Glogster EDU embeds Glogs into Wikispaces services.Open Notebook Science was born from the UsefulChem wikispace developed by Jean-Claude Bradley at Drexel University (Thank You, Jean-Claude!). 2013-06-26 2018-12-11 +r3d100010114 Open Research Data eng [{"additionalName": "The platform for freely accessible landscape research data", "additionalNameLanguage": "eng"}, {"additionalName": "ZALF. Open Research Data", "additionalNameLanguage": "eng"}] http://open-research-data-zalf.ext.zalf.de/default.aspx [] ["https://www.zalf.de/en/ueber_uns/kontakt_anfahrt/Pages/default.aspx"] Open Research Data provides quality assessed data and their metadata such as context information on measurement objectives, equipment, methods, testing and investigation areas. The purpose of the repository is to secure quality, integrity and long-term availability of landscape and ecosystem research data as well as to enhance accessibility of free data from ZALF long-term monitoring campaigns, landscape laboratories (Agro-ScapeLabs), field trials and experiments. The Leibniz Centre for Agricultural Landscape Research (ZALF) explores ecosystems in agricultural landscapes and the development of ecologically and economically viable land use systems. ZALF combines scientific expertise from agricultural science, geosciences, biosciences and socio-economics. eng ["disciplinary", "institutional"] {"size": "124 datasets", "updatedp": "2018-11-07"} 2010-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.zalf.de/en/forschung_lehre/Pages/wissenschaftliche_portale.aspx [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "ecosystem", "landscape", "modelling", "soil", "water", "weather"] [{"institutionName": "Leibniz-Zentrum f\u00fcr Agrarlandschaftsforschung e. V.", "institutionAdditionalName": ["Leibniz Centre for Agricultural Landscape Research", "ZALF"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.zalf.de/de/Seiten/ZALF.aspx", "institutionIdentifier": [], "responsibilityStartDate": "2010-01-01", "responsibilityEndDate": "", "institutionContact": ["http://www.zalf.de/en/ueber_uns/kontakt_anfahrt/Pages/default.aspx"]}] [{"policyName": "ZALF Open-Research-Data Privacy Policy", "policyURL": "http://open-research-data-zalf.ext.zalf.de/SitePages/Privacy_Policy.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] no {} ["DOI"] http://open-research-data-zalf.ext.zalf.de/SitePages/FAQ1.aspx [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} ZALF. Open Research Data is covered by Thomson Reuters Data Citation Index. 2012-10-16 2021-06-29 +r3d100010115 Open Context eng [] https://opencontext.org/ [] ["https://opencontext.org/about/people#contact-editors", "skansa@alexandriaarchive.org"] Open Context is a free, open access resource for the electronic publication of primary field research from archaeology and related disciplines. It emerged as a means for scholars and students to easily find and reuse content created by others, which are key to advancing research and education. Open Context's technologies focus on ease of use, open licensing frameworks, informal data integration and, most importantly, data portability.Open Context currently publishes 23 projects. eng ["disciplinary"] {"size": "1.215.218 data records", "updatedp": "2018-11-08"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://opencontext.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["anthropology", "archaeology", "geology", "history"] [{"institutionName": "California Digital Library", "institutionAdditionalName": ["CDL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cdlib.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Museum and Library Services", "institutionAdditionalName": ["IMLS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imls.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imls.gov/about-us/contact-us"]}, {"institutionName": "National Endowment for the Humanities", "institutionAdditionalName": ["NEH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.neh.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Alexandria Archive Institute", "institutionAdditionalName": ["AAI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://alexandriaarchive.org/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["contact@alexandriaarchive.org"]}, {"institutionName": "The William and Flora Hewlett Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hewlett.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Intellectual Property and Open Context", "policyURL": "https://opencontext.org/about/intellectual-property"}, {"policyName": "Terms of Use and Privacy Policies", "policyURL": "https://opencontext.org/about/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] open [{"dataUploadLicenseName": "Data Publication Guidelines for Contributors", "dataUploadLicenseURL": "https://opencontext.org/about/#service-overview"}] ["unknown"] {"api": "https://opencontext.org/oai/request", "apiType": "OAI-PMH"} ["ARK", "DOI"] https://opencontext.org/about/uses [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "https://opencontext.org/manifest/.atom", "syndicationType": "ATOM"} Open Context is covered by Thomson Reuters Data Citation Index. 2012-10-18 2018-11-08 +r3d100010116 The University of Oxford Text Archive eng [{"additionalName": "OTA", "additionalNameLanguage": "eng"}] http://ota.ox.ac.uk/ [] ["http://ota.ox.ac.uk/about/contact.xml"] The University of Oxford Text Archive develops, collects, catalogues and preserves electronic literary and linguistic resources for use in Higher Education, in research, teaching and learning. We also give advice on the creation and use of these resources, and are involved in the development of standards and infrastructure for electronic language resources. eng ["disciplinary", "institutional"] {"size": "2.723 entries", "updatedp": "2018-11-08"} 1976 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://ota.ox.ac.uk/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["culture", "electronic texts", "language", "linguistic corpora", "literature"] [{"institutionName": "Arts and Humanities Research Council", "institutionAdditionalName": ["AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2008", "institutionContact": ["enquiries@ahrc.ac.uk"]}, {"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "CLARIN-UK", "institutionAdditionalName": ["The Common Language Resources and Tools Infrastructure"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin-uk@jiscmail.ac.uk"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2008", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "Oxford University Computing Services", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.oucs.ox.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://help.it.ox.ac.uk/help/request"]}] [{"policyName": "University of Oxford Text Archive User Agreement", "policyURL": "http://ota.ox.ac.uk/documents/user_agreement.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Depositing with the University of Oxford Text Archive", "dataUploadLicenseURL": "http://ota.ox.ac.uk/about/deposit.xml"}] ["unknown"] no {"api": "http://www.ota.ox.ac.uk/cgi-bin/oai.pl?verb=Identify", "apiType": "OAI-PMH"} ["none"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The OTA is one of the key centres of CLARIN-ERIC - the Common Language Resources and Technology Infrastructure. OTA collections can be found via the Virtual Language Observatory https://vlo.clarin.eu/?2-1.ILinkListener-searchContainer-selections-facets-container-facets-1-facet-facetValues-valuesContainer-valuesList-3-facetValues-0-facetSelect . 2012-10-12 2018-12-11 +r3d100010117 fossilworks eng [{"additionalName": "PaleoDB", "additionalNameLanguage": "eng"}, {"additionalName": "Paleobiology Database", "additionalNameLanguage": "eng"}] http://fossilworks.org/?a=home [] ["john.alroy@mq.edu.au"] Fossilworks is a web-based portal to the Paleobiology Database. Fossilworks is the original public interface to the PaleoDB and is housed at Macquarie. It is a non-governmental, non-profit public resource. Its purpose is to provide global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data. The project's wider, long-term goal is to encourage collaborative efforts to answer large-scale paleobiological questions by developing a useful database infrastructure and bringing together large data sets. eng ["disciplinary"] {"size": "67,199 references \u2022 378.295 taxa \u2022 197.153 fossil collections \u2022 1..387.307 taxonomic occurrences", "updatedp": "2018-11-08"} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://fossilworks.org/?page=FAQ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["classification", "fossils", "marine animals", "paleobiology", "paleogepgraphy", "paleontology", "terrestrial animals"] [{"institutionName": "Australian Governmnent, Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arc.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Macquarie University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bio.mq.edu.au/~jalroy/cv.html"]}, {"institutionName": "National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "2000", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "2008", "institutionContact": []}] [{"policyName": "Data Ownership", "policyURL": "http://fossilworks.org/bridge.pl?page=FAQ#DataOwnership"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://fossilworks.org/bridge.pl?page=paleodbFAQ&action=displayPage#ownership"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://fossilworks.org/bridge.pl?page=paleodbFAQ&action=displayPage#ownership"}, {"dataLicenseName": "other", "dataLicenseURL": "http://fossilworks.org/bridge.pl?page=FAQ#DataOwnership"}] closed [] ["unknown"] {} ["none"] http://fossilworks.org/bridge.pl?page=FAQ#Citing [] yes yes [] [] {} Fossilworks is the original public interface to the PaleoDB and is housed at Macquarie. A different Paleobiology Database site has been set up at the University of Wisconsin-Madison by a group of contributors. The Wisconsin site is using the name "Paleobiology Database" by mutual agreement because using different names should minimize confusion. The sites plan to exchange data on a regular basis. Fossilworks is not a platform for data entry, but the Wisconsin site is seeking contributors. 2012-10-18 2018-11-08 +r3d100010118 Forschungsdatenzentrum des SOEP deu [{"additionalName": "Das Sozio-Oekonomische Panel", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ SOEP", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Center of the SOEP", "additionalNameLanguage": "eng"}] https://www.diw.de/en/diw_02.c.221180.en/research_data_center_soep.html ["RRID:SCR_013140", "RRID:nlx_151827"] ["jgoebel@diw.de"] The German Socio-Economic Panel Study (SOEP) is a wide-ranging representative longitudinal study of private households, located at the German Institute for Economic Research, DIW Berlin. Every year, there were nearly 11,000 households, and more than 20,000 persons sampled by the fieldwork organization TNS Infratest Sozialforschung. The data provide information on all household members, consisting of Germans living in the Old and New German States, Foreigners, and recent Immigrants to Germany. The Panel was started in 1984. Some of the many topics include household composition, occupational biographies, employment, earnings, health and satisfaction indicators. eng ["other"] {"size": "", "updatedp": ""} 1984 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.diw.de/en/diw_01.c.392104.en/mission.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["census", "demography", "health", "household surveys", "income", "population"] [{"institutionName": "Deutsches Institut f\u00fcr Wirtschaftsforschung, Das Sozio-oekonomische Panel", "institutionAdditionalName": ["DIW", "SOEP"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.diw.de/soep", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": ["kgeppert@diw.de"]}, {"institutionName": "Kantar TNS", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.tns-infratest.com/", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": ["Nico.Siegel@tns-infratest.com"]}, {"institutionName": "Leibniz-Gemeinschaft", "institutionAdditionalName": ["Leibniz Association", "WGL"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "SOEP Datenschutzverfahren", "policyURL": "https://www.diw.de/documents/dokumentenarchiv/17/diw_01.c.347090.de/soep_datenschutzverfahren.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.diw.de/de/diw_01.c.100339.de/ueber_uns/impressum.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.diw.de/documents/dokumentenarchiv/17/diw_01.c.347090.de/soep_datenschutzverfahren.pdf"}] closed [] ["unknown"] {} ["DOI"] https://www.diw.de/sixcms/detail.php?id=286845#274746 [] unknown unknown ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.diw.de/de/de_nachrichten.xml", "syndicationType": "RSS"} Research Data Center of the SOEP is covered by Thomson Reuters Data Citation Index. SOEP is a member of the RatSWD - research data - infrastructure. The SOEP Household Panel is a Service Unit of the Leibniz Association (WGL) and is located at DIW Berlin. TNS Infratest Sozialforschung (Munich) carries out the fieldwork. Thereof the SOEP group of researchers not only make the data available to the research community in a more userfriendly way, but also conduct their own analyses of the data. The CNEF User Package includes: read more: https://cnef.ehe.osu.edu/data/ 2012-12-03 2021-08-25 +r3d100010119 Spec Patterns eng [{"additionalName": "Specification Patterns", "additionalNameLanguage": "eng"}] http://patterns.projects.cis.ksu.edu/ [] ["spec-patterns@cis.ksu.edu"] Specification Patterns is an online repository for information about property specification for finite-state verification. The intent of this repository is to collect patterns that occur commonly in the specification of concurrent and reactive systems. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://patterns.projects.cis.ksu.edu/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["finite-state model", "finite-state verification", "formal methods", "property specification patterns"] [{"institutionName": "Kansas State University, Computing and Information Sciences Department, SAnToS laboratory", "institutionAdditionalName": ["CIS", "K-State", "SAnToS Lab"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.santoslab.org/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["spec-patterns@cis.ksu.edu"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://patterns.projects.cis.ksu.edu/"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2012-12-05 2018-11-08 +r3d100010120 UK Polar Data Centre eng [{"additionalName": "UK PDC", "additionalNameLanguage": "eng"}] https://www.bas.ac.uk/data/uk-pdc/ ["FAIRsharing_doi:10.25504/FAIRsharing.t43bf6"] ["PDCServiceDesk@bas.ac.uk", "https://www.bas.ac.uk/data/uk-pdc/contacts/"] The UK Polar Data Centre (UK PDC) is the focal point for Arctic and Antarctic environmental data management in the UK. Part of the Natural Environmental Research Council’s (NERC) network of environmental data centres and based at the British Antarctic Survey, it coordinates the management of polar data from UK-funded research and supports researchers in complying with national and international data legislation and policy. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bas.ac.uk/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["animal", "antarctica", "arctic", "biodiversity", "climate change", "data", "invertebrate", "marine geology", "plants", "polar science", "space weather", "terrestrial geology"] [{"institutionName": "British Antarctic Survey", "institutionAdditionalName": ["BAS"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bas.ac.uk", "institutionIdentifier": ["ROR:01rhff309"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["polardatacentre@bas.ac.uk"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment UK Polar Data Centre", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/03/UK-Polar-Data-Centre.pdf"}, {"policyName": "Data Policy", "policyURL": "https://www.bas.ac.uk/data/uk-pdc/data-policy/"}, {"policyName": "NERC Data policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bas.ac.uk/about-this-site/copyright-statement/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/information-management/producing-official-publications/copyright-statements/"}] restricted [{"dataUploadLicenseName": "Data Transfer Agreement", "dataUploadLicenseURL": "https://www.bas.ac.uk/wp-content/uploads/2019/06/Data-Transfer-Agreement.docx"}] ["unknown"] {"api": "https://api.bas.ac.uk/data/metadata/csw/v2/", "apiType": "REST"} ["DOI"] https://www.bas.ac.uk/data/uk-pdc/data-citation-and-publishing/ ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.bas.ac.uk/rss-2/", "syndicationType": "RSS"} PDC is covered by Clarivate Data Citation Index. is covered by Elsevier. PDC replaces the Antarctic Environmental Data Centre (AEDC) from 1st April 2009. The PDC is based within the British Antarctic Survey (BAS) and is part of the Natural Environment Research Council (NERC) network of data centres. It is the UK’s National Antarctic Data Centre in the SCAR Standing Committee on Antarctic Data Management (SCADM). 2012-12-05 2021-09-03 +r3d100010121 PDS eng [{"additionalName": "The Planetary Data System", "additionalNameLanguage": "eng"}] https://pds.jpl.nasa.gov/ ["ROR:006ndaj41"] ["https://pds.jpl.nasa.gov/contact/contact.shtml"] The PDS archives and distributes scientific data from NASA planetary missions, astronomical observations, and laboratory measurements. The PDS is sponsored by NASA's Science Mission Directorate. Its purpose is to ensure the long-term usability of NASA data and to stimulate advanced research eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1990 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://pds.jpl.nasa.gov/home/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["asteroids", "comets", "geological survey", "observation", "planets", "satellite missions", "solar system"] [{"institutionName": "NASA, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "PDS Project Office", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pdsmgmt.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": ["https://pdsmgmt.gsfc.nasa.gov/contacts.html"]}] [{"policyName": "PDS Policies", "policyURL": "https://pds.jpl.nasa.gov/datastandards/documents/policy/"}, {"policyName": "Policy on Formats for PDS4 Data and Documentation", "policyURL": "https://pds.jpl.nasa.gov/datastandards/documents/policy/format_policies_final.pdf"}, {"policyName": "image use policy", "policyURL": "https://www.jpl.nasa.gov/imagepolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/copyrights.php"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.usa.gov/government-works"}] restricted [] ["unknown"] yes {"api": "https://www.nasa.gov/content/planetary-data-systems-api-to-nodes", "apiType": "other"} ["DOI"] https://pds.jpl.nasa.gov/datastandards/citing/ [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} PDS is covered by Clarivate Data Citation Index. 2012-12-05 2020-02-12 +r3d100010123 MetaCrop eng [] https://apex.ipk-gatersleben.de/apex/f?p=269:111:::NO::: ["RRID:SCR_003100", "nif-0000-03113"] ["info@ipk-gatersleben.de"] MetaCrop is a database that summarizes diverse information about metabolic pathways in crop plants and allows automatic export of information for the creation of detailed metabolic models. MetaCrop is a database that contains manually curated, highly detailed information about metabolic pathways in crop plants, including location information, transport processes and reaction kinetics. eng ["disciplinary"] {"size": "62 major metabolic pathways", "updatedp": "2018-11-08"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://metacrop.ipk-gatersleben.de/apex/f?p=269:2 [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["crop plant", "dicotyledons", "metabolic pathway", "metabolism", "monocotyledons", "reaction", "taxonomy"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung", "institutionAdditionalName": ["IPK", "Leibniz Institute of Plant Genetics and Crop Plant Research"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipk-gatersleben.de/institut/kurzportrait/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ipk-gatersleben.de/kontakt/adresse/"]}] [{"policyName": "Imprint", "policyURL": "http://www.ipk-gatersleben.de/index.php?id=14"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ipk-gatersleben.de/index.php?id=14"}] restricted [] ["other"] yes {} ["other"] [] unknown yes [] [] {} 2012-12-05 2018-11-08 +r3d100010124 CR-EST eng [{"additionalName": "The IPK Crop EST Database", "additionalNameLanguage": "eng"}] https://apex.ipk-gatersleben.de/apex/f?p=116:1 ["OMICS_03226", "RRID:SCR_007612", "RRID:nif-0000-02695"] ["info@ipk-gatersleben.de"] The Crop EST Database (CR-EST) is a public available online resource providing access to sequence, classification, clustering, and annotation data of crop EST projects at the IPK. A view of these information give the summarized numbers about genomic data of species listed in the adjacent table. eng ["institutional"] {"size": "", "updatedp": ""} 2003 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://apex.ipk-gatersleben.de/apex/f?p=CREST:21:15310427629066::NO::: [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["barley", "crop", "expressed sequence tag", "gen sequence", "genomics", "pea", "petunia", "potato", "tobacco"] [{"institutionName": "Leibniz Institute of Plant Genetics and Crop Plant Research, Bioinformatics at the IPK", "institutionAdditionalName": ["IPK, Bioinformatics at the IPK", "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung, Bioinformatik am IPK"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipk-gatersleben.de/bioinformatik/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["braeutigam@ipk-gatersleben.de", "scholz@ipk-gatersleben.de"]}] [{"policyName": "Imprint", "policyURL": "http://www.ipk-gatersleben.de/en/signature/impressum/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ipk-gatersleben.de/en/signature/impressum/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ipk-gatersleben.de/en/signature/impressum/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://apex.ipk-gatersleben.de/apex/f?p=116:1"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2012-12-05 2021-08-25 +r3d100010125 NIST XCOM eng [{"additionalName": "NIST Standard Reference Database 8 (XGAM)", "additionalNameLanguage": "eng"}, {"additionalName": "Photon Cross Section Database", "additionalNameLanguage": "eng"}, {"additionalName": "XCOM", "additionalNameLanguage": "eng"}] https://www.nist.gov/pml/xcom-photon-cross-sections-database ["doi.org/10.18434/T48G6X"] ["https://www.nist.gov/srd/standard-reference-data-contact-form?id=8"] A web database is provided which can be used to calculate photon cross sections for scattering, photoelectric absorption and pair production, as well as total attenuation coefficients, for any element, compound or mixture (Z ≤ 100), at energies from 1 keV to 100 GeV. eng ["institutional"] {"size": "1 mm", "updatedp": "2020-08-24"} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://physics.nist.gov/PhysRefData/Xcom/Text/intro.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["coefficient", "photoelectric absortion", "photon cross section"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": ["ROR:016s8vs02"], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": ["steve.seltzer@nist.gov"]}, {"institutionName": "U.S.Department of Commerce", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.commerce.gov/", "institutionIdentifier": ["ROR:04chq2495"], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S.Department of Energy, Office of Health and Environmental Research", "institutionAdditionalName": ["OHER", "energy.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://www.nist.gov/privacy-policy"}, {"policyName": "Quality Standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://physics.nist.gov/PhysRefData/Xcom/Text/download.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/foia"}] open [] ["unknown"] yes {} ["none"] https://physics.nist.gov/PhysRefData/Xcom/Text/version.shtml [] unknown yes [] [] {} XCOM is a computer program and data base which can be used to calculate, with a personal computer, photon cross sections for scattering, photoelectric absorption and pair production, as well as total attenuation coefficients, in any element, compound or mixture, at energies from 1 keV to 100 GeV. XCOM On line: https://physics.nist.gov/PhysRefData/Xcom/html/xcom1.html 2012-12-05 2021-04-13 +r3d100010126 GISAID eng [{"additionalName": "GISAID EpiFlu database", "additionalNameLanguage": "eng"}, {"additionalName": "Global initiative on sharing all influenza data", "additionalNameLanguage": "eng"}] https://www.gisaid.org/ ["OMICS_08016", "RRID:SCR_018279"] ["contact@gisaid.org"] The GISAID Initiative promotes the international sharing of all influenza virus sequences, related clinical and epidemiological data associated with human viruses, and geographical as well as species-specific data associated with avian and other animal viruses, to help researchers understand how the viruses evolve, spread and potentially become pandemics. *** GISAID does so by overcoming disincentives/hurdles or restrictions, which discourage or prevented sharing of influenza data prior to formal publication. *** The Initiative ensures that open access to data in GISAID is provided free-of-charge and to everyone, provided individuals identify themselves and agree to uphold the GISAID sharing mechanism governed through its Database Access Agreement. GISAID calls on all users to agree to the basic premise of upholding scientific etiquette, by acknowledging the originating laboratories providing the specimen and the submitting laboratories who generate the sequence data, ensuring fair exploitation of results derived from the data, and that all users agree that no restrictions shall be attached to data submitted to GISAID, to promote collaboration among researchers on the basis of open sharing of data and respect for all rights and interests. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.gisaid.org/about-us/mission/ [{"name": "Raw data", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["demography", "epidemiology", "gene sequences", "influenza", "virology", "virus"] [{"institutionName": "Bundesministerium f\u00fcr Ern\u00e4hrung und Landwirtschaft", "institutionAdditionalName": ["BMEL", "Federal Ministry of Food and Agriculture"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmel.de/EN/Homepage/homepage_node.html", "institutionIdentifier": ["ROR:04jw21793"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://www.bmel.de/EN/Services/Contact/contact_node.html"]}, {"institutionName": "Freunde von GISAID e.V.", "institutionAdditionalName": ["GISAID Initiative"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gisaid.org/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institut f\u00fcr Informatik", "institutionAdditionalName": ["MPII", "Max Planck Institute for Informatics"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpi-inf.mpg.de/home/", "institutionIdentifier": ["ROR:01w19ak89", "RRID:SCR_011367", "RRID:nlx_88721"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GISAID EpiFlu\u2122 Database Access Agreement", "policyURL": "https://www.gisaid.org/registration/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.gisaid.org/registration/terms-of-use/"}] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gisaid.org/registration/terms-of-use/"}] open [] ["MySQL"] {} ["none"] https://www.gisaid.org/help/publish-with-data-from-gisaid/ [] yes yes [] [] {} To receive your personal access credentials to the GISAID EpiFlu™ database you must positively identify yourself and agree to the terms of the Database Access Agreement (DAA) --- Elbe, S., and Buckland-Merrett, G. (2017) Data, disease and diplomacy: GISAID's innovative contribution to global health. Global Challenges, 1: 33–46. doi: 10.1002/gch2.1018. 2012-12-06 2021-08-24 +r3d100010129 PubChem eng [] https://pubchem.ncbi.nlm.nih.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.qt3w7z", "OMICS_02734", "RRID:SCR_004284", "RRID:SCR_010578", "RRID:nlx_29861", "RRID:nlx_42691"] ["https://pubchemdocs.ncbi.nlm.nih.gov/contact"] Pubchem contains 3 databases. 1. PubChem BioAssay: The PubChem BioAssay Database contains bioactivity screens of chemical substances described in PubChem Substance. It provides searchable descriptions of each bioassay, including descriptions of the conditions and readouts specific to that screening procedure. 2. PubChem Compound: The PubChem Compound Database contains validated chemical depiction information provided to describe substances in PubChem Substance. Structures stored within PubChem Compounds are pre-clustered and cross-referenced by identity and similarity groups. 3. PubChem Substance. The PubChem Substance Database contains descriptions of samples, from a variety of sources, and links to biological screening results that are available in PubChem BioAssay. If the chemical contents of a sample are known, the description includes links to PubChem Compound. eng ["disciplinary"] {"size": "270.998.024 Substances; 1.366.263 BioAssays; 109.891.994 Compounds;", "updatedp": "2021-04-21"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://pubchemdocs.ncbi.nlm.nih.gov/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Validation", "biological screening", "chemical name", "chemical structure", "small molecule", "standardization", "substance information"] [{"institutionName": "National Center f\u00fcr Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181", "RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["ROR:0060t0j89", "RRID:SCR_011446", "RRID:nlx_inv_1005117"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NLM PubChem project data submission policy(DSP)", "policyURL": "https://pubchem.ncbi.nlm.nih.gov/upload/html/dsp.html"}, {"policyName": "Privacy policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/fls/fl102.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [{"dataUploadLicenseName": "NLM PubChem project data submission policy", "dataUploadLicenseURL": "https://pubchem.ncbi.nlm.nih.gov/upload/html/dsp.html"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/", "apiType": "FTP"} ["other"] https://pubchemdocs.ncbi.nlm.nih.gov/citation-guidelines [] yes yes [] [] {"syndication": "https://pubchem.ncbi.nlm.nih.gov/pcnews.rss", "syndicationType": "RSS"} PubChem is integrated with Entrez, NCBI's primary search engine. The late Senator Claude Pepper recognized the importance of computerized information processing methods for the conduct of biomedical research and sponsored legislation that established the National Center for Biotechnology Information (NCBI) on November 4, 1988, as a division of the National Library of Medicine (NLM) at the National Institutes of Health (NIH). NLM was chosen for its experience in creating and maintaining biomedical databases, and because as part of NIH, it could establish an intramural research program in computational molecular biology. The collective research components of NIH make up the largest biomedical research facility in the world. 2012-12-06 2021-09-08 +r3d100010130 Journal of applied econometrics Data Archive eng [{"additionalName": "JAE Data Archive", "additionalNameLanguage": "eng"}] http://qed.econ.queensu.ca/jae/ [] [] The JAE Data Archive, which is hosted by a server belonging to the Economics Department of Queen's University, contains data for all papers accepted after January, 1994, unless the data are confidential. There are also data for a few papers accepted earlier. Volume 10, No. 1 (1995) is the first issue in which all papers were accepted subject to the proviso that data be provided. For some papers, especially more recent ones, the Data Archive also contains programs and supplementary material, such as technical appendices and additional graphs. eng ["other"] {"size": "1.195 datasets", "updatedp": "2019-05-20"} 1994 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["economics", "macroeconomics", "mathematical methods"] [{"institutionName": "Queens University, Economics Department", "institutionAdditionalName": ["QED"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.econ.queensu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "1994", "responsibilityEndDate": "", "institutionContact": ["https://www.econ.queensu.ca/contact", "jgm@econ.queensu.ca"]}] [{"policyName": "instructions for authors", "policyURL": "http://qed.econ.queensu.ca/jae/author-instructions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://qed.econ.queensu.ca/jae/author-instructions.html"}] restricted [] ["unknown"] {"api": "http://qed.econ.queensu.ca/jae/author-instructions.html", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} More information about the Journal of Applied Econometrics is available at the Journal's home page https://onlinelibrary.wiley.com/journal/10991255 Online ISSN:1099-1255 2012-12-06 2021-04-21 +r3d100010131 CyberCell Database eng [{"additionalName": "CCDB", "additionalNameLanguage": "jpn"}, {"additionalName": "CCDB", "additionalNameLanguage": "eng"}] http://ccdb.wishartlab.com/ ["RRID:SCR_013423", "RRID:nif-0000-02644"] [] The CyberCell database (CCDB) is a comprehensive collection of detailed enzymatic, biological, chemical, genetic, and molecular biological data about E. coli (strain K12, MG1655). It is intended to provide sufficient information and querying capacity for biologists and computer scientists to use computers or detailed mathematical models to simulate all or part of a bacterial cell at a nanoscopic (10-9 m), mesoscopic (10-8 m).The CyberCell database CCDB actually consists of 4 browsable databases: 1) the main CyberCell database (CCDB - containing gene and protein information), 2) the 3D structure database (CC3D – containing information for structural proteomics), 3) the RNA database (CCRD – containing tRNA and rRNA information), and 4) the metabolite database (CCMD – containing metabolite information). Each of these databases is accessible through hyperlinked buttons located at the top of the CCDB homepage. All CCDB sub-databases are fully web enabled, permitting a wide variety of interactive browsing, search and display operations. and microscopic (10-6 m) level. eng ["disciplinary"] {"size": "4.252 protein coding genes; 478 x-ray structures; 65 NMR structures; 770 model structures; 2.976 without 3D structures; 2.790 cytoplasmic proteins; 152 periplasmic proteins; 1.053 membrane proteins; 297 essential genes; 2.052 non essential genes; 4.190 translated proteins, 3.810 post-translated proteins; 7.941 Translated + Mature Proteins;", "updatedp": "2021-04-21"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["E.coli", "Eschericha coli", "biology", "chemistry", "enzymes", "gene information", "molecular biology"] [{"institutionName": "GenomePrairie", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomeprairie.ca/", "institutionIdentifier": ["ROR:013s3gf12"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Alberta, Wishart Research Group", "institutionAdditionalName": ["UAlberta"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://www.wishartlab.com/contact"]}, {"institutionName": "Western Economic Diversification Canada", "institutionAdditionalName": ["DEO", "Diversification de l'\u00e9conomie de l'Ouest Canada", "WD"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wd-deo.gc.ca/eng/home.asp", "institutionIdentifier": ["ROR:002sgqx17"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy (f\u00fcr CCDB u. CC3D)", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["unknown"] yes {} ["DOI"] http://ccdb.wishartlab.com/ [] unknown yes [] [] {} Project CyberCell is also part of the International E. coli Alliance, an multi-national project aimed at coordinating E. coli simulation and E. coli bioinformatics efforts across Canada (Project CyberCell), the US (EMC2), Japan (E-Cell) and the European Community (SiliconCell, GSK) 2012-12-06 2021-04-21 +r3d100010132 Multimodal Learning Corpus Exchange eng [{"additionalName": "LETEC", "additionalNameLanguage": "eng"}, {"additionalName": "MULCE", "additionalNameLanguage": "eng"}, {"additionalName": "MUltimodal contextualized Learner Corpus Exchange", "additionalNameLanguage": "eng"}, {"additionalName": "Multimodal Learning and Teaching Corpora", "additionalNameLanguage": "eng"}] http://lrl-diffusion.univ-bpclermont.fr/mulce2/accesCorpus/accesCorpusMulce.php ["ISSN 2425-3316"] ["pfmaster@mulce.org"] Mulce (MUltimodal contextualized Learner Corpus Exchange) is a research project supported by the National Research Agency (ANR programme: "Corpus and Tools in the Humanities", ANR-06-CORP-006). A teaching corpus (LETEC - Learning and Teaching Corpora) combines a systematic and structured data set, particularly of interactional data, and traces left by a training course experimentation, conducted partially or completely online and completed by additional technical, human, pedagogical and scientific information to enable the data to be analysed in context. eng ["disciplinary"] {"size": "49", "updatedp": "2021-04-21"} 2007 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10401 General and Applied Linguistics", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://mulce-doc.univ-bpclermont.fr/?lang=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["learning", "teaching"] [{"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["ANR", "Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "L'Agence Nationale de la Recherche", "institutionAdditionalName": ["ANR", "French National Research Agency"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://anr.fr/en/", "institutionIdentifier": ["RRID:SCR_011248", "RRID:nlx_71540"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Maison des Sciences de l'Homme", "institutionAdditionalName": ["MSH"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.msh-clermont.fr/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "OLAC", "institutionAdditionalName": ["Open Language Archives Community"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.language-archives.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Franche-Comt\u00e9", "institutionAdditionalName": ["UFC", "Universit\u00e9 de Franche-Comt\u00e9"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.univ-fcomte.fr/", "institutionIdentifier": ["ROR:03pcc9z86"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "Universit\u00e9 Clermont Auvergne, Laboratoire de Recherche sur le Langage", "institutionAdditionalName": ["LRL"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.uca.fr/laboratoires/laboratoire-de-recherche-sur-le-langage-lrl", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["http://mulce-doc.univ-bpclermont.fr/spip.php?article3", "info@mucle.org"]}] [{"policyName": "Access information about Mulce on OLAC", "policyURL": "http://www.language-archives.org/archive/mulce.org"}, {"policyName": "Open Data, Guide to Open Licensing", "policyURL": "https://opendefinition.org/guide/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/"}] restricted [] ["unknown"] yes {"api": "http://www.language-archives.org/cgi-bin/olaca3.pl?verb=GetRecord&identifier=oai:mulce.org:mce-archi21-letec-all&metadataPrefix=oai_dc", "apiType": "OAI-PMH"} ["hdl"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://mulce-doc.univ-bpclermont.fr/spip.php?page=backend", "syndicationType": "RSS"} MULCE is part of Open Language Archive Community (OLAC) http://www.language-archives.org/archive_records/mulce.org and Common Language Resources and Technology Infrastructure (CLARIN) and searchable in its VLO https://vlo.clarin.eu/search?0&fq=collection:Multimodal+Learning+and+teaching+Corpora+Exchange 2012-12-06 2021-08-24 +r3d100010133 UPSpace eng [] https://repository.up.ac.za/ [] ["https://repository.up.ac.za/contact", "tlou.mathiba@up.ac.za", "upspace@up.ac.za"] A open access electronic archive collecting, preserving and distributing digital materials created by members of the University of Pretoria. eng ["institutional"] {"size": "63.111 entries; quaterly increasing by 600 entries", "updatedp": "2021-04-21"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["economic & management sciences", "education", "engineering, Built environment & Information Technology", "health sciences", "humanities and Social Sciences", "law", "natural & Agricultural Sciences", "theology", "veterinary science"] [{"institutionName": "University of Pretoria", "institutionAdditionalName": ["UP", "Universiteit van Pretoria", "Yunibesithi ya Pretoria"], "institutionCountry": "ZAF", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.up.ac.za/", "institutionIdentifier": ["ROR:00g0p6g84"], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://www.up.ac.za/enquiry"]}] [{"policyName": "Code of Conduct", "policyURL": "http://www.library.up.ac.za/aboutus/code.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://up-za.libguides.com/c.php?g=615261"}, {"dataLicenseName": "other", "dataLicenseURL": "https://up-za.libguides.com/ld.php?content_id=20851223"}] restricted [] ["DSpace"] yes {} ["hdl"] http://www.ais.up.ac.za/referencing/index.htm [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://repository.up.ac.za/feed/atom_1.0/site", "syndicationType": "ATOM"} 2013-06-07 2021-04-21 +r3d100010134 PANGAEA eng [{"additionalName": "Data Publisher for Earth and Environmental Science", "additionalNameLanguage": "eng"}] https://www.pangaea.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.6yw6cp"] ["frank.oliver.gloeckner@awi.de", "https://www.pangaea.de/contact/"] The information system PANGAEA is operated as an Open Access library aimed at archiving, publishing and distributing georeferenced data from earth system research. The system guarantees long-term availability of its content through a commitment of the operating institutions. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.pangaea.de/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agriculture", "atmosphere", "biology", "biosphere", "cryosphere", "earth science", "ecology", "environmental science", "fisheries", "land surface", "lithosphere", "paleontology"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}, {"institutionName": "MARUM", "institutionAdditionalName": ["Universit\u00e4t Bremen, Center for Marine Environmental Sciences", "Universit\u00e4t Bremen, Zentrum f\u00fcr Marine Umweltwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/en/index.html", "institutionIdentifier": ["ROR:02gn1ar53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marum.de/en/Prof.-Dr.-frank-oliver-gloeckner.html"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/06/PANGAEA-Data-Publisher-for-Earth-and-Environmental-Sciences.pdf"}, {"policyName": "Data policy of the information system PANGAEA", "policyURL": "https://secure.pangaea.de/curator/files/pangaea-data-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://wiki.pangaea.de/wiki/License"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "https://www.pangaea.de/submit/"}] ["other"] yes {"api": "http://ws.pangaea.de/oai/provider", "apiType": "OAI-PMH"} ["DOI"] https://wiki.pangaea.de/wiki/Citation ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.pangaea.de/tools/latest-datasets.rss", "syndicationType": "RSS"} Pangaea is covered by Clarivate Data Citation Index. is covered by Elsevier. Data of World Data Center for Marine Environmental Sciences (WDC-MARE) are available via the data library PANGAEA which will be operated as a regular member of the World Data System - WDS . Furthermore, an R package to interact with Pangaea's database and working with its OAI-PMH service is available: https://cran.r-project.org/web/packages/pangaear/index.html 2012-07-16 2021-09-03 +r3d100010135 Karlsruhe Astrophysical Database of Nucleosynthesis in Stars eng [{"additionalName": "KADoNIS", "additionalNameLanguage": "eng"}] https://kadonis.org/ [] ["https://kadonis.org/contact.php", "reifarth@physik.uni-frankfurt.de"] KADoNiS-p database: The KADoNiS project is an online database for cross sections relevant to the s-process and p-process (γ-process). The present p-process library includes all available experimental data from (p,γ), (p,n), (α,γ), (α,n), and (α,p) reactions between 70Ge and 209Bi in or close to the respective Gamow window. eng ["disciplinary"] {"size": "357 isotopes", "updatedp": "2020-12-03"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://kadonis.org/faq.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Gamow window", "Karlsruhe nuclide chart", "Maxwellian-Averaged cross section", "accelerator", "heavy ion", "ion beam", "isotopes", "nuclear physics", "nucleosynthesis", "stellar enhancement factors", "tumor therapy"] [{"institutionName": "Goethe Universit\u00e4t Frankfurt, Experimentelle Astrophysik", "institutionAdditionalName": ["Goethe Universit\u00e4t Frankfurt, Experimental Astrophysics"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://exp-astro.physik.uni-frankfurt.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["reifarth@physik.uni-frankfurt.de"]}, {"institutionName": "Hungarian Academy of Sciences, Institute of Nuclear Research, Nuclear Astrophysics Group", "institutionAdditionalName": ["A Magyar Tudom\u00e1nyos Akad\u00e9mia Atommagkutat\u00f3 Int\u00e9zete, Nukle\u00e1ris Asztrofizikai Csoport", "ATOMKI"], "institutionCountry": "HUN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://w3.atomki.hu/atomki/IonBeam/nag/index_en.html", "institutionIdentifier": ["ROR:006vxbq87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fulop@atomki.hu", "tszucs@atomki.hu"]}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "TRIUMF", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.triumf.ca/", "institutionIdentifier": ["ROR:03kgj4539"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://astro.triumf.ca/people/iris-dillmann"]}] [{"policyName": "KADoNiS-p database", "policyURL": "https://kadonis.org/pprocess/index.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://kadonis.org/"}] closed [] ["unknown"] yes {} ["none"] https://kadonis.org/ [] unknown yes [] [] {} The "Karlsruhe Astrophysical Database of Nucleosynthesis in Stars" (KADoNiS) is an online database which was started in 2005 by Iris Dillmann and Ralf Plag at the Forschungszentrum Karlsruhe; The basis of the new p-process database is the Experimental Nuclear Reaction Data (EXFOR) database https://www-nds.iaea.org/exfor/exfor.htm Version 0.3 - online since August 28th, 2009. 2013-04-30 2021-04-21 +r3d100010136 World Data System eng [{"additionalName": "International Council for Science World Data System", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: ICSU World Data System", "additionalNameLanguage": "eng"}] https://www.worlddatasystem.org/ [] [] The Prototype Data Portal allows to retrieve Data from World Data System (WDS) members. WDS ensures the long-term stewardship and provision of quality-assessed data and data services to the international science community and other stakeholders eng ["other"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.worlddatasystem.org/organization/intro-to-wds [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "computer sciences", "earth sciences", "economics", "geodesy", "health sciences", "meteorology", "multidisciplinary", "space sciences"] [{"institutionName": "International Science Council", "institutionAdditionalName": ["ISC", "formerly: ICSU", "formerly: International Council of Science"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://council.science/", "institutionIdentifier": ["ROR:005vhrs19"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["secretariat@council.science"]}, {"institutionName": "International Science Council, World Data System International Programme Office", "institutionAdditionalName": ["WDS-IPO"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/organization/international-programme-office", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://www.worlddatasystem.org/contact-info", "ipo@icsu-wds.org"]}, {"institutionName": "National Institute of Information and Communications Technology", "institutionAdditionalName": ["NICT"], "institutionCountry": "JPN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nict.go.jp/en/index.html", "institutionIdentifier": ["ROR:016bgq349"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://www.nict.go.jp/en/contact.html"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution & Bylaws", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/deed.en_GB"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] [] {} ["DOI"] [] unknown unknown [] [] {} The prototype of the Data Portal is hosted by PANGAEA. The ICSU World Data System (WDS) was created by the 29th General Assembly of the International Council for Science (ICSU) and builds on the 50-year legacy of the former ICSU World Data Centres (WDCs) and former Federation of Astronomical and Geophysical data-analysis Services (FAGS) 2013-06-17 2021-04-21 +r3d100010137 PRoteomics IDEntifications Database eng [{"additionalName": "PRIDE", "additionalNameLanguage": "eng"}] https://wwwdev.ebi.ac.uk/pride/ ["FAIRsharing_doi:10.25504/FAIRsharing.e1byny", "MIR:00100094", "OMICS_02456", "RRID:SCR_003411", "RRID:nif-0000-03336"] [] The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository for proteomics data, including protein and peptide identifications, post-translational modifications and supporting spectral evidence. PRIDE encourages and welcomes direct user submissions of mass spectrometry data to be published in peer-reviewed publications. eng ["disciplinary"] {"size": "13.226 datasets", "updatedp": "2021-04-21"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "30401 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://wwwdev.ebi.ac.uk/pride/markdownpage/citationpage [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["amino acids", "mass spectra", "mass spectrometry", "peptide identifications", "protein identifications", "proteomics", "sequencing"] [{"institutionName": "BBSRC", "institutionAdditionalName": ["Biotechnology and Biological Sciences Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Wellcome trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "Submission Guidelines", "dataUploadLicenseURL": "https://www.ebi.ac.uk/pride/markdownpage/submitdatapage"}] ["other"] yes {"api": "ftp://ftp.pride.ebi.ac.uk/pride/data/archive", "apiType": "FTP"} ["DOI"] https://wwwdev.ebi.ac.uk/pride/markdownpage/citationpage [] unknown yes [] [] {} PRIDE is covered by Thomson Reuters Data Citation Index. Project information is hosted at google code; PRIDE is a core member of the ProteomExchange consortium. All PRIDE public datasets can also be searched in ProteomeCentral, the portal for all ProteomeXchange datasets. 2013-06-24 2021-11-09 +r3d100010138 Australian Data Archive eng [{"additionalName": "ADA Dataverse", "additionalNameLanguage": "eng"}] https://ada.edu.au/ ["FAIRsharing_DOI:10.25504/FAIRsharing.sN8d9i", "RRID:SCR_014706"] ["ada@anu.edu.au"] The Australian Data Archive (ADA) provides a national service for the collection and preservation of digital research data and to make these data available for secondary analysis by academic researchers and other users. Data are stored in seven sub-archives: Social Science, Historical, Indigenous, Longitudinal, Qualitative, Crime & Justice and International. Along with Australian data, ADA International is also a repository for studies by Australian researchers conducted in other countries, particularly throughout the Asia-Pacific region. The ADA International data catalogue includes links to studies from countries including New Zealand, Bangladesh, Cambodia, China, Indonesia, and several other countries. In 2017 the archive systems moved from the existing Nesstar platform to the new ADA Dataverse platform https://dataverse.ada.edu.au/ eng ["other"] {"size": "144 Dataverses; 1.577 Datasets; 12.601 files", "updatedp": "2021-04-21"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10602 Asian Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ada.edu.au/about-ada/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aborigines", "ageing", "census", "colonial", "family", "geospatial visualisation", "household", "immigrants", "indigenous", "microdata", "population"] [{"institutionName": "Australian National University", "institutionAdditionalName": ["ANU"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.anu.edu.au/", "institutionIdentifier": ["ROR:019wvm592", "RRID:SCR_001086", "RRID:nlx_23045"], "responsibilityStartDate": "1981", "responsibilityEndDate": "", "institutionContact": ["ada@anu.edu.au"]}, {"institutionName": "University of Melbourne", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unimelb.edu.au/", "institutionIdentifier": ["ROR:01ej9dk98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Queensland", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Technology Sydney", "institutionAdditionalName": ["UTS"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uts.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Western Australia", "institutionAdditionalName": ["UWA"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uwa.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessing data from Australian Data Archive", "policyURL": "https://ada.edu.au/accessing-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ada.edu.au/accessing-data/"}] restricted [{"dataUploadLicenseName": "Depositing Data with the Australian Data Archive", "dataUploadLicenseURL": "https://ada.edu.au/depositing-data/"}] ["DataVerse"] yes {} ["DOI"] https://ada.edu.au/accessing-data/ ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} ADA is covered by Thomson Reuters Data Citation Index. Australian Data Archive is a regular member of the ICSU World Data System - WDS. The archive is provided by a consortium of leading national Australian universities, managed by the Australian National University (ANU) and including nodes around Australia, at the University of Melbourne, University of Queensland, University of Technology Sydney and University of Western Australia. Includes Australian Social Science Data Archive. ADA was established at the ANU in 1981 under the original title of the Social Science Data Archive, with a brief to provide a national service for the collection and preservation of computer readable data relating to social, political and economic affairs and to make these data available for further analysis. 2013-06-25 2021-11-16 +r3d100010139 Hamburger Zentrum für Sprachkorpora Korpus Repositorium deu [{"additionalName": "HZSK Repository", "additionalNameLanguage": "deu"}, {"additionalName": "Hamburg Centre for Speech Corpora Digital Repository", "additionalNameLanguage": "eng"}] https://corpora.uni-hamburg.de/hzsk/en/repository-search [] ["corpora AT uni-hamburg.de"] The repository of the Hamburg Centre for Speech Corpora is used for archiving, maintenance, distribution and development of spoken language corpora. These usually consist of audio and / or video recordings, transcriptions and other data and structured metadata. The corpora treat the focus on multilingualism and are generally freely available for research and teaching. Most of the measures maintained by the HZSK corpora were created in the years 2000-2011 in the framework of the SFB 538 "Multilingualism" at the University of Hamburg. The HZSK however also strives to take linguistic data from other projects or contexts, and to provide also the scientific community for research and teaching are available, provided that they are compatible with the current focus of HZSK, ie especially spoken language and multilingualism. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://corpora.uni-hamburg.de/pdf/Satzung.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["VLO", "Virtual Language Observatory", "legacy data", "multilingualism", "spoken language corpora", "transcriptions"] [{"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure-D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure-EU"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Hamburg, Hamburger Zentrum f\u00fcr Sprachkorpora", "institutionAdditionalName": ["hzsk"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://corpora.uni-hamburg.de/hzsk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://corpora.uni-hamburg.de/hzsk/de/kontakt"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/02/HZSK-Repository.pdf"}, {"policyName": "Satzung", "policyURL": "https://corpora.uni-hamburg.de/pdf/Satzung.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://corpora.uni-hamburg.de/hzsk/en/corpus-enquiries-licenses"}] restricted [{"dataUploadLicenseName": "Korpushosting", "dataUploadLicenseURL": "https://corpora.uni-hamburg.de/hzsk/de/korpushosting"}] ["Fedora"] yes {"api": "http://corpora.uni-hamburg.de:8080/oai/provider", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://corpora.uni-hamburg.de/hzsk/rss.xml", "syndicationType": "RSS"} The HZSK is a B-center in CLARIN-D; In addition to the Hamburg Center for Speech Corpora eight more data centers in Germany are involved in the CLARIN network, including the Institute for German Language in Mannheim (IDS) and the Berlin-Brandenburg Academy of Sciences and Humanities (BBAW). The data centers each operate independently, but are linked together in the CLARIN infrastructure. HZSK Corpora can be accessed by VLO- Virtual Language Observatory https://vlo.clarin.eu/ (search:HZSK) 2013-08-21 2021-04-22 +r3d100010140 CLAPOP eng [{"additionalName": "The Dutch CLARIN Portal Pages", "additionalNameLanguage": "eng"}] https://portal.clarin.nl/ [] ["https://portal.clarin.nl/contact"] CLAPOP is the portal of the Dutch CLARIN community. It brings together all relevant resources that were created within the CLARIN NL project and that now are part of the CLARIN NL infrastructure or that were created by other projects but are essential for the functioning of the CLARIN (NL) infrastructure. CLARIN-NL has closely cooperated with CLARIN Flanders in a number of projects. The common results of this cooperation and the results of this cooperation created by CLARIN Flanders are included here as well. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.clarin.nl/node/3 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["corpora", "cross-media", "dialect", "dictionary", "language", "multilingual", "songs", "transcription", "typology"] [{"institutionName": "CLARIAH", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Netherlands"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarinnl@uu.nl", "https://www.clarin.nl/contact", "j.odijk@uu.nl"]}, {"institutionName": "Utrecht Institute of Linguistics", "institutionAdditionalName": ["Onderzoeksinstituut voor Taal en Spraak", "UIL-OTS"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uu.nl/en/research/utrecht-institute-of-linguistics-ots", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarinnl@uu.nl"]}] [{"policyName": "CLARIN-NL Data Curation Service", "policyURL": "https://www.clarin.nl/sites/default/files/CLARIN_DCS_pilot.pdf"}, {"policyName": "CLARIN\u2010NL Samenwerkingsovereenkomst", "policyURL": "https://www.clarin.nl/sites/default/files/restore/Consortiumovereenkomst_0.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] {} ["hdl"] [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} CLARIN-NL is a consortium of Dutch Data Centres in the European framework of CLARIN ERIC. The Dutch members are: MPI for Psycholinguistics, Huygens Instituut, Instituut voor Nederlandse Lexicologie (INL), Data Archiving and Networked Services (DANS) and Meertens Instituut (MI) 2013-09-05 2021-05-25 +r3d100010141 GAWSIS eng [{"additionalName": "GAW Station Information System", "additionalNameLanguage": "eng"}] https://gawsis.meteoswiss.ch/GAWSIS//index.html#/ [] [] GAWSIS is being developed and maintained by the Federal Office of Meteorology and Climatology MeteoSwiss in collaboration with the WMO GAW Secretariat, the GAW World Data Centres and other GAW representatives to improve the management of information about the GAW network of ground-based stations. The application is presently hosted by the Swiss Laboratories for Materials Testing and Research Empa. GAWSIS provides the GAW community and other interested people with an up-to-date, searchable data base of site descriptions, measurements programs and data available, contact people, bibliographic references. Linked data collections are hosted at the World Data Centers of the WMO Global Atmosphere Watch. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://community.wmo.int/activity-areas/gaw [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GAW station identifier", "GAW stations", "GAWID", "audits", "climate change", "quality assurance"] [{"institutionName": "EMPA", "institutionAdditionalName": ["Swiss Laboratories for Materials Testing and Research", "Swiss Laboratories for Materials Testing and Research Empa"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.empa.ch/web/empa", "institutionIdentifier": ["ROR:02x681a42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brigitte.buchmann@empa.ch"]}, {"institutionName": "Federal Office of Meteorology and Climatology MeteoSwiss", "institutionAdditionalName": ["Eidgen\u00f6ssisches Departement des Innern, Bundesamt f\u00fcr Meteorologie und Klimatologie MeteoSchweiz"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.meteoswiss.admin.ch/home.html?tab=overview", "institutionIdentifier": ["ROR:03wbkx358"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.meteoswiss.admin.ch/home/about-us/contact.html"]}, {"institutionName": "World Meteorological Organization, Global Atmosphere Watch", "institutionAdditionalName": ["WMO-GAW"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://community.wmo.int/activity-areas/gaw", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "WMO Global Atmosphere Watch (GAW) Strategic Plan: 2008-2015 - a contribution to the Implementation of the WMO Strategic Plan: 2008-2011", "policyURL": "https://library.wmo.int/index.php?lvl=notice_display&id=10473#.YIj-rudCQ2w"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://public.wmo.int/en/copyright"}] restricted [{"dataUploadLicenseName": "WMO Global Atmosphere Watch (GAW) Strategic Plan", "dataUploadLicenseURL": "https://library.wmo.int/index.php?lvl=notice_display&id=10473#.YIj-rudCQ2w"}] ["unknown"] {"api": "https://github.com/wmo-im/docs/blob/master/XML%20station%20representation%20in%20OSCAR.ipynb", "apiType": "REST"} ["other"] https://gawsis.meteoswiss.ch/GAWSIS//index.html#/faq/ [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Currently GAW coordinates activities and data from 29 Global stations, more than 400 Regional stations, and around 100 Contributing stations operated by Contributing networks. More than 80 countries actively host GAW stations 2013-08-29 2021-04-28 +r3d100010142 FAIRsharing eng [{"additionalName": "formerly: biosharing", "additionalNameLanguage": "eng"}] https://fairsharing.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.2abjs5", "MIR:00100463", "OMICS_17902", "RRID:SCR_004177", "RRID:nlx_143602"] ["contact@fairsharing.org"] FAIRsharing is a web-based, searchable portal of three interlinked registries, containing both in-house and crowdsourced manually curated descriptions of standards, databases and data policies, combined with an integrated view across all three types of resource. By registering your resource on FAIRsharing, you not only gain credit for your work, but you increase its visibility outside of your direct domain, so reducing the potential for unnecessary reinvention and proliferation of standards and databases. eng ["other"] {"size": "1.761 databases; 1.535 standards; 140 policies", "updatedp": "2021-04-28"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://fairsharing.org/educational/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["data management policies", "data preservation policies", "gene expression", "genetics", "multidisciplinary", "ontology", "sharing policies", "standards"] [{"institutionName": "ELIXIR-UK", "institutionAdditionalName": ["ELIXIR UK Node"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://elixiruknode.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "FAIRsharing Adopters and Collaborators", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://fairsharing.org/communities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["susanna-assunta.sansone@oerc.ox.ac.uk"]}, {"institutionName": "The FAIRsharing Team", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://fairsharing.org/communities#team", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["susanna-assunta.sansone@oerc.ox.ac.uk"]}, {"institutionName": "University of Oxford e-Research Centre", "institutionAdditionalName": ["Oxford e-Research Centre"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oerc.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["susanna-assunta.sansone@oerc.ox.ac.uk"]}] [{"policyName": "Access to and citation of our code and content", "policyURL": "https://fairsharing.org/educational/#faq10-1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] ["other"] yes {"api": "https://fairsharing.org/api", "apiType": "REST"} ["other"] https://fairsharing.org/educational/#faq10-2 [] unknown yes [] [] {} is covered by Elsevier. From our first incarnation, BioSharing.org, which focussed on the life sciences, we are growing into FAIRsharing.org, to serve users across all disciplines. All FAIRsharing records have a unique, persistent identifier, which can be used for citation purpose. These are as follows: Databases: biobdcore-123456, Standards: bsg-s123456, Policies: bsg-p123456, Collections and Recommendations: bsg-c123456 2013-08-29 2021-09-02 +r3d100010143 National Space Science Data Center eng [{"additionalName": "NSSDC", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center for Space Science", "additionalNameLanguage": "eng"}, {"additionalName": "\u56fd\u5bb6\u7a7a\u95f4\u79d1\u5b66\u6570\u636e\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] https://www.nssdc.ac.cn/eng/ ["FAIRsharing_DOI:10.25504/FAIRsharing.snAELz"] ["nssdc_service@nssc.ac.cn"] NSSDC is the nation-level space science data center which recognized by the Ministry of Science and Technology of China. As a repository for space science data, NSSDC assumes the responsibility of the long-term stewardship and offering a reliable service of space science data in China. It also has been the Chinese center for space science of the World Data Center (WDC) since 1988. In 2013, NSSDC became a regular member of World Data System. Data resources are concentrated in the following fields of space physics and space environment, space astronomy, lunar and planetary science, space application and engineering. In space physics, the NSSDC maintains space-based observation data and ground-based observation data of the middle and upper atmosphere, ionosphere and earth surface, from Geo-space Double Star Exploration Program and Meridian Project. In space astronomy, NSSDC archived pointed observation data of Hard X-ray Modulation Telescope. In lunar and planetary science, space application and engineering, NSSDC also collects detection data of Chang’E from Lunar Exploration Program and science products of BeiDou satellites. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.nssdc.ac.cn/eng/about_us.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "cosmic rays", "interplanetary", "ionosphere", "lunar and planetary science", "space application and engineering", "space astronomy", "space physics and space environment", "space science", "space weather"] [{"institutionName": "Ministry of Science and Technology of the People's Republic of China", "institutionAdditionalName": ["MOST"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.most.gov.cn/eng/eng/index.htm", "institutionIdentifier": ["ROR:027s68j25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Space Science Center of the Chinese Academy of Sciences (CAS)", "institutionAdditionalName": ["CAS", "NSSC"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://english.nssc.cas.cn/", "institutionIdentifier": ["ROR:02nnijtm50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@nssc.ac.cn"]}] [{"policyName": "China Open Science and Open Data Mandate", "policyURL": "https://www.enago.com/academy/china-open-science-open-data-manadate-released/"}, {"policyName": "CoreTrustSeal assessment NSSDC", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/10/Chinese-National-Space-Science-Data-Center.pdf"}, {"policyName": "NSSDC Measures for Data Management and Open Sharing", "policyURL": "https://www.nssdc.ac.cn/eng/file/NSSDC%20Measures%20for%20Data%20Management%20and%20Open%20Sharing-%20ENG.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] [] {} ["DOI"] https://www.nssdc.ac.cn/eng/file/Data%20Introduction%20Document_Sample.pdf [] unknown yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "SPASE Data Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model"}] {} NSSDC (formerly:CSSDC) is a regular member of World Data System. 2013-08-29 2022-01-12 +r3d100010144 World Data Centre for Meteorology, Obninsk eng [{"additionalName": "WDC - Meteorology, Obninsk", "additionalNameLanguage": "eng"}] http://meteo.ru/mcd/ewdcmet.html ["biodbcore-001630"] ["webmaster@meteo.ru"] The World Data Centre for Meteorology is located in Obninsk in the All-Russian Research Institute of Hydrometeorological Information World Data Centre (RIHMI-WDC). The task of the Centre is to collect and disseminate meteorological data and products worldwide and especially in Russia. The information basis of the Centre is updated on regular basis from various sources including the bilateral data exchange with the World Data Centre for Meteorology in Ashville, North Carolina, USA. The data holdings of WDC – Rockets, Satellites and Earth Rotation (WDC RSER) have become, in December 2015, part of the collection of WDC – Meteorology, Obninsk eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://meteo.ru/mcd/ewdcmet.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aerology", "air pollution", "airplane observation", "glaciology", "international polar year", "landWater pollution", "marine meteorology", "meteorological station catalog", "satellite observation", "ship meteorological data"] [{"institutionName": "All-Russian Research Institute of Hydrometeorological Information - World Data Center", "institutionAdditionalName": ["RIHMI-WDC", "\u0412\u041d\u0418\u0418\u0413\u041c\u0418-\u041c\u0426\u0414", "\u0412\u0441\u0435\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0443\u0447\u043d\u043e-\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430 \u0433\u0438\u0434\u0440\u043e\u043c\u0435\u0442\u0435\u043e\u0440\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 - \u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0446\u0435\u043d\u0442\u0440 \u0434\u0430\u043d\u043d\u044b\u0445"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://meteo.ru/english/", "institutionIdentifier": ["ROR:038s1hq41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@meteo.ru"]}, {"institutionName": "World Data System, Russian-Ukrainian Segment", "institutionAdditionalName": ["\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e-\u0423\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438\u0439 \u0441\u0435\u0433\u043c\u0435\u043d\u0442 \u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u0430\u043d\u043d\u044b\u0445"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wdcb.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sep@wdcb.ru"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "World Data System Constitution & Bylaws", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes ["WDS"] [] {} In 2008 World Data Centers in Russia and Ukraine have united in the Russian-Ukrainian segment of the World Data System. WDCs provide a free access of scientific organizations and scientists to data of planetary geophysics and sustainable development. Details of the WDCs in Russia and Ukraine are given on their Web-sites. Three WDCs in Russia carry out the activity, being a part of the All-Russian Research Institute of Hydrometeorological Information - World Data Center (RIHMI-WDC). All these Centers are situated in Obninsk: WDC for Meteorology WDC for Oceanography WDC for Rockets, Satellites and Rotation of the Earth (since 2015 included in WDC Meteorology). 2013-09-03 2021-11-16 +r3d100010145 World Data Centre for Rockets, Satellite and Rotation of the Earth eng [{"additionalName": "WDC RSER", "additionalNameLanguage": "eng"}, {"additionalName": "WDC Rockets", "additionalNameLanguage": "eng"}] http://meteo.ru/mcd/ewdcroc [] ["webmaster@meteo.ru"] !!! December 2015: The All-Russia Research Institute of Hydrometeorological Information – World Data Centre (RIHMI-WDC) has closed down WDC – Rockets, Satellites and Earth Rotation (WDC – RSER) since the topics are no longer its priorities. However, the WDS-SC is extremely pleased to learn that the data holdings of WDC – RSER have now become part of the collection of WDC – Meteorology, Obninsk (WDS Regular Member)!!! The World Data Centre for Rockets, Satellite and Rotation of the Earth is located in Obninsk in the All-Russian Research Institute of Hydrometeorological Information World Data Centre (RIHMI-WDC). The task of the Centre is to collect and disseminate meteorological data and products worldwide and especially in Russia. Data are available from RIHMI-WDC site eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 2015 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aerology", "air pollution", "glaciology", "satellites", "space sciences", "upper atmopshere"] [{"institutionName": "All-Russian Research Institute of Hydrometeorological Information - World Data Center", "institutionAdditionalName": ["RIHMI-WDC", "\u0412\u041d\u0418\u0418\u0413\u041c\u0418-\u041c\u0426\u0414", "\u0412\u0441\u0435\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0433\u043e \u043d\u0430\u0443\u0447\u043d\u043e-\u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430 \u0433\u0438\u0434\u0440\u043e\u043c\u0435\u0442\u0435\u043e\u0440\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 - \u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0446\u0435\u043d\u0442\u0440 \u0434\u0430\u043d\u043d\u044b\u0445"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://meteo.ru/english/", "institutionIdentifier": ["ROR:038s1hq41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@meteo.ru"]}, {"institutionName": "World Data System, Russian-Ukrainian Segment", "institutionAdditionalName": ["\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e-\u0423\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438\u0439 \u0441\u0435\u0433\u043c\u0435\u043d\u0442 \u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u0430\u043d\u043d\u044b\u0445"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wdcb.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sep@wdcb.ru"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} In 2008 World Data Centers in Russia and Ukraine have united in the Russian-Ukrainian segment of the World Data System. WDCs provide a free access of scientific organizations and scientists to data of planetary geophysics and sustainable development. Details of the WDCs in Russia and Ukraine are given on their Web-sites. Three WDCs in Russia carry out the activity, being a part of the All-Russian Research Institute of Hydrometeorological Information - World Data Center (RIHMI-WDC). All these Centers are situated in Obninsk: WDC for Meteorology WDC for Oceanography WDC for Rockets, Satellites and Rotation of the Earth 2013-09-04 2021-08-25 +r3d100010146 Swedish National Data Service eng [{"additionalName": "SND", "additionalNameLanguage": "swe"}, {"additionalName": "Svensk Nationell Datatj\u00e4nst", "additionalNameLanguage": "swe"}] https://snd.gu.se/en ["FAIRsharing_doi:10.25504/FAIRsharing.pn7yxf"] ["https://snd.gu.se/en/contact", "snd@gu.se"] Swedish National Data Service (SND) is a research data infrastructure designed to assist researchers in preserving, maintaining, and disseminating research data in a secure and sustainable manner. The SND Search function makes it easy to find, use, and cite research data from a variety of scientific disciplines. Together with an extensive network of almost 40 Swedish higher education institutions and other research organisations, SND works for increased access to research data, nationally as well as internationally. eng ["other"] {"size": "2.021 studies", "updatedp": "2020-02-21"} 2009 ["eng", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://snd.gu.se/en/about-us [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Gallup archive", "International Social Survey Programme (ISSP)", "Sweden", "Swedish history", "Swedish party programmes", "archaeological GIS data", "archaeology", "demography", "economy", "election manifestos", "epidemiology", "health", "law", "politics", "purchasing habits", "reading habits", "social medicine", "sociology", "statistics"] [{"institutionName": "Swedish National Data Service", "institutionAdditionalName": ["SND", "Svensk Nationell Datatj\u00e4nst"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://snd.gu.se/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://snd.gu.se/en/contact"]}, {"institutionName": "University of Gothenburg", "institutionAdditionalName": ["G\u00f6teborgs Universitet"], "institutionCountry": "SWE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gu.se/", "institutionIdentifier": ["ROR:01tm6cn81", "RRID:SCR_011647", "RRID:nlx_93338"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Vetenskapsradet", "institutionAdditionalName": ["Swedish Research Council"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.vr.se/", "institutionIdentifier": ["ROR:03zttf063", "RRID:SCR_011552", "RRID:nlx_152073"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CODEX rules & guidelines for research", "policyURL": "https://www.vr.se/english/mandates/ethics.html"}, {"policyName": "Data Management", "policyURL": "https://snd.gu.se/en/data-management/data-management-resources"}, {"policyName": "Deposit agreement", "policyURL": "https://snd.gu.se/en/deposit-data/deposit-agreement"}, {"policyName": "Using data via SND", "policyURL": "https://snd.gu.se/en/search-and-order-data/using-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://snd.gu.se/en/find-and-order-data/accessibility-levels-snd"}] restricted [{"dataUploadLicenseName": "Deposit agreement", "dataUploadLicenseURL": "https://snd.gu.se/en/deposit-data/deposit-agreement"}] ["other"] {} ["DOI"] https://snd.gu.se/en/find-and-order-data/research-data-catalogue/accessibility-levels-snd [] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://snd.gu.se/en/news/feed", "syndicationType": "RSS"} SND is a regular ICSU-WDS member. SND is covered by Thomson Reuters Data Citation Index. Swedish National Data Service (SND) is a research data infrastructure that supports accessibility, preservation, and reuse of research data. The SND Search function makes it easy to find, use, and cite research data from a variety of scientific disciplines. SND is present throughout the Swedish research ecology, through an extensive network across closer to 40 higher education institutions and other research organisations. Together, SND and this network form a distributed system of certified research data repositories with the SND main office as a central node. The certification means that SND ensures that research data are managed, stored, and made accessible in a secure and sustainable manner, today and for the future. SND collaborates with various international stakeholders in order to advance global access to research data. SND is governed by a consortium of nine Swedish universities: University of Gothenburg, Chalmers University of Technology, Karolinska Institutet, KTH Royal Institute of Technology, Lund University, Stockholm University, Swedish University of Agricultural Sciences, Umeå University, and Uppsala University. University of Gothenburg is the host university, and subsequently the SND head office is located in Gothenburg. The SND operations are primarily funded by the Swedish Research Council and the consortium universities. 2012-10-24 2021-05-11 +r3d100010147 Repository CLARIN-D Centre Leipzig eng [{"additionalName": "CLARIN-D repository at the University of Leipzig", "additionalNameLanguage": "eng"}, {"additionalName": "Leipzig Corpora Collection", "additionalNameLanguage": "eng"}] https://wortschatz.uni-leipzig.de/en [] ["clarin@informatik.uni-leipzig.de", "wort@informatik.uni-leipzig.de"] The CLARIN­-D repository at the University of Leipzig offers long­term preservation of digital resources, along with their descriptive metadata. The mission of the repository is to ensure the availability and long­term preservation of resources, to preserve knowledge gained in research, to aid the transfer of knowledge into new contexts, and to integrate new methods and resources into university curricula. Among the resources currently available in the Leipzig repository are a set of corpora of the Leipzig Corpora Collection (LCC), based on newspaper, Wikipedia and Web text. Furthermore several REST-based webservices are provided for a variety of different NLP-relevant tasks eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2012 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["NLP", "computational linguistics", "corpora", "language resources", "natural language processing"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin-d.net/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Leipzig, Fakult\u00e4t f\u00fcr Mathematik und Informatik, Institut f\u00fcr Informatik, Abteilung Automatische Sprachverarbeitung", "institutionAdditionalName": ["ASV", "NLP", "University Leipzig, Faculty of Mathematics and Computer Science, Institute of Computer Science, Natural Language Processing Group"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://asv.informatik.uni-leipzig.de/en/?format=html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://asv.informatik.uni-leipzig.de/de/contact"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/02/CLARIN-D-Resource-Center-Leipzig.pdf"}, {"policyName": "Terms of Usage", "policyURL": "https://wortschatz.uni-leipzig.de/en/usage"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wortschatz.uni-leipzig.de/en/usage"}] restricted [] ["Fedora"] {"api": "https://clarinoai.informatik.uni-leipzig.de/oaiprovider/?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] https://wortschatz.uni-leipzig.de/en/documentation/publications [] unknown yes ["CLARIN certificate B", "other"] [] {} The Virtual Language Observatory (VLO) harvests ASV metadata:https://vlo.clarin.eu/?2&q=leipzig 2013-09-04 2021-11-23 +r3d100010148 BABS deu [{"additionalName": "Bibliothekarisches Archivierungs- und Bereitstellungssystem", "additionalNameLanguage": "deu"}, {"additionalName": "Digitale Langzeitarchivierung an der BSB", "additionalNameLanguage": "eng"}, {"additionalName": "Digitale Langzeitarchivierung an der Bayerischen Staatsbibliothek", "additionalNameLanguage": "deu"}, {"additionalName": "Long Term Preservation at the Bavarian State Library-Library Archiving and Access System", "additionalNameLanguage": "eng"}] https://www.babs-muenchen.de/ [] ["https://www.babs-muenchen.de/index.html?c=mitarbeiter&l="] BABS include digital reproductions from the digitization of the Munich Digitisation CenterMunich Digitization Center/Digital Library of the Bavarian State Library including digital reproductions from copyright-free works from the BSB collections created by cooperation partners or service providers, such as digital copies from the The google-ProjectGoogle project; official publications of authorities, departments and agencies of the State of Bavaria according to the "Bavarian State Promulgation 2 December 2008 (Az.: B II 2-480-30)" on the delivery of official publications to libraries, the Promulgation Platform Bavaria (Verkündungsplattform), as well as voluntary deliveries of electronic publications of different (mainly Bavarian scientific) publishing houses and other publishers; scientifically relevant literature (open access publications and websites) of national and international origin in the Areas of Collection Emphasis of the BSB (history including classical studies, Eastern Europe, history of France and Italy, music, library science, book studies and information science) as well as Bavarica; electronic publications produced by the BSB specialist departments, especially those of the Center for Electronic Publishing (ZEP); local/regional/national licensed or purchased electronic publications eng ["disciplinary", "institutional"] {"size": "2.115.339.113 fiiles in total", "updatedp": "2021-01-01"} 2007 ["deu", "eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.digitale-sammlungen.de/en/p/cd0e2957-7654-429c-ae42-fce445c4c54b [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Asia", "Bavarica", "Sinica", "Westphalica", "eastern Europe", "historical maps", "historical newspapers", "near east", "nestor", "orient"] [{"institutionName": "Bayerische StaatsBibliothek", "institutionAdditionalName": ["BSB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bsb-muenchen.de/index.php", "institutionIdentifier": ["ROR:031h71w90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.digitale-sammlungen.de/en/p/5f92d901-8171-49da-9b6c-7201f545e944", "mdz@bsb-muenchen.de"]}, {"institutionName": "Leibniz-Rechenzentrum der Bayerischen Akademie der Wissenschaften", "institutionAdditionalName": ["LRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lrz.de/", "institutionIdentifier": ["ROR:05558nw16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "M\u00fcnchener DigitalisierungsZentrum, Digitale Bibliothek", "institutionAdditionalName": ["Digital Library Department", "MDZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.digitale-sammlungen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mdz@bsb-muenchen.de"]}] [{"policyName": "DFG-Praxisregeln \u201eDigitalisierung\u201c", "policyURL": "https://www.dfg.de/download/pdf/foerderung/programme/lis/praxisregeln_digitalisierung_2009.pdf"}, {"policyName": "Preservation Policy", "policyURL": "https://api.digitale-sammlungen.de/media/stream/11330542-1847-4e79-833f-45bbe9d67361/default.pdf"}, {"policyName": "permission for archiving and delivery (PDF)", "policyURL": "https://api.digitale-sammlungen.de/media/stream/b7fc4e0c-7223-4727-9b2a-f361b8f4a289/default.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://periodika.digitale-sammlungen.de//abwehr/datenschutz.html"}] restricted [] ["unknown"] yes {} ["DOI", "URN"] [] unknown unknown [] [] {"syndication": "https://www.digitale-sammlungen.de/rss/mdz.xml", "syndicationType": "RSS"} Public-Private-Partnership of Bavarian State Library and Google 2013-09-05 2021-04-28 +r3d100010149 Longitudinal Aging Study Amsterdam eng [{"additionalName": "LASA", "additionalNameLanguage": "eng"}] https://www.lasa-vu.nl/index.htm [] ["https://www.lasa-vu.nl/contact/contact.htm"] The Longitudinal Aging Study Amsterdam (LASA) at the VU University and VU University Medical Centre is initiated by the Ministry of Health, Welfare and Sports in 1991 to determine predictors and consequences of ageing. LASA focuses on, physical, emotional, cognitive and social functioning in late life, the connections between these aspects, and the changes that occur in the course of time eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003 ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.lasa-vu.nl/lasa-introduction.htm [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aging research", "blood", "care", "census", "cross-sequential", "demographics", "generic", "longitudinal study", "microdata", "multidisciplinary", "physical", "social", "social gerontology"] [{"institutionName": "Ministry of Health Welfare and Sports, Directorate of Long-Term Care", "institutionAdditionalName": ["Ministerie van Voksgezondheit, Welzijn en Sport"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.government.nl/ministries/ministry-of-health-welfare-and-sport/organisation/dg-long-term-care", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Netherlands Organisation for Scientific Research", "institutionAdditionalName": ["Dutch Research Council", "NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nwo.nl/en/", "institutionIdentifier": ["ROR:04jsz6e67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["r.slobben@nwo.nl"]}, {"institutionName": "VU University Medical Centre, Department of Sociology, Longitudinal Aging Study Amsterdam", "institutionAdditionalName": ["VUMC, LASA", "Vrije Universiteit Amsterdam, medisch centrum, Faculteit der Sociale Wetenschappen"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vumc.com/branch/social-medicine/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["l.stokx@vumc.nl", "lasa@vumc.nl"]}] [{"policyName": "DSA quality guidelines", "policyURL": "https://www.coretrustseal.org/about/history/data-seal-of-approval-synopsis-2008-2018/"}, {"policyName": "Proposal for data-analysis", "policyURL": "https://www.lasa-vu.nl/data/availability_data/availability_data.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.coretrustseal.org/about/history/data-seal-of-approval-synopsis-2008-2018/"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Longitudinal Aging Study Amsterdam is covered by Thomson Reuters Data Citation Index. LASA is carried out in the VU University and VU University Medical Center and was initiated by the Ministry of Health, Welfare and Sports in 1991 to determine predictors and consequences of ageing. LASA focuses on physical, emotional, cognitive and social functioning in late life, the connections between these aspects, and the changes that occur in the course of time. LASA is in the process of making up an agreement with DANS EASY for storage of data 2013-09-05 2021-04-30 +r3d100010150 LISS Panel eng [{"additionalName": "Longitudinal Internet Studies for the Social sciences", "additionalNameLanguage": "eng"}] https://www.lissdata.nl/ [] ["https://www.lissdata.nl/node/27"] The LISS panel (Longitudinal Internet Studies for the Social sciences) is the principal component of the MESS project. It consists of 5000 households, comprising approximately 7500 individuals. The panel is based on a true probability sample of households drawn from the population register by Statistics Netherlands. Households that could not otherwise participate are provided with a computer and Internet connection. In addition to the LISS panel an Immigrant panel was available from October 2010 up until December 2014. This Immigrant panel consisted of around 1,600 households (2,400 individuals) of which 1,100 households (1,700 individuals) were of non-Dutch origin. The data from this panel are still available through the LISS data archive (https://www.dataarchive.lissdata.nl/study_units/view/162). Panel members complete online questionnaires every month of about 15 to 30 minutes in total. They are paid for each completed questionnaire. One member in the household provides the household data and updates this information at regular time intervals. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007-10 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.lissdata.nl/about-panel [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["LISS Core Study", "MESS", "census", "immigrants", "longitudinal study", "microdata"] [{"institutionName": "Netherlands Organisation for Scientific Research", "institutionAdditionalName": ["Dutch Research Council", "NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nwo.nl/en", "institutionIdentifier": ["ROR:04jsz6e67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["r.slobben@nwo.nl"]}, {"institutionName": "Tilburg University, Instituut voor dataverzameling en onderzoek, CentERdata", "institutionAdditionalName": ["TIU, CentERdata", "Tilburg University , Institute for data collection and research, CentERdata"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.centerdata.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["centerdata@uvt.nl", "g.demirel@uvt.nl"]}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/11/20211123-4tu-centre-for-research-data_final.pdf"}, {"policyName": "Data Seal of Approval", "policyURL": "https://www.lissdata.nl/access-data/data-seal-approval-dsa"}, {"policyName": "Preservation and Dissemination Policy of the LISS Data Archive\ndate", "policyURL": "https://www.lissdata.nl/sites/default/files/afbeeldingen/PreservationandDisseminationPolicyoftheLISSDataArchive_1.3.pdf"}, {"policyName": "Rules and conditions", "policyURL": "https://www.lissdata.nl/access-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wetten.overheid.nl/BWBR0001886/2012-01-01"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.lissdata.nl/access-data"}] closed [] ["unknown"] {} ["DOI", "URN"] https://www.lissdata.nl/sites/default/files/bestanden/Reference_LISS_4.0.pdf [] unknown yes ["other", "DSA"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} LISS panel is covered by Thomson Reuters Data Citation Index. The LISS panel is the core element of the MESS project (Measurement and Experimentation in the Social Sciences). This project is devoted to enabling researchers to benefit from existing data, to carry out their own survey or to design a special experiment. Every researcher at a university or research institute in the Netherlands or elsewhere can submit a proposal for a panel throughout the year. We strive to integrate different academic disciplines: besides proposals from economics and the social sciences, we welcome proposals from the medical and biomedical sciences and the behavioral sciences. DSA seal from 23/03/2016 expired 2013-09-05 2022-01-03 +r3d100010151 PAC - Archiving Platform CINES eng [{"additionalName": "Archivage num\u00e9rique p\u00e9renne CINES", "additionalNameLanguage": "fra"}, {"additionalName": "CINES PAC", "additionalNameLanguage": "fra"}, {"additionalName": "Centre Informatique National de l\u2019Enseignement Sup\u00e9rieur Archivage Num\u00e9rique P\u00e9renne", "additionalNameLanguage": "fra"}, {"additionalName": "PAC - Long-term Preservation Platform CINES", "additionalNameLanguage": "eng"}, {"additionalName": "PAC - Plateforme d'Archivage au CINES", "additionalNameLanguage": "fra"}] https://www.cines.fr/en/long-term-preservation/ ["ISSN 2425-8792"] ["svp@cines.fr"] CINES is the French national long-term preservation service provider for Higher Education and Research: more than 20 institutions (universities, librairies, labs) archive their digital heritage at CINES so that it's preserved over time in a secure, dedicated environment. This includes documents such as PhD theses or publications, digitized ancient/rare books, satellite imagery, 3D/vidéos/image galleries, datasets, etc. eng ["institutional", "other"] {"size": "60 terabytes; 1 million AIPs; 20 millions objects archived", "updatedp": "2013-09-06"} 2007 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.cines.fr/en/overview/missions/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Centre Informatique National de l'enseignement Sup\u00e9rieur", "institutionAdditionalName": ["CINES", "National Computing Center for Higher Education"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cines.fr/en/", "institutionIdentifier": ["ROR:00gnrwz95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pac_admin@cines.fr"]}, {"institutionName": "Minist\u00e8re de l'enseigenment Sup\u00e9rieur et de la Recherche, Direction g\u00e9n\u00e9rale de l'enseignement sup\u00e9rieur et de l'insertion professionnelle", "institutionAdditionalName": ["DGESIP"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.enseignementsup-recherche.gouv.fr/cid24149/dgesip.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Minist\u00e8re de l'enseigenment Sup\u00e9rieur et de la Recherche, Direction g\u00e9n\u00e9rale de la Recherche et de l'innovation", "institutionAdditionalName": ["DGRI"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.enseignementsup-recherche.gouv.fr/cid24148/direction-generale-pour-la-recherche-et-l-innovation-d.g.r.i.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Charte de bon usage des ressources informatiques du cines", "policyURL": "https://www.cines.fr/wp-content/uploads/2013/12/CHARTE0911201.pdf"}, {"policyName": "Implementation of the Data Seal of Approval", "policyURL": "https://assessment.datasealofapproval.org/assessment_34/seal/pdf/"}, {"policyName": "RENATER", "policyURL": "http://www.renater.fr/sites/default/files/2019-02/Charte%20deontologique%20RENATER-EN.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cines.fr/wp-content/uploads/2014/06/CHARTE0911201.pdf"}] restricted [{"dataUploadLicenseName": "Long term preservation concept", "dataUploadLicenseURL": "https://www.cines.fr/en/long-term-preservation/a-concept-problems-2/long-term-preservation-concept/"}] ["unknown"] yes {"api": "https://facile.cines.fr/", "apiType": "REST"} ["ARK"] [] unknown yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.cines.fr/feed/", "syndicationType": "other"} From this observation, and basing oneself on its expertise in the long-term archiving (Project PAC), CINES initiated the project ISAAC (Scientific Information Archived At CINES). This project aims to provide to the higher education and research community, an electronic archiving service specific to scientific data. The retention period is 3 to 5 years (medium-term conservation). Isaac is an overall project. It in fact includes all steps of the implementation of a classic IT project (from the definition of functional and technical specifications to their implementation on a production platform), but it also aims to implement an administrative structured organization, involving different actors (researchers, experts in scientific fields, representatives of CINES). 2013-09-06 2020-08-27 +r3d100010152 CLARIN repository at the University of Tübingen eng [{"additionalName": "CLARIN Center T\u00fcbingen", "additionalNameLanguage": "eng"}, {"additionalName": "sfs CLARIN Center T\u00fcbingen", "additionalNameLanguage": "eng"}] https://uni-tuebingen.de/en/134314 [] ["clarin-repository@sfs.uni-tuebingen.de", "https://uni-tuebingen.de/en/contact/"] The repository is part of the eScience infrastructure of the University of Tübingen, which is a core facility that strongly cooperates with the library and computing center of the university. Integration of the repository into the national CLARIN-D and international CLARIN infrastructures gives it wide exposure, increasing the likelihood that the resources will be used and further developed beyond the lifetime of the projects in which they were developed. Among the resources currently available in the Tübingen Center Repository, researchers can find widely used treebanks of German (e.g. TüBa-D/Z), the German wordnet (GermaNet), the first manually annotated digital treebank (Index Thomisticus), as well as descriptions of the tools used by the WebLicht ecosystem for natural language processing. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://uni-tuebingen.de/en/134314 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Index Thomisticus", "Stuttgart-T\u00fcbingen tagset", "Thomas von Aquin", "corpora", "german newspaper", "german treebanks", "lexica", "philology", "spoken English", "spontaneous speech", "textual humanities"] [{"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin-feedback@sfs.uni-tuebingen.de", "https://www.clarin-d.net/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin@clarin.eu", "https://www.clarin.eu/contact"]}, {"institutionName": "Eberhard Karls Universit\u00e4t T\u00fcbingen, Philosophische Fakult\u00e4t, Seminar f\u00fcr Sprachwissenschaft", "institutionAdditionalName": ["sfs"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.meineuni.de/uni/eberhard-karls-universitaet-tuebingen/studium/allgemeine-sprachwissenschaft/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CLARIN Centre B assessment procedure", "policyURL": "https://www.clarin.eu/content/assessment-procedure"}, {"policyName": "CoreTrustSeal Assessment Information", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/03/T%C3%BCbingen-CLARIN-D-Repository.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://uni-tuebingen.de/en/134320"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.eu/content/clarin-licensing-framework"}] restricted [{"dataUploadLicenseName": "Depositing Agreement", "dataUploadLicenseURL": "http://www.sfs.uni-tuebingen.de/fileadmin/user_upload/ascl/Deposition_CLARIN_Tuebingen_informative_english.pdf"}] ["Fedora"] yes {"api": "https://talar.sfb833.uni-tuebingen.de:8443/erdora/rest/oai", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The metadata is publicly accessible via the CLARIN Virtual Language Observatory (VLO) https://vlo.clarin.eu/;jsessionid=1E5298773005B1043E1A968572699B94?0 CLARIN-D is developing a digital infrastructure for language-centered research in the social sciences and humanities. The main function of the service centers in CLARIN-D is to provide relevant, useful data and tools in an integrated, interoperable and scalable way. CLARIN-D will roll this infrastructure out in close collaboration with expert scholars in the humanities and social sciences, to ensure that it meets the needs of users in a systematic and easily accessible way. CLARIN-D is building on the achievements of the preparatory phase of the European CLARIN initiative as well as CLARIN-D's Germany-specific predecessor project D-SPIN. Tübingen, as coordinator of the CLARIN-D project, participates in nearly all aspects of the project. 2013-09-06 2021-11-23 +r3d100010153 VegBank eng [{"additionalName": "The Vegetation Plot Archive Project", "additionalNameLanguage": "eng"}] http://vegbank.org/vegbank/index.jsp [] ["help@vegbank.org", "http://vegbank.org/vegbank/general/contact.html"] VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification. VegBank consists of three linked databases that contain the actual plot records, vegetation types recognized in the U.S. National Vegetation Classification and other vegetation types submitted by users, and all plant taxa recognized by ITIS/USDA as well as all other plant taxa recorded in plot records. Vegetation records, community types and plant taxa may be submitted to VegBank and may be subsequently searched, viewed, annotated, revised, interpreted, downloaded, and cited. VegBank receives its data from the VegBank community of users. eng ["disciplinary"] {"size": "108.062 plots; 293.165 plant concepts; 26.433 community concepts", "updatedp": "2017-03-13"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://vegbank.org/vegbank/general/info.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["biodiversity", "botany", "ecology", "plant communities", "plant taxa", "plot data", "vegetation mapping", "vegetation monitoring", "vegetation records"] [{"institutionName": "Ecological Society of America, Panel on Vegetation Classification", "institutionAdditionalName": ["esa Panel on Vegetation Classification"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://vegbank.org/vegdocs/panel/panel.html", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["http://vegbank.org/vegbank/general/contact.html"]}, {"institutionName": "National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NatureServe", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.natureserve.org/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Federal Geographic Data Committee", "institutionAdditionalName": ["FGDC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fgdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/funding/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for Describing Associations and Alliances of the U.S. National Vegetation Classification", "policyURL": "http://vegbank.org/vegdocs/panel/standards.html"}, {"policyName": "Privacy policy", "policyURL": "http://vegbank.org/vegbank/forms/getHelp.jsp"}, {"policyName": "VegBank Use Policy - Intellectual property rights and disclaimers", "policyURL": "http://vegbank.org/vegbank/general/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://vegbank.org/vegbank/general/terms.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://vegbank.org/vegbank/general/terms.html"}] restricted [{"dataUploadLicenseName": "Intellectual property rights and disclaimers", "dataUploadLicenseURL": "http://vegbank.org/vegbank/general/terms.html"}] ["unknown"] no {"api": "http://vegbank.org/vegdocs/vegbranch/vegbranch.html", "apiType": "other"} ["none"] http://vegbank.org/vegbank/general/cite.html [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2012-10-25 2021-07-30 +r3d100010154 VENUS in the Salish Sea eng [{"additionalName": "VENUS", "additionalNameLanguage": "eng"}, {"additionalName": "Victoria Experimental Network Under the Sea", "additionalNameLanguage": "eng"}] http://dmas.uvic.ca/home?TREETYPE=1&LOCATION=233&TIMECONFIG=0 [] ["info@oceannetworks.ca"] >>>!!!<<>>!!!<<< VENUS is a cabled undersea laboratory for ocean researchers and explorers. VENUS delivers real time information from seafloor instruments via fibre optic cables to the University of Victoria, BC. You can see ocean data live, recent and archived as well as learn more about on-going research eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.oceannetworks.ca/observatories/pacific/strait-georgia [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["acoustic monitoring of air-sea interactions", "benthic ecology", "coastal network", "deep water renewal", "delta slope stability", "estuary circulation", "fish tracking", "marine mammal communications", "meteorological sensors", "observatory system", "ocean observatory", "ocean research", "oceanic sensors", "river plume dynamics", "seafloor", "sediment transport and bedform dynamics", "tides and ocean mixing", "undersea laboratory", "zooplankton dynamics"] [{"institutionName": "British Columbia Government, British Columbia Knowledge Development Fund", "institutionAdditionalName": ["BCKDF"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/governments/about-the-bc-government/technology-innovation/bckdf", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "INNOVATION.CA", "institutionAdditionalName": ["CFI", "Canada Foundation for Innovation", "Fondation Canadienne pour l'innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ocean Networks Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.oceannetworks.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.oceannetworks.ca/about-us/contact-us"]}] [{"policyName": "Data Access Policy", "policyURL": "http://www.oceannetworks.ca/data-tools/data-help/data-usage-policy"}, {"policyName": "Legal Notices", "policyURL": "http://www.oceannetworks.ca/legal-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.oceannetworks.ca/legal-notices"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.oceannetworks.ca/legal-notices"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.oceannetworks.ca/data-tools/data-help/data-usage-policy"}] restricted [] ["unknown"] {"api": "http://dap.onc.uvic.ca:8080/erddap/index.html", "apiType": "OpenDAP"} ["none"] http://www.oceannetworks.ca/data-tools/data-help/data-policy/how-cite-us [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://dap.onc.uvic.ca/erddap/rss/currents_1195056.rss", "syndicationType": "RSS"} NEPTUNE Canada ocean network, part of the Ocean Networks Canada Observatory, is a sister facility at ONC Observatory. It is also a cabled network using many of the same concepts and designs. VENUS supports study of the seaways near shore, whereas NEPTUNE Canada is deployed into the deep sea off the west coast of Vancouver Island. Some NEPTUNE Canada experiments are tested first on VENUS; connection and data delivery mechanisms are compatible.Ocean Networks Canada manages two cabled observing “networks” on behalf of the Canadian research community. VENUS operates in the waters of the Salish Sea with a user base (as of February 2011) of about 40 collaborating researchers and over 400 data users worldwide. Registered users have access to the raw data streams from the community science experiments and have the ability to search the DMAS. Depending on the current status of facility funding, a user fee may be charged for downloading data. 2012-10-26 2018-01-12 +r3d100010155 The World Atlas of Language Structures eng [{"additionalName": "The World Atlas of Language Structures online", "additionalNameLanguage": "eng"}, {"additionalName": "WALS", "additionalNameLanguage": "eng"}, {"additionalName": "WALS online", "additionalNameLanguage": "eng"}] http://wals.info/ [] ["http://wals.info/contact", "wals@shh.mpg.de"] The World Atlas of Language Structures (WALS) is a large database of structural (phonological, grammatical, lexical) properties of languages gathered from descriptive materials (such as reference grammars) by a team of 55 authors (many of them the leading authorities on the subject). eng ["disciplinary"] {"size": "192 features; 151 chapters; 76.492 datapoints; 2679 languages", "updatedp": "2015-04-23"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://wals.info/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["geographical language distribution", "grammatical properties of languages", "language spread", "languages worldwide", "lexical properties of languages", "linguistics", "lingustic topology", "phonological properties of languages", "structural lingustic features"] [{"institutionName": "Max Planck Digital Library", "institutionAdditionalName": ["MPDL"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpdl.mpg.de/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["http://colab.mpdl.mpg.de/mediawiki/User:Christina", "http://colab.mpdl.mpg.de/mediawiki/User:Robert"]}, {"institutionName": "Max Planck Institute for Evolutionary Anthropology, Department of Linguistics", "institutionAdditionalName": ["MPI-EVA"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.eva.mpg.de/lingua/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["http://blog.wals.info/contact/", "robert_forkel@eva.mpg.de"]}, {"institutionName": "Max-Planck-Gesellschaft", "institutionAdditionalName": ["MPG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Imprint", "policyURL": "http://wals.info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] yes {"api": "http://wals.info/languoid/oai", "apiType": "OAI-PMH"} ["none"] http://wals.info/ [] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://blog.wals.info/feed/", "syndicationType": "RSS"} WALS is harvested by OLAC. The first version of WALS was published as a book with CD-ROM in 2005 by Oxford University Press. The first online version was published in April 2008. Both are superseeded by the current online version, published in April 2011. WALS Online is a joint effort of the Max Planck Institute for Evolutionary Anthropology and the Max Planck Digital Library. It is a separate publication, edited by Dryer, Matthew S. & Haspelmath, Martin (Munich: Max Planck Digital Library, 2011) ISBN: 978-3-9813099-1-1. The main programmer is Robert Forkel. 2012-11-05 2017-03-27 +r3d100010156 The World Data Center for Remote Sensing of the Atmosphere eng [{"additionalName": "WDC - Remote Sensing of the Atmosphere", "additionalNameLanguage": "deu"}, {"additionalName": "WDC-RSAT", "additionalNameLanguage": "eng"}, {"additionalName": "Weltdatenzentrum f\u00fcr die Fernerkundung der Atmosph\u00e4re", "additionalNameLanguage": "deu"}] https://wdc.dlr.de/ [] ["wdc@dlr.de"] The World Data Center for Remote Sensing of the Atmosphere, WDC-RSAT, offers scientists and the general public free access (in the sense of a “one-stop shop”) to a continuously growing collection of atmosphere-related satellite-based data sets (ranging from raw to value added data), information products and services. Focus is on atmospheric trace gases, aerosols, dynamics, radiation, and cloud physical parameters. Complementary information and data on surface parameters (e.g. vegetation index, surface temperatures) is also provided. This is achieved either by giving access to data stored at the data center or by acting as a portal containing links to other providers. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wdc.dlr.de/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Stratospheric Ozone Monitoring; Solar Energy", "aerosols", "air quality", "air quality forecasting and monitoring", "atmosphere", "bio-energy", "cloud parameters", "clouds", "convention monitoring renewable energies", "dynamics", "hazard early detection", "health", "land surface parameters", "mesopause change", "meteorology", "missions", "remote sensing", "satellite data", "sea surface", "sensors", "solar radiation", "spectroscopy data", "sunburn time", "temperatures", "trace gases", "validation", "virtual lab", "weather"] [{"institutionName": "Deutsches Zentrum fuer Luft- und Raumfahrt e. V.", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Aerospace Center, Earth Observation Center, German Remote Sensing Data Center of the German Aerospace Center", "institutionAdditionalName": ["DFD", "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt, Earth Observation Center, Deutsches Fernerkundungsdatenzentrum", "EOC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5278/8856_read-15911/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5232/"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Meteorological Organization, Global Atmosphere Watch", "institutionAdditionalName": ["GAW", "WMO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://community.wmo.int/activity-areas/gaw", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "German Cluster of WDCs for Earth System Research", "policyURL": "https://wdc.dlr.de/about/verbund.php"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wdc.dlr.de/data_products/data_use_policy.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["DOI"] https://wdc.dlr.de/data_products/data_use_policy.php [] unknown yes ["WDS"] [] {} WDC-RSAT is aiming for regular ICSU-WDS membership . The Letter of Agreement (LoA) is Pending (08.01.2019) WDC-RSAT is the most recent data center in the WMO-WDC family. As part of the family of the ICSU-World Data Services, WDC-RSAT is by definition integrated and linked to other WDC’s worldwide. WDC-RSAT serves as a communication and data management platform for the recently established international and global Network for the Detection of Mesopause Change (NDMC). As part of the family of the ICSU-World Data Services, WDC-RSAT is by definition integrated and linked to other WDC’s worldwide. Especially, the German ICSU WDC’s (WDC-Climate, WDC-Mare, WDC-Terra, and WDC-RSAT) have formed in 2004 the “WDC-Cluster on Earth System Research” in order to promote interdisciplinary research related to Earth sciences. 2012-11-05 2020-09-28 +r3d100010157 USU Institutional Repository eng [{"additionalName": "USU-IR", "additionalNameLanguage": "eng"}, {"additionalName": "University of Sumatera Utara Institutional Repository", "additionalNameLanguage": "eng"}] http://repository.usu.ac.id/ [] [] The USU-IR digital repository system captures, stores, indexes, preserves, and distributes digital research material. eng ["institutional"] {"size": "60.315 items", "updatedp": "2016-12-23"} 2010 ["deu", "eng", "fra", "ind"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://repository.usu.ac.id/?locale=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Sumatera Utara", "institutionAdditionalName": ["Perpustakaan Universitas Sumatera Utara", "USU"], "institutionCountry": "IDN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.usu.ac.id/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["mail@usu.ac.id"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://library.usu.ac.id/"}] restricted [{"dataUploadLicenseName": "Submit", "dataUploadLicenseURL": "http://repository.usu.ac.id/help/index.html#submit"}] ["DSpace"] yes {"api": "http://repository.usu.ac.id/oai/request", "apiType": "OAI-PMH"} ["hdl"] http://repository.usu.ac.id/help/index.html#handles [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://repository.usu.ac.id/feed/atom_1.0/site", "syndicationType": "ATOM"} 2012-12-07 2017-03-28 +r3d100010158 Federal Reserve Economic Data eng [{"additionalName": "FRED", "additionalNameLanguage": "eng"}] https://fred.stlouisfed.org/ [] ["https://fred.stlouisfed.org/contactus/"] FRED is an online database consisting of hundreds of thousands of economic data time series from scores of national, international, public, and private sources. FRED, created and maintained by the Research Department at the Federal Reserve Bank of St. Louis, goes far beyond simply providing data: It combines data with a powerful mix of tools that help the user understand, interact with, display, and disseminate the data. In essence, FRED helps users tell their data stories. eng ["disciplinary"] {"size": "570.000 US and international time series from 87 sources", "updatedp": "2019-08-22"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://fredhelp.stlouisfed.org/fred/about/about-fred/what-is-fred/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["banking", "census", "income", "international trade", "labor markets", "monetary history", "money", "oecd", "price index", "stock exchange trading", "world bank"] [{"institutionName": "Federal Reserve Bank of St. Louis", "institutionAdditionalName": ["St. Louis Fed"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.stlouisfed.org/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://research.stlouisfed.org/contactus/email_fred.php"]}] [{"policyName": "Terms of Use", "policyURL": "https://research.stlouisfed.org/fred_terms.html"}, {"policyName": "legal", "policyURL": "https://research.stlouisfed.org/legal.html"}, {"policyName": "privacy policy", "policyURL": "https://research.stlouisfed.org/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://research.stlouisfed.org/fred_terms.html#property-rights"}, {"dataLicenseName": "other", "dataLicenseURL": "https://research.stlouisfed.org/fred_terms.html#property-rights"}, {"dataLicenseName": "other", "dataLicenseURL": "https://research.stlouisfed.org/research_terms.html"}] restricted [{"dataUploadLicenseName": "submitting content", "dataUploadLicenseURL": "https://research.stlouisfed.org/fred_terms.html#user-content"}] ["unknown"] {"api": "https://research.stlouisfed.org/docs/api/fred/", "apiType": "REST"} ["none"] https://research.stlouisfed.org/fred_terms_faq.html [] unknown yes [] [] {"syndication": "https://research.stlouisfed.org/rss/", "syndicationType": "RSS"} 2012-12-07 2019-08-22 +r3d100010159 NASA Socioeconomic Data and Applications Center eng [{"additionalName": "SEDAC", "additionalNameLanguage": "eng"}] https://sedac.ciesin.columbia.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.4ufVpm"] ["ciesin.info@ciesin.columbia.edu"] SEDAC, the Socioeconomic Data and Applications Center, is one of the Distributed Active Archive Centers (DAACs) in the Earth Observing System Data and Information System (EOSDIS) of the U.S. National Aeronautics and Space Administration. SEDAC is a regular member of the World Data System and focuses on human interactions in the environment. Its mission is to develop and operate applications that support the integration of socioeconomic and Earth science data and to serve as an "Information Gateway" between the Earth and social sciences. eng ["disciplinary"] {"size": "47 data collections; 263 datasets", "updatedp": "2021-11-10"} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://sedac.ciesin.columbia.edu/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "climate", "conservation", "energy infrastructure", "environmental assessment", "environmental health", "environmental indicators", "environmental sciences", "environmental treaties", "global environment", "governance", "hazards", "health", "infrastructure", "land use", "marine and coastal", "population", "poverty", "remote sensing", "socioeconomics", "sustainability", "water"] [{"institutionName": "Columbia University, Earth Institute, Center for International Earth Science Information Network", "institutionAdditionalName": ["CIESIN"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://ciesin.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["http://ciesin.columbia.edu/contact.html"]}, {"institutionName": "National Aeronautics and Space Administration, Earth Observing System Data and Information System", "institutionAdditionalName": ["NASA EOSDIS", "NASA Earth Data"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA web privacy policy", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "Privacy Policy, Copyrights, and Permissions", "policyURL": "https://sedac.ciesin.columbia.edu/privacy"}, {"policyName": "WDC - Data Sharing Principles", "policyURL": "https://www.icsu-wds.org/services/data-sharing-principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sedac.ciesin.columbia.edu/privacy"}] open [] ["Fedora"] yes {} ["DOI"] https://sedac.ciesin.columbia.edu/citations [] yes yes ["WDS"] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://ciesin.columbia.edu/rest/rss/sedacnews", "syndicationType": "RSS"} SEDAC is covered by Thomson Reuters Data Citation Index. This record is combined with 'NASA Socioeconomic Data and Applications Center', see https://www.re3data.org/repository/r3d100010160 The World Data Center for Human Interactions in the Environment has been superseded by the NASA Socioeconomic Data and Applications Center (SEDAC), which is a regular member of the World Data System (WDS). The International Council for Science (ICSU) replaced the World Data Centers (WDC) with the WDS, which supports the provision of trusted scientific data services by certifying its members to ensure that they maintain the organizational capabilities and infrastructure for managing the data products and services that they offer. 2012-12-09 2021-11-10 +r3d100010160 World Data Center for Human Interactions in the Environments eng [{"additionalName": "WDC for Human Interactions in the Environment", "additionalNameLanguage": "eng"}] https://sedac.ciesin.columbia.edu/ [] ["ciesin.info@ciesin.columbia.edu"] >>>!!!<<< duplicate >>>!!!<<< see https://www.re3data.org/repository/r3d100010159 This record is combined with 'NASA Socioeconomic Data and Applications Center' The World Data Center for Human Interactions in the Environment has been superseded by the NASA Socioeconomic Data and Applications Center (SEDAC), which is a regular member of the World Data System (WDS). The International Council for Science (ICSU) replaced the World Data Centers (WDC) with the WDS, which supports the provision of trusted scientific data services by certifying its members to ensure that they maintain the organizational capabilities and infrastructure for managing the data products and services that they offer. SEDAC focuses on human interactions in the environment and is one of the Distributed Active Archive Centers (DAACs) in the NASA Earth Observing System Data and Information System (EOSDIS). The NASA Earth Science Data and Information System (ESDIS) Project, a WDS Network Member, manages the EOSDIS science systems. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate", "conservation", "global environment", "governance", "hazards", "health", "population", "poverty", "socioeconomics", "sustainability"] [{"institutionName": "Columbia University, Earth Institute, Center for International Earth Science Information Networks", "institutionAdditionalName": ["CIESIN"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ciesin.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Socioeconomic Data and Applications Center", "institutionAdditionalName": ["NASA SEDAC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sedac.ciesin.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, National Environmental Satellite, Data, and Information Service, National Geophysical Data Center", "institutionAdditionalName": ["NOAA NESDIS NGDC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "2012", "institutionContact": []}] [{"policyName": "WDC data policy", "policyURL": "https://www.icsu-wds.org/services/data-sharing-principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ciesin.columbia.edu/copyright.html"}] open [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "http://ciesin.columbia.edu/rest/rss/wdcnews", "syndicationType": "RSS"} >>>!!!<<< duplicate >>>!!!<<< see https://www.re3data.org/repository/r3d100010159 The World Data Center for Human Interactions in the Environment is one of 51 data centers of the World Data Center System. We are hosted by the Center for International Earth Science Information Network (CIESIN), a center within The Earth Institute at Columbia University. 2012-12-09 2021-11-10 +r3d100010161 SeSam deu [{"additionalName": "AQiLA", "additionalNameLanguage": "eng"}, {"additionalName": "Senckenberg Sammlungen", "additionalNameLanguage": "deu"}, {"additionalName": "Senckenberg scientific collections", "additionalNameLanguage": "eng"}] http://www.senckenberg.de/root/index.php?page_id=513 [] ["info_sesam@senckenberg.de"] SeSam is an outstanding international collection of recent and fossil animals and plants from all over the world. It also holds an important specialized library. The really substantial data of this collection constitute the basis of every taxonomic-systematical, ecological, biogeographical or biostratigraphical fundamental research as well as every practical environmental research. Because of its historical referencings this collection is also a precious cultural treasure that generates the often expensive heavy mission of its conservation. eng ["institutional"] {"size": "999.750 objects", "updatedp": "2019-05-20"} 1997 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] http://www.senckenberg.de/root/index.php?page_id=2868 [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biogeography", "fossil animals", "fossil plants", "paleobiology", "taxa"] [{"institutionName": "Leibniz-Gemeinschaft", "institutionAdditionalName": ["WGL", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Senckenberg Gesellschaft f\u00fcr Naturforschung", "institutionAdditionalName": ["SGN"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.senckenberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["info_sesam@senckenberg.de"]}] [{"policyName": "Rechte-System", "policyURL": "http://www.senckenberg.de/root/index.php?page_id=1170"}, {"policyName": "legal notice, copyright and disclaimer", "policyURL": "http://www.senckenberg.de/root/index.php?page_id=64"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.senckenberg.de/root/index.php?page_id=1170"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.senckenberg.de/root/index.php?page_id=64"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [] {} Currently we are developing a new database system, called AQUiLA. As a first step we present a new search portal, which allows for full text searches throughout the database. For reasons of data-protection only part of the database is freely accessible. If you need more comprehensive information, please contact the personnel responsible for the respective collection. The AQUiLA search portal is currently under active development. This is true for the functionality as well as for the content of the database. In the current version you can do a full text search by entering a term in the input field. The results of the search can be restricted and made more precise by selecting topics and terms in the left column of the window. https://search.senckenberg.de/aquila-public-search/search?iframe=0&searchTerm=&searchMode=exact&conversationContext=4 (28.3.2017) Under the roof of the Senckenberg Gesellschaft für Naturforschung (SGN), six research institutes and three natural history museums in Germany conduct research in bio- and geoscieces and display science and scientific findings; access to all collections ist possible from the start-page 2012-12-11 2019-05-20 +r3d100010163 SIMBAD Astronomical Database eng [{"additionalName": "Set of Identifications, Measurements, and Bibliography for Astronomical Data", "additionalNameLanguage": "eng"}] http://simbad.u-strasbg.fr/simbad/ ["FAIRsharing_doi:10.25504/FAIRsharing.rd6gxr", "ISSN 2417-8667"] ["cds-question@astro.unistra.fr"] SIMBAD astronomical database is the world reference database for the identification of astronomical objects and provides basic data, cross-identifications, bibliography and measurements for astronomical objects outside the solar system. Using VizieR, the catalogue service for the CDS reference collection of astronomical catalogues and tables published in academic journals and the Aladin interactive software sky atlas for access, visualization and analysis of astronomical images, surveys, catalogues, databases and related data. Simbad bibliographic survey began in 1950 for stars (at least bright stars) and in 1983 for all other objects (outside the solar system) eng ["disciplinary"] {"size": "10.348.979 objects; 34.944.838 identifiers; 357.827 bibliographic references; 19.195.623 citations of objects in papers", "updatedp": "2019-05-15"} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://cdsweb.u-strasbg.fr/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ICRS system", "cross identification", "galaxy", "magnitude", "oberservation", "radial velocities", "redshifts", "spectral type", "star", "wavelength"] [{"institutionName": "Centre National de la recherche scientifique, Institut national des sciences de l'univers", "institutionAdditionalName": ["CNRS INSU"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.insu.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "1972", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre de Donn\u00e9es Astronomiques de Strasbourg, Observatoire astronomique de Strasbourg", "institutionAdditionalName": ["CDS", "Strasbourg Astronomical Data Center, Strasbourg Astronomical Observatory"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cds.u-strasbg.fr/", "institutionIdentifier": [], "responsibilityStartDate": "1972", "responsibilityEndDate": "", "institutionContact": ["cds-question@unistra.fr"]}, {"institutionName": "Universit\u00e9 de Strasbourg", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.unistra.fr/index.php?id=accueil", "institutionIdentifier": [], "responsibilityStartDate": "1972", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AAS Ethics Statement", "policyURL": "http://aas.org/about/policies/aas-ethics-statement"}, {"policyName": "mentions l\u00e9gales", "policyURL": "http://astro.unistra.fr/index.php?page=mentions-legales"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.legifrance.gouv.fr/affichCode.do?cidTexte=LEGITEXT000006069414&dateTexte=20110915"}, {"dataLicenseName": "other", "dataLicenseURL": "http://cds.u-strasbg.fr/vizier-org/licences_vizier.html"}] restricted [{"dataUploadLicenseName": "Annotations", "dataUploadLicenseURL": "http://cdsannotations.u-strasbg.fr/annotations/doc/index.html"}] ["other"] yes {"api": "http://cds.u-strasbg.fr/resources/doku.php?id=soap", "apiType": "SOAP"} ["DOI"] http://simbad.u-strasbg.fr/simbad/#acklab [] unknown yes [] [] {"syndication": "http://cdsweb.u-strasbg.fr/news/rss.php?fn_category=3", "syndicationType": "RSS"} SIMBAD is part of Strasbourg Astronomical Data Center (CDS). CDS is a major actor in the VO with leading roles in European VO projects, the French Virtual Observatory and the International Virtual Observatory Alliance (IVOA). CDS is a member of the World Data System of the International Council for Science ICSU. 2012-12-11 2021-09-03 +r3d100010164 SkyView eng [{"additionalName": "SkyView Virtual Observatory", "additionalNameLanguage": "eng"}, {"additionalName": "The Internet's Virtual Telescope", "additionalNameLanguage": "eng"}] https://skyview.gsfc.nasa.gov/current/cgi/titlepage.pl [] ["https://heasarc.gsfc.nasa.gov/cgi-bin/Feedback?selected=skyview"] SkyView is a Virtual Observatory on the Net generating images of any part of the sky at wavelengths in all regimes from Radio to Gamma-Ray. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["2MASS", "FIRST", "Galex", "SDSS", "SDSS7", "UKIDSS", "WISE"] [{"institutionName": "High Energy Astrophysics Archive Research Center", "institutionAdditionalName": ["HEASARC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://heasarc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://heasarc.gsfc.nasa.gov/cgi-bin/Feedback?selected=skyview"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center, Astrophysics Science Division", "institutionAdditionalName": ["GSFC", "NASA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://science.gsfc.nasa.gov/sed/index.cfm?fuseAction=home.main&&navOrgCode=660", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Smithsonian Astrophysical Observatory, High Energy Astrophyiscs Division", "institutionAdditionalName": ["HEA", "SAO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/hea/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SkyView in a Jar", "policyURL": "https://skyview.gsfc.nasa.gov/current/docs/skyviewinajar.html"}, {"policyName": "Skyview surveys", "policyURL": "https://skyview.gsfc.nasa.gov/current/cgi/survey.pl"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://skyview.gsfc.nasa.gov/current/cgi/survey.pl"}] restricted [] ["unknown"] yes {"api": "https://skyview.gsfc.nasa.gov/jar/skyviewinajar.html", "apiType": "FTP"} ["none"] https://skyview.gsfc.nasa.gov/current/help/faq.html#acknowledge [] unknown yes [] [] {"syndication": "https://skyview.gsfc.nasa.gov/blog/index.php/feed/", "syndicationType": "RSS"} 2012-06-12 2017-03-29 +r3d100010165 St. Lawrence Global Observatory Data eng [{"additionalName": "OGSL.ca", "additionalNameLanguage": "spa"}, {"additionalName": "OGSL.ca", "additionalNameLanguage": "fra"}, {"additionalName": "Observatoire global du Sain-Laurent donn\u00e9es", "additionalNameLanguage": "fra"}, {"additionalName": "Observatorio Global del San-Lorenzo Data", "additionalNameLanguage": "spa"}, {"additionalName": "SLGO.ca", "additionalNameLanguage": "eng"}] https://slgo.ca/en/ [] ["Info@ogsl.ca"] SLGO.ca is positioning itself as being the most complete and diversified SOURCE of scientific data regarding the St. Lawrence's ecosystem. It has done so by clustering and sharing information, data and expertise from government, academic and community agencies. SLGO offers a range of products such as: data visualization applications, data management tools and modelling products able to meet information needs for domains such as public safety, climate change, resource management and biodiversity conservation. Available at SLGO.ca: observations, forecasts, predictions and data archives eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng", "fra", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://slgo.ca/en/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["carbon cycle", "currents and sea ice", "ecosystem modelling", "marine fish", "navigation", "remote sensing", "satellite imagery", "species identification", "toxic phytoplankton", "water levels"] [{"institutionName": "St. Lawrence Global Observatory", "institutionAdditionalName": ["OGSL.ca", "Observatoire global du Saint-Laurent", "Observatorio Global del San-Lorenzo", "SGLO.ca"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://slgo.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://slgo.ca/en/contact.html"]}] [{"policyName": "Data management policies", "policyURL": "https://slgo.ca/en/data-management/sustainability/policies.html"}, {"policyName": "conditions of use", "policyURL": "https://slgo.ca/en/conditions-utilisation.html"}, {"policyName": "info-donnees", "policyURL": "https://slgo.ca/app-sgdo/en/info-donnees/acces-donnees.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://slgo.ca/en/conditions-utilisation.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://slgo.ca/en/conditions-utilisation.html"}] restricted [] ["unknown"] yes {} ["none"] https://slgo.ca/en/conditions-utilisation.html [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2012-12-12 2017-03-29 +r3d100010166 SMOKA Science Archive eng [{"additionalName": "SMOKA", "additionalNameLanguage": "eng"}, {"additionalName": "SMOKA\u306e\u6982\u8981", "additionalNameLanguage": "jpn"}, {"additionalName": "Subaru Mitaka Okayama Kiso Archive", "additionalNameLanguage": "eng"}, {"additionalName": "\u306f \u3059\u3070\u308b \u4e09\u9df9 \u5ca1\u5c71 \u6728\u66fd \u30a2\u30fc\u30ab\u30a4\u30d6\u30b7\u30b9\u30c6\u30e0", "additionalNameLanguage": "jpn"}] https://smoka.nao.ac.jp/index.jsp [] ["https://smoka.nao.ac.jp/about/helpdesk.jsp"] SMOKA provides public science data obtained at Subaru Telescope, 188cm telescope at Okayama Astrophysical Observatory, 105cm Schmidt telescope at Kiso Observatory (University of Tokyo), MITSuME, and KANATA Telescope at Higashi-Hiroshima Observatory. It is intended mainly for astronomical researchers. eng ["disciplinary"] {"size": "16.201.170 total number of frames; 113.539,80 total size GB", "updatedp": "2017-03-29"} 1999-01-04 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://smoka.nao.ac.jp/about/overview.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomy", "astrophysics", "data", "image", "observatory", "telescope"] [{"institutionName": "Astronomical Data Archives Center", "institutionAdditionalName": ["ADAC"], "institutionCountry": "JPN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://dbc.nao.ac.jp/index.html.en", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": ["http://smoka.nao.ac.jp/about/helpdesk.jsp"]}, {"institutionName": "Hiroshima University, Hiroshima Astrophysical Science Center, Higashi-Hiroshima Observatory", "institutionAdditionalName": ["HASC"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://hasc.hiroshima-u.ac.jp/telescope/kanatatel-e.html", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kiso Observatory", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ioa.s.u-tokyo.ac.jp/kisohp/top_e.html", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Astronomical Observatory of Japan", "institutionAdditionalName": ["NAOJ"], "institutionCountry": "JPN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nao.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": ["http://www.nao.ac.jp/en/contact/"]}, {"institutionName": "National Astronomical Observatory of Japan, Okayama Astrophysical Observatory", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.oao.nao.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Subaru Telescope", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://subarutelescope.org/", "institutionIdentifier": [], "responsibilityStartDate": "1999-01-04", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Retrieval Policy", "policyURL": "http://smoka.nao.ac.jp/about/overview.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://smoka.nao.ac.jp/about/overview.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dbc.nao.ac.jp/index.html.en"}] closed [] ["unknown"] yes {"api": "http://smoka.nao.ac.jp/help/help_mail_req.jsp", "apiType": "FTP"} ["none"] http://smoka.nao.ac.jp/about/publish.jsp#acknowledgement [] yes yes [] [] {} 2012-12-12 2021-07-30 +r3d100010167 SourceForge eng [{"additionalName": "Find, create and publish Open Source software for free", "additionalNameLanguage": "eng"}] https://sourceforge.net/ ["biodbcore-001793"] ["https://slashdotmedia.com/contact/", "sfnet_ops@slashdotmedia.com"] SourceForge is dedicated to making open source projects successful. We thrive on community collaboration to help us create the leading resource for open source software development and distribution. IT professionals come to Sourceforge to develop, download, review, and publish open source software. Sourceforge is the largest, most trusted destination for Open Source Software discovery and development on the web. eng ["other"] {"size": "3,7 million developers; 430.000 projects", "updatedp": "2017-03-29"} 2012 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://sourceforge.net/about [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["open source"] [{"institutionName": "DHI Group Inc.", "institutionAdditionalName": ["Dice Holdings, Inc."], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.dhigroupinc.com/home-page/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "Slashdot Media", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://slashdotmedia.com/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["https://slashdotmedia.com/contact/"]}] [{"policyName": "TERMS OF USE AGREEMENT \u2022 SLASHDOT MEDIA", "policyURL": "https://slashdotmedia.com/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://opensource.org/docs/osd"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://opensource.org/docs/osd"}, {"dataLicenseName": "other", "dataLicenseURL": "https://slashdotmedia.com/terms-of-use/"}] restricted [{"dataUploadLicenseName": "Code of Conduct", "dataUploadLicenseURL": "https://slashdotmedia.com/terms-of-use/"}] ["unknown"] {"api": "https://sourceforge.net/p/forge/documentation/Allura%20API/", "apiType": "REST"} ["none"] https://slashdotmedia.com/terms-of-use/ [] unknown no [] [] {"syndication": "https://sourceforge.net/blog/feed/", "syndicationType": "RSS"} SourceForge.net is owned and operated by Slashdot Media. Formerly SourceForge.net was owned and operated by Geeknet Media, a DIH Holdings, Inc. company. 2012-12-14 2021-11-16 +r3d100010168 Space Physics Data Facility eng [{"additionalName": "NASA's Space Physics Data Facility", "additionalNameLanguage": "eng"}, {"additionalName": "SPDF", "additionalNameLanguage": "eng"}] https://spdf.gsfc.nasa.gov/ [] ["gsfc-spdf-support@lists.nasa.gov"] The Space Physics Data Facility (SPDF) leads in the design and implementation of unique multi-mission and multi-disciplinary data services and software to strategically advance NASA's solar-terrestrial program, to extend our science understanding of the structure, physics and dynamics of the Heliosphere of our Sun and to support the science missions of NASA's Heliophysics Great Observatory. Major SPDF efforts include multi-mission data services such as Heliophysics Data Portal (formerly VSPO), CDAWeb and CDAWeb Inside IDL,and OMNIWeb Plus (including COHOWeb, ATMOWeb, HelioWeb and CGM) , science planning and orbit services such as SSCWeb, data tools such as the CDF software and tools, and a range of other science and technology research efforts. The staff supporting SPDF includes scientists and information technology experts. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://spdf.gsfc.nasa.gov/about_spdf.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aurora", "cosmic ray acceleration", "electromagnetic field", "geomagnetic storm", "heliosphere", "magnetosphere", "planetary space", "solar space", "space plasma"] [{"institutionName": "NASA's Goddard Space Flight Center,Sciences and Exploration Directorate, Heliospheric Physics Laboratory", "institutionAdditionalName": ["HSD"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://science.gsfc.nasa.gov/sed/index.cfm?fuseAction=home.main&&navOrgCode=672", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": ["feedback@spdf.gsfc.nasa.gov", "tamara.j.kovalick@nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DATA & ORBIT SERVICES - INFORMATION FOR NEW USERS", "policyURL": "https://spdf.gsfc.nasa.gov/new_users.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/centers/goddard/business/foia/index.html"}] restricted [] ["other"] yes {"api": "https://omniweb.gsfc.nasa.gov/ftpbrowser/", "apiType": "FTP"} ["none"] https://omniweb.gsfc.nasa.gov/html/ow_data.html#10 [] unknown yes [] [] {} NASA’s Heliophysics Science Division at NASA HQs issued a revised Heliophysics Science Data Management Policy in 2009 (see http://hpde.gsfc.nasa.gov/Heliophysics_Data_Policy_2009Apr12.html). This revised policy redefined the Heliophysics role of the National Space Science Data Center (NSSDC) at Goddard to be solely that of a “deep archive” and defined a new role for the Space Physics Data Facility (SPDF) to be one of two “active Final Archives” charged to work with NASA HQs to ensure the long-term accessibility and availability of all important NASA heliophysics data. The SPDF service gateway allows users to access data through a number of different data services while also providing information on which spacecraft are accessible through which service(s) and to which space physics discipline(s) data services and spacecraft belong. 2012-12-14 2017-03-29 +r3d100010169 SumsDB eng [{"additionalName": "Surface management system database", "additionalNameLanguage": "eng"}] http://sumsdb.wustl.edu/sums/index.jsp ["RRID:SCR_002759", "RRID:nif-0000-00016"] [] <> SumsDB (the Surface Management System DataBase) is a repository of brain-mapping data (surfaces & volumes; structural & functional data) from many laboratories. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["brain anatomy", "brain mapping", "cerebellar cortex", "cerebral cortex", "neurobiology", "neuroinformatics", "neurology"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Institute of Mental Health, Human Brain Project", "institutionAdditionalName": ["HBP", "NIH", "NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.nimh.nih.gov/site-info/contact-nimh.shtml"]}, {"institutionName": "National Partnership for Advanced Computational Infrastructure", "institutionAdditionalName": ["NPACI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hipersoft.rice.edu/npaci/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2004", "institutionContact": ["http://www.hipersoft.rice.edu/contact_us/index.htm"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "U.S. National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/default.asp?deptID=28054"]}, {"institutionName": "Washington University in St. Louis, School of Medicine, Van Essen Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://brainvis.wustl.edu/wiki/index.php/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["sums@v1.wustl.edu"]}, {"institutionName": "Washington University, Department of Radiology, Electronic Radiology Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://wuerlim.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["http://www.erl.wustl.edu/aboutus/contact.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/licenses/gpl.txt"}] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://grants.nih.gov/grants/policy/data_sharing/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://grants.nih.gov/grants/policy/data_sharing/data_sharing_guidance.htm"}] restricted [] ["other"] yes {} ["none"] http://brainvis.wustl.edu/wiki/index.php/Sums:Citing [] unknown yes [] [] {} SumsDB is part of Neuroscience Information Framework of National Institutes of Health 2012-12-14 2017-03-30 +r3d100010170 TreeBASE eng [{"additionalName": "a database of phylogenetic knowledge", "additionalNameLanguage": "eng"}] https://treebase.org/treebase-web/home.html ["RRID:SCR_005688", "RRID:nif-0000-03587"] ["help@treebase.org", "https://treebase.org/treebase-web/contact.html"] TreeBASE is a repository of phylogenetic information, specifically user-submitted phylogenetic trees and the data used to generate them. TreeBASE accepts all types of phylogenetic data (e.g., trees of species, trees of populations, trees of genes) representing all biotic taxa. Data in TreeBASE are exposed to the public if they are used in a publication that is in press or published in a peer-reviewed scientific journal, book, conference proceedings, or thesis. Data used in publications that are in preparation or in review can be submitted to TreeBASE but are only available to the authors, publication editors, or reviewers using a special access code. eng ["disciplinary"] {"size": "4.076 publications written by 8.777 different authors. These studies analyzed 8.233 matrices and resulted in 12.817 trees with 761.460 taxon labels that mapped to 104.593 distinct taxa.", "updatedp": "2019-12-02"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://treebase.org/treebase-web/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["evolution", "evolutionary relationship", "genealocial tree", "genetics", "morphology", "phylogenetics", "phylogeography", "taxonomy"] [{"institutionName": "Dryad", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://datadryad.org/stash", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Evolutionary Synthesis Center", "institutionAdditionalName": ["NESCent"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.nescent.org/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Naturalis Biodiversity Center", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.naturalis.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["contact@naturalis.nl"]}, {"institutionName": "Phyloinformatics Research Foundation, Inc.", "institutionAdditionalName": ["PRF"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.phylorf.org/prf/Introduction.html", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["bugs@treebase.org", "help@treebase.org"]}, {"institutionName": "uBio", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ubio.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NSF Data Management Plan", "policyURL": "https://treebase.org/treebase-web/dataMan.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://treebase.org/treebase-web/journal.html"}] restricted [] ["other"] yes {"api": "http://www.openarchives.org/pmh/", "apiType": "OAI-PMH"} ["PURL"] https://treebase.org/treebase-web/about.html [] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://treebase.org/treebase-web/search/studySearch.html?query=prism.modificationDate%253E%25222012-06-14T05:00:00Z%2522&format=rss1", "syndicationType": "RSS"} Treebase is covered by Thomson Reuters Data Citation Index. In previous years the database has been hosted by the Yale Peabody Museum, the San Diego Supercomputer Center, the University at Buffalo, Harvard University, Leiden University, and the University of California, Davis. Development of TreeBASE is hosted at SourceForge. All source code can be downloaded from the TreeBASE subversion repository at SourceForge under a BSD license. There are no fees for upload, but there are limits to the data size. The interface starts to choke when alignment lengths exceed 200,000 or so. 2012-12-14 2019-12-02 +r3d100010171 SDAC eng [{"additionalName": "Solar Data Analysis Center", "additionalNameLanguage": "eng"}] https://umbra.nascom.nasa.gov/index.html/index.html [] ["https://umbra.nascom.nasa.gov/index.html/jack.html"] The Solar Data Analysis Center serves data from recent and current space-based solar-physics missions, funds and hosts much of the SolarSoft library, and leads the Virtual Solar Observatory (VSO) effort. SDAC is the active archive, providing network access to data from such missions as SOHO, Yohkoh, and TRACE. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1990 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://umbra.nascom.nasa.gov/newsite/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ROSES 2012", "Solar and Heliospheric Observatory (SOHO)", "Virtual Solar Observatory (VSO)", "Yohkoh mission", "heliophysics", "peak coronal data", "solar missions", "solar proton events"] [{"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center", "institutionAdditionalName": ["GSFC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "1990", "responsibilityEndDate": "", "institutionContact": ["https://umbra.nascom.nasa.gov/index.html/jbg.html"]}] [{"policyName": "NASA policy on the release of information to news and information media", "policyURL": "https://www.nasa.gov/audience/formedia/features/communication_policy.html"}, {"policyName": "NASA web privacy policy and important notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://science.ksc.nasa.gov/gallery/copyright.html"}] closed [] ["unknown"] yes {"api": "ftp://umbra.nascom.nasa.gov/pub/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} 2012-12-14 2021-07-30 +r3d100010172 World Data Center for Aerosols eng [{"additionalName": "WDCA", "additionalNameLanguage": "eng"}, {"additionalName": "ebas", "additionalNameLanguage": "eng"}] https://www.gaw-wdca.org/ [] ["ebas@nilu.no."] The World Data Centre for Aerosols (WDCA) is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation's (WMO) Global Atmosphere Watch (GAW) programme. The goal of the Global Atmosphere Watch (GAW) programme is to ensure long-term measurements in order to detect trends in global distributions of chemical constituents in air and the reasons for them. With respect to aerosols, the objective of GAW is to determine the spatio-temporal distribution of aerosol properties related to climate forcing and air quality on multi-decadal time scales and on regional, hemispheric and global spatial scales. eng ["disciplinary", "other"] {"size": "GAW-WDCA: 42907 datsets; GAW-WDCA_NRT: 3474 datasets", "updatedp": "2019-01-18"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.gaw-wdca.org/ [{"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerosols", "air quality", "climate", "environmental sciences", "meteorology", "ozone", "radiation"] [{"institutionName": "European Commission", "institutionAdditionalName": ["ec"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Monitoring and Evaluation Programme", "institutionAdditionalName": ["EMEP"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.emep.int/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Supersites for Atmospheric Aerosol Research", "institutionAdditionalName": ["EUSAAR"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.eusaar.net/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["http://www.eusaar.net/files/Contacts/Contacts.cfm"]}, {"institutionName": "Global Earth Observation and Monitoring of the Atmosphere", "institutionAdditionalName": ["GEOmon"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.geomon.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2011", "institutionContact": ["info@geomon.info"]}, {"institutionName": "Helsinki Commission, Baltic Marine Environment Protection Commission", "institutionAdditionalName": ["HELCOM"], "institutionCountry": "FIN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.helcom.fi/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["http://www.helcom.fi/about-us/contact-us/"]}, {"institutionName": "Norwegian Institute for Air Research", "institutionAdditionalName": ["NILU", "Norsk institutt for luftforskning"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nilu.no/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["Markus.Fiebig@nilu.no", "https://www.gaw-wdca.org/Contact"]}, {"institutionName": "OSPAR Commission, Protecting and conserving the North-East Atlantic and its resources", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ospar.org/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.ospar.org/contact"]}, {"institutionName": "World Meteorological Organization, Global Atmosphere Watch", "institutionAdditionalName": ["GAW"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmo.int/pages/prog/arep/gaw/gaw_home_en.html", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://public.wmo.int/en/about-us/contact-us"]}] [{"policyName": "data policy", "policyURL": "https://www.gaw-wdca.org/Browse-Obtain-Data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ebas-submit.nilu.no/Data-Policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gaw-wdca.org/Browse-Obtain-Data"}] restricted [] ["unknown"] yes {"api": "ftp://gaw-wdca.nilu.no/incoming", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} The GAW World Data Centre for Aerosol is hosted by the EBAS database, http://ebas.nilu.no/ . Since the WDCA has moved from the EC Joint Research Centre Institute for Environment and Sustainability (JRC-IES) to the Norwegian Institute for Air Research (NILU) as of 1 January 2010, not all legacy data are moved yet. In the transition period, please access legacy data at the JRC-IES FTP-site at: ftp://ftp-ccu.jrc.it/pub/WDCA/ 2012-12-14 2019-01-18 +r3d100010173 MIT GeoWeb eng [] https://geodata.mit.edu/ [] ["gishelp@mit.edu"] GeoWeb is the MIT Libraries instance of GeoBlacklight and primarily contains data purchased for use by MIT affiliates. eng ["disciplinary", "institutional"] {"size": "78.250 items", "updatedp": "2021-06-09"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://libguides.mit.edu/gis/Geodata [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["administrative boundaries", "building outline", "demographics", "elevation", "hydrography", "land use", "topographic maps", "transportation"] [{"institutionName": "Massachusetts Institute of Technology, MIT Libraries, Geographic Information Systems (GIS)", "institutionAdditionalName": ["MIT-GIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://libguides.mit.edu/gis", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["gishelp@mit.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://libguides.mit.edu/gis/Geodata"}] restricted [] ["other"] yes {} ["none"] http://opengeoportal.org/wp-content/uploads/2011/04/OGP_Metadata_Guide_11_26_2012.doc [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} MIT is part of The Open Geoportal Consortium. The Open Geoportal Consortium is comprised of contributions of several universities and organizations to help facilitate the discovery and acquisition of geospatial data across many organizations and platforms. Current partners include: Harvard, MIT, MassGIS, Princeton, Columbia, Stanford, UC Berkeley, UCLA, Yale, and UConn. Built on open source technology, The Open Geoportal provides organizations the opportunity to share thousands of geospatial data layers, maps, metadata, and development resources through a single common interface. 2012-12-14 2021-06-09 +r3d100010174 West African Vegetation eng [{"additionalName": "a vegetation data network for West Africa", "additionalNameLanguage": "eng"}] http://www.westafricanvegetation.senckenberg.de/menu/home.aspx [] ["http://www.westafricanvegetation.senckenberg.de/menu/contact.aspx", "westafricanvegetation@senckenberg.de"] This is a database for vegetation data from West Africa, i.e. phytosociological and dendrometric relevés as well as floristic inventories. The West African Vegetation Database has been developed in the framework of the projects “Sustainable Use of Natural Vegetation in West Africa” (SUN, http://www.sunproject.dk/) and “Biodiversity Transect Analysis in Africa” (BIOTA, http://www.biota-africa.org/). eng ["disciplinary"] {"size": "14489 datasets", "updatedp": "2017-04-03"} 2011 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://westafricanvegetation.senckenberg.de/menu/about_project.aspx [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Sub-Sahara", "biodiversity", "phytodiversity", "relev\u00e9s", "vegetation surveys"] [{"institutionName": "Aarhuis Universitet", "institutionAdditionalName": ["Aarhuis University"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.au.dk/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://www.au.dk/en/about/contact/"]}, {"institutionName": "Biodiversit\u00e4t und Klima Forschungszentrum", "institutionAdditionalName": ["BiK-F"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bik-f.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Goethe Universit\u00e4t Frankfurt am Main", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.goethe-university-frankfurt.de/en?locale=en", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Botanical Gardens, Kew", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.kew.org/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Senckenberg Gesellschaft f\u00fcr Naturforschung, Forschung", "institutionAdditionalName": ["Senckenberg world of biodiversity"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.senckenberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Cheikh Anta Diop de Dakar", "institutionAdditionalName": [], "institutionCountry": "SEN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ucad.sn/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 d'Abomey-Calavi", "institutionAdditionalName": [], "institutionCountry": "BEN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.uac.bj/web/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Ouagadougou", "institutionAdditionalName": [], "institutionCountry": "BFA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.univ-ouaga.bf/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "terms of use", "policyURL": "http://westafricanvegetation.senckenberg.de/menu/terms_use.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/3.0/us/"}] restricted [] ["unknown"] {} ["none"] http://westafricanvegetation.senckenberg.de/menu/home.aspx [] unknown unknown [] [] {} 2012-12-18 2021-08-24 +r3d100010175 WestNile.ca.gov eng [{"additionalName": "California West Nile Virus Website", "additionalNameLanguage": "eng"}, {"additionalName": "Fight the bite", "additionalNameLanguage": "eng"}] http://westnile.ca.gov/ [] [] The website for West Nile Virus education, statistics, and dead bird reporting for California. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.westnile.ca.gov/report_wnv.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["California", "WNV", "dead birds surveying program", "diseases", "morbidity", "mortality", "mosquito", "public health", "statistics"] [{"institutionName": "California Department of Food and Agriculture", "institutionAdditionalName": ["CDFA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cdfa.ca.gov/AHFSS/Animal_Health/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "California Department of Public Health", "institutionAdditionalName": ["CDPH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.cdph.ca.gov/Pages/DEFAULT.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["CDPHPress@cdph.ca.gov"]}, {"institutionName": "California Vectorborne Disease Surveillance System", "institutionAdditionalName": ["CalSurv"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.calsurv.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mosquito & Vector Control Association of California", "institutionAdditionalName": ["MVCAV"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.mvcac.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UCDavis Veterinary Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.vetmed.ucdavis.edu/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.vetmed.ucdavis.edu/contact/index.cfm"]}] [{"policyName": "Reproduction Rights\nand Restrictions", "policyURL": "http://www.fightthebitecolorado.com/sponsors.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.fightthebitecolorado.com/sponsors.htm"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.fightthebitecolorado.com/sponsors.htm"}] open [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} Fight the bite: A West Nile virus prevention and education campaign brought to you by Colorado's state and local health departments. The Fight the Bite campaign is now used across the USA in 21 states, in Canada, and in Italy. Contact us to use the logo and educational materials; startDate ergänzt 2012-12-19 2017-04-03 +r3d100010177 World Radiation Data Centre eng [{"additionalName": "WRDC", "additionalNameLanguage": "eng"}] http://wrdc.mgo.rssi.ru/wrdc_en.htm ["biodbcore-001577"] ["wrdc@main.mgo.rssi.ru"] The WRDC, located at the Main Geophysical Observatory in St. Petersburg, Russia, processes solar radiation data currently submitted from more than 500 stations located in 56 countries and operates an archive with more than 1200 stations listed in its catalogue. The WRDC is the central depository of the measured components such as: global, diffuse and direct solar radiation, downward atmospheric radiation, net total and terrestrial surface radiation (upward), spectral radiation components (instantaneous fluxes), and sunshine duration, on hourly, daily or monthly basis. eng ["other"] {"size": "", "updatedp": ""} 1993 ["eng", "rus"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://wrdc.mgo.rssi.ru/wrdc_en.htm [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["measurements", "solar radiation", "sunshine duration", "terrestrial surface radiation"] [{"institutionName": "A.I. Voeikov Main Geophysical Observatory, World Radiation Data Center", "institutionAdditionalName": ["WRDC"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://voeikovmgo.ru/index.php?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "1964", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Service for Hydrometeorololgy and Environmental Monitoring", "institutionAdditionalName": ["ROSHYDROMET"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.meteorf.ru/", "institutionIdentifier": [], "responsibilityStartDate": "1964", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Department of Energy, National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["stephen_wilcox@nrel.gov"]}, {"institutionName": "World Meteorological Organisation, Global Atmosphere Watch", "institutionAdditionalName": ["WMO GAW"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmo.int/pages/prog/arep/gaw/world_data_ctres.html", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accordance with the WMO Resolution", "policyURL": "http://wrdc.mgo.rssi.ru/wwwroot/imprt_en.htm"}, {"policyName": "security & privacy notices", "policyURL": "https://www.nrel.gov/security.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nrel.gov/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://wrdc.mgo.rssi.ru/wwwroot/imprt_en.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nrel.gov/disclaimer.html"}] restricted [] ["unknown"] yes {} ["none"] http://wrdc.mgo.rssi.ru/wwwroot/imprt_en.htm [] unknown yes [] [] {} The World Radiation Data Centre (WRDC) is one of recognised World Data Centres sponsored by the World Meteorological Organization (WMO). In the scope of its commitments, WRDC contacts with IOC, WMO, UNEP and other international organizations, and global and regional geophysical data centres in the related field. Participation of WRDC in WMO Global Atmosphere Watch (GAW) project consists in collection, analysis and online presentation of the data on radiation balance components from GAW stations. Metadata on observation data from GAW sites are regularly transferred to GAWSIS server (Switzerland). WRDC interacts with representatives of National Meteorological Services on the issues related to submission of data to WRDC.The WRDC was established in accordance with Resolution 31 of WMO Executive Committee XVIII in 1964. The WRDC centrally collects, archives and published radiometric data from the world to ensure the availability of these data for research by the international scientific community. 2012-12-18 2021-11-16 +r3d100010178 CrystalEye (beta) eng [{"additionalName": "CrystalEye", "additionalNameLanguage": "eng"}] http://wwmm.ch.cam.ac.uk/crystaleye/ [] [] >>>!!!<<< Crystaleye has now been excitingly integrated into the Crystallography Open Database at http://www.crystallography.net. http://service.re3data.org/repository/r3d100010213>>>!!!<<< Crystallography Open Database now is including data and software from CrystalEye, developed by Nick Day at the department of Chemistry, the University of Cambridge under supervision of Peter Murray-Rust. The aim of the CrystalEye project is to aggregate crystallography from web resources, and to provide methods to easily browse, search, and to keep up to date with the latest published information.At present we are aggregating the crystallography from the supplementary data to articles at publishers websites. eng ["disciplinary"] {"size": "100.000 structures", "updatedp": "2019-05-15"} 2005 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www-pmr.ch.cam.ac.uk/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["crystal structure", "crystallographic data"] [{"institutionName": "University of Cambridge, Department of Chemistry, Center For Molecular Sciences Informatics", "institutionAdditionalName": ["Unilever Center f\u00fcr Molecular Science Informatics"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www-cmi.ch.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://www.cam.ac.uk/about-this-site/privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1-0/"}] closed [] ["unknown"] {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}] {} The CrystalEye system is backed by a web-spider that scours specific locations for new crystallography each day. If the spider finds new data, then it is saved to our database and is then passed through the processing part of the system. 2012-12-19 2019-05-15 +r3d100010180 1000 Genomes eng [{"additionalName": "IGSR - International Genome Sample Resource", "additionalNameLanguage": "eng"}, {"additionalName": "Thousand Genomes", "additionalNameLanguage": "eng"}] https://www.internationalgenome.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.4Vs9VM", "OMICS_00261", "RRID:SCR_006828", "RRID:nlx_143819"] ["info@1000genomes.org"] The 1000 Genomes Project is an international collaboration to produce an extensive public catalog of human genetic variation, including SNPs and structural variants, and their haplotype contexts. This resource will support genome-wide association studies and other medical research studies. The genomes of about 2500 unidentified people from about 25 populations around the world will be sequenced using next-generation sequencing technologies. The results of the study will be freely and publicly accessible to researchers worldwide. The International Genome Sample Resource (IGSR) has been established at EMBL-EBI to continue supporting data generated by the 1000 Genomes Project, supplemented with new data and new analysis. eng ["disciplinary", "institutional"] {"size": "2.504 individuals from 26 populations", "updatedp": "2020-02-19"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.internationalgenome.org/about#ProjectDataUse [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "SNP - single nucleotide polymorphism", "biochemistry", "bioinformatics", "gene", "genetics", "genomics", "medicine", "pharmacology"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI", "genome.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": ["Sanger"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data reuse policy", "policyURL": "https://github.com/igsr/1000Genomes_data_indexes/blob/master/data_collections/hgsv_sv_discovery/README_hgsvc_datareuse_statement.md"}, {"policyName": "Terms of Use for EMBL-EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "Using data from IGSR", "policyURL": "https://www.internationalgenome.org/data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.internationalgenome.org/IGSR_disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.internationalgenome.org/data#DataAccess"}] restricted [{"dataUploadLicenseName": "Sample Collection principles", "dataUploadLicenseURL": "https://www.internationalgenome.org/sample_collection_principles"}] ["unknown"] yes {"api": "ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/", "apiType": "FTP"} ["none"] https://www.internationalgenome.org/faq/how-do-i-cite-1000-genomes-project [] unknown yes [] [] {"syndication": "https://www.internationalgenome.org/announcements/rss.xml", "syndicationType": "RSS"} 1000 Genomes is covered by Clarivate Data Citation Index. The project unites multidisciplinary research teams from institutes around the world, including China, Italy, Japan, Kenya, Nigeria, Peru, the United Kingdom, and the United States. Each will contribute to the enormous sequence dataset and to a refined human genome map, which will be freely accessible through public databases to the scientific community and the general public alike 2013-01-08 2021-09-09 +r3d100010181 Alberta Geological Survey eng [{"additionalName": "AGS", "additionalNameLanguage": "eng"}] https://ags.aer.ca/ ["RRID:SCR_003402", "RRID:nlx_157758"] ["AGS-Info@aer.ca", "https://ags.aer.ca/about-ags/contact-us"] AGS delivers geoscience in several key areas, including surficial mapping, bedrock mapping, geological modelling, resource evaluation (hydrocarbons, minerals), groundwater, and geological hazards. We also are responsible for maintaining the Alberta Table of Formations and providing geoscience outreach to stakeholders ranging from professional colleagues and academia to the general public. eng ["disciplinary"] {"size": "605 maps; 5 interactive maps", "updatedp": "2019-05-20"} 1996 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ags.aer.ca/about-the-ags/who-we-are.htm [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CO2", "coal", "core samples", "earthquakes", "gas", "geological hazards", "geosystems", "groundwater", "mapping", "oil"] [{"institutionName": "Alberta Geology Survey", "institutionAdditionalName": ["AGS"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ags.aer.ca/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["https://ags.aer.ca/about-the-ags/contact-us.htm"]}] [{"policyName": "Copyright & Legal Disclaimers", "policyURL": "https://ags.aer.ca/copyright-legal-disclaimers.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://ags.aer.ca/copyright-legal-disclaimers.htm"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://open.alberta.ca/licence"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ags.aer.ca/copyright-legal-disclaimers.htm"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.alberta.ca/licence"}] restricted [] ["unknown"] yes {} ["none"] https://ags.aer.ca/copyright-legal-disclaimers.htm [] yes unknown [] [] {"syndication": "http://feeds.feedburner.com/AGSUpdates", "syndicationType": "RSS"} As part of the Energy Resources Conservation Board,Alberta Geological Survey (AGS) provides geological information and expertise to government, industry and the public about Alberta’s resources and geological processes. This information helps manage and develop our resources. Contains the 'Geological Atlas of the Western Canada Sedimentary Basin'. The digital data sets are packaged in a ZIP archive file format. In addition, selected data are available through the AGS Open Data Portal in spreadsheet, shapefile, or KML format. 2013-01-08 2021-09-28 +r3d100010182 Agency for Healthcare Research and Quality, Data & Surveys eng [{"additionalName": "AHRQ data & surveys", "additionalNameLanguage": "eng"}] https://www.ahrq.gov/research/data/index.html ["RRID:SCR_003604", "RRID:nlx_157753"] ["https://www.ahrq.gov/contact/index.html"] A collection of data at Agency for Healthcare Research and Quality (AHRQ) supporting research that helps people make more informed decisions and improves the quality of health care services. The portal contains U.S.Health Information Knowledgebase (USHIK) and Systematic Review Data Repository (SRDR) and other sources concerning cost, quality, accesibility and evaluation of healthcare and medical insurance. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1999 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ahrq.gov/cpi/about/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "health care", "health information technology", "health insurance", "health policy", "patient data", "public health"] [{"institutionName": "Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHRQ"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ahrq.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["http://www.ahrq.gov/contact/index.html"]}, {"institutionName": "US Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility", "policyURL": "https://www.ahrq.gov/policy/electronic/accessibility/index.html"}, {"policyName": "electronic policies", "policyURL": "https://www.ahrq.gov/policy/electronic/about/policyix.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archive.ahrq.gov/policy/electronic/copyright/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://info.ahrq.gov/app/answers/detail/a_id/341/kw/copyright/"}] restricted [] ["unknown"] {"api": "ftp://ftp.ihe.net/", "apiType": "FTP"} ["none"] https://www.ahrq.gov/research/publications/pubcomguide/index.html [] unknown yes [] [] {"syndication": "https://www.ahrq.gov/news/newsroom/socialmedia.html#rss", "syndicationType": "RSS"} The Agency for Healthcare Research and Quality's (AHRQ) mission is to improve the quality, safety, efficiency, and effectiveness of health care for all Americans. As 1 of 12 agencies within the Department of Health and Human Services, AHRQ supports research that helps people make more informed decisions and improves the quality of health care services. 2013-01-14 2021-09-28 +r3d100010183 UK-AIR eng [{"additionalName": "Air Information Resource", "additionalNameLanguage": "eng"}, {"additionalName": "UK Air Information Resource", "additionalNameLanguage": "eng"}] http://uk-air.defra.gov.uk/data/ [] [] These are the UK-AIR (Air Information Resource) webpages providing in-depth information on air quality and air pollution in the UK. A range of information is available, from the latest pollution levels, pollution forecast information, a data archive, and details of the various monitoring networks. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://uk-air.defra.gov.uk/about-these-pages [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["air pollution", "air pollution information system APIS", "air quality", "air quality index", "climate", "descriptive statistics", "exceedence statistics", "global warming", "health", "monitoring data"] [{"institutionName": "Department for Environment Food and Rural Affairs", "institutionAdditionalName": ["defra"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.gov.uk/government/organisations/department-for-environment-food-rural-affairs", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aqinfo@ricardo-aea.com"]}, {"institutionName": "Department of the Environment, Air and Environmental Quality Team", "institutionAdditionalName": ["DOE"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.doeni.gov.uk/index/protect_the_environment/local_environmental_issues/air_and_environmental_quality.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ricardo-AEA", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ricardo-aea.com/cms/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aqinfo@ricardo-aea.com"]}, {"institutionName": "Scottish Government", "institutionAdditionalName": ["Riaghaltas na h-Alba"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.scotland.gov.uk/Topics/Environment/waste-and-pollution/Pollution-1/16215", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Welsh Government", "institutionAdditionalName": ["Llywodraeth Cymru"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://wales.gov.uk/topics/environmentcountryside/epq/airqualitypollution/airquality/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "http://uk-air.defra.gov.uk/privacy"}, {"policyName": "UK-AIR cookies policy", "policyURL": "http://uk-air.defra.gov.uk/cookies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.gov.uk/copyright-licensing-agency-licence"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/copyright/crown-copyright/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {"syndication": "http://uk-air.defra.gov.uk/assets/rss/current_region_levels.xml", "syndicationType": "RSS"} There are around 300 monitoring sites in total across the UK which monitor air quality and these are organised into networks that gather a particular kind of information, using a particular method. The pollutants measured and method used by each network depends upon the reason for setting up the network, and what the data is to be used for. An interactive monitoring map is available to view the locations of the sites in the UK networks. 2013-01-07 2017-03-30 +r3d100010184 GDP Drifter Data eng [{"additionalName": "Data from Global Drifter Program (GDP)", "additionalNameLanguage": "eng"}] https://www.aoml.noaa.gov/phod/gdp/data.php [] ["Mayra.Pazos@noaa.gov", "https://www.aoml.noaa.gov/phod/gdp/contacts.php"] Satellite-tracked drifting buoys ("drifters") collect measurements of upper ocean currents and sea surface temperatures (SST) around the world as part of the Global Drifter Program. Drifter locations are estimated from 16-20 satellite fixes per day, per drifter. The Drifter Data Assembly Center (DAC) at NOAA's Atlantic Oceanographic and Meteorological Laboratory (AOML) assembles these raw data, applies quality control procedures, and interpolates them via kriging to regular six-hour intervals. The raw observations and processed data are archived at AOML and at the Marine Environmental Data Services (MEDS) in Canada. Two types of data are available: "metadata" contains deployment location and time, time of drogue (sea anchor) loss, date of final transmission, etc. for each drifter. "Interpolated data" contains the quality-controlled, interpolated drifter observations. eng ["disciplinary"] {"size": "Data of 2500 buoys; data and metadata from more than 30.000 drifters", "updatedp": "2019-05-21"} 1979 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.aoml.noaa.gov/phod/gdp/data.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmospheric pressure", "bouy", "climate prediction", "drifter", "measurement", "salinity", "satellite tracking", "sea level pressure", "sea surface temperature", "surface velocity data", "weather prediction"] [{"institutionName": "Atlantic Oceanographic & Meterological Laboratory, Physical Oceanography Division, Global Ocean Observations", "institutionAdditionalName": ["PhOD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.aoml.noaa.gov/phod/goos.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Drifter Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aoml.noaa.gov/phod/gdp/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aoml.noaa.gov/phod/gdp/contacts.php"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "FAQ", "policyURL": "https://www.aoml.noaa.gov/phod/gdp/data_faq.php#wmo_location"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.aoml.noaa.gov/phod/gdp/data_faq.php#wmo_location"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.aoml.noaa.gov/phod/gdp/data_faq.php#wmo_location"}] closed [] ["unknown"] {"api": "ftp://ftp.aoml.noaa.gov/pub/phod/buoydata", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} Data are available: http://www.aoml.noaa.gov/envids/ 2013-01-11 2019-05-21 +r3d100010185 The Arabidopsis Information Resource eng [{"additionalName": "TAIR", "additionalNameLanguage": "eng"}] https://www.arabidopsis.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.4dqw0", "OMICS_01662", "RRID:SCR_004618", "RRID:nlx_61477"] ["curator@arabidopsis.org", "https://www.arabidopsis.org/contact/index.jsp"] The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana . Data available from TAIR includes the complete genome sequence along with gene structure, gene product information, metabolism, gene expression, DNA and seed stocks, genome maps, genetic and physical markers, publications, and information about the Arabidopsis research community. Gene product function data is updated every two weeks from the latest published research literature and community data submissions. Gene structures are updated 1-2 times per year using computational and manual methods as well as community submissions of new and updated genes. TAIR also provides extensive linkouts from our data pages to other Arabidopsis resources. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.arabidopsis.org/about/index.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "clones", "data mining proteins", "gene expression", "genetic map", "genetic markers", "genome sequence", "genomics", "germ plasm", "ontology", "physical map", "taxonomy"] [{"institutionName": "Phoenix Bioinformatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.phoenixbioinformatics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TAIR Users Guide", "policyURL": "https://www.arabidopsis.org/download_files/Help_Documents/CPBI_Unit_1.11_2017_submitted.pdf"}, {"policyName": "TAIR terms of use", "policyURL": "https://www.arabidopsis.org/doc/about/tair_terms_of_use/417"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/lgpl.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.arabidopsis.org/doc/about/tair_licensing/416"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.arabidopsis.org/home/tair/", "apiType": "FTP"} ["none"] https://www.arabidopsis.org/about/citingtair.jsp [] unknown yes [] [] {"syndication": "https://www.arabidopsis.org/news/rss.xml", "syndicationType": "RSS"} is covered by Elsevier. TAIR collaborates with the Arabidopsis Biological Resource Center (ABRC). The Arabidopsis Biological Resource Center at The Ohio State University collects, reproduces, preserves and distributes seed and DNA resources of Arabidopsis thaliana and related species. Stock information and ordering for the ABRC are fully integrated into TAIR. The ABRC's mission is to aquire, preserve and distribute seed and DNA resources that are useful to the Arabidopsis research community. 2013-01-11 2021-09-28 +r3d100010186 ARM Data Center eng [{"additionalName": "Atmospheric Radiation Measurement Facility Data Center", "additionalNameLanguage": "eng"}] https://www.arm.gov/data ["FAIRsharing_doi:10.25504/FAIRsharing.g84yb7"] ["adc@arm.gov", "https://arm.gov/connect-with-arm/organization/data-services", "palanisamyg@ornl.gov"] US Department of Energy’s Atmospheric Radiation Measurement (ARM) Data Center is a long-term archive and distribution facility for various ground-based, aerial and model data products in support of atmospheric and climate research. ARM facility currently operates over 400 instruments at various observatories (https://www.arm.gov/capabilities/observatories). ARM Data Center (ADC) Archive currently holds over 11,000 data products with a total holding of over 3 petabytes of data that dates back to 1993, these include data from instruments, value added products, model outputs, field campaign and PI contributed data. The data center archive also includes data collected by ARM from related program (e.g., external data such as NASA satellite). eng ["disciplinary", "institutional"] {"size": "11.000 data products with a total holding of over 3 petabytes of data", "updatedp": "2018-12-04"} 1993 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.arm.gov/data [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerosol life cycle", "climate", "cloud life cycle", "global climate", "ice", "meteorology", "polar year", "radiative processes", "snow"] [{"institutionName": "Argonne National Laboratory", "institutionAdditionalName": ["ANL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.anl.gov/", "institutionIdentifier": ["ROR:05gvnxz63"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Atmospheric Radiation Measurement Climate Research Facility", "institutionAdditionalName": ["ARM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.arm.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Brookhaven National Laboratory", "institutionAdditionalName": ["BNL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bnl.gov/world/", "institutionIdentifier": ["ROR:02ex6cf31"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["LBL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ROR:02jbv0t02"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lawrence Livermore National Laboratory", "institutionAdditionalName": ["LLNL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.llnl.gov/", "institutionIdentifier": ["ROR:041nk4h53"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Los Alamos National Laboratory", "institutionAdditionalName": ["LANL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lanl.gov/", "institutionIdentifier": ["ROR:01e41cf67"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": ["ROR:01qz5mb56"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Pacific Northwest National Laboratory", "institutionAdditionalName": ["PNNL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.pnl.gov", "institutionIdentifier": ["ROR:05h992307"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sandia National Laboratories", "institutionAdditionalName": ["SNL", "Sandia"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sandia.gov/", "institutionIdentifier": ["ROR:058m7ey48"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Science", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/", "institutionIdentifier": ["ROR:00mmn6b08"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/05/Atmospheric-Radiation-Measurement-ARM-Data-Center.pdf"}, {"policyName": "Data Policies", "policyURL": "https://www.arm.gov/policies/datapolicies"}, {"policyName": "Data Sharing Policy", "policyURL": "https://www.arm.gov/policies/datapolicies/datasharingpolicy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.arm.gov/policies/datapolicies/datasharingpolicy"}] restricted [{"dataUploadLicenseName": "data sharing and distribution policy", "dataUploadLicenseURL": "https://www.arm.gov/policies/datapolicies/datasharingpolicy"}] [] yes {"api": "https://adc.arm.gov/armlive/", "apiType": "REST"} ["DOI"] https://www.arm.gov/working-with-arm/acknowledging-arm/doi-guidance-for-datastreams [] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "https://www.arm.gov/news/facility/post/502", "syndicationType": "RSS"} ARM is covered by Clarivate Data Citation Index. The Atmospheric Radiation Measurement (ARM) Program was created in 1989 with funding from the U.S. Department of Energy (DOE) to develop several highly instrumented ground stations to study cloud formation processes and their influence on radiative transfer. This scientific infrastructure now includes three heavily instrumented fixed-location atmospheric observatories that represent a broad range of conditions are operated by the Atmospheric Radiation Measurement (ARM) user facility to gather massive amounts of atmospheric data. In addition to these fixed-location observatories, ARM also offers three mobile facilities, an aerial facility, and a data center available for use by scientists worldwide through the ARM Climate Research Facility—a scientific user facility. 2013-01-15 2021-09-03 +r3d100010187 US Department of Commerce, Bureau of Economic Analysis, Interactive Data eng [{"additionalName": "BEA Interactive Data", "additionalNameLanguage": "eng"}] http://www.bea.gov/itable/index.cfm [] ["https://www.bea.gov/contacts/search.htm"] BEA produces economic accounts statistics that enable government and business decision-makers, researchers, and the American public to follow and understand the performance of the Nation's economy. To do this, BEA collects source data, conducts research and analysis, develops and implements estimation methodologies, and disseminates statistics to the public. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.bea.gov/about/mission.htm [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Gross domestic income", "Gross domestic product", "census data", "corporate profits", "economic account statistics", "national income", "personal consumption expenditures", "personal saving", "statistics"] [{"institutionName": "U.S Department of Commerce, Bureau of Economic Analysis", "institutionAdditionalName": ["BEA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bea.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bea.gov/contacts/search.htm"]}] [{"policyName": "policies", "policyURL": "https://www.bea.gov/about/policies.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.bea.gov/faq/index.cfm?faq_id=147"}] restricted [] ["unknown"] {"api": "https://www.bea.gov/API/bea_web_service_api_user_guide.htm", "apiType": "other"} ["none"] http://www.bea.gov/about/BEAciting.htm [] unknown yes [] [] {"syndication": "http://www.bea.gov/rss/rss.xml", "syndicationType": "RSS"} BEA is an agency of the Department of Commerce. Along with the Census Bureau and STAT-USA, BEA is part of the Department's Economics and Statistics Administration. 2013-01-29 2017-04-04 +r3d100010188 Beta Cell Biology Consortium Reagent and Data Resources eng [{"additionalName": "BCBC Reagent and Data Resources", "additionalNameLanguage": "eng"}] http://www.betacell.org/resource/ ["RRID:SCR_005136", "RRID:nlx_144143"] [] >>>!!!<<< Sorry.we are no longer in operation >>>!!!<<< The Beta Cell Biology Consortium (BCBC) was a team science initiative that was established by the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK). It was initially funded in 2001 (RFA DK-01-014), and competitively continued both in 2005 (RFAs DK-01-17, DK-01-18) and in 2009 (RFA DK-09-011). Funding for the BCBC came to an end on August 1, 2015, and with it so did our ability to maintain active websites.!!! One of the many goals of the BCBC was to develop and maintain databases of useful research resources. A total of 813 different scientific resources were generated and submitted by BCBC investigators over the 14 years it existed. Information pertaining to 495 selected resources, judged to be the most scientifically-useful, has been converted into a static catalog, as shown below. In addition, the metadata for these 495 resources have been transferred to dkNET in the form of RDF descriptors, and all genomics data have been deposited to either ArrayExpress or GEO. Please direct questions or comments to the NIDDK Division of Diabetes, Endocrinology & Metabolic Diseases (DEM). eng ["disciplinary"] {"size": "495 entries", "updatedp": "2015-09-01"} 2002 2015-08-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20517 Endocrinology, Diabetology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.betacell.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["adenoviruses", "antibodies", "bioimages", "diabetes", "genomics", "insulin", "mouse strains", "protocols"] [{"institutionName": "Juvenile Diabetes Research Foundation International", "institutionAdditionalName": ["JDRF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://jdrf.org/", "institutionIdentifier": ["ROR:00vqxjy61"], "responsibilityStartDate": "2001", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": ["ROR:00adh9b73"], "responsibilityStartDate": "2001", "responsibilityEndDate": "2015", "institutionContact": ["http://www.niddk.nih.gov/Pages/contact-us.aspx"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "2001", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "U.S.Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181"], "responsibilityStartDate": "2001", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Vanderbilt University, Beta Cell Biology Consortium, Coordinating Center", "institutionAdditionalName": ["BCBC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.betacell.org/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BCBC policies and guidelines", "policyURL": "http://www.betacell.org/about/policies/#pg"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.mgtaylor.com/"}] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.betacell.org/content/disclaimerterms/#terms"}] restricted [] ["unknown"] yes {} ["none"] http://www.betacell.org/about/policies/#citation [] unknown yes [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} !!!"Sorry, we are no longer in operation. This information was last updated on July 31, 2015". !!! The Beta Cell Biology Consortium (BCBC) is a team science initiative that was established by the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK). It was first funded in 2001 (RFA DK-01-014), and competitively continued in 2005 (RFAs DK-01-17, DK-01-18), and in 2009 (RFA DK-09-011). Currently, the BCBC consists of more than 50 research laboratories, which are funded by U-01 cooperative agreements. 2013-01-30 2021-09-02 +r3d100010189 National Geoscience Data Centre eng [{"additionalName": "NGDC", "additionalNameLanguage": "eng"}] http://www.bgs.ac.uk/services/ngdc/ ["FAIRsharing_doi:10.25504/fairsharing.drz6sx"] ["ngdc@bgs.ac.uk"] The BGS is a data-rich organisation with over 400 datasets in its care; including environmental monitoring data, digital databases, physical collections (borehole core, rocks, minerals and fossils), records and archives. Our data is managed by the National Geoscience Data Centre. eng ["disciplinary"] {"size": "1.288 datasets", "updatedp": "2020-02-11"} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.bgs.ac.uk/data/home.html?src=topNav [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["borehole records", "climate change", "drilling", "earthquakes", "geothermal energy", "groundwater levels", "hydrology", "materials collections", "offshore gas", "offshore oil"] [{"institutionName": "British Geological Survey", "institutionAdditionalName": ["BGS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bgs.ac.uk/", "institutionIdentifier": ["ROR:04a7gbp98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bgs.ac.uk/contacts/"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BGS policies and procedures", "policyURL": "http://www.bgs.ac.uk/about/policy.html"}, {"policyName": "Legal framework", "policyURL": "http://www.bgs.ac.uk/services/ngdc/records/policy.html"}, {"policyName": "NERC Policy on Licensing and Charging for Information", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/nerc-licensing-charging-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bgs.ac.uk/services/ngdc/records/policy.html#copyright_ownership"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] open [{"dataUploadLicenseName": "Depositing records and digital data", "dataUploadLicenseURL": "http://www.bgs.ac.uk/services/ngdc/records/depositing.html"}] ["unknown"] no {"api": "ftp://ftp.bgs.ac.uk/", "apiType": "FTP"} ["DOI"] http://www.bgs.ac.uk/about/copyright/acknowledgements_published.html [] unknown yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.bgs.ac.uk/news/rss.html", "syndicationType": "RSS"} NGDC is covered by Clarivate Data Citation Index. NGDC is one of the Data Centres of NERC, https://nerc.ukri.org/research/sites/data/ . NGDC is a regular member of ICSU World Data System - WDS. 2013-01-31 2021-09-03 +r3d100010190 Forschungsdatenzentrum im Bundesinstitut für Berufsbildung deu [{"additionalName": "Research Data Centre at BIBB", "additionalNameLanguage": "eng"}, {"additionalName": "bibb fdz", "additionalNameLanguage": "deu"}] http://www.bibb.de/de/53.php [] ["http://www.bibb.de/en/1408.php", "zentrale@bibb.de"] BIBB has a strong tradition of survey-based research. It initiates and realises the collection of individual and firm-level data on crucial positions and transitions in the education and labour market system. The BIBB-FDZ covers a variety of data deploying different units of analysis and temporal designs and focusing on various thematic issues. Standard access to well prepared firm- and individual-level data on the attainment and utilization of vocational education and training Documentation of these data sets, i.e. a description of their central characteristics, main issues and variables, data collection, anonymisation, weighting and recoding etc. Advisory service on data choice, data access and handling, research potential and scope and validity of the data. Supply of a range of data tools such as standard measures and classifications in the fields of education, occupations, industries and regions (if possible also including cross-national fields), formally anonymous data for remote data access, or references to publications with the data. eng ["institutional"] {"size": "", "updatedp": ""} 2008 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.bibb.de/en/14512.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["adult education", "apprenticeship training", "census data", "employment", "school graduate survey", "student survey", "transition survey", "vocational training"] [{"institutionName": "Bundesinstitut f\u00fcr Berufsbildung, Forschungsdatenzentrum", "institutionAdditionalName": ["Federal Institute for Vocational Education and Training", "bibb"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bibb.de/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://www2.bibb.de/bibbtools/en/ssl/contact.php?maid=4164"]}, {"institutionName": "Gesis - Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["gesis - Leibniz Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.gesis.org/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rat f\u00fcr Sozial- und WirtschaftsDaten", "institutionAdditionalName": ["RatSWD"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ratswd.de", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Datenzugang", "policyURL": "http://www.bibb.de/de/1400.php"}, {"policyName": "Kriterien des RatSWD", "policyURL": "http://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/4.0/deed.dead"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bibb.de/de/impressum.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bibb.de/de/1403.php"}] restricted [{"dataUploadLicenseName": "Verpflichtungserkl\u00e4rung", "dataUploadLicenseURL": "http://www.bibb.de/dokumente/pdf/Verpflichtungserklaerung.pdf"}] ["unknown"] {} ["DOI"] http://www.bibb.de/de/1405.php [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.bibb.de/de/beschluesseundempfehlungen.xml", "syndicationType": "RSS"} The BIBB-FDZ forms part of the data infrastructure of the German Council for Social and Economic Data (RatSWD) and operates in alignment with the Council's criteria. 2013-01-31 2021-09-28 +r3d100010191 Biological Magnetic Resonance Data Bank eng [{"additionalName": "BMRB", "additionalNameLanguage": "eng"}, {"additionalName": "BioMagResBank", "additionalNameLanguage": "eng"}, {"additionalName": "Biological Magnetic Resonance Databank", "additionalNameLanguage": "eng"}] http://www.bmrb.wisc.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.p06nme", "OMICS_02858", "RRID:SCR_002296", "RRID:nif-0000-21058"] ["bmrbhelp@bmrb.wisc.edu"] BioMagResBank (BMRB) is the publicly-accessible depository for NMR results from peptides, proteins, and nucleic acids recognized by the International Society of Magnetic Resonance and by the IUPAC-IUBMB-IUPAB Inter-Union Task Group on the Standardization of Data Bases of Protein and Nucleic Acid Structures Determined by NMR Spectroscopy. In addition, BMRB provides reference information and maintains a collection of NMR pulse sequences and computer software for biomolecular NMR eng ["disciplinary"] {"size": "18773 files", "updatedp": "2019-05-21"} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.bmrb.wisc.edu/bmrb/mission_statement.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["NMR", "biomolecules", "genomics", "nucleic acids", "peptides", "proteins", "spectroscopy"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Madison", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wisconsin.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["bmrbhelp@bmrb.wisc.edu"]}] [{"policyName": "BMRB Aims and Policies", "policyURL": "http://www.bmrb.wisc.edu/bmrb/aims_and_policies.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.bmrb.wisc.edu/bmrb/aims_and_policies.shtml"}] open [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "http://www.bmrb.wisc.edu/deposit/"}] ["unknown"] yes {"api": "http://ftp.bmrb.wisc.edu/", "apiType": "FTP"} ["none"] http://www.bmrb.wisc.edu/bmrb/citation.shtml [] unknown yes [] [] {} is covered by Elsevier. BMRB is covered by Thomson Reuters Data Citation Index. In collaboration with the Protein Data Bank (PDB, Rutgers University) and Nucleic Acid Data Bank (NDB, Rutgers University), BMRB aims to develop into the collection site for structural NMR data in proteins and nucleic acids. BMRB mirror sites in Osaka, Japan (http://bmrb.protein.osaka-u.ac.jp/) and Florence, Italy (http://bmrb.cerm.unifi.it/). 2013-02-01 2021-09-02 +r3d100010192 British Oceanographic Data Centre eng [{"additionalName": "BODC", "additionalNameLanguage": "eng"}] https://www.bodc.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.tj9xv0"] ["enquiries@bodc.ac.uk", "https://www.bodc.ac.uk/about/contact_us/"] The British Oceanographic Data Centre (BODC) is a national facility for looking after and distributing data concerning the marine environmentWe deal with biological, chemical, physical and geophysical data, and our databases contain measurements of nearly 22,000 different variables. Many of our staff have direct experience of marine data collection and analysis. They work alongside information technology specialists to ensure that data are documented and stored for current and future use. eng ["institutional"] {"size": "130.306 data series", "updatedp": "2019-12-20"} 1989 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bodc.ac.uk/about/what_is_bodc/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["JGOFS", "Joint Global Ocean Flux Study", "World Ocean Circulation Experiment (WOCE)", "acoustics", "argo floats", "bathymetry", "currents", "meteorology", "optical properties", "sea level", "tide", "topography", "water column", "waves"] [{"institutionName": "British Oceanographic Data Centre", "institutionAdditionalName": ["BODC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bodc.ac.uk/", "institutionIdentifier": ["ROR:03102fn17"], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": ["https://www.bodc.ac.uk/about/contact_us/"]}, {"institutionName": "National Oceanography Centre, Liverpool Site", "institutionAdditionalName": ["NOC"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://noc.ac.uk/", "institutionIdentifier": ["ROR:00874hx02"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility", "policyURL": "https://www.bodc.ac.uk/resources/help_and_hints/using_this_web_site/accessibility/"}, {"policyName": "Data policy", "policyURL": "https://www.bodc.ac.uk/projects/data_management/uk/mfmb/data_policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bodc.ac.uk/resources/help_and_hints/using_this_web_site/copyright/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bodc.ac.uk/resources/help_and_hints/using_this_web_site/picture_copyrights/"}] restricted [{"dataUploadLicenseName": "submission guides", "dataUploadLicenseURL": "https://www.bodc.ac.uk/submit_data/submission_guidelines/"}] ["unknown"] yes {"api": "https://www.bodc.ac.uk/resources/delivery_formats/qxf_format/", "apiType": "NetCDF"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} is covered by Elsevier. BODC is one of the Data Centres of NERC, https://nerc.ukri.org/research/sites/data/ . BODC is covered by Clarivate Data Citation Index 2013-02-01 2021-09-02 +r3d100010193 BRC eng [{"additionalName": "Biological Records Centre", "additionalNameLanguage": "eng"}] http://www.brc.ac.uk/ [] [] The Biological Records Centre (BRC), established in 1964, is a national focus in the UK for terrestrial and freshwater species recording. BRC works closely with the voluntary recording community, principally through support of national recording schemes and societies. It provides an application, IRecord, for people to use to record and submit their own wildlife observations to the repository. Map and access datasets via the NBN Gateway, an Internet based data delivery service. eng ["disciplinary"] {"size": "12 Mio records of more than 12000 species", "updatedp": "2019-05-21"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.brc.ac.uk/research-publications [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Britain", "beetles", "biological recording", "birds", "botany", "fishes", "flies", "insects", "invertebrate zoology", "lichens", "liverworts", "mosses", "vertebrate zoology"] [{"institutionName": "BRC", "institutionAdditionalName": ["Biological Records Centre"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.brc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "1964", "responsibilityEndDate": "", "institutionContact": ["brc@ceh.ac.uk", "http://www.brc.ac.uk/contact"]}, {"institutionName": "Joint Nature Conservation Committee", "institutionAdditionalName": ["JNCC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://jncc.defra.gov.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Biodiversity Network", "institutionAdditionalName": ["NBN"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nbn.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Environment Research Council, Centre for Ecology & Hydrology", "institutionAdditionalName": ["CEH"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ceh.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NBN Atlas terms of use", "policyURL": "https://docs.nbnatlas.org/nbn-atlas-terms-of-use/"}, {"policyName": "Recording", "policyURL": "http://www.brc.ac.uk/recording"}, {"policyName": "iRecord userguide", "policyURL": "https://www.brc.ac.uk/irecord/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://www.brc.ac.uk/rss", "syndicationType": "RSS"} The work of BRC is a major component of the National Biodiversity Network (NBN) 2013-02-04 2019-05-21 +r3d100010194 Bugwood Image Database System eng [] https://images.bugwood.org/ [] ["https://mc.uga.edu/?s=contact"] bugwood.org is the host website of the Center for Invasive Species and Ecosystem Health at the University of Georgia (Formerly: Bugwood Network). The Center aims to develop, consolidate and disseminate information and programmes focused on invasive species, forest health, natural resources and agricultural management through technology development, programmes implementation, training, applied research and public awareness at state, regional, national and international levels. The site gives details of its products (Bugwood Image Database; Early Detection and Distribution Mapping and Bugwoodwiki). Details of its projects, services and personnel are provided. Users can also access image databases on Forestry, Insects, IPM, Invasive Species, Forest Pests, weed and Bark Beetle. eng ["disciplinary"] {"size": "312.221 images featuring 27.850 subjects from 2.586 photographers", "updatedp": "2021-09-28"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.bugwood.org/whoweare.cfm [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "cogongrass", "crop management", "forestry", "fruit", "insect", "nut", "plant diseases", "urban forestry", "vegetables", "weeds", "wildlife"] [{"institutionName": "United States Department of Agriculture, Animal and Plant Health Inspection Service, Plant Protection and Quarantine Program", "institutionAdditionalName": ["PPQ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.aphis.usda.gov/aphis/home", "institutionIdentifier": ["ROR:0599wfz09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aphis.usda.gov/aphis/banner/contactus"]}, {"institutionName": "United States Department of Agriculture, Forest Service", "institutionAdditionalName": ["US Forest Service", "USDA Forest Service"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fs.fed.us/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Center for Invasive Species and Ecosystem Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bugwood.org/ContactUs.html"]}, {"institutionName": "University of Georgia, College of Agricultural and Environmental Sciences, Department of Entomology", "institutionAdditionalName": ["UGA College of Agricultural and Environmental Sciences, Department of Entomology"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ent.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": ["UGA Warnell"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Bugwood Images", "policyURL": "https://data.nal.usda.gov/dataset/bugwood-images"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] restricted [] ["unknown"] {"api": "http://wiki.bugwood.org/api.php", "apiType": "FTP"} ["none"] https://data.nal.usda.gov/dataset/bugwood-images [] unknown yes [] [] {"syndication": "http://feeds.feedburner.com/Bugwood", "syndicationType": "RSS"} In February of 2008, the Bugwood Network officially became the Bugwood Image Database System at Center for Invasive Species and Ecosystem Health at the University of Georgia. The intersecting arrows of the Bugwood logo represent the integration of different disciplines and technologies to achieve common goals. The National Institute of Food and Agriculture NIFA is the former Cooperative State Research, Education and Extension Service (CSREES).Databases included are Forestry Images r3d100010239, IPM Images, Invasive.org, Insect Images, Weed Images 2012-01-16 2021-09-28 +r3d100010195 CAIDA Data eng [{"additionalName": "The Cooperative Association for Internet Data Analysis", "additionalNameLanguage": "eng"}] http://www.caida.org/data/ [] ["data-info@caida.org", "http://www.caida.org/home/contactinfo/"] The Cooperative Association for Internet Data Analysis (CAIDA) is a collaborative undertaking among organizations in the commercial, government, and research sectors aimed at promoting greater cooperation in the engineering and maintenance of a robust, scalable global Internet infrastructure.It is an independent analysis and research group with particular focus on: Collection, curation, analysis, visualization, dissemination of sets of the best available Internet data, providing macroscopic insight into the behavior of Internet infrastructure worldwide, improving the integrity of the field of Internet science, improving the integrity of operational Internet measurement and management, informing science, technology, and communications public policies. eng ["other"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.caida.org/home/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Ark - Archipelago", "DNS Domain name system", "UCSD network telescope", "analyzing", "cyber security", "internet", "internet economics", "internet infrastructure", "internet mapping project", "internet security", "internet topology structure", "security", "topology", "traffic analysis", "visualizing"] [{"institutionName": "ARIN", "institutionAdditionalName": ["American Registry of Internet Numbers"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arin.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.arin.net/contact_us.html"]}, {"institutionName": "CISCO", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.cisco.com/", "institutionIdentifier": ["ROR:03yt1ez60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cooperative Association for Internet Data Analysis", "institutionAdditionalName": ["CAIDA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.caida.org/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data-info@caida.org"]}, {"institutionName": "Defense Advanced Research Project Agency", "institutionAdditionalName": ["DARPA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.darpa.mil/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Homeland Security", "institutionAdditionalName": ["Department of Homeland Security"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at San Diego, Supercomputer Center", "institutionAdditionalName": ["UC, SDSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.sdsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CAIDA Master Acceptable Use Agreement (AUA)", "policyURL": "http://www.caida.org/home/legal/aua/"}, {"policyName": "CAIDA Tools Copyright Notice", "policyURL": "http://www.caida.org/home/legal/copyright.xml"}, {"policyName": "CAIDA Website Privacy Policy", "policyURL": "http://www.caida.org/home/legal/privacy/"}, {"policyName": "COMMONS Site Acceptable Use Agreement", "policyURL": "http://www.caida.org/projects/commons/aup/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.caida.org/home/legal/aua/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.caida.org/home/legal/proprietary.xml"}] closed [] ["unknown"] {} ["none"] http://www.caida.org/home/legal/aua/ [] unknown yes [] [] {"syndication": "http://www.caida.org/home/caida-whatsnew.rss", "syndicationType": "RSS"} CAIDA has developed a privacy sensitive data sharing framework that employs technical and policy means to balance individual privacy, security, and legal concerns against the needs of governments researchers, and scientists for access to data in an attempt to address the the inevitable conflict between data privacy and science. CAIDA collects and curates data to provide an empirical foundation for Internet research, maintaining a list of both publications by CAIDA researchers and collaborators, as well as publications by external researchers who report back use of CAIDA data as part of our Acceptable Use Policy (AUP). The CAIDA Tools site contains a variety of internet measurement and visualization software as well as a taxonomy of available research and visualization tools. 2012-01-10 2021-09-28 +r3d100010196 Vectorborne Disease Surveillance System eng [{"additionalName": "VectorSurv", "additionalNameLanguage": "eng"}] https://vectorsurv.org/ [] ["help@vectorsurv.org"] CalSurv is a comprehensive information on West Nile virus, plague, malaria, Lyme disease, trench fever and other vectorborne diseases in California — where they are, where they’ve been, where they may be headed and what new diseases may be emerging.The CalSurv Web site serves as a portal or a single interface to all surveillance-related Web sites in California. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.mvcac.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Anopheles", "Arbovirus", "California", "Malaria", "Riff-Valley-Fever", "West Nile virus epidemic", "control", "disease", "gleas", "lice", "plaque", "predictive model", "prevention", "protection", "rodunts", "ticks", "vectoborne disease surveillance"] [{"institutionName": "California Department of Public Health", "institutionAdditionalName": ["CDPH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cdph.ca.gov/", "institutionIdentifier": ["ROR:011cc8156"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mosquito and Vector Control Association of California", "institutionAdditionalName": ["MVCAC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mvcac.org/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Center for Vectorborne Diseases", "institutionAdditionalName": ["CVEC"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://cvec.vetmed.ucdavis.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy", "policyURL": "https://vectorsurv.org/assets/files/calsurv_data_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.calsurv.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.calsurv.org/sites/calsurv.org/files/u3/documents/CalSurv_Data_Policy.pdf"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} The CalSurv Web site serves as a portal or a single interface to all surveillance-related Web sites in California. Protecting California citizens from these diseases is too broad and complex an undertaking for any one agency. There is a tradition of cooperation among the California Department of Public Health, local mosquito and vector control agencies, and the University of California. 2012-01-25 2021-09-29 +r3d100010197 The Cambridge Structural Database eng [{"additionalName": "CSD", "additionalNameLanguage": "eng"}, {"additionalName": "Cambridge Crystallographic Data Centre", "additionalNameLanguage": "eng"}] https://www.ccdc.cam.ac.uk/solutions/csd-system/components/csd/ ["FAIRsharing_doi:10.25504/FAIRsharing.vs7865", "RRID:SCR_007310", "RRID:nif-0000-00174"] ["https://www.ccdc.cam.ac.uk/theccdcprofile/contactus/", "support@ccdc.cam.ac.uk"] Established in 1965, the CSD is the world’s repository for small-molecule organic and metal-organic crystal structures. Containing the results of over one million x-ray and neutron diffraction analyses this unique database of accurate 3D structures has become an essential resource to scientists around the world. The CSD records bibliographic, chemical and crystallographic information for:organic molecules, metal-organic compounds whose 3D structures have been determined using X-ray diffraction, neutron diffraction. The CSD records results of: single crystal studies, powder diffraction studies which yield 3D atomic coordinate data for at least all non-H atoms. In some cases the CCDC is unable to obtain coordinates, and incomplete entries are archived to the CSD. The CSD includes crystal structure data arising from: publications in the open literature and Private Communications to the CSD (via direct data deposition). The CSD contains directly deposited data that are not available anywhere else, known as CSD Communications. eng ["disciplinary"] {"size": "1.037.850 crystal structures", "updatedp": "2020-02-03"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.ccdc.cam.ac.uk/theccdcprofile/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["chemistry", "crystallography", "metal-organic crystal structures", "neutron diffraction analyses", "organic crystal structures", "physics", "small molecule structures", "x-Rax diffraction analyses"] [{"institutionName": "Cambridge Crystallographic Data Centre", "institutionAdditionalName": ["CCDC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ccdc.cam.ac.uk/", "institutionIdentifier": ["ROR:00zbfm828"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ccdc.cam.ac.uk/theccdcprofile/contactus/"]}] [{"policyName": "Access Structure", "policyURL": "https://www.ccdc.cam.ac.uk/structures/"}, {"policyName": "CCDC Terms & Conditions", "policyURL": "https://www.ccdc.cam.ac.uk/termsandconditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ccdc.cam.ac.uk/termsandconditions/"}] restricted [{"dataUploadLicenseName": "Copyrights", "dataUploadLicenseURL": "https://services.ccdc.cam.ac.uk/structure_deposit/web_deposit_php/web_deposit_upload_file.php"}] ["unknown"] yes {"api": "https://downloads.ccdc.cam.ac.uk/documentation/API/", "apiType": "other"} ["DOI"] https://www.ccdc.cam.ac.uk/support-and-resources/Support/search?c=Product+Reference ["ORCID"] yes yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Cambridge Structural Database is covered by Clarivate Data Citation Index. is covered by Elsevier. Access to WebCSD is available to those with an unlimited site licence for the Cambridge structural Database System. Originating in the Department of Chemistry at the University of Cambridge, the CCDC is now a fully independent institution constituted as a non-profit company and a registered charity since 1989. 2013-02-06 2021-09-03 +r3d100010198 Centers for Disease Control and Prevention, Data & Statistics eng [{"additionalName": "CDC", "additionalNameLanguage": "eng"}, {"additionalName": "Centros para el Control y la Prevencion de Enfermedades, Datos y estad\u00edsticas", "additionalNameLanguage": "spa"}] http://www.cdc.gov/DataStatistics/ ["RRID:SCR_012976", "RRID:nlx_inv_1005036"] ["https://wwwn.cdc.gov/dcs/ContactUs/Form"] CDC.gov is the Centers for Disease Control and Prevention primary online communication channel. CDC.gov provides users with credible, reliable health information on Data and Statistics, Diseases and Conditions, Emergencies and Disasters, Environmental Health, Healthy Living, Injury, Violence and Safety,Life Stages and Populations, Travelers' Health, Workplace Safety and Health eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1992 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.cdc.gov/about/organization/mission.htm; http://www.cdc.gov/about/diversity/diversity.htm [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["FASTSTATS", "aids", "alcohol", "birth and death certificates", "cancer", "census data", "chronic deseases", "disaster", "diseases", "emergencies", "environmental health", "health", "healthy living", "immunization", "injury", "life stages and populations", "occupational safety and health", "overveight obesity", "public health", "safety", "statistics", "travelers' health", "tubercolosis TB", "vaccinations", "violence", "workplace safety"] [{"institutionName": "CDC Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://cdcfoundation.org", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["http://cdcfoundation.org/contact"]}, {"institutionName": "Centers for Disease Control and Prevention", "institutionAdditionalName": ["CDC", "Centros para el Control y la Prevencion de Enfermedades"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1946", "responsibilityEndDate": "", "institutionContact": ["http://www.cdc.gov/cdc-info/requestform.html"]}, {"institutionName": "US Departement of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1946", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USA.gov", "institutionAdditionalName": ["Government made easy"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "policies and regulations", "policyURL": "http://www.cdc.gov/Other/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cdc.gov/Other/imagereuse.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cdc.gov/maso/Policy/Authorship.pdf"}] closed [] ["unknown"] {"api": "http://tools.cdc.gov/syndication/api.aspx", "apiType": "REST"} ["none"] http://www.cdc.gov/Other/imagereuse.html [] unknown yes [] [] {"syndication": "http://www2c.cdc.gov/podcasts/rss.asp", "syndicationType": "RSS"} The Centers for Disease Control and Prevention (CDC), a part of the U.S. Department of Health and Human Services, is the primary Federal agency for conducting and supporting public health activities in the United States. CDC’s focus is not only on scientific excellence but also on the essential spirit that is CDC – to protect the health of all people. CDC keeps humanity at the forefront of its mission to ensure health protection through promotion, prevention, and preparedness. Composed of the Office of the Director, the National Institute for Occupational Safety and Health, Center for Global Health, and five Offices, including Public Health Preparedness and Response; State and Local Support; Surveillance, Epidemiology and Laboratory Services; Noncommunicable Diseases, Injury and Environmental Health; and Infectious Diseases. CDC employs more than 15,000 employees in more than 50 countries and in 168 occupational categories. 2013-01-09 2017-04-06 +r3d100010199 Environmental Information Data Centre eng [{"additionalName": "EIDC", "additionalNameLanguage": "eng"}] https://eidc.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.f7hyf3"] ["info@eidc.ac.uk"] The Environmental Information Data Centre (EIDC) is part of the Natural Environment Research Council's (NERC) Environmental Data Service and is hosted by the UK Centre for Ecology & Hydrology (UKCEH). We manage nationally-important datasets concerned with the terrestrial and freshwater sciences. eng ["disciplinary"] {"size": "1.441 records", "updatedp": "2021-04-15"} 1994 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://eidc.ac.uk/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "atmospheric pollution", "biodiversity", "ecology", "environmental informatics", "environmental monitoring", "flood estimation", "flood prediction", "hydrology", "land cover", "land use", "modelling"] [{"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:015byt818", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "1994", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Centre for Ecology & Hydrology", "institutionAdditionalName": ["UKCEH"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceh.ac.uk/", "institutionIdentifier": ["ROR:00pggkr55"], "responsibilityStartDate": "1994", "responsibilityEndDate": "", "institutionContact": ["enquiries@ceh.ac.uk"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/08/Environmental-Information-Data-Centre.pdf"}, {"policyName": "EIDC policies", "policyURL": "https://eidc.ac.uk/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://eidc.ceh.ac.uk/licences/OGL"}, {"dataLicenseName": "other", "dataLicenseURL": "http://eidc.ceh.ac.uk/administration-folder/tools/ceh-standard-licence-texts/standard-click-through"}] restricted [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "http://eidc.ac.uk/deposit"}] ["other"] {"api": "https://catalogue.ceh.ac.uk/documents/gemini/waf/", "apiType": "other"} ["DOI"] https://eidc.ac.uk/citing-data ["ORCID"] unknown yes ["other", "WDS"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The EIDC is covered by Clarivate Data Citation Index. is covered by Elsevier. The Environmental Information Data Centre (EIDC) is part of the Natural Environment Research Council's (NERC) Environmental Data Service. The EIDC's host institution (UKCEH) is a member of PEER (the Partnership for European Environmental Research). 2013-02-06 2021-09-02 +r3d100010200 United States Census Bureau eng [{"additionalName": "U.S.Census Bureau", "additionalNameLanguage": "eng"}] https://www.census.gov/ ["RRID:SCR_011587", "RRID:nlx_151862"] ["https://www.census.gov/about/contact-us.html", "pio@census.gov"] The United States Census Bureau (officially the Bureau of the Census, as defined in Title 13 U.S.C. § 11) is the government agency that is responsible for the United States Census. It also gathers other national demographic and economic data. As a part of the United States Department of Commerce, the Census Bureau serves as a leading source of data about America's people and economy. The most visible role of the Census Bureau is to perform the official decennial (every 10 years) count of people living in the U.S. The most important result is the reallocation of the number of seats each state is allowed in the House of Representatives, but the results also affect a range of government programs received by each state. The agency director is a political appointee selected by the President of the United States. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.census.gov/about/what.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["age and sex", "age search service", "american community survey", "census of governments", "death", "economic census", "economic indicators", "education", "genealogy", "immigration", "income", "industry and occupation", "migration", "neighborhood improvements", "population & housing census", "poverty", "public health", "school districts and enrollment", "social commitment", "statistics", "transportation"] [{"institutionName": "U.S Department of Commerce, Bureau of Census", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.census.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.census.gov/about/contact-us.html"]}] [{"policyName": "Data Protection and Privacy", "policyURL": "https://www.census.gov/privacy/"}, {"policyName": "FOIA", "policyURL": "https://www.census.gov/about/policies/foia.html"}, {"policyName": "Policies and Notices", "policyURL": "https://www.census.gov/about/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.census.gov/privacy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.census.gov/quality/"}] restricted [] ["unknown"] {"api": "http://www2.census.gov/", "apiType": "FTP"} ["none"] https://www.census.gov/about/policies/citation.html [] unknown yes [] [] {"syndication": "https://www.census.gov/about/contact-us/feeds.html", "syndicationType": "RSS"} Our Authority: The United States Census Bureau operates under Title 13 and Title 26, of the U.S. Code. Our Goal: To provide the best mix of timeliness, relevancy, quality, and cost for the data we collect and services we provide. 2013-02-08 2021-06-29 +r3d100010201 LMU-ifo Economics & Business Data Center eng [{"additionalName": "EBDC", "additionalNameLanguage": "eng"}] http://www.cesifo-group.de/ifoHome/facts/EBDC.html [] ["http://www.cesifo-group.de/ifoHome/facts/EBDC/Team.html", "ifo@ifo.de"] The Economics & Business Data Center (EBDC) is a combined platform for empirical research in business administration and economics of the Ludwig–Maximilian University of Munich (LMU) and the Ifo Institute and aims at opening new fields for empirical research in business administration and economics. In this regard, the EBDC provides innovative datasets of German companies, containing both survey data of the Ifo Institute as well as external balance sheet data. Therefore, the tasks of the EBDC also include the procurement and administration of data sources for research and teaching, the central provision, updating and documentation of external databases, as well as the acquisition of corresponding support tools. Beyond that, the EBDC serves as a contact and central coordinator on licensing economic firm-level datasets for LMU’s Munich School of Management and LMU’s Department of Economics and supports researchers and guests of the LMU and the Ifo Institute on site. In the future, it will also conduct academic conferences on research with company data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.cesifo-group.de/ifoHome/facts/EBDC.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["business", "census data", "human capital", "industial organisation", "international trade", "investment survey", "manager survey", "public finance", "social policy", "statistics"] [{"institutionName": "CESifo Group Munich", "institutionAdditionalName": ["CESifo GmbH", "M\u00fcnchener Gesellschaft zur F\u00f6rderung der Wirtschaftswissenschaft - CESifo GmbH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cesifo-group.de/de/ifoHome.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cesifo-group.de/ifoHome/CESifo-Group/Contact.html"]}, {"institutionName": "Ludwig-Maximilians Universit\u00e4t M\u00fcnchen", "institutionAdditionalName": ["LMU"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.uni-muenchen.de/index.html", "institutionIdentifier": ["RRID:SCR_011358", "RRID:nlx_28705"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "http://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Privacy policy and data protection", "policyURL": "http://www.cesifo-group.de/de/ifoHome/Legal/Datenschutz.html"}, {"policyName": "access concept", "policyURL": "http://www.cesifo-group.de/de/ifoHome/facts/EBDC/Access-Concept.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cesifo-group.de/de/ifoHome/Legal/Impressum.html"}] restricted [] ["unknown"] {} ["DOI"] http://www.cesifo-group.de/de/ifoHome/facts/EBDC/Ifo-DataPool/protection-of-survey-data.html [] unknown yes ["RatSWD"] [] {"syndication": "http://www.cesifo-group.de/all_de.rss", "syndicationType": "RSS"} LMU-ifo Economics & Business Data Center (EBDC) is covered by Thomson Reuters Data Citation Index. The Economics and Business Data Center is supported by the Exzellenzinitiative of the Federal Ministry of Education and Research (within the “LMUExcellent” program) and was founded in 2008. In spring 2011 it received accreditation as a research data centre of the Rat für Sozial- und Wirtschaftsdaten. // The CESifo Group, consisting of the Center for Economic Studies (CES), the Ifo Institute and the CESifo GmbH (Munich Society for the Promotion of Economic Research) is a research group unique in Europe in the area of economic research. It combines the theoretically oriented economic research of the university with the empirical work of a leading Economic research institute and places this combination in an international environment. 2013-02-11 2021-06-29 +r3d100010202 CESSDA ERIC eng [{"additionalName": "CESSDA European Research Infrastructure Consortium", "additionalNameLanguage": "eng"}, {"additionalName": "Consortium of European Social Science Data Archives European Research Infrastructure", "additionalNameLanguage": "eng"}, {"additionalName": "Council of European Social Science Data Archives European Research Infrastructure", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CESSDA", "additionalNameLanguage": "eng"}] https://www.cessda.eu/ [] ["cessda@cessda.eu"] CESSDA catalogue provides access to the national social science data archives of the CESSDA members across Europe. Having evolved from a network of European data service providers into a legal entity and large-scale infrastructure under the auspices of the European Strategy Forum on Research Infrastructures (ESFRI) it became an ERIC (European Research Infrastructure) in June 2017. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.cessda.eu/About/Mission-Vision [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "census data", "elections", "macro data", "micro data", "population", "statistics"] [{"institutionName": "CESSDA Consortium", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/Consortium", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CESSDA Team", "institutionAdditionalName": ["Council of European Social Science Data", "cessda"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/About/Team", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["cessda@cessda.eu"]}] [{"policyName": "Access and re-use", "policyURL": "https://www.cessda.eu/content/download/500/4485/file/CESSDA%20User%20Guide%20for%20digital%20preservation_5_Access%20and%20reuse.pdf"}, {"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "OECD Principles and Guidelines for Access to Research Data from Public Funding", "policyURL": "http://www.oecd.org/sti/sci-tech/38500813.pdf"}, {"policyName": "Statutes for CESSDA", "policyURL": "https://www.cessda.eu/content/download/1466/20924/file/STATUTES%20of%20CESSDA%20ERIC_2017.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cessda.eu/content/download/500/4485/file/CESSDA%20User%20Guide%20for%20digital%20preservation_5_Access%20and%20reuse.pdf"}] restricted [] ["unknown"] {} ["DOI"] https://www.cessda.eu/Training/Training-Resources/Library/Data-Management-Expert-Guide/6.-Archive-Publish/Publishing-with-CESSDA-archives/Citing-your-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} CESSDA was an umbrella organisation for European social science data archives and provides a seamless interface to datasets from social science data archives across Europe. CESSDA moved into a new organisation known as CESSDA European Research Infrastructure Consortium (CESSDA ERIC). // Data Catalogue : At CESSDA, we are working on building a new and improved Products and Services Catalogue, as part of a wide-ranging plan to establish a common infrastructure for CESSDA members. It is due to go into service in late 2017/early 2018: https://www.cessda.eu/Research-Infrastructure/Products-Services In the meantime, we would kindly like to ask researchers to go directly to the data sources hosted by the Service Providers listed below and search for data there https://www.cessda.eu/Consortium 2013-02-07 2019-08-07 +r3d100010203 IAU Minor Planet Center eng [{"additionalName": "MPC", "additionalNameLanguage": "eng"}] https://www.minorplanetcenter.net/ [] ["https://www.minorplanetcenter.net/contact"] The MPC is responsible for the designation of minor bodies in the solar system: minor planets; comets, in conjunction with the Central Bureau for Astronomical Telegrams (CBAT); and natural satellites (also in conjunction with CBAT). The MPC is also responsible for the efficient collection, computation, checking and dissemination of astrometric observations and orbits for minor planets and comets eng ["disciplinary", "institutional"] {"size": "19.060 near-earth objects; 789.069 minor planets; 4.026 comets; 199.7 million observations,", "updatedp": "2018-11-08"} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.minorplanetcenter.net/iau/mpc.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["asteroids", "centaur objects", "comets", "near-earth objects", "transneptunian objects"] [{"institutionName": "Harvard-Smithsonian Center for Astrophysics, Smithsonian Astrophysical Observatory", "institutionAdditionalName": ["SAO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/sao/", "institutionIdentifier": ["ROR:04mh52z70"], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "IAU Minor Planet Center", "institutionAdditionalName": ["MPC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.minorplanetcenter.net/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://www.minorplanetcenter.net/contact"]}, {"institutionName": "International Astronomical Union", "institutionAdditionalName": ["IAU"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iau.org/", "institutionIdentifier": ["ROR:05nex2951"], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://www.iau.org/administration/secretariat/"]}, {"institutionName": "International Astronomical Union , Central Bureau for Astronomical Telegrams", "institutionAdditionalName": ["IAU, CBAT"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cbat.eps.harvard.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Center for Near Earth Object Studies", "institutionAdditionalName": ["CNEOS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cneos.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://cneos.jpl.nasa.gov/contact/"]}, {"institutionName": "Tamkin Foundation", "institutionAdditionalName": ["Tamkin Computer Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.minorplanetcenter.net/iau/Ack/TamkinFoundation.html", "institutionIdentifier": ["ROR:02r88m968"], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "World-wide web policy", "policyURL": "https://www.minorplanetcenter.net/iau/WWWPolicy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.minorplanetcenter.net/iau/WWWPolicy.html"}] restricted [{"dataUploadLicenseName": "MPC submission information", "dataUploadLicenseURL": "https://www.minorplanetcenter.net/iau/info/TechInfo.html"}] ["other"] yes {"api": "https://www.minorplanetcenter.net/iau/MPC_Documentation.html", "apiType": "FTP"} ["none"] http://www.minorplanetcenter.net/iau/info/Astrometry.html#cit [] unknown unknown [] [] {"syndication": "https://minorplanetcenter.net/iau/rss/mpc_feeds.html", "syndicationType": "RSS"} The Minor Planet Center (MPC) operates at the Smithsonian Astrophysical Observatory (SAO), under the auspices of Division III of the International Astronomical Union (IAU). The Minor Planet Center derives its operating budget from a five-year NASA grant 2013-02-07 2021-09-02 +r3d100010204 China Forestry Scientific Data Center zho [{"additionalName": "CFSDC", "additionalNameLanguage": "zho"}] http://www.forestdata.cn/ [] ["webmaster@forestdata.cn"] China’s digital forestry information platform was constructed according to the criteria and index system of forest sustainable management. the relative social, economic, and politic data was considered and collected, the database represents not only the current forestry development, but also the social, politic, and economic situations. zho ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.forestdata.cn/web/zhuye/recDetail.jsp?coteid=0016332528642344&id=86&homeid=home4 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Ecological environment", "Forest conservation", "Forest cultivation", "Forest resources", "Industry development", "Wood Science"] [{"institutionName": "Chinese Academy of Forestry", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caf.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["webmaster@cfsdc.org"]}] [{"policyName": "Web site management agreement", "policyURL": "http://www.forestdata.cn/web/module_reg/index.jsp?homeid=home4&Action=add"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.forestdata.cn/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.forestdata.cn/web/module_reg/index.jsp?homeid=home4&Action=add"}] restricted [] [] yes {} [] [] yes yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2013-02-11 2021-08-25 +r3d100010205 ChemSpider eng [{"additionalName": "Search and share chemistry", "additionalNameLanguage": "eng"}] http://www.chemspider.com/ ["RRID:SCR_006360", "RRID:nlx_152101"] ["chemspider@rsc.org", "http://www.chemspider.com/Contact.aspx"] ChemSpider is a free chemical structure database providing fast access to over 58 million structures, properties and associated information. By integrating and linking compounds from more than 400 data sources, ChemSpider enables researchers to discover the most comprehensive view of freely available chemical data from a single online search. It is owned by the Royal Society of Chemistry. ChemSpider builds on the collected sources by adding additional properties, related information and links back to original data sources. ChemSpider offers text and structure searching to find compounds of interest and provides unique services to improve this data by curation and annotation and to integrate it with users’ applications. eng ["disciplinary"] {"size": "68 million chemical structures; 255 data sources", "updatedp": "2018-11-08"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.chemspider.com/About.aspx [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["analytical data", "chemical structures", "chemicals", "compounds", "data structure", "molecules", "reactions", "spectra", "synthetic chemistry"] [{"institutionName": "Agilent Technologies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.agilent.de/about/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Society of Chemistry", "institutionAdditionalName": ["RSC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.rsc.org/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["chemspider@rsc.org", "http://www.chemspider.com/Contact.aspx"]}, {"institutionName": "Syynthonix", "institutionAdditionalName": ["Elements of progresss"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://synthonix.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ThermoFisher Scientific", "institutionAdditionalName": ["Thermo Scientific (formerly)"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.thermofisher.com/de/de/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Waters", "institutionAdditionalName": ["The science of what's possible"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.waters.com/waters/home.htm?locale=de_DE", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "epam", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.epam.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.rsc.org/help-legal/legal/terms-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.rsc.org/help-legal/legal/copyright-permissions/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.rsc.org/help-legal/legal/copyright-permissions/"}] restricted [{"dataUploadLicenseName": "How do I Deposit a Single Structure", "dataUploadLicenseURL": "http://www.chemspider.com/help_depositstructures.aspx"}] ["unknown"] {"api": "http://www.chemspider.com/AboutServices.aspx", "apiType": "other"} ["none"] http://www.chemspider.com/FAQ.aspx [] unknown yes [] [] {"syndication": "http://feeds.feedburner.com/ChemspiderBlog", "syndicationType": "RSS"} The IUPAC International Chemical Identifer (InChl, pronaunced INchee, is a textural identifier for chemical stubstances. The format and algorithms are none-proprietary and the software is freely availableunter the open source LGPL license. ChemSpider was acquired by the Royal Society of Chemistry in May, 2009. Prior to the acquisition by RSC, ChemSpider was controlled by a private corporation, ChemZoo Inc. The system was first launched in March 2007 in a beta release form and transitioned to release in March 2008. ChemSpider has expanded the generic support of a chemistry database to include support of the Wikipedia chemical structure collection via their WiChempedia implementation. ChemSpider SyntheticPages is a freely available interactive database of synthetic chemistry. It contains practical and reliable organic, organometallic and inorganic chemical synthesis, reactions and procedures deposited by synthetic chemists. // PAM Systems, Inc. (NYSE:EPAM), a leading provider of product development and software engineering solutions known for its award-winning Central and Eastern European global delivery platform, announced that it has acquired GGA Software Services LLC, a US-based provider of scientific informatics services to global pharmaceutical, scientific instrumentation, medical device, scientific publishing and software, and early-stage life science companies. 2013-02-11 2018-11-08 +r3d100010206 ChemSynthesis eng [{"additionalName": "Chemical database", "additionalNameLanguage": "eng"}] http://www.chemsynthesis.com/ [] ["chembase@chemsynthesis.com"] ChemSynthesis is a freely accessible database of chemicals. This website contains substances with their synthesis references and physical properties such as melting point, boiling point and density. There are currently more than 40,000 compounds and more than 45,000 synthesis references in the database. eng ["disciplinary"] {"size": "40.000 compounds, 45.000 synthesis references", "updatedp": "2018-11-09"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.chemsynthesis.com/about.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["chemical structures", "compounds", "synthesis references"] [{"institutionName": "ChemSynthesis support team", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.chemsynthesis.com/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["chembase@chemsynthesis.com"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.chemsynthesis.com/about.html"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-02-11 2018-12-11 +r3d100010207 Center for International Earth Science Information Network eng [{"additionalName": "CIESIN", "additionalNameLanguage": "eng"}] http://www.ciesin.columbia.edu/data.html [] ["ciesin.info@ciesin.columbia.edu", "http://www.ciesin.columbia.edu/contact.html"] CIESIN is an interdisciplinary research and data center that provides access to a wide range of global data, associated documentation, and visualization and analysis tools to improve understanding of human interactions in the environment. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40903 Operating, Communication and Information Systems", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.ciesin.columbia.edu/aboutus.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GIS", "census data", "climate change", "database design", "digital archiving", "ecology", "environmental assessment", "environmental health", "environmental indicators", "environmental treaties", "global environmental change", "land use", "media design", "metadata management", "natural hazards", "natural hazards", "population", "poverty", "remote sensing", "software development", "web design"] [{"institutionName": "Columbia University, Earth Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://earth.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["http://www.ciesin.columbia.edu/contact.html"]}] [{"policyName": "Policies", "policyURL": "http://www.ciesin.columbia.edu/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ciesin.columbia.edu/documents/CIESINDataInfoMgtPolicy.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ciesin.columbia.edu/documents/CIESINDataPolicy.pdf"}] restricted [] ["Fedora"] yes {} ["DOI"] http://sedac.ciesin.columbia.edu/metadata/guide/citation.html [] yes yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://www.ciesin.columbia.edu/rest/rss/ciesinnews", "syndicationType": "RSS"} 2012-02-11 2021-06-29 +r3d100010208 The SuiteSparse Matrix Collection eng [{"additionalName": "The University of Florida Sparse Matrix Collection (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "UFL, Sparse Matrix Collection", "additionalNameLanguage": "eng"}] https://sparse.tamu.edu [] ["http://faculty.cse.tamu.edu/davis/background.html"] The SuiteSparse Matrix Collection is a large and actively growing set of sparse matrices that arise in real applications. The Collection is widely used by the numerical linear algebra community for the development and performance evaluation of sparse matrix algorithms. It allows for robust and repeatable experiments. Its matrices cover a wide spectrum of domains, include those arising from problems with underlying 2D or 3D geometry (as structural engineering, computational fluid dynamics, model reduction, electromagnetics, semiconductor devices, thermodynamics, materials, acoustics, computer graphics/vision, robotics/kinematics, and other discretizations) and those that typically do not have such geometry (optimization, circuit simulation, economic and financial modeling, theoretical and quantum chemistry, chemical process simulation, mathematics and statistics, power networks, and other networks and graphs. eng ["disciplinary"] {"size": "2.856 matrices", "updatedp": "2020-02-17"} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}] https://sparse.tamu.edu/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["algorithm analysis", "algorithms", "discrete mathematics", "experimentation", "graph drawing", "graph theory", "mathematical software", "mathematics of computing", "multilevel algorithms", "numerical analysis", "numerical linear algebra", "performance", "performance evaluation", "sparse matrices"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Texas A&M University", "institutionAdditionalName": ["ATM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tamu.edu/", "institutionIdentifier": ["ROR:01f5ytq51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://faculty.cse.tamu.edu/davis/welcome.html"]}, {"institutionName": "University of Florida, Department of Computer and Information Science and Engineering", "institutionAdditionalName": ["CISE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cise.ufl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["DrTimothyAldenDavis@gmail.com", "http://www.cise.ufl.edu/~davis/background.html"]}] [{"policyName": "Policies & Statements", "policyURL": "https://www.tamu.edu/statements/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://sparse.tamu.edu/submit"}] restricted [] ["other"] yes {"api": "https://sparse.tamu.edu/interfaces", "apiType": "other"} ["none"] https://sparse.tamu.edu/about [] unknown yes [] [] {} SuiteSparse Matrix Collection is covered by Clarivate Data Citation Index. The SuiteSparse Matrix Collection (formerly known as the University of Florida Sparse Matrix Collection) I am now at Texas A&M University, with a home page of http://faculty.cse.tamu.edu/davis. The UF Sparse Matrix Collection is still hosted at this site by the University of Florida. It will soon be hosted at a new primary wev site at Texas A&M University (See: https://sparse.tamu.edu ); this site will continue to be maintained and kept up to date as a mirror. My SuiteSparse package of sparse matrix solvers is hosted at suitesparse.com // We provide software for accessing and managing the Collection, from MATLABTM, MathematicaTM, Fortran, and C, as well as an online search capability. Graph visualization of the matrices is provided, and a new multilevel coarsening scheme is proposed to facilitate this task. The collection also appears as a Public Data Set hosted by Amazon Web Services, at aws.amazon.com This collection is managed by Tim Davis (University of Florida, Department of Computer and Information Science and Engineering) , with images created by Yifan Hu (AT&T Labs Research). // The University of Florida Sparse Matrix Collection is covered by Thomson Reuters Data Citation Index. 2013-02-12 2020-02-17 +r3d100010209 CLARIN-ERIC eng [{"additionalName": "Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium", "additionalNameLanguage": "eng"}, {"additionalName": "European Research Infrastructure for Language Resources and Technology", "additionalNameLanguage": "eng"}] https://www.clarin.eu/ [] ["clarin@clarin.eu"] CLARIN is a European Research Infrastructure for the Humanities and Social Sciences, focusing on language resources (data and tools). It is being implemented and constantly improved at leading institutions in a large and growing number of European countries, aiming at improving Europe's multi-linguality competence. CLARIN provides several services, such as access to language data and tools to analyze data, and offers to deposit research data, as well as direct access to knowledge about relevant topics in relation to (research on and with) language resources. The main tool is the 'Virtual Language Observatory' providing metadata and access to the different national CLARIN centers and their data. eng ["disciplinary"] {"size": "944.380 records", "updatedp": "2016-01-29"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.clarin.eu/content/mission-and-strategy [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["computer-aided language processing", "improvement of standards", "language processing problems", "language resource maintenance", "language resources", "linguistic integration", "multicultural heritage", "multilingual heritage"] [{"institutionName": "CLARIN ERIC Centres", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/content/overview-clarin-centres", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin@clarin.eu"]}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/participants/portal/desktop/en/support/research_enquiry_service.html"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "2010", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en"]}, {"institutionName": "Utrecht University, CLARIN ERIC Office", "institutionAdditionalName": ["CLARIN ERIC Office"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uu.nl/en/news/franciska-de-jong-new-executive-director-clarin-eric", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin@clarin.eu", "https://www.clarin.eu/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://kitwiki.csc.fi/twiki/pub/FinCLARIN/ClarinSA/CLARIN-TOS-2014-10.rtf"}, {"policyName": "Terms of use and disclaimer", "policyURL": "https://www.clarin.eu/node/3760"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/zero/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.eu/content/clarin-licensing-framework"}] restricted [{"dataUploadLicenseName": "Depositing Services", "dataUploadLicenseURL": "https://www.clarin.eu/node/3773"}, {"dataUploadLicenseName": "Deposition License Agreements", "dataUploadLicenseURL": "https://www.clarin.eu/content/licenses-agreements-legal-terms"}] ["unknown"] yes {"api": "https://www.clarin.eu/faq-page/275#t275n2858", "apiType": "OAI-PMH"} ["hdl"] https://www.clarin.eu/faq-page/258#t258n3872 [] unknown yes [] [] {"syndication": "http://www.clarin.eu/rss/news", "syndicationType": "RSS"} CLARIN-ERIC is a network memeber of ICSU World Data System. Letter of Agreement is pending (08.01.2019). In 2012 CLARIN gets ERIC status.CLARIN, the pan-European Common Language Resources and Technology Infrastructure, is the second European research infrastructure to be granted with ERIC status. Eight countries are committed to the setting up of CLARIN-ERIC: Austria, Bulgaria, the Czech Republic, Denmark, Estonia, Germany, Poland, and the Netherlands. The Dutch Language Union completes the list of founding members. CLARIN-ERIC will be hosted in Utrecht, the Netherlands. The “European Strategy Forum for Research Infrastructures” (ESFRI) has emphasised the importance of CLARIN by including the project in its Roadmap 2006. This also comprises four other important initiatives in the arts and humanities and social studies, including a similar proposal for a data infrastructure for the social sciences (CESSDA ERIC Major Upgrade) and for the arts and humanities (DARIAH). In the preparatory phase (2008-2010) CLARIN is funded by the EU through the 7th Framework ESFRI programme. One of the objectives of the preparatory phase is to come with cost estimations for the construction and exploitation phase. The main funders will then be the national governments, with a possible minor contribution from the EU for some generic costs of the infrastructure. Clarin members: https://www.clarin.eu/content/about-eric. // CLARIN offers two central resource discovery tools, (1) the metadata-based Virtual Language Observatory which lists hundreds of thousands of individual resources, not only at CLARIN centres, and (2) the Federated Content Search, which allows searching WITHIN resources at CLARIN centres. 2013-02-12 2019-01-08 +r3d100010210 Historical Climate Data Canada eng [{"additionalName": "Donn\u00e9es climatiques historiques", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: Archives nationales d'information et de donn\u00e9es climatologiques", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: National Climate Data and Information Archive", "additionalNameLanguage": "eng"}] http://climate.weather.gc.ca/ [] ["http://climate.weather.gc.ca/contactus/contact_us_e.html"] Historical Climate Data (formerly: The National Climate Data and Information Archive - NCDC) is a web-based resource maintained by Environment and Climate Change Canada and the Meteorological Service of Canada. The site houses a number of statistical and data compilation and viewing tools. From the website, users can access historical climate data for Canadian locations and dates, view climate normals and averages, and climate summaries. A list of Canadian air stations and their meteorological reports and activities is also available, along with rainfall statistics for more than 500 locations across Canada. Users can also download the Canadian daily climate data for 2006/07. In addition, technical documentation is offered for data users to interpret the available data. Other documentation includes a catalogue of Canadian weather reporting stations, a glossary, and a calculation of the 1971 to 2000 climate normals for Canada. This resource carries authority and accuracy because it is maintained by a national government department and service. While the majority of the statistics are historical, the data is up-to-date and contains current and fairly recent climate data. This government resource is intended for an audience that has the ability and knowledge to interpret climatological data eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmospheric pressure", "cloud types", "evaporation", "meteorology", "occurrences of thunderstorms", "precipitation", "soil temperature", "solar radiation", "temperature", "weather phenomena", "wind speed"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["GOC", "Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://weather.gc.ca/mainmenu/contact_us_e.html"]}] [{"policyName": "Acts and regulations", "policyURL": "https://www.canada.ca/en/environment-climate-change/corporate/acts-regulations.html"}, {"policyName": "License Agreement for Use of Environment and Climate Change Canada Data", "policyURL": "http://climate.weather.gc.ca/prods_servs/attachment1_e.html"}, {"policyName": "Terms and conditions of use of Meteorological Data", "policyURL": "https://weather.gc.ca/mainmenu/disclaimer_e.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://climate.weather.gc.ca/prods_servs/attachment1_e.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dd.weatheroffice.gc.ca/doc/LICENCE_GENERAL.txt"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://weather.gc.ca/business/index_e.html#rss", "syndicationType": "ATOM"} There is a charge of customized datasets and various resources because of limited resources by the Environment and Climate Chance Canada, a government department. --- Actual weather of Canada see "Canadian weather" : https://weather.gc.ca/canada_e.html#weather-topics 2013-02-12 2018-11-09 +r3d100010211 ClinicalTrials.gov eng [{"additionalName": "A service of the U.S. National Institutes of Health", "additionalNameLanguage": "eng"}] https://clinicaltrials.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.mewhad", "OMICS_01792", "RRID:SCR_002309", "nif-0000-21091"] ["register@clinicaltrials.gov"] ClinicalTrials.gov (Clinical trials) is a registry and results database of publicly and privately supported clinical studies of human participants conducted around the world. eng ["disciplinary"] {"size": "289.227", "updatedp": "2018-11-09"} 2000-02-29 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] tps://www.clinicaltrials.gov/ct2/about-site/terms-conditions [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "behavioral", "clinical research", "clinical studies", "clinical trial", "clinical trial", "drug", "observation", "therapy"] [{"institutionName": "HHS.gov", "institutionAdditionalName": ["U.S. Department of Health & Human Services"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lister Hill National Center for Biomedical Communications", "institutionAdditionalName": ["LHNCBC"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.lhncbc.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lhncbc.nlm.nih.gov/contact-us"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2000-02-29", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.clinicaltrials.gov/ct2/about-site/terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://clinicaltrials.gov/ct2/about-site/terms-conditions#Use"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] restricted [{"dataUploadLicenseName": "ClinicalTrials.gov Submissions", "dataUploadLicenseURL": "https://clinicaltrials.gov/ct2/manage-recs/fdaaa"}] ["unknown"] yes {"api": "https://documentation.uts.nlm.nih.gov/", "apiType": "REST"} ["none"] http://www.who.int/ictrp/How_to_cite.pdf [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.clinicaltrials.gov/ct2/resources/rss", "syndicationType": "RSS"} is covered by Elsevier. This Web site and database of clinical studies is commonly referred to as a "registry" and "results database. 2013-02-07 2021-09-02 +r3d100010212 Constrained Local UniversE Simulations eng [{"additionalName": "CLUES", "additionalNameLanguage": "eng"}] https://www.clues-project.org/cms/ [] ["henke@aip. de"] The main goal of the CLUES-project is to provide constrained simulations of the local universe designed to be used as a numerical laboratory of the current paradigm. The simulations will be used for unprecedented analysis of the complex dark matter and gasdynamical processes which govern the formation of galaxies. The predictions of these experiments can be easily compared with the detailed observations of our galactic neighborhood. Some of the CLUES data is now publicly available via the CosmoSim database (https://www.cosmosim.org/). This includes AHF halo catalogues from the Box 64, WMAP3 resimulations of the Local Group with 40963 particle resolution. eng ["disciplinary"] {"size": "86 analysis and simulation data sets", "updatedp": "2018-11-09"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.clues-project.org/cms/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Andromeda Galaxy", "Fermi satellite", "Milky Way", "cosmology", "galaxies", "simulations", "warm dark matter"] [{"institutionName": "Centro Nacional de Supercomputacion", "institutionAdditionalName": ["Barcelona Supercomputing Center"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.bsc.es/", "institutionIdentifier": ["ROR:05sd8tv96"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Elektronen-Synchrotron DESY", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.desy.de/", "institutionIdentifier": ["ROR:01js2sh04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GSI Helmholtzzentrum f\u00fcr Schwerionenforschung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gsi.de/start/aktuelles", "institutionIdentifier": ["ROR:02k8cbn47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "John von Neumann Institut f\u00fcr Computing", "institutionAdditionalName": ["NIC"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.john-von-neumann-institut.de/nic/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02zmk8084"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["API"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.aip.de/en", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["sgottloeber@aip.de"]}, {"institutionName": "Leibniz-Rechenzentrum", "institutionAdditionalName": ["LRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lrz.de/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Hebrew University of Jerusalem, The Racah Institute of Physics", "institutionAdditionalName": [], "institutionCountry": "ISR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://phys.huji.ac.il/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["hoffman@huji.ac.il"]}, {"institutionName": "The New Mexico State University, College of Arts and Sciences, Department of Astronomy", "institutionAdditionalName": ["NMSU Astronomy"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://astronomy.nmsu.edu", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["aklypin@nmsu.edu"]}, {"institutionName": "Universidad Autonomica de Madrid, Grupo de Astrofisica", "institutionAdditionalName": ["UAM"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://astro.ft.uam.es/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["gustavo.yepes@uam.es"]}] [{"policyName": "AIP imprint", "policyURL": "http://www.aip.de/de/impressum"}, {"policyName": "Data access", "policyURL": "https://www.cosmosim.org/cms/documentation/data-access/"}, {"policyName": "Imprint & Data Protection Statement", "policyURL": "https://www.cosmosim.org/cms/imprint/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.aip.de/de/impressum"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.clues-project.org/cms/images-and-movies/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.aip.de/de/institut/facilities/it-service/richtlinien/usage-of-the-data-access-service"}] restricted [] ["unknown"] {} ["other"] https://www.cosmosim.org/cms/documentation/projects/multidark-bolshoi-project/ [] unknown yes [] [] {} Part of the data are located on Erebos, the data storage machine of the AIP. simulations are performed within the international CLUES project at supercomputing centers in Jülich, Munich and Barcelona 2013-05-13 2021-08-24 +r3d100010213 Crystallography Open Database eng [{"additionalName": "COD", "additionalNameLanguage": "eng"}] http://www.crystallography.net/cod/ ["FAIRsharing_doi:10.25504/FAIRsharing.7mm5g5", "RRID:SCR_005874", "RRID:nlx_149430"] ["cod-bugs@ibt.lt", "http://www.ch.cam.ac.uk/person/pm286"] Including data and software from CrystalEye is this a open-access collection of crystal structures of organic, inorganic, metal-organic compounds and minerals, excluding biopolymers. At present, this is the most comprehensive open resource for small molecule structures, freely available to all scientists in Lithuania and worldwide. Including data and software from CrystalEye, developed by Nick Day at the department of Chemistry, the University of Cambridge under supervision of Peter Murray-Rust. eng ["disciplinary"] {"size": "400.188 entries", "updatedp": "2018-11-09"} 2003-03-5 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://wiki.crystallography.net/howtoobtaincod/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["crystal structure", "inorganic compounds", "metal-organic compound", "minerals", "organic compounds", "polymer", "polymorphism"] [{"institutionName": "European journal of mineralogy", "institutionAdditionalName": ["EJM"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.schweizerbart.de/journals/ejm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Union of Crystallography", "institutionAdditionalName": ["IUCr"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iucr.org", "institutionIdentifier": ["ROR:00vdend65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mineralogical Society of America", "institutionAdditionalName": ["MSA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.minsocam.org", "institutionIdentifier": ["ROR:04zyakw81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mineralogical Society of Canada", "institutionAdditionalName": ["MAC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mineralogicalassociation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Council of Lithuania", "institutionAdditionalName": ["Lietuvos mokslo taryba"], "institutionCountry": "LTU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lmt.lt/en/", "institutionIdentifier": ["ROR:02gs16m83"], "responsibilityStartDate": "2010", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "University of Vilnius, Institute of Biotechnology, COD Advisory Board", "institutionAdditionalName": ["Vilniaus Universitetas, Biotechnologijos institutas"], "institutionCountry": "LTU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ibt.lt/en/laboratories/department-of-protein---dna-interactions/projects/cod_en.html", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["cod-bugs@ibt.lt"]}] [{"policyName": "COD redeposition policy", "policyURL": "http://wiki.crystallography.net/codredepositionpolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wiki.crystallography.net/howtoobtaincod/"}] restricted [{"dataUploadLicenseName": "How to deposit your data to the COD", "dataUploadLicenseURL": "http://wiki.crystallography.net/depositingtocod/"}] ["MySQL"] yes {"api": "http://wiki.crystallography.net/RESTful_API/", "apiType": "REST"} [] http://wiki.crystallography.net/cod/citing/ [] no yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}] {"syndication": "http://wiki.crystallography.net/recentchanges/index.atom", "syndicationType": "ATOM"} COD is covered by Thomson Reuters Data Citation Index. Most of the mineral data is obtained from the American Mineralogist Crystal Structure Database (AMCSD) r3d10010765, donated by its maintainer and COD co-founder Robert M. Downs. Structures of biological macromolecules are available at the PDB, re3data100010327. The database was founded by Armel Le Bail, Lachlan Cranswick, Michael Berndt, Luca Lutterotti and Robert M. Downs in February 2003 as a response to Michael Berndt’s letter published in the Structure Determination by Powder Diffractometry (SDPD) mailing list. Since December 2007 the main database server is maintained and new software is developed in the Vilnius University Institute of Biotechnology by Saulius Gražulis and Andrius Merkys, and has now over 200 thousand records describing structures published in major crystallographic and chemical peer-reviewed journals. Content of Crystaleye has moved to Crystallography Open Database. 2013-02-22 2021-09-02 +r3d100010214 EASY eng [{"additionalName": "DANS-EASY", "additionalNameLanguage": "eng"}, {"additionalName": "Electronic Archiving System", "additionalNameLanguage": "eng"}] https://easy.dans.knaw.nl/ui/home [] ["info@dans.knaw.nl"] EASY is the online archiving system of Data Archiving and Networked Services (DANS). EASY offers you access to thousands of datasets in the humanities, the social sciences and other disciplines. EASY can also be used for the online depositing of research data. eng ["other"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dans.knaw.nl/en/about/services [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["archaeology", "behavioural sciences", "geospatial", "geospatial sciences", "historical sciences", "oral history", "social sciences"] [{"institutionName": "CLARIAH", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/nl", "institutionIdentifier": ["RRID:SCR_000904", "RRID:nlx_156902"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dans.knaw.nl/en/about/services/contact"]}, {"institutionName": "Netherlands Organisation for Scientific Research", "institutionAdditionalName": ["NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nwo.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nwo.nl/en/contact"]}, {"institutionName": "Royal Netherlands Academy of Arts and Sciences", "institutionAdditionalName": ["KNAW", "Koninklijke Nederlandse Akademie van Wetenschappen"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.knaw.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.knaw.nl/en/topnavigatie/contact/overzicht"]}] [{"policyName": "Legal information", "policyURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information?set_language=en"}, {"policyName": "Preservation Policy Data Archiving and Networked\nServices", "policyURL": "http://dans.knaw.nl/en/deposit/information-about-depositing-data/DANSpreservationpolicyUK.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information/property-rights-statement"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/choose/zero/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information?set_language=en"}] restricted [{"dataUploadLicenseName": "DANS licence agreement", "dataUploadLicenseURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information?set_language=en"}] ["Nesstar"] yes {} ["DOI", "URN"] https://dans.knaw.nl/en/about/organisation-and-policy/legal-information?set_language=en [] unknown yes ["other", "DIN 31644"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} DANS (Data Archiving and Networked Services) is covered by Thomson Reuters Data Citation Index. DANS promotes sustainable access to digital research data. DANS EASY is a long-term research data archive. DANS is member of CESSDA ERIC (Council of European Social Science Data Archives European Research Infrastructure Consortium). An overview of our current international and domestic partners is available on http://dans.knaw.nl/en/about/organisation-and-policy/collaboration?set_language=en. 2013-02-22 2020-02-14 +r3d100010215 UK Data Archive eng [{"additionalName": "SSRC Data Bank", "additionalNameLanguage": "eng"}, {"additionalName": "Social Science Research Council Data Bank", "additionalNameLanguage": "eng"}, {"additionalName": "The UK's largest collection of digital research data in the social sciences and humanities", "additionalNameLanguage": "eng"}] https://www.data-archive.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.qtm44s", "RRID:SCR_014708"] ["dainfo@essex.ac.uk", "https://www.data-archive.ac.uk/contact"] The UK Data Archive is curator of the largest collection of digital data in the social sciences and humanities in the United Kingdom. With several thousand datasets relating to society, both historical and contemporary, our Archive is a vital resource for researchers, teachers and learners.We are an internationally acknowledged centre of expertise in the areas of acquiring, curating and providing access to data. Since 2005 our archive has been designated a Place of Deposit by the National Archives allowing us to curate public records. We acquire high quality data from the academic, public, and commercial sectors, providing continuous access to these data while we also support existing and emerging communities of data users. eng ["disciplinary", "institutional"] {"size": "Over 7.000 data collections", "updatedp": "2018-11-09"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://data-archive.ac.uk/about/archive/promise [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["census", "economics", "history", "humanities", "land use", "qualitative research", "social sciences", "statistical surveys"] [{"institutionName": "Economic & Social Research Council", "institutionAdditionalName": ["ESRC", "SSRC", "Social Science Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["ROR:03n0ht308"], "responsibilityStartDate": "1967", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Economic and Social Data Service", "institutionAdditionalName": ["ESDS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.esds.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "JISC", "institutionAdditionalName": ["Joint Information Systems Committee"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86"], "responsibilityStartDate": "1967", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The National Archives", "institutionAdditionalName": ["A The National Archives"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nationalarchives.gov.uk/", "institutionIdentifier": ["ROR:033jcqk26"], "responsibilityStartDate": "1967", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Data Service", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ukdataservice.ac.uk/", "institutionIdentifier": ["ROR:0468x4e75"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Essex", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.essex.ac.uk/", "institutionIdentifier": ["ROR:02nkf1q06"], "responsibilityStartDate": "1967", "responsibilityEndDate": "", "institutionContact": ["https://www.essex.ac.uk/depts/ukda.aspx"]}] [{"policyName": "Core Trust Seal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/05/UK-Data-Archive.pdf"}, {"policyName": "Preservation Policy", "policyURL": "https://data-archive.ac.uk/media/514523/cd062-preservationpolicy.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "https://ukdataservice.ac.uk/get-data/how-to-access/conditions.aspx"}, {"policyName": "Terms and conditions of access", "policyURL": "https://ukdataservice.ac.uk/get-data/how-to-access/conditions.aspx#/tab-end-user-licence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.data-archive.ac.uk/accessibility"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.data-archive.ac.uk/conditions/data-access"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ukdataservice.ac.uk//app/uploads/cd137-enduserlicence.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.data-archive.ac.uk/conditions/data-access"}] restricted [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "https://www.data-archive.ac.uk/deposit/how"}] [] {"api": "https://oai.ukdataservice.ac.uk:8443/oai/", "apiType": "OAI-PMH"} ["DOI"] https://data-archive.ac.uk/conditions/citing-data [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Data from the British Household Panel Study have been deposited in the UK Data Archive, from whom data access can be granted. Access to the data of UK Data Archive is via registration on the ESDS site and agreement to an End User Licence. A few datasets are subject to special conditions of access, and others require a special licence before they can be used. // UK.Data Archive is covered by Thomson Reuters Data Citation Index. Offering and depositing your data to the Archive are simple processes. We review all offers of data and guide you through the deposit process. Depositing involves preparing your data with our guidance and completing the accompanying forms. Since its establishment over 40 years ago the UK Data Archive has acquired, preserved and managed a vast range of data. We acquire data from academic, public sector and commercial sources within the United Kingdom and abroad. Since 2005 our Archive has been designated a Place of Deposit by The National Archives. We are part of the pan-European CESSDA ERIC Catalogue. From there you can locate data and variables from selected data collections stored at a number of European social science data archives. We also hold several key international survey series which can be found in our DataCatalogue. 2012-02-25 2022-01-12 +r3d100010216 4TU.ResearchData | science.engineering.design eng [{"additionalName": "formerly: 4TU.Centre for Research Data", "additionalNameLanguage": "eng"}] https://data.4tu.nl/info/en/ ["FAIRsharing_doi:10.25504/FAIRsharing.zcveaz", "RRID:SCR_006295", "RRID:nlx_151952"] ["https://data.4tu.nl/info/en/about/contact/", "researchdata@4tu.nl"] 4TU.ResearchData, previously known as 4TU.Centre for Research Data, is a research data repository dedicated to the science, engineering and design disciplines. It offers the knowledge, experience and the tools to manage, publish and find scientific research data in a standardized, secure and well-documented manner. 4TU.ResearchData provides the research community with: Customised advice and support on research data management; A long-term repository for scientific research data; Support for current research projects; Tools to enhance reuse of research data. eng ["disciplinary", "institutional"] {"size": "10.165 datasets", "updatedp": "2020-02-19"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://data.4tu.nl/info/en/about/organisation/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Hydrology", "Planing Urban", "civil engineering", "design", "earth sciences", "technical sciences", "technology and construction", "urban area"] [{"institutionName": "4TU.Federation", "institutionAdditionalName": ["4TU"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.4tu.nl/en/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://researchdata.4tu.nl/en/about/contact/"]}, {"institutionName": "TU Delft Library", "institutionAdditionalName": ["Delft University of Technology Library"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tudelft.nl/en/library/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universiteit Eindhoven", "institutionAdditionalName": ["TU/e", "Technische Universiteit Eindhoven", "University of Techhnology Eindhoven"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.tue.nl/en/", "institutionIdentifier": ["ROR:02c2kyt77", "RRID:SCR_003354", "RRID:nlx_151954"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universiteit Twente, Servicecentrum Bibliotheek & Archief", "institutionAdditionalName": ["University of Twente, Library & Archive Service Centre"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utwente.nl/en/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wageningen University & Research", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.wur.nl/", "institutionIdentifier": ["ROR:04qw24q55", "RRID:SCR_011771", "RRID:nlx_151588"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/11/20211123-4tu-centre-for-research-data_final.pdf"}, {"policyName": "Data Collection Policy", "policyURL": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Data_collection_policy_2020.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Data_collection_policy_2020.pdf"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0"}] open [{"dataUploadLicenseName": "Deposit Agreement", "dataUploadLicenseURL": "https://data.4tu.nl/info/fileadmin/user_upload/Documenten/4TU.Research_Data_-_Deposit_agreement.pdf"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://data.4tu.nl/info/fileadmin/user_upload/Documenten/Terms_of_Use_4TU.ResearchData.pdf ["ORCID"] yes yes ["other", "DSA"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 4TU.ResearchData is covered by Clarivate Data Citation Index. All metadata are provided under CC0 License. From 27 May 2016, Wageningen University & Research Centre joined the partnership of the three universities of technology in the Netherlands (3TU.Federation). From this date the partnership is known as 4TU and the cooperation on education and research was extended further. 4TU.ResearchData was an initiative of the libraries of the three Dutch Technical Universities (TU Delft, TU Eindhoven and University of Twente). All data sets stored in 4TU.ResearchData are accessible via the NARCIS repository. NARCIS is the gateway to scholarly information in The Netherlands. The link between NARCIS and 4TU.ResearchData ensures that the research data sets may now be more easily found. 2013-02-25 2022-01-03 +r3d100010217 DataFirst eng [] https://www.datafirst.uct.ac.za/ [] ["https://www.datafirst.uct.ac.za/", "support@data1st.org"] DataFirst's open research data repository, based at the University of Cape Town, gives open access to disaggregated administrative and survey data from African governments and research entities. DataFirst also operates a secure centre at the university to give researchers access to highly-disaggregated South African data. eng ["disciplinary"] {"size": "493 studies", "updatedp": "2020-02-04"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.datafirst.uct.ac.za/about-us/mission-statement [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["South Africa", "administrative data", "demographic survey", "education", "health", "microdata analysis", "national census", "politics", "population", "social behaviour", "survey data"] [{"institutionName": "ICSU World Data System", "institutionAdditionalName": ["WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": ["ROR:005vhrs19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icpsr.umich.edu/icpsrweb/content/membership/contact.html"]}, {"institutionName": "University of Cape Town", "institutionAdditionalName": ["UCT"], "institutionCountry": "ZAF", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uct.ac.za/", "institutionIdentifier": ["ROR:03p74gp79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@data1st.org"]}] [{"policyName": "Data Curation Process", "policyURL": "https://www.datafirst.uct.ac.za/services/data-curation-process"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.datafirst.uct.ac.za/dataportal/index.php/catalog/central/about"}] restricted [{"dataUploadLicenseName": "Deposit Data", "dataUploadLicenseURL": "https://www.datafirst.uct.ac.za/services/deposit-data"}] ["Nesstar"] yes {} ["DOI"] https://www.datafirst.uct.ac.za/services/citations [] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Datafirst is the first African member of the ICSU World Data System and the only DSA-certified African repository. Datafirst is the coordinating member of Southern African membership of the Inter-University Consortium for Political and Economic Research (ICPSR). The repository software is the open source National Data Archive (NADA) software developed by the World Bank using the Nesstar source code with permission and downloadable from https://nada.ihsn.org/ 2013-02-27 2020-02-04 +r3d100010218 DNA Data Bank of Japan eng [{"additionalName": "DDBJ", "additionalNameLanguage": "eng"}] https://www.ddbj.nig.ac.jp/index-e.html ["FAIRsharing_doi:10.25504/FAIRsharing.k337f0", "OMICS_01644", "RRID:SCR_002359", "nif-0000-02740"] ["https://www.ddbj.nig.ac.jp/contact-e.html"] DDBJ; DNA Data Bank of Japan is the sole nucleotide sequence data bank in Asia, which is officially certified to collect nucleotide sequences from researchers and to issue the internationally recognized accession number to data submitters.Since we exchange the collected data with EMBL-Bank/EBI; European Bioinformatics Institute and GenBank/NCBI; National Center for Biotechnology Information on a daily basis, the three data banks share virtually the same data at any given time. The virtually unified database is called "INSD; International Nucleotide Sequence Database DDBJ collects sequence data mainly from Japanese researchers, but of course accepts data and issue the accession number to researchers in any other countries. eng ["disciplinary"] {"size": "", "updatedp": ""} 1986 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ddbj.nig.ac.jp/aboutus-e.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "bioinformatics", "biology", "gene technology", "genetics", "genomics", "molecular biology", "nucleotide sequence", "phylogenetics", "protein binding"] [{"institutionName": "International Nucleotide Sequence Database Collaboration", "institutionAdditionalName": ["INSDC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.insdc.org/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japanese Ministry of Education, Culture, Sports, Science & Technology", "institutionAdditionalName": ["MEXT"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mext.go.jp/english/index.htm", "institutionIdentifier": ["ROR:048rj2z13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Genetics", "institutionAdditionalName": ["\u56fd\u7acb\u907a\u4f1d\u5b66\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nig.ac.jp/nig/", "institutionIdentifier": ["ROR:02xg1m795"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@nig.ac.jp"]}, {"institutionName": "National Institute of Genetics, Supercomputer System", "institutionAdditionalName": ["NIG Supercomputer", "\u56fd\u7acb\u907a\u4f1d\u5b66\u7814\u7a76\u6240\u30b9\u30fc\u30d1\u30fc\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30b7\u30b9\u30c6\u30e0"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sc.ddbj.nig.ac.jp/en", "institutionIdentifier": [], "responsibilityStartDate": "1986", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data usage policies", "policyURL": "https://www.ddbj.nig.ac.jp/policies-e.html"}, {"policyName": "International Nucleotide Sequence Databases Policies", "policyURL": "https://www.ddbj.nig.ac.jp/insdc-e.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ddbj.nig.ac.jp/sitepolicy-e.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ddbj.nig.ac.jp/sub/insd_policies-e.html"}] restricted [{"dataUploadLicenseName": "International Nucleotide Sequence Databases Policies", "dataUploadLicenseURL": "http://www.ddbj.nig.ac.jp/sub/insd_policies-e.html"}] ["unknown"] {"api": "https://www.ddbj.nig.ac.jp/download-e.html", "apiType": "FTP"} ["other"] https://www.ddbj.nig.ac.jp/faq/en/ddbj-cited-article-e.html [] unknown yes [] [] {"syndication": "https://www.ddbj.nig.ac.jp/announcements-e.html", "syndicationType": "RSS"} is covered by Elsevier. DNA Data Bank of Japan (DDBJ) is one of the members of International Nucleotide Sequence Database Collaboration (INSDC); the collaborative database 'European Nucleotide Archive' (ENA) is hosted at European Molecular Biology Laboratory, European Bioinformatics Institute (EML-EBI) 2013-02-27 2021-09-03 +r3d100010219 DSMZ eng [{"additionalName": "Deutsche Sammlung von Mikroorganismen und Zellkulturen", "additionalNameLanguage": "eng"}, {"additionalName": "Leibniz Institute DSMZ-German Collection of Microorganisms and Cell Cultures", "additionalNameLanguage": "eng"}, {"additionalName": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen", "additionalNameLanguage": "deu"}] https://www.dsmz.de/ ["RRID:SCR_001711", "nif-0000-10209"] ["contact@dsmz.de", "https://www.dsmz.de/contact.html"] The DSMZ is the most comprehensive biological resource center worldwide. Being one of the world's largest collections, the DSMZ currently comprises more than 73,700 items, including about 31,900 different bacterial and 6,600 fungal strains, 840 human and animal cell lines, 1,500 plant viruses and antisera, 700 bacteriophages and 19,000 different types of bacterial genomic DNA. All biological materials accepted in the DSMZ collection are subject to extensive quality control and physiological and molecular characterization by our central services. In addition, DSMZ provides an extensive documentation and detailed diagnostic information on the biological materials. The unprecedented diversity and quality management of its bioresources render the DSMZ an internationally renowned supplier for science, diagnostic laboratories, national reference centers, as well as industrial partners. eng ["disciplinary"] {"size": "more than 75.000 bioresources", "updatedp": "2021-09-03"} 1997 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.dsmz.de/about-us/portrait-of-the-dsmz/vision.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["animal cell lines", "archea", "bacteria", "bacteriophages", "biodiversity", "biological interactions", "bioressources", "biosafety", "fungi", "genome evolution", "human cell lines", "microbial diversity", "microbial taxonomy", "patent depositary", "phylogeny", "plant cell cultures", "plant cell virus", "plasmids", "population genetics"] [{"institutionName": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen GmbH", "institutionAdditionalName": ["DSMZ", "Leibniz Institute DSMZ-German Collection of Microorganisms and Cell Cultures"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.dsmz.de/de/start.html", "institutionIdentifier": [], "responsibilityStartDate": "1969", "responsibilityEndDate": "", "institutionContact": ["https://www.dsmz.de/contact.html"]}] [{"policyName": "Convention on Biological Diversity", "policyURL": "https://www.dsmz.de/bacterial-diversity/convention-on-biological-diversity.html"}, {"policyName": "Privacy Policy / Data Protection", "policyURL": "https://www.dsmz.de/privacy-policy.html"}, {"policyName": "Terms & Conditions", "policyURL": "https://www.dsmz.de/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.dsmz.de/imprint.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dsmz.de/imprint.html"}] restricted [{"dataUploadLicenseName": "Convention on Biological Diversity", "dataUploadLicenseURL": "https://www.dsmz.de/bacterial-diversity/convention-on-biological-diversity.html"}] ["unknown"] {} ["none"] https://www.dsmz.de/fileadmin/Bereiche/ChiefEditors/Forms/Neu16/Agreement__Terms_Conditions_PFVI.pdf [] unknown yes ["other"] [] {"syndication": "https://www.dsmz.de/home/rss.xml", "syndicationType": "RSS"} For the sample ordering of strains, cell lines, cell pellets, DNA, plant cells and plant viruses, fee is required. The DSMZ is the most diverse collection worldwide: alongside fungi, yeasts, bacteria and archaea, human and animal cell cultures, as well as plant viruses and plant cell cultures are explored and archived there as well. The DSMZ consists of four collection departments (Microorganisms, Human and Animal Cell Lines, Plant Cell Lines, Plant Viruses) and a dedicated research unit `Microbial Ecology and Diversity Research`. Furthermore the units `Central Services` and ' Patent Depository' offer a broad range of services to support the scientific community. DSMZ is member of Leibniz Association. 2012-02-28 2021-09-03 +r3d100010220 WorldWideMolecularMatrix eng [{"additionalName": "Open collection of information on small molecules", "additionalNameLanguage": "eng"}, {"additionalName": "WWMM", "additionalNameLanguage": "eng"}] https://www.dspace.cam.ac.uk/handle/1810/724 [] ["chem-pmrgroup@lists.cam.ac.uk"] The World Wide Molecular Matrix (WWMM) is an electronic repository for unpublished chemical data. WWMM is an open collection of information of small molecules. The "Matrix" in WWMM is influenced by William Gibson's vision of a cyberinfrastructure where all knowledge is accessible. The WWMM is an experiment to see how far this can be taken for chemical compounds. Although much of the information for a given compound has been Openly published, very little is available in Open electronic collections. The WWMM is aimed at catalysing this approach for chemistry and the current collection is made available under the Budapest Open Archive Initiative (http://www.budapestopenaccessinitiative.org/read). eng ["disciplinary"] {"size": "over 200.000 open molecules", "updatedp": "2018-11-09"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "chemical compounds", "chemical data", "medical chemistry", "molecules", "organical chemistry", "physical chemistry"] [{"institutionName": "University of Cambridge, Department of Chemistry, Unilever Centre for Molecular Informatics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.repository.cam.ac.uk/handle/1810/723", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www-pmr.ch.cam.ac.uk/wiki/Main_Page"]}] [{"policyName": "Budapest Open Access Initiative", "policyURL": "https://www.budapestopenaccessinitiative.org/read"}, {"policyName": "Research Data Management Policy Framework", "policyURL": "https://www.data.cam.ac.uk/university-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.budapestopenaccessinitiative.org/read"}] restricted [] ["DSpace"] yes {"api": "https://wiki.duraspace.org/display/DSDOC5x/OAI", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.repository.cam.ac.uk/feed/rss_2.0/1810/724", "syndicationType": "RSS"} WWMM is a part of Apollo - University of Cambridge Repository (DSpace@Cambridge) https://www.re3data.org/repository/r3d100010620 The World Wide Molecular Matrix (WWMM) was a proposed electronic repository for unpublished chemical data. First introduced in 2002 by Peter Murray-Rust and his colleagues in the chemistry department at the University of Cambridge in the United Kingdom. 2013-03-01 2021-10-06 +r3d100010221 EMBL-EBI eng [{"additionalName": "EBI", "additionalNameLanguage": "eng"}, {"additionalName": "European Molecular Biology Laboratory - European Bioinformatics Institute", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/ ["RRID:SCR_004727", "RRID:nlx_72386"] ["https://www.ebi.ac.uk/about/travel"] The European Bioinformatics Institute (EBI) has a long-standing mission to collect, organise and make available databases for biomolecular science. It makes available a collection of databases along with tools to search, download and analyse their content. These databases include DNA and protein sequences and structures, genome annotation, gene expression information, molecular interactions and pathways. Connected to these are linking and descriptive data resources such as protein motifs, ontologies and many others. In many of these efforts, the EBI is a European node in global data-sharing agreements involving, for example, the USA and Japan. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebi.ac.uk/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "chemical biology", "gene expression", "genome-sequencing", "genomics", "microarrays", "ontologies", "patents", "proteomics", "structural genomics"] [{"institutionName": "European Commission", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/commission/index_en"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "UK Research and Innovation", "institutionAdditionalName": ["RCUK (formerly)", "Research Councils UK (formerly)"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "EBI Terms of Use of the EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] open [] ["unknown"] {"api": "ftp://ftp.ebi.ac.uk/", "apiType": "FTP"} ["none"] ["ORCID"] unknown unknown [] [] {"syndication": "http://www.ebi.ac.uk/about/news/service-news.xml", "syndicationType": "RSS"} As part of the European Molecular Biology Laboratory EMBL, the largest part of our funding comes from the governments of EMBL's 20 member states. Other major funders include the European Commission, Wellcome Trust, US National Institutes of Health, UK Research Councils, our industry partners. In addition, the Wellcome Trust generously provides the facilities for the EMBL-EBI on its Genome Campus at Hinxton, and the UK Research Councils have also provided funds for our facilities in Hinxton. 2013-03-01 2019-02-01 +r3d100010222 ArrayExpress eng [{"additionalName": "functional genomics data", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/arrayexpress/ ["FAIRsharing_doi:10.25504/FAIRsharing.6k0kwd", "MIR:00000036", "OMICS_01023", "RRID:SCR_002964", "RRID:nif-0000-30123"] ["annotare@ebi.ac.uk", "arrayexpress@ebi.ac.uk", "https://www.ebi.ac.uk/arrayexpress/help/contact_us.html"] ArrayExpress is one of the major international repositories for high-throughput functional genomics data from both microarray and high-throughput sequencing studies, many of which are supported by peer-reviewed publications. Data sets are submitted directly to ArrayExpress and curated by a team of specialist biological curators. In the past (until 2018) datasets from the NCBI Gene Expression Omnibus database were imported on a weekly basis. Data is collected to MIAME and MINSEQE standards. eng ["disciplinary"] {"size": "72.938 experiments; 2.429.810 assays; 56.68 TB of archived data", "updatedp": "2020-03-24"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/arrayexpress/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA & RNA", "bioinformatics", "functional genomics data", "gene expression", "genomics", "ontologies", "proteins", "sequencing application"] [{"institutionName": "EMBL Heidelberg", "institutionAdditionalName": ["European Molecular Biology Laboratory Heidelberg"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de//", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.embl.de/aboutus/contact/index.html"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/about-european-union/organisational-structure/locations_en"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI, Functional Genomics Group"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/people/alvis-brazma", "https://www.ebi.ac.uk/about/people/irene-papatheodorou"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access policy", "policyURL": "https://www.ebi.ac.uk/arrayexpress/help/data_availability.html"}, {"policyName": "Data availability policy", "policyURL": "https://www.ebi.ac.uk/ena/about/data-availability-policy"}, {"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/arrayexpress/help/FAQ.html#data_restrictions"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/arrayexpress/help/data_availability.html"}] restricted [{"dataUploadLicenseName": "Submission overview guidelines", "dataUploadLicenseURL": "https://www.ebi.ac.uk/arrayexpress/help/submissions_overview.html"}] ["unknown"] no {"api": "ftp://ftp.ebi.ac.uk/pub/databases/arrayexpress/data/", "apiType": "FTP"} ["other"] https://www.ebi.ac.uk/arrayexpress/help/FAQ.html#cite [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.ebi.ac.uk/arrayexpress/rss/v2/experiments", "syndicationType": "RSS"} ArrayExpress is covered by Clarivate Data Citation Index. is covered by Elsevier. ArrayExpress includes genomics data of the Beta Cell Biology Consortium (BCBC). This was a team science initiative that was established by the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK). 2013-03-06 2021-09-02 +r3d100010223 Expression Atlas eng [{"additionalName": "Gene Expression Atlas", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/gxa/home ["FAIRsharing_doi;10.25504/FAIRsharing.f5zx00", "OMICS_03311", "RRID:SCR_007989", "RRID:nif-0000-06686"] ["arrayexpress-atlas@ebi.ac.uk"] The Expression Atlas provides information on gene expression patterns under different biological conditions such as a gene knock out, a plant treated with a compound, or in a particular organism part or cell. It includes both microarray and RNA-seq data. The data is re-analysed in-house to detect interesting expression patterns under the conditions of the original experiment. There are two components to the Expression Atlas, the Baseline Atlas and the Differential Atlas. The Baseline Atlas displays information about which gene products are present (and at what abundance) in "normal" conditions (e.g. tissue, cell type). It aims to answer questions such as "which genes are specifically expressed in human kidney?". This component of the Expression Atlas consists of highly-curated and quality-checked RNA-seq experiments from ArrayExpress. It has data for many different animal and plant species. New experiments are added as they become available. The Differential Atlas allows users to identify genes that are up- or down-regulated in a wide variety of different experimental conditions such as yeast mutants, cadmium treated plants, cystic fibrosis or the effect on gene expression of mind-body practice. Both microarray and RNA-seq experiments are included in the Differential Atlas. Experiments are selected from ArrayExpress and groups of samples are manually identified for comparison e.g. those with wild type genotype compared to those with a gene knock out. Each experiment is processed through our in-house differential expression statistical analysis pipeline to identify genes with a high probability of differential expression. eng ["disciplinary"] {"size": "3.388 entries", "updatedp": "2018-11-09"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/gxa [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["RNA-seq", "biological research", "biomedical research", "cell type", "gene expression", "genomics", "microarray"] [{"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/index_en.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory-European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/microarray/data/", "apiType": "FTP"} [] [] unknown yes [] [] {"syndication": "http://www.ebi.ac.uk/about/news/service-news.xml", "syndicationType": "RSS"} 2013-03-07 2019-04-23 +r3d100010224 The Canadian National Atmospheric Chemistry Database eng [{"additionalName": "La base de donn\u00e9es nationales sur la chimie atmosph\u00e9rique", "additionalNameLanguage": "fra"}, {"additionalName": "NAtChem", "additionalNameLanguage": "eng"}, {"additionalName": "The Canadian National Atmospheric Chemistry Database and Analysis System", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/environment-climate-change/services/air-pollution/monitoring-networks-data/national-atmospheric-chemistry-database.html [] ["ec.natchem.ec@canada.ca"] The National Atmospheric Chemistry Database (NAtChem) is a data archival and analysis facility operated by the Science and Technology Branch of Environment and Climate Change Canada. The purpose of the NAtChem database is to enhance atmospheric research through the archival and analysis of North American air and precipitation chemistry data. Such research includes investigations into the chemical nature of the atmosphere, atmospheric processes, spatial and temporal patterns, source-receptor relationships and long range transport of air pollutants. The NAtChem Database contains air and precipitation chemistry data from many major regional-scale networks in North America. To contribute to NAtChem, networks must operate for a period of at least two years, must have wide area coverage, and must have regionally-representative sites (rural and background). eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/air-pollution/monitoring-networks-data/national-atmospheric-chemistry-database.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["air chemistry", "air pollutants", "greenhouse gases", "precipitation"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["GoC", "Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes [] [] {} The NAtChem Database consists of several smaller databases: The National Atmospheric Chemistry/Particulate Matter Database (NAtChem/PM) Atmospheric particulate matter and related trace gas data and results The National Atmospheric Chemistry/Precipitation Chemistry Database (NAtChem/Precip) Precipitation chemistry data and results The National Atmospheric Chemistry/Air Toxics Database (NAtChem/Toxics) Atmospheric toxic substances data and results The National Atmospheric Chemistry/Special Studies Database (NAtChem/Special Studies) Atmospheric data and results at special studies sites Greenhouse Gases Greenhouse Gases data and results Canadian Aerosol Baseline Measurements (CABM) Aersol Measurements data and results 2013-03-07 2018-11-09 +r3d100010225 HYDAT eng [{"additionalName": "HYDEX", "additionalNameLanguage": "eng"}, {"additionalName": "National Water Data Archive", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey/data-products-services/national-archive-hydat.html [] ["https://wateroffice.ec.gc.ca/contactus/contact_us_e.html"] HYDAT is the archival database that contains all water information collected through the National Hydrometric Program. These data include: daily and monthly mean flow, water level and sediment concentration for over 2500 active and 5500 discontinued hydrometric monitoring station across Canada. HYDEX is a relational database that contains inventory information on the various streamflow, water level, and sediment stations (both active and discontinued) in Canada. This database contains information about the stations themselves, such as location, equipment, and type(s) of data collected. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "hydroclimatology", "hydrometric survey", "sediment concentration", "sediment load", "sediment particle size", "sediment station", "stage height", "stream flow", "stream gauge", "water level"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Water Survey of Canada", "institutionAdditionalName": ["Relev\u00e9s hydrologiques du Canada", "Relev\u00e9s hydrologiques du Canada", "WSC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ttps://www.canada.ca/en/environment-climate-change/corporate/contact.html"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}] closed [] ["unknown"] {} ["DOI"] [] unknown yes [] [] {} Hydrometric data are collected and compiled by Water Survey of Canada’s eight regional offices. The information is housed in two centrally-managed databases: HYDEX and HYDAT. 2013-03-07 2018-12-11 +r3d100010226 Alternative Fuels Data Center eng [{"additionalName": "AFDC", "additionalNameLanguage": "eng"}, {"additionalName": "EERE Alternative Fuels Data Center", "additionalNameLanguage": "eng"}] https://afdc.energy.gov/ [] ["https://afdc.energy.gov/contacts.html"] The Alternative Fuels Data Center (AFDC) is a comprehensive clearinghouse of information about advanced transportation technologies. The AFDC offers transportation decision makers unbiased information, data, and tools related to the deployment of alternative fuels and advanced vehicles. The AFDC launched in 1991 in response to the Alternative Motor Fuels Act of 1988 and the Clean Air Act Amendments of 1990. It originally served as a repository for alternative fuel performance data. The AFDC has since evolved to offer a broad array of information resources that support efforts to reduce petroleum use in transportation. The AFDC serves Clean Cities stakeholders, fleets regulated by the Energy Policy Act, businesses, policymakers, government agencies, and the general public. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://afdc.energy.gov/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biodiesel", "electricity", "emerging fuels", "ethanol", "fuel prices", "fuels", "hydrogen", "natural gas", "petroleum consumption", "propane", "renewable energy", "transportation", "vehicles"] [{"institutionName": "National Renewable Energy Laboratory, Clean Cities program", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/state-local-tribal/clean-cities.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Office of Energy Efficiency & Renewable Energy", "institutionAdditionalName": ["EERE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/office-energy-efficiency-renewable-energy", "institutionIdentifier": ["ROR:02xznz413"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/eere/office-energy-efficiency-and-renewable-energy-contacts"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE", "ENERGY.GOV"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Transportation, Federal Highway Administration", "institutionAdditionalName": ["FHWA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://highways.dot.gov/", "institutionIdentifier": ["ROR:0473rr271"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Web Site Policies", "policyURL": "https://www.energy.gov/about-us/web-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.energy.gov/about-us/web-policies"}] closed [] ["unknown"] {"api": "https://developer.nrel.gov/docs/transportation/transportation-incentives-laws-v1/", "apiType": "other"} ["none"] https://www.energy.gov/cio/guidance/records-management/disposition-schedules [] unknown unknown [] [] {} The AFDC is a resource of the U.S. Department of Energy's Clean Cities program. 2013-05-06 2021-04-30 +r3d100010227 U.S. Energy Information Administration eng [{"additionalName": "EIA", "additionalNameLanguage": "eng"}, {"additionalName": "Independent Statistics & Analysis", "additionalNameLanguage": "eng"}] https://www.eia.gov/ ["biodbcore-001635"] ["InfoCtr@eia.gov"] The U.S. Energy Information Administration (EIA) collects, analyzes, and disseminates independent and impartial energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment. eng ["other"] {"size": "EIA's data API contains the foolowing main data sets/series and associated categories: 408.000 electricity series; 30.000 State Energy Data System series ; 115.052 petroleum series; 34.790 U.S. crude imports series; 11.989 natural gas series; 132.331 coal series; 3.872 Short-Term Energy Outlook series; 368.466 Annual Energy Outlook series; 92.836 International energy series", "updatedp": "2019-06-26"} 2002-10-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41006 Geotechnics, Hydraulic Engineering", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.eia.gov/about/mission_overview.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["coal", "consumption", "deposit", "electricity", "liquids", "natural gas", "nuclear", "petroleum", "power plants", "purchase price", "renewable fuels", "total energy", "uranium"] [{"institutionName": "U.S. Department of Energy, Energy Information Administration", "institutionAdditionalName": ["DOE, EIA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eia.gov/", "institutionIdentifier": ["ROR:01h04ms65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eia.gov/about/contact/"]}] [{"policyName": "Open data", "policyURL": "https://www.eia.gov/opendata/"}, {"policyName": "Policies & Procedures", "policyURL": "https://www.eia.gov/about/information_quality_guidelines.php"}, {"policyName": "Privacy statement and security policy", "policyURL": "https://www.eia.gov/about/privacy_security_policy.php"}, {"policyName": "Scientific integrity", "policyURL": "https://www.eia.gov/about/scientific_integrity.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.eia.gov/about/copyrights_reuse.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.eia.gov/about/copyrights_reuse.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.copyright.gov/title17/92chap1.html#107"}] restricted [] ["unknown"] {"api": "https://www.eia.gov/opendata/register.php", "apiType": "REST"} ["none"] https://www.eia.gov/about/copyrights_reuse.php [] unknown yes [] [] {"syndication": "https://www.eia.gov/tools/rssfeeds/", "syndicationType": "RSS"} 2013-04-08 2021-11-16 +r3d100010228 Ensembl eng [{"additionalName": "e!", "additionalNameLanguage": "eng"}] https://www.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.fx0mw7", "MIR:00100011", "OMICS_01647", "RRID:SCR_002344", "RRID:nif-0000-21145"] ["https://www.ensembl.org/info/about/contact/index.html"] The Ensembl project produces genome databases for vertebrates and other eukaryotic species. Ensembl is a joint project between the European Bioinformatics Institute (EBI) and the Wellcome Trust Sanger Institute (WTSI) to develop a software system that produces and maintains automatic annotation on selected genomes.The Ensembl project was started in 1999, some years before the draft human genome was completed. Even at that early stage it was clear that manual annotation of 3 billion base pairs of sequence would not be able to offer researchers timely access to the latest data. The goal of Ensembl was therefore to automatically annotate the genome, integrate this annotation with other available biological data and make all this publicly available via the web. Since the website's launch in July 2000, many more genomes have been added to Ensembl and the range of available data has also expanded to include comparative genomics, variation and regulatory data. Ensembl is a joint project between European Bioinformatics Institute (EBI), an outstation of the European Molecular Biology Laboratory (EMBL), and the Wellcome Trust Sanger Institute (WTSI). Both institutes are located on the Wellcome Trust Genome Campus in Hinxton, south of the city of Cambridge, United Kingdom. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ensembl.org/info/about/index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA assemblies", "DNA sequence", "ENCODE ENCyclopedia Of DNA Elements", "LRG Locus Reference Genomic", "LSDB Locus Specific Databases", "RNA", "bioinformatics", "enselb", "eukaryotics", "gene", "genom-browser", "vertebrates"] [{"institutionName": "BBSRC", "institutionAdditionalName": ["BBSRC", "Biotechnology and Biological Sciences Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/growth/sectors/space/research/fp7_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de/", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/services/teams/ensembl"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://www.ensembl.org/info/about/legal/disclaimer.html"}, {"policyName": "Legal Notes", "policyURL": "https://www.ensembl.org/info/about/legal/index.html"}, {"policyName": "Privacy Policy", "policyURL": "https://www.ensembl.org/info/about/legal/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.ensembl.org/info/about/legal/code_licence.html"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ensembl.org/info/about/legal/image_reuse.html"}] restricted [] ["MySQL"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/ensembl", "apiType": "FTP"} ["none"] https://www.ensembl.org/info/about/publications.html [] unknown unknown [] [] {"syndication": "https://www.ensembl.info/blog/2013/02/18/whats-coming-in-ensembl-release-71/feed/", "syndicationType": "RSS"} Ensembl contains variation data from the 1000 Genomes project Ensembl Mirror sites: https://www.ensembl.org/Help/Mirrors US West (Amazon AWS) - Cloud-based mirror on West Coast of US: https://uswest.ensembl.org/index.html?redirect=no US East (Amazon AWS) - Cloud-based mirror on East Coast of US: https://useast.ensembl.org/index.html?redirect=no Asia (Amazon AWS) - Cloud-based mirror in Singapore: https://asia.ensembl.org/index.html?redirect=no 2013-03-19 2021-09-09 +r3d100010229 Encyclopedia of Life eng [{"additionalName": "Global access to knowledge about life on earth", "additionalNameLanguage": "eng"}, {"additionalName": "eol", "additionalNameLanguage": "eng"}] https://eol.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.3J6NYn", "RRID:SCR_005905", "RRID:nlx_149476"] ["https://discuss.eol.org/t/contact-us-at-eol/181"] Our knowledge of the many life-forms on Earth - of animals, plants, fungi, protists and bacteria - is scattered around the world in books, journals, databases, websites, specimen collections, and in the minds of people everywhere. Imagine what it would mean if this information could be gathered together and made available to everyone – anywhere – at a moment’s notice. This dream is becoming a reality through the Encyclopedia of Life. eng ["disciplinary", "institutional"] {"size": "12.983.401 trait and attribute records; data available for 1.999.030 species and higher taxa", "updatedp": "2021-05-04"} 2008 ["eng", "fin", "fra", "por", "twi", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://eol.org/docs/what-is-eol [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "archaea", "bacteria", "biodiversity", "classification", "creatures", "fish", "fungi", "living entity", "molds", "multimedia", "mushrooms", "plants", "protists", "taxa", "viruses"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198", "RRID:SCR_005099", "RRID:nlx_144112"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Field Museum", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fieldmuseum.org/", "institutionIdentifier": ["ROR:00mh9zx15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard University, Museum of Comparative Zoology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mcz.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mcz.harvard.edu/contact"]}, {"institutionName": "MacArthurFoundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.macfound.org/", "institutionIdentifier": ["ROR:00dxczh48"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Marine Biological Laboratory", "institutionAdditionalName": ["MBL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mbl.edu/", "institutionIdentifier": ["ROR:046dg4z72", "RRID:SCR_002410", "RRID:nif-0000-00389"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mbl.edu/blog/eol-one-million/"]}, {"institutionName": "Missouri Botanical Garden", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.missouribotanicalgarden.org/", "institutionIdentifier": ["ROR:04tzy5g14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.missouribotanicalgarden.org/about/additional-information/contact-us.aspx"]}, {"institutionName": "Smithsonian Institution", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.si.edu/", "institutionIdentifier": ["ROR:01pp8nd67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://discuss.eol.org/t/contact-us-at-eol/181", "https://www.si.edu/contacts"]}] [{"policyName": "Copyrights and Linking Policy", "policyURL": "https://eol.org/docs/what-is-eol/copyright-and-linking-policy"}, {"policyName": "Privacy Policy", "policyURL": "https://eol.org/docs/what-is-eol/privacy-policy"}, {"policyName": "Terms of use", "policyURL": "https://eol.org/docs/what-is-eol/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://wiki.creativecommons.org/wiki/Best_practices_for_attribution"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/Best_practices_for_attribution"}] restricted [] ["MySQL"] yes {"api": "https://eol.org/docs/what-is-eol/data-services", "apiType": "REST"} ["none"] https://eol.org/docs/what-is-eol/citing-eol-and-eol-content [] unknown yes [] [] {} The Encyclopedia of Life is an international initiative. The following institutions have signed memoranda of understanding to become part of the global EOL community: https://eol.org/docs/what-is-eol The Biodiversity Synthesis Group is part of the Encyclopedia of Life (EOL), an international project to develop a webpage for every known species on Earth, freely accessible to all. Based at the Biodiversity Synthesis Center (BioSynC) at the Field Museum of Natural History in Chicago, we are dedicated to advancing biodiversity science and the core EOL mission through our diverse meetings, workshops, research programs, and outreach. The other four EOL components are: The Biodiversity Informatics Group (Field Museum); the Scanning and Digitization Group (led by the Biodiversity Heritage Library); the Learning and Education Group (Harvard); the Species Pages Group (Smithsonian). TraitBank® is a searchable, comprehensive, open digital repository for organism traits, measurements, interactions and other facts for all taxa across the tree of life. TraitBank is integrated into the fabric of EOL, and leverages its existing infrastructure for names, content organization, curation roles and search. Data records are aggregated from databases, literature tables, and other sources. 2013-03-20 2021-11-16 +r3d100010230 UK Data Service eng [] https://www.ukdataservice.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.1ky0cs"] ["https://ukdataservice.ac.uk/contact/"] The UK Data Service is a comprehensive resource funded by the ESRC to support researchers, teachers and policymakers who depend on high-quality social and economic data. Here you will find a single point of access to a wide range of secondary data including large-scale government surveys, international macrodata, business microdata, qualitative studies and census data. eng ["disciplinary", "other"] {"size": "8.245 studies; 77 series", "updatedp": "2021-05-04"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ukdataservice.ac.uk/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["birth cohort", "business", "child poverty", "crime", "economic growth", "energy security", "environment", "food", "historic census microdata", "justice system immigration", "monetary cooperation", "pension policy", "rural affairs", "social behaviour", "trade", "world bank"] [{"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["ROR:03n0ht308"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://esrc.ukri.org/contact-us/"]}, {"institutionName": "University of Essex, UK Data Archive", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.data-archive.ac.uk/", "institutionIdentifier": ["ROR:03fknw408"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.data-archive.ac.uk/contact"]}, {"institutionName": "University of Manchester, Cathie Marsh Institute for Social Research", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cmi.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmi.manchester.ac.uk/connect/contact/"]}] [{"policyName": "Code of Practice", "policyURL": "https://www.ukdataservice.ac.uk/media/144901/sds_code_of_practice.pdf"}, {"policyName": "Collections Development Policy", "policyURL": "https://www.ukdataservice.ac.uk/media/398725/cd227-collectionsdevelopmentpolicy.pdf"}, {"policyName": "Guide to Good Practice", "policyURL": "https://ukdataservice.ac.uk/media/622840/cd171-researchdatahandling.pdf"}, {"policyName": "Research Data Policy", "policyURL": "https://esrc.ukri.org/funding/guidance-for-grant-holders/research-data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ukdataservice.ac.uk/media/144901/sds_code_of_practice.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ukdataservice.ac.uk/media/622840/cd171-researchdatahandling.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ukdataservice.ac.uk/media/455131/cd137-enduserlicence.pdf"}] restricted [{"dataUploadLicenseName": "Licence Agreement", "dataUploadLicenseURL": "https://ukdataservice.ac.uk/media/28102/licenceform.pdf"}] [] {"api": "https://www.ukdataservice.ac.uk/media/455425/iassist_publicapisjws_1-0.pdf", "apiType": "REST"} ["DOI"] https://www.ukdataservice.ac.uk/citethedata [] unknown yes [] [] {} Economic and Social Data Service (ESDS) is now integrated into the UK Data Service; The new website consolidates and integrates four services established and funded by the Economic and Social Research Council (ESRC): the Economic and Social Data Service (ESDS), the Secure Data Service, the Survey Question Bank and elements of the ESRC Census Programme.UK Data Service-Census Support covers the census services previously provided by the Census Dissemination Unit (CDU), the Centre for Census and Survey Research (CCSR) the Centre for Interaction Data Estimation and Research (CIDER) and UKBORDERS. 2013-05-21 2022-01-12 +r3d100010232 Eumetsat eng [{"additionalName": "European Organisation for the Exploitation of Meteorological Satellites", "additionalNameLanguage": "eng"}, {"additionalName": "Monitoring weather and climate from space", "additionalNameLanguage": "eng"}] https://www.eumetsat.int/ [] ["https://www.eumetsat.int/contact-us", "ops@eumetsat.int"] EUMETSAT's primary objective is to establish, maintain and exploit European systems of operational meteorological satellites. EUMETSAT is responsible for the launch and operation of the satellites and for delivering satellite data to end-users as well as contributing to the operational monitoring of climate and the detection of global climate changes. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.eumetsat.int/about-us/who-we-are?l=en [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Jason-2", "Meteosat", "Metop", "climate monitoring", "meteorological satellite", "meterology", "remote sensing", "satellite data", "satellite meteorology", "space agencies", "space organisations", "weather prediction"] [{"institutionName": "EUMETSAT", "institutionAdditionalName": ["European Organisation for the Exploitation of Meteorological Satellites", "Europ\u00e4ische Organisation f\u00fcr die Nutzung meteorologischer Satelliten"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eumetsat.int/", "institutionIdentifier": ["ROR:02h919y47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eumetsat.int/contact-us"]}] [{"policyName": "EUMETSAT Data Policy", "policyURL": "https://www-cdn.eumetsat.int/files/2021-01/45173%20Data_Policy.pdf"}, {"policyName": "Information on EUMETSAT's Data Policy", "policyURL": "https://www.eumetsat.int/legal-framework/data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.eumetsat.int/about-us/terms-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.eumetsat.int/about-us/terms-use"}] closed [] ["unknown"] {"api": "https://www.eumetsat.int/software", "apiType": "other"} ["none"] [] unknown yes [] [] {} EUMETSAT (European Organisation for the Exploitation of Meteorological Satellites) is an intergovernmental organisation created through an international convention agreed by a current total of 26 European Member States: Austria, Belgium, Croatia, the Czech Republic, Denmark, Finland, France, Germany, Greece, Hungary, Ireland, Romania, Italy, Latvia, Luxembourg, the Netherlands, Norway, Poland, Portugal, Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, and the United Kingdom. These States fund the EUMETSAT programs and are the principal users of the systems. EUMETSAT derives the vast majority of its funding from the contributions of its Member States. A part of the datas are restricted. you need to registrate. 2013-03-20 2021-05-05 +r3d100010233 European Social Survey eng [{"additionalName": "ESS Data", "additionalNameLanguage": "eng"}, {"additionalName": "ESS Data archive", "additionalNameLanguage": "eng"}] https://www.europeansocialsurvey.org/ [] ["https://www.europeansocialsurvey.org/about/contact_information.html"] The European Social Survey (the ESS) is a biennial multi-country survey covering over 30 nations. The first round was fielded in 2002/2003, the fifth in 2010/2011. The questionnaire includes two main sections, each consisting of approximately 120 items; a 'core' module which remains relatively constant from round to round, plus two or more 'rotating' modules, repeated at intervals. The core module aims to monitor change and continuity in a wide range of social variables, including media use; social and public trust; political interest and participation; socio-political orientations; governance and efficacy; moral; political and social values; social exclusion, national, ethnic and religious allegiances; well-being; health and security; human values; demographics and socio-economics eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.europeansocialsurvey.org/about/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["census data", "demography", "social measurement"] [{"institutionName": "City University London, School of Arts and Social Sciences, Centre for Comparative Social Surveys", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.city.ac.uk/research/centres/european-social-survey", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["ess@city.ac.uk"]}, {"institutionName": "European Commission, Research & Innovation, Research infrastructures", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation_en", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Science Foundation", "institutionAdditionalName": ["ESF"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.esf.org/", "institutionIdentifier": ["ROR:04esata81"], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "GESIS - Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["ESS DACE", "Gesis - Leibniz-Institut f\u00fcr Sozialwissenschaften", "The European Social Survey - Data for a Changing Europe"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/home", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "2010-07-01", "responsibilityEndDate": "2014-12-31", "institutionContact": ["ess@gesis.org"]}, {"institutionName": "Norwegian Centre for Research Data", "institutionAdditionalName": ["NSD", "Norsk senter for forskningsdata"], "institutionCountry": "NOR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nsd.no/en/", "institutionIdentifier": ["ROR:04y3kre43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["essdatasupport@nsd.uib.no"]}] [{"policyName": "ESS conditions of use", "policyURL": "https://www.europeansocialsurvey.org/data/conditions_of_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.europeansocialsurvey.org/data/conditions_of_use.html"}] closed [] ["unknown"] {} ["none"] https://www.europeansocialsurvey.org/data/conditions_of_use.html [] unknown yes [] [] {} The ESS has received funding from the EC's Framework programmes, from the European Science Foundation, and from national funding councils in participating countries. In January 2013 the ESS applied for selection as a European Research Infrastructure Consortium (ERIC).ESS Data is searchable in CESSDA ERIC Catalog re3data100010202. Centre for Comparative Social Surveys is the lead partner in the project 2013-03-27 2021-05-05 +r3d100010234 eyeMoviePedia eng [] http://www.eyemoviepedia.com/ ["RRID:SCR_003541", "RRID:nlx_157655"] ["http://www.eyemoviepedia.com/site/contact"] >>>!!!<<< eyemoviepedia.com was shut down in the course of 2021 https://www.zbmed.de/en/research/completed-projects/eyemoviepedia/ >>>!!!<<< The eyeMoviePedia videos moved successively to be found on PUBLISSO-Repository for Life Sciences (FRL) in the future. https://www.re3data.org/repository/r3d100013523 To view the new eyeMoviePedia collection see: https://repository.publisso.de/resource?query[0][term]=%22https%3A%2F%2Fd-nb.info%2Fgnd%2F1223212661%22 eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 2021 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20611 Clinical Neurosciences III - Ophthalmology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.eyemoviepedia.com/terms-of-use#charta [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["conjunctiva", "cornea", "glaucoma", "iris", "lacrymal surgery", "lens", "lid surgery", "muscle surgery", "neuro-ophthalmology", "refractive surgery", "squint surgery", "surgery", "trauma surgery", "vitreo-retina", "whole globe"] [{"institutionName": "eyesMoviePedia gGmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.eyemoviepedia.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@eyemoviepedia.com"]}] [{"policyName": "Code of Conduct", "policyURL": "http://www.eyemoviepedia.com/code-of-conduct"}, {"policyName": "Legal Relationship", "policyURL": "http://www.eyemoviepedia.com/terms-of-use#charta"}, {"policyName": "Terms of Use", "policyURL": "http://www.eyemoviepedia.com/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/de/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.eyemoviepedia.com/terms-of-use#charta"}] restricted [{"dataUploadLicenseName": "eyeMoviePedia Open Access Charta", "dataUploadLicenseURL": "http://www.eyemoviepedia.com/terms-of-use#charta"}] ["unknown"] {} ["DOI"] http://www.eyemoviepedia.com/terms-of-use#charta [] unknown yes [] [] {"syndication": "http://www.eyemoviepedia.com/video-catalog/feed", "syndicationType": "RSS"} Description: The portal eyeMoviePedia offers all scientists from the field of Ophthalmology the possibility to publish their films online. Beyond the rapidity of publication and access, the portal eyeMoviePedia fully uses the possibilities of electronic media. The archival storage on highly secure servers guarantees for permanent (99 years) access and citeability. All the articles published in the portal eyeMoviePedia are available throughout the world online for anyone interested immediately, permanently and free of charge eyeMoviePedia is covered by Thomson Reuters Data Citation Index. 2013-03-28 2021-12-23 +r3d100010235 FACHPORTALpädagogik.DE deu [{"additionalName": "the German Education Portal", "additionalNameLanguage": "eng"}] https://www.fachportal-paedagogik.de/ [] ["fachportal@dipf.de", "https://www.fachportal-paedagogik.de/kontakt.html"] Research Data Centre Education is a service offered by the German Institute for International Educational Research, for the purpose of a comprehensive and permanent documentation of empirical educational research studies. This service offers a central access point to describing information on studies, assessment instruments used and assessed research data, as well as publications. eng ["disciplinary", "institutional"] {"size": "471 research data", "updatedp": "2021-05-05"} 2012-01-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.fachportal-paedagogik.de/wir_ueber_uns.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["IGLU", "PISA", "full-time school", "school development", "school performance", "school teaching", "teaching"] [{"institutionName": "DIPF | Leibniz-Institut f\u00fcr Bildungsforschung und Bildungsinformation", "institutionAdditionalName": ["DIPF"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.dipf.de/de/institut/das-dipf", "institutionIdentifier": ["ROR:0327sr118"], "responsibilityStartDate": "2012-01-01", "responsibilityEndDate": "", "institutionContact": ["https://www.dipf.de/en/institute/contact"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Access Policy", "policyURL": "https://www.dipf.de/de/forschung/publikationen/pdf-publikationen/open-access-policy-des-dipf"}, {"policyName": "Policy", "policyURL": "https://www.fachportal-paedagogik.de/literatur/produkte/fis_bildung/policy.html"}, {"policyName": "Rechtliche Hinweise zur Haftung", "policyURL": "https://www.fachportal-paedagogik.de/impressum.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.fachportal-paedagogik.de/impressum.html"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "https://www.dipf.de/de/dipf-aktuell/apropos-dipf/apropos-dipf/RSS", "syndicationType": "RSS"} Four includet parts in FDZ are itemized: list of studies, archive of media, archive of questionnaires, database for quality of schools (DaQS). The parts German Education Index, pedocs and Subject Directory from Fachportal-Pädagogik.de include no raw data. 2013-04-10 2021-05-05 +r3d100010236 Fachinformationssystem Geophysik deu [{"additionalName": "FIS GP", "additionalNameLanguage": "deu"}, {"additionalName": "Geophysics Information System", "additionalNameLanguage": "eng"}] https://www.fis-geophysik.de/ [] ["poststelle@leibniz-liag.de"] LIAG's Geophysics Information System (FIS GP) serves for the storage and supply of geophysical measurements and evaluations of LIAG and its partners. The architecture of the overall system intends a subdivision into an universal part (superstructure) and into several subsystems dedicated to geophysical methods (borehole geophysics, gravimetry, magnetics, 1D/2D geoelectrics, underground temperatures, seismics, VSP, helicopter geophysics and rock physics. The building of more subsystems is planned. eng ["disciplinary"] {"size": "1.344.295 measuring points; 355.989 gravity measurments; 68.251 temperature values from 11.286 boreholes; 21.591 Schlumberger soundings; 2.123 measurement logs from 539 boreholes and 634 composite logs from 634 boreholes;", "updatedp": "2021-05-05"} 1999 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://fis-gp.liag-hannover.de/fis_gp/help/en/first_aid.htm [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["VSP", "borehole geophysics", "drilling", "geoelectricity", "geothermal energy", "gravimetry", "helicopter geophysics", "magnetism", "measurement", "petrophysics", "seismics", "temperature"] [{"institutionName": "Bundesministerium f\u00fcr Wirtschaft und Energie", "institutionAdditionalName": ["BMWi", "Federal Ministry for Economic Affairs and Energy", "Minist\u00e8re de l'Economie et de l'\u00c9nergie"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmwi.de/Navigation/EN/Home/home.html", "institutionIdentifier": ["ROR:02vgg2808"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Angewandte Geophysik", "institutionAdditionalName": ["LIAG", "Leibniz Institute for Applied Geophysics"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-liag.de/en/home.html", "institutionIdentifier": ["ROR:05txczf44"], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["klaus.kuehne@liag-hannover.de", "m.bening@liag-hannover.de"]}, {"institutionName": "Nieders\u00e4chsisches Ministerium f\u00fcr Wirtschaft, Arbeit, Verkehr und Digitalisierung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mw.niedersachsen.de/startseite/", "institutionIdentifier": ["ROR:05jrpd556"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Geophysics online \u2013 The Geophysics Information System", "policyURL": "https://fis-gp.liag-hannover.de/fis_gp/help/en/fis_gp_ueberblick.pdf"}, {"policyName": "Privacy Policy", "policyURL": "https://fis-gp.liag-hannover.de/fis_gp/help/en/datenschutzerklaerung.htm"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://fis-gp.liag-hannover.de/fis_gp/help/en/geodatenrechte.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://fis-gp.liag-hannover.de/fis_gp/qform_login.php?_language=en"}] restricted [] ["other"] yes {} ["none"] https://fis-gp.liag-hannover.de/fis_gp/qform_login.php?_language=en [] unknown yes [] [] {} The internet user interface FIS GP/WEB is divided into two components: FIS GP/FORMS is forms based and supplies functions like search, navigation, export/download, print, visualization, analysis/interpretation etc. The second component FIS GP/GEO is a WebGIS solution to be used for geographical search. The metadata of FIS GP contents will also be provided via the European gephysical data portal developed within the EU project GEOMIND. 2013-05-21 2021-08-25 +r3d100010237 Das Kristallstrukturdepot deu [{"additionalName": "CSD", "additionalNameLanguage": "eng"}, {"additionalName": "Crystal Structure Depot", "additionalNameLanguage": "eng"}, {"additionalName": "Kristallstrukturdepot", "additionalNameLanguage": "eng"}] https://www.fiz-karlsruhe.de/en/produkte-und-dienstleistungen/das-kristallstrukturdepot [] ["crysdata(at)fiz-karlsruhe(dot)de"] More than 25 years ago FIZ Karlsruhe started depositing crystal structure data linked to publications in German journals. At that time it was irrelevant whether the deposited structures were organic or inorganic. Today FIZ Karlsruhe is responsible for storing the structure data of inorganic compounds. Organic structure data are stored by the Cambridge Crystallographic Data Center. Nowadays many publishers inform their authors that in parallel to a publication in a scientific journal, crystal structure data should also be stored in the Crystal Structure Depot at FIZ Karlsruhe. A CSD number will be assigned to the data for later reference in the publication. The data can then be ordered from the Crystal Structure Depot at FIZ Karlsruhe. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.fiz-karlsruhe.de/en/leistungen/kristallographie/kristallstrukturdepot.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["crystal grating", "crystal structure", "grid structure", "inorganic compound"] [{"institutionName": "FIZ Karlsruhe - Leibniz-Institut f\u00fcr Informationsinfrastruktur", "institutionAdditionalName": ["FIZ Karlsruhe \u2013 Leibniz Institute for Information Infrastructure"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.fiz-karlsruhe.de/", "institutionIdentifier": ["ROR:0387prb75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fiz-karlsruhe.de/de/form/fiz-karlsruhe-kontaktformular"]}] [{"policyName": "Legal Notices", "policyURL": "https://www.fiz-karlsruhe.de/en/ueber-uns/impressum-rechtliches"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.fiz-karlsruhe.de/en/ueber-uns/impressum-rechtliches"}] restricted [] ["unknown"] {} ["other"] [] unknown yes [] [] {} Since February 1999, there has been an agreement between Cambridge Crystallographic Data Centre (CCDC) and FIZ Karlsruhe that all organic and organometallic compounds should be deposited at CCDC and all inorganic and intermetallic compounds at FIZ Karlsruhe. Crystal structures submitted to FIZ Karlsruhe should contain neither C-C nor C-H bonds. Please send inorganic structure data to crysdata(at)fiz-karlsruhe(dot)de and organic structure data to CCDC, deposit(at)ccdc.cam.ac(dot)uk. If you are a registered user of the ICSD database (Inorganic Crystal Structure Database)= r3d100010085, you will also find the deposited inorganic crystal structure data sets in this database, with a short production-dependent delay. The records in ICSD are produced from the original publication and the deposited data and have the advantage of having undergone additional checking. 2014-04-12 2021-05-05 +r3d100010238 Flora von Frankfurt am Main deu [{"additionalName": "Flora-Frankfurt", "additionalNameLanguage": "deu"}] http://www.flora-frankfurt.de/ [] ["http://flora-frankfurt.senckenberg.de/root/index.php?page_id=11"] Here you will find information about the diversity of plants, the distribution and ecology as well as the history of the plant species in Frankfurt. eng ["disciplinary"] {"size": "1.800 plant species; 1.392 species portraits; 111.703 records", "updatedp": "2018-07-30"} 2009 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.flora-frankfurt.de/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "biotop maping", "botany", "flora", "list of species", "neophyten", "plant", "plant ecology", "proptected species", "rank growth"] [{"institutionName": "Frankfurt.de, Umweltamt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://frankfurt.de/service-und-rathaus/verwaltung/aemter-und-institutionen/umweltamt", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["umwelttelefon@stadt-frankfurt.de"]}, {"institutionName": "Goethe Universit\u00e4t Frankfurt am Main", "institutionAdditionalName": ["Goethe University Frankfurt", "Goethe-Universit\u00e4t"], "institutionCountry": "DEU", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.goethe-university-frankfurt.de/en?locale=en", "institutionIdentifier": ["ROR:04cvxnb49"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-frankfurt.de/impressum?"]}, {"institutionName": "Senckenberg Biodiversit\u00e4t und Klima Forschungszentrum", "institutionAdditionalName": ["SBiK-F"], "institutionCountry": "DEU", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.senckenberg.de/de/institute/sbik-f/", "institutionIdentifier": ["ROR:01amp2a31"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.senckenberg.de/de/institute/sbik-f/kontakt/"]}, {"institutionName": "Senckenberg Forschungsinstitut und Naturmuseum Frankfurt a. M., Abteilung Botanik und molekuare Evolutionsforschung", "institutionAdditionalName": ["Senckenberg Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.senckenberg.de/de/institute/senckenberg-gesellschaft-fuer-naturforschung-frankfurt-main/abt-botanik-und-molekulare-evolutionsforschung/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["biotopkartierung@senckenberg.de"]}] [{"policyName": "Datenbankgrundlage", "policyURL": "http://flora-frankfurt.senckenberg.de/root/index.php?page_id=7"}, {"policyName": "Haftungsausschluss", "policyURL": "http://flora-frankfurt.senckenberg.de/root/index.php?page_id=10"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://flora-frankfurt.senckenberg.de/root/index.php?page_id=9"}] restricted [{"dataUploadLicenseName": "Fund melden", "dataUploadLicenseURL": "http://flora-frankfurt.senckenberg.de/root/index.php"}] ["unknown"] {} ["none"] http://flora-frankfurt.senckenberg.de/root/index.php?page_id=9 [] unknown yes [] [] {} 2013-04-12 2021-05-05 +r3d100010239 Forestry Images eng [{"additionalName": "Forestryimages", "additionalNameLanguage": "eng"}] https://www.forestryimages.org/ [] ["https://www.forestryimages.org/support/contactus/"] Forestry Images provides an accessible and easy to use archive of high quality images related to forest health and silviculture eng ["disciplinary"] {"size": "310.320 images; 27.803 subjects; 2.583 photographers ;", "updatedp": "2021-05-06"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.forestryimages.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["birds", "diseases", "forest pests", "insects", "mammals", "plants", "reptiles & amphibians", "silvicultural pratices", "trees", "urban Forestry", "wildlife"] [{"institutionName": "International Society of Arboriculture", "institutionAdditionalName": ["ISA"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.isa-arbor.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, Forest Service", "institutionAdditionalName": ["U.S. Forest service", "USDA Forest service"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fs.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Center for Invasive Species and Ecosysteme Health", "institutionAdditionalName": ["Bugwood"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bugwood.org/ContactUs.html"]}, {"institutionName": "University of Georgia, College of Agricultural and Evironmental Sciences", "institutionAdditionalName": ["CAES"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.caes.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": ["Warnell"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility Policy", "policyURL": "https://www.forestryimages.org/about/accessibility.cfm"}, {"policyName": "Privacy Policy", "policyURL": "https://www.forestryimages.org/about/privacy.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.forestryimages.org/about/imageusage.cfm"}] restricted [{"dataUploadLicenseName": "contribute materials", "dataUploadLicenseURL": "https://www.forestryimages.org/contribdigital.cfm"}] ["unknown"] {} ["none"] https://www.forestryimages.org/about/imageusage.cfm [] unknown yes [] [] {} Forestry Images is a joint project of the Center for Invasive Species and Ecosystem Health, USDA Forest Service and International Society of Arboriculture. The University of Georgia - Warnell School of Forestry and Natural Resources and College of Agricultural and Environmental Sciences. ForestryImages is a part of BugwoodImages. BugwoodImages (bugwood network) r3d100010194 is made up of four major website interfaces. These are ForestryImages, IPMImages, InsectImages, weed Images and Invasive.org. 2013-04-16 2021-09-03 +r3d100010241 RES³T eng [{"additionalName": "RES[drei]T", "additionalNameLanguage": "deu"}, {"additionalName": "RES[three]T", "additionalNameLanguage": "eng"}, {"additionalName": "ROssendorf DAta REpository", "additionalNameLanguage": "eng"}] https://www.hzdr.de/db/res3t.login [] ["https://www.hzdr.de/db/RES3T.CONTACT"] RES³T is a digitized version of a thermodynamic sorption database as required for the parametrization of Surface Complexation Models (SCM). It is mineral-specific and can therefore also be used for additive models of more complex solid phases such as rocks or soils. A user interface helps to access selected mineral and sorption data, to convert parameter units, to extract internally consistent data sets for sorption modeling. Data records comprise of mineral properties, specific surface area values, characteristics of surface binding sites and their protolysis, sorption ligand information, and surface complexation reactions eng ["disciplinary"] {"size": "147 minerals; 148 sorbing ligands; 2.282 specific surface area measurements; 2.001 surface site data records; 7.062 surface complexation reactions; 3.173 literature references", "updatedp": "2021-05-06"} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30201 Solid State and Surface Chemistry, Material Synthesis", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.hzdr.de/db/res3t.introduction [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["mineral", "minerals", "sorption", "specific surface area measurements", "surface complexation", "surface complexation reactions", "surface site data records"] [{"institutionName": "Bundesministerium f\u00fcr Wirtschaft und Energie", "institutionAdditionalName": ["BMWi", "Federal Ministry for Economic Affairs and Energy", "formerly: BMWA", "formerly: Bundesministerium f\u00fcr Wirtschaft und Arbeit", "formerly: Federal Ministry of Economics and Labour"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmwi.de/Navigation/EN/Home/home.html", "institutionIdentifier": ["02vgg2808"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Zentrum Dresden-Rossendorf", "institutionAdditionalName": ["HZDR"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hzdr.de/db/Cms?pNid=0", "institutionIdentifier": ["ROR:01zy2cs03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["c.ruecker hzdr.de", "https://www.hzdr.de/db/RES3T.CONTACT", "res3t@hzdr.de"]}] [{"policyName": "Data Protection and Privacy Policy", "policyURL": "https://www.hzdr.de/db/Cms?pOid=50772&pNid=0"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.hzdr.de/db/Cms?pOid=10115&pNid=0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.hzdr.de/db/Cms?pOid=10115&pNid=0"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.hzdr.de/db/RES3T.disclaimer"}] restricted [] ["unknown"] {} ["none"] https://www.hzdr.de/db/res3t.PAPERMEMO?paperID=985 [] unknown unknown [] [] {} 2013-04-16 2021-05-06 +r3d100010243 UCSC Genome Browser eng [{"additionalName": "UCSC Genome Bioinformatics", "additionalNameLanguage": "eng"}, {"additionalName": "University of California Santa Cruz Genome Bioinformatics", "additionalNameLanguage": "eng"}] https://genome.ucsc.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.s22qdj", "OMICS_00926", "RRID:SCR_005780", "RRID:nif-0000-03603"] ["genome@soe.ucsc.edu", "https://genome.ucsc.edu/contacts.html"] It is an interactive website offering access to genome sequence data from a variety of vertebrate and invertebrate species and major model organisms, integrated with a large collection of aligned annotations. The Browser is a graphical viewer optimized to support fast interactive performance and is an open-source, web-based tool suite built on top of a MySQL database for rapid visualization, examination, and querying of the data at many levels. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://genomewiki.ucsc.edu/index.php/Main_Page [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "bioinformatics", "chromosomes", "comparative genomics", "genes", "genome analysis", "genome browser", "genomes", "sequence"] [{"institutionName": "Howard Hughes Medical Institute", "institutionAdditionalName": ["HHMI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhmi.org/", "institutionIdentifier": ["ROR:006w34k90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California Santa Cruz, Genomics Institute", "institutionAdditionalName": ["UCSC, CBSE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ucscgenomics.soe.ucsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ucscgenomics.soe.ucsc.edu/contact/"]}] [{"policyName": "Browser Genome Release Agreement", "policyURL": "https://www.ncbi.nlm.nih.gov/projects/mapview/static/app_help/Browser_Genome_Release_Agreement.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://genome.ucsc.edu/conditions.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://genome.ucsc.edu/license/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://genome.ucsc.edu/license/gblicense.pdf"}] restricted [] ["unknown"] {"api": "ftp://hgdownload.cse.ucsc.edu/", "apiType": "FTP"} ["none"] https://genome.ucsc.edu/cite.html [] unknown yes [] [] {} A license is required for commercial download and/or installation of the Genome Browser binaries and source code. Downloading data: https://www.genome.ucsc.edu/goldenPath/help/ftp.html UCSC Genome Browser Mirror Sites see: https://genome.ucsc.edu/mirror.html Europe: https://genome-euro.ucsc.edu/ Asia: https://genome-asia.ucsc.edu/ Simons Center for Quantitative Biology at Cold Spring Harbor Laboratory : http://genome-mirror.cshl.edu/ This mirror may contain CSHL-generated annotations in addition to the standard UCSC tracks 2013-04-17 2021-08-24 +r3d100010245 GeoNames eng [] https://www.geonames.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.56a0Uj"] ["info@geonames.org"] The GeoNames geographical database covers all countries and contains over eight million placenames that are available for download free of charge. eng ["disciplinary"] {"size": "25 million geographical names; 11 million unique features whereof 4.8 million populated places and 13 million alternate names", "updatedp": "2019-02-25"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geonames.org/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["elevation", "geonames", "latitude", "longituede", "population", "postal codes", "potal codes"] [{"institutionName": "Buzz Vertical", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.buzzvertical.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Can Stock Photo", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.canstockphoto.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@canstockphoto.com"]}, {"institutionName": "Fotosearch", "institutionAdditionalName": ["Stock Photography and Stock Footage"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.fotosearch.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fotosearch.com/contact/"]}, {"institutionName": "Get.it", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.get.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IP2Location", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.ip2location.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "London Office Space", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.londonofficespace.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Move worldwide", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.moveworldwide.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "PrimeFind", "institutionAdditionalName": ["Prime Office Space"], "institutionCountry": "GBR", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://primeofficespace.co.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rhinocarhire.com", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.rhinocarhire.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "TV trip", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.tvtrip.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Unxos GmbH", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.unxos.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@unxos.com", "marc@geonames.org"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.geonames.org/export/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["unknown"] {"api": "http://www.geonames.org/export/web-services.html", "apiType": "REST"} ["other"] [] unknown unknown [] [] {"syndication": "http://feeds.feedburner.com/GeoNames", "syndicationType": "RSS"} GeoNames was founded by Marc Wick. You can reach him at marc@geonames.org. GeoNames is a project of Unxos GmbH, Switzerland. The commercial services is fee-based. GeoNames team: http://www.geonames.org/team.html#ambassadors. 2013-04-17 2021-10-25 +r3d100010246 GEON eng [{"additionalName": "GEONGRID", "additionalNameLanguage": "eng"}, {"additionalName": "Global Earth Observation Network", "additionalNameLanguage": "eng"}] [] ["info@geongrid.org"] -----<<<<< The repository is no longer available. This record is out-dated. >>>>>----- GEON is an open collaborative project that is developing cyberinfrastructure for integration of 3 and 4 dimensional earth science data. GEON will develop services for data integration and model integration, and associated model execution and visualization. Mid-Atlantic test bed will focus on tectonothermal, paleogeographic, and biotic history from the late-Proterozoicto mid-Paleozoic. Rockies test bed will focus on integration of data with dynamic models, to better understand deformation history. GEON will develop the most comprehensive regional datasets in test bed areas. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.nsf.gov/geo/adgeo/geoedu/centers_eo/geon.jsp [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3D structural models", "4D structural models", "DEM Digital Elevation Model", "LiDAR", "bore hole", "earth science data", "earth sciences", "earthquake", "geophysical data", "geosciences", "maps", "remote sensing", "satellite images", "well data"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "2005-2008", "institutionContact": ["https://www.nsf.gov/geo/adgeo/geoedu/centers_eo/geon.jsp"]}, {"institutionName": "San Diego Supercomputer Center, Advanced CyberInfrastructure Development", "institutionAdditionalName": ["ACID"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://acid.sdsc.edu/projects/geon", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.geongrid.org/index.php"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Geon projects are: Open Earth Framework, Integrated Date Viewer, Interface, SYNSEIS, Paleointegration Project. GEON partnerships and hosting relations exist with 'Gravity and Magnetics Database', 'Morphobank', 'Open Topography Facility', 'EarthScope Data Portal', 'GEO Grid' and 'SWGEONET'. GEON Gateways: http://www.geongrid.org/index.php/gateways/ 2013-04-18 2020-01-07 +r3d100010247 GSA Data Repository eng [{"additionalName": "Geological Society of America Data Repository", "additionalNameLanguage": "eng"}] https://gsapubs.figshare.com/ [] ["editing@geosociety.org", "gsaservice@geosociety.org"] The GSA Data Repository is an open file in which authors of articles in our journals can place information that supplements and expands on their article. These supplements will not appear in print but may be obtained from GSA. eng ["institutional", "other"] {"size": "8.785 results", "updatedp": "2021-05-07"} 1974 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geosociety.org/GSA/Publications/Info_Services/Data_Repository/GSA/Pubs/data-repository.aspx [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmospheric science", "geography", "geology", "geosciences", "oceanography", "water research"] [{"institutionName": "Geological Society of America", "institutionAdditionalName": ["GSA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.geosociety.org/", "institutionIdentifier": ["ROR:0029f7m05"], "responsibilityStartDate": "1974", "responsibilityEndDate": "", "institutionContact": ["https://www.geosociety.org/GSA/Contact/GSA/contact.aspx"]}] [{"policyName": "Bylaws", "policyURL": "https://www.geosociety.org/documents/gsa/about/constitution.pdf"}, {"policyName": "GSA's Policies on Open Access", "policyURL": "https://www.geosociety.org/gsa/pubs/openAccess.aspx"}, {"policyName": "Position Statements", "policyURL": "https://www.geosociety.org/GSA/Science_Policy/Position_Statements/GSA/Positions/home.aspx"}, {"policyName": "Science Policy", "policyURL": "https://www.geosociety.org/GSA/Science_Policy/GSA_Policy_Roles/GSA/Policy/roles.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.geosociety.org/GSA/Publications/Info_Services/Copyright/GSA/Pubs/guide/copyright.aspx"}] restricted [{"dataUploadLicenseName": "Additional Information for Authors", "dataUploadLicenseURL": "https://www.geosociety.org/gsa/pubs/guide/copyright.aspx#web"}] ["unknown"] {} ["none"] https://www.geosociety.org/gsa/pubs/guide/copyright.aspx [] unknown yes [] [] {} The GSA Data Repository has moved to Figshare. The Figshare site allows users to preview most file types prior to downloading 2013-04-18 2021-08-24 +r3d100010248 GermOnline eng [] http://www.germonline.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.vk3v6s", "ISSN 2427-1748", "OMICS_02892", "RRID:SCR_002807", "RRID:nif-0000-02906"] [] GermOnline 4.0 is a cross-species database gateway focusing on high-throughput expression data relevant for germline development, the meiotic cell cycle and mitosis in healthy versus malignant cells. The portal provides access to the Saccharomyces Genomics Viewer (SGV) which facilitates online interpretation of complex data from experiments with high-density oligonucleotide tiling microarrays that cover the entire yeast genome. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.germonline.org/gol_4_userguide.pdf [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GeneChips", "comparative genomics", "gametogenesis", "germ line development", "human reproductive health", "meiosis", "microarray", "mitotic cell division"] [{"institutionName": "GenOuest BioInformatics", "institutionAdditionalName": ["GenOuest BioInformatics Platform"], "institutionCountry": "FRA", "responsabilityType": ["funding", "technical"], "institutionType": "commercial", "institutionURL": "https://www.genouest.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut National de la Sant\u00e9 et de la Recherche M\u00e9dicale", "institutionAdditionalName": ["Inserm"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://www.inserm.fr/", "institutionIdentifier": ["ROR:02vjkv261"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": ["ROR:002n09z45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] restricted [] ["other"] yes {"api": "http://www.germonline.org/info/data/download.html", "apiType": "FTP"} ["other"] http://www.germonline.org/index.html [] unknown yes [] [] {} 2013-04-18 2021-05-07 +r3d100010249 ALLBUS eng [{"additionalName": "Die Allgemeine Bev\u00f6lkerungsumfrage der Sozialwissenschaften", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ ALLBUS", "additionalNameLanguage": "deu"}, {"additionalName": "German General Social Survey", "additionalNameLanguage": "eng"}] https://www.gesis.org/en/allbus/allbus-home ["RRID:SCR_003588", "RRID:nlx_157750"] ["allbus@gesis.org", "https://www.gesis.org/en/allbus/allbus-contact"] The German General Social Survey (ALLBUS) collects up-to-date data on attitudes, behavior, and social structure in Germany. Every two years since 1980 a representative cross section of the population is surveyed using both constant and variable questions. The ALLBUS data become available to interested parties for research and teaching as soon as they are processed and documented. eng ["disciplinary"] {"size": "", "updatedp": ""} 1980 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/allbus/allbus-home/general-information [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["attitudes", "behaviour", "census data", "population", "social structure", "statistics", "survey"] [{"institutionName": "Forschungsdatenzentrum ALLBUS", "institutionAdditionalName": ["GESIS FDZ ALLBUS"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/institute/research-data-centers/rdc-allbus", "institutionIdentifier": [], "responsibilityStartDate": "1987", "responsibilityEndDate": "", "institutionContact": ["michael.terwey@gesis.org"]}, {"institutionName": "GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["GESIS - Leibniz Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://www.gesis.org/en/home", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "1987", "responsibilityEndDate": "", "institutionContact": ["christof.wolf@gesis.org"]}, {"institutionName": "Rat f\u00fcr Sozial- und Wirtschaftsdaten", "institutionAdditionalName": ["RatSWD", "RatSWD German Data Forum"], "institutionCountry": "DEU", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.konsortswd.de/en/ratswd/", "institutionIdentifier": ["ROR:059ze4t74"], "responsibilityStartDate": "1987", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_FDZKriterien.PDF"}, {"policyName": "Provider & Legal Notices", "policyURL": "https://www.gesis.org/en/institute/imprint"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2013-04-19 2021-05-07 +r3d100010250 HISTAT deu [{"additionalName": "Historical Time Series", "additionalNameLanguage": "eng"}, {"additionalName": "Zeitreihen zur Historischen Statistik", "additionalNameLanguage": "deu"}] https://histat.gesis.org/histat/ [] ["histat@gesis.org"] HISTAT (Historical Statistics)provides data from studies of population, economic and social history as well as the historical Statistics under a single user interface to be made available online. HISTAT offers a variety of time series, Historical Statistics primarily from Germany, partly down to the 16 . century; the database is structured theme-and study-oriented. Studies are listed by subject area and can be individually selected. using an alphabetical list of authors of individual studies can also be selected. Moreover, a study on cross Keyword is offered. HISTAT provides information and research opportunities to both study level as well as at time series level. It offered a thesaurus-based meta-search for words, authors and studies in the study descriptions, the data (time series definitions) and the sources. eng ["disciplinary"] {"size": "537 studies; 436.077 time series", "updatedp": "2021-05-07"} 2012 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://histat.gesis.org/histat/en/pages/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["agriculture", "business", "commerce", "economic history", "economy", "education", "health", "industry", "money", "national finances", "population", "social sciences", "time series", "traffic"] [{"institutionName": "GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["GESIS - Leibniz Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Statistisches Bundesamt", "institutionAdditionalName": ["DSTATIS"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.destatis.de/DE/Home/_inhalt.html", "institutionIdentifier": ["ROR:01kratx56"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal notes", "policyURL": "https://www.gesis.org/en/institute/imprint"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2013-04-19 2021-05-07 +r3d100010251 GESIS Datenbestandskatalog DBK deu [{"additionalName": "DBK", "additionalNameLanguage": "deu"}, {"additionalName": "GESIS Data Catalogue DBK", "additionalNameLanguage": "eng"}] https://search.gesis.org/ [] ["dataservices@gesis.org"] The Data Catalogue (DBK) comprises the study descriptions from all studies archived at the Data Archive including study descriptions of historical studies data. The primary focus of the department “Data Archive for the Social Sciences” is providing excellent data service for national and international comparative surveys from the fields of social and political science research. These surveys, which must comply with clearly defined methodological and technical requirements, are archived and processed according to internationally recognized standards and made accessible to the scientifically interested public in a user-friendly manner. eng ["disciplinary"] {"size": "64.274 research data", "updatedp": "2021-11-10"} 2007 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://search.gesis.org/faq [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "questionnaires", "social data", "studies"] [{"institutionName": "GESIS-Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["GESIS-Leibniz Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/home/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gesis.org/en/contact/"]}] [{"policyName": "Benutzungsordnung", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Benutzungsordnung.pdf"}, {"policyName": "Data service for secondary analysis", "policyURL": "https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service?L=1"}, {"policyName": "Legal Notice", "policyURL": "https://www.gesis.org/en/institute/imprint/"}, {"policyName": "Usage regulations", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}] restricted [] ["unknown"] {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "https://dbk.gesis.org/gesis-data-news/gesis-data-news-de.xml", "syndicationType": "RSS"} GESIS Data Catalogue is covered by Thomson Reuters Data Citation Index. 2013-04-22 2021-11-10 +r3d100010252 Global Health Data Exchange eng [{"additionalName": "Discover the World's Health Data", "additionalNameLanguage": "eng"}, {"additionalName": "GHDx", "additionalNameLanguage": "eng"}] http://ghdx.healthdata.org/ [] ["data@healthdata.org"] The GHDx is our user-friendly and searchable data catalog for global health, demographic, and other health-related datasets. It provides detailed information about datasets ranging from censuses and surveys to health records and vital statistics, globally. It also serves as a platform for data owners to share their data with the public. The GDB Compare visualization, which allows the user to see rate of change in disease incidence, globally or by country, by age or across all ages, is especially powerful as a tool. Be sure to try adding a bottom chart, like the map, to augment the treemap that loads by default in the top chart. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ghdx.healthdata.org/about-ghdx [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census", "climate", "demography", "environment", "global health", "health survey", "population health"] [{"institutionName": "Bill & Melinda Gates foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gatesfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington, Institute for Health Metrics and Evaluation", "institutionAdditionalName": ["IHME"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.healthdata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.healthdata.org/about/team"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.healthdata.org/privacy-policy"}, {"policyName": "Terms and conditions", "policyURL": "http://www.healthdata.org/about/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1-0/"}] restricted [] ["other"] yes {} ["none"] http://ghdx.healthdata.org/about-ghdx/suggested-citations [] unknown yes [] [] {"syndication": "http://ghdx.healthdata.org/recent/feed", "syndicationType": "RSS"} The Institute for Health Metrics and Evaluation (IHME) is an independent global health research center at the University of Washington that provides rigorous and comparable measurement of the world's most important health problems and evaluates the strategies used to address them. IHME makes this information freely available so that policymakers have the evidence they need to make informed decisions about how to allocate resources to best improve population health. 2013-04-22 2017-04-03 +r3d100010253 GO-GEO eng [] http://www.gogeo.ac.uk/gogeo/ [] ["http://www.gogeo.ac.uk/gogeo/contactUs.htm"] >>>This repository is no longer available<<< Go-Geo is an online resource discovery tool which allows for the identification and retrieval of records describing the content, quality, condition and other characteristics of geospatial data that exist with UK tertiary education and beyond. The portal supports geospatial searching by interactive map, grid co-ordinates and place name, as well as the more traditional topic or keyword forms of searching. The portal is a key component of the UK academic Spatial Data Infrastructure. eng ["institutional"] {"size": "", "updatedp": ""} 2004 2016 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["archaeology", "environment", "geographical information systems", "hydrology", "land use", "mining", "natural hazard", "water"] [{"institutionName": "Higher Education Funding Council for England", "institutionAdditionalName": ["HEFCE"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hefce.ac.uk/", "institutionIdentifier": ["ROR:056y81r79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hefce.ac.uk/contact/"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "University of Edinburgh", "institutionAdditionalName": ["EDINA National Data Center"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://edina.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://edina.ac.uk/contact-us/"]}] [{"policyName": "GeoDoc Privacy Policy", "policyURL": "http://www.gogeo.ac.uk/webhelp/gogeo/gogeo.htm"}, {"policyName": "Policies & Privacy", "policyURL": "http://www.gogeo.ac.uk/webhelp/gogeo/gogeo.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://digimap.edina.ac.uk/webhelp/os/copyright/licence_agreement.htm"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://edina.ac.uk/cookie-policy/"}] restricted [{"dataUploadLicenseName": "Contribute your data", "dataUploadLicenseURL": "http://www.gogeo.ac.uk/webhelp/gogeo/gogeo.htm"}] ["DSpace"] yes {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.gogeo.ac.uk/gogeo-java/rss.xml", "syndicationType": "RSS"} 2013-04-29 2021-07-30 +r3d100010254 The Global Heat Flow Database of the International Heat Flow Commission eng [{"additionalName": "International Heat-flow Database", "additionalNameLanguage": "eng"}] https://www.ihfc-iugg.org/products/global-heat-flow-database [] ["heatflow@ihfc-iugg.org"] The global data compilation consisting of ca. 60,000 data points may be downloaded in csv/xml format. This compilation does not contain the descriptive codes relating to metadata that were included in the previous compilations. Users are advised to consult the references and make their own interpretations as to the quality of the data. eng ["disciplinary"] {"size": "about 60.000 data points", "updatedp": "2020-05-04"} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ihfc-iugg.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["earth's interior", "evolution of the earth", "geothermal data", "geothermy", "heat flow", "heat generation and transport", "hydrothermal systems", "midocean ridge processes"] [{"institutionName": "International Association of Seismology and Physics of the Earth's Interior", "institutionAdditionalName": ["IASPEI"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iaspei.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of Volcanology and Chemistry of the Earth's Interior", "institutionAdditionalName": ["IAVCEI"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iavceivolcano.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of the Physical Sciences of the Ocean", "institutionAdditionalName": ["IASPO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://iapso.iugg.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Heat Flow Commission", "institutionAdditionalName": ["IHFC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ihfc-iugg.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["administrator@ihfc-iugg.org/"]}] [{"policyName": "IHFC Statutes", "policyURL": "https://www.ihfc-iugg.org/about/statutes#objectives"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ihfc-iugg.org/documents/copyright"}] restricted [] ["unknown"] yes {} ["none"] https://www.ihfc-iugg.org/documents/copyright [] unknown yes [] [] {} Short form of the Link: http://heatflow.ihfc-iugg.org. The International Heat Flow Commission (IHFC) is a commission of, and operates generally under guidelines set by, the International Association of Seismology and Physics of the Earth's Interior (IASPEI). The International Association of Volcanology and Chemistry of the Earth's Interior (IAVCEI) and the International Association of the Physical Sciences of the Ocean (IASPO) are co-sponsors of and participate in the activities of the Committee. 2013-04-23 2021-02-05 +r3d100010255 Inter-university Consortium for Political and Social Research eng [{"additionalName": "ICPSR data archive", "additionalNameLanguage": "eng"}] https://www.icpsr.umich.edu/web/pages/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.y0df7m", "RRID:SCR_003194", "RRID:nif-0000-00615"] ["mshukait@umich.edu"] ICPSR maintains a data archive of more than 250,000 files of research in the social and behavioral sciences. It hosts 21 specialized collections of data in education, aging, criminal justice, substance abuse, terrorism, and other fields. ICPSR advances and expands social and behavioral research, acting as a global leader in data stewardship and providing rich data resources and responsive educational opportunities for present and future generations. eng ["disciplinary", "other"] {"size": "11.179 studies; 5.392.564 variables; 84.352 publications", "updatedp": "2019-08-28"} 1962 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}] https://www.icpsr.umich.edu/icpsrweb/content/membership/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aging", "census", "criminal justice", "education", "engineering", "geography", "health", "legal systems", "organizational behavior", "political science", "politics", "substance abuse", "terrorism", "urban studies"] [{"institutionName": "List of Member institutions of ICPSR", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/membership/administration/institutions", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research, Inter-University Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icpsr.umich.edu/icpsrweb/content/about/contact.html"]}] [{"policyName": "CoreTrustSealAssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/08/Inter-university-Consortium-for-Political-and-Social-Research.pdf"}, {"policyName": "ICPSR Collection Development Policy", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/policies/colldev.html"}, {"policyName": "Terms of use", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/shared/ICPSR/faqs/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/files/ICPSR/access/restricted/all.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/details.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/shared/ICPSR/faqs/terms-of-use.html"}] restricted [{"dataUploadLicenseName": "Start Deposit", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/deposit/"}] ["unknown"] {} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/citations.html [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ICPSR is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. ICPSR is an international, membership-based consortium of more than 700 academic institutions and research organizations; ICPSR provides leadership and training in data access, curation, and methods of analysis for the social science research community.In fiscal year 2012, ICPSR secured $10 million in grants and contracts through federal agencies, foundations, and the private sector. ICPSR is also a subcontractor on grants through outside universities and organizations. 2013-04-23 2021-09-03 +r3d100010256 Data Sharing for Demographic Research eng [{"additionalName": "A data archive for demography and population sciences", "additionalNameLanguage": "eng"}, {"additionalName": "DSDR", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/content/DSDR/index.html [] ["dsdr@icpsr.umich.edu"] Data Sharing for Demographic Research (DSDR) aims to serve the demographic community by archiving, preserving, and and disseminating data relevant for population studies eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/DSDR/mission.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["census data", "demographic survey", "family", "health", "immigration", "migration", "mortality", "population", "statistics"] [{"institutionName": "Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/Pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["NICHD NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Population Studies Center", "institutionAdditionalName": ["PSC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.psc.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icpsr.umich.edu/icpsrweb/DSDR/feedback.jsp"]}] [{"policyName": "Guide to social science data preparation and archiving", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/index.html"}, {"policyName": "Terms of Use", "policyURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}, {"policyName": "digital preservation policies and planning at ICPRS", "policyURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] restricted [{"dataUploadLicenseName": "Guide to Social Science Data Preparation and Archiving\nPhase 6: Depositing Data", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/chapter6.html"}] ["unknown"] {} ["DOI"] http://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/24681/version/1#cite [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Data Sharing for Demographic Research is one of the core partners of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255 2013-04-23 2017-04-04 +r3d100010257 Health and Medical Care Archive eng [{"additionalName": "Data archive of the RWJF", "additionalNameLanguage": "eng"}, {"additionalName": "Data archive of the Robert Wood Johnson Foundation", "additionalNameLanguage": "eng"}, {"additionalName": "HMCA", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/content/HMCA/index.html ["FAIRsharing_DOI:10.25504/FAIRsharing.szj2xw"] ["hmca@icpsr.umich.edu"] The Health and Medical Care Archive (HMCA) is the data archive of the Robert Wood Johnson Foundation (RWJF), the largest philanthropy devoted exclusively to health and health care in the United States. Operated by the Inter-university Consortium for Political and Social Research (ICPSR) at the University of Michigan, HMCA preserves and disseminates data collected by selected research projects funded by the Foundation and facilitates secondary analyses of the data. Our goal is to increase understanding of health and health care in the United States through secondary analysis of RWJF-supported data collections eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["health care", "medical care", "medicine", "substance abuse", "surveys of health"] [{"institutionName": "Robert Wood Johnson Foundation", "institutionAdditionalName": ["RWJF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.rwjf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rwjf.org/en/library/grants/2012/12/collecting--archiving--and-publicly-sharing-data-for-rwjf-s-heal.html"]}, {"institutionName": "University of Michigan, Inter-University Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icpsr.umich.edu/icpsrweb/content/about/contact.html"]}] [{"policyName": "Guide to social science data preparation and archiving", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/index.html"}, {"policyName": "digital preservation policies and planning at ICPRS", "policyURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/ICPSR/access/restricted/index.html"}] restricted [{"dataUploadLicenseName": "Data Deposit Form - Deposit agreement", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/files/ICPSR/access/deposit/data-deposit-form.pdf"}] ["unknown"] yes {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://www.icpsr.umich.edu/icpsrweb/HMCA/feeds/studies", "syndicationType": "RSS"} HMCA is one of the members of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255. Restricted data mostly have own policies and users must complete an agreement for the Use fo Confidential Data. 2013-04-23 2021-11-16 +r3d100010259 National Archive of Computerized Data on Aging eng [{"additionalName": "NACDA", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/NACDA/ ["FAIRsharing_doi:10.25504/FAIRsharing.xhzfk0", "RRID:SCR_005876", "RRID:nlx_149438"] ["help@icpsr.umich.edu", "http://www.icpsr.umich.edu/icpsrweb/content/NACDA/contact.html"] NACDA acquires and preserves data relevant to gerontological research, processing as needed to promote effective research use, disseminates them to researchers, and facilitates their use. By preserving and making available the largest library of electronic data on aging in the United States, NACDA offers opportunities for secondary analysis on major issues of scientific and policy relevance eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/NACDA/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aging", "gerontology", "health", "mortality", "social surveys"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Department of Health & Human services, National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://home.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] restricted [{"dataUploadLicenseName": "Deposit Data", "dataUploadLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/NACDA/deposit.html"}] ["unknown"] {} ["DOI"] http://www.icpsr.umich.edu/icpsrweb/content/shared/NACDA/faqs/why-and-how-should-i-cite-data.html [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} NACDA is one of the core partners of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255 2013-04-24 2021-11-09 +r3d100010260 National Archive of Criminal Justice Data eng [{"additionalName": "NACJD", "additionalNameLanguage": "eng"}, {"additionalName": "The source for crime and justice data", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/NACJD/ ["FAIRsharing_DOI:10.25504/FAIRsharing.4wjhCf"] ["nacjd@icpsr.umich.edu"] The central mission of the NACJD is to facilitate and encourage research in the criminal justice field by sharing data resources. Specific goals include providing computer-readable data for the quantitative study of crime and the criminal justice system through the development of a central data archive, supplying technical assistance in the selection of data collections and computer hardware and software for data analysis, and training in quantitative methods of social science research to facilitate secondary analysis of criminal justice data eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/NACJD/mission.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["adult and juvenile corrections", "attitude surveys", "community studies", "court case processing", "crime and delinquency", "criminal justice system", "drug use", "illegal corporate behavior", "police", "terrorism", "victimization"] [{"institutionName": "Bureau of Justice Statistics", "institutionAdditionalName": ["BJS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bjs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icpsr.umich.edu/icpsrweb/content/about/contact.html"]}, {"institutionName": "National Institute of Justice", "institutionAdditionalName": ["NIJ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nij.gov/Pages/welcome.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Office of Juvenile Justice and Delinquency Prevention", "institutionAdditionalName": ["OJJDP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ojjdp.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ICPSR Access Policy Framework", "policyURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}, {"policyName": "Terms of Use", "policyURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/NACJD/pdf/ProtectingCon.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] restricted [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/NACJD/archiving/index.html"}] ["unknown"] {} ["DOI"] http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/citations.html [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/feeds/studies?archive=NACJD&q=rss&x=29&y=21", "syndicationType": "RSS"} NACJD is one of the members of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255. NACJD is home to web sites for two separately maintained programs: the Project for Human Development in Chicago Neighborhoods (PHDCN) and the Terrorism and Preparedness Data Resource Center (TPDRC). 2013-04-24 2021-11-16 +r3d100010261 National Addiction & HIV Data Archive Program eng [{"additionalName": "NAHDAP", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/NAHDAP/ ["RRID:SCR_000636", "RRID:nif-0000-06713"] ["nahdap@icpsr.umich.edu"] NAHDAP acquires, preserves and disseminates data relevant to drug addiction and HIV research. By preserving and making available an easily accessible library of electronic data on drug addiction and HIV infection in the United States, NAHDAP offers scholars the opportunity to conduct secondary analysis on major issues of social and behavioral sciences and public policy eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/NAHDAP/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["HIV", "addiction", "alcohol abuse", "census data", "child care", "criminology", "drug abuse", "mental health"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Institute on Drug Abuse", "institutionAdditionalName": ["NIDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, Office of Behavioral and Social Sciences Research", "institutionAdditionalName": ["OBSSR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://obssr.od.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/chapter1.html#IP"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] open [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/NAHDAP/deposit/index.html"}] ["unknown"] {} ["DOI"] http://www.icpsr.umich.edu/icpsrweb/NAHDAP/studies/3541#cite [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} NAHDAP is one of the core partners of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255 2013-04-24 2017-04-04 +r3d100010262 Resource Center for Minority Data eng [{"additionalName": "RCMD", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/RCMD/ [] ["http://www.icpsr.umich.edu/icpsrweb/RCMD/feedback.jsp"] The changing demographic composition has expanded the scope of the U.S. racial and ethnic mosaic. As a result, interest and research on race and ethnicity has become more complex and expansive. RCMD seeks to assist in the public dissemination and preservation of quality data to generate more "good science" for years to come. Finally, RCMD wants to be part of an interactive community of persons interested and be involved in minority related issues/investigations in order to make possible the broadest scope of research endeavors and examinations. eng ["disciplinary"] {"size": "2005 studies", "updatedp": "2917-04-04"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/RCMD/mission.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["crime", "discrimination", "education", "employment", "health and well-being", "housing", "immigraion", "minority populations", "political participation", "poverty and income", "public opinion", "race and ethnicity"] [{"institutionName": "University of Michigan, Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["netmail@icpsr.umich.edu"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icpsr.umich.edu/files/datamanagement/preservation/policies/authrules.pdf"}] restricted [{"dataUploadLicenseName": "Data Deposit Form", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/cgi-bin/ddf2"}] ["unknown"] {} ["DOI"] http://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20460/terms ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/feeds/studies?q=RSS&archive=RCMD", "syndicationType": "RSS"} RCMD is a recent initiative of of Inter-University Consortium for Political and Social Research (ICPSR) re3data100010255. 2013-04-24 2017-04-04 +r3d100010263 Substance Abuse and Mental Health Data Archive eng [{"additionalName": "SAMHDA", "additionalNameLanguage": "eng"}] https://www.datafiles.samhsa.gov/ ["RRID:SCR_007002", "RRID:nif-0000-00618"] ["cbhsqrequest@samhsa.hhs.gov"] The Substance Abuse and Mental Health Data Archive (SAMHDA) is an initiative funded under contract HHSS283201500001C with the Center for Behavioral Health Statistics and Quality (CBHSQ), Substance Abuse and Mental Health Services Administration (SAMHSA), U.S. Department of Health and Human Services (HHS). CBHSQ has primary responsibility for the collection, analysis, and dissemination of SAMHSA's behavioral health data. Public use files and restricted use files are provided. CBHSQ promotes the access and use of the nation's substance abuse and mental health data through SAMHDA. SAMHDA provides public-use data files, file documentation, and access to restricted-use data files to support a better understanding of this critical area of public health. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.datafiles.samhsa.gov/info/about-samhda-project-nid14 [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DAWN", "N-MHSS", "N-SSATS", "NONSRS", "NSDUH", "TEDS-A", "TEDS-D", "aids / HIV", "alcohol", "drugs", "health", "mental illnesses", "prevention", "program", "rehabilitative services", "substance abuse"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Substance Abuse & Mental Health Services Administration", "institutionAdditionalName": ["SAMHSA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.samhsa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Neil.Russell@samhsa.gov"]}, {"institutionName": "Substance Abuse & Mental Health Services Administration, Center for Behavioral Health Statistics and Quality", "institutionAdditionalName": ["CBHSQ"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.samhsa.gov/about-us/who-we-are/offices-centers/cbhsq", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certificate of Confidentiality", "policyURL": "https://www.samhsa.gov/grants/gpra-measurement-tools/certificate-confidentiality"}, {"policyName": "Statement of commitment", "policyURL": "https://datafiles.samhsa.gov/info/statement-commitment-nid3421"}, {"policyName": "Terms of Use", "policyURL": "https://datafiles.samhsa.gov/info/terms-use-nid3422"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://datafiles.samhsa.gov/info/terms-use-nid3422"}] restricted [] ["unknown"] {} [] https://datafiles.samhsa.gov/info/terms-use-nid3422 [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.samhsa.gov/rss/", "syndicationType": "RSS"} SAHMDA was one of the core partners of Inter-University Consortium for Political and Social Research (ICPSR)re3data100010255 . As of August 21, 2015 SAMHSA contracted with a different vendor to distribute NSDUH, DAWN, and other SAMHDA restricted-use data. Questions about SAMHSA restricted-use data should be sent to samhda-support@samhsa.hhs.gov. ICPSR will continue to distribute public-use files created by the SAMHDA project. Users interested in substance abuse data are encouraged to search the ICPSR catalog and to visit the National Addiction & HIV Data Archive Program. See http://www.icpsr.umich.edu/icpsrweb/SAMHDA/ 2013-04-24 2021-08-25 +r3d100010264 Das Deutsche Referenzkorpus deu [{"additionalName": "Das Portal f\u00fcr die Korpusrecherche in Textkorpora des Instituts f\u00fcr Deutsche Sprache", "additionalNameLanguage": "deu"}, {"additionalName": "DeReKo", "additionalNameLanguage": "deu"}, {"additionalName": "The Mannheim German Reference Corpus", "additionalNameLanguage": "eng"}] https://www1.ids-mannheim.de/kl/projekte/korpora/ [] ["korpuslinguistik@ids-mannheim.de"] The project is set up in order to improve the infrastructure for text-based linguistic research and development by building a huge, automatically annotated German text corpus and the corresponding tools for corpus annotation and exploitation. DeReKo constitutes the largest linguistically motivated collection of contemporary German texts, contains fictional, scientific and newspaper texts, as well as several other text types, contains only licenced texts, is encoded with rich meta-textual information, is fully annotated morphosyntactically (three concurrent annotations), is continually expanded, with a focus on size and stratification of data, may be analyzed free of charge via the query system COSMAS II, serves as a 'primordial sample' from which users may draw specialized sub-samples (socalled 'virtual corpora') to represent the language domain they wish to investigate. !!! Access to data of Das Deutsche Referenzkorpus is also provided by: IDS Repository https://www.re3data.org/repository/r3d100010382 !!! eng ["disciplinary", "other"] {"size": "46 billions of words", "updatedp": "2019-11-27"} 2003 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www1.ids-mannheim.de/kl/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["corpora", "corpus acquisition", "corpus exploitation", "corpus preparation", "fictional and academic texts", "linguistics", "morphysyntatical annotations", "newspaper texts", "syntax"] [{"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin-d.net/en/help/contact"]}, {"institutionName": "Institut f\u00fcr Deutsche Sprache, Programmbereich Korpuslinguistik", "institutionAdditionalName": ["IDS"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www1.ids-mannheim.de/kl.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cosmas2@ids-mannheim.de", "korpuslinguistik@ids-mannheim.de"]}, {"institutionName": "Leibniz-Gemeinschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@leibniz-gemeinschaft.de"]}, {"institutionName": "Ministerium f\u00fcr Wissenschaft, Forschung und Kunst Baden-W\u00fcrttemberg", "institutionAdditionalName": ["MWK-BW"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mwk.baden-wuerttemberg.de/de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Infomaterialien", "policyURL": "https://www1.ids-mannheim.de/kl#infomaterialien"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www1.ids-mannheim.de/kl/projekte/korpora/akquisition.html#Urheberrechte"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www1.ids-mannheim.de/kl/projekte/korpora/verfuegbarkeit.html#Download"}] closed [] ["Fedora"] yes {"api": "http://repos.ids-mannheim.de/oaiprovider/?", "apiType": "OAI-PMH"} ["hdl"] http://www.ids-mannheim.de/cosmas2/projekt/hilfe/faq.html#F2 [] unknown yes [] [] {} Im Rahmen der EU-Projekts CLARIN und des vom BMBF und MWK-BW geförderten Projekts CLARIN-D arbeitet das Projekt Ausbau und Pflege von Korpora geschriebener Gegenwartssprache mit folgenden Partnern am Aufbau einer Forschungsinfrastruktur (FI) für die Sprachwissenschaft: https://www1.ids-mannheim.de/kl/projekte/korpora/kooperation.html Projectlanguage is German. 2013-04-25 2021-02-10 +r3d100010266 Mouse Genome Informatics eng [{"additionalName": "MGI", "additionalNameLanguage": "eng"}] http://www.informatics.jax.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.fcwyhz", "RRID:OMICS_01656", "RRID:SCR_006460", "RRID:nif-0000-00096"] ["http://www.informatics.jax.org/mgihome/support/mgi_inbox.shtml", "mgi-help@jax.org"] MGI is the international database resource for the laboratory mouse, providing integrated genetic, genomic, and biological data to facilitate the study of human health and disease. The projects contributing to this resource are: Mouse Genome Database (MGD) Project, Gene Expression Database (GXD) Project, Mouse Tumor Biology (MTB) Database Project, Gene Ontology (GO) Project at MGI, MouseMine Project, MouseCyc Project at MGI eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.informatics.jax.org/mgihome/projects/aboutmgi.shtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "disease models", "gene expression", "genetics", "genomic maps", "genomics", "mouse", "sequences"] [{"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/Pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": ["JAX"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://contact.jax.org/"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.jax.org/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.informatics.jax.org/mgihome/other/copyright.shtml"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.informatics.jax.org/mgihome/other/copyright.shtml"}] restricted [{"dataUploadLicenseName": "Submit Data", "dataUploadLicenseURL": "http://www.informatics.jax.org/submit.shtml"}] ["unknown"] {"api": "http://www.informatics.jax.org/downloads/", "apiType": "FTP"} [] http://www.informatics.jax.org/mgihome/other/citation.shtml [] yes yes [] [] {} Mouse Genome Database (MGD) Project, Gene Expression Database (GXD) Project, Mouse Tumor Biology (MTB) Database Project, Gene Ontology (GO) Project, MouseMine Project, MouseCyc Project are projects at MGI. Other databases: Mouse Phenome Database MPD, International Mouse Strain Resource. 2013-04-25 2021-09-03 +r3d100010267 International Ocean Discovery Program eng [{"additionalName": "Exploring the earth under the sea", "additionalNameLanguage": "eng"}, {"additionalName": "IODP", "additionalNameLanguage": "eng"}, {"additionalName": "Integrated Ocean Drilling Program", "additionalNameLanguage": "eng"}] http://www.iodp.org/ [] ["http://www.iodp.org/program-organization/science-support-office"] The International Ocean Discovery Program (IODP) is an international marine research collaboration that explores Earth's history and dynamics using ocean-going research platforms to recover data recorded in seafloor sediments and rocks and to monitor subseafloor environments. IODP depends on facilities funded by three platform providers with financial contributions from five additional partner agencies. Together, these entities represent 26 nations whose scientists are selected to staff IODP research expeditions conducted throughout the world's oceans. IODP expeditions are developed from hypothesis-driven science proposals aligned with the program's science plan Illuminating Earth's Past, Present, and Future. The science plan identifies 14 challenge questions in the four areas of climate change, deep life, planetary dynamics, and geohazards. Until 2013 under the name: International Ocean Drilling Program. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.iodp.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["calibration", "chemistry", "core repository", "deep biosphere", "deep sea", "drilling", "marine expeditions", "microbiological samples", "oceanography", "paleomagnetism", "paleontology", "sample distribution", "sediments", "subseafloor ocean", "x-ray"] [{"institutionName": "Australian-New Zealand IODP Consortium", "institutionAdditionalName": ["ANZIC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://iodp.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Coordination for Improvement of Higher Education Personnel", "institutionAdditionalName": ["CAPES"], "institutionCountry": "BRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iie.org/en/Programs/CAPES", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IODP-Koordinationsb\u00fcro an der Bundesanstalt f\u00fcr Geowissenschaften und Rohstoffe BGR", "institutionAdditionalName": ["IODP-coordination office Hannover"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.bgr.bund.de/DE/Themen/MarineRohstoffforschung/IODP/Home/iodp_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Jochen.Erbacher@bgr.de", "iodp@bgr.de"]}, {"institutionName": "India Ministry of Earth Science", "institutionAdditionalName": ["MoES"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://moes.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Integrated Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iodp.org/program-organization/science-support-office", "jcollier@iodp.org"]}, {"institutionName": "Japan Agency for Marine-Earth Science and Technology, Center for Deep Earth Exploration", "institutionAdditionalName": ["CDEX", "JAMSTEC"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.jamstec.go.jp/cdex/e/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japan's Ministry of Education, Culture, Sports, Science and Technology", "institutionAdditionalName": ["MEXT"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mext.go.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Korea Institute of Geology, Mining and Materials", "institutionAdditionalName": ["KIGAM"], "institutionCountry": "KOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://kigam.en.ecplaza.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MARUM - Zentrum f\u00fcr Marine Umweltwissenschaften der Universit\u00e4t Bremen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marum.de/en/Research/IODP.html", "uroehl@marum.de"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The European Consortium for Ocean Research Drilling", "institutionAdditionalName": ["ECORD"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ecord.org/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["http://www.ecord.org/contact.html"]}, {"institutionName": "The People's Republic of China Ministry of Science and Technology", "institutionAdditionalName": ["MOST"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.most.gov.cn/eng/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IODP-wide policies /procedures / guidelines", "policyURL": "https://www.iodp.org/policies-and-guidelines"}, {"policyName": "ODP Sample Distribution, Data Distribution, and Publications Policy", "policyURL": "http://www-odp.tamu.edu/publications/policy/policy.pdf"}, {"policyName": "Principles of scientific investigation", "policyURL": "http://www.iodp.org/about-iodp/principles-of-scientific-investigation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://iodp.tamu.edu/scienceops/copyright.html"}] restricted [{"dataUploadLicenseName": "Submitting proposals", "dataUploadLicenseURL": "http://www.iodp.org/submitting-proposals"}] ["unknown"] yes {"api": "http://brg.ldeo.columbia.edu/services/", "apiType": "OAI-PMH"} ["none"] https://www.iodp.org/policies-and-guidelines [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} the IODP core repository facilities are: (a)Bremen Core Repository (BCR) http://www.marum.de/en/IODP_Bremen_Core_Repository.html; (b)GCR - USIO Texas A & M University http://iodp.tamu.edu/curation/gcr/index.html; (c) The Rutgers/NJGS http://geology.rutgers.edu/research-facilities/rutgers-core-repository; (d) the KCC - Kochi Core Center http://www.kochi-core.jp/en/iodp-curation/index.html 2013-04-26 2018-01-12 +r3d100010268 Incorporated Research Institutions for Seismology eng [{"additionalName": "IRIS", "additionalNameLanguage": "eng"}] https://www.iris.edu/hq/ ["FAIRsharing_doi:10.25504/FAIRsharing.x9rqf7", "ROR:05xkn9s74", "RRID:SCR_002201", "RRID:nlx_154710"] ["webmaster@iris.edu"] IRIS offers free and open access to a comprehensive data store of raw geophysical time-series data collected from a large variety of sensors, courtesy of a vast array of US and International scientific networks, including seismometers (permanent and temporary), tilt and strain meters, infrasound, temperature, atmospheric pressure and gravimeters, to support basic research aimed at imaging the Earth's interior. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1984 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iris.edu/hq/about_iris#mission-statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquake", "field experimentation", "polar", "seismic data", "seismology", "strain meter", "tilt meter", "tsunami"] [{"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/council-of-data-facilitiess", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.earthcube.org/contact/General-Inquiries"]}, {"institutionName": "IRIS Data Management Center", "institutionAdditionalName": ["IRIS DMC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ds.iris.edu/ds/nodes/dmc/", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": ["tim@iris.washington.edu"]}, {"institutionName": "IRIS Member Institutions", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iris.edu/hq/about_iris/membership/member_institutions", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": ["https://www.iris.edu/hq/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "CoreTrustSeal asessment IRIS", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/12/Incorporated-Research-Institutions-for-Seismology-IRIS.pdf"}, {"policyName": "Expectations regarding real time data", "policyURL": "http://ds.iris.edu/ds/nodes/dmc/services/seedlink/"}, {"policyName": "Guidelines for Preparing Data Management Plans", "policyURL": "http://ds.iris.edu/data/pdf/NSF_Data_Management_Plans.pdf"}, {"policyName": "Release of Restricted Data", "policyURL": "http://ds.iris.edu/data/pdf/DMC_RestrictedDataRelease.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] restricted [{"dataUploadLicenseName": "Data providers agreement", "dataUploadLicenseURL": "https://ds.iris.edu/files/documents/Data_Provider_Agreement.pdf"}, {"dataUploadLicenseName": "Submitting Data", "dataUploadLicenseURL": "http://ds.iris.edu/ds/nodes/dmc/data/submitting/"}] [] {"api": "http://ds.iris.edu/pub/", "apiType": "FTP"} ["DOI"] https://www.iris.edu/hq/iris_citations#citation-howto [] unknown yes ["other"] [] {"syndication": "http://www.iris.edu/hq/rss/calendar", "syndicationType": "RSS"} Incorporated Research Institutions for Seismology is covered by Clarivate Data Citation Index. IRIS is a consortium of over 100 US universities dedicated to the operation of science facilities for the acquisition, management, and distribution of seismological data. IRIS programs contribute to scholarly research, education, earthquake hazard mitigation, and the verification of a Comprehensive Test Ban Treaty. 2013-05-02 2021-08-25 +r3d100010269 J. Craig Venter Institute eng [{"additionalName": "JCVI", "additionalNameLanguage": "eng"}] https://www.jcvi.org// ["RRID:SCR_011269", "RRID:nlx_42542"] ["https://www.jcvi.org/contact", "purchasing@jcvi.org"] JCVI is a world leader in genomic research. The Institute studies the societal implications of genomics in addition to genomics itself. The Institute's research involves genomic medicine; environmental genomic analysis; clean energy; synthetic biology; and ethics, law, and economics. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006-10-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.jcvi.org/about/overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biological energy", "human genomic medicine", "human health", "infectious disease", "microbial and environment genomics", "plant", "software engineering", "synthetic biology"] [{"institutionName": "J. Craig Venter Institute", "institutionAdditionalName": ["JCVI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jcvi.org//", "institutionIdentifier": ["ROR:049r1ts75", "RRID:SCR_011269", "RRID:nlx_42542"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jcvi.org/contact"]}] [{"policyName": "Acknowledgement of Data Use", "policyURL": "https://www.jcvi.org/acknowledgement-data-use"}, {"policyName": "JCVI Policy", "policyURL": "https://www.jcvi.org/jcvi-policy-promoting-objectivity-research-under-public-health-service-regulations"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jcvi.org/internet-usage-privacy-statement"}] restricted [] ["other"] no {} ["none"] [] unknown yes [] [] {} databases: https://www.jcvi.org/search?keys=database&type_1=3 J.Craig Venter Institute was formed in October 2006 through the merger of several affiliated and legacy organizations — The Institute for Genomic Research (TIGR) and The Center for the Advancement of Genomics (TCAG), The J. Craig Venter Science Foundation, The Joint Technology Center, and the Institute for Biological Energy Alternatives (IBEA). Today all these organizations have become one large multidisciplinary genomic-focused organization. With more than 400 scientists and staff, more than 250,000 square feet of laboratory space, and locations in Rockville, Maryland and San Diego, California. 2013-05-02 2021-10-27 +r3d100010270 Landesarchiv Baden-Württemberg eng [{"additionalName": "Landesarchiv Baden-W\u00fcrttemberg", "additionalNameLanguage": "deu"}, {"additionalName": "la-bw", "additionalNameLanguage": "deu"}] https://www.landesarchiv-bw.de/web/49435 [] ["landesarchiv@la-bw.de"] As cultural competence center for the region, the Landesarchiv serves as the repository for records of cultural and historical value and assures the access of archives in Baden-Wuerttemberg as part of the cultural heritage. It identifies, collects, and preserves state records and makes them available to all those who are interested in historical records. The Landesarchiv houses archival collections ranging from deeds from the Middle Ages to digital sources of our time (databases, e-mails, internet pages). The Landesarchiv has already been providing diversified access to archival collections via internet and is actively working on research and presentation of the history of Southwest Germany. The archival collections of the Landesarchiv convey the cultural and historical diversity in Southwest Germany. Each holding is unique and characterizes the distinctive history of the people and the region. This makes the Landesarchiv an irreplaceable reservoir of knowledge and experience with remarkable quantitative dimensions: The Landesarchiv houses about 146 shelf kilometers of documents and books, 310 thousand charters as well as 350 thousand maps and plans completed with photographs and audio-visual records. Electronic data are stored in the digital stack of the Landesarchiv. eng ["disciplinary"] {"size": "152 Regalkilometer Akten und B\u00e4nde, 310.000 Urkunden, 350.000 Karten und Pl\u00e4ne", "updatedp": "2019-06-04"} 2005 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.landesarchiv-bw.de/web/49622 [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Baden-W\u00fcrttemberg", "analysis", "archiving", "digitization", "inventory", "regional history", "southwest Germany"] [{"institutionName": "Landesarchiv Baden-W\u00fcrttemberg", "institutionAdditionalName": ["la-bw"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.landesarchiv-bw.de/web/48823", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.landesarchiv-bw.de/web/48099"]}, {"institutionName": "Ministerium f\u00fcr Wissenschaft, Forschung und Kunst", "institutionAdditionalName": ["MWK"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://mwk.baden-wuerttemberg.de/de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mwk.baden-wuerttemberg.de/de/service/kontakt/"]}] [{"policyName": "Download und Weitergabe", "policyURL": "https://www.landesarchiv-bw.de/web/54580"}, {"policyName": "Rechtsgrundlagen", "policyURL": "https://www.landesarchiv-bw.de/web/46788"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/deed.de"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.landesarchiv-bw.de/web/54580#57844"}] closed [] ["other"] {} ["none"] https://www.landesarchiv-bw.de/sixcms/media.php/120/54556/Hinweise%20und%20Beispiele%20zu%20den%20archivischen%20Auflagen-ZitierregelnLABW.pdf [] unknown yes [] [] {"syndication": "https://www.landesarchiv-bw.de/rss/rss.xml", "syndicationType": "RSS"} 2013-05-08 2019-06-04 +r3d100010271 OLAC eng [{"additionalName": "Open Language Archives Community", "additionalNameLanguage": "eng"}] http://www.language-archives.org/ [] ["Gary_Simons@sil.org", "sb@ldc.upenn.edu"] OLAC, the Open Language Archives Community, is an international partnership of institutions and individuals who are creating a worldwide virtual library of language resources by: (i) developing consensus on best current practice for the digital archiving of language resources, and (ii) developing a network of interoperating repositories and services for housing and accessing such resources. eng ["disciplinary", "institutional"] {"size": "over 100.000 records", "updatedp": "2019-10-25"} 2000-12-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.language-archives.org/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["digital archiving", "education", "language", "linguistics"] [{"institutionName": "Carnegie Mellon University", "institutionAdditionalName": ["CMU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "OLAC, Participating Archives", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.language-archives.org/archives.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania, Linguistic Data Consortium", "institutionAdditionalName": ["LDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://home.www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["olac-admin@googlegroups.com", "olac-admin@language-archives.org"]}, {"institutionName": "Wayne State University", "institutionAdditionalName": ["WSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wayne.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "OLAC Metadata", "policyURL": "http://www.language-archives.org/OLAC/metadata.html"}, {"policyName": "OLAC Metadata Usage Guidelines", "policyURL": "http://www.language-archives.org/NOTE/usage.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.language-archives.org/documents/faq.html#8"}] restricted [{"dataUploadLicenseName": "Archive Submission Policies", "dataUploadLicenseURL": "http://www.language-archives.org/submission-policies.html"}, {"dataUploadLicenseName": "OLAC Data Provider", "dataUploadLicenseURL": "http://www.language-archives.org/documents/implement.html"}] ["unknown"] {"api": "http://www.language-archives.org/cgi-bin/olaca3.pl", "apiType": "OAI-PMH"} ["DOI", "PURL"] http://www.language-archives.org/item/oai:paradisec.org.au:LB1-ARTICLE [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} OLAC is part of a larger community known as the Open Archives Initiative. The OAI develops and promotes interoperability standards for digital archives, and currently spans dozens of archives and a total of over a million records. The OAI community page lists OAI mailing lists, archives, and websites. OLAC Archive metrics at http://www.language-archives.org/metrics/ 2013-06-10 2019-10-25 +r3d100010272 Environmental Data Initiative Repository eng [{"additionalName": "EDI Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: The Long Term Ecological Research Repository", "additionalNameLanguage": "eng"}] https://portal.edirepository.org/nis/home.jsp ["FAIRsharing_doi:10.25504/FAIRsharing.xd3wmy"] ["https://portal.edirepository.org/nis/contact.jsp", "support@environmentaldatainitiative.org"] The Environmental Data Initiative Repository concentrates on studies of ecological processes that play out at time scales spanning decades to centuries including those of the NSF Long Term Ecological Research (LTER) program, the NSF Macrosystems Biology Program, the NSF Long Term Research in Environmental Biology (LTREB) program, the Organization of Biological Field Stations, and others. The repository hosts data that provide a context to evaluate the nature and pace of ecological change, to interpret its effects, and to forecast the range of future biological responses to change. eng ["disciplinary"] {"size": "", "updatedp": ""} 1980 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30203 Theory and Modelling", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://portal.edirepository.org/nis/about.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "arctic warming", "climatic change", "earth observation", "ecology", "ecosystem", "environment", "environmental change", "environmental monitoring", "environmental observation", "nature", "old-growth forests", "remote sensing", "satellite data"] [{"institutionName": "DataONE", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dataone.org/contact"]}, {"institutionName": "Environmental Data Inititative", "institutionAdditionalName": ["EDI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://environmentaldatainitiative.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@environmentaldatainitiative.org"]}, {"institutionName": "Long Term Ecological Research Committees and Groups", "institutionAdditionalName": ["LTER"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lternet.edu/committees", "institutionIdentifier": [], "responsibilityStartDate": "1985", "responsibilityEndDate": "", "institutionContact": ["https://lternet.edu/contact-us/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Mexico at Albuquerque, Center for Research in Ecological Science and Technology", "institutionAdditionalName": ["CREST", "UNM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unm.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jbrunt@unm.edu", "mark.servilla@gmail.com"]}, {"institutionName": "University of Wisconsin - Madison", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cgries@wisc.edu."]}] [{"policyName": "EDI Data Policy", "policyURL": "https://environmentaldatainitiative.org/data/edi-data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Public Domain Dedication (CC Zero)", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] ["other"] yes {"api": "http://pastaplus-core.readthedocs.io/en/latest/doc_tree/pasta_api/data_package_manager_api.html", "apiType": "REST"} ["DOI"] https://environmentaldatainitiative.org/resources/how-to/how-to-cite-data/ [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {"syndication": "https://environmentaldatainitiative.org/feed/", "syndicationType": "RSS"} Environmental Data Initiative Repository (formerly LTER repository) is covered by Clarivate Data Citation Index (formerly Thomson Reuters). Environmental Data Initiative is built on PASTA data repository software . 2013-05-13 2019-07-31 +r3d100010273 Marine Geoscience Data System eng [{"additionalName": "MGDS", "additionalNameLanguage": "eng"}] http://www.marine-geo.org/library/ ["FAIRsharing_doi:10.25504/FAIRsharing.9enwm8"] ["http://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] The Marine Geoscience Data System (MGDS) is a trusted data repository that provides free public access to a curated collection of marine geophysical data products and complementary data related to understanding the formation and evolution of the seafloor and sub-seafloor. Developed and operated by domain scientists and technical specialists with deep knowledge about the creation, analysis and scientific interpretation of marine geoscience data, the system makes available a digital library of data files described by a rich curated metadata catalog. MGDS provides tools and services for the discovery and download of data collected throughout the global oceans. Primary data types are geophysical field data including active source seismic data, potential field, bathymetry, sidescan sonar, near-bottom imagery, other seafloor senor data as well as a diverse array of processed data and interpreted data products (e.g. seismic interpretations, microseismicity catalogs, geologic maps and interpretations, photomosaics and visualizations). Our data resources support scientists working broadly on solid earth science problems ranging from mid-ocean ridge, subduction zone and hotspot processes, to geohazards, continental margin evolution, sediment transport at glaciated and unglaciated margins. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.marine-geo.org/about/overview.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bathymetry", "earth", "geophysics", "marine seismic", "observational earth data", "ocean floor", "oceans", "paleoclimate", "polar sciences", "seafloor", "sediment and rocks"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory, Marine Geoscience Data System", "institutionAdditionalName": ["MGDS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.marine-geo.org/index.php", "institutionIdentifier": ["RRID:SCR_002164", "RRID:nlx_154713"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.marine-geo.org/about/contact.php"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "http://www.marine-geo.org/about/terms_of_use.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.marine-geo.org/about/terms_of_use.php"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "http://www.marine-geo.org/submit/guidelines.php"}] ["unknown"] {"api": "http://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["DOI"] http://www.marine-geo.org/library/ [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.marine-geo.org/api/opensearch/1.1/collection/EW9207", "syndicationType": "ATOM"} MGDS is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. The Marine Geoscience Data System (MGDS), part of the Interdisciplinary Earth Data Alliance (IEDA) facility, provides access to data portals for the NSF-supported Ridge 2000, MARGINS, and GeoPRISMS programs, the Antarctic and Southern Ocean Data Synthesis, the Global Multi-Resolution Topography Synthesis, and Seismic Reflection Field Data Portal. These portals were developed and are maintained as a single integrated system, providing free public access to a wide variety of primarily marine geoscience data collected during expeditions throughout the global oceans. In addition to these Data Portals, MGDS also hosts the US Antarctic Program Data Coordination Center (USAP-DCC) which provides tools to help scientists find Antarctic data of interest and satisfy their obligation to share data under the NSF Office of Polar Programs (OPP) data policy. Partners: Earth Chem; Integrated Ocean Drilling Program, LDEO Ccore Repository, Acedemic Seismic Portal at UTIG; National Geophyisical Data Center; Geosciences Web Services. 2013-05-16 2021-09-02 +r3d100010274 The whole brain Atlas eng [] http://www.med.harvard.edu/AANLIB/ ["RRID:SCR_005390", "RRID:nif-0000-00079"] ["keith@bwh.harvard.edu"] This is an information resource for central nervous system imaging which integrates clinical information with magnetic resonance (MR), x-ray computed tomography (CT), and nuclear medicine images. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.med.harvard.edu/AANLIB/disclaimer.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["basic neuroanatomy", "brain disease", "central nervous systems", "crt", "ct", "human brain", "magnetic resonance imaging", "metastases", "mri", "neuroimaging", "pet", "positron emission computed tomography", "roentgen-ray computed tomography", "single photon", "spect", "tumor"] [{"institutionName": "American Academy of Neurology", "institutionAdditionalName": ["AAN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aan.com/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://www.aan.com/contact-aan/"]}, {"institutionName": "Brigham and Women's Hospital, Department of Radiology", "institutionAdditionalName": ["BWH Radiology", "Department of Radiology"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.brighamandwomens.org/Departments_and_Services/radiology/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.brighamandwomens.org/Departments_and_Services/radiology/contactUs.aspx"]}, {"institutionName": "Countway Library of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.countway.harvard.edu/node", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["https://www.countway.harvard.edu/forms/countway-website-feedback"]}, {"institutionName": "Harvard Medical School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://hms.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": ["keith@bwh.harvard.edu"]}] [{"policyName": "The Whole Brain Atlas Help Pages", "policyURL": "http://www.med.harvard.edu/AANLIB/help.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.med.harvard.edu/AANLIB/cprt.html"}] open [{"dataUploadLicenseName": "Submit", "dataUploadLicenseURL": "http://www.med.harvard.edu/AANLIB/subm.html"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2013-05-24 2021-08-25 +r3d100010275 Marine Environmental Data Section eng [{"additionalName": "MEDS", "additionalNameLanguage": "eng"}, {"additionalName": "SDMM", "additionalNameLanguage": "fra"}, {"additionalName": "Section des donn\u00e9es sur le milieu marin", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: Canadian Oceanographic Data Centre - CODC (1962-1971)", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Integrated Science Data Management - ISDM (2005-2013)", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Marine Environmental Data Service - MEDS (1971-2005)", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Oceanography and Scientific Data - OSD (2013-2015)", "additionalNameLanguage": "eng"}] https://meds-sdmm.dfo-mpo.gc.ca/isdm-gdsi/index-eng.html [] ["https://www.canada.ca/en/contact.html"] As the national oceanographic data centre for Canada, MEDS maintains centralized repositories of some oceanographic data types collected in Canada, and coordinates data exchanges between DFO and recognized intergovernmental organizations, as well as acts as a central point for oceanographic data requests. Real-time, near real-time (for operational oceanography) or historical data are made available as appropriate. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.dfo-mpo.gc.ca/about-notre-sujet/index-eng.htm [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["biology", "contamination", "fish health", "fishery", "freshwater", "hydrology", "marine chemistry", "marine habitat data", "meteorology", "oceanographic data"] [{"institutionName": "Government of Canada, Fisheries and Oceans Canada", "institutionAdditionalName": ["DFO", "Gouvernement du Canada, P\u00eaches et Oc\u00e9ans Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.dfo-mpo.gc.ca/index-eng.htm", "institutionIdentifier": [], "responsibilityStartDate": "1979", "responsibilityEndDate": "", "institutionContact": ["http://dfo-mpo.gc.ca/contact/index-eng.htm"]}] [{"policyName": "Policies and Guidelines", "policyURL": "http://www.dfo-mpo.gc.ca/csas-sccs/process-processus/index-eng.html"}, {"policyName": "Policy for scientific data", "policyURL": "http://www.dfo-mpo.gc.ca/science/data-donnees/policy-politique/page1-eng.html"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://open.canada.ca/en/open-government-licence-canada"}] restricted [{"dataUploadLicenseName": "Policy for scientific data", "dataUploadLicenseURL": "http://www.dfo-mpo.gc.ca/science/data-donnees/policy-politique/page1-eng.html"}] ["unknown"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {"syndication": "https://www.canada.ca/en/fisheries-oceans.atom.xml", "syndicationType": "ATOM"} MEDS was established as the Marine Environmental Data Service in 1969 to coordinate the Canadian Wave Climate Study. It was significantly enlarged in 1973, when the Tides and Water Levels Section of the Canadian Hydrographic Service and the Canadian Oceanographic Data Centre (established in 1962) were incorporated into it. It was known between 2005 and 2015 under the acronyms ISDM and OSD. Since 2015, MEDS is a Section of the Department's Ocean Sciences Branch. 2013-05-28 2021-09-07 +r3d100010276 Melanoma Molecular Map Project eng [{"additionalName": "MMMP", "additionalNameLanguage": "eng"}] http://www.mmmp.org/MMMP/import.mmmp?page=aims_org.mmmp ["FAIRsharing_doi:10.25504/FAIRsharing.xxtmjs"] ["ipd@mmmp.org"] The Melanoma Molecular Map Project (MMMP) is an open access, interactive web-based multidatabase dedicated to the research on melanoma biology and therapy. The aim of this non-profit project is to create an organized and continuously updated databank collecting the huge and ever growing amount of scientific knowledge on melanoma currently scattered in thousands of articles published in hundreds of Journals. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20519 Dermatology", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mmmp.org/MMMP/import.mmmp?page=aims_org.mmmp [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cancer therapy", "clinical therapy", "clinical trials", "drugs", "epidemiology of melanoma", "family predisposition", "molecular biology", "molecular pathways", "risk factors"] [{"institutionName": "Biology online", "institutionAdditionalName": ["answers to all your biology questions"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.biology-online.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Journal of Cancer Molecules", "institutionAdditionalName": [], "institutionCountry": "TWN", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.mupnet.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Melanoma New Zealand", "institutionAdditionalName": ["MelNet", "Melanoma Foundation of New Zealand"], "institutionCountry": "NZL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.melanoma.org.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Piccoli Punti", "institutionAdditionalName": ["ricerca scientifica sul melanoma"], "institutionCountry": "ITA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.piccolipunti.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Otago, Centre of translational Cancer Research, Pathology Department, Dunedin School of Medicine", "institutionAdditionalName": ["Dunedin School of Medicine"], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.otago.ac.nz/dsm/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": ["http://www.otago.ac.nz/ctcr/contacts/index.html", "http://www.otago.ac.nz/dsm/people/expertise/profile/index.html?id=728"]}, {"institutionName": "intergruppo melanomia italiano", "institutionAdditionalName": ["imi"], "institutionCountry": "ITA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.melanomaimi.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TTD User Guide", "policyURL": "http://www.mmmp.org/mmmpFile/TTDguide_1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.mmmp.org/MMMP/import.mmmp?page=aims_org.mmmp"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.mmmp.org/MMMP/import.mmmp?page=au_guide.mmmp"}] restricted [{"dataUploadLicenseName": "Authors' Guide", "dataUploadLicenseURL": "http://www.mmmp.org/MMMP/import.mmmp?page=au_guide.mmmp"}] ["unknown"] {} ["DOI"] [] unknown yes [] [] {} The MMMP website includes one discoursive overview on melanoma, one section dedicated to the news and 6 interconnected databases: Targeted therapy analyzer (tool); targeted therapy database; biomaps; biocards; Melanoma molecular profile; drug development database; clinical trial database. 2013-05-29 2021-11-09 +r3d100010278 The ROSAT Mission eng [{"additionalName": "R\u00f6nten-Astronomie-Wave", "additionalNameLanguage": "deu"}, {"additionalName": "x-ray satellite", "additionalNameLanguage": "eng"}] https://www.mpe.mpg.de/ROSAT [] [] On June 1, 1990 the German X-ray observatory ROSAT started its mission to open a new era in X-ray astronomy. Doubtless, this is the most ambitious project realized up to now in the short history of this young astronomical discipline. Equipped with the largest imaging X-ray telescope ever inserted into an earth orbit ROSAT has provided a tremendous amount of new scientific data and insights. eng ["disciplinary"] {"size": "about 80.000 cosmic X-ray sources; 6000 sources in the extreme ultraviolet regime", "updatedp": "2013-06-13"} 1990-06-01 1999-02-12 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://projects.mpe.mpg.de/heg/rosat/mission/rosat/mission.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "galaxy", "high resolution imager HRI", "observations", "position sensitive proportional counter", "spectroscopy", "supernova", "x-ray telescope XRT"] [{"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Aerospace Center", "institutionAdditionalName": ["DARA", "DLR", "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dlr.de/rd/en/desktopdefault.aspx/tabid-4281/6898_read-10005/"]}, {"institutionName": "Goddard Space Flight Center, High Energy Astrophysics Science Archive Research Center", "institutionAdditionalName": ["HEASARC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://heasarc.gsfc.nasa.gov/docs/rosat/rra/RRA.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://heasarc.gsfc.nasa.gov/docs/rosat/archive.html", "rosathelp@olegacy.gsfc.nasa.gov"]}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["AIP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aip.de/de/", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hbrunnerl@lmpe.mpg.de"]}, {"institutionName": "Leicester University", "institutionAdditionalName": ["LU"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://le.ac.uk/", "institutionIdentifier": ["ROR:04h699437"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mbu@star.le.ac.uk"]}, {"institutionName": "Max Planck Institute for Extraterrestrial Physics", "institutionAdditionalName": ["MPE", "Max-Planck-Institut f\u00fcr extraterrestrische Physik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpe.mpg.de/main", "institutionIdentifier": ["ROR:00e4bwe12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["xray-info@mpe.mpg.de"]}, {"institutionName": "Smithsonian Astrophysical Observatory", "institutionAdditionalName": ["SAO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pweb.cfa.harvard.edu/about/about-smithsonian-astrophysical-observatory", "institutionIdentifier": ["ROR:04mh52z70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rsdc@cfa.harvard.edu"]}, {"institutionName": "Universit\u00e4t T\u00fcbingen, Institut f\u00fcr Astronomie und Astrophysik", "institutionAdditionalName": ["IAAT"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://astro.uni-tuebingen.de/groups/rosat/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["barnstedt@astro.uni-tuebingen.de"]}] [{"policyName": "Data Protection Information", "policyURL": "https://www.mpe.mpg.de/data-protection"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mpe.mpg.de/impressum"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} On 23 October 2011 at 03:50 CEST, the German research satellite ROSAT re-entered the atmosphere over the Bay of Bengal; it is not known whether any parts of the satellite reached Earth's surface. Determination of the time and location of re-entry was based on the evaluation of data provided by international partners, including the USA. Another access to mission data at http://heasarc.gsfc.nasa.gov/docs/rosat/rra/RRA.html 2013-06-13 2021-04-06 +r3d100010279 Brain Biodiversity Bank eng [{"additionalName": "BBBank", "additionalNameLanguage": "eng"}, {"additionalName": "Michigan State University Brain Biodiversity Bank", "additionalNameLanguage": "eng"}] https://www.msu.edu/~brains/ ["RRID:SCR_003289", "RRID:nif-0000-00059"] [] The Brain Biodiversity Bank refers to the repository of images of and information about brain specimens contained in the collections associated with the National Museum of Health and Medicine at the Armed Forces Institute of Pathology in Washington, DC. These collections include, besides the Michigan State University Collection, the Welker Collection from the University of Wisconsin, the Yakovlev-Haleem Collection from Harvard University, the Meyer Collection from the Johns Hopkins University, and the Huber-Crosby and Crosby-Lauer Collections from the University of Michigan and the C.U. Ariëns Kappers brain collection from Amsterdam Netherlands.Introducing online atlases of the brains of humans, sheep, dolphins, and other animals. A world resource for illustrations of whole brains and stained sections from a great variety of mammals eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.msu.edu/~brains/learn/whatwedo.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal brain", "axolotl brain", "biodiversity", "dolphin brain", "human brain", "mammals", "medical neuroscience", "mri", "neuroanatomy", "sheep brain"] [{"institutionName": "Michigan State University, Comm Tech Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.msu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["johnij4@yahoo.com", "johnij@aol.com"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Army National Museum of Health and Medicine", "institutionAdditionalName": ["NMHM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.medicalmuseum.mil/index.cfm?p=collections.neuroanatomical.summary.index", "institutionIdentifier": [], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": ["http://www.medicalmuseum.mil/index.cfm?p=contact"]}, {"institutionName": "University of Wisconsin", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["welker@neurophys.wisc.edu"]}] [{"policyName": "Research collections access policy", "policyURL": "http://www.medicalmuseum.mil/index.cfm?p=collections.neuroanatomical.summary.policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.msu.edu/~brains/copyright.html"}] closed [] ["unknown"] {} ["none"] https://www.msu.edu/~brains/copyright.html [] unknown unknown [] [] {} This internet site is associated with the Comparative Mammalian Brain Collections site at http://www.brainmuseum.org 2013-06-17 2019-08-07 +r3d100010280 Henry A. Murray Research Archive at IQSS, Harvard University eng [{"additionalName": "Murray Archive", "additionalNameLanguage": "eng"}] http://www.murray.harvard.edu/ [] ["dvn_support@help.hmdc.harvard.edu"] The Henry A. Murray Research Archive is Harvard's endowed, permanent repository for quantitative and qualitative research data at the Institute for Quantitative Social Science, and provides physical storage for the entire IQSS Dataverse Network. Our collection comprises over 100 terabytes of data, audio, and video. We preserve in perpetuity all types of data of interest to the research community, including numerical, video, audio, interview notes, and other data. We accept data deposits through this web site, which is powered by our Dataverse Network software eng ["disciplinary"] {"size": "over 100 terabytes of data, audio, and video", "updatedp": "2017-05-11"} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://murray.harvard.edu/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["demography", "ethnicity", "family", "government", "politics", "public health", "race", "religion", "sexual orientation"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dvn_support@help.hmdc.harvard.edu"]}] [{"policyName": "Collection of Important Services and Usage Policies", "policyURL": "http://www.murray.harvard.edu/policies"}, {"policyName": "HMDC Usage Policies", "policyURL": "https://css.iq.harvard.edu/hmdc-usage-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "http://opendatacommons.org/licenses/by/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [{"dataUploadLicenseName": "other", "dataUploadLicenseURL": "http://murray.harvard.edu/policies"}] ["DataVerse"] yes {} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} The Henry A. Murray Archive, through its endowment, supports permanent bit-level preservation of all social science research studies directly deposited in the IQSS Dataverse Network (r3d100010051). (For details, see the IQSS Archival Preservation policies.) 2013-06-19 2019-03-05 +r3d100010281 NatureServe eng [{"additionalName": "NatureServe network", "additionalNameLanguage": "eng"}] https://www.natureserve.org/ [] ["https://www.natureserve.org/contact-us", "info@natureserve.org"] NatureServe and its network of member programs are a leading source for reliable scientific information about species and ecosystems of the Western Hemisphere. This site serves as a portal for accessing several types of publicly available biodiversity data. The Explorer lists 70,000 plants, animals, and ecological communities of the United States and Canada eng ["disciplinary", "other"] {"size": "70.000 plants, animals and ecological communities; 8.500 common, rare and endangered species, 788 ecosystems", "updatedp": "2013-06-20"} 2001 ["eng", "fra", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.natureserve.org/about-us [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["amphibian", "biodiversity", "birds", "ecologial communities", "ecosystems", "invasive species", "mammals", "species"] [{"institutionName": "NatureServe", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.natureserve.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.natureserve.org/about-us/contact-us"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.natureserve.org/terms-and-conditions"}, {"policyName": "Use guidelines and citation", "policyURL": "http://explorer.natureserve.org/legal.htm#copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://explorer.natureserve.org/legal.htm#copyright"}] restricted [] ["unknown"] yes {"api": "https://services.natureserve.org/idd/rest/globalSpecies?", "apiType": "REST"} ["none"] http://explorer.natureserve.org/use_guidelines.htm [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Today the NatureServe network includes 82 independent natural heritage programs and conservation data centers throughout the Western Hemisphere, with nearly 1,000 dedicated scientists and a collective annual budget of more than $45 million. 2013-06-20 2021-09-29 +r3d100010282 NCBI eng [{"additionalName": "National Center for Biotechnology Information", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/ ["RRID:SCR_006472", "RRID:nif-0000-00139"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/"] The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1988 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30501 Biological and Biomimetic Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioassays", "blast", "dna", "genes", "genomes", "proteins", "sequence analysis", "taxonomy"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"]}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy Details", "policyURL": "http://publicaccess.nih.gov/policy.htm"}, {"policyName": "Privacy policy", "policyURL": "http://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.copyright.gov/fls/fl102.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] restricted [{"dataUploadLicenseName": "Submissions", "dataUploadLicenseURL": "http://www.ncbi.nlm.nih.gov/guide/all/#submissions_"}] [] {"api": "http://www.ncbi.nlm.nih.gov/Ftp/", "apiType": "FTP"} ["DOI"] [] unknown yes [] [] {"syndication": "http://www.ncbi.nlm.nih.gov/news/feed/", "syndicationType": "RSS"} 2013-06-20 2021-09-29 +r3d100010283 Gene Expression Omnibus eng [{"additionalName": "GEO", "additionalNameLanguage": "eng"}] http://www.ncbi.nlm.nih.gov/geo/ ["FAIRsharing_DOI:10.25504/FAIRsharing.5hc8vt", "RRID:OMICS_01030", "RRID:SCR_007303", "RRID:nif-0000-00142"] ["geo@ncbi.nlm.nih.gov"] Gene Expression Omnibus: a public functional genomics data repository supporting MIAME-compliant data submissions. Array- and sequence-based data are accepted. Tools are provided to help users query and download experiments and curated gene expression profiles. eng ["disciplinary"] {"size": "Platforms 17.251 ; Samples 2.072.423 ; Series 84.386; DataSets 4.348", "updatedp": "2017-05-15"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.ncbi.nlm.nih.gov/geo/info/overview.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "Gene Expression", "Genetic Regulation", "Genomics Data"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["geo@ncbi.nlm.nih.gov"]}, {"institutionName": "National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GEO and MIAME", "policyURL": "http://www.ncbi.nlm.nih.gov/geo/info/MIAME.html"}, {"policyName": "Guidelines for reviewers and journal editors", "policyURL": "http://www.ncbi.nlm.nih.gov/geo/info/reviewer.html"}, {"policyName": "Submitting data", "policyURL": "http://www.ncbi.nlm.nih.gov/geo/info/submission.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/geo/info/disclaimer.html"}] restricted [{"dataUploadLicenseName": "Submitting data", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/geo/info/submission.html"}] ["unknown"] {"api": "ftp://ftp.ncbi.nlm.nih.gov/geo/", "apiType": "FTP"} ["none"] http://www.ncbi.nlm.nih.gov/geo/info/linking.html [] yes yes [] [] {"syndication": "http://www.ncbi.nlm.nih.gov/geo/feed/series/", "syndicationType": "RSS"} GEO is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. GEO include genomics data of the Beta Cell Biology Consortium (BCBC). This was a team science initiative that was established by the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK). 2013-06-11 2021-09-02 +r3d100010284 Peptidome eng [] http://www.ncbi.nlm.nih.gov/peptidome/ [] [] Peptidome was a public repository that archived tandem mass spectrometry peptide and protein identification data generated by the scientific community. This repository is now offline and is in archival mode. All data may be obtained from the Peptidome FTP site. Due to budgetary constraints NCBI has discontinued the Peptidome Repository. All existing data and metadata files will continue to be made available from our ftp server a ftp://ftp.ncbi.nih.gov/pub/peptidome/ indefinitely. Those files are named according to their Peptidome accession number, allowing cited data to be identified and downloaded. All of the Peptidome studies have been made publicly available at the PRoteomics IDEntifications (PRIDE) database. A map of Peptidome to Pride accessions may be found at ftp://ftp.ncbi.nih.gov/pub/peptidome/peptidome-pride_map.txt. If you have any specific questions, please feel free to contact us at info@ncbi.nlm.nih.gov. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["protein identification", "proteomics"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov", "institutionIdentifier": ["ROR:02meqm098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ncbi.nlm.nih.gov"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] closed [] ["unknown"] no {"api": "ftp://ftp.ncbi.nih.gov/pub/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-06-11 2021-09-29 +r3d100010285 NCBI Reference Sequence Database eng [{"additionalName": "RefSeq", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/refseq/ ["RRID:OMICS_01659", "RRID:SCR_003496", "RRID:nif-0000-03397"] ["https://www.ncbi.nlm.nih.gov/projects/RefSeq/update.cgi"] The Reference Sequence (RefSeq) collection provides a comprehensive, integrated, non-redundant, well-annotated set of sequences, including genomic DNA, transcripts, and proteins. RefSeq sequences form a foundation for medical, functional, and diversity studies. They provide a stable reference for genome annotation, gene identification and characterization, mutation and polymorphism analysis (especially RefSeqGene records), expression studies, and comparative analyses. eng ["disciplinary"] {"size": "84.756.971 proteins; 18.901.573 transcripts; 69.035 organisms", "updatedp": "2017-05-16"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ncbi.nlm.nih.gov/refseq/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Genomic DNA sequences", "Protein sequences"] [{"institutionName": "Department of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://apps.nlm.nih.gov/mainweb/siebel/nlm/index.cfm/"]}] [{"policyName": "NLM Privacy Policy", "policyURL": "http://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] closed [] ["unknown"] {"api": "ftp://ftp.ncbi.nlm.nih.gov/refseq/", "apiType": "FTP"} ["none"] http://www.ncbi.nlm.nih.gov/refseq/publications/ [] unknown yes [] [] {} 2013-06-05 2021-09-29 +r3d100010286 NOAA National Centers for Environmental Information - formerly: National Climatic Data Center eng [{"additionalName": "NCEI", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: NCDC", "additionalNameLanguage": "eng"}] http://www.ncdc.noaa.gov/ [] ["https://www.ncdc.noaa.gov/customer-support", "ncei.info@noaa.gov"] ! The National Climatic Data Center has merged into the National Centers for Environmental Information (NCEI). NOAA's National Climatic Data Center (NCDC) is responsible for preserving, monitoring, assessing, and providing public access to the Nation's treasure of climate and historical weather data and information. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncei.noaa.gov/about [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Climate data", "Historical climate data", "Historical weather data", "Weather data"] [{"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncdc.noaa.gov/customer-support"]}] [{"policyName": "NCEI Privacy Policy", "policyURL": "https://www.ncei.noaa.gov/privacy"}, {"policyName": "Protecting your privacy online", "policyURL": "http://www.noaa.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncdc.noaa.gov/data-access/quick-links#notes"}] restricted [] ["unknown"] {"api": "http://gis.ncdc.noaa.gov/arcgis/rest/services", "apiType": "REST"} ["DOI"] [] unknown yes [] [] {"syndication": "http://www.ncdc.noaa.gov/news.xml", "syndicationType": "RSS"} For more information about RESTful API: http://www.ncdc.noaa.gov/cdo-web/webservices/ 2013-06-02 2021-09-29 +r3d100010287 NC OneMap eng [] http://www.nconemap.com/ [] ["david.giordano@its.nc.gov", "nconemap@its.nc.gov"] NC OneMap is a public service providing comprehensive discovery and access to North Carolina's geospatial data resources. NC OneMap, the State's Clearinghouse for geospatial information, relies on data sharing and partnerships. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.nconemap.com/Default.aspx?tabid=289#initiative [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Environmental sciences", "Geospatial data"] [{"institutionName": "North Carolina Center for Geographic Information and Analysis", "institutionAdditionalName": ["CGIA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cgia.state.nc.us", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nconemap@its.nc.gov"]}, {"institutionName": "North Carolina Geographic Information Coordinating Council", "institutionAdditionalName": ["NCGICC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ncgicc.net", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy and Security Policy", "policyURL": "http://www.nconemap.com/DiscoverGetData/AccesstoLocalGeospatialData.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nconemap.com/DiscoverGetData/AccesstoLocalGeospatialData.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nconemap.com/Portals/7/documents/Access_LocalData_Online.pdf"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://data.nconemap.com/geoportal/rest/find/document?f=atom", "syndicationType": "ATOM"} 2013-06-02 2017-05-17 +r3d100010288 The National Archives eng [{"additionalName": "National Digital Archive of Datasets (NDAD)", "additionalNameLanguage": "eng"}, {"additionalName": "The National Archives Discovery", "additionalNameLanguage": "eng"}] https://discovery.nationalarchives.gov.uk/ [] ["https://www.nationalarchives.gov.uk/contact-us/"] The National Archives is home to millions of historical documents, known as records, which were created and collected by UK central government departments and major courts of law. Data of the fomer National Digital Archive of Datasets (NDAD) collection, which was active from 1997 to 2010 and preserves and provides online access to archived digital datasets and documents from UK central government departments, is integrated. eng ["institutional"] {"size": "32 million descriptions of records, 9 million downloadable records", "updatedp": "2019-11-25"} 1997 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.nationalarchives.gov.uk/about/our-role/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["UK government departments", "economics", "ethics", "historical geography", "history", "intellectual property", "public health", "public records", "statistics"] [{"institutionName": "The National Archives", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nationalarchives.gov.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://www.nationalarchives.gov.uk/contact-us/"]}, {"institutionName": "University of London, CoSector", "institutionAdditionalName": ["formerly: University of London Computer Centre"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cosector.com/cosector-digital", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "2010", "institutionContact": ["info@cosector.com"]}] [{"policyName": "Our policies", "policyURL": "https://www.nationalarchives.gov.uk/about/our-role/plans-policies-performance-and-projects/our-policies/"}, {"policyName": "Preservation Policy", "policyURL": "https://www.nationalarchives.gov.uk/documents/preservation-policy-june-2018.pdf"}, {"policyName": "Records collection policy", "policyURL": "https://www.nationalarchives.gov.uk/documents/information-management/records-collection-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nationalarchives.gov.uk/about/our-role/transparency/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nationalarchives.gov.uk/information-management/legislation/"}] closed [] ["unknown"] {} ["none"] https://www.nationalarchives.gov.uk/help-with-your-research/citing-records-national-archives/ [] unknown unknown [] [] {} The NDAD system was discontinued in 2010. The way that government publishes datasets has evolved and, as they are now made available on government websites, it is possible to capture and preserve them in the UK Government Web Archive. 2013-06-02 2019-11-26 +r3d100010289 NERC Earth Observation Data Centre eng [{"additionalName": "NEODC", "additionalNameLanguage": "eng"}] http://www.neodc.rl.ac.uk ["FAIRsharing_doi:10.25504/FAIRsharing.7HtoZI"] ["info@nceo.ac.uk"] The NERC Earth Observation Data Centre (NEODC) is a Designated Data Centre of the Natural Environment Research Council (NERC) and as such it is tasked with the acquisition, archiving and provision of access to remotely sensed data of the surface of the Earth acquired by satellite and airborne sensors. The NEODC also acts as a source of information regarding Earth Observation data generally and its application to environmental research and survey with the provision of guidance and advice, as appropriate, on matters of copyright, policy and strategy with regard to specific NERC EO data resources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.neodc.rl.ac.uk/popups/articleswindow.php?id=14 [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["ecology", "observatory", "remote-sensing"] [{"institutionName": "National Centre for Earth Observation", "institutionAdditionalName": ["NCEO"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nceo.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["neodc@rl.ac.uk"]}] [{"policyName": "Data rules and policies", "policyURL": "http://www.neodc.rl.ac.uk/popups/faqwindow.php?id=7"}, {"policyName": "Terms & Condition", "policyURL": "http://www.neodc.rl.ac.uk/popups/articleswindow.php?id=6"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.neodc.rl.ac.uk/popups/faqwindow.php?id=7"}] closed [] ["unknown"] {"api": "http://ftp.ceda.ac.uk", "apiType": "FTP"} ["DOI"] http://www.neodc.rl.ac.uk/popups/faqwindow.php?id=10 [] unknown unknown [] [] {} NEODC is one of the Data Centres of NERC, https://nerc.ukri.org/research/sites/data/ 2013-05-28 2021-11-09 +r3d100010290 National Ecological Observatory Network eng [{"additionalName": "NEON", "additionalNameLanguage": "eng"}] https://www.neonscience.org/ [] ["https://www.neonscience.org/observatory/contact-us"] The National Ecological Observatory Network (NEON) is a continental-scale observatory designed to gather and provide 30 years of ecological data on the impacts of climate change, land use change and invasive species on natural resources and biodiversity. NEON is a project of the National Science Foundation, with many other U.S. agencies and NGOs cooperating. eng ["disciplinary"] {"size": "over 175 data products", "updatedp": "2019-01-15"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.neonscience.org/observatory/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA barcoding", "agriculture systems", "biogeochemistry", "carbon cycling", "climate change", "ecological data", "ecological informatics", "ecology", "environmental sensors", "forest management", "freshwater ecosystems", "instrumented systems", "invasion biology", "metagenomes", "remote sensing", "soil", "specimens", "terrestrial ecosystems", "urban ecosystems", "water quality"] [{"institutionName": "Battelle", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.battelle.org/homepage", "institutionIdentifier": ["RRID:SCR_011112", "RRID:nlx_158079"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["RRID:SCR_003999", "RRID:nlx_158410"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NEON Data Policies", "policyURL": "https://www.neonscience.org/data/data-policies"}, {"policyName": "NEON Terms of Use", "policyURL": "https://www.neonscience.org/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.neonscience.org/data/data-policies"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.neonscience.org/data/data-policies"}] closed [] ["other"] {"api": "http://data.neonscience.org/data-api", "apiType": "REST"} ["none"] https://www.neonscience.org/data/data-policies [] no yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "http://data.neonscience.org/news/-/blogs/rss", "syndicationType": "RSS"} 2013-05-28 2019-01-15 +r3d100010291 The Netlib eng [] http://www.netlib.org/ [] ["netlib@netlib.org"] The Netlib repository contains freely available software, documents, and databases of interest to the numerical, scientific computing, and other communities. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1980 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}] http://www.netlib.org/misc/faq.html#2.1 [{"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["mathematical software"] [{"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ornl.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Tennessee, Knoxville", "institutionAdditionalName": ["UTK"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.utk.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["netlib_maintainers@netlib.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.netlib.org/misc/faq.html#2.3"}] restricted [{"dataUploadLicenseName": "General guidelines for submissions", "dataUploadLicenseURL": "http://icl.utk.edu/na-digest/websubmit.html"}] ["unknown"] {"api": "http://www.netlib.org/utk/netlib_html_guide/section3_13.html", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-05-23 2019-01-15 +r3d100010292 NOAA National Centers for Environmental Information - formerly: National Geophysical Data Center eng [{"additionalName": "World Data Service for Geophysics", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: NGDC", "additionalNameLanguage": "eng"}] https://www.ngdc.noaa.gov/mgg/mggd.html [] ["https://www.ngdc.noaa.gov/mgg/aboutmgg/contacts.html", "mgg.info@noaa.gov"] The NOAA National Centers for Environmental Information (formerly the National Geophysical Data Center) provide scientific stewardship, products and services for sea floor and lakebed data, including geophysics (gravity, magnetics, seismic reflection, bathymetry, water column sonar), and data derived from sediment and rock samples. NCEI compiles coastal and global digital elevation models, high-resolution models for tsunami inundation studies, provides stewardship for NOS data supporting charts and navigation, and is the US national long-term archive for MGG data eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ngdc.noaa.gov/mgg/aboutmgg/nsfmgg.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Geophysics"] [{"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["ncei.info@noaa.gov"]}, {"institutionName": "National Environmental Satellite, Data and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic & Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": ["RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ngdc.info@noaa.gov"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification/certification"}, {"policyName": "Privacy Policy | Disclaimer | Copyright", "policyURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}] restricted [{"dataUploadLicenseName": "Guidelines for Contributing Marine Geological and Geophysical Data to the National Centers for Environmental Information (NCEI)", "dataUploadLicenseURL": "https://www.ngdc.noaa.gov/mgg/aboutmgg/contrib.html"}] ["unknown"] {"api": "ftp://ftp.ngdc.noaa.gov/", "apiType": "FTP"} ["DOI"] https://nosc.noaa.gov/EDMC/documents/EDMC-PD-DataCitation-1.0.pdf [] unknown yes ["WDS"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} World Data Service for Geophysics is covered by Thomson Reuters Data Citation Index. === NOAA’s former three data centers—the National Climatic Data Center, the National Geophysical Data Center, and the National Oceanographic Data Center, which includes the National Coastal Data Development Center—have merged into the National Centers for Environmental Information (NCEI). === Effective October 2011, the World Data Service for Geophysics, collocated at NCEI, replaces former World Data Center for Geophysics and Marine Geology, and for Solar-Terrestrial Physics. === World Data Service for Geophysics is part of ICSU World Data System. === NCEI (formerly NGDC) is the national long-term archive for data and metadata pertaining to underway geophysical data and marine geological samples collected with US National Science Foundation (NSF) funds. This role is outlined in NSF11060 Policy for Oceanographic Data. === 2013-05-28 2018-11-14 +r3d100010293 World Data Center for Cosmic Rays eng [{"additionalName": "WDCCR", "additionalNameLanguage": "eng"}] http://cidas.isee.nagoya-u.ac.jp/WDCCR/ [] ["wdccr21@yahoo.co.jp", "wdccr@stelab.nagoya-u.ac.jp"] The database includes world-wide cosmic-ray neutron observations (pressure-corrected 1 hour counts) since 1953. The date are opened in two formats; one is 4096-byte "longformat" data and the other one is 80-byte "cardformat" data. Since the "cardformat" data are prepared only for quick check of data, the "longformat" data, which include information for data usage (constant, factors, etc), should be used for research works. PS files (compressed) of yearly plots are also available. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://cidas.isee.nagoya-u.ac.jp/WDCCR/readme.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["X-rays", "atomic nuclei", "cosmic ray neutrons", "electromagnetic radiation", "gamma rays", "high-energy particles", "high-energy protons", "photons", "solar activity", "supernovae"] [{"institutionName": "Nagoya University, Institute for Space-Earth Environmental Research", "institutionAdditionalName": ["ISEE"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.isee.nagoya-u.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nagoya University, Solar-Terrestrial Environment Laboratory", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.stelab.nagoya-u.ac.jp/index.php.en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wdccr21@yahoo.co.jp", "wdccr@stelab.nagoya-u.ac.jp"]}] [{"policyName": "Readme", "policyURL": "http://cidas.isee.nagoya-u.ac.jp/WDCCR/readme.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cidas.isee.nagoya-u.ac.jp/WDCCR/readme.html"}] restricted [] ["unknown"] {"api": "ftp://ftp.stelab.nagoya-u.ac.jp/pub/WDCCR/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} 2013-05-27 2019-01-22 +r3d100010294 WDC for Ionosphere and Space Weather eng [] http://wdc.nict.go.jp/wdc_e.html [] ["iono@ml.nict.go.jp"] National Institute of Information and Communications Technology (NICT) has taken charge of the WDC for Ionosphere. WDC for Ionosphere archives ionospheric data and metadata from approximately 250 stations across the globe. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1957 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.nict.go.jp/en/about/charter.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ionosphere", "space weather"] [{"institutionName": "National Institute of Information and Communications Technology, Applied Electromagnetic Research Institute, Space Environment Laboratory", "institutionAdditionalName": ["NICT"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://wdc.nict.go.jp/IONO/index_E.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["iono@ml.nict.go.jp"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "Data Request Policies and Procedures", "policyURL": "http://wdc.nict.go.jp/IONO/HP2009/contact_us_e.html"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://wdc.nict.go.jp/IONO/HP2009/contact_us_e.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown ["WDS"] [] {} Part of the World Data System Network. 2013-05-23 2017-09-29 +r3d100010295 Nobeyama Radio Polarimeters eng [{"additionalName": "NoRP", "additionalNameLanguage": "eng"}, {"additionalName": "\u91ce\u8fba\u5c71\u5f37\u5ea6\u504f\u6ce2\u8a08", "additionalNameLanguage": "jpn"}] http://solar.nro.nao.ac.jp/norp/ [] ["solar_helpdesk@ml.nao.ac.jp"] Nobeyama Radio Polarimeters (NoRP) are observing the Sun with multiple frequencies in the microwave range. It is capable to obtain the total coming flux and the circular-polarization degree. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1977 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["solar activity"] [{"institutionName": "Nobeyama Radio Observatory", "institutionAdditionalName": ["NAOJ"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://solar.nro.nao.ac.jp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service@solar.nro.nao.ac.jp"]}] [{"policyName": "Data Use Policy", "policyURL": "http://solar.nro.nao.ac.jp/norp/html/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://solar.nro.nao.ac.jp/norp/html/policy.html"}] closed [] ["unknown"] {"api": "ftp://solar-pub.nao.ac.jp/pub/nsro/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-05-21 2021-08-25 +r3d100010297 Cold and Arid Regions Science Data Center at Lanzhou eng [{"additionalName": "CARD", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Glaciology and Geocryology", "additionalNameLanguage": "eng"}, {"additionalName": "World Data System for Cold and Arid Regions", "additionalNameLanguage": "eng"}] http://card.westgis.ac.cn/ [] ["westdc@lzb.ac.cn"] World Data System for Cold and Arid Regions(CARD) is a new scientific data sharing system which is established on the basis of the former World Data Center for Glaciology and Geocryology, Lanzhou and other data centers hosted by Cold and Arid Regions Environmental and Engineering Research Institute, Chinese Academy of Sciences. World Data System for Cold and Arid Regions is one of the constituents of World Data System. The data sharing system's main goals are to collect, manage and store the scientific data of Cold and Arid Regions area in China and provide the services for the scientific research of Cold and Arid Regions. eng ["disciplinary"] {"size": "1552 datasets", "updatedp": "2017-05-22"} 2006 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://card.westgis.ac.cn/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["chinese cryosphere", "desert", "frozen soil", "geocryology", "glaciology", "soil texture", "surface atmospheric forcing"] [{"institutionName": "Chinese Academy of Sciences, Cold and Arid Regions Environmental and Engineering Research Institute", "institutionAdditionalName": ["CAREERI", "CAS"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://card.westgis.ac.cn/about/contact", "westdc@lzb.ac.cn"]}] [{"policyName": "Summary of Data sharing work of WDC for glaciology and geocryology", "policyURL": "http://wdcdgg.westgis.ac.cn/aboutus.htm"}, {"policyName": "Terms", "policyURL": "http://card.westgis.ac.cn/about/terms"}, {"policyName": "Use & Copyrights", "policyURL": "http://card.westgis.ac.cn/about/copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://card.westgis.ac.cn/about/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["DOI"] http://card.westgis.ac.cn/about/copyright [] unknown unknown ["WDS"] [] {"syndication": "http://card.westgis.ac.cn/data/feed", "syndicationType": "RSS"} CARD is covered by Thomson Reuters Data Citation Index. World Data System for Cold and Arid Regions(CARD) is a new scientific data sharing system which is established on the basis of the former World Data Center for Glaciology and Geocryology, Lanzhou and other data centers hosted by Cold and Arid Regions Environmental and Engineering Research Institute, Chinese Academy of Sciences. World Data System for Cold and Arid Regions is one of the constituents of World Data System. The data sharing system's main goals are to collect, manage and store the scientific data of Cold and Arid Regions area in China and provide the services for the scientific research of Cold and Arid Regions. 2013-05-21 2017-09-29 +r3d100010299 World Data Center for Climate eng [{"additionalName": "Climate and Environmental Retrieval and Archive", "additionalNameLanguage": "eng"}, {"additionalName": "ISC World Data Center for Climate", "additionalNameLanguage": "eng"}, {"additionalName": "WDCC Data Portal CERA", "additionalNameLanguage": "eng"}] https://www.dkrz.de/up/systems/wdcc ["FAIRsharing_doi:10.25504/FAIRsharing.x3hgaw"] ["data@dkrz.de"] The mission of World Data Center for Climate (WDCC) is to provide central support for the German and European climate research community. The WDCC is member of the ISC's World Data System. Emphasis is on development and implementation of best practice methods for Earth System data management. Data for and from climate research are collected, stored and disseminated. The WDCC is restricted to data products. Cooperations exist with thematically corresponding data centres of, e.g., earth observation, meteorology, oceanography, paleo climate and environmental sciences. The services of WDCC are also available to external users at cost price. A special service for the direct integration of research data in scientific publications has been developed. The editorial process at WDCC ensures the quality of metadata and research data in collaboration with the data producers. A citation code and a digital identifier (DOI) are provided and registered together with citation information at the DOI registration agency DataCite. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.dkrz.de/up/doku/wdcc [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CERA database", "climate", "climate simulation", "cryosphere", "data assimilation", "earth science", "earth system sciences"] [{"institutionName": "Deutsches Klimarechenzentrum GmbH", "institutionAdditionalName": ["DKRZ"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dkrz.de", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://www.dkrz.de/about-en/contact?set_language=en"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU WDS", "ICSU World Data System"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icsu-wds.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icsu-wds.org/contact-us"]}] [{"policyName": "CERA - Terms of use", "policyURL": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=termsofuse"}, {"policyName": "CoreTrustSealAssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/01/DKRZ-WDC-Climate-WDCC.pdf"}, {"policyName": "DKRZ1 Long Term Archive2: Preservation and Storage Policy", "policyURL": "https://cera-www.dkrz.de/docs/DKRZ-LTA-PreservationAndStoragePolicy.pdf"}, {"policyName": "WDS Data Policy", "policyURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/2.0/de/deed.en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=termsofuse"}] restricted [{"dataUploadLicenseName": "Data Submission Preparation Guide", "dataUploadLicenseURL": "https://cera-www.dkrz.de/docs/DataSubmissionPreparationGuide.pdf"}] ["other"] {"api": "http://c3grid1.dkrz.de:8080/oai/oaisearch.do", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=termsofuse [] unknown yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/atomfeed", "syndicationType": "ATOM"} is covered by Elsevier. WDC-Climate at DKRZ is covered by Thomson Reuters Data Citation Index. For German climate research, the domain-specific high performance computing centre DKRZ is an indispensable service provider. DKRZ offers in addition to the operation of the supercomputer and storage systems many services relating to climate modeling. WDCC is part of ICSU World Data System. 2013-03-04 2021-09-03 +r3d100010300 International Geodynamics and Earth Tide Service eng [{"additionalName": "Global Geodynamic Project at GFZ Information System and Data Center (GGP ISDC) (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "IGETS", "additionalNameLanguage": "eng"}, {"additionalName": "IGETS Data Base at GFZ Potsdam", "additionalNameLanguage": "eng"}] http://isdc.gfz-potsdam.de/igets-data-base/ [] ["christian.voigt@gfz-potsdam.de", "christoph.foerste@gfz-potsdam.de", "igets-support@gfz-potsdam.de", "jeanpaul.boy@unistra.fr"] IGETS is the International Geodynamics and Earth Tide Service of the International Association of Geodesy (IAG). The main objective of IGETS is to monitor temporal variations of the Earth gravity field through long‐term records from ground gravimeters, tiltmeters, strainmeters and other geodynamic sensors. IGETS continues the activities of the Global Geodynamics Project (GGP) to provide support to geodetic and geophysical research activities using superconducting gravimeter (SG) data within the context of an international network. Furthermore, IGETS continues the activities of the International Center for Earth Tides (ICET), in particular, in collecting, archiving and distributing Earth tide records from long series of gravimeters, tiltmeters, strainmeters and other geodynamic sensors. GFZ is the main Data Center and operates the IGETS data base of worldwide high precision SG records. EOST (Ecole et Observatoire des Sciences de la Terre, Strasbourg, France) is the secondary Data Center, The University of French Polynesia (Tahiti) and EOST (Strasbourg, France) are the two current Analysis Centers. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isdc.gfz-potsdam.de/igets-data-base/ [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["earth tides", "geodesy", "geodynamics", "geophysics", "gravimetry", "gravitmetry", "hydrology"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["Deutsches GeoForschungszentrum GFZ", "GFZ", "GFZ German Research Centre for Geosciences", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["igets-support@gfz-potsdam.de"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences, Information System and Data Center", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://isdc.gfz-potsdam.de/igets-data-base/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00c9cole et Observatoire des Sciences de la Terre", "institutionAdditionalName": ["EOST", "GPP (former)", "Global Geodynamic Project (former)"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://eost.unistra.fr/", "institutionIdentifier": ["Wikidata:Q3577986"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jeanpaul.boy@unistra.fr"]}] [{"policyName": "Data Products", "policyURL": "http://igets.u-strasbg.fr/data_products.php"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {} ["DOI"] https://iag.dgfi.tum.de/fileadmin/IAG-docs/Travaux2017/30_IGETS_2015-2017.pdf [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} GFZ operates the IGETS data base of worldwide high precision SG records. The hosted products are: (1) Raw gravity and local pressure records sampled at 1 or 2 seconds, in addition to the same records decimated at 1‐minute samples (Level 1 products). (2) Gravity and pressure data corrected for instrumental perturbations, ready for tidal analysis. This product is derived from the previous datasets, and is computed by one or several Analysis Centers (Level 2 products). (3) Gravity residuals after particular geophysical corrections (including solid Earth tides, polar motion, tidal and non‐tidal loading effects). This product is also derived from the previous dataset and is computed by one or several Analysis Centers (Level 3 products) Detailed information: Report on the Data Base of the International Geodynamics and Earth Tide Service (IGETS) http://isdc.gfz-potsdam.de/igets-data-base/documentation/ 2013-05-16 2020-09-28 +r3d100010301 World Data Centre for Geomagnetism, Copenhagen eng [{"additionalName": "WDC - Geomagnetism, Copenhagen", "additionalNameLanguage": "eng"}] https://www.space.dtu.dk/English/Research/Scientific_data_and_models/World_Data_Center_for_Geomagnetism.aspx [] ["anna@space.dtu.dk"] The WDC has a FTP-server to distribute the PCN index derived from the geomagnetic observatory Qaanaaq (THL) and the Kp-index data products derived at the geomagnetic observatory Niemegk (NGK). The WDC is also holding extensive archives of magnetograms and other geomagnetic observatory data products that predate the introduction of digital data recording. The material is in analogue form such as film or microfiche. The Polar Cap index (abbreviation PC index) consists of the Polar Cap North (PCN) and the Polar Cap South (PCS) index, which are derived from magnetic measurements taken at the geomagnetic observatories Qaanaaq (THL, Greenland, +85o magnetic latitude) and Vostok (VOS, Antarctica, -83o magnetic latitude), respectively. The idea behind these indices is to estimate the intensity of anti-sunward plasma convection in the polar caps. This convection is associated with electric Hall currents and consequent magnetic field variations perpendicular to the antisunward plasma flow (and related Hall current) which can be monitored at the Qaanaaq and Vostok magnetic observatories. PC aims at monitoring the energy input from solar wind to the magnetosphere (loading activity). The index is constructed in such a way that it has a linear relationship with the merging Electric Field at the magnetopause; consequently PC is given in units of mV/m as for the electric field. In August 2013, the International Association of Geomagnetism and Aeronomy (IAGA) endorsed the PC index. The endorsed PC index is accessible at pcindex.org or through WDC Copenhagen. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["dan", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.wdc.bgs.ac.uk/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Kp-index", "Northern PC Index", "geomagnetism", "magnetograms"] [{"institutionName": "Helmholtz Centre Potsdam, GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU WDS", "ICSU World Data System"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technical University of Denmark, DTU Space -National Space Institute", "institutionAdditionalName": ["DTU", "Danmarks Tekniske Universitet, DTU Space - Institut for Rumforskning og-teknologi"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.space.dtu.dk/english", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.space.dtu.dk/english/Service/Contact", "jrgm@space.dtu.dk"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] yes {"api": "ftp://ftp.space.dtu.dk/WDC/", "apiType": "FTP"} ["none"] [] unknown unknown ["WDS"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.space.dtu.dk/english/News?rss=1", "syndicationType": "RSS"} The WDC Copenhagen was established for the International Geophysical Year in 1957 at the Danish Meteorological Institute. The Geomagnetic Data Master Catalogue of hourly and 1-minute means of the geomagnetic observatories was developed at WDC Copenhagen and moved to WDC Edinburgh at BGS in 2007. The WDC Copenhagen is maintained by DTU Space from 2010 onwards. The WDC Copenagen is accredited by ICSU World Data System (ICSU-WDS). Data Sharing Principles read more: http://www.icsu-wds.org/services/data-sharing-principles 2013-05-16 2020-09-25 +r3d100010303 ISRIC - World Soil Information eng [{"additionalName": "WDC Soils", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Centre for Soils", "additionalNameLanguage": "eng"}] https://www.isric.org/ [] ["niels.batjes@isric.org"] ISRIC - World Soil Information is an independent foundation. As regular member of the ICS World Data System it is also known as World Data Centre for Soils (WDC-Soils). ISRIC was founded in 1966 through the International Soil Science Society (ISSS) and United Nations Educational, Scientific and Cultural Organization (UNESCO). It has a mission to serve the international community with information about the world’s soil resources to help addressing major global issues. Our work is organised according to four work streams: 1) Setting standards and references, 2) Soil information provision (databases & soil mapping), 3) Capcaity building and advocacy, and 4) Generation of derived products. eng ["disciplinary"] {"size": "10,000 (digitized) maps & 17.000 reports and books (via https://www.isric.org/explore/library); digital databases > 150 (via data.isric.org)", "updatedp": "2018--07-30"} 1966 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.isric.org/about/vision-mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "OGC compliant", "soil collections", "soil data", "soil mapping", "web services"] [{"institutionName": "ISRIC - World Soil Information", "institutionAdditionalName": ["World Data Centre for Soils (WDC-Soils)"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isric.org", "institutionIdentifier": ["ROR:01z8yfp14"], "responsibilityStartDate": "1966", "responsibilityEndDate": "", "institutionContact": ["https://www.isric.org/form/contact"]}] [{"policyName": "CoreTrustSeal assessment 2017-2019", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/07/ISRIC-WDC-Soils.pdf"}, {"policyName": "ISRIC Data and Software Policy", "policyURL": "https://www.isric.online/about/data-policy"}, {"policyName": "Regular member of ICSU World Data System", "policyURL": "https://www.icsu-wds.org/community/membership/regular-members/@@member_view?fid=isric-wdc-soils"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.isric.online/about/data-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.isric.online/about/data-policy#principles"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}] ["unknown"] yes {"api": "https://files.isric.org/soilgrids/", "apiType": "FTP"} ["DOI"] https://www.isric.online/about/data-policy#citation [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} World Data Centre for Soils is covered by Thomson Reuters Data Citation Index. 2013-05-16 2021-09-03 +r3d100010304 BASS2000 eng [{"additionalName": "BAse de donn\u00e9es Solaire Sol", "additionalNameLanguage": "fra"}, {"additionalName": "Solar Survey Archive", "additionalNameLanguage": "eng"}, {"additionalName": "WDC - Solar Activity", "additionalNameLanguage": "eng"}] http://bass2000.obspm.fr/home.php [] ["bass2000.contact@obspm.fr", "http://bass2000.obspm.fr/sitemap.php"] BASS2000 archives ground-based solar survey data, and a long term data from France's observatories. The database contains spectroheliographs, radioheliographs, coronographs, and synoptic maps. BASS2000 provides data as GIF, PNG, JPEG, MPEG, PS, and Compressed Files. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Meudon", "Nancay", "Pic du Midi", "Solar activity", "THEMIS telescop"] [{"institutionName": "LESIA - Observatoire de Paris", "institutionAdditionalName": ["Laboratoire d'\u00e9tudes spatiales et d'instrumentation en astrophysique - Observatoire de Paris"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lesia.obspm.fr/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["http://bass2000.obspm.fr/sitemap.php"]}] [{"policyName": "WDS Data Sharing Principles", "policyURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://bass2000.obspm.fr/sitemap.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["other"] {"api": "http://bass2000.obspm.fr/software.php?what=mzl", "apiType": "other"} ["none"] [] unknown unknown ["WDS"] [] {} Regular Member of World Data System http://www.icsu-wds.org/ 2013-05-16 2018-11-13 +r3d100010305 NOAA National Centers for Environmental Information - World Data Service for Oceanography eng [{"additionalName": "WDS for Oceanography", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Service for Oceanography", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: WDC - A", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: WDC - Oceanography, Silver Spring", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: World Data Center for Oceanography, Silver Spring", "additionalNameLanguage": "eng"}] https://www.nodc.noaa.gov/index.html [] ["NCEI.info@noaa.gov", "https://www.nodc.noaa.gov/about/contact.html"] The National Oceanographic Data Center, which includes the National Coastal Data Development Center—have merged into the National Centers for Environmental Information (NCEI). NCEI is responsible for hosting and providing access to one of the most significant archives on Earth, with comprehensive oceanic, atmospheric, and geophysical data. From the depths of the ocean to the surface of the sun and from million-year-old sediment records to near real-time satellite images, NCEI is the Nation's leading authority for environmental information. The National Centers for Environmental Information (NCEI), which hosts the World Data Service for Oceanography is a national environmental data center operated by the National Oceanic and Atmospheric Administration (NOAA) of the U.S. Department of Commerce. NCEI are responsible for hosting and providing access to one of the most significant archives on earth, with comprehensive oceanic, atmospheric, and geophysical data. The primary mission of the World Data Service for Oceanography is to ensure that global oceanographic datasets collected at great cost are maintained in a permanent archive that is easily and openly accessible to the world science community and to other users. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2018 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nodc.noaa.gov/about/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["earth science", "global environmental data", "ocean data", "ocean temperatures", "oceanographic data", "sea surface", "water"] [{"institutionName": "NOAA's National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": ["ROR:04r0wrp59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncei.noaa.gov/contact"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NODC.wdc@noaa.gov"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/05/World-Data-Service-for-Oceanography.pdf"}, {"policyName": "Data Policy", "policyURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nosc.noaa.gov/EDMC/documents/EDMC-PD-DataAccess-1.0.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nesdis.noaa.gov/sites/default/files/asset/document/npd_6010_01a.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nodc.noaa.gov/nodcdisclaimer.html"}] restricted [{"dataUploadLicenseName": "NODC Submission Information Form", "dataUploadLicenseURL": "https://www.nodc.noaa.gov/General/NODC-Submit/NODC_SubmissionInfoForm_v1.3.pdf"}] ["unknown"] no {"api": "ftp://ftp.nodc.noaa.gov/", "apiType": "FTP"} ["DOI"] https://www.nodc.noaa.gov/nodcdisclaimer.html [] yes yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.nodc.noaa.gov/rss/", "syndicationType": "RSS"} The WDS-Oceanography Catalogue will no longer be updated. For access to all data available through WDS-Oceanography, please go to the NCEI World Ocean Database WODselect https://www.re3data.org/repository/r3d100011580 or https://www.nodc.noaa.gov/OC5/WOD/pr_wod.html. The WDS-Oceanography Catalogue will no longer be updated. For accession to all data available through WDS-Oceanography, please go to NCEI World Ocean Database WODselect https://www.re3data.org/repository/r3d100011580 or the US National Oceanographic Data Center’s http://www.nodc.noaa.gov/OC5/WOD/pr_wod.html. See "World Ocean Database" - Citations in any entry. 2013-05-16 2020-05-27 +r3d100010309 The USGS Land Cover Institute eng [{"additionalName": "LCI", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Centre for Land Cover Data", "additionalNameLanguage": "eng"}] https://landcover.usgs.gov/ [] ["https://landcover.usgs.gov/contactus.php"] The USGS currently houses the institute at the Center for Earth Resources Observation and Science (EROS) in Sioux Falls, South Dakota. The LCI will address land cover topics from local to global scales, and in both domestic and international settings. The USGS through the Land Cover Institute serves as a facilitator for land cover and land use science, applications, and production functions. The institute assists in the availability and technical support of land cover data sets through increasing public and scientific awareness of the importance of land cover science. LCI continues, after the reorganization of the World Data Centers in 2009, serving as the World Data Center (WDC) for land cover data for access to, or information about, land cover data of the world eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1973 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://landcover.usgs.gov/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Land cover", "biodiversity", "environment", "global environmental change", "land cover changes", "land use", "land use science"] [{"institutionName": "Center for Earth Resources Observation and Science", "institutionAdditionalName": ["EROS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://eros.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of the Interior", "institutionAdditionalName": ["DOI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.doi.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.doi.gov/contact-us"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://landcover.usgs.gov/contactus.php"]}, {"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/contact"]}] [{"policyName": "Policies and Notices", "policyURL": "https://www.usgs.gov/policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] restricted [] ["unknown"] {} ["none"] https://landcover.usgs.gov/faq.php [] unknown yes [] [] {} 2013-05-11 2019-03-20 +r3d100010310 World Data Center for Meteorology, Asheville eng [{"additionalName": "WDC - Meteorology, Asheville", "additionalNameLanguage": "eng"}] https://www.ncdc.noaa.gov/wdcmet [] ["https://www.ncdc.noaa.gov/wdcmet/contact", "wdcamet@noaa.gov"] WDC for Meteorology, Asheville acquires, catalogues, and archives data and makes them available to requesters in the international scientific community. Data are exchanged with counterparts, WDC for Meteorology, Obninsk and WDC for Meteorology, Beijing as necessary to improve access. Special research data sets prepared under international programs such as the IGY, World Climate Program (WCP), Global Atmospheric Research Program (GARP), etc., are archived and made available to the research community. All data and special data sets contributed to the WDC are available to scientific investigators without restriction. Data are available from 1755 to 2015. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncdc.noaa.gov/wdcmet [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climatology", "observation", "weather forecast"] [{"institutionName": "Global Observing Systems Information Center", "institutionAdditionalName": ["GOSIC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncdc.noaa.gov/gosic", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncdc.noaa.gov/gosic/contact"]}, {"institutionName": "NOAA's National Centers for Environmental Information", "institutionAdditionalName": ["NCDC (formerly)", "NECI", "National Climate Data Center (formerly)"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncdc.noaa.gov/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncdc.noaa.gov/contact"]}, {"institutionName": "NOAA's Satellite and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Christina.Lief@noaa.gov", "wdcamet@noaa.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncdc.noaa.gov/wdcmet"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html"}] closed [] ["unknown"] {"api": "ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/daily/", "apiType": "FTP"} ["DOI"] https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ncdc:C00861 [] unknown yes ["WDS"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} World Data Center(WDC) for Meteorology, Asheville is one component of a global network of discipline subcenters that facilitate international exchange of scientific data. Originally established during the International Geophysical Year (IGY) of 1957, the ICSU World Data System now functions under the guidance of the International Council of Scientific Unions 2013-05-11 2018-12-11 +r3d100010311 NOAA National Centers for Environmental Information - Paleoclimatology Data eng [{"additionalName": "Paleoclimatology Data", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Service for Paleoclimatology", "additionalNameLanguage": "eng"}] https://www.ncdc.noaa.gov/data-access/paleoclimatology-data ["RRID:SCR_012149", "RRID:rid_000059"] ["paleo@noaa.gov"] Paleoclimatology data are derived from natural sources such as tree rings, ice cores, corals, and ocean and lake sediments. These proxy climate data extend the archive of weather and climate information hundreds to millions of years. The data include geophysical or biological measurement time series and some reconstructed climate variables such as temperature and precipitation. NCEI provides the paleoclimatology data and information scientists need to understand natural climate variability and future climate change. We also operate the World Data Center for Paleoclimatology, which archives and distributes data contributed by scientists around the world. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncdc.noaa.gov/data-access/paleoclimatology-data/about-the-paleoclimatology-program [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["borehole", "climate change", "climate forcing", "climate reconstruction", "coral and sclerosponge", "fauna", "fire history", "global warming", "ice core", "insect", "lake", "lake level reconstruction", "loess and eolian dust", "paleclimate modelling", "paleoceanography", "paleoclimatology", "plant macrofossil", "pollen", "speleothem", "tree ring"] [{"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": ["ROR:04r0wrp59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncei.noaa.gov/contact"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@noaa.gov"]}] [{"policyName": "Data Access", "policyURL": "https://www.ncdc.noaa.gov/data-access"}, {"policyName": "NOAA Customer Support", "policyURL": "https://www.ncdc.noaa.gov/customer-support"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usa.gov/government-works"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nosc.noaa.gov/EDMC/PD.DA.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nesdis.noaa.gov/sites/default/files/asset/document/npd_6010_01a.pdf"}] restricted [] ["unknown"] {"api": "ftp://ftp.ncdc.noaa.gov/pub/data/paleo/", "apiType": "FTP"} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} NOAA National Centers for Environmental Information - Paleoclimatology Data is a regular member of the World Data System - WDS. NOAA Paleoclimatology Data is covered by Clarivate Data Citation Index. former version of the page see: The National Climatic Data Center, the National Geophysical Data Center, and the National Oceanographic Data Center, which includes the National Coastal Data Development Center have merged into the National Centers for Environmental Information (NCEI) 2013-05-11 2022-01-03 +r3d100010312 International Earth Rotation and Reference Systems Service eng [{"additionalName": "IERS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: International Earth Rotation Service", "additionalNameLanguage": "eng"}] https://www.iers.org/IERS/EN/Home/home_node.html ["biodbcore-001688"] ["central_bureau@iers.org.", "heinkelmann@gfz-potsdam.de", "https://www.iers.org/IERS/EN/Organization/About/Contact/contact.html"] The IERS provides data on Earth orientation, on the International Celestial Reference System/Frame, on the International Terrestrial Reference System/Frame, and on geophysical fluids. It maintains also Conventions containing models, constants and standards. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iers.org/IERS/EN/Organization/About/Objectives/objectives.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["astronomy", "celestial references frames", "earth orientation", "earth orientation parameter EOP", "geodesy", "geodynamics", "geophysical fluids", "geophysics", "measurement", "terrestrial references frames"] [{"institutionName": "Bundesamt f\u00fcr Kartographie und Geod\u00e4sie", "institutionAdditionalName": ["BKG", "Federal Agency for Cartography and Geodesy"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bkg.bund.de/EN/Home/home.html", "institutionIdentifier": ["ROR:01q6zce06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bkg.bund.de/EN/Service/Imprint/imprint.html"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/grace/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["heinkelmann [at] gfz-potsdam.de", "https://www.iers.org/IERS/EN/Organization/WorkingGroups/ConsistentRealization/consistentRealization.html"]}, {"institutionName": "International Astronomical Union", "institutionAdditionalName": ["IAU"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iau.org", "institutionIdentifier": ["ROR:05nex2951"], "responsibilityStartDate": "1987", "responsibilityEndDate": "", "institutionContact": ["https://www.iau.org/administration/secretariat/"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Union of Geodesy and Geophysics", "institutionAdditionalName": ["IUGG", "UGGI", "Union G\u00e9od\u00e9sique et G\u00e9ophysique Internationale"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iugg.org", "institutionIdentifier": ["ROR:01jachm79"], "responsibilityStartDate": "1987", "responsibilityEndDate": "", "institutionContact": ["http://www.iugg.org/administration/bureau.php"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "IERS Terms of Reference", "policyURL": "https://www.iers.org/IERS/EN/Organization/About/ToR/ToR.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.iers.org/", "apiType": "FTP"} ["none"] [] unknown unknown ["WDS"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2013-05-02 2021-11-17 +r3d100010313 National Earthquake Information Center eng [{"additionalName": "NEIC", "additionalNameLanguage": "eng"}] https://earthquake.usgs.gov/contactus/golden/neic.php [] ["https://earthquake.usgs.gov/contactus/"] The mission of the National Earthquake Information Center (NEIC) is to determine rapidly the location and size of all destructive earthquakes worldwide and to immediately disseminate this information to concerned national and international agencies, scientists, and the general public. The NEIC compiles and maintains an extensive, global seismic database on earthquake parameters and their effects that serves as a solid foundation for basic and applied earth science research. The NEIC maintained until 2012 the former 'World Data Center for Seismology'. eng ["disciplinary"] {"size": "", "updatedp": ""} 1974 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://earthquake.usgs.gov/contactus/golden/neic.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Earthquake", "Seismic data", "Seismology"] [{"institutionName": "United States Geological Survey, Earthquake Hazards Program", "institutionAdditionalName": ["USGS, Earthquake Hazards Program"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://earthquake.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://earthquake.usgs.gov/contactus/"]}, {"institutionName": "United States Geological Survey, National Earthquake Information Center", "institutionAdditionalName": ["NEIC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://earthquake.usgs.gov/contactus/golden/neic.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://earthquake.usgs.gov/contactus/golden/neic.php"]}] [{"policyName": "Information Policies and Instructions", "policyURL": "https://www.usgs.gov/information-policies-and-instructions"}, {"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}, {"policyName": "U.S. Geological Survey Freedom of Information Act (FOIA) Electronic Reading Room", "policyURL": "https://www2.usgs.gov/foia/"}, {"policyName": "U.S. Geological Survey Information Quality Guidelines", "policyURL": "https://www2.usgs.gov/info_qual/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/public-release-information"}] closed [] ["unknown"] {} ["DOI"] https://www.usgs.gov/information-policies-and-instructions/crediting-usgs [] unknown unknown [] [] {"syndication": "https://earthquake.usgs.gov/atom.php", "syndicationType": "ATOM"} 2013-05-02 2019-03-20 +r3d100010314 Chemical Effects in Biological Systems eng [{"additionalName": "CEBS", "additionalNameLanguage": "eng"}] https://tools.niehs.nih.gov//cebs3/ui/ ["FAIRsharing_doi:10.25504/FAIRsharing.ntv8pe", "OMICS_06027", "RRID:SCR_006778", "RRID:nif-0000-02649"] ["cebs-support@mail.nih.gov", "http://www.niehs.nih.gov/about/od/ocpl/contact/"] The CEBS database houses data of interest to environmental health scientists. CEBS is a public resource, and has received depositions of data from academic, industrial and governmental laboratories. CEBS is designed to display data in the context of biology and study design, and to permit data integration across studies for novel meta analysis. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://tools.niehs.nih.gov/cebs3/ui/ [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["biological systems", "environmental health"] [{"institutionName": "National Institutes of Health, National Institute of Environmental Health Sciences", "institutionAdditionalName": ["NIEHS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.niehs.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fostel@niehs.nih.gov"]}] [{"policyName": "Freedom of Information Act", "policyURL": "https://www.niehs.nih.gov/about/foia/index.cfm"}, {"policyName": "Terms of Use", "policyURL": "https://tools.niehs.nih.gov/cebs3/support/assets/docs/Terms-of-Use.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://tools.niehs.nih.gov/cebs3/support/assets/docs/Do-I-Need-A-Password.pdf"}] closed [] ["unknown"] {"api": "ftp://anonftp.niehs.nih.gov/ntp-cebs/tools/", "apiType": "FTP"} ["none"] https://manticore.niehs.nih.gov/cebssearch/support/view/Citing-CEBS.pdf [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} CEBS database is covered by Thomson Reuters Data Citation Index. 2013-05-02 2019-01-17 +r3d100010315 Visible Human Project eng [] https://www.nlm.nih.gov/research/visible/visible_human.html [] ["vhp@nlm.nih.gov"] The Visible Human Project® is an outgrowth of the NLM's 1986 Long-Range Plan. It is the creation of complete, anatomically detailed, three-dimensional representations of the normal male and female human bodies. Acquisition of transverse CT, MR and cryosection images of representative male and female cadavers has been completed. The male was sectioned at one millimeter intervals, the female at one-third of a millimeter intervals. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.nlm.nih.gov/research/visible/getting_data.html [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["human anatomy"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["vhp@nlm.nih.gov"]}, {"institutionName": "U.S Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhs.gov/about/contact-us/index.html"]}, {"institutionName": "U.S. National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nlm.nih.gov/research/visible/visible_human.html"]}] [{"policyName": "Accessibiliy", "policyURL": "https://www.nlm.nih.gov/accessibility.html"}, {"policyName": "Privacy Policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}, {"policyName": "The Freedom of Information Act", "policyURL": "https://www.nih.gov/institutes-nih/nih-office-director/office-communications-public-liaison/freedom-information-act-office/freedom-information-act-5-usc-552"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nlm.nih.gov/research/visible/vhpagree.pdf"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} A License Agreement is needed for the use of Visible Human Project® datasets: https://www.nlm.nih.gov/research/visible/getting_data.html 2013-05-02 2018-11-13 +r3d100010316 NMRshiftDB eng [] http://nmrshiftdb.nmr.uni-koeln.de ["OMICS_18926"] ["nmrshiftdb2-admin@uni-koeln.de"] nmrshiftdb is a NMR database (web database) for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. Last not least, it features peer-reviewed submission of datasets by its users. The nmrshiftdb2 software is open source, the data is published under an open content license. Please consult the documentation for more detailed information. nmrshiftdb2 is the continuation of the NMRShiftDB project with additional data and bugfixes and changes in the software. eng ["disciplinary"] {"size": "Structures: 43.468; Spectra: Measured 52.182, calculated 549", "updatedp": "2018-11-13"} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["chemistry", "molecular science", "nuclear magnetic resonance (nmr) spectra", "organic structures", "software"] [{"institutionName": "Cologne University, BioInformatics Facility", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cecad.uni-koeln.de/index.php?id=268&type=0", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["peter.frommolt@uni-koeln.de"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact_imprint/visitors_information/"]}, {"institutionName": "Max-Planck-Institute for Chemical Ecology", "institutionAdditionalName": ["MPI CE", "Max Plank Institut f\u00fcr chemische \u00d6kologie"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ice.mpg.de/ext/index.php?id=home0", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ice.mpg.de/ext/index.php?id=223"]}] [{"policyName": "Manual for the spectra database functions of nmrshiftdb2", "policyURL": "http://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdbhtml/labhelp/general_nmrshiftdb2_en.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdbhtml/nmrshiftdb2datalicense.txt"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://nmrshiftdb.nmr.uni-koeln.de/portal/js_pane/P-Help"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nmrshiftdb.nmr.uni-koeln.de/nmrshiftdb/media-type/html/user/anon/page/default.psml/js_pane/nmrshiftdbhtml/nmrshiftdb2datalicense.txt"}] restricted [{"dataUploadLicenseName": "Submit", "dataUploadLicenseURL": "http://nmrshiftdb.nmr.uni-koeln.de/portal/js_pane/P-Help;jsessionid=AC535E2E2476A666B033336F34993EFF?URL=using.html#submit"}] ["other"] yes {} ["none"] https://nmrshiftdb2.sourceforge.io/faq.html [] unknown yes [] [] {} NMRshiftDB2 is covered by Thomson Reuters Data Citation Index. Project Homepage at SourceForge http://sourceforge.net/projects/nmrshiftdb2/ 2013-05-02 2019-02-04 +r3d100010318 Nuclear Data Portal eng [] https://www.nndc.bnl.gov/content/NuclearPortal.html [] ["https://www.nndc.bnl.gov/about/nndc.html", "nds.contact-point@iaea.org"] The Nuclear Data Portal is a new generation of nuclear data services using modern and powerful DELL servers, Sybase relational database software, the Linux operating system with programming in Java. The Portal includes nuclear structure, decay and reaction data, as well as literature information. Data can be searched for using optimized query forms; results are presented in tables and interactive plots. Additionally, a number of nuclear science tools, codes, applications, and links are provided. The databases includes are: CINDA - Computer Index of Nuclear Reaction Data, CSISRS alias EXFOR - Experimental nuclear reaction data, ENDF - Evaluated Nuclear Data File , ENSDF - Evaluated Nuclear Structure Data File, MIRD - Medical Internal Radiation Dose, NSR - Nuclear Science References, NuDat - Nuclear Structure & Decay Data, XUNDL - Experimental Unevaluated Nuclear Data List, Chart of Nuclides. Nuclear Data Portal is a web service of National Nuclear Data Center. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.nndc.bnl.gov/about/nndc.html#mission [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["decay information", "nuclear research", "nuclear technologies"] [{"institutionName": "Nuclear Science and Technology Department, Brookhaben Nation Laboratory, National Nuclear Data Center", "institutionAdditionalName": ["NNDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nndc.bnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1977", "responsibilityEndDate": "", "institutionContact": ["https://www.nndc.bnl.gov/about/nndc.html#contacts"]}, {"institutionName": "U.S. Department of Energy, Office of Science, Office of Nuclear Physics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/np/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nndc.bnl.gov/about/nndc.html"}] closed [] ["other"] {} ["none"] https://www.nndc.bnl.gov/nndcscr/documents/online/ [] unknown unknown [] [] {} 2013-07-17 2018-12-13 +r3d100010320 NREL Geospatial Data Science eng [{"additionalName": "NERL GIS", "additionalNameLanguage": "eng"}, {"additionalName": "NREL Dynamic Maps, Geographic Information System (GIS) Data and Analysis Tools (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "National Renewable Energy Laboratory Geospatial Data Science", "additionalNameLanguage": "eng"}] https://www.nrel.gov/gis/ [] ["https://www.nrel.gov/about/contacts.html", "https://www.nrel.gov/gis/work-with-us.html"] The Dynamic Maps, Geographic Information System (GIS) Data and Analysis Tools website provides maps, data and tools for renewable energy resources that determine which energy technologies are viable solutions in domestic and international regions. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nrel.gov/about/mission-programs.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioenergy", "biomass", "geothermal", "renewable energy", "solar", "water", "wind"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://energy.gov/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nrel.gov/disclaimer.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} NREL is a national laboratory of the U.S. Department of Energy, Office of Energy Efficiency and Renewable Energy, operated by the Alliance for Sustainable Energy, LLC. 2013-07-19 2018-11-13 +r3d100010321 NREL Transforming energy - grid modernization eng [{"additionalName": "RReDC (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Renewable Resource Data Center (formerly)", "additionalNameLanguage": "eng"}] https://www.nrel.gov/grid/ [] ["benjamin.kroposki@nrel.gov", "https://www.nrel.gov/grid/work-with-us.html"] NREL advances critical science and technology through innovative research and development to improve the nation's electrical grid infrastructure, making it more flexible, reliable, resilient, secure, and sustainable. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nrel.gov/about/mission-programs.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["biomass", "geothermal resource information", "solar resource information", "wind resource information"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nrel.gov/disclaimer.html"}] closed [] ["unknown"] no {} [] [] unknown unknown [] [] {} NREL is a national laboratory of the U.S. Department of Energy, Office of Energy Efficiency and Renewable Energy, operated by the Alliance for Sustainable Energy, LLC. 2013-07-19 2021-06-29 +r3d100010323 European Election Database eng [{"additionalName": "EED", "additionalNameLanguage": "eng"}] http://www.nsd.uib.no/european_election_database/ [] ["eed@nsd.uib.no"] The European Election and Referendum Database is specifically intended to provide election results on a regional level for European countries. The archive cover the period from 1990 until present and publishes results from parliamentary elections, European Parliament elections, presidential elections, as well as EU-related referendums for a total of 35 European countries. eng ["disciplinary"] {"size": "More than 400 elections and referendums", "updatedp": "2017-04-26"} ["eng", "nob"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.nsd.uib.no/european_election_database/about/about_data.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Europe", "elections", "electoral systems", "political parties", "statistics"] [{"institutionName": "Norwegian Centre for Research Data", "institutionAdditionalName": ["NSD", "Norsk senter for forskningsdata"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nsd.uib.no/nsd/english/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eed@nsd.uib.no"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.nsd.uib.no/nsd/english/privacy-policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nsd.uib.no/european_election_database/about/about_data.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nsd.uib.no/nsd/english/order.html"}] closed [] ["Nesstar"] no {"api": "http://www.nesstar.com/", "apiType": "other"} ["none"] http://www.nsd.uib.no/european_election_database/about/about_data.html [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.nsd.uib.no/rss/nsd", "syndicationType": "RSS"} More information about API usage: http://www.nesstar.com/software/public_api.html 2013-06-14 2018-12-13 +r3d100010324 OECD iLibrary Statistics eng [] https://www.oecd-ilibrary.org/statistics [] [] OECD iLibrary is the online library of the Organisation for Economic Cooperation and Development (OECD) featuring its books, papers and statistics and is the gateway to OECD’s analysis and data. It replaced SourceOECD in July 2010. OECD iLibrary also contains content published by the International Energy Agency (IEA), the Nuclear Energy Agency (NEA), the OECD Development Centre, PISA (Programme for International Student Assessment), and the International Transport Forum (ITF). OECD iLibrary presents all content so users can find - and cite - tables and databases as easily as articles or chapters in any available format: PDF, WEB, XLS, DATA, ePUB, READ. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2010-07 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.oecd.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["OECD", "statistics"] [{"institutionName": "Organisation for Economic Co-operation and Development", "institutionAdditionalName": ["L\u2019Organisation de Coop\u00e9ration et de D\u00e9veloppement \u00c9conomiques", "OECD"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.oecd.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd-ilibrary.org/contact"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.oecd-ilibrary.org/about/privacy"}, {"policyName": "Terms and Conditions", "policyURL": "https://www.oecd-ilibrary.org/about/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.oecd-ilibrary.org/about/copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oecd-ilibrary.org/about/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.oecd.org/termsandconditions/"}] closed [] ["unknown"] {"api": "https://data.oecd.org/api/sdmx-ml-documentation/", "apiType": "REST"} ["DOI"] [] unknown yes [] [] {} RSS notifications available for the different subject categories. 2013-06-13 2018-12-13 +r3d100010325 openLandscapes eng [{"additionalName": "The Knowledge Collection for Landscape Science", "additionalNameLanguage": "eng"}] http://openlandscapes.zalf.de/default.aspx [] ["http://openlandscapes.zalf.de/Contact/contact.aspx"] This repository is no longer available. >>>!!!<<< 2018-10-15; no more access to OpenLandscapes >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-10-15 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://openlandscapes.zalf.de/default.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agricultural science", "biodiversity", "biogeochemistry", "ecological network", "ecology", "ecosystem", "ecosystem services", "environmental science", "geography", "landscape ecology", "landscape science"] [{"institutionName": "International Association for Landscape Ecology, Regional Chapter Germany", "institutionAdditionalName": ["IALE-D", "Internationale Gesellschaft f\u00fcr Landschafts\u00f6kologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iale.de/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iale.de/no_cache/kontakt.html"]}, {"institutionName": "Leibniz Centre for Agricultural Landscape Research", "institutionAdditionalName": ["Leibniz-Zentrum f\u00fcr Agrarlandschaftsforschung", "ZALF"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.zalf.de/de/Seiten/ZALF.aspx", "institutionIdentifier": ["ROR:01ygyzs83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["chenneberg@zalf.de", "http://openlandscapes.zalf.de/Contact/contact.aspx"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://openlandscapes.zalf.de/Imprint/imprint.aspx"}] restricted [] ["other"] no {} ["DOI"] [] unknown yes [] [] {} description: openLandscapes is an open access information portal for landscape research. Amongst other things, the platform provides information about current research projects. In addition, it offers the scientific community the possibility to maintain a Wiki on landscape-related contents and to make available future primary data from landscape research. In openLandscapes, all technical contents are stored and organised in a networked manner, enabling technical terms to be linked to experts or institutions, as well as to data in the future. 2013-12-14 2021-09-03 +r3d100010326 OSTI eng [{"additionalName": "DOE Data Centers", "additionalNameLanguage": "eng"}, {"additionalName": "OSTI.GOV", "additionalNameLanguage": "eng"}, {"additionalName": "Office of Scientific and Technical Information", "additionalNameLanguage": "eng"}, {"additionalName": "Speeding access to science information from DOE and beyond", "additionalNameLanguage": "eng"}, {"additionalName": "U.S. Department of Energy, Office of Scientific & Technical Information", "additionalNameLanguage": "eng"}] https://www.osti.gov/search-tools ["RRID:SCR_002670", "RRID:nif-0000-22793"] ["https://www.osti.gov/contact"] OSTI is the DOE office that collects, preserves, and disseminates DOE-sponsored R&D results that are the outcomes of R&D projects or other funded activities at DOE labs and facilities nationwide and grantees at universities and other institutions. The information is typically in the form of technical documents, conference papers, articles, multimedia, and software, collectively referred to as scientific and technical information (STI). eng ["institutional", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.osti.gov/public-access [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Energy", "Environmental Engineering", "Environmental Sciences", "Research & Development"] [{"institutionName": "U.S.Department of Energy, Office of Science, Office of Scientific and Technical Information", "institutionAdditionalName": ["DOE", "energy.gov"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.osti.gov/", "institutionIdentifier": ["ROR:031478740"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["comments@osti.gov", "https://www.osti.gov/contact"]}] [{"policyName": "Website Policies and Important Links", "policyURL": "https://www.osti.gov/disclaim"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.osti.gov/home/disclaim#copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.osti.gov/home/disclaim#copyright"}] closed [] ["unknown"] no {"api": "https://www.osti.gov/api/v1/docs", "apiType": "REST"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} 2013-07-19 2021-05-07 +r3d100010327 RCSB Protein Data Bank eng [{"additionalName": "RCSB PDB", "additionalNameLanguage": "eng"}] https://www.rcsb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.2t35ja", "MIR:00100029", "OMICS_03036", "RRID:SCR_012820", "RRID:nif-0000-00135"] ["https://www.rcsb.org/pages/contactus"] The Protein Data Bank (PDB) archive is the single worldwide repository of information about the 3D structures of large biological molecules, including proteins and nucleic acids. These are the molecules of life that are found in all organisms including bacteria, yeast, plants, flies, other animals, and humans. Understanding the shape of a molecule helps to understand how it works. This knowledge can be used to help deduce a structure's role in human health and disease, and in drug development. The structures in the archive range from tiny proteins and bits of DNA to complex molecular machines like the ribosome. eng ["disciplinary"] {"size": "178.747 Biological Macromolecular Structures", "updatedp": "2021-06-14"} 1971 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.rcsb.org/pages/about-us/index [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Biological Macromolecular Resource", "COVID-19", "Protein"] [{"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NIH, NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIH, NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": ["ROR:00adh9b73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH, NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NIH, NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": ["ROR:01s5ya894"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["ROR:0060t0j89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Collaboratory for Structural Bioinformatics", "institutionAdditionalName": ["RCSB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rcsb.org/pages/team", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@rcsb.org"]}, {"institutionName": "Rutgers", "institutionAdditionalName": ["The State University of New Jersey"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rutgers.edu/", "institutionIdentifier": ["RRID:SCR_011508", "RRID:nlx_14806"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rcsb.org/pages/contactus"]}, {"institutionName": "U.S. Department of Energy, Office of Science", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/office-science", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UC San Diego", "institutionAdditionalName": ["UCSD"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucsd.edu/", "institutionIdentifier": ["ROR:0168r3w48", "RRID:SCR_011625", "RRID:nlx_71933"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ucsd.edu/about/contact.html"]}] [{"policyName": "Policies", "policyURL": "https://www.rcsb.org/pages/policies"}, {"policyName": "Processing Procedures and Policies Document", "policyURL": "https://www.wwpdb.org/documentation/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.rcsb.org/pages/usage-policy"}] restricted [] ["unknown"] {"api": "ftp://ftp.wwpdb.org/", "apiType": "FTP"} ["DOI"] https://www.rcsb.org/pages/policies#References [] unknown yes [] [] {} is covered by Elsevier. The RCSB PDB is a member of the Worldwide Protein Data Bank (wwPDB: https://www.wwpdb.org/). RCSB PDB took part in developing the plattform File Download Services: https://www.rcsb.org/docs/programmatic-access/file-download-services#protocols-ftp-and-http 2013-07-28 2021-09-09 +r3d100010328 PsychData eng [{"additionalName": "Forschungsdaten f\u00fcr die Psychologie", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum Psychdata", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data for Psychology", "additionalNameLanguage": "eng"}] https://www.psychdata.de/ ["biodbcore-001148"] ["psychdata@leibniz-psychology.org"] Goal of the psychology data archive PsychData is the documentation and long-term archiving of research data from all areas of psychology and the social sciences, using specially created metadata and to provide use of the data for scientific purposes such as secondary analysis and reanalysis. Psychdata contains all areas of psychology, in particular data sets from clinical, developmental, educational, gero-, and work and organizational psychology stemming from longitudinal studies, major surveys, and test development. eng ["disciplinary"] {"size": "40 mio. data points; 60 studies; 179 datasets", "updatedp": "2019-07-30"} 2002 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11002 Developmental and Educational Psychology", "scheme": "DFG"}, {"name": "11003 Social Psychology, Industrial and Organisational Psychology", "scheme": "DFG"}, {"name": "11004 Differential Psychology, Clinical Psychology, Medical Psychology, Methodology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.psychdata.de/index.php?main=none&sub=none&lang=eng [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["LOGIK", "accuracy", "intelligence", "moral identity", "psychology data", "social perception", "zero acquaintance condition"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute for Psychology Information", "institutionAdditionalName": ["Leibniz-Zentrum f\u00fcr Psychologische Information und Dokumentation", "ZPID"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zpid.de/", "institutionIdentifier": ["ROR:0165gz615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.zpid.de/index.php?wahl=contact", "info@zpid.de"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_FDZKriterien.PDF"}, {"policyName": "ZPID Data Use Agreement", "policyURL": "https://www.psychdata.de/downloads/pd_nutzung_e_formular.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://leibniz-psychology.org/en/rechtliches/legal-notice-data-privacy/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.psychdata.de/downloads/pd_nutzung_e_formular.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.psychdata.de/index.php?main=take&sub=empfang"}] restricted [{"dataUploadLicenseName": "Nutzungs\u00fcberlassungsvertrag", "dataUploadLicenseURL": "https://www.psychdata.de/downloads/psychdata_nutzungsueberlassung.pdf"}] ["unknown"] {} ["DOI"] [] yes yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Psychdata is covered by Thomson Reuters Data Citation Index. Not all information is available in English. The ZPID is a member of the Leibniz Association and of the RatSWD research data infrastructure In addition to the research data center PsychData, ZPID also offers the possibility of publishing research data in the PsychArchives repository http://re3data.org/repository/r3d100013107 2013-07-19 2021-11-16 +r3d100010329 RAVE database eng [{"additionalName": "RAdial Velocity Experiment Database", "additionalNameLanguage": "eng"}] https://www.rave-survey.org/query/ [] ["https://www.rave-survey.org/contact/", "msteinmetz@aip.de"] RAVE (RAdial Velocity Experiment) is a multi-fiber spectroscopic astronomical survey of stars in the Milky Way using the 1.2-m UK Schmidt Telescope of the Anglo-Australian Observatory (AAO). The RAVE collaboration consists of researchers from over 20 institutions around the world and is coordinated by the Leibniz-Institut für Astrophysik Potsdam. As a southern hemisphere survey covering 20,000 square degrees of the sky, RAVE's primary aim is to derive the radial velocity of stars from the observed spectra. Additional information is also derived such as effective temperature, surface gravity, metallicity, photometric parallax and elemental abundance data for the stars. The survey represents a giant leap forward in our understanding of our own Milky Way galaxy; with RAVE's vast stellar kinematic database the structure, formation and evolution of our Galaxy can be studied. eng ["disciplinary"] {"size": "518.392 observations of 451.788 stars", "updatedp": "2021-06-14"} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.rave-survey.org/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["galaxy", "milky way", "spectral lines", "stellar streams"] [{"institutionName": "Australian National University", "institutionAdditionalName": ["ANU"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.anu.edu.au/", "institutionIdentifier": ["ROR:019wvm592", "RRID:SCR_001086", "RRID:nlx_23045"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arc.gov.au/", "institutionIdentifier": ["ROR:05mmh0f86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Research Council", "institutionAdditionalName": ["ERC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://erc.europa.eu/", "institutionIdentifier": ["ROR:0472cxd90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "French National Research Agency", "institutionAdditionalName": ["ANR", "Agence Nationale de la Recherche"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://anr.fr/en/", "institutionIdentifier": ["ROR:00rbzpz17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johns Hopkins University", "institutionAdditionalName": ["JHU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jhu.edu/", "institutionIdentifier": ["ROR:00za53h95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute for Astrophysics Potsdam", "institutionAdditionalName": ["AIP", "Leibniz-Institut f\u00fcr Astrophysik Potsdam"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aip.de/en/?set_language=en", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aip.de/de/members/matthias-steinmetz/"]}, {"institutionName": "Macquarie University, Australian Astronomical Optics", "institutionAdditionalName": ["AAO"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mq.edu.au/faculty-of-science-and-engineering/departments-and-schools/australian-astronomical-optics-macquarie", "institutionIdentifier": ["ROR:030cszc07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Heidelberg, Centre for Astronomy, Astronomisches Rechen-Institut", "institutionAdditionalName": ["ARI", "Universit\u00e4t Heidelberg, Zentrum f\u00fcr Astronomie, Astronomisches Rechen-Institut"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://zah.uni-heidelberg.de/institutes/ari/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Imprint & Data Protection Statement", "policyURL": "https://www.rave-survey.org/project/imprint/"}, {"policyName": "Standard Acknowlegment", "policyURL": "https://www.rave-survey.org/project/publications/acknowlegment/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aip.de/en/impressum/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aip.de/en/impressum/data-protection/"}] restricted [] ["unknown"] {} ["none"] https://www.rave-survey.org/project/publications/acknowlegment/ [] unknown unknown [] [] {} Other funding institutions can be found at https://www.rave-survey.org/project/publications/acknowlegment/ 2013-07-23 2021-07-01 +r3d100010330 Child Care & Early Education Research Connections eng [] https://www.researchconnections.org/childcare/welcome [] ["https://www.researchconnections.org/content/childcare/contact-us.html"] Child Care & Early Education Research Connections promotes high quality research in child care and early education and the use of that research in policy making. Our vision is that children are well cared for and have rich learning experiences, and their families are supported and able to work. Through this Web site, we offer research and data resources for researchers, policy makers, practitioners, and others. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.researchconnections.org/content/childcare/about.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Child care", "Child education", "Early education"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/web/pages/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://www.researchconnections.org/content/childcare/contacts.html"]}, {"institutionName": "National Center for Children in Poverty", "institutionAdditionalName": ["NCCP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nccp.org/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["contact@researchconnections.org", "https://www.researchconnections.org/content/childcare/contacts.html"]}, {"institutionName": "U.S. Department of Health and Human Services, Office of Child Care", "institutionAdditionalName": ["OCC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.acf.hhs.gov/occ", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.researchconnections.org/content/childcare/contacts.html"]}, {"institutionName": "U.S. Department of Health and Human Services, Office of Head Start", "institutionAdditionalName": ["OHS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.acf.hhs.gov/office-head-start", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.researchconnections.org/content/childcare/contacts.html"]}, {"institutionName": "U.S. Department of Health and Human Services, Office of Planning, Research and Evaluation", "institutionAdditionalName": ["OPRE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.acf.hhs.gov/opre", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://www.researchconnections.org/content/childcare/contacts.html"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.researchconnections.org/content/childcare/disclosures.html#privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.researchconnections.org/content/childcare/disclosures.html#copyright"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.researchconnections.org/content/childcare/disclosures.html#copyright"}] restricted [{"dataUploadLicenseName": "Depositing data into ICPSR", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/web/pages/deposit/index.html"}] ["unknown"] {} ["none"] https://www.researchconnections.org/childcare/viewCitations? [] unknown yes [] [] {} Research Connections is a partnership between the National Center for Children in Poverty (NCCP) at the Mailman School of Public Health, Columbia University; the Inter-university Consortium for Political and Social Research (ICPSR) at the Institute for Social Research, the University of Michigan ; Citation: select datasets in order to download their citations. 2013-07-23 2021-06-15 +r3d100010331 Roper Center Public Opinion Archives eng [] https://ropercenter.cornell.edu/ [] ["https://ropercenter.cornell.edu/about-us/contact-us", "support@ropercenter.org"] The Roper Center for Public Opinion Research is one of the world's leading archives of social science data, specializing in data from surveys of public opinion. The data held by the Roper Center range from the 1930s, when survey research was in its infancy, to the present. Most of the data are from the United States, but over 100 nations are represented. eng ["disciplinary"] {"size": "25.000 studies", "updatedp": "2021-06-15"} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ropercenter.cornell.edu/about-center/roper-center-mission-statement [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["public opinion research", "public surveys"] [{"institutionName": "Cornell University, Roper Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ropercenter.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ropercenter.cornell.edu/about-us/contact-us"]}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/04/Roper-Center-for-Public-Opinion-Research_2020-22.pdf"}, {"policyName": "End User Terms and Conditions", "policyURL": "https://ropercenter.cornell.edu/end-user-terms-and-conditions"}, {"policyName": "Policies", "policyURL": "https://ropercenter.cornell.edu/about-us/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ropercenter.cornell.edu/end-user-terms-and-conditions"}] restricted [{"dataUploadLicenseName": "Data Deposit Form", "dataUploadLicenseURL": "https://ropercenter.cornell.edu/sites/default/files/pdf/DataDepositFormfillable2.pdf"}, {"dataUploadLicenseName": "Deposit Data", "dataUploadLicenseURL": "https://ropercenter.cornell.edu/data-archiving/deposit-data"}, {"dataUploadLicenseName": "Roper Center Transparency and Acquisition Policy", "dataUploadLicenseURL": "https://ropercenter.cornell.edu/roper-center-transparency-and-acquisitions-policy"}] ["unknown"] yes {} ["DOI"] https://ropercenter.cornell.edu/publishing-roper-center-data/how-cite [] no yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Roper Centre Public Opinion Archives is covered by Thomson Reuters Data Citation Index. Roper Center is a member of Data Preservation Alliance for the Social Sciences (Data-PASS). A list of Roper Members is available at https://ropercenter.cornell.edu/membership/list-members 2013-07-28 2021-07-19 +r3d100010333 Roper Center for Public Opinion Research: Elections and Presidents eng [] https://ropercenter.cornell.edu/data-highlights/elections-and-presidents [] ["https://ropercenter.cornell.edu/about-us/contact-us", "support@ropercenter.org"] The Roper Center has made available its entire collection of Primary exit polls. Primary exit polls datasets include standard demographic makeup of interviewee and questions pertinent to the issues of each state. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ropercenter.cornell.edu/about-center/roper-center-mission-statement [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Congressional Elections", "National Election Day Exit Polls", "Popular Vote", "Presidential Elections", "Primary Exit Polls", "State Election Day Exit Polls"] [{"institutionName": "University of Connecticut, Roper Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ropercenter.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ropercenter.cornell.edu/contact-us/"]}] [{"policyName": "Digital Preservation Policy", "policyURL": "https://ropercenter.cornell.edu/policies/digital-preservation-policy"}, {"policyName": "Privacy Policy", "policyURL": "https://ropercenter.cornell.edu/policies/privacy-policy"}, {"policyName": "Roper Center Data Archive Terms and Conditions", "policyURL": "https://ropercenter.cornell.edu/end-user-terms-and-conditions"}, {"policyName": "Roper Center Transparency and Acquisition Policy\u200b\u200b\u200b\u200b\u200b\u200b\u200b", "policyURL": "https://ropercenter.cornell.edu/roper-center-transparency-and-acquisitions-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ropercenter.cornell.edu/end-user-terms-and-conditions"}] closed [] ["unknown"] {} ["none"] https://ropercenter.cornell.edu/publishing-roper-center-data/how-cite [] unknown unknown [] [] {"syndication": "https://ropercenter.cornell.edu/rss/rss_archiveRevisions.xml", "syndicationType": "RSS"} A list of Roper Members is available at https://ropercenter.cornell.edu/membership/list-members The iPOLL Databank: Comprehensive resource for US public opinion; The system allows for users to sift through over 700,000 questions archived from national public opinion surveys since 1935. There is no connection today between the non-profit Roper Center for Public Opinion Research at Cornell University and the for-profit Roper Poll owned by GfK Group. Public opinion pioneer Elmo Roper founded both organizations, but they are completely separate entities. 2013-07-28 2021-07-01 +r3d100010335 Wellcome Trust Sanger Institute, Scientific resources eng [] https://www.sanger.ac.uk/science/data/ [] ["contact@sanger.ac.uk", "https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us/"] The Wellcome Trust Sanger Institute is a charitably funded genomic research centre located in Hinxton, nine miles south of Cambridge in the UK. We study diseases that have an impact on health globally by investigating genomes. Building on our past achievements and based on priorities that exploit the unique expertise of our Faculty of researchers, we will lead global efforts to understand the biology of genomes. We are convinced of the importance of making this research available and accessible for all audiences. reduce global health burdens. eng ["other"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.sanger.ac.uk/about/who-we-are/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Supplementary Table", "bacterial", "bacteriophage", "disease vector", "fungal", "gorilla", "helminth", "human", "mouse", "plasmid", "protozoan", "vertebrate", "virus", "yeast", "zebrafish"] [{"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": ["Wellcome Sanger Institute"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09", "RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us/"]}] [{"policyName": "Data sharing policy", "policyURL": "https://www.sanger.ac.uk/wp-content/uploads/Data_Sharing_Policy_and_Guidelines_July_2018.pdf"}, {"policyName": "Open Access Science Data Sharing policy", "policyURL": "https://www.sanger.ac.uk/about/who-we-are/research-policies/open-access-science/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.sanger.ac.uk/legal/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] closed [] ["unknown"] {"api": "ftp://ftp.sanger.ac.uk/pub/", "apiType": "FTP"} ["DOI", "other"] [] unknown yes [] [] {} Some resources are made available via the European Nucleotide Archive https://www.ebi.ac.uk/ena/browser/home The Sanger Institute is completely committed to sharing its data, as well as the resources, materials and publications it produces. 2013-08-06 2021-07-14 +r3d100010336 Sloan Digital Sky Survey eng [{"additionalName": "SDSS", "additionalNameLanguage": "eng"}] https://www.sdss.org/ [] ["helpdesk@sdss.org", "https://www.sdss.org/contact/"] The Sloan Digital Sky Survey (SDSS) is one of the most ambitious and influential surveys in the history of astronomy. Over eight years of operations (SDSS-I, 2000-2005; SDSS-II, 2005-2008; SDSS-III 2008-2014; SDSS-IV 2013 ongoing), it obtained deep, multi-color images covering more than a quarter of the sky and created 3-dimensional maps containing more than 930,000 galaxies and more than 120,000 quasars. DSS-IV is managed by the Astrophysical Research Consortium for the Participating Institutions of the SDSS Collaboration including the Carnegie Institution for Science, Carnegie Mellon University, the Chilean Participation Group, Harvard-Smithsonian Center for Astrophysics, Instituto de Astrofísica de Canarias, The Johns Hopkins University, Kavli Institute for the Physics and Mathematics of the Universe (IPMU) / University of Tokyo, Lawrence Berkeley National Laboratory, Leibniz Institut für Astrophysik Potsdam (AIP), Max-Planck-Institut für Astrophysik (MPA Garching), Max-Planck-Institut für Extraterrestrische Physik (MPE), Max-Planck-Institut für Astronomie (MPIA Heidelberg), National Astronomical Observatory of China, New Mexico State University, New York University, The Ohio State University, Pennsylvania State University, Shanghai Astronomical Observatory, United Kingdom Participation Group, Universidad Nacional Autónoma de México, University of Arizona, University of Colorado Boulder, University of Portsmouth, University of Utah, University of Washington, University of Wisconsin, Vanderbilt University, and Yale University. eng ["disciplinary"] {"size": "14.555 square degrees of imaging; spectra of 2.863.635 galaxies; 960.678 quasars; 1.021.843 stars", "updatedp": "2019-12-19"} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.sdss.org/collaboration/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["Astrometry", "Astronomy", "Cosmology"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact/"]}, {"institutionName": "Apache Point Observatory", "institutionAdditionalName": ["APO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.apo.nmsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.apo.nmsu.edu/Site/directory/projdirectory/default.htm"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SDSS Collaboration", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sdss.org/collaboration/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["spokesperson@sdss.org"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE", "Energy.ov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Utah, Center for High Performance Computing", "institutionAdditionalName": ["CHPC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.chpc.utah.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.chpc.utah.edu/about/contact.php"]}] [{"policyName": "Image use policy", "policyURL": "https://www.sdss.org/collaboration/#image-use"}, {"policyName": "Principles of Operation", "policyURL": "https://www.sdss.org/collaboration/#policies"}, {"policyName": "Publication policy", "policyURL": "https://www.sdss.org/collaboration/publication-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://www.sdss.org/collaboration/#image-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.sdss3.org/collaboration/poo3.pdf"}] closed [] ["unknown"] {} ["none"] https://www.sdss.org/collaboration/citing-sdss/ [] unknown unknown [] [] {} SDSS is covered by Thomson Reuters Data Citation Index. A list of participating institution can be found on https://www.sdss.org/collaboration/affiliations/ 2013-08-06 2021-07-14 +r3d100010337 SeaDataNet eng [{"additionalName": "Pan-European Infrastructure for ocean & marine data management", "additionalNameLanguage": "eng"}] https://www.seadatanet.org/ ["ISSN 2427-383X"] ["https://www.seadatanet.org/sendform/contact", "sdn-userdesk@seadatanet.org"] SeaDataNet is a standardized system for managing the large and diverse data sets collected by the oceanographic fleets and the automatic observation systems. The SeaDataNet infrastructure network and enhance the currently existing infrastructures, which are the national oceanographic data centres of 35 countries, active in data collection. The networking of these professional data centres, in a unique virtual data management system provide integrated data sets of standardized quality on-line. As a research infrastructure, SeaDataNet contributes to build research excellence in Europe. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.seadatanet.org/About-us [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biological oceanography", "chemical oceanography", "climate change prediction", "marine research"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "British Oceanographic Data Centre", "institutionAdditionalName": ["BODC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bodc.ac.uk/", "institutionIdentifier": ["ROR:03102fn17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wayback.archive-it.org/12090/20191127213419/https:/ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en#contact"]}, {"institutionName": "Federal Ministry of Transport, Building and Urban Development; Federal Maritime and Hydrographic Agency", "institutionAdditionalName": ["BSH", "Bundesministerium f\u00fcr Verkehr, Bau und Stadtentwicklung; Bundesamt f\u00fcr Seeschifffahrt und Hydrographie"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bsh.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:03ycvrj88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hellenic Centre for Marine Research", "institutionAdditionalName": ["HCMR"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hcmr.gr/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ifremer", "institutionAdditionalName": ["French Research Institute for Exploitation of the Sea", "Institut fran\u00e7ais de recherche pour l'exploitation de la mer"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://wwz.ifremer.fr/en/", "institutionIdentifier": ["ROR:044jxhp58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sdn-userdesk@seadatanet.org"]}, {"institutionName": "Istituto Nazionale di Geofisica e Vulcanologia", "institutionAdditionalName": ["INGV"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ingv.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ROR:00qps9a02"]}, {"institutionName": "Joint Research Centre, Institute for Environment and Sustainability", "institutionAdditionalName": ["JRC-IES"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eea.europa.eu/themes/climate/links/physical-science-on-climate/joint-research-centre-institute-for-environment-and-sustainability-jrc-ies", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MARIS", "institutionAdditionalName": ["Marine Information Service"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.maris.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RIHMI-WDC", "institutionAdditionalName": ["All Russian Research Institute of Hydrometeorological information World Data Center"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://meteo.ru/english/", "institutionIdentifier": ["ROR:038s1hq41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy and User License", "policyURL": "https://www.seadatanet.org/Data-Access/Data-policy"}, {"policyName": "SeaDataNet Data Policy", "policyURL": "https://www.seadatanet.org/content/download/1695/10119/file/SeaDataNet+Data+Policy.pdf?version=1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.seadatanet.org/Data-Access/License"}] restricted [] ["unknown"] {"api": "https://www.seadatanet.org/Standards/Data-Transport-Formats", "apiType": "NetCDF"} ["none"] [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} A complete list of member institutions can be found at https://www.seadatanet.org/About-us/SeaDataNet-2/Organisation 2013-08-12 2021-07-14 +r3d100010338 National Biodiversity Network Atlas eng [{"additionalName": "NBN Atlas", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: NBN Gateway", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: National Biodiversity Network Gateway", "additionalNameLanguage": "eng"}] https://nbnatlas.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.p7YFEc"] ["support@nbnatlas.org"] The NBN Atlas is a collaborative project that aggregates biodiversity data from multiple sources and makes it available and usable online. It is the UK’s largest collection of freely available biodiversity data. eng ["disciplinary"] {"size": "199.893.404 occurence records; 113.347 taxa;", "updatedp": "2021-07-14"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://nbnatlas.org/about-nbn-atlas/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Biodiversity", "UK biodiversity data"] [{"institutionName": "The National Biodiversity Network", "institutionAdditionalName": ["NBN"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nbn.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["access@nbn.org.uk"]}] [{"policyName": "NBN Atlas Terms of Use", "policyURL": "https://docs.nbnatlas.org/nbn-atlas-terms-of-use/"}, {"policyName": "NBN Gateway LEGAL - Terms and Conditions", "policyURL": "https://nbn.org.uk/legal/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/de/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://docs.nbnatlas.org/data-licenses/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] restricted [] ["unknown"] {"api": "https://api.nbnatlas.org/apps", "apiType": "REST"} ["none"] https://docs.nbnatlas.org/cite-nbn-atlas-data/ [] unknown yes [] [] {} Data partners and collections: https://registry.nbnatlas.org/ 2013-08-12 2021-10-25 +r3d100010339 Systema Dipterorum eng [{"additionalName": "BDWD", "additionalNameLanguage": "eng"}, {"additionalName": "The BioSystematic Database of World Diptera", "additionalNameLanguage": "eng"}, {"additionalName": "The Diptera Site", "additionalNameLanguage": "eng"}] http://www.diptera.org/ [] ["http://www.diptera.org/ContactUs", "neale@bishopmuseum.org", "tpape@snm.ku.dk"] Systema Dipterorum (and the former Biosystematic Database of World Diptera) is a source of names and information about those names and the taxa to which they apply. Systema Dipterorum is a set of tools to aid users in finding information about flies. The two main components of Systema Dipterorum are the Nomenclator and the Reference database. eng ["disciplinary"] {"size": "236.604 species names; 23.085 genus names; 4.647 family names;", "updatedp": "2017-03-01"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.diptera.org/About [{"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Flies", "Fly", "Two-winged insects", "biodiversity"] [{"institutionName": "Bernice Pauahi Bishop Museum", "institutionAdditionalName": ["Bishop Museum"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bishopmuseum.org/", "institutionIdentifier": ["ROR:04m60en37"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural History Museum of Denmark", "institutionAdditionalName": ["Statens Naturhistoriske Museum"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://snm.ku.dk/english/", "institutionIdentifier": ["ROR:040ck2b86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Smithsonian Institution, National Museum of Natural History, Department of Entomology", "institutionAdditionalName": ["NMNH, Department of Entomology"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://naturalhistory.si.edu/research/entomology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Systema Dipterorum team", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.diptera.org/TheTeam", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "How to Cite and Copyrights", "policyURL": "http://www.diptera.org/HowToCiteCopyrights"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.diptera.org/HowToCiteCopyrights"}] closed [] ["unknown"] {} ["none"] http://www.diptera.org/HowToCiteCopyrights [] unknown yes [] [] {} The products of Systema Dipterorum (and the former Biosystematic Database of World Diptera) are disseminated in three formats and distributed via three media. The formats represent the traditional catalog, nomenclator and species database. Systema Dipterorum works with ITIS (Catalogue of Life https://www.catalogueoflife.org/data/dataset/1101) and was an initial member of the Species2000 program. Systema Dipterorum is endorsed by the Council for the International Congresses of Dipterology, which is a scientific member of the International Union of Biological Sciences. The Diptera Web after 12 years is now officially closed. 2013-04-25 2021-07-21 +r3d100010341 The ACE Science Center eng [{"additionalName": "ASC", "additionalNameLanguage": "eng"}, {"additionalName": "The Advanced Composition Explorer Science Center", "additionalNameLanguage": "eng"}] http://www.srl.caltech.edu/ACE/ASC/ [] ["ad@srl.caltech.edu", "http://www.srl.caltech.edu/ACE/ASC/level1/persnnel.htm"] The ACE Science Center (ASC) serves to facilitate collaborative work on data from the Advanced Composition Explorer (ACE) spacecraft and to ensure that those data are properly archived and publicly available. The collaborators served are not limited to ACE project-funded investigators. eng ["institutional"] {"size": "", "updatedp": ""} 1998-02-02 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.srl.caltech.edu/ACE/ASC/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["SWEPAM", "space mission"] [{"institutionName": "California Institute of Technology, Advanced Composition Explorer", "institutionAdditionalName": ["ACE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.srl.caltech.edu/ACE/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["asc@srl.caltech.edu"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy Issues", "policyURL": "http://www.srl.caltech.edu/ACE/ASC/docs/asc-ssr-paper.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.srl.caltech.edu/ACE/ASC/browse/browse_info.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.srl.caltech.edu/ACE/ASC/level2/acknowledgements.html"}] closed [] ["unknown"] {"api": "http://www.srl.caltech.edu/ACE/ASC/SOAP/client/", "apiType": "SOAP"} ["none"] [] unknown unknown [] [] {} 2013-04-25 2021-12-10 +r3d100010342 Space Science and Engineering Center Satellite Data Services eng [{"additionalName": "SSEC Satellite Data Services", "additionalNameLanguage": "eng"}] https://www.ssec.wisc.edu/datacenter/ [] ["https://www.ssec.wisc.edu/datacenter/contact-us/"] The Data Center at the University of Wisconsin-Madison Space Science and Engineering Center (SSEC), is responsible for the access, maintenance and distribution of real-time and archive weather satellite data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Space Science and Engineering", "Weather Data"] [{"institutionName": "University of Wisconsin-Madison, Space Science and Engineering Center", "institutionAdditionalName": ["UW SSEC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ssec.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["robo@ssec.wisc.edu"]}] [{"policyName": "Meteosat Data usage policy", "policyURL": "https://www.ssec.wisc.edu/datacenter/met_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ssec.wisc.edu/disclaimer"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ssec.wisc.edu/datacenter/met_policy.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "https://www.ssec.wisc.edu/news/feed", "syndicationType": "RSS"} 2013-04-25 2021-07-26 +r3d100010344 Global Terrorism Database eng [{"additionalName": "GTD", "additionalNameLanguage": "eng"}] http://www.start-dev.umd.edu/gtd/ [] ["http://www.start-dev.umd.edu/gtd/contact/"] The Global Terrorism Database (GTD) is an open-source database including information on terrorist events around the world from 1970 through 2015 (with annual updates planned for the future). Unlike many other event databases, the GTD includes systematic data on domestic as well as international terrorist incidents that have occurred during this time period and now includes more than 150,000 cases. eng ["disciplinary"] {"size": "Over 1780.000 cases", "updatedp": "2021-07-26"} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["National Security", "Terrorism", "Terrorist Attacks"] [{"institutionName": "Akribis Group, Center for Terrorism and Intelligence Studies", "institutionAdditionalName": ["CETIS"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.cetisresearch.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Justice", "institutionAdditionalName": ["NIJ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nij.ojp.gov/", "institutionIdentifier": ["ROR:00v8p7w89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Homeland Security, Science and Technology Directorate", "institutionAdditionalName": ["DHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dhs.gov/science-and-technology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Maryland, National Consortium for the Study of Terrorism and Responses to Terrorism", "institutionAdditionalName": ["START"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.start.umd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.start.umd.edu/gtd/contact-team/", "infostart@start.umd.edu"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.start-dev.umd.edu/gtd/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.start-dev.umd.edu/gtd/terms-of-use/"}] closed [] ["unknown"] yes {} ["none"] http://www.start-dev.umd.edu/gtd/terms-of-use/CitingGTD.aspx [] unknown yes [] [] {} Global Terrorism Database is covered by Thomson Reuters Data Citation Index. 2013-04-25 2021-07-26 +r3d100010345 Statistics New Zealand eng [{"additionalName": "Stats NZ", "additionalNameLanguage": "eng"}, {"additionalName": "Tatauranga Aotearoa", "additionalNameLanguage": "mri"}] https://www.stats.govt.nz/ [] ["https://www.stats.govt.nz/contact-us", "info@stats.govt.nz"] Stats NZ (Statistics New Zealand) collects data about New Zealand’s environment, economy and society. The information helps government, local councils, Māori, businesses, communities, researchers and the public to measure, and make decisions about such things as: where we need roads, schools and hospitals, environmental progress, our quality of life, how families are doing, where to locate a business, and what products to sell. The Statistics New Zealand Data Archive is a central repository for all the important statistical datasets and associated documentation, metadata and publications that Statistics New Zealand produces. It also acts as a safe repository for datasets produced by other government agencies and government funded statistical studies. The key difference between the Statistics New Zealand Data Archive and other digital archives is that it contains primarily statistical data at unit record level. The unit record data is archived when it is no longer in regular use by its producer. eng ["institutional", "other"] {"size": "", "updatedp": ""} 1975 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.stats.govt.nz/about-us/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["New Zealand", "Statistical datasets", "microdata"] [{"institutionName": "Statistics New Zealand", "institutionAdditionalName": ["Tatauranga Aotearoa"], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stats.govt.nz/", "institutionIdentifier": ["ROR:055qjgz33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stats.govt.nz/contact-us"]}] [{"policyName": "Legislation, policies, and guidelines", "policyURL": "https://www.stats.govt.nz/about-us/legislation-policies-and-guidelines/"}, {"policyName": "Terms and conditions", "policyURL": "https://www.stats.govt.nz/about-us/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.stats.govt.nz/about-us/copyright"}] closed [] ["unknown"] {} ["none"] https://www.stats.govt.nz/about-us/copyright [] unknown unknown [] [] {} Data Archive collections: https://www.stats.govt.nz/about-us/stats-nz-archive-website/ The data held in the Data Archive is a valuable source of information for researchers on a wide variety of topics from the 1970s to the present. Tools: https://www.stats.govt.nz/tools/ Classifications: http://aria.stats.govt.nz/aria/#ClassificationSearch:facet.lifecycle=1&fl=name,abb&sort=relevance-&start=0&rows=20 2013-04-25 2021-07-26 +r3d100010346 Database of Genomic Variants eng [{"additionalName": "A curated catalogue of human genomic structural variation", "additionalNameLanguage": "eng"}, {"additionalName": "DGV", "additionalNameLanguage": "eng"}] http://dgv.tcag.ca/dgv/app/home ["OMICS_00266", "RRID:SCR_007000", "RRID:nif-0000-02721", "biodbcore-001156"] ["dgv-contact@sickkids.ca", "http://dgv.tcag.ca/dgv/app/contacts"] The objective of the Database of Genomic Variants is to provide a comprehensive summary of structural variation in the human genome. We define structural variation as genomic alterations that involve segments of DNA that are larger than >1kb. Now we also annotate InDels in 100bp-1kb range. The content of the database is only representing structural variation identified in healthy control samples. The Database of Genomic Variants provides a useful catalog of control data for studies aiming to correlate genomic variation with phenotypic data. The database is continuously updated with new data from peer reviewed research studies. We always welcome suggestions and comments regarding the database from the research community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://dgv.tcag.ca/dgv/app/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["human genome"] [{"institutionName": "Canadian Institutes for Health Research", "institutionAdditionalName": ["CIHR", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["ROR:01gavpb45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Canada, Ontario Genomics Institute", "institutionAdditionalName": ["OGI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontariogenomics.ca/", "institutionIdentifier": ["ROR:00c68jz96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Centre for Applied Genomics", "institutionAdditionalName": ["TCAG"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tcag.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tcag.ca/contact/index.html"]}, {"institutionName": "University of Toronto, McLaughlin Centre for Molecular Medicine", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mclaughlin.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Notice and Disclaimer", "policyURL": "http://www.tcag.ca/projects/databaseDisclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.sickkids.ca/en/about/terms-of-use/"}] restricted [{"dataUploadLicenseName": "Data submission", "dataUploadLicenseURL": "http://dgv.tcag.ca/v103_20131106/app/submissions"}] ["other"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/dgva/", "apiType": "FTP"} ["other"] http://dgv.tcag.ca/dgv/app/faq#q8 [] unknown yes [] [] {} The Database of Genomic Variants is no longer accepting direct submission of data to DGV. We are currently part of a collaboration with two new archival CNV databases at EBI and NCBI, called DGVa and dbVAR, respectively. One of the changes to DGV as part of this collaborative effort is that we will no longer be accepting direct submissions, but rather obtain the datasets from DGVa (short for DGV archive). This will ensure that the three databases are synchronized, and will allow for an official accessioning of variants. To proceed with the submission of data, we therefore recommend that you contact either DGVa or dbVAR and let them handle the archiving and accessioning of your data. Once the data is deposited in their system and the manuscript is published, we will import the variants into DGV. 2013-04-25 2021-08-26 +r3d100010347 tDAR eng [{"additionalName": "The Digital Archaeological Record", "additionalNameLanguage": "eng"}] https://www.tdar.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.7fKiFY"] ["comments@tdar.org"] The Digital Archaeological Record (tDAR) is an international digital repository for the digital records of archaeological investigations. tDAR’s use, development, and maintenance are governed by Digital Antiquity, an organization dedicated to ensuring the long-term preservation of irreplaceable archaeological data and to broadening the access to these data. eng ["disciplinary"] {"size": "427.761 Records", "updatedp": "2021-07-26"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.tdar.org/why-tdar/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["archaeological data", "archaeological investigations", "artifacts", "long term preservation"] [{"institutionName": "Arizona State University", "institutionAdditionalName": ["ASU"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.asu.edu/", "institutionIdentifier": ["ROR:03efmqc40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Arizona State University, Digital Antiquity", "institutionAdditionalName": ["Da"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://live-digant.ws.asu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@digitalantiquity.org"]}, {"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["ROR:00hr5y405"], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Endowment for the Humanities", "institutionAdditionalName": ["NEH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.neh.gov/", "institutionIdentifier": ["ROR:02vdm1p28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Andrew W. Mellon Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mellon.org/", "institutionIdentifier": ["ROR:04jsh2530"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accession Policy", "policyURL": "https://www.tdar.org/about/policies/accession-policy/"}, {"policyName": "Archaeology Data Service / Digital Antiquity, Guides to Good Practice", "policyURL": "http://guides.archaeologydataservice.ac.uk/g2gpwiki/"}, {"policyName": "Terms of Use", "policyURL": "https://www.tdar.org/about/policies/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.tdar.org/about/policies/terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.tdar.org/about/policies/terms-of-use/"}] restricted [{"dataUploadLicenseName": "Upload and Contribute to tDAR", "dataUploadLicenseURL": "https://core.tdar.org/contribute"}] ["other"] yes {} ["DOI"] https://www.tdar.org/about/policies/terms-of-use/ [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.tdar.org/feed/", "syndicationType": "RSS"} is covered by Elsevier. For upload fees see: https://core.tdar.org/cart/add. Additional access by DataONE member node: https://search.dataone.org/#profile/TDAR 2013-04-11 2021-09-03 +r3d100010348 TESS eng [{"additionalName": "Time-sharing Experiments for the Social Sciences", "additionalNameLanguage": "eng"}] https://www.tessexperiments.org/ [] ["https://www.tessexperiments.org/html/contact.html", "tess.experiments@gmail.com"] Time-sharing Experiments for the Social Sciences (TESS) offers researchers the opportunity to capture the internal validity of experiments while also realizing the benefits of working with a large, diverse population of research participants. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.tessexperiments.org/info/introduction#overall [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["General population experiments", "Social science surveys"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Northwestern University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.northwestern.edu/", "institutionIdentifier": ["ROR:000e0be47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "TESS", "institutionAdditionalName": ["Time-sharing Experiments for the Social Sciences"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tessexperiments.org/info/introduction#runs", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tess@tessexperiments.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.tessexperiments.org/info/introduction#proposals"}] restricted [{"dataUploadLicenseName": "Submitt a Proposal", "dataUploadLicenseURL": "https://www.tessexperiments.org/html/submitproposal.html"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2013-04-11 2021-07-26 +r3d100010349 Association of Religion Data Archives eng [{"additionalName": "ARDA", "additionalNameLanguage": "eng"}] https://www.thearda.com/ [] ["support@thearda.com"] The Association of Religion Data Archives (ARDA) strives to democratize access to the best data on religion. Founded as the American Religion Data Archive in 1997 and going online in 1998, the initial archive was targeted at researchers interested in American religion. The targeted audience and the data collection have both greatly expanded since 1998, now including American and international collections and developing features for educators, journalists, religious congregations, and researchers. Data included in the ARDA are submitted by the foremost religion scholars and research centers in the world. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.thearda.com/about/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Adventist", "Baptist", "Episcopalianism", "Islam", "Judaism", "Latter-day-Saints", "Lutheran", "Methodist", "Orthodox", "Pentecostal", "Presbyterian-Reformed", "catholics", "protestants"] [{"institutionName": "Chapman University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.chapman.edu/", "institutionIdentifier": ["ROR:0452jzg20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "John Templeton Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.templeton.org/", "institutionIdentifier": ["ROR:035tnyy05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lilly Endowment, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://lillyendowment.org/", "institutionIdentifier": ["ROR:00cpsd622"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Pennsylvania State University, Department of Sociology and Criminology", "institutionAdditionalName": ["Penn State"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://sociology.la.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@thearda.com"]}, {"institutionName": "The Pennsylvania State University, Social Science Research Institute", "institutionAdditionalName": ["Penn State"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ssri.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.thearda.com/about/"}] restricted [] ["unknown"] {} ["none"] https://www.thearda.com/FAQ/#q11 [] unknown unknown [] [] {"syndication": "http://blogs.thearda.com/trend/feed/", "syndicationType": "RSS"} Association of Religion Data Archives is covered by Thomson Reuters Data Citation Index. 2013-04-11 2021-07-26 +r3d100010350 BioGRID eng [{"additionalName": "Biological General Repository for Interaction Datasets", "additionalNameLanguage": "eng"}] https://thebiogrid.org/ ["FAIRsharing_doi:10.25504/fairsharing.9d5f5r", "MIR:00000058", "OMICS_01901", "RRID:SCR_007393", "RRID:nif-0000-00432"] ["biogridadmin@gmail.com"] The Biological General Repository for Interaction Datasets (BioGRID) is a public database that archives and disseminates genetic and protein interaction data from model organisms and humans. BioGRID is an online interaction repository with data compiled through comprehensive curation efforts. All interaction data are freely provided through our search index and available via download in a wide variety of standardized formats. eng ["disciplinary"] {"size": "77.459 publications for 2.124752protein and genetic interactions; 29.417 chemical associations; 1.128.339 post translational modifications.", "updatedp": "2021-07-26"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["protein and genetic interactions"] [{"institutionName": "BioGRID", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://thebiogrid.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["biogridadmin@gmail.com"]}, {"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["ROR:01gavpb45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mount Sinai Hospital, Samuel Lunenfeld Research Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lunenfeld.ca/Default.asp", "institutionIdentifier": ["ROR:01s5axj25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Princeton University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.princeton.edu/", "institutionIdentifier": ["ROR:00hx57361"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Edinburgh", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/", "institutionIdentifier": ["ROR:01nrxwf90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Montr\u00e9al, Institute for Research in Immunology and Cancer", "institutionAdditionalName": ["IRIC", "Universit\u00e9 de Montr\u00e9al, Institut de recherche en immunologie en canc\u00e9rologie"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iric.ca/en", "institutionIdentifier": ["ROR:00wj6x496"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://wiki.thebiogrid.org/doku.php/privacy_policy"}, {"policyName": "Terms and Conditions", "policyURL": "https://wiki.thebiogrid.org/doku.php/terms_and_conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wiki.thebiogrid.org/doku.php/terms_and_conditions#licensing_and_other_terms_applying_to_content_posted_on_the_biogrid_sites"}] restricted [{"dataUploadLicenseName": "Contribute to the BioGRID", "dataUploadLicenseURL": "https://wiki.thebiogrid.org/doku.php/contribute"}] [] yes {"api": "https://wiki.thebiogrid.org/doku.php/biogridrest", "apiType": "REST"} ["none"] https://downloads.thebiogrid.org/BioGRID [] yes yes [] [] {} BioGRID is partner of the International Molecular Exchange Consortium (IMEx) 2013-04-11 2021-07-26 +r3d100010351 Tree of Life Web Project eng [{"additionalName": "ToL", "additionalNameLanguage": "eng"}] http://www.tolweb.org/tree/phylogeny.html ["RRID:SCR_005673", "RRID:nif-0000-03586"] ["http://www.tolweb.org/tree/home.pages/feedback.html"] The Tree of Life Web Project is a collection of information about biodiversity compiled collaboratively by hundreds of expert and amateur contributors. Its goal is to contain a page with pictures, text, and other information for every species and for each group of organisms, living or extinct. Connections between Tree of Life web pages follow phylogenetic branching patterns between groups of organisms, so visitors can browse the hierarchy of life and learn about phylogeny and evolution as well as the characteristics of individual groups. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.tolweb.org/tree/home.pages/goals.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Biodiversity"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tree of Life Project", "institutionAdditionalName": ["ToL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tolweb.org/tree/phylogeny.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tolweb.org/tree/home.pages/feedback.html"]}, {"institutionName": "University of Arizona Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://new.library.arizona.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyrights Policy", "policyURL": "http://www.tolweb.org/tree/home.pages/tolcopyright.html"}, {"policyName": "Disclaimer", "policyURL": "http://www.tolweb.org/tree/home.pages/disclaimers.html"}, {"policyName": "Privacy Policy", "policyURL": "http://www.tolweb.org/tree/home.pages/ToLPrivacyPolicy.html"}, {"policyName": "Use of Contributions", "policyURL": "http://www.tolweb.org/tree/home.pages/toluse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.tolweb.org/tree/home.pages/tolcopyright.html"}] restricted [{"dataUploadLicenseName": "Tree of Life Use of Contributions", "dataUploadLicenseURL": "http://www.tolweb.org/tree/home.pages/toluse.html"}, {"dataUploadLicenseName": "Ways to Contribute to the Tree of Life", "dataUploadLicenseURL": "http://www.tolweb.org/tree/home.pages/contcat.html"}] ["other"] yes {} ["none"] http://www.tolweb.org/tree/home.pages/citation.html [] unknown yes [] [] {} 2013-04-06 2017-04-07 +r3d100010352 CRYSTMET eng [] [] [] <<<>>> CRYSTMET contains chemical, crystallographic and bibliographic data together with associated comments regarding experimental details for each study. It is a database of critically evaluated crystallographic data for metals, including alloys, intermetallics and minerals.Using these data, a number of associated files are derived, a major one being a parallel file of calculated powder patterns. These derived data are included within the CRYSTMET product. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1996 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "40503 Composite Materials", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomic coordinates", "catalysis study", "epitaxy modeling", "inorganic compounds", "intermetallic compounds", "materials design", "materials informatics", "powder diffraction"] [{"institutionName": "National Research Council of Canada", "institutionAdditionalName": ["Conseil national de recherches Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nrc.canada.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "1995", "institutionContact": []}, {"institutionName": "Toth Information Systems, Inc.", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["info@tothcanada.com"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://laws.justice.gc.ca/eng/acts/C-42/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws.justice.gc.ca/eng/acts/C-42/"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2013-11-06 2019-10-22 +r3d100010354 THREDDS Data Server eng [] http://www.unidata.ucar.edu/software/thredds/current/tds/TDS.html [] ["support-idd@unidata.ucar.edu."] The THREDDS Data Server (TDS) is a web server that provides metadata and data access for scientific datasets, using OPeNDAP, OGC WMS and WCS, HTTP, and other remote data access protocols. Unidata is a diverse community of over 250 institutions vested in the common goal of sharing data, and tools to access and visualize that data. For more than 25 years Unidata has been providing data, tools, and support to enhance earth-system education and research. In an era of increasing data complexity, accessibility, and multidisciplinary integration, Unidata provides a rich set of services and tools. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.unidata.ucar.edu/about/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["aircraft-Borne", "gps meteo", "lightning", "radar", "satellite", "weather forecast", "wind"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, Unidata", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support-thredds@unidata.ucar.edu"]}] [{"policyName": "Participation Policy", "policyURL": "http://www.unidata.ucar.edu/legal/participation.html"}, {"policyName": "Privacy Policy", "policyURL": "https://www2.ucar.edu/privacy-policy"}, {"policyName": "Terms of use", "policyURL": "https://www2.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www2.ucar.edu/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.unidata.ucar.edu/data/data_usage.html"}] restricted [] ["unknown"] yes {} ["none"] [] no unknown [] [] {"syndication": "http://www.unidata.ucar.edu/blogs/news/feed/entries/atom", "syndicationType": "ATOM"} Direct access to data http://thredds.ucar.edu/thredds/catalog.html 2013-08-29 2017-04-10 +r3d100010355 Unidata Internet Data Distribution eng [{"additionalName": "IDD", "additionalNameLanguage": "eng"}] http://www.unidata.ucar.edu/projects/index.html#idd [] ["support@unidata.ucar.edu"] The Unidata community of over 260 universities is building a system for disseminating near real-time earth observations via the Internet. Unlike other systems, which are based on data centers where the information can be accessed, the Unidata IDD is designed so a university can request that certain data sets be delivered to computers at their site as soon as they are available from the observing system. The IDD system also allows any site with access to specialized observations to inject the dataset into the IDD for delivery to other interested sites. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["earth-related data"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support-idd@unidata.ucar.edu"]}] [{"policyName": "Copyrights Issues", "policyURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}, {"policyName": "Privacy Policy", "policyURL": "https://www2.ucar.edu/privacy-policy"}, {"policyName": "Terms of Use", "policyURL": "https://www2.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.unidata.ucar.edu/data/data_usage.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.unidata.ucar.edu/legal/participation.html#data"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [] {} The Unidata Program Center is a member of the UCAR Community Programs http://www.ucp.ucar.edu/ 2013-04-04 2021-09-07 +r3d100010356 Unidata's RAMADDA eng [{"additionalName": "Unidata's Motherlode Repository", "additionalNameLanguage": "eng"}] https://ramadda.unidata.ucar.edu/repository [] ["jeff.mcwhirter@gmail.com"] Our mission is to provide the data services, tools, and cyberinfrastructure leadership that advance earth-system science, enhance educational opportunities, and broaden participation. Unidata's main RAMADDA server contains access to a variety of datasets including the full IDD feed, Case Studies and other project data. RAMADDA is a content management system for Earth Science data. More information is available here: http://ramadda.org/ eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ramadda.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["case studies", "earth science"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Unidata", "institutionAdditionalName": ["providing innovative data services and tools to transform the conduct of geoscience"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unidata.ucar.edu/data/index.html#archived", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, Community Program", "institutionAdditionalName": ["UCAR", "UCP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ucp.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Participation Policy", "policyURL": "http://www.unidata.ucar.edu/legal/participation.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://motherlode.ucar.edu/repository/userguide/license.html"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www2.ucar.edu/terms-of-use"}] open [] ["other"] yes {} ["DOI"] [] unknown unknown [] [] {"syndication": "https://www2.ucar.edu/atmosnews/rss", "syndicationType": "RSS"} RAMADDA is a freely available, open-source content and data repository. Its a place to manage all of your digital stuff - documents, photos, wikis, data, maps, etc. Unidata is a data facilitator, not a data archive center. Unidata provides mechanisms for accessing some archived data sets and case studies, and some Unidata sites do archive our data streams in raw, encoded form.Unidata is a diverse community of education and research institutions with the common goal of sharing geoscience data and the tools to access and visualize that data. For more than 25 years, Unidata has been providing data, software tools, and support to enhance Earth-system education and research. In an era of increasing data complexity and multidisciplinary integration, Unidata provides a rich set of services to the community. Funded primarily by the National Science Foundation, Unidata is one of the University Corporation for Atmospheric Research (UCAR)'s Community Programs (UCP). UCP units create, conduct, and coordinate projects that strengthen education and research in the atmospheric, oceanic, and Earth sciences. 2013-06-10 2021-09-07 +r3d100010357 The Universal Protein Resource eng [{"additionalName": "UniProt", "additionalNameLanguage": "eng"}] https://www.uniprot.org/ ["RRID:SCR_002380", "RRID:nif-0000-00377"] ["help@uniprot.org", "https://www.uniprot.org/contact", "https://www.uniprot.org/help/about"] The Universal Protein Resource (UniProt) is a comprehensive resource for protein sequence and annotation data. The UniProt databases are the UniProt Knowledgebase (UniProtKB), the UniProt Reference Clusters (UniRef), and the UniProt Archive (UniParc). The UniProt Metagenomic and Environmental Sequences (UniMES) database is a repository specifically developed for metagenomic and environmental data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.uniprot.org/help/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["protein function", "protein information"] [{"institutionName": "British Heart Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/", "institutionIdentifier": ["ROR:02wdwnk04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pir.georgetown.edu/pirwww/support/"]}, {"institutionName": "State Secretariat for Education, Research and Innovation", "institutionAdditionalName": ["SBFI", "SERI", "Staatssekretariat f\u00fcr Bildung, Forschung und Innovation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sbfi.admin.ch/sbfi/de/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": ["ROR:002n09z45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@sib.swiss"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/05/UniProt.pdf"}, {"policyName": "License and Disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Submission", "dataUploadLicenseURL": "https://www.uniprot.org/help/submissions"}] ["unknown"] {"api": "ftp://ftp.uniprot.org/pub/databases/uniprot/", "apiType": "FTP"} ["DOI", "PURL"] https://www.uniprot.org/help/publications [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.uniprot.org/news/?format=rss", "syndicationType": "RSS"} UniProt is a partner of International Moleuclar Exchange Consortium (IMEX) 2013-04-04 2020-05-27 +r3d100010358 National Virtual Observatory eng [{"additionalName": "NVO", "additionalNameLanguage": "eng"}, {"additionalName": "US National Virtual Observatory", "additionalNameLanguage": "eng"}] https://sites.google.com/site/usvirtualobservatory/ [] [] <<>> NVO - National Virtual Observatory is closed now <<>> The National Virtual Observatory (NVO) was the predecessor of the VAO. It was a research project aimed at developing the technologies that would be used to build an operational Virtual Observatory. With the NVO era now over, a new organization has been funded in its place, with the explicit goal of creating useful tools for users to take advantage of the groundwork laid by the NVO. To carry on with the NVO's goals, we hereby introduce you to the Virtual Astronomical Observatory http://www.usvao.org/ eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["astronomical observation", "astronomical research", "astronomy", "astrophysics"] [{"institutionName": "International Virtual Observatory Alliance", "institutionAdditionalName": ["IVOA"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ivoa.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Space Telescope Science Institute", "institutionAdditionalName": ["STTSCI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.stsci.edu/portal/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://sites.google.com/site/usvirtualobservatory/"}] restricted [] ["unknown"] {} [] [] unknown yes [] [] {} The NVO project established the foundations for the Virtual Astronomical Observatory. For the latest science capabilities, visit the VAO Website: http://www.usvao.org/ 2013-04-04 2021-09-03 +r3d100010359 Naval Oceanography Portal - Data Services eng [] https://www.usno.navy.mil/USNO/astronomical-applications/data-services [] ["https://www.usno.navy.mil/help"] The United States Naval Meteorology and Oceanography Command (NMOC) provides critical information from the ocean depths to the most distant reaches of space, meeting needs in the military, scientific, and civilian communities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["serviceProvider"] ["Earth orientation", "Lunar eclipse", "Moon Data", "Solar eclipse", "Sun Data"] [{"institutionName": "Naval Meteorology and Oceanography Command", "institutionAdditionalName": ["NMOC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.public.navy.mil/FLTFOR/cnmoc/Pages/home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Navy", "institutionAdditionalName": ["America*s NAVY", "U.S. Navy"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.navy.mil/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Security & Privacy Policy", "policyURL": "http://www.usno.navy.mil/privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usno.navy.mil/privacy-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.secnav.navy.mil/foia/Pages/default.aspx"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-03-30 2021-09-07 +r3d100010360 Scientific Registry of Transplant Recipients eng [{"additionalName": "SRTR", "additionalNameLanguage": "eng"}, {"additionalName": "US Transplant", "additionalNameLanguage": "eng"}] https://www.srtr.org/ [] ["https://www.srtr.org/contact-us/contact-us/", "srtr@srtr.org"] The Scientific Registry of Transplant Recipients (SRTR) is an ever-expanding national database of transplantation statistics. Founded in 1987, the registry exists to support the ongoing evaluation of the scientific and clinical status of solid organ transplantation, including kidney, heart, liver, lung, intestine, and pancreas. Data in the registry are collected by the Organ Procurement and Transplantation Network (OPTN) from hospitals and organ procurement organizations (OPOs) across the country. The SRTR contains current and past information about the full continuum of transplant activity, from organ donation and waiting list candidates to transplant recipients and survival statistics. This information is used to help develop evidence-based policy, to support analysis of transplant programs and OPOs, and to encourage research on issues of importance to the transplant community. eng ["disciplinary"] {"size": "", "updatedp": ""} 1987 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.srtr.org/about-srtr/mission-vision-and-values/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["evaluation", "organ donation", "organ transplantation", "survival statistics"] [{"institutionName": "The Minneapolis Medical Research Foundation, Chronic Disease Research Group", "institutionAdditionalName": ["CDRG", "MMRF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdrg.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["srtr@srtr.org"]}, {"institutionName": "US Department of health and human services, Organ Procurement and Transplantation Network", "institutionAdditionalName": ["OPTN"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://optn.transplant.hrsa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "https://www.hhs.gov/web/policies-and-standards/hhs-web-policies/privacy/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.srtr.org/requesting-srtr-data/citations-and-permissions/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.srtr.org/requesting-srtr-data/data-requests/"}] restricted [{"dataUploadLicenseName": "DUA Compliance", "dataUploadLicenseURL": "https://www.srtr.org/requesting-srtr-data/data-requests/"}] ["unknown"] {} ["none"] https://www.srtr.org/requesting-srtr-data/citations-and-permissions/ [] unknown yes [] [] {} 2013-03-30 2021-07-01 +r3d100010361 United States Transuranium & Uranium Registries eng [{"additionalName": "USTUR", "additionalNameLanguage": "eng"}] https://ustur.wsu.edu/ [] ["https://ustur.wsu.edu/contactus/"] The United States Transuranium & Uranium Registries (USTUR) is a research program that studies actinide elements deposited within the human body – in persons with measurable, documented exposures to those elements. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ustur.wsu.edu/Mission/index.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Americium", "National Human Radiobiology Tissue Repository - NHRTR", "Pathology Database", "Plutonium", "Thorium", "Uranium", "biological effects of actinides in humans", "pharmacy", "radiation damages", "radiochemical analyses"] [{"institutionName": "Department of Energy, Office of Independent Enterprise Assessments", "institutionAdditionalName": ["IEA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/ea/office-enterprise-assessments", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington State University, College of Pharmacy", "institutionAdditionalName": ["WSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.pharmacy.wsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ustur.wsu.edu/ContactUs/index.html"]}] [{"policyName": "Copyright Policy", "policyURL": "https://ucomm.wsu.edu/wsu-copyright-policy/"}, {"policyName": "Radiochemistry Policies & Procedures Manual", "policyURL": "http://www.ustur.wsu.edu/PolicyProcedures/RadChemProcedures.html"}, {"policyName": "University Data Policies", "policyURL": "http://public.wsu.edu/~forms/HTML/EPM/EP8_University_Data_Policies.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://public.wsu.edu/~forms/HTML/EPM/EP8_University_Data_Policies.htm#Access"}] restricted [] ["unknown"] {} ["none"] http://www.ustur.wsu.edu/PolicyProcedures/RadChemProcedures.html [] unknown unknown [] [] {} 2013-03-30 2021-09-07 +r3d100010362 The USA National Phenology Network eng [{"additionalName": "USA-NPN", "additionalNameLanguage": "eng"}] https://www.usanpn.org/home [] ["https://www.usanpn.org/contact", "nco@usanpn.org"] The USA National Phenology Network serves science and society by promoting broad understanding of plant and animal phenology and its relationship with environmental change. The Network is a consortium of individuals and organizations that collect, share, and use phenology data, models, and related information. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.usanpn.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["biodiversity", "environmental change", "plant and animal phenology"] [{"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "OAK Ridge National Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The USA National Phenology Network", "institutionAdditionalName": ["USA-NPN"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usanpn.org/home", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["nco@usanpn.org"]}, {"institutionName": "The University of Arizona", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.arizona.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Wildlife Society", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://wildlife.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Fish and Wildlife Service Home", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fws.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. National Park Service", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nps.gov/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Milwaukee", "institutionAdditionalName": ["UWM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://uwm.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "For-Profit Company Policy", "policyURL": "https://www.usanpn.org/terms#For-ProfitCompany"}, {"policyName": "Good Samaritan Content Policy", "policyURL": "https://www.usanpn.org/terms#GoodSamaritan"}, {"policyName": "Nature's Notebook Use Policy", "policyURL": "https://www.usanpn.org/terms#NaturesNotebookUse"}, {"policyName": "Terms of use", "policyURL": "https://www.usanpn.org/terms"}, {"policyName": "USA-NPN Data Attribution Policy", "policyURL": "https://www.usanpn.org/terms#DataAttribution"}, {"policyName": "USA-NPN Data Use Policy", "policyURL": "https://www.usanpn.org/terms#DataUse"}, {"policyName": "USA-NPN Phenology Protocols Use Policy", "policyURL": "https://www.usanpn.org/terms#Protocol-Use"}, {"policyName": "YourGardenShow.com Use Policy", "policyURL": "https://www.usanpn.org/terms#YourGardenShow.comUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.usanpn.org/terms#ContentSite"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.usanpn.org/terms#DataAttribution"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.usanpn.org/terms#DataUse"}] restricted [{"dataUploadLicenseName": "Your content contributed to the site", "dataUploadLicenseURL": "https://www.usanpn.org/terms#ContentContributed"}] ["unknown"] no {"api": "https://docs.google.com/document/d/1yNjupricKOAXn6tY1sI7-EwkcfwdGUZ7lxYv7fcPjO8/edit", "apiType": "REST"} ["DOI"] https://www.usanpn.org/terms#DataAttribution [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2013-03-29 2017-04-12 +r3d100010363 Visual Arts Data Service eng [{"additionalName": "VADS", "additionalNameLanguage": "eng"}] https://vads.ac.uk/ [] ["https://vads.ac.uk/contact.html", "vads@ucreative.ac.uk"] VADS is the online resource for visual arts. It has provided services to the academic community for 12 years and has built up a considerable portfolio of visual art collections comprising over 100,000 images that are freely available and copyright cleared for use in learning, teaching and research in the UK. VADS provides: expert guidance and help for digital projects in art education; resource development and hosting for art education; project management and consultancy for art education; leadership in the innovative use of ICT in education through its research and development activities. VADS offers advice and guidance to the visual arts research, teaching and learning communities on all aspects of digital resource management from funding, through delivery and use, to preservation. eng ["disciplinary", "institutional"] {"size": "over 140.000 images", "updatedp": "2021-09-03"} 1997 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://vads.ac.uk/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Visual arts", "Visual design"] [{"institutionName": "University for the Creative Arts", "institutionAdditionalName": ["UCA"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uca.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uca.ac.uk/contact-us/"]}] [{"policyName": "Terms of use", "policyURL": "https://vads.ac.uk/common_access_agreement.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://vads.ac.uk/copyright_disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://vads.ac.uk/copyright_disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://vads.ac.uk/common_access_agreement.html"}] restricted [{"dataUploadLicenseName": "other", "dataUploadLicenseURL": "http://www.vads.ac.uk/services/depositing/licence_form.doc"}] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-03-29 2021-09-03 +r3d100010364 Wand- und Deckenmalerei in Lübecker Häusern 1300 bis 1800 deu [] http://www.wandmalerei-luebeck.uni-kiel.de/testwebdb/content/below/index2.xml [] ["annegret.moehlenkamp@luebeck.de", "http://www.wandmalerei-luebeck.uni-kiel.de/kontakt.html"] A collection of all 1.600 wall and ceiling paintings from 400 Lübecker Bürgerhäusern eng ["disciplinary"] {"size": "1.600 images", "updatedp": "2019-05-21"} 2005 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.wandmalerei-luebeck.uni-kiel.de/testwebdb/content/main/Forschungsprojekt/zumprojekt.xml [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["ceiling painting", "mural art", "painting"] [{"institutionName": "Christian-Albrechts-Universit\u00e4t zu Kiel, Kunsthistorisches Institut", "institutionAdditionalName": ["CAU Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kunstgeschichte.uni-kiel.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Gemeinnuetzige Sparkassenstiftung zu L\u00fcbeck", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gemeinnuetzige-sparkassenstiftung-luebeck.de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2005", "responsibilityEndDate": "2008", "institutionContact": []}, {"institutionName": "Hansestadt L\u00fcbeck, Bereich Arch\u00e4ologie und Denkmalpflege", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://buergerservice.luebeck.de/de/buergerservice/anbieter/?dq=Z&fdid=9044760", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["archaeologie@luebeck.de", "denkmalpflege@luebeck.de"]}, {"institutionName": "Possehl-Stiftung L\u00fcbeck", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.possehl-stiftung.de/de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2010", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.wandmalerei-luebeck.uni-kiel.de/impressum.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.wandmalerei-luebeck.uni-kiel.de/impressum.html"}] closed [] ["other"] no {} ["none"] [] unknown unknown [] [] {} 2013-03-23 2019-05-21 +r3d100010365 West African Plants eng [{"additionalName": "A PHOTO GUIDE", "additionalNameLanguage": "eng"}] http://www.westafricanplants.senckenberg.de/root/index.php [] ["westafricanplants@senckenberg.de"] The database contains photographs of plants from West Africa in a broad geographical sense, mainly from the savanna regions. eng ["disciplinary"] {"size": "30275 photos; 2704 illustrated species", "updatedp": "2017-04-13"} 2008-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.westafricanplants.senckenberg.de/root/index.php?page_id=7 [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["Central African plants", "East African plants"] [{"institutionName": "BIOTA AFRICA", "institutionAdditionalName": ["BIOdiversity Monitoring Transect Analysis in Africa"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.biota-africa.org/index.php?Page_ID=L900", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Biodiversit\u00e4t und Klima - Forschungszentrum", "institutionAdditionalName": ["BiK-F", "Senckenberg Biodiversity and Climate Research Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bik-f.de/root/index.php?page_id=", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johann Wolfgang Goethe-Universit\u00e4t Frankfurt", "institutionAdditionalName": ["Goethe University Frankfurt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uni-frankfurt.de/de?locale=de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Senckenberg Gesellschaft f\u00fcr Naturforschung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.senckenberg.de/root/index.php?page_id=5229", "institutionIdentifier": [], "responsibilityStartDate": "2008-08", "responsibilityEndDate": "", "institutionContact": ["info@senckenberg.de"]}, {"institutionName": "UNDESERT", "institutionAdditionalName": ["understanding and combating desertification to mitigate its impact on ecosystem services"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://undesert.neri.dk/index.php?page=Home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Rostock, Institut f\u00fcr Biowissenschaften", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bio.uni-rostock.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Ouagadougou", "institutionAdditionalName": [], "institutionCountry": "BFA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.univ-ouaga.bf/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Help & User's Guide", "policyURL": "http://www.westafricanplants.senckenberg.de/root/index.php?page_id=6"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.westafricanplants.senckenberg.de/root/index.php?page_id=10"}] restricted [{"dataUploadLicenseName": "Projects and Partners", "dataUploadLicenseURL": "http://www.westafricanplants.senckenberg.de/root/index.php?page_id=7"}] ["other"] no {} ["none"] http://www.westafricanplants.senckenberg.de/root/index.php?page_id=10 [] unknown unknown [] [] {} West African Plants - a photo guide is a part of 'African Plants'. Further parts are 'East African Plants' and 'Central African Plants'. 2013-03-21 2017-04-13 +r3d100010366 Woods Hole Oceanographic Institution - Data & Repositories eng [{"additionalName": "WHOI", "additionalNameLanguage": "eng"}] https://www.whoi.edu/what-we-do/understand/data/ [] ["https://www.whoi.edu/who-we-are/contact-us/", "information@whoi.edu"] WHOI is the world's leading non-profit oceanographic research organization. WHOI maintains unparalleled depth and breadth of expertise across a range of oceanographic research areas. Institution scientists and engineers work collaboratively within and across six research departments to advance knowledge of the global ocean and its fundamental importance to other planetary systems. At the same time, they also train future generations of ocean scientists and address problems that have a direct impact in efforts to understand and manage critical marine resources. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41006 Geotechnics, Hydraulic Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.whoi.edu/who-we-are/about-us/vision-mission/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biological samples", "climate", "coastal science", "geological samples", "hazards", "ocean chemistry", "ocean circulation", "ocean life", "polar systems", "pollution", "seafloor", "underwater archaeology", "water samples"] [{"institutionName": "WHOI Partners and Sponsors", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.whoi.edu/who-we-are/about-us/partners-sponsors/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.whoi.edu/", "institutionIdentifier": ["RRID:SCR_006315", "RRID:nlx_154727"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "WHOI Archive Policy", "policyURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] restricted [{"dataUploadLicenseName": "archive policy", "dataUploadLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] [] no {} ["none"] [] unknown yes [] [] {"syndication": "http://www.whoi.edu//rss/imageOfTheDay.do", "syndicationType": "RSS"} 2014-09-30 2021-09-07 +r3d100010367 World Ozone and Ultraviolet Radiation Data Centre eng [{"additionalName": "Centre Mondial des Donn\u00e9es sur l'Ozone et le Rayonnment Ultraviolet", "additionalNameLanguage": "fra"}, {"additionalName": "Centre mondial des donn\u00e9es sur l'ozone et le rayonnement ultraviolet", "additionalNameLanguage": "fra"}, {"additionalName": "WODC", "additionalNameLanguage": "eng"}, {"additionalName": "WOUDC", "additionalNameLanguage": "eng"}, {"additionalName": "WUDC", "additionalNameLanguage": "eng"}] http://www.woudc.org/ [] ["woudc@ec.gc.ca"] The WOUDC processes, archives and publishes world ozone and UV data reported by over 400 stations comprising over 100 international agencies and universities. The World Ozone and Ultraviolet Radiation Data Centre (WOUDC) has the two component parts: the World Ozone Data Centre (WODC) and the World Ultraviolet Radiation Data Centre (WUDC). These data are available on-line with updates occuring every week and in addition to the on-line archive, data are published annually on CD-ROM, now DVD. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.woudc.org/about/index.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["meteorology", "ozone", "radiation"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ec.gc.ca/default.asp?lang=En&n=FD9B0E51-1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "World Meteorological Organization, Global Atmosphere Watch", "institutionAdditionalName": ["GAW"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmo.int/pages/prog/arep/gaw/gaw_home_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GAW Data Use Policy", "policyURL": "https://gawsis.meteoswiss.ch/GAWSIS//index.html#/faq"}, {"policyName": "WMO Data Use Policy", "policyURL": "https://www.wmo.int/pages/about/exchangingdata_en.html"}, {"policyName": "WOUDC Data Use Policy", "policyURL": "http://woudc.org/about/data-policy.php?lang=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://woudc.org/about/data-policy.php?lang=en"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "http://www.woudc.org/contributors/data-submission.php"}] ["unknown"] no {"api": "http://woudc.org/about/data-access.php#web-services", "apiType": "other"} ["DOI"] http://woudc.org/about/data-policy.php?lang=en [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.woudc.org/news/feed/?lang=en", "syndicationType": "RSS"} The World Ozone and Ultraviolet Radiation Data Centre (WOUDC) is one of the World Data Centres which are part of the Global Atmosphere Watch (GAW) programme of the World Meteorological Organization (WMO). Access to the data is through FTP: http://www.woudc.org/data_e.html 2013-03-13 2017-04-13 +r3d100010368 FORS DARIS eng [{"additionalName": "FORS Data and Research Information Services", "additionalNameLanguage": "eng"}] https://forscenter.ch/data-services/ [] ["https://forscenter.ch/staff/nicolas-pekari/"] FORS is the Swiss Centre of Expertise in the Social Sciences. FORS implements large-scale national and international surveys, offers data and research information services to researchers and academic institutions, and conducts methodological and thematic research. DARIS is its resource centre for research and teaching in the social sciences and archives, disseminates and promotes quantitative and qualitative data . It maintains a comprehensive and up-to-date inventory of social science research projects in Switzerland. In addition, our data service makes available a wide range of datasets for secondary analysis. Databases at DARIS are: FORSbase, COMPASS eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://forscenter.ch/data-services/data-collection/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["microdata", "qualtitative data", "social science research in Switzerland", "statistics"] [{"institutionName": "Consortium of European Social Science Data Archives European Research Infrastructure", "institutionAdditionalName": ["CESSDA ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "FORS", "institutionAdditionalName": ["swiss foundation for research in social sciences"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://forscenter.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://forscenter.ch/about-fors/staff/"]}, {"institutionName": "Swiss Academy of Humanities and Social Sciences", "institutionAdditionalName": ["Acad\u00e9mie suisse des sciences humaines et sociales", "Accademia svizzera di scienze umane e sociali", "SAGW", "Schweizerische Akademie der Geistes- und Sozialwissenschaften"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sagw.ch/sagw.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Lausanne", "institutionAdditionalName": ["UNIL", "Universit\u00e4t Lausanne"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.unil.ch/central/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Archival Acquisition Policy DARIS", "policyURL": "https://forscenter.ch/wp-content/uploads/2018/10/collections-policy.pdf"}, {"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "FORS user contract", "policyURL": "https://forsbase.unil.ch/media/general_documentation/en/User_contract_E.pdf"}, {"policyName": "Implementation of the CoreTrustSeal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/03/DARIS.pdf"}, {"policyName": "Open Access to data and publications of FORS", "policyURL": "https://forscenter.ch/wp-content/uploads/2018/10/openaccess_guidelinesfors.pdf"}, {"policyName": "Policy on Archiving Qualitative Data", "policyURL": "https://forscenter.ch/wp-content/uploads/2018/10/fors-policy-and-procedures-on-qualitative-data_20_04_2016.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://forsbase.unil.ch/media/general_documentation/en/User_contract_E.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://forscenter.ch/wp-content/uploads/2018/10/openaccess_guidelinesfors.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.admin.ch/opc/en/classified-compilation/19920153/index.html"}] restricted [{"dataUploadLicenseName": "Deposit contract FORS", "dataUploadLicenseURL": "https://forscenter.ch/wp-content/uploads/2018/10/deposit-contract_fors_e.pdf"}] ["Fedora"] {} ["DOI"] https://forscenter.ch/wp-content/uploads/2018/10/openaccess_guidelinesfors.pdf [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} https://forsbase.unil.ch/ 2013-03-13 2021-09-07 +r3d100010370 ChroTel Data eng [{"additionalName": "Chromosphere Telescope", "additionalNameLanguage": "eng"}] http://www.leibniz-kis.de/index.php?id=457 [] ["chrotel@leibniz-kis.de"] ChroTel is a telescope to observe the solar chromosphere across the full disk. ChroTel observes the Sun pseudo-simultaneously in three channels at Ca II K, H-alpha and Helium 1083. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1998 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.leibniz-kis.de/de/observatorien/chrotel/data/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Sun", "Sun observation", "observes the Sun"] [{"institutionName": "Kiepenheuer-Institut f\u00fcr Sonnenphysik, University of Freiburg", "institutionAdditionalName": ["KIS", "Kiepenheuer Institute for Solar Physics", "Kiepenheuer-Institut f\u00fcr Sonnenphysik, Albert-Ludwigs-Universit\u00e4t Freiburg"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.leibniz-kis.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.kis.uni-freiburg.de/index.php?id=5&L=1"]}, {"institutionName": "Leibniz Gemeinschaft", "institutionAdditionalName": ["Leibniz association"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info (at) leibniz-gemeinschaft.dt"]}] [{"policyName": "Data policy", "policyURL": "http://www.kis.uni-freiburg.de/index.php?id=797"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.leibniz-kis.de/index.php?id=797"}] restricted [] ["unknown"] {"api": "ftp://archive.leibniz-kis.de/pub/chrotel", "apiType": "FTP"} ["none"] http://www.leibniz-kis.de/index.php?id=797 [] unknown unknown [] [] {} ChroTel data is also indexed by the Virtual Solar Observatory: http://www.virtualsolar.org 2013-03-08 2017-04-18 +r3d100010371 ZACAT eng [{"additionalName": "GESIS Online Study Catalogue", "additionalNameLanguage": "eng"}] https://zacat.gesis.org/webview/ [] ["zacat@gesis.org"] ZACAT is a social science data portal allowing you to search for, browse, analyse and download social science survey data, provided by GESIS - Leibniz Institute for the Social Sciences. ZACAT includes data from International Social Survey Programme (ISSP), Comparative Study of Electoral Systems (CSES), Eurobarometer, European Values Study (EVS), Studies from Eastern Europe, ALLBUS, Politbarometer (German documentation), Election Studies (Germany), Childhood, adolescence and becoming an adult, and LebensRäume. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1986 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Eurobarometer", "European Values Study - EVS", "European values study", "German Election Studies", "ISSP - The International Social Survey Programme", "Politbarometer", "Studies from Eastern Europe - SEE"] [{"institutionName": "GESIS", "institutionAdditionalName": ["Leibniz Institute for the Social Sciences", "Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "Preservation Policy", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/DAS_Preservation_Policy_eng.pdf"}, {"policyName": "Terms of use", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] restricted [] ["Nesstar"] yes {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {"syndication": "https://dbk.gesis.org/gesis-data-news/gesis-data-news-en.xml", "syndicationType": "RSS"} GESIS-ZACAT is member of CESSDA ERIC (Council of European Social Science Data Archives) 2013-03-08 2021-11-10 +r3d100010372 ZINC eng [] http://zinc15.docking.org/ ["RRID:SCR_008596", "RRID:nif-0000-31930"] ["chemistry4biology@gmail.com"] The ZINC Database contains commercially available compounds for structure based virtual screening. It currently has about 21 million compounds that can simply be purchased. It is provided in ready-to-dock, 3D formats with molecules represented in biologically relevant forms. It is available in subsets for general screening as well as target-, chemotype- and vendor-focused subsets. ZINC is free for everyone to use and download at the website zinc.docking.org. eng ["disciplinary"] {"size": "over 100 million purchasable compounds", "updatedp": "2017-04-19"} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://wiki.bkslab.org/index.php/ZINC15:Getting_started [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["pharmaceutical chemistry", "pharmaceutical products"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California San Fransico, Irwin Lab", "institutionAdditionalName": ["John Irwin Lab", "UCSF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://irwinlab.compbio.ucsf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://irwinlab.compbio.ucsf.edu/contact"]}, {"institutionName": "University of California San Fransico, Shoichet Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://bkslab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bshoichet at gmail.com"]}] [{"policyName": "Terms And Conditions", "policyURL": "http://wiki.bkslab.org/index.php/Terms_And_Conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://wiki.bkslab.org/index.php/ZINC_Database"}] restricted [{"dataUploadLicenseName": "Terms And Conditions", "dataUploadLicenseURL": "http://wiki.bkslab.org/index.php/Terms_And_Conditions"}] ["other"] yes {"api": "http://wiki.bkslab.org/index.php/ZINC15_access#ZINC_API", "apiType": "REST"} ["DOI"] http://zinc15.docking.org/ [] unknown unknown [] [] {} an older version of zinc database can be found here http://zinc.docking.org/ 2013-03-08 2021-09-07 +r3d100010373 Launchpad eng [] https://code.launchpad.net ["RRID:SCR_006853", "RRID:nif-0000-10278"] ["feedback@launchpad.net", "https://help.launchpad.net/Feedback"] Launchpad is a software collaboration platform that provides: Bug tracking, Code hosting using Bazaar, Code reviews Ubuntu package building and hosting, Translations, Mailing lists, Answer tracking and FAQs, Specification tracking. Launchpad can host your project’s source code using the Bazaar version control system eng ["other"] {"size": "993873 branches; 24977 projects; 5210 imported branches", "updatedp": "2017-04-19"} 2004 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Configuration data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["collaboration platform", "open source software"] [{"institutionName": "Canonical", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.canonical.com/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy and Data Retention Statement", "policyURL": "https://help.launchpad.net/PrivacyPolicy"}, {"policyName": "Terms and policies", "policyURL": "https://help.launchpad.net/Legal"}, {"policyName": "Terms of Use", "policyURL": "https://help.launchpad.net/TermsofUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://dev.launchpad.net/LaunchpadLicense"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://help.launchpad.net/Translations/LicensingFAQ#Why_the_BSD_license.3F"}, {"dataLicenseName": "other", "dataLicenseURL": "https://help.launchpad.net/Legal/ProjectLicensing"}, {"dataLicenseName": "other", "dataLicenseURL": "https://help.launchpad.net/TermsofUse"}] restricted [{"dataUploadLicenseName": "Personal Package Archive Terms of Use", "dataUploadLicenseURL": "https://help.launchpad.net/PPATermsofUse"}] ["other"] yes {"api": "https://help.launchpad.net/API", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2013-02-27 2017-04-19 +r3d100010374 Canadian Space Science Data Portal eng [{"additionalName": "CSSDP", "additionalNameLanguage": "eng"}] http://cssdp.ca/ssdp/app/home [] ["info@cybera.ca"] The CSSDP project provides space scientists with access to a wide range of space data, observations, and investigative tools. It provides a seamless, single- point of access to these resources through a custom web portal. To date, more than 350 scientists are registered users of the CSSDP portal. The project integrates data from sources such as the Canadian Geospace Monitoring Program and anticipates serving data from the NASA THEMIS satellite probes, the Canadian High-Artic Ionospheric Network (CHAIN), and the Alberta- based Enhanced Polar Outflow Probe (ePOP) satellite mission. This collection and presentation of space data is used to study the influence of the sun on near- Earth space environment, including phenomena such as geomagnetic storms, which cause the northern and southern lights. Geomagnetic storms are also known for often causing power outages, disturbances in polar communications, and the failure of satellites. The effects of space weather can also cause transpolar flight paths to be diverted, adding significant fuel costs to airlines and disruptions for travellers. eng ["disciplinary"] {"size": "5.407.047 files", "updatedp": "2017-04-19"} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://cssdp.ca/ssdp/app/static/about_cssdp/background.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["astrophysics", "space data", "space science", "space weather"] [{"institutionName": "CANARIE", "institutionAdditionalName": ["Canada\u2019s Advanced Research and Innovation Network"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canarie.ca/?referral=home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Space Agency", "institutionAdditionalName": ["Agence spatiale canadienne"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.asc-csa.gc.ca/eng/default.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cybera", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cybera.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@cybera.ca"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cssdp.ca/ssdp/app/static/about_cssdp/technology.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-02-27 2021-08-24 +r3d100010375 GitHub eng [] https://github.com ["RRID:SCR_002630", "RRID:nlx_156051", "biodbcore-001160"] ["https://support.github.com/"] GitHub is the best place to share code with friends, co-workers, classmates, and complete strangers. Over three million people use GitHub to build amazing things together. With the collaborative features of GitHub.com, our desktop and mobile apps, and GitHub Enterprise, it has never been easier for individuals and teams to write better code, faster. Originally founded by Tom Preston-Werner, Chris Wanstrath, and PJ Hyett to simplify sharing code, GitHub has grown into the largest code host in the world. eng ["other"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://github.com/about [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["open source software", "social networking", "web-based hosting service"] [{"institutionName": "GitHub, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://github.com", "institutionIdentifier": ["Wikidata:Q364"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GitHub Corporate Terms of Service", "policyURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-corporate-terms-of-service"}, {"policyName": "GitHub Site Policy", "policyURL": "https://github.com/github/site-policy"}, {"policyName": "Privacy Policy", "policyURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-privacy-statement"}, {"policyName": "Terms of Service", "policyURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"}] restricted [{"dataUploadLicenseName": "Account Terms", "dataUploadLicenseURL": "https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-terms-of-service"}] ["unknown"] yes {"api": "https://docs.github.com/en", "apiType": "other"} ["none"] [] unknown no [] [] {"syndication": "https://github.blog/", "syndicationType": "ATOM"} is covered by Elsevier. 2013-02-27 2021-09-07 +r3d100010376 Land Processes Distributed Active Archive Center eng [{"additionalName": "LP DAAC", "additionalNameLanguage": "eng"}] https://lpdaac.usgs.gov/ ["biodbcore-001522"] ["https://lpdaac.usgs.gov/user_services/contact_us", "lpdaac@usgs.gov"] The Land Processes Distributed Active Archive Center (LP DAAC) is a component of NASAs Earth Observing System (EOS) Data and Information System (EOSDIS). LP DAAC processes, archives, and distributes land data and products derived from the EOS sensors. Located just outside Sioux Falls, South Dakota, the LP DAAC handles data from three EOS instruments aboard two operational satellite platforms: ASTER and MODIS from Terra, and MODIS from Aqua. ASTER data are received, processed, distributed, and archived while MODIS land products are received, distributed, and archived. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996-08-19 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://lpdaac.usgs.gov/user_services/contact_us [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ASTER", "EOS", "MEaSUREs", "MODIS", "satellite images"] [{"institutionName": "Earth Observing System and Information System", "institutionAdditionalName": ["EOSDIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of the Interior", "institutionAdditionalName": ["DOI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.doi.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.usgs.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lpdaac.usgs.gov/user_services/contact_us"]}, {"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ASTER policies", "policyURL": "https://lpdaac.usgs.gov/dataset_discovery/aster/aster_policies"}, {"policyName": "Information Policies and Instructions", "policyURL": "http://www.usgs.gov/laws/info_policies.html"}, {"policyName": "MEaSUREs policies", "policyURL": "https://lpdaac.usgs.gov/dataset_discovery/measures/measures_policies"}, {"policyName": "MODIS policies", "policyURL": "https://lpdaac.usgs.gov/dataset_discovery/modis/modis_policies"}, {"policyName": "community policies", "policyURL": "https://lpdaac.usgs.gov/dataset_discovery/community/community_policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usgs.gov/laws/info_policies.html"}] closed [{"dataUploadLicenseName": "ASTER Data Acquisition Requests", "dataUploadLicenseURL": "https://lpdaac.usgs.gov/data_access/aster_tasking"}] ["unknown"] {"api": "https://opendap.cr.usgs.gov/opendap/hyrax/", "apiType": "OpenDAP"} ["DOI"] https://lpdaac.usgs.gov/citing_our_data [] unknown yes ["WDS"] [] {"syndication": "https://lpdaac.usgs.gov/news_feed", "syndicationType": "RSS"} LP DAAC is a regular member of ICSU World Data System. The LP DAAC is one of the Earth Observing System Data and Information System (EOSDIS) Distributed Active Archive Centers (DAACs), part of the ESDIS project. - See more at: https://lpdaac.usgs.gov/citing_our_data#sthash.FWMhhNP9.dpuf Tools that are primarily designed to search the LP DAAC data holdings and provide access directly to data (https://lpdaac.usgs.gov/tools/data_access): AppEEARS, Data Pool, Earthdata Search, GDEx, GloVis, Japan Space Systems Earth Remote Sensing Division, Mercury, MRTWeb, Reverb, Simple Subset Wizard, TerraLook, USGS EarthExplorer. List of all tools: https://lpdaac.usgs.gov/tools 2013-02-26 2021-11-16 +r3d100010377 NIDDK Central Repository eng [{"additionalName": "The National Institute of Diabetes and Digestive and Kidney Diseases", "additionalNameLanguage": "eng"}] https://repository.niddk.nih.gov/home/ ["FAIRsharing_doi:10.25504/FAIRsharing.pr47jw", "RRID:SCR_006542", "RRID:nlx_152673"] ["NIDDK-CRsupport@niddk.nih.gov."] In 2003, the National Institute of Diabetes and Digestive and Kidney Diseases (NIDDK) at NIH established Data, Biosample, and Genetic Repositories to increase the impact of current and previously funded NIDDK studies by making their data and biospecimens available to the broader scientific community. These Repositories enable scientists not involved in the original study to test new hypotheses without any new data or biospecimen collection, and they provide the opportunity to pool data across several studies to increase the power of statistical analyses. In addition, most NIDDK-funded studies are collecting genetic biospecimens and carrying out high-throughput genotyping making it possible for other scientists to use Repository resources to match genotypes to phenotypes and to perform informative genetic analyses. eng ["disciplinary"] {"size": "176 studies", "updatedp": "2021-07-13"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20507 Clinical Chemistry and Pathobiochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.niddk.nih.gov/about-niddk/meet-director/mission-vision?dkrd=prspt1917 [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["diabetes", "digestive and kidney diseases"] [{"institutionName": "Booz Allen Hamilton", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.boozallen.com/", "institutionIdentifier": ["ROR:051rcp357"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.boozallen.com/tools/footer-navigation/contact-us.html"]}, {"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/?dkrd=prspt0599", "institutionIdentifier": ["ROR:00adh9b73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NIDDK-CRsupport@niddk.nih.gov"]}] [{"policyName": "How to make a request", "policyURL": "https://repository.niddk.nih.gov/pages/overall_instructions/"}, {"policyName": "Policies for clinical researchers", "policyURL": "https://www.niddk.nih.gov/research-funding/human-subjects-research/policies-clinical-researchers"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.niddk.nih.gov/-/media/Files/Research-Funding/Process/PublicversionNIDDKdatasharingpolicy2013July2013.pdf?la=en&hash=86F4425F3778AAF50FAA147C52E83A43"}] restricted [] ["unknown"] no {} ["none"] [] unknown yes [] [] {} The NIDDK Central Repositories are three separate contract-funded components that work together to store data and samples from significant, NIDDK-funded studies. More Information regarding each repository is available at: https://www.niddkrepository.org/pages/about/ 2013-02-13 2021-11-09 +r3d100010379 Climate Change Knowledge Portal eng [{"additionalName": "CCKP", "additionalNameLanguage": "eng"}] https://climateknowledgeportal.worldbank.org/# [] ["http://www.worldbank.org/en/about/contacts"] The CCKP contains environmental, disaster risk, and socio-economic datasets, as well as synthesis products, such as the Climate Adaptation Country Profiles, which are built and packaged for specific user-focused functions such as climate change indices for a particular country. The portal also provides intelligent links to other resources and tools. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://climateknowledgeportal.worldbank.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "climate change", "emission", "historical precipitation", "historical temperature", "natural hazards", "nutrition", "population", "water", "weather"] [{"institutionName": "The World Bank Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worldbank.org/en/home", "institutionIdentifier": ["ROR:02md09461"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sdwebx.worldbank.org/climateportal/index.cfm?page=contacts"]}, {"institutionName": "Trust Fund for Environmentally and Socially Sustainable Development", "institutionAdditionalName": ["TFESSD"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.worldbank.org/en/programs/tfessd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://data.worldbank.org/summary-terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.worldbank.org/summary-terms-of-use"}] closed [] ["unknown"] no {} ["none"] [] unknown unknown [] [] {} For list of participating institutions see: https://www.worldbank.org/en/about/partners 2013-02-13 2021-09-29 +r3d100010381 Bavarian Archive for Speech Signals eng [{"additionalName": "BAS CLARIN Repository", "additionalNameLanguage": "eng"}, {"additionalName": "BAS Repository", "additionalNameLanguage": "deu"}, {"additionalName": "Bayerisches Archiv f\u00fcr Sprachsignale", "additionalNameLanguage": "deu"}] https://clarin.phonetik.uni-muenchen.de/BASRepository/ ["hdl:11858/00-1779-0000-000C-DAAF-B"] ["http://www.en.phonetik.uni-muenchen.de/institute/contact/index.html", "sekretariat@phonetik.uni-muenchen.de"] The Bavarian Archive for Speech Signals (BAS) is a public institution hosted by the University of Munich. This institution was founded with the aim of making corpora of current spoken German available to both the basic research and the speech technology communities via a maximally comprehensive digital speech-signal database. The speech material will be structured in a manner allowing flexible and precise access, with acoustic-phonetic and linguistic-phonetic evaluation forming an integral part of it. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.phonetik.uni-muenchen.de/Bas/BasHomeeng.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ELDA", "corpora", "german speech", "pronaunciation", "spoken language processing SLP"] [{"institutionName": "Bundesministerium f\u00fcr Bildung, Wissenschaft, Forschung und Technologie", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Rechenzentrum M\u00fcnchen", "institutionAdditionalName": ["LRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lrz.de/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ludwig-Maximilians-Universit\u00e4t, Institut f\u00fcr Phonetik und Sprachverarbeitung", "institutionAdditionalName": ["IPS"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.en.uni-muenchen.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CTS Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/05/BAS-CLARIN.pdf"}, {"policyName": "Conditions of use", "policyURL": "https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/disclaimer.php"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/disclaimer.php"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.phonetik.uni-muenchen.de/Bas/BasTermsOfUsage_eng.pdf"}] restricted [] ["other"] yes {"api": "ftp://ftp.bas.uni-muenchen.de/", "apiType": "FTP"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} BAS is covered by Thomson Reuters Data Citation Index. BAS is one of the CLARIN-D service centres. It's a part of the backbone of the German section of the CLARIN European research infrastructure federation. You do not have full access to this resource, since you are authentified neither (1) as a member of a European university nor (2) as a BAS licence holder for this resource. 2013-03-26 2021-09-29 +r3d100010382 IDS Repository eng [{"additionalName": "IDS-Mannheim Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Institut f\u00fcr Deutsche Sprache Repository", "additionalNameLanguage": "eng"}] http://repos.ids-mannheim.de/ [] ["http://repos.ids-mannheim.de/fedora/describe"] The domain of the IDS repository is the German language, mainly in its current form (contemporary New High German). Its designated community are national and international researchers in German and general linguistics. As an institutional repository, the repository provides long term archival of two important IDS projects: the Deutsches Referenzkorpus (‘German Reference Corpus’, DeReKo), which curates a large corpus of written German language, and the Archiv für Gesprochenes Deutsch (‘Archive of Spoken German’, AGD), which curates several corpora of spoken German. In addition, the repository enables germanistic researchers from IDS and from other research facilities and universities to deposit their research data for long term archival of data and metadata arising from research projects. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repos.ids-mannheim.de/tou.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Wendekorpus", "dialect", "fiction books", "german language", "language behavior", "newspaper clippings", "research", "soziolinguistics", "speech corpora", "text corpora"] [{"institutionName": "BMBF", "institutionAdditionalName": ["Bundesministerium f\u00fcr Bildung und Forschung", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin-d.net/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Gemeinschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Deutsche Sprache", "institutionAdditionalName": ["IDS Mannheim"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www1.ids-mannheim.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fankhauser@ids-mannheim.de", "http://repos.ids-mannheim.de/fedora/describe"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/03/IDS-Repository.pdf"}, {"policyName": "Terms of use", "policyURL": "http://repos.ids-mannheim.de/tou.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://repos.ids-mannheim.de/resources/DataUserAgreement.pdf"}] closed [{"dataUploadLicenseName": "CLARIN Deposition & License Agreement", "dataUploadLicenseURL": "http://repos.ids-mannheim.de/resources/DepositorsAgreement.pdf"}, {"dataUploadLicenseName": "Daten\u00fcbernahmerichtlinien des Leibniz-Instituts f\u00fcr Deutsche Sprache", "dataUploadLicenseURL": "http://repos.ids-mannheim.de/resources/LZA_IDS_Depositing_Policy.pdf"}] ["Fedora"] yes {"api": "http://repos.ids-mannheim.de/oaiprovider/", "apiType": "OAI-PMH"} ["hdl"] http://repos.ids-mannheim.de/tou.html [] yes yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The Virtual Language Observatory harvests IDS metadata and provides a faceted search interface for them. IDS is a part of the backbone of the German section of the CLARIN European research infrastructure federation. 2013-03-27 2021-02-10 +r3d100010383 The Language Archive eng [{"additionalName": "TLA", "additionalNameLanguage": "eng"}] https://tla.mpi.nl/ [] ["https://tla.mpi.nl/contact/"] The Language Archive is storing a lot of unique material, from a large variety of languages worldwide, which is recorded and analyzed by researchers from different linguistic disciplines. Data creation, management and exploration tools. Archiving and software expertise for the Digital Humanities. eng ["disciplinary"] {"size": "about 80 Terabyte of well-described resources; about 20.000 hours of digitized audio/video recordings; about 110.000 metadata described sessions; about 5 million annotated segments; data on more than 200 languages among these, data from about 60 DOBES teams", "updatedp": "2019-11-28"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://tla.mpi.nl/home/short-portrait/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora", "language research", "psycholinguistics"] [{"institutionName": "Berlin-Brandenburgische Akademie der Wissenschaften", "institutionAdditionalName": ["BBAW"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bbaw.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIAH", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Insfrastructure - European Research Infrastructure for Language Resources and Technology"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": ["Common Language Resources and Technology Insfrastructure - NL"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ICSU World Data System", "institutionAdditionalName": ["International Council for Science WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Koninklijke Nederlandse Akademie van Wetenschappen", "institutionAdditionalName": ["KNAW"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.knaw.nl/nl", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Gesellschaft", "institutionAdditionalName": ["MPG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Institut fur Psycholinguistik", "institutionAdditionalName": ["MPI-PL", "Max Planck Institute for Psycholinguistics"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpi.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@mpi.nl", "tla@mpi.nl"]}] [{"policyName": "Access Permissions", "policyURL": "https://tla.mpi.nl/resources/access-permissions/"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}, {"policyName": "TLA CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/01/The-Language-Archive.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-eula/"}] restricted [{"dataUploadLicenseName": "DOBES Code of Conduct v2", "dataUploadLicenseURL": "http://dobes.mpi.nl/ethical_legal_aspects/DOBES-coc-v2.pdf"}, {"dataUploadLicenseName": "Depositor-Archivist Agreement DOBES-DAA-V1", "dataUploadLicenseURL": "http://dobes.mpi.nl/ethical_legal_aspects/DOBES-daa-v1.pdf"}] ["unknown"] yes {"api": "https://archive.mpi.nl/oai2", "apiType": "OAI-PMH"} ["hdl"] https://tla.mpi.nl/tools/tla-tools/older-tools/imdi_browser/imdi_browser-citing/ [] unknown yes ["CLARIN certificate B", "other"] [] {"syndication": "https://tla.mpi.nl/tla-news/feed/", "syndicationType": "RSS"} The Data Archive at the Max Planck Institute for Psycholinguistics is storing a lot of unique material, from a large variety of languages worldwide, which is recorded and analyzed by researchers from different linguistic disciplines. In particular the DOBES program on Documenting Endangered Languages funded by VolkswagenFoundation and the Digitization of the Human Ethology Archive from Irenäus Eibl-Eibesfeldt need to be mentioned. The Language Archive is a regular member of the ICSU World Data System. See TLA content at CLARIN-VLO: https://vlo.clarin.eu/search?4&fq=collection:TLA:+DiscAn&fq=collection:TLA:+IPROSLA+sign+language+acquisition&fqType=collection:or MPI is one of the CLARIN-D service centres. It's a part of the backbone of the German section of the CLARIN European research infrastructure federation. 2013-03-27 2019-11-28 +r3d100010384 UdS Fedora Commons Repository eng [{"additionalName": "UdS Fedora Commons Repositorium", "additionalNameLanguage": "deu"}] http://fedora.clarin-d.uni-saarland.de/index.en.html [] ["j.knappen@mx.uni-saarland.de"] In collaboration with other centres in the CLARIN-D consortium, the UdS CLARIN-D centre enables eHumanities by providing a service for hosting and processing language resources (notably corpora) for members of the research community. The UdS CLARIN-D centre thus contributes of lifting the fragmentation of language resources by assisting members of the research community in preparing language materials in such a way that easy discovery is ensured, interchange is facilitated and preservation is enabled by enriching such materials with meta-information, transforming them into sustainable formats and hosting them. We have an explicit mission to archive language resources especially multilingual corpora (parallel, comparable) and corpora including specific registers, both collected by associated researchers as well as researchers who are not affiliated with us. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://fedora.clarin-d.uni-saarland.de/termsofuse.en.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Negra-Corpus", "archive", "computational linguistics", "database of voices", "humanitites", "language research tool", "language resources", "linguistic data", "multilingual corpora", "psycholinguistics", "social sciences", "standards", "syntactic annotation"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "Clarin-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t des Saarlandes", "institutionAdditionalName": ["UdS", "UdS CLARIN-D centre"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-saarland.de/nc/startseite.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["H.Kermes@mx.uni-saarland.de", "e.teich@mx.uni-saarland.de"]}] [{"policyName": "CLARIN Data User Agreement", "policyURL": "https://repos.ids-mannheim.de/resources/DataUserAgreement.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://fedora.clarin-d.uni-saarland.de/termsofuse.en.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://fedora.clarin-d.uni-saarland.de/termsofuse.en.htm"}] restricted [{"dataUploadLicenseName": "CLARIN Deposition & License Agreement", "dataUploadLicenseURL": "https://repos.ids-mannheim.de/resources/DepositorsAgreement.pdf"}] ["Fedora"] yes {"api": "https://vlo.clarin.eu/data/UdS_CLARIN_D_Repository.html", "apiType": "OAI-PMH"} ["hdl"] http://fedora.clarin-d.uni-saarland.de/termsofuse.en.html [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} You can search the content of the UdS CLARIN-D centre repository using two interfaces: The recommended search interface is the facetted search provided by the Virtual Langauge Observatory (VLO) https://vlo.clarin.eu. It provides a user-friendly interface to the resources. It also provides search over a large number of repositories all over the world. There is also a very succinct native Fedora Commons search interface. It provides a facetted search over all metadata fields Fedora Commons maintains. 2013-04-03 2019-02-15 +r3d100010385 Deutsches Textarchiv deu [{"additionalName": "DTA", "additionalNameLanguage": "deu"}] http://www.deutschestextarchiv.de/ [] ["redaktion@deutschestextarchiv.de"] The German Text Archive (Deutsches Textarchiv, DTA) presents online a selection of key German-language works in various disciplines from the 17th to 19th centuries. The electronic full-texts are indexed linguistically and the search facilities tolerate a range of spelling variants. The DTA presents German-language printed works from around 1650 to 1900 as full text and as digital facsimile. The selection of texts was made on the basis of lexicographical criteria and includes scientific or scholarly texts, texts from everyday life, and literary works. The digitalisation was made from the first edition of each work. Using the digital images of these editions, the text was first typed up manually twice (‘double keying’). To represent the structure of the text, the electronic full-text was encoded in conformity with the XML standard TEI P5. The next stages complete the linguistic analysis, i.e. the text is tokenised, lemmatised, and the parts of speech are annotated. The DTA thus presents a linguistically analysed, historical full-text corpus, available for a range of questions in corpus linguistics. Thanks to the interdisciplinary nature of the DTA Corpus, it also offers valuable source-texts for neighbouring disciplines in the humanities, and for scientists, legal scholars and economists. eng ["disciplinary"] {"size": "2.642 transcribed texts; 613.312 digitized pages; 1.026.741.165 characters; 146.891.529 tokens", "updatedp": "2017-06-20"} 2007 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.deutschestextarchiv.de/doku/leitlinien [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["development of the german language", "digital facsimile", "history", "interdisciplinary", "linguistics", "scholarly texts", "scientific texts"] [{"institutionName": "Berlin-Brandenburgische Akademie der Wissenschaften", "institutionAdditionalName": ["BBAW"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bbaw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.deutschestextarchiv.de/doku/impressum#kontakt", "redaktion@deutschestextarchiv.de"]}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin-d.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen", "policyURL": "http://www.deutschestextarchiv.de/doku/nutzungsbedingungen"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}] restricted [] ["Fedora"] yes {"api": "https://clarin.bbaw.de/oai-dta/", "apiType": "OAI-PMH"} ["hdl"] http://www.deutschestextarchiv.de/doku/leitlinien [] unknown yes [] [] {"syndication": "http://www.deutschestextarchiv.de/dtaq/api/recent", "syndicationType": "ATOM"} BBAW is one of the CLARIN-D service centres. It's a part of the backbone of the German section of the CLARIN European research infrastructure. federation. 2013-04-03 2020-02-14 +r3d100010386 LINDAT/CLARIN repository eng [] https://lindat.mff.cuni.cz/repository/xmlui/ [] ["lindat-help@ufal.mff.cuni.cz"] LINDAT/CLARIN is designed as a Czech “node” of Clarin ERIC (Common Language Resources and Technology Infrastructure). It also supports the goals of the META-NET language technology network. Both networks aim at collection, annotation, development and free sharing of language data and basic technologies between institutions and individuals both in science and in all types of research. The Clarin ERIC infrastructural project is more focused on humanities, while META-NET aims at the development of language technologies and applications. The data stored in the repository are already being used in scientific publications in the Czech Republic. eng ["disciplinary"] {"size": "1.185 records", "updatedp": "2021-09-29"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://lindat.cz/files/mission-en.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["computational linguistics", "corpora", "corpus", "language resources", "natural language processing", "speech", "text"] [{"institutionName": "Academy of Sciences, Institute of the Czech Language", "institutionAdditionalName": [], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ujc.avcr.cz/index.html", "institutionIdentifier": ["ROR:01912nj27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - ERIC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Formal and Applied Linguistics, Charles University in Prague", "institutionAdditionalName": ["UFAL"], "institutionCountry": "CZE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ufal.mff.cuni.cz/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "LINDAT/CLARIN Centre for Language Research Infrastructure", "institutionAdditionalName": [], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lindat.mff.cuni.cz/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lindat.mff.cuni.cz/en/about-lindat-clarin"]}, {"institutionName": "META-NET", "institutionAdditionalName": ["A Network of Excellence forging the Multilingual Europe Technology Alliance"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.meta-net.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Masaryk University, Faculty of Informatics, Natural Language Processing Centre", "institutionAdditionalName": ["Masarykovy univerzity, Fakulta informatiky, Centrum zpracov\u00e1n\u00ed p\u0159irozen\u00e9ho jazyka", "NLP Center"], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nlp.fi.muni.cz/en/NLPCentre", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.muni.cz/o-univerzite/fakulty-a-pracoviste/masarykova-univerzita/projekty"]}, {"institutionName": "Ministry of Education, Youth and Sports", "institutionAdditionalName": ["MSMT"], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msmt.cz/", "institutionIdentifier": ["ROR:037n8p820"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of West Bohemia, Faculty of Applied Sciences, Department of Cybernetics", "institutionAdditionalName": ["KKY"], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fav.zcu.cz/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CLARIN B-Centre certificate", "policyURL": "https://www.clarin.eu/content/lindat-clarin"}, {"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/08/LINDAT-CLARIN.pdf"}, {"policyName": "LINDAT/CLARIN repository About and Policies", "policyURL": "https://lindat.mff.cuni.cz/repository/xmlui/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lindat.mff.cuni.cz/repository/xmlui/page/licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MPL-2.0"}] restricted [] ["DSpace"] yes {"api": "https://centres.clarin.eu/oai_pmh", "apiType": "OAI-PMH"} ["hdl"] https://lindat.mff.cuni.cz/repository/xmlui/page/cite [] unknown yes ["CLARIN certificate B", "other"] [] {"syndication": "https://lindat.mff.cuni.cz/repository/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} LINDAT/CLARIN repository is covered by Thomson Reuters Data Citation Index. LINDAT/CLARIN is a node of the Clarin ERIC network. Datasets: The PDT 2.0; NEW (beta) The EngVallex; he PDT-Vallex; Prague English Dependency Treebank 1.0; Prague Czech-English Dependency Treebank 1.0; Prague Spoken Language Corpus; Vallex 2.5 2013-04-03 2021-09-29 +r3d100010387 CLARIN-DK-UCPH Repository eng [{"additionalName": "CLARIN-DK Datacenter", "additionalNameLanguage": "dan"}, {"additionalName": "The CLARIN Centre at the University of Copenhagen", "additionalNameLanguage": "eng"}] https://repository.clarin.dk/repository/xmlui/ [] ["https://info.clarin.dk/en/about/contact/"] The CLARIN Centre at the University of Copenhagen, Denmark, hosts and manages a data repository (CLARIN-DK-UCPH Repository), which is part of a research infrastructure for humanities and social sciences financed by the University of Copenhagen, and a part of the national infrastructure collaboration DIGHUMLAB in Denmark. The CLARIN-DK-UCPH Repository provides easy and sustainable access for scholars in the humanities and social sciences to digital language data (in written, spoken, video or multimodal form) and provides advanced tools for discovering, exploring, exploiting, annotating, and analyzing data. CLARIN-DK also shares knowledge on Danish language technology and resources and is the Danish node in the European Research Infrastructure Consortium, CLARIN ERIC. eng ["disciplinary"] {"size": "23 records", "updatedp": "2019-01-16"} ["dan", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://info.clarin.dk/en/the-clarin-dk-infrastructure/overview/data-management/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["danish corpora", "danish speech", "danish text", "humanities", "language resources"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure for Language Resources and Technology"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DIGHUMLAB", "institutionAdditionalName": ["Digital Humanities Lab Denmark"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dighumlab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bcd@cc.au.dk"]}, {"institutionName": "The CLARIN Centre at the University of Copenhagen", "institutionAdditionalName": ["CLARIN-DK"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://info.clarin.dk/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@clarin.dk"]}, {"institutionName": "University of Copenhagen, Department of Nordic Studies and Linguistics, Centre for Language Technology", "institutionAdditionalName": ["CST", "Centre for Language Technology", "K\u00f8benhavns Universitet, Institut for Nordiske Studier og Sproksvidenskab, Center for Sprokteknologi", "University of Copenhagen"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cst.ku.dk/english/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["cst@hum.ku.dk"]}] [{"policyName": "CLARIN-DK-UCPH Repository Terms of Service", "policyURL": "https://repository.clarin.dk/repository/xmlui/page/terms-of-service"}, {"policyName": "General Terms and Conditions", "policyURL": "https://info.clarin.dk/en/the-clarin-dk-infrastructure/overview/general-terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.dk/clarindk/download-proxy.jsp?license=downloadacademic"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.dk/clarindk/download-proxy.jsp?license=downloadpublic"}, {"dataLicenseName": "other", "dataLicenseURL": "https://repository.clarin.dk/repository/xmlui/page/licenses"}] restricted [{"dataUploadLicenseName": "Distribution License Agreement", "dataUploadLicenseURL": "https://repository.clarin.dk/repository/xmlui/page/contract"}] ["DSpace"] yes {"api": "http://clarin.dk/oaiprovider/", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Data from the CLARIN-DK-UCPH Repository is retrievable from VLO - CLARIN Virtual Language Observatory https://vlo.clarin.eu/?0&fq=collection:CLARIN-DK-UCPH+Repository&fqType=collection:or . CLARIN-DK is part of the national research infrastructure DIGHUMLAB and the European CLARIN-ERIC Research Infrastructure. 2013-06-13 2019-07-29 +r3d100010390 Forschungsdatenzentrum Bildung eng [{"additionalName": "FDZ Bildung", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre for Education", "additionalNameLanguage": "eng"}] https://www.fdz-bildung.de [] ["fdz-bildung@dipf.de", "https://www.fdz-bildung.de/kontakt"] The Research Data Centre Education is a focal point for empirical educational research regarding the archiving and retrieval of audiovisual research data (AV) data and survey instruments (questionnaires and tests). In Research Data Centre Education relevant for empirical educational research data sets and tools for secondary use are provided conform with data protection via a central data repository. Contextual information for each origin study and data and instruments as well as related publications complete the offer. Content of Research Data Centre Education formation (so far) focuses on instruments and data sets of Schulqualitäts- and teaching quality research. Observation and interview data in the form of (anonymous) transcripts and codes - be viewed freely accessible - if any. The release of the original AV data for a scientific re-use is linked to a registration by specifying a reasoned research interest in order to protect the privacy rights of the observed or interviewed people. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.dipf.de/en/knowledge-resources/research-data-centre-for-education [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["pedagogy", "qualitative data", "quantitative data", "teaching material"] [{"institutionName": "DIPF | Leibniz Institute for Research and Information in Education", "institutionAdditionalName": ["DIPF", "DIPF | Leibniz-Institut f\u00fcr Bildungsforschung und Bildungsinformation", "Deutsches Institut f\u00fcr Internationale P\u00e4dagogische Forschung (formerly)", "German Institute for International Educational Research (formerly)"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dipf.de/en/dipf-news", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fdz-bildung@dipf.de"]}, {"institutionName": "Verbund Forschungsdaten Bildung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.forschungsdaten-bildung.de/ueber-verbund", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "https://www.wissenschaftsrat.de/download/archiv/Allianz_Grundsaetze_Forschungsdaten.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "inhaltliches Profil des FDZ Bildung", "policyURL": "https://www.fdz-bildung.de/collection-policy-fdz"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.fachportal-paedagogik.de/forschungsdaten_bildung/get_pages.php?reiter_id=34&la=de"}] restricted [{"dataUploadLicenseName": "Daten sichern", "dataUploadLicenseURL": "https://www.fdz-bildung.de/nutzungsbedingungen-fdz-bildung?la=de"}] ["unknown"] no {} ["DOI"] https://www.fdz-bildung.de/nutzungsbedingungen-fdz-bildung?la=de [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FDZ Bildung is a member of the RatSWD research data infrastructure. FDZ Bildung uses Data Documentation Initiative (DDI) metadata standards. The Research Data Centre for Education (Forschungsdatenzentrum (FDZ) Bildung) promotes the scientific reusage of research data in educational research. The Database for School Quality (Datenbank zur Qualität von Schule – DaQs) is part of its portfolio. FDZ Bildung is part of Forschungsdaten Bildung. 2013-06-13 2021-09-29 +r3d100010392 Geothermal Information System eng [{"additionalName": "GeotIS", "additionalNameLanguage": "deu"}, {"additionalName": "Geothermisches Informationssystem", "additionalNameLanguage": "deu"}] https://www.geotis.de/homepage/GeotIS-Startpage?loc=en [] ["info@geotis.de"] The geothermal information system (GeotIS) provides information and data compilations on deep aquifers in Germany relevant for geothermal exploitation. GeotIS is a public internet based information system and satisfies the demand for a comprehensive, largely scale-independent form of a geothermal atlas which can be continuously updated. GeotIS helps users identify geothermal potentials by visualizing temperature, hydraulic properties and depth levels of relevant stratigraphic units. A sophisticated map interface simplifies the navigation to all areas of interest. An additional component contains a catalogue of all geothermal installations in Germany. The primary objective of this project is to improve the quality of geothermal-plant project-planning and the estimation of the exploration risk for geothermal projects on selectable locations. However, concrete, location-specific analyses still remain the task of local feasibility studies. eng ["disciplinary"] {"size": "more than 30.000 boreholes", "updatedp": "2019-11-28"} 2005 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] https://www.geotis.de/homepage/basics [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["drilling", "fossil fuels", "geophysics", "geothermal energy", "geothermal installations", "geothermal potentials", "maps", "mineral water deposit", "natural gas", "power generation", "renewable energy", "seismology"] [{"institutionName": "Bavarian Environment Agency, branch office Munich", "institutionAdditionalName": ["Bayerisches Landesamt f\u00fcr Umwelt, Dienststelle M\u00fcnchen", "LfU"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.freistaat.bayern/dokumente/behoerde/3001501178117", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bundesministerium f\u00fcr Umwelt, Naturschutz und Reaktorsicherheit", "institutionAdditionalName": ["BMU"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmu.de/en/", "institutionIdentifier": ["ROR:01yj5ad85"], "responsibilityStartDate": "2005", "responsibilityEndDate": "2013-03-31", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["FZJ", "J\u00fclich Research Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich, Projekttr\u00e4ger J\u00fclich", "institutionAdditionalName": ["PTJ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ptj.de/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Free University Berlin", "institutionAdditionalName": ["FU Berlin", "Freie Universit\u00e4t Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geo.fu-berlin.de/en/index.html", "institutionIdentifier": ["ROR:046ak2485"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["birner@zedat.fu-berlin.de", "mschn@zedat.fu-berlin.de"]}, {"institutionName": "Geothermie Neubrandenburg GmbH", "institutionAdditionalName": ["GTN"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gtn-online.de/", "institutionIdentifier": ["ROR:021yrfn07"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479", "RRID:SCR_001552", "RRID:nlx_48421"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institute for Applied Geophysics", "institutionAdditionalName": ["LIAG", "Leibniz-Institut f\u00fcr Angewandte Geophysik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-liag.de/en.html", "institutionIdentifier": ["ROR:05txczf44"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["Ruediger.Schulz@liag-hannvoer.de"]}, {"institutionName": "Regierungspr\u00e4sidium Freiburg", "institutionAdditionalName": ["District Authority Freiburg"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://rp.baden-wuerttemberg.de/rpf/Seiten/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State Authority for Mining, Energy and Geology of Lower Saxony", "institutionAdditionalName": ["LBEG", "Landesamt f\u00fcr Bergbau, Energie und Geologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lbeg.niedersachsen.de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State Geologic Surveys", "institutionAdditionalName": ["Staatliche Geologischen Dienste Deutschlands"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.infogeo.de/Infogeo/DE/Startseite/startseite_node.html", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State Office for the Environment, Natural Conservation and Geology of Mecklenburg-Vorpommern (LUNG), Guestrow", "institutionAdditionalName": ["LUNG", "Landesamt f\u00fcr Umwelt, Naturschutz und Geologie Mecklenburg-Vorpommern, G\u00fcstrow"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lung.mv-regierung.de/", "institutionIdentifier": ["ROR:03tn2wn35"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["https://www.lung.mv-regierung.de/insite/cms/umwelt/geologie/fis_geo/geologie_fis_untergrund/geologie_fis_untergrund_3.htm"]}] [{"policyName": "General Standard Terms and Conditions (GSTC)", "policyURL": "https://www.liag-hannover.de/fileadmin/user_upload/dokumente/Wir_ueber_uns/Gesetze/LIAG_AGB_GSTC-eng_2009.pdf"}, {"policyName": "Terms of use", "policyURL": "https://www.geotis.de/homepage/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.geotis.de/homepage/imprint?loc=en"}] closed [] ["unknown"] {} ["none"] https://www.geotis.de/homepage/imprint [] unknown yes [] [] {} The Geothermal Information System shows the potentials and installations of deep geothermal use in Germany. It consists of two independent modules: Geothermal Potentials and Geothermal Installations. 2013-04-22 2021-08-25 +r3d100010393 International Mouse Strain Resource eng [{"additionalName": "IMSR", "additionalNameLanguage": "eng"}] http://www.findmice.org/ ["RRID:SCR_001526", "RRID:nif-0000-09876"] ["imsr-admin@jax.org"] The IMSR is a searchable online database of mouse strains, stocks, and mutant ES cell lines available worldwide, including inbred, mutant, and genetically engineered strains. The goal of the IMSR is to assist the international scientific community in locating and obtaining mouse resources for research. Note that the data content found in the IMSR is as supplied by strain repository holders. For each strain or cell line listed in the IMSR, users can obtain information about: Where that resource is available (Repository Site); What state(s) the resource is available as (e.g. live, cryopreserved embryo or germplasm, ES cells); Links to descriptive information about a strain or ES cell line; Links to mutant alleles carried by a strain or ES cell line; Links for ordering a strain or ES cell line from a Repository; Links for contacting the Repository to send a query eng ["disciplinary", "institutional"] {"size": "281.783 strains", "updatedp": "2019-04-08"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.findmice.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ES cell lines", "cryopreserved gametes", "embryos", "genetics", "mouse", "mouse strains", "mutation"] [{"institutionName": "Mouse Genome Informatics", "institutionAdditionalName": ["MGI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.informatics.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": ["JAX"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jax.org/contact-jax", "imsr-admin@jax.org"]}] [{"policyName": "General terms and conditions", "policyURL": "https://www.jax.org/about-us/legal-information/terms-and-conditions-of-product-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.findmice.org/copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.findmice.org/copyright"}] restricted [] ["unknown"] yes {} ["other"] http://www.findmice.org/about [] unknown yes [] [] {} The IMSR currently contains data from 21 different repositories, including The Jackson Laboratory, the Mutant Mouse Regional Resource Centers (MMRRCs), RIKEN BRC (RBRC), Taconic (TAC), European Mouse Mutant Archive (EMMA), Canadian Mouse Mutant Repository (CMMR), Texas A&M Institute for Genomic Medicine (TIGM) and the Knockout Mouse Project (KOMP) Repository. Computing repositories: http://www.findmice.org/repository 2013-04-26 2019-04-08 +r3d100010395 LAUDATIO eng [{"additionalName": "Long-term Access and Usage of Deeply Annotated Information", "additionalNameLanguage": "eng"}] https://www.laudatio-repository.org/ [] ["laudatio-support@hu-berlin.de"] LAUDATIO has developed an open access research data repository for historical corpora. For the access and (re-)use of historical corpora, the LAUDATIO repository uses a flexible and appropriate documentation schema with a subset of TEI customized by TEI ODD. The extensive metadata schema contains information about the preparation and checking methods applied to the data, tools, formats and annotation guidelines used in the project, as well as bibliographic metadata, and information on the research context (e.g. the research project). To provide complex and comprehensive search in the annotation data, the search and visualization tool ANNIS is integrated in the LAUDATIO-Repository. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.laudatio-repository.org/projecthome [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora", "historical linguistic data", "philology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Computer- und Medienservice", "institutionAdditionalName": ["CMS"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cms.hu-berlin.de/en/standardseite_collage?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.laudatio-repository.org/contact"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Institut f\u00fcr Deutsche Sprache und Linguistik", "institutionAdditionalName": ["IDSL"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.linguistik.hu-berlin.de/de", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.laudatio-repository.org/contact", "laudatio-support@hu-berlin.de"]}, {"institutionName": "National Institute for Research in Computer Science and Control", "institutionAdditionalName": ["INRIA", "Institut National de Recherche en Informatique et en Automatique"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.inria.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy: Datenschutzerkl\u00e4rung zu den Webseiten und zum Facebook-Auftrtitt der Humboldt-Universit\u00e4t zu Berlin", "policyURL": "https://www.hu-berlin.de/de/hu/impressum/datenschutzerklaerung"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.gnu.org/licenses/license-list.html#apache2"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-sa/3.0/de/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "http://creativecommons.org/licenses/by-sa/3.0/de/"}] ["Fedora"] yes {"api": "https://www.laudatio-repository.org/docs/elasticapi/", "apiType": "REST"} ["DOI"] [] unknown no [] [] {} 2013-09-30 2020-01-20 +r3d100010398 ARS deu [{"additionalName": "Antibiotika-Resistenz-Surveillance", "additionalNameLanguage": "deu"}] https://ars.rki.de/ [] ["https://ars.rki.de/Service/Contact.aspx"] With ARS - Antimicrobial Resistance Surveillance in Germany - the infrastructure for a nationwide surveillance of antimicrobial resistance has been established, which covers both the inpatient medical care and the ambulatory care sector. This is intended to reliable data on the epidemiology of antimicrobial resistance in Germany and differential statements provided by structural features of the health care and by region are possible. ARS is designed as a laboratory-based surveillance system for continuous collection of resistance data from routine for the full range of clinically relevant bacterial pathogens. Project participants and thus data suppliers are laboratories that analyze samples of medical facilities and doctors' offices microbiologically. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ars.rki.de/Content/Project/Main.aspx [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DART", "antimicrobial resistance", "multiresistance"] [{"institutionName": "ARS Netzwerk, Teilnehmende Labore", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ars.rki.de/Content/Project/Participant.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bundesministerium f\u00fcr Gesundheit", "institutionAdditionalName": ["BMG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bmg.bund.de/", "institutionIdentifier": ["ROR:05vp4ka74", "RRID:SCR_005247", "RRID:nlx_158558"], "responsibilityStartDate": "2008", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Robert-Koch-Institut", "institutionAdditionalName": ["rki"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rki.de/DE/Home/homepage_node.html", "institutionIdentifier": ["ROR:01k5qnb77", "RRID:SCR_011500", "RRID:nlx_157722"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ars@rki.de"]}] [{"policyName": "Datenschutzerkl\u00e4rung", "policyURL": "https://ars.rki.de/Service/Privacy.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ars.rki.de/Service/Imprint.aspx"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} ARS as a national surveillance network is a cooperation partner of the European Antimicrobial Resistance Surveillance Network (EARS-Net) relevant to EARS-Net resistance data are forwarded by the Robert Koch Institute to the European Centre for Disease Prevention and Control (ECDC) 2013-11-05 2021-11-17 +r3d100010399 ZEW Forschungsdatenzentrum deu [{"additionalName": "ZEW research data for external researchers", "additionalNameLanguage": "eng"}, {"additionalName": "ZEW-FDZ", "additionalNameLanguage": "eng"}] http://kooperationen.zew.de/de/zew-fdz/startseite.html [] ["https://kooperationen.zew.de/zew-fdz/kontakt.html"] The ZEW research data can be analysed here at ZEW in the ZEW-FDZ premises for research projects. The data provided is individual company data. Besides, the ZEW Financial Market Test provides data collected in the course of an expert survey. Furthermore, Scientific Use Files for eight data sets (three years after the implementation of the survey) and absolute anonymised Education Use Files for the Mannheim Innovation Panel can be used. eng ["institutional"] {"size": "", "updatedp": ""} 2000 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://kooperationen.zew.de/zew-fdz/startseite.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Climate Negotiations Equity", "ECO-CARS", "Integrated Product Policy", "KfW/ZEW Start-up Panel", "Mannheim Innovation Panel", "SECO@home", "Transport Market Barometer", "ZEW Financial Market Test"] [{"institutionName": "Leibniz-Gemeinschaft", "institutionAdditionalName": ["Leibniz Association", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz e.V."], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.leibniz-gemeinschaft.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Zentrum f\u00fcr Europ\u00e4ische Wirtschaftsforschung, ForschungsDatenZentrum", "institutionAdditionalName": ["ZEW FDZ"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://kooperationen.zew.de/de/zew-fdz", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gottschalk@zew.de", "info@zew.de"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF#page=6"}, {"policyName": "Terms of Use", "policyURL": "http://kooperationen.zew.de/en/zew-fdz/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://kooperationen.zew.de/en/zew-fdz/imprint.html"}] restricted [] [] {} ["DOI"] [] unknown yes ["RatSWD"] [] {} 2013-11-05 2019-01-16 +r3d100010400 Banco de Información para la Investigación Aplicada en Ciencias Sociales, Repositorio Institucional spa [{"additionalName": "BIIACS", "additionalNameLanguage": "spa"}] https://biiacs-dspace.cide.edu/ [] ["biiacs@cide.edu"] ---<<< The repository is no longer available. This record is out-dated. >>>---- eng ["institutional"] {"size": "", "updatedp": ""} 2008 2018 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mapp.cide.edu/sobre-el-cide [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Mexico", "international studies", "maps Mexico", "public administration", "sociology"] [{"institutionName": "Banco de Informaci\u00f3n para la Investigaci\u00f3n Aplicada en Ciencias Sociales", "institutionAdditionalName": ["BIIACS"], "institutionCountry": "MEX", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mexico.embajada.gob.ve/index.php?option=com_content&view=article&id=853:servicios-del-banco-de-informacion-para-la-investigacion-aplicada-en-ciencias-sociales-biiacs&catid=17:estudios-en-mexico&Itemid=102", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["biiacs@cide.edu"]}, {"institutionName": "Centro de Investigacion y Docenia Economicas, A.C.", "institutionAdditionalName": ["CIDE"], "institutionCountry": "MEX", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cide.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cide.edu/"]}] [{"policyName": "Politica de privacidad", "policyURL": "https://www.cide.edu/politica-de-privacidad/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/bsd-license.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://biiacs-dspace.cide.edu/handle/10089/15952"}] restricted [] ["DSpace"] {} ["hdl"] https://www.biiacs.cide.edu/consulta/citacion [] unknown yes ["DSA"] [] {"syndication": "http://biiacs-dspace.cide.edu/feed/atom_1.0/site", "syndicationType": "ATOM"} 2013-11-06 2019-02-20 +r3d100010401 KASCADE Cosmic Ray Data Centre eng [{"additionalName": "KCDC", "additionalNameLanguage": "eng"}, {"additionalName": "Karlsruhe Shower Core and Array Detector", "additionalNameLanguage": "eng"}] https://kcdc.ikp.kit.edu/ [] ["ikp-kcdc@lists.kit.edu"] The aim of the project KCDC (KASCADE Cosmic Ray Data Centre) is the installation and establishment of a public data centre for high-energy astroparticle physics based on the data of the KASCADE experiment. KASCADE was a very successful large detector array which recorded data during more than 20 years on site of the KIT-Campus North, Karlsruhe, Germany (formerly Forschungszentrum, Karlsruhe) at 49,1°N, 8,4°O; 110m a.s.l. KASCADE collected within its lifetime more than 1.7 billion events of which some 425.000.000 survived all quality cuts. Initially about 160 million events are available here for public usage. eng ["institutional"] {"size": "", "updatedp": ""} 2013 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://kcdc.ikp.kit.edu/static/pdf/kcdc_mainpage/kcdc-Manual.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["KASCADE GRANDE", "air shower", "astroparticle physics", "cosmic rays", "hadronic interactions", "high-energy physics", "large detector array", "teaching materials"] [{"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Kernphysik", "institutionAdditionalName": ["IKP", "Karlsruhe Institute of Technology, Institute for Nuclear Physics"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ikp.kit.edu/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ikp\u2212kcdc@lists.kit.edu"]}] [{"policyName": "KCDC EULA", "policyURL": "https://kcdc.ikp.kit.edu/lawnorder/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://kcdc.ikp.kit.edu/lawnorder/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://kcdc.ikp.kit.edu/lawnorder/"}] closed [] ["unknown"] yes {} ["none"] https://kcdc.ikp.kit.edu/lawnorder/ [] unknown yes [] [] {} The cosmic ray experiment KASCADE has taken data from October, 25th, 1996 until December 2012. The original KASCADE experiment was extended to KASCADE-Grande with an additional detector array on December, 19th, 2003. The combined data taken after this extension will be released in a later stage of KCDC, as well as additional available measured parameters of the individual cosmic ray events already released. KCDC provides initial educational tools for interested students and teachers for a better understanding of the phenomena of cosmic rays. This task will also be gradually extended in coming releases. 2013-11-08 2020-10-16 +r3d100010402 KNMI Climate Explorer eng [{"additionalName": "Climate Explorer", "additionalNameLanguage": "eng"}] http://climexp.knmi.nl/ [] ["http://climexp.knmi.nl/contact.cgi?id=someone@somewhere", "oldenborgh@knmi.nl"] The KNMI Climate Explorer is a web application to analysis climate data statistically. eng ["disciplinary", "institutional"] {"size": "More than 10 TB", "updatedp": "2018-11-16"} 1999 ["eng", "nld"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://climexp.knmi.nl/about.cgi?id=someone@somewhere [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["analyse tool", "climate", "climate change", "data", "oberservation", "statistics"] [{"institutionName": "Koninklijk Nederlands Meterologisch Instituut", "institutionAdditionalName": ["KNMI", "Royal Netherlands Meteorological Institute"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.knmi.nl/home", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["https://www.knmi.nl/over-het-knmi/contact/contactformulier"]}] [{"policyName": "Data Policy", "policyURL": "https://eca.knmi.nl/documents/ECAD_datapolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://data.knmi.nl/datasets"}] restricted [] ["unknown"] {"api": "https://climexp.knmi.nl/about.cgi?id=someone@somewhere", "apiType": "NetCDF"} ["none"] [] unknown yes [] [] {} Some examples: https://climexp.knmi.nl/about.cgi?id=someone@somewhere 2012-09-13 2018-12-13 +r3d100010403 Barbara A. Mikulski Archive for Space Telescopes eng [{"additionalName": "MAST", "additionalNameLanguage": "eng"}, {"additionalName": "Multimission Archive at STScI", "additionalNameLanguage": "eng"}] http://archive.stsci.edu/ [] ["archive@stsci.edu", "http://archive.stsci.edu/contacts.html"] The Mikulski Archive for Space Telescopes (MAST) is a NASA funded project to support and provide to the astronomical community a variety of astronomical data archives, with the primary focus on scientifically related data sets in the optical, ultraviolet, and near-infrared parts of the spectrum. MAST is located at the Space Telescope Science Institute (STScI). eng ["disciplinary"] {"size": "more than 200 terabytes of data", "updatedp": "2018-11-16"} 1997 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://archive.stsci.edu/aboutmast.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BEFS", "Berkeley Extreme and Far-UV Spectrometer", "COPERNICUS", "DSS", "Digitized Sky Survey", "EPOCh", "EUVE", "Extrasolar Planet Observations and Characterization", "Extreme Ultraviolet Explorer", "FUSE", "Far Ultraviolet Spectroscopic Explorer", "GALEX", "GSC", "Galaxy Evolution Explorer", "Guide Star Catalog", "HLA", "HLSP", "HPOL", "HST", "HUT", "High Level Science Products", "Hopkins Ultraviolet Telescope", "Hubble Legacy Archive", "Hubble Space Telescope", "IMAPS", "IUE", "International Ultraviolet Explorer", "Interstellar Medium Absorption Profile Spectrograph", "Kepler", "Orbiting Astronomical Observatory 3", "TUES", "T\u00fcbingen Echelle Spectrograph", "UIT", "Ultraviolet Imaging Telescope", "VLA-FIRST", "Very Large Array - Faint Images of the Radio Sky at Twenty-cm", "WUPPE", "Wisconsin Ultraviolet Photo-Polarimeter Experiment", "X-ray Multi-Mirror Mission", "XMM-Newton", "aeronautics", "astronomical instruments", "space missions", "space telescopes"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "Space Telescope Science Institute", "institutionAdditionalName": ["STScI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.stsci.edu/", "institutionIdentifier": ["ROR:036f5mx38"], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["archive@stsci.edu"]}] [{"policyName": "MAST Data Use Policy", "policyURL": "http://archive.stsci.edu/footer/data-use"}, {"policyName": "Mission acknowledgements", "policyURL": "http://archive.stsci.edu/footer/data-attributions/mission-acknowledgements"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://archive.stsci.edu/footer/data-use"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://archive.stsci.edu/footer/data-use"}] restricted [{"dataUploadLicenseName": "Guidelines for Contributing High-Level Science Products to the Multimission Archive at STScI", "dataUploadLicenseURL": "http://archive.stsci.edu/hlsp/hlsp_guidelines.html"}] ["other"] yes {"api": "http://archive.stsci.edu/manuals/archive_handbook/chap1.html#1.9", "apiType": "FTP"} ["DOI"] http://archive.stsci.edu/footer/data-attributions [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {"syndication": "http://archive.stsci.edu/mast_news.php?", "syndicationType": "RSS"} MAST is covered by Clarivate Data Citation Index. MAST supports a variety of astronomical data archives, with a primary focus on scientifically related data sets in the optical, ultraviolet, and near-infrared parts of the spectrum. See http://archive.stsci.edu/missions.html for a full list of the mission, survey, and catalog data distributed by MAST. MAST is a component of NASA's distributed Space Science Data Services (SSDS) 2012-09-26 2020-02-10 +r3d100010404 Southeast Asian Climate Assessment & Dataset eng [{"additionalName": "SACA&D", "additionalNameLanguage": "eng"}] http://sacad.database.bmkg.go.id/ [] ["eca@knmi.nl"] SACA&D is developed as part of the Digitisasi Data Historis (Didah) project. This project is focusing on the digitization and use of high-resolution historical climate data from Indonesia and other Southeast Asian countries eng ["disciplinary", "institutional"] {"size": "5720 series of observations for 9 elements at 3913 meteorological stations throughout Southeast Asia", "updatedp": "2018-11-16"} 2009 ["eng", "ind"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://saca-bmkg.knmi.nl/rcc/FAQ/index.php#0 [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Asia", "Indonesia", "change", "climate", "weather"] [{"institutionName": "Badan Meterologi, Klimatologi, Dan Geofisika", "institutionAdditionalName": ["BMKG"], "institutionCountry": "IDN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bmkg.go.id/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2011", "institutionContact": ["eca@knmi.nl"]}, {"institutionName": "Royal Netherlands Meteorological Institute", "institutionAdditionalName": ["KNMI", "Koningklijk Nederlands Meteorologisch Instituut"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.knmi.nl/over-het-knmi/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2014", "institutionContact": ["eca@knmi.nl"]}] [{"policyName": "Data policy", "policyURL": "http://saca-bmkg.knmi.nl/rcc/documents/SACAD_DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://saca-bmkg.knmi.nl/rcc/documents/SACAD_DataPolicy.pdf"}] restricted [] ["unknown"] yes {} ["none"] http://saca-bmkg.knmi.nl/rcc/documents/SACAD_DataPolicy.pdf [] unknown yes [] [] {} SACA&D is developed as part of the Digitisasi Data Historis (Didah); Didah is a joint project between the National Meteorological Services of Indonesia (BMKG) and the Netherlands (KNMI). SACA&D contributes to the Asian Pacific Network for climate extremes (APN). SACA&D has been designated as Regional Climate Centre for Climate Data (RCC-CD) in WMO Region V (Southwest Pacific). 2012-11-16 2018-11-16 +r3d100010405 Integrated Climate Data Center eng [{"additionalName": "ICDC", "additionalNameLanguage": "eng"}] http://icdc.cen.uni-hamburg.de/daten/all-data.html ["biodbcore-001602"] ["http://icdc.cen.uni-hamburg.de/1/beratung.html", "icdc.cen@lists.uni-hamburg.de"] The CliSAP-Integrated Climate Data Center (ICDC) allows easy access to climate relevant data from in-situ measurements and satellite remote sensing. These data are important to determine the status and the changes in the climate system. Additionally some relevant re-analysis data are included, which are modeled on the basis of observational data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2009 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://icdc.cen.uni-hamburg.de/1.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climate indices", "ice and snow", "land", "ocean", "re-analyses"] [{"institutionName": "Universit\u00e4t Hamburg, Integrated Climate Data Center", "institutionAdditionalName": ["ICDC"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://icdc.cen.uni-hamburg.de/1.html", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["http://icdc.cen.uni-hamburg.de/1/beratung.html"]}, {"institutionName": "Universit\u00e4t Hamburg, KlimaCampus", "institutionAdditionalName": ["KlimaCampus Hamburg"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.klimacampus-hamburg.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.klimacampus-hamburg.de/kontakt/"]}] [{"policyName": "CDC scientific concept", "policyURL": "http://icdc.cen.uni-hamburg.de/beratung/concept.html"}, {"policyName": "ICDC technical concept", "policyURL": "http://icdc.cen.uni-hamburg.de/beratung/concept/icdc-technical-concept.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://icdc.cen.uni-hamburg.de/"}] closed [] ["unknown"] {"api": "ftp://ftp-icdc.cen.uni-hamburg.de/", "apiType": "FTP"} ["none"] http://icdc.cen.uni-hamburg.de/daten/atmosphere/modis-cloud-properties0.html ["none"] unknown yes [] [] {"syndication": "https://www.clisap.de/clisap/about-us/news/?type=1394630603", "syndicationType": "RSS"} ICDC is intended to become a permanent element of the university part of the KlimaCampus. The long-term goal of ICDC is the provision of climate information in form of observations or re-analyses of components of the climate system. ICDC does not deal with output of climate models, which, instead, are archived in the World Data Center for Climate WDCC's CERA data bank 2012-09-26 2021-11-16 +r3d100010406 Wetter, Wolken, Klima deu [] http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html [] ["info@wolkenatlas.de"] Wetter, Wolken, Klima is a collection of actual and archived climate dates of Germany since 2004. Based at KIT Meteorological Institute it includes special Cloud images from Karlsruhe, actual weather records based on 70 german stations, average snowfall and precipitation of Germany, weather warnings worldwide with archive, satellite images worldwide, actual weather radar worldwide, analyses and prognosis and precipitation rate of Baden-Württemberg. eng ["disciplinary", "institutional"] {"size": "2374 Aufnahmen", "updatedp": "2020-09-28"} 2004 ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://imkhp2.physik.uni-karlsruhe.de/~muehr/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Beaufort scale", "CEDIM", "clouds", "satellite images", "snowfall", "weather forecasting", "weather records Germany", "weather warning"] [{"institutionName": "Center for Disaster Management and Risk Reduction Technology", "institutionAdditionalName": ["CEDIM"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cedim.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.cedim.kit.edu/english/22.php"]}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung - Forschungsbereich Troposph\u00e4re", "institutionAdditionalName": ["IMK-TRO", "KIT", "Karlsruhe Institute of Technology, Institute of Meteorology and Climate Research, Department Troposphere Research"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imk-tro.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["bernhard.muehr2@kit.edu", "http://www.imk-tro.kit.edu/english/4501.php"]}, {"institutionName": "LACUNOSA Wetterberatung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.lacunosa.de/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["http://www.lacunosa.de/kontakt.html"]}] [{"policyName": "copyright", "policyURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/"}] closed [] ["unknown"] {} ["none"] [] unknown no [] [] {} 2012-10-01 2021-03-30 +r3d100010407 Der Karlsruher Wolkenatlas deu [{"additionalName": "Wolken- und Wetterfotografie", "additionalNameLanguage": "deu"}] http://www.wolkenatlas.de/ [] ["info@wolkenatlas.de"] The Karlsruher Wolkenatlas includes images of different cloud species and of some optical effects like circumzenithal arc, glories, and halos. Beside that phenomena like inversion or dust devil are shown. Another focus is on images of precipitation, different manifestations of precipation at earthground, rainbows and lightnings. eng ["disciplinary", "institutional"] {"size": "2.375 Wolken- und Wetterfotografien, 117 Galerien", "updatedp": "2018-11-16"} 1998 ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.wolkenatlas.de/ [{"name": "Images", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["circumzenithal arc", "clouds", "dust devil", "glories", "halos", "inversion", "lightning", "rainbow"] [{"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung - Forschungsbereich Troposph\u00e4re", "institutionAdditionalName": ["IMK-TRO", "KIT", "Karlsruhe Institute of Technology, Institute for Meteorology and Climate Research - Troposphere Research"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imk-tro.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["http://www.wolkenatlas.de/wolken/impress.htm"]}] [{"policyName": "Karlsruher Wolkenatlas", "policyURL": "http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.wolkenatlas.de/wolken/best.htm"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.wolkenatlas.de/wolken/best.htm"}] closed [] ["unknown"] {} ["none"] http://www.wolkenatlas.de/wolken/info.htm [] unknown no [] [] {} Karlsruher Wolkenatlas ist part of the portal 'Wetter, Wolken, Klima' http://imkhp2.physik.uni-karlsruhe.de/~muehr/wetter.html 2012-10-01 2021-06-29 +r3d100010408 The Antibody Registry eng [{"additionalName": "ABR", "additionalNameLanguage": "eng"}] https://antibodyregistry.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.3wdd17", "OMICS_01768", "RRID:SCR_006397", "RRID:nif-0000-07730"] ["abr-help@scicrunch.org", "rii-help@scicrunch.org"] The Antibody Registry supports the RRID Initiative and exists to give researchers a way to universally identify antibodies used in publications. The registry lists many commercial antibodies from over 200 vendors, which have been assigned a unique identifier and over 2000 individual laboratories. If the antibody that you are using does not appear in the list, an entry can be made by filling in as little as 2 pieces of information: the catalog number and the url of the vendor where our curators can find information and material data sheets. eng ["disciplinary"] {"size": "2.445.004 antibodies", "updatedp": "2019-11-13"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://antibodyregistry.org/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Antibody", "Immunology"] [{"institutionName": "Neuroscience Information Framework, SciCrunch", "institutionAdditionalName": ["NIF", "SciCrunch"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://scicrunch.org/", "institutionIdentifier": ["RRID:SCR_003115", "RRID:nlx_156715"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["rii-help@scicrunch.org"]}] [{"policyName": "Terms and Conditons", "policyURL": "https://antibodyregistry.org/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://antibodyregistry.org/terms-and-conditions"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://antibodyregistry.org/terms-and-conditions"}] restricted [] ["unknown"] yes {} ["other"] ["ORCID"] unknown unknown [] [] {} is covered by Elsevier. The citation format is antibodyregistry.org RRID:nif-0000-07730 The Antibody Registry uses an own persistent identifier system (under the column Antibody ID in the database). For further NIF databases see: http://neuinfo.org. 2013-06-14 2021-09-02 +r3d100010409 ASTM International eng [{"additionalName": "American Society for Testing and Materials", "additionalNameLanguage": "eng"}] https://www.astm.org/Standard/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.hren8w"] ["https://www.astm.org/CONTACT/index.html", "service@astm.org"] ASTM International, formerly known as the American Society for Testing and Materials (ASTM), is a globally recognized leader in the development and delivery of international voluntary consensus standards. Today, some 12,000 ASTM standards are used around the world to improve product quality, enhance safety, facilitate market access and trade, and build consumer confidence. eng ["disciplinary", "institutional"] {"size": "Over 12,000 ASTM standards", "updatedp": "2018-11-16"} 1996 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.astm.org/ABOUT/overview.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["forensic science", "international standards", "standards", "technical spezifications"] [{"institutionName": "ASTM International", "institutionAdditionalName": ["American Society for Testing and Materials"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.astm.org", "institutionIdentifier": ["ROR:01x994m09"], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["https://www.astm.org/CONTACT/index.html"]}, {"institutionName": "SEI", "institutionAdditionalName": ["Safety Equipment Institute"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.seinet.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.seinet.org/contactsei.htm"]}] [{"policyName": "ASTM Policies", "policyURL": "https://www.astm.org/prpolicy.html"}, {"policyName": "Intellectual Property Policy", "policyURL": "https://www.astm.org/Itpolicy.pdf"}, {"policyName": "Linking Policy", "policyURL": "https://www.astm.org/IMAGES03/link_policy.pdf"}, {"policyName": "Privacy Policy", "policyURL": "https://www.astm.org/IMAGES03/prpolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.astm.org/COPYRIGHT/"}] closed [] ["unknown"] yes {} ["DOI"] [] unknown yes [] [] {"syndication": "https://www.astm.org/RSS/index.html", "syndicationType": "RSS"} 2013-06-20 2021-09-03 +r3d100010410 BGS GeoScenic eng [{"additionalName": "British Geological Survey GeoScenic", "additionalNameLanguage": "eng"}] http://geoscenic.bgs.ac.uk/asset-bank/action/viewHome ["FAIRsharing_doi:10.25504/FAIRsharing.86302v"] ["http://www.bgs.ac.uk/enquiries/home.html", "http://www.bgs.ac.uk/photography/home.html"] GeoScenic offers access to images from the vast collections of geological photographs in BGS. eng ["disciplinary", "institutional"] {"size": "more than 100.000 images dating back to 1891", "updatedp": "2018-11-16"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.bgs.ac.uk/photography/home.html [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Geological Photographs"] [{"institutionName": "British Geological Survey", "institutionAdditionalName": ["BGS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bgs.ac.uk/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bgs.ac.uk/enquiries/home.html"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "Intellectual Property (IP)", "policyURL": "http://www.bgs.ac.uk/about/copyright/terms_of_use.html"}, {"policyName": "NERC Policy on Licensing and Charging for Information NERC Policy on Licensing and Charging for Information", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/nerc-licensing-charging-policy/"}, {"policyName": "Terms and Conditions of use", "policyURL": "http://geoscenic.bgs.ac.uk/asset-bank/action/viewConditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://geoscenic.bgs.ac.uk/asset-bank/action/viewConditions"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bgs.ac.uk/about/copyright/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nerc.ukri.org/research/sites/data/policy/"}] closed [] ["unknown"] no {} [] http://www.bgs.ac.uk/OpenGeoscience/ [] unknown unknown [] [] {} 2013-06-20 2021-09-03 +r3d100010411 Comprehensive R Archive Network eng [{"additionalName": "CRAN", "additionalNameLanguage": "eng"}] https://cran.r-project.org/ ["RRID:SCR_003005", "RRID:nif-0000-30270", "biodbcore-001356"] ["cran-sysadmin@r-project.org", "cran@r-project.org"] CRAN is a network of ftp and web servers around the world that store identical, up-to-date, versions of code and documentation for R. R is ‘GNU S’, a freely available language and environment for statistical computing and graphics which provides a wide variety of statistical and graphical techniques: linear and nonlinear modelling, statistical tests, time series analysis, classification, clustering, etc. Please consult the R project homepage for further information. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://cran.r-project.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["R", "code", "graphics", "network", "programming language", "software system", "statistical computing"] [{"institutionName": "Wirtschaftsuniversit\u00e4t Wien, Institut f\u00fcr Statistik und Mathematik", "institutionAdditionalName": ["Vienna University of Economics and Business, Institute for Statistics and Mathematics"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.wu.ac.at/en/statmath/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["https://www.wu.ac.at/en/press/press-releases/press-releases-details/detail/r-eine-der-bedeutendsten-programmiersprachen-weltweit-kopie-1/", "https://www.wu.ac.at/en/the-university/about-wu/impressum/"]}] [{"policyName": "CRAN Repository Policy", "policyURL": "http://cran.r-project.org/web/packages/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://cran.r-project.org/web/packages/policies.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://svn.r-project.org/R/trunk/share/licenses/license.db"}] restricted [{"dataUploadLicenseName": "Submission", "dataUploadLicenseURL": "https://cran.r-project.org/web/packages/policies.html#Submission"}] ["other"] yes {"api": "ftp://ftp.stat.math.ethz.ch/Software/", "apiType": "FTP"} ["none"] https://cran.r-project.org/web/packages/policies.html [] unknown unknown [] [] {} CRAN is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. Data is available under GNU license. Mirror sites can be found here https://cran.r-project.org/mirrors.html . 2013-06-20 2021-09-02 +r3d100010412 EarthChem Library eng [{"additionalName": "EarthChem", "additionalNameLanguage": "eng"}] http://earthchem.org/library ["FAIRsharing_doi:10.25504/FAIRsharing.ne5dn7", "RRID:SCR_002207", "RRID:nlx_154721"] ["info@earthchem.org"] >>>!!!<<< duplicate >>>!!!<<< see https://www.re3data.org/repository/r3d100011538 eng ["disciplinary"] {"size": "644 records", "updatedp": "2020-05-13"} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthchem.org/overview [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earth sciences", "geochemistry", "geochronology", "geospatial data", "mineralogy", "petrology"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@earthchem.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "IEDA Data Publication Policy", "policyURL": "https://www.iedadata.org/help/data-publication/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [{"dataUploadLicenseName": "Data Submission guidelines", "dataUploadLicenseURL": "http://www.earthchem.org/library/help/guidelines"}] ["unknown"] yes {"api": "https://www.iedadata.org/help/web-services/#rest", "apiType": "REST"} ["DOI"] http://www.earthchem.org/data/cite [] yes unknown [] [] {} is covered by Elsevier. Earthchem provides access to data systems and services for geochemical, geochronological, and petrological data, developed and maintained by EarthChem, including the EarthChem Library, the EarthChem Portal, PetDB, NAVDAT, SedDB, and Geochron 2013-06-20 2021-09-02 +r3d100010413 Ontology Lookup Service eng [{"additionalName": "EMBL-EBI OLS", "additionalNameLanguage": "eng"}, {"additionalName": "OLS", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/ols/index ["FAIRsharing_doi:10.25504/FAIRsharing.Mkl9RR", "OMICS_02275", "RRID:SCR_006596", "RRID:nif-0000-10390"] ["ols-support@ebi.ac.uk"] The Ontology Lookup Service (OLS) is a repository for biomedical ontologies that aims to provide a single point of access to the latest ontology versions. The user can browse the ontologies through the website as well as programmatically via the OLS API. The OLS provides a web service interface to query multiple ontologies from a single location with a unified output format.The OLS can integrate any ontology available in the Open Biomedical Ontology (OBO) format. The OLS is an open source project hosted on Google Code. eng ["disciplinary"] {"size": "217 ontologies;5.529.907 terms; 19.500 properties; 479.569 individuals", "updatedp": "2018-11-16"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/ols/roadmap.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biomedicine"] [{"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/participants/portal/desktop/en/support/research_enquiry_service.html"]}, {"institutionName": "European Molecular Biology Laboratory - European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}] [{"policyName": "Documentation", "policyURL": "https://www.ebi.ac.uk/ols/docs/website"}, {"policyName": "HORIZON 2020 Open Access to research data", "policyURL": "http://ec.europa.eu/research/participants/docs/h2020-funding-guide/cross-cutting-issues/open-access-dissemination_en.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://github.com/EBISPOT/OLS/blob/master/LICENSE"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] open [{"dataUploadLicenseName": "Apache License 2.0", "dataUploadLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] ["other"] yes {"api": "https://www.ebi.ac.uk/ols/docs/api", "apiType": "REST"} ["none"] https://www.ebi.ac.uk/ols/docs/about [] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} OLS 3 is a complete re-write of the code and includes some significant changes to how we index and serve up ontology data. 2013-06-21 2021-09-03 +r3d100010414 Molecular INTeraction Database eng [{"additionalName": "MINT", "additionalNameLanguage": "eng"}] https://mint.bio.uniroma2.it/ ["FAIRsharing_doi:10.25504/FAIRsharing.2bdvmk", "OMICS_02928", "RRID:SCR_001523", "RRID:nlx_152821"] ["https://mint.bio.uniroma2.it/index.php/contacts/"] !!! Starting September 2013, MINT uses the IntAct database infrastructure to limit the duplication of efforts and to optimise future software development. Data manually curated by the MINT curators can now be accessed from the IntAct homepage at the EBI. Data maintenance and release, MINT PSICQUIC and IMEx services are under the responsibility of the IntAct team, while curation effort will be carried by both groups. The MINT development team now focuses on two new developments: mentha that integrates protein interaction information curated by IMEx databases and SIGNOR a database of logic relationships between human proteins. !!! MINT is a public repository for molecular interactions reported in peer-reviewed journals.IT is a collection of molecular interaction databases that can be used to search for, analyze and graphically display molecular interaction networks and pathways from a wide variety of species. MINT is comprised of separate database components. HomoMINT, is an inferred human protein interatction database. Domino, is database of domain peptide interactions. A new component has been added called VirusMINT that explores the interactions of viral proteins with human proteins. eng ["disciplinary"] {"size": "124.465 interactions; 25.322 proteins; 646 organisms", "updatedp": "2018-11-16"} 2006-01-01 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["genetic interaction", "human proteins", "molecular interaction", "peptide interaction", "protein interacting partners", "protein interaction", "protein-protein interaction", "viral proteins"] [{"institutionName": "Italian Cancer Research Association", "institutionAdditionalName": ["Associazione Italiana per la Ricerca sul Cancro"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.airc.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.airc.it/associazione/contatti/"]}, {"institutionName": "University of Rome \"Tor Vergata\"", "institutionAdditionalName": ["Universit\u00e0 degli Studi di Roma \"Tor Vergata\""], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://web.uniroma2.it/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["relazioni.pubblico@uniroma2.it"]}] [{"policyName": "IMEx agreement", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [] ["unknown"] {} ["none"] https://mint.bio.uniroma2.it/ [] yes yes [] [] {} is covered by Elsevier. MINT supports the HUPO Proteomics Standards Iniative HUPO-PSI Standards 2013-06-26 2021-09-02 +r3d100010415 NCBI Taxonomy eng [{"additionalName": "Entrez Taxonomy", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/taxonomy ["FAIRsharing_doi:10.25504/FAIRsharing.fj07xj", "RRID:SCR_003256", "RRID:nif-0000-03179"] ["https://www.ncbi.nlm.nih.gov/home/about/contact.shtml"] The NCBI Taxonomy database is a curated set of names and classifications for all of the organisms that are represented in GenBank. The EMBL and DDBJ databases, as well as GenBank, now use the NCBI Taxonomy as the standard classification for nucleotide sequences. Taxonomy Contains the names and phylogenetic lineages of more than 160,000 organisms that have molecular data in the NCBI databases. New taxa are added to the Taxonomy database as data are deposited for them. When new sequences are submitted to GenBank, the submission is checked for new organism names, which are then classified and added to the Taxonomy database. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/taxonomy [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["archaea", "bacteria", "biological classification", "biological nomenclature", "cladistics", "eukaryota", "genomes", "nucleotide sequences", "phylogenetics", "taxa", "viroids", "viruses"] [{"institutionName": "National Center for Biotechnology Informationa", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ncbi.nlm.nih.gov"]}, {"institutionName": "National Institutes of Health, National Library of Medicine", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/?deptID=28054&from=https://www.nlm.nih.gov/"]}, {"institutionName": "United States Department of Health & Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}, {"policyName": "U.S. Copyright Office Fair Use Index", "policyURL": "https://www.copyright.gov/fls/fl102.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/books/about/copyright/"}] restricted [{"dataUploadLicenseName": "NCBI taxonomy handbook", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/books/NBK21100/"}, {"dataUploadLicenseName": "Submission", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/guide/howto/submit-sequence-data/"}] ["other"] {"api": "ftp://ftp.ncbi.nlm.nih.gov/pub/taxonomy/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} The NCBI Taxonomy database is a curated set of names and classifications for all of the organisms that are represented in GenBank. When new sequences are submitted to GenBank, the submission is checked for new organism names, which are then classified and added to the Taxonomy database 2013-06-25 2021-09-03 +r3d100010416 Online Mendelian Inheritance in Man eng [{"additionalName": "OMIM", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/omim ["FAIRsharing_doi:10.25504/FAIRsharing.9qkaz9", "RRID:OMICS_00278", "RRID:SCR_006437", "RRID:nif-0000-03216"] ["https://omim.org/contact", "pubmedcentral@ncbi.nlm.nih.gov"] OMIM is a comprehensive, authoritative compendium of human genes and genetic phenotypes that is freely available and updated daily. OMIM is authored and edited at the McKusick-Nathans Institute of Genetic Medicine, Johns Hopkins University School of Medicine, under the direction of Dr. Ada Hamosh. Its official home is omim.org. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1985 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://omim.org/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["enetic loci", "genetic medicine", "genetic phenotypes", "gold standard", "human genes", "mutation", "ontology", "phenotype"] [{"institutionName": "Johns Hopkins School of Medicine, McKusick-Nathans Institute of Genetic Medicine", "institutionAdditionalName": ["UCSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://igm.jhmi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://omim.org/contact"]}, {"institutionName": "Maryland Department of Health and Mental Hygiene", "institutionAdditionalName": ["DHMH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://health.maryland.gov/pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Biotechnology Information, U.S. National Library of Medicine", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact.shtml"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California Santa Cruz Genome Bioinformatics", "institutionAdditionalName": ["UCSC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://genome.ucsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}, {"policyName": "User Agreement", "policyURL": "http://omim.org/help/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://omim.org/help/copyright"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://omim.org/about"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://omim.org/help/copyright"}] closed [] ["unknown"] yes {"api": "https://omim.org/help/api", "apiType": "other"} ["none"] https://omim.org/help/faq#1_8 [] unknown yes [] [] {} A mirror site is available at https://mirror.omim.org/ 2013-06-26 2021-09-03 +r3d100010417 Rat Genome Database eng [{"additionalName": "RGD", "additionalNameLanguage": "eng"}] https://rgd.mcw.edu ["FAIRsharing_doi:10.25504/FAIRsharing.pfg82t", "RRID:OMICS_01660", "RRID:SCR_006444", "RRID:nif-0000-00134"] ["RGD.Data@mcw.edu"] The Rat Genome Database is a collaborative effort between leading research institutions involved in rat genetic and genomic research. Its goal, as stated in RFA: HL-99-013 is the establishment of a Rat Genome Database, to collect, consolidate, and integrate data generated from ongoing rat genetic and genomic research efforts and make these data widely available to the scientific community. A secondary, but critical goal is to provide curation of mapped positions for quantitative trait loci, known mutations and other phenotypic data. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://rgd.mcw.edu/wg/about-us [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["disease", "genomics", "pathway", "phenotype", "rat genetics"] [{"institutionName": "Medical College of Wisconsin, Human and Molecular Genetics Center, Biomedical Informatics", "institutionAdditionalName": ["HMGC, Biomedical Informatics"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mcw.edu/Human-and-Molecular-Genetics-Center-HMGC/Biomedical-Informatics.htm", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": ["mrdwinel@mcw.edu"]}, {"institutionName": "National Institutes of Health, National Heart Lung and Blood Institute", "institutionAdditionalName": ["NHLBI", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Grants Policy Statement", "policyURL": "https://grants.nih.gov/policy/nihgps/index.htm"}, {"policyName": "Rat Nomenclature Guidelines", "policyURL": "https://rgd.mcw.edu/nomen/nomen.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://rgd.mcw.edu/wg/grants"}] restricted [] ["unknown"] {"api": "ftp://ftp.rgd.mcw.edu/pub/", "apiType": "FTP"} ["none"] https://rgd.mcw.edu/wg/citing-rgd [] unknown unknown [] [] {} is covered by Elsevier. 2013-06-26 2021-09-03 +r3d100010418 RunMyCode eng [] http://www.runmycode.org/home ["FAIRsharing_doi:10.25504/FAIRsharing.f7p410", "ISSN 2427-3775", "RRID:SCR_014011"] ["http://www.runmycode.org/contact"] RunMyCode is a novel cloud-based platform that enables scientists to openly share the code and data that underlie their research publications. The web service only requires a web browser as all calculations are done on a dedicated cloud computer. Once the results are ready, they are automatically displayed to the user. eng ["other"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.runmycode.org/our-goals.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["companion websites", "storage service resource"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sloan.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HEC Paris", "institutionAdditionalName": ["\u00c9cole des Hautes Etudes Commerciales"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hec.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RMC Lab", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.runmycode.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.runmycode.org/contact"]}, {"institutionName": "TGIR Huma-Num", "institutionAdditionalName": ["TGIR des humanit\u00e9s num\u00e9riques", "Tr\u00e8s Grande Infrastructure de Recherche Dedi\u00e9e aux humanit\u00e9s num\u00e9riques"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The National Center for Scientific Research", "institutionAdditionalName": ["CNRS", "Centre National de la Recherche Scientifique"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 d'Orl\u00e9ans", "institutionAdditionalName": ["University of Orleans"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.univ-orleans.fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.runmycode.org/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.runmycode.org/terms-of-use.html"}] restricted [{"dataUploadLicenseName": "License", "dataUploadLicenseURL": "http://www.runmycode.org/terms-of-use.html"}] ["unknown"] yes {} ["none"] [] yes unknown [] [] {} is covered by Elsevier. 2013-06-26 2021-09-03 +r3d100010419 Saccharomyces Genome Database eng [{"additionalName": "SGD", "additionalNameLanguage": "eng"}] https://www.yeastgenome.org ["FAIRsharing_doi:10.25504/FAIRsharing.pzvw40", "RRID:OMICS_01661", "RRID:SCR_004694", "RRID:nif-0000-03456"] ["sgd-helpdesk@lists.stanford.edu"] The Saccharomyces Genome Database (SGD) provides comprehensive integrated biological information for the budding yeast Saccharomyces cerevisiae along with search and analysis tools to explore these data, enabling the discovery of functional relationships between sequence and gene products in fungi and higher organisms. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.yeastgenome.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["genetics", "pathway", "predicted sequence", "protein structure", "yeast genome"] [{"institutionName": "Gene Ontology Consortium", "institutionAdditionalName": ["GOC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.geneontology.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://help.geneontology.org/"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NIH, NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University School of Medicine, Genetic Department, School of Medicine, Stanford Center for Genomics and Personalized Medicine", "institutionAdditionalName": ["Stanford Center for Genomics and Personalized Medicine"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://med.stanford.edu/scgpm.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://med.stanford.edu/scgpm/contact.html"]}, {"institutionName": "University of Cambridge, InterMine", "institutionAdditionalName": ["https://intermine.readthedocs.io/en/latest/about/contact-us/"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://intermine.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.stanford.edu/site/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.stanford.edu/site/terms.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.stanford.edu/site/terms.html"}] restricted [] ["other"] {"api": "https://intermine.readthedocs.org/en/latest/web-services/#api-and-client-libraries", "apiType": "REST"} ["other"] https://www.yeastgenome.org/about/how-to-cite-sgd [] unknown yes [] [] {} is covered by Elsevier. 2013-06-26 2021-09-03 +r3d100010420 System for Earth Sample Registration eng [{"additionalName": "SESAR", "additionalNameLanguage": "eng"}] http://www.geosamples.org ["FAIRsharing_doi:10.25504/FAIRsharing.ys5ta3", "RRID:SCR_002222", "RRID:nlx_154747"] ["info@geosamples.org"] SESAR, the System for Earth Sample Registration, is a global registry for specimens (rocks, sediments, minerals, fossils, fluids, gas) and related sampling features from our natural environment. SESAR's objective is to overcome the problem of ambiguous sample naming in the Earth Sciences. SESAR maintains a database of sample records that are contributed by its users. Each sample that is registered with SESAR is assigned an International Geo Sample Number IGSN to ensure its global unique identification. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geosamples.org/sesarusers [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cores", "dediment", "dredges", "drill holes", "drill wells", "gas", "macro-biology samples", "micro-biology samples", "mineral", "rock", "seawater", "soil pedons"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ldeo.columbia.edu/research/marine-geology-geophysics/sesar"]}, {"institutionName": "EarthChem Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earthchem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/support/contact"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IDEA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/", "info@geosamples.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "SESAR Operational Principles", "policyURL": "http://www.geosamples.org/principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] ["unknown"] yes {"api": "https://www.iedadata.org/services/webservices#rest", "apiType": "REST"} ["other"] https://www.iedadata.org/publication [] unknown unknown [] [] {} is covered by Elsevier. SESAR operates the registry that distributes the International Geo Sample Number IGSN. SESAR catalogs and preserves sample metadata profiles, and provides access to the sample catalog via the Global Sample Search. SESAR is a project of the EarthChem Program and part of IEDA (Interdisciplinary Earth Data Alliance), a national data facility funded by the US National Science Foundation. 2013-06-26 2021-09-03 +r3d100010421 The Zebrafish Information Network eng [{"additionalName": "The zebrafish model organism database (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "ZFIN", "additionalNameLanguage": "eng"}] http://zfin.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.ybxnhg", "OMICS_01666", "RRID:SCR_002560", "nif-0000-21427"] ["https://wiki.zfin.org/display/general/ZFIN+Contact+Information", "zfinadmn@zfin.org"] ZFIN serves as the zebrafish model organism database. The long term goals for ZFIN are a) to be the community database resource for the laboratory use of zebrafish, b) to develop and support integrated zebrafish genetic, genomic and developmental information, c) to maintain the definitive reference data sets of zebrafish research information, d) to link this information extensively to corresponding data in other model organism and human databases, e) to facilitate the use of zebrafish as a model for human biology and f) to serve the needs of the research community. ZIRC is the Zebrafish International Resource Center, an independent NIH-funded facility providing a wide range of zebrafish lines, probes and health services. ZFIN works closely with ZIRC to connect our genetic data with available probes and fish lines. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://wiki.zfin.org/display/general/ZFIN+db+information [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["BLAST", "freshwater fish", "gene expression", "genetics", "genome sequence", "genomics", "genotype", "marine biology", "molecular neuroanatomy", "phenotypes", "vertebrates"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oregon", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://uoregon.edu/", "institutionIdentifier": ["ROR:0293rh119"], "responsibilityStartDate": "1994", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Zebrafish International Resource Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://zebrafish.org/home/guide.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://zebrafish.org/home/contact.php", "zirc@zebrafish.org"]}] [{"policyName": "Warranty and liability disclaimer, ownership, and limits on use", "policyURL": "http://zfin.org/warranty.html"}, {"policyName": "ZIRC Terms of Use", "policyURL": "http://zebrafish.org/documents/terms_of_use.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://zfin.org/warranty.html"}] restricted [] ["unknown"] {} ["other"] https://wiki.zfin.org/display/general/ZFIN+db+information [] unknown yes [] [] {"syndication": "https://wiki.zfin.org/createrssfeed.action?types=blogpost&spaces=news&title=Zebrafish+News&labelString%3D&excludedSpaceKeys%3D&sort=modified&maxResults=10&timeSpan=120&showContent=true", "syndicationType": "RSS"} Zebrafisch FAQs: http://www.uoneuro.uoregon.edu/k12/FAQs.html . - is covered by Elsevier. 2013-06-27 2021-09-03 +r3d100010422 ThermoML eng [{"additionalName": "Representation of Published Experimental Data", "additionalNameLanguage": "eng"}] https://trc.nist.gov/ThermoML.html ["FAIRsharing_doi:10.25504/FAIRsharing.7b0fc3"] ["kenneth.kroenlein@nist.gov"] ThermoML presents published experimental data extracted from 5 major journals in the field and links to ThermoML files, which represent experimental thermophysical and thermochemical property data reported in the corresponding articles. At the same time ThermoML is an XML-Based IUPAC Standard for Storage and Exchange of Experimental Thermophysical and Thermochemical Property Data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "40301 Chemical and Thermal Process Engineering", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "40402 Technical Thermodynamics", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "40501 Metallurgical and Thermal Processes, Thermomechanical Treatment of Materials", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "40601 Thermodynamics and Kinetics of Materials", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://trc.nist.gov/ThermoML_Opener.html#Purpose [{"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["fluids", "thermochemistry", "thermophysics"] [{"institutionName": "International Union of Pure and Applied Chemistry", "institutionAdditionalName": ["IUPAC"], "institutionCountry": "AAA", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.iupac.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://iupac.org/contact/"]}, {"institutionName": "National Institute of Standards and Technology, Applied Chemicals and Materials Division, Thermodynamics Research Center", "institutionAdditionalName": ["NIST TRC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://trc.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kenneth.kroenlein@nist.gov"]}] [{"policyName": "Environmental Policy Statement", "policyURL": "https://www.nist.gov/public_affairs/envpolicy.cfm"}, {"policyName": "Privacy policy", "policyURL": "https://www.nist.gov/public_affairs/privacy.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nist.gov/public_affairs/disclaimer.cfm"}] closed [] ["unknown"] yes {"api": "https://trc.nist.gov/ThermoML_Opener.html#Use", "apiType": "other"} ["none"] [] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "https://trc.nist.gov/RSS/", "syndicationType": "RSS"} is covered by Elsevier. ThermoML is an XML-based IUPAC standard format for data storage and exchange of thermodynamic property data. ThermoML is currently partnering with five major journals to encourage authors to submit their data for validation as part of the publication process. These journals are: Journal of Chemical and Engineering Data (JCED), the Journal of Chemical Thermodynamics, Fluid Phase Equilibria, Thermochimica Acta, and the International Journal of Thermophysics. The ThermoML files corresponding to articles in the journals are available here with permission of the journal publishers. To further this cooperation tools as part of the software infrastructure support the ThermoML standard. 2013-06-28 2021-09-03 +r3d100010423 Woods Hole Open Access Server eng [{"additionalName": "WHOAS", "additionalNameLanguage": "eng"}, {"additionalName": "a repository for the Woods Hole scientific community", "additionalNameLanguage": "eng"}] https://darchive.mblwhoilibrary.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.r3fzzc"] ["https://darchive.mblwhoilibrary.org/contact"] The Woods Hole Open Access Server, WHOAS, is an institutional repository that captures, stores, preserves, and redistributes the intellectual output of the Woods Hole scientific community in digital form. WHOAS is managed by the MBLWHOI Library as a service to the Woods Hole scientific community eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.mblwhoilibrary.org/services/whoas-repository-services [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["climate change", "coastal geology", "ecosystems", "marine biology", "marine geology", "marine policy", "seafloor mapping", "sediment transport", "tectonics"] [{"institutionName": "Woods Hole Oceanographic Institution, Marine Biological Laboratory, Library", "institutionAdditionalName": ["MBLWHOI Library"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.mblwhoilibrary.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://darchive.mblwhoilibrary.org/contact", "whoas@whoi.edu"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/08/Woods-Hole-Open-Access-Server-WHOAS.pdf"}, {"policyName": "WHOAS Repository Services", "policyURL": "http://www.mblwhoilibrary.org/services/whoas-repository-services"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/bsd-license.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.mblwhoilibrary.org/services/copyright-management"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.mblwhoilibrary.org/services/whoas-repository-services"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.mblwhoilibrary.org/services/whoi-open-access-policy"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/"}, {"dataUploadLicenseName": "other", "dataUploadLicenseURL": "http://www.mblwhoilibrary.org/sites/default/files/WHOAS_Submission_Instructions_3.pdf"}] ["DSpace"] yes {"api": "https://darchive.mblwhoilibrary.org/oai/", "apiType": "OAI-PMH"} ["DOI", "hdl"] http://www.mblwhoilibrary.org/sites/default/files/WHOAS%20How%20to%20Cite%20Items_1.pdf [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {"syndication": "https://darchive.mblwhoilibrary.org/feed/atom_1.0/site", "syndicationType": "ATOM"} Woods Hole Open Access Server is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. WHOAS uses altmetric.com metrics. 2013-07-01 2021-09-03 +r3d100010424 WormBase eng [{"additionalName": "facilitating insights into nematode biology", "additionalNameLanguage": "eng"}] https://www.wormbase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.zx1td8", "OMICS_01664", "RRID:SCR_003098", "RRID:nif-0000-00053"] ["https://www.wormbase.org/tools/support?url=/"] Launched in 2000, WormBase is an international consortium of biologists and computer scientists dedicated to providing the research community with accurate, current, accessible information concerning the genetics, genomics and biology of C. elegans and some related nematodes. In addition to their curation work, all sites have ongoing programs in bioinformatics research to develop the next generations of WormBase structure, content and accessibility eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.wormbase.org/about#0--10 [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["c elegans", "gene mapping", "gene structures", "genome sequences", "genomics", "nematoda", "nucleotides", "orthology assignment", "roundworm", "worm"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NIHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10005049/questions-and-feedback/"]}, {"institutionName": "WormBase consortium", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wormbase.org/about#0--10", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["caltech@wormbase.org", "hinxton@wormbase.org", "https://wormbase.org/tools/support?url=/about/userguide", "oicr@wormbase.org", "washu@wormbase.org"]}] [{"policyName": "Policies", "policyURL": "https://www.wormbase.org/about/policies#01--10"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wormbase.org/about/policies#2--10"}] restricted [] ["DSpace"] yes {"api": "ftp://ftp.wormbase.org/pub/wormbase/", "apiType": "FTP"} ["none"] https://www.wormbase.org/about/citing_wormbase#012--10 [] unknown yes [] [] {"syndication": "https://feeds.feedburner.com/wormbase", "syndicationType": "RSS"} WormBase is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. WormBase is one of the organizations participating in the Generic Model Organism Database (GMOD) project. Wormbase software ist hosted at GitHub 2013-07-01 2021-09-03 +r3d100010425 Forschungsdatenzentrum der Bundesagentur für Arbeit im Institut für Arbeitsmarkt und Berufsforschung deu [{"additionalName": "Forschungsdatenzentrum der BA im IAB", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Centre (FDZ) of the German Federal Employment Agency (BA) at the Institute for Employment Research (IAB)", "additionalNameLanguage": "eng"}] https://fdz.iab.de/ [] ["iab.fdz@iab.de"] The Research Data Centre (FDZ) of the German Federal Employment Agency (BA) at the Institute for Employment Research (IAB) is intended mainly to facilitate access to BA and IAB micro data for non-commercial empirical research using standardised and transparent access rules. The FDZ mediates between data producers and external users. We also control for compliance with data protection regulations. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://fdz.iab.de/en/FDZ_Scope_of_Services.aspx [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["employment", "social security"] [{"institutionName": "Institut f\u00fcr Arbeitsmarkt- und Berufsforschung der Bundesagentur f\u00fcr Arbeit, Forschungsdatenzentrum", "institutionAdditionalName": ["IAB", "Institute for Employment Research - The Research Intitute of the Federal Employment Agnency"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://fdz.iab.de/en.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["iab.fdz@iab.de"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "http://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://fdz.iab.de/en/FDZ_Imprint.aspx#Disclaimer%20and%20copyright"}] closed [] ["unknown"] {} ["DOI"] http://doku.iab.de/fdz/access/Zitierweisen_e.PDF [] unknown unknown ["RatSWD"] [] {} FDZ BA is a member of the RatSWD - research data - infrastructure; More information about access to data (on-site, remote, data usage): https://fdz.iab.de/en/FDZ_Data_Access.aspx 2013-07-03 2019-01-11 +r3d100010426 Forschungsdatenzentren der Statistischen Ämter des Bundes und der Länder deu [{"additionalName": "FDZ Bund", "additionalNameLanguage": "deu"}, {"additionalName": "FDZ Land", "additionalNameLanguage": "deu"}, {"additionalName": "FDZ L\u00e4nder", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum der Statistischen \u00c4mter der L\u00e4nder", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum des Statistischen Bundesamts", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centres of the Federal Statistical Offices and of the Statistical Offices of the Federal States", "additionalNameLanguage": "eng"}] https://www.forschungsdatenzentrum.de/en [] ["forschungsdatenzentrum@destatis.de", "forschungsdatenzentrum@it.nrw.de", "https://www.forschungsdatenzentrum.de/en/contact"] The basic goal of the research data centres of the statistical offices of the Federation and the Länder is to improve the accessibility and usability of microdata of official statistics by setting up various ways of using the data. Research data centres of the Federal Statistical Office (FDZ-Bund) and the statistical offices of the Länder (FDZ-Länder) provide collectively access to selected microdata of official statistics to researchers for scientific purposes. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2001-09-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.forschungsdatenzentrum.de/en/about-rdc [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agricultural statistics", "business statistics", "census data", "empirical science", "employment topics", "energy statistics", "environmental statistics", "microdata", "pension policy", "social accounting", "social security system", "tax statistics"] [{"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Data Centres of the Statistical Offices of the Federal States", "institutionAdditionalName": ["FDZ - L\u00e4nder", "Forschungsdatenzentren der Statistischen \u00c4mter der L\u00e4nder"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.forschungsdatenzentrum.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["forschungsdatenzentrum@it.nrw.de", "zentrale-online-redaktion@forschungsdatenzentrum.de"]}, {"institutionName": "Research data centre of the Federal Statistical Office", "institutionAdditionalName": ["FDZ - Bund", "FDZ destatis", "Statistisches Bundesamt, Forschungsdatenzentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.destatis.de/DE/Home/_inhalt.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["forschungsdatenzentrum@destatis.de", "https://www.destatis.de/DE/Service/Datenbanken/_inhalt.html#sprg242762"]}] [{"policyName": "Data Access", "policyURL": "https://www.forschungsdatenzentrum.de/en/access"}, {"policyName": "RatSWD and Research Data Infrastructure Status Quo and Quality Management", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_Output1.6_QualityMgmt.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.forschungsdatenzentrum.de/en/imprint"}] closed [] ["unknown"] {} ["DOI"] https://www.forschungsdatenzentrum.de/en/citation-doi [] unknown yes ["RatSWD"] [] {} Research Data Centres of the Federal Statistical Office and the statistical offices of the Federal States is a member of the RatSWD research data infrastructure; some pages inform only: The English-language information supplied on the internet is specifically aimed at foreign scientists. A complete documentation of the data and services offered is provided on the German website. 2013-07-04 2021-08-03 +r3d100010427 Forschungsdatenzentrum am IQB eng [{"additionalName": "FDZ am IQB", "additionalNameLanguage": "deu"}, {"additionalName": "FDZ at IQB", "additionalNameLanguage": "eng"}, {"additionalName": "Forschungsdatenzentrum am Institut zur Qualit\u00e4tsentwicklung", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre at the Institute for Educational Quality Improvement", "additionalNameLanguage": "eng"}] https://www.iqb.hu-berlin.de/fdz [] ["fdz@iqb.hu-berlin.de"] The Research Data Centre (Forschungsdatenzentrum, FDZ) at the Institute for Educational Quality Improvement (Institut zur Qualitätsentwicklung im Bildungswesen, IQB) archives and documents data sets resulting from national and international assessment studies (such as DESI, PIRLS, PISA, IQB-Bildungstrends). Moreover, the FDZ makes these data sets available for re- and secondary analysis. Members of the scientific community can apply for access to the data sets archived at the FDZ. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.iqb.hu-berlin.de/fdz [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ASCOT", "Attention is doing school", "BELLA", "BIKS", "BiLieF", "BiSS-EILe", "BiSpra", "BilWiss", "CoBALIT", "Competence Development", "CosMed", "Cross-Sectional Studies", "DESI", "Data Workshops", "DomPL-IK", "ELEMENT", "Educational Assessment", "Educational Science Knowledge", "Educational System", "FAIR", "FUnDuS", "Germany", "ICILS", "IGLU", "IQB-Bildungstrend", "IQB-Landervergleich", "International Comparison", "International Student Assessment", "KAT-HS", "Ko-NaMa", "KuL", "LABEL", "LISA", "LISA 6", "Large-Scale Assessment Studies", "Longitudinal Studies", "MARKUS", "MenZa", "MoMa", "National Assessment Study", "National Student Assessment", "PHONO", "PIRLS", "PISA", "ProFeL", "ProLeLe", "ProwiN", "QuaSUM", "SEIKA", "SEIKA-NRW", "ScaRf", "School Achievement", "StEG", "Stereotype Threat", "Student Achievement", "Systemdenken", "TEMA", "TIMSS", "proPHI"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "2006", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/en", "institutionIdentifier": ["ROR:01hcx6992"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Institut zur Qualit\u00e4tsentwicklung im Bildungswesen", "institutionAdditionalName": ["IQB", "Institute for Educational Quality Improvement"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iqb.hu-berlin.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fdz@iqb.hu-berlin.de"]}, {"institutionName": "Zentrum f\u00fcr internationale Bildungsvergleichsstudien", "institutionAdditionalName": ["Centre for International Student Assessment", "ZIB"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://zib.education/home.html", "institutionIdentifier": ["ROR:02eva5865"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Application process and guidelines: Campus Files (CFs)", "policyURL": "https://www.iqb.hu-berlin.de/fdz/Datenzugang/CF-Antrag"}, {"policyName": "Application process and guidelines: Scientific Use Files (SUFs)", "policyURL": "https://www.iqb.hu-berlin.de/fdz/Datenzugang/SUF-Antrag"}, {"policyName": "Collection Policy", "policyURL": "https://www.iqb.hu-berlin.de/fdz/CollectionPolicy.pdf"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/06/UCD_Digital_Library.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iqb.hu-berlin.de/fdz/FDZNutzungsordnu.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.iqb.hu-berlin.de/fdz/Muster_FDZDatenn.pdf"}] restricted [{"dataUploadLicenseName": "Rules of procedure", "dataUploadLicenseURL": "https://www.iqb.hu-berlin.de/fdz/20190131_FDZ_Ver.pdf"}] ["other"] yes {} ["DOI"] [] yes yes ["other", "RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Research Data Centre at IQB is covered by Clarivate Data Citation Index. Work at the Research Data Centre at IQB is carried out in line with the criteria for research data centres established by the German Council for Social and Economic Data (RatSWD). The project is part of the Centre for International Student Assessment (ZIB) funded by the Federal Ministry of Education and Research (BMBF) and The Standing Conference of the Ministers of Education and Cultural Affairs of the Länder in the Federal Republic of Germany. 2013-07-04 2021-10-04 +r3d100010429 Forschungsdatenzentrum des Deutschen Zentrum für Altersfragen deu [{"additionalName": "FDZ-DZA", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre of the DZA", "additionalNameLanguage": "eng"}] https://www.dza.de/en/research/fdz [] ["heribert.engstler@dza.de", "https://www.dza.de/en/research/translate-to-english-forschungsdatenzentrum/contact-and-support"] The FDZ-DZA (Forschungsdatenzentrum DZA) is a facility of the German Centre of Gerontology (Deutsches Zentrum für Altersfragen, DZA) and has received accreditation as research data center DZA by the German Data Forum (RatSWD). Its main task is to make data of the German Ageing Survey DEAS and the German Survey on Volunteering (FWS) accessible to researchers by providing user-friendly Scientific Use Files (SUF), documentation of the contents and instruments as well support for scholars using the data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.dza.de/en/about-us/about-the-dza [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Deutscher Alterssurvey - DEAS", "Deutscher Freiwilligensurvey - FWS", "PREFER I-Studie - Personal Resources of Elderly People with Multimorbidity: Fortification of Effective Health Behaviour", "ageing", "behavioural aging research", "census", "economy of old age", "family", "gerontology", "health", "microdata", "retirement", "social care", "social relations", "social research", "societal participation", "volunteering", "work"] [{"institutionName": "Arbeitsgemeinschaft der Ressortforschungseinrichtungen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ressortforschung.de/de/home/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry for Family Affairs, Senior Citizens, Women and Youth", "institutionAdditionalName": ["BMFSFJ", "Bundesministerium f\u00fcr Familie, Senioren, Frauen und Jugend"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmfsfj.de/", "institutionIdentifier": ["ROR:056ja1h98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Centre of Gerontology", "institutionAdditionalName": ["DZA", "Deutsches Zentrum f\u00fcr Altersfragen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dza.de/en/", "institutionIdentifier": ["ROR:00we5be91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fdz@dza.de", "https://www.dza.de/en/contact-information"]}, {"institutionName": "German Data Forum", "institutionAdditionalName": ["Rat f\u00fcr Sozial- und WirtschaftsDaten", "RatSWD"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.konsortswd.de/datenzentren/alle-datenzentren/", "institutionIdentifier": ["ROR:059ze4t74"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access to Data", "policyURL": "https://www.dza.de/en/research/fdz/access-to-data"}, {"policyName": "RatSWD and Research Data Infrastructure: Status Quo and Quality Management", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_Output1.6_QualityMgmt.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dza.de/en/research/fdz/access-to-data"}] closed [] ["unknown"] {} ["DOI"] https://www.dza.de/en/research/fdz/access-to-data [] unknown yes ["RatSWD"] [] {} DZA is covered by Thomson Reuters Data Citation Index. dza is a certified member of the RatSWD - research data - infrastructure; dza is a member of 'Arbeitsgemeinschaft der Ressortforschungseinrichtungen' and is consulting BMFSFJ 2013-07-09 2021-09-15 +r3d100010430 Survey of Health, Ageing and Retirement in Europe eng [{"additionalName": "50+ in Europe", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ-SHARE", "additionalNameLanguage": "eng"}] http://www.share-project.org/ [] ["http://www.share-project.org/contact.html", "info@share-project.org"] The Survey of Health, Ageing and Retirement in Europe (SHARE) is a multidisciplinary and cross-national panel database of micro data on health, socio-economic status and social and family networks of more than 85,000 individuals (approximately 150,000 interviews) from 19 European countries (+Israel) aged 50 or over. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005-04-01 ["ces", "dan", "deu", "ell", "eng", "est", "fra", "heb", "ita", "nld", "pol", "por", "slv", "spa", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.share-project.org/home0.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bio-markers", "census data", "conditions", "consumption", "family network", "microdata", "physical and cognitive functioning", "social network", "volunteer activities", "wealth"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme - FP7", "institutionAdditionalName": ["CORDIS FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/defence-industry-space/eu-space-policy/space-research-and-innovation/seventh-framework-programme-fp7_de", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "European Commission, Community Research and Development Information Service, Sixth Framework Programme - FP6", "institutionAdditionalName": ["CORDIS FP6"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/defence-industry-space/eu-space-policy/space-research-and-innovation/sixth-framework-programme-fp6_de", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "2006", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute for Social Law and Social Policy, Munich Center for the Economics of Aging", "institutionAdditionalName": ["MEA", "Max-Planck-Institut f\u00fcr Sozialrecht und Sozialpolitik, Munich Center for the Economics of Aging"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpisoc.mpg.de/sozialpolitik-mea/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["axel@boersch-supan.de"]}, {"institutionName": "SHARE, country teams", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.share-project.org/organisation/share-country-teams.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Survey of Health, Ageing and Retirement in Europe, European Research Infrastructure Consortium", "institutionAdditionalName": ["SHARE-ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.share-project.org/organisation/share-eric.html?L=0", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Survey of Health, Ageing and Retirement in Europe, Research Data Center", "institutionAdditionalName": ["SHARE"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.share-project.org/organisation/dates-facts.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@share-project.org", "jjanssen@uvt.nl"]}, {"institutionName": "Tilburg University", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tilburguniversity.edu/", "institutionIdentifier": ["ROR:04b8v1s79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SHARE Conditions of Use", "policyURL": "http://www.share-project.org/data-access/share-conditions-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.share-project.org/data-access/share-conditions-of-use.html"}] restricted [] ["unknown"] {} ["DOI"] http://www.share-project.org/data-access/citation-requirements.html [] unknown yes ["RatSWD"] [] {} Survey of Health, Ageing and Retirement in Europe is covered by Thomson Reuters Data Citation Index. In March 2011, the Survey of Health, Ageing and Retirement in Europe (SHARE) became the first European Research Infrastructure Consortium (ERIC). The SHARE Research Data Center complies with the Criteria of the German Council for Social and Economic Data for providing access to microdata. SHARE is a member of the RatSWD - research data - infrastructure. 2013-07-09 2021-11-10 +r3d100010431 Pairfam eng [{"additionalName": "FDZ pairfam", "additionalNameLanguage": "eng"}, {"additionalName": "Forschungsdatenzentrum pairfam", "additionalNameLanguage": "eng"}, {"additionalName": "Panel Analysis of Intimate Relationships and Family Dynamics", "additionalNameLanguage": "eng"}] https://www.pairfam.de/en/ [] ["https://www.pairfam.de/en/links/contact/", "support@pairfam.de"] The 2008-launched German Family Panel pairfam (“Panel Analysis of Intimate Relationships and Family Dynamics”) is a multi-disciplinary, longitudinal study for researching partnership and family dynamics in Germany. The annually collected survey data from a nationwide random sample of more than 12,000 persons of the three birth cohorts 1971-73, 1981-83, 1991-93 and their partners, parents and children offers unique opportunities for the analysis of partner and generational relationships as they develop over the course of multiple life phases. eng ["disciplinary"] {"size": "sample of more than 12,000 persons of the three birth cohorts 1971-73, 1981-83, 1991-93 and their partners, parents and children", "updatedp": "2019-10-23"} 2008-05-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.pairfam.de/en/study/concept-and-design/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["child development", "empirical social research", "intergenerational relationships", "parenthood", "parenting", "partnership", "social embeddedness"] [{"institutionName": "Chemnitz University of Technology", "institutionAdditionalName": ["Technische Universit\u00e4t Chemnitz"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tu-chemnitz.de/index.html.en", "institutionIdentifier": ["ROR:00a208s56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}, {"institutionName": "Friedrich Schiller University Jena", "institutionAdditionalName": ["Friedrich-Schiller-Universit\u00e4t Jena"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-jena.de/en/", "institutionIdentifier": ["ROR:05qpz1x62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}, {"institutionName": "LMU Munich", "institutionAdditionalName": ["LMU", "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lmu.de/en/index.html", "institutionIdentifier": ["ROR:05591te55", "RRID:SCR_011358", "RRID:nlx_28705"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}, {"institutionName": "University of Bremen", "institutionAdditionalName": ["Universit\u00e4t Bremen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-bremen.de/en/", "institutionIdentifier": ["ROR:04ers2y35"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}, {"institutionName": "University of Cologne", "institutionAdditionalName": ["Universit\u00e4t zu K\u00f6ln"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.portal.uni-koeln.de/index.php?id=9441&L=1", "institutionIdentifier": ["ROR:00rcxh774"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pairfam.de/en/links/contact/"]}] [{"policyName": "Access to pairfam Data", "policyURL": "https://www.pairfam.de/en/data/data-access/"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.pairfam.de/en/links/legal-notes/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.pairfam.de/en/links/legal-notes/"}] closed [] ["unknown"] yes {} ["DOI"] https://www.pairfam.de/en/data/citation/ [] unknown unknown ["RatSWD"] [] {} FDZ pairfam is a member of the RatSWD research data infrastructure. The pairfam data are archived and described in the GESIS data catalog: https://dbk.gesis.org/dbksearch/sdesc2.asp?no=5678&ll=10&af=&nf=1&db=d&search=&search2=¬abs=1 2013-07-11 2021-11-10 +r3d100010432 Forschungsdatenzentrum Internationale Umfrageprogramme deu [{"additionalName": "FDZ Internationale Umfrageprogramme", "additionalNameLanguage": "deu"}, {"additionalName": "RDC International Survey Programmes", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Center International Survey Programs", "additionalNameLanguage": "eng"}] https://www.gesis.org/en/institute/research-data-centers/rdc-international-survey-programs [] ["fdz_intumfragen@gesis.org"] The Research Data Center (RDC) “International Survey Programs“ provides researchers with data, services, and consultation on a number of important international study series which are under intensive curation by GESIS. They all cover numerous countries and, quite often, substantial time spans. The RDC provides optimal data preparation and access to a wide scope of data and topics for comparative analysis. eng ["disciplinary"] {"size": "more than 5.100 studies, over 60 international large scale studies", "updatedp": "2014-03-14"} 2004-01-05 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Comparative Study of Electoral Systems - CSES", "Eurobarometer Survey Series", "European Election Studies - EES, PIREDEU", "European Values Study - EVS", "International Social Survey Programme - ISSP", "census data", "criminality", "family", "gender relation", "integration", "life satisfaction", "microdata", "migration", "religiosity", "secularization", "survey-life-cycle"] [{"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GESIS \u2013 Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/institute/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@gesis.org"]}, {"institutionName": "Ministerium f\u00fcr Wissenschaft, Forschung und Kunst Baden-W\u00fcrttemberg", "institutionAdditionalName": ["MWK"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mwk.baden-wuerttemberg.de/de/startseite/", "institutionIdentifier": ["ROR:01hc18p32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Usage regulations", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.gesis.org/en/institute/imprint/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://www.coretrustseal.org/about/history/data-seal-of-approval-synopsis-2008-2018/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}] restricted [] ["unknown"] {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FDZ Internationale Umfrageprogramme is a member of the RatSWD - research data - infrastructure 2013-07-15 2021-11-10 +r3d100010433 Forschungsdatenzentrum Wahlen deu [{"additionalName": "FDZ Wahlen", "additionalNameLanguage": "deu"}, {"additionalName": "RDC Elections", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Center Elections", "additionalNameLanguage": "eng"}, {"additionalName": "fdz elections", "additionalNameLanguage": "eng"}] https://www.gesis.org/en/institute/research-data-centers/rdc-elections [] ["https://www.gesis.org/en/contact", "info@gesis.org"] The Research Data Center Elections is part of GESIS and provides access to a number of national survey datasets. The RDC performs the main tasks: Data collection, Consultation and creation of value-added services like data handbooks, Knowledge transfer, e.g. organisation of workshops and Scientific research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004-01-05 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/elections-home/elections-home [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["census data", "data capture", "data documentation", "empirical social research", "microdata"] [{"institutionName": "GESIS \u2013 Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/home/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["christina.eder@gesis.org"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Usage regulations", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] restricted [] ["unknown"] {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FDZ Wahlen is a member of the RatSWD - research data - infrastructure 2013-07-16 2021-11-10 +r3d100010434 FDZ German Microdata Lab deu [{"additionalName": "Forschungsdatenzentrum German Microdata Lab", "additionalNameLanguage": "deu"}, {"additionalName": "GML", "additionalNameLanguage": "eng"}, {"additionalName": "RDC German Microdata Lab", "additionalNameLanguage": "eng"}] https://www.gesis.org/en/institute/research-data-centers/rdc-german-microdata-lab/ [] ["https://www.gesis.org/en/contact", "info@gesis.org"] The GML contributes to the continual improvement of access to and information about official microdata; provides a service and research infrastructure for these data; adopts the function of an intermediary between the Federal Statistical Office and empirical research; conducts exemplary research based upon official data. The GML is an integral part of the German data infrastructure and features as one of six institutions funded by the German Council of Social and Economic Data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003-07-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/gml/gml-home/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "demographic background", "householdbudget", "income", "labour status", "living conditions", "micro-census", "microdata", "poverty", "social exclusion"] [{"institutionName": "GESIS \u2013 Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/home/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gesis.org/en/contact/"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Usage regulations", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesis.org/en/institute/imprint/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] restricted [] ["unknown"] {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} RDC German Microdata Lab is a member of the RatSWD research data infrastructure. 2013-07-17 2021-11-10 +r3d100010435 Forschungsdatenzentrum Ruhr am RWI deu [{"additionalName": "FDZ Ruhr", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre Ruhr at the RWI", "additionalNameLanguage": "eng"}] https://www.rwi-essen.de/forschung-und-beratung/fdz-ruhr/ [] [] As a center for scientific research and evidence-based policy advice, RWI requires an effective econometric infrastructure. The increased use of individual and firm data also requires effective regulations and tools for data protection. The research division’s objectives are to advise RWI researchers in methodical questions, to develop new econometric approaches to solve concrete research questions, and to ensure data protection. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010-10-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://en.rwi-essen.de/forschung-und-beratung/fdz-ruhr/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["data census", "education", "enterprises", "environment", "health economics", "innovation", "labor markets", "macroeconomics", "microdata", "population", "public finance", "resources"] [{"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute for Economic Research", "institutionAdditionalName": ["Leibniz-Institut f\u00fcr Wirtschaftsforschung", "RWI", "formerly: Rheinisch-Westf\u00e4lisches Institut f\u00fcr Wirtschaftsforschung e.V."], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.rwi-essen.de/das-rwi/", "institutionIdentifier": ["ROR:02pse8162"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fdz@rwi-essen.de"]}, {"institutionName": "Ministerium f\u00fcr Kultur und Wissenschaft des Landes Nordrhein-Westfalen", "institutionAdditionalName": ["MKW", "formerly: MIWF", "formerly: Ministerium f\u00fcr Innovation, Wissenschaft und Forschung des Landes Nordrhein-Westfalen"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mkw.nrw/", "institutionIdentifier": ["ROR:04n00c532"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "mission statement", "policyURL": "https://en.rwi-essen.de/forschung-und-beratung/fdz-ruhr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://en.rwi-essen.de/impressum/"}] closed [] ["other"] yes {} ["DOI"] [] unknown unknown ["RatSWD"] [] {} FDZ Ruhr is a certified member of the RatSWD - research data - infrastructure 2013-07-17 2021-11-10 +r3d100010436 Forschungsdatenzentrum am Robert Koch Institut deu [{"additionalName": "FDZ RKI", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre of the Robert Koch Institute", "additionalNameLanguage": "eng"}] https://www.rki.de/DE/Content/Forsch/FDZ/FDZ_node.html [] ["fdz@rki.de"] The Research Data Centre of the Robert Koch Institute (FDZ RKI) publishes the data of population-representative health surveys in the form of public use files (PUFs).The main purpose of health surveys is to generate a maximum amount of information on the state of health and health-related behaviour of Germany's resident population while ensuring an optimum use of funds. The methodology - i.e. the sample design, the principles on operationalization and measurement, and data-collection techniques - is largely modelled on the tried-and-tested methods of empirical social research. Health interview surveys (HIS) use established survey techniques such as filling out questionnaires, computer-assisted telephone interviews (CATI), computer-assisted personal interviews (CAPI), and online polling via the internet or email. The main difference compared to purely sociological surveys lies in the additional biomedical examinations, tests and medical-biochemical measurements, which generate significant added value in addition to the results of the surveys; this part is referred to internationally as the health examination survey (HES). eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2010-07-24 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["allergies", "cancer registry data", "diabetes mellitus", "health surveys", "hormon therapy", "hypertonia", "lung disease", "nutrition", "obesity", "overweight"] [{"institutionName": "Robert Koch Institute", "institutionAdditionalName": ["RKI", "Robert Koch Institut"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rki.de/EN/Home/homepage_node.html", "institutionIdentifier": ["ROR:01k5qnb77", "RRID:SCR_011500", "RRID:nlx_157722"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rki.de/EN/Service/Contact/Contact_node.html"]}] [{"policyName": "Daten nutzen", "policyURL": "https://www.rki.de/DE/Content/Forsch/FDZ/Zugang/Zugang_node.html"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Scientific Use Files", "policyURL": "https://www.rki.de/DE/Content/Forsch/FDZ/Zugang/SUF.html"}, {"policyName": "Verfahrensregeln des RKI \u00fcber die Nutzung von Survey-Daten", "policyURL": "https://www.rki.de/DE/Content/Forsch/FDZ/Downloads/verfahrensregeln_11_2014.pdf?__blob=publicationFile"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.rki.de/DE/Service/Impressum/impressum_node.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.rki.de/DE/Content/Forsch/FDZ/Downloads/Antragsformular.pdf?__blob=publicationFile"}] restricted [] ["unknown"] no {} ["DOI"] https://www.rki.de/DE/Content/Forsch/FDZ/Downloads/verfahrensregeln_11_2014.pdf?__blob=publicationFile [] unknown yes ["RatSWD"] [] {"syndication": "https://www.rki.de/DE/Service/RSS/RSS_node.html", "syndicationType": "RSS"} FDZ Gesundheitsmonitoring is a member of the RatSWD research data infrastructure. 2013-08-07 2021-11-10 +r3d100010437 Bundeszentrale für Gesundheitliche Aufklärung Studien eng [{"additionalName": "BZgA Studien", "additionalNameLanguage": "deu"}, {"additionalName": "Federal Centre for Health Education (BZgA) studies", "additionalNameLanguage": "eng"}, {"additionalName": "Forschungsdatenzentrum der Bundeszentrale f\u00fcr gesundheitliche Aufkl\u00e4rung", "additionalNameLanguage": "deu"}] https://www.bzga.de/forschung/studien/ [] ["https://www.bzga.de/ueber-uns/kontakt/", "poststelle@bzga.de"] Health education and health promotion are important elements of the health system in Germany. The Federal Centre for Health Education (BZgA) has been pursuing the goal of preventing health risks and encouraging health-promoting lifestyles since its establishment in 1967. In addition, the understanding of health and prevention is changing. Against this backdrop, health education is - as a constant communication process - dedicated to the goal of enabling self-responsible action in relation to health. The data sets can be requested from GESIS via the data archive for social sciences (DAS): https://www.gesis.org/institut/abteilungen/datenarchiv-fuer-sozialwissenschaften eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.bzga.de/home/bzga/tasks-and-goals/ [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["health education"] [{"institutionName": "Federal Ministry of Health, Federal Centre for Health Education", "institutionAdditionalName": ["BMG, BZgA", "Bundesministeriums f\u00fcr Gesundheit, Bundeszentrale f\u00fcr gesundheitliche Aufkl\u00e4rung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bzga.de/", "institutionIdentifier": ["ROR:054c9y537"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["forschung@bzga.de"]}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/datenzentren/akkreditierung/"}, {"policyName": "Terms of Use", "policyURL": "https://www.bzga.de/home/legal-information/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bzga.de/home/legal-information/"}] closed [] ["unknown"] {} ["DOI"] [] unknown yes ["RatSWD"] [] {} Most data is offered in German; Data/Studies are currently available as print. After the digitalization will be completed (2015) data will be available for download. FDZ BZgA is a member of the RatSWD research data infrastructure. 2013-07-24 2021-11-10 +r3d100010438 Forschungsdatenzentrum Wissenschaftsstatistik deu [{"additionalName": "FDZ Wissenschaftsstatistik", "additionalNameLanguage": "deu"}, {"additionalName": "RDC Wissenschaftsstatistik", "additionalNameLanguage": "eng"}] https://www.fdz-wissenschaftsstatistik.de/ [] ["https://www.fdz-wissenschaftsstatistik.de/ansprechpartner"] Currently, micro-data on research and development activities (R & D) can be used in the German economy, which is collected on behalf of the Federal Ministry of Education and Research. Core indicators are the internal and external R & D expenditures of enterprises by use of funds and source of funding, R & D personnel by type of activity and sex, the regional distribution of research institutions, the business innovation and economic indicators. Some time series are available from the year 1979. For all odd report annual data are available for all largely within Germany R & D-active companies. In even years under review a representative sample of research companies is questioned. The data are broken down by industry, region, company size and other characteristics evaluated. The survey is part of the official EU Community Statistics, and is incorporated into national and international reporting systems. Most studies and data are in German language. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.stifterverband.org/ueber-uns [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["European community", "Hochschul-Barometer", "business", "enterprises", "german economy", "industry", "microdata", "science policy"] [{"institutionName": "Stifterverband f\u00fcr die Deutsche Wissenschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.stifterverband.org/english", "institutionIdentifier": ["ROR:01yzfjx97"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gero.stenke@stifterverband.de"]}] [{"policyName": "Datenantragsverfahren", "policyURL": "https://www.fdz-wissenschaftsstatistik.de/datenantragsverfahren"}, {"policyName": "RatSWD FDZ Kriterien", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}, {"policyName": "Use of data - Data access", "policyURL": "https://www.fdz-wissenschaftsstatistik.de/datenzugang"}, {"policyName": "Verpflichtungserkl\u00e4rung zur Nutzung der Hochul-Barometer-Mikrodaten von externen Datennutzern", "policyURL": "https://www.fdz-wissenschaftsstatistik.de/download/file/fid/88"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.fdz-wissenschaftsstatistik.de/download/file/fid/88"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] closed [] ["unknown"] yes {} ["none"] [] unknown unknown ["RatSWD"] [] {} datasets availabe on demand; Forschungsdatenzentrum Wissenschaft is a RatSWD certified datacenter 2013-08-12 2021-11-10 +r3d100010439 FDZ-BO eng [{"additionalName": "FDZ-BO am Deutschen Institut f\u00fcr Wirtschaftsforschung", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum Betriebs- und Organisationsdaten", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Center for Business and Organizational Data", "additionalNameLanguage": "eng"}] https://portal.fdz-bo.diw.de/ [] ["fdz-bo@diw.de", "tgebel@diw.de"] The FDZ-BO at DIW Berlin is a central archive for quantitative and qualitative operational and organizational data. It archives these, informs about their existence and provides datasets for secondary analytical purposes. The archiving of studies and datasets ensures long-term security and long-term availability of the data. In consultation with the responsible scientists, access to individual datasets is made possible as scientific use files, via remote data processing or as part of guest stays. The FDZ-BO offers detailed information on current research projects and develops concepts for research data management of organizational data. The study portal (public in March 2019) provides an overview of existing studies in the field of business and organizational research: content, methodology, information on data and data availability information on how to gain access to the data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://portal.fdz-bo.diw.de/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ALLBUS", "BEATA", "INNOKENN", "business economics", "demographic change", "economics", "qualitative data", "quantitative data", "social sciences", "sociology"] [{"institutionName": "Deutsches Institut f\u00fcr Wirtschaftsforschung", "institutionAdditionalName": ["DIW"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.diw.de/en", "institutionIdentifier": ["ROR:0050vmv35"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Bielefeld", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://uni-bielefeld.de/", "institutionIdentifier": ["ROR:02hpadn98"], "responsibilityStartDate": "2010", "responsibilityEndDate": "2018", "institutionContact": ["jelena.hohlweg@uni-bielefeld.de", "tobias.gebel@uni-bielefeld.de"]}] [{"policyName": "Konzeption zum Studienportal Forschungsdatenzentrum Betriebs- und Organisationsdaten (FDZ-BO) am Deutschen Institut f\u00fcr Wirtschaftsforschung (DIW Berlin)", "policyURL": "https://www.econstor.eu/bitstream/10419/197987/1/1667349821.pdf"}, {"policyName": "Konzeption zum Studienportal Forschungsdatenzentrum Betriebs- und Organsationsdaten (FDZ-BO) am Deutschen Institut f\u00fcr Wirtschaftsforschung", "policyURL": "https://www.diw.de/documents/publikationen/73/diw_01.c.620524.de/diw_datadoc_2019-099.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] restricted [] ["CKAN"] {} ["DOI"] [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FDZ-BO (formerly: DSZ-BO) is a member of the RatSWD - research data - infrastructure; The quantitative data sets are available on demand as remote data processing and on-site. The transcripts are available on demand as Scientific Use file. The use is free. The FDZ-BO was founded in 2010 at the University of Bielefeld and was until its relocation to the DIW Berlin to January 1, 2019 an institution of the University of Bielefeld. 2013-08-12 2021-11-11 +r3d100010440 International Data Service Center of the Institute of Labor Economics eng [{"additionalName": "Forschungsdatenzentrum IDSC", "additionalNameLanguage": "deu"}, {"additionalName": "IDSC IZA", "additionalNameLanguage": "deu"}, {"additionalName": "Internationales Datenservicezentrum des Forschungsinstituts zur Zukunft der Arbeit", "additionalNameLanguage": "deu"}] https://www.iza.org/en/research/idsc [] ["https://www.iza.org/en/research/idsc/quick-access", "idsc@iza.org"] IDSC is IZA's organizational unit whose purpose is to serve the scientific and infrastructural computing needs of IZA and its affiliated communities. IDSC is dedicated to supporting all users of data from the novice researcher to the experienced data analyst. IDSC aims at becoming the place for economically minded technologists and technologically savvy economists looking for data support, data access support and data services about labor economics. IDSC is actively involved in organizing events (see our next Red Cube Seminar Talk) for data professionals, data analysts, and scientific data users and young researchers to discuss and share findings and to establish contacts for future cooperation. All data collected are accessible to the scientific community as scientific use files for scholarly analyses free of charge. The Data Repository is available at https://datasets.iza.org/ eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.iza.org/en/research/idsc/mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "census data", "education", "household composition", "household income", "job market data", "labour", "microdata", "migration", "rural home village", "social networks"] [{"institutionName": "Deutsche Post Stiftung", "institutionAdditionalName": ["Deutsche Post Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.deutsche-post-stiftung.org/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["klar@deutsche-post-stiftung.org"]}, {"institutionName": "Forschungsinstitut zur Zukunft der Arbeit", "institutionAdditionalName": ["IZA", "Institute of Labor Economics"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iza.org/", "institutionIdentifier": ["ROR:029s44460"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["iza@iza.org"]}, {"institutionName": "IZA people", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iza.org/content/people", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iza.org/en/research/idsc/services"}] restricted [] ["unknown"] {} ["DOI"] https://www.iza.org/en/research/idsc/services [] unknown yes ["RatSWD"] [] {} After the application is approved by the IDSC the scientific use file will be provided as download. All relevant information will be given to the applicant via email. 2013-08-12 2021-11-12 +r3d100010441 Measures of Effective Teaching - Longitudinal Database eng [{"additionalName": "MET LDB", "additionalNameLanguage": "eng"}, {"additionalName": "MET Longitudinal Database", "additionalNameLanguage": "eng"}] https://www.icpsr.umich.edu/web/pages/about/metldb.html [] ["met-ldb-inquiries@umich.edu"] The Measures of Effective Teaching(MET) project is the largest study of classroom teaching ever conducted in the United States. The University of Michigan compiled the MET data and video files into a rich research collection called the MET Longitudinal Database. Approved researchers can access the restricted MET quantitative and video data using secure online technical systems. The MET Longitudinal Database consists of a Web-based application for searching the collection and viewing the videos with accompanying metadata, and a Virtual Data Enclave that provides secure remote access to the quantitative data and documentation files. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.icpsr.umich.edu/web/pages/about/metldb.html#faq [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["classroom teaching", "effective teaching", "teaching methodes"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26", "RRID:SCR_006346", "RRID:nlx_152065"], "responsibilityStartDate": "2009", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "ICPSR", "institutionAdditionalName": ["Inter-university Consortium for Political and Social Research"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/web/pages/index.html", "institutionIdentifier": ["RRID:SCR_003194", "RRID:nif-0000-00615"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.icpsr.umich.edu/web/pages/about/contact.html"]}, {"institutionName": "University of Michigan", "institutionAdditionalName": ["U-M"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://umich.edu/", "institutionIdentifier": ["ROR:00jmfr291", "RRID:SCR_011668", "RRID:nlx_80572"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://umich.edu/contact/"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.icpsr.umich.edu/web/pages/membership/policies/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/access.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/files/METLDB/METLDB_DUA.pdf"}] closed [] ["other"] yes {} ["none"] [] unknown yes [] [] {} The Measures of Effective Teaching Longitudinal Database is restricted from general dissemination; a Confidential Data Use Agreement must be established prior to access. More information: https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/access.html The MET Longitudinal Database is a member of the Inter-University Consortium for Political and Social Research (ICPSR). 2013-07-25 2021-11-12 +r3d100010442 World Data Center for Geography eng [{"additionalName": "Center of World Data System of Geography", "additionalNameLanguage": "eng"}] http://eng.geogr.msu.ru/structure/labs/WDC/ [] ["foreign@geogr.msu.ru", "info@geogr.msu.ru", "srchalov@rambler.ru"] Data Center of Geography was created in 2011 in the framework of the interdisciplinary structure – world data systems – to ensure gathering, processing and conversion of data and to solve fundamental and applied problems in the sphere of geographical sciences. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["maps"] [{"institutionName": "Lomonosov Moscow State University, Faculty of Geography", "institutionAdditionalName": ["MSU"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.eng.geogr.msu.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["foreign@geogr.msu.ru", "srchalov@rambler.ru"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "Data Policy", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown ["WDS"] [] {} Data Centre for Geography, Moscow is aiming for regular ICSU-WDS membership . The Letter of Agreement (LoA) is Pending (29.05.2018) 2013-07-25 2021-11-12 +r3d100010443 Ukrainian Geospatial Data Center eng [] http://inform.ikd.kiev.ua/index.php?path=/en/index [] ["http://inform.ikd.kiev.ua/en/contacts/", "inform@ikd.kiev.ua"] The department specializes on developing complex distributed systems for satellite data processing. The main task given to the department is development, validation and implementation of different satellite data processing methods in the form of information services and certain systems eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng", "rus", "ukr"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.worlddatasystem.org/publications/members-reports-posters/poster-presentations-2015-2016/2016-members-forum-posters/ugdc [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["earth observations"] [{"institutionName": "Space Research Institute NAS Ukraine and SSA Ukraine, Department of Space Information Technologies and Systems", "institutionAdditionalName": ["SRI NASU and SSAU"], "institutionCountry": "UKR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://inform.ikd.kiev.ua/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["inform@ikd.kiev.ua"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["none"] [] unknown unknown ["WDS"] [] {} Ukrainian Gespatial Data Center is a member of ICSU World Data System and Network Member of UN-SPIDER, CEOS and GEO 2013-07-25 2021-11-12 +r3d100010444 World Data Center for Oceanography, Obninsk eng [{"additionalName": "WDC - B1", "additionalNameLanguage": "eng"}, {"additionalName": "WDC - Oceanography, Obninsk", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center - B", "additionalNameLanguage": "eng"}] http://meteo.ru/mcd/ewdcoce.html [] ["http://meteo.ru/mcd/en_Contacts.html", "vjaz@meteo.ru"] World Data Center for Oceanography serves to store and provide to users data on physical, chemical and dynamical parameters of the global ocean as well as oceanography-related papers and publications, which are either came from other countries through the international exchange or provided to the international exchange by organizations of the Russian Federation eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "climate", "cyclone", "ocean drilling", "ocean maps", "oceanographic expeditions", "remote sensing"] [{"institutionName": "All-Russian Research Institute of Hydrometeorological Information - WDC", "institutionAdditionalName": ["RIHMI-WDC"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://meteo.ru/mcd/index_e.html", "institutionIdentifier": ["ROR:038s1hq41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kuznet@meteo.ru"]}, {"institutionName": "ICSU World Data System", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment World Data Center for Oceanography, Obninsk", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/12/WDC-Oceanography-Obninsk.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} World Data Center for Oceanography, Obninsk is regular WDS Member. Three WDCs in Russia carry out the activity, being a part of the All-Russian Research Institute of Hydrometeorological Information - World Data Center (RIHMI-WDC). All these Centers are situated in Obninsk: WDC for Meteorology, WDC for Oceanography, WDC for Rockets, Satellites and Rotation of the Earth 2013-07-30 2021-12-10 +r3d100010446 World Data Center for Solar-Terrestrial Physics, Moscow eng [{"additionalName": "WDC - Solar-Terrestrial Physics, Moscow", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for STP, Moscow", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Solar-Earth Physics", "additionalNameLanguage": "eng"}, {"additionalName": "\u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0426\u0435\u043d\u0442\u0440 \u0414\u0430\u043d\u043d\u044b\u0445 \u043f\u043e \u042d\u043c\u0431\u043b\u0435\u043c\u0430 \u041c\u0426\u0414 \u043f\u043e \u0421\u0417\u0424 \u0421\u043e\u043b\u043d\u0435\u0447\u043d\u043e-\u0417\u0435\u043c\u043d\u043e\u0439 \u0424\u0438\u0437\u0438\u043a\u0435", "additionalNameLanguage": "eng"}] http://www.wdcb.ru/stp/index.en.html [] ["http://www.wdcb.ru/stp/contacts.html", "wdcbsep@wdcb.ru"] WDC for STP, Moscow collects, stores, exchanges with other WDCs, disseminates the publications, sends upon requests data on the following Solar-Terrestrial Physics disciplines: Solar Activity and Interplanetary Medium, Cosmic Rays, Ionospheric Phenomena, Geomagnetic Variations. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["cosmic rays", "geomagnetic disturbance", "geomagnetic variations", "international polar year", "ionosphere", "ionospheric phenomena", "olar flare", "plasmasphere", "solar sunspots"] [{"institutionName": "ICSU World Data System", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Russian Academy of Sciences, Geophysical Center", "institutionAdditionalName": ["Geophysical Center RAS"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gcras.ru/eng/", "institutionIdentifier": ["ROR:04w1wsw24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gcras@gcras.ru", "kharin@wdcb.ru", "shest@wdcb.ru", "vitish@wdcb.ru"]}] [{"policyName": "CoreTrustSeal assessment World Data Center for Solar-Terrestrial Physics, Moscow", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/11/WDC-Solar-Terrestrial-Physics-Moscow.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] closed [] ["unknown"] {"api": "http://www.wdcb.ru/stp/data/", "apiType": "FTP"} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} World Data Center for Solar-Terrestrial Physics, Moscow is WDS regular member. "Effective October 2011, the World Data Service for Geophysics, collocated at NGDC https://www.ngdc.noaa.gov/) replaces former World Data Centers for Geophysics and Marine Geology, and for Solar-Terrestrial Physics"; WDC for STP, Moscow is a part of the World Data System of the International Council of Science(ICSU WDS). 2013-07-30 2022-01-03 +r3d100010447 World Data Center for Solid Earth Physics eng [{"additionalName": "WDC - Solid Earth Physics, Moscow", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for SEP", "additionalNameLanguage": "eng"}] http://www.wdcb.ru/sep/ [] ["wdcsep@wdcb.ru"] World Data Center for Solid Earth Physics collects, stores, and disseminates a wide range of data on solid Earth physics disciplines: Seismology, Gravimetry, Heat Flow, Magnetic Measurements (main magnetic field), Archeo- & Paleomagnetism, Recent Movements. These data are used as the basis for fundamental and applied scientific researches and education. The WDC for SEP invites scientists, institutions and other authors and data generators to contribute data to our Center in order to make data more widely available to the scientific community and to safe them. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995-01-01 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.wdcb.ru/sep/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["archeomagnetism", "earthquake", "geophysics", "geothermics", "gravimetry", "heat flow", "international polar year", "magnetic measurements", "marine geology", "paleomagnetism", "seismology", "topography"] [{"institutionName": "World Data Center for Solid Earth Physics", "institutionAdditionalName": ["WDC for SEP", "\u041c\u0438\u0440\u043e\u0432\u043e\u0439 \u0446\u0435\u043d\u0442\u0440 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e \u0444\u0438\u0437\u0438\u043a\u0435 \u0442\u0432\u0435\u0440\u0434\u043e\u0439 \u0417\u0435\u043c\u043b\u0438"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wdcb.ru/sep/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wdcb.ru/sep/address.html", "sep@wdcb.ru"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/01/WDC-Solid-Earth-Physics-Moscow.pdf"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}, {"policyName": "data policy", "policyURL": "http://www.wdcb.ru/sep/data.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.wdcb.ru/sep/data.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.coretrustseal.org/wp-content/uploads/2019/01/WDC-Solid-Earth-Physics-Moscow.pdf"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Our site contains information on the World Data Center for Solid Earth Physics (WDC for SEP) in Moscow, on data for some geophysical disciplines available at the Center, and data access possibility, about the Center activity in scientific projects and programs and also links to other sites with the geophysical data. 2013-07-31 2021-08-25 +r3d100010448 World Data Center of Microorganisms eng [{"additionalName": "WDCM", "additionalNameLanguage": "eng"}, {"additionalName": "WFCC - MIRCEN World Data Centre for Microorganisms", "additionalNameLanguage": "eng"}] http://www.wdcm.org/ [] [] WFCC-MIRCEN World Data Centre for Microorganisms (WDCM) provides a comprehensive directory of culture collections, databases on microbes and cell lines, and the gateway to biodiversity, molecular biology and genome projects.The WFCC is a Multidisciplinary Commission of the International Union of Biological Sciences (IUBS) and a Federation within the International Union of Microbiological Societies (IUMS). The WFCC is concerned with the collection, authentication, maintenance and distribution of cultures of microorganisms and cultured cells. Its aim is to promote and support the establishment of culture collections and related services, to provide liaison and set up an information network between the collections and their users, to organise workshops and conferences, publications and newsletters and work to ensure the long term perpetuation of important collections. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011-05-17 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.wdcm.org/index.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "ecology", "environmental protection", "food science", "genetics", "microbiology", "molecular biology", "physiology"] [{"institutionName": "Chinese Academy of Sciences, Institute of Microbiology, Information Network Center", "institutionAdditionalName": ["IMCAS"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.im.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sunql@im.ac.cn", "wulh@im.ac.cn"]}, {"institutionName": "World Federation for Culture, Microbial Resources Centres", "institutionAdditionalName": ["WFCC MIRCEN"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.wfcc.info/guidelines/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wfcc.info/contact/"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.wdcm.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] restricted [] ["unknown"] yes {} ["ARK"] [] unknown unknown ["WDS"] [] {} includes 4 Databases: Culture Collections Information Worldwide, Global Catalogue of Microorganisms, Analyzer of Bio-resource Citations and WDCM Reference Strain Catalogue; WDCM is member of the ICSU World Data System 2013-08-01 2018-08-03 +r3d100010449 Canada's Michael Smith Genome Sciences Centre eng [{"additionalName": "GSC", "additionalNameLanguage": "eng"}] https://www.bcgsc.ca/ [] ["https://www.bcgsc.ca/contact-us", "info@bcgsc.ca"] We are a leading international centre for genomics and bioinformatics research. Our mandate is to advance knowledge about cancer and other diseases, to improve human health through disease prevention, diagnosis and therapeutic approaches, and to realize the social and economic benefits of genomics research. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.bcgsc.ca/about-us [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Atlantic salmon", "COVID-19", "SARS Coronavirus", "bioinformatics", "bovine", "cancer", "clinical research", "epidemiology", "gene therapy", "genomics", "health", "lymphoma", "poplar", "spruce", "wine grapes"] [{"institutionName": "BC Cancer Agency, Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BCCA"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bcgsc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bcgsc.ca/contact-us"]}, {"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": ["ROR:03gqhbs95", "RRID:SCR_006428", "RRID:nlx_151770"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Epigenetics, Environment and Health Research Consortium", "institutionAdditionalName": ["CEEHRC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://thisisepigenetics.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cancer Research Society", "institutionAdditionalName": ["CRS", "SRC", "Soci\u00e9t\u00e9 de recherche sur le cancer"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.societederecherchesurlecancer.ca/en", "institutionIdentifier": ["ROR:00t38a349"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Michael Smith Foundation for Health Research", "institutionAdditionalName": ["MSFHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msfhr.org/", "institutionIdentifier": ["ROR:020x39229"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nserc-crsng.gc.ca/", "institutionIdentifier": ["ROR:01h531d29", "RRID:SCR_013327", "RRID:nlx_39429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Prostate Cancer Canada", "institutionAdditionalName": ["CPC", "Cancer de la Prostate Canada", "PCC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cancer.ca/en/about-us/prostate-cancer", "institutionIdentifier": ["ROR:03p641z80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Western Economic Diversification Canada", "institutionAdditionalName": ["DEO", "Diversification de l'\u00e9conomie de l'Ouest Canada", "WD"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wd-deo.gc.ca/eng/home.asp", "institutionIdentifier": ["ROR:002sgqx17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acknowledgement and Reference Policy", "policyURL": "https://www.bcgsc.ca/services/"}, {"policyName": "Terms and Conditions", "policyURL": "https://www.bcgsc.ca/sites/default/files/Services/TERMS_AND_CONDITIONS%20_April%202021_%20%28TDO%29_locked.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "Acknowledgement and Reference Policy", "dataUploadLicenseURL": "https://www.bcgsc.ca/services/"}] ["unknown"] {"api": "https://www.bcgsc.ca/downloads/", "apiType": "other"} ["none"] https://www.bcgsc.ca/services/frequently-asked-questions [] unknown yes [] [] {} The Genome Sciences Centre is one of fifteen research programs that operate as part of the BC Cancer Research Centre. The BC Cancer Agency, an agency of the Provincial Health Services Authority, provides a province-wide cancer control program for the residents of British Columbia. Additional support is provided by funds raised by the BC Cancer Foundation for cancer research. 2013-08-08 2021-12-10 +r3d100010450 EDINA eng [] https://edina.ac.uk/ [] ["edina@ed.ac.uk", "https://edina.ac.uk/contact-us/"] EDINA delivers online services and tools to benefit students, teachers and researchers in UK Higher and Further Education and beyond. eng ["other"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ed.ac.uk/bayes/about-us/our-work/space-and-satellites/facilities/edina [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["LOCKSS", "OpenURL router", "agcensus", "census", "digimap", "geospatial", "maps", "multidisciplinary", "statistics", "wind farms"] [{"institutionName": "EDINA", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://edina.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["edina@ed.ac.uk"]}, {"institutionName": "Higher Education Funding Council for England", "institutionAdditionalName": ["HEFCE"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://webarchive.nationalarchives.gov.uk/ukgwa/*/http:/www.hefce.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018-03-31", "institutionContact": []}, {"institutionName": "JISC", "institutionAdditionalName": ["Joint Information Systems Committee"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86", "RRID:SCR_011331", "RRID:nlx_23596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Edinburgh, Data Library", "institutionAdditionalName": ["EDINA, Data Library"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/information-services/about/organisation", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "UK Research and Innovation Freedom of Information & Data Protection", "policyURL": "https://re.ukri.org/sector-guidance/policies-standards/foi-data-protection/"}, {"policyName": "UKRI open access policy", "policyURL": "https://www.ukri.org/publications/ukri-open-access-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/"}] ["DSpace"] {"api": "https://discoveredina.blogs.edina.ac.uk/files/2012/08/Tagger_API_V1.5.pdf", "apiType": "REST"} ["other"] [] unknown yes [] [] {"syndication": "https://blogs.edina.ac.uk/feed/", "syndicationType": "RSS"} EDINA is a Jisc-designates centre of expertise and centre for online services, part of "EDINA and Data Library" division of Information Services at the University of Edinburgh and develops and delivers shared services and infrastructure to support research and education in the UK 2013-10-01 2021-12-10 +r3d100010451 Pacific and Regional Archive for Digital Sources in Endangered Cultures eng [{"additionalName": "PARADISEC", "additionalNameLanguage": "eng"}] http://www.paradisec.org.au/ [] ["admin@paradisec.org.au"] PARADISEC (the Pacific And Regional Archive for Digital Sources in Endangered Cultures) offers a facility for digital conservation and access to endangered materials from all over the world. Our research group has developed models to ensure that the archive can provide access to interested communities, and conforms with emerging international standards for digital archiving. We have established a framework for accessioning, cataloguing and digitising audio, text and visual material, and preserving digital copies. The primary focus of this initial stage is safe preservation of material that would otherwise be lost, especially field tapes from the 1950s and 1960s. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.paradisec.org.au/about-us/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Australia", "South Pacific Islands", "Southeast Asia", "ethnography", "ethnomusicology", "history", "linguistic"] [{"institutionName": "Australian National University", "institutionAdditionalName": ["ANU"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.anu.edu.au/", "institutionIdentifier": ["RRID:SCR_001086", "RRID:nlx_23045"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.anu.edu.au/contact-anu"]}, {"institutionName": "Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arc.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.arc.gov.au/contacts-feedback/contacts"]}, {"institutionName": "University of Melbourne", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.unimelb.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://unimelb.edu.au/contact"]}, {"institutionName": "University of New England", "institutionAdditionalName": ["UNE"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.une.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.une.edu.au/contact-us"]}, {"institutionName": "University of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://sydney.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sydney.edu.au/contact-us.html"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/11/Pacific-and-Regional-Archive-for-Digital-Sources-in-Endangered-Cultures-PARADISEC.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.paradisec.org.au/PDSCaccess.rtf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.paradisec.org.au/deposit/access-conditions/"}] restricted [{"dataUploadLicenseName": "Deposit of material", "dataUploadLicenseURL": "http://www.paradisec.org.au/PDSCdeposit.pdf"}] ["other"] yes {"api": "https://catalog.paradisec.org.au/oai/item", "apiType": "OAI-PMH"} ["DOI"] http://www.paradisec.org.au/collections/ [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} PARADISEC’s catalog can also be searched freely with unrestricted access via the OLACgateway http://search.language-archives.org/search.html?q=archive_facet%3A%22Pacific+And+Regional+Archive+for+Digital+Sources+in+Endangered+Cultures+%28PARADISEC%29%22 2013-08-20 2019-11-25 +r3d100010454 Data Center for Aurora in NIPR eng [{"additionalName": "Polar Data Center", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Aurora", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center for Aurora", "additionalNameLanguage": "eng"}] http://polaris.nipr.ac.jp/~aurora/ ["biodbcore-001628"] ["aurora(at)nipr.ac.jp"] The Data Center for Aurora in NIPR is responsible for data archiving and dissemination of all-sky camera observations, visual observations, other optical observations (such as TV and photometric observations), auroral image and particle observations from satellites, geomagnetic observations, and observations of upper atmosphere phenomena associated with aurora such as ULF, VLF and CNA activities. This Data Catalogue summarizes the collection of data sets, data books, related publications and facilities available in the WDC for Aurora as of December 2003. The WDC for Aurora changed its name as "Data Center for Aurora in NIPR" in 2008 due to the disappearance of the WDC panel in ICSU. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://polaris.nipr.ac.jp/~aurora/datacatalog/sec1/introduction.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Iceland", "Syowa station", "antarctica", "climate change", "magnetic observation", "moon", "polar science", "satellite", "sun", "upper atmosphere"] [{"institutionName": "National Institute of Polar Research, Polar Data Center", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nipr.ac.jp/english/", "institutionIdentifier": [], "responsibilityStartDate": "1981", "responsibilityEndDate": "", "institutionContact": ["aurora@nipr.ac.jp", "kadokura@nipr.ac.jp"]}] [{"policyName": "Guidelines for data management, Polar Data Center", "policyURL": "https://scidbase.nipr.ac.jp/uploads/policy/data-policy.e.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://www.nipr.ac.jp/english/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nipr.ac.jp/english/terms.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://iugonet0.nipr.ac.jp/web/induction/data_policy.html"}] closed [] ["unknown"] {} ["none"] http://polaris.nipr.ac.jp/~aurora/datacatalog/sec1/introduction.html [] unknown unknown [] [] {} The World Data Center (WDC) for Aurora was established in 1981 in the National Institute of Polar Research, following a recommendation from the WDC panel of ICSU (International Council of Scientific Unions). The WDC for Aurora changed its name as "Data Center for Aurora in NIPR" in 2008 due to the disappearance of the WDC panel in ICSU. 2013-09-09 2021-11-17 +r3d100010455 ICET eng [{"additionalName": "International Center for Earth Tides", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: World Data Center C For Earth Tides", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: World Data Centre for Earth Tides", "additionalNameLanguage": "eng"}] http://www.upf.pf/ICET/ ["ISSN 2428-4556"] ["barriot@upf.pf", "bernard.ducarme@oma.be"] >>>!!!<<>>!!!<<< The ICET Data Bank contains results from 360 tidal gravity stations: hourly values, main tidal waves obtained by least squares analyses, residual vectors, oceanic attraction and loading vectors. The Data Bank contains also data from tiltmeters and extensometers. ICET is responsible for the Information System and Data Center of the Global Geodynamic Project (GGP). The tasks ascribed to ICET are : to collect all available measurements of Earth tides (which is its task as World Data Centre C), to evaluate these data by convenient methods of analysis in order to reduce the very large amount of measurements to a limited number of parameters which should contain all the desired and needed geophysical information, to compare the data from different instruments and different stations distributed all over the world, evaluate their precision and accuracy from the point of view of internal errors as well as external errors, to help to solve the basic problem of calibrations and to organize reference stations or build reference calibration devices, to fill gaps in information or data as far as feasible, to build a data bank allowing immediate and easy comparison of Earth tide parameters with different Earth models and other geodetical and geophysical parameters like geographical position, Bouguer anomaly, crustal thickness and age, heat flow, ... to ensure a broad diffusion of the results and information to all interested laboratories and individual scientists. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.upf.pf/ICET/history.html#Futur [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["barometric stations", "calibration", "gravity", "ocean tides", "strain stations", "tilt stations", "wells"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://isdc.gfz-potsdam.de/igets-data-base/?L=0", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["isdc-support@gfz-potsdam.de"]}, {"institutionName": "International Council for Science", "institutionAdditionalName": ["ICSU"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.icsu.org/", "institutionIdentifier": ["ROR:005vhrs19"], "responsibilityStartDate": "", "responsibilityEndDate": "2008", "institutionContact": []}, {"institutionName": "University of French Polynesia", "institutionAdditionalName": ["UPF", "Universit\u00e9 de la Polyn\u00e9sie Francaise, Laboratoire des Sciences de la Terre"], "institutionCountry": "PYF", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.upf.pf/fr", "institutionIdentifier": ["ROR:03ay59x86"], "responsibilityStartDate": "2008-01-01", "responsibilityEndDate": "", "institutionContact": ["barriot@upf.pf", "bernard.ducarme@oma.be"]}] [{"policyName": "Terms of Reference", "policyURL": "https://webdevel.upf.pf/ICET/terms/terms.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://webdevel.upf.pf/ICET/terms/terms.html"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} ICSU World Data System superseded the World Data Centres (WDCs) and Federation of Astronomical and Geophysical data analysis Services (FAGS) created by ICSU to manage data generated by the International Geophysical Year[5][6][7] (1957–1958). Since January 1st, 2008 ICET is hosted at the University of French Polynesia with Chairman J. P. Barriot.(barriot@upf.pf). The IGETS data base at GFZ Potsdam continues the activities of the International Center for Earth Tides (ICET), in particular, in collecting, archiving and distributing Earth tide records from long series of gravimeters, tiltmeters, strainmeters and other geodynamic sensors. 2013-09-09 2021-03-31 +r3d100010457 World Data Centre for Glaciology, Cambridge eng [{"additionalName": "SPRILIB Ice and Snow", "additionalNameLanguage": "eng"}, {"additionalName": "WDC-C for Glaciology", "additionalNameLanguage": "eng"}, {"additionalName": "WDCGC", "additionalNameLanguage": "eng"}] https://www.spri.cam.ac.uk/library/catalogue/sprilib/icesnow/ [] [] Until 2014 housed in the library of the Scott Polar Research Institute, the WDC for Glaciology, Cambridge, maintains a particularly comprehensive collection of publications covering all aspects of snow and ice worldwide. Glaciological literature has been systematically collected and catalogued at the Scott Polar Research Institute since 1920. The SPRI Picture Library houses one of the world's most comprehensive collections of historical photographs of the Polar Regions eng ["disciplinary"] {"size": "40.000 records", "updatedp": "2019-10-28"} 2002 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Russian North", "expeditions", "geocryology", "global change", "historical photographs", "ice", "ice navigation", "law", "marine sciences", "snow"] [{"institutionName": "Royal Society", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://royalsociety.org/", "institutionIdentifier": ["ROR:03wnrjx87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cambridge, Scott Polar Research Institute, Library", "institutionAdditionalName": ["SPRILIB"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.spri.cam.ac.uk/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2014", "institutionContact": ["library@spri.cam.ac.uk"]}, {"institutionName": "World Data Centre for Glaciology", "institutionAdditionalName": ["WDCGC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wdcgc.spri.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wdcgc.spri.cam.ac.uk/contacts/", "wdcgc@spri.cam.ac.uk"]}] [{"policyName": "access policy", "policyURL": "https://www.spri.cam.ac.uk/archives/policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.spri.cam.ac.uk/about/website/copyright.html"}] restricted [] ["dLibra"] {} ["none"] [] unknown yes [] [] {} The Library of the Scott Polar Research Institute (SPRI Library) also housed until 2014, the Library the World Data Centre for Glaciology, Cambridge, with special responsibilities for the provision of information to British and European glaciologists. The World Data Center for Glaciology, Boulder (WDCGB) is at the National Snow and Ice Data Center [Colorado, USA]. The WDC for Glaciology and Geocryology, Lanzhou, is in China. All three centres form part of the ICSU World Data System (WDS). Until July 1999 the Centre was called WDC-C for Glaciology. 2013-09-09 2021-06-08 +r3d100010463 DARTS eng [{"additionalName": "ISAS Data Archive and Transmission System", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center for Space Science Satellites", "additionalNameLanguage": "eng"}] https://darts.isas.jaxa.jp/ [] ["darts-admin@ML.isas.jaxa.jp"] DARTS primarily archives high-level data products obtained by JAXA's space science missions in astrophysics (X-rays, radio, infrared), solar physics, solar-terrestrial physics, and lunar and planetary science. In addition, we archive related space science data products obtained by other domestic or foreign institutes, and provide data services to facilitate use of these data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://darts.isas.jaxa.jp/about.html.en [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ISS", "infrared astrophysics", "lunar and planetary science", "satellite", "solar physics", "space missions"] [{"institutionName": "Center for Science-satellite Operation and Data Archive", "institutionAdditionalName": ["C-SODA"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://c-soda.isas.jaxa.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["darts-admin AT ML.isas.jaxa.jp"]}, {"institutionName": "Japan Aerospace Exploration Agency, Institute of Space and Astronautical Science", "institutionAdditionalName": ["JAXA ISAS"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.isas.jaxa.jp/en/index.html", "institutionIdentifier": ["ROR:034gcgw60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ISAS Data Policy", "policyURL": "https://www.isas.jaxa.jp/en/researchers/data-policy/"}, {"policyName": "Site policy", "policyURL": "https://global.jaxa.jp/policy.html"}, {"policyName": "Use of DARTS data", "policyURL": "https://darts.isas.jaxa.jp/about.html.en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://global.jaxa.jp/policy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://jda.jaxa.jp/en/service.php#method"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.isas.jaxa.jp/en/researchers/data-policy/"}] closed [] ["unknown"] yes {} ["none"] https://darts.isas.jaxa.jp/about.html.en [] unknown unknown [] [] {} 2013-12-20 2021-09-07 +r3d100010464 Research Data Australia eng [] https://researchdata.edu.au/ ["FAIRsharing_doi:10.25504/FAIRsharing.2g5kcb"] [] Research Data Australia is the data discovery service of the Australian Research Data Commons (ARDC). The ARDC is supported by the Australian Government through the National Collaborative Research Infrastructure Strategy Program. Research Data Australia helps you find, access, and reuse data for research from over one hundred Australian research organisations, government agencies, and cultural institutions. We do not store the data itself here but provide descriptions of, and links to, the data from our data publishing partners. eng ["institutional", "other"] {"size": "182.826 results", "updatedp": "2021-09-03"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://researchdata.edu.au/page/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "Australian Research Data Commons", "institutionAdditionalName": ["ARDC"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ardc.edu.au", "institutionIdentifier": ["ROR:038sjwq14"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["https://ardc.edu.au/contact-us/"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncris@education.gov.au"]}, {"institutionName": "Research Data Australia contributors", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://researchdata.edu.au/contributors", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "RDA Content Providers Guide", "policyURL": "https://documentation.ardc.edu.au/display/DOC/Content+Providers+Guide"}, {"policyName": "Research Data Australia Collection policies", "policyURL": "https://documentation.ardc.edu.au/display/DOC/Research+Data+Australia+Collection+Policies"}, {"policyName": "Research Data Australia Privacy Policy", "policyURL": "https://researchdata.edu.au/page/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://ardc.edu.au/terms-conditions/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/au/deed.en"}] restricted [] ["CKAN"] yes {"api": "http://researchdata.ands.org.au/registry/services/oai", "apiType": "OAI-PMH"} ["DOI", "PURL", "URN", "hdl"] https://ardc.edu.au/resources/working-with-data/citation-identifiers/data-citation/ [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. 2013-06-06 2021-09-22 +r3d100010465 CEACS Data Library eng [{"additionalName": "Biblioteca de Datos de CEACS", "additionalNameLanguage": "spa"}, {"additionalName": "Instituto Juan March - Center for Advanced Study in the Social Sciences (CEACS) Dataverse", "additionalNameLanguage": "eng"}] http://www.march.es/ceacs/biblioteca/datalib/ [] ["privacidad@march.es"] The CEACS Data Library aims to support its research community to conduct quantitative research with primary and secondary data of the highest quality. The Data Library provides integrated access to an extensive collection of data for research and teaching. This collection comprises studies from major data centres as well as public collections and other datasets of special interest to members of CEACS. This section offers the possibility to search and browse the collection. The links go to records on the catalogue or the data directly on our servers or the web. If you cannot locate or access the data you are after please contact the Data Librarian for further assistance. eng ["institutional"] {"size": "Over 2.000 datasets", "updatedp": "2017-05-15"} 2008 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["demography & migration", "economics", "education", "election", "ethnicity", "health", "labour", "political systems", "political violence", "social policy", "social surveys"] [{"institutionName": "Fundacion Juan March", "institutionAdditionalName": ["Istituto Juan March"], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.march.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Instituto Carlos III-Juan March, Centro de investigaci\u00f3n y posgrado en Ciencias Sociales", "institutionAdditionalName": ["IC3JM", "formerly: CEACS", "formerly: Istituto Juan March de Estudios e Investigaciones, Center for Advanced Study in the Social Sciences", "formerly: Istituto Juan March de Estudios e Investigaciones, Centro de Estudios Avanzados en Ciencias Sociales"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ic3jm.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.march.es/advertencias/ingles/"}] restricted [] ["DataVerse"] {} ["hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.march.es/calendario/rss/calendario.aspx?l=1", "syndicationType": "RSS"} Starting in September 2013, the Center for Advanced Study in the Social Sciences (CEACS) will move its activities to the Getafe campus of Carlos III University. The CEACS will be integrated in the new Carlos III-Juan March Institute of Social Sciences. It is a public-private partnership, with participation of the Fundación Juan March for the next six years. The CEACS faculty, the library, the Advisory Committee, and the network of Juan March PhDs will join the new Institute. Apart from the CEACS faculty, distinguished professors and researchers from Carlos III will also join the new Institute. The goal is to establish a center of excellence in the social sciences that will launch a graduate program with an international profile and will conduct high quality research. The provost of the Carlos III University, Daniel Peña, and the Director of the Fundación Juan March, Javier Gomá, signed an agreement that establishes the creation of the new Institute on December 21st 2012. On January 31st 2013, the Oversight Committee envisaged in the agreement was created. It is formed by Javier Gomá and Tomás Villanueva (on behalf of the Fundación Juan March) and by Juan Romo and Carlos Balaguer (on behalf of Carlos III University). Its first decision was to appoint Ignacio Sánchez-Cuenca as director of the Carlos III-Juan March Institute of Social Sciences, starting on September 1st 2013. 2013-06-10 2021-08-25 +r3d100010467 HDAP eng [{"additionalName": "Heidelberg Digitized Astronomical Plates", "additionalNameLanguage": "eng"}] http://dc.zah.uni-heidelberg.de/lswscans/res/positions/q/form [] [] Scans of plates obtained at Landessternwarte Heidelberg-Königstuhl and German-Spanish Astronomical Center (Calar Alto Observatory), Spain, 1900 through 1999. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.lsw.uni-heidelberg.de/projects/scanproject/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["Photographic plate", "Pointed observations", "astrophotography"] [{"institutionName": "Gavo Data Center, Astronomisches Rechen-Institut", "institutionAdditionalName": ["ARI", "German Astrophysical Virtual Oberservatory"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dc.zah.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gavo@ari.uni-heidelberg.de"]}, {"institutionName": "Klaus Tschira Stiftung gemeinn\u00fctzige GmbH", "institutionAdditionalName": ["KTS", "Klaus-Tschira-Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.klaus-tschira-stiftung.de/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2008", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "http://dc.zah.uni-heidelberg.de/static/doc/privpol.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://dc.zah.uni-heidelberg.de/lswscans/res/positions/q/form"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dc.zah.uni-heidelberg.de/lswscans/res/positions/q/info"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dc.zah.uni-heidelberg.de/lswscans/res/positions/q/form"}] closed [] ["unknown"] {"api": "http://dc.zah.uni-heidelberg.de/static/help.shtml", "apiType": "other"} ["none"] http://dc.zah.uni-heidelberg.de/lswscans/res/positions/q/howtocite [] unknown yes [] [] {} 2013-06-11 2017-05-15 +r3d100010468 Zenodo eng [{"additionalName": "Research. Shared", "additionalNameLanguage": "eng"}] https://zenodo.org/ ["RRID:SCR_004129", "RRID:nlx_158614"] ["https://zenodo.org/contact", "info@zenodo.org"] ZENODO builds and operates a simple and innovative service that enables researchers, scientists, EU projects and institutions to share and showcase multidisciplinary research results (data and publications) that are not part of the existing institutional or subject-based repositories of the research communities. ZENODO enables researchers, scientists, EU projects and institutions to: easily share the long tail of small research results in a wide variety of formats including text, spreadsheets, audio, video, and images across all fields of science. display their research results and get credited by making the research results citable and integrate them into existing reporting lines to funding agencies like the European Commission. easily access and reuse shared research results. eng ["other"] {"size": "", "updatedp": ""} 2013-05-08 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://zenodo.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/index.cfm?pg=enquiries"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/index.cfm?pg=contacts&origin=tools-contact"]}, {"institutionName": "European Organization for Nuclear Research", "institutionAdditionalName": ["CERN", "Centre Europ\u00e9en pour la Recherche Nucl\u00e9aire"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://home.cern/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://zenodo.org/contact"]}, {"institutionName": "OpenAIRE", "institutionAdditionalName": ["Open Access Infrastructure for Research in Europa"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.openaire.eu/", "institutionIdentifier": ["RRID:SCR_013740"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.openaire.eu/contact-us"]}] [{"policyName": "Policies", "policyURL": "http://about.zenodo.org/policies/"}, {"policyName": "Terms of use", "policyURL": "http://about.zenodo.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://about.zenodo.org/policies/"}] open [{"dataUploadLicenseName": "Policies", "dataUploadLicenseURL": "http://about.zenodo.org/policies/"}] ["other"] {"api": "https://zenodo.org/oai2d", "apiType": "OAI-PMH"} ["DOI"] http://dx.doi.org/10.5281/zenodo.6943 ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Zenodo is covered by Thomson Reuters Data Citation Index. Zenodo uses Altmetric metrics and provides impact information in the form of software citations (15.01.2019). Zenodo uses invenio repository software. OpenAIRE Orphan Record Repository got a make-over and was re-branded as ZENODO. Zenodo uses Invenio repository software. ZENODO was launched within the OpenAIREplus project as part of a European-wide research infrastructure. Easy upload and semi-automatic metadata completion by communication with existing online services such as DropBox for upload, Mendeley/ORCID/CrossRef/OpenAIRE for upload and pre-filling metadata. 2013-06-13 2019-01-15 +r3d100010469 Movebank Data Repository eng [] https://www.datarepository.movebank.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.httzv2"] ["support@movebank.org"] This data repository allows users to publish animal tracking datasets that have been uploaded to Movebank (https://www.movebank.org/ ). Published datasets have gone through a submission and review process, and are typically associated with a written study published in an academic journal. All animal tracking data in this repository are available to the public. eng ["disciplinary"] {"size": "253 data packages; 695 data files", "updatedp": "2021-11-29"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.datarepository.movebank.org/missionstatement [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "animal tracking", "biodiversity"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2010", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "Max Planck Institute of Animal Behavior", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Verhaltensbiologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ab.mpg.de/", "institutionIdentifier": ["ROR:026stee22"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["sdavidson@ab.mpg.de"]}, {"institutionName": "Universit\u00e4t Konstanz, Kommunikations-, Informations-, Medienzentrum", "institutionAdditionalName": ["KIM", "University of Konstanz, Communication, Information, Media Centre", "formerly: Bibliothek der Universit\u00e4t Konstanz"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kim.uni-konstanz.de/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["openscience@uni-konstanz.de"]}] [{"policyName": "General movebank terms of use", "policyURL": "https://www.movebank.org/cms/movebank-content/general-movebank-terms-of-use"}, {"policyName": "Preservation Policy", "policyURL": "https://www.datarepository.movebank.org/preservation#preservationpolicy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}] ["other"] yes {} ["DOI"] https://www.movebank.org/cms/movebank-content/citation-guidelines [] yes yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.datarepository.movebank.org/feed/atom_1.0/10255/3", "syndicationType": "ATOM"} Movebank is covered by Thomson Reuters Data Citation Index. 2013-06-20 2021-11-29 +r3d100010472 Phaidra Universität Wien eng [{"additionalName": "Permanent Hosting, Archiving and Indexing of Digital Resources and Assets", "additionalNameLanguage": "eng"}] https://phaidra.univie.ac.at/ [] ["phaidra@univie.ac.at", "support.phaidra@univie.ac.at"] Phaidra Universität Wien, is the innovative whole-university digital asset management system with long-term archiving functions, offers the possibility to archive valuable data university-wide with permanent security and systematic input, offering multilingual access using metadata (data about data), thus providing worldwide availability around the clock. As a constant data pool for administration, research and teaching, resources can be used flexibly, where continual citability allows the exact location and retrieval of prepared digital objects. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2008 ["deu", "eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://datamanagement.univie.ac.at/en/about-phaidra/policy-of-phaidra/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["digital objects", "hosting", "long-term-archiving", "multidisciplinary", "research"] [{"institutionName": "Phaidra Network", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://phaidra.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support.phaidra@univie.ac.at"]}, {"institutionName": "Universit\u00e4t Wien", "institutionAdditionalName": ["University of Vienna"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.univie.ac.at/", "institutionIdentifier": ["ROR:03prydq77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["phaidra@univie.ac.at", "susanne.blumesberger@univie.ac.at"]}] [{"policyName": "Open Access Policy Universit\u00e4t Wien", "policyURL": "https://openaccess.univie.ac.at/open-access/oa-policy-der-uni-wien/"}, {"policyName": "Phaidra \u2013 User Design and Terms of Use", "policyURL": "https://phaidra.univie.ac.at/terms_of_use/show_terms_of_use"}, {"policyName": "Policy of Phaidra", "policyURL": "https://datamanagement.univie.ac.at/en/about-phaidra/policy-of-phaidra/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/at/deed.de"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://phaidra.univie.ac.at/terms_of_use/show_terms_of_use"}] restricted [{"dataUploadLicenseName": "Phaidra tutorial 4", "dataUploadLicenseURL": "https://phaidra.univie.ac.at//static/tutorials/tutorial_4_metadaten.pdf"}] ["Fedora"] yes {"api": "https://services.phaidra.univie.ac.at/api/oai/", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Partners for similar projects: COAR, European Commission TEMPUS, europeaana, OpenAIRE. International account: phaidra.org 2013-06-24 2021-01-18 +r3d100010473 myExperiment eng [] https://www.myexperiment.org/home ["RRID:SCR_001795", "RRID:nif-0000-10309", "biodbcore-001470"] ["bugs@myexperiment.org", "http://www.myexperiment.org/feedback"] myExperiment is a collaborative environment where scientists can safely publish their workflows and in silico experiments, share them with groups and find those of others. Workflows, other digital objects and bundles (called Packs) can now be swapped, sorted and searched like photos and videos on the Web. Unlike Facebook or MySpace, myExperiment fully understands the needs of the researcher and makes it really easy for the next generation of scientists to contribute to a pool of scientific methods, build communities and form relationships — reducing time-to-experiment, sharing expertise and avoiding reinvention. myExperiment is now the largest public repository of scientific workflows. eng ["other"] {"size": "3.825 workflows; 10.509 members; 1.225 files; 470 packs", "updatedp": "2017-05-16"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.myexperiment.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bioclips", "Taverna", "e-science", "multidisciplinary", "semantic web", "social networking", "workflow"] [{"institutionName": "Biovel", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://biovel.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.biovel.eu/contact"]}, {"institutionName": "JISC", "institutionAdditionalName": ["Joint Information Systems Committee"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "Microsoft Research", "institutionAdditionalName": ["Technical computing Initiative"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://research.microsoft.com/en-us/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Manchester, School of Computer Science", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["carole.goble@manchester.ac.uk"]}, {"institutionName": "University of Oxford", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["dder@ecs.soton.ac.uk"]}, {"institutionName": "University of Southhampton, Electronics and Computer Science, Intelligence, Agents, Multimedia Group", "institutionAdditionalName": ["IAM"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.southampton.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["http://www.myexperiment.org/feedback"]}, {"institutionName": "myGrid", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mygrid.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2010", "institutionContact": []}] [{"policyName": "About myExperiment", "policyURL": "https://www.myexperiment.org/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "http://www.myexperiment.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.myexperiment.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "http://www.myexperiment.org/licenses/"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://de.creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/old-licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] ["other"] yes {"api": "http://www.myexperiment.org/mashup/api", "apiType": "REST"} ["DOI"] http://www.myexperiment.org/about [] yes yes [] [] {"syndication": "https://www.myexperiment.org/announcements.rss", "syndicationType": "RSS"} myExperiment is currently supported by three European Commission 7th Framework Programme (FP7) projects: BioVeL (Grant no. 283359), SCAPE (Grant no. 270137), and the Wf4Ever Project (Grant no. 270192) 2013-06-24 2021-11-16 +r3d100010474 International Food Policy Research Institute Dataverse eng [{"additionalName": "IFPRI Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/IFPRI [] ["ifpri@cgiar.org"] The International Food Policy Research Institute (IFPRI) seeks sustainable solutions for ending hunger and poverty. In collaboration with institutions throughout the world, IFPRI is often involved in the collection of primary data and the compilation and processing of secondary data. The resulting datasets provide a wealth of information at the local (household and community), national, and global levels. IFPRI freely distributes as many of these datasets as possible and encourages their use in research and policy analysis. IFPRI Dataverse contains following dataverses: Agricultural Science and Knowledge Indicators - ASTI, HarvestChoice, Statistics on Public Expenditures for Economic Development - SPEED, International Model for Policy Analysis of Agricultural Commodities and Trade - IMPACT, Africa RISING Dataverse and Food Security Portal Dataverse. eng ["disciplinary", "institutional"] {"size": "6 dataverses; 248 datasets", "updatedp": "2017-05-17"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20505 Nutritional Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.ifpri.org/ourwork/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "biosafety", "biotechnology", "health", "hunger", "natural resources management", "nutrition", "nutritional improvement", "poverty", "social accounting matrix", "sustainable food security"] [{"institutionName": "Consultative Group on International Agricultural Research", "institutionAdditionalName": ["CGIAR Consortium"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cgiar.org/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["s.immenschuh@cgiar.org"]}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://dataverse.org/", "institutionIdentifier": ["RRID:SCR_001997", "RRID:nif-0000-00316"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IFPRI", "institutionAdditionalName": ["International Food Policy Research Institute"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ifpri.org/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["IFPRI-Data@cgiar.org", "IFPRI-Library@cgiar.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "IFPRI open access policy", "policyURL": "https://www.ifpri.org/open-access-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ifpri.org/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://library.ifpri.info/data/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ifpri.org/open-access-policy"}] restricted [{"dataUploadLicenseName": "Data Deposit Terms", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://ebrary.ifpri.org/oai/oai.php", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://www.ifpri.org/rss", "syndicationType": "RSS"} IFPRI Dataverse is covered by Thomson Reuters Data Citation Index. IFPRI is one of 15 centers supported by the Consultative Group on International Agricultural Research (CGIAR), an alliance of 64 governments, private foundations, and international and regional organizations. IFPRI is part of the IQSS Harvard Dataverse Network 2013-06-26 2021-08-25 +r3d100010475 DataFed eng [{"additionalName": "Data Federation", "additionalNameLanguage": "eng"}] [] [] >>>>!!!!<<<< As of 2017-05-17 the data catalog is no longer available >>>>!!!!<<<< DataFed is a web services-based software that non-intrusively mediates between autonomous, distributed data providers and users. The main goals of DataFed are: Aid air quality management and science by effective use of relevant data - Facilitate the access and flow of atmospheric data from provider to users - Support the development of user-driven data processing value chains. DataFed Catalog links searchable Datafed applications worldwide. eng ["other"] {"size": "", "updatedp": ""} 2005 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://datafedwiki.wustl.edu/index.php/DataFed [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerosol", "air quality", "atmospheric data", "demography", "dust", "emissions", "fire", "gas", "meteor", "pollution"] [{"institutionName": "Earth Science Information Partners", "institutionAdditionalName": ["ESIP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.esipfed.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "NSF", "institutionAdditionalName": ["National Science Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "2004", "institutionContact": []}, {"institutionName": "OCG", "institutionAdditionalName": ["Open Geospatial Consortium"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.opengeospatial.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington University in St.Louis", "institutionAdditionalName": ["CAPITA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://datafedwiki.wustl.edu/index.php/Contacts"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] {"api": "https://www.programmableweb.com/api/datafed-wcs", "apiType": "SOAP"} ["none"] [] unknown yes [] [] {} The DataFed development was initiated by the CAPITA group (2001-3).CAPITA group: R. Husar (architecture), K. Höijärvi (software), S. Falke (data). By 2004, some components are contributed by the interested community Funding from projects that use DataFed: NAM Emission, FASNET, CATT 2013-06-27 2019-10-25 +r3d100010477 ANU Data Commons eng [{"additionalName": "Australian National University Data Commons", "additionalNameLanguage": "eng"}] https://datacommons.anu.edu.au/DataCommons/ [] ["repository.admin@anu.edu.au"] The Australian National University undertake work to collect and publish metadata about research data held by ANU, and in the case of four discipline areas, Earth Sciences, Astronomy, Phenomics and Digital Humanities to develop pipelines and tools to enable the publication of research data using a common and repeatable approach. Aims and outcomes: To identify and describe research data held at ANU, to develop a consistent approach to the publication of metadata on the University's data holdings: Identification and curation of significant orphan data sets that might otherwise be lost or inadvertently destroyed, to develop a culture of data data sharing and data re-use. eng ["institutional"] {"size": "184 records", "updatedp": "2019-01-16"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datacommons.anu.edu.au/DataCommons/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomy", "digital humanities", "earth sciences", "phenomics", "seismology"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["doug.moncur@anu.edu.au"]}, {"institutionName": "Australian National University", "institutionAdditionalName": ["ANU"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.anu.edu.au/", "institutionIdentifier": ["ROR:019wvm592", "RRID:SCR_001086", "RRID:nlx_23045"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Group of Eight Australia", "institutionAdditionalName": ["Go8"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://go8.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Alliance of Research Universities", "institutionAdditionalName": ["IARU"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iaruni.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ANU Research Data Management Policy", "policyURL": "https://libguides.anu.edu.au/c.php?g=881167&p=6358493"}, {"policyName": "Australian Code for the Responsible Conduct of Research", "policyURL": "https://www.nhmrc.gov.au/sites/default/files/documents/reports/australian-code-responsible-conduct-research.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://anulib.anu.edu.au/research-learn/copyright"}] restricted [{"dataUploadLicenseName": "Data Deposit Requirements of Selected Science Journals", "dataUploadLicenseURL": "https://libguides.anu.edu.au/c.php?g=881167&p=6358501"}] ["Fedora"] {} ["DOI"] https://libguides.anu.edu.au/c.php?g=881167&p=6334239 [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} This project was supported by the Australian National Data Service (ANDS). ANDS is supported by the Australian Government through the National Collaborative Research Infrastructure Strategy Program and the Education Investment Fund (EIF) Super Science Initiative. The ANU Data Commons was developed in 2012. 2013-06-28 2021-02-18 +r3d100010478 GigaDB eng [{"additionalName": "GigaScience Database", "additionalNameLanguage": "eng"}] http://gigadb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.rcbwsf", "RRID:SCR_004002", "RRID:nlx_158413"] ["database@gigasciencejournal.com"] GigaDB primarily serves as a repository to host data and tools associated with articles published by GigaScience Press; GigaScience and GigaByte (both are online, open-access journals). GigaDB defines a dataset as a group of files (e.g., sequencing data, analyses, imaging files, software programs) that are related to and support a unit-of-work (article or study). GigaDB allows the integration of manuscript publication with supporting data and tools. eng ["disciplinary"] {"size": "2068 datasets", "updatedp": "2021-07-14"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://gigadb.org/site/term [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CT data", "FAIR", "MRI image data", "biocuration", "biodiversity", "biology", "biomedical sciences", "biomedicine", "data publishing", "genomics", "human genetics", "microscopy data", "optical imaging", "transcriptome sequence"] [{"institutionName": "Beijing Genomics Institute", "institutionAdditionalName": ["BGI"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomics.cn/en/index", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "China National Genebank", "institutionAdditionalName": ["CNGB", "\u56fd\u5bb6\u57fa\u56e0\u5e93\u5927\u9e4f\u603b\u90e8"], "institutionCountry": "HKG", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.cngb.org/#", "institutionIdentifier": ["ROR:03n9hr695"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GigaScience Press", "institutionAdditionalName": [], "institutionCountry": "HKG", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://gigasciencepress.com/", "institutionIdentifier": ["ISNI:0000 0004 7882 355X"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["editorial@gigasciencejournal.com"]}] [{"policyName": "Terms of Use", "policyURL": "http://gigadb.org/site/term"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://gigadb.org/site/term"}] restricted [{"dataUploadLicenseName": "Submission Guidelines", "dataUploadLicenseURL": "http://gigadb.org/site/guide"}] ["other"] {"api": "http://gigadb.org/site/help#0.1_API", "apiType": "other"} ["DOI"] http://gigadb.org/site/about ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {"syndication": "http://gigadb.org/rss/latest", "syndicationType": "RSS"} GigaDB is covered by Thomson Reuters Data Citation Index. GigaScience is an online, open-access journal that includes, as part of its publishing activities, the database GigaDB. GigaScience is co-published in collaboration between BGI and Oxford University Press, to meet the needs of a new generation of biological and biomedical research as it enters the era of “big-data. 2013-07-01 2021-07-19 +r3d100010479 DataBox eng [{"additionalName": "DataBox Dataverse Network", "additionalNameLanguage": "eng"}] [] [] !!! the repository is no longer available, archived site: http://archive.is/6UyFH/image!!! DataBox is a digital archive for scientific primary data for use by researchers at The University of Copenhagen. DataBox is available to researchers, departments and institutes at the University and research groups with an affiliation to the University of Copenhagen. DataBox serves as an additional backup system, which archives data in a structured form for both short and medium term preservation. It can also serve as a way of sharing data. Each researcher/group can create his/her own space in DataBox and can store and process the data, and if he/she chooses to share his/her data. Version history of files is retained by the system. eng ["institutional"] {"size": "", "updatedp": ""} 2012 2015 ["dan", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [] ["dataProvider"] [] [{"institutionName": "Copenhagen University Library Service", "institutionAdditionalName": ["CULIS", "KUBIS", "Kobenhavns Universitets Biblioteksservice"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www5.kb.dk/en/kub", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["forskerservice@kb.dk"]}, {"institutionName": "The Royal Library", "institutionAdditionalName": ["Det Kongelige Bibliotek"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kb.dk/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Copenhagen", "institutionAdditionalName": ["Kobenhavns Universitet"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ku.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [] closed [] [] {} [] [] unknown yes [] [] {} 2013-07-02 2021-06-07 +r3d100010480 COSYNA Data web portal eng [{"additionalName": "CODM", "additionalNameLanguage": "eng"}] https://codm.hzg.de/codm/ [] ["gisbert.breitbach@hzg.de"] The COSYNA observatory measures key physical, sedimentary, geochemical and biological parameters at high temporal resolution in the water column and at the sediment and atmospheric boundaries. COSYNA delivers spatial representation through a set of fixed and moving platforms, like tidal flats poles, FerryBoxes, gliders, ship surveys, towed devices, remote sensing, etc.. New technologies like underwater nodes, benthic landers and automated sensors for water biogeochemical parameters are further developed and tested. A great variety of parameters is measured and processed, stored, analyzed, assimilated into models and visualized. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.hzg.de/institutes_platforms/cosyna/index.php.en [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AUV", "Geodata", "North Sea", "arctic seas", "buoys", "coastal research", "ferrybox", "forecasts", "measurements", "oberservation", "offshore stations", "satellite Remote Sensing", "sediment", "series of various oceanographic parameters"] [{"institutionName": "Helmholtz-Zentrum hereon GmbH", "institutionAdditionalName": ["hereon"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hereon.de/index.php.en", "institutionIdentifier": ["ROR:03qjp1d79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["burkard.baschek@hereon.de", "holger.brix@hereon.de"]}] [{"policyName": "COSYNA Data Policies", "policyURL": "https://www.hereon.de/imperia/md/content/gkss/institut_fuer_kuestenforschung/kok/icon/co_po_001_00_4_data_policies.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.hereon.de/imperia/md/content/gkss/institut_fuer_kuestenforschung/kok/icon/co_po_001_00_4_data_policies.pdf"}] restricted [] ["other"] {} ["other"] https://www.hereon.de/imperia/md/content/gkss/institut_fuer_kuestenforschung/kok/icon/co_po_001_00_4_data_policies.pdf [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The scientific work is carried out jointly with partners of the Helmholtz association, universities, and monitoring authorities.: https://www.hereon.de/institutes/coastal_ocean_dynamics/cosyna/research_topics/partners/index.php.en COSYNA data access and data management: https://www.hereon.de/institutes/coastal_ocean_dynamics/cosyna/data_management/index.php.en The coastal platform of ACROSS will extend COSYNA to the land side (estuary) and to more offshore regions of the North Sea. http://across-project.de/coastal-platform/ 2013-07-03 2021-04-06 +r3d100010482 GAVO Data Center eng [{"additionalName": "German Astrophysical Virtual Observatory Data Center", "additionalNameLanguage": "eng"}] http://dc.zah.uni-heidelberg.de/ [] ["gavo@ari.uni-heidelberg.de"] The GAVO data center at Zentrum für Astronomie Heidelberg provides VO publication services to all interested parties on behalf of the German Astrophysical Virtual Observatory. It's a A growing collection of data and services. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007-11-22 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomy", "astrophysics", "cosmology", "galaxy", "gravitation", "magnetic fields", "quasars", "solar physics"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Astrophysical Virtual Observatory", "institutionAdditionalName": ["GAVO"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.g-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Heidelberg, Centre for Astronomy, Astronomisches Rechen-Institut", "institutionAdditionalName": ["Universit\u00e4t Heidelberg, Zentrum f\u00fcr Astronomie, Astronomisches Rechen-Institut", "ZAH ARI"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.zah.uni-heidelberg.de/de/ari/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["gavo@ari.uni-heidelberg.de", "msdemlei@ari.uni-heidelberg.de"]}] [{"policyName": "Legal Matters", "policyURL": "http://dc.zah.uni-heidelberg.de/static/doc/disclaimer.shtml"}, {"policyName": "Privacy Policy", "policyURL": "http://dc.zah.uni-heidelberg.de/static/doc/privpol.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/licenses/gpl-3.0.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dc.zah.uni-heidelberg.de/static/doc/disclaimer.shtml"}] restricted [] [] {"api": "http://docs.g-vo.org/DaCHS/apidoc/gavo.registry.model.OAI.description-class.html", "apiType": "OAI-PMH"} ["DOI", "other"] http://dc.g-vo.org/hsoy/q/q/howtocite [] yes unknown [] [] {"syndication": "http://dc.g-vo.org/regrss", "syndicationType": "RSS"} GAVO is a Member of the International Virtual Observatory Alliance. The data center contains about 100 different services, most of which are accessible through the various VO protocols (SIAP, SSAP, SCS, TAP, SLAP). The citation guidelines above are just examples; they change from service to service. GAVO Data Center is covered by Thomson Reuters Data Citation Index. 2013-07-08 2019-02-20 +r3d100010483 AUSSDA Dataverse eng [{"additionalName": "The Austrian Social Science Data Archive", "additionalNameLanguage": "eng"}] https://data.aussda.at/ ["FAIRsharing_DOI:10.25504/FAIRsharing.RJ3PDJ"] ["info@aussda.at"] AUSSDA - The Austrian Social Science Data Archive is a certified, national research infrastructure for the social science community. We offer sustainable and easy-to-use services in the field of digital archiving. The main beneficiaries are researchers, students, educational institutions and media professionals. We implement international standards to make research data findable, accessible, interoperable and reusable according to the FAIR principles. AUSSDA supports the open science movement to maximize the potential for data reuse. We stand for integrity in archiving and advocate for compliance with data protection and ethical principles in research data management. AUSSDA represents Austria as a national service provider in CESSDA ERIC, has locations at the universities of Vienna, Graz, Linz and Innsbruck and works within a network of national and international partners. eng ["disciplinary"] {"size": "17 Dataverses; 1157 Datasets; 2.794 files", "updatedp": "2021-11-25"} 2016-11 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.aussda.at/en/about-aussda/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["EOSC", "FAIR", "mass media use", "microdata", "national identity", "political efficacy", "social inequality"] [{"institutionName": "Austrian Federal Ministry of Education, Science and Research", "institutionAdditionalName": ["BMBWF", "Bundesministerium f\u00fcr Bildung, Wissenschaft und Forschung"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbwf.gv.at/", "institutionIdentifier": ["ROR:03gng8t46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ministerium@bmbwf.gv.at"]}, {"institutionName": "Johannes Kepler University Linz, Institute of Sociology, Department of Empirical Social Science Research", "institutionAdditionalName": ["AES", "Johannes Kepler Universit\u00e4t Linz, Institut f\u00fcr Soziologie, Abteilung f\u00fcr Empirische Sozialforschung"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jku.at/institut-fuer-soziologie/abteilungen/empirische-sozialforschung/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@aussda.at"]}, {"institutionName": "University of Graz, Center for Social Research", "institutionAdditionalName": ["CSR", "Universit\u00e4t Graz, Zentrum f\u00fcr Sozialforschung"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://centrum-sozialforschung.uni-graz.at/de/aussda/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@aussda.at"]}, {"institutionName": "Universit\u00e4t Wien, University Library", "institutionAdditionalName": ["Universit\u00e4t Wien, Universit\u00e4tsbibliothek"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://bibliothek.univie.ac.at/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@aussda.at"]}] [{"policyName": "AUSSDA Terms of Service", "policyURL": "https://aussda.at/en/terms-of-service/"}, {"policyName": "AUSSDA Transfer and License Agreements", "policyURL": "https://www.aussda.at/fileadmin/user_upload/p_aussda/Documents/AUSSDA_Uebergabe_Nutzungsvertrag_openaccess_v1.1_ENGLISH.pdf"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/07/AUSSDA-The-Austrian-Social-Science-Data-Archive.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}] restricted [] ["DataVerse"] {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} AUSSDA is member of CESSDA ERIC (Council of European Social Science Data Archives): https://www.cessda.eu/ Data archived before November 2017, for example the microcensus, can be found in our former archiving system, http://finddata.aussda.at/webview/; The previous archiv WISDOM (Wiener Institut für sozialwissenschaftliche Dokumentation und Methodik) is closed. AUSSDA partners: http://www.aussda.at/en/about-aussda/governance/ 2013-08-14 2021-11-25 +r3d100010484 Czech Social Science Data Archive eng [{"additionalName": "CSDA", "additionalNameLanguage": "eng"}] http://archiv.soc.cas.cz/en/finding-data-csda [] [] The Czech Social Science Data Archive (CSDA) of the Institute of Sociology of the Academy of Sciences of the Czech Republic accesses, processes, documents and stores data files from social science research projects and promotes their dissemination to make them widely available for secondary use in academic research and for educational purposes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["ces", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://archiv.soc.cas.cz/en/about-czech-social-science-data-archive [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Czech social science surveys"] [{"institutionName": "Institute of Sociology of the Academy of Sciences of the Czech Republic", "institutionAdditionalName": ["ASCR", "Sociologick\u00fd \u00fastav AV \u010cR, v.v.i."], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.soc.cas.cz", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["archiv@soc.cas.cz"]}, {"institutionName": "Ministry of Education, Youth and Sports", "institutionAdditionalName": ["M\u0160MT \u010cR"], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.msmt.cz", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/eng/Projects/All-projects/CESSDA-SaW/WP3/CESSDA-CDM/Part-2-CRA2-Digital-Object-Management/CPA2.3-Access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://archivreg.soc.cas.cz/registrace/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.oecd.org/sti/sci-tech/38500813.pdf"}] restricted [{"dataUploadLicenseName": "other", "dataUploadLicenseURL": "http://archiv.soc.cas.cz/en/data-deposition"}] ["other"] {} ["none"] [] unknown yes ["other"] [] {} CSDA is a member organisation of CESSDA ERIC https://www.cessda.eu/ 2013-08-14 2019-02-20 +r3d100010485 Eesti Sotsiaalteaduslik Andmearhiiv est [{"additionalName": "ESSDA", "additionalNameLanguage": "eng"}, {"additionalName": "ESTA", "additionalNameLanguage": "est"}, {"additionalName": "Estonian Social Science Data Archive", "additionalNameLanguage": "eng"}] http://esta.ut.ee/ [] ["socarch@psych.ut.ee"] The Estonian Social Science Data Archive (ESSDA) contains Estonian Social science data and survey data, as well as university publications and Estonian radio archival materials. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng", "est"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://sisu.ut.ee/esta/tutvustus [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Estonia", "Estonian radio", "SPSS", "music", "politics", "survey data"] [{"institutionName": "Consortium of European Social Science Data Archives European Research Infrastructure Consortium", "institutionAdditionalName": ["CESSDA ERIC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Tartu, Department of Sociology", "institutionAdditionalName": ["Tartu \u00dclikool, Sotsiaal- ja Haridusteaduskond"], "institutionCountry": "EST", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/et", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["socarch@psych.ut.ee"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "ESTA Confidentiality Obligation", "policyURL": "https://sisu.ut.ee/esta/konfidentsiaalsuskohustus"}, {"policyName": "ESTA Data Archive Statement", "policyURL": "https://sisu.ut.ee/esta/andmearhiivi-statuut"}, {"policyName": "ESTA Sample use agreement", "policyURL": "https://sisu.ut.ee/esta/kasutamislepingu-n%C3%A4idis"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://sisu.ut.ee/esta/kasutamislepingu-n%C3%A4idis"}] restricted [{"dataUploadLicenseName": "Deposit agreement", "dataUploadLicenseURL": "https://sisu.ut.ee/esta/talletamislepingu-n%C3%A4idis"}] ["Nesstar"] {} ["none"] [] unknown unknown [] [] {} ESTA is a partner of CESSDA ERIC https://www.cessda.eu/ 2013-08-28 2019-01-16 +r3d100010486 Rigsarkivets surveydata dan [{"additionalName": "National Archives' survey data", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: DDA", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Danish Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Dansk Data Arkiv", "additionalNameLanguage": "dan"}] https://www.sa.dk/da/forskning/for-forskere/benyt-surveydata/ [] ["mailboxDDA@sa.dk"] The National Archives makes Denmark's largest collection of questionnaire-based research data available to researchers and students. Order quantitative research data, conduct analyzes online and access register data and international survey data. Formerly known as the Danish Data Archive (DDA), it was the national social science data archive. eng ["disciplinary"] {"size": "2.500 studies", "updatedp": "2019-10-24"} ["dan", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["historical-demographic data"] [{"institutionName": "Rigsarkivet", "institutionAdditionalName": ["The Danish National Archives"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sa.dk/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mailbox@sa.dk"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://dda.dk/order/order.html"}] restricted [{"dataUploadLicenseName": "Aflevering af forskningsdata", "dataUploadLicenseURL": "https://www.sa.dk/wp-content/uploads/2017/12/Vejledning-om-afleveringsformater-dokumentation-af-data-mm-ved-aflevering-af-forskningsdata-til-Rigsarkivet_nov2017.pdf"}] ["other"] {"api": "http://dda.dk/search-api?", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Access to the datasets via order. DDA is a member of CESSDA ERIC - an organisation for European social science data archives - which co-operates on EU-projects, agreements on access to holdings in national data archives etc. DDA is active in the Data Documentation Initiative - an international co-operation to define standards for the documentation of metadata. DDA has a member on the steering committee and is involved in the development of software tools for implementing the DDI standard. 2013-08-14 2019-10-24 +r3d100010487 Slovenian Social Science Data Archives eng [{"additionalName": "ADP", "additionalNameLanguage": "slv"}, {"additionalName": "Arhiv druzboslovnih podatkov", "additionalNameLanguage": "slv"}] https://www.adp.fdv.uni-lj.si/eng/ [] ["https://www.adp.fdv.uni-lj.si/eng/kontakt/"] The Slovenian Social Science Data Archives (Slovenski Arhiv Družboslovnih podatkov - ADP) were established in 1997 as an organizational unit within the Institute of Social Sciences at the Faculty of Social Sciences, University of Ljubljana. Its tasks are to acquire significant data sources within a wide range of social science disciplines of interest to Slovenian social scientists, review and prepare them for digital preservation, and to disseminate them for further scientific, educational and other purposes. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng", "slv"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.adp.fdv.uni-lj.si/eng/spoznaj/adp/poslanstvo/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Slovenia", "Slovenian social science data"] [{"institutionName": "Ministry of Higher Education, Science and Technology", "institutionAdditionalName": ["MVZT", "Ministrstvo za visoko \u0161olstvo, znanost in tehnologijo"], "institutionCountry": "SVN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.arhiv.mvzt.gov.si/en/", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Ljubljana, Institute of Social Sciences", "institutionAdditionalName": ["Univerza v Ljubljani, Fakulteta za dru\u017ebene vede"], "institutionCountry": "SVN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fdv.uni-lj.si/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["arhiv.podatkov@fdv.uni-lj.si"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/Tools-Services/For-Service-Providers/CESSDA-CDM/Part-2-CRA2-Digital-Object-Management/CPA2.3-Access"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://www.adp.fdv.uni-lj.si/eng/spoznaj/politika/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.adp.fdv.uni-lj.si/eng/deli/postopek/izjava/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "License Agreement", "dataUploadLicenseURL": "https://www.adp.fdv.uni-lj.si/eng/deli/postopek/izjava/"}] ["Nesstar"] yes {} ["DOI"] https://www.adp.fdv.uni-lj.si/opisi/ads983/ [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "https://www.adp.fdv.uni-lj.si/feed/novice/", "syndicationType": "RSS"} For information regarding the deposit of data, contact ADP: https://www.adp.fdv.uni-lj.si/eng/kontakt/ ADP is a member organisation of CESSDA ERIC https://www.cessda.eu/ 2013-08-14 2019-10-23 +r3d100010488 LISER eng [{"additionalName": "Luxembourg Institute of Socio-Economic Research", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CEPS/INSTEAD Surveys", "additionalNameLanguage": "eng"}] https://www.liser.lu [] ["contact@liser.lu"] Initiated in 1989 and established in 2014, the Luxembourg Institute of Socio-Economic Research (LISER) is a public research institute located in Luxembourg under the supervision of the Ministry of Higher Education and Research. Integrated into a unified legal framework (law of 3 December 2014) LISER’s missions are to undertake both fundamental and applied research in social sciences that aim to advance knowledge, support public policy both at the national and European level and inform society. LISER contributes to the advancement of scientific knowledge in social and economic matters across the activities of its three research departments "Living Conditions", "Labour Market" and "Urban Development and Mobility". In parallel, the institute aligns itself with national and European priorities and fosters interdisciplinarity by focusing its research work on three priority research programmes: “Crossing Borders”, "Health and Health Systems" and "Digital Transformation". LISER hosts two complementary infrastructures, key drivers of its research development and excellence. - The Data Centre, which consists of two pillars, the data collection capability (direct and indirect data collection), and the data archiving and data management capability. - The Behavioural and Experimental Economics dedicated to investigating human decision-making by means of experiments performed in controlled environments. Its experimental approach contributes to improving the understanding of human behaviour in a large variety of socioeconomic contexts. LISER aims to be an internationally recognized socio-economic research institute specializing in the analysis of societal changes. Through its inter-and-multidisciplinary research, it makes a proactive and targeted contribution to the sustainable and inclusive development of societies at the national and international levels. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.liser.lu/?type=module&id=147 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["social policy"] [{"institutionName": "Luxembourg Institute of Socio-Economic Research", "institutionAdditionalName": ["formerly CEPS/INSTEAD", "formerly: Centre d'Etudes de Populations, de Pauvret\u00e9 et de Politiques socio-economiques"], "institutionCountry": "LUX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ceps.lu", "institutionIdentifier": ["ROR:040jf9322"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dataservice.liser.lu/web/content/21784?download=true"}] closed [] [] {} [] [] yes yes [] [] {} 2013-08-14 2021-10-04 +r3d100010489 Centro de Investigaciones Sociologicas Data Bank y Estudios spa [{"additionalName": "Banco de Datos Espec\u00edfico de Estudios Sociales - ARCES del CIS", "additionalNameLanguage": "spa"}, {"additionalName": "CIS Data Bank", "additionalNameLanguage": "eng"}] http://www.cis.es/cis/opencms/EN/index.html [] [] The majority of the CIS research activity focuses on carrying out public opinion surveys. These surveys include electoral studies, its monthly public opinion barometers, monographic studies on different aspects of Spanish society and the surveys resulting from CIS involvement in international projects. All the surveys the CIS takes are deposited in its Data Bank, and they are available to the public once the quality control, verification, anonymisation, codification and information uploading tasks have been concluded. In addition to its surveys, the CIS also collects information about Spanish society through qualitative research studies: Fundamentally, discussion groups and in-depth interviews. eng ["institutional"] {"size": "", "updatedp": ""} 2006 ["cat", "eng", "eus", "fra", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["electoral studies", "public opinion surveys", "qualitative studies", "spanish society"] [{"institutionName": "Centro de Investigaciones Sociologicas", "institutionAdditionalName": ["CIS"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cis.es/cis/opencms/ES/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cis@cis.es"]}] [{"policyName": "Disclaimer", "policyURL": "http://www.cis.es/cis/opencms/EN/Avisolegal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cis.es/cis/opencms/EN/Avisolegal.html"}] restricted [{"dataUploadLicenseName": "Disclaimer", "dataUploadLicenseURL": "http://www.cis.es/cis/opencms/EN/Avisolegal.html"}] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-08-14 2019-02-28 +r3d100010490 Finnish Social Science Data Archive eng [{"additionalName": "FSD", "additionalNameLanguage": "eng"}, {"additionalName": "Yhteiskuntatieteellinen tietoarkisto", "additionalNameLanguage": "fin"}] https://www.fsd.tuni.fi/en/ ["FAIRsharing_doi:10.25504/FAIRsharing.2okP6D", "ISNI:0000 0004 7448 6517"] ["fsd@tuni.fi", "https://www.fsd.tuni.fi/en/contact/"] The Finnish Social Science Data Archive (FSD) is a national resource centre for social science research and teaching. FSD archives, promotes and disseminates digital research data for research, teaching and learning purposes. Data descriptions are published in Finnish and English on FSD’s service portal Aila Data Service, through which users also download data. Quantitative datasets are translated from Finnish into English on request, and a large number of datasets are available in English. All services are free of charge. FSD promotes transparency, accumulation and efficient reuse of scientific research as well as open access to research data. FSD is the Finnish Service Provider for CESSDA ERIC. eng ["disciplinary"] {"size": "1,567 datasets", "updatedp": "2021-02-15"} 1999-01-01 ["eng", "fin", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.fsd.tuni.fi/en/data-archive/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["data archives", "data curation", "long-term preservation", "qualitative data", "quantitative data", "secondary research"] [{"institutionName": "Tampere University", "institutionAdditionalName": ["Tampereen yliopisto"], "institutionCountry": "FIN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tuni.fi/en", "institutionIdentifier": ["ROR:033003e23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tuni.fi/en/about-us/tampere-university/contact-us-tampere-university"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "CoreTrustSeal assessment FSSDA", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/11/Finnish-Social-Science-Data-Archive.pdf"}, {"policyName": "FSD Operational Guidelines", "policyURL": "https://www.fsd.tuni.fi/en/data-archive/documents/records-management-and-archives-formation-plan/operational-guidelines/"}, {"policyName": "General Terms and Conditions for Data Use", "policyURL": "https://services.fsd.tuni.fi/docs/terms-of-use?lang=en"}, {"policyName": "Quality, Assessment and Development at the Finnish Social Science Data Archive", "policyURL": "https://www.fsd.tuni.fi/en/data-archive/quality-assurance/"}, {"policyName": "Terms and Conditions for the Use of the Aila Data Service", "policyURL": "https://services.fsd.tuni.fi/docs/eula?lang=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.fsd.tuni.fi/files/deposition_agreement.pdf"}] restricted [{"dataUploadLicenseName": "Guidelines for Depositing Data", "dataUploadLicenseURL": "https://www.fsd.tuni.fi/en/services/depositing-data/guidelines-for-depositing-data/"}] [] yes {"api": "http://services.fsd.tuni.fi/v0/oai", "apiType": "OAI-PMH"} ["URN"] https://www.fsd.tuni.fi/en/data/downloading-and-using-data/citing-data/ [] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Finnish Social Science Data Archive is covered by CESSDA Data Catalogue and Data Citation Index. Metadata are harvestable in DDI Codebook, OAI Dublin Core, and EAD3 formats through OAI-PMH metadata server. Further information about accessing data: https://www.fsd.tuni.fi/en/data/downloading-and-using-data/. 2013-08-14 2021-03-24 +r3d100010491 Social Data Network eng [{"additionalName": "Greek Social Data Bank (earlier name)", "additionalNameLanguage": "eng"}, {"additionalName": "SO.DA.NET", "additionalNameLanguage": "eng"}, {"additionalName": "SoDaNet", "additionalNameLanguage": "eng"}, {"additionalName": "The Greek research infrastructure for social sciences", "additionalNameLanguage": "eng"}] http://sodanet.gr/en/ [] ["http://sodanet.gr/en/contact"] So.Da.Net network, following the Social Data Bank (SDB) of the National Centre for Social Research (EKKE) that pre-existed, in a time frame of five years has been linked and closely collaborated with the european data archives. EKKE through SDB has participated to the European Consortium of Social Science Data Archives (CESSDA ERIC) since 2000. The national research network Sodanet_GR has been formed in 2012 and is consisted of the following 7 organisations: 1) National Centre for Social Research (EKKE) – Social Data Bank 2) University of the Aegean – Department of Sociology 3) National & Kapodistrian University of Athens – Department of Political Science & Public Administration 4) Panteion University – Department of Political Science & History 5) University of Peloponnese – Department of Social & Educational Policy 6) Democritus University of Trace – Department of Social Administration & Political Science 7) University of Crete – Department of Sociology . The So.Da.Net network is the Greek research infrastructure for the social sciences. So.Da.Net supports multidisciplinary research and promotes the acquisition, exchange, processing as well as dissemination of data deriving from and related to social science research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["ell", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://sodanet.gr/en/what-is-sodanet [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "microdata"] [{"institutionName": "Consortium of European Social Science Data Archives European Research Infrastructure Consortium", "institutionAdditionalName": ["CESSDA ERIC"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/", "institutionIdentifier": ["cessda@cessda.eu"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Democritus University of Thrace, Department of Social Administration & Political Science", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://socadm.duth.gr/en/the-department/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["papanastasiou.stefanos@gmail.com"]}, {"institutionName": "National & Kapodistrian University of Athens, Department of Political Science and Public Administration", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.pspa.uoa.gr/the-department/profile.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["itsirbas@pspa.uoa.gr"]}, {"institutionName": "National Centre for Social Research", "institutionAdditionalName": ["EKKE", "Ethniko Kentro Koinonikon Erevnon"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ekke.gr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cfredzu@ekke.gr", "http://www.ekke.gr/main.php?id=309"]}, {"institutionName": "Panteion University, Department of Political Science and History", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://polhist.panteion.gr/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["vasi-geo@otenet.gr"]}, {"institutionName": "University of Aegean, Department of Sociology", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.soc.aegean.gr/index.php/en-m-aggliki-glossa", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["socd15070@soc.aegean.gr"]}, {"institutionName": "University of Crete, School of Social Sciences , Department of Sociology", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sociology.soc.uoc.gr/sociology_en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["chr.maipa@gmail.com"]}, {"institutionName": "University of Peleponnese, Department of Social & Education Policy", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dsep.uop.gr/index.php?option=com_content&view=frontpage&Itemid=1&lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gfragoul@yahoo.gr"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "Social Policy", "policyURL": "http://www.ekke.gr/main.php?id=302"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://sodanet.gr/en/sodanet-services/user-registration"}] restricted [] ["Nesstar"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2013-08-21 2019-08-07 +r3d100010492 LiDA eng [{"additionalName": "Lietuvos HSM duomen\u0173 archyvas", "additionalNameLanguage": "lit"}] https://lida.dataverse.lt [] [] Lithuanian Data Archive for Social Sciences and Humanities (LiDA) is a virtual digital infrastructure for data acquisition, long-term preservation and dissemination. It provides access to more than 700 datasets. All the international and national data resources are documented in both Lithuanian and English. LiDA curates most of the data collected conducting the most important international social surveys in Lithuania – the European Social Survey, European Values Studies, European Election Studies and the International Social Research Program. eng ["disciplinary"] {"size": "700 data sets", "updatedp": "2021-11-03"} 2006 ["eng", "lit"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://data.ktu.edu/en-lida/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["political processes", "political structures", "social conditions", "survey data", "value orientations"] [{"institutionName": "Kaunas University of Technology, Centre for Data Analysis and Archiving", "institutionAdditionalName": ["Kauno technologijos universiteto Duomen\u0173 analiz\u0117s ir archyvavimo centras"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ktu.edu/en/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["data@ktu.lt"]}, {"institutionName": "Republic of Lithuania Ministry of Education and Science", "institutionAdditionalName": ["\u0160vietimo ir mokslo ministerija"], "institutionCountry": "LTU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.smm.lt/web/en/", "institutionIdentifier": ["ROR:0137z3b32"], "responsibilityStartDate": "2006", "responsibilityEndDate": "2021", "institutionContact": []}, {"institutionName": "Vilnius University, Institute for Social Research", "institutionAdditionalName": ["Vilniaus universitetas"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vu.lt/en", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "2021", "institutionContact": []}] [{"policyName": "Terms of use for the LiDA Dataverse repository data", "policyURL": "https://data.ktu.edu/en-lida/#terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] ["DataVerse"] yes {"api": "https://lida.dataverse.lt/api/datasets/export?exporter=OAI_ORE&persistentId=hdl%3A21.12137/FZKGYG", "apiType": "OAI-PMH"} ["hdl"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} not all the datasets are available, as in 2019-2021 a migration project from the old infrastructure is being implemented 2013-08-21 2021-11-03 +r3d100010493 Norwegian Centre for Research Data eng [{"additionalName": "NSD", "additionalNameLanguage": "nor"}, {"additionalName": "Norsk senter for forskningsdata", "additionalNameLanguage": "nor"}] https://nsd.no/nsd/english/ ["FAIRsharing_doi:10.25504/FAIRsharing.mKDii0"] ["dataarkivering@nsd.no", "https://nsd.no/nsd/english/kontakt.html"] NSD - Norwegian Centre for Research Data is a national archive and center for research data. Our main competencies lie in curating and archiving research data (including sensitive data) in compliance with international metadata standards, such as DDI. We offer long term data preservation (>10 years), data dissemination and data access management as per data owner requirements. NSD has a large professional team with competency in the field of personal data protection in research. We are committed to continuously providing researchers with modern services to easily archive, share and access data without major legal, economic or practical obstacles. NSD archives and disseminates data for both national and international research communities. NSD is the Norwegian service provider for CESSDA ERIC, and is a certified Trusted Digital Repository. NSD is responsible for archiving data from projects funded by the Norwegian Research Council, and for archiving publicly funded research data on behalf of The National Archives of Norway. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nsd.no/nsd/english/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["international social science surveys", "national research data archive", "political system", "qualitative social sciences"] [{"institutionName": "Norwegian Centre for Research Data", "institutionAdditionalName": ["NSD", "Norsk senter for forskningsdata"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nsd.uib.no/nsd/english/index.html", "institutionIdentifier": ["ROR:04y3kre43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsd.uib.no/nsd/english/kontakt.html", "nsd@nsd.uib.no"]}, {"institutionName": "Research Council of Norway", "institutionAdditionalName": ["Forskningsradet"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.forskningsradet.no/en/", "institutionIdentifier": ["ROR:00epmv149"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Personal data protection", "policyURL": "https://www.forskningsradet.no/en/footer/Personal-data-protection-privacy-statement/"}, {"policyName": "Procedures for accessing NSDs data", "policyURL": "http://www.nsd.uib.no/nsddata/utlaansrutiner_en.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nsd.uib.no/nsd/english/order.html"}] restricted [] ["Nesstar"] yes {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.nsd.uib.no/rss/nsd", "syndicationType": "RSS"} CLARIN Knowledge Centre for Data Management at NSD. NSD is part of a broad international network of international organisations and through its commitments to a wide range of projects aiming at building a resource base for comparative quantitative research. NSD is a member of the following international organisations: Council of European Social Science Data Archives (CESSDA ERIC) International Federation of Data Organisations for the Social Sciences (IFDO) Inter-university Consortium for Political and Social Research (ICPSR) Luxembourg Income Study (LIS) International Social Survey Programme (ISSP) Data Documentation Initiative (DDI Alliance) 2013-08-23 2021-06-21 +r3d100010494 Quetelet PROGEDO Diffusion fra [{"additionalName": "French data archives for social sciences", "additionalNameLanguage": "eng"}, {"additionalName": "R\u00e9seau fran\u00e7ais des centres de donn\u00e9es pour les sciences sociales", "additionalNameLanguage": "fra"}] http://quetelet.progedo.fr/ ["ISSN 2427-1683"] ["info@progedo.fr"] Quetelet PROGEDO Diffusion allows searching and accessing data from national public statistics (major surveys, censuses, databases) and large surveys from French research. - Major data, censuses and other databases of French National Statistics - Major French research data - Privileged access to international data eng ["disciplinary"] {"size": "1300 datasets", "updatedp": "2019-03-18"} ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://quetelet.progedo.fr/missions/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["census data", "socio-political", "surveys"] [{"institutionName": "Council of European Social Science Data European Research Infrastructure Consortium", "institutionAdditionalName": ["CESSDA ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cessda.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cessda@cessda.eu"]}, {"institutionName": "L'\u00c9cole des hautes \u00e9tudes en sciences sociales", "institutionAdditionalName": ["EHESS"], "institutionCountry": "FRA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.ehess.fr/fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Higher Education and Research, National Center for Scientific Research", "institutionAdditionalName": ["CNRS", "Minist\u00e8re de l'Enseignement sup\u00e9rieur et de la Recherche, Centre National de la Recherche Scientifique"], "institutionCountry": "FRA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Demographic Studies", "institutionAdditionalName": ["INED", "Institut national d'\u00e9tudes d\u00e9mographiques"], "institutionCountry": "FRA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.ined.fr/en/homepage_of_ined_website/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquetes@ined.fr"]}, {"institutionName": "Quetelet PROGEDO Diffusion", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://quetelet.progedo.fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@progedo.fr"]}, {"institutionName": "Sciences Po, Centre de donn\u00e9es socio-politiques", "institutionAdditionalName": ["CDSP"], "institutionCountry": "FRA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://cdsp.sciences-po.fr/fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info.cdsp@sciences-po.fr"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "Data access conditions", "policyURL": "http://quetelet.progedo.fr/conditions-dacces/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://quetelet.progedo.fr/"}] restricted [] ["unknown"] no {} ["none"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Quetelet-PROGEDO-Diffusion members are the ADISP-PROGEDO (National Statistics Data Archives), the CDSP (Centre for Socio-political Data), the INED data service (National Institute of Demographic Studies) and the CASD (Secure Remote access to confidential data Centre). Quetelet-PROGEDO-Diffusion is managed by PROGEDO, a member of CESSDA ERIC, the European network of databanks for research. 2013-08-23 2019-08-07 +r3d100010495 UNIDATA - Bicocca Data Archive eng [{"additionalName": "ADPSS Sociodata", "additionalNameLanguage": "eng"}, {"additionalName": "ADPSS-SOCIODATA Archivio Dati e Programmi per le Scienze Sociali Dataverse", "additionalNameLanguage": "ita"}, {"additionalName": "Archivio Dati e Programmi per le Scienze Sociali", "additionalNameLanguage": "ita"}, {"additionalName": "Data Archive for Social Sciences", "additionalNameLanguage": "eng"}] http://www.unidata.unimib.it/?lang=en [] ["unidata@unimib.it"] Unidata – Bicocca Data Archive is an interdepartmental center of the University of Milan-Bicocca, born in 2015. The center is the Italian point of reference for the research data archiving and dissemination, based on the example of the National Archives located in major European countries and beyond. UniData inherits the long work from the ADPSS-Sociodata Data Archive, born in 1999 in the Department of Sociology and Social Research at the same University. Here you can find only individual data from 2010. For older surveys please visit ADPSS Sociodata, Data Archive for Social Sciences - Archivio Dati e Programmi Per le Scienze Soziali: http://www.unidata.unimib.it/old/ and ADPSS-SOCIODATA Archivio Dati e Programmi per le Scienze Sociali Dataverse : https://dataverse.harvard.edu/dataverse/adpss eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.unidata.unimib.it/?page_id=55 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Eurostat", "ISSP", "Istat", "WVS", "eurobarometer", "survey data"] [{"institutionName": "Interdepartmental Centre UniData \u2013 Bicocca Data Archive", "institutionAdditionalName": ["Centro interdipartimentale UniData \u2013 Bicocca Data Archive"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.unidata.unimib.it/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["http://www.unidata.unimib.it/?page_id=557"]}, {"institutionName": "University of Milan - Bicocca, Department of Sociology and Social Research", "institutionAdditionalName": ["DSRS", "Universit\u00e0 degli Studi di Milano-Bicocca, Dipartimento di Sociologia e Ricerca Sociale"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.socialcapitalgateway.org/content/organization/university-milan-bicocca-department-sociology-and-social-research", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["fabio.sabatini@euricse.eu"]}, {"institutionName": "Universit\u00e0 degli Studi di Milano-Bicocca, Dipartimento di Sociologia e Ricerca Sociale, Archivio Dati e Programmi per le Scienze Sociali", "institutionAdditionalName": ["ADPSS"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unidata.unimib.it/old/eng/index.php?w=home", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "2015", "institutionContact": ["adpss.sociologia@unimib.it"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "How to get the data", "policyURL": "http://www.unidata.unimib.it/?page_id=559"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.unidata.unimib.it/wp-content/uploads/Regolamento-Accesso-Dati.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}] restricted [{"dataUploadLicenseName": "Regolamento per l\u2019accesso ai dati distribuiti dal Centro Interdipartimentale UniData", "dataUploadLicenseURL": "http://www.unidata.unimib.it/wp-content/uploads/Regolamento-Accesso-Dati.pdf"}] ["Nesstar"] {} ["none"] http://www.unidata.unimib.it/wp-content/uploads/Regolamento-Accesso-Dati.pdf [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} UniData, thanks to the experience gained by ADPSS-Sociodata, has been the Italian member of CESSDA ERIC (Council of European Social Science Data Archives), the most important system of acquisition, archiving and distribution of data for social sciences. It connects data archives of twenty-three countries. A very important archive connected with CESSDA ERIC is the GESIS – Leibniz Institute for the Social Sciences, with which UniData is continuing an intense collaboration. UniData also participates to IFDO (International Federation of Data Organizations), in which it sustains the chairmanship since the year of its foundation, in 1983. Finally, UniData is a member of ICPSR (Inter-university Consortium for Political and Social Research), one of the most important data archive for world social sciences, that is located in the University of Michigan. In particular UniData is the Italian Official Representative, because it is part of Italian University network that participate to ICPSR. Here you can find only individual data from 2010; for older surveys please visit http://www.unidata.unimib.it/old/ dataverse: https://dataverse.harvard.edu/dataverse/adpss 2013-08-27 2019-03-05 +r3d100010496 TARKI Data Archive eng [{"additionalName": "T\u00c1RKI", "additionalNameLanguage": "hun"}] http://www.tarki.hu/en/services/da/index.html [] [] TÁRKI Social Research Institute is an independent, employee-owned research organisation that specialises in policy research in the fields of social policy and the social consequences of economic policies. This includes related data-collection, archiving and statistical activities. We recently increased our involvement in the areas of strategic market research and health policy analysis. In addition, we regularly contribute to basic research, in the areas of social stratification and inequality, and to the methodology of empirical social research. eng ["disciplinary"] {"size": "791 empirical social research data", "updatedp": "2019-03-05"} 1985 ["eng", "hun"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.tarki.hu/en/about/mission/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ANCIEN", "EUROMOD", "Growing ineequalities", "LLL Lifelong Learning", "Roma", "WORKCARE", "child poverty", "healthcare", "household monitor", "pension developments", "survey data"] [{"institutionName": "E\u00f6tv\u00f6s Lor\u00e1nd University", "institutionAdditionalName": ["ELTE", "Universitas Budapestinensis de Rolando Eotvos Nominata"], "institutionCountry": "HUN", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.elte.hu/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hungarian National Scientific Research Fund", "institutionAdditionalName": ["OTKA", "Orsz\u00e1gos Tudom\u00e1nyos Kutat\u00e1si Alapprogramok"], "institutionCountry": "HUN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nkfih.gov.hu/funding/otka#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Magyar Tudom\u00e1nyos Akad\u00e9mia, Centre for Social Science, Institute for Political Science", "institutionAdditionalName": ["MTATK", "Magyar Tudom\u00e1nyos Akad\u00e9mia, T\u00e1rsadalomtudom\u00e1nyi Kutat\u00f3k\u00f6zpont"], "institutionCountry": "HUN", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://politikatudomany.tk.mta.hu/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "T\u00c1RKI Group", "institutionAdditionalName": [], "institutionCountry": "HUN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tarki.hu/en/about/profile/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tarki.hu/en/about/contact/index.html", "tarki@tarki.hu"]}, {"institutionName": "University of Ny\u00edregyh\u00e1za", "institutionAdditionalName": ["\u041d\u044c\u0438\u0440\u0435\u0434\u044c\u0445\u0430\u0437\u0441\u043a\u0430\u044f \u0412\u044b\u0441\u0448\u0430\u044f \u0448\u043a\u043e\u043b\u0430"], "institutionCountry": "HUN", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.nyf.hu/nyf-en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "Disclaimer", "policyURL": "http://old.tarki.hu/en/help/imprint.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.tarki.hu/en/help/imprint.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.tarki.hu/en/services/da/da_use.html"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [] {} TARKI Data Archive is a member of CESSDA ERIC, Council of European Social Science Data Archives and ICPSR, Inter-university Consortium for Political and Social Research. TÁRKI Data Archive is part of the National Digital Archive programme. 2013-08-27 2019-03-05 +r3d100010497 Irish Social Science Data Archive eng [{"additionalName": "ISSDA", "additionalNameLanguage": "eng"}] https://www.ucd.ie/issda/ [] ["https://www.ucd.ie/issda/aboutus/contactus/", "issda@ucd.ie"] The Irish Social Science Data Archive (ISSDA) is Ireland’s leading centre for quantitative data acquisition, preservation, and dissemination. Its mission is to ensure wide access to quantitative datasets in the social sciences, and to advance the promotion of international comparative studies of the Irish economy and Irish society. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ucd.ie/issda/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Irish economy", "Irish society", "infants Ireland", "microdata", "survey data", "traveler health"] [{"institutionName": "Department of Enterprise, Trade and Employment", "institutionAdditionalName": ["An Roinn Gn\u00f3, Fiontar agus Nu\u00e1la\u00edochta"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://enterprise.gov.ie/en/", "institutionIdentifier": ["ROR:04951hq16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://enterprise.gov.ie/en/Contact-Us/"]}, {"institutionName": "Department of Public Expenditure and Reform", "institutionAdditionalName": ["An Roinn Caiteachais Phoibl\u00ed agus Athch\u00f3irithe"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.per.gov.ie/en/", "institutionIdentifier": ["ORO:021pght82"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Higher Education Authority", "institutionAdditionalName": ["An T\u00fadar\u00e1s um Ard-Oideachas", "HEA"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hea.ie/", "institutionIdentifier": ["ROR:0471xye93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hea.ie/about-us/contact/"]}, {"institutionName": "University College Dublin", "institutionAdditionalName": ["Ireland's Global University", "UCD Dublin"], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucd.ie/", "institutionIdentifier": ["ROR:05m7pjf47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucd.ie/issda/aboutus/contact/"]}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/content/download/963/8608/file/CESSDA%20Data%20Access%20Policy.pdf"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/03/Irish-Social-Science-Data-Archive-ISSDA-.pdf"}, {"policyName": "ISSDA Data Protection Policy", "policyURL": "https://www.ucd.ie/issda/t4media/ISSDA_Data_Protection_Policy_V1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ucd.ie/t4cms/ISSDA_temp_generic2013.doc"}] closed [{"dataUploadLicenseName": "ISSDA Deposit License", "dataUploadLicenseURL": "http://www.ucd.ie/t4cms/ISSDA_Deposit_Licence_V1.2.docx"}] ["Nesstar"] {} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} ISSDA is an aspiring member of CESSDA ERIC , Council of European Social Science Data Archives and ICPSR, Inter-university Consortium for Political and Social Research. 2013-08-27 2021-10-04 +r3d100010498 Romanian Social Data Archive eng [{"additionalName": "Arhiva Rom\u00e2n\u0103 de Date Sociale", "additionalNameLanguage": "ron"}, {"additionalName": "RODA", "additionalNameLanguage": "eng"}] http://www.roda.ro/en/home [] ["dusa.adrian@unibuc.ro", "http://www.roda.ro/en/contact-us"] RODA is the national Romanian institution specialised in archiving electronic data collections obtained by social research. The archive contains data collections accessible for the academic community and the interested public, for secondary and comparative analysis, under certain access conditions ranging from free access to some level of restriction imposed by owners. The archive serves as an intermediary between the data owners and data users. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "ron"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.roda.ro/en/home [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["survey data"] [{"institutionName": "National Institute of Statistics", "institutionAdditionalName": [], "institutionCountry": "ROU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.insse.ro/cms/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Romanian Academy of Sciences, nstitute for Quality of Life Research", "institutionAdditionalName": [], "institutionCountry": "ROU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://acad.academia.edu/Departments/Research_institute_for_Quality_of_Life", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Romanian Social Data Archive", "institutionAdditionalName": ["RODA"], "institutionCountry": "ROU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.roda.ro/en/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.roda.ro/en/contact-us"]}, {"institutionName": "University of Bucharest, Faculty of Sociology and Social Work", "institutionAdditionalName": ["Universitatea din Bucuresti, Facultatea de Sociologie si Asistenta Sociala"], "institutionCountry": "ROU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.unibuc.ro/academic-programmes/faculties/faculty-of-sociology-and-social-work/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CESSDA Data Access Policy", "policyURL": "https://www.cessda.eu/eng/Projects/All-projects/CESSDA-SaW/WP3/CESSDA-CDM/Part-2-CRA2-Digital-Object-Management/CPA2.3-Access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.roda.ro/public/EN/template.php?url=7"}] restricted [{"dataUploadLicenseName": "Depositing form", "dataUploadLicenseURL": "http://www.roda.ro/documente/DepositForm.pdf"}, {"dataUploadLicenseName": "License agreement", "dataUploadLicenseURL": "http://www.roda.ro/documente/LicenceAgreement.pdf"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} RODA is a member of CESSDA EIC, Council of European Social Science Data Archives and since December 2002 to IFDO (International Federation of Data Organisations). 2013-08-27 2021-08-24 +r3d100010499 NAGRP Blast Center eng [{"additionalName": "National Animal Genome Research Program Blast Center", "additionalNameLanguage": "eng"}] https://www.animalgenome.org/blast/ [] ["bioinfo-team@animalgenome.org", "https://www.animalgenome.org/bioinfo/services/helpdesk/"] NAGRP Blast Center aggregates various sequence databases and makes them accessible via its website. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.animalgenome.org/bioinfo/community/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "boar", "bovine", "cattle", "chicken", "computer", "cow", "database", "dna", "gene map", "genetics", "genome", "genome analysis", "genome research program", "genomics", "goat", "horse", "livestock", "mapping", "molecular genetics", "nagrp", "national animal", "oink", "ovine", "pig", "pork", "sheep", "software", "sow"] [{"institutionName": "Baylor College of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": ["RRID:SCR_015037"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bcm.edu/contact-us"]}, {"institutionName": "Ensembl Project", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ensembl.org/index.html", "institutionIdentifier": ["OMICS_01647", "RRID:SCR_002344", "RRID:nif-0000-21145"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ensembl.org/info/about/contact/index.html"]}, {"institutionName": "The National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact/"]}, {"institutionName": "United States Department of Agriculture, Livestock Genome Research Projects, National Animal Genome Research Program", "institutionAdditionalName": ["USDA, NRSP-8, NAGRP"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/program/animal-breeding-genetics-and-genomics", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}, {"institutionName": "United States Department of Agriculture, National Resources Conservation Service", "institutionAdditionalName": ["USDA-NRCS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nrcs.usda.gov/wps/portal/nrcs/main/national/technical/nra/nri/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2013", "institutionContact": ["http://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.animalgenome.org/blast/"}] closed [] ["unknown"] {"api": "https://www.animalgenome.org/bioinfo/resources/computers/service", "apiType": "FTP"} ["none"] https://www.animalgenome.org/bioinfo/community/mission ["none"] yes unknown [] [] {} NRSP-8 Bioinformatics Coordination Program: NAGRP Blast Server 2015-04-27 2021-10-04 +r3d100010501 Crustal Dynamics Data Information System eng [{"additionalName": "CDDIS", "additionalNameLanguage": "eng"}, {"additionalName": "NASA's archive of space geodesy data", "additionalNameLanguage": "eng"}] https://cddis.nasa.gov/ ["biodbcore-001568"] ["support-cddis@earthdata.nasa.gov"] The Crustal Dynamics Data Information System (CDDIS) was initially developed to provide a central data bank for NASA's Crustal Dynamics Project (CDP). The Crustal Dynamics Data Information System (CDDIS) supports data archiving and distribution activities for the space geodesy and geodynamics community. The main objectives of the system are to store space geodesy and geodynamics related data products in a central data bank, to maintain information about the archival of these data, and to disseminate these data and information in a timely manner to NASA investigators and cooperating institutions. eng ["disciplinary"] {"size": "", "updatedp": ""} 1982 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://cddis.nasa.gov/About/Background.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["Doppler Orbitography", "Global Navigation Satellite Systems GNSS", "Radio-positioning Integrated by Satellite DORIS", "Very Long Baseline Interferometry VLBI", "geodesy", "geodynamics", "geophysics", "ionospheric data", "laser", "laser ranging", "orbit", "satellites"] [{"institutionName": "NASA Goddard Space Flight Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": ["ROR:0171mag52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Edwin.J.Grayzeck@nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws/constitution"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] open [{"dataUploadLicenseName": "CDDIS File Upload Procedures", "dataUploadLicenseURL": "https://cddis.nasa.gov/About/CDDIS_File_Upload_Documentation.html"}] ["unknown"] {"api": "ftp://gdc.cddis.eosdis.nasa.gov/", "apiType": "FTP"} ["DOI"] https://cddis.nasa.gov/About/Data_citation_and_acknowledgment.html [] unknown unknown ["WDS"] [] {} ftp for uploading files will no longer be supported.Files are then submitted to CDDIS using an HTTP POST request (2017-17-05). - CDDIS is part of the ICSU World Data System (WDS). CDDIS is one of two data centers, which makes access possible of ILRS data, products, and predictions (and EDC). CDDIS contains the following data sets: GNSS Data, SLR Data, VLBI Data and DORIS Data. The Crustal Dynamics Data Information System (CDDIS) has served as a global data center for the International GPS Service (IGS). 2013-09-23 2021-11-16 +r3d100010502 GHRC eng [{"additionalName": "Global Hydrology Resource Center", "additionalNameLanguage": "eng"}, {"additionalName": "Marshall Distributed Active Archive Center (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "NASA Earth Science Data Center", "additionalNameLanguage": "eng"}] https://ghrc.nsstc.nasa.gov/home/ [] ["https://ghrc.nsstc.nasa.gov/home/contact-us"] The Global Hydrology Resource Center (GHRC) provides both historical and current Earth science data, information, and products from satellite, airborne, and surface-based instruments. GHRC acquires basic data streams and produces derived products from many instruments spread across a variety of instrument platforms. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ghrc.nsstc.nasa.gov/home/about-ghrc [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earth observing system", "earth sciences", "forecasting", "global atmospheric temperature", "hydrology", "lightning", "remote sensing", "soil moisture", "tropical storms", "water management", "weather"] [{"institutionName": "Global Hydrology Resource Center", "institutionAdditionalName": ["GHRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ghrc.nsstc.nasa.gov/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ghrc.nsstc.nasa.gov/home/contact-us", "support-ghrc@earthdata.nasa.gov"]}, {"institutionName": "NASA Marshall Space Flight Center Earth Science Office", "institutionAdditionalName": ["ESO", "NASA MSFC ESO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://weather.msfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alabama in Huntsville, Information technology and Systems Center", "institutionAdditionalName": ["itsc"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.itsc.uah.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.itsc.uah.edu/main/contact", "webteam@itsc.uah.edu"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws/constitution"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "WOK repository evaluation, selection, and coverage policies for the Data Citation Index within Thomsen Reuters Web of Science", "policyURL": "http://wokinfo.com//products_tools/multidisciplinary/dci/selection_essay/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ghrc.nsstc.nasa.gov/home/access-data/earthdata-login-recipe"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues"}] restricted [{"dataUploadLicenseName": "Data Rights & Related Issues", "dataUploadLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues"}] ["unknown"] {"api": "ftp://ghrc.nsstc.nasa.gov/", "apiType": "FTP"} ["DOI"] https://ghrc.nsstc.nasa.gov/home/about-ghrc/citing-ghrc-daac-data [] unknown yes ["WDS"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} GHRC is covered by Thomson Reuters Data Citation Index. GHRC is a member of ICSU World Data System. GHRC is one of the NASA's Earth Science Data Centers.The entire database can be viewed through HyDRO, the Hydrologic Data search, Retrieval, and Order system. Note that some data is restricted to Earth Observing System (EOS) affiliated investigators. 2013-09-18 2021-05-20 +r3d100010503 LAADS DAAC eng [{"additionalName": "LAADS web", "additionalNameLanguage": "eng"}, {"additionalName": "Level 1 and Atmosphere Archive and Distribution System - Distributed Active Archive Center", "additionalNameLanguage": "eng"}] https://ladsweb.modaps.eosdis.nasa.gov/ [] ["modapsuso@lists.nasa.gov"] LAADS DAAC is the web interface to the Level 1 and Atmosphere Archive and Distribution System (LAADS). The mission of LAADS is to provide quick and easy access to MODIS Level 1, Atmosphere and Land data products, VIIRS Level 1 and Land data products MAS and MERIS data products. MODIS (or Moderate Resolution Imaging Spectroradiometer) is a key instrument aboard the Terra (EOS AM) and Aqua (EOS PM) satellites. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ladsweb.modaps.eosdis.nasa.gov/about/purpose/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climate change", "electromagnetic radiation", "galactic cosmic rays", "interactive earth system", "land", "observations", "ocean", "remote sensing"] [{"institutionName": "Goddard Space Fligth Center", "institutionAdditionalName": ["GSFC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard#.UkGK3azimHs", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard", "modapsuso@sigmaspace.com"]}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/07/LAADS-DAAC.pdf"}, {"policyName": "NASA's Earth Science Data and Information Policy", "policyURL": "https://earthdata.nasa.gov/earth-science-data-systems-program/policies/data-information-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://earthdata.nasa.gov/earth-science-data-systems-program/policies/data-information-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lpdaac.usgs.gov/products/modis_policies"}] restricted [] ["unknown"] {"api": "https://ladsweb.modaps.eosdis.nasa.gov/tools-and-services/#opendap", "apiType": "OpenDAP"} ["DOI"] https://modaps.modaps.eosdis.nasa.gov/services/faq/LAADS_Data-Use_Citation_Policies.pdf [] unknown yes ["other"] [] {} LAADS DAAC is a regular member of ICSU World Data System - WDS. 2013-09-24 2019-09-04 +r3d100010504 OceanColor web eng [{"additionalName": "OB.DAAC", "additionalNameLanguage": "eng"}, {"additionalName": "Ocean Biology DAAC", "additionalNameLanguage": "eng"}, {"additionalName": "Ocean Biology Data Active Archive Center", "additionalNameLanguage": "eng"}] https://oceancolor.gsfc.nasa.gov/ [] ["gene.c.feldman@nasa.gov", "https://oceancolor.gsfc.nasa.gov/staff/gene/", "webadmin@oceancolor.gsfc.nasa.gov"] The Ocean Biology Processing Group (OBPG) serves as the Distributed Active Archive Center (DAAC) for all Ocean Biology (OB) data produced or collected under NASA’s Earth Observing System Data and Information System (EOSDIS). This website thus serves as the primary data access portal to the NASA OB.DAAC. The links below provide a variety of methods to access the holdings of the OB.DAAC, including visual browsers that enable point-and-click access by data levels and direct access for bulk download. In agreement with partner organizations, some data access requires user registration to enable better tracking of usage metrics. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://oceancolor.gsfc.nasa.gov/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biogeochemistry", "geophysics", "ocean biology", "remote sensing", "sea surface temperature", "spacecraft"] [{"institutionName": "Goddard Space Flight Center, Ocean Biology Processing Group", "institutionAdditionalName": ["OBPG"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gene.c.feldman@nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.UkQC3KyMfPU"]}] [{"policyName": "Freedom of Information Act (FOIA)", "policyURL": "https://www.nasa.gov/FOIA/index.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues"}] restricted [] ["unknown"] {"api": "https://oceandata.sci.gsfc.nasa.gov/opendap/", "apiType": "OpenDAP"} ["DOI"] https://oceancolor.gsfc.nasa.gov/citations/ [] unknown yes ["WDS"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2013-09-26 2018-12-13 +r3d100010505 Physical Oceanography Distributed Active Archive Center eng [{"additionalName": "PO.DAAC", "additionalNameLanguage": "eng"}] https://podaac.jpl.nasa.gov/ ["biodbcore-001567"] ["podaac@podaac.jpl.nasa.gov"] The Physical Oceanography Distributed Active Archive Center (PO.DAAC) is an element of the Earth Observing System Data and Information System (EOSDIS). The EOSDIS provides science data to a wide community of users for NASA's Science Mission Directorate. Since the launch of NASA's first ocean-observing satellite, Seasat, in 1978, PO.DAAC has become the premier data center for measurements focused on ocean surface topography (OST), sea surface temperature (SST), ocean winds, sea surface salinity (SSS), gravity, ocean circulation and sea ice.In addition to providing access to its data holdings, PO.DAAC acts as a gateway to data stored at other ocean and climate archives. This and other tools and services enable PO.DAAC to support a wide user community working in areas such as ocean and climate research, applied science and industry, natural resource management, policy making, and general public consumption. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1978 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://podaac.jpl.nasa.gov/AboutPodaac [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["aerosols", "coastal", "dust", "fire", "geodetic gravity", "hurricanes and storms", "ocean circulation", "ocean seasurface topography OST", "ocean temperature", "ocean winds", "salinity density", "sea surface salinity SSS", "sediments", "see surface temperature SST", "snow and ice"] [{"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/group/council-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.earthcube.org/contact/General-Inquiries"]}, {"institutionName": "NASA's Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php", "podaac@podaac.jpl.nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nasa.gov/about/contact/index.html#.UkQ4eKyMfPU"]}] [{"policyName": "Caltech/JPL Web Privacy Policy and Important Notices", "policyURL": "https://www.jpl.nasa.gov/copyrights.cfm"}, {"policyName": "ESDS Data and Information Policy", "policyURL": "https://earthdata.nasa.gov/collaborate/open-data-services-and-software/data-information-policy"}, {"policyName": "JPL Image Use Policy", "policyURL": "https://www.jpl.nasa.gov/imagepolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/privacy/web/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earthdata.nasa.gov/collaborate/open-data-services-and-software/data-information-policy"}] restricted [] ["unknown"] {"api": "https://opendap.jpl.nasa.gov/opendap/", "apiType": "OpenDAP"} ["DOI"] https://podaac.jpl.nasa.gov/CitingPODAAC [] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {"syndication": "https://www.jpl.nasa.gov/rss/index.php", "syndicationType": "RSS"} Physical Oceanography Distributed Active Archive Center is a regular member of ICSU World Data System - WDS 2013-09-26 2021-11-16 +r3d100010506 Alaska Satellite Facility SAR Data Center eng [{"additionalName": "ASF SDC", "additionalNameLanguage": "eng"}] https://www.asf.alaska.edu/ ["RRID:SCR_003610", "RRID:nlx_157757"] ["https://www.asf.alaska.edu/", "uso@asf.alaska.edu"] The SAR Data Center has a large data archive of Synthetic Aperture Radar (SAR) from a variety of sensors available at no cost. Much of the SAR data in the ASF SDC archive is limited in distribution to the scientific research community and U.S. Government Agencies. In accordance with the Memoranda of Understanding (MOU) between the relevant flight agencies (CSA, ESA, JAXA) and the U.S. State Department, the ASF SDC does not distribute SAR data for commercial use. The research community can access the data (ERS-1, ERS-2, JERS-1, RADARSAT-1, and ALOS PALSAR) via a brief proposal process. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.asf.alaska.edu/about/asf/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aircraft", "remote sensing", "satellites", "synthetic aperture radar", "telemetry data"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov", "institutionIdentifier": ["RRID:SCR_002251", "RRID:nlx_156102"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alaska Fairbanks, Alaska Satellite Facility", "institutionAdditionalName": ["UAF"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.asf.alaska.edu/", "institutionIdentifier": ["RRID:SCR_003610", "RRID:nlx_157757"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.asf.alaska.edu/contact/", "uso@asf.alaska.edu"]}] [{"policyName": "About ASF", "policyURL": "https://www.asf.alaska.edu/about/asf/"}, {"policyName": "Alaska Satellite Facility DAAC Research Agreement", "policyURL": "https://www.asf.alaska.edu/get-data/alaska-satellite-facility-daac-restricted-data-access-request/asf-guidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.asf.alaska.edu/get-data/alaska-satellite-facility-daac-restricted-data-access-request/"}] restricted [] ["unknown"] {"api": "https://www.asf.alaska.edu/get-data/api/", "apiType": "REST"} ["none"] https://www.asf.alaska.edu/about/how-to-cite-data/ [] unknown yes ["WDS"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} ASF is a regular member of The International Council for Science World Data System (ICSU-WDS) 2013-10-07 2018-12-14 +r3d100010508 International Laser Ranging Service eng [{"additionalName": "ILRS", "additionalNameLanguage": "eng"}] https://ilrs.cddis.eosdis.nasa.gov/ [] ["https://ilrs.cddis.eosdis.nasa.gov/about/contact_ilrs/index.html", "ilrs-dc@lists.nasa.gov"] The International Laser Ranging Service (ILRS) provides global satellite and lunar laser ranging data and their related products to support geodetic and geophysical research activities as well as IERS products important to the maintenance of an accurate International Terrestrial Reference Frame (ITRF). The service develops the necessary global standards/specifications and encourages international adherence to its conventions. The ILRS is one of the space geodetic services of the International Association of Geodesy (IAG). The ILRS collects, merges, archives and distributes Satellite Laser Ranging (SLR) and Lunar Laser Ranging (LLR) observation data sets of sufficient accuracy to satisfy the objectives of a wide range of scientific, engineering, and operational applications and experimentation. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ilrs.cddis.eosdis.nasa.gov/missions/mission_support/index.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["earth's gravity field", "geodesy", "geophysics", "gravitation", "lunar laser ranging", "navigation", "polar motion", "remote sensing", "satellite", "space"] [{"institutionName": "Goddard Space Flight Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "ICSU World Data System", "institutionAdditionalName": ["WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://icsu-wds.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of Geodesy", "institutionAdditionalName": ["IAG"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iag-aig.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of Geodesy, Global Geodetic Observing System", "institutionAdditionalName": ["GGOS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://176.28.21.212/en/about/ggos-infos/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://176.28.21.212/en/about/contact/"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ILS Terms of Reference", "policyURL": "https://ilrs.cddis.eosdis.nasa.gov/about/termsofref.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}] closed [] ["unknown"] {"api": "ftp://edc.dgfi.tum.de/", "apiType": "FTP"} ["none"] https://ilrs.cddis.eosdis.nasa.gov/about/cite.html [] unknown unknown [] [] {} ILRS is a network member of ICSU World Data System. ILRS includes 2 global data centers: CDDIS and EDC 2013-10-09 2018-12-14 +r3d100010509 Alvin Frame-Grabber System eng [{"additionalName": "AlvinFG System", "additionalNameLanguage": "eng"}] http://4dgeo.whoi.edu/alvin [] ["information@whoi.edu"] The Alvin Frame-Grabber system provides the NDSF community on-line access to Alvin's video imagery co-registered with vehicle navigation and attitude data for shipboard analysis, planning deep submergence research cruises, and synoptic review of data post-cruise. The system is built upon the methodology and technology developed for the JasonII Virtual Control Van and a prototype system that was deployed on 13 Alvin dives in the East Pacific Rise and the Galapagos (AT7-12, AT7-13). The deployed prototype system was extremely valuable in facilitating real-time dive planning, review, and shipboard analysis. eng ["disciplinary"] {"size": "110 Cruises 1125 Dives", "updatedp": "2018-11-20"} 2003-04 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/main/vision-mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["coral", "deep-submergence research cruises", "earth's atmosphere", "ice", "land", "oceanography", "seafloor", "shipboard analysis", "vehicle navigation"] [{"institutionName": "Keck Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmkeck.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wmkeck.org/contact"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/data/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://4dgeo.whoi.edu/alvin"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://4dgeo.whoi.edu/alvin"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2013-10-09 2018-11-20 +r3d100010510 Jason Virtual Van eng [] http://4dgeo.whoi.edu/jason ["biodbcore-001491"] ["http://www.whoi.edu/page.do?pid=12876"] Jason is a remote-controlled deep-diving vessel that gives shipboard scientists immediate, real-time access to the sea floor. Instead of making short, expensive dives in a submarine, scientists can stay on deck and guide Jason as deep as 6,500 meters (4 miles) to explore for days on end. Jason is a type of remotely operated vehicle (ROV), a free-swimming vessel connected by a long fiberoptic tether to its research ship. The 10-km (6 mile) tether delivers power and instructions to Jason and fetches data from it. eng ["disciplinary"] {"size": "110 Cruises 1.712.107 Snapshots 6.847.766 Images", "updatedp": "2018-11-20"} 2009-09 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://4dgeo.whoi.edu/jason [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["data processing", "deep sea", "hydrothermal vents", "molecular and morphological studies", "oceanography", "remote sensing", "remotely operated vehicles (ROV)", "seafloor", "sealife", "submarine", "underwater archeology", "underwater scientific expeditions"] [{"institutionName": "Keck Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmkeck.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wmkeck.org/contact"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/data/"]}] [{"policyName": "NDSF Data Archive Policy", "policyURL": "https://www.whoi.edu/main/ndsf/archive-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://4dgeo.whoi.edu/jason/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://4dgeo.whoi.edu/jason"}] closed [] ["other"] {"api": "ftp://ftp.whoi.edu/pub/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-10-16 2021-11-16 +r3d100010511 WHOI Ship Data-Grabber System eng [] http://4dgeo.whoi.edu/shipdata/index.html ["biodbcore-001609"] ["information@whoi.edu"] The WHOI Ship DataGrabber system provides the oceanographic community on-line access to underway ship data collected on the R/V Atlantis, Knorr, Oceanus, and Tioga (TBD). All the shipboard data is co-registered with the ship's GPS time and navigation systems. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/main/vision-mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["coral", "gulf stream", "hydrothermal fluids", "molecular and morphological studies", "oceanic crust", "oceanography", "seafloor", "surface water properties"] [{"institutionName": "Keck Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmkeck.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wmkeck.org/contact"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/data/"]}] [{"policyName": "NDSF Data Archive Policy", "policyURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://4dgeo.whoi.edu/shipdata/index.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://4dgeo.whoi.edu/shipdata/index.html"}] closed [] ["unknown"] {"api": "ftp://ftp.whoi.edu/pub/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-10-16 2021-11-16 +r3d100010512 WHOI Argo Program eng [{"additionalName": "A Robotic Survey of Global Ocean Temperature & Salinity", "additionalNameLanguage": "eng"}, {"additionalName": "Woods Hole Oceanographic Institution Argo Program", "additionalNameLanguage": "eng"}] http://argo.whoi.edu/ [] ["argo@ucsd.edu", "information@whoi.edu"] The Argo observational network consists of a fleet of 3000+ profiling autonomous floats deployed by about a dozen teams worldwide. WHOI has built about 10% of the global fleet. The mission lifetime of each float is about 4 years. During a typical mission, each float reports a profile of the upper ocean every 10 days. The sensors onboard record fundamental physical properties of the ocean: temperature and conductivity (a measure of salinity) as a function of pressure. The depth range of the observed profile depends on the local stratification and the float's mechanical ability to adjust it's buoyancy. The majority of Argo floats report profiles between 1-2 km depth. At each surfacing, measurements of temperature and salinity are relayed back to shore via satellite. Telemetry is usually received every 10 days, but floats at high-latitudes which are iced-over accumulate their data and transmit the entire record the next time satellite contact is established. With current battery technology, the best performing floats last 6+ years and record over 200 profiles. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/main/whoi-floats-drifters [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["conductivity", "measurement", "meteorology", "ocean", "oceanography", "salinity"] [{"institutionName": "Argo", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.argo.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.argo.ucsd.edu/contact.html"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["information@whoi.edu"]}] [{"policyName": "NDSF Data Archive Policyy", "policyURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.argo.ucsd.edu/Argo_data_guide.pdf"}] restricted [] ["unknown"] {"api": "http://www.argo.ucsd.edu/Argo_data_guide.pdf", "apiType": "FTP"} ["DOI", "other"] http://argoweb.whoi.edu/argo_database_web/doc/argo-dm-user-manual-version-2.3.pdf [] unknown yes [] [] {} Index of Argo : http://argo.whoi.edu/ 2013-10-16 2018-11-20 +r3d100010514 Woods Hole Oceanographic Institution Data Library and Archives eng [{"additionalName": "WHOI DLA", "additionalNameLanguage": "eng"}] http://dla.whoi.edu/dla/ [] ["http://dla.whoi.edu/dla/contact"] The Data Library and Archives (DLA) is part of the joint library system supported by the Marine Biological Laboratory and the Woods Hole Oceanographic Institution. The DLA holds collections of administrative records, photographs, scientists' data and papers, film and video, historical instruments, as well as books, journals and technical reports. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://dla.whoi.edu/dla/mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bathymetry", "climate", "geodesy", "hydrogeography", "oceanic circulation", "salinity", "seismology", "weather"] [{"institutionName": "MBLWHOI Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.mblwhoilibrary.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dla.whoi.edu/dla/contact"]}, {"institutionName": "Marine Biological Laboratory", "institutionAdditionalName": ["MBL"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.mbl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mbl.edu/contact/"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": ["RRID:SCR_006315", "RRID:nlx_154727"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/data/"]}] [{"policyName": "Policies", "policyURL": "http://dla.whoi.edu/dla/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.whoi.edu/page.do?pid=18997&ct=901&cid=621"}] closed [] ["unknown"] {"api": "ftp://ftp.whoi.edu/pub/", "apiType": "FTP"} ["none"] http://cmip5.whoi.edu/?page_id=339 [] unknown yes [] [] {} 2013-10-17 2018-11-20 +r3d100010515 WHOI Seafloor Data and Observation Visualization Environment eng [{"additionalName": "EPR Data Browser", "additionalNameLanguage": "eng"}, {"additionalName": "SeaDOVE", "additionalNameLanguage": "eng"}, {"additionalName": "Seafloor Data and Oberservation Visualization Environment", "additionalNameLanguage": "eng"}] http://gis1server.whoi.edu/website/EPR_9N/viewer.htm [] ["dfornari@whoi.edu", "ssoule@whoi.edu"] Seafloor data at these locations include multibeam bathymetry, high-resolution scanning altimetry, deep-towed sidescan sonar, seafloor digital photographs, sample locations, deep-towed magnetic data, and more. Each dataset is geospatially registered and incorporates metadata (e.g., sample geochemistry and time and depth of collection) that can be interactively accessed by the user. The user can control which datasets are shown on a map view of the area and the scale at which the map is viewed. Datasets with resolutions inappropriate for the scale at which they are being viewed are automatically removed from the map. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/main/vision-mission [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["deep sea", "gis-database", "global ocean observing system", "gscanning altimetry", "multi-scalar-seafloor data", "ocean subsurface", "ocean surface", "oceanography", "sidescan sonar"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dfornari@whoi.edu", "rgoldsmith@whoi.edu", "ssoule@whoi.edu"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.whoi.edu/whoi/privacy.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] closed [] ["unknown"] {} ["none"] http://cmip5.whoi.edu/?page_id=339 [] unknown yes [] [] {} Partners & Sponsors: http://www.whoi.edu/main/partners-sponsors 2013-10-21 2018-11-20 +r3d100010516 Seafloor Sediments Data Collection eng [{"additionalName": "SEDCORE 2000", "additionalNameLanguage": "eng"}] http://gis1server.whoi.edu/website/SC2k/viewer.htm [] ["jbroda@whoi.edu", "rgoldsmith@whoi.edu"] Seafloor Sediments Data Collection is a collection of more than 14,000 archived marine geological samples recovered from the seafloor. The inventory includes long, stratified sediment cores, as well as rock dredges, surface grabs, and samples collected by the submersible Alvin. eng ["disciplinary"] {"size": "more than 14,000 archived marine geological samples", "updatedp": "2017-07-11"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/main/vision-mission [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["geology", "geophysics", "gis mapping", "sea floor", "seafloor rock", "sedimentary deposition", "submersible", "tectonics"] [{"institutionName": "NSF", "institutionAdditionalName": ["National Science Fouundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "WHOI Seafloor Samples Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.whoi.edu/site/seafloorsampleslab/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["seafloorsampleslab@whoi.edu"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jbroda@whoi.edu", "jbroda@whoi.edu", "rgoldsmith@whoi.edu"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.whoi.edu/whoi/privacy.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www2.whoi.edu/site/seafloorsampleslab/sample-collection/sample-distribution-policy/"}] closed [] ["unknown"] {} ["none"] https://www2.whoi.edu/site/seafloorsampleslab/sample-collection/sample-distribution-policy/ [] unknown yes [] [] {} Partners & Sponsors: http://www.whoi.edu/main/partners-sponsors 2013-10-21 2018-11-20 +r3d100010517 U.S. GLOBal Ocean ECosystems Dynamics eng [{"additionalName": "U.S. Globec", "additionalNameLanguage": "eng"}] http://www.usglobec.org/ [] ["robertson@marine.rutgers.edu"] Global Ocean Ecosystem Dynamics (GLOBEC) is the International Geosphere-Biosphere Programme (IGBP) core project responsible for understanding how global change will affect the abundance, diversity and productivity of marine populations. The programme was initiated by SCOR and the IOC of UNESCO in 1991, to understand how global change will affect the abundance, diversity and productivity of marine populations comprising a major component of oceanic ecosystems. The aim of GLOBEC is to advance our understanding of the structure and functioning of the global ocean ecosystem, its major subsystems, and its response to physical forcing so that a capability can be developed to forecast the responses of the marine ecosystem to global change. U.S. GLOBEC Programm includes the Georges Bank / NW Atlantic Programm, the Northeast Pacific Programm and the Southern Ocean Program. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.usglobec.org/data.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biology", "birds", "cetaceans", "chemics", "chlorophyll", "fishery", "hydrography", "meteorology", "nutrient", "oceanography", "organism", "physics", "sea surface", "zooplankton"] [{"institutionName": "Biological and Chemical Oceanography Data Management Office", "institutionAdditionalName": ["BCO-DMO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bco-dmo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@bco-dmo.org"]}, {"institutionName": "NOAA Fisheries", "institutionAdditionalName": ["NMFS", "NOAAFishers (formerly)", "National Coceanic and Atmospheric Adminstration (formerly)", "National Marine Fisheries Service"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fisheries.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NOAA\u2019s National Centers for Coastal Ocean Science", "institutionAdditionalName": ["Center for Sponsored Coastal Ocean Research (formerly)", "NCCOS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://coastalscience.noaa.gov/news/funding-awarded-to-study-airborne-health-risks-from-cyanobacteria-blooms-in-florida/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "2008", "institutionContact": ["elizabeth.turner@noaa.gov", "https://coastalscience.noaa.gov/contact/"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@noaa.gov"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Tetherless World Constellation", "institutionAdditionalName": ["TWC"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://tw.rpi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://tw.rpi.edu//web/Contact"]}] [{"policyName": "Data Policy", "policyURL": "http://www.usglobec.org/reports/datapol/datapol.contents.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://globec.whoi.edu/globec-dir/data-acknowledgement-policy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.usglobec.org/data.php"}] restricted [{"dataUploadLicenseName": "Data Serving Guidlines", "dataUploadLicenseURL": "http://www.usglobec.org/data.php"}] ["unknown"] {"api": "ftp://globec.whoi.edu/pub/software/JGOFS_GLOBEC/", "apiType": "FTP"} ["none"] http://globec.whoi.edu/globec-dir/citation_examples.html [] unknown yes [] [] {} 2013-10-21 2018-12-14 +r3d100010519 OAFlux eng [{"additionalName": "Objectively Analyzed air-sea Fluxes for the Global Oceans", "additionalNameLanguage": "eng"}, {"additionalName": "WHOI OAFlux Project", "additionalNameLanguage": "eng"}] http://oaflux.whoi.edu/ ["biodbcore-001497"] ["http://oaflux.whoi.edu/contact.html"] The Objectively Analyzed air-sea Fluxes (OAFlux) project is a research and development project focusing on global air-sea heat, moisture, and momentum fluxes. The project is committed to produce high-quality, long-term, global ocean surface forcing datasets from the late 1950s to the present to serve the needs of the ocean and climate communities on the characterization, attribution, modeling, and understanding of variability and long-term change in the atmosphere and the oceans. - Links überprüft 14.6.2017 Re eng ["disciplinary"] {"size": "", "updatedp": ""} 1958 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://oaflux.whoi.edu/description.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["air-sea measurements", "climate", "meteorology", "oceanography"] [{"institutionName": "NOAA Climate Observations and Monitoring (COM)", "institutionAdditionalName": ["COM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/climate", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lyu@whoi.edu", "rweller@whoi.edu"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lyu@whoi.edu"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/main/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.whoi.edu/main/copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.whoi.edu/main/copyright"}] restricted [] [] {"api": "http://oaflux.whoi.edu/data.html", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} Data are also archived at the two data centers: Asia-Pacific DATA-Research Center (ADPRC) at the University of Hawaii (http://apdrc.soest.hawaii.edu/datadoc/whoi_oaflux.php)and Data Support Section (DSS) at NCAR (https://rda.ucar.edu/datasets/ds260.1/) 2013-10-29 2021-11-17 +r3d100010520 Upper Ocean Processes Group eng [{"additionalName": "UOP", "additionalNameLanguage": "eng"}] http://uop.whoi.edu/ ["biodbcore-001641"] ["http://uop.whoi.edu/staff.html"] The primary focus of the Upper Ocean Processes Group is the study of physical processes in the upper ocean and at the air-sea interface using moored surface buoys equipped with meteorological and oceanographic sensors. UOP Project Map The Upper Ocean Processes Group provides technical support to upper ocean and air-sea interface science programs. Deep-ocean and shallow-water moored surface buoy arrays are designed, fabricated, instrumented, tested, and deployed at sea for periods of up to one year eng ["disciplinary"] {"size": "", "updatedp": ""} 1982 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://uop.whoi.edu/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bottom pressure", "buoys", "coastal", "meteorology", "monsoons", "oceanography", "salinity", "sigma", "subarctic", "tropical", "water temperature", "water velocity"] [{"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["funding", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.onr.navy.mil/en/Media-Center/media-contacts.aspx"]}, {"institutionName": "Woods Hole Oceanographic Institution, Physical Oceanography Department", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/page.do?pid=7147", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://uop.whoi.edu/contact.html", "rweller@whoi.edu"]}] [{"policyName": "CLIVAR Data Policy", "policyURL": "http://www.clivar.org/resources/data/data-policy"}, {"policyName": "NDSF Data Archive Policy", "policyURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.whoi.edu/page.do?pid=21355"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://uop.whoi.edu/index.html"}] restricted [] ["unknown"] {"api": "http://www.oceansites.org/data/index.html", "apiType": "FTP"} ["none"] https://ndsf.whoi.edu/ndsf-data-archive-policy/ [] unknown unknown [] [] {} Data from our Ocean Reference Stations is managed in compliance with the OceanSITES project, so our data is made freely available as soon as possible, in a standard format that is well documented and easily used. Near real time data telemetered from selected instruments on our buoys, as well as delayed mode, processed data are available from this site, uop.whoi.edu, and from the OceanSITES Global Data Assembly Centers at NDBC and at IFREMER. 2013-10-29 2021-11-16 +r3d100010521 US JGOFS Data System eng [{"additionalName": "US Joint Global Ocean Flux Study", "additionalNameLanguage": "eng"}] http://usjgofs.whoi.edu/jg/dir/jgofs/ [] ["http://usjgofs.whoi.edu/contacts/index.html"] The U.S. launched the Joint Global Ocean Flux Study (JGOFS) in the late 1980s to study the ocean carbon cycle. An ambitious goal was set to understand the controls on the concentrations and fluxes of carbon and associated nutrients in the ocean. A new field of ocean biogeochemistry emerged with an emphasis on quality measurements of carbon system parameters and interdisciplinary field studies of the biological, chemical and physical process which control the ocean carbon cycle. As we studied ocean biogeochemistry, we learned that our simple views of carbon uptake and transport were severely limited, and a new "wave" of ocean science was born. U.S. JGOFS has been supported primarily by the U.S. National Science Foundation in collaboration with the National Oceanic and Atmospheric Administration, the National Aeronautics and Space Administration, the Department of Energy and the Office of Naval Research. U.S. JGOFS, ended in 2005 with the conclusion of the Synthesis and Modeling Project (SMP). eng ["disciplinary"] {"size": "", "updatedp": ""} 1988 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://usjgofs.whoi.edu/jgofMission.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "biogeochemistry", "global cycle", "greenhouse effect", "ocean ecosystems"] [{"institutionName": "Energy.gov", "institutionAdditionalName": ["DOE(formerly)", "U.S. Department of Energy", "United States Department of Energy"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "International Geosphere-Biosphere Programme", "institutionAdditionalName": ["IGBP"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "http://www.igbp.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.igbp.net/quickmenu/contact.4.950c2fa1495db7081e17da7.html"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.UnDFbqzwmgk"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}, {"institutionName": "National Oceanic and Atmospheric Administration, Pacific Marine Environmental Laboratory", "institutionAdditionalName": ["NOAA/PMEL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.pmel.noaa.gov/", "institutionIdentifier": ["ROR:03crn0n59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pmel.noaa.gov/contact-us"]}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil/", "institutionIdentifier": ["ROR:00rk2pe57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.onr.navy.mil/en/Media-Center/media-contacts.aspx"]}, {"institutionName": "Scientific Committee on Oceanic Research", "institutionAdditionalName": ["SCOR"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.scor-int.org/", "institutionIdentifier": ["ROR:04mc82d47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretariat@scor-int.org"]}, {"institutionName": "U.S. National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington", "institutionAdditionalName": ["UW"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.washington.edu/", "institutionIdentifier": ["ROR:00cvxb145"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.washington.edu/home/siteinfo/form/"]}, {"institutionName": "Woods Hole Oceanographic Institution, U.S. JGOFS Central Project Office", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://usjgofs.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://usjgofs.whoi.edu/contacts/index.html"]}] [{"policyName": "Data Acknowledgement Policy", "policyURL": "http://usjgofs.whoi.edu/jg/dir/jgofs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://usjgofs.whoi.edu/copyright.html"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "http://usjgofs.whoi.edu/data-submit-guidelines.html"}] ["unknown"] {"api": "https://www.opendap.org/pdf/install.pdf", "apiType": "OpenDAP"} ["none"] http://usjgofs.whoi.edu/copyright.html [] unknown unknown [] [] {} The U.S. JGOFS data along with data from Ocean Carbon and Biogeochemistry projects are also available from the Biological and Chemical Oceanography Data Management Office (BCO-DMO) formed in late 2006 BCO Data Collection(r3d100000012) 2013-10-30 2021-09-03 +r3d100010522 Martha's Vineyard Coastal Observatory eng [{"additionalName": "MVCO", "additionalNameLanguage": "eng"}] http://www.whoi.edu/mvco [] ["http://www.whoi.edu/page.do?pid=71699", "information@whoi.edu"] The Martha's Vineyard Coastal Observatory (MVCO) is a leading research and engineering facility operated by Woods Hole Oceanographic Institution. The observatory is located at South Beach and in the ocean a mile off the south shore of Martha's Vineyard where it provides real time and archived coastal oceanographic and meteorological data for researchers, students and the general public. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.whoi.edu/page.do?pid=70196 [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["accumulated rain", "atmospheric pressure", "climate studies", "coastal ecology", "flooding", "fluorescence", "humidity", "infrared radiation", "rain gauge", "salinity", "seafloor", "surface pressure", "telemetry", "temperature", "turbidity", "wind"] [{"institutionName": "Massachusetts Technology Collaborative", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.masstech.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.masstech.org/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.onr.navy.mil/en/Media-Center/media-contacts.aspx"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.whoi.edu/main/contact-us"]}] [{"policyName": "Overview", "policyURL": "http://www.whoi.edu/page.do?pid=70177"}, {"policyName": "Privacy Policy", "policyURL": "http://www.whoi.edu/whoi/privacy.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.whoi.edu/page.do?pid=72576"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.whoi.edu/page.do?pid=72576"}] closed [] ["other"] {"api": "http://www.whoi.edu/page.do?pid=70177", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2013-10-30 2021-06-29 +r3d100010524 NASA Exoplanet Archive eng [] https://exoplanetarchive.ipac.caltech.edu/ [] ["https://exoplanetarchive.ipac.caltech.edu/cgi-bin/Helpdesk/nph-genTicketForm"] The NASA Exoplanet Archive collects and serves public data to support the search for and characterization of extra-solar planets (exoplanets) and their host stars. The data include published light curves, images, spectra and parameters, and time-series data from surveys that aim to discover transiting exoplanets. Tools are provided to work with the data, particularly the display and analysis of transit data sets from Kepler and CoRoT. All data are validated by the Exoplanet Archive science staff and traced to their sources. The Exoplanet Archive is the U.S. data portal for the CoRoT mission. eng ["disciplinary", "institutional"] {"size": "3.838 confirmed plantes, 634 mulit-planet-Systems, 4.770 Kepler candidates", "updatedp": "2018-11-21"} 2011-12 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://exoplanetarchive.ipac.caltech.edu/docs/intro.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["exoplanetology", "orbit", "photometric light curves", "stellar astronomy"] [{"institutionName": "California Institute of Technology, Infrared Processing and Analysis Center", "institutionAdditionalName": ["IPAC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipac.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipac.caltech.edu/page/contact"]}, {"institutionName": "California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "NASA Exoplanet Science Institute", "institutionAdditionalName": ["NExSci"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nexsci.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nexsci.caltech.edu/cgi-bin/helpdesk/helpdesk.cgi"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://exoplanetarchive.ipac.caltech.edu/cgi-bin/Helpdesk/nph-genTicketForm"]}] [{"policyName": "Privacy policy", "policyURL": "https://www.ipac.caltech.edu/page/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://pmm.nasa.gov/image-use-policy"}] restricted [{"dataUploadLicenseName": "How to Contribute Data to the NASA Exoplanet Archive", "dataUploadLicenseURL": "https://exoplanetarchive.ipac.caltech.edu/docs/contribute_data.html"}] [] yes {"api": "https://exoplanetarchive.ipac.caltech.edu/docs/API_resources.html", "apiType": "other"} ["none"] https://exoplanetarchive.ipac.caltech.edu/docs/intro.html#ack [] unknown unknown [] [] {} NExScI is sponsored by NASA's Origins Theme and Exoplanet Exploration Program, and operated at IPAC by the California Institute of Technology (Caltech) in coordination with NASA's Jet Propulsion Laboratory (JPL). 2013-10-31 2018-12-14 +r3d100010525 NASA/IPAC Extragalactic Database eng [{"additionalName": "NED", "additionalNameLanguage": "eng"}] http://ned.ipac.caltech.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.b952rv"] ["info@ipac.caltech.edu"] NED is a comprehensive database of multiwavelength data for extragalactic objects, providing a systematic, ongoing fusion of information integrated from hundreds of large sky surveys and tens of thousands of research publications. The contents and services span the entire observed spectrum from gamma rays through radio frequencies. As new observations are published, they are cross- identified or statistically associated with previous data and integrated into a unified database to simplify queries and retrieval. Seamless connectivity is also provided to data in NASA astrophysics mission archives (IRSA, HEASARC, MAST), to the astrophysics literature via ADS, and to other data centers around the world. eng ["disciplinary"] {"size": "Sources and objects: Unprocessed Catalog Sources (not crossmatched) 1,614,141 Distinct Objects 666,777,866 Multiwavelength Cross-IDs 773,017,742 Object Associations 1,413,568. Distinct references: Distinct References 113,173 Publication Abstracts 87,347 Object Links to references 45,303,161. Data: Photometric Data Points 4,980,374,077 Diameters 608,833,152 Redshifts 11,324,496 Objects with Redshifts 7,731,370 Redshift-Independent Distances 269,110 Objects with Redshift-Independent Distances 146,412 Detailed Classifications 502,105 Objects with Detailed Classifications 229,792 Detailed Object Notes 76,142 Images 2,529,660 Spectra 645,455.", "updatedp": "2018-11-21"} 1983 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://ned.ipac.caltech.edu/docs/NEDCurrentBrochure.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astronomy", "astrophysics", "digitized Sky Survey DSS", "extragalactic objects", "glaxies", "measurement", "object classification", "photometry", "physics", "redshift data", "spectroscopy"] [{"institutionName": "California Institute of Technology, Jet Propulsion Laboratory, Infrared Processing and Analysis Center", "institutionAdditionalName": ["IPAC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipac.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipac.caltech.edu/page/contact"]}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ipac.caltech.edu/page/image-use-policy"}] restricted [] ["other"] yes {} ["none"] http://ned.ipac.caltech.edu/help/faq6.html#6c [] unknown yes [] [] {} is covered by Elsevier. NED's data and references are being continually updated, with revised versions being put on-line every 4-6 months. NED contains "Level 5" a knowledgebase for extragalactic astronomy and cosmology 2013-11-05 2021-09-02 +r3d100010526 Keck Observatory Archive eng [{"additionalName": "KOA", "additionalNameLanguage": "eng"}] https://nexsci.caltech.edu/archives/koa/ ["biodbcore-001643"] ["https://koa.ipac.caltech.edu/cgi-bin/Helpdesk/nph-genTicketForm?projname=KOA", "nexsci@ipac.caltech.edu"] The Keck Observatory Archive (KOA)is a collaboration between the NASA Exoplanet Science Institute (NExScI) and the W. M. Keck Observatory (WMKO). This collaboration is founded by the NASA. KOA has been archiving data from the High Resolution Echelle Spectrograph (HIRES) since August 2004 and data acquired with the Near InfraRed echelle SPECtrograph (NIRSPEC) since May 2010. The archived data extend back to 1994 for HIRES and 1999 for NIRSPEC. The W. M. Keck Observatory Archive (KOA) ingests and curates data from the following instruments: DEIMOS, ESI, HIRES, KI, LRIS, MOSFIRE, NIRC2, and NIRSPEC. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nexsci.caltech.edu/missions/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["CCD", "HIRES", "LRIS", "MOSFIRE", "NIRC2", "NIRSPEC", "aeronautics", "astronomical observatory", "astronomy", "jet propulsion", "optical interferometry", "planets", "space", "spectroscopy", "universe", "wavelength-calibrated spectra"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["CALTECH"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": ["ROR:05dxps055"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA Exoplanet Science Institute", "institutionAdditionalName": ["NExScI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nexsci.caltech.edu/", "institutionIdentifier": ["ROR:01trfvq12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nexsci.caltech.edu/about/"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "W. M. Keck Observatory", "institutionAdditionalName": ["WMKO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://keckobservatory.org/", "institutionIdentifier": ["ROR:00ab7ks98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://keckobservatory.org/contact"]}] [{"policyName": "KOA Data Release Policy", "policyURL": "https://koa.ipac.caltech.edu/UserGuide/proprietary_policy.html"}, {"policyName": "KOA Privacy Policy", "policyURL": "https://koa.ipac.caltech.edu/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://koa.ipac.caltech.edu/UserGuide/proprietary_policy.html"}] closed [] ["unknown"] yes {"api": "https://koa.ipac.caltech.edu/UserGuide/PyKOA/TAPClients.html", "apiType": "other"} ["none"] https://koa.ipac.caltech.edu/acknowledge.html [] unknown yes [] [] {} The archived data extend back to 1994 for HIRES and 1999 for NIRSPEC. 2013-07-10 2021-12-10 +r3d100010527 European Nucleotide Archive eng [{"additionalName": "ENA", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/ena/browser/home ["FAIRsharing_doi:10.25504/FAIRsharing.dj8nt8", "MIR:00000372", "OMICS_01029", "RRID:SCR_006515", "RRID:nif-0000-32981"] ["https://www.ebi.ac.uk/ena/browser/support"] The European Nucleotide Archive (ENA) captures and presents information relating to experimental workflows that are based around nucleotide sequencing. A typical workflow includes the isolation and preparation of material for sequencing, a run of a sequencing machine in which sequencing data are produced and a subsequent bioinformatic analysis pipeline. ENA records this information in a data model that covers input information (sample, experimental setup, machine configuration), output machine data (sequence traces, reads and quality scores) and interpreted information (assembly, mapping, functional annotation). Data arrive at ENA from a variety of sources. These include submissions of raw data, assembled sequences and annotation from small-scale sequencing efforts, data provision from the major European sequencing centres and routine and comprehensive exchange with our partners in the International Nucleotide Sequence Database Collaboration (INSDC). Provision of nucleotide sequence data to ENA or its INSDC partners has become a central and mandatory step in the dissemination of research findings to the scientific community. ENA works with publishers of scientific literature and funding bodies to ensure compliance with these principles and to provide optimal submission systems and data access tools that work seamlessly with the published literature. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/ena/browser/about [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CRAM", "DNA, RNA", "epigenomics", "genome", "human genetics", "metagenomics", "protein coding", "samples", "taxonomy data", "transcripts"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982", "RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["EC-FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wayback.archive-it.org/12090/20191127213419/https:/ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory - The European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datasubs@ebi.ac.uk", "update@ebi.ac.uk"]}, {"institutionName": "International Nucleotide Sequence Database Collaboration", "institutionAdditionalName": ["INSDC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.insdc.org/", "institutionIdentifier": ["MIR:00000029", "OMICS_01653", "RRID:SCR_011967"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Genome Campus", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "EMBL-EBI terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}, {"policyName": "ENA and INSDC Policies", "policyURL": "https://www.ebi.ac.uk/ena/browser/about/policies"}, {"policyName": "International Nucleotide Sequence Database Collaboration Policy", "policyURL": "https://www.insdc.org/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] ["other"] {"api": "https://ena-docs.readthedocs.io/en/latest/retrieval/file-download.html", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/ena/browser/about/citing-ena [] unknown yes [] [] {"syndication": "https://www.ebi.ac.uk/about/news/service-news.xml", "syndicationType": "RSS"} is covered by Elsevier. European Nucleotide Archive is covered by Thomson Reuters Data Citation Index. The ENA is developed and maintained at the EMBL-EBI under the guidance of the INSDC International Advisory Committee and a newly formed Scientific Advisory Board. ENA is part of the International Nucleotide Sequence Database Collaboration, which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at NCBI. The archive is composed of three main databases: the Sequence Read Archive, the Trace Archive and the EMBL Nucleotide Sequence Database (also known as EMBL-Bank). The ENA has grown out of the EMBL Data Library which was released in 1982 as the first internationally supported resource for nucleotide sequence data 2013-09-26 2021-12-13 +r3d100010528 GenBank eng [] https://www.ncbi.nlm.nih.gov/genbank/ ["FAIRsharing_doi:10.25504/fairsharing.9kahy4", "OMICS_01650", "RRID:SCR_002760", "RRID:nif-0000-02873"] ["info@ncbi.nlm.nih.gov", "pubmedcentral@ncbi.nlm.nih.gov"] GenBank® is a comprehensive database that contains publicly available nucleotide sequences for almost 260 000 formally described species. These sequences are obtained primarily through submissions from individual laboratories and batch submissions from large-scale sequencing projects, including whole-genome shotgun (WGS) and environmental sampling projects. Most submissions are made using the web-based BankIt or standalone Sequin programs, and GenBank staff assigns accession numbers upon data receipt. Daily data exchange with the European Nucleotide Archive (ENA) and the DNA Data Bank of Japan (DDBJ) ensures worldwide coverage. GenBank is accessible through the NCBI Entrez retrieval system, which integrates data from the major DNA and protein sequence databases along with taxonomy, genome, mapping, protein structure and domain information, and the biomedical journal literature via PubMed. BLAST provides sequence similarity searches of GenBank and other sequence databases. Complete bimonthly releases and daily updates of the GenBank database are available by FTP. eng ["disciplinary"] {"size": "1.014.763.752.113 bases; 23.3642.893 seqeuences;", "updatedp": "2021-12-13"} 1983 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/genbank/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "DNA", "EST", "GSS", "STS", "bioSample", "clone", "epigenomics", "genomes", "metagenomes", "nucleotide", "sequence data", "transcriptome"] [{"institutionName": "International Nucleotide Sequence Database Collaboration", "institutionAdditionalName": ["INSDC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.insdc.org/", "institutionIdentifier": ["OMICS_01653", "RRID:SCR_011967"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gb-admin@ncbi.nlm.nih.gov", "gb-sub@ncbi.nlm.nih.gov", "https://www.ncbi.nlm.nih.gov/home/about/contact/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U. S. National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["ROR:0060t0j89", "RRID:SCR_011446", "RRID:nlx_inv_1005117"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["DHHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181", "RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "INSDC Status Document", "policyURL": "https://www.ddbj.nig.ac.jp/about/insdc-status-e.html"}, {"policyName": "International Nucleotide Sequence Database Collaboration Policy", "policyURL": "https://www.insdc.org/policy.html"}, {"policyName": "Updating Information on GenBank Records", "policyURL": "https://www.ncbi.nlm.nih.gov/genbank/update/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/genbank/", "apiType": "FTP"} ["none"] https://osp.od.nih.gov/wp-content/uploads/Public_Comments_Data_Managment_Sharing_Citation.pdf [] unknown yes [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=genbanksubmissiontoo", "syndicationType": "RSS"} is covered by Elsevier. GenBank is covered by Thomson Reuters Data Citation Index. GenBank is part of the International Nucleotide Sequence Database Collaboration , which comprises the DNA DataBank of Japan (DDBJ), the European Molecular Biology Laboratory (EMBL), and GenBank at NCBI. These three organizations exchange data on a daily basis. 2013-09-25 2021-12-13 +r3d100010529 International Long Term Ecological Research eng [{"additionalName": "ILTER", "additionalNameLanguage": "eng"}] https://www.ilter.network/ [] ["https://www.ilter.network/organization/contact-legal", "office@ilter.network", "shiba@fsc.hokudai.ac.jp"] ILTER is a 'network of networks', a global network of research sites located in a wide array of ecosystems that can help understand environmental change across the globe. ILTER's focus is on long-term, site-based research and monitoring. eng ["other"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ilter.network/operations/purpose [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["ecology", "ecosystem", "environmental change", "socioeconomics"] [{"institutionName": "International Long Term Ecological Research", "institutionAdditionalName": ["Asociacion Cientifica para la Investigacion Ecologica a Largo Plazo ILTER", "ILTER"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ilter.network/organization/governance", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["https://www.ilter.network/organization/contact-legal"]}] [{"policyName": "Ecological data sharing", "policyURL": "https://doi.org/10.1016/j.ecoinf.2015.06.010"}, {"policyName": "ILTER Strategic Plan", "policyURL": "https://www.lter-europe.net/document-archive/central/ECOLEC-D-08-00262.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://elter-ri.eu/transnational-remote-access-ta-ra"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [] {} The Drupal Ecosystem Information Management System (DEIMS) is an online searchable database of ILTER sites: https://deims.org/ Details of the LTER networks that are members of ILTER can be found at: https://www.ilter.network/network/global-coverage eLTER H2020, which runs until 2019, will serve as the flagship for the further development of the Long-term Ecosystem Research infrastructure and community in Europe https://elter-ri.eu/ 2013-10-16 2021-12-13 +r3d100010530 Earthdata powered by EOSDIS eng [{"additionalName": "Earth Observing System Data and Information System", "additionalNameLanguage": "eng"}, {"additionalName": "Earthdata", "additionalNameLanguage": "eng"}] https://earthdata.nasa.gov/ ["FAIRsharing_DOI:10.25504/FAIRsharing.OXUGmN"] ["support@earthdata.nasa.gov"] Earthdata powered by EOSDIS (Earth Observing System Data and Information System) is a key core capability in NASA’s Earth Science Data Systems Program. It provides end-to-end capabilities for managing NASA’s Earth science data from various sources – satellites, aircraft, field measurements, and various other programs. EOSDIS uses the metadata and service discovery tool Earthdata Search https://search.earthdata.nasa.gov/search. The capabilities of EOSDIS constituting the EOSDIS Science Operations are managed by NASA's Earth Science Data and Information System (ESDIS) Project. The capabilities include: generation of higher level (Level 1-4) science data products for several satellite missions; archiving and distribution of data products from Earth observation satellite missions, as well as aircraft and field measurement campaigns. The EOSDIS science operations are performed within a distributed system of many interconnected nodes - Science Investigator-led Processing Systems (SIPS), and distributed, discipline-specific, Earth science Distributed Active Archive Centers (DAACs) with specific responsibilities for production, archiving, and distribution of Earth science data products. The DAACs serve a large and diverse user community by providing capabilities to search and access science data products and specialized services. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://earthdata.nasa.gov/esds [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerosols", "atmospheric chemistry", "ocean biology", "physical oceanography", "radiance", "remote sensing", "satellites", "snow and ice", "socioeconomics", "topography", "tropospheric chemistry", "vegetation"] [{"institutionName": "National Aeronautics and Space Administration, California Institute of Technology, Jet Propulsion Laboratory, Physical Oceanography Distributed Active Archive Center", "institutionAdditionalName": ["PO.DAAC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://podaac.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["podaac@podaac.jpl.nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration, Crustal Dynamics Data Information System", "institutionAdditionalName": ["CDDIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cddis.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["carey.noll@nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration, Earth Observing System Data and Information System", "institutionAdditionalName": ["NASA EOSDIS", "NASA Earth Data"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/", "institutionIdentifier": ["RRID:SCR_005078", "RRID:nlx_144092"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Global Hydrology Resource Center", "institutionAdditionalName": ["GHRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ghrc.nsstc.nasa.gov/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ghrc.nsstc.nasa.gov/home/contact-us"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Earth Sciences Data and Information Services Center", "institutionAdditionalName": ["GES DISC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://disc.sci.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gsfc-help-disc@lists.nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center, Ocean Biology Distributed Active Archive Center", "institutionAdditionalName": ["OB.DAAC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://oceancolor.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oceancolor.gsfc.nasa.gov/forum/oceancolor/forum_show.pl"]}, {"institutionName": "National Aeronautics and Space Administration, Land Processes Distributed Active Archive Center", "institutionAdditionalName": ["LP DAAC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lpdaac.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lpdaac@usgs.gov"]}, {"institutionName": "National Aeronautics and Space Administration, Langley Research Center Atmospheric Science Data Center", "institutionAdditionalName": ["LaRC ASDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["larc-asdc-uds@lists.nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration, MODIS Level 1 and Atmosphere Archive and Distribution System", "institutionAdditionalName": ["MODAPS LAADS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ladsweb.modaps.eosdis.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["modapsuso@sigmaspace.com"]}, {"institutionName": "National Aeronautics and Space Administration, National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nsidc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nsidc@nsidc.org"]}, {"institutionName": "National Aeronautics and Space Administration, Oak Ridge National Laboratory DAAC", "institutionAdditionalName": ["ORNL DAAC", "Oak Ridge National Laboratory Distributed Active Archive Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://daac.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["uso@daac.ornl.gov"]}, {"institutionName": "National Aeronautics and Space Administration, Socio-Economic Data and Applications Center", "institutionAdditionalName": ["SEDAC"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://sedac.ciesin.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sedac.ciesin.columbia.edu/help"]}, {"institutionName": "University of Alaska Fairbanks, Alaska Satellite Facility SAR Data Center", "institutionAdditionalName": ["ASF SDC", "Alaska Satellite Facility"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://asf.alaska.edu/", "institutionIdentifier": ["RRID:SCR_003610", "RRID:nlx_157757"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["uso@asf.alaska.edu"]}] [{"policyName": "Data and Information Policy", "policyURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}] closed [] ["unknown"] yes {"api": "https://earthdata.nasa.gov/esdis/eso/standards-and-references/netcdf-4hdf5-file-format", "apiType": "NetCDF"} ["DOI"] https://earthdata.nasa.gov/earth-observation-data/data-citations-acknowledgements [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://earthdata.nasa.gov/rss.xml", "syndicationType": "RSS"} EOSDIS is designed as a distributed system, with major facilities at data centers located throughout the United States. These institutions are custodians of Earth science mission data and ensure that data will be easily accessible to users. The EOSDIS data centers (Distributed Active Archive Centers, known as DAACs) process, archive, document, and distribute data from NASA's past and current Earth-observing satellites, ariborne instrument observations and field measurement programs. Acting in concert, the data centers provide reliable, robust services to users whose needs may cross the traditional boundaries of a science discipline, while continuing to support the particular needs of users within the discipline communities.For more information about the EOSDIS data centers see https://earthdata.nasa.gov/eosdis/daacs 2013-10-18 2021-12-14 +r3d100010531 International VLBI Service for Geodesy and Astrometry of NASA eng [{"additionalName": "IVS", "additionalNameLanguage": "eng"}, {"additionalName": "International Very Long Bseline Interferometry Service for Geodesy and Astrometry of NASA", "additionalNameLanguage": "eng"}] https://ivscc.gsfc.nasa.gov/ [] ["https://ivscc.gsfc.nasa.gov/contacts.html", "ivscc@lists.nasa.gov"] IVS is an international collaboration of organizations which operate or support Very Long Baseline Interferometry (VLB I) components. The service aspect of IVS is meant to serve both outside users and the geodetic and astrometric community itself. Both the contributors and users of data will be served. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ivscc.gsfc.nasa.gov/about/index.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["astronomy", "earth science", "geodesy", "geophysics", "very ong baseline interferometry"] [{"institutionName": "Federal Agency for Cartography and Geodesy", "institutionAdditionalName": ["BKG Leipzig", "Bundesamt f\u00fcr Kartographie und Geod\u00e4sie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bkg.bund.de/EN/Home/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Massachusetts Institute of Technology, Haystack Observatory", "institutionAdditionalName": ["MIT, Haystack Observatory"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.haystack.mit.edu/geodesy/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["awhitney@haystack.mit.edu"]}, {"institutionName": "NASA Goddard Space Flight Center, Crustal Dynamics Data Information System", "institutionAdditionalName": ["CDDIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cddis.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ivscc.gsfc.nasa.gov/contacts.html"]}, {"institutionName": "Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn, Institut f\u00fcr Geod\u00e4sie und Geoinformation", "institutionAdditionalName": ["IGG"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.igg.uni-bonn.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 PSL , Paris Observatory", "institutionAdditionalName": ["OPAR", "Universit\u00e9 Paris Sciences & Lettres, Observatoire de Paris"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.observatoiredeparis.psl.eu/?lang=en", "institutionIdentifier": ["ROR:029nkcm90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Vienna University of Technology, Department of Geodesy and Geoinformation", "institutionAdditionalName": ["Technische Universit\u00e4t Wien, Department f\u00fcr Geod\u00e4sie und Geoinformation"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hg.geo.tuwien.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ivscc.gsfc.nasa.gov/about/index.html"}] restricted [] ["unknown"] {"api": "ftp://ivsopar.obspm.fr/vlbi/ivsdata/aux/", "apiType": "FTP"} ["DOI"] https://ivscc.gsfc.nasa.gov/publications/citation.html [] unknown yes [] [] {} IVS is a network member of ICSU World Data System http://www.icsu-wds.org/community/membership. A list of IVS member organizations which contribute to IVS by supporting one or more IVS components can be found at: https://ivscc.gsfc.nasa.gov/about/org/members/memberorgs.html All IVS data and products are archived in data centers and are publically available for research in related areas of geodesy, geophysics and astrometry. 2013-10-18 2021-12-14 +r3d100010532 OceanDataPortal eng [{"additionalName": "IODE Ocean Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "ODP", "additionalNameLanguage": "eng"}, {"additionalName": "Seamless access to ocean data", "additionalNameLanguage": "eng"}] http://www.oceandataportal.net/portal/portal/odp-theme/home ["biodbcore-001498"] [] The programme "International Oceanographic Data and Information Exchange" (IODE) of the "Intergovernmental Oceanographic Commission" (IOC) of UNESCO was established in 1961. Its purpose is to enhance marine research, exploitation and development, by facilitating the exchange of oceanographic data and information between participating Member States, and by meeting the needs of users for data and information products. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng", "fra", "jpn", "kor", "por", "rus", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iode.org/index.php?option=com_content&view=article&id=385&Itemid=344 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["geology", "hydrography", "marine", "marine data", "ocean climate", "oceanography", "salinity", "temperature"] [{"institutionName": "IOC Committee on International Oceanographic Data and Information Exchange", "institutionAdditionalName": ["IODE"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.iode.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Intergovernmental Oceanographic Commission of UNESCO", "institutionAdditionalName": ["IOC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ioc.unesco.org/", "institutionIdentifier": ["ROR:01qk7v094"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["p.pissierssens@unesco.org"]}, {"institutionName": "Joint Commission for Oceanography and Marine Meteorology", "institutionAdditionalName": ["JCOMM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://web.archive.org/web/20170115143015/http://jcomm.info/index.php?option=com_content&view=featured&Itemid=100001", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2020", "institutionContact": ["https://community.wmo.int/jcomm-services-legacy", "https://scor-int.org/cb-org/jcomm/"]}, {"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": ["ROR:04r0wrp59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncei.noaa.gov/contact"]}] [{"policyName": "IOC Oceanographic Data Exchange Policy", "policyURL": "https://www.jodc.go.jp/ioc_policy.htm"}, {"policyName": "IOC/IODE Policy and Strategy", "policyURL": "https://www.iode.org/index.php?option=com_content&view=article&id=52&Itemid=100044"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iode.org/index.php?option=com_content&view=article&id=51&Itemid=95"}] restricted [{"dataUploadLicenseName": "IOC Oceanographic Data Exchange Policy", "dataUploadLicenseURL": "https://www.iode.org/index.php?option=com_content&view=article&id=51&Itemid=95"}] ["other"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.oceandataportal.net/portal/portal/odp-theme/services/feeds", "syndicationType": "RSS"} Community: http://www.oceandataportal.net/portal/portal/odp-theme/providers. IODE is a ICSU World Data System Network member. 2013-10-06 2021-12-14 +r3d100010533 International Space Environment Service eng [{"additionalName": "ISES", "additionalNameLanguage": "eng"}] http://www.spaceweather.org/ [] ["http://www.spaceweather.org/ISES/help/contact.html", "portion@korea.kr"] The International Space Environment Service (ISES) is a collaborative network of space weather service-providing organizations around the globe. Our mission is to improve, to coordinate, and to deliver operational space weather services. ISES is organized and operated for the benefit of the international space weather user community. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.spaceweather.org/ISES/intro/wdwd/wdwd.html [{"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["forecasts", "ionosperic", "magnetosperic", "solar", "space weather", "storm", "warning"] [{"institutionName": "National Space Weather Center, Korean Space Weather Center", "institutionAdditionalName": ["KSWC"], "institutionCountry": "KOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://spaceweather.rra.go.kr/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["spaceweather@msip.go.kr"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.spaceweather.org/ISES/swx/swx.jsp#ad-image-0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} At present, there are fourteen Members distributed around the globe; http://www.spaceweather.org/ISES/rwc/rwc.html ISES is Network Member of ICSU-WDS. Prior to 1996, ISES was called the International URSIgram and World Days Service (IUWDS). The IUWDS was formed in 1962 as a combination of the former International World Days Service, initiated in 1959 as part of the International Geophysical Year (IGY), and the former URSI Central Committee of USRIgrams, which initiated rapid international data interchange services in 1928. 2013-11-07 2021-12-14 +r3d100010537 SOAP eng [{"additionalName": "Subaru Observatory Astronomical Projects", "additionalNameLanguage": "eng"}] http://soaps.nao.ac.jp/index.html [] ["soaps_manager@dbc.nao.ac.jp"] The "Subaru Observatory Project" was originally planned for producing very important output to astronomical society by systematic time allocation and using characteristic functions of Subaru Telescope. The observation time for this project consists of guaranteed time both for telescope builders and for people responsible for telescope operation. 3 proposals were selected for execution during 2002 and 2003 fiscal years. They are Subaru Deep Field (SDF) (PI is Dr. Kashikawa at Mitaka, NAOJ), Subaru XMM-Newton Deep Survey (SXDS) (PI is Dr. Sekiguchi at Hilo, Subaru Telescope), and Disk and Planet Searches (SDPS) (PI is Dr. Hayashi at Hilo, Subaru Telescope). SOAPs web server provide the data (fully reduced images and catalogs) download obtained from SDF and SXDS projects. Raw Data are available at the SMOKA Science Archive: https://smoka.nao.ac.jp/ eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://soaps.nao.ac.jp/sdf/project/overview.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["QSQS and galaxies", "Subaru Deep Field (SDF)", "Subaru XMM-Newton Deep Survey (SXDS)", "astronomy", "astrophysics", "extragalactic X-ray population", "universe"] [{"institutionName": "Japan Society for the Promotion of Science", "institutionAdditionalName": ["\u65e5\u672c\u5b66\u8853\u632f\u8208\u4f1a"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jsps.go.jp/english/", "institutionIdentifier": ["ROR:02m7axw05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NAOJ", "institutionAdditionalName": ["Inter-University Research Institute Corporation, National Institutes of Natural Sciences, Astronomical Observatory of Japan", "\u56fd\u7acb\u5929\u6587\u53f0", "\u81ea\u7136\u79d1\u5b66\u7814\u7a76\u6a5f\u69cb \u56fd\u7acb\u5929\u6587\u53f0"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nao.ac.jp/en/", "institutionIdentifier": ["ROR:052rrw050"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["soaps_manager@soaps.nao.ac.jp"]}, {"institutionName": "Subaru Telescope", "institutionAdditionalName": ["\u3059\u3070\u308b\u671b\u9060\u93e1"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://subarutelescope.org/jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://subarutelescope.org/en/inquiries/"]}] [{"policyName": "Copyright and Basic Policy", "policyURL": "https://subarutelescope.org/en/sitepolicy/"}, {"policyName": "Guide to Using NAOJ Website Copyrighted Materials", "policyURL": "https://www.nao.ac.jp/en/policy-guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.subarutelescope.org/en/sitepolicy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://subarutelescope.org/en/sitepolicy/"}] closed [] ["unknown"] {} ["none"] https://www.subarutelescope.org/en/inquiries/faq/index.html#q4 [] unknown yes [] [] {} The Subaru/XMM-Newton Deep Survey (SXDS) is a major new multi-wavelength survey of a ~1.3 square degree region of sky. The SXDS optical imagery represents an unprecedented combination of depth and area coverage, and will be combined with suitably deep images at other wavelengths to provide an accurate census of the contents of the Universe without suffering from the biasing effects of large-scale structure. See also: SMOKA Science Archive 2013-11-08 2021-12-14 +r3d100010538 Protein Data Bank in Europe eng [{"additionalName": "PDBe", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/pdbe/ ["FAIRsharing_doi:10.25504/FAIRsharing.26ek1v", "MIR:00100037", "OMICS_07431", "RRID:SCR_004312", "RRID:nlx_32372"] ["https://www.ebi.ac.uk/pdbe/about/contact", "pdbehelp@ebi.ac.uk"] PDBe is the European resource for the collection, organisation and dissemination of data on biological macromolecular structures. In collaboration with the other worldwide Protein Data Bank (wwPDB) partners - the Research Collaboratory for Structural Bioinformatics (RCSB) and BioMagResBank (BMRB) in the USA and the Protein Data Bank of Japan (PDBj) - we work to collate, maintain and provide access to the global repository of macromolecular structure data. We develop tools, services and resources to make structure-related data more accessible to the biomedical community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ebi.ac.uk/pdbe/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3D structures", "X-rax crystallography", "biochemistry", "biomacromolecular structure data", "bionics", "cryomicroscopy", "cyro-electron microscopy", "molecular biology", "nuclear magnetic resonance spectroscopy NMRS", "nucleid acid", "proteins", "standards", "structural bioninformatics"] [{"institutionName": "BBSRC", "institutionAdditionalName": ["Biological Sciences Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ukri.org/councils/bbsrc/", "institutionIdentifier": ["ROR:00cwqg982", "RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ukri.org/about-us/contact-us/"]}, {"institutionName": "EU", "institutionAdditionalName": ["European Union"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://european-union.europa.eu/index_en", "institutionIdentifier": ["ROR:019w4f821", "RRID:SCR_011219", "RRID:nlx_67420"], "responsibilityStartDate": "2013", "responsibilityEndDate": "2015", "institutionContact": ["https://european-union.europa.eu/contact-eu_en"]}, {"institutionName": "European Molecular Biology Laboratory - European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "MRC", "institutionAdditionalName": ["Medical Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517", "RRID:SCR_011018", "RRID:nlx_inv_1005080"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "2010", "responsibilityEndDate": "2014", "institutionContact": ["https://wellcome.org/who-we-are/contact-us"]}, {"institutionName": "Worldwide Protein Data Bank", "institutionAdditionalName": ["wwPDB"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wwpdb.org/", "institutionIdentifier": ["RRID:SCR_006555", "RRID:nif-0000-23903"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wwpdb.org/about/contact"]}] [{"policyName": "EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}, {"policyName": "wwPDB Policies", "policyURL": "https://www.wwpdb.org/documentation/policy"}, {"policyName": "wwPDB charter", "policyURL": "https://www.wwpdb.org/about/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.wwpdb.org/about/agreement"}] open [{"dataUploadLicenseName": "OneDep", "dataUploadLicenseURL": "https://deposit-pdbe.wwpdb.org/deposition/"}] ["unknown"] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/rcsb/pdb/data/structures/all", "apiType": "FTP"} ["none"] [] unknown yes [] [] {"syndication": "https://www.ebi.ac.uk/pdbe/pdblatest/pdbeNews_rss.xml", "syndicationType": "RSS"} is covered by Elsevier. Protein Data Bank in Europe (PDBe)is a member of Worldwide Protein Data Bank (wwPDB) and EMDataBank. Collaborations: https://www.ebi.ac.uk/pdbe/collaborations 2013-12-05 2022-01-31 +r3d100010539 ChEMBL eng [] https://www.ebi.ac.uk/chembl/ ["FAIRsharing_doi:10.25504/fairsharing.m3jtpg", "OMICS_02731", "RRID:SCR_014042"] ["chembl-help@ebi.ac.uk"] ChEMBL is a database of bioactive drug-like small molecules, it contains 2-D structures, calculated properties (e.g. logP, Molecular Weight, Lipinski Parameters, etc.) and abstracted bioactivities (e.g. binding constants, pharmacology and ADMET data). The data is abstracted and curated from the primary scientific literature, and cover a significant fraction of the SAR and discovery of modern drugs We attempt to normalise the bioactivities into a uniform set of end-points and units where possible, and also to tag the links between a molecular target and a published assay with a set of varying confidence levels. Additional data on clinical progress of compounds is being integrated into ChEMBL at the current time. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ebi.ac.uk/services [{"name": "Configuration data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["basic research", "life science experiments"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["chembl-help@ebi.ac.uk", "https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Research Councils UK, Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982", "RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09", "RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use/"}] closed [] ["unknown"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/chembl/", "apiType": "FTP"} ["DOI"] https://www.ebi.ac.uk/chembl/ [] unknown yes [] [] {"syndication": "https://www.embl.org/rss/embl_news.xml", "syndicationType": "RSS"} ChEMBL is a service of EMBL-EBI. As part of the European Molecular Biology Laboratory (EMBL), the largest part of our funding comes from the governments of EMBL’s member states. The global importance of our work is reflected in the fact that we also attract significant funds from external sources, including some beyond Europe. 2013-11-10 2021-12-14 +r3d100010541 National Archives eng [{"additionalName": "NARA", "additionalNameLanguage": "eng"}] https://www.archives.gov/ [] ["https://www.archives.gov/contact"] The National Archives and Records Administration (NARA) is the nation's record keeper. Of all documents and materials created in the course of business conducted by the United States Federal government, only 1%-3% are so important for legal or historical reasons that they are kept by us forever. Those valuable records are preserved and are available to you, whether you want to see if they contain clues about your family’s history, need to prove a veteran’s military service, or are researching an historical topic that interests you. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.archives.gov/about/info/mission.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["black studies", "federal register", "laws and regulations", "military history", "popular interest", "presidential libraries", "presidential materials"] [{"institutionName": "The USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. National Archives and Records Administration", "institutionAdditionalName": ["NARA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.archives.gov/", "institutionIdentifier": ["ROR:032214n64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.archives.gov/contact"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.archives.gov/global-pages/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html#copyright"}] closed [] ["unknown"] {"api": "https://www.federalregister.gov/reader-aids/developer-resources/rest-api", "apiType": "REST"} ["none"] [] unknown unknown [] [] {"syndication": "https://www.archives.gov/news/rss.php", "syndicationType": "RSS"} National Archives is a meta-portal with access to collections of the different locations of the nationwide network of archives facilities https://www.archives.gov/locations/. A full list of RSS Feeds can be found at https://www.archives.gov/social-media/rss-feeds.html 2013-11-10 2021-12-14 +r3d100010542 ESTHER database eng [{"additionalName": "ESTerases and alpha/beta-Hydrolase Enzymes and Relatives", "additionalNameLanguage": "eng"}] http://bioweb.supagro.inra.fr/ESTHER/general?what=index ["ISSN 2417-937X", "RRID:SCR_008479", "RRID:nif-0000-02817"] ["arnaud.chatonnet@inra.fr"] The server ESTHER (ESTerases and alpha/beta-Hydrolase Enzymes and Relatives) is dedicated to the analysis of proteins or protein domains belonging to the superfamily of alpha/beta-hydrolases, exemplified by the cholinesterases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://bioweb.supagro.inra.fr/ESTHER/definition [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biotech", "hydrolase"] [{"institutionName": "AFM-T\u00e9l\u00e9thon", "institutionAdditionalName": ["French Muscular Dystrophy Association"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.afm-telethon.com/", "institutionIdentifier": ["ROR:0162y2387", "RRID:SCR_004033", "RRID:nlx_143536"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Agence National de la Recherche", "institutionAdditionalName": ["ANR", "French National Research Agency"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://anr.fr/en/", "institutionIdentifier": ["ROR:00rbzpz17", "RRID:SCR_011248", "RRID:nlx_71540"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Aix-Marseille Universit\u00e9, Architecture et Fonction des Macromol\u00e9cules Biologiques", "institutionAdditionalName": ["afmb"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.afmb.univ-mrs.fr/?lang=en", "institutionIdentifier": ["ROR:04jm8zw14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretariat@afmb.univ-mrs.fr"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs.fr/index.php", "institutionIdentifier": ["ROR:02feahw73", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "INRAE", "institutionAdditionalName": ["Institut national de recherche pour l'agriculture, l'alimentation et l'environnement", "National Research Institute for Agriculture, Food and Environment"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.inrae.fr/en", "institutionIdentifier": ["ROR:003vg9w96", "RRID:SCR_011299", "RRID:nlx_58306"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.inrae.fr/en/contact"]}, {"institutionName": "Unit\u00e9 Mixte de Recherche Dynamique Musculaire & M\u00e9tabolisme", "institutionAdditionalName": ["DMEM"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www6.montpellier.inra.fr/dmem", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and Privacy policy", "policyURL": "http://bioweb.supagro.inra.fr/ESTHER/general?what=acknowledgement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://bioweb.supagro.inra.fr/ESTHER/general?what=acknowledgement"}] closed [] ["unknown"] yes {"api": "http://bioweb.supagro.inra.fr/ESTHER/aqlquery", "apiType": "other"} ["none"] http://bioweb.supagro.inra.fr/ESTHER/general?what=acknowledgement [] yes unknown [] [] {} ESTHER database is covered by Thomson Reuters Data Citation Index. 2013-11-10 2021-12-14 +r3d100010543 Protein Lysine Modification Database eng [{"additionalName": "PLMD", "additionalNameLanguage": "eng"}] http://plmd.biocuckoo.org/ ["FAIRsharing_doi:10.25504/fairsharing.se7ewy"] ["haodong_xu@hust.edu.cn", "http://plmd.biocuckoo.org/contact.php", "xueyu@hust.edu.cn"] PLMD (Protein Lysine Modifications Database) is an online data resource specifically designed for protein lysine modifications (PLMs). The PLMD 3.0 database was extended and adapted from CPLA 1.0 (Compendium of Protein Lysine Acetylation) database and CPLM 2.0 (Compendium of Protein Lysine Modifications) database eng ["disciplinary", "institutional"] {"size": "284.780 modification events in 53.501 proteins for 20 types", "updatedp": "2018-08-16"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://plmd.biocuckoo.org/userguide.php [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["protein lysine modifications", "zebrafish"] [{"institutionName": "Cuckoo Workgroup", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.biocuckoo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lzx.bioinfo@gmail.com", "xueyu@hust.edu.cn"]}, {"institutionName": "Huazhong University of Science and Technology, Department of Biomedical Engineering, College of Life Science and Technology", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://english.life.hust.edu.cn/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lzx.bioinfo@gmail.com", "xueyu@hust.edu.cn"]}, {"institutionName": "University of Science & Technology of China, Hefei National Laboratory for Physical Sciences at the Microscale", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.hfnl.ustc.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["renjian.sysu@gmail.com", "xueyu@mail.hust.edu.cn"]}, {"institutionName": "University of Science & Technology of China, School of Life Sciences", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.biox.ustc.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GPS Manual", "policyURL": "http://gps.biocuckoo.org/download/GPS%20Manual.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://cplm.biocuckoo.org/download.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://nar.oxfordjournals.org/content/39/suppl_1/D1029.full#sec-1"}] closed [] ["other"] yes {} ["none"] http://plmd.biocuckoo.org/index.php [] unknown yes [] [] {} CPLA is covered by Thomson Reuters Data Citation Index. A description of the CPLA 1.0 database is available at https://doi.org/10.1093/nar/gkq939 Link to CPLM: http://cplm.biocuckoo.org/index_1.php 2013-11-11 2021-12-15 +r3d100010544 DrugBank eng [{"additionalName": "DrugBank Online", "additionalNameLanguage": "eng"}, {"additionalName": "Open Data Drug & Drug Target Database", "additionalNameLanguage": "eng"}] https://go.drugbank.com/ ["FAIRsharing_doi:10.25504/fairsharing.353yat", "MIR:00000102", "RRID:SCR_002700", "RRID:nif-0000-00417"] ["https://go.drugbank.com/contact"] The DrugBank database is a unique bioinformatics and cheminformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. The latest release of DrugBank (version 5.1.1, released 2018-07-03) contains 11,881 drug entries including 2,526 approved small molecule drugs, 1,184 approved biotech (protein/peptide) drugs, 129 nutraceuticals and over 5,751 experimental drugs. Additionally, 5,132 non-redundant protein (i.e. drug target/enzyme/transporter/carrier) sequences are linked to these drug entries. Each DrugCard entry contains more than 200 data fields with half of the information being devoted to drug/chemical data and the other half devoted to drug target or protein data. eng ["disciplinary"] {"size": "11.881 drug entries", "updatedp": "2018-10-16"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://go.drugbank.com/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biology", "genomics", "life sciences", "medicine", "molecular biology", "pharmacology", "proteins"] [{"institutionName": "Alberta Innovates - Health Solutions", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://albertainnovates.ca/", "institutionIdentifier": ["ROR:00ynafe15"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.metabolomicscentre.ca/", "institutionIdentifier": ["ROR:03r5x2b75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.metabolomicscentre.ca/contact"]}, {"institutionName": "University of Alberta, Faculty of Science, Departments of Computing Science and Biological Sciences, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wishartlab.com/contact"]}] [{"policyName": "About DrugBank", "policyURL": "https://go.drugbank.com/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://go.drugbank.com/about"}] closed [] ["unknown"] yes {} ["none"] https://go.drugbank.com/about [] yes yes [] [] {} DrugBank is covered by Thomson Reuters Data Citation Index. 2013-11-11 2021-12-15 +r3d100010545 The Dataweb Dataverse eng [{"additionalName": "DataFerrett", "additionalNameLanguage": "eng"}, {"additionalName": "TheDataWeb", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/census [] [] !!!the repository is no longer available, Please use: TheDataWeb at https://thedataweb.rm.census.gov/!!! This dataverse contains holdings from The DataWeb . TheDataWeb is the network of online data libraries and the infrastructure for intelligent browsing and accessing data across the Internet using the DataFerrett as the interface. TheDataWeb brings together under one umbrella demographic, economic, environmental, health, (and more) datasets that are usually separated by geography and/or organizations. eng ["disciplinary"] {"size": "0", "updatedp": "2019-11-28"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["U.S. census data"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Commerce, U.S. Census Bureau, TheDataWeb", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://thedataweb.rm.census.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://thedataweb.rm.census.gov/ContactUs.html"]}] [{"policyName": "Dataverse 4.01 Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Privacy Policy", "policyURL": "https://www.census.gov/about/policies/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [] {} The Dataweb Dataverse is covered by Thomson Reuters Data Citation Index. 2013-11-11 2019-11-28 +r3d100010546 EcoGene eng [{"additionalName": "Escherichia coli strain K12 genome database", "additionalNameLanguage": "eng"}] http://ecogene.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.3q3kvn", "MIR:00000163", "OMICS_03184", "RRID:SCR_002437", "RRID:nif-0000-02784"] ["http://ecogene.org/?q=contact_us"] The repository is no longer available. >>>!!!<<< 2019-12-02: no more access to EcoGene >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ecoliwiki.net/colipedia/index.php/EcoGene [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "cellular component", "genetics", "health", "molecular", "protein"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Miami, Miller School of Medicine Department of Biochemistry and Molecular Biology", "institutionAdditionalName": ["BMB"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://biomed.med.miami.edu/graduate-programs/biochemistry-and-molecular-biology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://biomed.med.miami.edu/graduate-programs/biochemistry-and-molecular-biology/program-contacts-BMB", "krudd@med.miami.edu"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.med.miami.edu/legal/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.med.miami.edu/legal/copyright/"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} description: EcoGene is a database and website devoted to continuously improving the structural and functional annotation of Escherichia coli K-12, one of the most well understood model organisms, represented by the MG1655(Seq) genome sequence and annotations. EcoGene is covered by Thomson Reuters Data Citation Index. More information: https://www.ncbi.nlm.nih.gov/pubmed/10592181?dopt=Abstract 2013-11-12 2019-12-02 +r3d100010547 Eurostat eng [] https://ec.europa.eu/eurostat/ [] ["https://ec.europa.eu/eurostat/help/support"] Eurostat is the statistical office of the European Union situated in Luxembourg. Its task is to provide the European Union with statistics at European level that enable comparisons between countries and regions. Eurostat offers a whole range of important and interesting data that governments, businesses, the education sector, journalists and the public can use for their work and daily life. eng ["other"] {"size": "", "updatedp": ""} 1953 ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ec.europa.eu/eurostat/about/overview [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "census data", "economy", "energy", "environment", "finance", "fisheries", "humanitites", "industry", "law", "population", "science", "services", "survey", "technology", "trade", "transport"] [{"institutionName": "European Commission", "institutionAdditionalName": ["Commission europ\u00e9enne", "EC", "Europ\u00e4ischen Kommission"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/index_en", "institutionIdentifier": ["ROR:00k4n6c32", "RRID:SCR_011211", "RRID:nlx_47458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/about-european-commission/contact_en"]}] [{"policyName": "Legal notice", "policyURL": "https://ec.europa.eu/info/legal-notice_en"}, {"policyName": "Licence policy", "policyURL": "https://ec.europa.eu/eurostat/about/policies/copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ec.europa.eu/eurostat/about/policies/copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en#copyright-notice"}] closed [] ["unknown"] yes {"api": "https://ec.europa.eu/eurostat/web/sdmx-web-services/rest-sdmx-2.1", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "SDMX - Statistical Data and Metadata Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange"}] {"syndication": "https://ec.europa.eu/eurostat/web/rss/ess-feeds", "syndicationType": "RSS"} eurostat is covered by Thomson Reuters Data Citation Index. Access to Microdata is supplied to recognised research organizations after an assessment process. A mediator that translates original Eurostat files to RDF at lookup time: http://estatwrap.ontologycentral.com/ Total dataset size approx. 40 million triples. Updated twice daily. 2013-11-20 2021-12-15 +r3d100010548 Infevers eng [{"additionalName": "The registry of Auto-Inflammatory Disease mutations", "additionalNameLanguage": "eng"}] https://infevers.umai-montpellier.fr/web/ ["FAIRsharing_doi:10.25504/FAIRsharing.g6kz6h", "ISSN 2427-3902", "RRID:SCR_007738", "RRID:nif-0000-03022"] ["florian.milhavet@inserm.fr", "https://infevers.umai-montpellier.fr/web/contact.php?n="] The ISSAID website gathers resources related to the systemic autoinflammatory diseases in order to facilitate contacts between interested physicians and researchers. The website provides support to share and rapidly disseminate information, thoughts, feelings and experiences to improve the quality of life of patients and families affected by systemic autoinflammatory diseases, and promote advances in the search for causes and cures. eng ["disciplinary"] {"size": "1.492 sequence variants", "updatedp": "2017-03-09"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA", "Familial Mediterranean Fever (FMF)", "gene mutations", "genomic sequence", "genomics", "hereditary autoinflammatory diseases"] [{"institutionName": "European Commission, Community Research and Development Information Service, Fifth Framework Programme - FP5", "institutionAdditionalName": ["CORDIS FP5"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://collections.internetmemory.org/haeu/20161215122208/http:/cordis.europa.eu/fp5/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "2002", "institutionContact": []}, {"institutionName": "International Society for Systemic AutoInflammatory Diseases", "institutionAdditionalName": ["ISSAID"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.issaid.org/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "general conditions of use", "policyURL": "https://infevers.umai-montpellier.fr/web/conditons.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://infevers.umai-montpellier.fr/web/conditons.html"}] closed [] ["unknown"] no {} ["none"] https://infevers.umai-montpellier.fr/web/conditons.html [] yes unknown [] [] {} Infevers is covered by Thomson Reuters Data Citation Index. 2013-11-18 2021-12-15 +r3d100010549 Greengenes eng [{"additionalName": "The Greengenes Database", "additionalNameLanguage": "eng"}] https://greengenes.secondgenome.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.bpxgb6", "MIR:00000165", "RRID:SCR_002830", "RRID:nif-0000-02927"] [] Greengenes is an Earth Sciences website that assists clinical and environmental microbiologists from around the globe in classifying microorganisms from their local environments. A 16S rRNA gene database addresses limitations of public repositories by providing chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "bacteria", "ecology", "microorganism", "soil", "water"] [{"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab", "LBNL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ROR:02jbv0t02", "RRID:SCR_011336", "RRID:nlx_37075"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lbl.gov/web-support/"]}, {"institutionName": "Lawrence Livermore National Laboratory", "institutionAdditionalName": ["LLNL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.llnl.gov/", "institutionIdentifier": ["ROR:041nk4h53", "RRID:SCR_011337", "RRID:nlx_151761"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.llnl.gov/about/contact"]}, {"institutionName": "Second Genome, Inc.", "institutionAdditionalName": ["The Microbiome Company"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.secondgenome.com/", "institutionIdentifier": ["ROR:03mnpq162"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["partnering@secondgenome.com"]}, {"institutionName": "University of Califonia, Knight Lab", "institutionAdditionalName": ["KNIGHTLAB"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://knightlab.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://knightlab.ucsd.edu/wordpress/?page_id=34"]}, {"institutionName": "University of Queensland, Australian Centre for Ecogenomics", "institutionAdditionalName": ["ACE"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ecogenomic.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ecogenomic.org/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/deed.en_US"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/deed.en_US"}] closed [] ["unknown"] yes {"api": "ftp://greengenes.microbio.me/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} Greengenes is covered by Thomson Reuters Data Citation Index. 2013-11-27 2021-12-15 +r3d100010550 MiCroKitS eng [{"additionalName": "Midbody, Centrosome, Kinetochore and Spindle", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: MiCroKit", "additionalNameLanguage": "eng"}] http://microkit.biocuckoo.org/index.php ["FAIRsharing_doi:10.25504/fairsharing.3cswbc", "RRID:SCR_007052", "RRID:nif-0000-03126"] ["http://microkit.biocuckoo.org/contact.php", "lzx.bioinfo@gmail.com", "xueyu@hust.edu.cn"] During cell cycle, numerous proteins temporally and spatially localized in distinct sub-cellular regions including centrosome (spindle pole in budding yeast), kinetochore/centromere, cleavage furrow/midbody (related or homolog structures in plants and budding yeast called as phragmoplast and bud neck, respectively), telomere and spindle spatially and temporally. These sub-cellular regions play important roles in various biological processes. In this work, we have collected all proteins identified to be localized on kinetochore, centrosome, midbody, telomere and spindle from two fungi (S. cerevisiae and S. pombe) and five animals, including C. elegans, D. melanogaster, X. laevis, M. musculus and H. sapiens based on the rationale of "Seeing is believing" (Bloom K et al., 2005). Through ortholog searches, the proteins potentially localized at these sub-cellular regions were detected in 144 eukaryotes. Then the integrated and searchable database MiCroKiTS - Midbody, Centrosome, Kinetochore, Telomere and Spindle has been established. eng ["disciplinary"] {"size": "87.983 unique protein entries", "updatedp": "2019-12-04"} 2009-07-09 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "chromosome", "genetics", "molecular biology", "protein"] [{"institutionName": "The Cuckoo Workgroup", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.biocuckoo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["renjian.sysu@gmail.com", "xueyu@mail.hust.edu.cn"]}, {"institutionName": "University of Science & Technology of China, Hefei National Laboratory for Physical Sciences at Microscale", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.hfnl.ustc.edu.cn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["renjian.sysu@gmail.com", "xueyu@mail.hust.edu.cn"]}, {"institutionName": "University of Science & Technology of China, School of Life Sciences", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.biox.ustc.edu.cn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User Guide", "policyURL": "http://microkit.biocuckoo.org/userguide.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://microkit.biocuckoo.org/index.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://microkit.biocuckoo.org/download.php"}] closed [] ["unknown"] yes {} ["none"] http://microkit.biocuckoo.org/index.php [] yes unknown [] [] {} MiCroKitS is covered by Thomson Reuters Data Citation Index. 2013-11-18 2021-12-16 +r3d100010551 Nucleic Acid Database eng [{"additionalName": "A Portal for Three-dimensional Structural Information about Nucleic Acids", "additionalNameLanguage": "eng"}, {"additionalName": "NDB", "additionalNameLanguage": "eng"}] http://ndbserver.rutgers.edu/ ["RRID:SCR_003255", "RRID:nif-0000-03184"] ["ndbadmin@ndbserver.rutgers.edu"] The NDB is a resource for nucleic acid research and education. The NDB assembles and distributes information about the three-dimensional structures of nucleic acids through a variety of resources, including a searchable database, Atlas, and software eng ["disciplinary"] {"size": "9.255 structures", "updatedp": "2017-05-17"} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://ndbserver.rutgers.edu/ndbmodule/about_ndb/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "bioinformatics", "nucleid acids", "nucleotides", "nuclopeptides", "nucloproteins", "proteins"] [{"institutionName": "ENERGY.GOV", "institutionAdditionalName": ["U.S. Department of Energy"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rutgers University, Department of Chemistry", "institutionAdditionalName": ["The State Univesity of New Jersey"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://chem.rutgers.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://chem.rutgers.edu/nucleic_acid_database_project"]}] [{"policyName": "Computing Policies and Guidelines", "policyURL": "https://oit.rutgers.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://oit.rutgers.edu/policies"}] closed [] ["unknown"] {"api": "http://ndbserver.rutgers.edu/ndbmodule/download_data/downloadIndex.html", "apiType": "FTP"} [] http://ndbserver.rutgers.edu/ndbmodule/about_ndb/about.html [] unknown yes [] [] {} Nucleic Acid Database is covered by Thomson Reuters Data Citation Index. The NDB follows the dictionaries and formats used by the Worldwide Protein Data Bank. Please see http://www.wwpdb.org/ for format announcements and documentation. 2013-11-21 2017-05-17 +r3d100010552 Mouse Phenome Database eng [{"additionalName": "MPD", "additionalNameLanguage": "eng"}] http://phenome.jax.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.h6enr1", "RRID:SCR_003212", "RRID:nif-0000-03160"] ["phenome@jax.org"] The Mouse Phenome Database (MPD; phenome.jax.org) has characterizations of hundreds of strains of laboratory mice to facilitate translational discoveries and to assist in selection of strains for experimental studies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://phenome.jax.org/db/q?rtn=docs/aboutmpd [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["blood", "bone", "brain", "cancer", "cardiovascular", "cell", "endocrine", "genetic", "immune system", "muscle", "nervous system"] [{"institutionName": "National Institutes of Health, National Institute on Drug Abuse", "institutionAdditionalName": ["NIDA", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.drugabuse.gov/about-nida/contact-us"]}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": ["JAX"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jax.org/contact/index.html"]}] [{"policyName": "JAX mice terms of use", "policyURL": "https://www.jax.org/terms-of-use"}, {"policyName": "Terms of Use", "policyURL": "http://phenome.jax.org/db/q?rtn=docs/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://phenome.jax.org/db/q?rtn=docs/termsofuse"}] restricted [{"dataUploadLicenseName": "Data submission guidelines", "dataUploadLicenseURL": "http://phenome.jax.org/db/q?rtn=docs/dataguide"}] ["unknown"] yes {} ["none"] http://phenome.jax.org/db/q?rtn=docs/citingmpd [] unknown yes [] [] {} MPD is covered by Thomson Reuters Data Citation Index. Funding acknowledgements: http://phenome.jax.org/db/q?rtn=docs/funding 2013-11-26 2021-11-16 +r3d100010553 REFOLDdb eng [{"additionalName": "including: REFOLD", "additionalNameLanguage": "eng"}] http://p4d-info.nig.ac.jp/refolddatabase/ ["RRID:SCR_007889", "RRID:nif-0000-03396"] ["ashley.buckle@monash.edu", "hsugawar@nig.ac.jp"] REFOLD has merged to REFOLDdb. REFOLDdb is a unique database for the life sciences research community, providing annotated information for designing new refolding protocols and customizing existing methodologies. We envisage that this resource will find wide utility across broad disciplines that rely on the production of pure, active, recombinant proteins. Furthermore, the database also provides a useful overview of the recent trends and statistics in refolding technology development.We based our resource on the existing REFOLD database, which has not been updated since 2009. We redesigned the data format to be more concise, allowing consistent representations among data entries compared with the original REFOLD database. The remodeled data architecture enhances the search efficiency and improves the sustainability of the database. After an exhaustive literature search we added experimental refolding protocols from reports published 2009 to early 2017. In addition to this new data, we fully converted and integrated existing REFOLD data into our new resource. eng ["disciplinary"] {"size": "7.000 papers; 300 reports", "updatedp": "2017-05-17"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cell biology", "molecular biology", "nutrition", "protein"] [{"institutionName": "Monash University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.monash.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": ["http://www.monash.edu.au/people/contact.html"]}, {"institutionName": "National Institute of Genetics", "institutionAdditionalName": ["\u56fd\u7acb\u907a\u4f1d\u5b66\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nig.ac.jp/nig/", "institutionIdentifier": [], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Freely available", "policyURL": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5402662/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.monash.edu.au/disclaimer-copyright.html"}] restricted [] [] yes {} ["none"] http://p4d-info.nig.ac.jp/refolddb/about.cgi?lang=EN [] yes yes [] [] {"syndication": "http://refold.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} REFOLDdb is covered by Thomson Reuters Data Citation Index. Code hosted on github https://github.com/steveandroulakis/Refold-2 2013-11-27 2021-09-02 +r3d100010554 South African Data Archive eng [{"additionalName": "SADA", "additionalNameLanguage": "eng"}] [] ["sada@nrf.ac.za"] >>>!!!<<< 2020-08-28; the repository is no longer available >>>!!!<<< The South African Data Archive promotes and facilitates the sharing of research data and related documentation of computerised raw quantitative data of large scale regional, national and international research projects mainly in the humanities and social sciences. It makes these datasets available to the research community for further analysis, comparative studies, longitudinal studies, teaching and decision-making purposes. eng ["other"] {"size": "182 records", "updatedp": "2017-05-17"} 2000 2018 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://sada.nrf.ac.za/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "census", "demography", "economics", "education", "health", "management", "opinion polls", "political science", "sociology", "survey"] [{"institutionName": "National Research Foundation", "institutionAdditionalName": ["NRF"], "institutionCountry": "ZAF", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nrf.ac.za/", "institutionIdentifier": ["ROR:05s0g1g46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nrf.ac.za"]}, {"institutionName": "South African Data Archive", "institutionAdditionalName": ["SADA"], "institutionCountry": "ZAF", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrf.ac.za/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://sada.nrf.ac.za/deposit.html"}] restricted [{"dataUploadLicenseName": "Copyright", "dataUploadLicenseURL": "http://sada.nrf.ac.za/deposit.html"}] ["DSpace"] {} ["hdl"] http://sada.nrf.ac.za/citation.html [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://sada-data.nrf.ac.za/feed/atom_1.0/site", "syndicationType": "ATOM"} South African Data Archive is covered by Thomson Reuters Data Citation Index. 2013-11-25 2020-08-28 +r3d100010555 Stanford Microarray Database eng [{"additionalName": "SMD", "additionalNameLanguage": "eng"}] http://smd.princeton.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.x93ckv", "RRID:OMICS_00870", "RRID:SCR_004987", "RRID:nlx_94141"] [] >>>!!!<<< SMD has been retired. After approximately fifteen years of microarray-centric research service, the Stanford Microarray Database has been retired. We apologize for any inconvenience; please read below for possible resolutions to your queries. If you are looking for any raw data that was directly linked to SMD from a manuscript, please search one of the public repositories. NCBI Gene Expression Omnibus EBI ArrayExpress All published data were previously communicated to one (or both) of the public repositories. Alternatively, data for publications between 1997 and 2004 were likely migrated to the Princeton University MicroArray Database, and are accessible there. If you are looking for a manuscript supplement (i.e. from a domain other than smd.stanford.edu), perhaps try searching the Internet Archive: Wayback Machine https://archive.org/web/ . >>>!!!<<< The Stanford Microarray Database (SMD) is a DNA microarray research database that provides a large amount of data for public use. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 2016-01-18 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "bacteria", "biology", "collagen", "organism", "protein"] [{"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/contact.cfm"]}, {"institutionName": "Stanford University, School of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://med.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://med.stanford.edu/school/contacts.html"]}, {"institutionName": "Stanford University, School of Medicine, Departments of Biochemistry and Genetics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://cmgm.stanford.edu/biochem/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["array@genome.stanford.edu", "http://cmgm.stanford.edu/biochem/contactSBD.html"]}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/mit-license.php"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://smd.princeton.edu/"}] closed [] ["other"] yes {} ["none"] [] unknown unknown [] [] {} SMD is covered by Thomson Reuters Data Citation Index. 2013-12-02 2021-11-09 +r3d100010556 MyTardis at Monash University eng [{"additionalName": "Tardis", "additionalNameLanguage": "eng"}] http://www.mytardis.org/ [] ["store.star.help@monash.edu"] MyTardis began at Monash University to solve the problem of users needing to store large datasets and share them with collaborators online. Its particular focus is on integration with scientific instruments, instrument facilities and research lab file storage. Our belief is that the less effort a researcher has to expend safely storing data, the more likely they are to do so. This approach has flourished with MyTardis capturing data from areas such as protein crystallography, electron microscopy, medical imaging and proteomics and with deployments at Australian institutions such as University of Queensland, RMIT, University of Sydney and the Australian Synchrotron. Data access via https://www.massive.org.au/ and https://store.erc.monash.edu.au/experiment/view/104/ and see 'remarks'. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.mytardis.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["blood plasma", "crystallography", "malaria", "medical imaging", "protein crystallography", "proteomics", "synchrotron", "virus", "x-rays"] [{"institutionName": "Australian Synchrotron", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.synchrotron.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.synchrotron.org.au/index.php/contact-us"]}, {"institutionName": "Monash University, eResearch Centre", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://platforms.monash.edu/eresearch/", "institutionIdentifier": ["RRID:SCR_001088"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://platforms.monash.edu/eresearch/index.php?option=com_contact_enhanced&view=contact&id=5&Itemid=168"]}, {"institutionName": "Royal Melbourne Institute of Technology", "institutionAdditionalName": ["RMIT"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rmit.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rmit.edu.au/contact"]}, {"institutionName": "Swinburne University of Technology", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.swinburne.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.swinburne.edu.au/contact/"]}, {"institutionName": "University of Queensland", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uq.edu.au/contacts/"]}, {"institutionName": "University of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sydney.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sydney.edu.au/contact.shtml"]}] [{"policyName": "Community", "policyURL": "http://www.mytardis.org/community/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {"api": "http://mytardis.readthedocs.io/en/latest/dev/api.html", "apiType": "REST"} ["hdl"] [] unknown unknown [] [] {"syndication": "http://www.mytardis.org/news?format=RSS", "syndicationType": "RSS"} List of current instruments adding data to MyTardis https://docs.google.com/spreadsheet/pub?key=0AiWyNjDdk40PdElvVmpGWjNiWUd1b2hxM0tmNUl6RVE&output=html ; MyTardis Australian Synchrotron Store: https://store.synchrotron.org.au/; Software for download at github: https://github.com/mytardis/mytardis 2013-12-02 2021-09-07 +r3d100010557 Universal PBM Resource for Oligonucleotide Binding Evaluation eng [{"additionalName": "UniPROBE", "additionalNameLanguage": "eng"}] http://thebrain.bwh.harvard.edu/uniprobe/ ["RRID:OMICS_00546", "RRID:SCR_005803", "RRID:nif-0000-03611"] ["uniprobe@genetics.med.harvard.edu"] The UniPROBE (Universal PBM Resource for Oligonucleotide Binding Evaluation) database hosts data generated by universal protein binding microarray (PBM) technology on the in vitro DNA binding specificities of proteins. This initial release of the UniPROBE database provides a centralized resource for accessing comprehensive data on the preferences of proteins for all possible sequence variants ('words') of length k ('k-mers'), as well as position weight matrix (PWM) and graphical sequence logo representations of the k-mer data. In total, the database currently hosts DNA binding data for 406 nonredundant proteins from a diverse collection of organisms, including the prokaryote Vibrio harveyi, the eukaryotic malarial parasite Plasmodium falciparum, the parasitic Apicomplexan Cryptosporidium parvum, the yeast Saccharomyces cerevisiae, the worm Caenorhabditis elegans, mouse, and human. The database's web tools (on the right) include a text-based search, a function for assessing motif similarity between user-entered data and database PWMs, and a function for locating putative binding sites along user-entered nucleotide sequences eng ["disciplinary"] {"size": "", "updatedp": ""} 2008-05 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://the_brain.bwh.harvard.edu/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "biology", "cells", "gene ontology", "molecular", "mouse", "protein"] [{"institutionName": "Brigham and Women's Hospital, Bulyk Laboratory", "institutionAdditionalName": ["Bulyk Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://thebrain.bwh.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://the_brain.bwh.harvard.edu/contact.html"]}] [{"policyName": "Downloads", "policyURL": "http://thebrain.bwh.harvard.edu/uniprobe/downloads.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "http://opendatacommons.org/licenses/pddl/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://thebrain.bwh.harvard.edu/uniprobe/academic-license.php"}] closed [] ["other"] yes {} ["none"] http://the_brain.bwh.harvard.edu/uniprobe/about.php [] yes unknown [] [] {} UniPROBE is covered by Thomson Reuters Data Citation Index. 2013-12-02 2021-09-07 +r3d100010558 NERC Data Catalogue Service eng [{"additionalName": "NERC DCS", "additionalNameLanguage": "eng"}, {"additionalName": "Natural Environment Research Council DCS", "additionalNameLanguage": "eng"}, {"additionalName": "Natural Environmental Research Council Data Catalogue Service", "additionalNameLanguage": "eng"}] https://data-search.nerc.ac.uk/geonetwork/srv/ger/catalog.search#/home ["FAIRsharing_doi:10.25504/FAIRsharing.xj7m8y"] ["data@nerc.ukri.org"] The DCS allows you to search a catalogue of metadata (information describing data) to discover and gain access to NERC's data holdings and information products. The metadata are prepared to a common NERC Metadata Standard and are provided to the catalogue by the NERC Data Centres. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bodc.ac.uk/resources/inventories/nerc_data_catalogue/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "atmosphere", "biosphere", "climate", "cryosphere", "fungi", "gamma ray", "geomorphology", "hydrospere", "ionosphere", "landscape", "magnetosphere", "marine sediments", "marine volcanism", "ocean", "paleoclimate", "solar activity", "solid earth", "spectral", "sun-earth interactions", "vegetation", "water chemistry", "water quality"] [{"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "NERC Data Policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nerc.ukri.org/site/copyright/"}] closed [] ["other"] yes {"api": "https://csw-nerc.ceda.ac.uk/geonetwork/doc/api/", "apiType": "other"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://csw-nerc.ceda.ac.uk/geonetwork/srv/ger/rss.search?sortBy=changeDate&georss=simplepoint", "syndicationType": "RSS"} is covered by Elsevier. NERC Data Catalogue Service is covered by Thomson Reuters Data Citation Index. 2013-12-17 2021-09-07 +r3d100010559 CanGEM eng [{"additionalName": "Cancer GEnome Mine", "additionalNameLanguage": "eng"}] http://www.cangem.org/ ["RRID:SCR_000728", "RRID:nif-0000-02636"] [] >>>!!!<<>>!!!<<< Cancer GEnome Mine is a public database for storing clinical information about tumor samples and microarray data, with emphasis on array comparative genomic hybridization (aCGH) and data mining of gene copy number changes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-05-23 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["cancer", "clinical information", "gene copy", "genome", "microarray data", "tumor"] [{"institutionName": "University of Helsinki, Haartman Institute, Laboratory of Cytomolecular Genetics", "institutionAdditionalName": ["CMG"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.helsinki.fi/cmg/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.cangem.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nar.oxfordjournals.org/content/36/suppl_1/D830.full#sec-2"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} CanGEM is covered by Thomson Reuters Data Citation Index. More information about the repository can be found at http://nar.oxfordjournals.org/content/36/suppl_1/D830.abstract 2013-12-03 2017-05-23 +r3d100010560 Codex Sinaiticus eng [{"additionalName": "Experience the oldest Bible", "additionalNameLanguage": "eng"}] https://codexsinaiticus.org/en/ [] ["https://codexsinaiticus.org/en/contact.aspx", "peter.toth@bl.uk"] Codex Sinaiticus is one of the most important books in the world. Handwritten well over 1600 years ago, the manuscript contains the Christian Bible in Greek, including the oldest complete copy of the New Testament. The Codex Sinaiticus Project is an international collaboration to reunite the entire manuscript in digital form and make it accessible to a global audience for the first time. Drawing on the expertise of leading scholars, conservators and curators, the Project gives everyone the opportunity to connect directly with this famous manuscript. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009-07 ["deu", "ell", "eng", "rus"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.codexsinaiticus.org/en/codex/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Alexandrian text-type manuscript", "Greek Bible", "Konstantin von Tischendorf", "Saint Catherine's (Monastery)", "ancient manuskript", "handwriting", "mount Sinai", "new testament", "old testament"] [{"institutionName": "A.G. Leventis Foundation", "institutionAdditionalName": ["\u038a\u03b4\u03c1\u03c5\u03bc\u03b1 \u0391. \u0393. \u039b\u03b5\u03b2\u03ad\u03bd\u03c4\u03b7"], "institutionCountry": "GRC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.leventisfoundation.org/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "St. Catherines Monastery", "institutionAdditionalName": ["\u0399\u03b5\u03c1\u03ac \u039c\u03bf\u03bd\u03ae \u0398\u03b5\u03bf\u03b2\u03b1\u03b4\u03af\u03c3\u03c4\u03bf\u03c5 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a3\u03b9\u03bd\u03ac, \u0391\u03b3\u03af\u03b1\u03c2 \u0391\u03b9\u03ba\u03b1\u03c4\u03b5\u03c1\u03af\u03bd\u03b7\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sinaimonastery.com/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stavros Niarchos Foundation", "institutionAdditionalName": ["SNf", "\u038a\u03b4\u03c1\u03c5\u03bc\u03b1 \u03a3\u03c4\u03b1\u03cd\u03c1\u03bf\u03c2 \u039d\u03b9\u03ac\u03c1\u03c7\u03bf\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.snf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The British Library", "institutionAdditionalName": ["Explore the world's knowledge"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bl.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bl.uk/collection-items/codex-sinaiticus"]}, {"institutionName": "The National Library of Russia", "institutionAdditionalName": ["\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nlr.ru/eng/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nlr.ru/eng/exib/CodexSinaiticus/index.html"]}, {"institutionName": "Universit\u00e4tsbibliothek Leipzig", "institutionAdditionalName": ["Leipzig University Library", "ubl"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-leipzig.de/start/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ub.uni-leipzig.de/sitemaprechtliches/kontakt/"]}] [{"policyName": "Transcription", "policyURL": "http://www.codexsinaiticus.org/en/project/transcription.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.codexsinaiticus.org/en/copyright.aspx"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.codexsinaiticus.org/handler/newsRss.ashx", "syndicationType": "RSS"} Codex Sinaiticus is covered by Thomson Reuters Data Citation Index. Produced in the middle of the fourth century, the Codex is one of the two earliest Christian Bibles. (The other is the Codex Vaticanus in Rome.) Within its beautifully handwritten Greek text are the earliest surviving copy of the complete New Testament and the earliest and best copies of some of the Jewish scriptures, in the form that they were adopted by the Christian Church. 2013-12-03 2021-09-07 +r3d100010561 DisProt eng [{"additionalName": "Database of Protein Disorder", "additionalNameLanguage": "eng"}] http://www.disprot.org/ ["RRID:SCR_007097", "RRID:nif-0000-02754"] ["http://www.disprot.org/contact"] The Database of Protein Disorder (DisProt) is a curated database that provides information about proteins that lack fixed 3D structure in their putatively native states, either in their entirety or in part. DisProt is a community resource annotating protein sequences for intrinsically disorder regions from the literature. It classifies intrinsic disorder based on experimental methods and three ontologies for molecular function, transition and binding partner. eng ["disciplinary", "institutional"] {"size": "803 proteins; 2.167 disordered regions", "updatedp": "2017-05-23"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.disprot.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cell biology", "intrinsically disordered proteins IDPs", "molecular biology", "protein structure"] [{"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/participants/portal/desktop/en/support/research_enquiry_service.html"]}, {"institutionName": "Indiana University School of Medicine, Center for Computational Biology and Bioinformatics", "institutionAdditionalName": ["CCBB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://compbio.iupui.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "NGP-net", "institutionAdditionalName": ["non-globular proteins in molecular physiopathology"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ngp-net.bio.unipd.it/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["info@ngp-net.bio.unipd.it"]}, {"institutionName": "Temple University, College of Science and Technology, Center f\u00fcr Data Analysis and Biomedical Informatics", "institutionAdditionalName": ["CST", "Center for Information Science and Technology", "DABI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.dabi.temple.edu/dabi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "Universita degli Studi di Padova", "institutionAdditionalName": ["University of Padua"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unipd.it/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Padua, Department of Biomedical Sciences", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://protein.bio.unipd.it/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://www.disprot.org/protein.php?id=DP00747_C002"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.disprot.org/protein.php?id=DP00747_C002"}] restricted [] ["other"] yes {"api": "http://www.disprot.org/help#anchor3", "apiType": "REST"} ["none"] http://www.disprot.org/ [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} DisProt is covered by Thomson Reuters Data Citation Index. Old Disprot is available here http://disorder.compbio.iupui.edu/ . 2013-12-04 2017-08-24 +r3d100010562 The Electron Microscopy Data Bank eng [{"additionalName": "EMDB", "additionalNameLanguage": "eng"}, {"additionalName": "EMDB at PDBe", "additionalNameLanguage": "eng"}, {"additionalName": "The Electron Microscopy Data Bank at Protein Data Bank in Europe", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/emdb/ ["FAIRsharing_doi:10.25504/FAIRsharing.651n9j", "MIR:00100738", "RRID:SCR_006506", "RRID:nlx_149453"] ["https://www.ebi.ac.uk/support/EMDB"] The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. eng ["disciplinary"] {"size": "16.455 entries", "updatedp": "2021-09-07"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/pdbe/emdb/index.html/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "biology", "electron crystallography", "electron tomography", "electrons", "enzymes", "macromolecular complexes", "proteins", "ribosome", "virus"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute, Protein Data Bank in Europe", "institutionAdditionalName": ["EMBL-EBI", "PDBe"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/pdbe/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/pdbe/about/contact"]}, {"institutionName": "National Center for Macromolecular Imaging", "institutionAdditionalName": ["NCMI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cryoem.slac.stanford.edu/ncmi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gregp@slac.stanford.edu", "wahc@stanford.edu"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Research Collaboratory for Structural Bioinformatics, Protein Data Bank", "institutionAdditionalName": ["RCSB PDB"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rcsb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rcsb.org/pages/contactus"]}, {"institutionName": "Rutgers", "institutionAdditionalName": ["The State University of New Jersey"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rutgers.edu/", "institutionIdentifier": ["ROR:05vt9qd57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rutgers.edu/about/contact-us"]}] [{"policyName": "wwPDB agreement", "policyURL": "https://www.wwpdb.org/about/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "deposition guide", "dataUploadLicenseURL": "https://www.wwpdb.org/deposition/tutorial"}, {"dataUploadLicenseName": "wwPDB OneDep System", "dataUploadLicenseURL": "https://deposit-pdbe.wwpdb.org/deposition/"}] ["unknown"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/emdb", "apiType": "FTP"} ["none"] ["ORCID"] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.ebi.ac.uk/pdbe/pdblatest/maps_emdb.xml", "syndicationType": "RSS"} EMDB is covered by Thomson Reuters Data Citation Index. The EMDB was founded at EBI in 2002, under the leadership of Kim Henrick. Since 2007 it has been operated jointly by the PDBe, and the Research Collaboratory for Structural Bioinformatics (RCSB PDB) as a part of EMDataBank. PDBe is a member of wwPDB (worldwide protein data bank) and EMDataBank. EMDB is part of the ELIXIR infrastructure 2013-12-04 2021-09-07 +r3d100010563 Pseudobase eng [{"additionalName": "A Pseudoknot Database", "additionalNameLanguage": "eng"}] http://www.ekevanbatenburg.nl/PKBASE/PKB.HTML [] ["EkevanBatenburg@live.com"] Since the first discovery of RNA pseudoknots more and many more pseudoknots have been found. However, not all of those pseudoknot data are easy to trace. Sometimes the information is hidden in a publication where the title gives no hint that pseudoknot information is there. This was the first reason that we thought that a general accessible information source for pseudoknots would be handy. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ekevanbatenburg.nl/PKBASE/PKBABOUT.HTML#s6 [{"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNA sequence", "base sequence", "dynamic programming algorithm", "molecular biology", "nucleis acid conformation"] [{"institutionName": "Leiden University, Institute of Chemistry", "institutionAdditionalName": ["Institute of Chemistry", "Universiteit Leiden, Leids Instituut voor Chemisch onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lic.leidenuniv.nl/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["C.Pley@chem.LeidenUniv.nl"]}, {"institutionName": "Leiden University, Theoretical biology, Institute of Evolutionary and Ecological Sciences", "institutionAdditionalName": ["CML", "Institute of Theoretical Biology", "Universiteit Leiden, Instituut Biologie Leiden"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cml.leiden.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["A.P.Gultyaev@Biology.LeidenUniv.nl"]}] [{"policyName": "About pseudobase", "policyURL": "http://www.ekevanbatenburg.nl/PKBASE/PKBABOUT.HTML"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ekevanbatenburg.nl/PKBASE/PKBABOUT.HTML#s6"}] restricted [{"dataUploadLicenseName": "Submission Form", "dataUploadLicenseURL": "http://www.ekevanbatenburg.nl/PKBASE/PKBPUT.HTML"}] ["unknown"] {} ["none"] http://www.ekevanbatenburg.nl/PKBASE/PKBGETCLS.HTML [] unknown yes [] [] {} Pseudobase is covered by Thomson Reuters Data Citation Index. Using the simple structure of PseudoBase, Texas university designed a new shell around the data of PseudoBase for improved access. It provides more extensive and improved searching capabilities and more and better presentations for viewing the knotted RNA's. PseudoBase++ is reached at http://pseudobaseplusplus.utep.edu. 2013-12-04 2017-05-23 +r3d100010564 Emage eng [{"additionalName": "e-Mouse Atlas of Gene Expression", "additionalNameLanguage": "eng"}] http://www.emouseatlas.org/emage/ ["FAIRsharing_doi:10.25504/FAIRsharing.6qr9jp", "RRID:SCR_005391", "RRID:nif-0000-00080"] ["http://www.emouseatlas.org/emage/help/contact.php"] EMAGE (e-Mouse Atlas of Gene Expression) is an online biological database of gene expression data in the developing mouse (Mus musculus) embryo. The data held in EMAGE is spatially annotated to a framework of 3D mouse embryo models produced by EMAP (e-Mouse Atlas Project). These spatial annotations allow users to query EMAGE by spatial pattern as well as by gene name, anatomy term or Gene Ontology (GO) term. EMAGE is a freely available web-based resource funded by the Medical Research Council (UK) and based at the MRC Human Genetics Unit in the Institute of Genetics and Molecular Medicine, Edinburgh, UK. eng ["disciplinary"] {"size": "17.554Genes/Proteins; 32.679 Assays; 22 Stages; 429254 Images", "updatedp": "2017-05-24"} 2005-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.emouseatlas.org/emage/about/mission_statement.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "bioinformatics", "genes", "genetics", "molecular biology", "mouse embryo", "proteins"] [{"institutionName": "EMAP project", "institutionAdditionalName": ["e-Mouse Atlas Project"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.emouseatlas.org/emap/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Union", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europa.eu/european-union/contact_en"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ed.ac.uk/igmm/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Edinburgh, MRC Institute of Genetics and Molecular Medicine, Human Genetics Unit", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ed.ac.uk/mrc-human-genetics-unit", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ed.ac.uk/mrc-human-genetics-unit/contact-us"]}] [{"policyName": "Policies and guidance for researchers", "policyURL": "http://www.mrc.ac.uk/research/research-policy-ethics/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://www.emouseatlas.org/emage/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.emouseatlas.org/emage/info/copyright.html"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "http://www.emouseatlas.org/emage/help/feedback/popupemage.php"}] ["other"] yes {"api": "http://www.emouseatlas.org/emage/search/webservice.php", "apiType": "REST"} ["DOI"] http://www.emouseatlas.org/emage/info/citing.php [] yes yes [] [] {} Emage is covered by Thomson Reuters Data Citation Index. The database consists of 2 parts: The mouse anatomy ontology atlas database and The emage mouse spatial gene expression database. 2013-12-09 2021-09-03 +r3d100010565 GWAS Central eng [] http://www.gwascentral.org/index ["FAIRsharing_doi:10.25504/FAIRsharing.vkr57k", "RRID:SCR_006170", "RRID:nlx_151672"] ["help@gwascentral.org"] GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. We actively gather datasets from public domain projects, and encourage direct data submission from the community. eng ["disciplinary"] {"size": "69.986.326 associations between 2.974.967 unique SNPs and 829 unique MeSH disease/phenotype descriptions.", "updatedp": "2017-05-24"} 2008-07-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://help.gwascentral.org/info/about/database-scope-and-content/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["anatomy", "diseases", "health care", "organisms"] [{"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GWAS central project group", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gwascentral.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@gwascentral.org"]}, {"institutionName": "GlaxoSmithKline", "institutionAdditionalName": ["GSK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.gsk.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "University of Leicester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://le.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GWAS Central data policy", "policyURL": "http://help.gwascentral.org/info/data/data-sharing-statement/"}, {"policyName": "GWAS Central terms of use", "policyURL": "http://help.gwascentral.org/about/gwas-central-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://help.gwascentral.org/info/about/intellectual-property-considerations/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://help.gwascentral.org/info/about/intellectual-property-considerations/"}] restricted [{"dataUploadLicenseName": "How to submit data", "dataUploadLicenseURL": "http://help.gwascentral.org/submit-data/"}] ["other"] yes {"api": "http://help.gwascentral.org/web-services/semantic-web-resources/sparql-end-point/", "apiType": "SPARQL"} ["PURL"] http://help.gwascentral.org/info/about/citations/ [] yes yes [] [] {"syndication": "http://feeds.feedburner.com/gwascentral?format=xml", "syndicationType": "RSS"} GWAS Central is covered by Thomson Reuters Data Citation Index. A list of data sources for the GWAS central database can be found at: http://help.gwascentral.org/info/data/database-content/ Previous funding in the databases history has been provided by Interactiva GmbH (Germany), the European Bioinformatics Institute (UK), the European Molecular Biology Laboratory (Heidelberg), Pfizer, GlaxoSmithKline, the Karolinska Institute (Sweden), and the European Community’s Sixth Framework Programme (‘INFOBIOMED’ Network of Excellence). 2013-12-09 2021-10-25 +r3d100010566 miRBase eng [] http://www.mirbase.org/ ["RRID:SCR_003152", "RRID:nif-0000-03134"] ["mirbase@manchester.ac.uk"] The miRBase database is a searchable database of published miRNA sequences and annotation. Each entry in the miRBase Sequence database represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR). Both hairpin and mature sequences are available for searching and browsing, and entries can also be retrieved by name, keyword, references and annotation. All sequence and annotation data are also available for download. The miRBase Registry provides miRNA gene hunters with unique names for novel miRNA genes prior to publication of results. eng ["disciplinary"] {"size": "28.645 entries", "updatedp": "2017-05-24"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.mirbase.org/help/whoarewe.shtml [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Arabidopsis", "fly", "human", "microRNA", "mouse", "nucleotides", "worm"] [{"institutionName": "BBSRC", "institutionAdditionalName": ["Biotechnology and Biological Sciences Research Council"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bbsrc.ac.uk/home/home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Manchester, Faculty of Life Sciences", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ls.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mirbase@manchester.ac.uk"]}, {"institutionName": "Wellcome Trust Sanger Institute, Genome Research Limited", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": []}] [{"policyName": "mirbase summary", "policyURL": "ftp://mirbase.org/pub/mirbase/CURRENT/README"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "ftp://mirbase.org/pub/mirbase/CURRENT/README"}] restricted [] ["unknown"] yes {"api": "ftp://mirbase.org/pub/mirbase/CURRENT/", "apiType": "FTP"} ["none"] http://www.mirbase.org/index.shtml [] unknown unknown [] [] {"syndication": "http://www.mirbase.org/blog/feed/", "syndicationType": "RSS"} miRBase is covered by Thomson Reuters Data Citation Index. 2013-12-09 2017-05-26 +r3d100010567 Old Bailey Proceedings Online eng [] https://www.oldbaileyonline.org/index.jsp [] ["https://www.oldbaileyonline.org/static/Contact.jsp"] The Old Bailey Proceedings Online makes available a fully searchable, digitised collection of all surviving editions of the Old Bailey Proceedings from 1674 to 1913, and of the Ordinary of Newgate's Accounts between 1676 and 1772. It allows access to over 197,000 trials and biographical details of approximately 2,500 men and women executed at Tyburn, free of charge for non-commercial use. In addition to the text, accessible through both keyword and structured searching, this website provides digital images of all 190,000 original pages of the Proceedings, 4,000 pages of Ordinary's Accounts, advice on methods of searching this resource, information on the historical and legal background to the Old Bailey court and its Proceedings, and descriptions of published and manuscript materials relating to the trials covered. Contemporary maps, and images have also been provided. eng ["disciplinary", "institutional"] {"size": "197.745 criminal trials", "updatedp": "2019-12-18"} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.oldbaileyonline.org/static/Value.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["digital humanities"] [{"institutionName": "Arts and Humanities Research Council", "institutionAdditionalName": ["AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ahrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "2005", "institutionContact": []}, {"institutionName": "Big Lottery Fund", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.tnlcommunityfund.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2000", "institutionContact": []}, {"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2005", "institutionContact": []}, {"institutionName": "Jisc", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "The Open University", "institutionAdditionalName": ["OU"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.open.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Hertfordshire", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.herts.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Sheffield, Humanities Research Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sheffield.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.oldbaileyonline.org/static/Contact.jsp"]}] [{"policyName": "Research and Study Guides", "policyURL": "https://www.oldbaileyonline.org/static/Guides.jsp"}, {"policyName": "Terms of use", "policyURL": "https://www.oldbaileyonline.org/static/Legal-info.jsp#termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.oldbaileyonline.org/static/Legal-info.jsp"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oldbaileyonline.org/static/Legal-info.jsp#copyright"}] closed [] ["unknown"] yes {"api": "https://www.oldbaileyonline.org/static/DocAPI.jsp", "apiType": "other"} ["none"] https://www.oldbaileyonline.org/static/Legal-info.jsp#citationguide [] unknown unknown [] [] {} Old Bailey Proceedings Online is covered by Thomson Reuters Data Citation Index. 2013-12-10 2021-09-07 +r3d100010568 Office for National Statistics eng [{"additionalName": "ONS", "additionalNameLanguage": "eng"}, {"additionalName": "SYG", "additionalNameLanguage": "cym"}, {"additionalName": "Swyddfa Ystadegau Gwladol", "additionalNameLanguage": "cym"}] https://www.ons.gov.uk/ [] ["info@ons.gsi.gov.uk"] The Office for National Statistics (ONS) is the UK’s largest independent producer of official statistics and is the recognised national statistical institute for the UK. It is responsible for collecting and publishing statistics related to the economy, population and society at national, regional and local levels. It also conducts the census in England and Wales every ten years. The ONS plays a leading role in national and international good practice in the production of official statistics. It is the executive office of the UK Statistics Authority and although they are separate, they are still closely related. eng ["disciplinary"] {"size": "", "updatedp": ""} ["cym", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ons.gov.uk/aboutus [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Opinions and Lifestyle Survey OPN", "economy", "population", "society"] [{"institutionName": "UK Statistics Authority", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.statisticsauthority.gov.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ons.gov.uk/aboutus/contactus", "info@ons.gsi.gov.uk"]}] [{"policyName": "Terms and conditios", "policyURL": "https://www.ons.gov.uk/help/termsandconditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/uk-government-licensing-framework/crown-copyright/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/uk-government-licensing-framework/"}] closed [] ["unknown"] {} ["none"] http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ [] unknown unknown [] [] {} Office for National Statistics is covered by Thomson Reuters Data Citation Index. 2013-12-10 2017-05-29 +r3d100010569 UK Reading Experience Database eng [{"additionalName": "UK RED", "additionalNameLanguage": "eng"}] http://www.open.ac.uk/Arts/reading/UK/ [] ["E.G.C.King@open.ac.uk"] UK RED is a database documenting the history of reading in Britain from 1450 to 1945. Reading experiences of British subjects, both at home and abroad presented in UK RED are drawn from published and unpublished sources as diverse as diaries, commonplace books, memoirs, sociological surveys, and criminal court and prison records. eng ["disciplinary"] {"size": "30.000 records", "updatedp": "2019-10-29"} 2011-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "10503 European and American Literature", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.open.ac.uk/Arts/reading/about.php [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["patterns of reading", "reader profiles", "reading statistics", "reading tastes"] [{"institutionName": "Arts & Humanities Research Council", "institutionAdditionalName": ["AHRC UKRI"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ahrc.ukri.org/about/contact/"]}, {"institutionName": "RED Project Team", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.open.ac.uk/Arts/reading/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.open.ac.uk/Arts/reading/contact.php"]}, {"institutionName": "The Open University", "institutionAdditionalName": ["OU"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.open.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of use of Open University websites", "policyURL": "http://www.open.ac.uk/about/main/management/policies-and-statements/conditions-use-open-university-websites"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.open.ac.uk/about/main/management/policies-and-statements/copyright-ou-websites"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.open.ac.uk/Arts/reading/UK/copyright_guide.php"}] restricted [] ["unknown"] no {} ["none"] http://www.open.ac.uk/Arts/reading/UK/copyright_guide.php [] unknown unknown [] [] {} Reading Experience Database is covered by Thomson Reuters Data Citation Index. RED is a collection of databases whose aim is to accumulate as much evidence as possible about reading experiences across the world. From the original national partners only UK RED is still active, the others were Australia (AusRED), Canada (CanRED), New Zealand (NZ RED) and the Netherlands (NL RED). 2013-12-10 2019-11-05 +r3d100010570 PHI-base eng [{"additionalName": "Pathogen Host Interactions", "additionalNameLanguage": "eng"}] http://www.phi-base.org/ ["RRID:SCR_003331", "RRID:nif-0000-03276"] ["contact@phi-base.org"] PHI-base is a web-accessible database that catalogues experimentally verified pathogenicity, virulence and effector genes from fungal, Oomycete and bacterial pathogens, which infect animal, plant, fungal and insect hosts. PHI-base is therfore an invaluable resource in the discovery of genes in medically and agronomically important pathogens, which may be potential targets for chemical intervention. In collaboration with the FRAC team, PHI-base also includes antifungal compounds and their target genes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.phi-base.org/aboutUs.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["amino acid sequence", "bacteria", "fungi", "human pathogenic", "nucleotide", "oomycetes", "plant pathogenic", "protein"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bbsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bbsrc.ac.uk/about/contact/"]}, {"institutionName": "Rothamsted Research", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rothamsted.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rothamsted.ac.uk/contact"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.phi-base.org/disclaimer.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.phi-base.org/disclaimer.htm"}] restricted [{"dataUploadLicenseName": "Contributions", "dataUploadLicenseURL": "http://www.phi-base.org/errors.php"}] ["unknown"] yes {} [] http://www.phi-base.org/disclaimer.htm [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} PHI-base is covered by Thomson Reuters Data Citation Index. PHI-base is one of the ELIXIR-UK node resources. 2013-12-18 2017-05-29 +r3d100010571 QTL Archive eng [] https://phenome.jax.org/centers/QTLA ["RRID:SCR_006213", "RRID:nlx_151757"] ["qtlarchive@jax.org"] This site provides access to raw data from various QTL (quantitative trait loci) studies using rodent inbred line crosses. Data are available in the .csv format used by R/qtl and pseudomarker programs. In some cases analysis scripts and/or results are posted to accompany the data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["morphology"] [{"institutionName": "Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory, Churchill group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://churchill.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["qtlarchive@jax.org"]}] [{"policyName": "National Institutes of Health Genomic Data Sharing Policy", "policyURL": "https://gds.nih.gov/PDF/NIH_GDS_Policy.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://phenome.jax.org/db/q?rtn=docs/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://phenome.jax.org/db/q?rtn=docs/termsofuse"}] restricted [{"dataUploadLicenseName": "contributing data", "dataUploadLicenseURL": "http://phenome.jax.org/db/q?rtn=docs/dataguide"}] ["unknown"] yes {} ["none"] http://phenome.jax.org/db/q?rtn=docs/citingmpd [] yes unknown [] [] {} QTL Archive is covered by Thomson Reuters Data Citation Index. QTL Archive is relocated and part of Mouse Phenome Database in 2015. 2013-12-17 2018-02-14 +r3d100010572 World Values Survey eng [{"additionalName": "WVS", "additionalNameLanguage": "eng"}] http://www.worldvaluessurvey.org/wvs.jsp [] ["http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=ContactUs", "jdiezmed@jdsurvey.net"] The World Values Survey (WVS) is a worldwide network of social scientists studying changing values and their impact on social and political life. The WVS in collaboration with EVS (European Values Study) carried out representative national surveys in more than 100 countries containing almost 90 percent of the world's population. These surveys show pervasive changes in what people want out of life and what they believe. In order to monitor these changes, the EVS/WVS has executed six waves of surveys, from 1981 to 2013. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=WhatWeDo [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["converging values", "culture", "democracy", "diversity", "empowerment", "gender", "globalization", "happiness", "interpersonal trust", "religion"] [{"institutionName": "ASEP/JDS", "institutionAdditionalName": ["banco de datos ASEP/JDS"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.jdsurvey.net/jds/jdsurvey.jsp?Idioma=I", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jdiezmed@jdsurvey.net"]}, {"institutionName": "World Values Survey Association", "institutionAdditionalName": ["WVSA"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=WVSA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=ContactUs"]}, {"institutionName": "World Values Survey Network", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.worldvaluessurvey.org/WVSParticipants.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Quick reference guide", "policyURL": "http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=DataDoc"}, {"policyName": "Terms and conditions of institutional membership", "policyURL": "http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=instmemb"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=intconduse"}] closed [] ["unknown"] no {} ["DOI"] http://www.worldvaluessurvey.org/WVSContents.jsp?CMSID=intconduse [] unknown yes [] [] {} World Values Survey is covered by Thomson Reuters Data Citation Index. The World Values Survey is funded through various scientific research foundations and other related organisations. 2013-12-17 2017-05-30 +r3d100010573 caArray eng [{"additionalName": "Array Data Management System", "additionalNameLanguage": "eng"}] https://wiki.nci.nih.gov/display/caArray2/caArray+Retirement+Announcement ["RRID:OMICS_00864", "RRID:SCR_006053", "RRID:nlx_151452"] ["ncicbiit@mail.nih.gov"] >>>!!!<<< caArray Retirement Announcement >>>!!!<<< The National Cancer Institute (NCI) Center for Biomedical Informatics and Information Technology (CBIIT) instance of the caArray database was retired on March 31st, 2015. All publicly-accessible caArray data and annotations will be archived and will remain available via FTP download https://wiki.nci.nih.gov/x/UYHeDQ and is also available at GEO http://www.ncbi.nlm.nih.gov/geo/ . >>>!!!<<< While NCI will not be able to provide technical support for the caArray software after the retirement, the source code is available on GitHub https://github.com/NCIP/caarray , and we encourage continued community development. Molecular Analysis of Brain Neoplasia (Rembrandt fine-00037) gene expression data has been loaded into ArrayExpress: http://www.ebi.ac.uk/arrayexpress/experiments/E-MTAB-3073 >>>!!!<<< caArray is an open-source, web and programmatically accessible microarray data management system that supports the annotation of microarray data using MAGE-TAB and web-based forms. Data and annotations may be kept private to the owner, shared with user-defined collaboration groups, or made public. The NCI instance of caArray hosts many cancer-related public datasets available for download. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 2015-03-31 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "cancer", "gene expression", "microarray"] [{"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncicb@pop.nci.nih.gov"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Cancer Institute, Center for Biomedical Informatics and Information Technology", "institutionAdditionalName": ["CBIIT"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cbiit.nci.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncicb@pop.nci.nih.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "http://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wiki.nci.nih.gov/display/caArray2doc/2+-+Getting+Started+in+caArray"}] restricted [] ["unknown"] yes {"api": "https://wiki.nci.nih.gov/display/caArray2doc/caArray+Legacy+API+v2.3+Reference", "apiType": "other"} ["none"] [] unknown yes [] [] {} caArray is covered by Thomson Reuters Data Citation Index. 2013-12-17 2017-05-31 +r3d100010574 caNanoLab eng [{"additionalName": "cancer Nanotechnology Laboratory", "additionalNameLanguage": "eng"}] https://cananolab.nci.nih.gov/caNanoLab/#/ ["FAIRsharing_DOI:10.25504/FAIRsharing.y1qpdm", "RRID:SCR_013717"] [] caNanoLab is a data sharing portal designed to facilitate information sharing in the biomedical nanotechnology research community to expedite and validate the use of nanotechnology in biomedicine. caNanoLab provides support for the annotation of nanomaterials with characterizations resulting from physico-chemical and in vitro assays and the sharing of these characterizations and associated nanotechnology protocols in a secure fashion. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://wiki.nci.nih.gov/display/caNanoLab/caNanoLab+Wiki+Home+Page [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biomedicine", "cancer", "in vitro", "in vivo", "nanomaterials", "nanotechnology"] [{"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Cancer Institute, Center for Biomedical Informatics and Information Technology", "institutionAdditionalName": ["CBIIT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cbiit.nci.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cbiit.nci.nih.gov/about/contact-us"]}, {"institutionName": "National Cancer Institute, Centers of Cancer Nanotechnology Excellence", "institutionAdditionalName": ["CCNEs"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nano.cancer.gov/action/programs/ccne.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nano.cancer.gov/about/contact/"]}, {"institutionName": "National Cancer Institute, Nanotechnology Characterization Laboratory", "institutionAdditionalName": ["NCL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ncl.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncl@mail.nih.gov"]}] [{"policyName": "Policies", "policyURL": "https://www.cancer.gov/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://github.com/NCIP/cananolab/blob/master/LICENSE"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cancer.gov/policies/copyright-reuse"}] restricted [] ["unknown"] yes {} ["none"] [] yes yes [] [{"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} caNanoLab is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. 2013-12-18 2021-09-02 +r3d100010575 Michigan Corpus of Academic Spoken English eng [{"additionalName": "MICASE", "additionalNameLanguage": "eng"}] http://quod.lib.umich.edu/m/micase/ [] ["micase-help@umich.edu"] MICASE provides a collection of transcripts of academic speech events recorded at the University of Michigan. The original DAT audiotapes are held in the English Language Institute and may be consulted by bona fide researchers under special arrangements. Additional access: https://lsa.umich.edu/eli/language-resources/micase-micusp.html eng ["disciplinary", "institutional"] {"size": "152 transcripts (totaling 1.848.364 words)", "updatedp": "2019-11-13"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10401 General and Applied Linguistics", "scheme": "DFG"}, {"name": "10402 Individual Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["academic speeches", "corpora", "speech"] [{"institutionName": "University of Michigan, English Language Institute", "institutionAdditionalName": ["UM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lsa.umich.edu/eli/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["micase@umich.edu", "slbriggs@umich.edu"]}] [{"policyName": "MICASE Fair Use Statement", "policyURL": "https://web.archive.org/web/20180617235110/https://lsa.umich.edu/content/dam/eliassets/elidocuments/MICASE%20Fair%20Use%20Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://web.archive.org/web/20180617235110/https://lsa.umich.edu/content/dam/eliassets/elidocuments/MICASE%20Fair%20Use%20Statement.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://web.archive.org/web/20180617235110/https://lsa.umich.edu/content/dam/eliassets/elidocuments/MICASE%20Fair%20Use%20Statement.pdf"}] closed [] ["unknown"] no {} ["none"] https://web.archive.org/web/20180617235110/https://lsa.umich.edu/content/dam/eliassets/elidocuments/MICASE%20Fair%20Use%20Statement.pdf [] unknown unknown [] [] {} MICASE is covered by Thomson Reuters Data Citation Index. 2014-02-08 2021-08-25 +r3d100010578 IEDA eng [{"additionalName": "IEDA Data Browser", "additionalNameLanguage": "eng"}, {"additionalName": "Interdisciplinary Earth Data Alliance", "additionalNameLanguage": "eng"}] https://www.iedadata.org/ ["FAIRsharing_doi: 10.25504/FAIRsharing.be9dj8"] ["https://www.iedadata.org/contact/", "info@iedadata.org"] IEDA is a community-based facility that serves to support, sustain, and advance the geosciences by providing data services for observational Geoscience data from the Ocean, Earth, and Polar Sciences. IEDA welcomes and encourages investigators to contribute their data to the IEDA collections so that the data can be discovered and reused by a diverse community now and in the future. The IEDA collections are: EarthChem, Geochron, System for Earth Sample Registration (SESAR), Marine Geoscience Data System (MGDS), and USAP Data Center. Meta-Search provided on the portal through IEDA Data Browser http://www.iedadata.org/databrowser . eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iedadata.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["earth", "geosciences", "ocean", "polar sciences", "terrestrial"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "JPN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ldeo.columbia.edu/give-ldeo/contact-us"]}, {"institutionName": "EarthChem", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earthchem.org/", "institutionIdentifier": ["RRID:SCR_002207", "RRID:nlx_154721"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/contact"]}, {"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@iedadata.org"]}, {"institutionName": "Marine Geoscience Data System", "institutionAdditionalName": ["MGDS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.marine-geo.org/index.php", "institutionIdentifier": ["RRID:SCR_002164", "RRID:nlx_154713"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.marine-geo.org/about/contact.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "FORCE11 Joint Declaration of Data Citation Principles", "policyURL": "https://www.force11.org/datacitationprinciples"}, {"policyName": "IEDA Data Publication Policy", "policyURL": "https://www.iedadata.org/help/data-publication/"}, {"policyName": "NSF Data Management & Sharing", "policyURL": "https://www.nsf.gov/sbe/STS/STSDATASHARING.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] ["unknown"] yes {"api": "https://www.iedadata.org/help/web-services/#rest", "apiType": "REST"} ["DOI"] https://www.iedadata.org/frequently-asked-questions/ [] yes yes ["WDS"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} is covered by Elsevier. IEDA is aiming for regular ICSU-WDS membership . The Letter of Agreement (LoA) is Pending (21.04.2017) IEDA is a partnership between EarthChem and the Marine Geoscience Data System (MGDS). 2014-01-08 2021-09-02 +r3d100010579 DATA.GOV.UK eng [{"additionalName": "Opening up Government", "additionalNameLanguage": "eng"}] https://data.gov.uk/ [] ["https://data.gov.uk/support"] The Government is releasing public data to help people understand how government works and how policies are made. Some of this data is already available, but data.gov.uk brings it together in one searchable website. Making this data easily available means it will be easier for people to make decisions and suggestions about government policies based on detailed information. eng ["other"] {"size": "47.248 datasets", "updatedp": "2019-02-18"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["government", "policy"] [{"institutionName": "GOV.UK", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gov.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gov.uk/contact"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.gov.uk/help/terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.gov.uk/terms-and-conditions"}] restricted [{"dataUploadLicenseName": "OGL", "dataUploadLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] ["CKAN"] yes {"api": "https://ckan.publishing.service.gov.uk/dataset", "apiType": "REST"} ["none"] [] unknown yes [] [] {} 2014-01-06 2021-10-04 +r3d100010580 International GNSS Service eng [{"additionalName": "IGS", "additionalNameLanguage": "eng"}, {"additionalName": "International GPS Service", "additionalNameLanguage": "eng"}] https://igs.org/ [] ["CB@igs.org"] The IGS global system of satellite tracking stations, Data Centers, and Analysis Centers puts high-quality GPS data and data products on line in near real time to meet the objectives of a wide range of scientific and engineering applications and studies. The IGS collects, archives, and distributes GPS observation data sets of sufficient accuracy to satisfy the objectives of a wide range of applications and experimentation. These data sets are used by the IGS to generate the data products mentioned above which are made available to interested users through the Internet. In particular, the accuracies of IGS products are sufficient for the improvement and extension of the International Terrestrial Reference Frame (ITRF), the monitoring of solid Earth deformations, the monitoring of Earth rotation and variations in the liquid Earth (sea level, ice-sheets, etc.), for scientific satellite orbit determinations, ionosphere monitoring, and recovery of precipitable water vapor measurements. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.igs.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["GLONASS", "GPS"] [{"institutionName": "California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "IGS Central Bureau Information System", "institutionAdditionalName": ["CBIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://igs.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://kb.igs.org/hc/en-us/requests/new"]}, {"institutionName": "International Association of Geodesy, Global Geodetic Observing System", "institutionAdditionalName": ["IAG GGOS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ggos.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ggos.org/contact/"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IGS Site Guidelines", "policyURL": "http://www.igs.org/network/guidelines/guidelines.html"}, {"policyName": "Policy for the Establishment of IGS Working Groups, Pilot Projects, and New Operational Products", "policyURL": "https://kb.igs.org/hc/en-us/articles/201984446-Policy-for-the-Establishment-of-IGS-Working-Groups-Pilot-Projects-and-New-Operational-Products"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.igs.org/article/official-igs-citation-updated"}] closed [] ["unknown"] {"api": "ftp://gssc.esa.int/", "apiType": "FTP"} ["none"] https://igs.org/official-citation/ [] unknown yes [] [] {} The IGS is a Network member of ICSU World Data System - WDS . IGS Product Access has been moved to CDDIS and other Global Data Centers in 2017 . See FTP accesses 2013-01-06 2021-10-04 +r3d100010582 Chinese Astronomical Data Center eng [{"additionalName": "CAsDC", "additionalNameLanguage": "eng"}, {"additionalName": "China-VO", "additionalNameLanguage": "eng"}, {"additionalName": "National Astronomical Data Center - NADC", "additionalNameLanguage": "eng"}, {"additionalName": "World Data Center for Astronomy", "additionalNameLanguage": "eng"}, {"additionalName": "\u4e2d\u56fd\u5929\u6587\u6570\u636e\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] http://explore.china-vo.org/?locale=en [] [] Chinese Astronomical Data Center (CAsDC) is the scientific data service and infrastructure of National Astronomical Observatories, Chinese Academy of Sciences (NAOC), which is a key service from the China-VO. We are aiming to meet user requirements for astronomical research and education. The CAsDC is based on World Data Center (WDC) for Astronomy, which is hosted at NAOC and has been providing data services to users since its initiation in 1980s. In 2012, the CAsDC became a regular member of the new created World Data System. eng ["disciplinary"] {"size": "contains more than 500TB of data, has 1.5 PB storage capability, 700 TFlops computing power, and more than 100 software.", "updatedp": "2018-10-25"} 2005 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["space sciences", "virtual observatory"] [{"institutionName": "Ministry of Science and Technology of the People's Republic of China", "institutionAdditionalName": ["MOST"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.most.gov.cn/eng/", "institutionIdentifier": ["ROR:027s68j25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Astronomical Observatories, Chinese Academy of Sciences, Chinese Virtual Observatory", "institutionAdditionalName": ["NAOC, China-VO"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.china-vo.org/", "institutionIdentifier": ["ROR:058pyyv44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["archive@bao.ac.cn"]}, {"institutionName": "National Natural Science Foundation of China", "institutionAdditionalName": ["NSFC"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsfc.gov.cn/english/site_1/index.html", "institutionIdentifier": ["ROR:01h0zpd94", "RRID:SCR_011448", "RRID:nlx_149106"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CORETrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/10/Chinese-Astronomical-Data-Center-CAsDC.pdf"}, {"policyName": "LAMOST data policy", "policyURL": "http://explore.china-vo.org/u/casdc/0C_LAMOST_data_policy_en.pdf"}, {"policyName": "NAOC rules on data archiving and open access", "policyURL": "http://explore.china-vo.org/u/casdc/0B_NAOC_AstroProject_Rules.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.coretrustseal.org/wp-content/uploads/2018/10/Chinese-Astronomical-Data-Center-CAsDC.pdf"}] closed [] ["unknown"] {"api": "http://vizier.china-vo.org/ftp/cats/", "apiType": "FTP"} ["none"] [] unknown yes ["other"] [] {} 2013-01-09 2020-02-03 +r3d100010583 Plasma Physics Data Center eng [{"additionalName": "CDPP", "additionalNameLanguage": "fra"}, {"additionalName": "Centre de Donn\u00e9es de la Physique de Plasma", "additionalNameLanguage": "fra"}] http://www.cdpp.eu/ ["ISSN 2417-8756"] ["cdpp@irap.omp.eu"] The CDPP is the French national data centre for natural plasmas of the solar system. The CDPP assures the long term preservation of data obtained primarily from instruments built using French resources, and renders them readily accessible and exploitable by the international community. The CDPP also provides services to enable on-line data analysis (AMDA), 3D data visualization in context (3DView), and a propagation tool which bridges solar perturbations to in-situ measurements. The CDPP is involved in the development of interoperability, participates in several Virtual Observatory projects, and supports data distribution for scientific missions (Solar Orbiter, JUICE). eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1998 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://cdpp.irap.omp.eu/index.php/about/presentation [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["VO", "natural plasmas", "solar system", "space plasma physics", "virtual observatories"] [{"institutionName": "Centre National d'Etudes Spatiales", "institutionAdditionalName": ["CNES"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/en", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["https://cnes.fr/fr/contactez-nous"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS", "French National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php/fr", "institutionIdentifier": ["RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de Recherche en Astrophysique et Plan\u00e9tologie", "institutionAdditionalName": ["IRAP"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.irap.omp.eu/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cdpp@irap.omp.eu"]}, {"institutionName": "Universit\u00e9 Toulouse III - Paul Sabatier", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.univ-tlse3.fr/", "institutionIdentifier": ["RRID:SCR_009739", "RRID:nlx_81461"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["http://www.univ-tlse3.fr/contact-us/"]}] [{"policyName": "License for Data Centre Users", "policyURL": "http://cdpp.irap.omp.eu/index.php/licence-sipad"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cdpp.irap.omp.eu/index.php/licence-sipad"}] closed [] ["other"] {"api": "http://amda.cdpp.eu/", "apiType": "other"} ["none"] [] unknown unknown [] [] {} The CDPP is a member of the PNST (Programme National Soleil-Terre) and of the ASOV (Action Spécifique Observatoire Virtuel). 2014-01-09 2019-02-20 +r3d100010584 Strasbourg Astronomical Data Center eng [{"additionalName": "CDS", "additionalNameLanguage": "fra"}, {"additionalName": "Centre de Donn\u00e9es astronomiques de Strasbourg", "additionalNameLanguage": "fra"}] http://cdsweb.u-strasbg.fr/ [] ["cds-question@unistra.fr"] Strasbourg astronomical Data Center (CDS) is dedicated to the collection and worldwide distribution of astronomical data and related information. Alongside data curation and service maintenance responsibilities, the CDS undertakes R&D activities that are fundamental to ensure the long term sustainability in a domain in which technology evolves very quickly. R&D areas include informatics, big data, and development of the astronomical Virtual Observatory (VO). CDS is a major actor in the VO with leading roles in European VO projects, the French Virtual Observatory and the International Virtual Observatory Alliance (IVOA). The CDS hosts the SIMBAD astronomical database, the world reference database for the identification of astronomical objects; VizieR, the catalogue service for the CDS reference collection of astronomical catalogues and tables published in academic journals; and the Aladin interactive software sky atlas for access, visualization and analysis of astronomical images, surveys, catalogues, databases and related data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1983 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://cdsweb.u-strasbg.fr/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ALADIN", "SIMBAD", "VizieR", "astronomical catalogue", "sky atlas"] [{"institutionName": "Centre National de la Recherche Scientifique, Institut National des Sciences de l'Univers", "institutionAdditionalName": ["CNRS, INSU"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.insu.cnrs.fr/", "institutionIdentifier": ["ROR:04kdfz702"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Strasbourg", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://de.unistra.fr/", "institutionIdentifier": ["ROR:00pg6eq24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cds-question@unistra.fr", "https://en.unistra.fr/"]}, {"institutionName": "Universit\u00e9 de Strasbourg, Centre National de la Recherche Scientifique, Strasbourg Observatory", "institutionAdditionalName": ["CNRS", "Universit\u00e9 de Strasbourg, Centre National de la Recherche Scientifique, Observatoire astronomique de Strasbourg"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://astro.unistra.fr/fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@astro.unistra.fr"]}] [{"policyName": "Portal guidelines", "policyURL": "http://cdsportal.u-strasbg.fr/doc/portal-guidelines.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.coretrustseal.org/wp-content/uploads/2019/02/Strasbourg-Astronomical-Data-Centre.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] ["unknown"] yes {"api": "http://cdsarc.u-strasbg.fr/viz-bin/ftp-index", "apiType": "FTP"} ["DOI"] [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {"syndication": "http://cdsweb.u-strasbg.fr/news/rss.php", "syndicationType": "RSS"} Strasbourg Astronomical Data Center is covered by Clarivate Data Citation Index. The CDS cooperates with the French Space Agency CNES, European Space Agency ESA, European Southern Observatory ESO, NASA, the US National Aeronautics and Space Administration (with a long term collaboration with the Astrophysics Data System ADS and the NASA Extragalactic Database NED), astronomical academic journals, and with other data and service providers around the world such as the Inter-University Centre of Astronomy and Astrophysics (IUCAA), the National Observatory of China (NAOC), the National Observatory of Japan (NAOJ), and the Institute of Astronomy of the Russian Academy of Sciences (INASAN). CDS hosts mirrors of NASA ADS and of the Astronomy and Astrophysics international journal. CDS contributes to the XMM-Newton Survey Science Centre in collaboration with the High-Energy team of Strasbourg Astronomical Observatory. CDS is a member of the World Data System of the International Council for Science ICSU. 2014-01-13 2021-10-04 +r3d100010585 E. coli Genetic Resources at Yale eng [{"additionalName": "CGSC", "additionalNameLanguage": "eng"}, {"additionalName": "The Coli Genetic Stock Center", "additionalNameLanguage": "eng"}] https://cgsc2.biology.yale.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.1tbrdz", "MIR:00100377", "RRID:SCR_002303", "RRID:nif-0000-21083"] [] The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature. The public version of the database includes this information and can be queried directly via this CGSC DB WebServer eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1989 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://cgsc2.biology.yale.edu/DatabaseInfo.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Escherichia coli", "gene product information", "genotypes", "mutation", "non-pathogenic strains"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at Los Angeles, Department of Molecular, Cellular, and Developmental Biology", "institutionAdditionalName": ["UCLA mcdb"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mcdb.ucla.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Yale University, Coli Genetic Stock Center", "institutionAdditionalName": ["CGSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biology.yale.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cgsc2.biology.yale.edu/AcadCharges.php"}] closed [] ["other"] {} ["none"] [] unknown yes [] [] {} 2014-01-13 2021-10-04 +r3d100010586 dictybase eng [{"additionalName": "Dictyostelium discoideum", "additionalNameLanguage": "eng"}] http://dictybase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.4shj9c", "MIR:00100367", "OMICS_03158", "RRID:SCR_006643", "RRID:nif-0000-02751"] [] dictyBase is an integrated genetic and literature database that contains published Dictyostelium discoideum literature, genes, expressed sequence tags (ESTs), as well as the chromosomal and mitochondrial genome sequences. Direct access to the genome browser, a Blast search tool, the Dictyostelium Stock Center, research tools, colleague databases, and much much more are just a mouse click away. Dictybase is a genome portal for the Amoebozoa. dictyBase is funded by a grant from the National Institute for General Medical Sciences. eng ["disciplinary"] {"size": "1.850 strains; 700 plasmids", "updatedp": "2012-05"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://dictybase.org/tutorial/#Community [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "dictyostelid genomics", "model organism"] [{"institutionName": "Columbia University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.columbia.edu/", "institutionIdentifier": ["RRID:SCR_011164", "RRID:nlx_63913"], "responsibilityStartDate": "2002", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "Northwestern University, Dicty Stock Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dictybase.org/StockCenter/StockCenter.html", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["dictybase@northwestern.edu", "http://dictybase.org/db/cgi-bin/dictyBase/suggestion"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": ["RRID:SCR_012887", "RRID:nlx_inv_1005108"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dicty Stock Center Distribution Policy", "policyURL": "http://dictybase.org/StockCenter/OrderInfo.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://sourceforge.net/projects/dictybase/?source=navbar"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://dictybase.org/StockCenter/OrderInfo.html"}] restricted [] ["other"] {} ["other"] http://dictybase.org/CitingDictyBase.htm [] unknown unknown [] [] {} 2014-01-14 2019-02-21 +r3d100010587 EarthScope eng [] http://www.earthscope.org/ [] ["http://www.earthscope.org/about/contact"] EarthScope was a program of the National Science Foundation (NSF) that has deployed thousands of seismic, GPS, and other geophysical instruments to study the structure and evolution of the North American continent and the processes that cause earthquakes and volcanic eruptions. EarthScope was an Earth science program to explore the 4-dimensional structure of the North American continent. The EarthScope Program provides a framework for broad, integrated studies across the Earth sciences, including research on fault properties and the earthquake process, strain transfer, magmatic and hydrous fluids in the crust and mantle, plate boundary processes, large-scale continental deformation, continental structure and evolution, and composition and structure of the deep Earth. In addition, EarthScope offers a centralized forum for Earth science education at all levels and an excellent opportunity to develop cyberinfrastructure to integrate, distribute, and analyze diverse data set. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthscope.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["environmental data", "geochemistry", "geodetic data", "geomorphology", "geophysics", "geoscience", "hydrologic science", "marine geophysics", "seismic data", "subsurface"] [{"institutionName": "EarthScope, San Andreas Fault Observatory at Depth", "institutionAdditionalName": ["SAFOD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earthscope.org/about/observatories", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthscope.org/about/contact"]}, {"institutionName": "EarthScope, UNAVCO, Plate Boundary Observatory", "institutionAdditionalName": ["PBO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://pbo.unavco.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthscope.org/information/contact/"]}, {"institutionName": "IRIS, USArray", "institutionAdditionalName": ["Incorporated research institutions for seismology"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.usarray.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthscope.org/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Alaska Fairbanks, Geophysical Institute, EarthScope National Office", "institutionAdditionalName": ["UAF, ESNO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gi.alaska.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["earthscope@asu.edu", "http://www.earthscope.org/information/contact/"]}] [{"policyName": "Data", "policyURL": "http://www.earthscope.org/research/data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.earthscope.org/research/data"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Since 2007, the ESNO has been located at Oregon State University (2007-2011), Arizona State University (2011-2015), and now resides at the University of Alaska, Fairbanks 2014-01-14 2019-02-25 +r3d100010588 World Data Center for Renewable Resources and Environment eng [{"additionalName": "WDC - Renewable Resources and Environment", "additionalNameLanguage": "eng"}, {"additionalName": "WDC-RRE", "additionalNameLanguage": "eng"}] http://eng.wdc.cn/ [] ["wdc-rre@lreis.ac.cn"] The WDC is concerned with the collection, management, distribution and utilization of data from Chinese provinces, autonomous regions and counties,including: Resource data:management,distribution and utlilzation of land, water, climate, forest, grassland, minerals, energy, etc. Environmental data:pollution,environmental quality, change, natural disasters,soli erosion, etc. Biological resources:animals, plants,wildlife Social economy:agriculture, industry, transport, commerce,infrastructure,etc. Population and labor Geographic background data on scales of 1:4M,1:1M, 1:(1/2)M, 1:2500, etc. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] http://eng.wdc.cn/static/upload/76/769e6eba-3fbb-11e8-b4ea-1866dae73633.pdf [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "agrology", "area studies", "astronomy", "atmosphere", "cartology", "climate", "commerce", "earth sciences", "ecology", "environment", "forestry", "geochemistry", "geography", "geoinformatics", "geology", "geophysics", "hydrology", "industry", "infrastructure", "mineralogy", "natural resources", "oceanography", "outerspace", "plants", "seismology", "social development", "social population", "survey", "transport", "water", "wildlife"] [{"institutionName": "Chinese Academy of Sciences, Institute of Geographical Sciences and Natural Resources Research", "institutionAdditionalName": ["CAS", "IGSNRR"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.igsnrr.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU", "WDS"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": ["ROR:005vhrs19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretariat@icsu.org"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/02/WDC-Renewable-Resources-and-Environment.pdf"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/files/wds-constitution-06-11-13.pdf"}, {"policyName": "WDC RRE data policy", "policyURL": "http://eng.wdc.cn/page/rights_security"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://eng.wdc.cn/page/data_use"}, {"dataLicenseName": "other", "dataLicenseURL": "http://eng.wdc.cn/static/upload/c7/c7b73b6c-3e2e-11e8-a3c8-1866dae73633.pdf"}] restricted [{"dataUploadLicenseName": "WDC RRE storage agreement", "dataUploadLicenseURL": "http://eng.wdc.cn/page/rights_security"}] ["unknown"] yes {} ["DOI"] http://eng.wdc.cn/static/upload/c7/c7b73b6c-3e2e-11e8-a3c8-1866dae73633.pdf [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} WDC-RRE is part of the World Data Center System of the International Council of Science (ICSU). Data can be provided in machine readable forms on magnetic tapes and disks, or by fax, and Internet. 2014-01-23 2021-09-03 +r3d100010589 FANTOM eng [{"additionalName": "FANTOM DB", "additionalNameLanguage": "eng"}, {"additionalName": "FANTOM5", "additionalNameLanguage": "eng"}, {"additionalName": "Functional ANnotation Of the Mammalian genome", "additionalNameLanguage": "eng"}, {"additionalName": "SSTAR", "additionalNameLanguage": "eng"}] https://fantom.gsc.riken.jp/ ["OMICS_18179", "RRID:SCR_002678", "RRID:nif-0000-02833"] ["fantom-help@riken.jp"] FANTOM stands for 'Functional Annotation of the Mammalian Genome' and is the name of an international research consortium organized by the RIKEN Omics Science Center. The FANTOM5 project aims to build a full understanding of transcriptional regulation in a human system by generating transcriptional regulatory networks that define every human cell type. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://fantom.gsc.riken.jp/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bioinformatic analysis", "cDNA", "cell isolation", "chromosome", "developmental biology", "human cell type", "medical genomics"] [{"institutionName": "RIKEN Center for Life Science Technologies", "institutionAdditionalName": ["CLST"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.clst.riken.jp/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2013-04-01", "responsibilityEndDate": "", "institutionContact": ["fantom-help@gsc.riken.jp", "http://www.clst.riken.jp/en/about/contact/"]}] [{"policyName": "Privacy policy", "policyURL": "https://www.riken.jp/en/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.riken.jp/en/terms/"}] closed [] ["other"] yes {"api": "https://fantom.gsc.riken.jp/4/download/GenomeBrowser/ucsc/", "apiType": "FTP"} ["none"] https://fantom.gsc.riken.jp/4/download/ [] unknown unknown [] [] {"syndication": "https://fantom.gsc.riken.jp/rss.xml", "syndicationType": "RSS"} Started in 2000, FANTOM has generated an encyclopedia of mouse full-length cDNAs, which remain the largest collection of mammalian full-length cDNAs, according to a statement from Piero Carninci from the Riken Omics Science Center, which participated in the project (from GenomeWeb: https://www.genomeweb.com/sequencing/fantom5-transcription-map-project-launched) 2014-01-24 2021-10-04 +r3d100010590 The Fish Database of Taiwan eng [] https://fishdb.sinica.edu.tw/ [] [] The Fish Database of Taiwan is a complex of research data for about 25 years to the Lab of Fish Ecology and Evolution, which is situated in Biodiversity Research Center of Academia Sinica. eng ["institutional"] {"size": "300 families; 3.276 species", "updatedp": "2020-10-15"} 1999 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "coral reefs", "fish", "mangrove", "marine ecosystem", "sandy barrier lagoon", "seafloor", "x-rayed fishes"] [{"institutionName": "Academia Sinica, Biodiversity Research Center", "institutionAdditionalName": ["BRCAS"], "institutionCountry": "TWN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.biodiv.tw/en/", "institutionIdentifier": ["ROR:040bb7493"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Council of Agriculture, Executive Yuan R.O.C", "institutionAdditionalName": ["COA"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://eng.coa.gov.tw/index.php", "institutionIdentifier": ["ROR:0358yps07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["coa@mail.coa.gov.tw"]}, {"institutionName": "Ministry of Science and Technology", "institutionAdditionalName": ["MOST"], "institutionCountry": "TWN", "responsabilityType": ["funding", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.most.gov.tw/", "institutionIdentifier": ["ROR:02nfy5246"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["most@most.gov.tw"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] ["unknown"] {} ["none"] https://fishdb.sinica.edu.tw/eng/home.php [] unknown unknown ["WDS"] [] {} 2014-01-23 2020-10-15 +r3d100010591 FlyBase eng [{"additionalName": "A Database of Drosophila Genes and Genomes", "additionalNameLanguage": "eng"}] http://flybase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.wrvze3", "MIR:00000030", "OMICS_01649", "RRID:SCR_006549", "RRID:nif-0000-00558"] ["http://flybase.org/contact/email"] FlyBase is a database of genetic, genomic and functional data for Drosophila species, with a focus on the model organism Drosophila melanogaster.FlyBase contains a complete annotation of the Drosophila melanogaster genome that is updated several times per year.It also includes a searchable bibliography of research on Drosophila genetics in the last century. The site also provides a large database of images illustrating the full genome, and several movies detailing embryogenesis. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://wiki.flybase.org/wiki/FlyBase:About [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "cell biology", "genomes", "genomics", "human health", "neurobiology"] [{"institutionName": "Harvard University, Department of Molecular and Cellular Biology", "institutionAdditionalName": ["MCB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mcb.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mcb.harvard.edu/department/contact/"]}, {"institutionName": "Indiana University, Department of Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biology.indiana.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biology.indiana.edu/contact/index.html"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["OMICS_01554", "RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/contact.cfm"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Cambridge, Department of Genetics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gen.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gen.cam.ac.uk/department/contacts", "n.brown@gen.cam.ac.uk"]}, {"institutionName": "University of New Mexico, Department of Biology", "institutionAdditionalName": ["UNM Department of Biology"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biology.unm.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biology.unm.edu/contact.shtml"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://wiki.flybase.org/wiki/FlyBase:About#FlyBase_Copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.flybase.org/wiki/FlyBase:About#FlyBase_Copyright"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.flybase.net/", "apiType": "FTP"} ["none"] https://wiki.flybase.org/wiki/FlyBase:About#Citing_FlyBase [] yes unknown [] [] {} is covered by Elsevier. FlyBase is one of the organizations contributing to the Generic Model Organism Database (GMOD) http://gmod.org/wiki/Main_Page 2014-01-27 2021-09-02 +r3d100010593 HealthData.gov eng [] https://healthdata.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.kcpnmb", "RRID:SCR_004386", "RRID:nlx_143714"] ["healthdata@hhs.gov"] This site is dedicated to making high value health data more accessible to entrepreneurs, researchers, and policy makers in the hopes of better health outcomes for all. In a recent article, Todd Park, United States Chief Technology Officer, captured the essence of what the Health Data Initiative is all about and why our efforts here are so important. eng ["disciplinary"] {"size": "4.178 results", "updatedp": "2021-12-21"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cambiagrove.com/data-resource/healthdatagov [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["Medicare", "community health", "health data"] [{"institutionName": "U.S. Department of Health and Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "HHS Privacy Policy Notice", "policyURL": "https://www.hhs.gov/web/policies-and-standards/hhs-web-policies/privacy/index.html"}, {"policyName": "Laws & Regulations", "policyURL": "https://www.hhs.gov/regulations/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.hhs.gov/open/publicaccess/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.hhs.gov/disclaimer.html"}] closed [] ["unknown"] yes {"api": "https://www.hhs.gov/hipaa/for-professionals/privacy/guidance/access-right-health-apps-apis/index.html", "apiType": "other"} ["none"] [] unknown unknown [] [] {} HealthData.gov makes data from following agencies accessible: Centers for Medicare & Medicaid Services, Centers for Disease Control and Prevention, State of Illinois, New York State, U.S. Food and Drug Administration, Department of Health & Human Services , Administration for Children and Families , State of Hawaii, State of Maryland, Substance Abuse & Mental Health Services Administration, National Library of Medicine, State of Missouri, Health Resources and Services Administration, Agency for Healthcare Research and Quality, National Institutes of Health, State of Colorado, Administration for Community Living, State of Oklahoma, State of Washington, State of Oregon, National Cancer Institute, National Institute on Drug Abuse, Indian Health Service, New York State Department of Health 2014-01-24 2021-12-21 +r3d100010594 Herschel Science Archive eng [{"additionalName": "HSA", "additionalNameLanguage": "eng"}] http://archives.esac.esa.int/hsa/aio/doc/ [] ["https://support.cosmos.esa.int/herschel/"] Herschel has been designed to observe the `cool universe'; it is observing the structure formation in the early universe, resolving the far infrared cosmic background, revealing cosmologically evolving AGN/starburst symbiosis and galaxy evolution at the epochs when most stars in the universe were formed, unveiling the physics and chemistry of the interstellar medium and its molecular clouds, the wombs of the stars, and unravelling the mechanisms governing the formation of and evolution of stars and their planetary systems, including our own solar system, putting it into context. In short, Herschel is opening a new window to study how the universe has evolved to become the universe we see today, and how our star the sun, our planet the earth, and we ourselves fit in. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009-05-14 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cosmos.esa.int/web/herschel/overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cosmology", "galaxy", "infrared space mission", "photometry", "planetary system", "solar system", "spectroscopy", "stars", "universe"] [{"institutionName": "European Space Agency, Science & Technology, COSMOS", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cosmos.esa.int/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Herschel Science Center", "institutionAdditionalName": ["HSC"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cosmos.esa.int/web/herschel/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Procedures", "policyURL": "http://herschel.esac.esa.int/Docs/Herschel/policy/pdf/policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://sci.esa.int/home/51481-disclaimer/"}] closed [] ["other", "other", "other"] yes {} ["none"] [] unknown yes [] [] {} The European Space Agency's Herschel Space Observatory (formerly called Far Infrared and Sub-millimetre Telescope or FIRST) has the largest single mirror ever built for a space telescope. At 3.5-metres in diameter the mirror will collect long-wavelength radiation from some of the coldest and most distant objects in the Universe. In addition, Herschel is the only space observatory to cover a spectral range from the far infrared to sub-millimetre. 2014-01-27 2019-03-08 +r3d100010596 International Service of Geomagnetic Indices eng [{"additionalName": "ISGI", "additionalNameLanguage": "eng"}, {"additionalName": "SIIG", "additionalNameLanguage": "fra"}, {"additionalName": "Service International des Indices G\u00e9omagn\u00e9tiques", "additionalNameLanguage": "fra"}] http://isgi.unistra.fr/ ["FAIRsharing_DOI:10.25504/FAIRsharing.5Sfaz2"] ["aude.chambodut@unistra.fr", "isgi@unistra.fr"] The International Service of Geomagnetic Indices (ISGI) is in charge of the elaboration and dissemination of geomagnetic indices, and of tables of remarkable magnetic events, based on the report of magnetic observatories distributed all over the planet, with the help of ISGI Collaborating Institutes. The interaction between the solar wind, including plasma and interplanetary magnetic field, and the Earth's magnetosphere results in a transfer of energy and particles inside the magnetosphere. Solar wind characteristics are highly variable, and they have actually a direct influence on the shape and size of the magnetosphere, on the amount of transferred energy, and on the way this energy is dissipated. It is clear that the great diversity of sources of magnetic variations give rise to a great complexity in ground magnetic signatures. Geomagnetic indices aim at describing the geomagnetic activity or some of its components. Each geomagnetic index is related to different phenomena occurring in the magnetosphere, ionosphere and deep in the Earth in its own unique way. The location of a measurement, the timing of the measurement and the way the index is calculated all affect the type of phenomenon the index relates to. The IAGA endorsed geomagnetic indices and lists of remarkable geomagnetic events constitute unique temporal and spatial coverage data series homogeneous since middle of 19th century. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isgi.unistra.fr/whats_isgi.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["energy", "magnetic field", "magnetosphere", "solar terrestrial physics", "space sciences", "space weather"] [{"institutionName": "CNRS-INSU", "institutionAdditionalName": ["Centre National de la Recherche Scientifique, Institut national des sciences de l'univers", "National Center for Scientific Research, National Institute for Earth Sciences and Astronomy"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.insu.cnrs.fr/node/1228", "institutionIdentifier": ["RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.insu.cnrs.fr/contact"]}, {"institutionName": "Centre National d\u2019Etudes Spatiales", "institutionAdditionalName": ["CNES"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/en", "institutionIdentifier": ["ROR:04h1h0y33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cnes.fr/fr/contactez-nous"]}, {"institutionName": "DTU Space", "institutionAdditionalName": ["Danmarks Tekniske Universitet, Space", "Institut for Rumforskning og-teknologi", "National Space Institute"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.space.dtu.dk/English/", "institutionIdentifier": ["Wikidata:Q2570097"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ebro Observatory", "institutionAdditionalName": ["Observatori de l' Ebre"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.obsebre.es/en/", "institutionIdentifier": ["ROR:03vht8z34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.obsebre.es/en/contact"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/kp-index/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ISPL-LATMOS", "institutionAdditionalName": ["Institut Pierrre Simon Laplace, Laboratoire Atmosph\u00e9res, Milieux, Observations Spatiales"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.latmos.ipsl.fr/index.php/fr/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2014", "institutionContact": ["http://www.latmos.ipsl.fr/index.php/en/nous-contacter"]}, {"institutionName": "International Association of Geomagnetism and Aeronomy", "institutionAdditionalName": ["AIGA", "Association Internationale de G\u00e9omagn\u00e9tisme et d'A\u00e9ronomie", "IAGA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iaga-aiga.org/", "institutionIdentifier": ["Wikidata:Q6048492"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iaga-aiga.org/index.php?id=imprinthtml"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU-WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Russian Federal Service for Hydrometeorology and Environmental Monitoring, Arctic and Antarctic Research Institute, Department of geophysics", "institutionAdditionalName": ["\u0424\u0415\u0414\u0415\u0420\u0410\u041b\u042c\u041d\u0410\u042f \u0421\u041b\u0423\u0416\u0411\u0410 \u041f\u041e \u0413\u0418\u0414\u0420\u041e\u041c\u0415\u0422\u0415\u041e\u0420\u041e\u041b\u041e\u0413\u0418\u0418 \u0418 \u041c\u041e\u041d\u0418\u0422\u041e\u0420\u0418\u041d\u0413\u0423 \u041e\u041a\u0420\u0423\u0416\u0410\u042e\u0429\u0415\u0419 \u0421\u0420\u0415\u0414\u042b, \u0424\u0413\u0411\u0423 \u0410\u0420\u041a\u0422\u0418\u0427\u0415\u0421\u041a\u0418\u0419 \u0418 \u0410\u041d\u0422\u0410\u0420\u041a\u0422\u0418\u0427\u0415\u0421\u041a\u0418\u0419 \u041d\u0410\u0423\u0427\u041d\u041e-\u0418\u0421\u0421\u041b\u0415\u0414\u041e\u0412\u0410\u0422\u0415\u041b\u042c\u0421\u041a\u0418\u0419 \u0418\u041d\u0421\u0422\u0418\u0422\u0423\u0422, \u041e\u0442\u0434\u0435\u043b \u0413\u0435\u043e\u0444\u0438\u0437\u0438\u043a\u0438"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geophys.aari.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pgc@aari.ru"]}, {"institutionName": "World Data Center for Geomagnetism, Kyoto", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://wdc.kugi.kyoto-u.ac.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00c9cole et Observatoire des Sciences de la Terre, Universit\u00e9 de Strasbourg/CNRS-INSU Service national d\u2019Observation en Magn\u00e9tisme", "institutionAdditionalName": ["EOST", "School and Observatory of Earth Sciences, University of Strasbourg/CNRS-INSU National Service of Observation in Magnetism"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "http://eost.unistra.fr/", "institutionIdentifier": ["Wikidata:Q3577986"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["http://eost.unistra.fr/contact/"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU data policy", "policyURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}, {"policyName": "Rules and Policy", "policyURL": "http://isgi.unistra.fr/policy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [] [] yes {} ["none"] http://isgi.unistra.fr/policy.php [] unknown yes ["WDS"] [] {} The 6 ISGI Collaborating Institutes are: EOST (Ecole et Observatoire des Sciences de la Terre, Strasbourg, France), GFZ (Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum Adolf-Schmidt-Observatorium, Potsdam, Germany), Observatori de l'Ebre (Roquetes, Spain), WDC Kyoto for Geomagnetism ( World Data Center for Geomagnetism, Data Analysis Center for Geomagnetism and Space Magnetism, Graduate School of Science, Kyoto University, Japan), DTU Space (DTU Space, National Space Institute, Lyngby, Denmark) and AARI (Arctic and Antarctic Research Institute, St.Petersburg, Russian Federation) [see: http://isgi.unistra.fr/collaborating_institutes.php]. The indices of geomagnetic activity and lists of remarkable events derivation, meaning and availability are available at: http://isgi.unistra.fr/geomagnetic_indices.php. ISGI headquarters have been moved from LATMOS (Guyancourt, France) to EOST(Strasbourg, France) in 2014. 2014-01-30 2021-11-17 +r3d100010597 The Infrared Space Observatory data archive eng [{"additionalName": "IDA", "additionalNameLanguage": "eng"}, {"additionalName": "ISO Data Archive", "additionalNameLanguage": "eng"}] https://www.cosmos.esa.int/web/iso/access-the-archive [] ["https://support.cosmos.esa.int/iso/"] The Infrared Space Observatory (ISO) is designed to provide detailed infrared properties of selected Galactic and extragalactic sources. The sensitivity of the telescopic system is about one thousand times superior to that of the Infrared Astronomical Satellite (IRAS), since the ISO telescope enables integration of infrared flux from a source for several hours. Density waves in the interstellar medium, its role in star formation, the giant planets, asteroids, and comets of the solar system are among the objects of investigation. ISO was operated as an observatory with the majority of its observing time being distributed to the general astronomical community. One of the consequences of this is that the data set is not homogeneous, as would be expected from a survey. The observational data underwent sophisticated data processing, including validation and accuracy analysis. In total, the ISO Data Archive contains about 30,000 standard observations, 120,000 parallel, serendipity and calibration observations and 17,000 engineering measurements. In addition to the observational data products, the archive also contains satellite data, documentation, data of historic aspects and externally derived products, for a total of more than 400 GBytes stored on magnetic disks. The ISO Data Archive is constantly being improved both in contents and functionality throughout the Active Archive Phase, ending in December 2006. eng ["disciplinary"] {"size": "30.000 standard observations; 120.000 parallel, serendipity and calibration observations; 17.000 engineering measurements", "updatedp": "2016-05-09"} 1998-12-08 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cosmos.esa.int/web/iso/mission-overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Hale-Bopp", "asteroids", "black holes", "comets", "galaxies", "gas collapse", "mineral olivine", "planets", "satellites", "spacecraft", "star formation"] [{"institutionName": "European Space Agency, ISO Data Centre", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cosmos.esa.int/web/iso/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.cosmos.esa.int/iso/"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Astronomie", "institutionAdditionalName": ["MPIA", "Max Planck Institute for Astronomy"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mpia.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mpia.de/contact"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Extraterrestrische Physik", "institutionAdditionalName": ["MPE", "Max Planck Institute for Extraterrestrial Physics"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mpe.mpg.de/2169/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mpe.mpg.de/3849/contact"]}, {"institutionName": "NASA's Infrared Processing and Analysis Centre", "institutionAdditionalName": ["IPAC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ipac.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipac.caltech.edu/page/contact"]}, {"institutionName": "SRON", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sron.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sron.nl/contact"]}, {"institutionName": "Universit\u00e9 Paris, Institut d'Astrophysique Spatiale", "institutionAdditionalName": ["IAS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ias.u-psud.fr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ias.u-psud.fr/en/the-lab/organization"]}] [{"policyName": "The ISO handbook", "policyURL": "https://www.cosmos.esa.int/web/iso/iso-handbook"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://sci.esa.int/home/51481-disclaimer/"}] closed [] ["unknown"] yes {"api": "https://www.cosmos.esa.int/web/iso/archive-guided-tour", "apiType": "FTP"} ["none"] [] yes yes [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} The ISO Data Archive is one element of the ISO Post Operations phase, which is a collaborative effort coordinated by the ISO Data Centre in ESA, Villafranca, Spain and includes six national data centres: the French ISO Centres (Orsay-Saclay, France), the UK ISO Data Centre (Rutherford, UK), the ISO Spectrometer Data Centre (Garching, Germany), the ISOPHOT Data Centre (Heidelberg, Germany), the Dutch ISO Data Analysis Centre (Groningen, the Netherlands) and the Infrared Processing and Analysis Center (Pasadena, USA) Dutch ISO Data Analysis Centre - DIDAC is now part of the HIFI Operations Centre at SRON. 2014-01-29 2019-03-08 +r3d100010598 Legacy Archive for Microwave Background Data Analysis eng [{"additionalName": "High Energy Astrophysics Science Archive Research Center", "additionalNameLanguage": "eng"}, {"additionalName": "LAMBDA", "additionalNameLanguage": "eng"}] https://lambda.gsfc.nasa.gov/ [] ["https://lambda.gsfc.nasa.gov/contact/contact.cfm"] LAMBDA is a part of NASA's High Energy Astrophysics Science Archive Research Center (HEASARC). LAMBDA is a multi-mission NASA center of expertise for cosmic microwave background radiation research. LAMBDA exists to serve the CMB research community, and the greater cosmological research community. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://lambda.gsfc.nasa.gov/product/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cosmology", "infrared", "microwave", "orbit", "temperature", "universe"] [{"institutionName": "National Aeronautics and Space Administration, High Energy Astrophysics Science Archive Research Center", "institutionAdditionalName": ["HEASARC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://heasarc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://heasarc.gsfc.nasa.gov/cgi-bin/Feedback"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard#.Uu9lsVMhF5M"]}] [{"policyName": "NASA Policy", "policyURL": "https://www.nasa.gov/audience/formedia/features/communication_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html#.UvOqNFOth5M"}] closed [] ["unknown"] yes {} [] https://lambda.gsfc.nasa.gov/ [] unknown yes [] [] {"syndication": "https://lambda.gsfc.nasa.gov/news/recent_papers.xml", "syndicationType": "RSS"} LAMBDA is covered by Thomson Reuters Data Citation Index. The LAMBDA site provides access to WMAP (Wilkinson Microwave Anisotropy Probe), COBE (Cosmic Background Explorer), Infrared Astronomical Satellite (IRAS), SWAS Data (Submillimeter Wave Astronomy Satellite), Data from Atacama Cosmology Telescope (ACT), South Pole Telescope (SPT)and the Planck Mission. 2014-01-30 2019-03-08 +r3d100010599 DSpace@MIT eng [] http://dspace.mit.edu/ [] ["https://libraries.mit.edu/forms/dspace-help/"] DSpace@MIT is a service of the MIT Libraries to provide MIT faculty, researchers and their supporting communities stable, long-term storage for their digital research and teaching output and to maximize exposure of their content to a world audience. DSpace@MIT content includes conference papers, images, peer-reviewed scholarly articles, preprints, technical reports, theses, working papers, research datasets and more. This collection of more than 60,000 high-quality works is recognized as among the world's premier scholarly repositories and receives, on average, more than 1 million downloads per month. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.mit.edu/dspace [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Barton", "CSAIL", "MIT Open Access Articles", "MIT OpenCourseWare", "MIT THESES", "OCW", "research data"] [{"institutionName": "Massachusetts Institute of Technology, MIT Libraries Curation and Preservation Services", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://libraries.mit.edu/preserve/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://libraries.mit.edu/ask/"]}] [{"policyName": "Community and Collection Policies/General Policies", "policyURL": "https://libguides.mit.edu/c.php?g=176372&p=1158986"}, {"policyName": "MIT Faculty Open Access Policy", "policyURL": "https://libraries.mit.edu/scholarly/mit-open-access/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://libguides.mit.edu/c.php?g=176372&p=1158986"}] closed [{"dataUploadLicenseName": "Non-Exclusive Deposit License", "dataUploadLicenseURL": "https://libguides.mit.edu/c.php?g=176372&p=1158986#collapse3"}] ["DSpace"] yes {} ["hdl"] https://libguides.mit.edu/citing [] unknown yes [] [] {} 2014-02-27 2019-03-08 +r3d100010600 Macaulay Library eng [{"additionalName": "LNS", "additionalNameLanguage": "eng"}, {"additionalName": "Library of Natural Sounds", "additionalNameLanguage": "eng"}] https://www.macaulaylibrary.org/ [] ["https://www.macaulaylibrary.org/about/contact/"] The Macaulay Library is the world's largest and oldest scientific archive of biodiversity audio and video recordings. The library collects and preserves recordings of each species' behavior and natural history, to facilitate the ability of others to collect and preserve such recordings, and to actively promote the use of these recordings for diverse purposes spanning scientific research, education, conservation, and the arts. All archived analog recordings in the collection, going back to 1929. eng ["disciplinary"] {"size": "10.687.621 photos, 438.69 sound recordings; 58.145 videos;", "updatedp": "2019-03-08"} 2013-07 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.macaulaylibrary.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal behavior", "avian vocal diversity", "frog", "insects", "mammals", "natural history"] [{"institutionName": "Cornell University, Cornell Lab of Ornithology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.birds.cornell.edu/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.birds.cornell.edu/home/contact-us/"]}, {"institutionName": "Gordon and Betty Moore Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.moore.org/", "institutionIdentifier": ["RRID:SCR_006081", "RRID:nlx_151491"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.moore.org/about/contact-us"]}, {"institutionName": "Institute of Museum and Library Services", "institutionAdditionalName": ["IMLS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imls.gov/", "institutionIdentifier": ["RRID:SCR_011316", "RRID:nlx_157265"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imls.gov/contact/contact-us"]}, {"institutionName": "MacArthur Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.macfound.org/", "institutionIdentifier": ["RRID:SCR_000612", "RRID:nlx_151326"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.macfound.org/about/contact/"]}, {"institutionName": "National Oceanographic Partnership Program", "institutionAdditionalName": ["NOPP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nopp.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nopp.org/contact-us/"]}, {"institutionName": "National Science Digital Library", "institutionAdditionalName": ["NSDL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsdl.oercommons.org/", "institutionIdentifier": ["RRID:SCR_008215", "RRID:nif-0000-21294"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsdl.oercommons.org/nsdl-contacts-page"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil/", "institutionIdentifier": ["RRID:SCR_004366", "RRID:nlx_144142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.onr.navy.mil/Media-Center/media-contacts"]}, {"institutionName": "Richard Lounsbery Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rlounsbery.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["foundation@rlounsbery.org"]}, {"institutionName": "The Andrew W. Mellon Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mellon.org/", "institutionIdentifier": ["RRID:SCR_005864", "RRID:nlx_149404"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mellon.org/about/contact-information/"]}, {"institutionName": "The Field Museum", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fieldmuseum.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fieldmuseum.org/about/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.macaulaylibrary.org/macaulay-library-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.macaulaylibrary.org/macaulay-library-terms-of-use/"}] restricted [{"dataUploadLicenseName": "Prepare and upload photos", "dataUploadLicenseURL": "https://www.macaulaylibrary.org/how-to/photos/"}, {"dataUploadLicenseName": "Prepare and upload recordings", "dataUploadLicenseURL": "https://www.macaulaylibrary.org/how-to/edit-and-upload/"}] ["unknown"] {} ["none"] https://www.macaulaylibrary.org/how-to/media-attribution/ [] unknown yes [] [] {} Formerly "Library of Natural Sounds, NLS". In 2000, Linda and Bill Macaulay graciously donated substantial funds to build our current facilities. Today, the archive bears their name. 2014-02-04 2019-03-08 +r3d100010601 WDC Sunspot Index and Long-term Solar Observations eng [{"additionalName": "SILSO", "additionalNameLanguage": "eng"}] http://sidc.be/silso/ ["biodbcore-001740"] ["http://sidc.be/silso/Contact"] SILSO is the World Data Center for the production, preservation and dissemination of the international sunspot number. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.sidc.be/silso/node/55 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Wolf number", "corona", "electromagnetic", "energetic eruption", "history", "photosphere", "plasma", "solar activity", "solar flares", "solar physics", "space sciences", "statistics", "sun-earth relations", "sunspot number"] [{"institutionName": "ICSU World Data System", "institutionAdditionalName": ["International Council of Science, WDS"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icsu-wds.org/community/membership/regular-members/@@member_view?fid=wdc-sunspot-index-and-long-term-solar-observations-silso"]}, {"institutionName": "Observatoire Royal de Belgique", "institutionAdditionalName": ["Koninklijke Sterrenwacht van Belgie", "Royal Observatory of Belgium"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.astro.oma.be/", "institutionIdentifier": ["ROR:00hjks330"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.astro.oma.be/en/contact-us/"]}, {"institutionName": "Royal Observatory of Belgium, Solar Influences Data Analysis Center", "institutionAdditionalName": ["SIDC"], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://sidc.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["anne.vandersyppe@sidc.be", "http://sidc.be/silso/Contact"]}, {"institutionName": "Solar-Terrestrial Centre of Excellence", "institutionAdditionalName": ["STCE"], "institutionCountry": "BEL", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.stce.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.stce.be/contact"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/06/WDC-Sunspot-Index-and-Long-term-Solar-Observations-SILSO.pdf"}, {"policyName": "Legal notices", "policyURL": "http://sidc.be/silso/legal"}, {"policyName": "WDS Data policy", "policyURL": "http://www.icsu-wds.org/services/certification"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.astro.oma.be/common/internet/en/data-policy-en.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.astro.oma.be/common/internet/en/terms-of-use.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] restricted [{"dataUploadLicenseName": "Contribute", "dataUploadLicenseURL": "http://www.sidc.be/silso/node/54"}] ["MySQL"] yes {} ["DOI"] http://sidc.be/silso/citations [] unknown yes ["other"] [] {} SILSO is part of ICSU World Data System. The Solar Influences Data Analysis Center (SIDC) is the solar physics research department of the Royal Observatory of Belgium. The SIDC includes the World Data Center for the sunspot index and the ISES Regional Warning Center Brussels for space weather forecasting. SIDC is one of the Regional Warning Centres of the International Space Environment Service (ISES). 2014-02-04 2021-11-16 +r3d100010602 Space Physics Interactive Data Resource eng [{"additionalName": "SPIDR", "additionalNameLanguage": "eng"}] [] [] >>>!!!<<>>!!!<<< The Space Physics Interactive Data Resource from NOAA's National Geophysical Data Center allows solar terrestrial physics customers to intelligently access and manage historical space physics data for integration with environment models and space weather forecasts. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 2016-5 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cosmic ray", "ionosphere", "magnetosphere", "solar activity", "solar energetics", "solar wind", "solar x-ray", "solid earth", "space weather", "sunspots"] [{"institutionName": "National Geophysical Data Center", "institutionAdditionalName": ["NGDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov", "institutionIdentifier": ["ROR:04w1wsw24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ngdc.noaa.gov/ngdcinfo/phone.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contacts.html"]}] [{"policyName": "Copyright", "policyURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/bsd-license.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}] closed [] ["unknown"] yes {"api": "http://spidr.ionosonde.net/spidr/tools.do", "apiType": "REST"} ["none"] [] unknown yes [] [] {} SPIDR (Space Physics Interactive Data Resource) was a standard data source for solar-terrestrial physics, functioning within the framework of the ICSU World Data Centers. It had a distributed database and application server network, built to select, visualize and model historical space weather data distributed across the Internet. SPIDR worked as a fully-functional web-application (portal) and as a grid of web-services, providing functions for other applications to access its data holdings. It was decommissioned on the ngdc.noaa.gov domain in May, 2016. Please email ncei.info@noaa.gov with questions . - Database hosted on sourceforge 2014-02-06 2021-07-12 +r3d100010603 Spitzer Heritage Archive eng [{"additionalName": "SHA", "additionalNameLanguage": "eng"}] http://ssc.spitzer.caltech.edu/ [] ["http://irsa.ipac.caltech.edu/onlinehelp/heritage/#id=more"] Spitzer is the final mission in NASA's Great Observatories Program - a family of four orbiting observatories, each observing the Universe in a different kind of light (visible, gamma rays, X-rays, and infrared). Spitzer is also a part of NASA's Astronomical Search for Origins Program, designed to provide information which will help us understand our cosmic roots, and how galaxies, stars and planets develop and form. eng ["disciplinary"] {"size": "88 billion rows of catalog data, 100 million images, and over 100,000 spectra", "updatedp": "2018-11-21"} 2003-08-25 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://irsa.ipac.caltech.edu/data/SPITZER/docs/spitzermission/missionoverview/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomy", "cosmic", "galaxies", "satellites", "space", "stars"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.caltech.edu/contact"]}, {"institutionName": "California Institute of Technology, Infrared Processing and Analysis Center", "institutionAdditionalName": ["IPAC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://old.ipac.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://old.ipac.caltech.edu/page/contact"]}, {"institutionName": "Jet Propulsions Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.UvOPrFMhF5M"]}, {"institutionName": "Spitzer Science Center", "institutionAdditionalName": ["SSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ssc.spitzer.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@spitzer.caltech.edu"]}] [{"policyName": "IRSA Privacy Statement", "policyURL": "http://irsa.ipac.caltech.edu/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.caltech.edu/copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.spitzer.caltech.edu/info/18-Image-Use-Policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://authors.library.caltech.edu/22825/"}] restricted [] ["unknown"] yes {} ["none"] https://authors.library.caltech.edu/22825/ [] unknown yes [] [] {} Other missions in NASA's Great Observatories Program include the Hubble Space Telescope (HST), Compton Gamma-Ray Observatory (CGRO), and the Chandra X-Ray Observatory(CXO). 2014-02-07 2018-11-21 +r3d100010604 STRING eng [{"additionalName": "Known and Predicted Protein-Protein Interactions", "additionalNameLanguage": "eng"}] https://string-db.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.9b7wvk", "MIR:00000265", "OMICS_29032", "RRID:SCR_005223", "RRID:nif-0000-03503"] ["https://string-db.org/cgi/about.pl?footer_active_subpage=contributors"] STRING is a database of known and predicted protein interactions. The interactions include direct (physical) and indirect (functional) associations; they are derived from four sources: - Genomic Context - High-throughput Experiments - (Conserved) Coexpression - Previous Knowledge STRING quantitatively integrates interaction data from these sources for a large number of organisms, and transfers information between these organisms where applicable. eng ["disciplinary"] {"size": "9.643.763 proteins from 2.031 organisms", "updatedp": "2018-11-21"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["enzyme", "protein"] [{"institutionName": "EMBO", "institutionAdditionalName": ["European Molecular Biology Organization", "Gesellschaft zur F\u00f6rderung der Lebenswissenschaften Heidelberg GmbH"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.embo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.embo.org/about-embo/contact-us"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.embl.de/aboutus/contact/index.html"]}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Dresden, Biotechnology Center", "institutionAdditionalName": ["TUD, BIOTEC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.biotec.tu-dresden.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Copenhagen, The Novo Nordisk Foundation, Center for Protein Research", "institutionAdditionalName": ["NNF Center for Protein Research"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cpr.ku.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ku@ku.dk"]}, {"institutionName": "University of Zurich", "institutionAdditionalName": ["UZH", "Universit\u00e4t Z\u00fcrich"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uzh.ch/index_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uzh.ch/en/contact.html"]}, {"institutionName": "Universit\u00e4t Basel, The Center for Molecular Life Sciences, Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] yes {"api": "https://string-db.org/cgi/access.pl?footer_active_subpage=apis", "apiType": "REST"} ["other"] https://string-db.org/cgi/about.pl?UserId=OfMhwqVHuSK5&sessionId=G8NhrDcTSZHA&footer_active_subpage=references [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-02-08 2019-01-17 +r3d100010605 SWISS-MODEL Repository eng [] https://swissmodel.expasy.org/repository/ ["FAIRsharing_doi:10.25504/FAIRsharing.vxz9pn", "OMICS_03965", "RRID:SCR_013032", "RRID:nif-0000-03522"] ["help-swissmodel@unibas.ch"] The SWISS-MODEL Repository is a database of annotated three-dimensional comparative protein structure models generated by the fully automated homology-modelling pipeline SWISS-MODEL. eng ["disciplinary"] {"size": "1.471.170 models from SWISS-MODEL for UniProtKB targets as well as 138.232 structures from PDB with mapping to UniProtKB", "updatedp": "2018-11-21"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://swissmodel.expasy.org/repository/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Bakers Yeast", "COVID-19", "Caenorhabditis elegans", "Caulobacter crescentus", "Escherichia coli", "Fruit Fly", "Mouse-ear cress", "Mycobacterium tuberculosis", "Plasmodium falciparum", "Pseudomonas aeruginosa", "Staphylococcus aureus", "macromolecular structure data"] [{"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sib.swiss/about-us/contact"]}, {"institutionName": "Universit\u00e4t Basel, Research group Torsten Schwede", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.biozentrum.unibas.ch/research/groups-platforms/overview/unit/schwede/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.biozentrum.unibas.ch/research/groups-platforms/group/unit/schwede/"]}] [{"policyName": "Swiss-Model Terms of use", "policyURL": "https://swissmodel.expasy.org/docs/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://swissmodel.expasy.org/docs/terms_of_use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://swissmodel.expasy.org/docs/terms_of_use"}] restricted [{"dataUploadLicenseName": "SWISS-MODEL workspace", "dataUploadLicenseURL": "http://swissmodel.expasy.org/workspace/"}] ["unknown"] yes {"api": "https://swissmodel.expasy.org/docs/repository_help", "apiType": "other"} ["none"] http://swissmodel.expasy.org/?pid=smo01 [] unknown unknown [] [] {} Reference proteomes are retrieved from the UniProt database. 2014-02-12 2020-04-24 +r3d100010606 Tropical Ecology Assessment and Monitoring Network eng [{"additionalName": "Early Warning System for Nature", "additionalNameLanguage": "eng"}, {"additionalName": "TEAM", "additionalNameLanguage": "eng"}] http://www.teamnetwork.org/ [] ["help@teamnetwork.org.", "http://www.teamnetwork.org/contact"] TEAM is devoted to monitoring long-term trends in biodiversity, land cover change, climate and ecosystem services in tropical forests. Tropical forests received first billing because of their overwhelming significance to the global biosphere (e.g., their disproportionately large role in global carbon and energy cycles) and because of the extraordinary threats they face. About 50 percent of the species described on Earth, and an even larger proportion of species not yet described, occur in tropical forests. TEAM aims to measure and compare plants, terrestrial mammals, ground-dwelling birds and climate using a standard methodology in a range of tropical forests, from relatively pristine places to those most affected by people. TEAM currently operates in sixteen tropical forest sites across Africa, Asia and Latin America supporting a network of scientists committed to standardized methods of data collection to quantify how plants and animals respond to pressures such as climate change and human encroachment. eng ["disciplinary"] {"size": "over 3.4 million images", "updatedp": "2017-08-01"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.teamnetwork.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "ecological system", "ecology", "ecosystem", "nature"] [{"institutionName": "Conservation International, Center for Applied Biodiversity Science, Tropical Ecology, Assessment and Monitoring Initiative", "institutionAdditionalName": ["CABS, TEAM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.teamnetwork.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.teamnetwork.org/contact"]}, {"institutionName": "Gordon and Betty Moore Foundation", "institutionAdditionalName": ["Moore Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.moore.org/", "institutionIdentifier": ["ROR:006wxqw41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, San Diego, San Diego Supercomputer Center", "institutionAdditionalName": ["UCSD, SDSC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.sdsc.edu/", "institutionIdentifier": ["ROR:04mg3nk07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Terms and conditions", "policyURL": "http://www.teamnetwork.org/data/use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.teamnetwork.org/legal/terms-of-use"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.teamnetwork.org/data/use"}] closed [] ["unknown"] {} ["none"] http://www.teamnetwork.org/data/use [] unknown yes [] [] {} Previously certified by the WDS Scientific Committee as Regular Members, but have regretfully resign their membership due to severe staff limitations. TEAM was a regular member of the ICSU World Data System. 2014-02-12 2021-09-03 +r3d100010607 United States Health Information Knowledgebase eng [{"additionalName": "USHIK", "additionalNameLanguage": "eng"}] https://ushik.ahrq.gov/mdr/portals [] ["https://www.ahrq.gov/contact/index.html"] The United States Health Information Knowledgebase (USHIK) is an on-line, publicly accessible registry and repository of healthcare related data, metadata, and standards. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ahrq.gov/cpi/about/mission/index.html [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["APCD", "Childrens Electronic Health Reocrd (EHR)", "Childrens Health Insurance Program (CHIP)", "Medicaid", "clinical quality", "healthcare quality", "pharmaceutical name", "value sets"] [{"institutionName": "Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHQR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ahrq.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ahrq.gov/contact/index.html"]}, {"institutionName": "National Center for Health Statistics, Centers for Disease Control and Preventions", "institutionAdditionalName": ["CDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Health Statistics, Centers for Medicare & Medicaid Services", "institutionAdditionalName": ["CMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S Department of Health & Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Electronic Policies", "policyURL": "https://www.ahrq.gov/policy/electronic/about/policyix.html"}, {"policyName": "FOIA (Freedom of Information Act)", "policyURL": "https://www.hhs.gov/foia"}, {"policyName": "Web Site Policies", "policyURL": "https://www.ahrq.gov/policy/electronic/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archive.ahrq.gov/policy/electronic/about/index.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archive.ahrq.gov/policy/electronic/copyright/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://archive.ahrq.gov/policy/electronic/about/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ahrq.gov/funding/policies/publicaccess/index.html"}] closed [] ["unknown"] {"api": "http://ushik.ahrq.gov/help/MeaningfulUse/api?system=mu&enableAsynchronousLoading=true#Retrieve_Multiple_Value_Sets", "apiType": "other"} ["none"] https://www.ahrq.gov/funding/policies/publicaccess/index.html [] unknown yes [] [] {} USHIK is funded and directed by the Agency for Healthcare Research and Quality (AHRQ) with management support and partnership from the Centers for Medicare & Medicaid Services (CMS) and the Centers for Disease Control and Prevention's (CDC) National Center for Health Statistics. 2014-02-14 2018-12-14 +r3d100010608 World Data Center for Geomagnetism, Kyoto eng [{"additionalName": "WDC - Geomagnetism, Kyoto", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Geomag", "additionalNameLanguage": "eng"}] http://wdc.kugi.kyoto-u.ac.jp/ ["biodbcore-001753"] ["iyemori@kugi.kyoto-u.ac.jp"] The task of WDC geomagnetism is to collect geomagnetic data from all over the globe and distribute those data to researchers and data users, as a World Data Center for Geomagnetism. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://wdc.kugi.kyoto-u.ac.jp/wdc/pdf/pamphlet/wdc_pamp_e.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["INTERMAGNET", "aurora borealis", "celestial bodies", "ionosphere", "magnetic equator", "magnetic storms", "magnetosphere", "near-earth plasma", "seafloor", "volcano"] [{"institutionName": "Kyoto University, Graduate School of Science, Data Analysis Center for Geomagnetism and Space Magnetism", "institutionAdditionalName": ["\u4eac\u90fd\u5927\u5b66\u5927\u5b66\u9662\u7406\u5b66\u7814\u7a76\u79d1\u9644\u5c5e\u5730\u78c1\u6c17\u4e16\u754c\u8cc7\u6599\u89e3\u6790\u30bb\u30f3\u30bf\u30fc"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://wdc.kugi.kyoto-u.ac.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["iyemori@kugi.kyoto-u.ac.jp"]}, {"institutionName": "Operating Geomagnetic Observatories and Institutes", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://wdc.kugi.kyoto-u.ac.jp/wdc/obslink.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["none"] http://wdc.kugi.kyoto-u.ac.jp/wdc/Sec3.html [] unknown unknown ["WDS"] [] {} WDC geomagnetism is part of the ICSU World Data System (WDS) 2014-02-13 2021-11-17 +r3d100010609 World Data Center for Geoinformatics and Sustainable Development eng [{"additionalName": "WDC - Geoinformatics and Sustainable Development", "additionalNameLanguage": "eng"}, {"additionalName": "WDC-Ukraine", "additionalNameLanguage": "eng"}] http://wdc.org.ua/ [] ["mail@wdc.org.ua"] Among the basic tasks of WDC-Ukraine there is collection, handling and storage of science data and giving access to it for usage both in science research and study process. That include contemporary tutoring technologies and resources of e-libraries and archives; remote access to own information resources for the wide circle of scientists from the universities and science institutions of Ukraine eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng", "ukr"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://wdc.org.ua/en/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["seismology", "solar physics", "terrestrial physics"] [{"institutionName": "Institute for Applied Systems Analysis", "institutionAdditionalName": ["IASA", "NTUU KPI", "\u0406\u041f\u0421\u0410", "\u0406\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u043f\u0440\u0438\u043a\u043b\u0430\u0434\u043d\u043e\u0433\u043e \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0456\u0437\u0443"], "institutionCountry": "UKR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://kpi.ua/en/node/7349", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Technical University of Ukraine, Kyiv Polytechnic Institute", "institutionAdditionalName": ["NTUU KPI", "\u041d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0442\u0435\u0445\u043d\u0456\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0423\u043a\u0440\u0430\u0457\u043d\u0438 \"\u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0438\u0439 \u043f\u043e\u043b\u0456\u0442\u0435\u0445\u043d\u0456\u0447\u043d\u0438\u0439 \u0456\u043d\u0441\u0442\u0438\u0442\u0443\u0442\""], "institutionCountry": "UKR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://inter.kpi.ua/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mail@wdc.org.ua"]}, {"institutionName": "Russian Foundation for Basic Research", "institutionAdditionalName": ["RFBR", "\u0420\u0424\u0424\u0418", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u043e\u043d\u0434 \u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.rfbr.ru/rffi/eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rfbr.ru/rffi/eng/contacts"]}, {"institutionName": "State Fund for Fundamental Research of Ukraine", "institutionAdditionalName": ["SFFR", "\u0414\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0443 \u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0445 \u0434\u043e\u0441\u043b\u0456\u0434\u0436\u0435\u043d\u044c"], "institutionCountry": "UKR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dffd.gov.ua/index.php?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dffd.gov.ua/index.php?option=com_gmapfp&view=gmapfp&Itemid=1810&lang=en"]}, {"institutionName": "World Data Centers in Russia and Ukraine", "institutionAdditionalName": ["WDC", "\u041c\u0438\u0440\u043e\u0432\u044b\u0435 \u0446\u0435\u043d\u0442\u0440\u044b \u0434\u0430\u043d\u043d\u044b\u0445 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0423\u043a\u0440\u0430\u0438\u043d\u044b"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wdcb.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sep@wdcb.ru"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes ["WDS"] [] {} In 2008 World Data Centers in Russia and Ukraine have united in the Russian-Ukrainian segment of the World Data System. WDCs provide a free access of scientific organizations and scientists to data of planetary geophysics and sustainable development. Details of the WDCs in Russia and Ukraine are given on their Web-sites. WDC in Ukraine is created in the structure of the Institute for Applied Systems Analysis and the National Technical University of Ukraine "Kiev Polytechnical Institute" in 2006. This WDC is situated in Kiev 2013-09-04 2018-12-14 +r3d100010610 ALEXA eng [{"additionalName": "ALEXA-A", "additionalNameLanguage": "eng"}, {"additionalName": "ALEXA-Seq", "additionalNameLanguage": "eng"}, {"additionalName": "Alternative expression analysis", "additionalNameLanguage": "eng"}] http://www.alexaplatform.org/ ["OMICS_01328", "RRID:SCR_006700"] ["http://www.alexaplatform.org/contact.htm", "malachig@bcgsc.ca", "mgriffit@genome.wustl.edu"] ALEXA is a microarray design platform for 'alternative expression analysis'. This platform facilitates the design of expression arrays for analysis of mRNA isoforms generated from a single locus by the use of alternative transcription initiation, splicing and polyadenylation sites. We use the term 'ALEXA' to describe a collection of novel genomic methods for 'alternative expression' analysis. 'Alternative expression' refers to the identification and quantification of alternative mRNA transcripts produced by alternative transcript initiation, alternative splicing and alternative polyadenylation. This website provides supplementary materials, source code and other downloads for recent publications describing our studies of alternative expression (AE). Most recently we have developed a method, 'ALEXA-Seq' and associated resources for alternative expression analysis by massively parallel RNA sequencing. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.alexaplatform.org/index.htm [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNA sequencing", "ape", "array design", "cancer", "dog", "fruit fly", "gallus gallus", "human", "mRNA", "mouse", "transcript", "worm", "yeast", "zebrafish"] [{"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://bccancerfoundation.com/contact-us"]}, {"institutionName": "BC Cancer Research Centre, Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["GSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/data/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.alexaplatform.org/contact.htm"]}, {"institutionName": "Canadian Cancer Society, Research Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cancer.ca/research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cancer.ca/en/research/about-us/contact-us/?region=on"]}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomebc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomebc.ca/connect/"]}, {"institutionName": "Michael Smith Foundation for Health Research", "institutionAdditionalName": ["MSFHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msfhr.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.msfhr.org/contact"]}, {"institutionName": "Natural Sciences and Engineering Research Council", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences natruelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/ContactDirectory-RepertoiredeContact_eng.asp"]}, {"institutionName": "The Terry Fox Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.terryfox.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.terryfox.org/contact-us/"]}, {"institutionName": "University of British Columbia, Faculty of Graduate Studies", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.grad.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ubc.ca/about/contact.html?utm_campaign=UBC+CLF&utm_medium=CLF+Global+Footer&utm_source=https%3A%2F%2Fwww.grad.ubc.ca%2F"]}, {"institutionName": "University of British Columbia, Faculty of Medicine", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.med.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.med.ubc.ca/about/contact/"]}] [{"policyName": "Data Release Policy: Open Access", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/gpl.txt"}] restricted [{"dataUploadLicenseName": "ALEXA User Manual", "dataUploadLicenseURL": "http://www.alexaplatform.org/alexa_arrays/data/ALEXA_User_Manual.pdf"}] ["MySQL"] yes {"api": "ftp://ftp03.bcgsc.ca/public/ALEXA/", "apiType": "FTP"} ["none"] http://www.alexaplatform.org/acknowledge.htm [] unknown yes [] [] {} ALEXA platform includes two parts: ALEXA-Arrays (ALEXA-A) and ALEXA-Sequences (ALEXA-Seq) 2014-02-18 2021-07-12 +r3d100010611 C. Elegans Gene Expression eng [] http://www.bcgsc.ca/data/c-elegans-aak-2/aak-2 [] ["rroscoe@bcgsc.ca"] Using serial analysis of gene expression (SAGE) and microarrays, we are examining total mRNA populations in all developmental stages, both in whole worms and in specific cells and tissues. In addition, we are building promoter::GFP constructs to monitor gene expression in transgenic worms, focusing on C. elegans genes that have human orthologues. Also available are web-based PCR primer design tools, and access to information about our C. elegans Fosmid library. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.bcgsc.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["C.elegans aak-2", "c.elegans wild type", "genome", "worm"] [{"institutionName": "BC C. elegans Gene Expression Consortium", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://elegans.bcgsc.ca/home/ge_consortium.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["crebecca@interchange.ubc.ca"]}, {"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bccancerfoundation.com/contact-us"]}, {"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["GSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bcgsc.ca/about/contacts"]}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomebc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomebc.ca/connect/"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about-us/contact-us"]}] [{"policyName": "Data Release Policy: Open Access", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] closed [] ["unknown"] {} ["none"] http://www.bcgsc.ca/data/data-release-open-access [] unknown unknown [] [] {} see also: http://elegans.bcgsc.ca/home/ (C. elegans Gene Knockout Project / Serial Analysis of Gene Expression / Microarray Data) 2014-02-19 2021-08-25 +r3d100010612 ChIP-Seq Transcription Factor Data eng [{"additionalName": "ChIP-Seq", "additionalNameLanguage": "eng"}] http://www.bcgsc.ca/data/chipseq/chip-seq-data [] ["http://www.bcgsc.ca/about/contacts", "info@bcgsc.ca"] We developed a method, ChIP-sequencing (ChIP-seq), combining chromatin immunoprecipitation (ChIP) and massively parallel sequencing to identify mammalian DNA sequences bound by transcription factors in vivo. We used ChIP-seq to map STAT1 targets in interferon-gamma (IFN-gamma)-stimulated and unstimulated human HeLa S3 cells, and compared the method's performance to ChIP-PCR and to ChIP-chip for four chromosomes.For both Chromatin- immunoprecipation Transcription Factors and Histone modifications. Sequence files and the associated probability files are also provided. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.bcgsc.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "STAT1", "chromatin immunoprecipitation", "human", "interferon", "mammals", "mouse liver", "sequencing"] [{"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BC Cancer Agency, Research Centre", "BCGSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bcgsc.ca/about/contacts", "http://www.bcgsc.ca/author/sjones"]}] [{"policyName": "Data Release Policy: Open Access", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bcgsc.ca/data/data-release-open-access"}] closed [] ["unknown"] {} ["none"] http://www.bcgsc.ca/data/data-release-open-access [] unknown unknown [] [] {} Data retrieval by using UCSC Genome Browser 2014-02-20 2021-07-12 +r3d100010613 Physical mapping data at Canada's Michael Smith Genome Sciences Centre - Data eng [{"additionalName": "BCGSC", "additionalNameLanguage": "eng"}, {"additionalName": "FPC Database mapping files", "additionalNameLanguage": "eng"}, {"additionalName": "Physical Mapping Data Access", "additionalNameLanguage": "eng"}] http://www.bcgsc.ca/data [] ["http://www.bcgsc.ca/about/contacts", "info@bcgsc.ca"] FPC Mapping data files from species that have been fingerprinted at Canada's Michael Smith Genome Sciences Centre (BCGSC). eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.bcgsc.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["BAC fingerprint", "C. Neoformans", "Puccinia graminis", "atlantic salmon", "bovine", "dog", "genome", "human hydatidiform mole", "monodelphis domestica", "mouse", "oyster", "poplar", "rat", "rhesus", "sea urchin", "sequencing", "stickleback"] [{"institutionName": "BC Cancer Agency, Research Centre, Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BCGSC", "Canada's Michael Smith Genome Sciences Centre"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bcgsc.ca/about/contacts"]}, {"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bccancerfoundation.com/contact-us"]}] [{"policyName": "Data Release Policy", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bcgsc.ca/data/data-release-open-access"}] closed [] ["other", "other"] {"api": "ftp://ftp.bcgsc.bc.ca/pub/rat_mapping", "apiType": "FTP"} ["none"] http://www.bcgsc.ca/data/data-release-open-access [] unknown unknown [] [] {} 2014-02-20 2021-07-12 +r3d100010614 Follicular Lymphoma Genome Data at Canada's Michael Smith Genome Sciences Centre (BCGSC) eng [] http://www.bcgsc.ca/data/hra-follicular-lymphoma [] ["info@bcgsc.ca"] Mapping, copy number analysis, sequence and gene expression data generated by the High Resolution Analysis of Follicular Lymphoma Genomes project. The data will be available for 24 patients with follicular lymphoma. All data will be made as widely and freely available as possible while safeguarding the privacy of participants, and protecting confidential and proprietary data.The data from this project will be submitted to public genomic data sources. These sources will be listed on this web site as the data becomes available in these external data sources. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Fingerprinted Contigs(FPC)", "genome", "human", "medical study data"] [{"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BC Cancer Agency, Research Centre", "BCGSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bcgsc.ca/about/contacts", "http://www.bcgsc.ca/author/adrobnies"]}, {"institutionName": "High Resolution Analysis of Follicular Lymphoma Genomes Project", "institutionAdditionalName": ["BCGSC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/project/high-resolution-analysis-of-follicular-lymphoma-genomes", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jschein@bcgsc.ca"]}] [{"policyName": "Data Release Policy", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bcgsc.ca/data/data-release-open-access"}] restricted [] ["unknown"] {} ["none"] http://www.bcgsc.ca/data/data-release-open-access [] unknown unknown [] [] {} Follicular lymphoma (FL), the most common type of lymphoma, is a cancer of the cells of the immune system. Follicular lymphoma is associated with a specific genome rearrangement where parts of chromosomes 14 and 18 have exchanged. This rearrangement is an initiating event for FL but insufficient without additional mutation events for cancer development. Furthermore, there may be more genome rearrangements to progress from FL to a more aggressive form of the disease, diffuse large B-cell lymphoma. To understand the relationship between rearrangements and disease, this project will identify rearrangements in the FL genome and then analyze the rearrangements to determine their effect on gene structure. Because this is one of the first in depth genome profiling of human cancers, recurrent genomic rearrangements will advance knowledge not only about lymphoma but about cancer in general. Understanding the dysfunctions in lymphoma will permit researchers to develop new diagnostic and prognostic markers and possibly new therapies. 2014-02-20 2021-08-25 +r3d100010615 Comparative Mammalian Brain Collections eng [{"additionalName": "brainmuseum", "additionalNameLanguage": "eng"}] http://www.brainmuseum.org/ ["RRID:SCR_007273", "RRID:nif-0000-00013"] ["usarmy.detrick.medcom-usamrmc.list.medical-museum@mail.mil"] The Comparative Mammalian Brain Collection web site provides site visitors with images and information from several of the world's largest collections of well-preserved, sectioned and stained brains of mammals, principally those at the University of Wisconsin-Madison and Michigan State University. These collections are currently being consolidated into a central repository at the National Museum of Health and Medicine at the Armed Forces Institute of Pathology in Washington, DC. The collections have been a century in the making and represent the efforts of dozens of skilled scientists. Their colocation at a single facility will represent a national and international center for comparative brain study of the actual specimens. The centralized web site offers many kinds of access to the information contained in the specimens, for use by students and researchers worldwide. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.brainmuseum.org/nmhm/access.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal fibre", "brain museum", "cell bodies", "cranial", "manatee", "nervous system"] [{"institutionName": "Michigan State University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.msu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://admissions.msu.edu/contact.asp"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Museum of Health and Medicine", "institutionAdditionalName": ["NMHM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.medicalmuseum.mil/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fobbs@afip.osd.mil", "franklin.damann@afip.osd.mil", "https://www.medicalmuseum.mil/index.cfm?p=connect.index"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Wisconsin", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wisc.edu/contact-us/"]}] [{"policyName": "Research Collections Access Policy", "policyURL": "http://www.brainmuseum.org/nmhm/access.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.msu.edu/~brains/copyright.html"}] closed [] ["unknown"] {"api": "http://neurosciencelibrary.org/nmhm/", "apiType": "FTP"} ["none"] http://www.brainmuseum.org/ [] unknown unknown [] [] {} Comparative Mammalian Brain Collections is associated with 'Brain biodiversity Bank' at Michigan State University https://www.msu.edu/~brains/ 2014-02-20 2021-08-25 +r3d100010616 BRENDA deu [{"additionalName": "BRaunschweig ENzyme DAtabase", "additionalNameLanguage": "deu"}, {"additionalName": "the comprehensive enzyme information system", "additionalNameLanguage": "eng"}] https://www.brenda-enzymes.info/ ["FAIRsharing_doi:10.25504/FAIRsharing.etp533", "OMICS_02681", "RRID:SCR_002997", "RRID:nif-0000-30222"] ["https://support.brenda-enzymes.org/open.php?topicId=1", "https://www.brenda-enzymes.org/contact.php"] BRENDA is the main collection of enzyme functional data available to the scientific community worldwide. The enzymes are classified according to the Enzyme Commission list of enzymes. It is available free of charge for via the internet (http://www.brenda-enzymes.org/) and as an in-house database for commercial users (requests to our distributor Biobase). The enzymes are classified according to the Enzyme Commission list of enzymes. Some 5000 "different" enzymes are covered. Frequently enzymes with very different properties are included under the same EC number. BRENDA includes biochemical and molecular information on classification, nomenclature, reaction, specificity, functional parameters, occurrence, enzyme structure, application, engineering, stability, disease, isolation, and preparation. The database also provides additional information on ligands, which function as natural or in vitro substrates/products, inhibitors, activating compounds, cofactors, bound metals, and other attributes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.brenda-enzymes.info/introduction.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["enzyme expression", "genome", "proteins", "sequence"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Nieders\u00e4chsisches Ministerium f\u00fcr Wissenschaft und Kultur", "institutionAdditionalName": ["MWK"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mwk.niedersachsen.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Braunschweig, Braunschweig Integrated Centre of Systems Biology, Department of Bioinformatics and Biochemistry, Institute for Biochemistry and Biotechnology", "institutionAdditionalName": ["TU Braunschweig, BRICS, BI-BC-BS"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tu-braunschweig.de/bbt/bioinfo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bioinfo@ tu-braunschweig.de", "bioinfo@tu-braunschweig.de", "d.schomburg@-tu-bs.de", "https://www.tu-braunschweig.de/bbt/bioinfo/contact"]}] [{"policyName": "LICENSE AGREEMENT FOR USERS OF BRENDA", "policyURL": "https://www.brenda-enzymes.org/copy.php"}, {"policyName": "Leitlinie zum Umgang mit Forschungsdaten an der Technischen Universit\u00e4t Braunschweig", "policyURL": "https://ub.tu-braunschweig.de/publizieren_openaccess/forschungsdaten/forschungsdatenleitlinie.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.brenda-enzymes.org/copy.php"}] restricted [{"dataUploadLicenseName": "BRENDA input", "dataUploadLicenseURL": "https://www.brenda-enzymes.info/php/authorinput.php4"}] ["unknown"] {"api": "https://www.brenda-enzymes.org/soap.php", "apiType": "SOAP"} ["other"] https://www.brenda-enzymes.org/copy.php [] unknown yes [] [] {} 2014-02-20 2019-01-17 +r3d100010617 Candida Genome Database eng [{"additionalName": "CGD", "additionalNameLanguage": "eng"}] http://www.candidagenome.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.j7j53", "OMICS_03098", "RRID:SCR_002036", "RRID:nif-0000-02634"] ["candida-curator@lists.stanford.edu"] Candida Genome Database, a resource for genomic sequence data and gene and protein information for Candida albicans and related species. CGD is based on the Saccharomyces Genome Database. The Candida Genome Database (CGD) provides online access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans and related species. C. albicans is the best studied of the human fungal pathogens. It is a common commensal organism of healthy individuals, but can cause debilitating mucosal infections and life-threatening systemic infections, especially in immunocompromised patients. C. albicans also serves as a model organism for the study of other fungal pathogens. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.candidagenome.org/AboutContents.shtml [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["C. albicans", "C. dubliniensis", "C. glabrata", "C. parapsilosis", "genome", "sequence analysis", "yeast"] [{"institutionName": "National Institutes of Health, National Institute of Dental & Craniofacial Research", "institutionAdditionalName": ["NIDCR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nidcr.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nidcr.nih.gov/about-us/contact-nidcr"]}, {"institutionName": "Stanford University, School of Medicine, Department of Genetics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://med.stanford.edu/genetics.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://med.stanford.edu/about/contacts.html"]}] [{"policyName": "Gene Nomenclature Guide", "policyURL": "http://www.candidagenome.org/Nomenclature.shtml"}, {"policyName": "Getting Started with CGD", "policyURL": "http://www.candidagenome.org/help/GettingStarted.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.candidagenome.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.candidagenome.org/cgi-bin/reference/refsWithData.pl"}] restricted [{"dataUploadLicenseName": "Submit contents", "dataUploadLicenseURL": "http://www.candidagenome.org/SubmitContents.shtml"}] ["unknown"] yes {} ["none"] http://www.candidagenome.org/cgi-bin/search/quickSearch?query=citation [] yes yes [] [] {} Candida Genome Database is covered by Thomson Reuters Data Citation Index. 2014-02-21 2021-09-03 +r3d100010618 DTU Bioinformatics eng [{"additionalName": "CBS (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Center for Biological Sequence Analysis (formerly)", "additionalNameLanguage": "eng"}] http://www.bioinformatics.dtu.dk ["RRID:SCR_003590", "RRID:nlx_12329"] ["http://www.bioinformatics.dtu.dk/service/contact"] CBS offers Comprehensive public databases of DNA- and protein sequences, macromolecular structure, g ene and protein expression levels, pathway organization and cell signalling, have been established to optimise scientific exploitation of the explosion of data within biology. Unlike many other groups in the field of biomolecular informatics, Center for Biological Sequence Analysis directs its research primarily towards topics related to the elucidation of the functional aspects of complex biological mechanisms. Among contemporary bioinformatics concerns are reliable computational interpretation of a wide range of experimental data, and the detailed understanding of the molecular apparatus behind cellular mechanisms of sequence information. By exploiting available experimental data and evidence in the design of algorithms, sequence correlations and other features of biological significance can be inferred. In addition to the computational research the center also has experimental efforts in gene expression analysis using DNA chips and data generation in relation to the physical and structural properties of DNA. In the last decade, the Center for Biological Sequence Analysis has produced a large number of computational methods, which are offered to others via WWW servers. eng ["institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.bioinformatics.dtu.dk/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cancer", "cellular signal", "genomics", "metagenomics", "microbial genomics", "novel genes", "supercomputer"] [{"institutionName": "Danish Council for Independent Research", "institutionAdditionalName": ["DFF", "Det Frie Forskningsrad"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ufm.dk/en/research-and-innovation/councils-and-commissions/independent-research-fund-Denmark", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ufm.dk/en/research-and-innovation/councils-and-commissions/independent-research-fund-Denmark#"]}, {"institutionName": "Danish e-infrastructure Cooperation", "institutionAdditionalName": ["DeIC"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.deic.dk/en/node/110", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Novo Nordisk Fonden", "institutionAdditionalName": ["Novo Nordisk Foundation"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.novonordiskfonden.dk/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technical University of Denmark, Department of Bio and Health Informatics, DTU Bioinformatics", "institutionAdditionalName": ["DTU Bioinformatics"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bioinformatics.dtu.dk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@bioinformatics.dtu.dk"]}, {"institutionName": "Villum Kann Rasmussen Foundation", "institutionAdditionalName": ["Velux Fonden", "Villum Fonden"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://veluxfoundations.dk/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publishing at DTU", "policyURL": "http://www.bibliotek.dtu.dk/english/servicemenu/publish"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bibliotek.dtu.dk/english/servicemenu/publish/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.dtic.dtu.dk/english/servicemenu/publish/openaccess"}] closed [] ["unknown"] {"api": "http://www.cbs.dtu.dk/ftp/", "apiType": "FTP"} ["other"] http://www.cbs.dtu.dk/databases/GlycateBase-1.0/index.php [] unknown yes [] [] {} 2014-02-21 2018-12-14 +r3d100010619 cisRED eng [{"additionalName": "Databases of genome-wide regulatory module and element predictions", "additionalNameLanguage": "eng"}, {"additionalName": "cis - Regulatory element database", "additionalNameLanguage": "eng"}] http://www.cisred.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.rwd4wq", "OMICS_01857", "RRID:SCR_002098", "RRID:nif-0000-02665"] ["cisred@bcgsc.ca"] The cisRED database holds conserved sequence motifs identified by genome scale motif discovery, similarity, clustering, co-occurrence and coexpression calculations. Sequence inputs include low-coverage genome sequence data and ENCODE data. A Nucleic Acids Research article describes the system architecture eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["C. Elegans", "DNA", "SAGE", "human", "mouse", "rat"] [{"institutionName": "BC Cancer Agency, Research Centre, Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BCGSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cisred@bcgsc.ca"]}, {"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bccancerfoundation.com/contact-us"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about-us/contact-us"]}, {"institutionName": "Michael Smith Foundation for Health Research", "institutionAdditionalName": ["MSFHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msfhr.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.msfhr.org/contact"]}] [{"policyName": "Data Release Policy: Open Access", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bcgsc.ca/data/data-release-open-access"}] closed [] ["MySQL"] {} ["none"] https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1347438/citedby/ [] unknown unknown [] [] {} 2014-02-20 2019-01-17 +r3d100010620 Apollo eng [{"additionalName": "DSpace@Cambridge", "additionalNameLanguage": "eng"}] https://www.repository.cam.ac.uk/ [] ["support@repository.cam.ac.uk"] Apollo (previously DSpace@Cambridge) is the University of Cambridge’s Institutional Repository (IR), preserving and providing access to content created by members of the University. The repository stores a range of content and provides different levels of access, but its primary focus is on providing open access to the University’s research publications. eng ["institutional"] {"size": "https://www.repository.cam.ac.uk/browse?type=type", "updatedp": "2021-03-02"} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://osc.cam.ac.uk/repository [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cancer", "computer", "cultures", "economics", "history", "literature", "multidisciplinary", "social science", "zoology"] [{"institutionName": "University of Cambridge, Cambridge University Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lib.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@repository.cam.ac.uk"]}, {"institutionName": "University of Cambridge, University Information Services", "institutionAdditionalName": ["UIS"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uis.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service-desk@uis.cam.ac.uk"]}] [{"policyName": "DOI Policy", "policyURL": "https://doi.org/10.17863/CAM.10214"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://www.lib.cam.ac.uk/files/pol_cul_digitalpreservationpolicy.pdf"}, {"policyName": "Open Access Policy", "policyURL": "https://www.openaccess.cam.ac.uk/cambridge-open-access-policy"}, {"policyName": "Repository Terms of Use", "policyURL": "https://osc.cam.ac.uk/repository/repository-terms-use"}, {"policyName": "Research Data Policies", "policyURL": "https://www.data.cam.ac.uk/research-data-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/postgresql"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://osc.cam.ac.uk/repository/repository-terms-use"}] restricted [{"dataUploadLicenseName": "University of Cambridge Repository Deposit Licence Agreement", "dataUploadLicenseURL": "https://osc.cam.ac.uk/files/deposit_licence_agreement_1.pdf"}] ["DSpace"] yes {"api": "https://www.repository.cam.ac.uk/oai/", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://www.repository.cam.ac.uk/handle/1810/202016 ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.repository.cam.ac.uk/feed/rss_2.0/site", "syndicationType": "RSS"} It is also indexed in CORE aggregator (https://core.ac.uk/). 2014-02-24 2021-09-03 +r3d100010621 CDC - Climate Data Center eng [{"additionalName": "Deutscher Wetterdienst - DWD", "additionalNameLanguage": "eng"}] https://cdc.dwd.de/catalogue/srv/en/main.home [] ["https://cdc.dwd.de/catalogue/srv/en/feedback"] The CDC Data Catalogue describes the Climate Data of the DWD and provides access to data, descriptions and access methods. Climate Data refers to observations, statistical indices and spatial analyses. CDC comprises Climate Data for Germany, but also global Climate Data, which were collected and processed in the framework of international co-operation. The CDC Data Catalogue is under construction and not yet complete. The purposes of the CDC Data Catalogue are: to provide uniform access to climate data centres and climate datasets of the DWD to describe the climate data according to international metadata standards to make the catalogue information available on the Internet to support the search for climate data to facilitate the access to climate data and climate data descriptions eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.dwd.de/DE/leistungen/cdcftp/cdcftp.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agroclimatology", "atmospheric chemistry", "climate", "human biometeorology", "hydroclimatology", "marine climatology", "medical climatology", "meteorology", "ozone", "phenology", "radioactivity monitoring", "technical climatology", "weather"] [{"institutionName": "Bundesministerium f\u00fcr Verkehr und digitale Infrastruktur", "institutionAdditionalName": ["BMVI"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmvi.de/DE/Home/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutscher Wetterdienst", "institutionAdditionalName": ["DWD"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dwd.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cdc.dwd.de/catalogue/srv/de/feedback", "info@dwd.de"]}] [{"policyName": "Gesetz \u00fcber den Deutschen Wetterdienst", "policyURL": "https://www.gesetze-im-internet.de/dwdg/BJNR287100998.html"}, {"policyName": "Qualit\u00e4tsmanagement", "policyURL": "https://www.dwd.de/DE/service/qm/qm_node.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://cdc.dwd.de/catalogue/srv/de/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cdc.dwd.de/catalogue/srv/en/dataProtection"}] restricted [] ["unknown"] {"api": "ftp://ftp.dwd.de/pub/DWD/", "apiType": "FTP"} ["DOI"] ftp://ftp-anon.dwd.de/pub/data/gpcc/html/gpcc_monitoring_v4_doi_download.html [] unknown yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://cdc.dwd.de/catalogue/srv/de/rss.latest?georss=simplepoint", "syndicationType": "RSS"} Various web applications of the Deutscher Wetterdienst contain extensive information (metadata) about the climate data available and facilitate access to the data sets. WebWerdis(Web-based Weather Request and Distribution System) provides for substantial metadata and allows access to many of the freely available data without the necessity of registration. WebWerdis is aimed at users with some prior subject knowledge, in particular from research and educational institutions and public authorities. Proper registration with WebWerdis, however, allows full access to the wide variety of contents and manifold possibilities of use offered. Even more comprehensive metadata are contained in the Climate Catalogue of the DWD's Climate Data Center (CDC). This data catalogue is currently still being extended and will in the end contain nationally and internationally standardised metadata (ISO 19115 and ISO 19139) for all data available at the DWD. Direct access will be possible in many cases. The Global Data Set (GDS) comprises not only freely available data and products relating to current weather and weather forecasts but also free climate data. The data and products are usually presented in a form, which is used for their exchange within and among the national meteorological services. Access is possible via ftp (file transfer protocol). The use of GDS is free of charge, but requires cost-free registration. 2014-02-25 2018-12-14 +r3d100010622 Canadas National Aquatic Biological Specimen Bank and Database eng [{"additionalName": "BNSBA", "additionalNameLanguage": "fra"}, {"additionalName": "Base de donn\u00e9es et Banque nationale de sp\u00e9cimens biologiques aquatiques du Canada", "additionalNameLanguage": "fra"}, {"additionalName": "NABSB", "additionalNameLanguage": "eng"}] http://www.ec.gc.ca/inre-nwri/default.asp?lang=En&n=D488F7DE-1 [] ["https://www.canada.ca/en/environment-climate-change/corporate/contact.html"] >>> ----This page has been archived on the Web--- <<< Environment and Climate Change Canada collects biological samples from a number of lakes and rivers across Canada in support of federally mandated programs. Environment and Climate Change Canada has collected fish and invertebrates from the Great Lakes since 1977 in support of the Great Lakes Water Quality Agreement (GLWQA). More recently, samples have been collected nationally to support Canada's Chemicals Management Plan and the Clean Air Regulatory Agenda. Environment and Climate Change Canada also maintains a specimen bank of frozen tissues which is a requirement of the GLWQA and is an integral part of departmental monitoring and research programs. The National Aquatic Biological Specimen Bank (NABSB) is located in a dedicated facility at the Canada Centre for Inland Waters in Burlington, Ontario. The NABSB holds more than 37,000 samples of fish and invertebrates collected over the last 30+ years of environmental monitoring in Canada. Research conducted using samples from the NABSB has produced more than 60 scientific publications, reports and book chapters eng ["disciplinary", "institutional"] {"size": "52000 samples, 50 species", "updatedp": "2014-02-24"} 1977 2012 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30501 Biological and Biomimetic Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ec.gc.ca/default.asp?lang=En&n=BD3CE17D-1 [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["alewife", "aquatic invertebrates", "fish", "lake trout", "lake whitefish", "plankton", "rainbow smelt", "samples", "slimly sculpin", "walleye"] [{"institutionName": "Canada Center for Inland Waters", "institutionAdditionalName": ["CCIW"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ec.gc.ca/scitech/default.asp?lang=En&n=0B9A6436-1#nwri", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NABSB@ec.gc.ca"]}, {"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ec.gc.ca/default.asp?lang=En&n=FD9B0E51-1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "National Water Research Institute", "institutionAdditionalName": ["INRE", "Institut National de Recherche sur les Eaux", "NWRI"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ec.gc.ca/inre-nwri/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/transparency/terms.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://canada.ca/en/transparency/terms.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} Archived content: Information identified as archived on the Web is for reference, research or recordkeeping purposes. It has not been altered or updated after the date of archiving. Web pages that are archived on the Web are not subject to the Government of Canada Web Standards. As per the Communications Policy of the Government of Canada, you can request alternate formats on the Contact Us page. All information related to the NABSB is maintained within a secured relational database. All specimens received and/or collected are registered and assigned with successive and unique identification numbers. The database maintains all biological data (length, age, etc.) associated with each specimen number as well as data with regard to location, collection methods, storage and the results of all chemical analyses that have been performed on the specimen. We are continually working to improve the database to increase its functionality and access to the data within. 2014-02-24 2019-11-13 +r3d100010623 National Pollutant Release Inventory eng [{"additionalName": "Inventaire national des rejets de pollutants", "additionalNameLanguage": "fra"}, {"additionalName": "NPRI", "additionalNameLanguage": "eng"}, {"additionalName": "Surveillance de la pollution au Canada", "additionalNameLanguage": "fra"}, {"additionalName": "Tracking Pollution in Canada", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/services/environment/pollution-waste-management/national-pollutant-release-inventory.html ["biodbcore-001476"] ["ec.inrp-npri.ec@canada.ca"] The National Pollutant Release Inventory (NPRI) is Canada's legislated, publicly accessible inventory of pollutant releases (to air, water and land), disposals and transfers for recycling. It is a key resource for: identifying pollution prevention priorities; supporting the assessment and risk management of chemicals, and air quality modelling; helping develop targeted regulations for reducing releases of toxic substances and air pollutants; encouraging actions to reduce the release of pollutants into the environment; and improving public understanding. The NPRI comprises: Information reported by facilities and published by Environment and Climate Change Canada under the authority of Sections 46 – 50 of the Canadian Environmental Protection Act, 1999 (CEPA 1999); and Comprehensive emission summaries and trends for key air pollutants, based on facility-reported data and emission estimates for other sources such as motor vehicles, residential heating, forest fires and agriculture. For the latest reporting year, 7,708 facilities reported to the NPRI on more than 300 listed substances. Comprehensive air pollutant emission summaries and trends were compiled by Environment and Climate Change Canada for criteria air contaminants (the main pollutants contributing to smog, acid rain and/or poor air quality), selected heavy metals and persistent organic pollutants. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1993 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "40302 Technical Chemistry", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/using-interpreting-data.html [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["acidic drainage", "climate change", "disposal", "facility data", "heavy metals", "key air pollutants", "mapping", "persistent organic pollutants", "pollutions", "substances", "tailings", "waste rock"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}] [{"policyName": "Canadian Environmental Protection Act", "policyURL": "https://www.canada.ca/en/environment-climate-change/services/canadian-environmental-protection-act-registry/related-documents.html"}, {"policyName": "Communications Policy of the Government of Canada", "policyURL": "http://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id=12316"}, {"policyName": "Data Quality Management Framework", "policyURL": "https://www.canada.ca/en/environment-climate-change/services/national-pollutant-release-inventory/data-quality/management-activities.html"}, {"policyName": "Open Data 101", "policyURL": "https://open.canada.ca/en/open-data-principles"}, {"policyName": "Terms and Condition", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/transparency/terms.html"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Good overview: https://static1.squarespace.com/static/50ba2be5e4b012760add2bd3/t/5aec8ff9575d1fbf4a6e2315/1525452796613/20180502_NPRI_for_AWMA-OVC.PDF 2014-02-24 2021-11-17 +r3d100010624 Berkeley Drosophila Genome Project eng [{"additionalName": "BDGP", "additionalNameLanguage": "eng"}] http://www.fruitfly.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.kap6gp", "OMICS_22557", "RRID:SCR_013094", "RRID:nif-0000-02867"] ["http://www.fruitfly.org/about/contacts.html"] The goals of the Drosophila Genome Center are to finish the sequence of the euchromatic genome of Drosophila melanogaster to high quality and to generate and maintain biological annotations of this sequence. In addition to genomic sequencing, the BDGP is 1) producing gene disruptions using P element-mediated mutagenesis on a scale unprecedented in metazoans; 2) characterizing the sequence and expression of cDNAs; and 3) developing informatics tools that support the experimental process, identify features of DNA sequence, and allow us to present up-to-date information about the annotated sequence to the research community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.fruitfly.org/about/index.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["D.Melanogaster Release 5 Genome", "Drosophila Gene Collection", "EST Sequencing", "Expression Pattern", "Gene Disruption Project", "SNP map", "Universal Proteomics Resource", "modENCODE"] [{"institutionName": "Baylor College of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bcm.edu/contact-us"]}, {"institutionName": "Carnegie Institution of Washington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://carnegiescience.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Drosophila Genome Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.fruitfly.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bdgp@fruitfly.org", "http://www.fruitfly.org/about/contacts.html"]}, {"institutionName": "Howard Hughes Medical Institute", "institutionAdditionalName": ["HHMI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhmi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhmi.org/contact-us"]}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley LAB"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10005049/questions-and-feedback/"]}, {"institutionName": "United States Department of Energy", "institutionAdditionalName": ["Energy.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "University of California, Berkeley, Department of Molecular and Cell Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mcb.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://mcb.berkeley.edu/about-the-department/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/copyleft/fdl.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://insitu.fruitfly.org/cgi-bin/ex/insitu.pl"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.fruitfly.org/pub/download", "apiType": "FTP"} ["none"] http://www.fruitfly.org/about/citations.html [] unknown unknown [] [] {} A new website is under construction: http://insitu.fruitfly.org/cgi-bin/ex/insitu.pl , the newer data (post Release 2) will appear only on the new website; The Berkeley Drosophila Genome Project (BDGP) is a consortium of the Drosophila Genome Center; Part of the BDGP Informatics Group is a member of the FlyBase consortium. 2014-02-25 2019-01-17 +r3d100010625 ECCAD - the GEIA database eng [{"additionalName": "Emissions of atmospheric Compounds & Compilation of Ancillary Data", "additionalNameLanguage": "eng"}, {"additionalName": "Global Emission Inventories Activity", "additionalNameLanguage": "eng"}] http://eccad.aeris-data.fr/ [] ["https://eccad.aeris-data.fr/contact-us-ask-questions/", "laurence.fleury@obs-mip.fr"] The main goal of the ECCAD project is to provide scientific and policy users with datasets of surface emissions of atmospheric compounds, and ancillary data, i.e. data required to estimate or quantify surface emissions. The supply of ancillary data - such as maps of population density, maps of fires spots, burnt areas, land cover - could help improve and encourage the development of new emissions datasets. ECCAD offers: Access to global and regional emission inventories and ancillary data, in a standardized format Quick visualization of emission and ancillary data Rationalization of the use of input data in algorithms or emission models Analysis and comparison of emissions datasets and ancillary data Tools for the evaluation of emissions and ancillary data ECCAD is a dynamical and interactive database, providing the most up to date datasets including data used within ongoing projects. Users are welcome to add their own datasets, or have their regional masks included in order to use ECCAD tools. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://eccad.aeris-data.fr/# [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CO map", "NOx", "ancillary data", "biofuel emissions", "biogenic emissions", "combustion rates", "global change", "greenhouse gases", "ozone", "pyrogenic emissions", "radiative emissions", "surface emissions"] [{"institutionName": "Agence de l'Environnement et de la Ma\u00eetrise de l'Energie", "institutionAdditionalName": ["ADEME", "French Environment and Energy Management Agency"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ademe.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre National d'\u00c9tudes Spatiales", "institutionAdditionalName": ["CNES"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ESPRI Data Centre", "institutionAdditionalName": ["Ensemble de Services Pour la Recherche \u00e0 l'IPSL data centre", "Ensemble de Services Pour la Recherche \u00e0 l'Institut Pierre Simon Laplace data centre", "Ether (formerly)"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cds-espri.ipsl.upmc.fr/etherTypo/index.php?id=1450&L=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cds-espri.ipsl.fr/etherTypo/index.php?id=1742&L=1"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/index.cfm?pg=contacts&origin=tools-contact"]}, {"institutionName": "Global Emissions InitiAtive", "institutionAdditionalName": ["GEIA", "Improving our understanding of air quality and climate"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geiacenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.geiacenter.org/contact"]}, {"institutionName": "Institut National des Sciences de l'Univers", "institutionAdditionalName": ["CNRS INSU"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.insu.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Integrated Land Ecosystem - Atmosphere Processes Study", "institutionAdditionalName": ["iLEAPS"], "institutionCountry": "FIN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ileaps.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Geosphere-Biosphere Programme", "institutionAdditionalName": ["IGBP"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Global Atmospheric Chemistry Project", "institutionAdditionalName": ["IGAC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.igacproject.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Monitoring atmospheric composition & climate", "institutionAdditionalName": ["macc"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ecmwf.int/sites/default/files/Monitoring_Atmospheric_Composition_and_Climate_MACC-II.pdf", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es - OMP, SErvice de DOnn\u00e9es de L'OMP", "institutionAdditionalName": ["SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/Services-communs-OMP/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.obs-mip.fr/presentation/acces", "laurence.fleury@obs-mip.fr"]}] [{"policyName": "ECCAD users's manual", "policyURL": "http://eccad.aeris-data.fr/Doc/User-Manual.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://eccad.sedoo.fr/eccad_extract_interface/JSF/page_project3.jsf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://eccad.sedoo.fr/eccad_extract_interface/doc/pdf/Eccad_users_manual.pdf"}] restricted [] ["unknown"] yes {"api": "http://eccad.aeris-data.fr/#", "apiType": "NetCDF"} ["none"] http://eccad.aeris-data.fr/Doc/User-Manual.pdf [] unknown unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} ECCAD is part of the Ether Pole, the French Center of Atmospheric Products and Service, developed under a partnership between CNES (Centre National d’Etudes Spatiales)and (Institut National des Sciences de l’Univers) to facilitate access and encourage exploitation of all data and expert knowledge in this field. The ECCAD database and web application developments have been undertaken by CNRS/INSU and financed thanks to CNES efforts since the beginning of the project, and to ADEME on a three year basis. The ECCAD project contributes to French projects (CNRS, CNES and ADEME), projects funded by the European Commission within the 7th framework programs (MACC-II, ACCENT-Plus, CITYZEN, PEGASOS, ACCESS, etc.), and to International programs such as IGAC/IGBP and iLEAPS/IGBP. ECCAD is also the emissions database of the Global Emissions InitiAtive (GEIA) 2014-02-25 2021-08-24 +r3d100010626 GeneDB eng [] https://www.genedb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.j7esqq", "MIR:00100139", "RRID:SCR_002774", "RRID:nif-0000-02880"] ["genedb-help@sanger.ac.uk"] >>>!!!<<< GeneDB will be taken offline 1st of August 2021, as none of the genomes are curated at Sanger anymore. All genomes on GeneDB can now be found on PlasmoDB, FungiDB, TriTrypDB and Wormbase Parasite. >>>!!!<<< eng ["disciplinary"] {"size": "more than 40 genomes", "updatedp": "2019-11-13"} 2012 2021-08-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Schistosoma mansoni", "apicomplexan protozoa", "bacteria", "chromosomes", "kinetoplastid protozoa", "parasite", "parasitic helminths", "pathogens", "transcripts", "viruses"] [{"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["genedb-help@sanger.ac.uk"]}] [{"policyName": "Data Release Policy", "policyURL": "https://www.genedb.org/data-release.html"}, {"policyName": "WTSI Human Data Security Policy", "policyURL": "https://www.sanger.ac.uk/legal/assets/wtsi-hgdsp-201510hpfinal.pdf"}, {"policyName": "Wellcome Trust Sanger Institute Data Sharing Policy", "policyURL": "https://www.sanger.ac.uk/sites/default/files/Jul2018/Data_Sharing_Policy_and_Guidelines_July_2018.pdf"}, {"policyName": "Wellcome Trust Sanger Institute IT Acceptable Use Policy", "policyURL": "https://www.sanger.ac.uk/legal/assets/wtsi_aup_v1-9.pdf"}, {"policyName": "Wellcome Trust Sanger Institute Software Policy", "policyURL": "https://github.com/wtsi-ic/wtsi-software-policy/releases/download/v7-20141218/wtsi-software-policy-v7-20141218.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.de.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.sanger.ac.uk/legal/"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.sanger.ac.uk/pub/pathogens/", "apiType": "FTP"} ["none"] https://www.genedb.org/data-release.html [] unknown yes [] [] {} description: The primary goal of GeneDB is to provide access to genome annotation for species that are undergoing manual curation and refinement. The site is updated monthly to reflect close to real-time changes in annotation, before they have been propagated across EuPathDB and other sites with whom we collaborate. Annotations reflect changes made in-house by scientists, as part of their research projects, and by dedicated curators based in-house and in collaborating organisations. 2014-02-27 2021-12-16 +r3d100010627 World Glacier Monitoring Service eng [{"additionalName": "WGMS", "additionalNameLanguage": "eng"}] https://wgms.ch/ ["doi:10.5904/wgms-fog-2018-11"] ["https://wgms.ch/contact_wgms/", "wgms@geo.uzh.ch"] The World Glacier Monitoring Service (WGMS) collects standardized observations on changes in mass, volume, area and length of glaciers with time (glacier fluctuations), as well as statistical information on the distribution of perennial surface ice in space (glacier inventories). Such glacier fluctuation and inventory data are high priority key variables in climate system monitoring; they form a basis for hydrological modelling with respect to possible effects of atmospheric warming, and provide fundamental information in glaciology, glacial geomorphology and quaternary geology. The highest information density is found for the Alps and Scandinavia, where long and uninterrupted records are available. As a contribution to the Global Terrestrial/Climate Observing System (GTOS, GCOS), the Division of Early Warning and Assessment and the Global Environment Outlook of UNEP, and the International Hydrological Programme of UNESCO, the WGMS collects and publishes worldwide standardized glacier data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wgms.ch/about_wgms/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmospheric warming", "climate change", "geomorphology", "glacier fluctuation", "glaciology", "ice", "snow"] [{"institutionName": "Global Terrestrial Network for Glaciers", "institutionAdditionalName": ["GTN-G"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.gtn-g.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gtn-g.org/contact/"]}, {"institutionName": "Swiss GCOS Office at the Federal Office of Meteorology and Climatology", "institutionAdditionalName": ["GCOS at MeteoSwiss"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.meteoschweiz.admin.ch/home/forschung-und-zusammenarbeit/internationale-zusammenarbeit/gcos.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Zurich, Department of Geography, World Glacier Monitoring Service", "institutionAdditionalName": ["Universit\u00e4t Z\u00fcrich, Geographisches Institut, World Glacier Monitoring Service", "WGMS"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geo.uzh.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["admin@geo.uzh.ch", "https://www.geo.uzh.ch/en/contact.html"]}, {"institutionName": "WGMS National correspondents", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wgms.ch/contact_wgms/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/08/World-Glacier-Monitoring-Service-Zurich.pdf"}, {"policyName": "Global Terrestrial Network for Glaciers Data policy", "policyURL": "https://www.gtn-g.ch/data_policy/"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [{"dataUploadLicenseName": "General guidelines for Data Submission", "dataUploadLicenseURL": "https://wgms.ch/data_submission/"}, {"dataUploadLicenseName": "Guidelines", "dataUploadLicenseURL": "https://wgms.ch/data_guidelines/"}] ["unknown"] {"api": "https://wgms.ch/data_exploration/", "apiType": "other"} ["DOI"] https://wgms.ch/data_databaseversions/ [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} World Glacier Monitoring Service is covered by Thomson Reuters Data Citation Index. WGMS is part of the ICSU World Data System(WDS). WGMS is in charge of the Global Terrestrial Network for Glaciers (GTN-G) within GTOS/GCOS. World Glacier Monitoring Service isunder the auspices of: ICSU (WDS), IUGG (IACS), UNEP, UNESCO, WMO 2014-02-13 2021-12-16 +r3d100010628 Global Earth Observation Grid eng [{"additionalName": "GeoGrid", "additionalNameLanguage": "eng"}] http://www.airc.aist.go.jp/gsrt/open-top.html [] [] The repository is no longer available. >>>!!!<<< 2019-12-03: no more access toGlobal Earth Observation Grid >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] ftp://ftp.earthobservations.org/TEMP/GEOGrid/SC09_GEO1.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ASTER", "MODIS", "TERRA", "VO", "earth observation", "grid technology", "map", "satellite"] [{"institutionName": "National Institute of Advanced Industrial Science and Technology", "institutionAdditionalName": ["AIST"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aist.go.jp/index_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aist.go.jp/aist_e/contact/index.html"]}] [{"policyName": "AIST Charter", "policyURL": "https://www.aist.go.jp/aist_e/about_aist/charter/charter.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.airc.aist.go.jp/gsrt/open-top.html"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} description: The "GEO Grid" project since 2005 is primarily aiming at providing an E-Science infrastructure for worldwide Earth Sciences community. In the community there are wide varieties of existing data sets including satellite imagery, geological data, and ground sensed data that each data owner insists own licensing policy. Also, there are so many of related projects that will be configured as virtual organizations (VOs) enabled by Grid technology. The GEO Grid is designed to integrate all the relevant data virtually, again enabled by Grid technology, and is accessible as a set of services. To dedicate the establishment of such a system, a lot of enthusiastic effort such as that seen in the effort of "The 10-Year Implementation Plan for GEOSS" has been devoted to creating IT platforms where people can access entire integrated data sets and use them to understand the earth more accurately than ever 2014-02-27 2019-12-03 +r3d100010629 GEOMIND eng [{"additionalName": "Geophyscial Multilingual Internet-Driven Information Service", "additionalNameLanguage": "eng"}] http://www.geomind.eu/ [] [] >>>!!!<<< The repository is no longer available. >>>!!!<<< 2018-08-29: no more access to Geophyscial Multilingual Internet-Driven Information Service >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["ces", "dan", "deu", "ell", "eng", "fra", "hun", "ita", "lit", "pol", "slk"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geomind.eu/portal/home.jsf [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["environment", "geodesy", "geoelectric", "geohazards", "geology", "gravity", "groundwater", "magnetism", "mineral resources", "miscellaneous", "radiometry", "seismology", "tomography"] [{"institutionName": "Affecto Lietuva, Informacin\u0117s technologijos", "institutionAdditionalName": ["ITG"], "institutionCountry": "LTU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.affecto.com/lt-lt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["j.belickas@it.lt"]}, {"institutionName": "CGS Europe, Institute of Geology and Mineral Exploration", "institutionAdditionalName": ["CGS", "IGME"], "institutionCountry": "GRC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.cgseurope.net/Default.aspx?section=477", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["matzem@thes.igme.gr"]}, {"institutionName": "Czech Geological Survey", "institutionAdditionalName": ["CGS", "\u010cesk\u00e1 geologick\u00e1 slu\u017eba"], "institutionCountry": "CZE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.geology.cz/extranet-eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hladik@gfb.cz"]}, {"institutionName": "Geological Survey of Denmark and Greenland", "institutionAdditionalName": ["De Nationale Geologiske Unders\u00f8gelser for Danmark og Gr\u00f8nland", "GEUS"], "institutionCountry": "DNK", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.geus.dk/UK/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bjh@geus.dk"]}, {"institutionName": "Geological and Geophysical Institute of Hungary", "institutionAdditionalName": ["ELGI", "E\u00f6tv\u00f6s Lor\u00e1nd Geophysical Institute", "Magyar F\u00f6ldtani \u00e9s Geofizikai Int\u00e9zet"], "institutionCountry": "HUN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.mfgi.hu/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["vert@elgi.hu"]}, {"institutionName": "Geophysical Exploration Company", "institutionAdditionalName": ["GCX", "GEOCOMPLEX"], "institutionCountry": "SVK", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.geocomplex.sk/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["geopax@geocomplex sk"]}, {"institutionName": "Golder Associates Srl", "institutionAdditionalName": ["GLD"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.golder.com/global/en/modules.php?name=Pages&sp_id=109", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["llocatelli@golder.it"]}, {"institutionName": "Institute of Engineering Seismology and Earthquake Engineering", "institutionAdditionalName": ["ITSAK"], "institutionCountry": "GRC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.itsak.gr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alekos@itsak.gr"]}, {"institutionName": "Leibniz Institute for Applied Geophysics", "institutionAdditionalName": ["LIAG", "Leibniz Institute for Applied Geosciences", "Leibniz-Institut f\u00fcr Angewandte Geophysik"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.liag-hannover.de/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["klaus.kuehne@liag-hannover.de"]}, {"institutionName": "Miligal, s.r.o.", "institutionAdditionalName": ["MGL"], "institutionCountry": "CZE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.miligal.cz/index.php?id=101", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sedlak@miligal.cz"]}, {"institutionName": "Polish Geological Institute", "institutionAdditionalName": ["PGI", "PIB", "Pa\u0144stwowy Instytut Geologiczny"], "institutionCountry": "POL", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.pgi.gov.pl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tomasz.mardal@pgi.gov.pl"]}, {"institutionName": "State Geological Institute of Dion\u00fdz \u0160t\u00far", "institutionAdditionalName": ["GSSR", "SGID\u0160"], "institutionCountry": "SVK", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.geology.sk/new/en/intro", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["barath@geology.sk"]}] [{"policyName": "GeoMind portal user guide", "policyURL": "http://www.geomind.eu/portal/public_files/documentation/DO110_Geomind_Portal_User_Guide.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.geomind.eu/portal/home.jsf"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} description: The Portal is a centralized cross-border gateway for geophysical data search and acquirement. It presents metadata providers with several different ways to publicize their metadata and provides means to easily manage it. Portal also integrates dynamic multilingual content management, administration of users and metadata providers’ and access control. Portal administration is distributed so that national authorities can manage their users and metadata providers on their own. 2014-03-04 2021-06-17 +r3d100010630 GOVDATA deu [{"additionalName": "Das Datenportal f\u00fcr Deutschland", "additionalNameLanguage": "deu"}] https://www.govdata.de/ [] ["https://www.govdata.de/web/guest/kontakt", "info@govdata.de"] GovData the data portal for Germany offers consistent and central access to administrative data at the federal, state, and local level. Objective is to make data more available and easier to use at a single location. As set out in the concept of "open data", we attempt to facilitate the use of open licenses and to increase the supply of machine-readable raw data. eng ["disciplinary", "institutional"] {"size": "56.082 hits; 55.931 data;", "updatedp": "2021-12-16"} 2013-02-18 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.govdata.de/web/guest/hilfe [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["age structure", "culture", "customer protection", "economy", "education", "environment", "geography", "health", "infrastructure", "law", "organisation", "politics", "population", "sport", "survey", "taxes", "tourism", "transport"] [{"institutionName": "Bundesministerium des Innern, f\u00fcr Bau und Heimat", "institutionAdditionalName": ["BMI", "Federal Ministry of the Interior, Building and Community"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.bmi.bund.de/DE/startseite/startseite-node.html", "institutionIdentifier": ["ROR:00fpwd955"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmi.bund.de/DE/service/kontakt/kontakt_node.html"]}, {"institutionName": "Fraunhofer FOKUS", "institutionAdditionalName": ["Fraunhofer Institute for Open Communication Systems FOKUS", "Fraunhofer-Institut f\u00fcr Offene Kommunikationssysteme"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fokus.fraunhofer.de/", "institutionIdentifier": ["ROR:00px80p03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IT-Planungsrat", "institutionAdditionalName": ["IT Planning Council"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.it-planungsrat.de/der-it-planungsrat", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.it-planungsrat.de/kontakt"]}] [{"policyName": "Nutzungshinweise", "policyURL": "https://www.govdata.de/Nutzungsbestimmungen"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/gpl-3.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/fdl-1.3.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/lizenzen"}] closed [] ["CKAN"] {"api": "https://www.govdata.de/web/guest/sparql-assistent", "apiType": "SPARQL"} ["none"] [] unknown yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {"syndication": "https://www.govdata.de/web/guest/home/-/journal/rss/102287?doAsGroupId=19&refererPlid=10169&controlPanelCategory=current_site.content&_15_groupId=19", "syndicationType": "RSS"} 2014-03-05 2021-12-16 +r3d100010631 Academic Seismic Portal at UTIG eng [{"additionalName": "ASP", "additionalNameLanguage": "eng"}] http://www-udc.ig.utexas.edu/sdc/ ["FAIRsharing_doi:10.25504/FAIRsharing.ph8fx9", "RRID:SCR_000403", "RRID:nlx_154745"] ["http://www-udc.ig.utexas.edu/sdc/about/contact.php"] >>>!!!<<< On June 1, 2020, the Academic Seismic Portal repositories at UTIG were merged into a single collection hosted at Lamont-Doherty Earth Observatory. Content here was removed July 1, 2020. Visit the Academic Seismic Portal @LDEO! https://www.marine-geo.org/collections/#!/collection/Seismic#summary (https://www.re3data.org/repository/r3d100010644) >>>!!!<<< eng ["disciplinary"] {"size": "8.1 TB of data in 33.954 files for 425 Projects", "updatedp": "2018-11-14"} 2003 2020-06-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www-udc.ig.utexas.edu/sdc/about/purpose.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["SEG-Y file", "cruise", "geophysic", "marine", "ocean", "seismic"] [{"institutionName": "Columbia University, Lamont -Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ldeo.columbia.edu/give-ldeo/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Texas at Austin, Institute for Geophysics", "institutionAdditionalName": ["UTIG"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ig.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ig.utexas.edu/about/contact/"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://www-udc.ig.utexas.edu/sdc/about/purpose.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Contribute Data", "dataUploadLicenseURL": "http://www-udc.ig.utexas.edu/sdc/about/contribute.php"}] ["other"] {} ["none"] http://www-udc.ig.utexas.edu/sdc/about/acknowledgements.php [] unknown unknown [] [] {} description: The Academic Seismic Portal (ASP) at UTIG serves up seismic and other data acquired on marine geology and geophysics cruises. Web access provides the public a unique opportunity to look beneath the world's ocean floor. Academic Seismic Portal (ASP) at UTIG is partner with the ASP at LDEO (http://www.marine-geo.org/collections/#!/collection/Seismic#summary), and is a component of the Marine Geoscience Data System (MGDS: http://www.marine-geo.org/index.php). 2014-01-09 2021-07-05 +r3d100010632 Insect Images eng [{"additionalName": "InsectImages", "additionalNameLanguage": "eng"}] https://www.insectimages.org/ [] ["bugwood@uga.edu", "https://www.insectimages.org/support/contactus/"] Insect Images is part of the Center for Invasive Species and Ecosystem Health’s BugwoodImages. It provides an easily accessible archive of high quality images for use in educational applications. The focus of InsectImages is images related to entomology. Insect Images hosts Archives from the Ohio State University (OARDC), Southern Forest Insect Work Conference (SFIWC), Florida Department of Agriculture & Consumer Services, United States National Collection of Scale Insects Photographs (ScaleNet), Mactode Publications, The University of Georgia Museum of Natural History, the United States Geological Surveys Nonindigenous Aquatic Speies (NAS)and the collaborative survey 'Viruses in Imported and Domestically Produced Ornamentals'. In most cases, the images found in this system were taken by and loaned to us by photographers other than ourselves. Most are in the realm of public sector images. The photographs are in this system to be used eng ["disciplinary"] {"size": "313.715 images; 25.947 subjects; 2.596 photographers;", "updatedp": "2021-12-16"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.insectimages.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["Blattodea", "Coleoptera", "Dermaptera", "Diptera", "Hemiptera", "Hymenoptera", "Isoptera", "Lepidoptera", "Mantodea", "Neuroptera", "Odonata", "Orthoptera", "Phasmatoptera", "Phthiraptera", "Thysanoptera", "Thysanura", "entomology"] [{"institutionName": "Entomological Society of America", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.entsoc.org/", "institutionIdentifier": ["ROR:03awpb417"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Center for Invasive Species and Ecosystem Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bugwood@uga.edu", "https://www.bugwood.org/contact.cfm"]}, {"institutionName": "University of Georgia, College of Agricultural and Environmental Sciences, Department of Entomology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ent.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Museum of Natural History", "institutionAdditionalName": ["Georgia Museum of Natural History"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://naturalhistory.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://museum.nhm.uga.edu/index.php?page=content/museuminfo/contact"]}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Requesting and using images", "policyURL": "https://www.insectimages.org/about/imageusage.cfm"}, {"policyName": "Requesting and using images from the Bugwood Network", "policyURL": "https://www.insectimages.org/about/imageusage.cfm#usetype"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] restricted [{"dataUploadLicenseName": "Guide to contributors", "dataUploadLicenseURL": "https://www.insectimages.org/contribute.cfm"}] ["unknown"] yes {} ["none"] https://www.insectimages.org/about/imageusage.cfm [] unknown unknown [] [] {"syndication": "https://www.insectimages.org/NewImagesFeed.cfm?out=rss", "syndicationType": "RSS"} Insect Images is part of the Center for Invasive Species and Ecosystem Health’s Bugwood Image Database System (BugwoodImage), (bugwood network) r3d100010194 and is made up of four major website interfaces. These are ForestryImages, IPMImages, InsectImages, and Invasive.org. 2014-03-05 2021-12-16 +r3d100010633 Invasive.org eng [{"additionalName": "Invasive and Exotic Species of North America", "additionalNameLanguage": "eng"}] https://www.invasive.org/ [] ["bugwood@uga.edu"] invasive.org is a project of the University of Georgia’s Center for Invasive Species and Ecosystem Health and one of the four major parts of BugwoodImages. The Focus is on invasive and exotic species of North America. This can be animals, plants, insects, and pathogens. It provides an easily accessible archive of high quality images for use in educational applications. In most cases, the images found in this system were taken by and loaned to us by photographers other than ourselves. Most are in the realm of public sector images. The photographs are in this system to be used. eng ["disciplinary"] {"size": "65.429 Images of 3.456 Invasive Species", "updatedp": "2021-12-16"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.invasive.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["amphibians", "arachnids", "birds", "crustaceans", "fish", "insects", "mammals", "maps", "nematodes", "pathogens", "plants", "reptiles", "species"] [{"institutionName": "University of Georgia, Center for Invasive Species and Ecosystem Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bugwood@uga.edu", "https://www.bugwood.org/contact.cfm"]}, {"institutionName": "University of Georgia, College of Agricultural and Environmental Sciences, Department of Entomology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ent.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Requesting and using images", "policyURL": "https://www.invasive.org/about/imageusage.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] restricted [{"dataUploadLicenseName": "Guide to contributors", "dataUploadLicenseURL": "https://www.invasive.org/contribute.cfm"}] ["unknown"] {} ["none"] https://www.invasive.org/about/imageusage.cfm [] unknown yes [] [] {"syndication": "https://www.invasive.org/newimagesfeed.cfm?out=rss", "syndicationType": "RSS"} invasive.org is part of BugwoodImages databases: ForestryImages, IPMImages, InsectImages, WeedImages 2014-03-06 2021-12-16 +r3d100010634 IPM Images eng [] https://www.ipmimages.org/ [] ["bugwood@uga.edu", "https://www.ipmimages.org/support/contactus/"] IPM Images is a project of the University of Georgia’s Center for Invasive Species and Ecosystem Health and one of the four major parts of BugwoodImages. The Focus is on Integrated Pest Management. It provides an easily accessible archive of high quality images for use in educational applications. In most cases, the images found in this system were taken by and loaned to us by photographers other than ourselves. Most are in the realm of public sector images. The photographs are in this system to be used eng ["disciplinary"] {"size": "313.715 images; 27.947 subjects; 2.596 photographers", "updatedp": "2021-12-16"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.ipmimages.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["crops", "fruits", "nuts", "pests", "plants", "vegetables"] [{"institutionName": "Colorado State University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.colostate.edu/", "institutionIdentifier": ["ROR:03k1gpj17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Southern Integrated Pest Management Center", "institutionAdditionalName": ["SIPMC", "Southern IPM Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://southernipm.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://southernipm.org/about/contact-us/"]}, {"institutionName": "Southern Plant Diagnostic Network", "institutionAdditionalName": ["SPDN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.npdn.org/spdn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, National Institute of Food and Agriculture", "institutionAdditionalName": ["NIFA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/", "institutionIdentifier": ["ROR:05qx3fv49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Center for Invasive Species and Ecosystem Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bugwood@uga.edu", "https://www.ipmimages.org/support/contactus/"]}, {"institutionName": "University of Georgia, College of Agricultural and Environmental Sciences, Department of Entomology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ent.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Requesting and using images", "policyURL": "https://www.ipmimages.org/about/imageusage.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] restricted [{"dataUploadLicenseName": "Guide to contributors", "dataUploadLicenseURL": "https://www.ipmimages.org/contribute.cfm"}] ["unknown"] {} ["none"] https://www.ipmimages.org/about/imageusage.cfm [] unknown yes [] [] {"syndication": "https://www.ipmimages.org/NewImagesFeed.cfm?out=rss", "syndicationType": "RSS"} IPM Images is part of BugwoodImages databases: ForestryImages, invasive.org, InsectImages, WeedImages 2014-03-06 2021-12-16 +r3d100010635 World Data Centre for Space Weather eng [{"additionalName": "SWS", "additionalNameLanguage": "eng"}, {"additionalName": "Space Weather Services", "additionalNameLanguage": "eng"}, {"additionalName": "WDC - Space Weather, Australia", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: WDC STS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: World Data Centre for Solar-Terrestrial Science", "additionalNameLanguage": "eng"}] https://www.sws.bom.gov.au/World_Data_Centre ["FAIRsharing_DOI:10.25504/FAIRsharing.cc3QN9"] ["SWS_Office@bom.gov.au", "https://www.sws.bom.gov.au/Contact_Us"] The World Data Centre section provides software and data catalogue information and data produced by IPS Radio and Space Services over the past few past decades. You can download data files, plot graphs from data files, check data availability, retrieve data sets and station information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FEDSAT", "cosmic ray", "ionosphere", "ionospheric scintillation", "magnetometer", "riometer", "solar radio", "space weather"] [{"institutionName": "Australian Government, Bureau of Meteorology, Radio and Space Weather Services", "institutionAdditionalName": ["IPS", "SWS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.sws.bom.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sws.bom.gov.au/Contact_Us"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws/constitution"}, {"policyName": "SWS Data policy", "policyURL": "https://www.sws.bom.gov.au/World_Data_Centre/1/1/1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] closed [] ["unknown"] {"api": "https://www.sws.bom.gov.au/World_Data_Centre/1/1/", "apiType": "FTP"} ["none"] https://www.sws.bom.gov.au/World_Data_Centre [] unknown unknown ["WDS"] [] {} The World Data Centre (WDC) for Solar-Terrestrial Science (STS) is a part of and operated by SWS. The centre operates in Sydney, New South Wales, Australia. WDC STS is a member of the ICSU World Data System (WDS) 2014-02-13 2021-12-16 +r3d100010636 International Mouse Phenotyping Consortium eng [{"additionalName": "IKMC", "additionalNameLanguage": "eng"}, {"additionalName": "IMPC", "additionalNameLanguage": "eng"}, {"additionalName": "Intgernational Mouse Phenotyping Consortium", "additionalNameLanguage": "eng"}, {"additionalName": "The International Knockout Mouse Consortium", "additionalNameLanguage": "eng"}] https://www.mousephenotype.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.LdoU1I", "RRID:SCR_006158", "RRID:nlx_151660"] ["https://www.mousephenotype.org/contact-us"] The IMPC is a confederation of international mouse phenotyping projects working towards the agreed goals of the consortium: To undertake the phenotyping of 20,000 mouse mutants over a ten year period, providing the first functional annotation of a mammalian genome. Maintain and expand a world-wide consortium of institutions with capacity and expertise to produce germ line transmission of targeted knockout mutations in embryonic stem cells for 20,000 known and predicted mouse genes. Test each mutant mouse line through a broad based primary phenotyping pipeline in all the major adult organ systems and most areas of major human disease. Through this activity and employing data annotation tools, systematically aim to discover and ascribe biological function to each gene, driving new ideas and underpinning future research into biological systems; Maintain and expand collaborative “networks” with specialist phenotyping consortia or laboratories, providing standardized secondary level phenotyping that enriches the primary dataset, and end-user, project specific tertiary level phenotyping that adds value to the mammalian gene functional annotation and fosters hypothesis driven research; and Provide a centralized data centre and portal for free, unrestricted access to primary and secondary data by the scientific community, promoting sharing of data, genotype-phenotype annotation, standard operating protocols, and the development of open source data analysis tools. Members of the IMPC may include research centers, funding organizations and corporations. eng ["disciplinary"] {"size": "7.824 phenotyped genes; 8.457 phenotyped mutant lines; 90.010 phenotype calls;", "updatedp": "2021-12-16"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.mousephenotype.org/about-impc/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["diseases", "embryonic", "genotype", "major human disease", "mouse", "mutations", "phenotyping", "stem cell"] [{"institutionName": "Australian Phenomics Network", "institutionAdditionalName": ["APN"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://phenomicsaustralia.org.au/", "institutionIdentifier": ["RRID:SCR_006150", "RRID:nlx_151641"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bayor College of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": ["ROR:02pttbw34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consiglio Nazionale delle Ricerche 'A. Buzzati-Traverso' Campus, Monterondo", "institutionAdditionalName": ["CNR Monterotondo", "EMMA (European Mouse Mutant Archive)"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.emma.cnr.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Zentrum M\u00fcnchen - Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-munich.de/helmholtz-zentrum-muenchen/index.html", "institutionIdentifier": ["ROR:00cfam450", "RRID:SCR_013835"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz-munich.de/ueber-uns/service/kontakt/index.html"]}, {"institutionName": "Institut Clinique de la Souris", "institutionAdditionalName": ["ICS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ics-mci.fr/en/", "institutionIdentifier": ["ROR:03cjqqq10", "RRID:SCR_011021", "RRID:nlx_158126"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Mouse Phenotyping Consortium", "institutionAdditionalName": ["IMPC"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mousephenotype.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MARC Nanjing University", "institutionAdditionalName": ["Model Animal Research Center of Nanjing University"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nju.edu.cn/EN/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical Research Council Harwell", "institutionAdditionalName": ["MRC Mouse Network"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.har.mrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Laboratory Animal Center, National Applied Research Laboratories", "institutionAdditionalName": ["NLAC, NARLabs"], "institutionCountry": "TWN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.narlabs.org.tw/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RIKEN BioResource Center", "institutionAdditionalName": ["RIKEN BRC"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://web.brc.riken.jp/en/", "institutionIdentifier": ["ROR:00s05em53", "RRID:SCR_003250", "RRID:nif-0000-31407"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Seoul National University, College of Veterinary Medicine, Lab of Developmental Biology and Genomics", "institutionAdditionalName": [], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://vet.snu.ac.kr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["snumouse@snu.ac.kr"]}, {"institutionName": "The Centre for Phenogenomics", "institutionAdditionalName": ["TCP"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://phenogenomics.ca/index2.html?v=1", "institutionIdentifier": ["ROR:044xrc068", "RRID:SCR_006143", "RRID:nlx_151633"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Davis, Toronto, Charles River and CHORI Consortium (DTCC)", "institutionAdditionalName": ["DTCC Consortium"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.criver.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": ["JAX"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/", "institutionIdentifier": ["ROR:021sy4w91", "RRID:SCR_004633", "RRID:SciEx_9305", "RRID:nlx_63162"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09", "RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMPC Governance and Coordination", "policyURL": "https://www.mousephenotype.org/wp-content/uploads/2019/05/IMPC_Governance_and_Coordination_v02_October_2014.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://www.mousephenotype.org/about-impc/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://raw.githubusercontent.com/mpi2/PhenotypeArchive/master/LICENSE"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.mousephenotype.org/wp-content/uploads/2019/05/IMPC_Governance_and_Coordination_v02_October_2014.pdf"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/impc/", "apiType": "FTP"} ["none"] https://www.mousephenotype.org/help/faqs/how-do-i-cite-the-impc-website/ [] yes yes [] [] {} The web services of the International Knockout Mouse (IKMC) have been transferred to the International Mouse Phenotyping Consortium (IMPC). The International Mouse Phenotyping Consortium (IMPC) Comprises a group of major mouse genetics research institutions along with national funding organisations formed to address the challenge of developing an encyclopedia of mammalian gene function. The IMPC is currently composed of 18 research institutions and 5 national funders https://www.mousephenotype.org/about-impc/consortium-members/ The IKMC includes the following programs: Knockout Mouse Project (KOMP) (USA),European Conditional Mouse Mutagenesis Program (EUCOMM) (Europe), EUCOMM: Tools for Functional Annotation of the Mouse Genome (EUCOMMTOOLS) (Europe), North American Conditional Mouse Mutagenesis Project (NorCOMM) (Canada), Texas A&M Institute for Genomic Medicine (TIGM) (USA) 2014-03-06 2021-12-16 +r3d100010637 American Type Culture Collection eng [{"additionalName": "ATCC", "additionalNameLanguage": "eng"}] https://www.lgcstandards-atcc.org/ ["FAIRsharing_doi:10.25504/fairsharing.j0ezpm", "RRID:SCR_001672", "RRID:nif-0000-10159"] ["https://www.atcc.org/support/contact-us"] While focused on supporting the scientific community, ATCC activities range widely, from repository-related operations to providing specialized services, conducting in-house R&D and intellectual property management. ATCC serves U.S. and international researchers by characterizing cell lines, bacteria, viruses, fungi and protozoa, as well as developing and evaluating assays and techniques for validating research resources and preserving and distributing biological materials to the public and private sector research communities. Our management philosophy emphasizes customer satisfaction, value addition, cost-effective operations and competitive benchmarking for all areas of our enterprise. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.atcc.org/about-us/what-we-do [{"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "DNA", "RNA", "bacteria", "biodiversity", "biomaterials", "cells", "stem cells", "virus"] [{"institutionName": "ATCC", "institutionAdditionalName": ["The Global Bioresource Center"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.atcc.org/", "institutionIdentifier": ["ROR:03thhhv76"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.atcc.org/support/contact-us"]}, {"institutionName": "LGC Standards", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lgcstandards.com/DE/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lgcstandards.com/DE/en/contact-us"]}] [{"policyName": "Material Transfer Agreement", "policyURL": "https://www.atcc.org/policies/product-use-policies/material-transfer-agreement"}, {"policyName": "Product Use Policy", "policyURL": "https://www.atcc.org/policies/product-use-policies"}, {"policyName": "Terms and Conditions of Sale by ATCC", "policyURL": "https://www.atcc.org/policies/terms-and-conditions-of-sale-by-atcc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.atcc.org/policies/product-use-policies/material-transfer-agreement"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://www.atcc.org/policies/website-terms-of-use"}] ["unknown"] {} ["none"] [] yes yes [] [] {} ATCC is an independent, private, nonprofit biological resource center (BRC) and research organization 2014-03-06 2021-12-17 +r3d100010638 Antarctic & Southern Ocean Data Portal eng [{"additionalName": "ASODS", "additionalNameLanguage": "eng"}] https://www.marine-geo.org/collections/#!/collection/USAP#summary ["RRID:SCR_002193", "RRID:nlx_154703"] ["https://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] The Antarctic and Southern Ocean Data Portal, part of the US Antarctic Data Consortium, provides access to geoscience data, primarily marine, from the Antarctic region. The synthesis began in 2003 as the Antarctic Multibeam Bathymetry and Geophysical Data Synthesis (AMBS) with a focus on multibeam bathymetry field data and other geophysical data from the Southern Ocean collected with the R/V N. B. Palmer. In 2005, the effort was expanded to include all routine underway geophysical and oceanographic data collected with both the R/V N. B. Palmer and R/V L. Gould, the two primary research vessels serving the US Antarctic Program. eng ["disciplinary"] {"size": "2.190 Data Sets at MGDS", "updatedp": "2021-12-17"} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["gould expedition", "magnetics", "meteorology", "palmer expedition", "seafloor bathymetry", "subbottom profiling", "trackline gravity", "water"] [{"institutionName": "Columbia University, Lamont -Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Dear Colleague Letter: Data Management and Data Reporting Requirements for Research Awards Supported by the Office of Polar Programs", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf16055&org=NSF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marine-geo.org/about/legal.php#copyright"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "https://www.marine-geo.org/submit/guidelines.php"}] ["unknown"] {"api": "https://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["DOI"] https://www.marine-geo.org/about/terms_of_use.php [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Antarctic & Southern Ocean Data Portal is a component of the Marine Geoscience Data System (MGDS) and part of the US Antarctic Data Consortium. Part of the IEDA Data Facility. 2014-01-13 2021-12-17 +r3d100010639 GeoPRISMS Data Portal eng [{"additionalName": "Geodyanmic Processes at Rifting and Subducting Margins", "additionalNameLanguage": "eng"}] https://www.marine-geo.org/collections/#!/collection/GeoPRISMS#summary [] ["https://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] The GeoPRISMS Data Portal was established in early 2011 to serve the NSF-funded GeoPRISMS program as a dedicated data system to facilitate open and timely exchange of data in support of the interdisciplinary science goals of the program. GeoPrisms Data Portal focuses upon the coordinated, interdisciplinary investigation of the continental margins through two initiatives: the Subduction Cycles and Deformation (SCD) and Rift Initiation and Evolution (RIE). In order to address the fundamental scientific questions, each initiative is associated with Primary Sites to address a wide range of field, experimental and theoretical studies spanning broad spatial and temporal scales. eng ["disciplinary"] {"size": "134 Data Sets at MGDS", "updatedp": "2021-12-17"} 2011-05 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.marine-geo.org/collections/#!/collection/GeoPRISMS#summary [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climatic hazards", "continental margins", "earthquake", "hydrocarbon resources", "landslide", "metal resources", "population density", "volcanic"] [{"institutionName": "Columbia University, Lamont -Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Data Policy", "policyURL": "http://www.geoprisms.org/research/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marine-geo.org/about/legal.php#copyright"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "https://www.marine-geo.org/submit/guidelines.php"}] ["unknown"] {"api": "https://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["none"] https://www.marine-geo.org/about/terms_of_use.php [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} GeoPRISMS Data Portal is a component of the Marine Geoscience Data System (MGDS). MARGINS is now GeoPRISM, In October 2010, the MARGINS Office at Lamont winds down, replaced by the first GeoPRISMS Office, at Rice. Over coming days, look for a new web page, new content, and information on the new program. http://www.nsf-margins.org/ 2014-01-13 2021-12-17 +r3d100010640 Global Multi-Resolution Topography Data Portal eng [{"additionalName": "GMRT", "additionalNameLanguage": "eng"}] https://www.gmrt.org/ [] ["https://www.gmrt.org/about/contact.php", "info@marine-geo.org"] The Global Multi-Resolution Topography (GMRT) Synthesis is a dynamically maintained global multi-resolution synthesis of terrestrial and seafloor elevation data available as images & gridded data values. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.gmrt.org/about/index.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bathymetry", "land elevation", "ocean elevation", "research cruises", "seafloor", "sonar", "terrestrial"] [{"institutionName": "Columbia University, Lamont -Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Governance", "policyURL": "https://www.marine-geo.org/about/governance.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marine-geo.org/about/legal.php#copyright"}] restricted [{"dataUploadLicenseName": "What to contribute", "dataUploadLicenseURL": "https://www.marine-geo.org/submit/"}] ["unknown"] yes {"api": "https://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["none"] https://www.marine-geo.org/about/terms_of_use.php [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Global Multi-Resolution Topography Data Portal is a component of the Marine Geoscience Data System (MGDS). 2014-01-13 2021-12-17 +r3d100010641 MARGINS Data Portal eng [] https://www.marine-geo.org/collections/#!/collection/MARGINS#summary [] ["https://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] The MARGINS Data Portal was established in fall 2003 in response to a program call for a dedicated data system to facilitate open and timely exchange of data in support of the interdisciplinary science goals of the program. The Data Portal has been built with the primary goal of providing full cataloging, open access, and long-term preservation of data collected during MARGINS/GeoPRISMS programs. The backbone of the system is an expedition metadata catalog, which provides information on field programs (who, what, when and where), inventories of sensor data and samples, relevant metadata and the links to associated data files which reside either within the Data Portal or at distributed repositories. The system is designed to leverage all relevant existing data resources and provides a framework for a broader distributed data system. eng ["disciplinary"] {"size": "401 at MGDS", "updatedp": "2021-12-17"} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.marine-geo.org/collections/#!/collection/MARGINS#summary [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bathymetry", "cruises", "earthquake", "gravity", "magnetics", "rock samples", "sediment samples", "seismic reflection data", "seismology", "seismometer studies", "sidescan sonar", "sound velocity data", "tectonophysics", "water column XBT"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "GeoPRISMS", "institutionAdditionalName": ["Geodynamic Processes at Rifting and Subducting Margins", "formerly: MARGINS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geoprisms.org/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["info@geoprisms.org"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["ROR:02fjjnc15", "RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/"]}, {"institutionName": "Marine Geoscience Data System", "institutionAdditionalName": ["MGDS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.marine-geo.org/index.php", "institutionIdentifier": ["RRID:SCR_002164", "RRID:nlx_154713"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marine-geo.org/about/contact.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "MARGINS Data Policy", "policyURL": "https://www.nsf-margins.org/DataPolicy.html"}, {"policyName": "MGDS Terms of Use", "policyURL": "https://www.marine-geo.org/about/terms_of_use.php"}, {"policyName": "NSF Division of Ocean Sciences (OCE) Sample and Data Policy", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037&org=NSF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}] restricted [] ["unknown"] yes {"api": "https://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["DOI"] https://www.marine-geo.org/about/terms_of_use.php [] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} MARGINS is now GeoPRISMS In October 2010, the MARGINS Office at Lamont winds down, replaced by the first GeoPRISMS Office, at Rice. 2014-01-13 2021-12-17 +r3d100010642 NDSF Data Portal eng [{"additionalName": "National Deep Submergence Facility", "additionalNameLanguage": "eng"}] https://ndsf.whoi.edu/data/ [] ["https://ndsf.whoi.edu/contact/", "ndsf_info@whoi.edu"] The National Deep Submergence Facility (NDSF) operates the Human Occupied Vehicle (HOV) Alvin, the Remote Operated Vehicle (ROV) Jason 2, and the Autonomous Underwater Vehicle (AUV) Sentry. Data acquired with these platforms is provided both to the science party on each expedition, and to the Woods Hole Oceanographic Institution (WHOI) Data Library. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.whoi.edu/who-we-are/about-us/vision-mission/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AUV Sentry", "R/V Atlantis", "R/V Knorr", "R/V Tioga", "ROV Jason", "bathymetry", "deep sea", "marine", "ocean", "sea floor"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81", "RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil/", "institutionIdentifier": ["ROR:00rk2pe57", "RRID:SCR_004366", "RRID:nlx_144142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.onr.navy.mil/en/Media-Center/media-contacts.aspx"]}, {"institutionName": "University-National Oceanographic Laboratory System", "institutionAdditionalName": ["UNOLS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unols.org/", "institutionIdentifier": ["ROR:03nbky582"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unols.org/form/contact-us-form"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.whoi.edu", "institutionIdentifier": ["ROR:03zbnzt98", "RRID:SCR_006315", "RRID:nlx_154727"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["information@whoi.edu"]}] [{"policyName": "Division of Ocean Sciences (OCE) Sample and Data Policy", "policyURL": "https://www.nsf.gov/pubs/2017/nsf17037/nsf17037.jsp"}, {"policyName": "NDSF Data Archive Policy", "policyURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ndsf.whoi.edu/ndsf-data-archive-policy/"}] closed [] ["unknown"] {"api": "https://www.marine-geo.org/tools/new_search/searchinfo.php", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} NDSF Data Portal is a component of the Marine Geoscience Data System (MGDS) https://www.marine-geo.org/index.php. 2014-01-14 2021-12-17 +r3d100010643 Ridge 2000 Data Portal eng [{"additionalName": "R2K Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "Ridge Interdisciplinary Global Experiments", "additionalNameLanguage": "eng"}] https://www.marine-geo.org/collections/#!/collection/Ridge2000#summary [] ["https://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] Ridge 2000 is a multidisciplinary science research program focused on integrated geological and biological studies of the Earth-encircling oceanic spreading center system. eng ["disciplinary"] {"size": "639 datasets at MGDS", "updatedp": "2021-12-17"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.marine-geo.org/collections/#!/collection/Ridge2000#summary [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biospere", "crustal composition", "earthquake", "hydrothermy", "ocean circulation", "seafloor topography", "tectronic activity", "volcanic activity", "water"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Ridge 2000 Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.marine-geo.org/collections/#!/collection/Ridge2000", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marine-geo.org/about/contact.php"]}] [{"policyName": "MGDS Terms of Use", "policyURL": "https://www.marine-geo.org/about/terms_of_use.php"}, {"policyName": "Policy for Oceanographic Data", "policyURL": "https://www.nsf.gov/pubs/stis1994/nsf94126/nsf94126.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marine-geo.org/about/legal.php"}] restricted [{"dataUploadLicenseName": "Contribute Data", "dataUploadLicenseURL": "https://www.marine-geo.org/submit/"}] ["unknown"] {"api": "https://www.marine-geo.org/tools/web_services.php", "apiType": "REST"} ["none"] https://www.marine-geo.org/about/terms_of_use.php [] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Ridge 2000 Data Portal is a component of the Marine Geoscience Data System (MGDS)and part of the community-based data facility Interdisciplinary Earth Data Alliance (IEDA). 2014-01-16 2021-12-17 +r3d100010644 Academic Seismic Portal at LDEO eng [{"additionalName": "ASP", "additionalNameLanguage": "eng"}] https://www.marine-geo.org/collections/#!/collection/Seismic#summary ["RRID:SCR_002194", "RRID:nlx_154704"] ["https://www.marine-geo.org/about/contact.php", "info@marine-geo.org"] The MGDS Academic Seismic Portal at Lamont-Doherty Earth Observatory (ASP-LDEO), now part of the IEDA Data Facility, was initiated in 2003 to preserve and provide open access to multi-channel seismic (MCS) and single channel seismic (SCS) field data collected for academic research supported by the US National Science Foundation. Multi-channel data are primarily from the marine seismic vessels operated by Lamont-Doherty Earth Observatory of Columbia University. Modern single channel seismic data from other vessels including the R/V Palmer and USCG Healy, as well as data from portable seismic systems, are also served. The development of the Academic Seismic Portal has focused on the need to recover high value MCS data from older surveys as well as to establish sustainable procedures for preservation of data from modern programs. During the final two years of R/V Ewing operations, procedures were established for routine transfer of MCS data along with navigation and acquisition parameters, and other needed documentation to the ASP. Transfer of seismic data and acquisition information is now routine for the National Marine Seismic Facility, the R/V Marcus G. Langseth, which began science operations in February 2008. Data are documented and incorporated into the data system with full access restrictions protecting the scientists' rights to exclusive access during the proprietary hold period. Submission of data to the ASP helps ensure that NSF requirements for data sharing as outlined in the NSF OCE Data Policy are satisfied. Data from the Academic Seismic Portal at UTIG has been migrated to LDEO. As we continue to verify the accuracy and completeness of this data, there may be temporary issues with some seismic metadata and web services. eng ["disciplinary"] {"size": "2.622 data sets at MGDS", "updatedp": "2021-12-17"} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.marine-geo.org/collections/#!/collection/Seismic#summary [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["R/V Palmer", "biosphere", "crustal composition", "earthquake", "hydrothermy", "ocean circulation", "seafloor topography", "tectronic activity", "volcanic activity", "water"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lamont.columbia.edu/contact-us"]}, {"institutionName": "Integrated Earth Data Applications", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["ROR:02fjjnc15", "RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "OCE General Data Policy", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marine-geo.org/about/legal.php#copyright"}] restricted [{"dataUploadLicenseName": "Division of \u00d3cean Sciences Sample and Data Policy", "dataUploadLicenseURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037"}] ["unknown"] {} ["none"] https://www.marine-geo.org/about/terms_of_use.php [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The Academic Seismic Portal at Lamont-Doherty is also an official branch of the Antarctic Seismic Data Library System (SDLS), working under the auspices of the Scientific Committee on Antarctic Research (SCAR) and the Antarctic Treaty (ATCM XVI-12) to provide open access to all multichannel seismic reflection data collected south of 60° S for study of the structure of the earth's crust. SDLS libraries maintain DVD copies of and provide access to processed seismic data, including that not yet publicly available from the main SDLS web portal . The libraries also enhance collaboration among originators of data and potential users. In addition to the library function, the Academic Seismic Portal offers an ever-increasing number of seismic lines for viewing in GeoMapApp . 2014-01-16 2021-12-17 +r3d100010645 Mouse Atlas of Gene Expression eng [] http://www.mouseatlas.org/mouseatlas_index_html [] [] The Mouse Atlas of Gene Expression is a quantitative and comprehensive atlas of gene expression in mouse development. Gene expression levels from 198 tissue samples was measured using 202 Serial Analysis of Gene Expression (SAGE). Emphasis was on mouse development, samples taken at different stages of mouse development. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mouseatlas.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "Expressed Sequence Tag (EST)", "SAGE", "cancer", "mammals", "tumour"] [{"institutionName": "BC Cancer Agency", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bccancer.bc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "BC Cancer Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bccancerfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BC Cancer Agency, Research Centre", "BC GSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bcgsc.ca/about/contacts"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about/contact-us"]}, {"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NIH National Cancer Institute", "NIH, NCI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Release Policy", "policyURL": "http://www.mouseatlas.org/data/mouse/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] closed [] ["unknown"] {} ["none"] http://www.mouseatlas.org/data/mouse/ [] unknown unknown [] [] {} The Atlas project is led by Pamela Hoodless and Marco Marro. It is a collaboration between five investigators located in Vancouver, Canada and two co-investigators in the USA. The research teams are grouped into the Mouse Team, the SAGE Team and the Bioinformatics Team along with the USA investigators. 2014-02-20 2018-11-29 +r3d100010646 Virgo Millenium Database eng [] https://wwwmpa.mpa-garching.mpg.de/millennium/ [] [] When published in 2005, the Millennium Run was the largest ever simulation of the formation of structure within the ΛCDM cosmology. It uses 10(10) particles to follow the dark matter distribution in a cubic region 500h(−1)Mpc on a side, and has a spatial resolution of 5h−1kpc. Application of simplified modelling techniques to the stored output of this calculation allows the formation and evolution of the ~10(7) galaxies more luminous than the Small Magellanic Cloud to be simulated for a variety of assumptions about the detailed physics involved. As part of the activities of the German Astrophysical Virtual Observatory we have created relational databases to store the detailed assembly histories both of all the haloes and subhaloes resolved by the simulation, and of all the galaxies that form within these structures for two independent models of the galaxy formation physics. We have implemented a Structured Query Language (SQL) server on these databases. This allows easy access to many properties of the galaxies and halos, as well as to the spatial and temporal relations between them. Information is output in table format compatible with standard Virtual Observatory tools. With this announcement (from 1/8/2006) we are making these structures fully accessible to all users. Interested scientists can learn SQL and test queries on a small, openly accessible version of the Millennium Run (with volume 1/512 that of the full simulation). They can then request accounts to run similar queries on the databases for the full simulations. In 2008 and 2012 the simulations were repeated. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wwwmpa.mpa-garching.mpg.de/millennium/DBrel-GL1.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cosmology", "galaxies", "halo", "lightcones", "subhalo"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/de/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Astrophysical Virtual Observatory at MPA Garching", "institutionAdditionalName": ["GAVO"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.g-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute for Astrophysics", "institutionAdditionalName": ["MPA Garching", "Max-Planck-Institut f\u00fcr Astrophysik"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpa-garching.mpg.de/", "institutionIdentifier": ["ROR:017qcv467"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lemson_at_mpa-garching.mpg.de"]}, {"institutionName": "VIRGO consortium", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.virgo.dur.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wwwmpa.mpa-garching.mpg.de/millennium/#DATABASE_ACCESS"}] closed [] ["unknown"] yes {"api": "http://gavo.mpa-garching.mpg.de/Millennium/Help?page=demo/overview", "apiType": "other"} ["none"] http://gavo.mpa-garching.mpg.de/Millennium/Help/credits [] unknown yes [] [] {} There are two databases, one openly accessible with volume 1/512 of the full simulation ('milli-Millennium'), and one for the full simulation. The latter requires an account. There is also a mirror site with a nearly equivalent data base server at the Institute for Computational Cosmology, Durham University http://galaxy-catalogue.dur.ac.uk:8080/Millennium/ 2014-03-07 2021-12-17 +r3d100010648 Expressed Sequence Tags database eng [{"additionalName": "NCBI EST", "additionalNameLanguage": "eng"}, {"additionalName": "dbEST", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/genbank/dbest/ ["FAIRsharing_doi:10.25504/FAIRsharing.v9fya8", "MIR:00000159", "RRID:SCR_016578"] ["gb-admin@ncbi.nlm.nih.gov", "info@ncbi.nlm.nih.gov"] dbEST is a division of GenBank that contains sequence data and other information on "single-pass" cDNA sequences, or "Expressed Sequence Tags", from a number of organisms. Expressed Sequence Tags (ESTs) are short (usually about 300-500 bp), single-pass sequence reads from mRNA (cDNA). Typically they are produced in large batches. They represent a snapshot of genes expressed in a given tissue and/or at a given developmental stage. They are tags (some coding, others not) of expression for a given cDNA library. Most EST projects develop large numbers of sequences. These are commonly submitted to GenBank and dbEST as batches of dozens to thousands of entries, with a great deal of redundancy in the citation, submitter and library information. To improve the efficiency of the submission process for this type of data, we have designed a special streamlined submission process and data format. dbEST also includes sequences that are longer than the traditional ESTs, or are produced as single sequences or in small batches. Among these sequences are products of differential display experiments and RACE experiments. The thing that these sequences have in common with traditional ESTs, regardless of length, quality, or quantity, is that there is little information that can be annotated in the record. If a sequence is later characterized and annotated with biological features such as a coding region, 5'UTR, or 3'UTR, it should be submitted through the regular GenBank submissions procedure (via BankIt or Sequin), even if part of the sequence is already in dbEST. dbEST is reserved for single-pass reads. Assembled sequences should not be submitted to dbEST. GenBank will accept assembled EST submissions for the forthcoming TSA (Transcriptome Shotgun Assembly) division. The individual reads which make up the assembly should be submitted to dbEST, the Trace archive or the Short Read Archive (SRA) prior to the submission of the assemblies. eng ["disciplinary"] {"size": "485.518.083 public entries", "updatedp": "2021-12-17"} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "animals", "fruits", "genome", "human", "microorganisms", "nucleotide", "plants"] [{"institutionName": "National Institutes of Health, National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["batch-sub@ncbi.nlm.nih.gov", "info@ncbi.nlm.nih.gov"]}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] restricted [{"dataUploadLicenseName": "About ESTs - How to submit data", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/genbank/dbest/"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/repository/dbEST/", "apiType": "FTP"} ["other"] [] unknown yes [] [] {} 2014-03-10 2021-12-17 +r3d100010649 database of Sequence Tagged Sites eng [{"additionalName": "dbSTS", "additionalNameLanguage": "eng"}] http://www.ncbi.nlm.nih.gov/dbSTS/ ["FAIRsharing_doi:10.25504/FAIRsharing.wk5azf", "RRID:SCR_000400", "RRID:nif-0000-20939"] [] <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 1989 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CAP", "ISSR", "PCR", "Polymerase chain reaction", "SCAR", "genomic DNA", "human", "microsatellites"] [{"institutionName": "National Institutes of Health, National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["batch-sub@ncbi.nlm.nih.gov", "info@ncbi.nlm.nih.gov"]}] [{"policyName": "Fair use", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/repository/dbSTS/", "apiType": "FTP"} ["other"] [] unknown yes [] [] {} As of October 1, 2013 GenBank will discontinue the specialized dbSTS pipeline. If you have experimentally determined the sequence by direct sequencing, please submit your sequence to the main GenBank database using one of the submission tools Bankit or Sequin. STS sequences are incorporated into the STS Division of GenBank. 2014-03-10 2021-12-20 +r3d100010650 NCBI Gene eng [{"additionalName": "Entrez Gene", "additionalNameLanguage": "eng"}, {"additionalName": "Gene", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/gene?db=gene ["FAIRsharing_DOI:10.25504/FAIRsharing.5h3maw", "RRID:OMICS_01651", "RRID:SCR_002473", "RRID:nif-0000-02801"] [] The Gene database provides detailed information for known and predicted genes defined by nucleotide sequence or map position. Gene supplies gene-specific connections in the nexus of map, sequence, expression, structure, function, citation, and homology data. Unique identifiers are assigned to genes with defining sequences, genes with known map positions, and genes inferred from phenotypic information. These gene identifiers are used throughout NCBI's databases and tracked through updates of annotation. Gene includes genomes represented by NCBI Reference Sequences (or RefSeqs) and is integrated for indexing and query and retrieval from NCBI's Entrez and E-Utilities systems. eng ["disciplinary", "institutional"] {"size": "33.288 Total Taxa; 35.348.812 Total Genes", "updatedp": "2021-12-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bacteria", "genes", "genetics", "genomics", "proteins", "sequence analysis", "taxonomy", "viruses"] [{"institutionName": "National Institutes of Health, National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["batch-sub@ncbi.nlm.nih.gov", "info@ncbi.nlm.nih.gov"]}, {"institutionName": "U.S.Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181", "RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml#disclaimer"}] restricted [{"dataUploadLicenseName": "Submit GeneRIFs", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/gene/submit-generif"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/gene/", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/books/NBK3840/#genefaq.GeneRIFs__How_are_they_reported [] yes yes [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=genenews", "syndicationType": "RSS"} 2014-03-10 2021-12-20 +r3d100010651 AceView eng [{"additionalName": "AceView genes", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/ ["RRID:SCR_002277", "RRID:nif-0000-21007"] [] AceView provides a curated, comprehensive and non-redundant sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These experimental cDNA sequences are first co-aligned on the genome then clustered into a minimal number of alternative transcript variants and grouped into genes. Using exhaustively and with high quality standards the available cDNA sequences evidences the beauty and complexity of mammals’ transcriptome, and the relative simplicity of the nematode and plant transcriptomes. Genes are classified according to their inferred coding potential; many presumably non-coding genes are discovered. Genes are named by Entrez Gene names when available, else by AceView gene names, stable from release to release. Alternative features (promoters, introns and exons, polyadenylation signals) and coding potential, including motifs, domains, and homologies are annotated in depth; tissues where expression has been observed are listed in order of representation; diseases, phenotypes, pathways, functions, localization or interactions are annotated by mining selected sources, in particular PubMed, GAD and Entrez Gene, and also by performing manual annotation, especially in the worm. In this way, both the anatomy and physiology of the experimentally cDNA supported human, mouse and nematode genes are thoroughly annotated. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ESTs", "arabidopsis", "cDNA", "clones", "disease", "human", "mRNA", "mouse", "rat", "structure", "transcripts", "worm"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mieg@ncbi.nlm.nih.gov", "potdevin.michel@wanadoo.fr", "y.mieg@free.fr"]}, {"institutionName": "National Institutes of Health, National Library of Medicine", "institutionAdditionalName": ["NIH NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of use", "policyURL": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/Download/Downloads.html"}, {"policyName": "Fair use", "policyURL": "https://www.copyright.gov/fls/fl102.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["other"] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/repository/acedb", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/ieb/research/acembly/AboutAceView.html#quote [] unknown unknown [] [] {} 2014-03-26 2017-05-31 +r3d100010652 dbSNP eng [{"additionalName": "Database for short genetic variations", "additionalNameLanguage": "eng"}, {"additionalName": "SNV", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/snp/ ["RRID:OMICS_00264", "RRID:SCR_002338", "RRID:nif-0000-02734"] ["snp-admin@ncbi.nlm.nih.gov"] The NCBI Short Genetic Variations database, commonly known as dbSNP, catalogs short variations in nucleotide sequences from a wide range of organisms. These variations include single nucleotide variations, short nucleotide insertions and deletions, short tandem repeats and microsatellites. Short Genetic Variations may be common, thus representing true polymorphisms, or they may be rare. Some rare human entries have additional information associated withthem, including disease associations, genotype information and allele origin, as some variations are somatic rather than germline events. ***NCBI will phase out support for non-human organism data in dbSNP and dbVar beginning on September 1, 2017*** eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["allele origin", "diseases", "genotype", "germline", "microsatellites", "nucleotide", "sequences"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["snp-admin@ncbi.nlm.nih.gov"]}, {"institutionName": "National Institutes of Health, National Library of Medicine", "institutionAdditionalName": ["NIH NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "How to Submit to dbSNP", "policyURL": "https://www.ncbi.nlm.nih.gov/snp/docs/submission/hts_launch_and_introductory_material/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [{"dataUploadLicenseName": "dbSNP VCF Submission Format Guidelines", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/SNP/docs/dbSNP_VCF_Submission.pdf"}] [] yes {"api": "ftp://ftp.ncbi.nih.gov/snp/", "apiType": "FTP"} ["hdl"] https://www.ncbi.nlm.nih.gov/books/NBK44410/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=dbsnpnews", "syndicationType": "RSS"} 2014-03-26 2021-09-07 +r3d100010653 Conserved Domain database eng [{"additionalName": "CDD", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Conserved Domains and Protein Classification", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/cdd/ ["RRID:SCR_002077", "RRID:nif-0000-02647"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/"] The Conserved Domain Database is a resource for the annotation of functional units in proteins. Its collection of domain models includes a set curated by NCBI, which utilizes 3D structure to provide insights into sequence/structure/function relationships eng ["disciplinary", "institutional"] {"size": "56.066 total records; 5.697 multi-model Superfamilies", "updatedp": "2017-06-01"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3-dimensional structures", "PSSM", "amino acids", "biotechnology", "nucleotide", "protein"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact/", "info@ncbi.nlm.nih.gov"]}, {"institutionName": "National Institutes of Health, National Library of Medicine", "institutionAdditionalName": ["NIH NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] closed [] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/pub/mmdb/cdd/", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd_help.shtml#CitingCDD [] yes yes [] [] {} the Conserved Domain Database is part of the NCBI Structure Group: Data ingest from following source databases: NCBI CDD, Simple Modular Architecture Research Tool (SMART), PFAM, COGs, Protein Clusters (PRK), TIGRFAMs 2014-03-26 2017-08-25 +r3d100010654 WDC - Oceanography, Tianjin eng [{"additionalName": "WDC - D, Oceanography", "additionalNameLanguage": "eng"}] http://wdc-d.coi.gov.cn/nmdisenglish/ [] ["shlin@mail.nmdis.gov.cn"] As the third center for oceanography of the World Data Center following WDC-A of the United States and WDC-B of Russia, WDC-D for oceanography boasts long-term and stable sources of domestic marine basic data. The State Oceanic Administration now has long-term observations obtained from the fixed coastal ocean stations, offshore and oceanic research vessels, moored and drifting buoys. More and more marine data have been available from the Chinese-foreign marine cooperative surveys, analysis and measurement of laboratory samples, reception by the satellite ground station, aerial telemeter and remote sensing, the GOOS program and global ships of opportunity reports, etc; More marine data are being and will be obtained from the ongoing “863” program, one of the state key projects during the Ninth Five-year plan and the seasat No 1 which is scheduled to be launched next year. Through many years’ effort, the WDC-D for oceanography has established formal relationship of marine data exchange with over 130 marine institutions in more than 60 countries in the world and is maintaining a close relationship of data exchange with over 30 major national oceanographic data centers. The established China Oceanic Information Network has joined the international marine data exchange system via Internet. Through these channels, a large amount data have been acquired of through international exchange, which, plus the marine data collected at home for many years, has brought the WDC-D for Oceanography over 100 years’ global marine data with a total data amounting to more than 10 billion bytes. In the meantime, a vast amount of work has been done in the standardized and normalized processing and management of the data, and a series of national and professional standards have been formulated and implemented successively. Moreover, appropriate standards and norms are being formulated as required. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.coi.gov.cn/nmdisenglish/mission/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["SEASAT", "marine disaster", "marine environment", "marine research", "marine resource", "marine zoology", "telemeter"] [{"institutionName": "National Marine Data and Information Service", "institutionAdditionalName": ["NMDIS"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://wdc-d.coi.gov.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["duqw@mail.nmdis.gov.cn", "shlin@mail.nmdis.gov.cn"]}, {"institutionName": "State Oceanic Administration of China", "institutionAdditionalName": ["SOA"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://english.gov.cn/state_council/2014/10/06/content_281474992889983.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["none"] [] unknown unknown ["WDS"] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} NMDIS is the National Oceanographic Data Center, the ODP node, and the coordinating institution of the ODINWESTPAC under the framework of the IODE. It is also the ODAS Metadata Management Center of JCOMM, the China Argo Data Center of international Argo project, the China GTSPP Data Center of international GTSPP project, the China NEAR-GOOS Delayed Mode Database hosting institution of GOOS and the Chinese node of the PICES Metadata Federation. 2014-02-13 2021-08-25 +r3d100010655 OpenTopography eng [{"additionalName": "A Portal to High-Resolution Topography Data and Tools", "additionalNameLanguage": "eng"}] http://www.opentopography.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.88wme4", "RRID:SCR_002204", "RRID:nlx_154717"] ["info@opentopography.org"] OpenTopography facilitates community access to high-resolution, Earth science-oriented, topography data, and related tools and resources. The OpenTopography Facility is based at the San Diego Supercomputer Center at the University of California, San Diego and is operated in collaboration with colleagues in the School of Earth and Space Exploration at Arizona State University. Core operational support for OpenTopography comes from the National Science Foundation Earth Sciences: Instrumentation and Facilities Program (EAR/IF) and the Office of Cyberinfrastructure. In addition, we receive funding from the NSF and NASA to support various OpenTopography related research and development activities. eng ["institutional"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.opentopography.org/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Digital Elevation Models", "lidar data", "satellite data", "topography data"] [{"institutionName": "Arizona State University, School of Earth and Space Exploration", "institutionAdditionalName": ["SESE, ASU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sese.asu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sese.asu.edu/about/contact"]}, {"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthcube.org/group/council-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UNAVCO", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.unavco.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unavco.org/contact/contact.html"]}, {"institutionName": "University of California San Diego, San Diego Supercomputer Center", "institutionAdditionalName": ["UCSD, SDSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.sdsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.opentopography.org/contact"]}] [{"policyName": "Citation Policy", "policyURL": "http://www.opentopography.org/citations"}, {"policyName": "Data Hosting Policy", "policyURL": "http://www.opentopography.org/about/data_hosting"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.opentopography.org/usageterms"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.opentopography.org/usageterms"}] restricted [{"dataUploadLicenseName": "Data Submission Process", "dataUploadLicenseURL": "http://www.opentopography.org/about/data_submission"}] ["unknown"] {"api": "http://www.opentopography.org/developers#SRTM", "apiType": "REST"} ["DOI"] http://www.opentopography.org/citations [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.opentopography.org/blog.xml", "syndicationType": "RSS"} The OpenTopography Facility is based at the San Diego Supercomputer Center at the University of California, San Diego and is operated in collaboration with colleagues in the School of Earth and Space Exploration at Arizona State University and at UNAVCO. Core operational support for OpenTopography comes from the National Science Foundation Earth Sciences: Instrumentation and Facilities Program (EAR/IF). OpenTopography was initially developed as a proof of concept cyberinfrastructure in the Earth sciences project as part of the NSF Information and Technology Research (ITR) program-funded Geoscience Network (GEON) project. As an NSF-EAR-funded data facility, OpenTopography’s primary emphasis is on Earth science-related, research-grade, topography and bathymetry data. The scope of data that falls within this domain is not specifically defined, and data priorities are dictated by feedback from the OpenTopography user community, as well as our Advisory Committee. OpenTopography is covered by Thomson Reuters Data Citation Index. 2014-03-12 2021-11-09 +r3d100010656 ORegAnno eng [{"additionalName": "Open regulatory annotation database", "additionalNameLanguage": "eng"}] http://www.oreganno.org/ ["RRID:SCR_007835", "RRID:nif-0000-03223"] [] >>>!!!<<< 2017-06-02: We recently suffered a server failure and are working to bring the full ORegAnno website back online. In the meantime, you may download the complete database here: http://www.oreganno.org/dump/ ; Data are also available through UCSC Genome Browser (e.g., hg38 -> Regulation -> ORegAnno) https://genome.ucsc.edu/cgi-bin/hgTrackUi?hgsid=686342163_2it3aVMQVoXWn0wuCjkNOVX39wxy&c=chr1&g=oreganno >>>!!!<<< The Open REGulatory ANNOtation database (ORegAnno) is an open database for the curation of known regulatory elements from scientific literature. Annotation is collected from users worldwide for various biological assays and is automatically cross-referenced against PubMED, Entrez Gene, EnsEMBL, dbSNP, the eVOC: Cell type ontology, and the Taxonomy database, where appropriate, with information regarding the original experimentation performed (evidence). ORegAnno further provides an open validation process for all regulatory annotation in the public domain. Assigned validators receive notification of new records in the database and are able to cross-reference the citation to ensure record integrity. Validators have the ability to modify any record (deprecating the old record and creating a new one) if an error is found. Further, any contributor to the database can comment on any annotation by marking errors, or adding special reports into function as they see fit. These features of ORegAnno ensure that the collection is of the highest quality and uniquely provides a dynamic view of our changing understanding of gene regulation in the various genomes. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["C. Elegans", "Drosophila melanogaster", "Saccharomyces", "gallus gallus", "human", "rat"] [{"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BC Cancer Agency, Research Centre", "BCGSC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["obig@bcgsc.ca", "oreganno@bcgsc.bc.ca"]}, {"institutionName": "Canadian Insititute for Health Research", "institutionAdditionalName": ["CIHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Michael Smith Foundation for Health Research", "institutionAdditionalName": ["MSFHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msfhr.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Sciences and Engineering Research Council", "institutionAdditionalName": ["NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Release Policy: Open Access", "policyURL": "http://www.bcgsc.ca/data/data-release-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/copyleft/lesser.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://academic.oup.com/nar/article/44/D1/D126/2502683"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/copyleft/lesser.html"}] restricted [] ["unknown"] {} ["none"] http://www.oreganno.org/ [] unknown yes [] [] {} 2014-02-20 2019-11-07 +r3d100010657 INTEGRAL data archives eng [{"additionalName": "International Gamma-Ray Astrophysics Laboratory data Archives", "additionalNameLanguage": "eng"}] https://www.cosmos.esa.int/web/integral/home [] ["inthelp@sciops.esa.int"] This website aggregates several services that provide access to data of the INTEGRAL Mission. ESA's INTErnational Gamma-Ray Astrophysics Laboratory is detecting some of the most energetic radiation that comes from space. It is the most sensitive gamma-ray observatory ever launched. INTEGRAL is an ESA mission in cooperation with Russia and the United States eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008-05-08 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cosmos.esa.int/web/integral/mission-overview [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["IBIS", "JEM-X", "OMC", "PROTON", "SPI", "fundamental physics", "planetary exploration", "solar terrestrial science"] [{"institutionName": "European Space Agency", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Space Astronomy Centre, INTEGRAL Science Operations Centre", "institutionAdditionalName": ["ESAC", "ISOC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cosmos.esa.int/web/integral/about-isoc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "High Energy Astrophysics Department, Space Research Institute", "institutionAdditionalName": ["IKI"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hea.iki.rssi.ru/en/index.php?page=integral", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://hea.iki.rssi.ru/en/index.php?page=contacts"]}, {"institutionName": "INTEGRAL Science Data Centre", "institutionAdditionalName": ["ISDC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.isdc.unige.ch/integral/archive", "institutionIdentifier": ["http://isdc.unige.ch/integral/"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://isdc.unige.ch/integral/support/helpdesk"]}] [{"policyName": "Data rights (p 35ff.) in document 12th Announcement of Opportunity", "policyURL": "https://www.cosmos.esa.int/web/integral/ao12"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://integral.esac.esa.int/AO15/AO-15_Overview_Policies_Procedures.pdf"}] closed [] ["unknown"] {} ["none"] https://www.cosmos.esa.int/web/integral/data-publication-credits [] unknown yes [] [] {} INTEGRAL (The International Gamma-Ray Astrophysics Laboratory) is the second medium-sized mission of ESA's Horizon 2000 Science Programme. INTEGRAL is dedicated to the fine spectroscopy (E/deltaE = 500) and fine imaging (angular resolution: 12 arcmin FWHM) of celestial gamma-ray sources in the energy range 15 keV to 10 MeV with concurrent source monitoring in the X-ray (3-35 keV) and optical (V-band, 550 nm) energy ranges. 2014-03-12 2018-08-03 +r3d100010659 Scientific Drilling Database eng [{"additionalName": "SDDB", "additionalNameLanguage": "eng"}] https://dataservices.gfz-potsdam.de/portal/?fq=datacentre_symbol:DOIDB.SDDB [] ["https://dataservices.gfz-potsdam.de/portal/imprint.html", "kelger@gfz-potsdam.de"] Projects in the International Scientific Continental Drilling Program (ICDP) produce large amounts of data. Since the start of ICDP, data sharing has played an important part in ICDP projects, and the ICDP Operational Support Group, which provides the infrastructure for data capturing for many ICDP projects, has facilitated dissemination of data within project groups. With the online Scientific Drilling Database (SDDB; http://www.scientificdrilling.org), ICDP and GeoForschungsZentrum Potsdam (GFZ), Germany created a platform for the public dissemination of drilling data eng ["disciplinary"] {"size": "347 documents", "updatedp": "2017-06-02"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataservices.gfz-potsdam.de/portal/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Deep Life", "Paleoclimate", "deep drilling", "drill core", "fine-tune climate records", "global change", "samples", "terrestrial environment", "well log"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gfz-potsdam.de/en/contact/"]}, {"institutionName": "International Continental Scientific Drilling Program", "institutionAdditionalName": ["ICDP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icdp-online.org/home/", "institutionIdentifier": ["Wikidata:Q1137602"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icdp-online.org/contact/"]}] [{"policyName": "ICDP Policies", "policyURL": "https://www.icdp-online.org/uploads/media/Charter__ICDP__final.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] closed [] ["eSciDoc"] {} ["DOI"] https://doi.org/10.1594/GFZ.SDDB.1414 [] unknown yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2014-03-13 2021-09-07 +r3d100010660 U.S. Antarctic Program Data Center eng [{"additionalName": "USAP-DC", "additionalNameLanguage": "eng"}] https://www.usap-dc.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.XIxciC", "RRID:SCR_002221", "RRID:nlx_154744"] ["https://www.usap-dc.org/contact", "info@usap-dc.org", "web@usap-dc.org"] The U.S. Antarctic Program Data Center (USAP-DC) supports investigators funded by the National Science Foundation (NSF http://www.nsf.gov/ ) in documenting, preserving, and disseminating their research results. We register datasets in the Antarctic Master Directory (AMD http://gcmd.nasa.gov/portals/amd/ ) to comply with the Antarctic Treaty (http://www.ats.aq/e/ats.htm ); facilitate submission of datasets to long-term archives; and represent the U.S. in Scientific Committee on Antarctic Research (SCAR http://www.scar.org/data-products/scadm ) activities. USAP-DC is a member of the Interdisciplinary Earth Data Alliance (IEDA http://www.iedadata.org/ ) and a partner in the Antarctic and Arctic Data Consortium (A2DC http://www.a2dc.org/ ). eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.usap-dc.org/overview [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climatology", "cryosphere", "earth science", "ecosystem", "glaciology", "human interactions", "meteorology", "ocean", "plants", "polar", "solar activity", "vegetation"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ldeo.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iedadata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "United States Antarctic Program", "institutionAdditionalName": ["USAP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usap.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Management and Data Reporting Requirements for Research Awards Supported by the Office of Polar Programs", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf16055"}, {"policyName": "NSF Dissemination and Sharing of Research Results", "policyURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.usap-data.org/legal.php#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/pubs/2016/nsf16055/nsf16055.jsp"}] restricted [{"dataUploadLicenseName": "How to Contribute Data", "dataUploadLicenseURL": "http://www.usap-dc.org/submit"}] ["unknown"] {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {} USAP-DC is part of the IEDA Data Facility and part of MGDS. USAP-DC also functions as the U.S. National Antarctic Data Center (NADC) in the SCAR Standing Committee on Antarctic Data Management. 2014-01-22 2021-11-17 +r3d100010661 Flanders Marine Institute eng [{"additionalName": "VLIZ", "additionalNameLanguage": "nld"}, {"additionalName": "Vlaams Instituut voor de Zee", "additionalNameLanguage": "nld"}] http://www.vliz.be/en [] ["data@vliz.be"] The Flanders Marine Institute (VLIZ) is a centre for marine and coastal research. As a partner in various projects and networks it promotes and supports the international image of Flemish marine scientific research and international marine education. In its capacity as a coordination and information platform, the Flanders Marine Institute (VLIZ) supports some thousand marine scientists in Flanders by disseminating their knowledge to policymakers, educators, the general public and scientists. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.vliz.be/en/mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Aphia", "Coastal Wiki", "EurOBIS", "IMERS", "IMIS", "Lifewatch", "MDA", "MIDAS", "Marine Regions", "RIB Zeekat", "ScheldeMonitor", "greenhouses", "marine stations"] [{"institutionName": "Flanders Marine Institute", "institutionAdditionalName": ["Vlaams Instituut voor de Zee"], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.vliz.be/en/", "institutionIdentifier": ["ROR:0496vr396"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@vliz.be"]}] [{"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}, {"policyName": "IOC Oceanographic Data Exchange Policy", "policyURL": "https://www.iode.org/index.php?option=com_content&view=article&id=51&Itemid=100040"}, {"policyName": "VLIZ Data Policy", "policyURL": "http://www.vliz.be/en/data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] restricted [{"dataUploadLicenseName": "Data submit guidelines", "dataUploadLicenseURL": "http://www.vliz.be/sites/vliz.be/files/public/docs/DataSubmitGuidelines.pdf"}] ["unknown"] {} ["DOI"] http://www.vliz.be/sites/vliz.be/files/public/docs/DataSubmitGuidelines.pdf [] unknown yes ["WDS"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} VLIZ is covered by Clarivate Data Citation Index. VLIZ is a member of ICSU World Data System (WDS). VLIZ is a partner in three European research infrastructures: LifeWatch focuses on biodiversity research, ICOS monitors the greenhouse gas balance and EMBRC provides access to marine organisms. These projects are part of the European Strategy Forum on Research Infrastructures (ESFRI). Aside VLIZ has an active role in the development of a European Marine Observation and Data Network (EMODnet). 2014-02-14 2020-02-19 +r3d100010662 World Data Center for Geomagnetism, Edinburgh eng [{"additionalName": "WDC - Geomagnetism, Edinburgh", "additionalNameLanguage": "eng"}, {"additionalName": "WDC for Geomag", "additionalNameLanguage": "eng"}] http://www.wdc.bgs.ac.uk/ [] ["http://www.wdc.bgs.ac.uk/contact.html", "wdcgeomag@bgs.ac.uk"] The WDC Geomagnetism, Edinburgh has a comprehensive set of digital geomagnetic data as well as indices of geomagnetic activity supplied from a worldwide network of magnetic observatories. The data and services at the WDC are available for scientific use without restrictions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Geomagnetic Data Master Catalogue", "Geomagnetism Data Portal", "aa index", "geomagnetic observatory", "magnetograms", "solar activity"] [{"institutionName": "British Geological Survey, Geomagnetism Group", "institutionAdditionalName": ["BGS"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.geomag.bgs.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.geomag.bgs.ac.uk/contactus/staff.html?src=topNav"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}, {"policyName": "ICSU-WDS Data Sharing Principles", "policyURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.wdc.bgs.ac.uk/index.html"}] closed [] ["unknown"] {"api": "ftp://ftp.nmh.ac.uk/wdc/", "apiType": "FTP"} ["none"] http://www.wdc.bgs.ac.uk/index.html [] unknown unknown ["WDS"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} WDC geomagnetism, Edinburgh is part of the ICSU World Data System (WDS. The Geomagnetic Data Master Catalogue, containing digital minute and hourly mean data, was formerly hosted within the WDC for Geomagnetism (Copenhagen) at the Danish Meteorological Institute. Responsibility for maintaining and operating this Geomagnetic Data Master Catalogue passed to the British Geological Survey in 2007 and has been incorporated into the WDC for Geomagnetism (Edinburgh). 2014-02-13 2021-09-07 +r3d100010664 World Stress Map eng [{"additionalName": "WSM", "additionalNameLanguage": "eng"}, {"additionalName": "Weltkarte der tektonischen Spannungen", "additionalNameLanguage": "deu"}] http://www.world-stress-map.org/ ["doi:10.5880/WSM.2016.001"] ["http://www.world-stress-map.org/team-partners"] The World Stress Map (WSM) is a global compilation of information on the crustal present-day stress field maintained since 2009 at the Helmholtz Centre Potsdam GFZ German Research Centre for Geosciences. It is a collaborative project between academia and industry that aims to characterize the crustal stress pattern and to understand the stress sources. All stress information is analysed and compiled in a standardized format and quality-ranked for reliability and comparability on a global scale. The WSM is an open-access public database and is used by various academic and industrial institutions working in a wide range of Earth science disciplines such as geodynamics, hazard assessment, hydrocarbon exploitations and engineering. eng ["disciplinary"] {"size": "42.870 data records", "updatedp": "2016-12-22"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.world-stress-map.org [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["basin modelling", "boreholes", "earths's crust", "fault-slip tendency", "geomechanical modelling", "mines", "seismic hazard assessment", "stress field", "tunnels"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["heidbach@gfz-potsdam.de"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": ["Wikidata:Q17102557"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/index.php", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["birgit.mueller@kit.edu"]}] [{"policyName": "Certification of WDS Members", "policyURL": "https://www.worlddatasystem.org/services/certification"}, {"policyName": "ICSU World Data System Constitution & Bylaws", "policyURL": "https://www.worlddatasystem.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.world-stress-map.org/download/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.worlddatasystem.org/services/data-sharing-principles"}] restricted [{"dataUploadLicenseName": "Contribution and Participation", "dataUploadLicenseURL": "http://www.world-stress-map.org/data/"}] ["unknown"] yes {"api": "https://doidb.wdc-terra.org//oaip/", "apiType": "OAI-PMH"} ["DOI"] http://www.world-stress-map.org/download/ [] unknown yes ["WDS"] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The WSM commenced in 1986 as a project of the International Lithosphere Program (ILP) under the leadership of Mary-Lou Zoback. From 1995-2008 it was a project of the Heidelberg Academy of Sciences and Humanities headed by Karl Fuchs and Friedemann Wenzel. Since 2012 the WSM is a member of the ICSU World Data System. 2014-02-17 2020-09-11 +r3d100010665 XMM-Newton Science Archive eng [{"additionalName": "X-ray Multi-Mirror Mission", "additionalNameLanguage": "eng"}, {"additionalName": "XSA", "additionalNameLanguage": "eng"}] http://nxsa.esac.esa.int/nxsa-web/#home ["ISSN 2495-9332"] ["https://www.cosmos.esa.int/web/xmm-newton/xmm-newton-helpdesk"] The European Space Agency's (ESA) X-ray Multi-Mirror Mission (XMM-Newton) was launched by an Ariane 504 on December 10th 1999. XMM-Newton is ESA's second cornerstone of the Horizon 2000 Science Programme. It carries 3 high throughput X-ray telescopes with an unprecedented effective area, and an optical monitor, the first flown on a X-ray observatory. The large collecting area and ability to make long uninterrupted exposures provide highly sensitive observations. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999-12-10 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://sci.esa.int/xmm-newton/31249-summary/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["black hole", "light curves", "satellites", "space observatories", "spectra", "supernova", "x-ray telescopes"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.esa.int/Services/Contacts"]}, {"institutionName": "XMM Newton Science Operations Center", "institutionAdditionalName": ["XMM-NewtonSOC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cosmos.esa.int/web/xmm-newton", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ESA Science and Technology terms and conditions", "policyURL": "http://sci.esa.int/services/33135-terms-and-conditions/"}, {"policyName": "Policies and Procedures", "policyURL": "http://xmm-tools.cosmos.esa.int/external/xmm_user_support/documentation/AOpolicy/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://xmm-tools.cosmos.esa.int/external/xmm_user_support/documentation/AOpolicy/node57.html"}] closed [] ["other"] yes {"api": "http://nxsa.esac.esa.int/nxsa-web/", "apiType": "other"} ["none"] http://xmm-tools.cosmos.esa.int/external/xmm_user_support/documentation/AOpolicy/node58.html [] unknown unknown [] [] {} The SSC represents a consortium of 10 institutes in the ESA community, led by Prof Mike Watson from the Department of Physics and Astronomy at the University of Leicester 2014-03-13 2021-09-07 +r3d100010666 ASAP eng [{"additionalName": "A systematic annotation package for community analysis of genomes", "additionalNameLanguage": "eng"}] https://asap.ahabs.wisc.edu/asap/home.php ["RRID:SCR_001849", "RRID:nif-0000-02571"] ["ecneenoeckwa@wisc.edu"] ASAP (a systematic annotation package for community analysis of genomes) is a relational database and web interface developed to store, update and distribute genome sequence data and gene expression data collected by or in collaboration with researchers at the University of Wisconsin - Madison. ASAP was designed to facilitate ongoing community annotation of genomes and to grow with genome projects as they move from the preliminary data stage through post-sequencing functional analysis. The ASAP database includes multiple genome sequences at various stages of analysis, and gene expression data from preliminary experiments. eng ["institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://asap.ahabs.wisc.edu/asap/ASAP1.htm [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "chromosome", "genetic mapping", "genomics", "nucleotides", "protein"] [{"institutionName": "University of Wisconsin-Madison", "institutionAdditionalName": ["Wisconsin"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wisc.edu/contact-us/"]}, {"institutionName": "University of Wisconsin-Madison, Genome Evolution Laboratory", "institutionAdditionalName": ["Genome Center of Wisconsin"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://asap.ahabs.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://asap.ahabs.wisc.edu/contact/"]}] [{"policyName": "Data Release Policy", "policyURL": "https://asap.ahabs.wisc.edu/asap/ASAP-DataReleasePolicy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.wisconsin.edu/general-counsel/legal-topics/copyright/"}] restricted [{"dataUploadLicenseName": "Adding experimental data", "dataUploadLicenseURL": "https://asap.ahabs.wisc.edu/asap/show_help.php?LocationID=&SequenceVersionID=&GenomeID=&ExpSetID=#_ContributingExperimentalData"}] ["unknown"] yes {} ["none"] http://www.genome.wisc.edu/tools/asap.htm [] yes unknown [] [] {} 2014-03-18 2017-06-08 +r3d100010667 National Air Pollution Surveillance eng [{"additionalName": "NAPS", "additionalNameLanguage": "eng"}, {"additionalName": "RNSPA", "additionalNameLanguage": "fra"}, {"additionalName": "R\u00e9seau national de surveillance de la pollution atmosph\u00e9rique", "additionalNameLanguage": "fra"}] https://www.canada.ca/en/environment-climate-change/services/air-pollution/monitoring-networks-data/national-air-pollution-program.html [] ["Rnspa-napsinfo@ec.gc.ca", "https://www.canada.ca/en/environment-climate-change/corporate/contact.html"] The National Air Pollution Surveillance (NAPS) Program provides accurate and long-term air quality data of a uniform standard across Canada. The NAPS Network has a Canada-Wide database of criteria air contaminants from the early 1970s to the present for designated NAPS sites, as well as provincial, territorial and other sites. Trace contaminants are also monitored at several stations in the network and analyzed by the laboratory at River Road. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1969 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ec.gc.ca/rnspa-naps/default.asp?lang=En&n=6ED32997-1 [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["air quality", "carbon monoxide", "climate change", "environment", "fine particulate matter", "health", "meteorology", "nitrogen dioxide", "ozone", "sulphur dioxid", "waste management", "water", "wildlife"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ec.gc.ca", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "1969", "responsibilityEndDate": "", "institutionContact": ["Rnspa-napsinfo@ec.gc.ca", "dann.tom@etc.ec.gc.ca"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/environment-climate-change/corporate/transparency.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://open.canada.ca/data/en/dataset/1b36a356-defd-4813-acea-47bc3abd859b?lang=en"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Partner of NAPS: https://www.canada.ca/en/environment-climate-change/services/air-pollution/monitoring-networks-data/national-air-pollution-program/partners.html The National Air Pollution Surveillance Network has a Canada-wide database of criteria air contaminants from the early 1970s to the present for designated National Air Pollution Surveillance Network sites, as well as provincial, territorial and other sites. Trace contaminants are also monitored at several stations in the network and analyzed by the air quality research laboratory at River Road. Data is available upon request by email to RNSPA-NAPSINFO@ec.gc.ca 2014-03-20 2021-02-16 +r3d100010668 Met office eng [] http://www.metoffice.gov.uk/research [] ["enquiries@metoffice.gov.uk"] The Met Office is the UK's National Weather Service. We have a long history of weather forecasting and have been working in the area of climate change for more than two decades. As a world leader in providing weather and climate services, we employ more than 1,800 at 60 locations throughout the world. We are recognised as one of the world's most accurate forecasters, using more than 10 million weather observations a day, an advanced atmospheric model and a high performance supercomputer to create 3,000 tailored forecasts and briefings a day. These are delivered to a huge range of customers from the Government, to businesses, the general public, armed forces, and other organisations. eng ["disciplinary"] {"size": "", "updatedp": ""} 1990 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.metoffice.gov.uk/research/overview [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Weather verification", "World climate", "air quality", "atmospheric dispersion", "health", "weather", "weather forecast"] [{"institutionName": "United Kingdom's Department for Business, Innovation and Skills, Met Office", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.metoffice.gov.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiries@metoffice.gov.uk", "http://www.metoffice.gov.uk/about-us/contact", "http://www.metoffice.gov.uk/forms/website-feedback"]}] [{"policyName": "Privacy Policy", "policyURL": "http://www.metoffice.gov.uk/about-us/legal/privacy"}, {"policyName": "Social media policy", "policyURL": "http://www.metoffice.gov.uk/about-us/legal/social-media-policy"}, {"policyName": "Website terms of use", "policyURL": "http://www.metoffice.gov.uk/about-us/legal/tandc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.metoffice.gov.uk/about-us/legal/tandc#Ownership-of-the-Site-Content"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.metoffice.gov.uk/about-us/legal/registered-content"}] restricted [] ["unknown"] {"api": "http://www.metoffice.gov.uk/datapoint/API", "apiType": "other"} ["none"] [] unknown unknown [] [] {"syndication": "http://www.metoffice.gov.uk/weather/uk/rss/help.html", "syndicationType": "RSS"} 2014-03-25 2017-06-08 +r3d100010669 IMEx eng [{"additionalName": "The International Molecular Exchange Consortium", "additionalNameLanguage": "eng"}] http://www.imexconsortium.org/ ["RRID:OMICS_01545", "RRID:SCR_002805", "RRID:nif-0000-00447"] ["http://www.imexconsortium.org/contact-us/", "intact-help@ebi.ac.uk"] The IMEx consortium is an international collaboration between a group of major public interaction data providers who have agreed to share curation effort and develop and work to a single set of curation rules when capturing data from both directly deposited interaction data or from publications in peer-reviewed journals, capture full details of an interaction in a “deep” curation model, perform a complete curation of all protein-protein interactions experimentally demonstrated within a publication, make these interaction available in a single search interface on a common website, provide the data in standards compliant download formats, make all IMEx records freely accessible under the Creative Commons Attribution License eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.imexconsortium.org/about-imex [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["bacteriology", "cancer", "matrix biology", "molecular biology", "oncology", "proteomics"] [{"institutionName": "Biological General Repository for Interaction Datasets", "institutionAdditionalName": ["BioGRID"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://thebiogrid.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Database of Interacting Proteins", "institutionAdditionalName": ["DIP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dip.doe-mbi.ucla.edu/dip/Main.cgi", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Host-Pathogen Interaction Database", "institutionAdditionalName": ["HPIDB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hpidb.igbb.msstate.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "InnateDB", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.innatedb.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IntAct", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/intact/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.imexconsortium.org/webforms/contact-us"]}, {"institutionName": "Interologous Interaction Database", "institutionAdditionalName": ["I2D"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ophid.utoronto.ca/ophidv2.204/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MB Info", "institutionAdditionalName": ["Mechanobio info"], "institutionCountry": "SGP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mechanobio.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MatrixDB", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://matrixdb.univ-lyon1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Molecular INTeraction database", "institutionAdditionalName": ["MINT"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mint.bio.uniroma2.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Molecular connections", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.molecularconnections.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioinformatics, Swiss-Prot group", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://web.expasy.org/groups/swissprot/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universal Protein Resource", "institutionAdditionalName": ["UniProt"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uniprot.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University College London, British Heart Foundation, Cardiovascular Gene Annotation", "institutionAdditionalName": ["UCL-BHF"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/cardiovascular/research/pre-clinical-and-fundamental-science/functional-gene-annotation/cardiovascular-gene", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMEx curation rules", "policyURL": "http://www.imexconsortium.org/curation"}, {"policyName": "IMEx release policy", "policyURL": "http://www.imexconsortium.org/submit-your-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [] ["unknown"] {"api": "http://www.ebi.ac.uk/Tools/webservices/psicquic/registry/registry?action=STATUS&format=txt&protocol=REST", "apiType": "REST"} ["none"] http://www.imexconsortium.org/ [] unknown unknown [] [] {} 2014-03-27 2021-09-07 +r3d100010670 Database of Interacting Proteins eng [{"additionalName": "DIP", "additionalNameLanguage": "eng"}] http://dip.mbi.ucla.edu/dip/ ["RRID:OMICS_01905", "RRID:SCR_003167", "RRID:nif-0000-00569"] ["dip@mbi.ucla.edu", "http://dip.mbi.ucla.edu/dip/feedback"] The DIP database catalogs experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions. The data stored within the DIP database were curated, both, manually by expert curators and also automatically using computational approaches that utilize the the knowledge about the protein-protein interaction networks extracted from the most reliable, core subset of the DIP data. Please, check the reference page to find articles describing the DIP database in greater detail. The Database of Ligand-Receptor Partners (DLRP) is a subset of DIP (Database of Interacting Proteins). The DLRP is a database of protein ligand and protein receptor pairs that are known to interact with each other. By interact we mean that the ligand and receptor are members of a ligand-receptor complex and, unless otherwise noted, transduce a signal. In some instances the ligand and/or receptor may form a heterocomplex with other ligands/receptors in order to be functional. We have entered the majority of interactions in DLRP as full DIP entries, with links to references and additional information eng ["disciplinary"] {"size": "28.867 proteins; 81.781 interactions; 8.233 articles; 834 organisms", "updatedp": "2017-06-09"} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://dip.mbi.ucla.edu/dip/page?id=about [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Caenorhabditis elegans", "Helicobacter pylori", "Norway rat", "baker's yeast", "cow", "escherichia coli", "fruit fly", "human", "mouse", "thale cress"] [{"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at Los Angeles - DOE, Institute for Genomics and Proteomics", "institutionAdditionalName": ["UCLA-DOE Institute for Genomics and Proteomics"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.doe-mbi.ucla.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dip@mbi.ucla.edu"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}, {"policyName": "Terms of Use", "policyURL": "http://dip.doe-mbi.ucla.edu/dip/termsofuse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nd/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "Direct DIP/IMEx submissions", "dataUploadLicenseURL": "http://dip.doe-mbi.ucla.edu/dip/Submissions.cgi"}] ["unknown"] yes {"api": "ftp://dip.doe-mbi.ucla.edu/", "apiType": "FTP"} ["none"] http://dip.doe-mbi.ucla.edu/dip/Articles.cgi [] unknown yes [] [{"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {} Database of Interacting Proteins is partner of International Molecular Exchange Consortium (IMEx) 2014-03-27 2021-09-03 +r3d100010671 IntAct eng [] https://www.ebi.ac.uk/intact/ ["RRID:OMICS_01918", "RRID:SCR_006944", "RRID:nif-0000-03026"] ["https://www.ebi.ac.uk/intact/about/overview", "intact-help@ebi.ac.uk"] IntAct provides a freely available, open source database system and analysis tools for molecular interaction data. All interactions are derived from literature curation or direct user submissions and are freely available. eng ["disciplinary"] {"size": "98.329 interactors; 728.563 interactions; 14.646 publications; 728.563 Binary interaction evidences: 39275 Experiments; 3.624 Controlled vocabulary terms", "updatedp": "2017-06-09"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/intact/about/overview [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Alzheimer", "COVID-19", "Parkinson", "affinomics", "cancer", "canobacteria", "diabetes", "human", "protein"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Heart Lung and Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Michael J. Fox Foundation for Parkinson's Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.michaeljfox.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] ["other"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/intact/current", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/intact/ [] unknown yes [] [] {} IntAct is partner of the International Molecular Exchange Consortium (IMEx); IntAct also incorporated and maintains the IMEx records of the now inactive MPIDB database. Starting September 2013, MINT uses the IntAct database infrastructure to limit the duplication of efforts and to optimise future software development. Data manually curated by the MINT curators can now be accessed from the IntAct homepage at the EBI. Data maintenance and release, MINT PSICQUIC and IMEx services are under the responsibility of the IntAct team, while curation effort will be carried by both groups. 2014-03-28 2021-09-07 +r3d100010672 MatrixDB eng [{"additionalName": "Extracellular Matrix interactions DataBase", "additionalNameLanguage": "eng"}] http://matrixdb.univ-lyon1.fr/ ["ISSN 2426-6949", "RRID:OMICS_01918", "RRID:SCR_001727", "RRID:nif-0000-10226"] ["sylvie.ricard-blum@univ-lyon1.fr"] MatrixDB is a freely available database focused on interactions established by extracellular proteins and polysaccharides. MatrixDB takes into account the multimetric nature of the extracellular proteins (e.g. collagens, laminins and thrombospondins are multimers). MatrixDB includes interaction data extracted from the literature by manual curation in our lab, and offers access to relevant data involving extracellular proteins provided by our IMEx partner databases through the PSICQUIC webservice, as well as data from the Human Protein Reference Database. MatrixDB is in charge of the curation of papers published in Matrix Biology since January 2009 eng ["disciplinary"] {"size": "15.018 Experimentally supported associations; 26.954 Experiments", "updatedp": "2017-06-09"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Polysaccharides", "biomolecules", "collagens", "glycosamoglycan", "laminins", "proteins", "thrombospondins"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": ["http://ec.europa.eu/research/index.cfm?pg=contacts&origin=tools-contact"]}, {"institutionName": "Fondation pour la Recherche M\u00e9dicale", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.frm.org/", "institutionIdentifier": ["ROR:04w6kn183"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "French Institute of bioinformatics", "institutionAdditionalName": ["Institut Francais de bioinformatique", "ifb"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.france-bioinformatique.fr/", "institutionIdentifier": ["ROR:045f7pv37"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["HUPO PSI"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.psidev.info/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de Biologie et Chimie des Prot\u00e9ines", "institutionAdditionalName": ["IBCP"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ibcp.fr/?lang=fr", "institutionIdentifier": ["ROR:0019x5d05"], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": ["matrixdb@ibcp.fr"]}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Region Auvergne - Rhone - Alpes", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.auvergnerhonealpes.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Rhone Alpes Complex Systems Institute", "institutionAdditionalName": ["Institut Rh\u00f4ne-Alpin des Syst\u00e8mes Complexes"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ixxi.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Claude Bernard Lyon 1, Institut de Chimie et de Biochimie Mol\u00e9culaires et Supramol\u00e9culaires", "institutionAdditionalName": ["ICBMS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icbms.fr/", "institutionIdentifier": ["ROR:00gj33s30"], "responsibilityStartDate": "", "responsibilityEndDate": "2016", "institutionContact": ["sylvie.ricard-blum@univ-lyon1.fr"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {"api": "http://matrixdb.univ-lyon1.fr/", "apiType": "REST"} ["none"] http://matrixdb.univ-lyon1.fr/ [] yes yes [] [{"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {} MatrixDB is partner of the International Molcular Exchange Consortium (IMEx) 2014-03-28 2021-09-03 +r3d100010673 The Microbial Protein Interaction Database eng [{"additionalName": "MPIDB", "additionalNameLanguage": "eng"}] http://www.jcvi.org/cms/home/ ["RRID:SCR_001898", "RRID:nif-0000-10467"] ["purchasing@jcvi.org"] >>>!!!<<< as stated 2017-06-09 MPIDB is no longer available under URL http://www.jcvi.org/mpidb/about.php >>>!!!<<< The microbial protein interaction database (MPIDB) aims to collect and provide all known physical microbial interactions. Currently, 24,295 experimentally determined interactions among proteins of 250 bacterial species/strains can be browsed and downloaded. These microbial interactions have been manually curated from the literature or imported from other databases (IntAct, DIP, BIND, MINT) and are linked to 26,578 experimental evidences (PubMed ID, PSI-MI methods). In contrast to these databases, interactions in MPIDB are further supported by 68,346 additional evidences based on interaction conservation, protein complex membership, and 3D domain contacts (iPfam, 3did). We do not include (spoke/matrix) binary interactions infered from pull-down experiments. eng ["disciplinary"] {"size": "250 species, 7810 proteins, 24295 interactions, 26578 experiments, 1708 publications", "updatedp": "2014-03-28"} 2008 2017-06-09 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bacteria", "interologs", "microbial interaction", "species"] [{"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["PSI"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.psidev.info/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "J. Craig Venter Institute", "institutionAdditionalName": ["JCVI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jcvi.org/cms/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}, {"policyName": "JVCI Policy - Promoting Objectivity in Research under Public Health Service Regulations", "policyURL": "http://www.jcvi.org/cms/legal/promoting-objectivity-in-research/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {"api": "ftp://ftp.jcvi.org/", "apiType": "FTP"} [] http://www.jcvi.org/cms/legal/data-disclaimer/ [] unknown unknown [] [] {} MPIDB is partner of the International Molcular Exchange Consortium (IMEx). The Microbial Protein Interaction Database relies on many fine resources maintained elsewhere: UniProt,Gene Ontology, PDBsum,3DID, iPfam, IntAct,BIND, DIP, MINT, Pfam 2014-03-28 2021-10-14 +r3d100010675 Interologous Interaction Database eng [{"additionalName": "I2D", "additionalNameLanguage": "eng"}] http://ophid.utoronto.ca/ophidv2.204/index.jsp ["FAIRsharing_doi:10.25504/FAIRsharing.k56rjs", "RRID:SCR_002957", "RRID:nif-0000-03005"] ["http://ophid.utoronto.ca/ophidv2.204/contact.jsp", "juris@ai.utoronto.ca"] I2D (Interologous Interaction Database) is an on-line database of known and predicted mammalian and eukaryotic protein-protein interactions. It has been built by mapping high-throughput (HTP) data between species. Thus, until experimentally verified, these interactions should be considered "predictions". It remains one of the most comprehensive sources of known and predicted eukaryotic PPI. I2D includes data for S. cerevisiae, C. elegans, D. melonogaster, R. norvegicus, M. musculus, and H. sapiens. eng ["disciplinary"] {"size": "687.072 Source Interactions; 619.398 Predicted Interactions; 1.279.157 total Interactions", "updatedp": "2017-06-12"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://ophid.utoronto.ca/ophidv2.204/database.jsp [{"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["HHV8", "biological networks", "fly", "human", "mouse", "rat", "worm", "yeast"] [{"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Health Network Toronto, Princess Margaret Hospital, Ontario Cancer Institute, Jurisica Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cs.toronto.edu/~juris/home.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cs.toronto.edu/~juris/contact.htm"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ophid.utoronto.ca/ophidv2.204/downloads.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ophid.utoronto.ca/ophidv2.204/downloads.jsp"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {} [] http://ophid.utoronto.ca/ophidv2.204/downloads.jsp [] yes yes [] [{"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {} Interologous Interaction Database I2D is active partner of the International Molcular Exchange Consortium (IMEx). 2014-03-31 2021-10-25 +r3d100010676 InnateDB eng [{"additionalName": "A Knowlede Resource for Innate Immunity Interactions & Pathways", "additionalNameLanguage": "eng"}] https://www.innatedb.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.rb2drw", "OMICS_26579", "RRID:SCR_006714", "RRID:nif-0000-20808"] ["innatedb-mail@sfu.ca"] InnateDB is a publicly available database of the genes, proteins, experimentally-verified interactions and signaling pathways involved in the innate immune response of humans, mice and bovines to microbial infection. The database captures an improved coverage of the innate immunity interactome by integrating known interactions and pathways from major public databases together with manually-curated data into a centralised resource. The database can be mined as a knowledgebase or used with our integrated bioinformatics and visualization tools for the systems level analysis of the innate immune response. eng ["disciplinary"] {"size": "27.172 curated interactions; 367.527 total inerations", "updatedp": "2019-02-12"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bovine", "genes", "human", "immune response", "interactomes", "molecular interaction network", "mouse", "proteins", "rna", "systems biology"] [{"institutionName": "AllerGen", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://allergen-nce.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory Australia", "institutionAdditionalName": ["EMBL Australia"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.emblaustralia.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory Australia, Lynn Group", "institutionAdditionalName": ["EMBL Australia, Lynn"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.emblaustralia.org/research-leadership/sa-node-lynn-group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Flinders University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.flinders.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["PSI"], "institutionCountry": "AUS", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.psidev.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Simon Fraser University, Fiona Brinkman Laboratory", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.brinkman.mbb.sfu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["innatedb-mail@sfu.ca"]}, {"institutionName": "South Australian Health & Medical Research Institute", "institutionAdditionalName": ["SAHMRI"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sahmri.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia, R.E.W. Hancock Laboratory", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cmdr.ubc.ca/bobh/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.innatedb.com/license.jsp"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] ["other"] yes {"api": "https://www.innatedb.com/accessViaWS.jsp", "apiType": "other"} [] https://www.innatedb.com/ [] unknown unknown [] [] {} InnateDB is active partner of the International Molcular Exchange Consortium (IMEx). Pathway data are from following databases: Kyoto encyclopedia of genes and genomes (KEGG), NCI-Nature Pathway Interaction Database (PID), Integrating Network Objects with Hierarchies (INOH) Pathway Database, NetPath and Reactome. A mirror of InnateDB.com hosted by the David Lynn Group in Australia is available at http://innatedb.sahmri.com. 2014-03-31 2019-06-27 +r3d100010677 UniProtKB/Swiss-Prot eng [{"additionalName": "UniProt Knowledgebase", "additionalNameLanguage": "eng"}] http://web.expasy.org/docs/swiss-prot_guideline.html [] [] UniProtKB/Swiss-Prot is the manually annotated and reviewed section of the UniProt Knowledgebase (UniProtKB). It is a high quality annotated and non-redundant protein sequence database, which brings together experimental results, computed features and scientific conclusions. Since 2002, it is maintained by the UniProt consortium and is accessible via the UniProt website. eng ["disciplinary"] {"size": "561.176 sequence entries, 201.758.313 amino acids, from 268.833 references.", "updatedp": "2019-11-17"} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["diseases", "fungi", "human", "insecta", "mammalia", "nematode", "protein", "proteome", "sequence", "taxonomy", "vertebrata", "viridiplantae"] [{"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": ["ROR:002n09z45"], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Uniprot consortium", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uniprot.org/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["help@uniprot.org", "https://www.uniprot.org/contact"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nd/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {"api": "ftp://ftp.expasy.org./databases/swiss-prot/", "apiType": "FTP"} ["none"] https://www.uniprot.org/help/publications [] unknown unknown [] [] {} Swiss-Prot is active partner of the International Molcular Exchange Consortium (IMEx). Swiss-Prot is part of the Uniprot knowledgebase 2014-03-31 2021-09-03 +r3d100010680 UsefulChem eng [] https://www.chemspider.com/Search.aspx?dsn=UsefulChem [] ["https://openwetware.org/wiki/UsefulChem"] >>>!!!<<<2019-02-19: The repository is no longer available>>>!!!<<< >>>!!!<<>>!!!<<< see more information at the Standards tab at 'Remarks' eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 2018-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Arsenic", "Combi Ugi", "HIV", "Malaria", "NCI abtucabcer screeb"] [{"institutionName": "Drexel University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://drexel.edu/", "institutionIdentifier": ["ROR:04bdffz58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.drexel.edu/about/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-sa/2.5/"}] restricted [] ["other"] yes {} ["none"] [] unknown unknown [] [] {} UsefulChem was an Open Notebook Science project in chemistry led by the Bradley Laboratory at Drexel University. The main project currently involves the synthesis of novel anti-malarial compounds. The work was done under Open Notebook Science conditions with the actual detailed lab notebook. Wikispaces was founded in 2005 and has since been used by educators, companies and individuals across the globe. Unfortunately, the time has come where we have had to make the difficult business decision to end the Wikispaces service. 2014-04-04 2021-04-06 +r3d100010681 Italian Centre for Astronomical Archive eng [{"additionalName": "Centro Italiano Archivi Astronomici", "additionalNameLanguage": "ita"}, {"additionalName": "IA2", "additionalNameLanguage": "eng"}] http://ia2.inaf.it/ [] [] The long-term goal of this project is to implement a new strategy for preserving and providing access to the Astrophysical data heritage. IA2 is an ambitious Italian Astrophysical research infrastructure project that aims at co-ordinating different national initiatives to improve the quality of astrophysical data services. It aims at co-ordinating these developments and facilitating access to this data for research purposes. The first working target, is the implementation of the TNG Long-Term Archive (LTA). Its feasibility was demonstrated by the LTA pilot project prototype, funded by CNAA in 2001 and completed successfully in July 2002. The implementation of the TNG archive implies: − interfacing with the Centro "Galileo Galilei" (CGG) for the acquisition of TNG data; − long-term storage of scientific, technical and auxiliary data from the TNG; − providing accessibility by the CGG staff and by the scientific community to original and derived data; − providing tools to support the life cycle of observing proposals. The second target of the proposal aims at ensuring harmonization with other projects related to archiving of data of astrophysical interest, with particular reference to projects involving the Italian astronomical community (LBT, VST, GSC-II, DPOSS, …), to the Italian Solar and Solar System Physics community (SOLAR, SOLRA, ARTHEMIS which form SOLARNET – a future node of EGSO) and to the national and international coordination efforts fostering the idea of a multiwavelength Virtual Astronomical Observatory, and the use of the archived data through the Italian Astronomical Grid. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng", "ita"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://ia2.inaf.it/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ASIAGO", "BaSTI", "EGSO", "ITVO", "LBT", "Molaro ULP", "Nonino ATGC", "REM", "SOLAR", "SOLARNET", "SOLRA", "TNG", "Telescopio Natzionale Galileo"] [{"institutionName": "Fundacion Galileo Galilei - INAF, Telescopio Nazionale Galileo, Fundacion Canaria", "institutionAdditionalName": ["FGG"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tng.iac.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretary_at_tng.iac.es"]}, {"institutionName": "Istituto Nazionale di Astrofisica", "institutionAdditionalName": ["INAF", "National Institute for Astrophysics"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.inaf.it/it", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["IA2@oats.inaf.it"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.tng.iac.es/news/2009/02/01/data_policy/"}] restricted [] ["unknown"] {} ["DOI"] [] unknown unknown ["WDS"] [] {} IA2 is aiming for regular ICSU-WDS membership . The Letter of Agreement (LoA) is Pending (08.01.2019) . IA2, through the VObs.it project, is partner of the International Virtual Observatory Alliance (IVOA). 2014-02-18 2019-01-08 +r3d100010683 HomoMINT eng [] http://mint.bio.uniroma2.it/HomoMINT/Welcome.do [] [] The repository is no longer available. >>>!!!<<<2019-02-19 eng ["disciplinary"] {"size": "330377 interactions; 9627 proteins; 3273 pmids", "updatedp": "2014-04-03"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["human", "inferences", "molecular genetics", "proteins", "virus"] [{"institutionName": "Associazione Italiana Per La Ricerca Sul Cancro", "institutionAdditionalName": ["AIRC"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.airc.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Network of Excellence", "institutionAdditionalName": ["ENFIN"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.enfin.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["HUPO-PSI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.psidev.info/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universita degli Studi di Roma 'Tor Vergata', Dipartimento di Biologia", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://bio.uniroma2.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cesareni@uniroma2.it"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {} [] [] yes unknown [] [] {} Homomint is a web available tool extending protein-protein interactions experimentally verified in models organisms, to the orthologous proteins in Homo sapiens. Similar to other approaches, the orthology groups in HomoMINT are obtained by the reciprocal best hit method as implemented in the Inparanoid algorithm. HomoMINT is active partner of the International Molcular Exchange Consortium (IMEx) and uses HUPO-PSI Standards. 2014-04-01 2019-02-19 +r3d100010684 domino eng [{"additionalName": "domaine peptide interactions", "additionalNameLanguage": "eng"}] [] [] >>>!!!<<< The repository is no longer available. 2019-02-19 eng ["disciplinary"] {"size": "14809 proteins, 200 domains, 972 pmids", "updatedp": "2014-04-03"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["molecular genetics", "peptides", "protein interaction domains"] [{"institutionName": "Associazione Italiana Per La Ricerca Sul Cancro", "institutionAdditionalName": ["AIRC"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.airc.it/", "institutionIdentifier": ["ROR:02g2x7380"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["PSI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.psidev.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universita degli Studi di Roma 'Tor Vergata', Dipartimento di Biologia", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://bio.uniroma2.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://mint.bio.uniroma2.it/domino/contacts.do"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {"api": "http://mentha.uniroma2.it/developers.php", "apiType": "REST"} [] [] unknown unknown [] [] {} DOMINO is an open-access database comprising more than 3900 annotated experiments describing interactions mediated by protein-interaction domains. The curation effort aims at covering the interactions mediated by the following domains (SH3, SH2, 14-3-3, PDZ, PTB, WW, EVH, VHS, FHA, EH, FF, BRCT, Bromo, Chromo, GYF). The interactions deposited in DOMINO are annotated according to the PSI MI standard and can be easily analyzed in the context of the global protein interaction network as downloaded from major interaction databases like MINT, INTACT, DIP, MIPS/MPACT. DOMINO can be searched with a versatile search tool and the interaction networks can be visualized with a convenient graphic display applet that explicitly identifies the domains/sites involved in the interactions.domino is active partner of the International Molcular Exchange Consortium (IMEx). DOMONO uses the HUPO PSI-MI Metadata Standard 2014-04-03 2021-10-05 +r3d100010685 virus mentha eng [{"additionalName": "VirusMINT", "additionalNameLanguage": "eng"}, {"additionalName": "the interactome browser", "additionalNameLanguage": "eng"}] https://virusmentha.uniroma2.it/ ["FAIRsharing_doi:10.25504/FAIRsharing.6w29qp", "OMICS_05572", "RRID:OMICS_01909", "RRID:SCR_005987", "RRID:nif-0000-03636"] ["https://virusmentha.uniroma2.it/contact.php"] virus mentha archives evidence about viral interactions collected from different sources and presents these data in a complete and comprehensive way. Its data comes from manually curated protein-protein interaction databases that have adhered to the IMEx consortium. virus mentha is a resource that offers a series of tools to analyse selected proteins in the context of a network of interactions. Protein interaction databases archive protein-protein interaction (PPI) information from published articles. However, no database alone has sufficient literature coverage to offer a complete resource to investigate "the interactome". virus mentha's approach generates every week a consistent interactome (graph). Most importantly, the procedure assigns to each interaction a reliability score that takes into account all the supporting evidence. virus mentha offers direct access to viral families such as: Orthomyxoviridae, Orthoretrovirinae and Herpesviridae plus, it offers the unique possibility of searching by host organism. The website and the graphical application are designed to make the data stored in virus mentha accessible and analysable to all users.virus mentha superseeds VirusMINT. The Source databases are: MINT, DIP, IntAct, MatrixDB, BioGRID. eng ["disciplinary"] {"size": "5828 proteins; 15967 interactions; 12765 publications", "updatedp": "2019-01-18"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://160.80.34.9/mentha/virusmentha/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "arabidopsis thaliana", "caenorhabditis elegans", "drosophila melanogaster", "escheria coli K-12", "human", "molecular genetics", "mus musculus", "rattus norvegicus", "saccharomyces cerevisiae S288c"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["CORDIS FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/guidance/archive_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fondo per gli Investimenti della Ricerca di Base", "institutionAdditionalName": ["FIRB", "Fund for Investment in Basic Research"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://firb.miur.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["PSI"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.psidev.info/index.php/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tor Vergata University, Department of Biology, Molecular Genetics Group", "institutionAdditionalName": ["Universita degli Studi di Roma 'Tor Vergata', Dipartimento di Biologia"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://bio.uniroma2.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cesareni@uniroma2.it", "http://bio.uniroma2.it/contatti/", "sinnefa@gmail.com"]}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "IMEx data submission", "dataUploadLicenseURL": "http://www.imexconsortium.org/submit-your-data"}] [] yes {"api": "http://mentha.uniroma2.it/developers.php", "apiType": "REST"} ["none"] http://160.80.34.9/mentha/virusmentha/about.php [] unknown unknown [] [] {} Thank you for your interest in VirusMINT http://mint.bio.uniroma2.it/virusmint/Welcome.do. Unfortunately MINT related websites are not all available at the moment. MINT is currently undergoing a series of updates, sorry for the inconvenience. We have developed a similar resource to browse interactions, viral interactions included. A beta version of virus mentha can be found at virus mentha. virus mentha is active partner of the International Molcular Exchange Consortium (IMEx). 2014-04-03 2021-09-09 +r3d100010689 Smithsonian Tropical Research Institute Logo - Panama eng [{"additionalName": "CTFS-Panama", "additionalNameLanguage": "eng"}] http://ctfs.si.edu/PanamaAtlas/datasets/ [] ["sautua@si.edu"] Welcome to the digital flora of Panama. You may access the taxonomic list of lianas, common trees, shrubs and palms by species name, family, or by their common names in Panama. There are for each species: a botanical description, photos, scans, drawings, and a distribution map showing its presence or absence in a series of floristic inventories and plots established by the Center for Tropical Forest Science in the Panama Canal watershed. A map of its distribution in the countries of Panama and its neighbor Costa Rica includes data from the Global Biodiversity Information Facility (GBIF) network (https://www.gbif.org/). Some families include descriptions. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Costa Rica", "Panama", "biological diversity", "lianas", "tree census", "tropical trees"] [{"institutionName": "Smithsonian Tropical Research Institute", "institutionAdditionalName": ["STRI"], "institutionCountry": "PAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://stri.si.edu/", "institutionIdentifier": ["ROR:035jbxr46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://stri.si.edu/contact"]}] [{"policyName": "Policies and Reports", "policyURL": "https://www.si.edu/About/Policies#si-field-collection-tabs-634401713-3"}, {"policyName": "Smithsonian Institution's Privacy Statement", "policyURL": "https://www.si.edu/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.si.edu/termsofuse"}] closed [] ["unknown"] no {} ["none"] https://www.si.edu/termsofuse [] unknown unknown [] [] {} Part of a network https://forestgeo.si.edu/ (r3d100000033) 2012-11-05 2021-10-05 +r3d100010690 Khazar University Institutional Repository eng [{"additionalName": "KUIR", "additionalNameLanguage": "eng"}] http://dspace.khazar.org/jspui/ [] ["tzayseva@gmail.com"] The Khazar University Institutional Repository (KUIR), a suite of services offered by the Library Information Center, is an institutional repository maintained to support the university's researchers, collaborators, and students. Repository content consists of collections of research materials in digital format produced and selected by Khazar University faculty and their collaborators. eng ["institutional"] {"size": "2.572 items", "updatedp": "2019-02-21"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Khazar University, Library and Information Center", "institutionAdditionalName": ["LIC"], "institutionCountry": "AZE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.khazar.org/en/menus/99/library_and_information_center", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tzayseva@gmail.com"]}] [{"policyName": "DSPACE Help", "policyURL": "http://dspace.khazar.org/jspui/help/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://dspace.khazar.org/jspui/help/index.html"}] restricted [] ["DSpace"] yes {} ["hdl"] [] unknown yes [] [] {} 2013-07-22 2021-08-25 +r3d100010691 Scholars Portal Dataverse eng [{"additionalName": "SP Dataverse Network", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse.xhtml ["FAIRsharing_doi:10.25504/FAIRsharing.kwzydf"] ["dataverse@scholarsportal.info"] The Scholars Portal Dataverse network is a repository for research data collected by individuals and organizations associated with subscribing Canadian universities. The Dataverse platform makes it easy for researchers to deposit data, create appropriate metadata, and version documents as you work. Access to data and supporting documentation can be controlled down to the file level, and researchers can choose to make content available publicly, only to select individuals, or to keep it completely locked. eng ["institutional"] {"size": "482 Dataverses; 2,462 Datasets; 35,234 files", "updatedp": "2020-02-18"} 2011 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dataverse.scholarsportal.info/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": ["RRID:SCR_001997", "RRID:nif-0000-00316"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca", "institutionIdentifier": ["ROR:028215596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/spstaff"]}] [{"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse Guide", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User Guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.scholarsportal.info/guides/en/4.8.6/user/dataset-management.html#terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use, User uploads", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.5/api/sword.html", "apiType": "SWORD"} ["DOI"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Terms of reference and format for citing the datasets in this repository have been given along with all the datasets archived. Scholars Portal Dataverse is part of the Dataverse Project. 2012-07-23 2020-02-18 +r3d100010692 ProteomeXchange eng [{"additionalName": "PX", "additionalNameLanguage": "eng"}] http://www.proteomexchange.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.92dt9d", "MIR:00000513", "OMICS_02458", "RRID:SCR_004055", "RRID:nlx_158620"] ["http://www.proteomexchange.org/contact/index.html"] The ProteomeXchange consortium has been set up to provide a single point of submission of MS proteomics data to the main existing proteomics repositories, and to encourage the data exchange between them for optimal data dissemination. Current members accepting submissions are: The PRIDE PRoteomics IDEntifications database at the European Bioinformatics Institute focusing mainly on shotgun mass spectrometry proteomics data PeptideAtlas/PASSEL focusing on SRM/MRM datasets. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.proteomexchange.org/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["MS proteomics data", "mass spectrometry", "protein / peptide identifications", "protein identification", "proteomics"] [{"institutionName": "EMBL-EBI", "institutionAdditionalName": ["European Molecular Biology Laboratory, The European Bioinformatics Institute"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["CORDIS FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wayback.archive-it.org/12090/*/cordis.europa.eu/fp7", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ProteomeXchange Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.proteomexchange.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] restricted [] ["unknown"] {"api": "ftp://ftp.pride.ebi.ac.uk/", "apiType": "FTP"} [] [] unknown yes [] [] {} is covered by Elsevier. Tutorial for submissions: http://www.proteomexchange.org/docs/guidelines_px.pdf Project organization/partners: http://www.proteomexchange.org/project-organization 2013-07-23 2022-01-05 +r3d100010693 NEPTUNE Canada eng [{"additionalName": "NEPTUNE Canada regional network", "additionalNameLanguage": "eng"}, {"additionalName": "Neptune in the NE Pacific", "additionalNameLanguage": "eng"}, {"additionalName": "North-East Pacific Time-series Undersea Networked Experiments", "additionalNameLanguage": "eng"}] http://www.neptunecanada.ca/ [] [] >>>>!!!<<< NEPTUNE Canada is now part of Ocean Networks Canada and this website is being phased out. Please visit us on our new website at oceannetworks.ca >>>!!!<<< NEPTUNE Canada, the North-East Pacific Time-series Undersea Networked Experiments, is the world's first regional scale cabled deep ocean observing network. It consists of an 800km network of electro‐optic cable laid on the seabed over the northern Juan de Fuca tectonic plate, off the coast of British Columbia. This tectonic plate serves as an exceptional natural laboratory for ocean observation and experiments. NEPTUNE Canada instruments yield continuous real‐time data and imagery from the ocean surface to beneath the seafloor, and from the coast to the deep sea. They respond to events such as earthquakes, tsunamis, fish migrations, plankton blooms, storms and volcanic eruptions. NEPTUNE Canada offers a unique and exciting approach to ocean science. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Britisch Columbia", "North East Pacific", "analysis of chemical processes", "analysis of methane gas", "deep sea", "earthquakes and tsunamis", "marine ecosystems", "measurement of seismic acitvity", "ocean science", "ocean-atmosphere interactions", "plate tectonics", "real time data", "undersea network"] [{"institutionName": "British Columbia Knowledge Development Fund", "institutionAdditionalName": ["BCKDF"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/governments/about-the-bc-government/technology-innovation/bckdf", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Innovation.ca", "institutionAdditionalName": ["Canada foundation for innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ocean Networks Canada, Ocean Observatory", "institutionAdditionalName": ["ONC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.oceannetworks.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["http://www.oceannetworks.ca/about-us/contact-us"]}, {"institutionName": "University of Victoria", "institutionAdditionalName": ["UVic"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uvic.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy", "policyURL": "http://www.oceannetworks.ca/data-tools/data-help/data-usage-policy"}, {"policyName": "Legal Notices", "policyURL": "http://www.oceannetworks.ca/legal-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.oceannetworks.ca/legal-notices"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Ocean Networks Canada (ONC) is a world-leading organization supporting ocean discovery and technological innovation. ONC is a not-for-profit society, established in 2007 by the University of Victoria under the BC Society Act. Under a Management Agreement with the University, the purpose of ONC is to govern, manage and develop: the Ocean Networks Canada Observatory (comprised of the VENUS and NEPTUNE Canada networks) as a national research platform; and the ONC Centre for Enterprise and Engagement as a federal centre of excellence for commercialization and research. Partners and Funders: https://www.oceannetworks.ca/innovation-centre/partners-networks/global-partnerships 2013-07-29 2021-10-05 +r3d100010694 eng [{"additionalName": "Initiative ontarienne en mati\u00e8re de documentation des donn\u00e9es, de service d'extraction et d'infrastructure", "additionalNameLanguage": "fra"}, {"additionalName": "Ontario Data Documentation, Extraction Service and Infrastructure", "additionalNameLanguage": "eng"}] http://search2.odesi.ca/ [] ["https://spotdocs.scholarsportal.info/display/odesi/Local+data+contacts", "odesi-help@scholarsportal.info"] is a digital repository for social science data, including polling data. Data collections are: Statistics Canada, Canadian Gallup Polls, CORA - Canadian Opinion Research Archive, ICPSR - Interuniversity Consortium for Political and Social Research. eng ["disciplinary", "institutional"] {"size": "over 5.400 datasets; 19.900 additional dataset descriptions", "updatedp": "2019-12-05"} 2007 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://odesi1.scholarsportal.info/webview/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["accounting and finance", "business", "census of canada", "education", "geography", "health", "marketing", "polls", "social sciences", "statistics"] [{"institutionName": " contributors", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://spotdocs.scholarsportal.info/display/odesi/Contributors", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Government and consumer Services, Broader Public Sector", "institutionAdditionalName": ["BPS"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.doingbusiness.mgs.gov.on.ca/mbs/psb/psb.nsf/English/BPSSC-Sec", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["ocul@ocul.on.ca", "odesi-help@scholarsportal.info"]}, {"institutionName": "Scholars Portal", "institutionAdditionalName": ["University of Toronto, Robarts Library"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["odesi-help@scholarsportal.info"]}] [{"policyName": "CPRN conditions of attribution", "policyURL": "https://www.cprn.fr/beneficiaire/les-conditions-dattribution"}, {"policyName": "odesi Terms of Use", "policyURL": "http://search2.odesi.ca/contact/use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.nesstar.com/help/4.0/server/license.html#2"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://search1.odesi.ca/contact/use.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.statcan.gc.ca/dli-idd/dli-idd-eng.htm"}] restricted [{"dataUploadLicenseName": "Protocols for accepting data", "dataUploadLicenseURL": "https://spotdocs.scholarsportal.info/display/odesi/Protocol+for+accepting+data"}] ["Nesstar"] yes {} ["none"] http://guides.scholarsportal.info/content.php?pid=218988&sid=1819218 [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://search2.odesi.ca/home/new-rss.html", "syndicationType": "RSS"} The datasets available in are available to individuals affiliated with OCUL member institutions only at this time. However, anyone can use the search functionality and freely available metadata to identify datasets of interest to them. They can then contact the data producer directly for information on obtaining access to the data. Non-OCUL members are welcome to contact us for assistance in contacting data producers. was developed from 2007 to 2009 as a jointly funded project between the Ontario Council of University Libraries (OCUL) and OntarioBuys. As of October 2009, the project becomes an ongoing service within the highly successful Scholars Portal model. uses the Data Documentation Initiative (DDI) social science data standard. 2013-07-31 2019-12-05 +r3d100010696 Global Catalogue of Microorganisms eng [{"additionalName": "GCM", "additionalNameLanguage": "eng"}] http://gcm.wfcc.info/ ["RRID:SCR_016460"] ["http://gcm.wfcc.info/contact/"] WFCC Global Catalogue of Microorganisms (GCM) is expected to be a robust, reliable and user-friendly system to help culture collections to manage, disseminate and share the information related to their holdings. It also provides a uniform interface for the scientific and industrial communities to access the comprehensive microbial resource information. eng ["disciplinary"] {"size": "Strains 467.434; Species 57.513; Culture Collections 133", "updatedp": "202012-29"} 2011-05-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://gcm.wfcc.info/overview/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["algae", "antibody", "archaea", "bacteria", "biosynthesis", "cyanobacteria", "fungi", "phage", "plasmid", "protozoa", "viruses"] [{"institutionName": "Chinese Academy of Sciences, Institute of Microbiology, Information Network Center", "institutionAdditionalName": ["IMCAS"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.im.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ma@im.ac.cn", "wulh@im.ac.cn"]}, {"institutionName": "World Federation for Culture Collections", "institutionAdditionalName": ["WFCC"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wfcc.info/", "institutionIdentifier": ["VIAF:124354099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wfcc.info/contact/", "philippe.desmeth@belspo.be"]}] [{"policyName": "WFCC guidelines", "policyURL": "http://www.wfcc.info/guidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://gcm.wfcc.info/login/copyright.jsp?reg_username="}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://gcm.wfcc.info/login/copyright.jsp?reg_username="}] restricted [] [] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Global Catalogue of Microorganisms is covered by Thomson Reuters Data Citation Index. 2013-08-05 2020-12-29 +r3d100010699 ICRISAT Dataverse eng [{"additionalName": "ICRISAT Research Data", "additionalNameLanguage": "eng"}, {"additionalName": "International Crops Research Institute for the Semi-Arid Tropics Dataverse Network", "additionalNameLanguage": "eng"}] http://dataverse.icrisat.org/ [] ["a.rathore@cgiar.org"] ICRISAT performs crop improvement research, using conventional as well as methods derived from biotechnology, on the following crops: Chickpea, Pigeonpea, Groundnut, Pearl millet,Sorghum and Small millets. ICRISAT's data repository collects, preserves and facilitates access to the datasets produced by ICRISAT researchers to all users who are interested in. Data includes Phenotypic, Genotypic, Social Science, and Spatial data, Soil and Weather. eng ["disciplinary", "institutional"] {"size": "5 Dataverses; 415 Studies; 3.081 Files", "updatedp": "2020-02-18"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cgiar.org/research/center/icrisat/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Asia", "agricultural research", "crop science", "economic growth", "food sufficiency", "genotypes", "health and nutrition", "phenotypes", "poverty", "sub-Saharan Africa", "women empowerment"] [{"institutionName": "CGIAR System Organization", "institutionAdditionalName": ["CGIAR", "Consultative Group on International Agricultural Research"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cgiar.org/", "institutionIdentifier": ["ROR:04c4bm785"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dataverse Network Project", "institutionAdditionalName": ["DVN"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "International Crops Research Institute for the Semi-Arid Tropics", "institutionAdditionalName": ["ICRISAT"], "institutionCountry": "MWI", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.icrisat.org/", "institutionIdentifier": ["ROR:02g43d244"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icrisat.org/contacts/"]}] [{"policyName": "CGIAR Data Management and Open Access Policy", "policyURL": "http://www.icrisat.org/policy-on-data-management/"}, {"policyName": "Dataverse Network Guides", "policyURL": "http://guides.dataverse.org/en/4.4/user/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [{"dataUploadLicenseName": "Dataset + File Management", "dataUploadLicenseURL": "http://guides.dataverse.org/en/4.4/user/dataset-management.html?highlight=license"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} ICRISAT Dataverse is covered by Clarivate Data Citation Index. ICRISAT Dataverse Network is part of the IQSS Dataverse Network. 2013-07-09 2021-09-03 +r3d100010700 German Centre for Cancer Registry Data eng [{"additionalName": "Zentrum f\u00fcr Krebsregisterdaten", "additionalNameLanguage": "deu"}, {"additionalName": "ZfKD", "additionalNameLanguage": "deu"}] https://www.krebsdaten.de/Krebs/DE/Home/homepage_node.html [] ["https://www.krebsdaten.de/Krebs/EN/Content/ZfKD/Contact/contact_node.html", "krebsdaten@rki.de"] The population-based cancer registries in each German federal state transfer data to the German Centre for Cancer Registry Data, as required by the Federal Cancer Registry Data Act. These data are combined, quality-checked, analysed and evaluated, and the results published in collaboration with the public health institutions of the federal states. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010-01-01 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.krebsdaten.de/Krebs/DE/Content/ZfKD/zfkd_node.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["breast cancer", "cervical cancer", "colorectal cancer", "leukaemias", "lung cancer", "pancreatic cancer", "prostate cancer", "stomach cancer", "testicular cancer"] [{"institutionName": "Robert Koch-Institut", "institutionAdditionalName": ["RKI"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rki.de/EN/Home/homepage_node.html", "institutionIdentifier": ["RRID:SCR_011500", "RRID:nlx_157722"], "responsibilityStartDate": "2010-01-01", "responsibilityEndDate": "", "institutionContact": ["https://www.rki.de/EN/Service/Contact/Contact_node.html;jsessionid=539DE4C7293EB451A1D6F49AA08CD892.1_cid390"]}] [{"policyName": "Nutzung von Datens\u00e4tzen", "policyURL": "http://www.krebsdaten.de/Krebs/DE/Content/Scientific_Use_File/Mustervereinbarung/mustervereinbarung_download.pdf?__blob=publicationFile=publicationFile"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.krebsdaten.de/Krebs/EN/Service/Imprint/imprint_node.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.krebsdaten.de/Krebs/EN/Content/ScientificUseFile/Information_about_application/information_about_application_node.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} In order to promote the more intensive use of cancer registry data for the purpose of epidemiological research, the Centre for Cancer Registry Data (ZfKD) – in accordance with the Federal Cancer Registry Data Act (BKRG) - makes the data of the Epidemiological Cancer Registries in Germany available to third parties on application. To that end a justified, particularly scientific interest must be credibly demonstrated. On approval of the application following assessment by the Advisory Committee of the ZfKD, the anonymised data is made available for the respective planned project. 2013-07-24 2021-07-12 +r3d100010701 ScholarSphere eng [{"additionalName": "PennState ScholarSphere", "additionalNameLanguage": "eng"}] https://scholarsphere.psu.edu/ [] ["https://scholarsphere.psu.edu/contact"] ScholarSphere is an institutional repository managed by Penn State University Libraries. Anyone with a Penn State Access ID can deposit materials relating to the University’s teaching, learning, and research mission to ScholarSphere. All types of scholarly materials, including publications, instructional materials, creative works, and research data are accepted. ScholarSphere supports Penn State’s commitment to open access and open science. Researchers at Penn State can use ScholarSphere to satisfy open access and data availability requirements from funding agencies and publishers. eng ["institutional"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://scholarsphere.psu.edu/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Pennsylvania State University, Information Technology Services", "institutionAdditionalName": ["PennState Information Technology Services"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://it.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["ITservicedesk@psu.edu"]}, {"institutionName": "Pennsylvania State University, Libraries", "institutionAdditionalName": ["PennState University, Libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://libraries.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://libraries.psu.edu/ask"]}] [{"policyName": "Guidelines and Policies", "policyURL": "https://scholarsphere.psu.edu/about/"}, {"policyName": "Terms of Use for ScholarSphere", "policyURL": "https://scholarsphere.psu.edu/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://scholarsphere.psu.edu/about"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://scholarsphere.psu.edu/terms/"}] restricted [{"dataUploadLicenseName": "Creative Commons license", "dataUploadLicenseURL": "https://scholarsphere.psu.edu/about"}, {"dataUploadLicenseName": "Deposit Policy", "dataUploadLicenseURL": "https://scholarsphere.psu.edu/about"}] ["unknown"] yes {} ["DOI", "none"] [] unknown yes [] [] {} 2013-08-09 2021-05-04 +r3d100010703 UCLA Social Science Data Archive Dataverse eng [{"additionalName": "SSDA", "additionalNameLanguage": "eng"}, {"additionalName": "Social Science Data Archive - UCLA (formerly)", "additionalNameLanguage": "eng"}] https://www.library.ucla.edu/location/social-science-data-archive [] ["https://dataverse.harvard.edu/dataverse/ssda_ucla", "lib_archivehelp@em.ucla.edu"] The Social Science Data Archives maintains a collection of machine-readable survey, census, and administrative data files and provides access to publicly available data. A portion of the collection is focused on Los Angeles from a demographic, economic, social, or political viewpoint. Los Angeles-specific data may also be extracted from files in the collection that contain data from studies covering demographic areas larger than Los Angeles. eng ["disciplinary"] {"size": "1 dataverses, 569 datasets, 4.358 files", "updatedp": "2018-11-22"} 1977 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.library.ucla.edu/data-archive-mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "demography", "economics", "geography", "historical trends", "microdata", "politics", "social sciences"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ICPSR", "institutionAdditionalName": ["Inter-university Consortium for Political and Social Research"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jamison@library.ucla.edu"]}, {"institutionName": "Roper Center for Public Opinion Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ropercenter.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ropercenter.cornell.edu/contact-us/"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "University of California, Los Angeles Library", "institutionAdditionalName": ["UCLA Library"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.library.ucla.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.library.ucla.edu/contact"]}] [{"policyName": "Collection and Archiving policies", "policyURL": "https://www.library.ucla.edu/social-science-data-archive/archive-collection-archiving-policy"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://policy.ucop.edu/doc/2100007/FairUse"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.library.ucla.edu/support/publishing-data-management/scholarly-communication-resources-education/ucla-library-copyright-policy/ucla-copyright-policies"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["unknown"] {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Data can be archived or by SSDA itself or by ICPSR or by UCLA Social Science Data Archive Dataverse (http://thedata.harvard.edu/dvn/dv/ssda_ucla) or by UCLA Library or by California Digital Library. Data are primarily acquired through UCLA’s membership in the Inter-university Consortium for Political and Social Research (ICPSR). 2013-08-15 2021-10-15 +r3d100010708 CEPDB eng [{"additionalName": "The Harvard Clean Energy Project Database", "additionalNameLanguage": "eng"}] https://www.matter.toronto.edu/basic-content-page/open-software-data [] ["alan@aspuru.com"] -----<<<<< The repository is no longer available. This record is out-dated. The Matter lab provides the archived database version of 2012 and 2013 at https://www.matter.toronto.edu/basic-content-page/data-download. Data linked from the World Community Grid - The Clean Energy Project see at https://www.worldcommunitygrid.org/research/cep1/overview.do and on fighshare https://figshare.com/articles/dataset/moldata_csv/9640427 >>>>>----- The Clean Energy Project Database (CEPDB) is a massive reference database for organic semiconductors with a particular emphasis on photovoltaic applications. It was created to store and provide access to data from computational as well as experimental studies, on both known and virtual compounds. It is a free and open resource designed to support researchers in the field of organic electronics in their scientific pursuits. The CEPDB was established as part of the Harvard Clean Energy Project (CEP), a virtual high-throughput screening initiative to identify promising new candidates for the next generation of carbon-based solar cell materials. eng ["disciplinary"] {"size": "over 400 TB data", "updatedp": "2013-08-20"} 2008 2018 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.worldcommunitygrid.org/research/cep1/overview.do [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemistry", "energy", "organic photovoltaic (OPV)", "organic solar cells", "photosyntetics", "quantum computation", "quantum information", "renewable energy materials", "solar engergy"] [{"institutionName": "Harvard Clean Energy Project", "institutionAdditionalName": ["CEP"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Matter Lab, Aspuru-Guzik Research Group", "institutionAdditionalName": ["Aspuru-Guzik group"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://matter.toronto.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://matter.toronto.edu/about-us/"]}, {"institutionName": "World Community Grid - The Clean Energy Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.worldcommunitygrid.org/research/cep1/overview.do", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.worldcommunitygrid.org/research/cep2/overview.do"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2013-08-19 2021-07-12 +r3d100010710 Stanford Digital Repository eng [{"additionalName": "SDR", "additionalNameLanguage": "eng"}] https://library.stanford.edu/research/stanford-digital-repository [] ["https://library.stanford.edu/research/stanford-digital-repository/contact-us"] The Stanford Digital Repository (SDR) is Stanford Libraries' digital preservation system. The core repository provides “back-office” preservation services – data replication, auditing, media migration, and retrieval -- in a secure, sustainable, scalable stewardship environment. Scholars and researchers across disciplines at Stanford use SDR repository services to provide ongoing, persistent, reliable access to their research outputs. eng ["institutional"] {"size": "1.995 collections, 242 million files, 536 terabytes", "updatedp": "2018-07-23"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://library.stanford.edu/research/stanford-digital-repository/sdr-overview [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sdr-contact@lists.stanford.edu."]}, {"institutionName": "Stanford University, Stanford University Libraries", "institutionAdditionalName": ["Stanford University Libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sdr-contact@lists.stanford.edu"]}] [{"policyName": "Copyright, licenses and access restrictions", "policyURL": "https://library.stanford.edu/research/stanford-digital-repository/faqs/copyright-licenses-and-access-restrictions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.stanford.edu/research/stanford-digital-repository/faqs/copyright-licenses-and-access-restrictions"}] restricted [{"dataUploadLicenseName": "SDR Terms of Deposit", "dataUploadLicenseURL": "https://stanford.box.com/s/lozngarhdzj56z44la38v1zn3a1ggbyu"}] ["other"] yes {"api": "http://iiif.io/technical-details/", "apiType": "other"} ["DOI", "PURL", "other"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://library.stanford.edu/feeds/news/all", "syndicationType": "RSS"} 2013-08-20 2018-12-19 +r3d100010712 Nucastrodata.org eng [{"additionalName": "CINA", "additionalNameLanguage": "eng"}, {"additionalName": "Computational Infrastructure for Nuclear Astrophysics", "additionalNameLanguage": "eng"}] http://www.nucastrodata.org/ [] ["coordinator@nucastrodata.org"] N U C A S T R O D A T A . O R G is your WWW resource for utilizing nuclear information in studies of astrophysical systems. This site hyperlinks all online nuclear astrophysics datasets, hosts the Computational Infrastructure for Nuclear Astrophysics, and provides a mechnanism for researchers to share files online. We created the first online "cloud computing" system for nuclear astrophysics, a virtual pipeline that enables results from the nuclear laboratory to be rapidly incorporated into astrophysical simulations. This system, the Computational Infrastructure for Nuclear Astrophysics or CINA, came online at nucastrodata.org eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://nucastrodata.org/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["S-factors", "cross-sections", "nuclear astrophysics", "nuclear structure", "nuclide charts", "reaction rate collections"] [{"institutionName": "ORNL", "institutionAdditionalName": ["Oak Ridge National Laboratory, Physics Division"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.phy.ornl.gov/groups/astro/nucleosynthesis/software.html", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["coordinator@nucastrodata.org", "smithms@ornl.gov"]}, {"institutionName": "US Department of Energy, Office of Science, Nuclear Physics NP", "institutionAdditionalName": ["energy.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/np/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}, {"dataLicenseName": "other", "dataLicenseURL": "https://energy.gov/about-us/web-policies"}] restricted [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2013-08-30 2018-12-19 +r3d100010713 SAO/NASA Astrophysics Data System Dataverse eng [{"additionalName": "ADS Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/ADS [] ["www-admin@cfa.harvard.edu"] This Dataverse will contain data generated by ADS team members using ADS data. eng ["disciplinary", "institutional"] {"size": "5 datasets; 10 files", "updatedp": "2018-11-22"} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://dataverse.org/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bibliometrics", "usage data"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact/", "support@dataverse.org"]}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics, Smithsonian Astrophysical Observatory", "institutionAdditionalName": ["SAO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/sao/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The SAO/NASA Astrophysics Data System", "institutionAdditionalName": ["ADS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ads.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ads@cfa.harvard.du"]}] [{"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "Terms and conditions of Use", "policyURL": "http://doc.adsabs.harvard.edu/use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} SAO/NASA Astrophysics Data System Dataverse is covered by Thomson Reuters Data Citation Index. 2013-08-30 2021-08-25 +r3d100010714 UK Solar System Data Centre eng [{"additionalName": "UKSSDC", "additionalNameLanguage": "eng"}] https://www.ukssdc.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.1frnts"] [] The UK Solar System Data Centre (UKSSDC) provides a STFC and NERC jointly funded central archive and data centre facility for Solar System science in the UK. The facilities include the World Data Centre for Solar-Terrestrial Physics, Chilton and the Cluster Ground-Based Data Centre. The UKSSDC supports data archives for the whole UK solar system community encompassing solar, inter-planetary, magnetospheric, ionospheric and geomagnetic science. The UKSSDC is part of RAL Space based at the STFC run Rutherford Appleton Laboratory in Oxfordshire. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.ukssdc.ac.uk/about_us.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ionosphere", "solar geophysics", "solar wind"] [{"institutionName": "Natural Envionment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}, {"institutionName": "STFC Rutherford Appleton Laboratory, Centre for Environmental Data Analysis", "institutionAdditionalName": ["CEDA", "RAL Space", "STFC Rutherford Appleton Laboratory, Centre for Environmental Data Archival (formerly)"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ceda.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ceda.ac.uk/contact/", "support@ceda.ac.uk"]}, {"institutionName": "Science & Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.stfc.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stfc.ac.uk/about-us/contact-us/"]}] [{"policyName": "Data Service Policy", "policyURL": "https://www.ukssdc.ac.uk/Help/General/Policy.html"}, {"policyName": "NERC Data policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/data-policy/"}, {"policyName": "NERC Licensing & Charging Policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/nerc-licensing-charging-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nerc.ukri.org/research/sites/data/policy/data-policy/"}] restricted [{"dataUploadLicenseName": "OGL", "dataUploadLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] ["unknown"] {} ["none"] [] unknown unknown [] [] {} The British Atmospheric Data Centre (BADC), NERC Earth Observation Data Centre (NEODC) and the UK Solar System Data Centre (UKSSDC) are the designated NERC data centres for the UK atmospheric, earth observation and near-Earth environment communities. As such they are responsible for the long term archiving of research data produced by NERC funded atmospheric, earth observation and near-Earth environment academic research. The BADC, NEODC and UKSSDC are operated by CEDA. 2013-08-30 2021-09-03 +r3d100010716 CRAWDAD eng [{"additionalName": "Community Resource for Archiving Wireless Data At Dartmouth (US site)", "additionalNameLanguage": "eng"}, {"additionalName": "Mirror provided by the School of Computer Science at St Andrews (UK mirror)", "additionalNameLanguage": "eng"}] https://crawdad.org [] ["crawdad@crawdad.org"] CRAWDAD is the Community Resource for Archiving Wireless Data, a wireless network data resource for the research community. This archive has the capacity to store wireless trace data from many contributing locations, and staff to develop better tools for collecting, anonymizing, and analyzing the data. We work with community leaders to ensure that the archive meets the needs of the research community. eng ["disciplinary"] {"size": "125 datasets; 22 tools", "updatedp": "2018-11-22"} 2005 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40802 Communication, High-Frequency and Network Technology, Theoretical Electrical Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://crawdad.org/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["communication systems", "computer networking", "mobile networks", "networks", "telecommunication", "wireless LAN", "wireless data traces", "wireless networking"] [{"institutionName": "Aruba Networks", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.arubanetworks.com/en-gb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dartmouth College, Center for Mobile Computing", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cmc.cs.dartmouth.edu/openings/postdoc.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["crawdad@cs.dartmouth.edu"]}, {"institutionName": "INTEL", "institutionAdditionalName": ["INTEL Corporation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.intel.com/content/www/us/en/homepage.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SIGCOMM", "institutionAdditionalName": ["ACM SIGCOMM", "Association for Computing Machinery, Special Interest Group on Data Communication"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sigcomm.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SIGMOBILE", "institutionAdditionalName": ["ACM SIGMOBILE", "Association for Computing Machinery, Special Interest Group on Mobility of Systems, Users, Data, and Computing"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sigmobile.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://crawdad.org/joinup.html"}] restricted [{"dataUploadLicenseName": "CRAWDAD Data License", "dataUploadLicenseURL": "https://crawdad.org/joinup.html"}] ["unknown"] yes {"api": "https://crawdad.org/tools/sanitize/generic/AnonTool/20060926/", "apiType": "other"} ["DOI"] http://crawdad.org/faq.html [] unknown yes [] [] {} 2013-09-25 2018-12-19 +r3d100010717 NDAR eng [{"additionalName": "National Database for Autism Research", "additionalNameLanguage": "eng"}, {"additionalName": "Serving the autism research community", "additionalNameLanguage": "eng"}] https://ndar.nih.gov/ ["RRID:SCR_004434", "RRID:nlx_143735"] ["https://ndar.nih.gov/contactus.html", "ndahelp@mail.nih.gov", "ndar@mail.nih.gov"] The National Database for Autism Research (NDAR) is an NIH-funded research data repository that aims to accelerate progress in autism spectrum disorders (ASD) research through data sharing, data harmonization, and the reporting of research results. NDAR also serves as a scientific community platform and portal to multiple other research repositories, allowing for aggregation and secondary analysis of data. NDAR combines the function of a data repository, which holds genetic, phenotypic, clinical, and medical imaging data, and the function of a scientific community platform, which defines the standard tools and policies to integrate the computational resources developed by scientific research institutions, private foundations, and other federal and state agencies supporting ASD research. Furthermore, NDAR is working to develop the means to connect relevant repositories together through data federation. eng ["disciplinary", "institutional"] {"size": "151,831 subjects by age, 95,929 individuals", "updatedp": "2017-08-18"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ndar.nih.gov/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["autism", "autism spectrum disorder - ASD", "cognition", "genomics", "neuroimaging", "phenotype"] [{"institutionName": "Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/Pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Environmental Health Sciences", "institutionAdditionalName": ["NIEHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niehs.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, Center for Information Technology", "institutionAdditionalName": ["CIT"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/about-nih/what-we-do/nih-almanac/center-information-technology-cit", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute for Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nimh.nih.gov/site-info/contact-nimh.shtml"]}] [{"policyName": "Data Sharing Policy", "policyURL": "https://ndar.nih.gov/ndarpublicweb/Documents/NDAR_data_sharing_language_fin.pdf"}, {"policyName": "NDAR Policy", "policyURL": "https://ndar.nih.gov/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ndar.nih.gov/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ndar.nih.gov/disclaimer.html"}] restricted [{"dataUploadLicenseName": "NIMH Data Archive Data Submission Agreement", "dataUploadLicenseURL": "https://ndar.nih.gov/ndarpublicweb/Documents/NDAR%20Submission%20Request.pdf"}] ["unknown"] {} ["DOI", "other"] https://ndar.nih.gov/faq.html#faq63 [] unknown yes [] [] {} NDAR is part of the NIMH Data Archive. The NDAR Data Access Committee (DAC) approves access to data and/or images from the NDAR Central Repository for research purposes only. 2013-09-26 2018-12-19 +r3d100010718 heidICON deu [{"additionalName": "Die Heidelberger Bilddatenbank", "additionalNameLanguage": "deu"}, {"additionalName": "The image and multimedia database", "additionalNameLanguage": "eng"}] https://heidicon.ub.uni-heidelberg.de/search [] ["https://www.ub.uni-heidelberg.de/helios/digi/heidicon_kontakt.html"] heidICON is provided by Heidelberg University Library and is the "Virtual Slide Collection" in progress of organization of Heidelberg University. In addition to record graphic material on current interest for research and teaching, the University departments and institutes can digitize and transfer their already existing slide collections. eng ["disciplinary", "institutional"] {"size": "537.400 objects", "updatedp": "2018-11-22"} 2005 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ub.uni-heidelberg.de/helios/digi/heidicon_teilnehmer.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Diathek", "cartoons", "illustrations", "images", "multidisciplinary"] [{"institutionName": "Gesellschaft der Freunde Universit\u00e4t Heidelberg e.V.", "institutionAdditionalName": ["Stiftung Universit\u00e4t Heidelberg"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.foerderer.uni-hd.de/gdf/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.foerderer.uni-hd.de/gdf/kontakt.html"]}, {"institutionName": "Universit\u00e4t Heidelberg, Universit\u00e4tsbibliothek", "institutionAdditionalName": ["Heidelberg University, Library"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ub.uni-heidelberg.de/kontakt/Welcome.html", "ub@ub.uni-heidelberg.de"]}] [{"policyName": "Nutzungsbedingungen heidICON", "policyURL": "https://www.ub.uni-heidelberg.de/helios/digi/heidicon_nutzungsbedingungen.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ub.uni-heidelberg.de/wir/impressum.html#urheberrecht"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ub.uni-heidelberg.de/helios/digi/heidicon_nutzungsbedingungen.html"}] restricted [] ["other"] yes {} ["none"] https://www.ub.uni-heidelberg.de/helios/digi/heidicon_nutzungsbedingungen.html [] unknown yes [] [] {} Further image sources - amongst others - in the portals: ARTstor, Bildindex der Kunst und Architektur, Prometheus 2013-09-26 2020-04-09 +r3d100010719 SPECTRa Project eng [{"additionalName": "Submission, Preservation and Exposure of Chemistry Teaching and Research Data", "additionalNameLanguage": "eng"}] https://spectradspace.lib.imperial.ac.uk:8443/handle/10042/13 ["hdl:10042/13"] ["apt24@cam.ac.uk", "https://spectradspace.lib.imperial.ac.uk:8443/contact"] The SPECTRa project has investigated the practices of chemists in archiving and disseminating primary chemical data from academic research laboratories. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 2006-11-30 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.webarchive.org.uk/wayback/archive/20140614092112/http://www.jisc.ac.uk/whatwedo/programmes/digitalrepositories2005/spectra.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Gaussian calculations", "ORCA calculations", "computational chemistry", "crystal structures", "crystallography", "experimental chemistry", "synthetic organic chemistry"] [{"institutionName": "Imperial College London, Department of Chemistry", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imperial.ac.uk/chemistry/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cambridge, Department of Chemistry, Murray-Rust Research Group", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www-pmr.ch.cam.ac.uk/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["apt24@cam.ac.uk", "http://www-pmr.ch.cam.ac.uk/wiki/Jim_Downing"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.cam.ac.uk/about-this-site/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www-pmr.ch.cam.ac.uk/wiki/SPECTRa_project"}] restricted [] ["DSpace"] yes {"api": "https://spectradspace.lib.imperial.ac.uk:8443/oai/request", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] unknown yes [] [] {"syndication": "https://spectradspace.lib.imperial.ac.uk:8443/dspace/feed/atom_1.0/10042/13", "syndicationType": "ATOM"} Imperial College London/DSpace is covered by Clarivate Data Citation Index. SPECTRa Project ist part of the DSpace/Manakin Repository of the Imperial College London. The project was funded in collaboration with the eBank UK project. 2013-09-27 2021-08-25 +r3d100010720 Loeb Music Library eng [{"additionalName": "Digital Scores and Libretti Collection", "additionalNameLanguage": "eng"}, {"additionalName": "Eda Kuhn Loeb Music Library", "additionalNameLanguage": "eng"}] https://library.harvard.edu/collections/digital-scores-and-libretti?_collection=scores [] ["muslib@fas.harvard.edu"] The scores and libretti in this Virtual Collection include first and early editions and manuscript copies of music from the eighteenth and early nineteenth centuries by J.S. Bach and Bach family members, Mozart, Schubert and other composers, as well as multiple versions of nineteenth century opera scores, seminal works of musical modernism, and music of the Second Viennese School. Many, such as variant editions of nineteenth century operas and related libretti, fall into intellectually related sets that are meant to be seen and used together. As a group, they give scholars a window into the study of historical performance practice that cannot be duplicated using the holdings of any one other library. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://library.harvard.edu/libraries/loeb-music [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["manuscript copies", "music", "notes"] [{"institutionName": "Harvard University Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["muslib@fas.harvard.edu"]}] [{"policyName": "Harvard Library CC BY Copyright Policy Statement", "policyURL": "https://osc.hul.harvard.edu/programs/copyright/ccby/"}, {"policyName": "Terms of Use", "policyURL": "http://curiosity.lib.harvard.edu/scores/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://osc.hul.harvard.edu/programs/open-initiatives/hl-pd/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://osc.hul.harvard.edu/programs/open-initiatives/hl-pd/"}] closed [] ["unknown"] {} ["URN"] https://library.harvard.edu/services-tools/zotero [] unknown yes [] [] {} Digital Scores and Libretti is a Harvard University Library Virtual Collection (VC). That's an online catalog that describes a selection of Harvard library, archive, and museum resources on a particular theme or topic. 2013-09-30 2018-12-19 +r3d100010721 Chempound eng [{"additionalName": "a Web2.0-inspired repository for physical science data", "additionalNameLanguage": "eng"}] https://journals.tdl.org/jodi/index.php/jodi/article/view/5873/5879 [] ["pm286@cam.ac.uk", "sam@bluefen.co.uk"] Chempound is a new generation repository architecture based on RDF, semantic dictionaries and linked data. It has been developed to hold any type of chemical object expressible in CML and is exemplified by crystallographic experiments and computational chemistry calculations. In both examples, the repository can hold >50k entries which can be searched by SPARQL endpoints and pre-indexing of key fields. The Chempound architecture is general and adaptable to other fields of data-rich science. The Chempound software is hosted at http://bitbucket.org/chempound and is available under the Apache License, Version 2.0 eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://journals.tdl.org/jodi/index.php/jodi/article/view/5873/5879 [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cheminformatics", "computational chemistry", "computer program", "crystallography", "molecules", "semantic web", "solids", "theoretical chemistry"] [{"institutionName": "Bitbucket", "institutionAdditionalName": ["Atlassian Bitbucket"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://bitbucket.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Imperial College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www3.imperial.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["h.rzepa@imperial.ac.uk"]}, {"institutionName": "University of Cambridge, Department of Chemistry, Unilever Cambridge Centre for Molecular Science Informatics Informatics", "institutionAdditionalName": ["UCMI"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www-ucc.ch.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["pm286@cam.ac.uk", "sam@bluefen.co.uk"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] closed [] ["other"] yes {"api": "http://www.chempound.net/api.html", "apiType": "REST"} ["other"] https://journals.tdl.org/jodi/index.php/jodi/rt/captureCite/5873/5879 [] unknown yes [] [] {} The sourcecode for Chempound ist hosted on bitbucket s. http://www.chempound.net/dev-overview.html 2013-10-01 2021-04-06 +r3d100010724 Atomic and Molecular Data Research Center eng [{"additionalName": "AMDRC", "additionalNameLanguage": "eng"}] https://amdata.nifs.ac.jp/amdrc/ [] [] >>> --- !!!! Attention: Obviously the institute does not exist any more. The links do not work anymore. !!!! --- <<< Our center is devoted to: Collection, compilation, evaluation, and dissemination of scientific information required for fusion research, and Investigation of problems arising in the course of development of fusion research. There are atomic and molecular (A & M) numerical databases and bibliographic databases on plasma physics and atomic physics. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 2016 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomy", "atomic physics", "atomic processes", "fusion", "fusion energy system", "plasma physics", "plasma process"] [{"institutionName": "National Institute for Fusion Science", "institutionAdditionalName": ["NIFS"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nifs.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nifs.ac.jp/en/about.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://dbshino.nifs.ac.jp/info.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dbshino.nifs.ac.jp/info.html"}] restricted [] ["unknown"] {} ["none"] http://dbshino.nifs.ac.jp/cgi-bin/login_free.cgi [] unknown yes [] [] {} There are atomic and molecular numerical databases: AMDIS - Cross sections and rate coefficients for ionization, excitation, and recombination by electron impact (since 1961). Please use AMOL for molecule targets. CHART - Cross sections for charge transfer and ionization by heavy particle collision. Please use CMOL for molecule targets. Tables for number of data records in CHART. AMOL (AMDIS-molecule) - ross sections and rate coefficients for electron - molecule collision processes. CMOL (CHART-molecule) - Cross sections and rate coefficients for heavy particle - molecule collision processes. SPUTY - Sputtering yields for solids (since 1931). BACKS - Energy and particle back scattering coefficients of light ions injected into surface. CURVE - Draw empirical curves for ionization cross section by Lotz formula, charge transfer cross section, sputtering yield, and backscattering coefficient. Bibliographic databases ORNL - Bibliography on atomic collision collected at ORNL (since 1959). 2013-10-08 2018-12-19 +r3d100010725 Atomic and Molecular Data Information System eng [{"additionalName": "AMDIS", "additionalNameLanguage": "eng"}, {"additionalName": "provided by the Nuclear Data Section", "additionalNameLanguage": "eng"}] https://www-amdis.iaea.org/ [] ["https://www-amdis.iaea.org/contacts.php"] The Atomic and Molecular Data Unit operates within the Nuclear Data Section of the International Atomic Energy Agency, Vienna, Austria.The primary objective of the Atomic and Molecular Data Unit is to establish and maintain internationally recommended numerical databases on atomic and molecular collision and radiative processes, atomic and molecular structure characteristics, particle-solid surface interaction processes and physico-chemical and thermo-mechanical material properties for use in fusion energy research and other plasma science and technology applications. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.iaea.org/About/mission.html [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atomic energy", "nuclear energy", "plasma physics"] [{"institutionName": "Intemational Atomic Energy Agency", "institutionAdditionalName": ["IAEA"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www-amdis.iaea.org/contacts.php", "https://www.iaea.org/contact", "j.a.stephens@iaea.org"]}, {"institutionName": "Intemational Atomic and Molecular Data Centre network", "institutionAdditionalName": ["A+M & PMI Data Centre Network"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www-amdis.iaea.org/DCN/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.iaea.org/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iaea.org/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.iaea.org/about/terms-of-use"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Offered databases: ALADDIN (numerical database), AMBDAS (bibliographic database), GENIE (Atomic data search engine), OPEN ADAS (Database serch), Robibronic (Eneregy levels Triplet D(u)2), FC Factors A-Values of H(u)2 Isotopes. ALADDIN and OPEN ADAS have own records in re3data.org 2013-10-08 2018-12-19 +r3d100010726 ALADDIN eng [{"additionalName": "A Labelled Atomic Data INterface", "additionalNameLanguage": "eng"}] https://www-amdis.iaea.org/ALADDIN/ ["RRID:SCR_010476", "RRID:nlx_157749"] ["ch.hill@iaea.org"] Numerical database of atomic and molecular processes and particle-surface interactions. ALADDIN has formatted data on atomic structure and spectra (energy levels,wave lengths, and transition probabilities); electron and heavy particle collisions with atoms, ions, and molecules (cross sections and/or rate coefficients, including, in most cases, analytic fit to the data); sputtering of surfaces by impact of main plasma constituents and self sputtering; particle reflection from surfaces; thermophysical and thermomechanical properties of beryllium and pyrolytic graphites. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.iaea.org/about/mission [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomic physics", "electron collisions", "erosion, sputtering, sublimation", "fusion research", "heavy particle collisions", "photon collisions", "plasma physics", "reflection", "trapping, penetration"] [{"institutionName": "International Atomic Energy Agency", "institutionAdditionalName": ["IAEA"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/", "institutionIdentifier": ["ROR:00gtfax65", "ROR:02zt1gg83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["H.Chung@iaea.org", "https://www.iaea.org/contact"]}, {"institutionName": "International Atomic and Molecular Data Centre network", "institutionAdditionalName": ["A+M & PMI DCN", "A+M & PMI Data Centre Network"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www-amdis.iaea.org/DCN/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy-making Bodies", "policyURL": "https://www.iaea.org/about/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iaea.org/about/terms-of-use"}] closed [] ["unknown"] {} ["other"] [] unknown yes [] [] {} 2013-10-09 2021-12-20 +r3d100010727 OPEN-ADAS eng [{"additionalName": "Atomic data and analysis structure", "additionalNameLanguage": "eng"}] https://open.adas.ac.uk/ [] ["adas@adas.ac.uk", "https://open.adas.ac.uk/contact"] The ADAS Project is a self-funding (i.e. funded by participants) project consisting of most major fusion laboratories along with other astrophysical and university groups. As an implementation, it is an interconnected set of computer codes and data collections for modelling the radiating properties of ions and atoms in plasmas. It can address plasmas ranging from the interstellar medium through the solar atmosphere and laboratory thermonuclear fusion devices to technological plasmas. ADAS assists in the analysis and interpretation of spectral emission and supports detailed plasma models. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://open.adas.ac.uk/about-open-adas [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astrophysical plasmas", "astrophysics", "atomic physics", "fusion", "microlithography plasmas", "spectroscopy", "technical plasmas"] [{"institutionName": "International Atomic Energy Agency", "institutionAdditionalName": ["IAEA"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/", "institutionIdentifier": ["ROR:00gtfax65", "ROR:02zt1gg83"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Strathclyde", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.strath.ac.uk/", "institutionIdentifier": ["ROR:00n3w3b69", "RRID:SCR_011705", "RRID:nlx_158336"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.adas.ac.uk/contact.php", "summers@phys.strath.ac.uk"]}] [{"policyName": "Terms and conditions", "policyURL": "https://open.adas.ac.uk/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://open.adas.ac.uk/terms-and-conditions"}] closed [] ["unknown"] {} ["other"] https://www.adas.ac.uk/faq.php [] unknown yes [] [] {} The Project currently has 28 members across the world https://www.adas.ac.uk/members.php. The ADAS database is not the only part of ADAS but it is arguably the most important and certainly core to everything which ADAS does. 2013-10-09 2021-12-20 +r3d100010728 EUROLAS Data Center eng [{"additionalName": "EDC", "additionalNameLanguage": "eng"}] https://edc.dgfi.tum.de/en/ ["biodbcore-001482"] ["christian.schwatke@tum.de"] The EUROLAS Data Center (EDC) is one of the two data centers of the International Laser Ranging Service (ILRS). It collects, archives and distributes tracking data, predictions and other tracking relevant information from the global SLR network. Additionally EDC holds a mirror of the official Web-Pages of the ILRS at Goddard Space Flight Center (GSFC). And as result of the activities of the Analysis Working Group (AWG) of the ILRS, DGFI has been selected as analysis centers (AC) and as backup combination center (CC). This task includes weekly processing of SLR observations to LAGEOS-1/2 and ETALON-1/2 to compute station coordinates and earth orientation parameters. Additionally the combination of SLR solutions from the various analysis centres to a combinerd ILRS SLR solution. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://edc.dgfi.tum.de/en/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["rotation of the earth", "satellite laser ranging", "space missions", "surface of the earth"] [{"institutionName": "Bavarian Academy of Sciences and Humanities", "institutionAdditionalName": ["Bayerische Akademie der Wissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://badw.de/die-akademie.html", "institutionIdentifier": ["ROR:001rdaz60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://badw.de/kontakt-und-anfahrt.html", "info@badw.de"]}, {"institutionName": "EUROLAS Consortium", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://edc.dgfi.tum.de/en/about/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Laser Ranging Service", "institutionAdditionalName": ["ILRS"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ilrs.cddis.eosdis.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t M\u00fcnchen, Deutsches Geod\u00e4tisches Forschungsinstitut, EUROLAS Data Center", "institutionAdditionalName": ["TUM, DGFI, EDC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://edc.dgfi.tum.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["christian.schwatke@tum.de", "https://www.dgfi.tum.de/en/staff/schwatke-christian/"]}] [{"policyName": "Terms of Reference", "policyURL": "https://edc.dgfi.tum.de/en/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.tum.de/en/about-tum/contact-directions/legal-details/"}] restricted [] [] {"api": "https://edc.dgfi.tum.de/en/api/doc/python/", "apiType": "other"} ["none"] [] unknown unknown [] [] {} EUROLAS Data Center (EDC) is one of the Operation Centers (OC) of International Laser Ranging Service (ILRS) 2013-10-10 2021-12-21 +r3d100010729 GAPHYOR eng [{"additionalName": "GAz-PHYsics-ORsay", "additionalNameLanguage": "eng"}] http://gaphyor.lpgp.u-psud.fr/ ["ISSN 2425-0678"] ["http://gaphyor.lpgp.u-psud.fr/gaphyor/contacts.html"] The repository is no longer available. <<>>!!!>>> Important note: The database was no longer feeded with data or updated in the years 2005-2007. The financial support of the project had been stopped a few yers ahead that time. The maintainance of the IT system couldn't be ensured anymore and system was shutdown in 2015. Please see the other databases in the field. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 2015 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://gaphyor.lpgp.u-psud.fr/gaphyor/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atomic physics", "chemical physics", "fusion", "molecular physics", "plasma physics"] [{"institutionName": "Le Centre national de la recherche scientifique", "institutionAdditionalName": ["Le CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Paris-Sud", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.u-psud.fr/fr/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.u-psud.fr/en/contact.html"]}, {"institutionName": "Universit\u00e9 Paris-Sud, Laboratoire de Physique des Gaz et des Plasmas", "institutionAdditionalName": ["LPGP"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lpgp.u-psud.fr/modeles/ind.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2005", "institutionContact": ["http://www.lpgp.u-psud.fr/modeles/ind.php?p=http://www.lpgp.u-psud.fr/lpgplone/externe/www/general/contactsp=http://www.lpgp.u-psud.fr/lpgplone/externe/www/general/contacts"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://gaphyor.lpgp.u-psud.fr/gaphyor/fees.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://gaphyor.lpgp.u-psud.fr/gaphyor/fees.html"}] closed [] ["unknown"] {"api": "http://gaphyor.lpgp.u-psud.fr/gaphyor/help.html", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} The GAPHYOR database no longer receives new entries since 2005. However, it is maintained online as long as possible as an archive for the scientific community. Every GAPHYOR entry includes : factual data : section, initial state, process and final state. numerical data : energies, data values, additional information. A bibliographical reference. description: A Database on properties of atoms, molecules and neutral or ionized gases, including chemical reactions. Five domains of physics, chemical physics and plasma physics are dealt with: roperties of isolated atoms and molecules. Collisions with photons. Collisions with electrons. Collisions and reactions between atoms and molecules. Macroscopic properties of gases. 2013-10-10 2021-12-21 +r3d100010730 Canadensys repository eng [{"additionalName": "Database of Vascular Plants of Canada", "additionalNameLanguage": "eng"}, {"additionalName": "VASCAN", "additionalNameLanguage": "eng"}] https://data.canadensys.net/ipt/ ["FAIRsharing_doi:10.25504/FAIRsharing.v2sjcy"] ["https://community.canadensys.net/about/contact"] Biological collections are replete with taxonomic, geographic, temporal, numerical, and historical information. This information is crucial for understanding and properly managing biodiversity and ecosystems, but is often difficult to access. Canadensys, operated from the Université de Montréal Biodiversity Centre, is a Canada-wide effort to unlock the biodiversity information held in biological collections. eng ["disciplinary", "institutional"] {"size": "6.330.253 results for [all records]; 84 collections; 192.597 images", "updatedp": "2021-12-21"} 2011 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://community.canadensys.net/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "biological collections", "digitalization", "ecosystems", "hybrids", "insects", "plants", "synonymy", "taxonomy"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "Fondation Canadienne pour L'Innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:nlx_144042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Biodiversity Informaton Facility", "institutionAdditionalName": ["GBIF", "Syst\u00e8me mondial d'information sur la biodiversit\u00e9"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": ["ROR:05fjyn938", "RRID:SCR_005904", "RRID:nlx_149475"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Montr\u00e9al Biodiversity Centre", "institutionAdditionalName": ["Universit\u00e9 de Montr\u00e9al, Centre sur la biodiversit\u00e9"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.irbv.umontreal.ca/a-propos/centre-sur-la-biodiversite?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["david.shorthouse@umontreal.ca", "https://community.canadensys.net/about/contact"]}] [{"policyName": "Norms for data use and publication", "policyURL": "https://community.canadensys.net/about/norms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gbif.org/terms/data-user"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://community.canadensys.net/publication/data-publication-guide"}] ["other"] yes {"api": "https://community.canadensys.net/2013/vascans-web-service-0-1", "apiType": "REST"} ["DOI", "PURL"] https://community.canadensys.net/about/norms [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "https://data.canadensys.net/ipt/rss.do", "syndicationType": "RSS"} Canadensys aims to digitize, publish and georeference 3 million specimens (20%) in our initial five years, via a network of distributed databases, compatible with the Canadian Biodiversity Information Facility (CBIF) and the Global Biodiversity Information Facility (GBIF). Collection managers will publish their data as Darwin Core, an internationally-accepted biodiversity information standard. A central web portal will allow access to the network’s specimen data (including images and geospatial information) in combination with other data such as names from the Database of Canadian Vascular Plants (VASCAN) and the Catalogue of Life. 2013-10-18 2021-12-21 +r3d100010731 Open Data LMU eng [] https://data.ub.uni-muenchen.de/ [] ["forschungsdaten@ub.uni-muenchen.de", "https://data.ub.uni-muenchen.de/contact.html", "volker.schallehn@ub.uni-muenchen.de"] On this server you'll find 127 items of primary data of the University of Munich. Scientists / students of all faculties of LMU and of institutions that cooperate with the LMU are invited to deposit their research data on this platform. eng ["institutional", "other"] {"size": "127 items", "updatedp": "2021-12-21"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.ub.uni-muenchen.de/help/index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Universit\u00e4tsbibliothek", "institutionAdditionalName": ["LMU, UB"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-muenchen.de/index.html", "institutionIdentifier": ["RRID:SCR_011358", "RRID:nlx_28705"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://data.ub.uni-muenchen.de/impressum.html", "volker.schallehn@ub.uni-muenchen.de"]}] [{"policyName": "Berliner Erkl\u00e4rung \u00fcber offenen Zugang zu wissenschaftlichem Wissen", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Budapester Open Access Initiative", "policyURL": "https://www.budapestopenaccessinitiative.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/licenses"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://openaccess.mpg.de/"}] restricted [] ["EPrints"] yes {"api": "https://data.ub.uni-muenchen.de/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] https://data.ub.uni-muenchen.de/55/ [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {"syndication": "https://data.ub.uni-muenchen.de/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2013-10-14 2021-12-21 +r3d100010732 Open Rotterdam Glaucoma Imaging Data Sets eng [{"additionalName": "ORGIDS", "additionalNameLanguage": "eng"}] http://www.orgids.com/ ["RRID:SCR_003540", "RRID:nlx_157652"] [] ***<<>> *** Stated 2017-08-28: To accommodate a wider scope of ophthalmic data, we launched our new Rotterdam Ophthalmic Data Repository. Please visit http://www.rodrep.com/ for all data sets. *** The ORGIDS site will no longer be updated! ***<<>>***Through this portal, we will make data sets available that result from our glaucoma research. This includes visual fields, various imaging modalities and other data from both glaucomatous and normal subjects.The data was acquired during more than a decade. eng ["institutional"] {"size": "", "updatedp": ""} 2013-09-13 2017-08-28 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20611 Clinical Neurosciences III - Ophthalmology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["glaucoma", "ophtalmology"] [{"institutionName": "Rotterdam Eye Hospital, Rotterdam Ophthalmic Institute", "institutionAdditionalName": ["ROI", "Rotterdams Oogheelkundig Instituut"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.roi.eyehospital.nl/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["http://www.roi.eyehospital.nl/contact.html", "k.vermeer@eyehospital.nl"]}, {"institutionName": "Stichting Glaucoomfonds", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.glaucoomfonds.nl/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["info@glaucoomfonds.nl"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://data.rodrep.com/license.html"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2013-10-15 2018-12-03 +r3d100010734 CSIRO Data Access Portal eng [{"additionalName": "CSIRO DAP", "additionalNameLanguage": "eng"}] https://data.csiro.au/ ["FAIRsharing_doi:10.25504/FAIRsharing.fmc0g0"] ["https://www.csiro.au/en/Contact", "researchdatasupport@csiro.au"] The CSIRO Data Access Portal provides access to data published by CSIRO across a range of disciplines to facilitate sharing and reuse of data held by CSIRO. eng ["institutional"] {"size": "6.138 results", "updatedp": "2021-12-21"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://confluence.csiro.au/display/dap/About+the+CSIRO+Data+Access+Portal [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Australian animals", "Australian plants", "agricultural sciences", "astronomy", "biodiversity", "biology", "climate change process", "climatology", "earth sciences", "environmental monitoring", "fauna", "fisheries sciences", "flora", "genomics", "geography", "insects", "oceanography", "physical sciences", "soil science", "veterinary sciences"] [{"institutionName": "Australian Research Data Commons", "institutionAdditionalName": ["ARDC", "formerly: Australian National Data Service"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ardc.edu.au/", "institutionIdentifier": ["ROR:038sjwq14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CSIRO Australia", "institutionAdditionalName": ["Commonwealth Scientific and Industrial Research Organisation Australia"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/", "institutionIdentifier": ["ROR:03qn8fb07", "RRID:SCR_011167", "RRID:nlx_149457"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Education Investment Fund", "institutionAdditionalName": ["EIF"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dese.gov.au/higher-education-funding/resources/education-investment-fund-regional-priorities-round-guidelines", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018", "institutionContact": ["https://www.aph.gov.au/About_Parliament/Parliamentary_Departments/Parliamentary_Library/FlagPost/2018/November/Education_Investment_Fund"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/10/CSIRO-Data-Access-Portal.pdf"}, {"policyName": "Legal information", "policyURL": "https://data.csiro.au/legalNotice"}, {"policyName": "Legal notice and disclaimer", "policyURL": "https://www.csiro.au/en/about/Policies/Legal/Legal-notice"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.csiro.au/en/About/Footer/Copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://confluence.csiro.au/display/daphelp/Licence+Deeds"}, {"dataLicenseName": "other", "dataLicenseURL": "https://confluence.csiro.au/pages/viewpage.action?pageId=267124796"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] restricted [] ["other"] yes {"api": "https://confluence.csiro.au/display/dap/Developer+Tools", "apiType": "REST"} ["DOI", "hdl"] ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} CSIRO Data Access Portal is covered by Thomson Reuters Data Citation Index. CSIRO is a partner in the Australian Research Data Commons. 2013-10-21 2021-12-21 +r3d100010735 Rolling Deck to Repository eng [{"additionalName": "R2R", "additionalNameLanguage": "eng"}] https://www.rvdata.us/ ["FAIRsharing_DOI:10.25504/FAIRsharing.ZEbjok"] ["https://www.rvdata.us/contact", "info@rvdata.us"] The R2R Portal is a central shore-side gateway through which underway data from oceanographic expeditions will be routinely cataloged and securely transmitted to the national long-term archives including the National Geophysical Data Center (NGDC) and National Oceanographic Data Center (NODC). eng ["disciplinary"] {"size": "41.329 archived datasets; 49 vessels", "updatedp": "2021-12-21"} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.rvdata.us/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["SAMOS", "meteorology", "oceanography", "water samples"] [{"institutionName": "Columbia University, Earth Institute, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lamont.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["ROR:00hr5y405", "RRID:SCR_003999", "RRID:nlx_158410"], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/council-of-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Shipboard Automated Meteorological and Oceanographic System", "institutionAdditionalName": ["SAMOS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://samos.coaps.fsu.edu/html/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University-National Oceanographic Laboratory System", "institutionAdditionalName": ["UNOLS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unols.org/", "institutionIdentifier": ["ROR:03nbky582"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access", "policyURL": "https://www.rvdata.us/about/data-policies-and-repositories/data-access"}, {"policyName": "Data Policies", "policyURL": "https://www.rvdata.us/about/data-policies-and-repositories"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "https://www.rvdata.us/about/data-policies-and-repositories/data-submission"}] ["unknown"] {"api": "https://releases.dataone.org/online/api-documentation-v2.0/apis/MN_APIs.html", "apiType": "REST"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} R2R repository is covered by Thomson Reuters Data Citation Index. DataONE member node of R2R: https://search.dataone.org/#profile/R2R 2014-09-18 2021-12-21 +r3d100010736 Nationales Bildungspanel deu [{"additionalName": "Bildungsverl\u00e4ufe in Deutschland", "additionalNameLanguage": "deu"}, {"additionalName": "Educational trajectories in Germany", "additionalNameLanguage": "eng"}, {"additionalName": "NEPS", "additionalNameLanguage": "eng"}, {"additionalName": "National Educational Panel Study", "additionalNameLanguage": "eng"}] https://www.neps-data.de/Mainpage [] ["https://www.neps-data.de/Contact", "neps-info@lifbi.de"] The project analyzes educational processes in Germany from early childhood to late adulthood. The National Educational Panel Study (NEPS) has been set up to find out more about the acquisition of education in Germany, to plot the consequences of education for individual biographies, and to describe central educational processes and trajectories across the entire life span. Such an interdisciplinary consortium of research institutes, researcher groups, and research. personalities has been assembled in Bamberg. In addition, the competencies and experiences with longitudinal research available at numerous other locations have been networked to form a cluster of excellence. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.neps-data.de/Project-Overview/Aims-of-the-Project [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cultural studies", "demography", "development of qualification", "developmental psychology", "diagnostics", "economics of education", "educational process", "employment research", "family research", "gender studies", "life career", "migration studies", "poverty research", "process of learning", "research on adolescence", "research on childhood", "school achievement", "sociology of education"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Germany, Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/de/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Bildungsverl\u00e4ufe e.V., Forschungsdatenzentrum", "institutionAdditionalName": ["LIfBi", "Leibniz Institute for Educational Trajectories, Research Data Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lifbi.de/Institut/Organisation/Forschungsdatenzentrum-LIfBi", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["fdz@lifbi.de"]}, {"institutionName": "Otto-Friedrich-Universit\u00e4t Bamberg", "institutionAdditionalName": ["INBIL", "University of Bamberg"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-bamberg.de/", "institutionIdentifier": ["ROR:01c1w6d29"], "responsibilityStartDate": "", "responsibilityEndDate": "2013", "institutionContact": ["contact.neps(at)uni-bamberg.de"]}] [{"policyName": "Data Use Agreements", "policyURL": "https://www.neps-data.de/Data-Center/Data-Access/Data-Use-Agreements"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.konsortswd.de/wp-content/uploads/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.neps-data.de/Impressum"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.neps-data.de/Data-Center/Data-Access/Data-Use-Agreements"}] restricted [] ["unknown"] {} ["DOI"] https://www.neps-data.de/Portals/0/NEPS/Datenzentrum/Datenzugangswege/Vertraege/NEPS_DataUseAgreement_en.pdf [] unknown yes ["RatSWD"] [] {"syndication": "https://www.neps-data.de/Startseite/tabid/189/moduleid/1582/language/de-DE/RSS.aspx", "syndicationType": "RSS"} NEPS is covered by Thomson Reuters Data Citation Index. NEPS is a member of the RatSWD research data infrastructure; Remote Access Technology: RemoteNEPS The NEPS will also offer data via remote access technology. The development of the data enclave RemoteNEPS represents pioneering work as the NEPS will be the first large-scale provider of a remote access solution in Germany. RemoteNEPS will offer a “virtual desktop” in a controlled environment that allows accessing more sensitive microdata remotely. The online resources of the enclave are easily accessible. No software has to be installed and users can work on any operating system. The only requirement is access to the Internet: An encrypted connection with RemoteNEPS provides the gateway to the data. After registration, authorized researchers access the enclave using an innovative and highly secure biometric authentication system (keystroke biometrics, certified by TÜV). Data are only available for online analysis and will not be transmitted to the user’s system. After data analysis is complete, researchers can request the delivery of output. The NEPS staff reviews all output requests for confidentiality and uses strict controls to ensure the integrity of the output as well as its correct and timely delivery to the researcher. 2013-10-25 2021-12-21 +r3d100010739 Sandrart.net eng [] http://ta.sandrart.net/en/ [] ["auskunft@hab.de", "http://ta.sandrart.net/en/contact/"] Sandrart.net: A net-based research platform on the history of art and culture in the 17th century. The project’s main goal was an annotated, enriched and web-based edition of Joachim von Sandrart’s Teutscher Academie der Edlen Bau, Bild- und Mahlerey-Künste (1675–80), one of the most important source texts of the early modern period. Having lived and worked in a number of places throughout Europe, Sandrart’s biographical background makes his writings (with first-hand narrations on art, artists and art collections) a work of European dimension. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.sandrart.net/en/project/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["17th century", "Joachim von Sandrart", "ancient architecture", "art writer", "curriculum vitae", "painting"] [{"institutionName": "Cellini-Gesellschaft Frankfurt am Main e.V.", "institutionAdditionalName": ["Benvenuto Cellini - Gesellschaft e.V."], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cellini-gesellschaft.de/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2012", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Goethe-Universit\u00e4t Frankfurt am Main, Kunstgeschichtliches Institut", "institutionAdditionalName": ["Kunstgeschichtliches Institut"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kunst.uni-frankfurt.de/85165508/Kunstgeschichtliches_Institut_Startseite?", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["http://ta.sandrart.net/de/kontakt/", "info@sandrart.net"]}, {"institutionName": "Herzog August Bibliothek Wolfenb\u00fcttel", "institutionAdditionalName": ["HAB"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hab.de/", "institutionIdentifier": ["ROR:02y5mkh60"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["auskunft@hab.de"]}, {"institutionName": "Historisches Museum Frankfurt am Main", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.historisches-museum-frankfurt.de/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "Max-Planck-Institut, Kunsthistorisches Institut in Florenz", "institutionAdditionalName": ["KHI"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.khi.fi.it/index.php", "institutionIdentifier": ["ROR:02967z527"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2012", "institutionContact": ["http://ta.sandrart.net/de/kontakt/", "https://www.khi.fi.it/de/kontakt.php"]}, {"institutionName": "St\u00e4del Museum", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.staedelmuseum.de/de", "institutionIdentifier": ["ROR:02c46jq57"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2012", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen", "policyURL": "http://ta.sandrart.net/de/info/nutzungsbedingungen/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-odbl/"}] closed [] ["other", "other"] yes {"api": "http://ta.sandrart.net/en/info/services/rest/", "apiType": "REST"} ["PURL"] http://ta.sandrart.net/en/info/citation/ [] unknown yes [] [] {} In addition, the following cooperations existed: Université de Montpellier, France: French translations of selected parts of the text, contributed by Prof. Dr. Michèle-Caroline Heck and Anaïs Carvalho. Bibliotheca Hertziana, Max-Planck-Institut für Kunstgeschichte, Rome, Italy: French translations of selected parts of the text, contributed by Dr. Cecilia Mazzetti di Pietralata. National Gallery of Art, Center for Advanced Study in the Visual Arts, Washington D.C. Scuola Normale Superiore di Pisa, Italy. Delft University of Technology, Netherlands. 2013-11-04 2021-12-21 +r3d100010741 Addgene eng [] https://www.addgene.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.8hcczk", "MIR:00000675", "OMICS_04712", "RRID:SCR_002037", "RRID:nif-0000-11872"] ["help@addgene.org", "https://www.addgene.org/contact/"] Addgene archives and distributes plasmids for researchers around the globe. They are working with thousands of laboratories to assemble a high-quality library of published plasmids for use in research and discovery. By linking plasmids with articles, scientists can always find data related to the materials they request. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.addgene.org/mission/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "SHRNA expression", "XDNA expression", "biology", "cloning data", "empty backbones", "gene bank", "genome modification", "medicine", "viral vectors"] [{"institutionName": "addgene", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.addgene.org/", "institutionIdentifier": ["ROR:01nn1pw54"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["help@addgene.org", "https://www.addgene.org/contact/"]}] [{"policyName": "Addgene Terms of Purchase", "policyURL": "https://www.addgene.org/shopping/terms-of-purchase/"}, {"policyName": "Terms of Use", "policyURL": "https://www.addgene.org/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.addgene.org/agreement/1/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.addgene.org/techtransfer/tto/#questionnaires-samples"}] restricted [{"dataUploadLicenseName": "Agreements and Terms", "dataUploadLicenseURL": "https://www.addgene.org/techtransfer/#questionnaires-samples"}, {"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://www.addgene.org/terms-of-use/"}] ["unknown"] {} ["none"] https://www.addgene.org/recipient-instructions/myplasmid/#citation [] unknown yes [] [] {"syndication": "https://blog.addgene.org/rss.xml", "syndicationType": "RSS"} Addgene is a non-profit organization dedicated to providing the scientific community with open, efficient and affordable access to plasmid research tools. The nominal fee for ordering plasmids is used to cover operating costs and improve the repository. There is no fee for depositing plasmids. 2013-11-19 2021-12-22 +r3d100010742 UCD Digital Library eng [{"additionalName": "An Leabharlann, An Col\u00e1iste Ollscoile, Baile \u00c1tha Cliath", "additionalNameLanguage": "gle"}, {"additionalName": "University College Dublin Digital Library", "additionalNameLanguage": "eng"}] https://digital.ucd.ie/ [] ["digital.library@ucd.ie", "https://digital.ucd.ie/contact/"] The UCD Digital Library is a platform for exploring cultural heritage, engaging with digital scholarship, and accessing research data. The UCD Digital Library allows you to search, browse and explore a growing collection of historical materials, photographs, art, interviews, letters, and other exciting content, that have been digitised and made freely available. eng ["other"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://digital.ucd.ie/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Andrew W. Mellon Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mellon.org/", "institutionIdentifier": ["ROR:04jsh2530"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Higher Education Authority", "institutionAdditionalName": ["AN t\u00daDAR\u00c1S um ARD-OIDEACHAS", "HEA"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hea.ie/", "institutionIdentifier": ["ROR:0471xye93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Forum for the Enhancement of Teaching and Learning in Higher Education", "institutionAdditionalName": ["NDLR", "National Digital Learning Resources"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.teachingandlearning.ie/", "institutionIdentifier": ["ROR:012ewnz96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@teachingandlearning.ie"]}, {"institutionName": "University College Dublin, Library", "institutionAdditionalName": ["UCD Dublin", "UCD Library"], "institutionCountry": "IRL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucd.ie/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["julia.barrett@ucd.ie", "library@ucd.ie"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/06/UCD_Digital_Library.pdf"}, {"policyName": "Terms of use", "policyURL": "https://digital.ucd.ie/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.irishstatutebook.ie/eli/2019/act/19/enacted/en/html"}] closed [] ["Fedora"] yes {"api": "http://libucd5.ucd.ie/oaiprovider/", "apiType": "OAI-PMH"} ["ARK", "DOI", "hdl"] https://digital.ucd.ie/terms/ ["ORCID"] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} UCD Digital Library is covered by Clarivate Data Citation Index. UCD Digital Library supports ORCID author identification. You can: Listen to the recordings from 1979/80 of various people in Dublin as part of the Urban Folklore Project,Dublin View photographs of iconic Georgian Dublin buildings from the slide collections in the School of Art History and Cultural Policy through the Georgian Dublin Civic and Domestic Collections Have a look at the Papers of Michael Collins or the letters from Roger Casement to Captain Hans Boehm, during Casement's stay in Germany in 1915 in the Boehm/Casement Papers Look at the Press Photographs of Eamon de Valera spanning the years 1919 - 1979 Explore the beautiful 18th century watercolours of Irish antiquities, done by or for Gabriel Beranger in the Beranger Watercolours. - Check out what Dublin and Ireland looked like in past centuries in the Historic Maps Collection. - Read the essays written by schoolchildren in 1937-38 on a wide range of local folk tradition and history in the Schools' Manuscript Collection - Carna & Ballinasloe, Co. Galway. - View photographs of chalices and other religious artefacts belonging to the Irish Franciscans in the collection Material Culture of the Mendicant Orders in Ireland. - Delve into the original material taken from UCD Archives and UCD Special Collections relating to the events of Easter 1916 in the Towards 2016 research collection. and much more! 2013-11-20 2021-12-22 +r3d100010743 WURM Project eng [{"additionalName": "a database of computed physical properties of minerals", "additionalNameLanguage": "eng"}] https://www.wurm.info/ ["ISSN 2425-0287"] ["https://www.wurm.info/index.php?id=7", "razvan.caracas@ens-lyon.fr"] The WURM project is a database of computed Raman and infrared spectra and other physical properties for minerals. The calculations are performed within the framework of the density-functional theory and the density-functional perturbation theory. The database is freely available for teaching and research purposes and is presented in a web-based format, hosted on the https://www.wurm.info/ web site. It provides the crystal structure, the parameters of the calculations, the dielectric properties, the Raman spectra with both peak positions and intensities and the infrared spectra with peak positions for minerals. It shows the atomic displacement patterns for all the zone-center vibrational modes and the associated Raman tensors. The web presentation is user friendly and highly oriented toward the end user, with a strong educational component in mind. A set of visualization tools ensures the observation of the crystal structure, the vibrational pattern, and the different spectra. Further developments include elastic and optical properties of minerals. eng ["disciplinary"] {"size": "461 spectra; 325 minerals", "updatedp": "2021-12-22"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.wurm.info/index.php?id=6 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Raman", "crystal structure", "density-funtional theory", "dielectric", "identification", "infrared", "mineral physics", "spectroscopy"] [{"institutionName": "\u00c9cole Normale Superieure de Lyon, Laboratoire de G\u00e9ologie - Terre, Plan\u00e8tes, Environnement", "institutionAdditionalName": ["ENS, LGL-TPE"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://lgltpe.ens-lyon.fr/accueil?set_language=en&cl=en", "institutionIdentifier": ["ROR:04t89f389"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://perso.ens-lyon.fr/razvan.caracas/", "razvan.caracas@ens-lyon.fr", "razvan.caracas@gmail.com"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.wurm.info/index.php?id=8"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.wurm.info/index.php?id=6"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] closed [] ["other"] {} ["none"] https://www.wurm.info/index.php?id=8 [] unknown yes [] [] {} 2013-11-21 2021-12-22 +r3d100010744 Animal QTLdb eng [{"additionalName": "Animal Quantitative Trait Loci", "additionalNameLanguage": "eng"}] https://www.animalgenome.org/cgi-bin/QTLdb/index ["FAIRsharing_doi:10.25504/FAIRsharing.HO0DyR", "OMICS_04527", "RRID:SCR_001748", "RRID:nif-0000-02550"] ["https://www.animalgenome.org/bioinfo/community/team", "https://www.animalgenome.org/helpdesk/?subj="] This Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house all publicly available QTL and trait mapping data (i.e. trait and genome location association data; collectively called "QTL data" on this site) on livestock animal species for easily locating and making comparisons within and between species. New database tools are continuely added to align the QTL and association data to other types of genome information, such as annotated genes, RH / SNP markers, and human genome maps. Besides the QTL data from species listed below, the QTLdb is open to house QTL/association date from other animal species where feasible. Note that the JAS along with other journals, now require that new QTL/association data be entered into a QTL database as part of their publication requirements. eng ["disciplinary"] {"size": "220.401 QTLs; 2.210 traits; 7 species; 2.496 publications", "updatedp": "2021-12-22"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.animalgenome.org/bioinfo/community/mission [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA sequence", "bioinformatics", "cattle", "chicken", "chromosome", "comparative genomics", "gene association information", "genetics", "genomics", "permuation", "pig", "rainbow trout", "sheep", "single-nucleotide polymorphism", "structural genomics"] [{"institutionName": "Huazhong Agriculture University", "institutionAdditionalName": ["\u534e\u4e2d\u519c\u4e1a\u5927\u5b66"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hzau.edu.cn/en/HOME.htm", "institutionIdentifier": ["ROR:023b72294"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Iowa State University", "institutionAdditionalName": ["ISU"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iastate.edu/", "institutionIdentifier": ["ROR:04rswrd78", "RRID:SCR_000972", "RRID:nlx_75450"], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.animalgenome.org/bioinfo/community/team"]}, {"institutionName": "National Animal Genome Research Program, Bioinformatics Coordination Program", "institutionAdditionalName": ["NAGRP", "USDA NRSP-8 Program"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.animalgenome.org/", "institutionIdentifier": ["RRID:SCR_006564", "RRID:nlx_149170"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, National Institute of Food and Agriculture", "institutionAdditionalName": ["USDA - NIFA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/", "institutionIdentifier": ["ROR:05qx3fv49"], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}] [{"policyName": "Computer User Account Policies", "policyURL": "https://www.animalgenome.org/bioinfo/resources/computers/account_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.animalgenome.org/QTLdb/app"}] restricted [] ["MySQL"] yes {"api": "https://www.animalgenome.org/QTLdb/API/", "apiType": "REST"} ["none"] https://www.animalgenome.org/QTLdb/faq/#12 [] unknown yes [] [] {} Animal QTLdb is covered by Thomson Reuters Data Citation Index. The current Animal QTL Database development is a project led by a team at the Iowa State University, initially under the NAGRP Pig Genome Program and currently under the NAGRP Bioinformatics Coordination Program since 2003. A mirror site is kindly hosted by Huazhong Agriculture University: https://www.cn.animalgenome.org/cgi-bin/QTLdb/index 2013-11-25 2021-12-22 +r3d100010745 Enlighten eng [{"additionalName": "Research Data", "additionalNameLanguage": "eng"}, {"additionalName": "Researchdata Glasgow", "additionalNameLanguage": "eng"}] https://researchdata.gla.ac.uk/ [] ["https://researchdata.gla.ac.uk/information.html", "research-datamanagement@gla.ac.uk"] Enlighten: research data is the institutional repository for research data of the University of Glasgow. As part of the CERIF 4 Datasets (C4D) project the University is exploring an extension of the CERIF standard. We have trialled methods of recording information about datasets to make them more visible, retrievable and usable. eng ["institutional"] {"size": "862 results", "updatedp": "2021-12-22"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/", "institutionIdentifier": ["ROR:00vtgdb53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["david.mcelroy@glasgow.ac.uk"]}, {"institutionName": "University of Glasgow Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/myglasgow/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gla.ac.uk/myglasgow/library/contact/", "library@lib.gla.ac.uk"]}] [{"policyName": "Open Research", "policyURL": "https://www.gla.ac.uk/myglasgow/openresearch/"}, {"policyName": "Research Data Management", "policyURL": "https://www.gla.ac.uk/myglasgow/openresearch/researchdatamanagement/"}, {"policyName": "open Access", "policyURL": "https://www.gla.ac.uk/myglasgow/openresearch/openaccess/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.de.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gla.ac.uk/media/Media_555894_smxx.pdf"}] restricted [] ["EPrints"] yes {"api": "https://researchdata.gla.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "https://researchdata.gla.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} Enighten is covered by Thomson Reuters Data Citation Index. 2013-11-25 2021-12-22 +r3d100010746 PMN eng [{"additionalName": "Plant Metabolic Network", "additionalNameLanguage": "eng"}] https://plantcyc.org/ ["OMICS_02764", "RRID:SCR_003778", "RRID:nlx_15806"] ["curator@plantcyc.org", "https://plantcyc.org/about/contact-feedback"] The Plant Metabolic Network (PMN) provides a broad network of plant metabolic pathway databases that contain curated information from the literature and computational analyses about the genes, enzymes, compounds, reactions, and pathways involved in primary and secondary metabolism in plants. The PMN currently houses one multi-species reference database called PlantCyc and 22 species/taxon-specific databases. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "20206 Plant Cell and Developmental Biology", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://plantcyc.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biochemical reaction", "biochemistry", "biology", "enzymes", "genes", "genomes", "pathway", "plant metabolism", "protein"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University, Carnegie Institution for Science, Department of Plant Biology", "institutionAdditionalName": ["Carnegie Institution for Science"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dpb.carnegiescience.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dpb.carnegiescience.edu/about/contact"]}, {"institutionName": "US Department of Energy, Office of Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/office-science", "institutionIdentifier": ["ROR:00mmn6b08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://plantcyc.org/downloads/license-agreement"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [{"dataUploadLicenseName": "Submitting Data to PMN", "dataUploadLicenseURL": "https://plantcyc.org/feedback/data-submission"}] ["other"] yes {} ["DOI", "other"] https://plantcyc.org/about/citing-pmn [] unknown yes [] [] {} databases: https://plantcyc.org/databases 2013-11-25 2021-12-22 +r3d100010747 Merritt eng [{"additionalName": "UC3Merritt", "additionalNameLanguage": "eng"}] https://merritt.cdlib.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.pkm8j3", "RRID:SCR_000642", "RRID:nlx_152126"] ["https://cdlib.org/services/uc3/contactuc3/", "uc3@ucop.edu"] Merritt is a curation repository for the preservation of and access to the digital research data of the ten campus University of California system and external project collaborators. Merritt is supported by the University of California Curation Center (UC3) at the California Digital Library (CDL). While Merritt itself is content agnostic, accepting digital content regardless of domain, format, or structure, it is being used for management of research data, and it forms the basis for a number of domain-specific repositories, such as the ONEShare repository for earth and environmental science and the DataShare repository for life sciences. Merritt provides persistent identifiers, storage replication, fixity audit, complete version history, REST API, a comprehensive metadata catalog for discovery, ATOM-based syndication, and curatorially-defined collections, access control rules, and data use agreements (DUAs). Merritt content upload and download may each be curatorially-designated as public or restricted. Merritt DOIs are provided by UC3's EZID service, which is integrated with DataCite. All DOIs and associated metadata are automatically registered with DataCite and are harvested by Ex Libris PRIMO and Thomson Reuters Data Citation Index (DCI) for high-level discovery. Merritt is also a member node in the DataONE network; curatorially-designated data submitted to Merritt are automatically registered with DataONE for additional replication and federated discovery through the ONEMercury search/browse interface. eng ["institutional"] {"size": "2.7 million resources; 41.8 million files; 93.2 TB", "updatedp": "2018-08-09"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://cdlib.org/about/mission-vision-and-values/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "California Digital Library", "institutionAdditionalName": ["CDL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://cdlib.org/", "institutionIdentifier": ["ROR:03yrm5c26", "RRID:SCR_006481", "RRID:nlx_156041"], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["cdl@www.cdlib.org"]}, {"institutionName": "University of California Curation Center", "institutionAdditionalName": ["UC3"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cdlib.org/services/uc3/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://cdlib.org/services/uc3/contactuc3/", "https://merritt.cdlib.org/docs/merritt_handout.pdf"]}] [{"policyName": "CDL Terms of Use", "policyURL": "https://cdlib.org/about/policies-and-guidelines/terms-conditions/"}, {"policyName": "CoreTrustSeal Assessment information", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/08/UC3-Merritt.pdf"}, {"policyName": "Merritt Ingest Service", "policyURL": "https://confluence.ucop.edu/download/attachments/16744573/Merritt-ingest-service-latest.pdf?version=18&modificationDate=1322700627000"}, {"policyName": "Policies and Guidelines", "policyURL": "https://cdlib.org/about/policies-and-guidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://merritt.cdlib.org/docs/merritt_user_guide.pdf"}] restricted [{"dataUploadLicenseName": "California Digital Library (CDL)/UC Libraries Digital Assets Agreement", "dataUploadLicenseURL": "https://confluence.ucop.edu/download/attachments/180060250/DPR_Submission_%20Agreement_%208-18-06_FINAL.pdf"}] ["MySQL"] yes {} ["ARK", "DOI"] https://www.coretrustseal.org/wp-content/uploads/2018/08/UC3-Merritt.pdf ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://merritt.cdlib.org/object/recent.atom?collection=ark:/13030/m5dz06hz", "syndicationType": "ATOM"} Merritt is covered by Thomson Reuters Data Citation Index. Merritt is available to the UC community. Preservation of digital objects for UC institutions. Image Credits: The images on the Merritt home page are drawn from deposits in the California Digital Library's preservation repository, and are publicly accessible from Calisphere. Merritt is a member node in the DataONE network. 2013-11-22 2021-12-22 +r3d100010748 chemotion eng [{"additionalName": "Repository for molecules and research data", "additionalNameLanguage": "eng"}] https://www.chemotion-repository.net/welcome ["fairsharing_DOI:10.25504/FAIRsharing.iagXcR"] ["https://www.chemotion-repository.net/home/contact", "nicole.jungkit.edu"] Chemotion-repository is a repository for the publication, re-use and archiving of research data in the domain of chemistry. It is suitable for molecules, reactions, and associated data. It stores original data in diverse file-formats including standard file types and as well as descriptions, metadata, and ontologies. The repository is open to all researchers worldwide. eng ["disciplinary"] {"size": "2.599 samples; 908 reactions; 8.185 analyses", "updatedp": "2021-12-22"} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.chemotion-repository.net/home/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["IR", "NMR", "TLC", "mass spectrometry", "molecular structures"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute for Organic Chemistry", "institutionAdditionalName": ["KIT IOC", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Organische Chemie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ioc.kit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About", "policyURL": "https://www.chemotion-repository.net/home/about"}, {"policyName": "Terms of service", "policyURL": "https://www.chemotion-repository.net/home/directive"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["other"] {"api": "https://www.chemotion-repository.net/oai-pmh", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Github: https://github.com/ComPlat/chemotion_REPO ; chemotion is covered by Thomson Reuters Data Citation Index. 2013-11-28 2021-12-22 +r3d100010749 InGeoCloudS eng [{"additionalName": "Inspired GEOdata CLOUD Services", "additionalNameLanguage": "eng"}] https://www.akka-technologies.com/en/innovation/projects/ingeoclouds [] [] <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["boreholes", "geography", "geohazards", "geology", "geoprocessing", "groundwater", "maps", "pesticides", "shakes", "space"] [{"institutionName": "AKKA informatique et systemes", "institutionAdditionalName": ["AKKA", "AKKA Technologies"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.one-akka.com/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.akka-technologies.com/en/page/contact-akka"]}, {"institutionName": "Earthquake Planning and Protection Organisation", "institutionAdditionalName": ["EPPO", "\u039f.\u0391.\u03a3.\u03a0.", "\u039f\u03c1\u03b3\u03b1\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2 \u0391\u03bd\u03c4\u03b9\u03c3\u03b5\u03b9\u03c3\u03bc\u03b9\u03ba\u03bf\u03cd \u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.oasp.gr/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://www.oasp.gr/contact"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["CIP", "Competitiveness and Innovation Framework Programme (CIP)", "EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": ["RRID:SCR_011211", "RRID:nlx_47458"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/contact_en"]}, {"institutionName": "European Commission, Infrastructure for Spatial Information in the European Community", "institutionAdditionalName": ["INSPIRE"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://inspire.ec.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["ENV-INSPIRE@ec.europa.eu"]}, {"institutionName": "Foundation for Research and Technology - Hellas, Institute of Computer Science", "institutionAdditionalName": ["FORTH, ICS", "\u0399\u03a4\u0395,\u0399\u03a0", "\u0399\u03b4\u03c1\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u0388\u03c1\u03b5\u03c5\u03bd\u03b1\u03c2, \u0399\u03bd\u03c3\u03c4\u03b9\u03c4\u03bf\u03cd\u03c4\u03bf\u03c5 \u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ba\u03ae\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ics.forth.gr/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.ics.forth.gr/index_main.php?c=5&l=e"]}, {"institutionName": "Geological Survey of Denmark and Greenland", "institutionAdditionalName": ["De Nationale Geologiske Unders\u00f8gelser for Danmark og Gr\u00f8nland", "GEUS"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eng.geus.dk/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://eng.geus.dk/about/contact/"]}, {"institutionName": "Geolo\u0161ki zavod Slovenije", "institutionAdditionalName": ["GeoZS", "Geological Survey of Slovenia"], "institutionCountry": "SVN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geo-zs.si/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["info@geo-zs.si"]}, {"institutionName": "Institute of Geology & Mineral Exploration", "institutionAdditionalName": ["IGME"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://portal.igme.gr", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Research Council", "institutionAdditionalName": ["CNR", "CNR", "Consiglio Nazionale delle Ricerche"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cnr.it/en", "institutionIdentifier": ["RRID:SCR_011322", "RRID:nlx_33409"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://www.cnr.it/sitocnr/ServiziSito/contattaci_eng.html"]}, {"institutionName": "brgm", "institutionAdditionalName": ["Bureau de Recherches G\u00e9ologiques et Mini\u00e8res", "G\u00e9osciences pour une terre durable"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.brgm.fr/brgm/le-brgm-service-geologique-national/brgm-service-geologique-national", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://www.brgm.fr/content/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/1-0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] ["unknown"] {"api": "http://ingeoclouds-api.isti.cnr.it/platform/", "apiType": "REST"} ["none"] [] unknown yes [] [] {} Description: "InGeoCloudS is an innovative solution for the creation and sharing of environmental data. The project responds to the European INSPIRE Directive requiring public authorities to make all their geological data available via internet. InGeoCloudS will facilitate public and professional access to a large volume of geological data, especially for the study and prevention of natural disasters: earthquake zones, risk of landslides, groundwater conditions. The reliability and flexibility of Cloud architectures will provide scientists with a high-quality, robust and cost-effective service." InGeoClouds is a collaborative research project co-funded by the European Commission in the framework of the "Competitiveness and Innovation Framework Programme" (CIP). AKKA Group is participating as project coordinator and technical manager. 2013-12-05 2021-12-22 +r3d100010750 PUB Data Publications eng [{"additionalName": "PUB Datenpublikationen", "additionalNameLanguage": "deu"}, {"additionalName": "Publications at Bielefeld University", "additionalNameLanguage": "eng"}, {"additionalName": "Publikationen an der Universit\u00e4t Bielefeld", "additionalNameLanguage": "deu"}] https://pub.uni-bielefeld.de/record?cql=type%3Dresearch_data ["FAIRsharing_doi:10.25504/FAIRsharing.x68mjp"] ["data@uni-bielefeld.de", "publikationsdienste.ub@uni-bielefeld.de"] PUB represents the central publication data service of Bielefeld University. It serves Bielefeld academics to easily create and administer their personal publication lists and make them available on the web. The University Bielefeld encourages scientists to publish their research data on research data archives. The publications are intended to take account into personal and business related interests and carried out unter mandatory license conditions. The Bielefeld University supports faculties and scientific institutions to link their offerings with global data archives. The university-wide service " PUB - Publications at Bielefeld University " allows the primary publication of research data. eng ["institutional"] {"size": "373 items", "updatedp": "2021-12-22"} 2013 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://pub.uni-bielefeld.de/docs/howto/policy [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universit\u00e4t Bielefeld", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-bielefeld.de/(en)/", "institutionIdentifier": ["ROR:02hpadn98", "RRID:SCR_011116", "RRID:nlx_71831"], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["publikationsdienste.ub@uni-bielefeld.de"]}] [{"policyName": "CITEC Open Science Manifesto", "policyURL": "https://cit-ec.de/en/open-science-manifesto"}, {"policyName": "Leitlinien", "policyURL": "https://pub.uni-bielefeld.de/docs/howto/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/"}] closed [] ["unknown"] yes {"api": "https://pub.uni-bielefeld.de/oai", "apiType": "OAI-PMH"} ["DOI", "URN"] https://pub.uni-bielefeld.de/record/2639448 ["ORCID"] unknown yes ["DINI Certificate", "DSA"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} PUB Data Publications is covered by Thomson Reuters Data Citation Index. Resolution on Research Data Management: https://www.uni-bielefeld.de/ub/digital/forschungsdaten/policy/index.xml 2013-12-06 2021-12-22 +r3d100010751 UPF Digital Repository spa [{"additionalName": "e-Repositori upf.", "additionalNameLanguage": "spa"}] https://repositori.upf.edu/ [] ["repositori@upf.edu"] The Institutional repository collects, disseminates and preserves in digital form, the intellectual output that results from the academic and research activity of the Universitat Pompeu Fabra (UPF). Its Purpose is to Increase the impact of research done at the UPF and STIs intellectual memory. eng ["institutional"] {"size": "3.041 items", "updatedp": "2021-12-03"} 2010 ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://repositori.upf.edu/ajuda#a2 [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["linguistics", "politics", "social sciences"] [{"institutionName": "Pompeu Fabra University Barcelona", "institutionAdditionalName": ["UPF", "Universitat Pompeu Fabra Barcelona"], "institutionCountry": "ESP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.upf.edu/en/", "institutionIdentifier": ["ROR:04n0g0b29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["marina.losada@upf.edu"]}] [{"policyName": "Legal Notice", "policyURL": "https://repositori.upf.edu/ajuda#a7"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://repositori.upf.edu/ajuda#a3"}] restricted [{"dataUploadLicenseName": "How to participate", "dataUploadLicenseURL": "https://repositori.upf.edu/ajuda#a4"}] ["DSpace"] {"api": "http://iula02v.upf.edu/corpus_data/oai-iula/oai.pl", "apiType": "OAI-PMH"} ["hdl"] [] yes yes [] [] {"syndication": "https://repositori.upf.edu/handle/10230/5963", "syndicationType": "RSS"} Recursos i dades primàries is the important part of the Institutional repository of the UPF, which contains primary data. 2013-12-09 2021-12-03 +r3d100010752 QUT Research Data Finder eng [{"additionalName": "Queensland University of Technology - Research Data Finder", "additionalNameLanguage": "eng"}] https://researchdatafinder.qut.edu.au/ [] ["https://researchdatafinder.qut.edu.au/contact", "researchdatafinder@qut.edu.au"] Research Data Finder is QUT’s discovery service for research data created or collected by QUT researchers. Designed to promote the visibility of QUT research datasets, Research Data Finder provides descriptions about shareable, reusable datasets available via open or mediated access. eng ["institutional"] {"size": "264 datasets", "updatedp": "2021-12-06"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://researchdatafinder.qut.edu.au/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "National Library of Australia", "institutionAdditionalName": ["NLA"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nla.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Queensland University of Technology", "institutionAdditionalName": ["QUT"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.qut.edu.au/", "institutionIdentifier": ["ROR:03pnv4752"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://researchdatafinder.qut.edu.au/contact"]}] [{"policyName": "Data Sharing at QUT", "policyURL": "https://researchdatafinder.qut.edu.au/about"}, {"policyName": "Manual of Policies and Procedures", "policyURL": "https://www.mopp.qut.edu.au/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.qut.edu.au/additional/copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/au/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.qut.edu.au/additional/copyright"}] restricted [{"dataUploadLicenseName": "Statement of Responsibilities", "dataUploadLicenseURL": "https://researchdatafinder.qut.edu.au/responsibilities"}] ["EPrints"] yes {} ["DOI"] [] yes yes [] [] {} The metadata schema used in Research Data Finder is the Registry Interchange Format - Collections and Services (RIF-CS) QUT Research Data Finder contribute records to Research Data Australia, the Australian National Data Service’s national research discovery portal and contribute researcher and research group profiles to Trove, the National Library of Australia’s digital collection portal 2013-12-16 2021-12-06 +r3d100010753 Joint Evaluated Fission and Fusion File eng [{"additionalName": "JEFF", "additionalNameLanguage": "eng"}, {"additionalName": "JEFF Nuclear Data Library", "additionalNameLanguage": "eng"}] https://www.oecd-nea.org/dbdata/jeff/ [] ["data@oecd-nea.org"] The Joint Evaluated Fission and Fusion File (JEFF) project is a collaboration between NEA Data Bank member countries. The JEFF library combines the efforts of the JEFF and EFF/EAF Working Groups to produce a common sets of evaluated nuclear data, mainly for fission and fusion applications. It contains a number of different data types, including neutron and proton interaction data, radioactive decay data, fission yields, and thermal scattering law data eng ["disciplinary"] {"size": "1.453 Codes and Data", "updatedp": "2021-12-06"} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.oecd-nea.org/jcms/tro_5705/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["fission", "fusion", "neutron", "proton", "radiaoactive decay", "thermal scattering"] [{"institutionName": "OECD Nuclear Energy Agency, Nuclear Data Services", "institutionAdditionalName": ["NEA"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oecd-nea.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd-nea.org/dbdata/contactus.html"]}] [{"policyName": "OECD Principles and Guidelines for Access to Research Data from Public Funding", "policyURL": "https://www.oecd.org/sti/inno/38500813.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oecd.org/termsandconditions/"}] closed [] ["Opus"] yes {} ["none"] https://www.oecd.org/termsandconditions/ [] unknown yes [] [] {} 2014-02-14 2021-12-06 +r3d100010754 Thermochemical Database eng [{"additionalName": "TDB Project", "additionalNameLanguage": "eng"}] https://www.oecd-nea.org/jcms/pl_22166/thermochemical-database-tdb-project [] ["tdb@oecd-nea.org"] The TDB project aims to produce a database that: contains data for all the elements of interest in radioactive waste disposal systems; documents why and how the data were selected; gives recommendations based on original experimental data, rather than compilations and estimates; documents the sources of experimental data used; is internally consistent; and treats all solids and aqueous species of the elements of interest for nuclear waste storage performance assessment calculations. The database compiles formation data (Gibbs energies, enthalpies, entropies and heat capacities) for each aqueous species and solid phase of interest, as well as chemical reactions and their corresponding thermodynamic data. Non thermodynamic data (diffusion or kinetics) and sorption data are not considered in the TDB project. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.oecd-nea.org/jcms/tro_5705/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["americium", "neptunium", "nickel", "plutonium", "selenium", "technetium", "uranium", "zirconium"] [{"institutionName": "OECD Nuclear Energy Agency, Nuclear Data Services", "institutionAdditionalName": ["NEA"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oecd-nea.org/dbdata/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd-nea.org/dbdata/contactus.html"]}] [{"policyName": "TDB Project Guidelines", "policyURL": "https://www.oecd-nea.org/jcms/pl_37399/tdb-project-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oecd.org/termsandconditions/"}] closed [] [] {} ["none"] https://www.oecd.org/termsandconditions/ [] unknown yes [] [] {} Data can be orderered through local NEA representants. Find a list here http://www.oecd-nea.org/dbprog/pretlo.cgi?db 2014-02-14 2021-12-06 +r3d100010755 NEA Data Bank Computer Program Services eng [] https://www.oecd-nea.org/dbcps/ [] ["programs@oecd-nea.org"] The Data Bank operates a computer program service related to nuclear energy applications. The software library collects programs, compiles and verifies them in an appropriate computer environment, ensuring that the computer program package is complete and adequately documented. This collection of material contains more than 2000 documented packages and group cross-section data sets. We distribute these codes on CD-ROM, DVD and via electronic transfer to about 900 nominated NEA Data Bank establishments (see the rules for requesters). Standard software verification procedures are used following an ANSI/ANS standard. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.oecd-nea.org/jcms/rni_6525/data-bank [{"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["computer codes", "environmental impact", "gamma heating", "nuclear models calculations", "nuclear safety", "nuclear waste management", "reactor design", "reactor economics", "spectrum calculations"] [{"institutionName": "OECD Nuclear Energy Agency, Computer Program Services", "institutionAdditionalName": ["NEA, CPS"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oecd-nea.org/dbcps/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["programs@oecd-nea.org"]}] [{"policyName": "OECD Science and technology policy", "policyURL": "https://www.oecd.org/officialdocuments/publicdisplaydocumentpdf/?cote=OCDE/GD(95)136&docLanguage=En"}, {"policyName": "OECD Terms and Conditions", "policyURL": "https://www.oecd.org/termsandconditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oecd.org/termsandconditions/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.oecd-nea.org/dbcps/general/"}] closed [] [] {} ["none"] https://www.oecd.org/termsandconditions/ [] unknown yes [] [] {} Data can be orderered through local NEA Liaison Officers. Find a list here https://www.oecd-nea.org/dbcps/pretlo.cgi?db 2014-02-14 2021-12-06 +r3d100010756 Canadian Epigenetics, Environment and Health Research Consortium Network eng [{"additionalName": "CEEHRC Network", "additionalNameLanguage": "eng"}] http://www.epigenomes.ca/ [] ["Epigenetics.Epigenetique@cihr-irsc.gc.ca", "http://www.epigenomes.ca/contact", "info@epigenomes.ca"] CEEHRC represents a multi-stage funding commitment by the Canadian Institutes of Health Research (CIHR) and multiple Canadian and international partners. The overall aim is to position Canada at the forefront of international efforts to translate new discoveries in the field of epigenetics into improved human health. The two sites will focus on sequencing human reference epigenomes and developing new technologies and protocols; they will also serve as platforms for other CEEHRC funding initiatives, such as catalyst and team grants. The complementary reference epigenome mapping efforts of the two sites will focus on a range of common human diseases. The Vancouver group will focus on the role of epigenetics in the development of cancer, including lymphoma and cancers of the ovary, colon, breast, and thyroid. The Montreal team will focus on autoimmune / inflammatory, cardio-metabolic, and neuropsychiatric diseases, using studies of identical twins as well as animal models of human disease. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.epigenomes.ca/about [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "blood", "cancer", "epigenomes", "human mammary", "leukaemia", "miRNA"] [{"institutionName": "Canada's Michael Smith Genome Sciences Centre", "institutionAdditionalName": ["BC Cancer Agency, Research Centre"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bcgsc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research, The Canadian Epigenetics, Environment and Health Research Consortium", "institutionAdditionalName": ["CCREES", "CEEHRC", "Instituts de recherche en sant\u00e9 du Canada, Consortium canadien de recherche en \u00e9pig\u00e9n\u00e9tique, environnement et sant\u00e9"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/43734.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome BC", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomebc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Quebec", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomequebec.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "McGill University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mcgill.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Simon Fraser University", "institutionAdditionalName": ["SFU"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sfu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of British Columbia", "institutionAdditionalName": ["UBC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "http://www.epigenomes.ca/data_access_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.epigenomes.ca/data_access_policy.html"}] closed [] ["unknown"] {} ["none"] http://www.epigenomes.ca/data/CEMT/dac/index.html [] yes yes [] [] {"syndication": "http://www.epigenomes.ca//about/news-and-events/RSS", "syndicationType": "RSS"} 2014-02-20 2017-06-20 +r3d100010757 Weed Images eng [] https://www.weedimages.org/ [] ["bugwood@uga.edu"] Weed Images is a project of the University of Georgia’s Center for Invasive Species and Ecosystem Health and one of the four major parts of BugwoodImages. The Focus is on damages of weed. It provides an easily accessible archive of high quality images for use in educational applications. In most cases, the images found in this system were taken by and loaned to us by photographers other than ourselves. Most are in the realm of public sector images. The photographs are in this system to be used. eng ["disciplinary"] {"size": "44.565 images; 1.746 subjects; 514 photographers", "updatedp": "2017-06-20"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.weedimages.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["aquatics", "grasses", "herbicides", "herbs", "shrubs", "trees", "vines"] [{"institutionName": "University of Georgia, Center for Invasive Species and Ecosystem Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bugwood.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bugwood@uga.edu", "https://www.ipmimages.org/support/contactus/"]}, {"institutionName": "University of Georgia, College of Agricultural and Environmental Sciences, Department of Entomology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caes.uga.edu/departments/entomology.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Warnell School of Forestry and Natural Resources", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.warnell.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Weed Science Society of America", "institutionAdditionalName": ["WSSA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://wssa.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Image Usage", "policyURL": "https://www.weedimages.org/about/imageusage.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weedimages.org/about/"}] restricted [{"dataUploadLicenseName": "Guide to contributors", "dataUploadLicenseURL": "https://www.weedimages.org/contribute.cfm"}] ["unknown"] {"api": "https://api.bugwood.org/", "apiType": "other"} ["none"] https://www.weedimages.org/about/imageusage.cfm [] unknown yes [] [] {"syndication": "https://www.weedimages.org/NewImagesFeed.cfm?out=rss", "syndicationType": "RSS"} Weed Images is part of BugwoodImage database system: ForestryImages, invasive.org, InsectImages, IPM Images 2014-03-06 2017-06-27 +r3d100010758 Research Compendia eng [{"additionalName": "Researchcompendia", "additionalNameLanguage": "eng"}] http://researchcompendia.readthedocs.io/en/latest/index.html ["RRID:SCR_003223", "RRID:nlx_157262"] [] >>>>!!!<<< As stated 2017-06-27 The website http://researchcompendia.org is no longer available; repository software is archived on github https://github.com/researchcompendia >>>!!!<<< The ResearchCompendia platform is an attempt to use the web to enhance the reproducibility and verifiability—and thus the reliability—of scientific research. we provide the tools to publish the "actual scholarship" by hosting data, code, and methods in a form that is accessible, trackable, and persistent. Some of our short term goals include: To expand and enhance the platform including adding executability for a greater variety of coding languages and frameworks, and enhancing output presentation. To expand usership and to test the ResearchCompendia model in a number of additional fields, including computational mathematics, statistics, and biostatistics. To pilot integration with existing scholarly platforms, enabling researchers to discover relevant Research Compendia websites when looking at online articles, code repositories, or data archives. eng ["other"] {"size": "", "updatedp": ""} 2013 2017-06-27 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact/"]}, {"institutionName": "Columbia University Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.columbia.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://library.columbia.edu/about/staff.html"]}, {"institutionName": "rackspace", "institutionAdditionalName": ["the open cloud company"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.rackspace.com/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.rackspace.com/information/contactus"]}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] [] yes {"api": "http://researchcompendia.readthedocs.org/en/latest/project.html#api", "apiType": "other"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Research Compendia is covered by Thomson Reuters Data Citation Index. 2014-03-11 2018-07-25 +r3d100010759 US Virtual Astronomical Observatory eng [{"additionalName": "VAO", "additionalNameLanguage": "eng"}] http://www.usvao.org/ [] ["http://www.usvao.org/index.html%3Fpage_id=306.html"] The US Virtual Astronomical Observatory (VAO) is the VO effort based in the US, and it is one of many VO projects currently underway worldwide. The primary emphasis of the VAO is to provide new scientific research capabilities to the astronomy community. Thus an essential component of the VAO activity is obtaining input from US astronomers about the research tools that are most urgently needed in their work, and this information will guide the development efforts of the VAO. >>>!!!<<< Funding discontinued in 2014 and all software, documentation, and other digital assets developed under the VAO are stored in the VAO Project Repository https://sites.google.com/site/usvirtualobservatory/ . Code is archived on Github https://github.com/TomMcGlynn/usvirtualobservatory . >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.usvao.org/about-vao/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronomical collections", "astronomy", "astrophysics", "observations"] [{"institutionName": "Associated Universities, Inc.", "institutionAdditionalName": ["AUI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.aui.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mclaro@aui.edu"]}, {"institutionName": "Association of Universities for Research in Astronomy", "institutionAdditionalName": ["AURA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://aura-astronomy.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Virtual Observatory Alliance", "institutionAdditionalName": ["IVOA"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ivoa.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "VAO, LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.usvao.org/governance/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usvao.org/contact-connect/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}] restricted [] ["unknown"] yes {} ["none"] http://www.usvao.org/acknowledging-the-vao/index.html [] unknown yes [] [{"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {"syndication": "http://feeds.feedburner.com/usvao/HxKx?format=xml", "syndicationType": "RSS"} The National Virtual Observatory (NVO) project http://www.us-vo.org/ established the foundations for the Virtual Astronomical Observatory. 2014-03-12 2017-06-27 +r3d100010760 The Paleobiology Database eng [{"additionalName": "PBDB", "additionalNameLanguage": "eng"}, {"additionalName": "PaleoBioDB", "additionalNameLanguage": "eng"}, {"additionalName": "PaleoDB", "additionalNameLanguage": "eng"}] http://paleobiodb.org/ [] ["https://paleobiodb.org/#/contact", "info@paleobiodb.org"] The Paleobiology Database (PaleoBioDB) is a non-governmental, non-profit public resource for paleontological data. It has been organized and operated by a multi-disciplinary, multi-institutional, international group of paleobiological researchers. Its purpose is to provide global, collection-based occurrence and taxonomic data for organisms of all geological ages, as well data services to allow easy access to data for independent development of analytical tools, visualization software, and applications of all types. The Database’s broader goal is to encourage and enable data-driven collaborative efforts that address large-scale paleobiological questions. eng ["disciplinary"] {"size": "62.454references; 355.844 taxa; 639.624 opinions; 186.387 collections; 1.336.154 occurrences", "updatedp": "2017-06-27"} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://paleobiodb.org/#/faq [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["fossils", "geography", "geology", "marine and terrestrial animals", "microorganisms", "paleontology", "plants", "taxonomy"] [{"institutionName": "Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.arc.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Madison, Department of Geoscience", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://geoscience.wisc.edu/geoscience/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mmcclenn@geology.wisc.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://paleobiodb.org/#/faq"}] restricted [] ["unknown"] {"api": "https://paleobiodb.org/data1.1/", "apiType": "REST"} ["none"] https://paleobiodb.org/#/faq/citations [] unknown yes [] [] {} The Paleobiology Database (PBDB) was founded in 1998 by John Alroy and Charles Marshall. Fossilworks provides query, download, and analysis tools that utilize the Paleobiology Database's large relational database assembled by hundreds of paleontologists from around the world. Fossilworks is managed by John Alroy at Maquarie University. As a publicly funded project, all code related to the Paleobiology Database is open source and can be found on Github. The Paleobiology Database is managed by the Executive Committee, which sets overall database policy, oversees matters related to the PaleoDB’s membership and access to data. The Committee consists of 12 members, including a Chair and a Secretary. The Chair is currently Mark D. Uhen and its Secretary is Jocelyn Sessa. Primary software development is actually being carried out at the University of Wisconsin-Madison under the direction of Shanan Peters and Michael McClennen. 2014-03-13 2017-06-27 +r3d100010761 AmericasBarometer eng [{"additionalName": "Bar\u00f3metro de las Am\u00e9ricas", "additionalNameLanguage": "spa"}] https://www.vanderbilt.edu/lapop/about-americasbarometer.php [] ["https://www.vanderbilt.edu/political-science/bio/mitchell-seligson", "m.seligson@vanderbilt.edu"] AmericasBarometer surveys are multi-country, regularly conducted surveys of democratic values and behaviors in the Americas. The raw data are available for free at all LAPOP consortium member institutions, and at all other users worldwide. Besides this a permanent ownership of the data, in becoming a 'repository', is possible for a fee. eng ["disciplinary", "institutional"] {"size": "34 countries", "updatedp": "2019-11-20"} 2004 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.vanderbilt.edu/lapop/Brochure_LAPOP_English_Final_Web_18Jul12.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Political science", "census data", "democracy", "governance", "political geography", "public opinion polls"] [{"institutionName": "Vanderbilt University, Latin American Public Opinion Project", "institutionAdditionalName": ["LAPOP"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.vanderbilt.edu/lapop/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://www.vanderbilt.edu/lapop/contact.php"]}] [{"policyName": "U.S. Federal Human Subjects Protection regulations", "policyURL": "https://www.hhs.gov/ohrp/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://datasets.americasbarometer.org/database/agreement.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.vanderbilt.edu/lapop/docs/Individual-License-Data-Repository-v8-7.11.11.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.vanderbilt.edu/lapop/docs/Institutional-License-Data-Repository-v8-7.11.11.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.vanderbilt.edu/lapop/free-access.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.vanderbilt.edu/lapop/raw-data.php"}] closed [] ["unknown"] {} ["none"] https://www.vanderbilt.edu/lapop/citing-data.php [] unknown yes [] [] {} Further information about contributing partners can be found at: https://www.vanderbilt.edu/lapop/partners.php 2014-04-29 2021-09-08 +r3d100010762 UNdata eng [{"additionalName": "United Nations Data", "additionalNameLanguage": "eng"}, {"additionalName": "a world of information", "additionalNameLanguage": "eng"}] http://data.un.org/ ["biodbcore-001678"] ["http://data.un.org/Feedback.aspx", "statistics@un.org"] The United Nations Data (UND) site provides access to 33 databases and over 60million records. UN Statistical Databases include datasets on Energy Statistics, International Finances, The State of the World’s Children, and World Contraceptive Use; among many other global social, environmental and economic subjects. eng ["disciplinary", "institutional"] {"size": "35 databases - 60 million records", "updatedp": "2017-06-28"} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://data.un.org/Host.aspx?Content=About [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "economics", "international finance", "international organization", "population", "social status", "statistics", "world health"] [{"institutionName": "United Nations, Department of Economic and Social Affairs", "institutionAdditionalName": ["DESA"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.un.org/development/desa/en/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["http://www.un.org/en/development/desa/contact-us.html"]}, {"institutionName": "United Nations, Statistics Division", "institutionAdditionalName": ["UNSD"], "institutionCountry": "AAA", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://unstats.un.org/home/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["https://unstats.un.org/unsd/contactus.htm"]}] [{"policyName": "Terms and Conditions of Use", "policyURL": "http://data.un.org/Host.aspx?Content=UNdataUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://unstats.un.org/unsd/copyright.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.un.org/Host.aspx?Content=UNdataUse"}] closed [] ["unknown"] {"api": "http://data.un.org/Host.aspx?Content=API", "apiType": "SOAP"} ["none"] http://data.un.org/Host.aspx?Content=UNdataUse [] unknown yes [] [] {} Further information about contributing partners can be found at: http://data.un.org/Partners.aspx ;UNdata is replacing the UNCDB (UN Common Database - CDB). 2014-04-29 2021-11-16 +r3d100010764 Southern California Earthquake Center eng [{"additionalName": "SCEC", "additionalNameLanguage": "eng"}] https://www.scec.org/ [] ["SCECinfo@usc.edu", "https://www.scec.org/contact"] SCEC's mission includes gathering data on earthquakes, both in Southern California and other locales; integrate the information into a comprehensive understanding of earthquake phenomena; and communicate useful knowledge for reducing earthquake risk to society at large. The SCEC community consists of more than 600 scientists from 16 core institutions and 47 additional participating institutions. SCEC is funded by the National Science Foundation and the U.S. Geological Survey. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.scec.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquake hazard analysis", "earthquake prediction", "earthquakes", "epicenter", "seismic data"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southern California, Southern California Earthquake Center", "institutionAdditionalName": ["USC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scec.org/institutions", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SCEC Science Collaboration Plan", "policyURL": "https://www.scec.org/proposals/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.scec.org/about"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} A full list of the SCEC Institutions can be found at https://www.scec.org/institutions/ Funded Projects Database: http://scecinfo.usc.edu/core/cis/search_reports.php 2014-04-28 2021-09-08 +r3d100010765 American Mineralogist Crystal Structure Database eng [{"additionalName": "AMCSD", "additionalNameLanguage": "eng"}] http://rruff.geo.arizona.edu/AMS/amcsd.php ["biodbcore-001200"] ["downs@geo.arizona.edu"] AMCSD is an interface to a crystal structure database that includes every structure published in the American Mineralogist, The Canadian Mineralogist, European Journal of Mineralogy and Physics and Chemistry of Minerals, as well as selected datasets from other journals. The database is maintained under the care of the Mineralogical Society of America and the Mineralogical Association of Canada, and financed by the National Science Foundation. You may search by a mineral of your choice, or choose a mineral from a complete list to help aid your research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30201 Solid State and Surface Chemistry, Material Synthesis", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Mineralogy", "Minerals", "crystallographic parameters"] [{"institutionName": "European Journal of Mineralogy, Schweizerbart Science Publishers", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.schweizerbart.de/journals/ejm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mineralogical Association of Canada", "institutionAdditionalName": ["Association min\u00e9ralogique du Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mineralogicalassociation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mineralogical Society of America", "institutionAdditionalName": ["Am Min"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.minsocam.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Arizona, Department of Geosciences, Mineralogy and Crystallography", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geo.arizona.edu/xtal/group/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.geo.arizona.edu/xtal/group/pdf/am88_247.pdf"}] closed [] ["MySQL"] yes {} ["none"] http://rruff.geo.arizona.edu/AMS/amcsd.php [] yes yes [] [] {} The Crystallography Open Database (COD) is a sister to the American Mineralogist Crystal Structure Database. COD contains all the data that is in AMCSD as well as data that has been deposited by individuals and laboratories. It offers a different interface for the search and retrieval of data. Visit the site: http://www.crystallography.net/ 2014-05-06 2021-11-17 +r3d100010766 RRUFF Project eng [{"additionalName": "Database of Raman spectra, X-ray diffraction and chemistry data for minerals", "additionalNameLanguage": "eng"}] https://rruff.info/ [] ["https://rruff.info/about/about_contact.php", "hyang@email.arizona.edu", "rdowns@u.arizona.edu"] The RRUFF Project is creating a complete set of high quality spectral data from well characterized minerals and is developing the technology to share this information with the world. The collected data provides a standard for mineralogists, geoscientists, gemologists and the general public for the identification of minerals both on earth and for planetary exploration.Electron microprobe analysis is used to determine the chemistry of each mineral. eng ["disciplinary"] {"size": "8.341 Unoriented High Resolution Raman Spectra; 5.852 Oriented High Resolution Raman Spectra; 7.541 Unoriented Low Resolution Raman Spectra;937 Infrared Spectra; 1.891 Measured Chemistry; 3.252 Measured Cell Parameters; 11.886 Public PDFs; 1.875 Good Sample Photographs; 3.967 Public RRUFF Samples, 7.851 total; 2.202 Public Mineral Species with samples, 3.582 total", "updatedp": "2017-06-28"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://rruff.info/about/about_contact.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Gemologists", "Raman spectrosocpy", "crystallography", "electron microprobe", "gemology", "geology", "mineralogists", "mineralogy", "planetary scientists", "x-ray diffraction", "x-ray spectroscopy"] [{"institutionName": "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Arizona, Department of Geosciences, RRUFF Project", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geo.arizona.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.arizona.edu/about/contact-us"]}] [{"policyName": "Terms and Conditions of Use", "policyURL": "http://rruff.info/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://rruff.info/#"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://rruff.info/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://rruff.info/#"}] restricted [] ["other"] {} ["none"] http://rruff.info/about/about_general.php [] yes yes [] [] {} 2014-04-10 2021-09-08 +r3d100010767 Reciprocal Net eng [] http://www.reciprocalnet.org/ ["RRID:SCR_008238", "RRID:nif-0000-21353"] ["info@reciprocalnet.org"] The Reciprocal Net is a distributed database used by research crystallographers to store information about molecular structures; much of the data is available to the general public. The Reciprocal Net project is still under development. Currently, there are 18 participating crystallography laboratories online. The project is funded by the National Science Foundation (NSF) and part of the National Science Digital Library. The contents of this collection will come principally from structures contributed by participating crystallography laboratories, thus providing a means for teachers, students, and the general public to connect better with current chemistry research. The Reciprocal Net's emphasis is on obtaining structures of general interest and usefulness to those several classes of digital library users. eng ["disciplinary"] {"size": "250.000 molecular structures", "updatedp": "2014-04-15"} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30101 Inorganic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.reciprocalnet.org/edumodules/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["chemical processes", "crystallography", "jewelry", "minerals", "molecular structure", "oxidation", "toxic"] [{"institutionName": "Indiana University Molecular Structure Center", "institutionAdditionalName": ["IUMSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iumsc.indiana.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iumsc.indiana.edu/aboutIUMSC/staff.html"]}, {"institutionName": "National Science Digital Library project", "institutionAdditionalName": ["NSDL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsdl.oercommons.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Reciprocal Net Partners", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.reciprocalnet.org/networkinfo/partnersites.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.reciprocalnet.org/projectinfo/staff.html"]}] [{"policyName": "About Reciprocal Net", "policyURL": "http://www.reciprocalnet.org/projectinfo/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.reciprocalnet.org/networkinfo/docs/userguide/userguidep49.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.reciprocalnet.org/networkinfo/docs/datafmt.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/"}] restricted [] ["other"] {"api": "http://www.reciprocalnet.org/networkinfo/docs/userguide.pdf", "apiType": "FTP"} ["none"] [] yes yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}] {} 2014-04-15 2019-11-20 +r3d100010768 American FactFinder eng [] ["RRID:SCR_002932", "RRID:nif-0000-30094"] [] >>>!!!<<< American FactFinder has been decommissioned and is no longer available. Data are now available at: data.census.gov >>>!!!<<< American FactFinder, maintained by the U.S. Census Bureau, is a source for United States population, housing, economic, and geographic data. The Census Bureau conducts nearly one hundred surveys and censuses every year. Note that by law, no one is permitted to reveal information from these censuses and surveys that could identify any person, household, or business. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2013 2020 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://census.gov/data.html#https://www.census.gov/about.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["census data", "demography", "household surveys", "income", "population", "public pensions"] [{"institutionName": "United States Census Bureau", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.census.gov/", "institutionIdentifier": ["ROR:01qn7cs15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and notices", "policyURL": "https://www.census.gov/about/policies.html"}, {"policyName": "Scientific Integrity", "policyURL": "https://www.census.gov/about/policies/quality/scientific_integrity.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public_domain_in_the_United_States"}] closed [] ["unknown"] yes {"api": "https://www2.census.gov/", "apiType": "FTP"} ["none"] https://www.census.gov/about/policies/citation.html [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "https://www.census.gov/about/contact-us/feeds.html", "syndicationType": "RSS"} 2014-04-23 2020-05-20 +r3d100010769 Public Geodata Repository eng [{"additionalName": "OSGeo Public Geodata Repository", "additionalNameLanguage": "eng"}] https://www.osgeo.org/projects/geonetwork/ [] ["https://www.osgeo.org/about/contact/", "info@osgeo.org"] OSGeo's mission is to support the collaborative development of open source geospatial software, in part by providing resources for projects and promoting freely available geodata. The Public Geodata Repository is a distributed repository and registry of data sources free to access, reuse, and re-distribute. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.osgeo.org/content/foundation/about.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Earth sciences", "Geography", "Physical geography", "maps"] [{"institutionName": "OSGeo Public Geospatial Data Committee", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.osgeo.org/geodata", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Knowledge International", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://okfn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Source Geospatial Foundation", "institutionAdditionalName": ["OSGeo"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.osgeo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.osgeo.org/contact"]}, {"institutionName": "San Diego Supercomputing Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.sdsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Bylaws of OSGeo", "policyURL": "http://www.osgeo.org/content/foundation/incorporation/bylaws.html"}, {"policyName": "OSGeo membership rules", "policyURL": "http://www.osgeo.org/Membership"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "http://www.osgeo.org/content/foundation/legal/licenses.html"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "http://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "other", "dataLicenseURL": "http://wiki.osgeo.org/wiki/Geodata_Licensing#Geodata_Licenses"}] open [{"dataUploadLicenseName": "Contributor Licenses", "dataUploadLicenseURL": "http://www.osgeo.org/content/foundation/legal/licenses.html"}] ["other"] yes {"api": "http://wiki.osgeo.org/wiki/RESTful", "apiType": "REST"} [] [] unknown unknown [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://www.osgeo.org/news/feed", "syndicationType": "RSS"} 2014-04-25 2021-09-08 +r3d100010770 Biomedical Informatics Research Network eng [{"additionalName": "BIRN", "additionalNameLanguage": "eng"}] https://neuroscienceblueprint.nih.gov/factSheet/birn.htm ["RRID:SCR_005163", "RRID:nif-0000-00027"] [] >>>!!!<<< As stated 2017-05-16 The BIRN project was finished a few years ago. The web portal is no longer live.>>>!!!<<< BIRN is a national initiative to advance biomedical research through data sharing and online collaboration. It supports multi-site, and/or multi-institutional, teams by enabling researchers to share significant quantities of data across geographic distance and/or incompatible computing systems. BIRN offers a library of data-sharing software tools specific to biomedical research, best practice references, expert advice and other resources. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2011 2017-07-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "40304 Biological Process Engineering", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Biology", "Biomedical engineering", "Biomedical materials", "Brain", "Electrophysiology", "Health", "Imaging systems in biology", "Medicine", "Neurobiology", "mouse", "schizophrenia"] [{"institutionName": "Massachusetts General Hospital", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.massgeneral.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of General Medicine Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at Irvine", "institutionAdditionalName": ["UCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://uci.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at Los Angeles", "institutionAdditionalName": ["UCLA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ucla.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southern California, Information Sciences Institute", "institutionAdditionalName": ["ISI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isi.edu/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/submit_process.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] restricted [] [] {} ["none"] [] unknown yes [] [] {} 2014-04-28 2017-07-04 +r3d100010772 Online Mendelian Inheritance in Animals eng [{"additionalName": "OMIA", "additionalNameLanguage": "eng"}] https://www.omia.org/home/ ["FAIRsharing_DOI:10.25504/FAIRsharing.tpey2t", "RRID:SCR_006436", "RRID:nif-0000-03215"] ["frank.nicholas@sydney.edu.au", "https://www.omia.org/contact/"] Online Mendelian Inheritance in Animals (OMIA) is a catalogue/compendium of inherited disorders, other (single-locus) traits, and genes in 218 animal species (other than human and mouse and rats, which have their own resources) authored by Professor Frank Nicholas of the University of Sydney, Australia, with help from many people over the years. OMIA information is stored in a database that contains textual information and references, as well as links to relevant PubMed and Gene records at the NCBI, and to OMIM and Ensembl. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.omia.org/acknowledgements/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "animal genetics", "bioinformatics", "biotechnology", "chromosome abnormalities", "chromosomes", "comparative biology", "gene expression", "genes", "genetics", "genomes", "genomics", "health", "homology (Biology)", "human genome", "life sciences", "molecular biology", "nucleotide sequence", "nucleotides", "phenotype", "protein binding", "proteins", "variation (Biology)"] [{"institutionName": "University of Sydney, Sydney School of Veterinary Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sydney.edu.au/science/schools/sydney-school-of-veterinary-science.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universtity of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sydney.edu.au/", "institutionIdentifier": ["ROR:0384j8v12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sydney.edu.au/contact-us.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.sydney.edu.au/disclaimer.html"}] restricted [] ["MySQL"] yes {} ["none"] https://www.omia.org/citing/ [] yes yes [] [] {} 2014-05-08 2021-11-16 +r3d100010773 Atlantic Oceanographic and Meteorological Laboratory eng [{"additionalName": "AOML", "additionalNameLanguage": "eng"}] https://www.aoml.noaa.gov/ [] ["aoml.communications@noaa.gov", "https://www.aoml.noaa.gov/about_us/contact_us.html"] The AOML Environmental Data Server (ENVIDS) provides interactive, on-line access to various oceanographic and atmospheric datasets residing at AOML. The in-house datasets include Atlantic Expendable Bathythermograph (XBT), Global Lagrangian Drifting Buoy, Hurricane Flight Level, and Atlantic Hurricane Tracks (North Atlantic Best Track and Synoptic). Other available datasets include Pacific Conductivitiy/Temperature/Depth Recorder (CTD) and World Ocean Atlas 1998. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1973 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climate", "coastal eccosystems", "global carbon systems", "hurricanes", "ocean", "tropical meterology"] [{"institutionName": "National Oceanographic and Atmospheric Administration, Atlantic Oceanographic and Meterological Laboratory", "institutionAdditionalName": ["NOAA, AOML"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.aoml.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanographic and Atmospheric Administration, Office of Oceanic and Atmospheric Research", "institutionAdditionalName": ["NOAA Research", "NOAA, OAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://research.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Commerce", "institutionAdditionalName": ["Commerce.gov", "U.S. Department of Commerce"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.commerce.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "http://www.noaa.gov/protecting-your-privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/Public_domain"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.aoml.noaa.gov/data/"}] closed [] ["unknown"] {"api": "ftp://ftp.aoml.noaa.gov/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} The following databases can be accessed via AOML: - Hurricane Data - ARGO Center - Global Heat Storage - Global Drifter Program - Global Surface Currents - Atlantic Meridional Heat Transport - Satellite Ocean Monitoring - Coast Watch Caribbean/Gulf of Mexico Regional Node - Monitoring Gulf of Mexico Conditions 2014-05-07 2021-09-08 +r3d100010774 UniGene eng [] https://www.ncbi.nlm.nih.gov/unigene ["RRID:SCR_004405", "RRID:nlx_41571"] ["info@ncbi.nlm.nih.gov"] UniGene collects entries of transcript sequences from transcription loci from genes or expressed pseudogenes. Entries also contain information on the protein similarities, gene expressions, cDNA clone reagents, and genomic locations. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["DNA", "RNA", "chemicals", "genes", "genetics", "homology (biology)", "proteins"] [{"institutionName": "Department of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, United States National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI", "NIH", "NLM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact/"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["unknown"] {"api": "ftp://ftp.ncbi.nih.gov/repository/UniGene/", "apiType": "FTP"} [] [] unknown yes [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=genbanksubmissiontoo", "syndicationType": "RSS"} 2014-05-23 2017-07-04 +r3d100010775 Sequence Read Archive eng [{"additionalName": "SRA", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/sra ["FAIRsharing_doi:10.25504/FAIRsharing.g7t2hv", "RRID:OMICS_01031", "RRID:SCR_004891", "RRID:nlx_86174"] ["sra@ncbi.nlm.nih.gov"] The Sequence Read Archive stores the raw sequencing data from such sequencing platforms as the Roche 454 GS System, the Illumina Genome Analyzer, the Applied Biosystems SOLiD System, the Helicos Heliscope, and the Complete Genomics. It archives the sequencing data associated with RNA-Seq, ChIP-Seq, Genomic and Transcriptomic assemblies, and 16S ribosomal RNA data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/sra/docs/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Chemicals", "DNA", "Genes", "Proteins", "RNA"] [{"institutionName": "National Institutes of Health, United States National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI", "NIH", "NLM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ncbi.nlm.nih.gov"]}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["other"] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/sra/", "apiType": "FTP"} ["none"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=sranews", "syndicationType": "RSS"} SRA is a service of the National Center for Biotechnology Information. See also: https://www.ddbj.nig.ac.jp/dra/index-e.html 2014-06-09 2022-02-07 +r3d100010776 NCBI Protein eng [] http://www.ncbi.nlm.nih.gov/protein ["RRID:SCR_003257", "RRID:nif-0000-03178"] ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"] The Protein database is a collection of sequences from several sources, including translations from annotated coding regions in GenBank, RefSeq and TPA, as well as records from SwissProt, PIR, PRF, and PDB. Protein sequences are the fundamental determinants of biological structure and function. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["BLAST", "DNA", "RNA", "genes", "protein structures"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ncbi.nlm.nih.gov"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"policyName": "NIH Public Access Policy", "policyURL": "http://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] restricted [] ["unknown"] {"api": "ftp://ftp.ncbi.nih.gov/refseq/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} NCBI Protein is a composite of SwissProt, SwissProt updates, PIR, PDB 2014-06-09 2019-03-21 +r3d100010777 NCBI PopSet eng [] http://www.ncbi.nlm.nih.gov/popset ["RRID:SCR_005049", "RRID:nlx_99613"] ["info@ncbi.nlm.nih.gov"] NCBI PopSet collects DNA sequences to analyze the ways that populations are related by evolution. Such sequences indicate if populations originate from different members of the same species or from organisms of different species entirely. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20106 Developmental Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20206 Plant Cell and Developmental Biology", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["DNA", "base sequence", "eukaryotic cells", "genes", "genetics", "sequence analysis"] [{"institutionName": "National Institutes of Health, United States National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"]}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] restricted [] ["unknown"] {"api": "ftp://ftp.ncbi.nlm.nih.gov/genbank/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} 2014-06-17 2019-03-21 +r3d100010778 NCBI Nucleotide eng [] http://www.ncbi.nlm.nih.gov/nucleotide ["RRID:SCR_004860", "RRID:nlx_84100"] ["info@ncbi.nlm.nih.gov"] The NCBI Nucleotide database collects sequences from such sources as GenBank, RefSeq, TPA, and PDB. Sequences collected relate to genome, gene, and transcript sequence data, and provide a foundation for research related to the biomedical field. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20206 Plant Cell and Developmental Biology", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biological assay", "gene expression", "genomics", "molecule types", "nucleic acids", "sequence types"] [{"institutionName": "National Institutes of Health, United States National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"]}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] restricted [] ["unknown"] {"api": "http://ftp.ncbi.nlm.nih.gov", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} NCBI Nucleotide is a service of the National Center for Biotechnology Information. 2014-06-17 2019-03-21 +r3d100010779 NCBI Structure eng [] https://www.ncbi.nlm.nih.gov/structure ["RRID:SCR_004218", "RRID:nlx_23947"] ["https://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"] The Structure database provides three-dimensional structures of macromolecules for a variety of research purposes and allows the user to retrieve structures for specific molecule types as well as structures for genes and proteins of interest. Three main databases comprise Structure-The Molecular Modeling Database; Conserved Domains and Protein Classification; and the BioSystems Database. Structure also links to the PubChem databases to connect biological activity data to the macromolecular structures. Users can locate structural templates for proteins and interactively view structures and sequence data to closely examine sequence-structure relationships. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biology", "genes", "macromolecular structures", "proteins"] [{"institutionName": "National Institutes of Health, United States National Library of Medicine, National Center for Biotechnology Information", "institutionAdditionalName": ["NIH, NLM, NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncbi.nlm.nih.gov/About/glance/contact_info.html"]}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] closed [] [] {"api": "ftp://ftp.ncbi.nih.gov/mmdb/", "apiType": "FTP"} ["other"] http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi [] unknown yes [] [] {} NCBI Structure is a service of the National Center for Biotechnology Information. 2014-06-28 2021-10-06 +r3d100010780 NCBI Probe eng [{"additionalName": "Probe", "additionalNameLanguage": "eng"}] http://www.ncbi.nlm.nih.gov/probe ["RRID:SCR_004816", "RRID:nlx_80513"] ["info@ncbi.nlm.nih.gov"] >>>!!! NCBI has retired the Probe Database !!!<<< Probe database provides a public registry of nucleic acid reagents as well as information on reagent distributors, sequence similarities and probe effectiveness. Database users have access to applications of gene expression, gene silencing and mapping, as well as reagent variation analysis and projects based on probe-generated data. The Probe database is constantly updated. eng ["disciplinary", "institutional"] {"size": "over 14.000.000 probes available", "updatedp": "2014-05-15"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ncbi.nlm.nih.gov/About/glance/ourmission.html [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA data banks", "Gene expression", "Gene mapping", "Gene silencing", "Nucleic acid probes", "biomedical reserach", "human genome", "influenza virus", "mouse genome", "primer-BLAST", "reference sequences"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://search.nih.gov/search?utf8=%E2%9C%93&affiliate=nih&query=contact+us"]}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hhs.gov/contactus.html"]}, {"institutionName": "USA.gov", "institutionAdditionalName": ["Government Made Easy"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://search.usa.gov/search?affiliate=usagov&query=contact"]}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "http://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.ncbi.nlm.nih.gov/projects/genome/probe/doc/Overview.shtml"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] restricted [{"dataUploadLicenseName": "Submitting data", "dataUploadLicenseURL": "http://www.ncbi.nlm.nih.gov/projects/genome/probe/doc/Submitting.shtml"}] ["unknown"] {"api": "https://ftp.ncbi.nih.gov/pub/ProbeDB/", "apiType": "FTP"} ["other"] [] yes yes [] [] {"syndication": "http://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=probenews", "syndicationType": "RSS"} The UniSTS database of sequence tagged sites (STSs) derived from STS-based maps and other experiments will be retired shortly. All data has now been included in to the Probe database. You can retrieve UniSTS records by using the search term "unists[properties]". Additionally, legacy data will remain on the NCBI FTP Site ftp://ftp.ncbi.nih.gov/repository/UniSTS/ in the UniSTS Repository. 2014-05-15 2021-10-06 +r3d100010781 NCBI HomoloGene eng [] https://www.ncbi.nlm.nih.gov/homologene ["OMICS_01544", "RRID:SCR_002924", "RRID:nif-0000-02975"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/", "pubmedcentral@ncbi.nlm.nih.gov"] The HomoloGene database provides a system for the automated detection of homologs among annotated genes of genomes across multiple species. These homologs are fully documented and organized by homology group. HomoloGene processing uses proteins from input organisms to compare and sequence homologs, mapping back to corresponding DNA sequences. eng ["disciplinary", "institutional"] {"size": "21 species; 44.233 HomoloGene groups", "updatedp": "2019-11-19"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA", "amino acid sequence", "bioinformatics", "biotechnology", "chromosome", "eukaryotic cells", "genomes", "homology (Biology)", "mutation", "phenotype"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/pub/HomoloGene/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=homologenenews", "syndicationType": "RSS"} 2014-05-08 2021-08-24 +r3d100010782 NCBI Epigenomics eng [] http://www.ncbi.nlm.nih.gov/epigenomics ["RRID:nlx_151643"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/"] >>>!!! <<< The Epigenomics database was retired on June 1, 2016. All epigenomics data are available in our GEO resource https://www.ncbi.nlm.nih.gov/geo >>> !!! <<< The Epigenomics database provides genomics maps of stable and reprogrammable nuclear changes that control gene expression and influence health. Users can browse current epigenomic experiments as well as search, compare and browse samples from multiple biological sources in gene-specific contexts. Many epigenomes contain modifications with histone marks, DNA methylation and chromatin structure activity. NCBI Epigenomics database contains datasets from the NIH Roadmap Epigenomics Project. eng ["disciplinary", "institutional"] {"size": "4.112 experiments", "updatedp": "2014-05-09"} 2010-06 2016-06-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bioinformatics", "Chromatin", "DNA", "DNA fingerprinting", "Gene amplification", "Gene libraries", "Gene mapping", "Genetic code", "Genomics", "Histones"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}, {"policyName": "NIH Roadmap Epigenomics Data Access Policies", "policyURL": "https://www.drugabuse.gov/funding/trans-nih-funding-opportunities/nih-common-fund/epigenomics-data-access-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] [] {"api": "ftp://ftp.ncbi.nlm.nih.gov/geo/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} 2014-05-09 2019-04-26 +r3d100010783 NCBI GSS eng [{"additionalName": "dbGSS", "additionalNameLanguage": "eng"}] http://www.ncbi.nlm.nih.gov/nucgss ["RRID:SCR_002146", "RRID:nif-0000-20938"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/"] >>>!!! GSS sequences are now being merged into the NCBI Nucleotide database !!!<<< eng ["disciplinary"] {"size": "public entries: 35.422.228", "updatedp": "2014-05-09"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA", "Homology (Biology)", "Nucleic acids", "Nucleotide sequence"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "http://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] open [{"dataUploadLicenseName": "Submitting Sequences to dbGSS", "dataUploadLicenseURL": "http://www.ncbi.nlm.nih.gov/genbank/dbgss/how_to_submit/"}] [] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/genbank/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} The GSS database collects unannotated, short, single-read, primary genomic sequences from GenBank and contains nucleic acid sequences. These sequences include random survey sequences, clone-end sequences, and exon-trapped sequences. 2014-05-09 2021-10-06 +r3d100010784 NCBI Protein Clusters eng [] https://www.ncbi.nlm.nih.gov/proteinclusters ["RRID:SCR_003459", "RRID:nif-0000-03354"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/"] The Entrez Protein Clusters database contains annotation information, publications, structures and analysis tools for related protein sequences encoded by complete genomes. The data available in the Protein Clusters Database is generated from prokaryotic genomic studies and is intended to assist researchers studying micro-organism evolution as well as other biological sciences. Available genomes include plants and viruses as well as organelles and microbial genomes. eng ["disciplinary", "institutional"] {"size": "820.545 clusters; 15.767.981 proteins; 6.581 species", "updatedp": "2019-11-20"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "bioinformatics", "chloroplasts", "genomics", "nucleotide sequence", "phylogeny", "plasmids"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] closed [] [] {"api": "ftp://ftp.ncbi.nih.gov/genomes/CLUSTERS/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} 2014-05-09 2021-10-06 +r3d100010785 NCBI Genome eng [] https://www.ncbi.nlm.nih.gov/genome ["RRID:SCR_002474", "RRID:nif-0000-02802"] ["info@ncbi.nlm.nih.gov"] The Genome database contains annotations and analysis of eukaryotic and prokaryotic genomes, as well as tools that allow users to compare genomes and gene sequences from humans, microbes, plants, viruses and organelles. Users can browse by organism, and view genome maps and protein clusters. eng ["disciplinary", "institutional"] {"size": "23.367 organims; 4.087 eukaryotes; 91.300 prokaryotes; 7.152 viruses; 8.927 plasmids; 9.639 organelles", "updatedp": "2017-03-13"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "bioinformatics", "gene mapping", "genomics", "human genome", "microbes", "plants", "sequence data", "viruses"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:RRID:nlx_inv_1005116", "RRID:SCR_011417"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_011446", "RRID:nlx_inv_1005117"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/About/disclaimer.html"}] open [{"dataUploadLicenseName": "How to submit data to NCBI", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/guide/howto/submit-data/"}, {"dataUploadLicenseName": "submission to genbank", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/genbank/submit/"}] [] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/genomes/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} 2014-05-12 2019-04-25 +r3d100010786 NCBI dbVar eng [{"additionalName": "Database of genomic structural VARiation", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/dbvar/ ["RRID:SCR_003219", "RRID:nlx_157217"] ["dbvar@ncbi.nlm.nih.gov"] The dbVar is a database of genomic structural variation containing data from multiple gene studies. Users can browse data containing the number of variant cells from each study, and filter studies by organism, study type, method and genomic variant. Organisms include human, mouse, cattle and several additional animals. ***NCBI will phase out support for non-human organism data in dbSNP and dbVar beginning on September 1, 2017 *** eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] ftp://ftp.ncbi.nlm.nih.gov/pub/factsheets/Factsheet_dbVar.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA", "animal", "bioinformatics", "gene expression", "gene studies", "genetic code", "genomics", "human", "phenotype"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "dbVar/DGVa Data Model and Data Exchange Policy", "policyURL": "https://www.ncbi.nlm.nih.gov/dbvar/content/overview/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] open [{"dataUploadLicenseName": "Submission guidelines", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/dbvar/content/submission/"}] [] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/pub/dbVar/data/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=dbvarnews", "syndicationType": "RSS"} 2014-05-12 2019-04-25 +r3d100010788 NCBI dbGaP eng [{"additionalName": "DataBase of Genotypes And Phenotypes", "additionalNameLanguage": "eng"}, {"additionalName": "genotypes and phenotypes", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/gap/ ["OMICS_00263", "RRID:SCR_002709", "RRID:nif-0000-23342"] ["https://dbgap.ncbi.nlm.nih.gov/aa/wga.cgi?page=email&from=login"] The NCBI database of Genotypes and Phenotypes archives and distributes the results of studies that have investigated the interaction of genotype and phenotype, including genome-wide association studies, medical sequencing, molecular diagnostic assays, and association between genotype and non-clinical traits. The database provides summaries of studies, the contents of measured variables, and original study document text. dbGaP provides two types of access for users, open and controlled. Through the controlled access, users may access individual-level data such as phenotypic data tables and genotypes. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["cells - morphology", "genetic recombination", "genotype-environment interaction", "homology (Biology)", "molecular diagnosis", "morphology", "phenotype"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": ["RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Certificate of Confidentiality", "policyURL": "http://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/GetPdf.cgi?document_name=ConfidentialityCertificate.pdf"}, {"policyName": "Policy for Genome-Wide Association Studies - GWAS", "policyURL": "http://grants.nih.gov/grants/guide/notice-files/NOT-OD-07-088.html#policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/About/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/about.html#duc"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.copyright.gov/fls/fl102.html"}] open [{"dataUploadLicenseName": "Steps for dbGaP\nStudy Registration, Submission, and release of Data", "dataUploadLicenseURL": "http://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/GetPdf.cgi?document_name=HowToSubmit.pdf"}] [] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/dbgap/", "apiType": "FTP"} ["none"] [] yes yes [] [] {"syndication": "http://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=dbGaPnews", "syndicationType": "RSS"} NCBI dbGaP is covered by Thomson Reuters Data Citation Index. 2014-05-12 2021-10-06 +r3d100010789 BioModels eng [] https://www.ebi.ac.uk/biomodels/ ["FAIRsharing_doi:10.25504/FAIRsharing.paz6mh", "MIR:00000007", "OMICS_02677", "RRID:SCR_001993", "RRID:nif-0000-02609"] ["https://www.ebi.ac.uk/biomodels/contact"] BioModels is a repository of mathematical models of biological and biomedical systems. It hosts a vast selection of existing literature-based physiologically and pharmaceutically relevant mechanistic models in standard formats. Our mission is to provide the systems modelling community with reproducible, high-quality, freely-accessible models published in the scientific literature. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Biological models", "Biology", "Biology - Mathematical models", "DNA", "Gene expression", "Genes", "Genetics", "Molecular biology", "Nucleotide sequence", "Proteins", "RNA", "Simulations", "Systems biology"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Innovative Medicines Initiative", "institutionAdditionalName": ["IMI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imi.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Biomodels Terms of Use", "policyURL": "https://www.ebi.ac.uk/biomodels/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/biomodels/", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/biomodels/citation [] yes yes [] [] {"syndication": "http://www.ebi.ac.uk/biomodels/newsFeed.xml", "syndicationType": "RSS"} BioModels is hosted on sourceforge http://sourceforge.net/projects/biomodels/ . Old platform: Biomodels database, retires May 2019: http://www.ebi.ac.uk/biomodels-main/ 2014-05-15 2021-10-06 +r3d100010790 National Center for Education Statistics eng [{"additionalName": "NCES", "additionalNameLanguage": "eng"}] https://nces.ed.gov/ [] ["EDEN_SS@ed.gov", "https://nces.ed.gov/help/webmail/"] The National Center for Education Statistics (NCES) is responsible for collecting and analyzing data related to education, including assessing the performance of students from early childhood through secondary education as well as the literacy level of adults and post-secondary education surveys. Users can access data on public and private schools as well as public libraries and a college navigator tool containing information on over 7,000 post-secondary institutions. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://nces.ed.gov/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["college choice", "education", "literacy", "private schools", "public libraries", "public schools", "schools--statistics", "statistics"] [{"institutionName": "Institute of Education Sciences", "institutionAdditionalName": ["IES"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ies.ed.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ies.ed.gov/contact/"]}, {"institutionName": "National Center for Education Statistics", "institutionAdditionalName": ["NCES"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nces.ed.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nces.ed.gov/help/webmail/"]}, {"institutionName": "U.S. Department of Education", "institutionAdditionalName": ["ED"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ed.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www2.ed.gov/about/contacts/gen/index.html"]}] [{"policyName": "IES Policy Regarding Public Access to Research", "policyURL": "http://ies.ed.gov/funding/researchaccess.asp"}, {"policyName": "Policy Statement on Data Sharing in IES Research Centers", "policyURL": "http://ies.ed.gov/funding/datasharing_policy.asp"}, {"policyName": "Statement of Commitment to Scientific Integrity by Prinicpal Statistical Agencies", "policyURL": "http://nces.ed.gov/whatsnew/commissioner/pdf/scientific_integrity_statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "RL", "dataLicenseURL": "http://nces.ed.gov/pubsearch/licenses.asp"}] closed [] [] {} ["none"] http://nces.ed.gov/help/ [] unknown yes [] [] {"syndication": "http://ies.ed.gov/help/rss.asp", "syndicationType": "RSS"} 2014-05-15 2021-10-06 +r3d100010791 National Center for Atmospheric Research eng [{"additionalName": "NCAR UCAR", "additionalNameLanguage": "eng"}] https://ncar.ucar.edu/ [] ["https://www.ucar.edu/who-we-are/contact-us"] The NCAR is a federally funded research and development center committed to research and education in atmospheric science and related scientific fields. NCAR seeks to support and enhance the scientific community nationally and globally by monitoring and researching the atmosphere and related physical and biological systems. Users can access climate and earth models created to better understand the atmosphere, the Earth and the Sun; as well as data from various NCAR research programs and projects. NCAR is sponsored by the National Science Foundation in addition to various other U.S. agencies. eng ["disciplinary", "institutional"] {"size": "10.673 resources", "updatedp": "2019-07-10"} 1967 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ucar.edu/who-we-are [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "atmosphere", "atmospheric carbon dioxide", "climatology", "cloud physics", "earth sciences", "hazards", "hydrology", "meteorology", "renewable energy", "severe storms", "solar weather", "space weather", "weather science", "wildfire prediction"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucar.edu/"]}] [{"policyName": "Terms of use", "policyURL": "https://www.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ucar.edu/notification-copyright-infringement-digital-millenium-copyright-act"}] closed [{"dataUploadLicenseName": "Terms of use", "dataUploadLicenseURL": "https://www.ucar.edu/terms-of-use"}] ["other"] yes {"api": "ftp://ftp.ucar.edu/pub/", "apiType": "FTP"} ["DOI"] https://rda.ucar.edu/#!data-citation [] unknown unknown [] [] {} 2014-05-19 2019-07-10 +r3d100010794 Minnesota Population Center eng [{"additionalName": "MPC", "additionalNameLanguage": "eng"}] https://pop.umn.edu/ [] ["mpc@umn.edu"] The Minnesota Population Center (MPC) is a University-wide interdisciplinary cooperative for demographic research. The MPC serves more than 80 faculty members and research scientists from eight colleges and institutes at the University of Minnesota. As a leading developer and disseminator of demographic data, we also serve a broader audience of some 50,000 demographic researchers worldwide. MPC is a DataONE member node: https://search.dataone.org/#profile/US_MPC eng ["institutional"] {"size": "258 datasets", "updatedp": "2019-07-10"} 2000 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://pop.umn.edu/about/laws-mission [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["IHIS", "IPUMS", "NHGIS", "census", "education", "family demography", "health behavior", "healthcare", "historical demography", "immigration", "labor-force studies", "migration", "population", "population geography", "sexuality"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["DOI:10.25504/FAIRsharing.yyf78h", "RRID:SCR_003999", "RRID:nlx_158410"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minnesota", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://twin-cities.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://twin-cities.umn.edu/contact-us"]}, {"institutionName": "University of Minnesota, Minnesota Population Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.pop.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acceptable Use of Information Technology Resources", "policyURL": "https://policy.umn.edu/it/itresources"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ipums.org/"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Available data: https://www.ipums.org/ The Minnesota Population Center is one of three coordinating members of the Minnesota State Data Center (MNSDC) network. Research strengths include historical demography, population geography, labor-force studies, migration and immigration, health behavior, healthcare access and use, life-course studies, education, and family demography. 2014-07-01 2019-07-10 +r3d100010795 MaizeGDB eng [{"additionalName": "Maize Genetics and Genomics Database", "additionalNameLanguage": "eng"}] http://www.maizegdb.org/ ["OMICS_01655", "RRID:SCR_006600", "RRID:nif-0000-03096"] ["http://maizegdb.org/contact"] The Maize Genetics and Genomics Database focuses on collecting data related to the crop plant and model organism Zea mays. The project's goals are to synthesize, display, and provide access to maize genomics and genetics data, prioritizing mutant and phenotype data and tools, structural and genetic map sets, and gene models. MaizeGDB also aims to make the Maize Newsletter available, and provide support services to the community of maize researchers. MaizeGDB is working with the Schnable lab, the Panzea project, The Genome Reference Consortium, and iPlant Collaborative to create a plan for archiving, dessiminating, visualizing, and analyzing diversity data. MMaizeGDB is short for Maize Genetics/Genomics Database. It is a USDA/ARS funded project to integrate the data found in MaizeDB and ZmDB into a single schema, develop an effective interface to access this data, and develop additional tools to make data analysis easier. Our goal in the long term is a true next-generation online maize database.aize genetics and genomics database. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.maizegdb.org/docs/MaizeGDBPresentation.ppt [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "corn", "gene mapping", "genetics", "genomes", "genomics", "genotype-environment interaction", "phenotype", "plant genome mapping", "plant genomes"] [{"institutionName": "Iowa State University, Department of Agronomy", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.agron.iastate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["agron@iastate.edu"]}, {"institutionName": "National Corn Growers Association", "institutionAdditionalName": ["NCGA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ncga.com/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncga.com/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "United States Department of Agriculture, Agricultural Research Services", "institutionAdditionalName": ["USDA, ARS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ars.usda.gov/main/main.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.maizegdb.org/documentation/index.php"}, {"databaseLicenseName": "other", "databaseLicenseURL": "http://maize-mapping.plantgenomics.iastate.edu/actdata.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://beta.maizegdb.org/doc"}] restricted [{"dataUploadLicenseName": "Contribute data", "dataUploadLicenseURL": "http://maizegdb.org/contribute_data"}] ["MySQL"] yes {"api": "http://ftp.maizegdb.org/MaizeGDB/FTP/", "apiType": "FTP"} ["none"] http://maizegdb.org/cite [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://archive.maizegdb.org/maizegdb_news_feed.php", "syndicationType": "RSS"} 2014-06-25 2019-07-10 +r3d100010796 Ligand-Gated Ion Channel Database eng [{"additionalName": "LGIC", "additionalNameLanguage": "eng"}, {"additionalName": "LGICdb", "additionalNameLanguage": "eng"}] https://lenoverelab.org/LGICdb/LGICdb.php ["RRID:SCR_002418", "RRID:nif-0000-00037"] ["https://lenoverelab.org/LGICdb/contact.php", "n.lenovere@gmail.com"] The Ligand-Gated Ion Channel database provides access to information about transmembrane proteins that exist under different conformations, with three primary subfamilies: the cys-loop superfamily, the ATP gated channels superfamily, and the glutamate activated cationic channels superfamily.**The development of the Ligand-Gated Ion Channel database was started in 1994, as part of Le Novère's work on the phylogeny of those receptors' subunits. It grew into a serious data resource, that served the community at large. However, it is not actively maintained anymore. In addition, bioinformatics technology evolved a lot over the last two decades, so that scientists can now generate quickly customised databases from trustworthy primary data resources. Therefore, we decided to officialy freeze the data resource. The resource will not disappear, and all the information and links will stay there. But people should not consider it as an up-to-date trustable resource.** eng ["disciplinary"] {"size": "554 entries", "updatedp": "2014-06-27"} 1994 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "nucleic acids", "phylogeny", "proteins"] [{"institutionName": "Babraham Institute, Le Novere Lab", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lenoverelab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lenov@ebi.ac.uk"]}] [{"policyName": "Policy", "policyURL": "https://www.babraham.ac.uk/about-us/impact/policy"}, {"policyName": "Terms and Conditions", "policyURL": "https://www.babraham.ac.uk/legal/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.babraham.ac.uk/legal/terms"}] restricted [] ["unknown"] yes {} ["none"] https://lenoverelab.org/LGICdb/FAQ.php#quote [] yes unknown [] [] {} The LGIC database has been initially developed by Nicolas Le Novère within the team of Jean-Pierre Changeux at the Pasteur Institute, with the help of Catherine Letondal. It was further developed at the EMBL-EBI by Marie-Ange Djite and Antonia Mayer. 2014-06-23 2019-11-29 +r3d100010797 Immuno Polymorphism Database eng [{"additionalName": "IPD", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/ipd/ ["FAIRsharing_doi:10.25504/FAIRsharing.c3v6e6", "OMICS_03057", "RRID:SCR_003004", "RRID:nif-0000-03038"] ["hla@alleles.org", "https://www.ebi.ac.uk/ipd/contacts/"] Established by the HLA Informatics Group of the Anthony Nolan Research Institute, IPD provides a centralized system for studying the immune system's polymorphism in genes. The IPD maintains databases concerning the sequences of human Killer-cell Immunoglobulin-like Receptors (KIR), sequences of the major histocompatibility complex in a number of species, human platelet antigens (HPA), and tumor cell lines. Each subject has related, credible news, current research and publications, and a searchable database for highly specific, research grade genetic information. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Bioinformatics", "Chromosome polymorphism", "Genetic code - Research", "Genetic recombination", "Genetics", "Immune system", "Molecular biology"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Histogenetics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.histogenetics.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Free Hospital, Anthony Nolan Research Institute, HLA Informatics Group", "institutionAdditionalName": ["HLA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.anthonynolan.org/clinicians-and-researchers/anthony-nolan-research-institute/hla-informatics-group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hla [at] alleles [dot] org", "https://www.anthonynolan.org/about-us/contact-us"]}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/ipd/licence/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}] restricted [] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/ipd/", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/ipd/citations.html [] unknown unknown [] [] {} immuno polymorphism database consists of a number of individual databases: international ImMunoGeneTics IMGT/ HLA, IPD-KIR Killer-cell immunoglobulin-like Receptors, IPD-MHC Major Histocompatibility Complex, IPD-HPA Human platelet antigens and ESTDAB European Searchable Tumour Line Database 2014-05-15 2021-10-06 +r3d100010798 InterPro eng [{"additionalName": "protein sequence analysis & classification", "additionalNameLanguage": "eng"}] http://www.ebi.ac.uk/interpro/beta/ ["FAIRsharing_doi:10.25504/FAIRsharing.pda11d", "MIR:00000011", "OMICS_01694", "RRID:SCR_006695", "RRID:nif-0000-03035"] ["https://www.ebi.ac.uk/support/interpro-general-query"] InterPro collects information about protein sequence analysis and classification, providing access to a database of predictive protein signatures used for the classification and automatic annotation of proteins and genomes. Sequences in InterPro are classified at superfamily, family, and subfamily. InterPro predicts the occurrence of functional domains, repeats, and important sites, and adds in-depth annotation such as GO terms to the protein signatures. eng ["disciplinary"] {"size": "22.053 families; 10.373 domains; 316 repeat; 36.524 entries", "updatedp": "2019-02-12"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.ebi.ac.uk/interpro/about.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Amino acid sequence", "Amino acids", "Genomes", "Nucleic acids", "Proteins"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The InterPro Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ebi.ac.uk/interpro/about.html#about_08", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Principles of Service Provision", "policyURL": "http://www.ebi.ac.uk/services"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Public Domain", "dataUploadLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] ["other"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/", "apiType": "FTP"} ["none"] http://www.ebi.ac.uk/interpro/about.html#about_06 [] yes yes [] [] {"syndication": "http://interprodb.blogspot.co.uk/feeds/posts/default?alt=rss", "syndicationType": "RSS"} The InterPro consortium consists of following databases: PROSITE profiles/patterns, CDD, HAMAP, MobiDB, Pfam, PRINTS, ProDom, SLFD, SMART, TIGRFAMs, PIRSF, SUPERFAMILY, CATH-Gene3D, PANTHER. 2014-05-15 2021-10-06 +r3d100010799 International Classification of Diseases eng [{"additionalName": "ICD", "additionalNameLanguage": "eng"}] http://www.who.int/classifications/icd/en/ [] ["http://www.who.int/about/contacthq/en/", "http://www.who.int/classifications/icd/ICD-10%20languages.pdf?ua=1"] ICD serves as the international standard for diagnostic classification for all general epidemiological, many health management purposes and clinical use. The ICD's resources include the analysis of different population groups' general health situations, monitoring of the incidence and prevalence of diseases in relation to the characteristics of the individuals affected, reimbursement, resource allocation, quality, and guidelines. The records provide the basis for the compilation of national mortality and morbidity statistics, and enable the storage and retrieval of diagnostic information for clinical epidemiological and quality purposes. eng ["disciplinary"] {"size": "11th revision", "updatedp": "2019-07-23"} 1992 ["ara", "eng", "fra", "jpn", "rus", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["classification system", "clinical purposes", "diagnostics", "epidemiology", "health management", "health standards", "medicine"] [{"institutionName": "World Health Organization", "institutionAdditionalName": ["WHO"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.who.int/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.who.int/about/contacthq/en/", "whofic@who.int"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.who.int/about/copyright/en/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.who.int/about/copyright/en/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://apps.who.int/classifications/apps/icd/ClassificationDownloadNR/license.htm"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "http://www.who.int/about/licensing/rss/en/", "syndicationType": "RSS"} #isDatabib; Ich würde den Service ICD nicht als FDR aufnehmen, da es sich um einen Standard handelt und Klassifikationen keine FD darstellen. Das Datenrepositorium kann stattdessen aufgenommen werden, das Global Health Observatory, hier zu finden: http://apps.who.int/gho/data/?theme=main 2014-06-16 2019-07-23 +r3d100010800 NOAA's Integrated Coral Observing Network eng [{"additionalName": "ICON", "additionalNameLanguage": "eng"}] http://ecoforecast.coral.noaa.gov/ [] ["https://ecoforecast.coral.noaa.gov/help?sid=0&station=HCBZ1&page=station-home"] This site provides a central location for integrated near real-time or recent data relating to coral reefs, and also provides ecological forecasts (through artificial intelligence technology) as to the occurrence of specified environmental conditions, as prescribed by modelers, oceanographers and marine biologists. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ecoforecast.coral.noaa.gov/index/0/HCBZ1/station-sources [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["coral health", "coral monitoring"] [{"institutionName": "National Oceanic and Atmospheric Administration, Coral Health and Monitoring Program", "institutionAdditionalName": ["NOAA, CHAMP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.coral.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, Coral Reef Conservation Program", "institutionAdditionalName": ["NOAA, Coral Reef"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://coralreef.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, Office of Oceanic and Atmospheric Research, Atlantic Oceanographic & Meteorological Laboratory", "institutionAdditionalName": ["NOAA, AOML"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.aoml.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, Office of the Chief Information Officer and High-Performance Computing and Communications Office", "institutionAdditionalName": ["NOAA, OCIO/HPCC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cio.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Disclaimers", "policyURL": "https://www.fisheries.noaa.gov/website-policies-and-disclaimers#linking-policy-disclaimer"}, {"policyName": "Policy on the Information Quality Act", "policyURL": "https://www.cio.noaa.gov/services_programs/info_quality.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://mers#linking-policy-disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cio.noaa.gov/services_programs/info_quality.html"}] closed [] ["unknown"] no {} ["none"] [] no yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} The ICON Program is another Coral Health and Monitoring Program (CHAMP) Project, supported by NOAA's Coral Reef Conservation Program , the High-Performance Computing and Communications Office, and operating at the Atlantic Oceanographic and Meteorological Laboratory 2014-07-23 2018-11-23 +r3d100010801 National Science Digital Library eng [{"additionalName": "NSDL", "additionalNameLanguage": "eng"}] https://nsdl.oercommons.org/ ["RRID:SCR_008215", "RRID:nif-0000-21294", "biodbcore-001196"] ["https://nsdl.oercommons.org/feedback", "https://nsdl.oercommons.org/nsdl-contacts-page"] The National Science Digital Library provides high quality online educational resources for teaching and learning, with current emphasis on the sciences, technology, engineering, and mathematics (STEM) disciplines—both formal and informal, institutional and individual, in local, state, national, and international educational settings. The NSDL collection contains structured descriptive information (metadata) about web-based educational resources held on other sites by their providers. These providers have contribute this metadata to NSDL for organized search and open access to educational resources via this website and its services. eng ["disciplinary"] {"size": "43.051 datasets", "updatedp": "2018-11-23"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://nsdl.oercommons.org/nsdl-overview [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["space science", "technology"] [{"institutionName": "Institute for the Study of Knowledge Management in Education", "institutionAdditionalName": ["ISKME"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://iskme.org/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://iskme.org/about-us/contact-us", "info@iskme.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "OER Commons", "institutionAdditionalName": ["Open Educational Resources"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oercommons.org/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["info@oercommons.org"]}, {"institutionName": "University Corporation for Atmospheric Research, National Science Digital Library", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2013", "institutionContact": ["https://www2.ucar.edu/contact-us"]}] [{"policyName": "OER Commons Conditions of Use", "policyURL": "http://wiki.oercommons.org/index.php/OER_Licensing_and_Conditions_of_Use"}, {"policyName": "OER Licensing and Conditions of Use", "policyURL": "http://wiki.oercommons.org/index.php/OER_Licensing_and_Conditions_of_Use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wiki.oercommons.org/index.php/Submitting_Materials_to_OER_Commons"}, {"dataLicenseName": "other", "dataLicenseURL": "http://wiki.oercommons.org/index.php/Submitting_Materials_to_OER_Commons"}] restricted [{"dataUploadLicenseName": "Submitting Materials to OER Commons", "dataUploadLicenseURL": "http://wiki.oercommons.org/index.php/Submitting_Materials_to_OER_Commons"}] ["unknown"] yes {"api": "https://wiki.ucar.edu/display/nsdldocs/nsdl_dc", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes [] [] {} 2014-07-15 2021-09-08 +r3d100010803 Integrated Relational Enzyme database eng [{"additionalName": "IntEnz", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/intenz/ ["FAIRsharing_doi:10.25504/FAIRsharing.q1fdkc", "OMICS_02684", "RRID:SCR_002992", "RRID:nif-0000-03028"] [] IntEnz contains the recommendation of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology on the nomenclature and classification of enzyme-catalyzed reactions. Users can browse by enzyme classification or use advanced search options to search enzymes by class, subclass and sub-subclass information. eng ["disciplinary", "other"] {"size": "7 classes; 76 subclasses; 7.350 approved EC; 55 preliminary EC; 6.261 active EC", "updatedp": "2017-08-23"} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/intenz/faq.jsp [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Biochemistry", "Bioinformatics", "Enzymes", "Hydrolases", "Isomerases", "Ligases", "Lyases", "Molecular biology", "Oxidoreductases", "Test anxiety", "Transferases"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ebi.ac.uk/about/contact"]}, {"institutionName": "International Union of Biochemistry and Molecular Biology", "institutionAdditionalName": ["NC-IUBMB"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.iubmb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Swiss Institute of Bioinformatics [Lausanne, Switzerland]", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isb-sib.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Dublin, Trinity College Dublin", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tcd.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tcd.ie/contacts/"]}] [{"policyName": "Classification rules", "policyURL": "https://www.ebi.ac.uk/intenz/rules.jsp"}, {"policyName": "Principles of Service Provision", "policyURL": "https://www.ebi.ac.uk/services"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "EC guidelines", "dataUploadLicenseURL": "https://www.ebi.ac.uk/intenz/advice.jsp"}] ["unknown"] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/intenz/enzyme", "apiType": "FTP"} ["other"] [] yes yes [] [] {"syndication": "https://sourceforge.net/p/intenz/news/feed", "syndicationType": "RSS"} 2014-05-16 2019-02-12 +r3d100010804 IMGT/HLA Database eng [{"additionalName": "IPD-IMGT/HLA", "additionalNameLanguage": "eng"}, {"additionalName": "ImMunoGeneTics/HLA Database", "additionalNameLanguage": "eng"}, {"additionalName": "International ImMunoGeneTics information system/Humane Leukozyten Antigene Database", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/ipd/imgt/hla/ ["FAIRsharing_doi:10.25504/FAIRsharing.e28v7g", "RRID:SCR_002971", "RRID:nif-0000-03014"] ["https://www.ebi.ac.uk/support/hla.php"] The IPD-IMGT/HLA Database provides a specialist database for sequences of the human major histocompatibility complex (MHC) and includes the official sequences named by the WHO Nomenclature Committee For Factors of the HLA System. The IPD-IMGT/HLA Database is part of the international ImMunoGeneTics project (IMGT). The database uses the 2010 naming convention for HLA alleles in all tools herein. To aid in the adoption of the new nomenclature, all search tools can be used with both the current and pre-2010 allele designations. The pre-2010 nomenclature designations are only used where older reports or outputs have been made available for download. eng ["disciplinary", "institutional"] {"size": "20.088 allele sequences", "updatedp": "2018-11-23"} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/ipd/imgt/hla/intro.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Immunogenetics", "allele", "bioinformatics", "gene mapping", "gene rearrangement", "genetic recombination - research", "genetics - research", "histocompatibility", "human"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Histogenetics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.histogenetics.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Free Hospital, Anthony Nolan Research Institute, HLA Informatics Group", "institutionAdditionalName": ["HLA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.anthonynolan.org/clinicians-and-researchers/anthony-nolan-research-institute/hla-informatics-group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University, School of Medicine, Parham Lab", "institutionAdditionalName": ["Parham Lab"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/group/parhamlab/members/peter-parham/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/ipd/licence/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/"}] restricted [{"dataUploadLicenseName": "Submission Tool", "dataUploadLicenseURL": "https://www.ebi.ac.uk/ipd/imgt/hla/subs/submit.html"}] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/ipd/imgt/hla/", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/ipd/imgt/hla/help/faq.html#citing [] yes yes [] [] {} IMGT/HLA is a part of Immuno Polymorphism Database and is part of IMGT, the international ImMunoGeneTics information system® http://www.imgt.org 2014-05-16 2019-02-13 +r3d100010805 The National Practitioner Data Bank eng [{"additionalName": "NPDB", "additionalNameLanguage": "eng"}, {"additionalName": "The Data Bank", "additionalNameLanguage": "eng"}] https://www.npdb.hrsa.gov/ [] ["dpdbdatarequests@hrsa.gov", "help@npdb.hrsa.gov"] The National Practitioner Data Bank (NPDB), or "the Data Bank," is a confidential information clearinghouse created by Congress with the primary goals of improving health care quality, protecting the public, and reducing health care fraud and abuse in the U.S. eng ["institutional"] {"size": "1,28 million reports", "updatedp": "2018-11-23"} 2013-05-06 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.npdb.hrsa.gov/topNavigation/aboutUs.jsp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["health care", "statistics"] [{"institutionName": "U.S. Department of Health and Human Services, Health Resources and Services Administration", "institutionAdditionalName": ["HHS, HRSA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.hrsa.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Freedom of Information Act (FOIA)", "policyURL": "https://www.hrsa.gov/foia/index.html"}, {"policyName": "Legislation & Regulations", "policyURL": "https://www.npdb.hrsa.gov/resources/aboutLegsAndRegs.jsp"}, {"policyName": "Public Information", "policyURL": "https://www.npdb.hrsa.gov/footer/publicInformation.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.npdb.hrsa.gov/footer/publicInformation.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.npdb.hrsa.gov/resources/publicData.jsp#termsOfAgree"}] closed [] ["unknown"] {"api": "https://www.npdb.hrsa.gov/software/downloadsAndDocumentation.jsp", "apiType": "other"} ["none"] [] no yes [] [] {"syndication": "https://www.npdb.hrsa.gov/rss/rss.xml", "syndicationType": "RSS"} NPDB statistical data is made available to the public 2014-07-24 2021-08-24 +r3d100010806 Digital Library for Earth System Education eng [{"additionalName": "DLESE", "additionalNameLanguage": "eng"}] http://www.dlese.org/lib/index.html [] ["support@dlese.org"] DLESE is the Digital Library for Earth System Education, a geoscience community resource that supports teaching and learning about the Earth system. It is funded by the National Science Foundation and is being built by a community of educators, students, and scientists to support Earth system education at all levels and in both formal and informal settings. Resources in DLESE include lesson plans, scientific data, visualizations, interactive computer models, and virtual field trips - in short, any web-accessible teaching or learning material. Many of these resources are organized in collections, or groups of related resources that reflect a coherent, focused theme. In many ways, digital collections are analogous to collections in traditional bricks-and-mortar libraries. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.dlese.org/lib/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["ecosystems", "educational resources", "gravity", "plate tectonics", "solar system", "weater and climate"] [{"institutionName": "National Center for Atmospheric Research, University Corporation for Antmospheric Research, Computational and Information Systems Laboratory", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.cisl.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.cisl.ucar.edu/directions"]}, {"institutionName": "National Center for Atmospheric Research, University Corporation for Antmospheric Research, Library", "institutionAdditionalName": ["NCAR, UCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://library.ucar.edu/about/staff"]}, {"institutionName": "National Science Digital Library", "institutionAdditionalName": ["NSDL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nsdl.oercommons.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsdl.oercommons.org/nsdl-contacts-page"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2008-10-31", "institutionContact": []}] [{"policyName": "DLESE Collection Scope and Policy Statement", "policyURL": "https://www.dlese.org/documents/policy/CollectionsScope_final.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www2.ucar.edu/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www2.ucar.edu/terms-of-use"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dlese.org/documents/policy/CollectionsScope_final.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.dlese.org/documents/policy/collections_accession.html"}] closed [] ["other"] yes {"api": "http://uc.dls.ucar.edu/dds_oai_server/index.jsp", "apiType": "OAI-PMH"} ["none"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-07-23 2021-08-24 +r3d100010807 DOE Data Explorer eng [{"additionalName": "DDE", "additionalNameLanguage": "eng"}] https://www.osti.gov/dataexplorer/ [] ["ddecomments@osti.gov"] The DOE Data Explorer (DDE) is an information tool to help you locate DOE's collections of data and non-text information and, at the same time, retrieve individual datasets within some of those collections. It includes collection citations prepared by the Office of Scientific and Technical Information, as well as citations for individual datasets submitted from DOE Data Centers and other organizations. eng ["disciplinary", "institutional"] {"size": "73.470 datasets", "updatedp": "2018-11-23"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.osti.gov/dataexplorer/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Energy", "Science", "engineering", "technology"] [{"institutionName": "U.S. Department of Energy, Office of Science, Office of Scientific and Technical Information, WorldWideScience.org", "institutionAdditionalName": ["The Global Science Gateway"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://worldwidescience.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Scientific and Technical Information", "institutionAdditionalName": ["OSTI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.osti.gov/", "institutionIdentifier": ["RRID:SCR_002670", "RRID:nif-0000-22793"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["OSTIWebmaster@osti.gov", "reports@osti.gov"]}, {"institutionName": "U.S. Department of Energy, Science.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.science.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Website Policies", "policyURL": "https://www.osti.gov/dataexplorer/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.osti.gov/dataexplorer/disclaimer#copyright"}] restricted [] ["unknown"] {"api": "https://www.osti.gov/xml-services", "apiType": "other"} ["DOI"] https://www.osti.gov/dataexplorer/disclaimer#copyright [] unknown yes [] [] {} 2014-07-23 2018-12-19 +r3d100010808 Genomes OnLine Database eng [{"additionalName": "GOLD", "additionalNameLanguage": "eng"}] https://gold.jgi.doe.gov/index ["FAIRsharing_doi:10.25504/FAIRsharing.5q1p14", "OMICS_06148", "RRID:SCR_002817", "RRID:nif-0000-02918"] ["mail@genomesonline.org"] GOLD is currently the largest repository for genome project information world-wide. The accurate and efficient genome project tracking is a vital criterion for launching new genome sequencing projects, and for avoiding significant overlap between various sequencing efforts and centers. eng ["disciplinary"] {"size": "33.543 studies; 53.160 biosamples; 235.292 sequencing projects; 188.099 analysis projects; 325.769 organisms", "updatedp": "2018-11-23"} 1997 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://jgi.doe.gov/data-and-tools/gold/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["archaea", "bacteria", "biogeography", "eukaryota", "genetics", "genomics", "metagenome", "sequenzing"] [{"institutionName": "U.S. Department of Energy, Office of Science, Joint Genome Institute", "institutionAdditionalName": ["JGI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://jgi.doe.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://jgi.doe.gov/contact-us/"]}, {"institutionName": "University of California", "institutionAdditionalName": ["UC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.universityofcalifornia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Policy", "policyURL": "https://genome.jgi.doe.gov/pages/data-usage-policy.jsf"}, {"policyName": "JGI Data Release Policy", "policyURL": "https://jgi.doe.gov/user-program-info/pmo-overview/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://jgi.doe.gov/disclaimer/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://jgi.doe.gov/disclaimer/"}] closed [] ["unknown"] {} ["none"] https://gold.jgi.doe.gov/usagepolicy [] no unknown [] [] {} 2014-07-23 2019-01-17 +r3d100010809 DEWA/GRID-Geneva eng [{"additionalName": "GRID-Geneva", "additionalNameLanguage": "eng"}, {"additionalName": "Global Resource Information Database Geneva", "additionalNameLanguage": "eng"}] https://unepgrid.ch/en/ [] ["infogrid@unepgrid.ch"] GRID-Geneva is a unique platform providing analyses and solutions for a wide range of environmental issues. GRID-Geneva serves primarily the needs of its three institutional partners - UNEP, the Swiss Federal Office for the Environment (FOEN) and the University of Geneva (UniGe) - which are linked by an ongoing, multi-year “Partnership Agreement”, along with other local-to-global stakeholders. GRID-Geneva is also a bilingual English and French centre and the key francophone link within the global GRID network of centres. GRID-Geneva is a key centre of geo-spatial know-how, with strengths in GIS, IP/remote sensing and statistical analyses, integrated through modern spatial data infrastructures and web applications. Working at the interface between scientific information and policy/decision-making, GRID-Geneva also helps to develop capacities in these fields of expertise among target audiences, countries and other groups. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://unepgrid.ch/en/about-us/grid [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["ecology", "environment", "environmental science", "geology", "limnology", "soil science"] [{"institutionName": "GRID-Geneva", "institutionAdditionalName": ["UNEP/DEWA/GRID-Geneva"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://unepgrid.ch/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Federal Office for the Environment", "institutionAdditionalName": ["CH-FOEN", "Conf\u00e9deration suisse - Office f\u00e9deral de l'environnement", "OFEV"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bafu.admin.ch/bafu/en/home.html", "institutionIdentifier": ["ROR:04t48sm91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United Nations Environment Programme", "institutionAdditionalName": ["UNEP"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.unenvironment.org/", "institutionIdentifier": ["ROR:015z29x25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unenvironment.org/about-un-environment"]}, {"institutionName": "University of Geneva", "institutionAdditionalName": ["Universit\u00e9 de Gen\u00e8ve"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.unige.ch/", "institutionIdentifier": ["ROR:01swzsf04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use of this Application and Data therein", "policyURL": "http://ede.grid.unep.ch/extras/agreement.php"}, {"policyName": "Terms and Conditions of Use", "policyURL": "https://preview.grid.unep.ch/index.php?preview=about&cat=2&lang=eng#terms"}, {"policyName": "Terms of use", "policyURL": "https://www.unenvironment.org/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ede.grid.unep.ch/extras/agreement.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://preview.grid.unep.ch/index.php?preview=about&cat=2&lang=eng"}] closed [] [] {} ["none"] [] no unknown [] [] {} GRID-Geneva generates many products. These products can be classified in different ways: by the UNEP priority(ies) they address, by their geographic attribution, by theme or by GRID in-house activity cluster. 2014-07-23 2021-07-12 +r3d100010810 OFA Records eng [{"additionalName": "OFA databases and DNA repository", "additionalNameLanguage": "eng"}, {"additionalName": "Orthopedic Foundation for Animals", "additionalNameLanguage": "eng"}] https://www.ofa.org/search.html?btnSearch=Advanced+Search [] ["https://www.ofa.org/about/contact", "ofa@ofa.org"] The OFA databases are core to the organization’s objective of establishing control programs to lower the incidence of inherited disease. Responsible breeders have an inherent responsibility to breed healthy dogs. The OFA databases serve all breeds of dogs and cats, and provide breeders a means to respond to the challenge of improving the genetic health of their breed through better breeding practices. The testing methodology and the criteria for evaluating the test results for each database were independently established by veterinary scientists from their respective specialty areas, and the standards used are generally accepted throughout the world. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "20714 Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.ofa.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Canine Health Information Center - CHIC", "DNA repository", "animal disease", "animal health science", "animal wellness", "cats", "dogs", "health survey", "hip dysplasia", "statistics"] [{"institutionName": "American Kennel Club Canine Health Foundation", "institutionAdditionalName": ["AKC Canine Health Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.akcchf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Animal Health Trust", "institutionAdditionalName": ["AHT"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.aht.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.aht.org.uk/cms-display/contactus.html"]}, {"institutionName": "Canine health Information Center", "institutionAdditionalName": ["CHIC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.caninehealthinfo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.caninehealthinfo.org/chicinfo.html#contacts"]}, {"institutionName": "Morris Animal Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.morrisanimalfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.morrisanimalfoundation.org/contact-us"]}, {"institutionName": "Orthopedic Foundation for Animals", "institutionAdditionalName": ["OFA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.ofa.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ofa@ofa.org"]}] [{"policyName": "OFA policies", "policyURL": "https://www.ofa.org/about/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ofa.org/about"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ofa.org/pdf/databasechange.pdf"}] restricted [] ["unknown"] no {} ["none"] [] no yes [] [] {} Partners of the Orthopedic Foundation for Animals (OFA) are the Canine health Information Center (CHIC), the American Kennel Club Canine Health Foundation (CHF), the Morris Animal Foundation and the Animal Health Trust (AHT). 2014-07-25 2018-11-23 +r3d100010811 Cultural Policy and the Arts National Data Archive eng [{"additionalName": "CPANDA", "additionalNameLanguage": "eng"}] http://www.cpanda.org/cpanda/ [] ["cpanda@princeton.edu"] CPANDA, the Cultural Policy and the Arts National Data Archive, is the world's first interactive digital archive of policy-relevant data on the arts and cultural policy in the United States. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.cpanda.org/cpanda/about/mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["art forms", "arts education", "cultural policy"] [{"institutionName": "National Archive of Data on Arts and Culture", "institutionAdditionalName": ["NADAC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/NADAC/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icpsr.umich.edu/icpsrweb/content/NADAC/contact.html"]}, {"institutionName": "Princeton University's Firestone Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://library.princeton.edu/firestone", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["http://library.princeton.edu/ask-us"]}, {"institutionName": "Princeton University, Princeton Center for Arts and Cultural Policy Studies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.princeton.edu/culturalpolicy/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["artspol@princeton.edu"]}] [{"policyName": "Copyright Policy", "policyURL": "http://www.cpanda.org/cpanda/about/policies"}, {"policyName": "End User Agreement", "policyURL": "http://www.cpanda.org/cpanda/about/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.cpanda.org/cpanda/about/policies"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cpanda.org/cpanda/about/agreement"}] restricted [] ["unknown"] yes {} ["none"] [] no unknown [] [] {} The Pew Charitable Trusts ( http://www.pewtrusts.org) underwrote the original development of the archive. The National Endowment for the Arts ( http://www.arts.gov) will be taking over the content sometime in 2014 and the data will be part of a new publicly accessible archive at ICPSR, the National Archive of Data on Arts and Culture (NADAC). The CPANDA site will remain active until then. 2014-07-25 2018-11-23 +r3d100010812 Global Health Observatory Data Repository eng [{"additionalName": "GHO data repository", "additionalNameLanguage": "eng"}] http://www.who.int/gho/database/en/ [] ["gho_info@who.int"] The GHO data repository provides access to over 50 datasets on priority health topics including mortality and burden of diseases, the Millennium Development Goals (child nutrition, child health, maternal and reproductive health, immunization, HIV/AIDS, tuberculosis, malaria, neglected diseases, water and sanitation), non communicable diseases and risk factors, epidemic-prone diseases, health systems, environmental health, violence and injuries, equity among others. In addition, the GHO provides on-line access to WHO's annual summary of health-related data for its Member states: the World Health Statistics. eng ["institutional"] {"size": "", "updatedp": ""} ["ara", "eng", "fra", "rus", "spa", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "HIV/AIDS", "child health", "diseases", "environmental health", "epidemic-prone diseases", "health", "health systems", "immunization", "violence and injuries"] [{"institutionName": "World Health Organization", "institutionAdditionalName": ["WHO"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.who.int/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.who.int/about/contact_form/en/"]}] [{"policyName": "Permissions and licensing", "policyURL": "http://www.who.int/about/licensing/en/"}, {"policyName": "WHO policy on open access", "policyURL": "http://www.who.int/about/policy/en/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.who.int/about/copyright/en/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/igo/legalcode"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/igo/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.who.int/about/copyright/en/"}] closed [] ["unknown"] no {"api": "http://apps.who.int/gho/data/node.resources.api?lang=en", "apiType": "other"} ["none"] [] no yes [] [] {} 2014-07-23 2020-04-24 +r3d100010813 Wharton Research Data Services eng [{"additionalName": "WRDS", "additionalNameLanguage": "eng"}] https://wrds-web.wharton.upenn.edu/wrds/ [] ["https://www.facebook.com/Wharton-Research-Data-Services-WRDS-97638911013/"] Wharton Research Data Services (WRDS) is a web-based business data research service from The Wharton School at the University of Pennsylvania. Developed in 1993 to support faculty research at Wharton, the service has evolved to become a common tool for research for over 290 institutions around the world. WRDS is the de facto standard for business data, providing researchers worldwide with instant access to financial, economic, and marketing data through a uniform, web-based interface. This hosted data service has become the locus for quantitative data research and is recognized by the academic and financial research community around the world as the leading business intelligence tool. WRDS provides access to COMPUSTAT, CRSP, IBES, NYSE-TAQ, Bureau van Dijk, Global Insight, OptionMetrics and other important business research databases. eng ["disciplinary"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://wrds-www.wharton.upenn.edu/pages/about/?_ga=2.103243849.894001953.1503909743-863245952.1503909743 [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Accounting", "Banking", "Economics", "Finance", "Marketing", "Statistics"] [{"institutionName": "University of Pennsylvania, The Wharton School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.wharton.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["communications@wharton.upenn.edu"]}] [{"policyName": "WRDS Terms of Use", "policyURL": "https://wrds-web.wharton.upenn.edu/wrds/about/terms.cfm?"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://wrds-web.wharton.upenn.edu/wrds/about/terms.cfm?"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wrds-web.wharton.upenn.edu/wrds/about/terms.cfm?"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wrds-web.wharton.upenn.edu/wrds/about/terms.cfm?"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2014-07-25 2018-12-19 +r3d100010814 Database of Genomic Variants Archive eng [{"additionalName": "DGVa", "additionalNameLanguage": "eng"}, {"additionalName": "DGVarchive", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/dgva/ ["FAIRsharing_doi:10.25504/FAIRsharing.txkh36", "OMICS_05335", "RRID:SCR_004896", "RRID:nlx_86626"] ["dgva-admin@ebi.ac.uk", "dgva-helpdesk@ebi.ac.uk"] The Database of Genomic Variants archive provides curated archiving and distribution of publicly available genomic structural variants. Direct submissions are accepted as well as published data. The DGVa is the primary supplier of data to the Database of Genomic Variants (DGV) (hosted by The Centre for Applied Genomics in Toronto, Canada). eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Biology", "DNA", "Genomes", "Molecular biology", "biochemistry", "bioinformatics", "biotechnology", "gene expression", "gene mapping", "genetics", "genomics"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Principles of Service Provision", "policyURL": "https://www.ebi.ac.uk/services"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Public domain", "dataUploadLicenseURL": "https://www.ebi.ac.uk/dgva/data-submission"}] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/dgva/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} The DGVa works closely with the Database of Genomic Variants (DGV), hosted by The Centre for Applied Genomics in Toronto, Canada and dbVar hosted by the National Center for Biotechnology Information in Washington DC, USA. These collaborations aim to improve community resources for the storage, distribution and analysis of genomic structural variation. 2014-05-28 2019-02-13 +r3d100010815 Mechanism and Catalytic Site Atlas eng [{"additionalName": "CSA (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Catalytic Site Atlas (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "M-CSA", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/thornton-srv/m-csa/Dine26!2 ["FAIRsharing_doi:10.25504/FAIRsharing.BrubDI", "OMICS_23276", "RRID:SCR_013099", "RRID:nif-0000-02699"] ["ribeiro@ebi.ac.uk"] M-CSA is a database of enzyme reaction mechanisms. It provides annotation on the protein, catalytic residues, cofactors, and the reaction mechanisms of hundreds of enzymes. There are two kinds of entries in M-CSA. 'Detailed mechanism' entries are more complete and show the individual chemical steps of the mechanism as schemes with electron flow arrows. 'Catalytic Site' entries annotate the catalytic residues necessary for the reaction, but do not show the mechanism. The M-CSA (Mechanism and Catalytic Site Atlas) represents a unified resource that combines the data in both MACiE and the CSA eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-09 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ebi.ac.uk/thornton-srv/m-csa/about/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3d structure", "activation (chemistry)", "amino acids", "catalysis", "enzymes", "proteins"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute, Thornton Group", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/research/thornton", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nd/3.0/"}] closed [] ["unknown"] yes {} ["other"] https://www.ebi.ac.uk/thornton-srv/m-csa/about/ [] yes yes [] [] {} 2014-05-19 2021-09-03 +r3d100010818 ISPS Data Archive eng [{"additionalName": "Institution for Social and Policy Studies Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Yale ISPS", "additionalNameLanguage": "eng"}] https://isps.yale.edu/research/data/ ["RRID:SCR_003127", "RRID:nlx_156779"] ["https://isps.yale.edu/contact"] The majority of digital content in the ISPS Data Archive currently consists of social science research data from experiments, program files with the code for analyzing these data, requisite documentation to use and understand the data, and associated files. Access to the ISPS Data Archive is provided at no cost and is granted for scholarship and research purposes only. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://isps.yale.edu/research/data [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioethics", "economics", "interoperability", "life-cycle management", "political ethics"] [{"institutionName": "Yale University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.yale.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.yale.edu/about/contact.html"]}] [{"policyName": "Terms of Use Agreement", "policyURL": "https://isps.yale.edu/research/data/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/us/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/us/"}] restricted [{"dataUploadLicenseName": "ISPS Data Archive Deposit Agreement", "dataUploadLicenseURL": "http://isps.yale.edu/sites/default/files/files/ISPS%20Data%20Deposit%20Agreement%20Form%205_17_2011.pdf"}] ["unknown"] {} ["hdl"] https://isps.yale.edu/research/data/d061#.U95vlGM3-KIisps.yale.edu/sites/default/files/files/ISPS%20Data%20Deposit%20Agreement%20Form%205_17_2011.pdf [] yes yes [] [] {} 2014-07-23 2018-11-23 +r3d100010819 General Social Survey eng [{"additionalName": "GSS", "additionalNameLanguage": "eng"}] http://gss.norc.org/ [] ["http://gss.norc.org/contact"] The General Social Survey (GSS) conducts basic scientific research on the structure and development of American society with a data-collection program designed to both monitor societal change within the United States and to compare the United States to other nations. eng ["disciplinary"] {"size": "", "updatedp": ""} 1972 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://gss.norc.org/About-The-GSS [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["behavior", "cross-national", "demography", "societal trends", "teaching"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Chicago, National Opinion Research Center", "institutionAdditionalName": ["NORC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.norc.org/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@norc.org"]}] [{"policyName": "NORC Terms and Conditions", "policyURL": "http://www.norc.org/Pages/terms-and-conditions.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://gss.norc.org/terms-and-conditions"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.norc.org/Pages/terms-and-conditions.aspx"}] closed [] ["Nesstar"] no {} ["none"] http://gss.norc.org/faq [] no unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Since 1985, the GSS has participated in the International Social Survey Program (ISSP). The ISSP involves social scientists from 47 countries and is still expanding. Each year, sections of the GSS are devoted to ISSP questions that are asked in nations around the world. 2014-07-23 2021-05-20 +r3d100010820 The Population Research in Sexual Minority Health Data Archive eng [{"additionalName": "PRISM", "additionalNameLanguage": "eng"}] https://www.icpsr.umich.edu/icpsrweb/content/ICPSR/fenway.html [] ["avanwagenen@fenwayhealth.org"] The Population Research in Sexual Minority Health (PRISM) Data Archive is a collaborative project of the Center for Population Research in LGBT Health and the Inter-university Consortium for Political and Social Research (ICPSR). The PRISM data archive project is a primary initiative of the Center. PRISM makes high quality datasets useful for analysis of issues affecting sexual and gender minority populations in the United States available researchers, scholars, educators and practitioners. eng ["disciplinary"] {"size": "16.251 results", "updatedp": "2021-09-06"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.icpsr.umich.edu/icpsrweb/content/ICPSR/fenway.html#aboutprism [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bisexuality", "sexuality", "transgender"] [{"institutionName": "Center for Population Research in LGBT Health, The Fenway Institute", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lgbtpopulationcenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["information@fenwayhealth.org"]}, {"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Federal Agency Policies on Data Management and Sharing", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/dmp/federal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/chapter1.html#IP"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/FENWAY/datasets/#downloading"}] restricted [{"dataUploadLicenseName": "ICPSR deposit data", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/deposit/index.jsp"}] ["unknown"] {} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/ack.html [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/feeds/studies", "syndicationType": "RSS"} PRISM is a member of ICPSR. 2014-07-23 2021-09-06 +r3d100010821 TeachingWithData.org eng [{"additionalName": "Pathway to Quantitative Literacy in the Social Sciences", "additionalNameLanguage": "eng"}, {"additionalName": "TwD", "additionalNameLanguage": "eng"}] http://www.teachingwithdata.org/ [] ["http://www.teachingwithdata.org/feedback"] <<>>!!!>>> TeachingWithData.org is a portal where faculty can find resources and ideas to reduce the challenges of bringing real data into post-secondary classes. It allows faculty to introduce and build students' quantitative reasoning abilities with readily available, user-friendly, data-driven teaching materials. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.teachingwithdata.org/collection-development-policy#mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["charts", "educational material", "exercises", "literacy", "pedagogy", "publications", "statistic maps", "synamic maps", "tables"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Social Science Data Analysis Network", "institutionAdditionalName": ["SSDAN.net"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ssdan.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, National Science Digital Library", "institutionAdditionalName": ["NSDL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsdl.oercommons.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@umich.edu"]}] [{"policyName": "Collection Development Policy", "policyURL": "http://www.teachingwithdata.org/collection-development-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.teachingwithdata.org/collection-development-policy#scope"}] restricted [] ["unknown"] no {} ["none"] [] unknown yes [] [] {"syndication": "http://teachingwithdata.blogspot.com/feeds/posts/default/-/news?alt=rss", "syndicationType": "RSS"} TeachingWithData.org is a partnership between the Inter-university Consortium for Political and Social Research (ICPSR) and the Social Science Data Analysis Network (SSDAN), both at the University of Michigan. 2014-07-25 2021-11-16 +r3d100010822 Spectral Database for Organic Compounds eng [{"additionalName": "SDBS", "additionalNameLanguage": "eng"}, {"additionalName": "\u6709\u6a5f\u5316\u5408\u7269\u306e\u30b9\u30da\u30af\u30c8\u30eb\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9", "additionalNameLanguage": "jpn"}] https://sdbs.db.aist.go.jp/sdbs/cgi-bin/cre_index.cgi ["RRID:SCR_014671"] ["https://sdbs.db.aist.go.jp/sdbs/LINKS/contact_eng.html"] SDBS is an integrated spectral database system for organic compounds, which includes 6 different types of spectra under a directory of the compounds. The six spectra are as follows, an electron impact Mass spectrum (EI-MS), a Fourier transform infrared spectrum (FT-IR), a 1H nuclear magnetic resonance (NMR) spectrum, a 13C NMR spectrum, a laser Raman spectrum, and an electron spin resonance (ESR) spectrum. eng ["disciplinary"] {"size": "ca. 34.600 compounds", "updatedp": "2018-11-23"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://sdbs.db.aist.go.jp/sdbs/LINKS/Introduction_eng.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["metabolomics", "organic compounds", "spectra", "spectral patterns"] [{"institutionName": "National Institute of Advanced Industrial Science and Technology", "institutionAdditionalName": ["AIST", "\u7523\u696d\u6280\u8853\u7dcf\u5408\u7814\u7a76\u6240", "\u7523\u7dcf\u7814"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aist.go.jp/index_en.html", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Metrology Institute of Japan", "institutionAdditionalName": ["NMIJ"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nmij.jp/english/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://sdbs.db.aist.go.jp/sdbs/cgi-bin/cre_index.cgi"}] closed [] ["unknown"] no {} ["none"] https://sdbs.db.aist.go.jp/sdbs/cgi-bin/cre_index.cgi [] no no [] [] {} SDBS is covered by Thomson Reuters Data Citation Index. 2014-07-24 2018-11-23 +r3d100010823 NEW GIST Data Repository eng [{"additionalName": "GIST", "additionalNameLanguage": "eng"}] https://gistdata.itos.uga.edu/ [] ["gist-admin@itos.uga.edu"] !!!This site has been decomissioned!!!! The Geographic Information Support Team (GIST) Repository at the University of Georgia is a USAID-funded global archive of spatial data collected and distributed for the greater humanitarian community. If you want to search for data, you will need a valid email address to create an account. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-06 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://gistdata.itos.uga.edu/node/5 [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Geography"] [{"institutionName": "USAID", "institutionAdditionalName": ["From the American People"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usaid.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia, Carl Vinson Institute of Government", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cviog.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.transit.uga.edu/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://gistdata.itos.uga.edu/"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-07-23 2017-08-29 +r3d100010824 NCAA Student-Athlete Experiences Data Archive eng [] https://www.icpsr.umich.edu/icpsrweb/NCAA/ [] ["help@icpsr.umich.edu"] The NCAA Student-Athlete Experiences Data Archive provides access to data about student athletes and will grow to include a handful of user-friendly data collections related to graduation rates; team-level Academic Progress Rates in Division I; and individual-level data on the experiences of current and former student-athletes from the NCAA's Growth, Opportunities, Aspirations and Learning of Students in college study (GOALS), and the Study of College Outcomes and Recent Experiences (SCORE). In the long run, the NCAA expects to follow this initial release with the publication of as much data as possible from its archives. The data is used by college presidents, athletic personnel, faculty, student-athlete groups, media members, and researchers in looking at issues related to intercollegiate athletics and higher education. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.icpsr.umich.edu/icpsrweb/content/NCAA/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Athletics", "College sports", "Physical therapists", "Sports", "census data"] [{"institutionName": "National Collegiate Athletic Association", "institutionAdditionalName": ["NCAA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research, Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCAA fairness and Integrity", "policyURL": "http://www.ncaa.org/about/what-we-do/fairness-and-integrity"}, {"policyName": "NCAA.org Terms and Privacy Policy", "policyURL": "http://www.ncaa.org/about/ncaaorg-terms-and-privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncaa.org/about/ncaaorg-terms-and-privacy-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/NCAA/goals-rfp.html"}] closed [] ["unknown"] {} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/NCAA/studies/30022#cite [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2014-05-21 2018-12-19 +r3d100010825 Collaborative Psychiatric Epidemiology Surveys 2001 - 2003 eng [{"additionalName": "CPES", "additionalNameLanguage": "eng"}, {"additionalName": "ICPSR 20240", "additionalNameLanguage": "eng"}] https://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20240 [] ["help@icpsr.umich.edu"] CPES provides access to information that relates to mental disorders among the general population. Its primary goal is to collect data about the prevalence of mental disorders and their treatments in adult populations in the United States. It also allows for research related to cultural and ethnic influences on mental health. CPES combines the data collected in three different nationally representative surveys (National Comorbidity Survey Replication, National Survey of American Life, National Latino and Asian American Study). eng ["disciplinary"] {"size": "1 study", "updatedp": "2018-11-23"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11004 Differential Psychology, Clinical Psychology, Medical Psychology, Methodology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20609 Biological Psychiatry", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.icpsr.umich.edu/icpsrweb/content/about/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["clinical epidemiology", "depression", "diseases", "epidemiology", "health services", "mental health", "mental illness", "psychiatric epidemiology", "public health"] [{"institutionName": "National Institute of Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Inter-University Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icpsr.umich.edu/icpsrweb/content/about/contact.html"]}, {"institutionName": "University of Michigan, Institute for Social Research, Survey Research Center", "institutionAdditionalName": ["SRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.src.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.src.isr.umich.edu/contact/"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20240/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20240/terms"}] closed [] ["unknown"] yes {"api": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/oai/studies", "apiType": "OAI-PMH"} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20240/terms [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-06-23 2020-12-04 +r3d100010826 Berman Jewish Data Bank eng [] https://www.jewishdatabank.org/databank [] ["https://www.jewishdatabank.org/databank/about/contact.html", "info@jewishdatabank.org"] The BERMAN JEWISH DATABANK @ THE JEWISH FEDERATIONS OF NORTH AMERICA is the central online address for quantitative studies of North American Jews and Jewish communities. Archives and makes available electronically questionnaires, reports and data files from the National Jewish Population Surveys (NJPS) of 1971, 1990 and 2000-01. It provides access to other national Jewish population reports, Jewish population statistics and approximately 200 local Jewish community studies from the major Jewish communities in North America. eng ["disciplinary"] {"size": "", "updatedp": ""} 1986 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.jewishdatabank.org/databank/about/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["demography", "jews", "judaism in the United States", "sociology"] [{"institutionName": "Jewish Federations of North America", "institutionAdditionalName": ["JFNA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jewishfederations.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://jewishfederations.org/contact-us"]}, {"institutionName": "Mandell L. and Madeleine H. Berman Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iataskforce.org/entities/view/254", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jewishdatabank@JewishFederations.org"]}, {"institutionName": "Stanford Graduate School of Education, Berman Jewish Policy Archive", "institutionAdditionalName": ["BJPA", "Berman Jewish Policy Archive", "NYUs Robert F. Wagner Graduate School of Public, Berman Jewish Policy Archive"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bjpa.org/bjpa", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jewishresearcharchive@stanford.edu"]}, {"institutionName": "University of Connecticut, Center for Judaic Studies and Contemporary Jewish Life", "institutionAdditionalName": ["Center for Judaic Studies and Contemporary Jewish Life", "UCONN Center for Judaic Studies and Contemporary Jewish Life"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://judaicstudies.uconn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://judaicstudies.uconn.edu/about/contact/"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.jewishdatabank.org/databank/about/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.jewishdatabank.org/databank/about/terms-of-use.html"}] restricted [] ["unknown"] {} ["none"] https://www.jewishdatabank.org/databank/about/terms-of-use.html [] yes yes [] [] {} The Berman Jewish DataBank was founded as the North American Jewish Data Bank until June 2013. 2014-06-27 2021-12-22 +r3d100010827 TRY eng [{"additionalName": "Plant Trait Database", "additionalNameLanguage": "eng"}] https://www.try-db.org/TryWeb/Home.php [] ["https://www.try-db.org/TryWeb/Contact.php", "jkattge@bgc-jena.mpg.de"] This database is a global archive and describes plant traits from throughout the globe. TRY is a network of vegetation scientists headed by DIVERSITAS, IGBP, iDiv, the Max Planck Institute for Biogeochemistry and an international Advisory Board. About half of the data are geo-referenced, providing a global coverage of more than 8000 measurement sites. eng ["disciplinary"] {"size": "11.850.781 trait records; 279 875 plant taxa", "updatedp": "2021-12-22"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.try-db.org/TryWeb/About.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "biogeography", "biology", "botany", "characteristics of plants", "ecology", "ecosystem", "plant anatomy", "plant morphology", "plant phenology", "plant physiology", "terrestrial vegetation"] [{"institutionName": "Climate-Environment-Society", "institutionAdditionalName": ["Climat-Environnement-Soci\u00e9t\u00e9"], "institutionCountry": "FRA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.gisclimat.fr/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gisclimat.fr/en/who-we-are/paris-research-consortium-climate-environment-society.html"]}, {"institutionName": "Fondation pour la Recherche sur la Biodiversit\u00e9", "institutionAdditionalName": ["FRB", "Foundation for Research on Biodiversity"], "institutionCountry": "FRA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.fondationbiodiversite.fr/", "institutionIdentifier": ["ROR:05x5km989"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fondationbiodiversite.fr/la-fondation/nous-contacter/", "secretariat@fondationbiodiversite.fr"]}, {"institutionName": "Future Earth", "institutionAdditionalName": ["fomerly: DIVERSITAS"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://futureearth.org/", "institutionIdentifier": ["ROR:04qbvap43"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["contact@futureearth.org"]}, {"institutionName": "German Centre for Integrative Biodiversity Research", "institutionAdditionalName": ["Deutsches Zentrum f\u00fcr integrative Biodiversit\u00e4tsforschung", "iDiv"], "institutionCountry": "DEU", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.idiv.de/de", "institutionIdentifier": ["ROR:01jty7g66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.idiv.de/de/meta/impressum.html"]}, {"institutionName": "International Geosphere-Biosphere Programme", "institutionAdditionalName": ["IGBP"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.igbp.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015-12", "institutionContact": []}, {"institutionName": "Max Planck Institute for Biogeochemistry", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Biogeochemie"], "institutionCountry": "DEU", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bgc-jena.mpg.de/index.php/", "institutionIdentifier": ["ROR:051yxp643"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bgc-jena.mpg.de/index.php/Institute/Contact"]}, {"institutionName": "QUEST", "institutionAdditionalName": ["Quantifying and Understanding the Earth System"], "institutionCountry": "GBR", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/research/funded/programmes/quest/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": []}] [{"policyName": "TRY intellectual property guidelines", "policyURL": "https://www.try-db.org/TryWeb/TRY_Intellectual_Property_Guidelines.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.try-db.org/TryWeb/TRY_Data_Release_Notes.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.try-db.org/TryWeb/TRY_Intellectual_Property_Guidelines.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.try-db.org/TryWeb/TRY_Policy_Free_Access_Data.pdf"}] restricted [{"dataUploadLicenseName": "Intellectual Property Guidelines for the TRY Initiative", "dataUploadLicenseURL": "https://www.try-db.org/TryWeb/TRY_Intellectual_Property_Guidelines.pdf"}] ["other"] {} ["none"] https://www.try-db.org/TryWeb/TRY_Policy_Free_Access_Data.pdf [] unknown yes [] [] {} The majority of data in the TRY database is non-public. These data are available upon request. Activities of the TRY initiative are headed by the Steering Committee, which comprises leading scientists from around the globe, including the principle investigators of the former IGBP Fast Track Initiative on Refining Plant Functional Classifications and the hosting institute of the TRY database. The Steering Committee provides guidance for the development of the TRY initiative, is responsible for the approval of proposals submitted to TRY and has facilitated third party funding from DIVERSITAS, IGBP, QUEST and the Max Planck Institute for Biogeochemistry - the basis for a long-term perspective of TRY. 2014-06-27 2021-12-22 +r3d100010828 Speech and Language Data Repository eng [{"additionalName": "Banco de datos de habla y lenguaje", "additionalNameLanguage": "spa"}, {"additionalName": "Banque de donn\u00e9es parole et langage", "additionalNameLanguage": "fra"}, {"additionalName": "CRDO-Aix", "additionalNameLanguage": "fra"}, {"additionalName": "Centre de ressources pour la description de l'oral", "additionalNameLanguage": "fra"}, {"additionalName": "ORTOLANG Deposit and sharing", "additionalNameLanguage": "eng"}, {"additionalName": "SLDR", "additionalNameLanguage": "eng"}] https://portal.issn.org/resource/ISSN/2429-6252 ["ISSN 2429-6252"] ["https://portal.issn.org/contact-us"] >>>>>!!!<<<<< As of 01/12/2015, deposit of data on SLDR website will be suspended to allow the public opening of Ortolang platform https://www.ortolang.fr/#/market/home .>>>>>!!!<<<<< eng ["disciplinary", "institutional"] {"size": "341 visible items; 790.856 documents", "updatedp": "2018-08-10"} 2006 2015 ["eng", "fra", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["corpora", "oral communication", "speech", "speech acts (linguistics)"] [{"institutionName": "AIX-Marseille Universit\u00e9", "institutionAdditionalName": ["AMU", "Universit\u00e9 de la Mediterran\u00e9e, Aix-Marseille II"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univ-amu.fr/", "institutionIdentifier": ["ROR:035xkbk20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre Informatique National de l'Enseignement Sup\u00e9rieur Scientifique", "institutionAdditionalName": ["CINES"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cines.fr/", "institutionIdentifier": ["ROR:00gnrwz95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": ["ROR:02feahw73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre de Calcul de l'institut National de Physique Nucl\u00e9aire et de Physique de Particules", "institutionAdditionalName": ["CCIN2P3"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cc.in2p3.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Huma-Num", "institutionAdditionalName": ["HN", "La TGIR des humanit\u00e9s num\u00e9riques"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ORTOLANG", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ortolang.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Provence, Aix-Marseille I, Laboratoire parole et langage", "institutionAdditionalName": ["Centre d'exp\u00e9rimentation sur la parole", "LPL", "UMR 7309"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lpl-aix.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Access (L213-1)", "policyURL": "https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000019202816/2011-05-08/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://sldr.org/licenceSLDR.php?version=1&lang=en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000019202816/2011-05-08/"}] restricted [] ["Fedora"] yes {} ["hdl"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} description: Speech & Language Data Repository (SLDR) is a Trusted Data Repository offering labs and scholars a free-of-charge service for sharing their oral/linguistic data and archiving it with the help of procedures compliant with the OAIS model for long-term preservation. Its entire storage is referenced in international repositories such as OLAC (Open Language Archives Community) and CLARIN Virtual Language Observatory (VLO). Currently, packages are distributed via the TGE-Adonis grid, now integrated in Huma-Num, hosted by CC-IN2P3 and preserved on the platform of CINES, an institutional archive beneficiary of the Data Seal of Approval. In the framework of the ORTOLANG project (Open Resources and Tools for Language), a consortium of French linguistic research labs is planning to set up a network of CLARIN centres relying on SLDR and CNRTL respectively for the preservation and sharing of oral and text resources. Now engaged with the CNRTL and Nanterre Orléans Centre in building ORTOLANG, SLDR continues its work of gathering and sharing language data. All services currently offered will remain part of the new platform. 2014-06-30 2021-07-05 +r3d100010829 India Water Portal eng [{"additionalName": "IWP", "additionalNameLanguage": "eng"}] https://www.indiawaterportal.org/ [] ["contact@indiawaterportal.org", "https://www.indiawaterportal.org/contact"] The India Water Portal is a web-based platform for sharing water management knowledge in India amongst practitioners and the general public. The included datasets can be browsed by data type, location, time, and other metadata. Data include rainfall, watersheds, groundwater, water quality, and irrigation. eng ["disciplinary", "other"] {"size": "335 records", "updatedp": "2019-11-29"} 2007 ["eng", "hin"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "drinking water - analysis", "groundwater", "groundwater ecology", "hydrology", "irrigation", "rain and rainfall", "sanitation", "water and civilization", "water quality", "watershed hydrology"] [{"institutionName": "National Knowledge Commission", "institutionAdditionalName": ["NKC"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.wikipedia.org/wiki/National_Knowledge_Commission", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2014", "institutionContact": []}, {"institutionName": "The Arghyam Foundation", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://arghyam.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimers", "policyURL": "https://www.indiawaterportal.org/disclaimers"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.5/in/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.indiawaterportal.org/disclaimers"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://www.indiawaterportal.org/subscribe", "syndicationType": "RSS"} Partners: https://www.indiawaterportal.org/partners 2014-06-30 2021-12-22 +r3d100010831 CCHDO eng [{"additionalName": "CLIVAR and Carbon Hydrographic Data Office", "additionalNameLanguage": "eng"}] https://cchdo.ucsd.edu/ ["RRID:SCR_007093", "RRID:nlx_154728", "biodbcore-001599"] ["https://cchdo.ucsd.edu/contact", "kstocks@ucsd.edu", "sdiggs@ucsd.edu"] The CCHDO's primary mission is to deliver the highest possible quality global CTD and hydrographic data to users. These data are a product of decades of observations related to the physical characteristics of ocean waters carried out during GO-SHIP, WOCE, CLIVAR and numerous other oceanographic research programs. Whenever possible we provide these data in three easy-to-use formats: WHP-Exchange (which we recommend for data submissions to the CCHDO), WOCE, and netCDF. The CCHDO also manages public and non-public CTD data to be used for the global Argo and OceanSITES programs. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://cchdo.ucsd.edu/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CTD", "conductivity", "hydrography", "hydrology", "ocean circulation", "ocean temperature", "oceanography", "temperature"] [{"institutionName": "National Oceanic and Atmospheric Administration, PMEL Carbon Program", "institutionAdditionalName": ["NOAA, PMEL Carbon Program"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.pmel.noaa.gov/co2/story/CCHDO", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pmel.noaa.gov/co2/story/Contact+Us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of California San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["SIO", "Scripps", "UCSD, Scripps"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bhembrough@ucsd.edu"]}] [{"policyName": "Policies", "policyURL": "https://cchdo.ucsd.edu/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cchdo.ucsd.edu/policy"}] restricted [{"dataUploadLicenseName": "Submission Guide", "dataUploadLicenseURL": "https://geo.h2o.ucsd.edu/documentation/policies/CCHDO_DataSubmitGuide.pdf"}] ["unknown"] yes {"api": "https://cchdo.ucsd.edu/formats", "apiType": "NetCDF"} ["other"] [] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Standards: WHP-Exchange, WOCE, netCDF; CLIVAR (Variability and predictability of the ocean-atmosphere system) is one of the four core projects of the World Climate Research Programme (WCRP). CLIVAR’s mission is to facilitate observation analysis and prediction of changes in the Earth’s climate system, with a focus on ocean-atmosphere interactions, enabling better understanding of climate variability, predictability, and change, to the benefit of society and the environment in which we live. 2014-07-01 2021-12-22 +r3d100010832 Spatial Data Repository eng [{"additionalName": "The DHS Program", "additionalNameLanguage": "eng"}, {"additionalName": "The Demographic and Health Surveys Program", "additionalNameLanguage": "eng"}] https://spatialdata.dhsprogram.com/home/ [] ["spatialdata@dhsprogram.com"] The Spatial Data Repository provides geographically-linked health and demographic data from the MEASURE Demographic and Health Surveys (DHS) project and the U.S. Census Bureau for mapping in a geographic information system (GIS). eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://spatialdata.dhsprogram.com/methodology/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["AIDS (Disease)", "HIV (Viruses)", "census data", "geospatial data", "survey data"] [{"institutionName": "The DHS Program", "institutionAdditionalName": ["The Demographic and Health Surveys Program"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dhsprogram.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The United States President's Emergency Plan for AIDS Relief", "institutionAdditionalName": ["PEPFAR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.state.gov/pepfar/", "institutionIdentifier": ["ROR:025g6sc95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USAID", "institutionAdditionalName": ["US Agency for International Development"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/", "institutionIdentifier": ["ROR:01n6e6j62", "RRID:SCR_012846", "RRID:nlx_152008"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Census Bureau", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.census.gov/", "institutionIdentifier": ["ROR:01qn7cs15", "RRID:SCR_011587", "RRID:nlx_151862"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DHS Program Terms of use", "policyURL": "https://www.dhsprogram.com/data/Terms-of-Use.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/dbcl/1.0/"}] closed [] ["unknown"] {} ["none"] https://spatialdata.dhsprogram.com/data/#/ [] unknown unknown [] [] {} 2014-06-30 2021-12-22 +r3d100010833 Morphbank eng [{"additionalName": "Morphbank :: Biological Imaging", "additionalNameLanguage": "eng"}] https://www.morphbank.net/ ["RRID:SCR_003147", "RRID:nlx_156841"] ["https://www.morphbank.net/About/Team/"] Morphbank :: Biological Imaging is a continuously growing database of images that scientists use for international collaboration, research and education. Images deposited in Morphbank :: Biological Imaging document a wide variety of research including: specimen-based research in comparative anatomy, morphological phylogenetics, taxonomy and related fields focused on increasing our knowledge about biodiversity. eng ["disciplinary"] {"size": "384.330 images", "updatedp": "2021-12-23"} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.morphbank.net/About/AboutMb/ [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "genetics", "taxonomy"] [{"institutionName": "Florida State University", "institutionAdditionalName": ["FSU"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fsu.edu/", "institutionIdentifier": ["ROR:05g3dte14", "RRID:SCR_011228", "RRID:nlx_70332"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fsu.edu/misc/comments.html"]}, {"institutionName": "National Evolutionary Synthesis Center", "institutionAdditionalName": ["NESCent"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nescent.org/", "institutionIdentifier": ["ROR:001ykb961", "RRID:SCR_005911", "RRID:nlx_149487"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "2005-07-01", "responsibilityEndDate": "2009-06-30", "institutionContact": []}] [{"policyName": "Biological Imaging Copyright Policy", "policyURL": "https://www.morphbank.net/About/Copyright/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.morphbank.net/About/Copyright/"}] restricted [] ["other"] {} ["none"] https://www.morphbank.net/About/Copyright/ [] no unknown [] [] {} Former sponsors are the Swedish Research Council and the Uppsala University. 2014-08-11 2021-12-23 +r3d100010834 Biologic Specimen and Data Repository Information Coordinating Center eng [{"additionalName": "BioLINCC", "additionalNameLanguage": "eng"}] https://biolincc.nhlbi.nih.gov/home/ ["FAIRsharing_doi:10.25504/FAIRsharing.a46gtf", "OMICS_19882", "RRID:SCR_013142", "RRID:nlx_151758"] ["biolincc@imsweb.com", "https://biolincc.nhlbi.nih.gov/contact/"] BioLINCC is the Biologic Specimen and Data Repository Coordinating Center. The center coordinates data and biospecimens from NHLBI-funded studies that are available for use in other approved studies. The center also creates teaching data sets from NHLBI-funded studies for use in training future biostatisticians. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://biolincc.nhlbi.nih.gov/about/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological specimen", "blood", "diseases", "epidemiology", "health", "heart", "hematology", "lung"] [{"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Heart, Lung, and Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": ["ROR:012pb6c26", "RRID:SCR_011413", "RRID:nlx_inv_1005097"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nhlbiinfo@nhlbi.nih.gov"]}] [{"policyName": "NHLBI Policy for Data Sharing from Clinical Trials and Epidemiological Studies", "policyURL": "https://www.nhlbi.nih.gov/grants-and-training/policies-and-guidelines/nhlbi-policy-for-data-sharing-from-clinical-trials-and-epidemiological-studies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://biolincc.nhlbi.nih.gov/media/guidelines/handbook.pdf"}] restricted [{"dataUploadLicenseName": "Submit Datasets", "dataUploadLicenseURL": "https://biolincc.nhlbi.nih.gov/submit_datasets/"}] ["unknown"] {} ["none"] [] yes unknown [] [] {} 2014-08-11 2021-12-23 +r3d100010835 Land Resource Information Systems Portal eng [{"additionalName": "LRIS Portal", "additionalNameLanguage": "eng"}] https://lris.scinfo.org.nz/ [] ["lris_support@landcareresearch.co.nz"] The LRIS portal is the first element of scinfo.org.nz, a new repository of authoritative New Zealand science datasets and information. It is has been created in response to a growing expectation that government and publicly funded science data should be readily available in authoritative human and machine readable forms. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://lris.scinfo.org.nz/p/about-lris-portal/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["climatology", "meteorology"] [{"institutionName": "Landcare Research", "institutionAdditionalName": ["Manaaki Whenua"], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.landcareresearch.co.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ROR:02p9cyn66", "https://www.landcareresearch.co.nz/contact-us-company/"]}] [{"policyName": "Landcare Data Use License", "policyURL": "https://lris.scinfo.org.nz/license/landcare-data-use-licence-v1/"}, {"policyName": "Terms of Use", "policyURL": "https://lris.scinfo.org.nz/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lris.scinfo.org.nz/license/landcare-data-use-licence-v1/"}] restricted [] ["unknown"] yes {"api": "https://lris.scinfo.org.nz/p/api-support-wfs/", "apiType": "other"} ["none"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The LRIS Portal has been developed in conjunction with the team at Koordinates (https://koordinates.com/ ) to allow you to download environment data held specifically by Landcare Research for use in GIS and other applications that can handle geospatial data for mapping, querying and spatial analyses. The portal represents phase one of the redevelopment of Landcare Research’s Geospatial Information Portal and is part of an endeavour to create a new repository of authoritative New Zealand science datasets and information. Some services, e.g. API Service, require an login. Further information: hhttps://maps.scinfo.org.nz/ 2014-08-12 2021-12-23 +r3d100010836 National Historical Geographic Information System eng [{"additionalName": "IPUMS NHGIS", "additionalNameLanguage": "eng"}, {"additionalName": "NHGIS", "additionalNameLanguage": "eng"}] https://www.nhgis.org/ [] ["https://www.nhgis.org/technical-support", "nhgis@umn.edu"] The National Historical Geographic Information System (NHGIS) provides free online access to summary statistics and GIS boundary files for U.S. censuses and other nationwide surveys from 1790 through the present. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ipums.org/mission-purpose [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["statistics"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["ROR:04byxyr05", "RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minnesota, Minnesota Population Center", "institutionAdditionalName": ["MPC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pop.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mpc@umn.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nhgis.org/citation-and-use-nhgis-data"}] closed [] ["unknown"] {} ["none"] https://www.nhgis.org/citation-and-use-nhgis-data [] no unknown [] [] {} IPUMS stands for data integrated across time, space and scientific domains. IPUMS makes it easy to study change and conduct comparative research--by imposing consistent codes, supplying detailed documentation, and creating customized datasets. Data and services are available free of charge. Learn more about IPUMS: https://www.ipums.org/ 2014-08-12 2021-12-23 +r3d100010837 Scholarly Database at Indiana University eng [{"additionalName": "SDB", "additionalNameLanguage": "eng"}] https://wiki.cns.iu.edu/display/SDBDOC/Scholarly-Database-at-Indiana-University_1246324.html [] ["cns-sdb-dev-l@indiana.edu"] The Scholarly Database (SDB) at Indiana University aims to serve researchers and practitioners interested in the analysis, modeling, and visualization of large-scale scholarly datasets. The online interface provides access to six datasets: MEDLINE papers, registered Clinical Trials, U.S. Patent and Trademark Office patents (USPTO), National Science Foundation (NSF) funding, National Institutes of Health (NIH) funding, and National Endowment for the Humanities funding – over 26 million records in total. eng ["disciplinary"] {"size": "six datasets and over 26 million records in total", "updatedp": "2019-12-02"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://cns.iu.edu//docs/handouts/SDB_Flyer_hi.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bibliometrics", "geolocation", "information modeling", "information science", "large-scale data", "multidisciplinary"] [{"institutionName": "Indiana University, Cyberinfrastructure for Network Science Center", "institutionAdditionalName": ["CNS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cns.iu.edu//", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sjhale@indiana.edu"]}, {"institutionName": "Indiana University, School of Informatics, Computing, and Engineering", "institutionAdditionalName": ["formerly: Indiana University, School of Library and Information Science"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ils.indiana.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ils.indiana.edu/contact/"]}, {"institutionName": "James S. McDonnell Foundation", "institutionAdditionalName": ["JSMF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jsmf.org/", "institutionIdentifier": ["ROR:03dy4aq19", "RRID:SCR_006341", "RRID:nlx_152052"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@jsmf.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}] [{"policyName": "Intellectual Property Policy", "policyURL": "https://policies.iu.edu/policies/ua-05-intellectual-property/index.html"}, {"policyName": "University Policies", "policyURL": "https://policies.iu.edu/index.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iu.edu/copyright/index.html"}] closed [] ["other"] yes {} ["none"] [] unknown unknown [] [] {} 2014-08-13 2021-12-23 +r3d100010838 Human Mortality Database eng [{"additionalName": "HMD", "additionalNameLanguage": "eng"}] https://www.mortality.org/ ["RRID:SCR_002370", "RRID:nif-0000-21197"] ["hmd@mortality.org"] The Human Mortality Database (HMD) was created to provide detailed mortality and population data to researchers, students, journalists, policy analysts, and others interested in the history of human longevity. The Human Mortality Database (HMD) contains original calculations of death rates and life tables for national populations (countries or areas), as well as the input data used in constructing those tables. The input data consist of death counts from vital statistics, plus census counts, birth counts, and population estimates from various sources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.mortality.org/Public/Overview.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["demography", "statistics"] [{"institutionName": "Institut National d'\u00c9tudes D\u00e9mographiques", "institutionAdditionalName": ["French Institute for Demographic Studies", "INED"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ined.fr/", "institutionIdentifier": ["ROR:02cnsac56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Gesellschaft, Max Planck Institute for Demographic Research", "institutionAdditionalName": ["MPIDR", "Max-Planck-Gesellschaft, Max-Planck-Institut f\u00fcr demografische Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.demogr.mpg.de/en/", "institutionIdentifier": ["ROR:02jgyam08", "RRID:SCR_011372", "RRID:nlx_151832"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@demogr.mpg.de"]}, {"institutionName": "National Institute on Aging", "institutionAdditionalName": ["NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11", "RRID:SCR_011438", "RRID:nlx_inv_1005112"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Berkeley, Center on the Economics and Demography of Aging", "institutionAdditionalName": ["CEDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://populationsciences.berkeley.edu/ceda/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Berkeley, Department of Demography", "institutionAdditionalName": ["UCB"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.site.demog.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["monique@demog.berkeley.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.mortality.org/Public/UserAgreement.php"}] closed [] ["unknown"] {} ["none"] https://www.mortality.org/Public/CitationGuidelines.php [] no yes [] [] {} For some populations, data on mortality at older ages came from or were complemented by the Kannisto-Thatcher Database (KTD) on Old Age Mortality. In addition, we often use data from the Human Lifetable Database (HLD) for checking our estimates. The Berkeley Mortality Database (http://bmd.mortality.org/) is an older version of the HMD. 2014-08-13 2022-01-10 +r3d100010839 Comparative Agendas Project eng [{"additionalName": "CAP", "additionalNameLanguage": "eng"}] https://www.comparativeagendas.net/ [] ["https://www.comparativeagendas.net/pages/Contact-us", "policyagendas@gmail.com"] The Comparative Agendas Project (CAP) assembles and codes information on the policy processes of governments from around the world. CAP enables scholars, students, policy-makers and the media to investigate trends in policy-making across time and between countries. It classifies policy activities into a single, universal and consistent coding scheme. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10303 Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.comparativeagendas.net/pages/About [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Times of London", "acts of UK parliament", "bills & hearings of the scottish parliament", "budgets", "policy sciences", "political science", "prime minister\u2019s question", "public agenda", "speech from the throne"] [{"institutionName": "Comparative Agendas Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.comparativeagendas.net/pages/About", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.comparativeagendas.net/pages/Contact-us"]}, {"institutionName": "Sponsoring Institutions and Collecting Projects", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.comparativeagendas.net/pages/website-sponsorship", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General information", "policyURL": "https://www.comparativeagendas.net/datasets_codebooks"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.comparativeagendas.net/pages/Copyright-and-Legal"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.comparativeagendas.net/pages/How-to-cite"}] restricted [] [] yes {} ["none"] https://www.comparativeagendas.net/pages/How-to-cite [] yes yes [] [] {} The starting point is the Policy Agendas Project originally developed by Baumgartner and Jones for the U.S. Longitudinal data on public laws passed in the UK, France, Denmark, Italy, Spain, and Switzerland are available from the Comparative Agendas Project (CAP). 2014-07-01 2022-01-10 +r3d100010840 Nuclear Data Services eng [{"additionalName": "NDS", "additionalNameLanguage": "eng"}] https://www-nds.iaea.org/ [] ["nds.contact-point@iaea.org"] Nuclear Data Services contains atomic, molecular and nuclear data sets for the development and maintenance of nuclear technologies. It includes energy-dependent reaction probabilities (cross sections), the energy and angular distributions of reaction products for many combinations of target and projectile, and the atomic and nuclear properties of excited states, and their radioactive decay data. Their main concern is providing data required to design a modern nuclear reactor for electricity production. Approximately 11.5 million nuclear data points have been measured and compiled into computerized form. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www-naweb.iaea.org/napc/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atomic data", "energy security", "fisson reactor design", "nuclear data", "nuclear energy", "nuclear engineering - safety measures", "nuclear fuel cycles", "nuclear reactors", "nuclear safeguards"] [{"institutionName": "International Atomic Energy Agency, Department of Nuclear Sciences & Applications, Division of Physical and Chemical Sciences", "institutionAdditionalName": ["IAEA, NA, NAPC"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/about/organizational-structure/department-of-nuclear-sciences-and-applications/division-of-physical-and-chemical-sciences", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iaea.org/contact"]}, {"institutionName": "National Nuclear Data Center", "institutionAdditionalName": ["NNDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nndc.bnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nndc.bnl.gov/about/nndc.html"]}, {"institutionName": "Nuclear Energy Agency", "institutionAdditionalName": ["NEA", "OECD"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oecd-nea.org/", "institutionIdentifier": ["ROR:01xy6f245"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd-nea.org/jcms/rni_6421"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www-nds.iaea.org/copyright.html"}] closed [] ["other"] yes {} ["none"] https://www-nds.iaea.org/public/documents/online/ [] unknown yes [] [] {} NDS Mirror-sites: Russia: http://www-nds.atomstandard.ru/, India: http://www-nds.org.in/, China: http://www-nds.ciae.ac.cn/ 2014-07-01 2022-01-10 +r3d100010841 AidData eng [{"additionalName": "Open Data for International Development", "additionalNameLanguage": "eng"}] https://www.aiddata.org/ ["RRID:SCR_010480", "RRID:nlx_157754"] ["https://www.aiddata.org/contact", "info@aiddata.org"] AidData contains information about international economic development assistance, dating back to 1947. AidData provides a searchable database of nearly one million past and present aid activities around the world, aid information management services and tools, data visualization technologies, and research designed to increase understanding of development finance. AidData is searchable by topic such as disaster prevention, energy supply, water supply or reconstruction relief. You may also search by specific regions including Africa, Europe, America, Asia, or Oceania. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.aiddata.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["aid activities", "disaster prevention", "energy", "geodata", "water"] [{"institutionName": "AidData Research Consortium", "institutionAdditionalName": ["ARC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aiddata.org/people", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Brigham Young University", "institutionAdditionalName": ["BYU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.byu.edu/", "institutionIdentifier": ["ROR:047rhhm47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "College of William & Mary", "institutionAdditionalName": ["William & Mary"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wm.edu/", "institutionIdentifier": ["ROR:03hsf0573"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Development Gateway", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://developmentgateway.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://developmentgateway.org/collaborate/"]}, {"institutionName": "USAID, Higher Education Solutions Network", "institutionAdditionalName": ["USAID, HESN"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/hesn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AidData Center for Development Policy", "policyURL": "https://www.aiddata.org/center-for-development-policy"}, {"policyName": "Disclaimer", "policyURL": "https://www.aiddata.org/pages/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.aiddata.org/pages/disclaimer"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aiddata.org/pages/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.aiddata.org/pages/data-user-guide"}] closed [] ["unknown"] {} ["none"] https://www.aiddata.org/pages/data-user-guide [] unknown yes [] [] {} More information about partnerships and collaborations is available at https://www.aiddata.org/partners and https://www.aiddata.org/people 2014-07-13 2022-01-10 +r3d100010842 Xanthobase eng [{"additionalName": "Xanthomonas oryzae pv. oryzae genome database", "additionalNameLanguage": "eng"}] http://www.dna.affrc.go.jp/database/microbe.html [] ["genebank_dna@ml.affrc.go.jp"] <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2022 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["agrogenomics", "genome", "plant pathology", "rice"] [{"institutionName": "National Agriculture and Food Research Organization, Institute of Agrobiological Sciences", "institutionAdditionalName": ["NARO, NIAS", "formerly: MAFF, NIAS", "formerly: Ministry of Agriculture, Forestry and Fisheries, National Institute of Agrobiological Sciences", "\u8fb2\u696d\u751f\u7269\u8cc7\u6e90\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.naro.affrc.go.jp/english/laboratory/nias/index.html", "institutionIdentifier": ["RRID:SCR_011420", "RRID:nlx_156713"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.naro.affrc.go.jp/english/inquiry/index.html"]}] [{"policyName": "NIAS Basic compliance Policy", "policyURL": "http://www.naro.affrc.go.jp/archive/nias/eng/compliance/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.naro.affrc.go.jp/english/contents/terms-of-use.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} Description: "Xanthobase provides information on Xanthomonas oryzae pv oryzae (Xoo), the rice (Oryza sativa) pathogenic bacterium in which genome sequencing has revealed very extensive race differentiation. The whole genome sequence of its native host has also been completed, and analysis of the host parasite interaction on the basis of the two genomes can be expected to be useful." Several figures and tables in this web site are taken from JARQ, with permission from the Japan International Research Center for Agricultural Sciences (JIRCAS). 2013-07-13 2022-01-11 +r3d100010843 Scripps Institute of Oceanography Explorer eng [{"additionalName": "SIOExplorer", "additionalNameLanguage": "eng"}, {"additionalName": "Scripps Explorer", "additionalNameLanguage": "eng"}] http://siox.sdsc.edu/ ["biodbcore-001636"] ["gdc@ucsd.edu", "spmiller@ucsd.edu"] Scripps Institute of Oceanography (SIO) Explorer includes five federated collections: SIO Cruises, SIO Historic Photographs, the Seamounts, Marine Geological Samples, and the Educator’s Collection, all part of the US National Science Digital Library (NSDL). Each collection represents a unique resource of irreplaceable scientific research. The effort is collaboration among researchers at Scripps, computer scientists from the San Diego Supercomputer Center (SDSC), and archivists and librarians from the UCSD Libraries. In 2005 SIOExplorer was extended to the Woods Hole Oceanographic Institution with the Multi-Institution Scalable Digital Archiving project, funded through the joint NSF/Library of Congress digital archiving and preservation program, creating a harvesting methodology and a prototype collection of cruises, Alvin submersible dives and Jason ROV lowerings. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://siox.sdsc.edu/about.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["marine biology", "seamounts"] [{"institutionName": "UC San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["University of California San DIego, Scripps Institution of Oceanography"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California San DIego, Scripps Institution of Oceanography, Geological Data Center", "institutionAdditionalName": ["UCD, SIO, GDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://gdc.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage Policy", "policyURL": "http://siox.sdsc.edu/usage.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://siox.sdsc.edu/usage.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://siox.sdsc.edu/usage.php"}] closed [] ["unknown"] {"api": "http://siox.sdsc.edu/access.php", "apiType": "REST"} ["DOI"] http://siox.sdsc.edu/usage.php [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} SIO explorer is covered by Thomson Reuters Data Citation Index. 2014-08-06 2022-01-11 +r3d100010844 Adult Blood Lead Epidemiology and Surveillance Interactive Database eng [{"additionalName": "ABLES", "additionalNameLanguage": "eng"}] https://www.cdc.gov/niosh/topics/ables/ ["RRID:SCR_006915", "RRID:nlx_152003"] ["https://www.cdc.gov/niosh/contact/default.html", "walarcon@cdc.gov"] ABLES provides data on lead exposure of adults in the United States. The data comes from laboratory-reported elevated blood lead levels. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20507 Clinical Chemistry and Pathobiochemistry", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.cdc.gov/about/organization/mission.htm [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["chemical hazards", "intoxication", "survey", "workplace health", "workplace safety"] [{"institutionName": "Centers for Disease Control and Prevention, National Institute for Occupational Safety and Health", "institutionAdditionalName": ["CDC, NIOSH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/niosh/", "institutionIdentifier": ["ROR:0502a2655", "RRID:SCR_013180", "RRID:nlx_inv_1005099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cdc.gov/niosh/contact/"]}] [{"policyName": "Policies and Regulations", "policyURL": "https://www.cdc.gov/Other/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.cdc.gov/other/link.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cdc.gov/Other/policies.html"}] closed [] ["unknown"] {} ["none"] https://www.cdc.gov/other/imagereuse.html [] yes yes [] [] {} 2014-08-06 2022-01-11 +r3d100010845 Census of Agriculture eng [{"additionalName": "United States Department of Agriculture Census of Agriculture", "additionalNameLanguage": "eng"}] https://www.nass.usda.gov/AgCensus/ [] ["https://www.nass.usda.gov/Contact_Us/index.php", "nass@nass.usda.gov"] The Census of Agriculture provides extensive data about U.S. agriculture at the country, state and county level. The census is conducted every 5 years, and it gathers uniform, detailed data about U.S. farms and ranches and their operators. Data from recent censuses are available in different formats, but historical censuses (back to 1840) are available in pdf format. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.nass.usda.gov/About_NASS/Mission_Statement/index.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["census data", "statistics"] [{"institutionName": "U.S. General Services Administration, Data.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.data.gov/", "institutionIdentifier": ["RRID:SCR_004712", "RRID:nlx_70953"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, Economics, Statistics, and Market Information System", "institutionAdditionalName": ["USDA, ESMIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://usda.library.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, National Agricultural Statistics Service", "institutionAdditionalName": ["USDA, NASS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nass.usda.gov/", "institutionIdentifier": ["ROR:04dpymk59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.agcensus.usda.gov/Contact_Us/"]}] [{"policyName": "Policies and Links", "policyURL": "https://www.usda.gov/policies-and-links"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}] closed [] ["unknown"] no {} ["none"] [] no yes [] [] {"syndication": "https://www.nass.usda.gov/rss/census.xml", "syndicationType": "RSS"} 2014-08-07 2022-01-11 +r3d100010846 SoyBase eng [{"additionalName": "SoyBase and the Soybean Breeder's Toolbox", "additionalNameLanguage": "eng"}] https://soybase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.z4agsr", "MIR:00000291", "OMICS_02778", "RRID:SCR_005096", "RRID:nif-0000-03483"] ["https://soybase.org/include/contactsoybase.php"] SoyBase is a professionally curated repository for genetics, genomics and related data resources for soybean. It contains current genetic, physical and genomic sequence maps integrated with qualitative and quantitative traits. SoyBase includes annotated "Williams 82" genomic sequence and associated data mining tools. The repository maintains controlled vocabularies for soybean growth, development, and traits that are linked to more general plant ontologies. eng ["disciplinary"] {"size": "", "updatedp": ""} 1983 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://soybase.org/sb_about.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PHP (computer program language)", "genetics", "genomics", "legumes", "sequences", "soybean"] [{"institutionName": "Iowa State University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.iastate.edu/", "institutionIdentifier": ["ROR:04rswrd78", "RRID:SCR_000972", "RRID:nlx_75450"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://web.iastate.edu/contact/"]}, {"institutionName": "United States Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA-ARS"], "institutionCountry": "USA", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": ["ROR:02d2m2044"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ars.usda.gov/oc/foia/freedom-of-information-act-and-privacy-act-reference-guide/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://soybase.org/resources/SoyWebPics/index.php"}] restricted [{"dataUploadLicenseName": "Data Submission Templates and Instructions", "dataUploadLicenseURL": "https://www.soybase.org/data_submission/"}] ["unknown"] {"api": "https://soybase.org/community.php", "apiType": "FTP"} ["none"] https://www.soybase.org/citation_guide.php [] yes yes [] [] {"syndication": "https://www.soybase.org/soynews/rss.php", "syndicationType": "RSS"} SoyBase also contains the well-annotated ‘Williams 82’ genomic sequence and associated data mining tools. 2014-07-10 2022-01-11 +r3d100010847 FAOSTAT eng [] https://www.fao.org/faostat/en/#home ["FAIRsharing_doi:10.25504/FAIRsharing.z0rqUk", "RRID:SCR_006914", "RRID:nif-0000-30554"] ["faostat@fao.org", "https://www.fao.org/contact-us/en/"] FAOSTAT provides time-series data about agriculture, nutrition, fisheries, forestry and food aid by country and region from 1961 to present. FAOSTAT is a multilingual database. Data can be searched, browsed, and downloaded. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["ara", "eng", "fra", "rus", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.fao.org/about/en/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["agricultural productivity", "agriculture - economic aspects", "agriculture - statistics", "food supply", "forests and forestry"] [{"institutionName": "Food and Agriculture Organization of the United Nations", "institutionAdditionalName": ["FAO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fao.org/home/en/", "institutionIdentifier": ["ROR:00pe0tf51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fao.org/contact-us/en/"]}] [{"policyName": "FAO Terms and Conditions", "policyURL": "https://www.fao.org/contact-us/terms/en/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.fao.org/contact-us/terms/en/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.fao.org/contact-us/terms/en/"}] closed [] ["unknown"] {} ["none"] https://www.fao.org/contact-us/terms/en/ [] unknown yes [] [] {} FAOSTAT is covered by Thomson Reuters Data Citation Index. Subscribers can download more than 4.000 records in a single extraction. 2014-07-14 2022-01-12 +r3d100010848 National Mine Map Repository eng [{"additionalName": "NMMR", "additionalNameLanguage": "eng"}] https://mmr.osmre.gov/ [] ["nmmr@osmre.gov", "pcoyle@osmre.gov"] The National Mine Map Repository (NMMR) collects, maintains, and provides U.S. coal and non-coal mine maps to individuals, public and private sectors. NMMR mine maps and data are searchable and indexed by state, county, company name, and mine name. Accessing NMMR mine maps and data requires contacting NMMR. NMMR has a diverse customer population and has provided data to efforts supporting industrial and commercial development, highway construction, and the preservation of public health, safety and welfare. eng ["disciplinary"] {"size": "", "updatedp": ""} 1970 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://mmr.osmre.gov/MMR_About.aspx [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["coal", "elevation contours", "engineering reports", "geographical data", "geological information", "geology-maps", "map catalogers", "map collections", "maps", "metal", "mines and mineral resources"] [{"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/contact"]}, {"institutionName": "United States Department of the Interior, Office of Surface Mining Reclamation and Enforcement", "institutionAdditionalName": ["OSMRE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.osmre.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.osmre.gov/contacts.shtm"]}] [{"policyName": "Directives of OSMRE", "policyURL": "https://www.osmre.gov/lrg/directives.shtm"}, {"policyName": "Information Quality", "policyURL": "https://www.osmre.gov/lrg/infoquality.shtm"}, {"policyName": "OSMRE Significant Guidance Documents", "policyURL": "https://www.osmre.gov/lrg/significant_guidance.shtm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.osmre.gov/lrg/disclaimer.shtm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.osmre.gov/LRG.shtm"}] closed [] ["unknown"] no {} ["none"] https://www.usgs.gov/data-management/data-citation [] unknown yes [] [] {} The National Mine Map Repository is part of the Technology Services Branch of the Technical Support Division in the Appalachian Regional Office of OSMRE. The actual maps are not available for download from this site. This is only an inventory to determine which maps are available. To obtain actual copies of maps, please contact the National Mine Map Repository by phone, email, or at the address located at the bottom of this page (https://mmr.osmre.gov/) 2014-07-14 2022-01-12 +r3d100010849 National Atmospheric Deposition Program eng [{"additionalName": "NADP", "additionalNameLanguage": "eng"}] https://nadp.slh.wisc.edu/ [] ["https://nadp.slh.wisc.edu/contacts/", "nadp@slh.wisc.edu"] The NADP monitors precipitation chemistry from numerous sites around the United States. The NADP consists of 5 networks: National Trends Network, Mercury Deposition Network, Atmospheric Integrated Research Monitoring Network, Atmospheric Mercury Network, and Ammonia Monitoring Network. Data is provided by each network. eng ["disciplinary"] {"size": "", "updatedp": ""} 1977 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://nadp.slh.wisc.edu/about/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["ammonia - environmental aspects", "atmospheric chemistry", "environmental chemistry", "mercury", "nitrogen", "precipitation (chemistry)", "rain"] [{"institutionName": "Illinois State Water Survey", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.isws.illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018-03", "institutionContact": ["https://www.isws.illinois.edu/contact"]}, {"institutionName": "University of Wisconsin-Madison, Wisconsin State Laboratory of Hygiene", "institutionAdditionalName": ["WSLH"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.slh.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2018-07", "responsibilityEndDate": "", "institutionContact": ["http://www.slh.wisc.edu/about/contact/", "nadp@slh.wisc.edu"]}] [{"policyName": "Data and Information Use Conditions", "policyURL": "https://nadp.slh.wisc.edu/data-and-information-use-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://nadp.slh.wisc.edu/data-and-information-use-conditions/"}] closed [] [] {} ["none"] https://nadp.slh.wisc.edu/data-and-information-use-conditions/ [] unknown yes [] [] {} The NADP is National Research Support Project - 3: A Long-Term Monitoring Program in Support of Research on the Effects of Atmospheric Chemical Deposition. More than 250 sponsors support the NADP, including private companies and other nongovernmental organizations, universities, local and state government agencies, State Agricultural Experiment Stations, national laboratories, Native American organizations, Canadian government agencies, the National Oceanic and Atmospheric Administration, the Environmental Protection Agency, the Tennessee Valley Authority, the U.S. Geological Survey, the National Park Service, the U.S. Fish & Wildlife Service, the Bureau of Land Management, the U.S. Department of Agriculture - Forest Service, and the U.S. Department of Agriculture - National Institute of Food and Agriculture, under agreement no. 2008-39134-19508. In March 2018, NADP moved their Program Office from their longtime home at the University of Illinois Urbana-Champaign to the Wisconsin State Laboratory of Hygiene at the University of Wisconsin-Madison. NADP Networks: https://nadp.slh.wisc.edu/networks/ 2014-07-15 2022-01-12 +r3d100010850 Phytozome eng [{"additionalName": "The JGI Comparative Plant Genomics Portal", "additionalNameLanguage": "eng"}] https://phytozome-next.jgi.doe.gov/ ["MIR:00100556", "OMICS_03242", "RRID:SCR_006507", "RRID:nlx_151490", "biodbcore-001232"] ["phytozome@jgi-psf.org"] Phytozome is the Plant Comparative Genomics portal of the Department of Energy's Joint Genome Institute. Families of related genes representing the modern descendants of ancestral genes are constructed at key phylogenetic nodes. These families allow easy access to clade-specific orthology/paralogy relationships as well as insights into clade-specific novelties and expansions. eng ["disciplinary"] {"size": "261 assembled and annotated genomes from 139 Archaeplastida species, and 54 Brachypodium distachyon lines from the BrachyPan pan-genome study", "updatedp": "2022-01-12"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20204 Plant Physiology", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["BioMart", "Genome Portal", "JBrowse", "PhytoMine", "genomics", "physiology, comparative", "plant genomes"] [{"institutionName": "United States Department of Energy, Office of Science, Joint Genome Institute", "institutionAdditionalName": ["JGI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://jgi.doe.gov/", "institutionIdentifier": ["ROR:04xm1d337", "RRID:SCR_003045", "RRID:nif-0000-30425"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://jgi.doe.gov/contact-us/"]}, {"institutionName": "University of California", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.universityofcalifornia.edu/", "institutionIdentifier": ["ROR:03taz7m60", "RRID:SCR_011617", "RRID:nlx_79438"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.universityofcalifornia.edu/uc-system/contact-us"]}] [{"policyName": "Genomic Data Sharing Policy", "policyURL": "https://www.genome.gov/about-nhgri/Policies-Guidance/Genomic-Data-Sharing"}, {"policyName": "NHGRI Policies and Guidelines", "policyURL": "https://www.genome.gov/about-nhgri/Policies-Guidance"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://jgi.doe.gov/disclaimer/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://jgi.doe.gov/disclaimer/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://jgi.doe.gov/disclaimer/"}] restricted [] [] yes {"api": "https://phytozome-next.jgi.doe.gov/phytomine/begin.do", "apiType": "other"} ["none"] https://mycocosm.jgi.doe.gov/pages/citeUs.jsf [] yes unknown [] [] {} Where possible, each gene has been annotated with PFAM, KOG, KEGG, and PANTHER assignments, and publicly available annotations from RefSeq, UniProt, TAIR, JGI are hyper-linked and searchable. 2014-07-14 2022-01-12 +r3d100010851 American National Election Studies eng [{"additionalName": "ANES", "additionalNameLanguage": "eng"}] https://electionstudies.org/ [] ["anes@electionstudies.org"] The American National Election Studies (ANES) conducts national surveys and pilot studies and provides large, multifaceted datasets. Time Series Studies are conducted during years of national elections, with pre-election and post-election surveys conducted in presidential election years and post-election surveys conducted during congressional election years. Pilot Studies are normally conducted in years when there is no national election and are designed to test new, or to refine existing, instrumentation and study designs. Other Major Data Collections includes panel studies and other special studies. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1997 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://electionstudies.org/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["census", "elections", "ideology", "partisanship", "political candidates", "political participation", "presidential candidates", "public opinion", "voting", "voting age", "voting research"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": ["ROR:00f54p054", "RRID:SCR_011538", "RRID:nlx_44253"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://umich.edu/", "institutionIdentifier": ["ROR:00jmfr291", "RRID:SCR_011668", "RRID:nlx_80572"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ANES Restricted Data Access", "policyURL": "https://electionstudies.org/restricted-data-access/"}, {"policyName": "Policy on Access to ANES Data", "policyURL": "https://electionstudies.org/policy-on-access-to-anes-data/"}, {"policyName": "Terms of use", "policyURL": "https://electionstudies.org/data-center/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://electionstudies.org/data-center/"}] closed [] [] yes {} ["none"] https://electionstudies.org/resources/anes-guide/ [] yes unknown [] [] {} 2014-07-15 2021-05-28 +r3d100010852 Solar Dynamics Observatory eng [{"additionalName": "SDO Data", "additionalNameLanguage": "eng"}] https://sdo.gsfc.nasa.gov/ [] ["William.D.Pesnell@nasa.gov"] The Solar Dynamics Observatory (SDO) studies the solar atmosphere on small scales of space and time, in multiple wavelengths. This is a searchable database of all SDO data, including citizen scientist images, space weather and near real time data, and helioseismology data. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2010-02-11 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://sdo.gsfc.nasa.gov/mission/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["data libraries", "digital images", "helioseismology", "humanities", "life sciences", "physical sciences", "solar activity", "space environment", "space sciences"] [{"institutionName": "Atmospheric Imaging Assembly", "institutionAdditionalName": ["AIA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://aia.lmsal.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA - Goddard Space Flight Center", "institutionAdditionalName": ["NASA - GSFC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": ["ROR:0171mag52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/mission_pages/sdo/team/index.html#.U8T1elMUffc"]}, {"institutionName": "Stanford University, Helioseismic and Magnetic Imager", "institutionAdditionalName": ["HMI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://hmi.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Colorado Boulder, Laboratory for Atmospheric and Space Physics, Extreme Ultraviolet Variability Experiment", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lasp.colorado.edu/home/eve/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Rights and Rules for Data Use", "policyURL": "https://sdo.gsfc.nasa.gov/data/rules.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sdo.gsfc.nasa.gov/data/rules.php"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sdo.gsfc.nasa.gov/resources/press.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://sdo.gsfc.nasa.gov/data/rules.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://sdo.gsfc.nasa.gov/data/rules.php"}] closed [] [] {"api": "https://www.lmsal.com/hek/api.html", "apiType": "FTP"} ["none"] https://sdo.gsfc.nasa.gov/data/rules.php [] yes unknown [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {"syndication": "https://sdo.gsfc.nasa.gov/resources/feeds.php", "syndicationType": "RSS"} Instrument sites at Stanford University http://hmi.stanford.edu/, AIA https://aia.lmsal.com/ / and University of Colorado Boulder https://lasp.colorado.edu/home/eve/ 2014-07-15 2021-05-28 +r3d100010853 Pig Expression Data Explorer eng [{"additionalName": "PEDE", "additionalNameLanguage": "eng"}] http://pede.dna.affrc.go.jp/ [] ["animal@dna.affrc.go.jp"] The Pig Expression Data Explorer (PEDE) database system stores full-length cDNA libraries of swine data accesible via keyword and ID searches. Data is publically available, and may specifically interest genetic researchers interested in disease sucsceptibly, and major and minor porcine specific antigens. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "20711 Animal Husbandry, Breeding and Hygiene", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://pede.dna.affrc.go.jp/aim/disclaimer.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA data banks", "amino acids", "animals", "antigens", "biodiversity", "birds", "data libraries", "gene expression", "gene libraries", "humanities", "life sciences", "physical sciences", "pork", "pork industry and trade", "sound", "sound recordings", "video recordings"] [{"institutionName": "Animal Genome Research Program", "institutionAdditionalName": ["AGP"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://animal.dna.affrc.go.jp/agp/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "JATAFF Institute", "institutionAdditionalName": ["Japan Institute for Techno-innovation in Agriculture, Forestry and Fisheries - Institute", "STAFF Institute", "\u516c\u76ca\u793e\u56e3\u6cd5\u4eba\u8fb2\u6797\u6c34\u7523\u30fb\u98df\u54c1\u7523\u696d\u6280\u8853\u632f\u8208\u5354\u4f1a"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jataff.or.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Agriculture and Food Research Organization", "institutionAdditionalName": ["NARO", "\u8fb2\u7814\u6a5f\u69cb"], "institutionCountry": "JPN", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.naro.go.jp/english/index.html", "institutionIdentifier": ["ROR:023v4bd62"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Agrobiological Sciences", "institutionAdditionalName": ["NIAS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nias.affrc.go.jp/", "institutionIdentifier": ["ROR:01786mp71", "RRID:SCR_011420", "RRID:nlx_156713"], "responsibilityStartDate": "", "responsibilityEndDate": "2016", "institutionContact": []}] [{"policyName": "NIAS charter", "policyURL": "http://www.naro.affrc.go.jp/archive/nias/eng/charter/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://pede.dna.affrc.go.jp/aim/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.naro.affrc.go.jp/archive/nias/eng/intel/index.html"}] closed [] [] yes {} ["none"] https://pede.dna.affrc.go.jp/aim/disclaimer.html [] unknown unknown [] [] {} PEDE is provided as one of the resources in the Animal Genome Database, which is provided in coorperation with the NIAS DNA bank. 2014-07-15 2021-05-28 +r3d100010854 The International Research Institute for Climate and Society eng [{"additionalName": "IRI Data Library", "additionalNameLanguage": "eng"}, {"additionalName": "IRI/LDEO Climate Data Library", "additionalNameLanguage": "eng"}] https://iri.columbia.edu/resources/data-library/ [] ["info@iri.columbia.edu"] International Research Institute for Climate and Society (IRI) research focuses on climate, environmental monitoring, agriculture, health, water, and economic sectors in Africa, Asia and Pacific, and Latin America and Caribbean. The IRI data library is a freely accessible data repository and analysis tool. IRI allows users to view, manipulate, and download climate-related data sets through a standard web browser. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2014 ["eng", "fra", "ind", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://iri.columbia.edu/about-us/what-is-iri/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Africa", "Asia", "Caribbean", "Latin America", "Pacific", "agriculture", "biology", "civilization", "climatology", "economics", "environmental monitoring", "health", "water"] [{"institutionName": "Columbia University, Earth Institute, International Research Institute for Climate and Society", "institutionAdditionalName": ["IRI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://iri.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NOAA Climate Program Office", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cpo.noaa.gov/", "institutionIdentifier": ["ROR:00mmmy130"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://iri.columbia.edu/resources/data-library/"}] restricted [] [] {"api": "http://iridl.ldeo.columbia.edu/dochelp/Tutorial/MVD/Download/index.html#Formats", "apiType": "NetCDF"} ["none"] [] yes unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "https://iridl.tumblr.com/rss", "syndicationType": "RSS"} data can be accessed by OPenDAP 2014-07-16 2021-05-28 +r3d100010855 Registry of Open Data on AWS eng [{"additionalName": "Registry of Open Data on Amazon Web Services", "additionalNameLanguage": "eng"}] https://registry.opendata.aws/ ["RRID:SCR_006318", "RRID:nlx_152013"] [] The Registry of Open Data on AWS provides a centralized repository of public data sets that can be seamlessly integrated into AWS cloud-based applications. AWS is hosting the public data sets at no charge to their users. Anyone can access these data sets from their Amazon Elastic Compute Cloud (Amazon EC2) instances and start computing on the data within minutes. Users can also leverage the entire AWS ecosystem and easily collaborate with other AWS users. eng ["other"] {"size": "", "updatedp": ""} 2018 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://aws.amazon.com/opendata/ [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["astronomy", "chemistry", "climate science", "economics", "genomics", "geospatial sciences", "imaging", "life sciences", "machine learning", "sustainability", "transportation sciences"] [{"institutionName": "Amazon Web Services, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://aws.amazon.com/", "institutionIdentifier": ["RRID:SCR_012854", "RRID:nlx_144341"], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["opendata@amazon.com"]}] [{"policyName": "AWS Legal Terms", "policyURL": "https://aws.amazon.com/legal/"}, {"policyName": "AWS Open Data Sponsorship Program Terms & Conditions", "policyURL": "https://aws.amazon.com/opendata/open-data-sponsorship-program/terms/"}, {"policyName": "AWS Privacy Notice", "policyURL": "https://aws.amazon.com/privacy/"}, {"policyName": "AWS Site Terms", "policyURL": "https://aws.amazon.com/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://aws.amazon.com/terms/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}] open [] [] {"api": "http://aws.amazon.com/customerapps/", "apiType": "other"} ["none"] [] unknown yes [] [] {"syndication": "https://aws.amazon.com/marketplace?ref=customerapps", "syndicationType": "RSS"} 2014-07-17 2021-05-28 +r3d100010856 Gramene eng [] http://www.gramene.org/ ["RRID:SCR_002829", "RRID:nif-0000-02926", "fairsharing_doi:10.25504/fairsharing.zjdfxz"] ["gramene@gramene.org", "http://www.gramene.org/feedback"] Gramene is a platform for comparative genomic analysis of agriculturally important grasses, including maize, rice, sorghum, wheat and barley. Relationships between cereals are queried and displayed using controlled vocabularies (Gene, Plant, Trait, Environment, and Gramene Taxonomy) and web-based displays, including the Genes and Quantitative Trait Loci (QTL) modules. eng ["disciplinary"] {"size": "3.977.455 genes; 93 genomes", "updatedp": "2021-05-31"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20204 Plant Physiology", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.gramene.org/about-gramene [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["genomics", "grain", "physiology, comparative", "plant genomes"] [{"institutionName": "Cold Spring Harbor Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cshl.edu/", "institutionIdentifier": ["ROR:02qz8b764", "RRID:SCR_008326", "RRID:nif-0000-24690"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "EMBL-EBI", "institutionAdditionalName": ["European Bioinformatics Institute"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:2catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ensembl", "institutionAdditionalName": ["e!ensembl"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ensembl.org/index.html", "institutionIdentifier": ["RRID:SCR_002344", "RRID:nif-0000-21145"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Gramene collaborators", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gramene.org/collaborators/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/index.jsp", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/awardsearch/showAward?AWD_ID=1127112"]}, {"institutionName": "Oregon State University, Center for Genome Research and Biocomputing", "institutionAdditionalName": ["CGRB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cgrb.oregonstate.edu/", "institutionIdentifier": ["RRID:SCR_018373"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA ARS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": ["ROR:02d2m2044"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Gramene Genomes inclusion criteria", "policyURL": "http://www.gramene.org/genome_inclusion_criteria"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.gramene.org/node/225"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.gramene.org/node/225"}] restricted [] ["MySQL"] yes {"api": "ftp://ftp.gramene.org/", "apiType": "FTP"} ["none"] http://www.gramene.org/cite [] yes unknown [] [] {"syndication": "http://www.gramene.org/blog/", "syndicationType": "RSS"} 2014-07-17 2021-05-31 +r3d100010857 IonomicHub eng [{"additionalName": "Collaborative international network for ionomics", "additionalNameLanguage": "eng"}, {"additionalName": "iHUB", "additionalNameLanguage": "eng"}] https://www.ionomicshub.org/home/PiiMS [] ["http://ihub.uservoice.com/forums/85055?lang=en"] iHUB is a collaborative environment that supports research that relate to the genes and gene networks that control the ionomes, mineral nutrient, and trace element compositions of tissues and organisms. It provides tools to share data, literature, and coordinating collection efforts, among others. It contains ionomic data on more than 200.000 samples. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ionomicshub.org/home/PiiMS [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arabidopsis", "arabidopsis thaliana research", "botany", "brassica", "corn research", "maize", "nature and nurture", "plants", "rice research", "soybean research", "yeast fungi", "yeast research"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Purdue University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.purdue.edu/", "institutionIdentifier": ["ROR:02dqehb95", "RRID:SCR_017208"], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": ["dsalt@purdue.edu", "online@purdue.edu"]}, {"institutionName": "Purdue University, Discovery Park", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.purdue.edu/discoverypark/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cyber@purdue.edu"]}, {"institutionName": "Software Sustainability Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.software.ac.uk/", "institutionIdentifier": ["ROR:0455awd29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture - Agricultural Research Service", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": ["ROR:02d2m2044"], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}, {"institutionName": "University of Aberdeen", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.abdn.ac.uk/", "institutionIdentifier": ["ROR:016476m91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Nottingham", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nottingham.ac.uk/", "institutionIdentifier": ["ROR:01ee9ar58", "RRID:SCR_006210", "RRID:nlx_35456"], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["research@nottingham.ac.uk"]}] [{"policyName": "NIH Open Access Policy", "policyURL": "https://www.lib.purdue.edu/uco/ForResearchers/nih.html"}, {"policyName": "NSF policy", "policyURL": "https://www.nsf.gov/bfa/dias/policy/"}, {"policyName": "Website Terms of Use", "policyURL": "https://www.nottingham.ac.uk/utilities/terms.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nottingham.ac.uk/utilities/copyright.aspx"}] restricted [] ["unknown"] {} [] https://www.ionomicshub.org/home/PiiMS [] yes unknown [] [] {"syndication": "https://www.ionomicshub.org/mediawiki/index.php?title=PiiMS_Publications&action=feed&feed=rss", "syndicationType": "RSS"} iHUB databases: Arabidopsis Database, Rice Database, Yeast Database, Soybean Database, Maize Database, Brassica Database. NOTE: The Purdue Ionomics Facility is closing down and no longer accepting unsolicited seed orders. Please contact David Salt directly if you are interested in running samples. (dsalt@purdue.edu) 2014-07-18 2021-05-31 +r3d100010858 Tropical Cyclone Information System eng [{"additionalName": "JPL Tropical Cyclone Information System", "additionalNameLanguage": "eng"}, {"additionalName": "TCIS", "additionalNameLanguage": "eng"}] https://tropicalcyclone.jpl.nasa.gov/ [] ["Svetla.Hristova@jpl.nasa.gov"] The JPL Tropical Cyclone Information System (TCIS) was developed to support hurricane research. There are three components to TCIS; a global archive of multi-satellite hurricane observations 1999-2010 (Tropical Cyclone Data Archive), North Atlantic Hurricane Watch and ASA Convective Processes Experiment (CPEX) aircraft campaign. Together, data and visualizations from the real time system and data archive can be used to study hurricane process, validate and improve models, and assist in developing new algorithms and data assimilation techniques. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cyclones", "global climate change", "hurricanes", "meteorological satellites", "storms", "temperature", "winds-speed"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": ["ROR:05dxps055", "RRID:SCR_017603"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/copyrights.php#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.jpl.nasa.gov/imagepolicy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.jpl.nasa.gov/imagepolicy/"}] closed [] [] {"api": "ftp://mwsci.jpl.nasa.gov/outgoing/", "apiType": "FTP"} ["none"] https://www.jpl.nasa.gov/imagepolicy/ [] yes unknown [] [] {} 2014-07-21 2021-09-08 +r3d100010859 World Register of Marine Species eng [{"additionalName": "ERMS", "additionalNameLanguage": "eng"}, {"additionalName": "European Register of Marine Species", "additionalNameLanguage": "eng"}, {"additionalName": "WoRMS", "additionalNameLanguage": "eng"}] http://www.marinespecies.org/index.php ["RRID:SCR_013312", "RRID:nlx_156921", "fairsharing_doi:10.25504/fairsharing.7g1bzj"] ["info@marinespecies.org"] The World Register of Marine Species (WoRMS) integrates approximately 100 marine datbases to provide an authoritative and comprehensive list of marine organisms. WoRMS has an editorial system where taxonomic groups are managed by experts responsible for the quality of the information. WorMS register of marine species emerged from the European Register of Marine Species (ERMS) and the Flanders Marine Institute (VLIZ). WoRMS is a contribution to Lifewatch, Catalogue of Life, Encyclopedia of Life, Global Biodiversity Information Facility and the Census of Marine Life. eng ["disciplinary", "institutional"] {"size": "Accepted marine species 238 356 (97% checked); Marine species names, including synonyms 469 788; Species with image 36 673 (56% checked)", "updatedp": "2021-05-31"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.marinespecies.org/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "biology", "marine biodiversity", "marine biology", "marine ecology", "marine species diversity", "oceanography", "taxonomists"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": ["ROR:05fjyn938", "RRID:SCR_005904", "RRID:nlx_149475"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Marine Biodiversity and Ecosystem Functioning", "institutionAdditionalName": ["EU Network of Excellence", "MarBEF"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.marbef.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ocean Biodiversity Information System", "institutionAdditionalName": ["OBIS", "formerly: Ocean Biogeographics Information System"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iobis.org/", "institutionIdentifier": ["RRID:SCR_006933", "RRID:nlx_154698"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Richard Lounsbery Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://rlounsbery.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Society for the Management of Electronic Biodiversity Data", "institutionAdditionalName": ["SMEBD"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.smebd.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Vlaams Instituut voor de Zee", "institutionAdditionalName": ["Flanders Marine Institute", "VLIZ"], "institutionCountry": "BEL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.vliz.be/", "institutionIdentifier": ["ROR:0496vr396"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "WoRMS instructions to editors", "policyURL": "http://www.marinespecies.org/aphia.php?p=manual"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/deed.en"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.vliz.be/en/data-policy"}] restricted [] [] yes {"api": "http://www.marinespecies.org/rest/", "apiType": "REST"} ["DOI", "other"] http://www.marinespecies.org/index.php [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "http://www.marinespecies.org/aphia.php?p=rss&what=images", "syndicationType": "RSS"} WoRMS has implemented the persistent identifier 'Life Science Identifier - LSID' and uses metadata Standards Darwin Core and Dublin Core 2014-07-21 2021-06-11 +r3d100010860 JPL Multi-angle Imaging SpectroRadiometer eng [{"additionalName": "MISR", "additionalNameLanguage": "eng"}, {"additionalName": "Multi-angle Imaging SpectroRadiometer", "additionalNameLanguage": "eng"}] https://misr.jpl.nasa.gov/ [] ["https://misr.jpl.nasa.gov/askQuestion/", "https://misr.jpl.nasa.gov/askQuestion/contactInfo/"] The Multi-angle Imaging SpectroRadiometer (MISR) measurements are designed to improve understanding of the Earth’s environment and climate. MISR provides radiometrically and geometrically calibrated images in four spectral bands at each of nine widely-spaced angles. Spatial sampling of 275 and 1100 meters is provided on a global basis. All MISR data products are available in HDF-EOS format, and select products are available in netCDF format. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://misr.jpl.nasa.gov/Mission/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Terra satellite", "atmospheric aerosols", "climatology", "clouds", "earth observing system", "solar radiation", "spectral response curve", "spectroradiometer"] [{"institutionName": "NASA, California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}] [{"policyName": "JPL Image Use Policy", "policyURL": "https://www.jpl.nasa.gov/imagepolicy/"}, {"policyName": "JPL Privacy Policy and Important Notices", "policyURL": "https://www.jpl.nasa.gov/copyrights.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.jpl.nasa.gov/imagepolicy/"}] closed [] [] yes {"api": "https://eosweb.larc.nasa.gov/project/misr/misr_table", "apiType": "NetCDF"} ["none"] https://eosweb.larc.nasa.gov/citing-asdc-data [] unknown yes [] [] {} MISR Data and Information: https://eosweb.larc.nasa.gov/sites/default/files/project/misr/obtaining_misr_data.ppt 2014-07-21 2021-09-08 +r3d100010861 Reactome eng [{"additionalName": "a curated pathway database", "additionalNameLanguage": "eng"}] https://reactome.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.tf6kj8", "MIR:00000018", "OMICS_02771", "RRID:SCR_003485", "RRID:nif-0000-03390"] ["help@reactome.org"] Reactome is a manually curated, peer-reviewed pathway database, annotated by expert biologists and cross-referenced to bioinformatics databases. Its aim is to share information in the visual representations of biological pathways in a computationally accessible format. Pathway annotations are authored by expert biologists, in collaboration with Reactome editorial staff and cross-referenced to many bioinformatics databases. These include NCBI Gene, Ensembl and UniProt databases, the UCSC and HapMap Genome Browsers, the KEGG Compound and ChEBI small molecule databases, PubMed, and Gene Ontology. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://reactome.org/what-is-reactome/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "bioinformatics", "genetics", "genome analysis", "molecular interaction", "molecular reaction", "pathway modelling", "systems biology"] [{"institutionName": "Cold Spring Harbor Laboratory", "institutionAdditionalName": ["CSHL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cshl.edu/", "institutionIdentifier": ["ROR:02qz8b764", "RRID:SCR_008326", "RRID:nif-0000-24690"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": ["https://www.cshl.edu/About-Us/contact-us/"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL - EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "NYU School of Medicine, NYU Langone Health", "institutionAdditionalName": ["NYU Langone Health"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://med.nyu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Peter.D'Eustachio@nyumc.org", "https://med.nyu.edu/faculty/peter-g-d-eustachio"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NIH, NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391", "RRID:SCR_011416", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/"]}, {"institutionName": "Ontario Institute for Cancer Research", "institutionAdditionalName": ["OICR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://oicr.on.ca/", "institutionIdentifier": ["ROR:043q8yx54", "RRID:SCR_010609", "RRID:nlx_51701"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oicr.on.ca/contact-us"]}] [{"policyName": "Documentation", "policyURL": "https://reactome.org/documentation/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["MySQL"] yes {"api": "https://reactome.org/ContentService/", "apiType": "REST"} ["DOI"] https://reactome.org/cite/ ["ORCID"] no yes [] [] {} 2014-07-21 2021-06-02 +r3d100010862 Health and Retirement Study eng [{"additionalName": "HRS", "additionalNameLanguage": "eng"}] https://hrsonline.isr.umich.edu/ ["RRID:SCR_008930", "RRID:nlx_151830"] ["hrsquestions@umich.edu"] The Health and Retirement Study (HRS) is a longitudinal panel study that surveys a representative sample of more than 26,000 Americans over the age of 50 every two years. The study has collected information about income, work, assets, pension plans, health insurance, disability, physical health and functioning, cognitive functioning, genetic information and health care expenditures. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20524 Gerontology and Geriatric Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://hrs.isr.umich.edu/about/how-to-use-this-site [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aging", "census data", "genetic information", "health", "labor supply", "longitudinal method", "retirement", "retirement age"] [{"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States, Social Security Administration", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ssa.gov/", "institutionIdentifier": ["ROR:04b7xxn32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research, Survey Research Center", "institutionAdditionalName": ["ISR", "SRC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.src.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "HRS conditions of use", "policyURL": "https://hrs.isr.umich.edu/data-products/access-to-public-data/conditions-of-use?_ga=2.132295950.1405271219.1622638926-1748766418.1621951078"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://hrsdata.isr.umich.edu/data-products/conditions-of-use?_ga=2.132016649.782420168.1623415909-1083684062.1623415909"}] closed [] [] yes {} ["none"] https://hrs.isr.umich.edu/data-products/access-to-public-data/conditions-of-use?_ga=2.197815599.1405271219.1622638926-1748766418.1621951078 [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "https://hrsonline.isr.umich.edu/modules/news/rss/hrs.xml", "syndicationType": "RSS"} 2014-07-22 2021-06-11 +r3d100010863 FLOSSmole eng [] https://flossmole.org/ [] ["msquire@elon.edu"] FLOSSmole is a collaborative collection of free, libre, and open source software (FLOSS) data. FLOSSmole contains nearly 1 TB of data covering the period 2004 until now, about more than 500,000 different open source projects. eng ["disciplinary"] {"size": "several terabytes", "updatedp": "2020-02-02"} 2004 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multi disciplinary", "open source software"] [{"institutionName": "Syracuse University School of Information Studies, FLOSS Research Group", "institutionAdditionalName": ["FLOSS @ Syracuse"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://flossmole.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Ethical decision-making and internet research, Recommendations from the aoir ethics working committee", "policyURL": "http://aoir.org/reports/ethics.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [] restricted [] ["MySQL"] yes {} ["DOI"] [] yes yes [] [] {} flossmole is covered by Thomson Reuters Data Citation Index. 2014-07-22 2021-09-08 +r3d100010864 Griffith University Research Data Repository eng [{"additionalName": "GRO", "additionalNameLanguage": "eng"}, {"additionalName": "Griffith Research Online", "additionalNameLanguage": "eng"}] https://research-repository.griffith.edu.au/handle/10072/392601 [] ["gro@griffith.edu.au"] The Griffith University Research Data Repository makes the collections and datasets produced by Griffith researchers accessible and searchable. eng ["institutional"] {"size": "80 items", "updatedp": "2021-10-01"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["art", "biology", "data libraries", "film archives", "humanities", "life sciences", "multi disciplinary", "physical sciences", "water"] [{"institutionName": "Griffith University, Scholarly Information and Research, Information Services, eResearch Services", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.griffith.edu.au/eresearch-services", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Collection Statement For The Research Repository (Griffith Research Online)", "policyURL": "https://www.griffith.edu.au/__data/assets/pdf_file/0030/967233/Griffith-Research-Online-collection-statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.legislation.gov.au/Details/C2006A00158"}] restricted [] ["DSpace"] yes {"api": "https://research-repository.griffith.edu.au/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] [] yes unknown [] [] {} 165 datasets available at Research Data Australia https://researchdata.ands.org.au/contributors/griffith-university 2014-07-22 2021-10-01 +r3d100010865 Clouds and the Earth's Radiant Energy System eng [{"additionalName": "CERES Data Products", "additionalNameLanguage": "eng"}, {"additionalName": "CERES Data and Information", "additionalNameLanguage": "eng"}, {"additionalName": "NASA CERES", "additionalNameLanguage": "eng"}] https://ceres.larc.nasa.gov/ [] ["LaRC-CERES-Help@mail.nasa.gov", "https://ceres.larc.nasa.gov/feedback/"] The Clouds and the Earth’s Radiant Energy System (CERES) is a key component of the Earth Observing System (EOS) program. CERES instruments provide radiometric measurements of the Earth’s atmosphere from three broadband channels. CERES products include both solar-reflected and Earth-emitted radiation from the top of the atmosphere to the Earth's surface. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ceres.larc.nasa.gov/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climate change mitigation", "climatology", "clouds", "meteorology", "radiation - measurement", "solar radiation", "solar radiation - forecasting"] [{"institutionName": "National Aeronautics and Space Administration, Langley Research Center", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/langley", "institutionIdentifier": ["ROR:0399mhs52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Langley Research Center, Atmospheric Science Data Center", "institutionAdditionalName": ["LaRC ASDC", "NASA Langley ASDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support-asdc@earthdata.nasa.gov"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/FOIA/index.html"}] closed [] [] yes {"api": "https://opendap.larc.nasa.gov/opendap/", "apiType": "OpenDAP"} ["none"] https://eosweb.larc.nasa.gov/citing-asdc-data [] unknown yes [] [] {} Access to archived HDF files 'traditional CERES ordering pages' / CERES Data and information https://eosweb.larc.nasa.gov/project/ceres/ceres_table. Tools for download: https://eosweb.larc.nasa.gov/tools-and-services 2014-07-22 2021-10-20 +r3d100010866 Kenya Open Data eng [] https://www.opendata.go.ke/ [] ["info@ict.go.ke"] Kenya Open Data offers visualizations tools, data downloads, and easy access for software developers. Kenya Open Data provides core government development, demographic, statistical and expenditure data available for researchers, policymakers, developers and the general public. Kenya is the first developing country to have an open government data portal, the first in sub-Saharan Africa and second on the continent after Morocco. The initiative has been widely acclaimed globally as one of the most significant steps Kenya has made to improve governance and implement the new Constitution’s provisions on access to information. eng ["other"] {"size": "374 datasets", "updatedp": "2021-11-19"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://icta.go.ke/open-data/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["demography", "economic development", "economic history", "expenditures, public", "kenya", "political science", "statistics"] [{"institutionName": "Kenya ICT Board", "institutionAdditionalName": [], "institutionCountry": "KEN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ict.go.ke/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ict.go.ke/contact-us/"]}, {"institutionName": "Kenya Open Data Project", "institutionAdditionalName": [], "institutionCountry": "KEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.opendata.go.ke/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guiding Principles of the National ICT Policy", "policyURL": "https://icta.go.ke/pdf/National-ICT-Policy-20June2016.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://41.215.35.52/blog/terms-of-use/"}] restricted [] ["other"] {"api": "https://developers.arcgis.com/rest/#/Query%20%20%20%20_Feature_Service_Layer/02r3000000r1000000/", "apiType": "REST"} ["none"] http://41.215.35.52/blog/terms-of-use/ [] unknown yes [] [] {} 2014-07-25 2021-11-30 +r3d100010867 Tropical Rainfall Measuring Mission eng [{"additionalName": "TRMM", "additionalNameLanguage": "eng"}] https://trmm.gsfc.nasa.gov/ [] ["https://trmm.gsfc.nasa.gov/contacts_dir/contacts.html", "jacob.reed@nasa.gov"] TRMM is a research satellite designed to improve our understanding of the distribution and variability of precipitation within the tropics as part of the water cycle in the current climate system. By covering the tropical and sub-tropical regions of the Earth, TRMM provides much needed information on rainfall and its associated heat release that helps to power the global atmospheric circulation that shapes both weather and climate. In coordination with other satellites in NASA's Earth Observing System, TRMM provides important precipitation information using several space-borne instruments to increase our understanding of the interactions between water vapor, clouds, and precipitation, that are central to regulating Earth's climate. The TRMM mission ended in 2015 and final TRMM multi-satellite precipitation analyses (TMPA, product 3B42/3B43) data processing will end December 31st, 2019. As a result, this TRMM webpage is in the process of being retired and some TRMM imagery may not be displaying correctly. Some of the content will be moved to the Precipitation Measurement Missions website https://gpm.nasa.gov/ and our team is exploring ways to provide some of the real-time products using GPM data. Please contact us if you have any additional questions. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1997 2015-06-16 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://trmm.gsfc.nasa.gov/overview_dir/background.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3DModel", "climate processes", "climatology", "earth science", "hazards", "rain and rainfall", "satellite", "spacecraft", "stroms", "tropics", "water and energy cycles", "weather forecast"] [{"institutionName": "Goddard Space Flight Center", "institutionAdditionalName": ["GSFC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html#.U4wrflPc330", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japan Aerospace Exploration Agency", "institutionAdditionalName": ["JAXA"], "institutionCountry": "JPN", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "http://global.jaxa.jp/about/index.html", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["https://ssl.tksc.jaxa.jp/space/inquiries/index_e.html"]}, {"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.U4wlj1Pc330"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html#.U4wiyFPc330"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://trmm.gsfc.nasa.gov/publications_dir/imagepol.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/ip/1210.html"}] closed [] ["unknown"] {"api": "ftp://trmmopen.gsfc.nasa.gov/pub/merged", "apiType": "FTP"} ["none"] [] no yes [] [] {} Download data information: http://pmm.nasa.gov/node/158 June 16, 2015, Update: The Tropical Rainfall Measuring Mission (TRMM) spacecraft re-entered the Earth’s atmosphere on June 15, 2015, at 11:55 p.m. EDT, over the South Indian Ocean, according to the U.S. Strategic Command’s Joint Functional Component Command for Space through the Joint Space Operations Center (JSpOC). The U.S. Space Surveillance Network, operated by the Defense Department's JSpOC, had been closely monitoring TRMM’s descent since the mission was ended in April. Most of the spacecraft was expected to burn up in the atmosphere during its uncontrolled re-entry. 2014-06-01 2021-10-06 +r3d100010868 Data.gov.au eng [] https://data.gov.au/ [] ["data.gov@finance.gov.au"] Data.gov.au provides public access, download, and reuse to raw data from the Australian Government, state and territory governments. Data.gov.au encourages user feedback and suggestions. Site upgrades and new features will be made over time. eng ["other"] {"size": "over 30.000 datasets", "updatedp": "2021-11-19"} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11201 Economic Theory", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://data.gov.au/page/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["business", "communication", "culture", "demography", "education", "employment (economic theory)", "finance", "geography", "government information", "health", "history", "humanities", "industries", "law", "multidisciplinary", "political science", "politics and culture", "public safety", "science", "social sciences", "societies", "technology", "tourism", "transportation"] [{"institutionName": "Australian Government, Department of Finance, Whole of Government ICT Services", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.finance.gov.au/government/whole-government-ict-services", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Definition", "policyURL": "https://opendefinition.org/od/2.1/en/"}, {"policyName": "Terms of Use", "policyURL": "https://data.gov.au/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://opendefinition.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://artlibre.org/licence/lal/en/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://opendefinition.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/fdl-1.3.html"}] closed [] ["CKAN"] yes {"api": "http://docs.ckan.org/en/ckan-2.5.2/api/", "apiType": "REST"} ["none"] https://data.gov.au/page/about [] unknown yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2014-07-25 2021-11-19 +r3d100010869 Open Government Canada - Open Data eng [{"additionalName": "Gouvernement Ouvert Canada - donn\u00e9es ouvertes", "additionalNameLanguage": "fra"}] https://open.canada.ca/en/open-data [] ["https://open.canada.ca/en/forms/contact-us", "open-ouvert@tbs-sct.gc.ca"] The Canada Open Data Project provides Government of Canada data to the public as potential driver for economic innovation. Searchable and browsable raw data is available for download, and the public can recommend specific data be made available. eng ["other"] {"size": "140.000 datasets", "updatedp": "2021-11-19"} 2011 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://open.canada.ca/en/open-data-principles [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "archaeology", "census", "communication", "culture", "demographic surveys", "economics", "education", "geospatial data", "government information", "health", "history", "labor", "law", "linguistics", "multidisciplinary", "nature", "political science", "population", "public safety", "science", "social sciences", "technology", "transportation"] [{"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en.html", "institutionIdentifier": ["ROR:010q4q527"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}] [{"policyName": "Open Data 101", "policyURL": "https://open.canada.ca/en/open-data-principles"}, {"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html?_ga=1.31404735.1212096498.1470989893"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] restricted [{"dataUploadLicenseName": "Suggest a dataset", "dataUploadLicenseURL": "https://search.open.canada.ca/en/sd/"}] ["CKAN"] yes {"api": "https://open.canada.ca/en/access-our-application-programming-interface-api", "apiType": "REST"} ["none"] [] unknown yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://open.canada.ca/data/en/feeds/dataset.atom", "syndicationType": "ATOM"} data.gc.ca Open Data has changed to Open Government Canada - Open Data 2014-07-25 2021-11-19 +r3d100010870 AHRI Data Repository eng [{"additionalName": "Africa Health Research Institute Data Repository", "additionalNameLanguage": "eng"}] https://data.ahri.org/index.php/home [] ["help@africacentre.ac.za", "https://www.ahri.org/contact/"] The Africa Health Research Institute (AHRI) has published its updated analytical datasets for 2016. The datasets cover socio-economic, education and employment information for individuals and households in AHRI’s population research area in rural northern KwaZulu-Natal. The datasets also include details on the migration patterns of the individuals and households who migrated into and out of the surveillance area as well as data on probable causes of death for individuals who passed away. Data collection for the 2016 individual interviews – which involves a dried blood spot sample being taken – is still in progress, and therefore datasets on HIV status and General Health only go up to 2015 for now. Over the past 16 years researchers have developed an extensive longitudinal database of demographic, social, economic, clinical and laboratory information about people over the age of 15 living in the AHRI population research area. During this time researchers have followed more than 160 000 people, of which 92 000 are still in the programme. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ahri.org/ahri-publishes-updated-longitudinal-datasets/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["HIV infections", "biology", "census data", "demography", "economics", "health", "maternal child adolescence", "medicine", "tuberculosis TB"] [{"institutionName": "Africa Health Research Institute", "institutionAdditionalName": ["AHRI"], "institutionCountry": "ZAF", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ahri.org/", "institutionIdentifier": ["ROR:034m6ke32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "South African Population Research Infrastructure Network", "institutionAdditionalName": ["SAPRIN"], "institutionCountry": "ZAF", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://saprin.mrc.ac.za/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of KwaZulu-Natal", "institutionAdditionalName": [], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ukzn.ac.za/", "institutionIdentifier": ["ROR:04qzfn040"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "wellcome trust", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access Policy", "policyURL": "https://data.ahri.org/index.php/catalog/988#metadata-data_access"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.ahri.org/index.php/catalog/988#metadata-data_access"}] closed [] [] {} ["none"] https://data.ahri.org/index.php/catalog/988#metadata-data_access [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2014-07-28 2021-12-01 +r3d100010871 IUCN Red List of Threatened Species eng [] https://www.iucnredlist.org/ ["RRID:SCR_012758", "RRID:nlx_156898"] ["RedListGIS@iucn.org", "https://www.iucnredlist.org/contact/contact-page", "redlist@iucn.org", "redlistgis@iucn.org"] The IUCN Red List of Threatened Species provides taxonomic, conservation status and distribution data on plants and animals that are critically endangered, endangered and vulnerable. Data are available in Esri File Geodatabase format, Esri Shapefile format, and Excel format. eng ["disciplinary"] {"size": "138.300 species", "updatedp": "2021-11-25"} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.iucnredlist.org/about/background-history [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["amphibians", "biodiversity", "birds", "butterflies", "cichlids", "corals", "endangered species", "extinction (biology)", "geographic information systems", "groupers", "mammals", "mangrove plants", "parrotfishes", "population", "reptiles", "seagrasses", "spatial data infrastructures", "taxonomists", "wrasses"] [{"institutionName": "IUCN Red List Partners", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iucnredlist.org/about/partners", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Union for Conservation of Nature", "institutionAdditionalName": ["IUCN"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iucn.org/", "institutionIdentifier": ["ROR:04tehfn33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iucn.org/theme/species/contacts"]}] [{"policyName": "IUCN Policies, Guidelines & Standards", "policyURL": "https://www.iucn.org/theme/species/about/species-survival-commission/ssc-members-area/members-resources"}, {"policyName": "IUCN Red List Categories and Criteria", "policyURL": "http://s3.amazonaws.com/iucnredlist-newcms/staging/public/attachments/3108/redlist_cats_crit_en.pdf"}, {"policyName": "IUCN statutes and regulations", "policyURL": "https://www.iucn.org/sites/dev/files/iucn_statutes_and_regulations_february_2017_final-master_file.pdf"}, {"policyName": "The IUCN Red List Terms and Conditions of Use", "policyURL": "https://www.iucnredlist.org/terms/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iucnredlist.org/terms/terms-of-use#2_Copyrights_and_ownership"}, {"dataLicenseName": "other", "dataLicenseURL": "http://spatial-data.s3.amazonaws.com/groups/Red%20List%20Terms%20%26%20Conditions%20of%20Use.pdf"}] restricted [{"dataUploadLicenseName": "Support", "dataUploadLicenseURL": "https://www.iucnredlist.org/assessment/supporting-information"}] [] yes {"api": "http://apiv3.iucnredlist.org/.", "apiType": "other"} ["none"] https://www.iucnredlist.org/about/citationinfo [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} IUCN red list uses diverse International taxonomic standards https://www.iucn.org/theme/species/publications/standards 2014-07-28 2021-11-30 +r3d100010872 UNAVCO eng [] https://www.unavco.org/data/data.html ["RRID:SCR_006706", "RRID:nlx_154719"] ["data@unavco.org", "https://www.unavco.org/help/help.html#mail-lists"] UNAVCO promotes research by providing access to data that our community of geodetic scientists uses for quantifying the motions of rock, ice and water that are monitored by a variety of sensor types at or near the Earth's surface. After processing, these data enable millimeter-scale surface motion detection and monitoring at discrete points, and high-resolution strain imagery over areas of tens of square meters to hundreds of square kilometers. The data types include GPS/GNSS, imaging data such as from SAR and TLS, strain and seismic borehole data, and meteorological data. Most of these can be accessed via web services. In addition, GPS/GNSS datasets, TLS datasets, and InSAR products are assigned digital object identifiers. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.unavco.org/about/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "borehole", "cryosphere", "data libraries", "earth sciences", "geodesy", "geological mapping", "geology", "geophysical instruments", "geophysical observatories", "geophysical surveys", "glaciology", "global positioning system", "hydrology", "ionosphere", "meteorology", "space weather", "strain and seismic borehole data"] [{"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/council-of-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UNAVCO, Inc.", "institutionAdditionalName": ["UNAVCO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unavco.org/", "institutionIdentifier": ["ROR:02n9tn974"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "UNAVCO Data Policy", "policyURL": "https://www.unavco.org/community/policies_forms/data-policy/data-policy.html"}, {"policyName": "UNAVCO Terms of Use", "policyURL": "https://www.unavco.org/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.unavco.org/community/policies_forms/data-policy/data-policy.html"}] restricted [{"dataUploadLicenseName": "Public Domain", "dataUploadLicenseURL": "https://www.unavco.org/community/policies_forms/data-policy/data-policy.html"}] ["other"] yes {"api": "ftp://data-out.unavco.org/pub/", "apiType": "FTP"} ["DOI"] https://www.unavco.org/community/policies_forms/attribution/attribution.html#acknowledgment [] unknown unknown ["WDS"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} UNAVCO is covered by Thomson Reuters Data Citation Index. UNAVCO is a regular member of ICSU World Data System. 2014-07-28 2021-12-03 +r3d100010873 National Agricultural Statistics Service eng [{"additionalName": "NASS", "additionalNameLanguage": "eng"}] https://www.nass.usda.gov/ [] ["https://www.nass.usda.gov/Contact_Us/index.php", "nass@nass.usda.gov"] As a department of the United States Department of Agriculture (USDA) the National Agricultural Statistics Service (NASS) continually surveys and reports on U.S. agriculture. NASS reports include production and supplies of food and fiber, prices paid and received by farmers, farm labor and wages, farm finances, chemical use, and changes in the demographics of U.S. producers. NASS provides objective and unbiased statistics of states and counties, while safeguarding the privacy of farmers and ranchers. eng ["institutional", "other"] {"size": "31.142 results", "updatedp": "2021-12-03"} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "20711 Animal Husbandry, Breeding and Hygiene", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.nass.usda.gov/About_NASS/Mission_Statement/index.php [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agricultural chemicals", "agriculture - economic aspects", "animal products", "animals", "census data", "crops", "demography", "economics", "food supply", "labor", "livestock", "maps", "produce trade", "research", "survey data"] [{"institutionName": "United States Department of Agriculture, National Agricultural Statistics Service", "institutionAdditionalName": ["USDA NASS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nass.usda.gov/index.php", "institutionIdentifier": ["ROR:04dpymk59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nass@nass.usda.gov"]}] [{"policyName": "Civil Rights Policy Statement", "policyURL": "https://www.nass.usda.gov/About_NASS/Civil_Rights/civilrightspolicy2021.pdf"}, {"policyName": "Keeping Data Safe", "policyURL": "https://www.nass.usda.gov/About_NASS/Keeping_Data_Safe/index.php"}, {"policyName": "Regulations guiding NASS", "policyURL": "https://www.nass.usda.gov/About_NASS/Regulations_Guiding_NASS/index.php"}, {"policyName": "Statement of Commitment to Scientific Integrity by Principal Statistical Agencies", "policyURL": "https://www.nass.usda.gov/About_NASS/pdf/ScientificIntegrityStatement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nass.usda.gov/Data_and_Statistics/Citation_Request/index.php"}] closed [] [] yes {"api": "https://www.nass.usda.gov/developer/index.php", "apiType": "other"} ["none"] https://www.nass.usda.gov/Data_and_Statistics/Citation_Request/index.php [] unknown yes [] [] {"syndication": "https://www.nass.usda.gov/Newsroom/Syndication/", "syndicationType": "RSS"} 2014-07-29 2021-12-03 +r3d100010874 XNAT CENTRAL eng [] https://central.xnat.org/ ["RRID:SCR_006235", "RRID:nif-0000-04375"] ["https://www.xnat.org/contact/", "info@xnat.org"] XNAT CENTRAL is a publicly accessible datasharing portal at Washinton University Medical School using XNAT software. XNAT provides neuroimaging data through a web interface and a customizable open source platform. XNAT facilitates data uploads and downloads for data sharing, processing and organization. eng ["disciplinary", "institutional"] {"size": "800 projects; 16.000 subjects; and 20.000 imaging sessions.", "updatedp": "2021-12-03"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://wiki.xnat.org/documentation/case-studies [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["autism", "cancer", "diseases", "imaging systems in medicine", "neurology - research", "schizophrenia"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington University School of Medicine, Neuroinformatics Research Group", "institutionAdditionalName": ["NRG"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nrg.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "XNAT Privacy Statement", "policyURL": "https://www.xnat.org/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["other"] yes {"api": "https://wiki.xnat.org/documentation/the-xnat-api", "apiType": "FTP"} ["none"] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Currently, XNAT is working with the Human Connectome Project and the Cancer Imaging Archive on each project's data sharing needs, and is the backbone of a publicly available imaging resource at XNAT Central. 2014-07-29 2021-12-03 +r3d100010875 ExPASy Bioinformatics Resource Portal eng [{"additionalName": "Expert Protein Analysis System", "additionalNameLanguage": "eng"}, {"additionalName": "SIB Bioinformatics Resource Portal", "additionalNameLanguage": "eng"}] https://www.expasy.org/ ["RRID:SCR_012880", "RRID:nif-0000-30108"] ["helpdesk@expasy.org", "https://www.expasy.org/contact"] Swiss Institute of Bioinformatics (SIB) coordinates research and education in bioinformatics throughout Switzerland and provides bioinformatics services to the national and international research community. ExPASy gives access to numerous repositories and databases of SIB. For example: array map, MetaNetX, SWISS-MODEL and World-2DPAGE, and many others see a list here http://www.expasy.org/resources eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.expasy.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["amino acids", "biology", "biomedical engineering", "biotechnology", "electrophoresis", "gene expression", "gene mapping", "genes", "genetics", "genomes", "genomics", "isoelectric focusing", "molecular biology", "pathology", "peptides", "physiology", "protein binding", "proteins", "proteomics", "science"] [{"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": ["ROR:002n09z45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.expasy.org/contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.expasy.org/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.expasy.org/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.expasy.org/terms-of-use"}] restricted [] [] yes {"api": "ftp://ftp.expasy.org/databases/", "apiType": "FTP"} ["none"] https://www.expasy.org/about [] yes unknown [] [] {} The portal enhances the original ExPASy server, previously known as "Expert Protein Analysis System" 2014-07-29 2021-12-03 +r3d100010876 U.S. Department of Labor, Bureau of Labor Statistics eng [{"additionalName": "United States Department of Labor, Bureau of Labor Statistics", "additionalNameLanguage": "eng"}] https://www.bls.gov/data/ [] ["https://www.bls.gov/bls/contact.htm"] The U.S. Bureau of Labor Statistics collects, analyzes, and publishes reliable information on many aspects of the United States economy and society. They measure employment, compensation, worker safety, productivity, and price movements. This information is used by jobseekers, workers, business leaders, and others to assist them in making sound decisions at work and at home. Statistical data covers a wide range of topics about the labor market, economy and society in the U.S.; subject areas include: Inflation & Prices, Employment, Unemployment, Pay & Benefits, Spending & Time Use, Productivity, Workplace Injuries, International, and Regional Resources. Data is available in multiple formats including charts and tables as well as Bureau of Labor Statistics publications. eng ["other"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bls.gov/bls/infohome.htm [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["demographics", "economics", "economics - statistics", "employment", "government publications", "inflation (finance)", "labor", "labor market", "social status", "unemployment", "work"] [{"institutionName": "United States Department of Labor, Bureau of Labor Statistics", "institutionAdditionalName": ["BLS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bls.gov/home.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://data.bls.gov/cgi-bin/forms/opb?/bls/pss.htm"]}] [{"policyName": "Confidentiality of Data", "policyURL": "https://www.bls.gov/bls/confidentiality.htm"}, {"policyName": "website policies", "policyURL": "https://www.bls.gov/bls/website-policies.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.bls.gov/bls/linksite.htm"}] closed [] ["unknown"] yes {"api": "https://www.bls.gov/developers/api_signature.htm", "apiType": "REST"} ["none"] https://www.bls.gov/oes/oes_ques.htm [] unknown unknown [] [] {} 2014-07-29 2019-03-29 +r3d100010877 ROAR Isolate Database eng [{"additionalName": "Reservoirs of Antibiotic Resistance Network", "additionalNameLanguage": "eng"}] [] [] The repository is no longer available. >>>!!!<<< 2019-03-29: no more access to ROAR Isolate Database >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "3.774 datasets", "updatedp": "2014-07-30"} 2006 2019-03 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20513 Pneumology, Clinical Infectiology Intensive Care Medicine", "scheme": "DFG"}, {"name": "20518 Rheumatology, Clinical Immunology, Allergology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["antibiotics", "bacteria", "genes", "genotype-environment interaction", "immune system", "medicine", "pathogenic microorganisms", "phenotype", "public health"] [{"institutionName": "Alliance for the Prudent Use of Antibiotics", "institutionAdditionalName": ["APUA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://apua.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretariat@ischemo.org"]}, {"institutionName": "Reservoir of Antibiotic Resistance Network", "institutionAdditionalName": ["ROAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.copyright.gov/fair-use/more-info.html"}] restricted [] [] {} ["none"] [] yes yes [] [] {} Description: The ROAR Isolate Database is a searchable collection of commensal and complimentary pathogen isolate datasets. ROAR allows investigators to identify datasets of interest, submit datasets, or download datasets. ROAR datasets include data depositors' contact information and links to their articles in ROAR Literature Database. 2014-07-30 2019-12-02 +r3d100010878 ComBase eng [] https://www.combase.cc/index.php/en/ ["RRID:SCR_008181", "RRID:nif-0000-21095"] ["contact@combase.cc", "https://www.combase.cc/index.php/en/contact-us"] ComBase is a resource for quantitative and predictive food microbiology. ComBase includes a database of observed microbial responses to a variety of food-related environments and a collection of predictive models. eng ["disciplinary"] {"size": "over 58.000 records", "updatedp": "2019-03-29"} 2003 ["eng", "jpn", "spa", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20507 Clinical Chemistry and Pathobiochemistry", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20714 Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.combase.cc/index.php/en/about-combase/13-history [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bacteria", "environmental health", "food", "food - microbiology", "microbiology", "pathogenic microorganisms"] [{"institutionName": "Agricultural University of Athens, Department of Food Science and Human Nutrition", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://fst.aua.gr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gjn@aua.gr", "http://fst.aua.gr/en/personel"]}, {"institutionName": "Biotechnology and Biological Science Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "National Agricultural and Food Research Organization, National Food Research Institute", "institutionAdditionalName": ["NARO NFRI"], "institutionCountry": "JPN", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.naro.affrc.go.jp/english/laboratory/nfri/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.naro.affrc.go.jp/english/laboratory/nfri/contact/mail_form/index.html"]}, {"institutionName": "Quadram Institute", "institutionAdditionalName": ["formerly: IFR", "formerly: Institute of Food Research"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://quadram.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://quadram.ac.uk/contact/"]}, {"institutionName": "U.S. Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA ARS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": ["RRID:SCR_011752", "RRID:nlx_152539"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}, {"institutionName": "Unilever Research, Safety and Environment Assurance Centre", "institutionAdditionalName": ["SEAC"], "institutionCountry": "GBR", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.unilever.com/about/innovation/safety-and-environment/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unilever.com/contact/"]}, {"institutionName": "University of Queretaro, Food Research Department", "institutionAdditionalName": [], "institutionCountry": "MEX", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.uaq.mx/quimica/docentes/montserrat.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["montshi@uaq.mx"]}, {"institutionName": "University of Tasmania, Tasmanian Institute of Agriculture, Food Safety Centre Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.foodsafetycentre.com.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mark.tamplin@utas.edu.au"]}] [{"policyName": "Terms and conditions", "policyURL": "https://browser.combase.cc/membership/disclaimer.aspx"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://browser.combase.cc/membership/disclaimer.aspx"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://www.combase.cc/index.php/en/?format=feed&type=rss", "syndicationType": "RSS"} ComBase is covered by Thomson Reuters Data Citation Index. 2014-07-30 2019-04-01 +r3d100010879 Gateway to Global Aging Data eng [{"additionalName": "RAND Survey Meta Data Repository", "additionalNameLanguage": "eng"}] https://g2aging.org/ [] ["help@g2aging.org", "https://g2aging.org/?section=page&pageid=5"] The Gateway to Global Aging Data is a platform for population survey data on aging around the world. This site offers a digital library of survey questions, a search engine for finding comparable questions across surveys, and identically defined variables for cross-country analysis. The Survey Meta Data Repository provides Health and Retirement Study metadata of family surveys. Survey Meta Data Repository primarily provides access to survey metadata so researchers can compare survey formats, types and identically defined variables. Additional resources include tools for cross-country analysis, general statistics by country and year, survey question library, and tools for comparing questions across the surveys. Datasets are in Stata format; users must register and request datasets. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20524 Gerontology and Geriatric Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://g2aging.org/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["STATA", "demography", "health", "health insurance", "income", "metadata", "pensions", "retirement", "social security", "work"] [{"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Rand Corporation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rand.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": []}, {"institutionName": "University of Southern California, Center for Economic and Social Research", "institutionAdditionalName": ["CESR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cesr.usc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southern California, School of Gerontology", "institutionAdditionalName": ["GERO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://gero.usc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Intellectual Property", "policyURL": "https://policy.usc.edu/files/2014/02/intellectual_property.pdf"}, {"policyName": "Privacy policy", "policyURL": "https://g2aging.org/?section=page&pageid=27"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cio.usc.edu/copyright/"}] closed [] [] {} ["none"] https://g2aging.org/index.php?section=concordance [] yes yes [] [] {} 2014-07-30 2019-04-01 +r3d100010880 VectorBase eng [{"additionalName": "Bioinformatics Resource for Invertebrate Vectors of Human Pathogens", "additionalNameLanguage": "eng"}] https://www.vectorbase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.3etvdn", "MIR:00000232", "OMICS_03146", "RRID:nif-0000-03624"] ["info@vectorbase.org"] VectorBase provides data on arthropod vectors of human pathogens. Sequence data, gene expression data, images, population data, and insecticide resistance data for arthropod vectors are available for download. VectorBase also offers genome browser, gene expression and microarray repository, and BLAST searches for all VectorBase genomes. VectorBase Genomes include Aedes aegypti, Anopheles gambiae, Culex quinquefasciatus, Ixodes scapularis, Pediculus humanus, Rhodnius prolixus. VectorBase is one the Bioinformatics Resource Centers (BRC) projects which is funded by National Institute of Allergy and Infectious Diseases (NAID). eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.vectorbase.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["Aedes aegypti", "Anopheles gambiae", "Culex quinquefasciatus", "FAIR", "Ixodes scapularis", "Pediculus humanus", "arthropod populations", "arthropod vectors", "arthropoda", "gene expression", "genomes", "invertebrates as carriers of disease", "pathogenic microorganisms", "vector control - biological control"] [{"institutionName": "Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Imperial College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imperial.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["yaoal@niaid.nih.gov"]}, {"institutionName": "University of Notre Dame", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["frank@nd.edu"]}] [{"policyName": "Data submission and access", "policyURL": "https://www.vectorbase.org/data-policies"}, {"policyName": "NIAID/DMID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}, {"policyName": "NIH Sharing Policies", "policyURL": "https://grants.nih.gov/policy/sharing.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.niaid.nih.gov/labsandresources/resources/dmid/brc/Pages/default.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "https://gnu.org/licenses/gpl.html"}] restricted [{"dataUploadLicenseName": "Data submission and access", "dataUploadLicenseURL": "https://www.vectorbase.org/data-policies"}] ["other"] yes {"api": "ftp://ftp.vectorbase.org/public_data/", "apiType": "FTP"} ["none"] https://www.vectorbase.org/faqs/how-cite-vectorbase [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.vectorbase.org/justnews/feed", "syndicationType": "RSS"} University of Notre Dame is one of four Bioinformatics Resource Centers (BRCs) awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. Other repositories from BRCs are: EuPathDB, ViPR, IRD, PATRIC. At PathogenPortal http://www.pathogenportal.org/portal/portal/PathPort/Home a search over all BRCs is possible. Vectorbase uses DMID Metadata Standards GSCID/BRC http://www.niaid.nih.gov/labsandresources/resources/dmid/metadata/Pages/default.aspx 2014-08-04 2019-02-13 +r3d100010881 NCBI dbMHC eng [{"additionalName": "MHC", "additionalNameLanguage": "eng"}, {"additionalName": "Major histocompatibility Complex database", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/gv/mhc/ ["RRID:nif-0000-02729"] ["dbMHC@ncbi.nlm.nih.gov"] >>>> !!! the repository is no longer available - Data previously on the site are now available at ftp://ftp.ncbi.nlm.nih.gov/pub/mhc/mhc/Final Archive. !!! <<< The dbMHC database provides an open, publicly accessible platform for DNA and clinical data related to the human Major Histocompatibility Complex (MHC). The dbMHC provides access to human leukocyte antigen (HLA) sequences, HLA allele and haplotype frequencies, and clinical datasets. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Histocompatibility", "Leukocytes", "diabetes", "hematopoietic cell transplantation", "human genome", "nk receptors", "rheumatoid arthritis"] [{"institutionName": "Medical University of Graz", "institutionAdditionalName": ["Medizinische Universit\u00e4t Graz"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.medunigraz.at/en/", "institutionIdentifier": ["ROR:01faaaf77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["ROR:0060t0j89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] [] yes {"api": "ftp://ftp.ncbi.nlm.nih.gov/pub/mhc/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} 2014-05-12 2021-05-28 +r3d100010882 EMDataResource eng [{"additionalName": "formerly: EMDataBank", "additionalNameLanguage": "eng"}] http://www.emdataresource.org/ ["OMICS_08960", "RRID:SCR_003207", "RRID:nif-0000-30776", "biodbcore-001523"] ["help@emdataresource.org", "http://www.emdataresource.org/contactus.html"] Cryo electron microscopy enables the determination of 3D structures of macromolecular complexes and cells from 2 to 100 Å resolution. EMDataResource is the unified global portal for one-stop deposition and retrieval of 3DEM density maps, atomic models and associated metadata, and is a joint effort among investigators of the Stanford/SLAC CryoEM Facility and the Research Collaboratory for Structural Bioinformatics (RCSB) at Rutgers, in collaboration with the EMDB team at the European Bioinformatics Institute. EMDataResource also serves as a resource for news, events, software tools, data standards, and validation methods for the 3DEM community. The major goal of the EMDataResource project in the current funding period is to work with the 3DEM community to (1) establish data-validation methods that can be used in the process of structure determination, (2) define the key indicators of a well-determined structure that should accompany every deposition, and (3) implement appropriate validation procedures for maps and map-derived models into a 3DEM validation pipeline. eng ["disciplinary"] {"size": "15.417 entries", "updatedp": "2021-06-08"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.emdataresource.org/mission.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biology", "crystal growth", "crystallography", "crystals", "electron distribution", "electron microscopy", "electrons", "microscopy", "molecular biology", "molecular microbiology", "nuclear magnetic resonance", "tomography"] [{"institutionName": "Baylor College of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": ["ROR:02pttbw34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rutgers University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rutgers.edu/", "institutionIdentifier": ["ROR:05vt9qd57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.emdataresource.org/faq.html#c5"}] restricted [{"dataUploadLicenseName": "Deposit", "dataUploadLicenseURL": "http://www.emdataresource.org/deposit.html"}] [] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/emdb", "apiType": "FTP"} ["none"] http://www.emdataresource.org/faq.html#c5 [] unknown yes [] [] {"syndication": "http://www.emdataresource.org/rss.xml", "syndicationType": "RSS"} EM depositions to EMDB and PDB are curated by annotation staff located at PDBe, RCSB-PDB, and PDBj. 2014-08-04 2021-11-16 +r3d100010883 The Global Proteome Machine eng [{"additionalName": "GPM", "additionalNameLanguage": "eng"}, {"additionalName": "Proteomics data analysis, reuse and validation for biological and biomedical research", "additionalNameLanguage": "eng"}] https://www.thegpm.org/index.html ["RRID:SCR_006617", "RRID:nif-0000-10455"] ["contact@thegpm.org", "rbeavis@beavisinformatics.ca"] The Global Proteome Machine (GPM) is a protein identification database. This data repository allows users to post and compare results. GPM's data is provided by contributors like The Informatics Factory, University of Michigan, and Pacific Northwestern National Laboratories. The GPM searchable databases are: GPMDB, pSYT, SNAP, MRM, PEPTIDE and HOT. eng ["disciplinary", "institutional"] {"size": "484.572 models; 873.636.449 proteins; 9.187.164.998 peptides; 128.620.309.972 residues", "updatedp": "2019-12-02"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.thegpm.org/gpm/privacy.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Plant UniGene", "X!Hunter", "X!P3", "bioinformatics", "cow", "enzymatic analysis", "genomes", "human", "mouse", "mutation (biology)", "peptides", "prokaryotes", "proteins", "rat", "spectrum analysis"] [{"institutionName": "Beavis Informatics Ltd.", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rbeavis@beavisinformatics.ca"]}, {"institutionName": "The Global Proteome Machine Organization Contributors", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.thegpm.org/GPM/contributors.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "https://www.thegpm.org/gpm/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wiki.thegpm.org/wiki/FTP_site_layout_for_the_cHPP"}] restricted [] ["other"] yes {"api": "ftp://ftp.thegpm.org/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {"syndication": "https://www.thegpm.org/gpm_rss.xml", "syndicationType": "RSS"} gpmDB Standard was designed to be a simplification and extension of the MIAPE scheme proposed by the PSI committee of HUPO 2014-08-04 2019-12-02 +r3d100010884 Surveillance Epidemiology and End Results eng [{"additionalName": "SEER", "additionalNameLanguage": "eng"}] http://seer.cancer.gov/ ["RRID:nif-0000-21366"] ["http://seer.cancer.gov/about/contact.html", "seerweb@imsweb.com"] A premier source for United States cancer statistics, SEER gathers information related to incidence, prevalence, and survival from specific geographic areas that represent 28 percent of the population, as well as compiles related reports and reports on the national cancer mortality rates. Their aim is to provide information related to cancer statistics and decrease the burden of cancer in the national population. SEER has been collecting data from cancer cases since 1973. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cancer", "cancer-mortality", "leukemia"] [{"institutionName": "National Cancer Institute at the National Institutes of Health", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data-Use agreement", "policyURL": "http://seer.cancer.gov/data/sample-dua.html"}, {"policyName": "privacy policy", "policyURL": "http://seer.cancer.gov/about/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://seer.cancer.gov/about/privacy/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://seer.cancer.gov/about/privacy/"}] closed [] [] yes {"api": "https://api.seer.cancer.gov/usage.do", "apiType": "REST"} ["none"] http://seer.cancer.gov/data/sample-dua.html [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} SEER Metadata meets Federal Geographic Data Committee Standards (FGDC) 2014-08-05 2016-06-01 +r3d100010886 Demographic and Health Surveys eng [{"additionalName": "MEASURE DHS", "additionalNameLanguage": "eng"}, {"additionalName": "The DHS Program", "additionalNameLanguage": "eng"}] https://dhsprogram.com/ [] ["archive@dhsprogram.com", "https://dhsprogram.com/Who-We-Are/Contact-Us.cfm"] MEASURE DHS is advancing global understanding of health and population trends in developing countries through nationally-representative household surveys that provide data for a wide range of monitoring and impact evaluation indicators in the areas of population, health, HIV, and nutrition. The database collects, analyzes, and disseminates data from more than 300 surveys in over 90 countries. MEASURE DHS distributes, at no cost, survey data files for legitimate academic research. eng ["disciplinary"] {"size": "", "updatedp": ""} 1984 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20505 Nutritional Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://dhsprogram.com/Who-We-Are/About-Us.cfm [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["AIDS (disease)", "HIV infections", "anemia", "anthropometry", "contraception", "demography", "education", "family planning", "female circumcision", "fertility", "health", "immunization", "malaria", "mortality", "nutrition", "surveys"] [{"institutionName": "ICF International", "institutionAdditionalName": ["ICFI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.icf.com/", "institutionIdentifier": ["ROR:0156f0c06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icf.com/contact-us"]}, {"institutionName": "US Agency for International Development", "institutionAdditionalName": ["USAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/", "institutionIdentifier": ["ROR:01n6e6j62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usaid.gov/comment"]}] [{"policyName": "Using Datasets for Analysis", "policyURL": "https://dhsprogram.com/data/Using-Datasets-for-Analysis.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dhsprogram.com/data/Using-DataSets-for-Analysis.cfm"}] closed [] ["unknown"] {"api": "http://api.dhsprogram.com/#/introapi.cfm", "apiType": "REST"} ["none"] https://dhsprogram.com/publications/Recommended-Citations.cfm [] no yes [] [] {} 2014-08-13 2021-08-04 +r3d100010887 TalkBank eng [] http://talkbank.org/ ["RRID:SCR_003242", "RRID:nif-0000-00626"] ["macw@cmu.edu"] TalkBank provides transcripts, audio and video of communicative interactions for research in human and animal communication. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20304 Sensory and Behavioural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://talkbank.org/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["animal communication", "aphasia", "bilingualism", "code switching (linguistics)", "conversation analysis", "discourse analysis", "gesture", "linguistics"] [{"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "Carnegie Mellon University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.cmu.edu/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National \u202bScience Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "2004", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Institute on Deafness and Other Communication Disorders", "institutionAdditionalName": ["NIDCD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nidcd.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1984", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal Implementation", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2017/10/TalkBank.pdf"}, {"policyName": "NIH data sharing policy", "policyURL": "https://grants.nih.gov/grants/policy/data_sharing/index.htm"}, {"policyName": "OLAC Standards", "policyURL": "http://www.language-archives.org/documents.html#Standards"}, {"policyName": "talkbank code of ethics", "policyURL": "http://talkbank.org/share/rules.html"}, {"policyName": "talkbank ground rules", "policyURL": "http://talkbank.org/share/"}, {"policyName": "talkbank preservation policy", "policyURL": "http://talkbank.org/share/preservation.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [{"dataUploadLicenseName": "Contributing", "dataUploadLicenseURL": "http://talkbank.org/share/contrib.html"}] ["other"] yes {} ["hdl"] [] yes yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} TalkBank is covered by Thomson Reuters Data Citation Index. In addition to preservation at Carnegie Mellon, all TalkBank materials are included in the Nijmegen Max-Planck archive at mpi.nl and the CLARIN archives. TalkBank is harvested by Online Language Archiving Community (OLAC) http://www.language-archives.org/ OAIS standards are implemented in terms of TalkBank policies for long term preservation, data migration, metadata creation, storage practices, documentation, legal responsibilities, and data access. Metadata regarding each file is constructed in accord with the CMDI standard at http://www.clarin.eu/content/component-metadata and is included in each archive 2014-07-02 2018-05-28 +r3d100010888 Digital Lunar Orbiter Photographic Atlas of the Moon eng [{"additionalName": "LPI", "additionalNameLanguage": "eng"}] https://www.lpi.usra.edu/resources/lunar_orbiter/ [] ["rpif@lpi.usra.edu"] The Lunar Orbiter Photographic Atlas of the Moon by Bowker and Hughes (NASA SP-206) is considered the definitive reference manual to the global photographic coverage of the Moon. The images contained within the atlas are excellent for studying lunar morphology because they were obtained at low to moderate Sun angles. The digital Lunar Orbiter Atlas of the Moon is a reproduction of the 675 plates contained in Bowker and Hughes. The digital archive, however, offers many improvements upon its original hardbound predecessor. Multiple search capabilities were added to the database to expedite locating images and features of interest. For accuracy and usability, surface feature information has been updated and improved. Lastly, to aid in feature identification, a companion image containing feature annotation has been included. The symbols on the annotated overlays, however, should only be used as locators and not for precise measurements. More detailed information about the digital archive process can be read in abstracts presented at the 30th and 31st Lunar and Planetary Science Conferences. eng ["disciplinary"] {"size": "", "updatedp": ""} 1967 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.lpi.usra.edu/lpi/mission.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["astronomy", "lunar craters", "lunar surface", "moon", "planetary geographic information systems", "planetary landforms", "planetary meteorology", "planets", "solar system", "space", "space sciences"] [{"institutionName": "National Aeronautics and Space Administration, Science Mission Directorate", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://science.nasa.gov/about-us/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universities Space Research Association, Lunar and Planetary Institute", "institutionAdditionalName": ["USRA, LPI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lpi.usra.edu/", "institutionIdentifier": ["ROR:01r4eh644"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@lpi.usra.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.lpi.usra.edu/resources/gc/gcreadme.html"}] closed [] ["unknown"] {} ["none"] https://www.lpi.usra.edu/resources/gc/gcreadme.html [] no unknown [] [] {"syndication": "https://www.hou.usra.edu/meetings/calendar/rss.xml", "syndicationType": "RSS"} 2014-08-15 2021-07-29 +r3d100010889 PeptideAtlas eng [] http://www.peptideatlas.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.dvyrsz", "MIR:00000053", "OMICS_02454", "RRID:SCR_006783", "RRID:nif-0000-03266"] ["http://www.peptideatlas.org/feedback.php"] The PeptideAtlas validates expressed proteins to provide eukaryotic genome data. Peptide Atlas provides data to advance biological discoveries in humans. The PeptideAtlas accepts proteomic data from high-throughput processes and encourages data submission. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.peptideatlas.org/overview.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA", "biology", "biotechnology", "blood plasma", "eukaryotic cells", "genomes", "molecular biology", "peptides", "proteins", "proteomics"] [{"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute for Systems Biology, Seattle Proteome Center", "institutionAdditionalName": ["SPC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://moritz.systemsbiology.org/seattle-proteome-center/overview/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, The National Heart, Lung, and Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nhlbiinfo@nhlbi.nih.gov"]}] [{"policyName": "Submissions to PeptideAtlas", "policyURL": "http://www.peptideatlas.org/upload/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.peptideatlas.org/overview.php"}] restricted [] ["unknown"] {"api": "ftp://ftp.peptideatlas.org/pub/PeptideAtlas/Repository/PAe000002/", "apiType": "FTP"} ["none"] http://www.peptideatlas.org/publications.php [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} PeptideAtlas is covered by Thomson Reuters Data Citation Index. PeptideAtlas is a part of the ProteomeXchange Consortium. A FTP directory for each dataset is available. 2014-08-15 2021-09-08 +r3d100010890 Protein Circular Dichroism Data Bank eng [{"additionalName": "PCDDB", "additionalNameLanguage": "eng"}, {"additionalName": "Protein Circular Dichroism Data Base", "additionalNameLanguage": "eng"}] https://pcddb.cryst.bbk.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.65yfxp", "RRID:SCR_017428"] ["sbcs@qmul.ac.uk"] The Protein Circular Dichroism Data Bank (PCDDB) provides and accepts a circular dichroism spectra data. The PCDDB and it's parent organization, the Institute of Structural and Molecular Biology (ISMB), investigate molecular structure using techniques such as biomolecular nuclear magnetic resonance, X-ray crystallography and computational structure prediction, as methods for protein production and biological characterization. eng ["disciplinary"] {"size": "608 released entries, 384 entries in pre-release", "updatedp": "2020-01-09"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "biophysics", "circular dichroism", "proteomics", "spectrograph", "spectrum analysis", "x-ray crystallography"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Birkbeck University of London, Institute of Structural and Molecular Biology", "institutionAdditionalName": ["ISMB"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ismb.lon.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ismb-admin@ismb.lon.ac.uk"]}, {"institutionName": "Queen Mary University of London, The School of Biological and Chemical Sciences", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sbcs.qmul.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sbcs@qmul.ac.uk"]}] [{"policyName": "Terms and conditions", "policyURL": "https://pcddb.cryst.bbk.ac.uk/tandc.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://pcddb.cryst.bbk.ac.uk/tandc.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://pcddb.cryst.bbk.ac.uk/tandc.php"}] restricted [] ["unknown"] {} ["none"] https://pcddb.cryst.bbk.ac.uk/ [] no unknown [] [] {} is covered by Elsevier. 2014-08-15 2021-09-02 +r3d100010891 Rhea eng [] https://www.rhea-db.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.pn1sr5", "MIR:00000082", "OMICS_06093", "RRID:nlx_70986"] ["https://www.rhea-db.org/feedback"] Rhea is a freely available and comprehensive resource of expert-curated biochemical reactions. It has been designed to provide a non-redundant set of chemical transformations for applications such as the functional annotation of enzymes, pathway inference and metabolic network reconstruction. There are three types of reaction participants (reactants and products): Small molecules, Rhea polymers, Generic compounds. All three types of reaction participants are linked to the ChEBI database (Chemical Entities of Biological Interest) which provides detailed information about structure, formula and charge. Rhea provides built-in validations that ensure both mass and charge balance of the reactions. We have populated the database with the reactions found in the enzyme classification (i.e. in the IntEnz and ENZYME databases), extending it with additional known reactions of biological interest. While the main focus of Rhea is enzyme-catalysed reactions, other biochemical reactions (including those that are often termed "spontaneous") also are included. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.rhea-db.org/documentation [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Bioinformatics", "Chemical reactions", "Enzymes - Analysis"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ebi.ac.uk/about/people/christoph-steinbeck"]}, {"institutionName": "Swiss Institute of Bioinformatics, Swiss-Prot Group", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://web.expasy.org/groups/swissprot/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Reaction annotation policies", "policyURL": "https://www.rhea-db.org/documentation"}, {"policyName": "Rhea user manual", "policyURL": "https://www.rhea-db.org/documentation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://sourceforge.net/directory/license:apache2/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Rhea at sourceforge", "dataUploadLicenseURL": "https://sourceforge.net/projects/rhea-ebi/"}] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/rhea/", "apiType": "FTP"} [] https://www.rhea-db.org/documentation#howtocite [] yes yes [] [] {"syndication": "https://sourceforge.net/p/rhea-ebi/news/feed.rss", "syndicationType": "RSS"} The database is extensively cross-referenced. The ChEBI index is used to resolve any synonyms or cross references. Reactions are currently linked to the EC list, KEGG and MetaCyc, and the reactions will be used in the IntEnz database and in all relevant UniProtKB entries. Furthermore, the reactions will also be used in the UniPathway database to generate pathways and metabolic networks. 2014-05-19 2021-10-06 +r3d100010892 DMITRE Petroleum eng [] [] ["dem.petroleum@sa.gov.au"] >>>!!!<<< the url is no longer responsive <<>> South Australia has considerable potential for petroleum and geothermal energy. The Energy Resources Division provides geoscientific and engineering information and data to support industry exploration and development. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Lithology", "Petrology", "Stratigraphy", "Topography"] [{"institutionName": "Government of South Australia, Department of State Development", "institutionAdditionalName": ["DSD"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.crunchbase.com/organization/department-of-state-development-south-australia", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dsdreception@sa.gov.au"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.pir.sa.gov.au/petroleum/site/copyright"}] closed [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2014-08-11 2021-11-11 +r3d100010894 International Satellite Cloud Climatology Project eng [{"additionalName": "ISCCP", "additionalNameLanguage": "eng"}] https://eosweb.larc.nasa.gov/project/isccp/isccp_table [] ["support@earthdata.nasa.gov"] The International Satellite Cloud Climatology Project (ISCCP) is a database of intended for researchers to share information about cloud radiative properties. The data sets focus on the effects of clouds on the climate, the radiation budget, and the long-term hydrologic cycle. Within the data sets the data entries are broken down into entries of specific characteristics based on temporal resolution, spatial resolution, or temporal coverage. eng ["disciplinary", "other"] {"size": "over 1.700 archived data sets", "updatedp": "2014-08-06"} 1983 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["climatology", "cloud forecasting", "cloud physics", "clouds", "hydrologic cycle", "hydrology", "meteorology", "radiation"] [{"institutionName": "National Aeronautics and Space Administration, Earth Data", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["public-inquiries@hq.nasa.gov"]}] [{"policyName": "Data Rights & Related Issues", "policyURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues/"}] closed [] ["unknown"] {"api": "https://eosweb.larc.nasa.gov/datapool", "apiType": "FTP"} ["none"] https://eosweb.larc.nasa.gov/citing-asdc-data [] unknown unknown [] [] {"syndication": "https://eosweb.larc.nasa.gov/rss/asdc_maintenance.xml", "syndicationType": "RSS"} 2014-08-15 2021-10-06 +r3d100010895 Journal of Cell Biology - JCB DataViewer eng [] https://rupress.org/jcb/pages/history ["RID:nlx_156057", "RRID:SCR_002633"] [] >>>!!!<<< Data originally published in the JCB DataViewer has been moved BioStudies. Please note that while the majority of data were moved, some authors opted to remove their data completely. >>>!!!<<< Migrated data can be found at https://www.ebi.ac.uk/biostudies/JCB/studies. Screen data are available in the Image Data Resource repository. http://idr.openmicroscopy.org/webclient/?experimenter=-1 >>>!!!<<< The DataViewer was decommissioned in 2018 as the journal evolved to an all-encompassing archive policy towards original source data and as new data repositories that go beyond archiving data and allow investigators to make new connections between datasets, potentially driving discovery, emerged. JCB authors are encouraged to make available all datasets included in the manuscript from the date of online publication either in a publicly available database or as supplemental materials hosted on the journal website. We recommend that our authors store and share their data in appropriate publicly available databases based on data type and/or community standard. >>>!!!<<< eng ["other"] {"size": "", "updatedp": ""} 2008 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "cell culture", "cell cycle", "developmental biology", "developmental cytology", "embryology", "histology", "imaging systems in biology", "imaging systems in medicine", "microscopes", "microscopy", "molecular biology", "neurobiology", "resolution (optics)", "ultrastructure (biology)"] [{"institutionName": "Glencoe Software", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.glencoesoftware.com/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@glencoesoftware.com"]}, {"institutionName": "Rockefeller University Press", "institutionAdditionalName": ["JBC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://rupress.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rupress.org/pages/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://www.creativecommons.org/licenses/"}] [] ["other"] no {} ["DOI"] [] yes yes [] [] {"syndication": "http://jcb.rupress.org/rss/current.xml", "syndicationType": "RSS"} The JCB DataViewer was an image hosting and presentation platform for original image datasets associated with articles published in The Journal of Cell Biology, a peer-reviewed journal from the Rockefeller University Press. 2014-08-16 2021-05-26 +r3d100010896 EVIA Digital Archive Project eng [{"additionalName": "EVIADA", "additionalNameLanguage": "eng"}] http://eviada.webhost.iu.edu/Scripts/mainCat.cfm?mc=7 [] ["eviada@indiana.edu", "http://eviada.webhost.iu.edu/Scripts/subCat.cfm?mc=12&ctID=4"] The EVIA Digital Archive Project is a repository of ethnographic video recordings and an infrastructure of tools and systems supporting scholars in the ethnographic disciplines. The project focuses on the fields of ethnomusicology, folklore, anthropology, and dance ethnology. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://eviada.webhost.iu.edu/Scripts/mainCat.cfm?mc=8 [{"name": "Audiovisual data", "scheme": "parse"}] ["dataProvider"] ["audio-visual archives", "culture", "dance", "ethnographic informants", "ethnological libraries", "ethnology", "ethnomusicology", "history", "video recording"] [{"institutionName": "Andrew W. Mellon Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mellon.org/", "institutionIdentifier": ["ROR:04jsh2530"], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.indiana.edu/", "institutionIdentifier": ["ROR:02k40bc56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University, Institute for Digital Arts and Humanities", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://idah.indiana.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, James and Anne Duderstadt Center", "institutionAdditionalName": ["formerly: University of Michigan, Duderstadt Media Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dc.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://media.eviada.org/eviadasb/login.jsp"}] restricted [] [] {} ["none"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://eviada.webhost.iu.edu/Scripts/newsRSS.xml", "syndicationType": "RSS"} metadataStandard: Library of Congress Video Technical Metadata Extension Schema 2014-08-11 2021-08-05 +r3d100010897 Agri-Environmental Research Data Repository Dataverse eng [{"additionalName": "AERDR", "additionalNameLanguage": "eng"}, {"additionalName": "University of Guelph Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/ugardr ["RRID:SCR_006317", "RRID:nlx_152012"] ["wajohnst@uoguelph.ca"] The Agri-Environmental Research Data Repository includes datasets from several studies conducted by researchers at the University of Guelph. This repository includes data on topics such as crop yield, soil moisture, weather and agroforestry. eng ["disciplinary", "institutional"] {"size": "15 Dataverses; 68 datasets; 2.204 files", "updatedp": "2018-08-29"} 2012 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "agriculture", "agriculture - environmental aspects", "bioinformatics", "ecosystem"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Ministry of Agriculture, Food and Rural Affairs, Knowledge Translation and Transfer", "institutionAdditionalName": ["ATC", "KTT", "Minist\u00e8re de l'Agriculture, de l'Alimentation et des Affaires Rurales, L'application et le transfert des connaissances", "OMAFRA"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.omafra.gov.on.ca/english/research/ktt/indexktt.html", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://www.omafra.gov.on.ca/english/contact.html"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "University of Guelph, Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lib.uoguelph.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["lib.research@uoguelph.ca"]}] [{"policyName": "Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation ["ORCID"] no yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Agri-Environmental Research Data Repository Dataverse is part of the University of Guelph Dataverse at Scholars Portal Dataverse. 2014-08-11 2019-03-05 +r3d100010898 Center for Demography of Health and Aging eng [{"additionalName": "CDHA", "additionalNameLanguage": "eng"}] https://cdha.wisc.edu/ [] ["cdhadata@ssc.wisc.edu", "https://cdha.wisc.edu/services-contacts/"] The CDHA assists researchers to create, document, and distribute public use microdata on health and aging for secondary analysis. Major research themes include: midlife development and aging; economics of population aging; inequalities in health and aging; international comparative studies of health and aging; and the investigation of linkages between social-demographic and biomedical research in population aging. The CDHA is one of fourteen demography centers on aging sponsored by the National Institute on Aging. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20524 Gerontology and Geriatric Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aging", "evaluation research (social action programs)", "health", "middle age", "population aging"] [{"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wisconsin.edu/", "institutionIdentifier": ["ROR:03ydkyb10", "RRID:SCR_011678"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Coldroom Data Protection Plan (restricted use data sets)", "policyURL": "https://www.disc.wisc.edu/restricted/DataProtectionPlan20100322.pdf"}, {"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/"}, {"policyName": "Terms of use BADGIR (public use data sets)", "policyURL": "https://www.ssc.wisc.edu/cdha/services/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nesstar.ssc.wisc.edu/webview/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.disc.wisc.edu/restricted/DataProtectionPlan20100322.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ssc.wisc.edu/cdha/services/terms.html"}] restricted [] ["Nesstar"] yes {"api": "http://www.nesstar.com/software/rest_api.html", "apiType": "REST"} ["none"] https://www.ssc.wisc.edu/cdha/services/terms.html [] yes yes [] [] {} Six major projects associated with CDHA are the Wisconsin Longitudinal Survey (WLS), the Mexican Health and Aging Study (MHAS), the National Survey of Families and Households (NSFH), the Puerto Rican Elderly Health Conditions (PREHCO), Health, Wellbeing and Aging in Latin America and the Caribbean (SABE), and Wisconsin Assets and Income Studies (WAIS). CDHA also provides support for new faculty development and for faculty, staff, and research assistants engaged in innovative pilot projects that are likely to lead to major NIA support. In addition, CDHA supports Latin American Mortality Database (LAMBdA). 2014-08-05 2021-08-12 +r3d100010899 Measurements Of Pollution In The Troposphere eng [{"additionalName": "MOPITT", "additionalNameLanguage": "eng"}] https://eosweb.larc.nasa.gov/project/mopitt/mopitt_table [] ["support@earthdata.nasa.gov"] Measurements Of Pollution In The Troposphere (MOPITT) was launched into sun-synchronous polar orbit on December 18, 1999, aboard TERRA, a NASA satellite orbiting 705 km above the Earth. MOPITT monitors changes in pollution patterns and the effects on Earth’s troposphere. MOPITT uses near-infrared radiation at 2.3 µm and thermal-infrared radiation at 4.7 µm to calculate atmospheric profiles of CO. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["TERRA satellite", "carbon monoxide", "environmental sciences", "pollution", "troposphere"] [{"institutionName": "Canadian Space Agency", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.asc-csa.gc.ca/eng/satellites/mopitt.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Atmospheric Science Data Center", "institutionAdditionalName": ["NASA ASDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, National Center for Atmospheric Research", "institutionAdditionalName": ["MOPPIT USA", "UCAR NCAR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.acd.ucar.edu/mopitt", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Toronto", "institutionAdditionalName": ["MOPITT Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.atmosp.physics.utoronto.ca/MOPITT/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Project Guide", "policyURL": "https://eosweb.larc.nasa.gov/sites/default/files/project/mopitt/guide/mopitt_project.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}] closed [] [] yes {"api": "ftp://l5eil01.larc.nasa.gov/MOPITT/", "apiType": "FTP"} ["DOI"] https://eosweb.larc.nasa.gov/citing-asdc-data [] unknown yes [] [] {} MOPITT was provided to NASA by the Canadian Space Agency (CSA). The University of Toronto directed its development. Data reduction software was developed, and the data processed, at the National Center for Atmospheric Research (NCAR) with NASA support. Data Access to Moppitt Data via ASDC Data Pool https://eosweb.larc.nasa.gov/HPDOCS/datapool/ or Reverb http://reverb.echo.nasa.gov/reverb/ or MOPPITT Search and Subset Tool https://subset.larc.nasa.gov/mopitt. 2014-08-05 2021-10-06 +r3d100010900 IRMA Portal eng [{"additionalName": "Integrated Resource Management Applications Portal", "additionalNameLanguage": "eng"}] https://irma.nps.gov/Portal [] ["https://irma.nps.gov/content/Contact/", "irma@nps.gov"] IRMA (Integrated Resource Management Applications) provides natural and cultural resources data from the National Park Service. Most entries are in the form of peer-reviewed publications, but some are raw data sets based on in-park research projects. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://science.nature.nps.gov/im/inventory/FactSheets/NPSpecies%20brief%20-%20general.pdf [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["air quality", "biology", "climatology", "culture", "environmental sciences", "geographic information systems", "geospatial data", "water"] [{"institutionName": "U.S. Department of the Interior, National Park Service", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nps.gov/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nps.gov/aboutus/contactus.htm"]}] [{"policyName": "Policies and Notices", "policyURL": "http://www.nps.gov/aboutus/website-policies.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nps.gov/aboutus/disclaimer.htm"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nps.gov/aboutus/disclaimer.htm"}] closed [] ["unknown"] yes {"api": "https://mapservices.nps.gov/arcgis/rest/services/", "apiType": "REST"} ["none"] https://irma.nps.gov/content/index.aspx [] unknown unknown [] [] {} 2014-08-06 2018-11-27 +r3d100010901 HUGO Gene Nomenclature Committee eng [{"additionalName": "HGNC", "additionalNameLanguage": "eng"}] https://www.genenames.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.29we0s", "OMICS_06180", "RRID:SCR_002827", "RRID:nif-0000-02955"] ["hgnc@genenames.org", "https://www.genenames.org/"] The HUGO Gene Nomenclature Committee (HGNC) assigned unique gene symbols and names to over 35,000 human loci, of which around 19,000 are protein coding. This curated online repository of HGNC-approved gene nomenclature and associated resources includes links to genomic, proteomic and phenotypic information, as well as dedicated gene family pages. eng ["disciplinary"] {"size": "44.082 symbols", "updatedp": "2018-11-27"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.genenames.org/about/overview [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "gene family", "genetics", "human genes", "phenotype"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Human Genome Organisation", "institutionAdditionalName": ["HUGO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "Guidelines for Human Gene Nomenclature", "policyURL": "https://www.genenames.org/about/guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.genenames.org/about/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.genenames.org/about/"}] restricted [] [] {"api": "https://www.genenames.org/help/rest/", "apiType": "REST"} ["none"] [] yes yes [] [] {} 2014-08-06 2019-04-09 +r3d100010902 Australian National Corpus eng [{"additionalName": "AusNC", "additionalNameLanguage": "eng"}] https://researchdata.edu.au/australian-national-corpus/2018 [] ["https://researchdata.edu.au/australian-national-corpus/2018"] The Australian National Corpus collates and provides access to assorted examples of Australian English text, transcriptions, audio and audio-visual materials. Text analysis tools are embedded in the interface allowing analysis and downloads in *.CSV format. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["La Trobe Corpus of Spoken Australian English (LTCSAusE)", "Monash Corpus of English MCE", "australian english language", "linguistic analysis", "linguistics", "terms and phrases"] [{"institutionName": "Australian Government", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://australia.gov.au/", "institutionIdentifier": ["ROR:0314h5y94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data sharing considerations for Human Research Ethics Committees", "policyURL": "https://www.ands.org.au/guides/Data-sharing-considerations-for-HRECs"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://researchdata.edu.au/page/disclaimer"}] restricted [{"dataUploadLicenseName": "Australian National Corpus Contributor Licence Agreement", "dataUploadLicenseURL": "https://www.ausnc.org.au/about-1/AusNCContributLicenceAgmt_ReadOnly.doc"}] ["unknown"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-08-06 2021-02-24 +r3d100010903 Institute of Museum and Library Services Data Collection eng [{"additionalName": "IMLS", "additionalNameLanguage": "eng"}] https://www.imls.gov/research-tools/data-collection [] ["https://www.imls.gov/contact/contact-us"] The IMLS conducts annual surveys of public and state libraries in the US that have response rates near 100%. Data is compiled for states, library systems, and individual library branches and includes statistics for circulation, visits, staff, expenditures, and more. Data is available in two formats: MS Access and flat file, plain text. Data for museums is now included. eng ["disciplinary", "other"] {"size": "90 datasets", "updatedp": "2018-11-27"} 1996 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://www.imls.gov/about/mission [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["data collections", "museums", "public libraries", "public libraries - administration", "public services (libraries)"] [{"institutionName": "Institute of Museum and Library Services", "institutionAdditionalName": ["IMLS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.imls.gov/", "institutionIdentifier": ["RRID:SCR_011316", "RRID:nlx_157265"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imls.gov/about-us/contact-us"]}] [{"policyName": "Guidelines for Information Dissemination", "policyURL": "https://www.imls.gov/about-us/policy-notices/guidelines-information-dissemination"}, {"policyName": "Privacy and Terms of Use", "policyURL": "https://www.imls.gov/about-us/policy-notices/privacy-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.imls.gov/about-us/policy-notices/privacy-terms-use"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.imls.gov/about-us/policy-notices/privacy-terms-use"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://www.imls.gov/rss.xml", "syndicationType": "RSS"} 2014-08-06 2018-11-27 +r3d100010904 Informatics Research Data Repository eng [{"additionalName": "IDR", "additionalNameLanguage": "eng"}] https://www.nii.ac.jp/dsc/idr/en/index.html [] ["https://www.nii.ac.jp/dsc/idr/en/contact.html", "idr@nii.ac.jp"] The Informatics Research Data Repository is a Japanese data repository that collects data on disciplines within informatics. Such sub-categories are things like consumerism and information diffusion. The primary data within these data sets is from experiments run by IDR on how one group is linked to another. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["consumer behavior - data processing", "corpora", "information display systems", "information science", "research institutes - archival resources"] [{"institutionName": "Inter-University Research Institutes Corporation, Research Organization of Information Systems", "institutionAdditionalName": ["ROIS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rois.ac.jp/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rois.ac.jp/en/about/contact.html"]}, {"institutionName": "National Institute of Informatics", "institutionAdditionalName": ["NII"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nii.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nii.ac.jp/en/about/contact/"]}, {"institutionName": "National Institute of Informatics , Center for Dataset Sharing and Collaborative Research", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nii.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nii.ac.jp/en/about/contact/"]}] [{"policyName": "NII/IDR Terms of Use", "policyURL": "http://research.nii.ac.jp/ntcir/permission/dataset-kitei-e.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://research.nii.ac.jp/ntcir/permission/dataset-kitei-e.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nii.ac.jp/cscenter/idr/en/yahoo/chiebkr2/Y_chiebkr_apply.html"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} 2014-08-07 2021-07-12 +r3d100010905 NCBI Trace Archive eng [] https://www.ncbi.nlm.nih.gov/Traces/trace.cgi ["FAIRsharing_doi:10.25504/FAIRsharing.abwvhp", "OMICS_05337", "RRID:SCR_013788"] ["https://www.ncbi.nlm.nih.gov/Traces/trace.cgi"] The NCBI Trace Archive is a permanent repository of DNA sequence chromatograms (traces), base calls, and quality estimates for single-pass reads from various large-scale sequencing projects. The Trace Archive serves as the repository of sequencing data from gel/capillary platforms such as Applied Biosystems ABI 3730®. The Sequence Read Archive (SRA) stores sequencing data from the next generation of sequencing platforms including Roche 454 GS System®, Illumina Genome Analyzer®, Applied Biosystems SOLiD® System, Helicos Heliscope®, and others. The Trace Assembly Archive stores pairwise alignment and multiple alignment of sequencing reads, linking basic trace data with finished genomic sequence. eng ["disciplinary", "institutional"] {"size": "2.184.850.4367 traces", "updatedp": "2018-11-27"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_goals [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "bacteria", "biological systems", "biology", "eukaryota", "genomes", "genomics", "nucleotide sequence", "viruses"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}, {"policyName": "Trace Archive RFC", "policyURL": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_rfc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nii.ac.jp/dsc/idr/en/index.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nih.gov/web-policies-notices"}] open [{"dataUploadLicenseName": "submission information", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/Traces/trace.cgi?view=doc_submitting_tips"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/pub/TraceDB/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} 2014-05-12 2019-01-17 +r3d100010906 NASC eng [{"additionalName": "Nottingham Arabidopsis Stock Centre", "additionalNameLanguage": "eng"}, {"additionalName": "The European Arabidopsis Stock Centre", "additionalNameLanguage": "eng"}] http://arabidopsis.info/ ["FAIRsharing_doi:10.25504/FAIRsharing.2sqcxs", "OMICS_28815", "RRID:SCR_004576", "RRID:nlx_56885"] ["http://arabidopsis.info/InfoPages?template=address;web_section=arabidopsis", "sean@arabidopsis.info"] The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to Europe researchers. eng ["disciplinary"] {"size": "785.312 datasets; thousands of Affymetrix GeneChip datasets", "updatedp": "2018-11-27"} 1991 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "40304 Biological Process Engineering", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "40605 Biomaterials", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://arabidopsis.info/InfoPages?template=about_nasc;web_section=arabidopsis [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture and energy", "arabidopsis thaliana", "bioinformatics", "gene expression", "seed crops - biotechnology", "seed projects", "seeds"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bbsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nottingham Arabidopsis Stock Centre", "institutionAdditionalName": ["NASC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://arabidopsis.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Nottingham", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nottingham.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Nottingham, School of Biosciences, Plant and Crop Sciences Division", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nottingham.ac.uk/biosciences/subject-areas/plantcrop/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["plantandcrop-enquiries@nottingham.ac.uk"]}] [{"policyName": "Data Protection Policy", "policyURL": "https://www.nottingham.ac.uk/governance/records-and-information-management/data-protection/data-protection-policy.aspx"}, {"policyName": "Material Transfer Agreement - MTA", "policyURL": "http://arabidopsis.info/InfoPages?template=mta;web_section=germplasm"}, {"policyName": "Terms of Use", "policyURL": "https://www.nottingham.ac.uk/utilities/terms.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nottingham.ac.uk/utilities/copyright.aspx"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nottingham.ac.uk/biosciences/subject-areas/plantcrop/documents/newsletters/june-newsletter-2014.pdf"}] closed [] [] {"api": "ftp://uiftparabid.nottingham.ac.uk/NASCarrays/By_Experiment_ID/", "apiType": "FTP"} ["none"] http://arabidopsis.info/InfoPages?template=orderfaq;web_section=germplasm#10 [] unknown unknown [] [] {} NASC's activities are coordinated with those of the Arabidopsis Biological Resource Center, (ABRC) based at Ohio State University, USA. This facilitates a unified and efficient service for the research community. The stock centres have a distribution agreement. NASC distributes to Europe and ABRC distributes to North America. Laboratories in other locations may establish their primary affiliation with either centre. All plant affymetrix data in NASCArrays has gone to GEO where it should be accessible to all for the foreseeable future. CEL files from NASCArrays are also available at the Iplant cloud Data Store and are accessible using the DAVIS web interface https://data.iplantcollaborative.org/. From here, the data can be accessed by all Iplant technologies. 2014-08-07 2021-07-12 +r3d100010907 B.C. Conservation Data Centre eng [{"additionalName": "CDC", "additionalNameLanguage": "eng"}] https://www2.gov.bc.ca/gov/content/environment/plants-animals-ecosystems/conservation-data-centre [] ["cdcdata@gov.bc.ca", "https://www2.gov.bc.ca/StaticWebResources/static/gov3/html/contact-us.html"] The British Columbia Conservation Data Centre (CDC) collects and disseminates information on plants, animals and ecosystems at risk in British Columbia. The " BC Species and Ecosystems Explorer" is a source for authoritative conservation information on approximately 7400 plants and animals, and over 600 ecological communities (ecosystems)in British Columbia. Information includes conservation status, legal designation, and ecosection values for ecological communities. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["animals", "biodiversity", "biotic communities", "conservation of natural resources", "ecology", "ecosystem management", "endangered species", "environment", "plants"] [{"institutionName": "Government of British Columbia, Ministry of Environment, Ecosystems Branch", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/environment/plants-animals-ecosystems", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.gov.bc.ca/StaticWebResources/static/gov3/html/contact-us.html"]}, {"institutionName": "NatureServe", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.natureserve.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NatureServe Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.natureserve-canada.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NatureServe Core Methodology", "policyURL": "http://www.natureserve.org/conservation-tools/standards-methods/natureserve-core-methodology"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.natureserve.org/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.natureserve.org/terms-and-conditions"}] open [{"dataUploadLicenseName": "Submit data", "dataUploadLicenseURL": "https://www2.gov.bc.ca/gov/content/environment/plants-animals-ecosystems/conservation-data-centre/submit-data"}] ["unknown"] {} ["none"] https://www2.gov.bc.ca/gov/content/environment/plants-animals-ecosystems/conservation-data-centre/cite-cdc-data [] unknown unknown [] [] {} The CDC is part of the Environmental Protection and Sustainability Division in the B.C. Ministry of Environment. It is also part of NatureServe Canada, a national organisation, and NatureServe, an international organisation of cooperating Conservation Data Centres and Natural Heritage Programs all using the same methodology to gather and exchange information on the threatened elements of biodiversity. 2014-08-11 2018-11-27 +r3d100010908 Atlantic Canada Conservation Data Centre eng [{"additionalName": "ACCDC", "additionalNameLanguage": "eng"}] http://www.accdc.com/ ["RRID:SCR_006061", "RRID:nlx_152014", "biodbcore-001488"] ["http://accdc.com/en/contact-us.html"] The Atlantic Canada Conservation Data Centre (ACCDC) maintains comprehensive lists of plant and animal species. The Atlantic CDC has geo-located records of species occurrences and records of extremely rare to uncommon species in the Atlantic region, including New Brunswick, Nova Scotia, Prince Edward Island, Newfoundland, and Labrador. The Atlantic CDC also maintains biological and other types of data in a variety of linked databases. eng ["disciplinary", "other"] {"size": "almost 2 million geo-located records of species occurrences, approximately 20% of which represent species of conservation concern", "updatedp": "2021-09-03"} 1997 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.accdc.com/en/about-us.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "biotic communities", "botany", "conservation of natural resources", "ecology", "forests and forestry", "geomapping", "landscape ecology", "plants", "zoology"] [{"institutionName": "Canadian Wildlife Service", "institutionAdditionalName": ["Service Canadien de la Faune"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change/services/avoiding-harm-migratory-birds/canadian-wildlife-service-contact-information.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.priseaccessoire-incidentaltake.ec@canada.ca", "https://www.canada.ca/en/environment-climate-change/services/avoiding-harm-migratory-birds/canadian-wildlife-service-contact-information.html"]}, {"institutionName": "Government of Canada, Natural Resources, Canadian Forest Service, Atlantic Forestry Centre", "institutionAdditionalName": ["AFC", "Gouvernement du Canada, For\u00eats, Centre de foresterie de l'atlantique"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/forests/research-centres/afc/13447", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of Newfoundland Labrador", "institutionAdditionalName": ["Gouvernement Terre-Neuve et Labrador"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.nl.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of Prince Edward Island", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.princeedwardisland.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mount Allison University, Atlantic Canada Conservation Data Centre", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.accdc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://accdc.com/en/contact-us.html"]}, {"institutionName": "Nature Conservancy of Canada", "institutionAdditionalName": ["CNC", "Conservation de la Nature Canada(formerly)", "Conservation de la nature Canada", "NCC", "Nature Conservancy Canada (formerly)"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.natureconservancy.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "New Brunswick Canada, Energy and Resource Development", "institutionAdditionalName": ["Nouveau Brunswick Canada, D\u00e9veloppement de l\u2019\u00e9nergie et des ressources"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www2.gnb.ca/content/gnb/en/departments/erd.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nova Scotia Canada, Department of Natural Resources", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://novascotia.ca/natr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Parks Canada", "institutionAdditionalName": ["Parcs Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.pc.gc.ca/en/index", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data usage restrictions", "policyURL": "http://accdc.com/en/fee_usage.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://accdc.com/en/fee_usage.html"}] restricted [{"dataUploadLicenseName": "Contributing data", "dataUploadLicenseURL": "http://accdc.com/en/contribute.html"}] [] yes {} ["none"] http://accdc.com/en/fee_usage.html [] unknown yes [] [] {} 2014-08-11 2021-11-16 +r3d100010909 Canadian Biodiversity Information Facility eng [{"additionalName": "CBIF", "additionalNameLanguage": "eng"}, {"additionalName": "SCIB", "additionalNameLanguage": "fra"}, {"additionalName": "Syst\u00e8me canadien d'information sur la biodiversit\u00e9", "additionalNameLanguage": "fra"}] http://www.cbif.gc.ca/eng/home/?id=1370403266262 ["biodbcore-001664"] ["aafc.cbif-scib.aac@canada.ca", "cbif-scib@agr.gc.ca"] The CBIF provides primary data on biological species of interest to Canadians. CBIF supports a wide range of social and economic decisions including efforts to conserve our biodiversity in healthy ecosystems, use our biological resources in sustainable ways, and monitor and control pests and diseases. Tools provided by the CBIF include the Integrated Taxonomic Information System (ITIS), Species Access Network, Online Mapping, and the SpeciesBank, including Butterflies of Canada. The CBIF is a member of the Global Biodiversity Information Facility (GBIF). eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2001 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.cbif.gc.ca/eng/about-us/?id=1370403265038 [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "biology", "conservation biology", "ecosystem health", "environmental sciences", "fisheries", "natural resources", "ocean", "sustainability"] [{"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ITIS", "institutionAdditionalName": ["Integrated Taxonomic Information System"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.itis.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use of Data", "policyURL": "http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258#copyright"}] restricted [] [] yes {} ["none"] http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258#disclaim [] yes yes [] [] {} CBIF uses TWG Standards, defined by the Taxonomc Work Group of ITIS 2014-08-11 2021-11-17 +r3d100010910 PDBj eng [{"additionalName": "Protein Data Bank Japan", "additionalNameLanguage": "eng"}] https://pdbj.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.rs2815", "OMICS_07430", "RRID:SCR_008912", "RRID:nlx_151484"] ["https://pdbj.org/contact?tab=PDBjmaster"] PDBj (Protein Data Bank Japan) provides a centralized PDB archive of macromolecular structures, integrated tools for data retrieval, visualization, and functional characterization. PDBj is supported by JST-NBDC and Osaka University. eng ["disciplinary", "institutional"] {"size": "146.502 entries", "updatedp": "2018-11-21"} 2013 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.wwpdb.org/about/faq [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "biology", "molecular biology", "proteins", "proteomics"] [{"institutionName": "Japan Science and Technology Agency, National Bisocience Database Center", "institutionAdditionalName": ["JST NBDC"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biosciencedbc.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Osaka University, Institute of Protein Research", "institutionAdditionalName": ["IPR"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.protein.osaka-u.ac.jp/index_e.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Worldwide Protein Data Bank", "institutionAdditionalName": ["wwPDB"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.wwpdb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage Policies", "policyURL": "http://www.rcsb.org/pdb/static.do?p=general_information/about_pdb/policies_references.html"}, {"policyName": "wwPDB Agreement", "policyURL": "http://www.wwpdb.org/about/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://pdbj.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.wwpdb.org/about/agreement"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.pdbj.org/", "apiType": "FTP"} ["ARK"] ["ORCID"] yes yes [] [] {"syndication": "https://pdbj.org/rest/blogPostsHandler/requestSummariesForCategory?CID=2&cdateSort=1&rss=1&lang=en", "syndicationType": "RSS"} is covered by Elsevier. PDBj is member of wwPDB (Worldwide Protein Data Bank)http://www.wwpdb.org/ 2014-08-12 2021-09-03 +r3d100010912 Fishbase eng [] https://www.fishbase.org/home.htm ["OMICS_14884", "RRID:SCR_004376", "RRID:nlx_39009"] ["fishbase@fin.ph"] Fishbase is a global species database and encyclopedia of over 30,000 species and subspecies of fishes that is searchable by common name, genus, species, geography, family, ecosystem, references literature, tools, etc. Links to other, related databases such as the Catalog of Fishes, GenBack, and LarvalBase. Associated with a partner journal, Acta Ichthyologica et Piscatoria. With mirror sites in English, German, French Spanish, Portuguese, French, Swedish, Chinese and Arabian language. eng ["disciplinary"] {"size": "34.000 species; 323.200 common names; 58.900 pictures; 55.300 References references; 2.310 collaborators", "updatedp": "2018-11-27"} 1988 ["ara", "ben", "deu", "ell", "eng", "fas", "fra", "guj", "hin", "ind", "ita", "jpn", "kan", "lao", "mal", "mar", "nld", "por", "rus", "spa", "swe", "tam", "tel", "tha", "vie", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.fishbase.org/home.htm [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["fishes", "ichthyology"] [{"institutionName": "Aristotle University of Thessaloniki", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.auth.gr/en", "institutionIdentifier": ["ROR:02j61yw88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Chinese Academy of Fishery Sciences", "institutionAdditionalName": ["CAFS"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://english.cafs.ac.cn/", "institutionIdentifier": ["ROR:02bwk9n38"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/index_en", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "FishBase Information and Research Group, Incorporated", "institutionAdditionalName": [], "institutionCountry": "PHL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://fin.ph/", "institutionIdentifier": ["ROR:005f16662"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://fin.ph/contact-us/"]}, {"institutionName": "GEOMAR", "institutionAdditionalName": ["GEOMAR Helmholtz Centre for Ocean Research", "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/en/", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mus\u00e9um National d'histoire Naturelle", "institutionAdditionalName": ["MNHN", "National Museum of Natural History"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mnhn.fr/", "institutionIdentifier": ["ROR:03wkt5x30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Museum for Central Africa", "institutionAdditionalName": ["Koninklijk Museum Voor Midden-Afrika", "Mus\u00e9e royal de l'Afrique centrale"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.africamuseum.be/en", "institutionIdentifier": ["ROR:001805t51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swedish Museum of Natural History", "institutionAdditionalName": ["Naturhistoriska riskmuseet"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrm.se/en/16.html", "institutionIdentifier": ["ROR:05k323c76"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United Nations, Food and Agriculture Organization, Fisheries and Aquaculture Department", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fao.org/fishery/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia, Fisheries Centre", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://oceans.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "WorldFish Center", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.worldfishcenter.org/", "institutionIdentifier": ["ROR:04bd4pk40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and copyrights", "policyURL": "https://www.fishbase.org/manual/english/FishBaseDisclaimer_and_Copyright.htm"}, {"policyName": "Tips to make best use of FishBase", "policyURL": "https://www.fishbase.org/Hints.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.fishbase.org/manual/english/FishBaseDisclaimer_and_Copyright.htm"}] restricted [] ["MySQL"] yes {"api": "https://fishbase.ropensci.org/", "apiType": "REST"} ["none"] https://www.fishbase.de/summary/citation.php [] yes unknown [] [] {} 2014-08-13 2020-08-26 +r3d100010913 Store.Synchrotron Data Store eng [{"additionalName": "TARDIS", "additionalNameLanguage": "eng"}, {"additionalName": "The Australian Repositories for Diffraction ImageS", "additionalNameLanguage": "eng"}, {"additionalName": "myTARDIS Diffraction Image Repository", "additionalNameLanguage": "eng"}] https://store.synchrotron.org.au/ [] ["ulrich.felzmann@synchrotron.org.au"] Store.Synchrotron is a fully functional, cloud computing based solution to raw X-ray data archival and dissemination at the Australian Synchrotron, largest stand-alone piece of scientific infrastructure in the southern hemisphere. Store.Synchrotron represents the logical extension of a long-standing effort in the macromolecular crystallography community to ensure that satisfactory evidence is provided to support the interpretation of structural experiments. eng ["disciplinary", "institutional"] {"size": "35 public experiments", "updatedp": "2018-11-27"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "310 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://mytardis.readthedocs.org/en/latest/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["crystallography", "molecular biology", "synchrotrons"] [{"institutionName": "Australian Synchrotron", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ansto.gov.au/research/facilities/australian-synchrotron/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Monash University, NeCTAR cloud", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nectar.org.au/research-cloud", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "MyTardis", "policyURL": "https://www.mytardis.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "http://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}] restricted [] ["other"] yes {"api": "http://mytardis.readthedocs.io/en/latest/apps/oaipmh.html", "apiType": "OAI-PMH"} ["PURL"] https://store.synchrotron.org.au/about/ [] yes yes [] [] {} Store.Synchrotron Data Store is covered by Thomson Reuters Data Citation Index. MyTARDIS is a multi-institutional collaborative venture that facilitates the archiving and sharing of data and metadata collected at major facilities such as the Australian Synchrotron and ANSTO and within Institutions. 2014-08-15 2021-08-24 +r3d100010914 Australian Ocean Data Network Portal eng [{"additionalName": "AODN", "additionalNameLanguage": "eng"}, {"additionalName": "Open access to ocean data", "additionalNameLanguage": "eng"}] https://portal.aodn.org.au ["FAIRsharing_doi:10.25504/FAIRsharing.j5eden", "OMICS_14335"] ["info@aodn.org.au"] Australian Ocean Data Network (AODN) provides data collected by the Australian marine community. AODN's data is searchable via map interface and metadata catalogue. AODN is Australia's exhaustive repository for marine and climate data. AODN has merged with IMOS eMarine Information Infrastructure (eMII) Facility in May 2016. IMOS is a multi-institutional collaboration with a focus on open data access. It is ideally placed to manage the AODN on behalf of the Australian marine and climate community. eng ["disciplinary", "institutional", "other"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.imos.org.au/facilities/aodn/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["australia", "climatology", "marine sciences", "ocean maps"] [{"institutionName": "Australian Government, Australian Institute of Marine Science", "institutionAdditionalName": ["AIMS"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aims.gov.au/", "institutionIdentifier": ["ROR:03x57gn41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aims.gov.au/docs/about/contacts.html"]}, {"institutionName": "Australian Government, Bureau of Meteorology", "institutionAdditionalName": ["BOM"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bom.gov.au/", "institutionIdentifier": ["ROR:04dkp1p98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bom.gov.au/inside/contacts.shtml?ref=hdr"]}, {"institutionName": "Australian Government, Department of Education and Training, National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.dese.gov.au/ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncris@education.gov.au"]}, {"institutionName": "Australian Government, Department of the Environment, Australian Antarctic Division", "institutionAdditionalName": ["AAD"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.antarctica.gov.au/", "institutionIdentifier": ["ROR:05e89k615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.antarctica.gov.au/about-us/contact/"]}, {"institutionName": "Australian Government, Geoscience Australia", "institutionAdditionalName": ["GA"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ga.gov.au/", "institutionIdentifier": ["ROR:04ge02x20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ga.gov.au/contact-us"]}, {"institutionName": "Commonwealth Science and Industrial Research Organisation, Oceans and Atmosphere", "institutionAdditionalName": ["CSIRO", "O&A"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/en/Research/OandA", "institutionIdentifier": ["ROR:026nh4520"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.csiro.au/en/contact"]}, {"institutionName": "Integrated Marine Observing System", "institutionAdditionalName": ["IMOS"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://imos.org.au/", "institutionIdentifier": ["ROR:010x3gp67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://imos.org.au/contact-us"]}, {"institutionName": "Royal Australian Navy", "institutionAdditionalName": ["RAN"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.navy.gov.au/node", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.navy.gov.au/contact-us"]}, {"institutionName": "University of Tasmania", "institutionAdditionalName": ["UTAS"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utas.edu.au/", "institutionIdentifier": ["ROR:01nfmeh72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utas.edu.au/about/contact"]}] [{"policyName": "AODN Data Policy", "policyURL": "https://imos.org.au/fileadmin/user_upload/shared/IMOS_General/documents/internal/IMOS_Policy_documents/4.3_AODN_data_policy_May16_Final.pdf"}, {"policyName": "Conditions of use", "policyURL": "https://imos.org.au/facilities/aodn/aodn-data-management/aodn-conditions-of-use/"}, {"policyName": "Data Use Acknowledgement", "policyURL": "https://imos.org.au/facilities/aodn/aodn-data-management/aodn-data-licencing0"}, {"policyName": "IMOS Data Policy", "policyURL": "https://imos.org.au/imos-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "AODN Data Submission Tool", "dataUploadLicenseURL": "https://imos.org.au/facilities/aodn/aodn-submit-data/"}] ["other"] {"api": "https://help.aodn.org.au/using-the-portal/download-data/", "apiType": "NetCDF"} ["DOI"] https://help.aodn.org.au/user-guide-introduction/aodn-portal/data-use-acknowledgement/ [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} IMOS and the repositories of the Commonwealth agencies form the core of the AODN. Increasingly, though, universities and State government offices are offering up data resources to the AODN, and delivery of data to the AODN is being written into significant research programs e.g. National Environmental Science Program (NESP) Marine Biodiversity Hub and the Great Australian Bight research program. The Portal User Guide (https://help.aodn.org.au/contributing-data/) describes how to contribute to the Portal. 2014-08-18 2021-11-10 +r3d100010915 History Data Service eng [{"additionalName": "HDS", "additionalNameLanguage": "eng"}] http://hds.essex.ac.uk/ [] ["help@ukdataservice.ac.uk", "http://hds.essex.ac.uk/history/about/contact.asp"] The History Data Service data collection brings together over 650 separate studies transcribed, scanned or compiled from historical sources. The studies cover a wide range of historical topics, from the seventh century to the twentieth century. Although the primary focus of the collection is on the United Kingdom, it also includes a significant body of cross-national and international data collections. Examples of topics covered include: nineteenth and twentieth century statistics, manuscript census records, state finance data, demographic data, mortality data, community histories, electoral history and economic indicators. eng ["disciplinary"] {"size": "over 650 separate studies", "updatedp": "2017-09-04"} 2008-04-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://hds.essex.ac.uk/history/about/more.asp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["census", "demography", "economics", "elections", "geographic information systems", "local history", "maps", "mortality", "nineteenth century", "ordinances, municipal", "statistics", "twentieth century"] [{"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.esrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.esrc.ac.uk/contact-us.aspx"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "University of Essex, UK Data Archive, UK Data Service", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://https//www.data-archive.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.data-archive.ac.uk/contact"]}] [{"policyName": "Copyright, disclaimer and privacy policy", "policyURL": "http://hds.essex.ac.uk/history/about/copyrightanddisclaimer.asp"}, {"policyName": "Restriction on the use of data", "policyURL": "http://hds.essex.ac.uk/history/about/faq.asp#restrictions"}, {"policyName": "Terms and conditions of access", "policyURL": "https://ukdataservice.ac.uk/get-data/how-to-access/conditions.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data-archive.ac.uk/media/381244/ukda137-enduserlicence.pdf"}] restricted [{"dataUploadLicenseName": "Collections Development Policy", "dataUploadLicenseURL": "https://www.ukdataservice.ac.uk/media/398725/cd227-collectionsdevelopmentpolicy.pdf"}] ["unknown"] {} ["DOI"] https://www.ukdataservice.ac.uk/citethedata [] unknown yes [] [] {} 2014-08-18 2021-07-12 +r3d100010916 British Geological Survey eng [] http://www.bgs.ac.uk/ [] ["enquiries@bgs.ac.uk", "http://www.bgs.ac.uk/contacts/"] The British Geological Survey (BGS), the world’s oldest national geological survey, has over 400 datasets including environmental monitoring data, digital databases, physical collections (borehole core, rocks, minerals and fossils), records and archives. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.bgs.ac.uk/about/whatWeDo.html [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["borehole mining", "earth sciences", "ecology", "fossils", "geological mapping", "geological surveys", "geology", "geophysics", "groundwater", "minerals", "natural disasters", "physical sciences", "rocks", "soil chemistry"] [{"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "BGS Intellectual Property", "policyURL": "http://www.bgs.ac.uk/about/copyright/terms_of_use.html"}, {"policyName": "BGS copyright", "policyURL": "http://www.bgs.ac.uk/about/copyright/arrangement.html"}, {"policyName": "Terms of use", "policyURL": "http://www.bgs.ac.uk/help/terms_of_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bgs.ac.uk/about/copyright/arrangement.html"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.bgs.ac.uk/about/copyright/arrangement.html"}] closed [] ["unknown"] {} ["none"] http://www.bgs.ac.uk/help/terms_of_use.html [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.bgs.ac.uk/news/rss.html", "syndicationType": "RSS"} 2014-08-20 2021-07-12 +r3d100010917 Geoscience Australia eng [] http://www.ga.gov.au/ ["biodbcore-001673"] ["clientservices@ga.gov.au", "media@ga.gov.au"] Geoscience Australia provides geosciences data on Australia's onshore and offshore natural resources discovery, sustainable energy opportunities, and potential impacts on population, economy and environment. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ga.gov.au/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerial photographs", "boundaries", "coastal mapping", "geodesy", "geographic information systems", "geology", "geophysical surveys", "greenhouse gas mitigation", "groundwater", "minerals", "natural resources", "physical geography", "remote-sensing images", "topographic maps"] [{"institutionName": "Australian federal government, Geoscience Australia", "institutionAdditionalName": ["Geoscience Australia"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ga.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ga.gov.au/contact-us"]}, {"institutionName": "Department of Industry", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.industry.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "2013-09-18", "responsibilityEndDate": "", "institutionContact": ["ttps://www.industry.gov.au/about-us/contact-us"]}] [{"policyName": "Copyright", "policyURL": "https://www.industry.gov.au/copyright"}, {"policyName": "Creative Commons Attribution 3.0 Australia licence", "policyURL": "https://creativecommons.org/licenses/by/3.0/au/deed.en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] closed [] ["unknown"] {"api": "ftp://ftp.ga.gov.au/geodesy-outgoing/", "apiType": "FTP"} ["DOI"] http://www.ga.gov.au/copyright/how-to-cite-geoscience-australia-source-of-information [] no unknown [] [] {} GeoSciMl data model is a standard to standardise the format and delivery of geological data exchanged via the internet. The GeoSciML data model is based on prior work carried out by North American, European and Australian geological surveys and research organisations 2014-08-25 2021-11-16 +r3d100010918 Atlas of Living Australia eng [{"additionalName": "ALA", "additionalNameLanguage": "eng"}] https://www.ala.org.au/ ["RRID:SCR_006467", "RRID:nlx_152016", "biodbcore-001772"] ["data_management@ala.org.au", "info@ala.org.au", "support@ala.org.au"] The Atlas of Living Australia (ALA) combines and provides scientifically collected data from a wide range of sources such as museums, herbaria, community groups, government departments, individuals and universities. Data records consist of images, literature, molecular DNA data, identification keys, species interaction data, species profile data, nomenclature, source data, conservation indicators, and spatial data. eng ["disciplinary", "institutional", "other"] {"size": "77.674.192 occurrence records; 123.068 species", "updatedp": "2018-11-27"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ala.org.au/who-we-are/#Our_mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "amphibians", "biodiversity", "birds", "conservation of natural resources", "fishes", "images, photographic", "insects", "invertebrates", "mammals", "microorganisms", "plants", "reptiles"] [{"institutionName": "Commonwealth Scientific and Industrial Research Organisation", "institutionAdditionalName": ["CSIRO"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiries@csiro.au"]}, {"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gbif.org/contact-us"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.ala.org.au/who-we-are/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ala.org.au/who-we-are/terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://creativecommons.org.au/learn/licences"}] restricted [{"dataUploadLicenseName": "Data Provider Agreement", "dataUploadLicenseURL": "https://www.ala.org.au/wp-content/uploads/2011/10/ALA-Data-Provider-Agreement-version-17.8.10.pdf"}] ["other"] {"api": "http://api.ala.org.au/#", "apiType": "other"} ["none"] https://www.ala.org.au/how-to-cite-ala/ [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "http://www.ala.org.au/feed/", "syndicationType": "RSS"} Atlas of Living Australia is covered by Clarivate Data Citation Index 2014-08-25 2021-11-17 +r3d100010919 Terrestrial Ecosystem Research Network eng [{"additionalName": "TERN", "additionalNameLanguage": "eng"}] https://tern.org.au [] ["esupport@tern.org.au", "https://www.tern.org.au/contact/"] TERN provides open data, research and management tools, data infrastructure and site-based research equipment. The open access ecosystem data is provided by TERN Data Discovery Portal , see https://www.re3data.org/repository/r3d100012013 eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "fresh water", "ocean", "plants", "vegetation and climate"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["ROR:00hr5y405"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dese.gov.au/ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Partners of TERN", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://tern.org.au/Partners-pg17725.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Queensland, Terrestrial Ecosystem Research Network", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uq.edu.au/departments/unit.html?unit=1068", "institutionIdentifier": ["ROR:00rqy9422"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uq.edu.au/contacts/"]}] [{"policyName": "TERN Data Licensing Policy", "policyURL": "https://tern.org.au/datalicence"}, {"policyName": "Terms of use", "policyURL": "https://portal.tern.org.au/home/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/licensing-considerations/version4/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.tern.org.au/TERN-s-Data-Licences-pg22188.html"}] restricted [{"dataUploadLicenseName": "TERN Submit Data", "dataUploadLicenseURL": "https://portal.tern.org.au/home/submitdata"}] ["unknown"] {} ["DOI"] [] unknown unknown [] [] {} TERN provides access to wide variety of ecosystem data covering multiple disciplines through several “Facility” based data delivery systems. The information http://portal.tern.org.au/home/accessdata explains the delivery status, and how to access discipline specific datasets from each of the TERN Facilities 2014-09-08 2021-11-10 +r3d100010920 OzFlux eng [{"additionalName": "Australian and New Zealand Flux Research and Monitoring", "additionalNameLanguage": "eng"}] https://data.ozflux.org.au/portal/home.jspx [] ["enquiries@csiro.au"] OzFlux provides micro-meteorological measurements from over 500 stations to provide data for atmospheric model testing specific to exchanges of carbon, water vapor and energy between terrestrial ecosystems and the atmosphere. eng ["disciplinary", "institutional"] {"size": "54 collections", "updatedp": "2021-10-14"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ozflux.org.au/index.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["air flow", "air quality", "atmosphere", "atmospheric carbon dioxide", "atmospheric measurement", "atmospheric models", "carbon dioxide", "carbon dioxide - measurement", "climatic changes", "heat flux", "meteorology", "terrestrial heat flow measurement", "water cycles", "water vapor", "weather"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/?", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ands.org.au/contact.html"]}, {"institutionName": "Australian Terrestrial Ecosystem Research Network", "institutionAdditionalName": ["TERN"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.tern.org.au/", "institutionIdentifier": ["ROR:03wxseg04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tern.org.au/Contact-Us-pg17672.html"]}, {"institutionName": "Commonwealth Scientific and Industrial Research Organisation", "institutionAdditionalName": ["CSIRO"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/", "institutionIdentifier": ["ROR:03qn8fb07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiries@csiro.au"]}, {"institutionName": "Monash University, e-reserach Center", "institutionAdditionalName": ["Monash eResearch Centre"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.monash.edu/researchinfrastructure/eresearch", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.monash.edu/researchinfrastructure/eresearch/contact-us"]}] [{"policyName": "Information Technology Acceptable Use Policy", "policyURL": "https://www.monash.edu/__data/assets/pdf_file/0009/1092699/Information-Technology-Acceptable-Use-Policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] {"api": "https://data.ozflux.org.au/portal/site/netcdf.jspx", "apiType": "NetCDF"} ["none"] http://data.ozflux.org.au/portal/pub/viewColDetails.jspx?collection.id=1882707&collection.owner.id=304&viewType=anonymous [] no yes [] [] {} Data are stored on the portal as NetCDF files that conform to the CF Metadata conventio. The OzFlux Data Portal has been migrated to the NeCTAR Cloud. 2014-08-25 2021-10-14 +r3d100010921 BeetleBase eng [] http://beetlebase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.h5f091", "OMICS_03118", "RRID:nif-0000-02599"] ["bioinfo@ksu.edu", "http://beetlebase.org/?q=people"] !!!!! This database doesn't exist anymore. 2017-09-05 !!!!!BeetleBase is a comprehensive sequence database and important community resource for Tribolium genetics, genomics and developmental biology. It provides genetic data on the Tribolium Castaneum, Red Flour Beetle, as gene maps, official gene set, reference sequences, predicted models, and whole-genome tiling array representing developmental stages. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20106 Developmental Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://beetlebase.org/?q=about_us [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["beetles", "developmental biology", "entomology", "genetics", "genomics", "insects"] [{"institutionName": "Kansas State University, Bioinformatics Center", "institutionAdditionalName": ["Bioinformatics Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://bioinformatics.k-state.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.k-state.edu/contact/"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10005049/questions-and-feedback/"]}, {"institutionName": "National Institutes of Health, National Center for Research Resources", "institutionAdditionalName": ["NCRR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/research-training/research-resources", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Agriculture", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}] [{"policyName": "Information Disclaimer", "policyURL": "http://beetlebase.org/?q=about_us"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://bioinformatics.k-state.edu/research.html"}] closed [] ["other"] {"api": "http://beetlebase.org/?q=download_settings", "apiType": "FTP"} ["none"] http://beetlebase.org/?q=about_us [] no yes [] [] {"syndication": "http://beetlebase.org/?q=rss.xml", "syndicationType": "RSS"} 2014-08-25 2019-01-17 +r3d100010922 MozAtlas eng [] http://mozatlas.gen.cam.ac.uk/mozatlas/ [] [] MozAtlas provides gene expression data of adult male and female mosquitoes as tables, expressions, trees and models. MozAtlas also provides sequence orthology relationships with data provided by FlyBase, Vectorbase, Beetlebase, BeeBase, and WormBase. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://mozatlas.gen.cam.ac.uk/mozatlas/about.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["RNA", "entomology", "gene expression", "gene mapping", "genomes", "mosquitoes"] [{"institutionName": "University of Cambridge, Department of Genetics, Russell Lab", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://flypress.gen.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://flypress.gen.cam.ac.uk/?page_id=15"]}] [{"policyName": "Data Protection Policy", "policyURL": "https://www.information-compliance.admin.cam.ac.uk/files/data_protection_policy_final.pdf"}, {"policyName": "University of Cambridge terms and conditions", "policyURL": "https://www.cam.ac.uk/about-this-site/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.admin.cam.ac.uk/univ/information/foi/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.information-compliance.admin.cam.ac.uk/data-protection"}] closed [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2014-08-25 2018-12-19 +r3d100010923 Australian Breast Cancer Tissue Bank eng [{"additionalName": "ABCTB", "additionalNameLanguage": "eng"}, {"additionalName": "BCTB", "additionalNameLanguage": "eng"}, {"additionalName": "Breast Cancer Tissue Bank", "additionalNameLanguage": "eng"}] https://www.abctb.org.au/abctbNew2/default.aspx ["RRID:SCR_000926", "RRID:nlx_54620"] ["https://www.abctb.org.au/abctbNew2/Feedback.aspx", "jane_carpenter@wmi.usyd.edu.au"] The Australian Breast Cancer Tissue Bank (ABCTB) provides data contributed by an Australian network of cancer clinicians, researchers, and patients. ABCTB privacy protection policy ensures patients' identities are not revealed and cancer researchers are the only individuals with open access to data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.abctb.org.au/abctbNew2/aboutus.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["breast", "cancer", "health", "medicine", "oncology", "tissue bank"] [{"institutionName": "Cancer Institute of NSW", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancerinstitute.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["information@cancerinstitute.org.au"]}, {"institutionName": "National Breast Cancer Foundation", "institutionAdditionalName": ["NBCF"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nbcf.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nbcf.org.au/about-national-breast-cancer-foundation/contact-us/"]}, {"institutionName": "National Health and Medical Research Council", "institutionAdditionalName": ["NHMRC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhmrc.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nhmrc@nhmrc.gov.au"]}, {"institutionName": "Westmead Millennium Institute", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.westmeadinstitute.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.westmeadinstitute.org.au/contact", "wmi.communications@sydney.edu.au"]}] [{"policyName": "Australian Breast Cancer Tissue Bank Access Policy", "policyURL": "https://www.abctb.org.au/abctbNew2/accessPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://abctb.org.au/abctbNew2/accessPolicy.pdf"}] restricted [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2014-08-26 2018-11-27 +r3d100010924 OpenNeuro eng [{"additionalName": "formerly: OpenfMRI", "additionalNameLanguage": "eng"}] https://openneuro.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.s1r9bw", "RRID:SCR_005031", "RRID:nlx_144048"] ["support@openneuro.freshdesk.com"] The OpenNeuro project (formerly known as the OpenfMRI project) was established in 2010 to provide a resource for researchers interested in making their neuroimaging data openly available to the research community. It is managed by Russ Poldrack and Chris Gorgolewski of the Center for Reproducible Neuroscience at Stanford University. The project has been developed with funding from the National Science Foundation, National Institute of Drug Abuse, and the Laura and John Arnold Foundation. eng ["disciplinary"] {"size": "628 public datasets", "updatedp": "2021-12-16"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://openneuro.org/faq [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["behavioral scientists", "biology", "brain", "brain chemistry", "cells", "magnetic resonance imaging", "molecular biology", "stimulants"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University, Poldrack Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://poldracklab.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["poldracklab@stanford.edu"]}, {"institutionName": "University of Texas, Texas Advanced Computing Center", "institutionAdditionalName": ["TACC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tacc.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@tacc.utexas.edu"]}] [{"policyName": "OpenNeuro FAQ", "policyURL": "https://openneuro.org/faq"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://openneuro.org/faq"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://www.opendatacommons.org/licenses/pddl/1.0/"}] restricted [] ["other"] yes {} ["DOI"] https://openneuro.org/faq ["ORCID"] no unknown [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} is covered by Elsevier. OpenNeuro is covered by Clarivate Data Citation Index. OpenNeuro represents the next step beyond the OpenfMRI data sharing platform. The name change is meant to reflect the fact that they are no longer focused exclusively on fMRI — the new platform will accept any imaging dataset that follows the BIDS standard. http://reproducibility.stanford.edu/announcing-the-openneuro-platform-open-and-reproducible-science-as-a-service/ 2014-08-26 2021-12-16 +r3d100010925 BeeBase eng [{"additionalName": "The honey bee model organism database", "additionalNameLanguage": "eng"}] http://hymenopteragenome.org/beebase/ ["OMICS_10641", "RRID:SCR_008966", "RRID:nlx_152034"] ["hymenopterabase@gmail.com"] BeeBase provides gene sequences and genomes of Bombus terrestris, B. impatiens, Apis mellifera and three of its pathogens. BeeBase data is discoverable and analyzed via genome browsers, blast search, and apollo annotation tool. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bee culture", "bee pollen", "bee products", "beehives", "bees", "entomology", "genomics", "honey", "insects", "pollination", "pollination by bees", "pollinators"] [{"institutionName": "Barkman Honey LLC", "institutionAdditionalName": ["Golden Heritage Foods LLC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.barkmanhoney.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["honey@nhb.org"]}, {"institutionName": "Sioux Honey Association", "institutionAdditionalName": ["SHA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://siouxhoney.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jbush@skar.com"]}, {"institutionName": "Texas A & M AgriLife Research", "institutionAdditionalName": ["TAES", "Texas Agricultural Experiment Station"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://agriliferesearch.tamu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://agriliferesearch.tamu.edu/contact/"]}, {"institutionName": "United States Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA ARS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}, {"institutionName": "United States Department of Agriculture, National Research Initiative", "institutionAdditionalName": ["USDA NRI"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usda.gov/wps/portal/usda/usdahome?navid=CONTACT_US"]}, {"institutionName": "University of Missouri, Elsik Laboratory,", "institutionAdditionalName": ["Elsik Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://genomes.missouri.edu/elsiklab/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ce75@georgetown.edu"]}] [{"policyName": "Data Usage Policy", "policyURL": "http://hymenopteragenome.org/?q=data_usage_policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://hymenopteragenome.org/?q=data_usage_policy"}] closed [] ["unknown"] {} ["none"] http://hymenopteragenome.org/?q=how_to_cite [] yes yes [] [] {} Beebase is part of Hymenoptera Genome Database. 2014-08-26 2019-05-15 +r3d100010926 Organelle Genome Megasequencing Program eng [{"additionalName": "OGMP", "additionalNameLanguage": "eng"}, {"additionalName": "Organelle Genomics", "additionalNameLanguage": "eng"}] https://megasun.bch.umontreal.ca/ogmp/ ["OMICS_28737", "RRID:SCR_002137", "RRID:nif-0000-20928"] [] The Organelle Genome Megasequencing Program (OGMP) provides mitochondrial, chloroplast, and mitochondrial plasmid genome data. OGMP tools allow direct comparison of OGMP and NCBI validated records. Includes GOBASE, a taxonomically broad organelle genome database that organizes and integrates diverse data related to mitochondria and chloroplasts. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "biochemistry", "bioinformatics", "biology", "chloroplasts", "evolutionary genetics", "gene expression", "genes", "genetics", "genomes", "genomics", "life sciences", "mitochondria", "molecular biology", "nucleotide sequence", "nucleotides", "plant genetics"] [{"institutionName": "Canadian Institute for advanced research", "institutionAdditionalName": ["CIFAR", "ICRA", "L'institut canadien de recherches avanc\u00e9es"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cifar.ca/", "institutionIdentifier": ["ROR:01sdtdd95"], "responsibilityStartDate": "", "responsibilityEndDate": "2007", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": ["https://cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Oracle", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.oracle.com/ca-en/index.html", "institutionIdentifier": ["ROR:03zvsh960"], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Montr\u00e9al, D\u00e9partement de biochimie et m\u00e9decine mol\u00e9culaire, Robert Cedergren Centre", "institutionAdditionalName": ["UdeM"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.centrerc.umontreal.ca/bienvenuea.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "International Nucleotide Sequence Database Collaboration Policy", "policyURL": "https://www.insdc.org/policy.html"}, {"policyName": "OGMP - Data Acquisition and Analysis", "policyURL": "https://megasun.bch.umontreal.ca/ogmp/analysis.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://secretariatgeneral.umontreal.ca/documents-officiels/reglements-et-politiques/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.insdc.org/policy.html"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [] {} https://megasun.bch.umontreal.ca/ Historically, this site is an initiative of the OGMP and included the Protist Image Database (PID) and MegaGopher. In the following years, two further independent projects have been added complementing the OGMP research activities: GOBASE and FMGP. The more recently added PEP project builds on our expertise gathered in the OGMP, but its research focus is on the nuclear genome (or the expressed portion of it) of eukaryotes. While the grants for the collaborative programs OGMP (CIHR) and PEP (GenomeQuebec/GenomeCanada) have come to their end, organelle genome and EST sequencing in protists is ongoing at a smaller scale in our laboratories. 2014-08-19 2022-01-18 +r3d100010927 Barcode of Life Data Systems eng [{"additionalName": "BOLD Systems", "additionalNameLanguage": "eng"}, {"additionalName": "The Barcode Library", "additionalNameLanguage": "eng"}] https://www.boldsystems.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.en9npn", "OMICS_17578", "RRID:SCR_004278", "RRID:nlx_29236"] ["https://www.boldsystems.org/index.php/Resources/ContactUs", "info@boldsystems.org"] The Barcode of Life Data Systems (BOLD) provides DNA barcode data. BOLD's online workbench supports data validation, annotation, and publication for specimen, distributional, and molecular data. The platform consists of four main modules: a data portal, a database of barcode clusters, an educational portal, and a data collection workbench. BOLD is the go-to site for DNA-based identification. As the central informatics platform for DNA barcoding, BOLD plays a crucial role in assimilating and organizing data gathered by the international barcode research community. Two iBOL (International Barcode of Life) Working Groups are supporting the ongoing development of BOLD. eng ["disciplinary", "institutional"] {"size": "10.315k Barcodes; 760k BINs; 236k Animal Species; 70k Plant Species; 24k Fungi and Other Species", "updatedp": "2022-02-01"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.boldsystems.org/index.php/Resources/whatIsBOLD [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BIN", "Barcode Index Number", "COI", "DNA", "bacteria", "barcoding", "bioinformatics", "biology", "fungi", "gene sequence", "microorganisms", "molecular biology", "plants", "species identification", "taxonomists", "taxonomy"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["Fondation canadienne pour l'innovation", "innovation.ca"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:SCR_011134", "RRID:nlx_144042", "RRID:nlx_144043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.innovation.ca/contact"]}, {"institutionName": "International Barcode of Life", "institutionAdditionalName": ["iBOL"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ibol.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ibol.org/contact/"]}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": ["ROR:01h531d29", "RRID:SCR_013327", "RRID:nlx_39429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/index_eng.asp"]}, {"institutionName": "Ontario Ministry of Economic Development, Job Creation and Trade", "institutionAdditionalName": ["Minist\u00e8re du D\u00e9veloppement \u00e9conomique, de la Cr\u00e9ation d\u2019emplois et du Commerce", "formerly: Ontario Ministry of Research and Innovation", "jadis: Ontario Minist\u00e8re de la Recherche et de l'Innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/ministry-economic-development-job-creation-trade", "institutionIdentifier": ["RRID:SCR_011445", "nlx_158221"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ontario.ca/contact-us"]}] [{"policyName": "data releases", "policyURL": "https://www.boldsystems.org/index.php/datarelease"}, {"policyName": "iBOL Data & Resource Sharing Policies", "policyURL": "https://www.ibol.org/phase1/resources/data-release-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.boldsystems.org/index.php/resources/handbook?chapter=1_gettingstarted.html#searching"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ibol.org/phase1/resources/data-release-policy/"}] restricted [{"dataUploadLicenseName": "submissions to BOLD", "dataUploadLicenseURL": "https://www.boldsystems.org/index.php/resources/handbook?chapter=3_submissions.html"}] ["unknown"] {"api": "https://www.boldsystems.org/index.php/resources/api?type=taxonomy", "apiType": "REST"} ["DOI"] https://www.boldsystems.org/index.php/Resources [] unknown yes [] [] {} Barcode of Life Data Systems is covered by Clarivate Data Citation Index. Partners: iBOL, CBOL, CCDB, GenBank, EOL, GBIF, CBG Other link for this page: http://www.barcodinglife.org/ BOLD is currently maintained and developed at a single location. Mirror sites will strengthen data security and ensure that system upgrades can be accomplished without transient disruption of services. 2014-08-20 2022-02-01 +r3d100010928 British Antarctic Survey eng [{"additionalName": "BAS", "additionalNameLanguage": "eng"}] https://www.bas.ac.uk/data/our-data/ [] ["https://www.bas.ac.uk/about/contact-bas/", "information@bas.ac.uk"] British Antarctic Survey (BAS) has, for over 60 years, undertaken the majority of Britain's scientific research on and around the Antarctic continent. Atmospheric, biosphere, cryosphere, geosphere, hydrosphere, and Sun-Earth interactions metadata and data are available. Geographic information and collections are highlighted as well. Information and mapping services include a Discovery Metadata System, Data Access System, the Antarctic Digital Database (ADD), Geophysics Data Portal (BAS-GDP), ICEMAR, a fossil database, and the Antarctic Plant Database. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bas.ac.uk/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["archaeology", "atmosphere", "biosphere", "cryosphere", "earth sciences", "fossils", "geography", "geological mapping", "geology", "geospatial data", "hydrology", "oceanography", "physical sciences", "plants"] [{"institutionName": "British Antarctic Survey", "institutionAdditionalName": ["BAS"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bas.ac.uk/", "institutionIdentifier": ["ROR:01rhff309"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bas.ac.uk/about/contact-bas/"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "BAS Terms and Conditions", "policyURL": "https://www.bas.ac.uk/about-this-site/terms-and-conditions/"}, {"policyName": "British Antarctic Survey Data Policy", "policyURL": "https://www.bas.ac.uk/data/uk-pdc/data-policy/"}, {"policyName": "NERC Data Policy", "policyURL": "https://nerc.ukri.org/research/sites/environmental-data-service-eds/policy/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bas.ac.uk/about-this-site/copyright-statement/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.bas.ac.uk/science/science-and-society/science-into-policy/"}] restricted [{"dataUploadLicenseName": "Submission of Data", "dataUploadLicenseURL": "https://www.bas.ac.uk/data/uk-pdc/data-deposit/"}] ["unknown"] yes {"api": "ftp://ftp.nerc-bas.ac.uk/pub/", "apiType": "FTP"} ["DOI"] https://www.bas.ac.uk/data/uk-pdc/data-citation-and-publishing/ [] yes unknown [] [] {"syndication": "https://www.bas.ac.uk/rss-2/", "syndicationType": "RSS"} 2014-08-20 2022-02-01 +r3d100010929 Fisheries and Oceans Canada Pacific Region Data Archive eng [{"additionalName": "IOS/OSD data archive", "additionalNameLanguage": "eng"}, {"additionalName": "Le catalogue de donn\u00e9es de l'ISM/DSO", "additionalNameLanguage": "fra"}, {"additionalName": "P\u00eaches et Oc\u00e9ans Canada Region Pacifique Cataloge de donn\u00e9es", "additionalNameLanguage": "fra"}] https://www.pac.dfo-mpo.gc.ca/science/oceans/data-donnees/index-eng.html [] ["Peter.Chandler@dfo-mpo.gc.ca", "https://www.dfo-mpo.gc.ca/contact/regions/index-eng.html"] The Institute of Ocean Sciences (IOS)/Ocean Sciences Division (OSD) data archive contains the holdings of oceanographic data generated by the IOS and other agencies and laboratories, including the Institute of Oceanography at the University of British Columbia and the Pacific Biological Station. The contents include data from B.C. coastal waters and inlets, B.C. continental shelf waters, open ocean North Pacific waters, Beaufort Sea and the Arctic Archipelago. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Arctic Ocean", "Beaufort Sea", "British Columbia", "arctic regions", "lighthouses", "meteorology", "ocean currents", "ocean temperature", "oceanography", "satellites"] [{"institutionName": "Government of Canada, Fisheries and Oceans Canada, Institute of Ocean Sciences", "institutionAdditionalName": ["DFO IOS", "DFO ISM", "Gouvernement du Canada, P\u00eaches et Oc\u00e9ans Canada, Institut des sciences de la mer"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.pac.dfo-mpo.gc.ca/science/facilities-installations/ios-ism/peopleios-gensism-eng.html#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy for Scientific Data", "policyURL": "https://www.dfo-mpo.gc.ca/about-notre-sujet/publications/science/datapolicy-politiquedonnees/index-eng.html"}, {"policyName": "Processes, Policies, and Guidelines", "policyURL": "https://www.dfo-mpo.gc.ca/csas-sccs/process-processus/index-eng.html"}, {"policyName": "Terms and conditions", "policyURL": "https://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}] restricted [{"dataUploadLicenseName": "Policy for Scientific Data", "dataUploadLicenseURL": "https://www.dfo-mpo.gc.ca/about-notre-sujet/publications/science/datapolicy-politiquedonnees/index-eng.html"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2014-08-20 2022-02-02 +r3d100010930 TB Database eng [{"additionalName": "TBDB", "additionalNameLanguage": "eng"}, {"additionalName": "TBDatabase", "additionalNameLanguage": "eng"}, {"additionalName": "Tuberculosis Database", "additionalNameLanguage": "eng"}] https://www.tbdb.org/ ["OMICS_03220", "RRID:SCR_006619", "RRID:nif-0000-03537"] ["https://www.tbdb.org/contact-us/"] The repository is no longer available. >>>!!!<<< 2018-08-29: no more access to TB Database >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.tbdb.org/tbdbPages/projectInfo_tbdb.shtml [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["gene expression", "genes", "genomes", "proteins", "systems biology", "tuberculosis"] [{"institutionName": "BROAD Institute", "institutionAdditionalName": ["Eli and Edythe L. Broad Institute of Harvard and MIT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": ["RRID:SCR_007073", "RRID:nif-0000-31438"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.broadinstitute.org/contact"]}, {"institutionName": "Bill & Melinda Gates foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Boston University", "institutionAdditionalName": ["BU"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.bu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bu.edu/contact/"]}, {"institutionName": "Stanford University School of Medicine", "institutionAdditionalName": ["Stanford Medicine"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://med.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://med.stanford.edu/about/contacts.html"]}] [{"policyName": "Access Policies", "policyURL": "http://www.tbdb.org/tbdbPages/policies.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.tbdb.org/tbdbPages/policies.shtml"}] restricted [{"dataUploadLicenseName": "Access Policies - Private Data", "dataUploadLicenseURL": "http://www.tbdb.org/tbdbPages/policies.shtml"}] [] {} ["none"] http://www.tbdb.org/tbdbPages/about.shtml [] yes yes [] [] {} description: TBDatabase (Tuberculosis Database) provides resources and tools from the Stanford Microarray Database and the Broad Institute consisting of gene expression, genomic, and protein data. Data is browsable by attribute and searchable via BLAST. TBDatabase is a multi-institutional collaboration makes available the tools and resources available at the Stanford Microarray Database and the Broad Institute. In addition, TBDB takes advantage of data produced by Tuberculist, BioHealthBase, and BioCyc. 2014-08-21 2021-07-06 +r3d100010931 The Human Protein Atlas eng [{"additionalName": "HPA", "additionalNameLanguage": "eng"}] https://www.proteinatlas.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.j0t0pe", "MIR:00000336", "OMICS_03913", "RRID:SCR_006710", "RRID:nif-0000-00204"] ["contact@proteinatlas.org", "https://www.proteinatlas.org/about/contact"] The Swedish Human Protein Atlas project has been set up to allow for a systematic exploration of the human proteome using Antibody-Based Proteomics. This is accomplished by combining high-throughput generation of affinity-purified antibodies with protein profiling in a multitude of tissues and cells assembled in tissue microarrays. Confocal microscopy analysis using human cell lines is performed for more detailed protein localization. The program hosts the Human Protein Atlas portal with expression profiles of human proteins in tissues and cells. The main objective of the resource centre is to produce specific antibodies to human target proteins using a high-throughput production method involving the cloning and protein expression of Protein Epitope Signature Tags (PrESTs). After purification, the antibodies are used to study expression profiles in cells and tissues and for functional analysis of the corresponding proteins in a wide range of platforms. eng ["disciplinary"] {"size": "more than 26.900 antibodies targeting proteins from over 17.100 human genes;", "updatedp": "2022-02-02"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.proteinatlas.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["RNA", "antibody", "cancer", "cell biology", "cell lines", "histology", "human", "pathology", "proteomics"] [{"institutionName": "AlbaNova University Center", "institutionAdditionalName": ["AlbaNova universitetscentrum", "Stockholm Center for Physics, Astronomy and Biotechnology", "Stockholms centrum f\u00f6r fysik, astronomi och bioteknik"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.albanova.se/?q=an%2Fhem", "institutionIdentifier": ["ROR:044kkfr75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["reception@albanova.se"]}, {"institutionName": "Knut & Alice Wallenberg Foundation", "institutionAdditionalName": ["KAW", "Knut och Alice Wallenbergs Stiftelse"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://kaw.wallenberg.org/", "institutionIdentifier": ["ROR:004hzzk67", "RRID:SCR_004778", "RRID:nlx_77359"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kaw@kaw.se"]}, {"institutionName": "Royal Institute of Technology", "institutionAdditionalName": ["KTH", "Kungliga Tekniska h\u00f6gskolan"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kth.se/en", "institutionIdentifier": ["ROR:026vcq606", "RRID:SCR_000992", "RRID:nlx_48999"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kth.se/en/om/kontakt"]}, {"institutionName": "SciLifeLab", "institutionAdditionalName": ["Science for Life Laboratory"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scilifelab.se/", "institutionIdentifier": ["ROR:04ev03g22", "RRID:SCR_014078"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scilifelab.se/contact/"]}, {"institutionName": "Uppsala University, Rudbeck Laboratory", "institutionAdditionalName": ["Rudbeck Laboratory", "Rudbecklaboratoriet", "Uppsala Universitet, Rudbecklaboratoriet"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rudbeck.uu.se/?languageId=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["receptionen@rudbeck.uu.se"]}] [{"policyName": "Licence and citation policy", "policyURL": "https://www.proteinatlas.org/about/licence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.proteinatlas.org/about/licence"}] restricted [{"dataUploadLicenseName": "Submission of external antibodies to be included in the Protein Atlas", "dataUploadLicenseURL": "https://www.proteinatlas.org/download/call.pdf"}] [] yes {} ["none"] https://www.proteinatlas.org/about/licence [] yes yes [] [] {} Protein Atlas version 21.0 Release date: 2021.11.18 The file structure is presented in the XSD-schema 2014-08-21 2022-02-02 +r3d100010932 Gene Expression Nervous System Atlas eng [{"additionalName": "GENSAT", "additionalNameLanguage": "eng"}] http://www.gensat.org/index.html ["OMICS_03318", "RRID:SCR_002721", "RRID:nif-0000-00130"] ["http://www.gensat.org/contact.jsp"] The GENSAT project aims to map the expression of genes in the central nervous system of the mouse. It is a collection of pictorial gene expression maps of the brain and spinal cord of the mouse. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.gensat.org/about.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["gene expression", "mice - genetic aspects", "mice - genetics", "nervous system", "neurology", "neurology - data processing"] [{"institutionName": "National Institutes of Health Blueprint", "institutionAdditionalName": ["NIH Blueprint for Neuroscience Research"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://neuroscienceblueprint.nih.gov/resources-tools/blueprint-resources-tools-library/gensat", "institutionIdentifier": ["RRID:SCR_003670", "RRID:nif-0000-00219"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["blueprint@mail.nih.gov"]}, {"institutionName": "National Institutes of Health, National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NIH NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": ["ROR:01s5ya894", "RRID:SCR_013116", "RRID:nlx_inv_1005110"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ninds.nih.gov/Contact-Us"]}, {"institutionName": "Rockefeller University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rockefeller.edu/", "institutionIdentifier": ["ROR:0420db125", "RRID:SCR_011501", "RRID:nlx_83733"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Nathaniel.Heintz@rockefeller.edu"]}] [{"policyName": "Contents", "policyURL": "http://www.gensat.org/about.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.gensat.org/about.jsp"}] closed [] ["other"] yes {} ["none"] http://www.gensat.org/daily_showcase.jsp [] yes yes [] [] {} Distribution of strains requires submission of the MMRRC Conditions of Use (COU). A link to the COU web form will be provided via email after an order has been placed; the form should be completed then or the email forwarded to your institutional official for completion. The donor or their institution limits the distribution to non-profit institutions only. Additional charges may apply for any special requests. Shipping costs are in addition to the basic distribution/resuscitation fees. Information on shipping costs and any additional charges will be provided by the supplying MMRRC facility. 2014-08-22 2022-02-03 +r3d100010933 AIMS Data Catalogue eng [{"additionalName": "formerly: AIMS Data Centre", "additionalNameLanguage": "eng"}] https://www.aims.gov.au/docs/data/data.html ["RRID:SCR_010475", "RRID:nlx_157748"] ["https://www.aims.gov.au/docs/about/contacts.html", "web@aims.gov.au"] The Australian Institute of Marine Science (AIMS) is a tropical marine research center. Data are available on topics including reef weather, sea temperature, cyclones, and water quality. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.aims.gov.au/docs/about/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["marine sciences", "reefs", "vessel tracking", "weather stations"] [{"institutionName": "Australian Government, Australian Institute of Marine Science", "institutionAdditionalName": ["AIMS"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aims.gov.au/", "institutionIdentifier": ["ROR:03x57gn41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aims.gov.au/docs/about/contacts.html"]}] [{"policyName": "Copyright Notice", "policyURL": "https://www.aims.gov.au/docs/cc-copyright.html"}, {"policyName": "Disclaimer", "policyURL": "https://www.aims.gov.au/docs/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aims.gov.au/docs/cc-copyright.html"}] closed [] ["unknown"] {} ["none"] https://www.aims.gov.au/docs/cc-citation.html [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} AIMS uses Australian Marine Community Profile of ISO 19115:2005/19139. AIMS Data Catalogue is covered by Clarivate Data Citation Index 2014-08-22 2022-02-03 +r3d100010934 State of the Salmon eng [{"additionalName": "Knowledge across borders", "additionalNameLanguage": "eng"}, {"additionalName": "SoS", "additionalNameLanguage": "eng"}, {"additionalName": "\u0418\u0437\u0443\u0447\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u043b\u043e\u0441\u043e\u0441\u044f", "additionalNameLanguage": "rus"}, {"additionalName": "\u30b9\u30c6\u30a4\u30c8\u30fb\u30aa\u30d6\u30fb\u30b6\u30fb\u30b5\u30fc\u30e2\u30f3", "additionalNameLanguage": "jpn"}] http://www.stateofthesalmon.org/ [] ["https://www.wildsalmoncenter.org/who/contact/"] State of the Salmon provides data on abundance, diversity, and ecosystem health of wild salmon populations specific to the Pacific Ocean, North Western North America, and Asia. Data downloads are available using two geographic frameworks: Salmon Ecoregions or Hydro 1K. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2003 ["eng", "jpn", "rus"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.wildsalmoncenter.org/work/strategy/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["conservation biology", "ecosystem health", "fisheries", "fresh water", "ocean", "salmon", "sockeye"] [{"institutionName": "Ecotrust", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ecotrust.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ecotrust.org/join-us/visit-us/"]}, {"institutionName": "Wild Salmon Center", "institutionAdditionalName": ["\u0426\u0435\u043d\u0442\u0440 \u0434\u0438\u043a\u043e\u0433\u043e \u043b\u043e\u0441\u043e\u0441\u044f"], "institutionCountry": "USA", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.wildsalmoncenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wildsalmoncenter.org/who/contact/"]}] [{"policyName": "Our Strategy", "policyURL": "https://www.wildsalmoncenter.org/work/strategy/"}, {"policyName": "State of the Salmon Database", "policyURL": "https://www.wildsalmoncenter.org/resources/state-salmon-database/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://protectedplanet.net/c/terms-and-conditions"}] closed [] ["unknown"] yes {} ["none"] [] no unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Metadata standard name: FGDC Content Standards for Digital Geospatial Metadata and ESRI Metadata Profile 2014-08-22 2019-01-15 +r3d100010935 TropFlux eng [{"additionalName": "Air-sea fluxes for the global tropical oceans", "additionalNameLanguage": "eng"}] https://incois.gov.in/tropflux/index.jsp [] ["https://incois.gov.in/tropflux/contact.jsp", "praveen.b@incois.gov.in"] The TropFlux provides surface heat and momentum flux data of tropical oceans (30°N-30°S) between January 1979 and September 2011. The TropFlux data is produced under a collaboration between Laboratoire d’Océanographie: Expérimentation et Approches Numériques (LOCEAN) from Institut Pierre Simon Laplace (IPSL, Paris, France) and National Institute of Oceanography/CSIR (NIO, Goa, India), and supported by Institut de Recherche pour le Développement (IRD, France). TropFlux relies on data provided by the ECMWF Re-Analysis interim (ERA-I) and ISCCP projects. Since 2014 located at Indian National Centre for Ocean Information Services. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://incois.gov.in/tropflux/description.jsp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["climatology", "heat flux", "oceanography"] [{"institutionName": "Earth System Science Organization - Indian National Centre for Ocean Information Services", "institutionAdditionalName": ["ESSO-INCOIS"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://incois.gov.in/portal/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://incois.gov.in/portal/contactus"]}, {"institutionName": "Universit\u00e9 Pierre et Marie Curie, Institut Pierre Simon Laplace, Laboratoire d'Oc\u00e9anographie et du Climat: Exp\u00e9rimentations et Approches Num\u00e9riques", "institutionAdditionalName": ["IPSL LOCEAN"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.locean-ipsl.upmc.fr/index.php?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Quality Policy of ESSO-INCOIS", "policyURL": "https://incois.gov.in/portal/qualitypolicy.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://incois.gov.in/tropflux/data_access.jsp"}] closed [] ["unknown"] yes {"api": "https://incois.gov.in/tropflux/tf_products.jsp", "apiType": "NetCDF"} ["none"] https://incois.gov.in/tropflux/data_access.jsp [] yes yes [] [] {} The data is in NetCDF format. Data updated until May 2018 2014-08-22 2021-07-01 +r3d100010937 MedEffect Canada - Adverse Reaction Database eng [{"additionalName": "Base de donn\u00e9es en ligne des effets ind\u00e9sirables de Canada Vigilance", "additionalNameLanguage": "fra"}, {"additionalName": "Canada Vigilance Adverse Reaction Online Database", "additionalNameLanguage": "eng"}, {"additionalName": "MedEffet Canada - Base de donn\u00e9es des effets ind\u00e9sirables", "additionalNameLanguage": "fra"}] https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada.html [] ["CanadaVigilance@hc-sc.gc.ca"] MedEffect Canada’s Adverse Reaction Online Database contains information on suspected adverse reaction reports related to marketed health products that were submitted to Health Canada by consumers and health professionals, who submit reports voluntarily, as well as by Market Authorization Holders (manufacturers and distributors), who are required to submit reports according to the Next link will take you to another Web site Food and Drugs Regulations. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1965 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["drug interactions", "drugs", "health products", "pharmacology"] [{"institutionName": "Health Canada", "institutionAdditionalName": ["Sant\u00e9 Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/health-canada.html", "institutionIdentifier": ["RRID:SCR_011274", "RRID:nlx_152114"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/health-canada/corporate/contact-us.html"]}] [{"policyName": "Caveat, Privacy Statement and Interpretation of Data", "policyURL": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-database/medeffect-canada-caveat-privacy-statement-interpretation-data-extract-vigilance-adverse-reaction-online-database.html"}, {"policyName": "Terms and conditions", "policyURL": "http://www.hc-sc.gc.ca/home-accueil/important-eng.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.hc-sc.gc.ca/home-accueil/important-eng.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.hc-sc.gc.ca/home-accueil/important-eng.php"}] restricted [{"dataUploadLicenseName": "Reporting by consumers", "dataUploadLicenseURL": "https://www.canada.ca/en/health-canada/services/drugs-health-products/medeffect-canada/adverse-reaction-reporting.html"}] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2014-08-22 2019-01-15 +r3d100010938 Statistics Greenland eng [{"additionalName": "Gronlands Statistik", "additionalNameLanguage": "dan"}, {"additionalName": "Kalaallit Nunaanni Naatsorsueqqissaartarfik", "additionalNameLanguage": "kal"}] http://www.stat.gl/default.asp?Lang=en [] ["stat@stat.gl"] Statistics Greenland collects, processes, and publicizes statistical material concerning social issues in Greenland. Information is published in English, Greenlandic, and Danish, although not all information has been translated. eng ["other"] {"size": "", "updatedp": ""} 1999 ["dan", "eng", "kal"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.stat.gl/dialog/topmain.asp?lang=en&subject=About our Statbank&sc=SB [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["demography", "social sciences", "statistics"] [{"institutionName": "Statistics Greenland", "institutionAdditionalName": ["Gronlands Statistik", "Kalaallit Nunaanni Naatsorsueqqissaartarfik"], "institutionCountry": "GRL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.stat.gl/default.asp?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["stat@stat.gl"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.retsinformation.dk/Forms/R0710.aspx?id=12014"}] closed [] ["unknown"] yes {} ["none"] [] unknown yes [] [] {"syndication": "http://bank.stat.gl/rss/gsbank_en.xml", "syndicationType": "RSS"} 2014-08-22 2019-01-15 +r3d100010939 Foundation for Child Development Resources eng [{"additionalName": "including: Pre-Kindergarten through Third Grade Archive Data", "additionalNameLanguage": "eng"}, {"additionalName": "including: PreK-3rd Data", "additionalNameLanguage": "eng"}] https://www.fcd-us.org/ [] ["info@fcd-us.org"] The resource section of the Foundation for Child Development is a collection of reports, research, papers, and other materials published primarily by FCD and its grantees. The resource section contains materials relating to FCD’s current programs: PreK-3rd Education, Young Scholars Program, and Child Well-Being Index (CWI). FCD archives from 1909 - 2000 are located at the Rockefeller Archive Center. To view a description of the collection visit FCD at the Rockefeller Archive Center 1909 -1996 http://www.rockarch.org/collections/nonrockorgs/fcd.php and 1997-2000 http://dimes.rockarch.org/xtf/view?docId=ead/FA421/FA421.xml;chunk.id=headerlink;brand=default;query=FA421&doc.view=collection. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.fcd-us.org/about-us/mission/ [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["child development", "children", "early childhood education", "education", "kindergarten", "preschool children - education", "teaching"] [{"institutionName": "Foundation for Child Development", "institutionAdditionalName": ["FCD"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fcd-us.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fcd-us.org/about-us/contact-us/"]}, {"institutionName": "University of Michigan, Inter-University Consortium for Political and Social Research (ICPSR) for the Foundation for Child Development", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": ["RRID:SCR_003194", "RRID:nif-0000-00615"], "responsibilityStartDate": "", "responsibilityEndDate": "2013", "institutionContact": []}] [{"policyName": "Accessing Restricted Data at ICPSR", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/ICPSR/access/restricted/index.html"}, {"policyName": "PreK-3rd: policy briefs", "policyURL": "https://www.fcd-us.org/prek-3rd-policy-briefs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/ICPSR/access/restricted/index.html"}] restricted [] [] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} PreK-3rd Data Resource Center is not longer available through ICPSR website. The PreK-3rd Data Resource Center was an online resource center designed to expand the knowledge base and provide tools for the access and handling of Prekindergarten through Third Grade longitudinal data. 2014-08-25 2019-01-15 +r3d100010940 GeoBase eng [{"additionalName": "G\u00e9oBase", "additionalNameLanguage": "fra"}] https://open.canada.ca/data/en/dataset?q=geobase&organization=nrcan-rncan [] ["GeoInfo@canada.ca"] The website www.geobase.ca/ closed in January 2015. All GeoBase products are available on the Open Government of Canada portal: https://open.canada.ca/en GeoBase initiative provides geospatial data of the entire Canadian landmass for government, business, and/or personal assessments of sustainable resource development, public safety, sanitation, and environmental protection. Data is available for download as ESRI Shapefile, FGDB, KML, and GML. eng ["disciplinary", "institutional", "other"] {"size": "11 records in Open Government Portal", "updatedp": "2018-03-20"} 2011 2015-01-31 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Canada", "boundaries", "electricity", "geospatial data", "land cover", "physical geography", "public safety", "railroads", "resource allocation", "roads", "sanitation", "satellite geodesy", "sustainability", "water"] [{"institutionName": "Canadian Council on Geomatics", "institutionAdditionalName": ["CCOG", "COCG", "Conseil canadien de g\u00e9omatique"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ccog-cocg.ca/index_e.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of Canada, Open Government", "institutionAdditionalName": ["Gouvernement du Canada, Gouvernement ouvert"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://open.canada.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://open.canada.ca/en/forms/contact-us"]}] [{"policyName": "CCOG Data Policies", "policyURL": "http://www.ccog-cocg.ca/en/topics"}, {"policyName": "Treaties, laws and regulations", "policyURL": "https://www.canada.ca/en/government/system/laws.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] closed [] [] yes {} ["none"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} GeoBase is following Open GeoSpatial Consortium (OGC) standards. --- All GeoBase products are available on GeoGratis: http://geogratis.gc.ca/. 2014-08-25 2019-01-15 +r3d100010941 National Archive of Criminal Justice Data, Terrorism and Preparedness Data Resource Center eng [{"additionalName": "NACJD, TPDRC", "additionalNameLanguage": "eng"}] http://www.icpsr.umich.edu/icpsrweb/content/NACJD/guides/tpdrc.html [] ["tpdrc@start.umd.edu"] The Terrorism and Preparedness Data Resource Center (TPDRC) archives and distributes data collected by government agencies, non-governmental organizations (NGOs), and researchers about the nature of intra- (domestic) and international terrorism incidents, organizations, perpetrators, and victims; governmental and nongovernmental responses to terror, including primary, secondary, and tertiary interventions; and citizen's attitudes towards terrorism, terror incidents, and the response to terror. The Terrorism and Preparedness Survey Archive (TaPSA) is part of the Terrorism & Preparedness Data Resource Center (TPDRC). eng ["disciplinary"] {"size": "2.850 studies; 72 series;", "updatedp": "2019-01-15"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11305 Criminology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.icpsr.umich.edu/icpsrweb/content/NACJD/mission.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["national security", "surveys", "terrorism"] [{"institutionName": "Michigan State University, School of Criminal Justice", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cj.msu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cj.msu.edu/contact-us/"]}, {"institutionName": "National Archive of Criminal Justice Data", "institutionAdditionalName": ["NACJD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Justice", "institutionAdditionalName": ["NIJ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nij.gov/Pages/welcome.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Homeland Security", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Maryland, National Consortium for the Study of Terrorism and Responses to Terrorism", "institutionAdditionalName": ["START"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.start.umd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tpdrc@start.umd.edu"]}, {"institutionName": "University of Michigan, Institute for Social Research, Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/index.jsp", "institutionIdentifier": ["RRID:SCR_003194", "RRID:nif-0000-00615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nacjd@icpsr.umich.edu"]}] [{"policyName": "ICPSR Access Policy Framework", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/preservation/policies/access-policy-framework.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/files/NACJD/pdf/ProtectingConfidentialDataattheNationalArchiveofCriminalJusticeData(v2.2016).pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/ICPSR/access/restricted/index.html"}] restricted [{"dataUploadLicenseName": "Deposit data", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/archiving/index.html"}] ["unknown"] yes {} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/content/shared/NACJD/faqs/why-and-how-should-i-cite-data.html [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} TPDRC uses DDI metadata Standard. If you locate a membership-only study that fits your research needs and would like to purchase it, you can find more information about this process on the Nonmember Access to Data page. 2014-08-25 2019-01-15 +r3d100010942 Western Regional Climate Center eng [{"additionalName": "WRCC", "additionalNameLanguage": "eng"}] https://wrcc.dri.edu/ ["biodbcore-001499"] ["wrcc@dri.edu"] Western Regional Climate Center (WRCC) provides historical and current climate data for the western United States. WRCC is one of six regional climate centers partnering with NOAA research institutes to promote climate research and data stewardship. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1986 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wrcc.dri.edu/About/overview.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climatic changes", "climatic extremes", "climatology", "maps", "meteorology", "precipitation (meteorology)", "remote sensing", "weather", "weather forecasting"] [{"institutionName": "Applied Climate Information System", "institutionAdditionalName": ["ACIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.rcc-acis.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rcc-acis.org/contact.html"]}, {"institutionName": "NOAA, Desert Research Institute", "institutionAdditionalName": ["DRI", "Desert Research Institute"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dri.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Tim.Brown@dri.edu"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wrcc.dri.edu/cgi-bin/wea_listex.pl?subacc"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.noaa.gov/foia-freedom-of-information-act"}] closed [] ["unknown"] {"api": "https://wrcc.dri.edu/About/products.php", "apiType": "FTP"} ["none"] https://wrcc.dri.edu/About/citations.php [] unknown yes [] [] {} WRCC Partners: https://wrcc.dri.edu/About/partners.php The Western Regional Climate Center is a partner in a suite of interconnected services that includes: NOAA National Climatic Data Center (NCDC), Regional Climate Centers (RCCs), State Climate Offices, NOAA Regional Integrated Sciences and Assessments (RISA), USDI Climate Science Centers (CSCs). 2014-08-25 2021-11-16 +r3d100010943 Protected Planet eng [{"additionalName": "WDPA", "additionalNameLanguage": "eng"}, {"additionalName": "World Database on Protected Areas", "additionalNameLanguage": "eng"}] https://protectedplanet.net/ [] ["protectedareas@unep-wcmc.org"] Protectedplanet.net combines crowd sourcing and authoritative sources to enrich and provide data for protected areas around the world. Data are provided in partnership with the World Database on Protected Areas (WDPA). The data include the location, designation type, status year, and size of the protected areas, as well as species information. eng ["disciplinary"] {"size": "245.900 records comprising 225.247 polygons and 20.653 points, covering 245 countries and territories", "updatedp": "2019-12-04"} 1981 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://protectedplanet.net/c/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "geographic information systems", "marine", "national parks and reserves", "terrestrial", "wilderness areas", "world heritage areas"] [{"institutionName": "International Union for Conservation of Nature", "institutionAdditionalName": ["IUCN"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.iucn.org/", "institutionIdentifier": ["ROR:04tehfn33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iucn.org/contact/"]}, {"institutionName": "United Nations Environment Programme - World Conservation Monitoring Centre", "institutionAdditionalName": ["UNEP-WCMC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unep-wcmc.org/", "institutionIdentifier": ["ROR:04570b518"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unep-wcmc.org/about-us/contact#contact-page"]}, {"institutionName": "solertium", "institutionAdditionalName": ["smart software team"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.solertium.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["email-@solertium"]}, {"institutionName": "vizzuality", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.vizzuality.com/", "institutionIdentifier": ["ROR:02a809t02"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@vizzuality.com"]}] [{"policyName": "Terms and Conditions of Use of the World Database on Protected Areas", "policyURL": "https://protectedplanet.net/c/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://protectedplanet.net/c/terms-and-conditions"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.google.com/intl/de_US/help/terms_maps/"}] closed [] ["unknown"] {"api": "https://api.protectedplanet.net/documentation", "apiType": "REST"} ["other"] https://protectedplanet.net/c/terms-and-conditions [] no yes [] [] {} 2014-08-25 2021-09-03 +r3d100010944 IRI/LDEO Climate Data Library eng [] https://iridl.ldeo.columbia.edu/ [] ["info@iri.columbia.edu"] The IRI/LDEO Climate Data Library is a collection of climate data sets with the focus of climate change monitoring and mitigation. Browse data by category and source, navigate and analyze datasets using maps, and the Ingrid Data Analysis Language. The IRI/LDEO also includes web tutorials. eng ["disciplinary"] {"size": "more than 300 datasets", "updatedp": "2014-08-26"} 2009 ["eng", "fra", "rus", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climate change mitigation", "climatology", "environmental sciences", "fisheries", "global weather experiment project", "hydrology", "oceanography", "topoclimatology", "weather"] [{"institutionName": "Columbia University, Earth Institute, International Research Institute for Climate and Society", "institutionAdditionalName": ["IRI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://iri.columbia.edu/resources/data-library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@iri.columbia.edu"]}, {"institutionName": "Columbia University, Earth Institute, Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/research/other/irildeo-climate-data-library", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["benno@iri.columbia.edu", "https://www.ldeo.columbia.edu/directory/martinbblumenthal"]}] [{"policyName": "Research Policies and Handbooks", "policyURL": "https://research.columbia.edu/research-policies-and-handbooks"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://iridl.ldeo.columbia.edu/"}] closed [] ["CKAN"] {"api": "http://iridl.ldeo.columbia.edu/dochelp/Tutorial/MVD/Download/index.html?Set-Language=en#Formats", "apiType": "NetCDF"} ["none"] [] yes unknown [] [] {} 2014-08-25 2021-09-03 +r3d100010945 NOAA National Centers for Environmental Information - formerly: National Coastal Data Development Center eng [{"additionalName": "NCDDC", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: NOAA - NCDDC", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: National Oceanic Atmospheric Administration - National Coastal Data Development Center", "additionalNameLanguage": "eng"}] https://www.ncddc.noaa.gov/ [] ["https://www.ncddc.noaa.gov/about-ncddc/regional-offices/"] The National Coastal Data Development Center, a division of the National Oceanographic Data Center, is dedicated to building the long-term coastal data record to support environmental prediction, scientific analysis, and formulation of public policy. >>>!!!<<< For informations about the migration of data from NODC to NCEI see: https://www.nodc.noaa.gov/about >>>!!!<<>>>!!!<<<>>>!!!<<<< ACADIS is a repository for Arctic research data to provide data archival, preservation and access for all projects funded by NSF's Arctic Science Program (ARC). Data include long-term observational timeseries, local, regional, and system-scale research from many diverse domains. The Advanced Cooperative Arctic Data and Information Service (ACADIS) program includes data management services. eng ["disciplinary", "other"] {"size": "5.759 datasets", "updatedp": "2020-01-13"} 2007 2016-03-28 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arctic peoples", "arctic regions", "atmosphere", "biogeochemistry", "biology", "cryosphere", "glaciers", "oceanography", "permafrost", "physical sciences", "remote sensing", "sea ice"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, National Center for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research, UNIDATA", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unidata.ucar.edu/projects/index.html#acadis", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NSF Directorate for Geosciences Data Policies", "policyURL": "https://www.nsf.gov/geo/geo-data-policies/index.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://arcticdata.io/submit/#license"}] closed [] ["unknown"] yes {} ["DOI"] [] yes yes [] [] {} ACADIS builds on the CADIS project that supported the Arctic Observing Network (AON). This portal will continue to be a gateway for AON data and is being expanded to include all NSF ARC data. 2014-08-29 2021-10-14 +r3d100010965 Integrated Fertility Survey Series eng [{"additionalName": "IFSS", "additionalNameLanguage": "eng"}] [] [] >>>>>> !!! <<<<<< This website ceased operation on Sept. 30, 2020, as the website is no longer funded >>>>> !!!!! <<<< eng ["disciplinary", "institutional"] {"size": "655 citing publications", "updatedp": "2014-09-01"} 2007 2020 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["abortion", "adoption", "behavioral assessment", "demography", "families", "family", "family planning", "fertility", "gender identity", "mortality", "population", "pregnancy", "reproductive health--social aspects", "sociology", "surveys"] [{"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["ROR:04byxyr05", "RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research, Population Studies Center", "institutionAdditionalName": ["PSC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.psc.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": ["RRID:SCR_003194", "RRID:nif-0000-00615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access and Dissemination", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/access.html"}, {"policyName": "User Guide", "policyURL": "http://www.icpsr.umich.edu/files/IFSS/ifss-user-guide.docx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/details.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/datamanagement/lifecycle/details.html"}] closed [] ["unknown"] yes {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The Integrated Fertility Survey Series (IFSS) was a project of the Population Studies aiming in view to produce a harmonized dataset of U.S. family and fertility surveys spanning five decades (1955-2002). IFSS integrates data from ten underlying component studies of family and fertility encompassing the Growth of American Families (GAF) in 1955 and 1960; National Fertility Surveys (NFS) in 1965 and 1970; as well as National Surveys of Family Growth (NSFG) in 1973, 1976, 1982, 1988, 1995, and 2002. The first release contains harmonized sociodemographic variables for all respondents from all ten component studies, including those related to marital status, race and ethnicity, etc. Thus it provides access to researchers, educators, students, policy makers, and others with a data resource to examine issues related to families and fertility in the United States. Potential users can download original/ harmonized datasets (along with documentation) and numerous analytic tools make it possible to quickly and easily explore the data and obtain information about changes in behaviors and attitudes across time. 2014-09-01 2021-05-26 +r3d100010966 Earth System Research Laboratory - Global Monitoring Division eng [{"additionalName": "ESRL GMD", "additionalNameLanguage": "eng"}] https://www.esrl.noaa.gov/gmd/ [] ["webmaster.gml@noaa.gov"] Earth System Research Laboratory (ESRL) Global Monitoring Division (GMD) provides data relating to climate change forces and models, ozone depletion and rehabilitation, and baseline air quality. Data are freely available so the public, policy makers, and scientists stay current with long-term atmospheric trends. eng ["disciplinary", "institutional", "other"] {"size": "3359 Datasets", "updatedp": "2021-11-21"} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.esrl.noaa.gov/gmd/about/aboutgmd.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["air quality", "atmosphere", "atmospheric aerosols", "carbon dioxide", "carbon monoxide", "climatic changes", "earth sciences", "greenhouse effect, atmospheric", "greenhouse gases", "halogenation", "hydrocarbons", "methane", "natural gas", "nitrous oxide", "ozone", "ozone layer depletion", "solar radiation", "space sciences", "stratosphere"] [{"institutionName": "U.S. Department of Commerce, National Oceanic and Atmospheric Administration, Earth System Research Laboratory, Global Monitoring Division", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.esrl.noaa.gov/gmd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and Terms of Reference", "policyURL": "https://www.esrl.noaa.gov/gmd/about/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.esrl.noaa.gov/gmd/about/disclaimer.html"}] closed [] [] yes {"api": "https://www.esrl.noaa.gov/gmd/dv/ftpdata.html", "apiType": "FTP"} ["none"] https://www.esrl.noaa.gov/gmd/about/disclaimer.html [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-09-01 2021-08-24 +r3d100010967 Indian National Centre for Ocean Information Services eng [{"additionalName": "ESSO - INCOIS", "additionalNameLanguage": "eng"}, {"additionalName": "ESSO - Indian National Centre for Ocean Information Services", "additionalNameLanguage": "eng"}, {"additionalName": "INCOIS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Ocean Date and Information System", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: ODIS", "additionalNameLanguage": "eng"}, {"additionalName": "\u0908\u090f\u0938\u090f\u0938\u0913 -\u092d\u093e\u0930\u0924\u0940\u092f \u0930\u093e\u0937\u094d\u091f\u094d\u0930\u0940\u092f \u092e\u0939\u093e\u0938\u093e\u0917\u0930 \u0938\u0942\u091a\u0928\u093e \u0938\u0947\u0935\u093e \u0915\u0947\u0928\u094d\u0926\u094d\u0930", "additionalNameLanguage": "hin"}] https://odis.incois.gov.in/ ["ROR:04xbqmj23"] ["https://odis.incois.gov.in/portal/datainfo/dicontact.jsp", "uday@incois.gov.in"] The Ocean Date and Information System provides information on physical, chemical, biological and geological parameters of ocean and coasts on spatial and temporal domains that is vital for both research and operational oceanography. In-situ and remote sensing data are included. The Ocean Information Bank is supported by the data received from Ocean Observing Systems in the Indian Ocean (both the in-situ platforms and satellites) as well as by a chain of Marine Data Centres. Ocean and coastal measurements are available. Data products are accessible through various portals on the site and are largely available by data type (in situ or remote sensing) and then by parameter. eng ["disciplinary", "other"] {"size": "about 1,5 TB", "updatedp": "2021-07-22"} 2012 ["eng", "hin"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://odis.incois.gov.in/portal/mission [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["buoys", "chlorophyll--remote sensing", "marine biology", "marine geophysics", "ocean", "ocean temperature", "oceanographic buoys", "remote sensing", "salinity", "tide-gages", "water", "water current meters"] [{"institutionName": "ESSO - Indian National Centre for Ocean Information Services", "institutionAdditionalName": ["ESSO-INCOIS", "Earth System Science Organization - Indian National Centre for Ocean Information Services", "INCOIS"], "institutionCountry": "IND", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://incois.gov.in/portal/index.jsp", "institutionIdentifier": ["ROR:04xbqmj23"], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["pattabhi@incois.gov.in", "uday@incois.gov.in", "webmaster@incois.gov.in"]}] [{"policyName": "QC Manuals", "policyURL": "https://odis.incois.gov.in/portal/datainfo/qcmanuals.jsp"}, {"policyName": "Quality policy", "policyURL": "https://odis.incois.gov.in/portal/qualitypolicy.jsp"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://incois.gov.in/tropflux/data_access.jsp"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://incois.gov.in/portal/datainfo/drform.jsp"}] closed [] ["other"] no {} ["none"] ["none"] yes yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://incois.gov.in/rss/highwavealert", "syndicationType": "RSS"} INCOIS has been designated as the National Oceanographic Data Centre by the International Oceanographic Data Exchange Programme (IODE) of International Oceanographic Commission (IOC). Further, INCOIS serves as the National Argo Data Centre, Regional Argo Data Centre, and also the regional data centre and clearing house for the Indian Ocean region for the IOGOOS Programme. 2014-09-01 2021-07-22 +r3d100010968 NASA Prognostics Data Repository eng [{"additionalName": "PCoE Datasets", "additionalNameLanguage": "eng"}] https://ti.arc.nasa.gov/tech/dash/groups/pcoe/prognostic-data-repository/ [] ["https://www.nasa.gov/about/contact/index.html", "https://www.nasa.gov/content/submit-a-question-for-nasa"] NASA's Prognostics Center of Excellence hosts the Prognostics Data Repository to provide data used in the development of prognostic algorithms, and time series of nominal to failed states. Data are donated from universities, agencies, or companies on an ongoing process. eng ["disciplinary", "institutional", "other"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "40705 Human Factors, Ergonomics, Human-Machine Systems", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://ti.arc.nasa.gov/tech/dash/groups/pcoe/roadmap/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aeronautics", "aircraft accidents", "algorithms", "avionics", "electrical engineering", "electronics", "exploration, aerial", "space"] [{"institutionName": "NASA Ames Research Center, Prognostics Center of Excellence", "institutionAdditionalName": ["PCoE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ti.arc.nasa.gov/tech/dash/groups/pcoe/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA web privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/about/disclaimer.html"}] restricted [] ["unknown"] {} ["none"] https://ti.arc.nasa.gov/tech/dash/groups/pcoe/prognostic-data-repository/ [] yes yes [] [] {} NASA Prognostics Data Repository is covered by Thomson Reuters Data Citation Index. 2014-09-01 2021-09-08 +r3d100010969 Greenland Environmental Observatory at Summit Station eng [{"additionalName": "GEO Summit", "additionalNameLanguage": "eng"}, {"additionalName": "Summit Station", "additionalNameLanguage": "eng"}] https://www.geosummit.org/ [] ["sco@summitcamp.org"] Greenland Environmental Observatory (GEOSummit) provides long term year round data on core atmospheric measurements, spatial phenomena, ice sheets, and the Arctic Environment. These data are available to researchers through the National Science Foundation's Science Coordination Office (SCO) which coordinates all research at GEOSummit. Currently there is not a central platform for multi-collaborator data distribution. For specific information related to research it is recommended to contact investigators directly. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geosummit.org/?page_id=27 [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Greenland", "arctic regions", "climatology", "glaciology", "ice sheets", "physical sciences"] [{"institutionName": "CH2MHILL Polar Services", "institutionAdditionalName": ["CPS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://cpspolar.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["katrine@polarfield.com", "stan@polarfield.com"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation, Office of Polar Programs", "institutionAdditionalName": ["NSF OPP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/div/index.jsp?div=OPP", "institutionIdentifier": ["ROR:05nwjp114"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Summit Station Science Coordination Office", "institutionAdditionalName": ["SCO"], "institutionCountry": "GRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geosummit.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sco@summitcamp.org"]}] [{"policyName": "Digital Strategy and Open Data at NSF", "policyURL": "https://www.nsf.gov/digitalstrategy/"}, {"policyName": "NSF Dissemination and Sharing of Research Results", "policyURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/geo/geo-data-policies/index.jsp"}] closed [] [] {} ["none"] [] yes unknown [] [] {"syndication": "https://www.geosummit.org/?feed=rss2&cat=1", "syndicationType": "RSS"} Summit Station is the home of the Greenland Environmental Observatory (GEOSummit) 2014-09-02 2021-05-21 +r3d100010970 Indian Genetic Disease Database eng [{"additionalName": "IGDD", "additionalNameLanguage": "eng"}] http://www.igdd.iicb.res.in/home.htm [] ["igdd.iicb@gmail.com", "kunalray@gmail.com", "sandippaul@iicb.res.in", "sengupta.mainak@gmail.com"] Indian Genetic Disease Database (IGDD) is an initiative of CSIR Indian Institute of Chemical Biology. It is supported by Council of Scientific and Industrial Research (CSIR) and Department of Biotechnology (DBT) of India. The Indian people represent one-sixth of the world population and consists of a ethnically, geographically, and genetically diverse population. In some communities the ratio of genetic disorder is relatively high due to consanguineous marriage practiced in the community. This database has been created to keep track of mutations in the causal genes for genetic diseases common in India and help the physicians, geneticists, and other professionals retrieve and use the information for the benefit of the public. The database includes scientific information about these genetic diseases and disabilities, but also statistical information about these diseases in today's society. Data is categorized by body part affected and then by title of the disease. eng ["disciplinary", "institutional"] {"size": "http://www.igdd.iicb.res.in/statistics.htm", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.igdd.iicb.res.in/home.htm [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["India", "biology", "genetic disorders", "genetics", "medicine", "mutation statistics"] [{"institutionName": "CSIR-Indian Institute of Chemical Biology", "institutionAdditionalName": ["CSIR-IICB"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iicb.res.in/", "institutionIdentifier": ["ROR:021wm7p51", "RRID:SCR_003203", "RRID:nlx_149418"], "responsibilityStartDate": "1935", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Council of Scientific and Industrial Research, Indian Institute of Chemical Biology", "institutionAdditionalName": ["CSIR IICB"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iicb.res.in/", "institutionIdentifier": ["ROR:01kh0x418", "RRID:SCR_011177", "RRID:nlx_151744"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of India, Ministry of Science and Technology, Department of Biotechnology", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dbtindia.gov.in/", "institutionIdentifier": ["ROR:03tjsyq23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy", "policyURL": "https://academic.oup.com/nar/article/39/suppl_1/D933/2505935"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.csir.res.in/website-policy"}] restricted [{"dataUploadLicenseName": "Submission", "dataUploadLicenseURL": "http://www.igdd.iicb.res.in/submission.htm"}] [] yes {} ["none"] [] yes yes [] [] {} IGDD provides linked informations from: Indian Genome Variation Database, The Human Gene Mutation Database, Genes and Diseases, Online Mendelian Inheritance in Man, GeneCard, Protein Data Bank, Frequency of Inherited Disorders database, National Organization for Rare Disorders and The Catalogue for Transmission Genetics in Arabs 2014-09-02 2021-07-01 +r3d100010971 Marine Microbial Database of India eng [{"additionalName": "bioSearch", "additionalNameLanguage": "eng"}] http://www.biosearch.in/microbes/ [] ["http://www.biosearch.in/microbes/bioSearchContactUs.php"] >>>!!!<<< This repository is no longer available >>>!!!<<< Marine Microbial Database of India is an initiative of CSIR National Institute of Oceanography (NIO). It is supported by Council of Scientific and Industrial Research (CSIR) and managed by Biodiversity Informatics Group (BIG), Bioinformatics Centre of the NIO. It contains records about 1,814 marine microbes. Each record provides information on microbe’s location, habitat, importance (of the organism), threats (to the organism). The database also provides a Taxonomic Hierarchy and Scientific Name Index. eng ["disciplinary"] {"size": "1.814 organisms", "updatedp": "2017-11-22"} 2009 2020 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["India", "marine organisms", "organisms"] [{"institutionName": "Government of India, CSIR National Institute of Oceanography", "institutionAdditionalName": ["NIO"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nio.org/index/title/HOME", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Oceanography, Bioinformatics Centre", "institutionAdditionalName": ["NBIC"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.niobioinformatics.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.niobioinformatics.in/feedback.php"]}] [{"policyName": "Data Use Agreement", "policyURL": "http://www.niobioinformatics.in/data.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.niobioinformatics.in/data.php"}] closed [] [] {} ["none"] http://www.niobioinformatics.in/data.php [] yes unknown [] [] {} 2014-09-02 2021-09-08 +r3d100010972 ACEpepDB: Peptide Database eng [{"additionalName": "Peptide Database of Central Food Technological Research Institute", "additionalNameLanguage": "eng"}] ["RRID:SCR_010474", "RRID:nlx_157747"] [] >>>>!!<<<< As stated 2017-11-23 the database is not available anymore >>>>!!<<<< ACEpepDB is a database ran by the Central Food Technological Research Institute. It contains records of about 865 peptides. Each record provides information on the food source, preparation, purification and any other additional information. Each record includes the reference(s). The database provides a search and browsing option for a more personalized research experience. eng ["disciplinary"] {"size": "135 food sources; 865 peptides; 11 purification methods; 17 assay method references", "updatedp": "2020-02-25"} 2011 2017 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ACE inhibition", "food industry and trade", "functional food", "hypertension", "peptide antibiotics", "peptide drugs", "peptide hormones"] [{"institutionName": "CSIR Central Food Technological Research Institute", "institutionAdditionalName": ["CFTRI"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cftri.res.in/", "institutionIdentifier": ["ROR:01d7fn555"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of India, Ministry of Science and Technology, Council of Scientific and Industrial Research", "institutionAdditionalName": ["CSIR"], "institutionCountry": "IND", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.csir.res.in/", "institutionIdentifier": ["ROR:021wm7p51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cftri.res.in/"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} ACEpepDB is covered by Clarivate Data Citation Index. 2014-09-02 2020-02-25 +r3d100010973 TBNet India eng [{"additionalName": "A National Portal for Tuberculosis Initiative", "additionalNameLanguage": "eng"}, {"additionalName": "Protocols Reference Database", "additionalNameLanguage": "eng"}] [] [] >>>>!!<<< As detected 2017-11-24 TBNet India is no longer accessible >>>>!!<<<< TBNet India is an initiative by the Department of Biotechnology, Govt of India with special focus on Indian contributions on research and various issues related to tuberculosis. Around 13 institutions across India are apart of this initiative. TB Net India focuses to gather clinical, epidemiological and molecular data and make it available to the biomedical community. eng ["disciplinary", "other"] {"size": "8.178 genes", "updatedp": "2014-09-02"} 2009 2016-10-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20513 Pneumology, Clinical Infectiology Intensive Care Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["India", "drug resistance", "molecular biology", "tuberculosis"] [{"institutionName": "Government of India, Ministry of Science and Technology, Department of Biotechnology", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://dbtindia.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Bioinformatics, Bangalore", "institutionAdditionalName": ["IOB"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ibioinformatics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National JALMA Institute of Leprosy and Other Mycobacterial Diseseases", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jalma-icmr.org.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dst.gov.in/sites/default/files/APPROVED%20OPEN%20ACCESS%20POLICY-DBT%26DST%2812.12.2014%29_1.pdf"}] open [] [] {} ["none"] [] unknown unknown [] [] {} 2014-09-02 2019-12-04 +r3d100010975 Yeast Resource Center eng [{"additionalName": "Yeast Resource Center Public Data Repository", "additionalNameLanguage": "eng"}] http://depts.washington.edu/yeastrc/ ["FAIRsharing_doi:10.25504/FAIRsharing.karvzj", "RRID:SCR_007942", "RRID:nif-0000-03650"] ["mriffle@u.washington.edu"] The Yeast Resource Center provides access to data about mass spectrometry, yeast two-hybrid arrays, deconvolution florescence microscopy, protein structure prediction and computational biology. These services are provided to further the goal of a complete understanding of the chemical interactions required for the maintenance and faithful reproduction of a living cell. The observation that the fundamental biological processes of yeast are conserved among all eukaryotes ensures that this knowledge will shape and advance our understanding of living systems. eng ["disciplinary", "institutional", "other"] {"size": "197 active projects", "updatedp": "2021-12-15"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://depts.washington.edu/yeastrc/about-the-yrc-overview/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biochemistry", "computational biology", "fluorescence microscopy", "mass spectrometry", "protein structure prediction", "saccharomyces", "yeast"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scripps Research Institute, Department of Molecular Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.scripps.edu/science-and-medicine/research-departments/molecular-medicine/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington, Department of Biochemistry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sites.uw.edu/biochemistry/", "institutionIdentifier": ["RRID:SCR_000149", "RRID:nlx_149153"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington, Department of Genome Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gs.washington.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington, Yeast Resource Center", "institutionAdditionalName": ["YRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://depts.washington.edu/yeastrc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.yeastrc.org/proxl_public/termsOfService.do"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "none", "dataLicenseURL": "https://www.yeastrc.org/proxl_public/termsOfService.do"}] restricted [] ["other"] yes {} ["none"] http://www.yeastrc.org/pdr/data/reference_data.txt [] yes yes [] [] {} 2014-09-02 2021-12-15 +r3d100010976 ForestPlots.net eng [{"additionalName": "FP", "additionalNameLanguage": "eng"}] https://www.forestplots.net [] ["admin@forestplots.net"] ForestPlots.net is a web-accessible secure repository for forest plot inventories in South America, Africa and Asia. The database includes plot geographical information; location, taxonomic information and diameter measurements of trees inside each plot; and participants in plot establishment and re-measurement, including principal investigators, field assistants, students. eng ["disciplinary"] {"size": "3.000 forest plots; 41 countries; 4.500.000 tree measurements; 15.000 different species", "updatedp": "2019-07-23"} 2008 ["eng", "por", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.forestplots.net/en/about-forest-plots [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "botany", "ecosystems", "forest monitoring", "plant ecology--research", "plant taxonomists", "tropical forests", "vegetation monitoring"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Society", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://royalsociety.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Leeds, School of Geography", "institutionAdditionalName": ["School of Geography"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.geog.leeds.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["g.lopez-gonzalez@leeds.ac.uk", "http://www.geog.leeds.ac.uk/contact-us/"]}] [{"policyName": "Code of Conduct", "policyURL": "https://www.forestplots.net/en/join-forestplots/code-of-conduct"}, {"policyName": "User Guidelines", "policyURL": "https://www.forestplots.net/secure/Help/scr/User%20Guidelines.htm"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.forestplots.net/en/join-forestplots/privacy-copyright"}] restricted [{"dataUploadLicenseName": "User guidelines", "dataUploadLicenseURL": "https://www.forestplots.net/en/join-forestplots/code-of-conduct"}] ["other"] yes {} ["DOI", "other"] https://www.forestplots.net/en/join-forestplots/how-to-cite [] yes yes [] [] {} 2014-09-02 2019-07-23 +r3d100010977 HIstome eng [{"additionalName": "The Histone Infobase", "additionalNameLanguage": "eng"}] http://www.actrec.gov.in/histome/index.php ["FAIRsharing_doi:10.25504/FAIRsharing.g56qnp", "OMICS_03500", "RRID:SCR_006972", "RRID:nlx_151419"] ["histome@iiserpune.ac.in"] HIstome: The Histone Infobase is a database of human histones, their post-translational modifications and modifying enzymes. HIstome is a combined effort of researchers from two institutions, Advanced Center for Treatment, Research and Education in Cancer (ACTREC), Navi Mumbai and Center of Excellence in Epigenetics, Indian Institute of Science Education and Research (IISER), Pune. eng ["disciplinary"] {"size": "Informations about ~50 histone proteins and ~150 histone modifying enzymes", "updatedp": "2019-12-04"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.actrec.gov.in/histome/index.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["RNA", "biology", "cancer", "cell biology", "epigenetics", "histones", "human protein", "post-translational modifications PTMs"] [{"institutionName": "Indian Institute of Science Education and Research", "institutionAdditionalName": ["IISER", "\u092d\u093e\u0930\u0924\u0940\u092f \u0935\u093f\u091c\u094d\u091e\u093e\u0928 \u0936\u093f\u0915\u094d\u0937\u093e \u090f\u0935\u0902 \u0905\u0928\u0941\u0938\u0902\u0927\u093e\u0928 \u0938\u0902\u0938\u094d\u0925\u093e\u0928"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iiserpune.ac.in/header/the-institute", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["histome@iiserpune.ac.in"]}, {"institutionName": "Tata Memorial Centre, Advanced Centre for Treatment, Research and Education in Cancer", "institutionAdditionalName": ["ACTREC, TMC"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://actrec.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://actrec.gov.in/contact-us"]}] [{"policyName": "Policies and Terms of Use", "policyURL": "https://tmc.gov.in/index.php/policies-terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.actrec.gov.in/histome/index.php"}] restricted [] ["other"] {} ["none"] http://www.actrec.gov.in/histome/index.php [] yes yes [] [] {} 2014-09-03 2021-08-25 +r3d100010978 Human Protein Reference Database eng [{"additionalName": "HPRD", "additionalNameLanguage": "eng"}] http://www.hprd.org ["FAIRsharing_doi:10.25504/FAIRsharing.y2qws7", "OMICS_02439", "RRID:SCR_007027", "RRID:nif-0000-00137"] ["http://hprd.org/help"] Human Protein Reference Database (HPRD) has been established by a team of biologists, bioinformaticists and software engineers. This is a joint project between the PandeyLab at Johns Hopkins University, and Institute of Bioinformatics, Bangalore. HPRD is a definitive repository of human proteins. This database should serve as a ready reckoner for researchers in their quest for drug discovery, identification of disease markers and promote biomedical research in general. Human Proteinpedia (www.humanproteinpedia.org) is its associated data portal. eng ["disciplinary"] {"size": "30.047 protein entries; 41.327 protein-protein interactions; 93.710 PTM's; 112.158 protein expression; 22.490 subcellular localization; 470 domains; 453.521 PubMed Links", "updatedp": "2019-12-04"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.hprd.org/index_html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "mass spectrometry", "protein C", "protein S", "protein binding"] [{"institutionName": "Institute of Bioinformatics", "institutionAdditionalName": ["IOB"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ibioinformatics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johns Hopkins University, Institute for Basic Biomedical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hopkinsmedicine.org/institute_basic_biomedical_sciences/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright Compliance Policy", "policyURL": "https://www.jhu.edu/assets/uploads/2016/11/compliance_policy.pdf"}, {"policyName": "Intellectual Property Policy", "policyURL": "https://ventures.jhu.edu/wp-content/uploads/2019/10/The-IP-Policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jhu.edu/assets/uploads/2016/11/compliance_policy.pdf"}] restricted [{"dataUploadLicenseName": "Become a Molecule Authority", "dataUploadLicenseURL": "http://www.hprd.org/moleculeAuthority"}] [] yes {} ["none"] http://hprd.org/index_html [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-09-02 2021-11-09 +r3d100010979 India Biodiversity Portal eng [{"additionalName": "IBP", "additionalNameLanguage": "eng"}] https://indiabiodiversity.org/ [] ["support@indiabiodiversity.org"] The India Biodiversity Portal is an educational tool to help educate the citizens of India on India's biodiversity. The IBP has multiple overlapping databases of images and scientific information about the variety of animals, plants, and environments found in India. These images and information can also be accessed via the IBP's maps and checklists features that encourage pursuit of ecological education for all ages. eng ["disciplinary", "institutional"] {"size": "58.211 species; 1.479.356 observations; 206 maps; 2596 documents", "updatedp": "2021-11-16"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://indiabiodiversity.org/page/show/4246005 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["India", "biodiversity", "biodiversity conservation", "ecological regions", "environmental education - activity programs", "environmental sciences", "maps for children", "maps in education", "species diversity"] [{"institutionName": "Ashoka Trust for Research in Ecology and the Environment", "institutionAdditionalName": ["ATREE"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.atree.org/", "institutionIdentifier": ["ROR:02e22ra24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.atree.org/contact"]}, {"institutionName": "Biodiversity India Partners", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://indiabiodiversity.org/page/4246025", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Critical Ecosystem Partnership Fund", "institutionAdditionalName": ["CEPF"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cepf.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "French Institute of Pondicherry", "institutionAdditionalName": ["IFP", "Institut Francais de Pondich\u00e9ry"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ifpindia.org/", "institutionIdentifier": ["ROR:05kxcj202"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ifpindia.org/contact-us/"]}, {"institutionName": "JRS Biodiversity Foundation", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://jrsbiodiversity.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Strand Life Sciences", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://strandls.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tata Trusts", "institutionAdditionalName": ["Sir Dorabji Tata Trust and the Allied Trusts"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.tatatrusts.org/", "institutionIdentifier": ["ROR:057kjcb31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Sharing", "policyURL": "https://indiabiodiversity.org/page/4250189"}, {"policyName": "Terms and conditions", "policyURL": "https://indiabiodiversity.org/page/4250246"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://indiabiodiversity.org/page/show/4250212"}] restricted [] ["other"] yes {} ["none"] https://indiabiodiversity.org/page/122 [] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} India Biodiversity Portal uses eml-2.1.1 metadata standard http://knb.ecoinformatics.org/software/eml/eml-2.1.1/index.html 2014-09-03 2021-11-16 +r3d100010980 Clinical Trials Registry - India eng [{"additionalName": "CTRI", "additionalNameLanguage": "eng"}] http://ctri.nic.in/Clinicaltrials/login.php ["RRID:SCR_000679", "RRID:nlx_151507"] ["ctri@gov.in", "http://ctri.nic.in/Clinicaltrials/feedback.php"] CTRI is a free, online public record system for registration of clinical trials being conducted in India since 2007. Initiated as a voluntary measure, since 2009 trial registration in the CTRI has been made mandatory by the Drugs Controller General of India (DCGI). While this register is meant primarily for trials conducted in India, the CTRI will also accept registration of trials conducted in other countries in the region, which do not have a Primary Registry of its own. Registered trials on CTRI are freely searchable from the WHO's search portal and the ICTRP, as well as from the CTRI site. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ctri.nic.in/Clinicaltrials/cont1.php#mission [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["India", "clinical trials", "drugs", "surgical procedures", "vaccines"] [{"institutionName": "Government of India, Ministry of Science and Technology, Department of Science and Technology", "institutionAdditionalName": ["DST"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://dst.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ICMR National Institute of Medical Statistics", "institutionAdditionalName": ["NIMS"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nims-icmr.nic.in/NIMS/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indian Council of Medical Research", "institutionAdditionalName": ["ICMR"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.icmr.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Health Organization", "institutionAdditionalName": ["WHO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.who.int/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Criteria for registration", "policyURL": "http://ctri.nic.in/Clinicaltrials/faq.php#6a"}, {"policyName": "Registration of Clinical trials", "policyURL": "http://ctri.nic.in/Clinicaltrials/faq.php#5a"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.apache.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ctri.nic.in/Clinicaltrials/login.php"}] restricted [] ["other"] yes {} ["other"] [] yes yes [] [] {} CTRI is a Primary Registry in the WHO Registry Network for clinical trials and uses the WHO Universal Trial Number (UTN). 2014-09-02 2021-10-06 +r3d100010981 Canada-Nova Scotia Offshore Petroleum Board Data Management Centre eng [{"additionalName": "CNSOPB DMC", "additionalNameLanguage": "eng"}] http://www.cnsopbdmc.ca/ [] ["dmcsupport@cnsopb.ns.ca", "http://www.cnsopbdmc.ca/contact-us"] The DMC is designed to provide registered users with access to non-confidential petroleum exploration and production data from offshore Nova Scotia, subject to certain conditions. The DMC is housed in the CNSOPB's Geoscience Research Centre located in Dartmouth, Nova Scotia. Initially, the DMC will manage and distribute the following digital petroleum data: well data (i.e. logs and reports), seismic image files (e.g. TIFF, PDF), and production data. In the future the DMC could be expanded to include operational, safety, environmental, fisheries data, etc. eng ["disciplinary", "other"] {"size": "235 Boreholes, 5510 2D Seismic Programs, 34 3D Seismic Programs", "updatedp": "2019-12-04"} 1960 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cnsopb.ns.ca/about-us [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Nova Scotia", "bore holes", "earth sciences", "environmental health", "health", "land degradation control", "petroleum"] [{"institutionName": "Canada-Nova Scotia Offshore Petroleum Board, Geoscience Research Centre", "institutionAdditionalName": ["CNSOPB", "GRC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cnsopb.ns.ca/resource-management/geoscience-research-centre", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lynx Information Systems", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.lynx-info.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ww3.cnsopbdmc.ca/ProSourceFrontOffice/TermsAndConditions.aspx"}] closed [] ["other"] {"api": "https://cloud.cnsopb.ns.ca/index.php/s/BXW4GFgE7baSZho", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} 2014-09-03 2019-12-04 +r3d100010982 Mutopia Project eng [{"additionalName": "Free sheet music for everyone", "additionalNameLanguage": "eng"}] http://www.mutopiaproject.org/ [] ["http://www.mutopiaproject.org/contact.html"] The Mutopia Project offers sheet music editions of classical music for free download. These are based on editions in the public domain, and include works by Bach, Beethoven, Chopin, Handel, Mozart, and many others. A team of volunteers are involved in typesetting the music by computer using the LilyPond software. A growing number of modern editions, arrangements and new music are also available for download. The respective editors, arrangers and composers have chosen to make these works freely available. eng ["disciplinary"] {"size": "2.118 pieces of music", "updatedp": "2019-08-22"} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.mutopiaproject.org/index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["music", "performing arts", "sheet music"] [{"institutionName": "University of Waterloo", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://uwaterloo.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "How to contribute to Mutopia", "policyURL": "https://www.mutopiaproject.org/contribute.html"}, {"policyName": "wiki Guidelines", "policyURL": "https://github.com/chrissawer/The-Mutopia-Project/wiki"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://www.mutopiaproject.org/legal.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.mutopiaproject.org/legal.html"}] open [{"dataUploadLicenseName": "How to contribute", "dataUploadLicenseURL": "http://www.mutopiaproject.org/contribute.html"}] [] {"api": "http://www.mutopiaproject.org/ftp/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {"syndication": "http://www.mutopiaproject.org/latestadditions.rss", "syndicationType": "RSS"} mirror site at Portugal http://eremita.di.uminho.pt/mutopia/ 2014-09-03 2019-08-22 +r3d100010983 Export Import Data Bank eng [{"additionalName": "Tradestat", "additionalNameLanguage": "eng"}] https://commerce-app.gov.in/eidb/default.asp [] ["saleem@nic.in"] Export Import Data Bank - Tradestat is an initiative of Department of Commerce, Ministry of Commerce & Industry, Government of India. This databank provides international trade figures for imports, exports and total trade, based on data published by the Directorate General of Commercial Intelligence and Statistics (DGCI&S), Kolkata. It also provides commodity-wise, country-wise, and region-wise trade figures for exports and imports. eng ["other"] {"size": "", "updatedp": "2019-11-06"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.dgciskol.gov.in/Writereaddata/Downloads/QP-vision-mission-3-4-5.pdf [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["GeoNames.org", "India", "business", "commerce", "commodity control", "commodity exchanges", "economics", "exports", "finance", "imports", "industries", "statistics"] [{"institutionName": "Government of India, Ministry of Commerce and Industry, Department of Commerce", "institutionAdditionalName": ["DOC-NIC"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://commerce.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://commerce.gov.in/OfficerContact.aspx"]}, {"institutionName": "Government of India, Ministry of Commerce and Industry, Directorate General of Commerical Intelligence and Statistics", "institutionAdditionalName": ["DGCI&S"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dgciskol.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dgciskol.gov.in/Contact_Us.aspx"]}] [{"policyName": "Data Dissemination Policy", "policyURL": "http://www.dgciskol.gov.in/Writereaddata/Downloads/Data_dissemination_policy1.pdf"}, {"policyName": "Data Privacy Policy", "policyURL": "http://www.dgciskol.gov.in/Writereaddata/Downloads/Data_Privacy.pdf"}, {"policyName": "Quality Policy", "policyURL": "http://www.dgciskol.gov.in/Writereaddata/Downloads/QPolicy.pdf"}, {"policyName": "Terms & Conditions", "policyURL": "https://commerce.gov.in/InnerContent.aspx?Id=55"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.dgciskol.gov.in/Writereaddata/Downloads/Data_dissemination_policy1.pdf"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://commerce.gov.in/InnerContent.aspx?Id=56"}] closed [] [] yes {} ["none"] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-09-03 2019-11-25 +r3d100010985 Human Proteinpedia eng [] http://www.humanproteinpedia.org ["FAIRsharing_DOI:10.25504/FAIRsharing.xxdxtv", "RRID:nif-0000-02999"] ["http://hprd.org/help"] Human Proteinpedia is a community portal for sharing and integration of human protein data. This is a joint project between Pandey at Johns Hopkins University, and Institute of Bioinformatics, Bangalore. This portal allows research laboratories around the world to contribute and maintain protein annotations. Human Protein Reference Database (HPRD) integrates data, that is deposited in Human Proteinpedia along with the existing literature curated information in the context of an individual protein. All the public data contributed to Human Proteinpedia can be queried, viewed and downloaded. Data pertaining to post-translational modifications, protein interactions, tissue expression, expression in cell lines, subcellular localization and enzyme substrate relationships may be deposited. eng ["disciplinary"] {"size": "2.710 experiments; 15.231 protein entries; 1.960.352 peptide identifications; 4.855.122 MS/MS spectra; 150.368 protein expression, 17.410 post-translational modifications; 34.624 protein-protein ineractions; 2.906 subcellular localization", "updatedp": "2019-12-04"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "human proteins", "protein binding"] [{"institutionName": "Institute of Bioinformatics", "institutionAdditionalName": ["IOB"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ibioinformatics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johns Hopkins University, Pandey Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hopkinsmedicine.org/institute_basic_biomedical_sciences/research_centers/high_throughput_biology_hit/technology_center_networks_pathways/investigators/pandey.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Services", "policyURL": "https://dmp.data.jhu.edu/resources/jhu-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://guides.library.jhu.edu/copyright"}] restricted [] [] yes {} ["none"] [] yes no [] [] {} Human Proteinpedia supports HUPO Proteomics Standards Initiative mzTab Specification 2014-09-09 2021-11-16 +r3d100010986 Estonian Biocentre Free Data eng [] http://evolbio.ut.ee/ [] ["mait@ebc.ee"] A small genotype data repository containing data used in recent papers from the Estonian Biocentre. Most of the data pertains to human population genetics. PDF files of the papers are also freely available. eng ["institutional"] {"size": "", "updatedp": ""} 2012 ["eng", "est"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "biology", "gene expression", "genes", "genetics", "genomes", "genomics", "human genome", "human population genetics", "life sciences", "molecular biology", "nucleotide sequence", "nucleotides", "protein binding", "proteins"] [{"institutionName": "Estonian Biocentre", "institutionAdditionalName": ["EBC", "Eesti Biokeskus"], "institutionCountry": "EST", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ebc.ee/index.php?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access", "policyURL": "http://www.geenivaramu.ee/en/access-biopank/data-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://evolbio.ut.ee/"}] closed [] [] {} ["none"] [] yes unknown [] [] {} 2014-09-09 2019-10-24 +r3d100010987 Summit Station eng [] http://www.summitcamp.org/ [] ["http://www.summitcamp.org/contacts"] Summit Station is a US National Science Foundation-funded research station on the Greenland ice cap. The website offers near-real time weather summaries and a webcam. Other data associated with the Summit Station can be found through the International Arctic Systems for Observing the Atmosphere (IASOA) website: http://iasoa.org or from Greenland Environmental Observatory at geosummit.org eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Greenland", "air", "arctic regions", "snow", "temperature", "weather", "webcams", "winds"] [{"institutionName": "CH2M Hill Polar Services", "institutionAdditionalName": ["CPS"], "institutionCountry": "GRL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.polar.ch2m.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["katrine@polarfield.com", "sheeley@polarfield.com"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://nsf.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Summit Science Coordination Office", "institutionAdditionalName": ["SCO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geosummit.org/?page_id=12", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sco@summitcamp.org"]}] [{"policyName": "Digital Strategy and Open Data at NSF", "policyURL": "http://www.nsf.gov/digitalstrategy/"}, {"policyName": "NSF Dissemination and Sharing of Research Results", "policyURL": "http://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.summitcamp.org/resources/files"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nsf.gov/geo/geo-data-policies/index.jsp"}] closed [] [] {"api": "ftp://guest@ftp.summitcamp.org/../../mnt/data/common", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2014-09-09 2019-10-24 +r3d100010988 Indian Space Science Data Center eng [{"additionalName": "ISDA", "additionalNameLanguage": "eng"}, {"additionalName": "ISRO Science Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "ISSDC", "additionalNameLanguage": "eng"}] http://www.issdc.gov.in [] ["issdc@istrac.gov.in"] Indian Space Science Programme has the primary goal of promoting and establishing space science and technology programme. The ISSDC is the primary data center to be retrieved from Indian space science missions. This center is responsible for the collections of payload data and related ancillary data for space science missions such as Chandrayaan, Astrosat, Youthsat, etc. The payload data sets can include a range of information including satellite images, X-ray spectrometer readings, and other space observations. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astronautics", "astronomy", "astrophysics", "deep space missions", "ground station", "low earth orbit", "mars", "moon", "satellite launching ships", "space", "spacecraft"] [{"institutionName": "Department of Space, Indian Space Research Organisation", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.isro.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ISRO Telemetry, Tracking and Command Network", "institutionAdditionalName": ["ISTRAC"], "institutionCountry": "IND", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://istrac.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "India's Space Policy", "policyURL": "https://www.isro.gov.in/indias-space-policy-0"}, {"policyName": "National Remote Sensing Centre Terms", "policyURL": "http://www.nrsc.gov.in/?q=terms"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.isro.gov.in/terms-of-use"}] closed [] [] {} ["none"] [] unknown yes [] [] {} The data sets of the ISDA are based on the Planetary Data System (PDS) Standard that requires a Peer Review as part of the archiving process. 2014-09-09 2021-10-06 +r3d100010989 Exploration and Production Data Bank eng [{"additionalName": "BDEP", "additionalNameLanguage": "eng"}, {"additionalName": "Banco de Dados de Exploracao e Producao", "additionalNameLanguage": "por"}] http://rodadas.anp.gov.br/en/concession-of-exploratory-blocks/brazil-round-3/bdep-round-3 [] ["rodadas@anp.gov.br"] Founded in May 2000, the BDEP stores, organizes and makes available geophysical, geological and geochemical information. The database, after processing and analysis, provides help to the areas of sedimentary basins where there's more probability of oil and natural gas. The data acquisition and management of this collection guarantees Brazil to the domain about the potential of knowledge generated in hydrocarbons. eng ["other"] {"size": "", "updatedp": ""} 2000 ["eng", "por"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["basins (geology)", "geochemical modeling", "geological mapping", "geology", "geophysical surveys", "hydrocarbons", "natural gas", "oil wells", "petroleum", "seismic arrays"] [{"institutionName": "Agencia Nacional do Petroleo, Gas Natural e Biocombustiveis", "institutionAdditionalName": ["ANP", "National Agency of Petroleum, Natural Gas and Biofuels"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.anp.gov.br/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Servico Geologico do Brasil", "institutionAdditionalName": ["CPRM", "Geological Survey of Brazil"], "institutionCountry": "BRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cprm.gov.br/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Agreements Assignment", "policyURL": "http://rodadas.anp.gov.br/en/agreements-assignment"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://rodadas.anp.gov.br/en/concession-of-exploratory-blocks/brazil-round-3/bdep-round-3"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} 2014-09-10 2021-08-24 +r3d100010990 HCUPnet eng [{"additionalName": "Healthcare Cost and Utilization Project", "additionalNameLanguage": "eng"}] http://hcupnet.ahrq.gov [] ["hcup@ahrq.hhs.gov"] HCUPnet is a free, on-line query system based on data from the healthcare cost and utilization project (HCUP). It provides access to health statistics and information on hospital inpatient and emergency departments. HCUP is used to identify, track, analyze, and compare hospital statistics at the national, regional, and state levels. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["emergency service", "hospital utilization", "hospitals", "medical care, cost of", "medical statistics"] [{"institutionName": "U.S. Department of Health and Human Services, Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHRQ"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ahrq.gov/index.html", "institutionIdentifier": ["RRID:SCR_003604", "RRID:nlx_157753"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ahrq.gov/contact/index.html"]}] [{"policyName": "HHS Grants Policy Statement", "policyURL": "https://www.hhs.gov/sites/default/files/grants/grants/policies-regulations/hhsgps107.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.hhs.gov/sites/default/files/grants/grants/policies-regulations/hhsgps107.pdf"}] closed [] ["unknown"] {} ["none"] http://hcupnet.ahrq.gov/ [] no unknown [] [] {} HCUPnet is covered by Thomson Reuters Data Citation Index. More information about partner institutions can be found at https://www.hcup-us.ahrq.gov/db/hcupdatapartners.jsp 2014-09-17 2019-11-18 +r3d100010991 NER Databank eng [{"additionalName": "NEDFi Databank", "additionalNameLanguage": "eng"}, {"additionalName": "North East Databank", "additionalNameLanguage": "eng"}] http://databank.nedfi.com/ [] ["manoranjandas@nedfi.com"] A databank on the economy, agriculture, tourism, infrastructure, industry, and natural resources of the North Eastern Region of India; comprises seven states namely Arunachal Pradesh, Assam, Manipur, Meghalaya, Mizoram, Nagaland, Sikkim, Tripura (popularly known as Seven Sisters of India). The region (holds 7.9% of the total land space of the country) is of strategic importance for the country on account of the fact that nearly 90% of its borders form India's international boundaries. Thus information about population distribution, migration of peoples, vast natural resources, literacy rate, infrastructure development, cultural diversity, economy, etc. of this region are quite different from rest of the country.NER databank intends to provide information on multifarious activities of North Eastern states of India, thereby make it accessible to social commons. The North East Databank is a web portal created to provide a regional resource database for the North Eastern Region (NER). eng ["other"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://databank.nedfi.com/ [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["India", "agriculture", "culture", "culture", "economics", "energy conservation", "industry and education", "infrastructure (economics)", "natural resources", "tourism", "tourism"] [{"institutionName": "North Eastern Development Finance Corporation Ltd.", "institutionAdditionalName": ["NEDFi"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.nedfi.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mail@nedfi.com"]}] [{"policyName": "NEDFi Terms of Use", "policyURL": "http://www.nedfi.com/?q=terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nedfi.com/?q=copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nedfi.com/?q=disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nedfi.com/?q=terms"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-09-17 2019-11-18 +r3d100010992 Database on Indian Economy eng [{"additionalName": "DBIE", "additionalNameLanguage": "eng"}, {"additionalName": "RBI's Data Warehouse", "additionalNameLanguage": "eng"}, {"additionalName": "\u092d\u093e\u0930\u0924\u0940\u092f \u0905\u0930\u094d\u0925\u0935\u094d\u092f\u0935\u0938\u094d\u0925\u093e \u092a\u0930 \u0921\u0947\u091f\u093e\u092c\u0947\u0938", "additionalNameLanguage": "hin"}] https://dbie.rbi.org.in/DBIE/dbie.rbi?site=home [] ["https://www.rbi.org.in/Scripts/helpdesk.aspx"] DBIE is a data warehouse of the Department of Statistics and Information Management (DSIM), under the Reserve Bank of India. It disseminates data on various aspects of the Indian Economy through several of its publications, by means of it’s three parts – namely has mainly three parts Home, Statistics and Time-series Publications. Again, Home is divided into two parts viz. Important Economic Indicators & Economy at a Glance through dashboards. The entire statistics have been presented in seven subject areas - Real Sector, Corporate Sector, Financial Sector, Financial Market, External Sector, Public Finance, Socio-Economic Indicators. Sectors have different sub-sectors and reports under the sub-sectors have been organized on periodicity wise. Downloading of data can be possible into Excel, CSV, PDF formats. User can use the data for their research work with courtesy to the Database on Indian Economy, Reserve Bank of India. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["banking law", "economics", "equity", "finance", "india", "industrial statistics", "monetary policy", "money", "money market", "national income", "statistics"] [{"institutionName": "Reserve Bank of India", "institutionAdditionalName": ["RBI"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.rbi.org.in/home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rbi.org.in/scripts/helpdesk.aspx"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.rbi.org.in/scripts/righttoinfoact.aspx"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-09-25 2021-10-06 +r3d100010994 Japan Space Systems eng [] https://www.jspacesystems.or.jp/en/ [] ["https://www.jspacesystems.or.jp/en/contact/"] . >>>!!!<<< This repository is no longer available. >>>!!!<<< Japan Space Systems (J-spacesystems) aims to contribute to the advancement of Japanese industry, space systems technology, conservation of the earth environment, utilization of the space environment, and other research and development efforts. The system provides access to data from unmanned space missions and remote sensing instruments. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["observation (scientific method)", "operating systems (computers)", "space (architecture)--research", "space sciences"] [{"institutionName": "Japan Space Systems", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jspacesystems.or.jp/en_/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Information Security Policy", "policyURL": "https://www.jspacesystems.or.jp/en/about/security/#InformationSecurityPolicy"}, {"policyName": "Terms of Use", "policyURL": "https://www.jspacesystems.or.jp/en/about/security/#TermsOfUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.jspacesystems.or.jp/en/about/security/#InformationSecurityPolicy"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://www.jspacesystems.or.jp/en_/feed/", "syndicationType": "RSS"} 2014-09-22 2022-01-11 +r3d100010995 Landsat Missions eng [{"additionalName": "formerly: Web-enabled Landsat data", "additionalNameLanguage": "eng"}] https://www.usgs.gov/core-science-systems/nli/landsat [] ["https://landsat.usgs.gov/contact"] The Web-enabled Landsat data (WELD) project combines geophysical and biophysical Landstat data for the purposes of long-term preservation and monitoring of national, regional, and local data. WELD products are already "terrain-corrected and radiometrically calibrated" so as to be more easily accessible to researchers. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["biophysics", "earth", "earth sciences", "geological mapping", "geological surveys", "geology", "geophysical surveys", "geospatial data", "land cover", "remote sensing", "satellites"] [{"institutionName": "United States Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.usgs.gov/", "institutionIdentifier": ["RRID:SCR_010168", "RRID:nlx_157935"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://answers.usgs.gov/cgi-bin/gsanswers?tmplt=2"]}] [{"policyName": "Policies and Notices", "policyURL": "http://www.usgs.gov/laws/policies_notices.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.usgs.gov/laws/info_policies.html"}] closed [] ["unknown"] {} ["DOI"] https://www.usgs.gov/products/data-and-tools/data-management/data-citation [] no yes [] [] {} 2014-09-22 2021-10-06 +r3d100010996 Comprehensive Large Array-data Stewardship System eng [{"additionalName": "CLASS", "additionalNameLanguage": "eng"}] https://www.avl.class.noaa.gov/saa/products/welcome;jsessionid=23C2FA8535069022D56291072D70ED6B ["biodbcore-001652"] ["class.help@noaa.gov"] CLASS is a data repository for environmental data collected by NOAA. Products include data from polar orbiting satellites, meteorological satellites, sea surface temperature (SST) data, sea surface height data, and more. eng ["institutional"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.goes-r.gov/users/class.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmospheric science", "earth science", "environmental agencies", "geospatial data", "meteorology", "ocean", "remote sensing", "satellite", "weather"] [{"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/index.html", "institutionIdentifier": ["RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.noaa.gov/contacts.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.noaa.gov/foia/"}] closed [] ["unknown"] {"api": "https://www.avl.class.noaa.gov/saa/products/ftpsInstructions", "apiType": "FTP"} ["none"] [] unknown yes [] [] {"syndication": "https://www.avl.class.noaa.gov/release/system_help/rss_feed/index.htm", "syndicationType": "RSS"} CLASS data is formatted for NetCDF visualization 2014-09-22 2021-11-16 +r3d100010997 NCBI Clone DB eng [{"additionalName": "NCBI clone registry", "additionalNameLanguage": "eng"}] https://ncbiinsights.ncbi.nlm.nih.gov/?s=clone+db [] [] >>>!!! NCBI announced plans to retire the Clone DB web interface. Pursuant to this retirement, starting on May 27, 2019, all web pages associated with Clone DB and CloneFinder will redirect to this blog post. Links to Clone DB from the NCBI home page will also be going away.!!!<<< Clone DB contains information about genomic clones and cDNA and cell-based libraries for eukaryotic organisms. The database integrates this information with sequence data, map positions, and distributor information. At this time, Clone DB contains records for genomic clones and libraries, the collection of MICER mouse gene targeting clones and cell-based gene trap and gene targeting libraries from the International Knockout Mouse Consortium, Lexicon and the International Gene Trap Consortium. A planned expansion for Clone DB will add records for additional gene targeting and gene trap clones, as well as cDNA clones. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "cells", "cloning - research", "eukaryotic cells", "genomes", "human", "mouse"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] closed [] [] yes {"api": "ftp://ftp.ncbi.nih.gov/repository/clone/", "apiType": "FTP"} ["none"] [] yes yes [] [] {"syndication": "https://www.ncbi.nlm.nih.gov/feed/rss.cgi?ChanKey=CloneDBNews", "syndicationType": "RSS"} 2014-05-12 2021-10-20 +r3d100011000 Environment Climate Data Sweden eng [{"additionalName": "ECDS", "additionalNameLanguage": "eng"}, {"additionalName": "SND-KM (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Swedish National Data Service for Climate and Environment", "additionalNameLanguage": "eng"}] https://snd.gu.se/en/information-about-ecds [] [] The repository is no longer available >>>!!!<<< 2020-02-21: no more access to "Environment Climate Data Sweden" >>>!!!<<< The transfer of records from the Environment Climate Data Sweden (ECDS) database to the Swedish National Dataservice (SND) https://www.re3data.org/repository/r3d100010146 was completed in 2019. SND is a national research infrastructure with a primary function to support the accessibility, preservation, and re-use of research data and related materials. You can search the SND research data portal specifically for Natural Science or Agricultural and Veterinary Sciences datasets. Data descriptions with associated datasets, or a direct reference/URL to data, have been migrated from the ECDS portal to the SND research data portal. Previous links to these data are now automatically directed to an SND catalogue entry. Records in the ECDS catalogue that only contained metadata (ie information that data could be accessed through another portal, e.g. Pangea), now link directly to the portal in question. If you want to make one of those data descriptions searchable in SND’s catalogue, please contact SND on snd@snd.gu.se. A small number of records were neither migrated to SND nor redirected to external providers, and they redirect. Contact SND on snd@snd.gu.se if you want more information about the closing of the ECDS portal and the migration of data descriptions to SND’s research data catalogue. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 2019 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "atmosphere", "biodiversity", "biology", "biosphere", "climatic changes", "climatic changes - forecasting", "conservation of natural resources", "cryosphere", "earth", "earth sciences", "environmental health", "environmental sciences", "hydrology", "land use", "natural areas", "natural resources", "ocean", "oceanography", "paleoclimatology", "soils", "solar activity", "sweden"] [{"institutionName": "Swedish National Data Service", "institutionAdditionalName": ["SND", "SND", "Svensk nationell datatj\u00e4nst"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://snd.gu.se/en", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["snd@gu.se"]}, {"institutionName": "Swedish Research Council", "institutionAdditionalName": ["VR", "Vetenskapsr\u00e5det"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.vr.se/inenglish.4.12fff4451215cbd83e4800015152.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["vr@vr.se"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ecds.se/pages/faq"}] restricted [] ["CKAN"] {} ["DOI"] [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} ECDS has been Integrated into the Swedish National Data Service https://www.re3data.org/repository/r3d100010146, and membership of ICSU World Data System was resignated: 01 Jan 2018. 2014-09-25 2020-02-21 +r3d100011001 Better Access to Data for Global Interdisciplinary Research eng [{"additionalName": "BADGIR", "additionalNameLanguage": "eng"}] https://nesstar.ssc.wisc.edu/index.html [] ["cdhadata@ssc.wisc.edu"] BADGIR is an on-line data archive at the University of Wisconsin - Madison. From this portal you can browse or search data documentation (e.g., metadata, codebooks) and univariate summary statistics (e.g., mean, frequency counts). The database contains documented survey results from various survey-research projects in the US, Central America, and South America. Some historical datasets also (e.g. of slave-trade records). eng ["disciplinary", "other"] {"size": "45 studies", "updatedp": "2014-09-10"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ssc.wisc.edu/cdha/services/badgir.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Central Americans", "South Americans", "aging", "americans", "data libraries", "demographic surveys", "ecology", "health", "slave trade", "social sciences", "statistics"] [{"institutionName": "University of Wisconsin-Madison, Center for Demography and Ecology", "institutionAdditionalName": ["CDE"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cde.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Madison, Center for Demography of Health and Aging", "institutionAdditionalName": ["CDHA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cdha.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Madison, Data and Information Services Center", "institutionAdditionalName": ["DISC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.disc.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wisconsin-Madison, Social Science Computing Cooperative", "institutionAdditionalName": ["SSCC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ssc.wisc.edu/sscc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BADGIR Registration Page", "policyURL": "https://www.ssc.wisc.edu/cdha/services/terms.html"}, {"policyName": "Human Research Protection Program", "policyURL": "https://kb.wisc.edu/gsadminkb/search.php?cat=2902"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.disc.wisc.edu/restricted/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ssc.wisc.edu/cdha/services/terms.html"}] restricted [] ["Nesstar"] {"api": "http://www.nesstar.com/software/oai_pmh_server.html", "apiType": "OAI-PMH"} ["hdl"] https://www.ssc.wisc.edu/cdha/services/terms.html [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2014-09-10 2019-12-04 +r3d100011002 National Weather Service, Alaska Region Headquarters eng [{"additionalName": "NWS ARHQ", "additionalNameLanguage": "eng"}, {"additionalName": "NWS Alaska Region HQ", "additionalNameLanguage": "eng"}] https://www.weather.gov/arh/ [] ["https://www.weather.gov/help", "samuel.shea@noaa.gov"] This site contains active weather alerts, warnings, watches, and advisories concerning the US State of Alaska and the surrounding waters. Near-real time data are available as are historical records. Links to the National Data Buoy Center are provided for coastal and ocean conditions around Alaska. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.weather.gov/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Bering Sea", "Interior Alaska (Alaska)", "advisory boards--U.S. states", "arctic regions", "hydrology", "meteorology", "precipitation (meteorology)", "weather", "weather forecasting"] [{"institutionName": "U.S Department of Commerce, National Oceanic and Atmospheric Administration, National Weather Service", "institutionAdditionalName": ["NWS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.weather.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.weather.gov/about/Contact"]}] [{"policyName": "NATIONAL WEATHER SERVICE POLICY DIRECTIVE", "policyURL": "http://www.nws.noaa.gov/directives/sym/pd06001curr.pdf"}, {"policyName": "Policy on the Information Quality Act", "policyURL": "https://www.cio.noaa.gov/services_programs/info_quality.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "http://www.weather.gov/rss_page.php?site_name=arh", "syndicationType": "RSS"} The headquarters of the National Weather Service is located in Silver Spring, MD with regional headquarters located in Kansas City, Mo.; Bohemia, N.Y.; Fort Worth, Texas; Salt Lake City, Utah; Anchorage, Alaska; and Honolulu, Hawaii 2014-09-12 2018-12-19 +r3d100011003 National Weather Service, Fairbanks, Alaska Region eng [{"additionalName": "NWS, Fairbanks AK", "additionalNameLanguage": "eng"}] https://www.weather.gov/afg/ [] ["https://www.weather.gov/Contact", "https://www.weather.gov/help", "nws.ar.pafg.webauthors@noaa.gov"] The National Weather Service, Fairbanks provides weather data relating to and observed in the Fairbanks, AK area. Data includes current, past, and future weather. Databases are organized primarily by the type of data (e.g. weather data, climate data, hydrology, warning/hazard alerts) and then are searchable by research location. eng ["institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.weather.gov/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Fairbanks (Alaska)", "climate", "forecasting", "hydrology", "marine biology", "meteorology", "precipitation (meteorology)", "rivers - economic aspects", "weather", "weather control", "weather forecasting"] [{"institutionName": "National Oceanic and Atmospheric Administration, National Weather Service", "institutionAdditionalName": ["NOAA, NWS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.weather.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.weather.gov/contact-message"]}] [{"policyName": "DATA RIGHTS", "policyURL": "http://www.nws.noaa.gov/sp/datarights.htm"}, {"policyName": "NATIONAL WEATHER SERVICE POLICY DIRECTIVE", "policyURL": "http://www.nws.noaa.gov/directives/sym/pd06001curr.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nws.noaa.gov/directives/sym/pd06001curr.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.weather.gov/disclaimer"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://alerts.weather.gov/", "syndicationType": "ATOM"} 2014-09-12 2018-11-28 +r3d100011004 NCBI Influenza Virus Resource eng [{"additionalName": "Influenza Virus Database", "additionalNameLanguage": "eng"}, {"additionalName": "NCBI Flu", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/genomes/FLU/Database/nph-select.cgi?go=database ["FAIRsharing_doi:10.25504/FAIRsharing.13cdzp", "RRID:SCR_002984", "RRID:nif-0000-03023"] ["info@ncbi.nlm.nih.gov"] This resource allows users to search for and compare influenza virus genomes and gene sequences taken from GenBank. It also provides a virus sequence annotation tool and links to other influenza resources: NIAID project, JCVI Flu, Influenza research database, CDC Flu, Vaccine Selection and WHO Flu. eng ["disciplinary", "institutional"] {"size": "> 700.000 sequences", "updatedp": "2019-11-20"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Influenza viruses", "genomes", "genomics", "influenza", "phylogenetic tree", "virusesvariation"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] open [{"dataUploadLicenseName": "Submitting Influenza Virus Sequences to GenBank", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/genome/viruses/variation/help/flu-help-center/submit-flu-sequences/"}] ["unknown"] yes {"api": "ftp://ftp.ncbi.nih.gov/genomes/INFLUENZA/", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/genome/viruses/variation/publications/ [] yes yes [] [] {} NCBI influenza virus resource is also part of NCBI virus variation r3d100011005 2014-05-13 2019-11-20 +r3d100011005 NCBI Virus Variation eng [{"additionalName": "Dengue Virus Database", "additionalNameLanguage": "eng"}, {"additionalName": "Influenza Virus Database", "additionalNameLanguage": "eng"}, {"additionalName": "NCBI Virus", "additionalNameLanguage": "eng"}, {"additionalName": "Rotavirus Database", "additionalNameLanguage": "eng"}, {"additionalName": "West Nile Virus Database", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/genome/viruses/variation/ ["RRID:SCR_013790"] ["genomes@ncbi.nlm.nih.gov"] NCBI Virus Variation is a specialized database which collects tools to provide searchable resources in the fields of Influenza virus, Dengue virus, and West Nile virus. Specific BLAST databases are listed. Their new publications are also available in their site. Rotavirus database will be added in their site soon. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/genome/viruses/variation/help/ [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Dengue viruses", "Rotaviruses", "West Nile virus", "influenza viruses", "virus sequence"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] closed [] ["unknown"] {"api": "ftp://ftp.ncbi.nih.gov/refseq/release/viral", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/genome/viruses/variation/help/ [] yes yes [] [] {} 2014-05-13 2020-09-14 +r3d100011006 World Data Centre for Geomagnetism, Mumbai eng [{"additionalName": "WDC - Geomagnetism, Mumbai", "additionalNameLanguage": "eng"}, {"additionalName": "WDC Mumbai", "additionalNameLanguage": "eng"}] http://wdciig.res.in/WebUI/Home.aspx [] ["http://wdciig.res.in/WebUI/ContactUS.aspx", "wdc@iigs.iigm.res.in"] The World Data Centre for Geomagnetism, Mumbai is the part of the Indian Institute of Geomagnetism, an autonomous research institute under the Department of Science and Technology, Government of India. This Centre is a part of ICSU World Data Centre System operated since 1971. This Centre has collected a comprehensive set of analog and digital geomagnetic data as well as indices of geomagnetic activity supplied from a worldwide network of magnetic observatories. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1971 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://wdciig.res.in/WebUI/About.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Asia", "India", "antarctic geomagnetism", "atmospheric science", "earth sciences", "geomagnetic indexes", "geomagnetism", "geophysical surveys", "geophysics", "observatory", "solid earth geomagnetism", "space sciences"] [{"institutionName": "Government of India, Department of Science and Technology", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://dst.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dst.gov.in/contactus"]}, {"institutionName": "Indian Institute of Geomagnetism, Mumbai", "institutionAdditionalName": ["IIG", "\u092d\u093e\u0930\u0924\u0940\u092f \u092d\u0942\u091a\u0941\u0902\u092c\u0915\u0924\u094d\u0935 \u0938\u0902\u0938\u094d\u0925\u093e\u0928"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://iigm.res.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bveena@iigs.iigm.res.in", "http://iigm.res.in/index.php/contact"]}] [{"policyName": "Data Usage rules", "policyURL": "http://wdciig.res.in/WebUI/Rule.aspx"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://wdciig.res.in/WebUI/Rule.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] closed [] ["unknown"] {} ["none"] [] unknown yes ["WDS"] [] {} World Data Centre for Geomagnetism, Mumbai is regular member of ICSU World Data System. Data is made available in machine readable form on written request or personal visit to the data centre. 2014-09-12 2018-12-19 +r3d100011007 Oral Cancer Gene Database eng [{"additionalName": "OrCGDB", "additionalNameLanguage": "eng"}] http://www.actrec.gov.in/OCDB/index.htm ["OMICS_21744"] ["ngadewal@actrec.gov.in", "szingde@actrec.gov.in"] Oral Cancer Gene Database is an initiative of the Advanced Centre for Treatment, Research and Education in Cancer, Navi Mumbai. The present database, version II, consists of 374 genes. It is developed as a user friendly site that would provide the scientist, information and external links from one place. The database is accessed through a list of all genes, and Keyword Search using gene name or gene symbol, chromosomal location, CGH (in %), and molecular weight. Interaction Network shows the interaction between genes for particular biological processes and molecular functions. eng ["disciplinary", "institutional"] {"size": "374 genes", "updatedp": "2018-28-11"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://tmc.gov.in/actrec/index.php/about-us [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biology", "cancer", "cancer genes", "cancer sequenzing", "chromosomal proteins", "chromosome abnormalities", "chromosomes", "gene expression", "genes", "genetics", "india", "life sciences", "molecular biology", "mutation (biology)", "protein binding", "protein-protein interactions", "proteins", "tissues"] [{"institutionName": "Advanced Centre for Treatment, Research and Education in Cancer, Tata Memorial Centre", "institutionAdditionalName": ["ACTREC, Tata Memorial Centre"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://tmc.gov.in/actrec/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mail@actrec.gov.in"]}] [{"policyName": "Disclaimer", "policyURL": "https://tmc.gov.in/actrec/index.php/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://tmc.gov.in/actrec/index.php/disclaimer"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} 2014-09-12 2018-11-28 +r3d100011008 Systematic Review Data Repository eng [{"additionalName": "SRDR", "additionalNameLanguage": "eng"}] https://srdr.ahrq.gov/ [] ["SRDR@ahrq.hhs.gov"] The Evidence-based Practice Center (EPC) at Tufts Medical Center, with support from the Agency for Healthcare Research and Quality (AHRQ), has developed the Systematic Review Data Repository (SRDR), which is a Web-based tool for data extraction and storage of systematic review data. Potential users include patients, policy makers/stakeholders, independent researchers, research centers, and funders of research. eng ["disciplinary", "other"] {"size": "152 Public Project Complete", "updatedp": "2019-12-04"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ahrq.gov/cpi/about/otherwebsites/srdr.ahrq.gov/index.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["SRs", "clinical trials", "data extraction grid", "evidence-based medicine", "methodological research"] [{"institutionName": "Tufts Medical Center, Evidence-based Practice Center", "institutionAdditionalName": ["EPC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://archive.ahrq.gov/research/findings/evidence-based-reports/centers/nemcepc.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jlau1@tuftsmedicalcenter.org"]}, {"institutionName": "U.S. Department of Health & Human Services, Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHRQ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ahrq.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AHRQ Clinical Guidelines and Recommendations", "policyURL": "https://www.ahrq.gov/professionals/clinicians-providers/guidelines-recommendations/index.html"}, {"policyName": "SRDR Comment Policy", "policyURL": "https://srdr.ahrq.gov/home/policies#data_sharing"}, {"policyName": "SRDR Data Sharing Policy", "policyURL": "https://srdr.ahrq.gov/home/policies#data_sharing"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}] restricted [] ["MySQL"] {"api": "https://srdr.ahrq.gov/announcement", "apiType": "other"} ["none"] https://srdr.ahrq.gov/home/citing_srdr [] yes yes [] [] {} 2014-09-12 2019-12-04 +r3d100011009 NCBI Third Party Annotation eng [{"additionalName": "TPA", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/genbank/tpa/ ["RRID:SCR_003593", "RRID:nlx_157738"] ["pubmedcentral@ncbi.nlm.nih.gov", "refseq-admin@ncbi.nlm.nih.gov"] TPA is a database that contains sequences built from the existing primary sequence data in GenBank. TPA records are retrieved through the Nucleotide Database and feature information on the sequence, how it was cataloged, and proper way to cite the sequence information. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/genbank/tpafaq/#nxdiff [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bioinformatics", "Biology", "Gene expression", "Genes", "Nucleotide sequence"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/#copyright"}] restricted [{"dataUploadLicenseName": "Submissions through BankIT", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/WebSub/?tool=genbank"}] ["unknown"] yes {"api": "https://www.ncbi.nlm.nih.gov/genbank/submit/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} 2014-05-14 2021-08-24 +r3d100011010 Greenland Climate Network eng [{"additionalName": "GC-NET", "additionalNameLanguage": "eng"}] http://cires1.colorado.edu/science/groups/steffen/gcnet/ [] ["konrad.steffen@colorado.edu"] The Greenland Climate Network provides year-round data on the climate of Greenland's ice sheet. These data are available to researchers by request through the Greenland Climate Network Data Request Web page. Users may also download data from Humboldt and TUNU-N sites from their FTP Server-ftp://seaice.colorado.edu/pub/parca/. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://cires.colorado.edu/science/groups/steffen/gcnet/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["climatology", "glaciology", "humidity", "ice sheets", "measurements", "physical sciences", "pressure", "temperature", "wind"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.VBLzAaMl864"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Colorado, Cooperative Institute for Research in Environmental Sciences, Steffen research group", "institutionAdditionalName": ["CIRES, Steffen research group"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cires.colorado.edu/science/groups/steffen/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cires.colorado.edu/science/groups/steffen/contact.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cires.colorado.edu/science/groups/steffen/gcnet/Gc-net_documentation_Nov_10_2000.pdf"}] closed [] ["unknown"] {"api": "ftp://seaice.colorado.edu/pub/parca/", "apiType": "FTP"} ["none"] http://cires.colorado.edu/science/groups/steffen/gcnet/Gc-net_documentation_Nov_10_2000.pdf [] unknown yes [] [] {} 2014-09-12 2021-08-24 +r3d100011011 Pakistan Petroleum Exploration & Production Data Repository eng [{"additionalName": "PPEPDR", "additionalNameLanguage": "eng"}, {"additionalName": "PetroBank", "additionalNameLanguage": "eng"}] http://www.ppepdr.net/ ["biodbcore-001536"] ["http://www.ppepdr.net/contact.htm"] The PPEPDR contains information regarding the availability and security of sustainable supply of oil and gas for economic development and strategic requirements of Pakistan and to coordinate development of natural resources of energy and minerals. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["gas", "minerals", "natural gas", "natural resources", "oil industries", "petroleum"] [{"institutionName": "Landmark Resources Pakistan", "institutionAdditionalName": ["LMKR Pakistan", "Mathtech, formerly"], "institutionCountry": "PAK", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.lmkr.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lmkr.com/contact-us/", "sakhtar@lmkr.com"]}, {"institutionName": "Ministry of Energy, Petroleum Division", "institutionAdditionalName": ["Government of Pakistan, Ministry of Petroleum Natural Resources (formerly)", "MPNR (formerly)"], "institutionCountry": "PAK", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.mpnr.gov.pk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mpnr.gov.pk/frmDetails.aspx"]}, {"institutionName": "Pakistan Petroleum Information Service", "institutionAdditionalName": ["PPIS"], "institutionCountry": "PAK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ppisonline.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ppisonline.com/html/contact.html"]}] [{"policyName": "Government Policies", "policyURL": "http://ppisonline.com/gov-policy/"}, {"policyName": "Terms of Use", "policyURL": "http://www.lmkr.com/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ppepdr.net/online_data_access_contract.htm"}] closed [] ["unknown"] {} ["none"] [] no yes [] [] {} The PetroBank as the National Data Repository. Currently the repository contains more than 10 TB of secure petrotechnical data: http://www.ppepdr.net/pdf/PPEPDR-brochure.zip 2014-09-12 2021-11-16 +r3d100011012 India Environment Portal eng [] http://www.indiaenvironmentportal.org.in/ ["biodbcore-001703"] ["http://www.indiaenvironmentportal.org.in/content/contact-us/"] The India Environment Portal provides open access to information about environmental and developmental issues in India. The Portal aggregates and presents data from research institutions, government bodies, NGOs, universities, the mass media, and experts across various issues of environmental management. eng ["disciplinary", "institutional", "other"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.indiaenvironmentportal.org.in/content/about-us/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["India", "agriculture", "air pollution", "atmosphere", "climate and civilization", "climate change mitigation", "environmental impact analysis", "environmental management", "forests and forestry", "irrigation canals and flumes - environmental aspects", "mining claims", "natural disasters", "water pollution", "water resources development"] [{"institutionName": "Centre for Science and Environment", "institutionAdditionalName": ["CSE"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cseindia.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cse@cseindia.org /", "kiran@cseindia.org"]}, {"institutionName": "Government of India, National Knowledge Commission", "institutionAdditionalName": ["NKC"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.wikipedia.org/wiki/National_Knowledge_Commission", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2014", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.5/in/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.indiaenvironmentportal.org.in/content/about-us/"}] closed [] ["other"] {} ["none"] [] no yes [] [] {"syndication": "http://www.indiaenvironmentportal.org.in/rss.xml", "syndicationType": "RSS"} 2014-09-12 2021-11-16 +r3d100011013 Språkbankentext swe [{"additionalName": "The Swedish Language Bank", "additionalNameLanguage": "eng"}] https://spraakbanken.gu.se/eng [] ["https://spraakbanken.gu.se/eng/information/contact", "sb-info@svenska.gu.se"] Språkbanken (the Swedish Language Bank) was established in 1975 as a national center located in the Faculty of Arts, University of Gothenburg. Alléns groundbreaking corpus linguistic research resulted in the creation of one of the first large electronic text corpora in another language than English, with one million words of newspaper text. The task of Språkbanken is to collect, develop, and store (Swedish) text corpora, and to make linguistic data extracted from the corpora available to researchers and to the public. eng ["disciplinary"] {"size": "462 corpora; 15.209.905.978 token; 1.060.368.920 sentences", "updatedp": "2018-28-11"} 1975 ["eng", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://spraakbanken.gu.se/eng/about-us/about-spr%C3%A5kbanken [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Swedish language", "concordances", "corpora", "language technology", "linguistics"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "SWE-CLARIN", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sweclarin.se/eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@sweclarin.se"]}, {"institutionName": "Swedish National Data Service", "institutionAdditionalName": ["SND", "Svensk Nationell Datatj\u00e4nst"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://snd.gu.se/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Gothenburg, Faculty of Arts, Department of Swedish", "institutionAdditionalName": ["G\u00f6teborgs Universitet, Humanistiska fakulteten, Institutionen f\u00f6r svenska spraket"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.svenska.gu.se/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sb-info@svenska.gu.se"]}] [{"policyName": "Data Seal of Approval Assessment (2008-2018)", "policyURL": "https://assessment.datasealofapproval.org/assessment_208/seal/html/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.en.html"}] restricted [] ["DSpace"] yes {"api": "https://ws.spraakbanken.gu.se/docs/", "apiType": "REST"} ["hdl"] [] unknown yes ["CLARIN certificate B", "DSA"] [] {} 2014-09-12 2021-10-20 +r3d100011014 Norwegian Meteorological Institute, Free Meteorological Data eng [{"additionalName": "MET Norway", "additionalNameLanguage": "eng"}, {"additionalName": "Meteorologisk institutt", "additionalNameLanguage": "nob"}] https://www.met.no/en/free-meteorological-data [] ["https://www.met.no/en/contact-us", "post@met.no"] The Norwegian Meteorological Institute supplies climate observations and weather data and forecasts for the country and surrounding waters (including the Arctic). In addition commercial services are provided to fit customers requirements. Data are served through a number of subsystems (information provided in repository link) and cover data from internal services of the institute, from external services operated by the institute and research projects where the institute participates. Further information is provided in the landing page which also contains entry points some of the data portals operated. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng", "nor"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.met.no/en/About-us/About-MET-Norway [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Svalbard (Norway)", "arctic", "cryosphere", "meteorology", "oceanography", "sea ice", "weather", "weather forecasting"] [{"institutionName": "Norwegian Meteorological Institute", "institutionAdditionalName": ["Metorologisk institutt"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.met.no/en", "institutionIdentifier": ["ROR:001n36p86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About Yr, the API and our privacy policy", "policyURL": "https://hjelp.yr.no/hc/en-us/categories/200450271-About-Yr-the-API-and-our-privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/no/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hjelp.yr.no/hc/en-us/categories/200450271-About-Yr-the-API-and-our-privacy-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data.norge.no/nlod/en/"}] closed [] ["unknown"] {"api": "http://ftp.met.no", "apiType": "FTP"} ["DOI"] https://hjelp.yr.no/hc/en-us/articles/360001946134-Data-access-and-terms-of-service [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Norway is a member of the World Meteorological Organization (WMO), the European Centre for Medium Range Weather Forecasts (ECMWF), and the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT). The institute is actively involved in the work of these organisations. 2014-09-12 2021-07-12 +r3d100011015 Internet Archive eng [] https://archive.org/ ["RRID:SCR_001682", "RRID:nif-0000-10172"] ["https://archive.org/about/contact.php", "info@archive.org"] The Internet Archive includes texts, audio, moving images, software, and archived web pages. eng ["other"] {"size": "518 billion web pages; 28 million books and texts; 14 million audio recordings (including 220.000 live concerts); 6 million videos (including 1 million Television News programs); 3,5 million images; 580.000 software programs", "updatedp": "2021-09-06"} 1996 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://archive.org/about/faqs.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["audio-visual archives", "digital library", "internet archive", "software documentation", "wayback machine", "web archives"] [{"institutionName": "ALEXA Internet", "institutionAdditionalName": ["an amazon company"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.alexa.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.alexa.com/about/management"]}, {"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sloan.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sloan.org/contact-us/"]}, {"institutionName": "Kahle-Austin Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://fconline.foundationcenter.org/fdo-grantmaker-profile/?key=KAHL009", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["513b Simonds Loop, San Francisco, CA 94129-1449"]}, {"institutionName": "William and Flora Hewlett Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hewlett.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hewlett.org/about-us/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://archive.org/about/terms.php"}, {"policyName": "The Oakland Archive Policy", "policyURL": "http://www2.sims.berkeley.edu/research/conferences/aps/removal-policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://archive.org/about/terms.php"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://archive.org/about/terms.php"}] ["unknown"] {"api": "https://archive.org/services/docs/api/", "apiType": "other"} ["none"] https://archive.org/about/faqs.php#291 [] no yes [] [] {"syndication": "https://archive.org/iathreads/posts-display-new.php?forum=faqs&mode=rss", "syndicationType": "RSS"} 2014-09-15 2021-09-06 +r3d100011016 National Geothermal Data System eng [{"additionalName": "NGDS", "additionalNameLanguage": "eng"}] http://geothermaldata.org/ ["RRID:SCR_006545", "RRID:nlx_155574"] ["http://geothermaldata.org/contact", "ngdsweb@geothermaldata.org"] The National Geothermal Data System (NGDS) is a distributed data system that provides access to information related to geothermal energy from a network of data providers, including academic researchers, private industry, and state and federal agencies. eng ["disciplinary"] {"size": "86.784 datasets", "updatedp": "2018-11-29"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] http://geothermaldata.org/about/faq#what [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["alternative energy", "energy development", "geothermal resources", "hotspots"] [{"institutionName": "Association of American State Geologists", "institutionAdditionalName": ["AASG"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.stategeologists.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NGDS Partners", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://geothermaldata.org/ngds/partners", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Energy Information, Geothermal Data Repository", "institutionAdditionalName": ["OpenEI GDR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://gdr.openei.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Southern Methodist University, Geothermal Laboratory", "institutionAdditionalName": ["SMU Geothermal Lab"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.smu.edu/Dedman/Academics/Programs/GeothermalLab", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Geothermal Technologies Office", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/eere/geothermal/geothermal-energy-us-department-energy", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://energy.usgs.gov/OtherEnergy/Geothermal.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://geothermaldata.org/data/contribute-data"}] restricted [] ["CKAN"] {"api": "http://geothermaldata.org/ngds-exchange-methods-and-metadata#quicktabs-ngds_exchange_methods_and_metada=2", "apiType": "other"} ["none"] [] yes yes [] [] {} NGDS data and metadata can be transferred according to Open Geospatial Consortium (OGC) protocols such as Web Map Service (WMS), Web Feature Service (WFS), and Catalog Service for the Web (CSW). 2014-09-15 2018-12-19 +r3d100011017 Primate Life Histories database eng [{"additionalName": "PLHDB", "additionalNameLanguage": "eng"}] https://plhdb.org/ [] ["plhdb-admin@nescent.org", "plhdb@nescent.org"] This database contains individual-based life history data that have been collected from wild primate populations by nine working group participants over a minimum of 19 years. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://plhdb.org/jsp/about.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["anthropology", "field studies", "primates"] [{"institutionName": "National Evolutionary Synthesis Center, Working Group Evolutionary Ecology of Primate Life Histories.", "institutionAdditionalName": ["NESCent"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nescent.org/science/awards_summary.php?id=19", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "PLHD Working Group Internal Agreement", "policyURL": "http://nescent.org/wg/plhd/images/d/d7/Final_Internal_MOU.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/copyleft/gpl.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://plhdb.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nescent.org/wg/plhd/images/d/d7/Final_Internal_MOU.pdf"}] restricted [] ["other"] yes {} ["none"] https://plhdb.org/ [] unknown unknown [] [] {} demo site available 2014-09-15 2018-11-29 +r3d100011018 NARSTO eng [{"additionalName": "Better air quality for North America", "additionalNameLanguage": "eng"}, {"additionalName": "North American Research Strategy for Tropospheric Ozone", "additionalNameLanguage": "eng"}] ["biodbcore-001537"] [] >>>!!!<<< the repository is offline >>>!!!<<< NARSTO is dedicated to improving management of air quality in North America. Additionally, NARSTO is working to improve collaboration between the air-quality and health-sciences research communities, to advance understanding of the scientific issues involved in effecting a multi-pollutant/multi-media approach to air quality management, and to increase understanding of the linkages between air quality and climate change. NARSTO is represented by private and public organizations in Canada, Mexico, and the United States. NARSTO was terminated as of December 31, 2010. While data remain available via the original NARSTO Data Archive, the permanent data archive is maintained by the NASA Langley Research Center Atmospheric Science Data Center eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 1995 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://eosweb.larc.nasa.gov/project/narsto/guide/base_narsto_project.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Canada", "Mexico", "North America", "United States", "aerosols", "air quality", "air quality management", "atmospheric chemistry", "climate change", "climatology", "emissions estimates", "health sciences", "meteorology", "pollutants", "tropospheric chemistry"] [{"institutionName": "NARSTO Qualty Systems Science Center", "institutionAdditionalName": ["QSSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA Langley Research Center, Atmospheric Science Data Center", "institutionAdditionalName": ["ASDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#.VBbsq6Ml864"]}] [{"policyName": "Data Management Policy", "policyURL": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/DM_develop_guide.pdf"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html#.VBbrKqMl864"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/DM_develop_guide.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/datapolicy.html"}] closed [{"dataUploadLicenseName": "Data Management Policy", "dataUploadLicenseURL": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/DM_develop_guide.pdf"}] ["unknown"] {"api": "https://cdiac.ess-dive.lbl.gov/programs/NARSTO/", "apiType": "FTP"} ["none"] https://eosweb.larc.nasa.gov/citing-asdc-data [] unknown yes [] [] {} Data are available from the NASA Langley Atmospheric Science Data Center as ASCII data files in the NARSTO Data Exchange Standard (DES) format. This format is described on the NARSTO Quality Systems Science Center web site: https://eosweb.larc.nasa.gov/ 2014-09-15 2021-11-16 +r3d100011019 PSLC DataShop eng [{"additionalName": "Learnlab DataShop", "additionalNameLanguage": "eng"}, {"additionalName": "Pittsburgh Science of Learning Center DataShop", "additionalNameLanguage": "eng"}] https://pslcdatashop.web.cmu.edu/index.jsp [] ["datashop-help@lists.andrew.cmu.edu"] PSLC DataShop houses datasets in the areas of learning science and educational software. The site also provides online tools for analyzing and reporting the data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://pslcdatashop.web.cmu.edu/ResearchGoals [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["education", "fluency (language learning)", "learning", "study data", "teaching"] [{"institutionName": "Carnegie Mellon University", "institutionAdditionalName": ["CMU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/directory-contact/index.html"]}, {"institutionName": "LearnLab", "institutionAdditionalName": ["PSLC", "Pittsburgh Science of Learning Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.learnlab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DataShop Terms of Use", "policyURL": "https://pslcdatashop.web.cmu.edu/Terms"}, {"policyName": "DataShop Web Services User Agreement", "policyURL": "https://pslcdatashop.web.cmu.edu/help?page=webServicesUserAgreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://pslcdatashop.web.cmu.edu/Terms"}] restricted [{"dataUploadLicenseName": "DataShop Terms of Use", "dataUploadLicenseURL": "https://pslcdatashop.web.cmu.edu/Terms"}] ["unknown"] yes {"api": "http://pslcdatashop.web.cmu.edu/about/webservices.html#api", "apiType": "REST"} ["none"] https://pslcdatashop.web.cmu.edu/help?page=citing [] yes unknown [] [] {} PSLC Datashop is covered by Thomson Reuters Data Citation Index. 2014-09-15 2021-08-24 +r3d100011020 Barrow Atmospheric Baseline Observatory eng [{"additionalName": "BRW", "additionalNameLanguage": "eng"}, {"additionalName": "Barrow, Alaska Observatory (formerly)", "additionalNameLanguage": "eng"}] https://esrl.noaa.gov/gmd/obop/brw/ [] ["brw.staff@noaa.gov"] The Barrow, Alaska Observatory (BRW) archives and provides digital access to their findings related to climate change, ozone depletion and baseline air quality. The BRW is part of the National Oceanic and Atmospheric Administration and Earth System Research Laboratory Global Monitoring Division. eng ["disciplinary", "other"] {"size": "2810 records", "updatedp": "2018-11-29"} 1973 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://esrl.noaa.gov/gmd/obop/brw/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Central Arctic", "aerosols", "climatology", "greenhouse effect, atmospheric", "greenhouse gases", "meteorology", "ozone"] [{"institutionName": "U. S. Department of Commerce, National Oceanic and Atmospheric Administration, Global Monitoring Division, Earth System Research Laboratory", "institutionAdditionalName": ["NOAA GMD ESRL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.esrl.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and Terms of Reference", "policyURL": "https://www.esrl.noaa.gov/gmd/about/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.esrl.noaa.gov/gmd/about/disclaimer.html"}] closed [] [] {"api": "ftp://aftp.cmdl.noaa.gov/data/", "apiType": "FTP"} ["none"] https://www.esrl.noaa.gov/gmd/about/disclaimer.html [] yes unknown [] [] {} 2014-09-15 2018-11-29 +r3d100011021 Egypt's Information Portal eng [{"additionalName": "EIP", "additionalNameLanguage": "eng"}] http://www.eip.gov.eg/Default.aspx [] ["info@idsc.net.eg"] Egypt's Information Portal, since its launch in June 2003, by the Information and Decision Support Center, has been one of its knowledge instruments for disseminating and providing information that of interest to the Egyptian citizen and introduces a mirror image of life in Egypt to the international community. It turned into a main reference reflecting the developments and reality in Egypt while concurrently serving as a societal communication channel allowing interaction with the society as well as identifying its vision towards crucial issues. For this purpose, the portal offers a constantly updated tool diffusing knowledge in a timely manner. Includes many reports, statistics, government data, Studies, reports, working papers, conference papers, abstracts of research studies conducted by IDSC, Complete files of the most important enacted laws and legislations. eng ["other"] {"size": "", "updatedp": ""} 2003 ["ara", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.eip.gov.eg/AboutEIP/AboutEIP.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["Egypt", "GeoNames.org", "agriculture", "balance of payments", "capital market", "communication", "culture", "debt", "education", "electricity", "health", "housing", "irrigation", "labor", "macroeconomics", "mass media", "multidisciplinary", "natural gas", "petroleum", "population", "price indexes", "public utilities", "social security", "tourism", "transportation"] [{"institutionName": "Egyptian Cabinet, Information and Decision Support Center", "institutionAdditionalName": ["IDSC"], "institutionCountry": "EGY", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.idsc.gov.eg/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["feedback@idsc.net.eg"]}] [{"policyName": "Terms and conditions of use", "policyURL": "http://www.eip.gov.eg/Copyrights/Copyrights.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.eip.gov.eg/Copyrights/Copyrights.aspx"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://www.eip.gov.eg/Services/Rss_Feeds.aspx", "syndicationType": "RSS"} 2014-09-15 2021-08-25 +r3d100011022 HIV & AIDS Costs & Use eng [{"additionalName": "HCSUS", "additionalNameLanguage": "eng"}] https://archive.ahrq.gov/research/findings/factsheets/costs/hcsus/index.html [] [] !!!! This information is for reference purposes only. It was current when produced and may now be outdated. Archive material is no longer maintained, and some links may not work. Persons with disabilities having difficulty accessing this information should contact us at: https://info.ahrq.gov. Let us know the nature of the problem, the Web address of what you want, and your contact information. Please go to www.ahrq.gov for current information. !!!! HIV and AIDS Costs and Use is the first major research effort to collect information on a nationally representative sample of people in care for HIV infection. Also called the HIV Cost and Services Utilization Study (HCSUS), the core study is meant to help policymakers in the U.S. make informed decisions on the subject. The study describes the type of therapies available and costs of health care services for people with HIV/AIDS, as well as quality of care, social support, and non-medical services HIV/AIDS patients receive. Supplemental studies examine HIV care delivery in rural areas, prevalence of mental and substance abuse disorders, and other health issues of HIV/AIDS patients. eng ["other"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["AIDS (disease)", "HIV (viruses) - government policy", "HIV (viruses) - information services", "HIV (viruses) - law and legislation - U.S. states", "quality of life"] [{"institutionName": "Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHRQ"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ahrq.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ahrq.gov/cpi/about/organization/index.html"]}, {"institutionName": "U.S. Department of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Electronic Policies", "policyURL": "http://www.ahrq.gov/policy/electronic/about/policyix.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ahrq.gov/policy/electronic/copyright/index.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://info.ahrq.gov/app/answers/detail/a_id/341/kw/copyright/"}] closed [] [] {} ["none"] https://archive.ahrq.gov/research/findings/factsheets/costs/hcsus/index.html [] unknown unknown [] [] {} 2014-09-16 2018-12-19 +r3d100011023 Databrary eng [] https://nyu.databrary.org/ ["RRID:SCR_010471", "RRID:nlx_157733"] ["contact@databrary.org", "http://databrary.org/about/contact.html"] Databrary is a data library for researchers to share research data and analytical tools with other investigators. It is a web-based repository for open sharing and preservation of video data and associated metadata in the area of developmental sciences. The project aims to increase the openness in scientific research and dedicated to transforming the culture of developmental science through building a community of researchers empowering them with an unprecedented set of tools for discovery. Databry is complemented by Datavyu (an open source video-coding software) as well as Labnanny (a data management system to enable data-sharing). So any contributor can share raw digital video files, other data streams. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11002 Developmental and Educational Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://databrary.org/about/mission.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["behavior", "behavioral assessment", "child development", "developmental biology", "health", "human beings - psychology", "psychology", "science and civilization"] [{"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "New York University", "institutionAdditionalName": ["NYU"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nyu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dsm@nyu. edu", "karen.adolph@nyu.edu"]}] [{"policyName": "Best practices for Data Security", "policyURL": "http://databrary.org/access/policies/best-practices.html"}, {"policyName": "Bill of Rights", "policyURL": "http://databrary.org/access/policies/bill-of-rights.html"}, {"policyName": "Data Sharing Manifesto", "policyURL": "https://www.databrary.org/resources/data-sharing-manifesto.html"}, {"policyName": "Databrary Access Agreement", "policyURL": "http://databrary.org/access/policies/agreement.html"}, {"policyName": "Policies", "policyURL": "http://databrary.org/access/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US"}, {"dataLicenseName": "other", "dataLicenseURL": "http://databrary.org/access/policies.html"}] restricted [{"dataUploadLicenseName": "Databrary Access Agreement", "dataUploadLicenseURL": "http://databrary.org/access/policies/agreement.html"}] ["unknown"] {} ["none"] https://www.databrary.org/resources/guide/investigators/citing.html ["ORCID"] yes unknown [] [] {"syndication": "http://databrary.org/feeds/all.xml", "syndicationType": "RSS"} databrary is covered by Thomson Reuters Data Citation Index. 2014-09-16 2018-12-19 +r3d100011024 India Energy Portal eng [{"additionalName": "IEP", "additionalNameLanguage": "eng"}] http://www.indiaenergyportal.org [] [] The portal provides an understanding of energy resources and related data to establish an understanding of the sector in terms of developmental activities and best practices are being carried out in India in the energy sector. Thus it is sharing information on various aspects of energy in a comprehensive manner to a variety of stakeholders to enable effective consolidation and assimilation of knowledge. IEP provides access to energy statistics, case studies, national policies, sectoral overviews. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "40401 Energy Process Engineering", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] http://www.indiaenergyportal.org/about.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["India", "coal", "energy auditing", "energy conservation", "natural gas", "petroleum", "renewable energy sources"] [{"institutionName": "Government of India, National Knowledge Commission", "institutionAdditionalName": ["GOI, NKC"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://en.wikipedia.org/wiki/National_Knowledge_Commission", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2014", "institutionContact": []}, {"institutionName": "The Energy and Resources Institute", "institutionAdditionalName": ["TERI"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.teriin.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mailbox@teri.res.in"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.indiaenergyportal.org/about.php"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://www.indiaenergyportal.org/RSSFeed/energynews.xml", "syndicationType": "RSS"} 2014-09-16 2018-12-19 +r3d100011025 USDA Economics, Statistics and Market Information System eng [{"additionalName": "ESMIS", "additionalNameLanguage": "eng"}] http://usda.mannlib.cornell.edu/MannUsda/homepage.do [] ["http://usda.mannlib.cornell.edu/MannUsda/help.do?section=assist", "usda-help@cornell.edu"] The USDA Economics, Statistics and Market Information System contains reports and datasets of multiple agencies within the United States Department of Agriculture, including the Agricultural Marketing Service, the Economic Research Service, the Foreign Agricultural Service, the National Agricultural Statistics Service, and the World Agricultural Outlook Board. Historical and current reports and datasets are included. eng ["disciplinary", "institutional"] {"size": "2.500 reports and datasets", "updatedp": "2018-11-30"} 1993 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "agriculture economic aspects", "dairy cattle", "economics", "farm produce", "field crops", "floriculture", "fruit", "livestock", "markets", "nuts", "poultry", "vegetables"] [{"institutionName": "Cornell University, Albert R. Mann Library", "institutionAdditionalName": ["Albert R. Mann Library"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mannlib.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mannlib.cornell.edu/contact-us"]}, {"institutionName": "United States Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usda.gov/contact-us"]}, {"institutionName": "United States Department of Agriculture, World Agricultural Outlook Board", "institutionAdditionalName": ["WAOB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/oce/commodity/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usda.gov/oce/contact_OCE/index.htm", "rbridge@oce.usda.gov"]}, {"institutionName": "United States Department of Agriculture, Economic Research Service", "institutionAdditionalName": ["ERS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ers.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ers.usda.gov/contact-us/"]}, {"institutionName": "United States Department of Agriculture, Foreign Agricultural Service", "institutionAdditionalName": ["FAS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fas.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fas.usda.gov/content/contact-us-0"]}, {"institutionName": "United States Department of Agriculture, National Agricultural Statistics Service", "institutionAdditionalName": ["NASS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nass.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nass.usda.gov/Contact_Us/index.php", "nass@nass.usda.gov"]}] [{"policyName": "Policies and Links", "policyURL": "https://www.usda.gov/policies-and-links"}, {"policyName": "Policies and Standards", "policyURL": "https://www.ers.usda.gov/about-ers/policies-and-standards/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2014-09-16 2018-11-30 +r3d100011026 Global Pesticides Release Data eng [{"additionalName": "BDMoRP", "additionalNameLanguage": "fra"}, {"additionalName": "GloPeRD", "additionalNameLanguage": "eng"}, {"additionalName": "la Base de donn\u00e9es mondiale sur les rejets de pesticides", "additionalNameLanguage": "fra"}] https://dr-dn.cisti-icist.nrc-cnrc.gc.ca/eng/view/object/?id=ba38501b-15cd-4b94-acf7-a3dc0753a66b [] [] The repository is no longer available. >>>!!!<<< 2019-02-05: no more access to Global Pesticides Release Data >>>!!!<<< eng ["other"] {"size": "", "updatedp": ""} 2011 2019-02-05 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Canadian Arctic", "emission spectroscopy", "heavy metals", "pesticides and wildlife", "pesticides industry", "pollutants", "pollutants - environmental aspects", "radionuclides"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Global Emissions InitiAtive", "institutionAdditionalName": ["GEIA"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.geiacenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Northern Contaminants Program", "institutionAdditionalName": ["NCP", "PLCN", "Programme de lutte contre les contaminants dans le Nord"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.science.gc.ca/eic/site/063.nsf/eng/h_7A463DBA.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Archived Policy Statement of the Government of Canada", "policyURL": "http://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id=12316"}, {"policyName": "Policy and Guidance of the Government of Canada", "policyURL": "https://www.canada.ca/en/environmental-assessment-agency/services/policy-guidance.html"}, {"policyName": "Terms and conditions of the Government of Canada", "policyURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}] closed [] [] {} ["none"] [] yes unknown [] [] {} description: GloPeRD is a database of emission and residue data primarily for pesticides. Entries include emission and surrogate data on pollutants in the Arctic ecosystem. 2014-09-17 2019-02-05 +r3d100011027 Unified-District Information System for Education eng [{"additionalName": "U-DISE", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: DISE", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: District Information System for Education", "additionalNameLanguage": "eng"}] http://udise.in/index.htm [] ["http://udise.in/contactus.htm", "udise.support@niepa.ac.in"] It is a statistical system developed for collection, computerization, analysis and use of educational and allied data for planning, management, monitoring and feedback. So, DISE is an initiative of the Department of Educational Management Information System (EMIS) of NUEPA for developing and strengthening the educational management information system in India. The initiative is coordinated from district level to state and extended up to national level are being constantly collected and disseminated. It provides information on vital parameters relating to students, teachers and infrastructure at all levels of education in India. Presently DISE has three modules U-DISE, DISE, and SEMIS. DISE also provides several other derivative statistical products, such as, District Report Cards, State Report Cards, School Report Cards, Flash Statistics, Analytical Reports, Rural/Urban Statistics, etc. eng ["institutional", "other"] {"size": "", "updatedp": ""} 1995 ["eng", "hin"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://udise.in/dise2001.htm [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["India", "education", "education and state - data processing", "education and state - decision making", "education and state - evaluation", "educational acceleration - evaluation", "educational mobility", "educational planning", "educational planning - forecasting", "educational statistics"] [{"institutionName": "National University of Educational Planning and Administration, Department of Educational Management Information System", "institutionAdditionalName": ["NUEPA EMIS"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nuepa.org/orsm.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for filling up U-DISE Data Capture Format", "policyURL": "http://www.dise.in/Downloads/GuidelinesforfillingDCF2014-15.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://udise.in/index.htm"}] restricted [] ["other"] {} ["none"] [] unknown yes [] [] {} see also new page: http://schoolreportcards.in/DISE.InResponsive/Default.aspx 2014-09-17 2021-07-05 +r3d100011028 ETH Travel Data Archive eng [{"additionalName": "ETHTDA", "additionalNameLanguage": "eng"}] http://archiv.ivt.ethz.ch/vpl/publications/ethtda/index_EN.html [] [] !!! The documents are stored in the ETH Web archive and are no longer maintained !!! The ETHTDA archives and documents the data set collected by the IVT, ETH Zürich in the course of its research. The majority of the about 40 surveys are designed and conducted by its staff. Some further data sets are included after careful cleaning and further documentation. eng ["other"] {"size": "40 surveys", "updatedp": "2014-09-17"} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.ethz.ch/content/specialinterest/baug/institute-ivt/institute-ivt/en/institut/vpl/reisedaten-forschungsdaten.html [{"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["civil engineering - planning", "geography - network analysis", "planning - forecasting", "transport theory - statistical methods", "transportation", "transportation - models", "transportation - social aspects", "transportation and state - econometric models", "transportation and state - planning", "transportation engineering", "transportation surveys"] [{"institutionName": "Swiss Federal Institute of Technology Zurich, Institute of Transport Planning and Systems", "institutionAdditionalName": ["ETH IVT", "Eidgen\u00f6ssische Technische Hochschule Z\u00fcrich, Institut f\u00fcr Verkehrsplanung und Transportsysteme"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ivt.ethz.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User Guide Nesstar", "policyURL": "http://www.nesstar.com/help/4.0/webview/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ethz.ch/en/footer/copyright.html"}] closed [] ["Nesstar"] {} ["none"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Data Documentation Initiative metadata standard; DDI Compliant archiving of datasets 2014-09-17 2019-02-05 +r3d100011029 Barrow Area Information Database eng [{"additionalName": "BAID", "additionalNameLanguage": "eng"}] http://barrowmapped.org/ [] ["http://barrowmapped.org/#section-contact"] The Barrow area on the North Slope of Alaska is one of the most intensely sampled locations in the Arctic with research sites dating back to the 1940s. The Barrow Area Information Database (BAID) is a resource for learning about the types of data collection activities in the region. The BAID team collaborates with scientists and the local community to compile and share this information via online web mapping applications. eng ["disciplinary"] {"size": "12.000 research plots", "updatedp": "2019-11-29"} 2000 2010-01-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.eol.ucar.edu/dataset/106.ARCSS400 [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Barrow (Alaska)", "North Slope (Alaska)", "geospatial data", "satellity imagery"] [{"institutionName": "Barrow Arctic Science Consortium", "institutionAdditionalName": ["BASC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.arcus.org/arctic-info/archive/18254", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["basc@nuvuk.net"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "2005", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "The University of Texas at El Paso, Department of Biological Sciences", "institutionAdditionalName": ["UTEP, Department of Biology"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.utep.edu/science/biology/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aaguirre3@miners.utep.edu", "ctweedie@utep.edu", "nunatech@usa.net", "rpcody@utep.edu"]}, {"institutionName": "UNAVCO", "institutionAdditionalName": ["University NAVSTAR Consortium"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unavco.org/projects/project-support/polar/polar.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unavco.org/contact/contact.html"]}] [{"policyName": "Terms of use", "policyURL": "https://www.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/notification-copyright-infringement-digital-millenium-copyright-act"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ucar.edu/terms-of-use"}] open [] ["other"] yes {"api": "https://data.eol.ucar.edu/dataset/106.ARCSS400", "apiType": "FTP"} ["none"] [] no unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Data sets unique to BAID are available via Barrow Area Information Database (BAID) Geospatial Data Sets at the Earth Observing Lab at: https://data.eol.ucar.edu/dataset/106.ARCSS400. Metadata that meets the standards of the Federal Geographic Data Committee (FGDC) is available (or under development) for many data layers in BAID-IMS. Data that is considered unrestricted can be downloaded at the Arctic System Science (ARCSS) Data Coordination Center (ADCC) at the National Snow and Ice Data Center (NSIDC) located at University of Colorado in Boulder, USA. In 2003, BASC's Digital Subcommittee saw an opportunity to visual the BAID database with Internet Map Server (IMS) technology and commonly requested base maps. The BAID-IMS prototype was soon released. Allison Graves Gaylord. 2016. Barrow Area Information Database (BAID) Geospatial Data Sets, Barrow, AK, USA. Arctic Data Center: https://arcticdata.io/catalog/#view/doi:10.5065/D6VT1Q75 Archived pages see: http://archive.is/search/?q=*www.baidims.org The development of these applications has been discontinued: BAID IMS, BAID in Google Earth BAID Research Sites (formats available include OGC WMS, WFS and Geoservices RES): http://arcticgeoservices.org/arcgis/rest/services/public/BAID_Research_Sites/MapServer 2014-07-09 2019-11-29 +r3d100011030 Center for Operational Oceanographic Products and Services eng [{"additionalName": "CO-OPS", "additionalNameLanguage": "eng"}, {"additionalName": "Tides and Currents", "additionalNameLanguage": "eng"}] https://tidesandcurrents.noaa.gov/ ["biodbcore-001502"] ["Tide.Predictions@noaa.gov", "https://tidesandcurrents.noaa.gov/contact.html"] The Center for Operational Oceanographic Products and Services (CO-OPS) site offers operational data in near-real time and historic contexts. Focus is on tides and currents but also includes information on harmful algal blooms and weather, etc. Data access is made possible through geopspatial web interfaces as well as OPeNDAP services, etc. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tidesandcurrents.noaa.gov/mission.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["algal blooms - monitoring", "forecasting", "meteorological stations", "meteorology - observations", "ocean currents - measurement", "red tide", "sea level - observations", "tide stations"] [{"institutionName": "National Oceanic and Atmospheric Administration, National Ocean Service", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://oceanservice.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "https://tidesandcurrents.noaa.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://tidesandcurrents.noaa.gov/disclaimers.html"}] closed [] ["unknown"] {"api": "https://opendap.co-ops.nos.noaa.gov/erddap/index.html", "apiType": "OpenDAP"} ["none"] [] unknown yes [] [] {"syndication": "https://tidesandcurrents.noaa.gov/cgi-bin/rss.cgi?type=low", "syndicationType": "RSS"} 2014-09-17 2021-11-17 +r3d100011031 MG-RAST eng [{"additionalName": "Metagenomics analysis server", "additionalNameLanguage": "eng"}] http://www.mg-rast.org/ ["OMICS_01456", "RRID:SCR_004814"] ["help@mg-rast.org"] The MG-RAST server is an open source system for annotation and comparative analysis of metagenomes. Users can upload raw sequence data in fasta format; the sequences will be normalized and processed and summaries automatically generated. The server provides several methods to access the different data types, including phylogenetic and metabolic reconstructions, and the ability to compare the metabolism and annotations of one or more metagenomes and genomes. In addition, the server offers a comprehensive search capability. Access to the data is password protected, and all data generated by the automated pipeline is available for download in a variety of common formats. MG-RAST has become an unofficial repository for metagenomic data, providing a means to make your data public so that it is available for download and viewing of the analysis without registration, as well as a static link that you can use in publications. It also requires that you include experimental metadata about your sample when it is made public to increase the usefulness to the community. eng ["disciplinary"] {"size": "63.878 results", "updatedp": "2019-03-11"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mg-rast.org/mgmain.html?mgpage=downloadintro [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "genomics", "genomics - data processing", "proteomics"] [{"institutionName": "Argonne National Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.anl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Chicago", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uchicago.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "MG-RAST manual", "policyURL": "http://www.mg-rast.org/mgmain.html?mgpage=downloadintro"}, {"policyName": "Terms of Service", "policyURL": "http://metagenomics.anl.gov/legal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://github.com/MG-RAST/Shock/wiki/License"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://github.com/MG-RAST/MG-RASTv4/blob/master/legal.html"}] restricted [] ["other"] yes {"api": "ftp://ftp.metagenomics.anl.gov/", "apiType": "FTP"} ["none"] http://www.mg-rast.org/legal.html [] yes yes [] [] {} MG-RAST uses Genomics Standards Consortium (GSC) compliant metadata 2014-09-18 2019-03-11 +r3d100011032 NASA Earth Exchange eng [{"additionalName": "NEX", "additionalNameLanguage": "eng"}] https://www.nasa.gov/nex [] ["Jennifer.L.Dungan@nasa.gov", "https://www.nasa.gov/nex/support"] The NASA Earth Exchange (NEX) represents a platform for the Earth science community that provides a mechanism for scientific collaboration and knowledge sharing. NEX combines supercomputing, Earth system modeling, workflow management, NASA remote sensing data feeds, and a knowledge sharing platform to deliver a complete work environment in which users can explore and analyze large datasets, run modeling codes, collaborate on new or existing projects, and quickly share results among the Earth Science communities. Includes some local data collections as well as links to data on other sites. On January 31st, 2019, the NEX portal will be down-scoped; member logins will be suspended and the portal contents transitioned to a static set of archives. New projects and resources will no longer be possible after this occurs. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nex.nasa.gov/nex/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aeronautics", "atmosphere", "earth sciences", "environmental sciences", "science", "space"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "https://nex.nasa.gov/nex/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://nex.nasa.gov/nex/terms/"}] restricted [] ["MySQL"] {} ["none"] [] yes unknown [] [] {} 2014-09-18 2021-07-02 +r3d100011033 NCBI BioSystems Database eng [{"additionalName": "NCBI BioSystems", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/biosystems/ ["FAIRsharing_doi:10.25504/FAIRsharing.w2eeqr", "MIR:00000097", "RRID:SCR_004690", "RRID:nlx_69646"] ["biosystems.help@ncbi.nlm.nih.gov"] The repository facilitates computation of a wide range of biosystem data. It also connects biosystem data with associated literature throughout the Entrez system. eng ["disciplinary", "institutional"] {"size": "983.968 records", "updatedp": "2019-03-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/Structure/biosystems/docs/biosystems_about.html [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Genes", "Molecules", "Proteins"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"policyName": "NIH Public Access Policy", "policyURL": "https://publicaccess.nih.gov/policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] [] yes {"api": "ftp://ftp.ncbi.nih.gov/pub/biosystems/", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/Structure/biosystems/docs/biosystems_publications.html [] yes yes [] [] {} The NCBI BioSystems Database currently contains records from several source databases: KEGG, BioCyc (including its Tier 1 EcoCyc and MetaCyc databases, and its Tier 2 databases), Reactome, the National Cancer Institute's Pathway Interaction Database, WikiPathways, and Gene Ontology (GO). 2014-05-14 2019-03-11 +r3d100011034 International Forestry Resources and Institutions eng [{"additionalName": "IFRI", "additionalNameLanguage": "eng"}] http://www.ifriresearch.net/resources/data/ [] ["http://www.ifriresearch.net/contact-us/"] The IFRI research network examines how governance arrangements affect forests and the people who depend on them. It is comprised of 14 Collaborating Research Centers located around the globe. Researchers use a common data collection method to ensure that sites can be compared across space and time. The IFRI database contains information about biodiversity, livelihoods, institutions, and forest carbon for over 250 sites in 15 countries between 1992 and the present. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ifriresearch.net/about-us/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "ecology", "ecosystem", "forest cabon", "forests and forestry", "resource management", "sociology"] [{"institutionName": "University of Michigan, School of Natural Resources and Environment", "institutionAdditionalName": ["SNRE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://seas.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["arunagra@umich.edu"]}] [{"policyName": "Data policy", "policyURL": "http://www.ifriresearch.net/resources/data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ifriresearch.net/resources/data/"}] restricted [] ["unknown"] {} ["none"] http://www.ifriresearch.net/resources/data/ [] no yes [] [] {} http://www.ifriresearch.net/about-us/funders/ 2014-09-02 2019-03-11 +r3d100011035 USGS National Water Information System eng [{"additionalName": "NWIS", "additionalNameLanguage": "eng"}, {"additionalName": "USGS Water Data for the Nation", "additionalNameLanguage": "eng"}] https://waterdata.usgs.gov/nwis [] ["https://water.usgs.gov/contact/gsanswers?pemail=gs-w_support_nwisweb&cemail=gs-w_NWISWeb_Feedback"] Central data management of the USGS for water data that provides access to water-resources data collected at approximately 1.5 million sites in all 50 States, the District of Columbia, Puerto Rico, the Virgin Islands, Guam, American Samoa and the Commonwealth of the Northern Mariana Islands. Includes data on water use and quality, groundwater, and surface water. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.usgs.gov/about/about-us [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["groundwater", "hydrology", "rivers", "water", "water quality", "water surface", "water use"] [{"institutionName": "United States Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.usgs.gov/policies-notices"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] closed [] ["MySQL"] {"api": "https://waterservices.usgs.gov/", "apiType": "REST"} ["none"] https://help.waterdata.usgs.gov/faq/miscellaneous/how-to-cite-usgs-water-data-for-the-nation-waterdata.usgs.gov-in-a-publication [] unknown yes [] [] {"syndication": "https://waterservices.usgs.gov/news/waterservices_news.xml", "syndicationType": "RSS"} 2014-08-29 2021-07-02 +r3d100011036 National Data Archive on Child Abuse and Neglect eng [{"additionalName": "NDACAN", "additionalNameLanguage": "eng"}] https://www.ndacan.cornell.edu/ [] ["NDACANsupport@cornell.edu", "https://www.ndacan.acf.hhs.gov/about/about-contact-us.cfm"] The National Data Archive on Child Abuse and Neglect (NDACAN) promotes scholarly exchange among researchers in the child maltreatment field. NDACAN acquires microdata from leading researchers and national data collection efforts and makes these datasets available to the research community for secondary analysis. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1988 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ndacan.cornell.edu/about/about-mission.cfm [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["child abuse", "child maltreatment", "developmental psychology", "neglection", "psychology", "social sciences", "violence"] [{"institutionName": "Cornell University, College of Human Ecology, Bronfenbrenner Center for Translational Research", "institutionAdditionalName": ["BCTR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bctr.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1998", "responsibilityEndDate": "", "institutionContact": ["http://www.bctr.cornell.edu/contact-us/"]}, {"institutionName": "United States Department of Health and Human Services, Children's Bureau", "institutionAdditionalName": ["Children's Bureau"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.acf.hhs.gov/cb", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.acf.hhs.gov/cb/resource/regional-program-managers"]}] [{"policyName": "Laws and Policies", "policyURL": "https://www.acf.hhs.gov/cb/laws-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.acf.hhs.gov/cb/laws-policies/policy-program-issuances"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.acf.hhs.gov/foia"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ndacan.cornell.edu/datasets/request-nscaw-restricted-release.cfm"}] restricted [{"dataUploadLicenseName": "Guide to Social Science Data Preparation and Archiving", "dataUploadLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/content/deposit/guide/index.html"}, {"dataUploadLicenseName": "NSF Dissemination and Sharing of Research Results", "dataUploadLicenseURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] ["unknown"] {} ["none"] https://www.ndacan.cornell.edu/faq.cfm#anchor184094 [] yes yes [] [] {} NDACAN is covered by Thomson Reuters Data Citation Index. Two different versions of the NSCAW data are available to members of the research community who meet eligibility criteria and agree to the requirements of the data license. The least restrictive version is known as the General Use Data. Identifying information and geographic detail have been removed from this version and variables posing a risk of respondent disclosure have been recoded to make identification of individuals unlikely. NDACAN recommends that researchers initially obtain the General Use Data when they are learning to use the NSCAW data. If you plan to move forward with working on NSCAW data, NDACAN highly recommends that researchers obtain the NSCAW Restricted version for publication-level research, not the General version. The General Release version is suitable for gaining an understanding of the study structure and the required statistical methods, but the Restricted Release version has more data and greater research utility because geographic detail is present and fewer variables have been recoded. For more information about why the Restricted Release is recommended over than the General Release, please contact one of these NDACAN analysts: Holly Larrabee 607-254-4677 or Elliott Smith 607-255-8104. 2014-07-22 2021-07-02 +r3d100011037 SureChEMBL eng [{"additionalName": "Open Patent Data", "additionalNameLanguage": "eng"}, {"additionalName": "SureCHEM", "additionalNameLanguage": "eng"}] https://www.surechembl.org/search/ ["FAIRsharing_doi:10.25504/FAIRsharing.q2n5wk", "OMICS_10795"] ["surechembl-help@ebi.ac.uk"] SureChemOpen is a free resource for researchers who want to search, view and link to patent chemistry. For end-users with professional search and analysis needs, we offer the fully-featured SureChemPro. For enterprise users, SureChemDirect provides all our patent chemistry via an API or a data feed. The SureChem family of products is built upon the Claims® Global Patent Database, a comprehensive international patent collection provided by IFI Claims®. This state of the art database is normalized and curated to provide unprecedented consistency and quality. eng ["disciplinary"] {"size": "2.101.843 compound records; 1.735.442 compounds (of which 1.727.112 have mol files); 14.675.320 activities; 1.302.147 assays; 11.538 targets; 67.722 source documents", "updatedp": "2017-05-26"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemical structures", "chemoinformatics", "drugs", "metallorganic compounds", "molecular data", "organic chemistry", "patents", "polymers", "structure formula"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Macmillan Publishers Limited, Digital Science", "institutionAdditionalName": ["Digital Science"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.digital-science.com/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.digital-science.com/contact-us/", "info@digital-science.com"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.surechembl.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/news/press-releases/SureChEMBL"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.surechembl.org/terms/"}] closed [] ["unknown"] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/chembl/SureChEMBL/data/", "apiType": "FTP"} ["other"] https://www.ebi.ac.uk/chembl/faq#faq43 [] unknown yes [] [] {} 11th December 2013 - The SureChem patent website has been acquired by the European Bioinformatics Institute (EMBL-EBI) and is being rebranded as SureChEMBL. During the transition phase a number of changes will made to the site, including the terms and conditions of use. The data is updated regularly, with releases approximately every 3-4 months. 2014-03-25 2019-03-20 +r3d100011038 Qualitative Data Repository eng [{"additionalName": "QDR", "additionalNameLanguage": "eng"}] https://qdr.syr.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.bmz5ap"] ["cmpage@syr.edu", "qdr@syr.edu"] The Qualitative Data Repository (QDR) is a dedicated archive for storing and sharing digital data (and accompanying documentation) generated or collected through qualitative and multi-method research in the social sciences. QDR provides data management consulting services and actively curates all data projects, maintaining the value and usefulness of the data over time, and ensuring their availability and findability for re-use. eng ["disciplinary"] {"size": "4 collections; 94 data projects; 12.716 Files", "updatedp": "2020-12-17"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://qdr.syr.edu/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["qualitative data", "social sciences", "standards", "teaching"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Syracuse University's Maxwell School of Citizenship and Public Affairs, Center for Qualitative and Multi-Method Inquiry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.maxwell.syr.edu/cqmi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["qdr@syr.edu"]}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/11/Qualitative-Data-Repository.pdf"}, {"policyName": "General terms and conditions of use", "policyURL": "https://qdr.syr.edu/termsandconditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://qdr.syr.edu/termsandconditions"}, {"dataLicenseName": "other", "dataLicenseURL": "https://qdr.syr.edu/termsandconditions"}] restricted [{"dataUploadLicenseName": "Standard and Special Deposit Agreement", "dataUploadLicenseURL": "https://qdr.syr.edu/deposit/process"}] ["DataVerse"] yes {} ["DOI"] https://qdr.syr.edu/discover ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} In creating its forms, policies, and agreements, QDR used models drawn from the Archaeology Data Service (ADS), the Data and Research Information Services of the Swiss Foundation for Research in Social Sciences (FORS-DARIS), the Inter-university Consortium for Political and Social Research at the University of Michigan (ICPSR), the Irish Qualitative Data Archive (IQDA), the Henry A. Murray Research Archive (part of Harvard University's Institute for Quantitative Social Science, IQSS), the Howard W. Odum Institute for Research in Social Science at the University of North Carolina, Chapel Hill, the UK Data Archive, and the UK Data Service (now including the Economic and Social Data Service [ESDS]). 2014-03-25 2022-01-03 +r3d100011040 MultiDark Database eng [{"additionalName": "Multimessenger Approach for Dark Matter Detection", "additionalNameLanguage": "eng"}] http://www.multidark.org// [] ["https://www.cosmosim.org/contact"] This MultiDark application is now integrated into CosmoSim (https://www.cosmosim.org/), all data and much more is available there. The old MultiDark server is no longer available. The MultiDark database provides results from cosmological simulations performed within the MultiDark project. This database can be queried by entering SQL statements directly into the Query Form. The access to that form and thus access to the public & private databases is password protected. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://projects.ift.uam-csic.es/multidark/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Halos", "astronomy", "cosmology", "dark matter", "optics", "simulation", "virtual observatory"] [{"institutionName": "AstroGrid-D", "institutionAdditionalName": ["D-Grid", "GACG", "German Astronomy Community Grid"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.gac-grid.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gac-grid.de/project-overview/contact.html"]}, {"institutionName": "German Astrophysical Virtual Observatory", "institutionAdditionalName": ["GAVO"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.g-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.g-vo.org/pmwiki/About/Impressum"]}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["AIP", "Astrophysical Institute Potsdam"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.aip.de/en?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aip.de/en/institute/contact"]}, {"institutionName": "Multimessenger Approach for Dark Matter Detection", "institutionAdditionalName": ["MultiDark"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.multidark.es/index.php", "institutionIdentifier": [], "responsibilityStartDate": "2009-12-17", "responsibilityEndDate": "2017-06-16", "institutionContact": ["http://www.multidark.es/index.php?option=com_content&view=article&id=21&Itemid=35&lang=en"]}, {"institutionName": "PRACE", "institutionAdditionalName": ["Partnership for advanced Computing in Europa"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.prace-ri.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.prace-ri.eu/contact-prace"]}] [{"policyName": "Data access", "policyURL": "https://www.cosmosim.org/cms/documentation/data-access/"}, {"policyName": "Imprint & Data Protection Statement", "policyURL": "https://www.cosmosim.org/cms/imprint/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aip.de/en/impressum"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.aip.de/de/institut/facilities/it-service/richtlinien/usage-of-the-data-access-service"}] restricted [] [] {"api": "https://www.cosmosim.org/cms/documentation/data-access/access-via-uws/", "apiType": "REST"} ["other"] https://www.cosmosim.org/cms/documentation/projects/multidark-bolshoi-project/#credits [] unknown yes [] [] {} "The MultiDark Database used in this paper and the web application providing online access to it were constructed as part of the activities of the German Astrophysical Virtual Observatory as result of a collaboration between the Leibniz-Institute for Astrophysics Potsdam (AIP) and the Spanish MultiDark Consolider Project CSD2009-00064. The Bolshoi and MultiDark simulations were run on the NASA's Pleiades supercomputer at the NASA Ames Research Center. The MultiDark-Planck (MDPL) and the BigMD simulation suite have been performed in the Supermuc supercomputer at LRZ using time granted by PRACE." 2014-03-26 2021-07-02 +r3d100011041 Fungal Genetics Stock Center eng [{"additionalName": "FGSC", "additionalNameLanguage": "eng"}] http://www.fgsc.net/ ["RRID:SCR_008143", "RRID:nif-0000-20977"] ["http://www.fgsc.net/contact.asp"] The Fungal Genetics Stock Center has preserved and distributed strains of genetically characterized fungi since 1960. The collection includes over 20,000 accessioned strains of classical and genetically engineered mutants of key model, human, and plant pathogenic fungi. These materials are distributed as living stocks to researchers around the world. eng ["disciplinary"] {"size": "Over 23.000 Neurospora strains, a growing number of Neurospora knock-outs, over 2.000 Aspergillus strains and various representatives of other fungi", "updatedp": "2019-03-25"} 1960 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.fgsc.net/intro.html#his [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Aspergillus", "Fusarium", "Magnaporthe", "Neurospora", "fungi", "genes", "genetics", "plasmids", "strains"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "1960", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "United States Culture Collection Network", "institutionAdditionalName": ["USCCN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.usccn.org/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Missouri, School of Biological Sciences, Fungal Genetics Stock Center", "institutionAdditionalName": ["FGSC", "Fungal Genetics Stock Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.fgsc.net/", "institutionIdentifier": [], "responsibilityStartDate": "1960", "responsibilityEndDate": "", "institutionContact": ["http://www.fgsc.net/contact.asp"]}] [{"policyName": "FGSC Policies ( Shipping/Fees )", "policyURL": "http://www.fgsc.net/newship.html"}, {"policyName": "Information describing FGSC policies, strain availability, origins, and other topics covered in the FGSC catalog", "policyURL": "http://www.fgsc.net/cat4web.html#avail"}, {"policyName": "USCCN policy", "policyURL": "http://www.usccn.org/pubpolicy/Pages/default.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.fgsc.net/disclaimer.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.fgsc.net/cat4web.html#avail"}] restricted [{"dataUploadLicenseName": "Fungal Genetics Stock Center Deposit Policies", "dataUploadLicenseURL": "http://www.fgsc.net/depcover.html"}] ["unknown"] {} ["none"] http://www.fgsc.net/cite.htm [] unknown yes [] [] {} Molecular materials are listed both in the catalog and online. (The old catalog is still available, but has not been updated since 2006.) The FGSC is also listed in the international bioportal, Straininfo.net and GCM. 2014-03-26 2021-07-02 +r3d100011042 ClinicalCodes.org eng [{"additionalName": "ClinicalCodes repository", "additionalNameLanguage": "eng"}] https://clinicalcodes.rss.mhs.man.ac.uk/ [] ["https://clinicalcodes.rss.mhs.man.ac.uk/contact/"] The ClinicalCodes repository aims to hold code lists for all published electronic medical record studies, irrespective of code type (e.g. Read, ICD9-10, SNOMED) and database (CPRD, QResearch, THIN etc.). Once deposited, code lists will be freely available, with no login needed to download codes. eng ["disciplinary"] {"size": "84.346 clinical codes deposited; over 499 code lists", "updatedp": "2019-03-25"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://clinicalcodes.rss.mhs.man.ac.uk/faq/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["clinical statements", "disease", "epidemiological studies", "experiments", "health informatics", "health information management", "healthcare research", "medical classificaton"] [{"institutionName": "National Institute for Health Research, School for Primary Care Research", "institutionAdditionalName": ["NHS, NIHR,", "SPCR", "School for Primary Care Research"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.spcr.nihr.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.spcr.nihr.ac.uk/about-us/contact-us"]}, {"institutionName": "University of Manchester, Faculty of Biology, Medicine and Health", "institutionAdditionalName": ["formerly: University of Manchester, Institute of Population Health", "formerly; Institute of Population Health"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bmh.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.bmh.manchester.ac.uk/connect/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.manchester.ac.uk/copyright/"}] restricted [] ["unknown"] {} ["none"] https://clinicalcodes.rss.mhs.man.ac.uk/links/ [] unknown yes [] [] {} We are still in the beta stage of development so we would really appreciate any feedback on the site itself, suggestions for improvements to functionality or ideas for new features. 2014-03-27 2021-07-02 +r3d100011043 Academic Torrents eng [] https://academictorrents.com/ [] ["contact@academictorrents.com"] Academic Torrents is a distributed data repository. The academic torrents network is built for researchers, by researchers. Its distributed peer-to-peer library system automatically replicates your datasets on many servers, so you don't have to worry about managing your own servers or file availability. Everyone who has data becomes a mirror for those data so the system is fault-tolerant. eng ["institutional", "other"] {"size": "65.12TB of research data", "updatedp": "2020-07-23"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://academictorrents.com/about.php#mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Institute for Reproducible Research", "institutionAdditionalName": ["IRR"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://reproducibilityinstitute.org/w/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["joseph@josephpcohen.com"]}, {"institutionName": "University of Massachusetts Boston", "institutionAdditionalName": ["UMass Boston"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.umb.edu/", "institutionIdentifier": ["ROR:04ydmy275", "RRID:SCR_015047"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["henryzlo@cs.umb.edu", "joecohen@cs.umb.edu"]}] [{"policyName": "Terms of Use", "policyURL": "https://academictorrents.com/terms.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://academictorrents.com/about.php#downloading"}] restricted [{"dataUploadLicenseName": "Individual Licenses", "dataUploadLicenseURL": "http://academictorrents.com/about.php#uploading"}] ["unknown"] {"api": "https://www.xsede.org/documents/527334/747618/academic-torrents-scalable-distribution.pdf", "apiType": "FTP"} ["none"] http://academictorrents.com/about.php#cite [] unknown unknown [] [] {"syndication": "http://academictorrents.com/collections.php", "syndicationType": "RSS"} We are a community-maintained distributed repository for datasets and scientific knowledge 2014-03-27 2020-07-23 +r3d100011045 Index to Marine & Lacustrine Geological Samples eng [{"additionalName": "Access to rock and sediment cores, dredges, and grabs from the ocean floor and lakebeds", "additionalNameLanguage": "eng"}, {"additionalName": "IMLGS", "additionalNameLanguage": "eng"}] https://www.ngdc.noaa.gov/mgg/curator/curator.html ["RRID:SCR_009430", "RRID:nlx_154736", "doi:10.7289/V5H41PB8"] ["geology.info@noaa.gov", "ncei.info@noaa.gov"] The Index to Marine and Lacustrine Geological Samples is a tool to help scientists locate and obtain geologic material from sea floor and lakebed cores, grabs, and dredges archived by participating institutions around the world. Data and images related to the samples are prepared and contributed by the institutions for access via the IMLGS and long-term archive at NGDC. Before proposing research on any sample, please contact the curator for sample condition and availability. A consortium of Curators guides the IMLGS, maintained on behalf of the group by NGDC, since 1977. eng ["disciplinary", "institutional"] {"size": "32.673 core photos; 9.177 core x-rays; 34.614 seabed photos; 34.388 pages of descriptive reports and logs", "updatedp": "2019-05-27"} 1977 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ngdc.noaa.gov/mgg/curator/curator.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Geology", "dredges", "drill samples", "grabs", "lakebed cores", "samples", "sea floor"] [{"institutionName": "IMLGS Participants", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/mgg/curator/participants.HTML", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Marine Geology & Geophysics", "institutionAdditionalName": ["World Data Service for Geophysics"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/mgg/mggd.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "US Department of Commerce, National Oceanic & Atmospheric Administration, National Centers for Environmental Information", "institutionAdditionalName": ["DOC, NOAA, NESDIS, NGDC", "NCEI", "National Centers for Environmental Information", "formerly: NGDC", "formerly: National Geophysical Data Center", "formerly: US Department of Commerce, National Oceanic & Atmospheric Administration, National Environmental Satellite, Data and Information Service, National Geophysical Data Center"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/ngdc.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["carla.j.moore@noaa.gov"]}] [{"policyName": "Division of Ocean Sciences Sample and Data Policy", "policyURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037&org=NSF"}, {"policyName": "Privacy Policy, Disclaimer, Copyright", "policyURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037&org=NSF"}] closed [] ["unknown"] {"api": "https://maps.ngdc.noaa.gov/arcgis/services/web_mercator/sample_index/MapServer?wsdl", "apiType": "SOAP"} ["DOI"] https://data.noaa.gov//docucomp/page?xml=NOAA/NESDIS/NGDC/MGG/Geology/iso/xml/G00028.xml&view=getDataView&header=none# [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Participating institutions: https://www.ngdc.noaa.gov/mgg/curator/participants.HTML Access to rock and sediment cores, dredges, and grabs from the sea floor and lakebeds. IMLGS Uses International GeoSample Identifiers (IGSN) . --- Index to Marine & Lacustrine Geological Samples is part of "NSF Facilities for Continental Scientific & Drilling & Coring" : https://www.re3data.org/repository/r3d100012874 2014-03-28 2021-08-24 +r3d100011046 Golm Metabolome Database eng [{"additionalName": "GMD", "additionalNameLanguage": "eng"}] http://gmd.mpimp-golm.mpg.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.jykmkw", "MIR:00000274", "OMICS_02531", "RRID:SCR_006625", "RRID:nif-0000-21180"] ["Kopka@mpimp-golm.mpg.de", "http://gmd.mpimp-golm.mpg.de/contact.aspx"] The Golm Metabolome Database (GMD) facilitates the search for and dissemination of reference mass spectra from biologically active metabolites quantified using gas chromatography (GC) coupled to mass spectrometry (MS) eng ["disciplinary"] {"size": "4.663 analytes, 2.222 metabolites, 3.511 reference substances, 26.590 Spectra in total, 11.680 Spectra linked to analytes, 9.156 Spectra linked to analytes and tagged with an RI (retention index)", "updatedp": "2019-04-01"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://gmd.mpimp-golm.mpg.de/dataentities.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biology", "chemical structure", "chromatography", "decision trees", "enzymatic activity", "genomics", "intermediate product", "mass spectrometry", "metabolic", "organic compounds", "query spectrum"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme, Coordination of Standards in MetabolomicS", "institutionAdditionalName": ["CORDIS FP7 COSMOS"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/guidance/archive_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute of Molecular Plant Physiology", "institutionAdditionalName": ["MPI-MP", "Max-Planck-Institut f\u00fcr Molekulare Pflanzenphysiologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpimp-golm.mpg.de/2168/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpimp-golm.mpg.de/2288/contact"]}, {"institutionName": "Max Planck Society for the Advancement of Science e.V.", "institutionAdditionalName": ["Max-Planck-Gesellschaft zur Foerderung der Wissenschaften e.V."], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpg.de/contact/requests"]}] [{"policyName": "Terms and conditions", "policyURL": "http://gmd.mpimp-golm.mpg.de/termsconditions.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://gmd.mpimp-golm.mpg.de/termsconditions.aspx"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mpimp-golm.mpg.de/2278/impress"}] restricted [] ["unknown"] {"api": "http://gmd.mpimp-golm.mpg.de/REST/", "apiType": "REST"} ["none"] http://gmd.mpimp-golm.mpg.de/termsconditions.aspx [] unknown yes [] [] {"syndication": "http://gmd.mpimp-golm.mpg.de/webservices/rssSpectra.ashx", "syndicationType": "RSS"} Golm Metabolome Database is covered by Thomson Reuters Data Citation Index. 2014-04-01 2021-07-02 +r3d100011047 prometheus deu [{"additionalName": "Das verteilte digitale Bildarchiv f\u00fcr Forschung & Lehre", "additionalNameLanguage": "deu"}] https://www.prometheus-bildarchiv.de/ [] ["https://www.prometheus-bildarchiv.de/contact", "info@prometheus-bildarchiv.de"] prometheus is a digital image archive for Art and Cultural Sciences. prometheus enables the convenient search for images on a common user interface within different image archives, variable databases from institutes, research facilities and museums. eng ["disciplinary", "institutional"] {"size": "1.773.802 images; 96 databases", "updatedp": "2019-04-17"} 2001 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.prometheus-bildarchiv.de/en/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["serviceProvider"] ["architecture", "charters", "decorative arts", "design", "frescoes", "image archive", "manuscript illumination", "painting", "prints", "sculpture", "textiles"] [{"institutionName": "Cologne University of Applied Science, Faculty of Information Science and Communication Studies, Institute of Information Science", "institutionAdditionalName": ["IWS", "TH K\u00f6ln, Instiut f\u00fcr Informationswissenschaft", "Technische Hochschule K\u00f6ln, Informations- und Kommunikationswissenschaften, Institut f\u00fcr Informationswissenschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.th-koeln.de/informations-und-kommunikationswissenschaften/institut-fuer-informationswissenschaft_4134.php", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RheinEnergieStiftung Jugend/Beruf, Wissenschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rheinenergiestiftung.de/de/jbw/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cologne, Faculty of Arts and Humanities, Department of Art History", "institutionAdditionalName": ["KHI", "Universit\u00e4t zu K\u00f6ln, Philosophische Fakult\u00e4t, Kunsthistorisches Institut"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://khi.phil-fak.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["https://www.prometheus-bildarchiv.de/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://prometheus.uni-koeln.de/pandora/en/account/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://prometheus.uni-koeln.de/pandora/en/account/terms_of_use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://prometheus.uni-koeln.de/pandora/en/help/copyright_and_publication"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.prometheus-bildarchiv.de/en/copyright"}] restricted [{"dataUploadLicenseName": "Terms of use", "dataUploadLicenseURL": "https://prometheus.uni-koeln.de/pandora/en/terms_of_use"}] ["other"] yes {"api": "https://prometheus.uni-koeln.de/pandora/en/pandora/api", "apiType": "REST"} ["none"] [] unknown yes [] [] {"syndication": "https://www.prometheus-bildarchiv.de/en/atom.xml.en", "syndicationType": "ATOM"} prometheus doesn’t draw profit and is supported by a non-profit association for promoting science and research through the development, appropriation and application of digital media in the arts and the field of the history of culture. License fees are charged exclusively for operating our services and the continuous development of our applications. 2014-02-04 2021-07-02 +r3d100011048 Copernicus Space Component Data Access eng [{"additionalName": "CSCDA", "additionalNameLanguage": "eng"}, {"additionalName": "GMES", "additionalNameLanguage": "eng"}, {"additionalName": "Global Monitoring for Environment and Security programme", "additionalNameLanguage": "eng"}] https://spacedata.copernicus.eu/ ["biodbcore-001312"] ["copernicus.space.office@esa.int"] As part of the Copernicus Space Component programme, ESA manages the coordinated access to the data procured from the various Contributing Missions and the Sentinels, in response to the Copernicus users requirements. The Data Access Portfolio documents the data offer and the access rights per user category. The CSCDA portal is the access point to all data, including Sentinel missions, for Copernicus Core Users as defined in the EU Copernicus Programme Regulation (e.g. Copernicus Services).The Copernicus Space Component (CSC) Data Access system is the interface for accessing the Earth Observation products from the Copernicus Space Component. The system overall space capacity relies on several EO missions contributing to Copernicus, and it is continuously evolving, with new missions becoming available along time and others ending and/or being replaced. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.esa.int/Our_Activities/Observing_the_Earth/Copernicus/Overview3 [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "climate change", "earth observation", "earth sciences", "emergency response", "land management", "marine environment", "satellite observation", "security change"] [{"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR: 04bwf3e34", "https://www.dlr.de/eoc"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5367/9013_read-16792/"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": ["ROR:00k4n6c32", "RRID:SCR_011211", "RRID:nlx_47458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/about-european-commission/contact_en"]}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/guidance/archive_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/", "institutionIdentifier": ["ROR:03wd9za21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["copernicus.space.office@esa.int", "http://www.esa.int/Applications/Observing_the_Earth/Copernicus"]}] [{"policyName": "Copernicus Access Rights", "policyURL": "https://spacedata.copernicus.eu/web/cscda/copernicus-users/access-rights"}, {"policyName": "Copernicus Data Access", "policyURL": "https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_User_Licence_last_uploaded_2020_02_10.pdf"}, {"policyName": "Legal Documents", "policyURL": "https://spacedata.copernicus.eu/web/cscda/data-offer/legal-documents"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://spacedata.copernicus.eu/web/cscda/copernicus-users/access-rights"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earth.esa.int/documents/10174/296006/Revised_Simplified_EO_Data_policy_03102012.pdf/"}] restricted [] ["unknown"] {"api": "https://esar-ds.eo.esa.int/oads/access/", "apiType": "other"} ["none"] [] unknown yes [] [] {"syndication": "http://gmesdata.esa.int/web/gsc/news/rssfeeds", "syndicationType": "RSS"} Copernicus is the most ambitious Earth observation programme to date. It will provide accurate, timely and easily accessible information to improve the management of the environment, understand and mitigate the effects of climate change and ensure civil security. This initiative is headed by the European Commission (EC) in partnership with the European Space Agency (ESA). ESA coordinates the delivery of data from upwards of 30 satellites, while the EEA is responsible for data from airborne and ground sensors. The EC, acting on behalf of the European Union, is responsible for the overall initiative, setting requirements and managing the services. Copernicus partners: Eumetsat, ASI, BNSC, CDTI, CNES, CSA, DLR Earth Observation Center 2014-04-22 2021-11-16 +r3d100011049 STOREDB eng [{"additionalName": "STORE", "additionalNameLanguage": "eng"}, {"additionalName": "Sustaining access to Tissues and data frOm Radiobiological Experiments", "additionalNameLanguage": "eng"}] https://www.storedb.org/store_v3/ ["FAIRsharing_doi:10.25504/FAIRsharing.6h8d2r", "MIR:00000577"] ["PNS12@cam.ac.uk"] STOREDB is a platform for the archiving and sharing of primary data and outputs of all kinds, including epidemiological and experimental data, from research on the effects of radiation. It also provides a directory of bioresources and databases containing information and materials that investigators are willing to share. STORE supports the creation of a radiation research commons. eng ["disciplinary"] {"size": "84 studies", "updatedp": "2017-06-06"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.storedb.org/store_v3/about.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal studies", "biology", "experiments", "human studies", "radiation", "radiation epidemiology", "radiation research", "radiobiology", "radioecology"] [{"institutionName": "Federal Office for Radiation Protection", "institutionAdditionalName": ["BfS", "Bundesamt f\u00fcr Strahlenschutz"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.bfs.de/EN/home/home_node.html", "institutionIdentifier": ["ROR:02yvd4j36"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["ePost@bfs.de", "https://www.bfs.de/EN/service/contact/contact_node.html"]}, {"institutionName": "University of Cambridge, Department of Physiology, Development and Neuroscience", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.pdn.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "2025", "institutionContact": ["PNS12@cam.ac.uk"]}] [{"policyName": "Copyright Notice", "policyURL": "https://www.storedb.org/store_v3/disclaimer.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.storedb.org/store_v3/disclaimer.jsp"}] restricted [] ["unknown"] {} ["DOI"] ["ORCID"] yes yes [] [] {} STORE provides the necessary Standard Operating Procedures (SOPs) for the evaluation of archived tissue usability. 2014-04-23 2021-05-12 +r3d100011052 SABIO-RK eng [{"additionalName": "Biochemical reation kinetics database", "additionalNameLanguage": "eng"}, {"additionalName": "System for the Analysis of Biochemical Pathways - Reaction Kinetics", "additionalNameLanguage": "eng"}] http://sabiork.h-its.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.cwx04e", "RRID:SCR_002122", "RRID:nif-0000-20912"] ["wolfgang.mueller@h-its.org"] The SABIO-RK is a web-based application based on the SABIO relational database that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. It aims to support modellers in the setting-up of models of biochemical networks, but it is also useful for experimentalists or researchers with interest in biochemical reactions and their kinetics. All the data are manually curated and annotated by biological experts, supported by automated consistency checks. eng ["disciplinary"] {"size": "63.123 entries in 8.257 reactions; 6.355 publications", "updatedp": "2019-11-25"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://sabiork.h-its.org/layouts/content/about.gsp [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemical reactions", "biology", "enzyme kinetics", "kinetic equations", "kinetic properties", "medicine", "molecular biology", "proteins", "systems biology"] [{"institutionName": "Heidelberg Institute for Theoretical Studies", "institutionAdditionalName": ["HITS gGmbH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.h-its.org/", "institutionIdentifier": ["ROR:01f7bcy98", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sabiork@h-its.org", "wolfgang.mueller@h-its.org"]}, {"institutionName": "Klaus Tschira Stiftung", "institutionAdditionalName": ["KTS"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.klaus-tschira-stiftung.de/", "institutionIdentifier": ["ROR:052jep661"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.klaus-tschira-stiftung.de/kontakt/"]}] [{"policyName": "Terms & Conditions", "policyURL": "http://sabiork.h-its.org/layouts/content/termscondition.gsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://sabiork.h-its.org/layouts/content/termscondition.gsp"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://sabiork.h-its.org/layouts/content/termscondition.gsp"}] restricted [] ["unknown"] yes {"api": "http://sabiork.h-its.org/layouts/content/docuRESTfulWeb/RESTWebserviceIntro.gsp", "apiType": "REST"} ["URN"] http://sabiork.h-its.org/sabioRestWebServices/kineticLaws/123 [] yes yes [] [] {} Data Export: Reactions with selected kinetic data can be exported in SBML (Systems Biology Markup Language) for exchange with other systems or programs, e.g. allowing its import into simulation and modelling programs supporting SBML like COPASI or CellDesigner. The data is described in SBML together with annotations of entities and expressions to other resources and biological ontologies. These annotations comply with the MIRIAM standard (Minimal Information Requested In the Annotation of biochemical Models). For better tracking the exported SBML also contains SABIO-RK specific identifiers (e.g. for a reaction or a kinetic record) that are compliant with MIRIAM. 2014-04-24 2021-11-17 +r3d100011056 CISER Data & Reproduction Archive eng [] https://ciser.cornell.edu/ [] ["ciser@cornell.edu", "https://cisermgmt.cornell.edu/go/PHPs/contactCISER.php"] CISER houses an extensive collection of research data files in the social sciences with particular emphasis on data that matches the interests of Cornell University researchers. CISER intentionally uses a broad definition of social sciences in recognition of the interdisciplinary nature of Cornell research. CISER collects and maintains digital research data files in the social sciences, with a current emphasis on Cornell-based social science research, Results Reproduction packages, and potentially at-risk datasets. Our archive historically has focused on a broad range of social science data including data on demography, economics and labor, political and social behavior, family life, and health. You can search our holdings or browse studies by subject area. Also see Locating and Using Archive Data. eng ["disciplinary", "institutional"] {"size": "2.842 studies; 21 Reproduction packages", "updatedp": "2020-02-05"} 1981 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ciser.cornell.edu/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census", "demography", "economics", "health care", "politics", "replication", "social sciences", "sociology"] [{"institutionName": "Cornell University, Cornell Institute for Social and Economic Research", "institutionAdditionalName": ["CISER", "Cornell Institute for Social and Economic Research"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ciser.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1981", "responsibilityEndDate": "", "institutionContact": ["ciser@cornell.edu", "https://ciser.cornell.edu/help-center/"]}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/06/CISER_20210601.pdf"}, {"policyName": "Policies", "policyURL": "https://ciser.cornell.edu/about-us/ciser-policies/"}, {"policyName": "Responsible Use of Information Technology Resources", "policyURL": "https://www.dfa.cornell.edu/tools-library/policies/responsible-use-information-technology-resources"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://archive.ciser.cornell.edu/about/file-levels"}, {"dataLicenseName": "other", "dataLicenseURL": "https://archive.ciser.cornell.edu/download?f=c4d3fbe4-28ee-4bc2-941c-59a798620727"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ciser.cornell.edu/wp-content/uploads/2017/01/CISER_Terms_of_Use.pdf"}] restricted [] ["other"] yes {} ["DOI"] [] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} CISER is covered by Clarivate Data Citation Index. CISER is a member of the Inter-university Consortium for Political and Social Research (ICPSR) and the Roper Center for Public Opinion Research, both major distributors of social science data. The CISER Data Archive also participates in Cornell's Research Data Management Service Group (RDMSG). ICPSR is the Inter-university Consortium for Political and Social Research, located at the University of Michigan. ICPSR is a membership organization of over 550 universities and research institutions worldwide. Cornell was a founding member when it was organized in 1962. The Cornell Restricted Access Data Center (CRADC) was established to provide secure access to confidential research data.Cornell researchers can acquire, house, and use restricted data in CRADC's secure computing environment. 2014-04-25 2021-07-19 +r3d100011057 Copernicus eng [{"additionalName": "GMES", "additionalNameLanguage": "eng"}, {"additionalName": "Global Monitoring for Environment and Security", "additionalNameLanguage": "eng"}, {"additionalName": "The European Earth Observation Pogramme", "additionalNameLanguage": "eng"}] https://www.copernicus.eu/en [] ["https://www.copernicus.eu/en/network/get-touch", "support@copernicus.eu"] Copernicus is a European system for monitoring the Earth. Copernicus consists of a complex set of systems which collect data from multiple sources: earth observation satellites and in situ sensors such as ground stations, airborne and sea-borne sensors. It processes these data and provides users with reliable and up-to-date information through a set of services related to environmental and security issues. The services address six thematic areas: land monitoring, marine monitoring, atmosphere monitoring, climate change, emergency management and security. The main users of Copernicus services are policymakers and public authorities who need the information to develop environmental legislation and policies or to take critical decisions in the event of an emergency, such as a natural disaster or a humanitarian crisis. Based on the Copernicus services and on the data collected through the Sentinels and the contributing missions , many value-added services can be tailored to specific public or commercial needs, resulting in new business opportunities. In fact, several economic studies have already demonstrated a huge potential for job creation, innovation and growth. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.copernicus.eu/en/about-copernicus [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["EMSA", "EUROSUR", "FRONTEX", "G-MOSAIC", "SEA", "Sentinels", "agriculture", "border surveillance", "civil protection", "climate change", "earth observation", "environment protection", "environmental hazards", "fisheries", "forestry", "health", "management of urban areas", "regional and local planning", "satellite missions", "sustainable development", "tourism", "transport"] [{"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Environment Agency", "institutionAdditionalName": ["EEA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.eea.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Alan.Steel@eea.europa.eu", "Ana.Sousa@eea.europa.eu", "Eugenija.Schuren@eea.europa.eu", "Gunter.Zeug@eea.europa.eu", "Gyorgy.Buttner@eea.europa.eu", "Hans.Dufourmont@eea.europa.eu", "Ilona.Schioler@eea.europa.eu", "Silvo.Zlebir@eea.europa.eu", "Tobias.Langanke@eea.europa.eu"]}, {"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["copernicus.space.office@esa.int", "http://www.esa.int/Our_Activities/Observing_the_Earth/Copernicus/Overview3"]}] [{"policyName": "Copernicus policy", "policyURL": "https://www.copernicus.eu/en/documentation/copernicus-policy"}, {"policyName": "How to access data", "policyURL": "https://www.copernicus.eu/en/how/how-access-data"}, {"policyName": "Scihub Terms and conditions", "policyURL": "https://scihub.copernicus.eu/twiki/do/view/SciHubWebPortal/TermsConditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copernicus.eu/en/how/copyright-and-licenses"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.copernicus.eu/en/how/how-access-data"}, {"dataLicenseName": "other", "dataLicenseURL": "https://sentinels.copernicus.eu/documents/247904/690755/Sentinel_Data_Legal_Notice"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.copernicus.eu/en/how/how-access-data"}] closed [] ["unknown"] {"api": "https://scihub.copernicus.eu/userguide/APIsOverview", "apiType": "REST"} ["none"] [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.copernicus.eu/en/news/rss", "syndicationType": "RSS"} Copernicus uses INSPIRE metadata standard. 2014-04-25 2021-08-25 +r3d100011058 VertNet eng [] http://vertnet.org/ [] ["http://vertnet.org/feedback/contact.html"] VertNet is a NSF-funded collaborative project that makes biodiversity data free and available on the web. VertNet is a tool designed to help people discover, capture, and publish biodiversity data. It is also the core of a collaboration between hundreds of biocollections that contribute biodiversity data and work together to improve it. VertNet is an engine for training current and future professionals to use and build upon best practices in data quality, curation, research, and data publishing. Yet, VertNet is still the aggregate of all of the information that it mobilizes. To us, VertNet is all of these things and more. eng ["disciplinary", "institutional"] {"size": "over 20,546,275 records from 282 data resources, containing 370 collections, shared by 112 publishers globally", "updatedp": "2017-11-27"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://vertnet.org/about/about.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "biology", "fungi", "invertebrates", "natural history", "paleo", "plants", "vertebrates"] [{"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gbif.org/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Tulane University, Museum of Natural History", "institutionAdditionalName": ["Museum of Natural History"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tubri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tubri.org/contacts/"]}, {"institutionName": "University of California at Berkeley, Museum of Vertebrate Zoology", "institutionAdditionalName": ["MVZ"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mvz.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dbloom@vertnet.org"]}, {"institutionName": "University of Colorado Boulder, Museum of Natural History", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.colorado.edu/cumuseum/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cumuseum@colorado.edu"]}, {"institutionName": "University of Kansas, Biodiversity Institute", "institutionAdditionalName": ["Biodiversity Institute"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biodiversity.ku.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["larussell@vertnet.org"]}] [{"policyName": "Vertnet Norms", "policyURL": "http://vertnet.org/resources/norms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.vertnet.org/resources/datalicensingguide.html#protected"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.vertnet.org/resources/datalicensingguide.html"}] restricted [{"dataUploadLicenseName": "Quick Guide to Copyright and Licenses for Dataset", "dataUploadLicenseURL": "http://www.vertnet.org/resources/datalicensingguide.html"}] ["other"] yes {"api": "https://github.com/VertNet/webapp/wiki/Introduction-to-the-VertNet-API", "apiType": "other"} ["URN"] http://www.vertnet.org/resources/norms.html [] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "http://blog.vertnet.org/", "syndicationType": "RSS"} VertNet will use a cloud-based computing strategy to create a fast, cost-effective, and scalable data platform. This new platform will have capabilities and applications for data discovery, data quality improvement, and visualization that go beyond those of the current networks. VertNet uses GitHub to collaboratively submit, track, and resolve data quality issues. The classic vertebrate networks are the backbone of the VertNet project. Since 1999 these four networks (FishNet, MaNIS, HerpNET, ORNIS) have provided the biodiversity community with access to vertebrate data sets. The MaNIS/HerpNET/ORNIS portals will continue to serve your data until May 2014, at which time they will no longer be maintained. FishNet will continue to provide service to the community into the foreseable future. The project pages for each taxon-based community will also continue to be maintained. VertNet uses the Integrated Publishing Toolkit (IPT) to host published biodiversity data on the VertNet IPT for its participating institutions. The IPT is a free open source web application designed to publish primary occurrence data, species checklists and taxonomies, and associated datasets metadata available for use on the Internet. Data are published as web-based Darwin Core Archives using Darwin Core Standards. 2014-04-28 2019-08-07 +r3d100011060 European Research Community on Flow, Turbulence and Combustion Database - Classic Collection eng [{"additionalName": "ERCOFTAC Classic Collection", "additionalNameLanguage": "eng"}] http://cfd.mace.manchester.ac.uk/ercoftac/index.html [] ["Dominique.Laurence@manchester.ac.uk", "Tim.Craft@manchester.ac.uk"] This classic collection of test cases for validation of turbulence models started as an EU / ERCOFTAC project led by Pr. W. Rodi in 1995. It is maintained by Dr. T. Craft at Manchester since 1999. Initialy limited to experimental data, computational results, and results and conclusions drawn from the ERCOFTAC Workshops on Refined Turbulence Modelling (SIG15). At the moment, each case should contain at least a brief description, some data to download, and references to published work. Some cases contain significantly more information than this. eng ["disciplinary"] {"size": "93 cases", "updatedp": "2017-11-27"} 1995 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] http://cfd.mace.manchester.ac.uk/ercoftac/index.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["confined flows", "flows around bodies", "fluid dynamics", "fluid mechanics", "free turbulent flows", "modelling", "semi-confined flows", "turbulence"] [{"institutionName": "European Research Community on Flow, Turbulence and Combustion", "institutionAdditionalName": ["ERCOFTAC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ercoftac.org/products_and_services/classic_collection_database/", "institutionIdentifier": [], "responsibilityStartDate": "1995", "responsibilityEndDate": "1999", "institutionContact": []}, {"institutionName": "University of Manchester, School of Mechanical, Aerospace and Civile Engineering, Computational Fluid Dynamics & Turbulence Mechanics", "institutionAdditionalName": ["CFD and Turbulence Mechanics", "CfdTm"], "institutionCountry": "GBR", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "http://cfd.mace.manchester.ac.uk/twiki/bin/view/CfdTm/WebHome", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": ["http://cfd.mace.manchester.ac.uk/twiki/bin/view/CfdTm/CfdTmPeople"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.manchester.ac.uk/copyright/"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} For many years this database was part of the larger NEXUS portal. NEXUS is now gone, but UMIST continues to keep this very nice database publicly available. You have to register to get access but it is free for everyone. Highly recommended. 2014-05-27 2017-11-27 +r3d100011061 Johns Hopkins Turbulence Databases eng [{"additionalName": "JHTDB", "additionalNameLanguage": "eng"}] http://turbulence.pha.jhu.edu/ [] ["turbulence@pha.jhu.edu"] This website is a portal that enables access to multi-Terabyte turbulence databases. The data reside on several nodes and disks on our database cluster computer and are stored in small 3D subcubes. Positions are indexed using a Z-curve for efficient access. eng ["disciplinary"] {"size": "datasets comprise over 20 Terabytes for the isotropic turbulence data, 56 Terabytes for the MHD data, 130 Terabytes for the channel flow data and 27 Terabytes for the homogeneous buoyancy driven turbulence data", "updatedp": "2017-11-27"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://turbulence.pha.jhu.edu/citing.aspx [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["direct numerical simulation (DNS)", "fluid dynamics", "fluid mechanics", "magneto-hydrodynamic (MHD)", "numerical simulation data", "renormalized numerical simulation - RNS", "simulation", "turbulence", "turbulent flows"] [{"institutionName": "Johns Hopkins University, Department of Mecnanical Engineering, Turbulence Research Group", "institutionAdditionalName": ["Turbulence Research Group"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://pages.jh.edu/~cmeneve1/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["meneveau@jhu.edu"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://turbulence.pha.jhu.edu/citing.aspx"}] restricted [] ["unknown"] {"api": "http://turbulence.pha.jhu.edu/instructionswebserv.aspx", "apiType": "SOAP"} ["none"] http://turbulence.pha.jhu.edu/citing.htm [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-06-01 2017-11-27 +r3d100011062 GESIS SowiDataNet|datorium eng [] https://data.gesis.org/sharing/#!Home [] ["curator2@gesis.org"] SowiDataNet|datorium is a research data repository for social sciences and economics that enables researchers to easily and securely document, publish and share (quantitative) primary and secondary data. The repository is geared to the needs of the scientific community: a comprehensive metadata schema provides an opportunity to describe the research data in detail, which is the prerequisite for effective reuse. With the publication in SowiDataNet|datorium, research data become citable because they are given a persistent identifier, namely a "Digital Object Identifier (DOI)". A two-stage review process also guarantees a quality and technical quality check of the data. eng ["disciplinary"] {"size": "171 items", "updatedp": "2018-06-27"} 2013 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://data.gesis.org/sharing/#!TermsOfUse [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["attitudes in modern societies", "behaviors in modern societies", "economics", "historical studies", "information science", "social sciences", "social structure", "survey methodology"] [{"institutionName": "GESIS - Leibniz-Institute for the Social Sciences", "institutionAdditionalName": ["GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.gesis.org/home", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gesis.org/en/contact/"]}, {"institutionName": "Leibniz Association", "institutionAdditionalName": ["Leibniz-Gemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/en.html", "institutionIdentifier": ["ROR:01n6r0e97"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.leibniz-gemeinschaft.de/en/imprint/"]}] [{"policyName": "Terms of use", "policyURL": "https://data.gesis.org/sharing/#!TermsOfUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://data.gesis.org/sharing/#!TermsOfUse"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data.gesis.org/sharing/#!TermsOfUse"}] restricted [{"dataUploadLicenseName": "Terms of use", "dataUploadLicenseURL": "https://data.gesis.org/sharing/#!TermsOfUse"}] ["DSpace"] yes {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2014-06-05 2021-03-12 +r3d100011063 Koç University Digital Collections eng [{"additionalName": "SKL-DL", "additionalNameLanguage": "eng"}] https://librarydigitalcollections.ku.edu.tr/en/ [] ["digitalresources@ku.edu.tr"] This site provides access to over 210,000 digitized or born-digital images in the Koç University collections featuring prints, photographs, slides, maps, newspapers, posters, postcards, manuscripts, streaming video, and more. The collections consist of the materials of the Koç University Libraries and Archives (AKMED, ANAMED, SKL, and VEKAM), Koç University Faculty and Departments, and projects carried out in partnership with the Koç University Libraries. It includes the Koç University Institutional Repository (KU-IR). eng ["institutional"] {"size": "58.842 records", "updatedp": "2020-02-28"} 2010 ["eng", "tur"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://librarydigitalcollections.ku.edu.tr/en/about/about-digital-collections/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Josephine Powell slide collection", "Kaleidoscope Collection", "Sound Of Istanbul", "dissertations", "manuscripts", "research material", "textile heritage", "thesis"] [{"institutionName": "Ko\u00e7 University", "institutionAdditionalName": ["Ko\u00e7 \u00dcniversitesi"], "institutionCountry": "TUR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ku.edu.tr/en/", "institutionIdentifier": ["RRID:SCR_001836", "RRID:nlx_151421"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ko\u00e7 University, Suna Kira\u00e7 Library", "institutionAdditionalName": ["Ko\u00e7 \u00dcniversitesi Suna K\u0131ra\u00e7 K\u00fct\u00fcphanesi"], "institutionCountry": "TUR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.ku.edu.tr/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Suna K\u0131ra\u00e7 Libraries Digitization Policy", "policyURL": "https://librarydigitalcollections.ku.edu.tr/en/use/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://librarydigitalcollections.ku.edu.tr/en/use/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.mevzuat.gov.tr/MevzuatMetin/1.3.5846.pdf"}] restricted [] ["other"] {"api": "http://cdm21054.contentdm.oclc.org/oai/oai.php", "apiType": "OAI-PMH"} ["none"] [] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-05-29 2020-02-28 +r3d100011065 Global Terrestrial Network for Permafrost eng [{"additionalName": "GTN-P Database", "additionalNameLanguage": "eng"}] https://gtnp.arcticportal.org/ ["ISSN 2410-2385"] ["info@articportal.org"] The GTN-P database is an object-related database open for a diverse range of data. Because of the complexity of the PAGE21 project, data provided in the GTN-P management system are extremely diverse, ranging from active-layer thickness measurements once per year to flux measurement every second and everthing else in between. The data can be assigned to two broad categories: Quantitative data which is all data that can be measured numerically. Quantitative data comprise all in situ measurements, i.e. permafrost temperatures and active layer thickness (mechanical probing, frost/thaw tubes, soil temperature profiles). Qualitative data (knowledge products) are observations not based on measurements, such as observations on soils, vegetation, relief, etc. eng ["disciplinary"] {"size": "Total number of data: 5.250.957; Total number of datasets: 1.396; Number of boreholes: 1.091; Number of active layer grids: 242; Deepest borehole: 1.028 m (Marryatt K-71, Canada); Longest Ground Temperature Record: 30 years, 1 month, 17 days (Umabybyt 20, Russia)", "updatedp": "2017-11-27"} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ipa.arcticportal.org/activities/gtn-p/14-gtn-p.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate variables", "earth climate system", "earth observation data", "ice", "land management", "permafrost", "temperature"] [{"institutionName": "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["AWI", "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/ueber-uns/service/kontakt.html"]}, {"institutionName": "Arctic Portal", "institutionAdditionalName": [], "institutionCountry": "ISL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://arcticportal.org/", "institutionIdentifier": ["ROR:00zpk0t94"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["info@articportal.org"]}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["Changing permafrost in the Arctic and its Global Effects in the 21st Century", "FP7", "Page 21"], "institutionCountry": "EEC", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.page21.eu/about", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "2013", "institutionContact": ["hans-wolfgang.hubberten@awi.de"]}, {"institutionName": "Global Climate Observing System", "institutionAdditionalName": ["GCOS"], "institutionCountry": "CHE", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://public.wmo.int/en/programmes/global-climate-observing-system", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["gcos@wmo.int"]}, {"institutionName": "Global Terrestrial Network for Permafrost", "institutionAdditionalName": ["GTN-P"], "institutionCountry": "ISL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://gtnp.arcticportal.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://gtnp.arcticportal.org/index.php/about-the-gtnp/staff"]}, {"institutionName": "Global Terrestrial Observing System", "institutionAdditionalName": ["GTOS"], "institutionCountry": "ITA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.fao.org/3/x4978e/x4978e01.htm#TopOfPage", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["http://www.fao.org/gtos/Orgsecrtrt.html"]}, {"institutionName": "International Permafrost Association", "institutionAdditionalName": ["IPA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ipa.arcticportal.org/", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://ipa.arcticportal.org/contact"]}] [{"policyName": "Data policies", "policyURL": "https://gtnp.arcticportal.org/index.php/component/content/article/15-data/database/15-data-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://gtnp.arcticportal.org/index.php/component/content/article/15-data/database/15-data-policies"}] restricted [] ["EPrints"] {"api": "https://gtnp.arcticportal.org/data/database-management-system", "apiType": "NetCDF"} ["none"] https://gtnp.arcticportal.org/index.php/component/content/article/19-data/mining/87-tutorial-citations [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://gtnpdatabase.org/boreholes", "syndicationType": "RSS"} All participant organizations of the GTN-P Database: http://gtnp.arcticportal.org/index.php/about-the-gtnp/organizations 2014-06-01 2021-09-03 +r3d100011070 Intermagnet eng [{"additionalName": "International Real-time Magnetic Observatory Network", "additionalNameLanguage": "eng"}] http://www.intermagnet.org/ ["ISSN 2428-9795"] ["http://www.intermagnet.org/contact-eng.php"] Welcome to INTERMAGNET - the global network of observatories, monitoring the Earth's magnetic field. At this site you can find data and information from geomagnetic observatories around the world. The INTERMAGNET programme exists to establish a global network of cooperating digital magnetic observatories, adopting modern standard specifications for measuring and recording equipment, in order to facilitate data exchanges and the production of geomagnetic products in close to real time. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1991 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.intermagnet.org/index-eng.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Geomagnetic Information Nodes (GINs)", "INTERMAGNET Magnetic Observatories IMO", "earth magnetic field", "geomagnetic measurement", "observatory", "satellite communication"] [{"institutionName": "British Geological Survey", "institutionAdditionalName": ["chair Executive Council"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bgs.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["awpt@bgs.ac.uk"]}, {"institutionName": "Geological Survey of Canada, Magnetic Laboratory", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geomag.nrcan.gc.ca/lab/default-en.php", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["dboteler@NRCan.gc.ca"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences, Adolf Schmidt Observatory for Geomagnetism", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum, Adolf-Schmidt-Observatorium f\u00fcr Geomagnetismus", "NGK"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gfz-potsdam.de/sektion/erdmagnetfeld/infrastruktur/observatorien/niemegk/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["linthe@gfz-potsdam.de"]}, {"institutionName": "Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/startseite/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "INTERMAGNET Participating Institutes", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.intermagnet.org/institutes-eng.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut Royal M\u00e9t\u00e9orologique, Centre de Physique du Globe", "institutionAdditionalName": ["KMI", "Koninklijk Meteorologisch Instituut, Geofysisch centrum te Dourbes", "RMI", "Royal Meteorological Institute of Belgium, The Geophysical Center of Dourbes"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dourbes.meteo.be/en/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["jr@oma.be"]}, {"institutionName": "Institut de Physique du Globe de Paris", "institutionAdditionalName": ["Observatoire Magn\u00e9tique National"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ipgp.fr/fr", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["bcmt@ipgp.fr", "intermagnet@ipgp.fr"]}, {"institutionName": "Kyoto University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kyoto-u.ac.jp/en", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["nose@kugi.kyoto-u.ac.jp"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "1991", "responsibilityEndDate": "", "institutionContact": ["cafinn@usgs.gov", "dcstewart@usgs.gov"]}] [{"policyName": "INTERMAGNET Observatory Participation Policy", "policyURL": "http://www.intermagnet.org/publications/im_pn_1%20v1_2_INTERMAGNET_Observatory_Participation_Policy.pdf"}, {"policyName": "Principles, Conditions, and Policies", "policyURL": "http://www.intermagnet.org/term-eng.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.intermagnet.org/data-donnee/data-eng.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.intermagnet.org/term-eng.php"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.geolab.nrcan.gc.ca/", "apiType": "FTP"} ["none"] http://www.intermagnet.org/data-donnee/data-eng.php [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} INTERMAGNET is network partern of ICSU World Data System 2014-06-04 2021-03-30 +r3d100011071 studyforrest eng [] http://www.studyforrest.org/ ["RRID:SCR_003112", "RRID:nlx_156710"] ["info@studyforrest.org"] This project is an open invitation to anyone and everyone to participate in a decentralized effort to explore the opportunities of open science in neuroimaging. We aim to document how much (scientific) value can be generated from a data release — from the publication of scientific findings derived from this dataset, algorithms and methods evaluated on this dataset, and/or extensions of this dataset by acquisition and incorporation of new data. The project involves the processing of acoustic stimuli. In this study, the scientists have demonstrated an audiodescription of classic "Forrest Gump" to subjects, while researchers using functional magnetic resonance imaging (fMRI) have captured the brain activity of test candidates in the processing of language, music, emotions, memories and pictorial representations.In collaboration with various labs in Magdeburg we acquired and published what is probably the most comprehensive sample of brain activation patterns of natural language processing. Volunteers listened to a two-hour audio movie version of the Hollywood feature film "Forrest Gump" in a 7T MRI scanner. High-resolution brain activation patterns and physiological measurements were recorded continuously. These data have been placed into the public domain, and are freely available to the scientific community and the general public. eng ["disciplinary"] {"size": "over 350 GB", "updatedp": "2015-02-04"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://studyforrest.org/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Forrest Gump", "audio movie", "brain activation patterns", "cognitive process", "information sciences", "neurobiology", "neuroimaging", "neuroscience", "psychoinformatics", "psychology"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Center for Behavioral Brain Sciences", "institutionAdditionalName": ["CBBS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cbbs.eu/das-cbbs", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["http://www.cbbs.eu/kontakt"]}, {"institutionName": "Leibniz-Institut f\u00fcr Neurobiologie", "institutionAdditionalName": ["LIN", "Leibniz Institute for Neurobiology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lin-magdeburg.org/", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.lin-magdeburg.org/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Otto von Guericke Universit\u00e4t Magdeburg, Institut f\u00fcr Psychologie, Arbeitsgruppe Psychoinformatik", "institutionAdditionalName": ["Otto von Guericke University Magdeburg, Institute of Psychology, Psychoinformatics lab"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipsy.ovgu.de/psychoinformatik.html", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.psychoinformatics.de/"]}] [{"policyName": "Terms of use", "policyURL": "http://www.studyforrest.org/pages/access.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] restricted [] ["other"] yes {} ["none"] http://studyforrest.org/access.html [] yes yes [] [] {"syndication": "http://studyforrest.org/feeds/all-en.atom.xml", "syndicationType": "ATOM"} The project is part of the German-American research project "Development of universal, high-dimensional models of neural representational spaces". Scientists from the Otto-von-Guericke-University Magdeburg, Dartmouth College (USA) and Princeton University (USA) are involved. This in turn is part of the National Bernstein Network. Since 2004, the Federal Ministry of Education and Research (BMBF) is funding this initiative with the new scientific discipline of computational neuroscience, with over 180 million euros. The network is named after the German physiologist Julius Bernstein (1839-1917). Part of the data can be found on GitHub 2014-06-03 2019-12-18 +r3d100011076 DIGITAL.CSIC eng [] https://digital.csic.es/?locale=en ["RRID:SCR_011534"] ["digital.csic@bib.csic.es", "https://digital.csic.es/dc/contacto.jsp", "isabel.bernal@bib.csic.es"] DIGITAL.CSIC is the institutional repository of the Spanish National Research Council (CSIC). Designed for organising, archiving, preserving and disseminating via open access the scientific output generated as a product of the CSIC research activities by CSIC researchers eng ["institutional"] {"size": "190.185 records", "updatedp": "2020-02-05"} 2010 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://digital.csic.es/?locale=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Spanish Government, Ministry of Economy and Competitiveness", "institutionAdditionalName": ["Gobierno de Espana, Ministerio de Economia y Competitividad, Secretaria de Estado de Investigacion, Desarrollo e Innovacion", "IDI"], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.idi.mineco.gob.es/portal/site/MICINN/", "institutionIdentifier": ["ROR:034900433"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Spanish National Research Council", "institutionAdditionalName": ["CISC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csic.es/en", "institutionIdentifier": ["ROR:02gfc7t72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Adhasi\u00f3n a los principios FAIR", "policyURL": "https://digital.csic.es/dc/politicas/adhesion-principios-fair.jsp"}, {"policyName": "Datasets: plantilla normalizada para la descripcion de registros en Digital.CSIC", "policyURL": "http://digital.csic.es/bitstream/10261/81323/4/Datasets_DC_plantilla.pdf"}, {"policyName": "Datos de Investigaci\u00f3n", "policyURL": "https://digital.csic.es/dc/politicas/politicaDatos.jsp"}, {"policyName": "Gu\u00eda sobre pol\u00edticas, leyes y normativas de agencias financiadoras sobre acceso abierto que afectan a la producci\u00f3n de la comunidad cient\u00edfica CSIC - Handbook on Open Access Policies", "policyURL": "http://digital.csic.es/handle/10261/38733"}, {"policyName": "Politicas de Digital.CSIC", "policyURL": "https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp"}] restricted [{"dataUploadLicenseName": "CSIC License", "dataUploadLicenseURL": "https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp"}] ["DSpace"] yes {"api": "https://digital.csic.es/dspace-oai/request?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://digital.csic.es/dc/politicas/politica-datos-digital-csic.jsp [] yes yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digital.csic.es/noticiasRSS?locale=en", "syndicationType": "RSS"} DIGITAL.CSIC is covered by Clarivate Data Citation Index. DIGITAL.CSIC uses Altmetric metrics. 2014-09-17 2020-02-05 +r3d100011077 Inspire-HEP eng [{"additionalName": "Inspire-High Energy Physics", "additionalNameLanguage": "eng"}] http://inspirehep.net/?ln=en [] ["feedback@inspirehep.net"] CERN, DESY, Fermilab and SLAC have built the next-generation High Energy Physics (HEP) information system, INSPIRE. It combines the successful SPIRES database content, curated at DESY, Fermilab and SLAC, with the Invenio digital library technology developed at CERN. INSPIRE is run by a collaboration of CERN, DESY, Fermilab, IHEP, and SLAC, and interacts closely with HEP publishers, arXiv.org, NASA-ADS, PDG, HEPDATA and other information resources. INSPIRE represents a natural evolution of scholarly communication, built on successful community-based information systems, and provides a vision for information management in other fields of science. eng ["disciplinary", "institutional"] {"size": "1,385,753 records", "updatedp": "2020-08-20"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["accelerator physics", "astrophysics", "experiments", "gravitation and cosmology", "high energy physics", "nuclear physics", "particle physics"] [{"institutionName": "CERN", "institutionAdditionalName": ["Conseil Europeen pour la Recherche Nucleaire", "European Organization for Nuclear Research"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://home.cern/", "institutionIdentifier": ["ROR:01ggx4157"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://home.cern/contact"]}, {"institutionName": "Chinese Academy of Sciences, Institute of High Energy Physics", "institutionAdditionalName": ["IHEP", "Institute of High Energy Physics", "\u9ad8\u80fd\u7269\u7406\u7814\u7a76\u6240\u4e2d\u570b\u9662\u58eb"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://english.ihep.cas.cn/", "institutionIdentifier": ["ROR:03v8tnc06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://english.ihep.cas.cn/doc/1946.html"]}, {"institutionName": "DESY", "institutionAdditionalName": ["Deutsches Elektronen-Synchrotron"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.desy.de/", "institutionIdentifier": ["ROR:01js2sh04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.desy.de/contact/index_eng.html"]}, {"institutionName": "Fermilab", "institutionAdditionalName": ["Fermi National Accelerator Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fnal.gov/", "institutionIdentifier": ["ROR:020hgte69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fnal.gov/pub/contact/index.html"]}, {"institutionName": "SLAC", "institutionAdditionalName": ["National Accelerator Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www6.slac.stanford.edu/", "institutionIdentifier": ["ROR:05gzmn429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www6.slac.stanford.edu/about/contact-slac"]}] [{"policyName": "INSPIRE Terms of Use", "policyURL": "http://inspirehep.net/info/general/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://inspirehep.net/info/general/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/choose/zero/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://inspirehep.net/info/general/terms-of-use"}] restricted [] ["other"] yes {"api": "http://old.inspirehep.net/info/hep/api?ln=de", "apiType": "OAI-PMH"} ["ARK", "DOI"] ["ORCID"] yes yes [] [] {"syndication": "https://blog.inspirehep.net/2012/09/new-rss-feeds/", "syndicationType": "RSS"} Inspire-HEP superseded Spires_HEP (Stanford Physics Information Retrieval System) 2014-06-05 2020-08-20 +r3d100011078 Qualiservice eng [{"additionalName": "Forschungsdatenzentrum \u201eQualiservice\u201c", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Center Qualiservice", "additionalNameLanguage": "eng"}] https://www.qualiservice.org/en/ [] ["https://www.qualiservice.org/en/contact.html", "info@qualiservice.org"] The Research Data Center Qualiservice provides services for archiving and reusing qualitative research data from the social sciences. We advise and accompany research projects in the process of long-term data archiving and data sharing. Data curation is conducted by experts for the social sciences. We also provide research data and relevant context information for reuse in scientific research and teaching. Internationally interoperable metadata ensure that data sets are searchable and findable. Persistent identifiers (DOI) ensure that data and study contexts are citable. Qualiservice was accredited by the German Data Forum (RatSWD) in 2019 and adheres to its quality assurance criteria. Qualiservice is committed to the German Research Foundation’s (DFG) Guidelines for Safeguarding Good Scientific Practice and takes into account the FAIR Guiding Principles for scientific data management and stewardship as well as the OECD Principles and Guidelines for Access to Research Data from Public Funding. Qualiservice coordinates the networking and further development of scientific infrastructures for archiving and secondary use of qualitative data from social research within the framework of the National Research Data Infrastructure. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.qualiservice.org/en/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "anonymization and pseudonymization of qualitative data", "contextualisation", "data curation", "data documentation", "data management planning", "data protection", "data sharing", "long-term archiving", "metadata for qualitative data", "publishing metadata", "research data management", "research ethics", "reuse of qualitative research data", "secondary analysis"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/bmbf/en/home/home_node.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/bmbf/en/services/contact/contact_node.html"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/press/index.html"]}, {"institutionName": "Universit\u00e4t Bremen", "institutionAdditionalName": ["University of Bremen"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.uni-bremen.de/en/", "institutionIdentifier": ["ROR:04ers2y35"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-bremen.de/en/contact"]}] [{"policyName": "Sharing Data", "policyURL": "https://www.qualiservice.org/en/data-services/sharing-data.html"}, {"policyName": "Using Data", "policyURL": "https://www.qualiservice.org/en/data-services/using-data.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.qualiservice.org/files/contao-theme/public/documents/downloads/Vereinbarung_Datennutzung_01_20202_barrierefrei.pdf"}] restricted [{"dataUploadLicenseName": "Sharing Data", "dataUploadLicenseURL": "https://www.qualiservice.org/en/data-services/sharing-data.html"}] [] yes {} ["DOI"] [] yes yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Qualiservice is the successor to the Archive for Life Course Research (Archiv für Lebenslaufforschung, ALLF). Partners and Collaborations see: https://www.qualiservice.org/en/about/cooperations/scientific-associations.html 2014-06-17 2021-09-28 +r3d100011086 CancerData.org eng [{"additionalName": "Sharing data for cancer research", "additionalNameLanguage": "eng"}] https://www.cancerdata.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.s2txbp"] ["erik.roelofs@maastro.nl"] The CancerData site is an effort of the Medical Informatics and Knowledge Engineering team (MIKE for short) of Maastro Clinic, Maastricht, The Netherlands. Our activities in the field of medical image analysis and data modelling are visible in a number of projects we are running. CancerData is offering several datasets. They are grouped in collections and can be public or private. You can search for public datasets in the NBIA (National Biomedical Imaging Archive) image archives without logging in. eng ["disciplinary"] {"size": "522 datasets", "updatedp": "2015-03-13"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.maastro.nl/en/1/77/strategienota.aspx [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Computer Assisted Theragnostics CAT", "cancer", "image", "medicine", "radiotherapy", "treatment", "tumor"] [{"institutionName": "Maastro", "institutionAdditionalName": ["MIKE", "Maastricht Radiation Oncology clinic, MIKE"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.maastro.nl", "institutionIdentifier": ["ROR:059wkzj26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.maastro.nl/en/1/248/adress-information.aspx"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] restricted [] ["other"] yes {"api": "http://mircwiki.rsna.org/index.php?title=CTP-The_RSNA_Clinical_Trial_Processor", "apiType": "FTP"} ["DOI"] [] yes yes [] [] {} The MIKE team encourages the use of Free and Open Source Software (FOSS). The CancerData site is build with a DRUPAL (https://www.drupal.org/) web portal, caBIG (http://cbiit.nci.nih.gov/ncip) data services and running on Debian (http://www.debian.org/ ) servers. 2014-06-25 2021-10-11 +r3d100011087 doRiNA eng [{"additionalName": "database of RNA interactions in post-transcriptional regulation", "additionalNameLanguage": "eng"}] https://dorina.mdc-berlin.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.z0ea6a", "RRID:SCR_013222", "RRID:nlx_151321"] ["markus.landthaler@mdc-berlin.de"] doRiNA is a database of transcriptome-wide binding site data for RNA binding proteins and microRNAs eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["MRNA", "MicroRNAs", "RNA", "RPBs", "bioinformatics", "biology", "biomedicine", "gene regulation", "genetics", "systems biology"] [{"institutionName": "Max Planck Institute for Biology of Ageing", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.age.mpg.de/", "institutionIdentifier": ["ROR:04xx1tc24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.age.mpg.de/contact/"]}, {"institutionName": "Max-Delbr\u00fcck Center for Moleculare Medicine in the helmholtz Association", "institutionAdditionalName": ["MDC", "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin in der Helmholtz-Gemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin, Medizinische Systembiologie", "institutionAdditionalName": ["BIMSB", "Max-Delbr\u00fcck Center for moleculare Medicine, Berlin Institute for Medical Systems Biology"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/bimsb", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.mdc-berlin.de/bimsb/contact?mdcbl%5B0%5D=/bimsb%23t-about&mdctl=0&mdcou=68130&mdcot=1&mdcbv=df-JuFbyFGDHnL1Jnv2AfisWXYOebTMbTnItfcK6mn8#t-about"]}] [{"policyName": "Tutorials", "policyURL": "https://dorina.mdc-berlin.de/tutorials"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.mdc-berlin.de/de/impressum"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mdc-berlin.de/de/impressum"}] restricted [] ["other"] yes {"api": "http://dorina.mdc-berlin.de/docs", "apiType": "REST"} ["none"] https://dorina.mdc-berlin.de/ [] yes yes [] [] {} The database is directly linked to a local copy of the UCSC genome browser. 2014-06-26 2021-08-25 +r3d100011089 GenomeRNAi eng [] http://www.genomernai.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.f55jfq", "RRID:SCR_013088", "RRID:nif-0000-02901"] ["contact@genomernai.de"] GenomeRNAi is a database containing phenotypes from RNA interference (RNAi) screens in Drosophila and Homo sapiens. In addition, the database provides an updated resource of RNAi reagents and their predicted quality. eng ["disciplinary"] {"size": "687 RNAi screens thereof 478 human and 209 Drosophila;", "updatedp": "2021-09-06"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.genomernai.org/Index [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Homo sapiens", "RNAi library", "bioinformatics", "drosophila genome", "genomics", "sequence information", "substances"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/201666", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "German Cancer Research Center", "institutionAdditionalName": ["DKFZ", "Deutsches Krebsforschungszentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dkfz.de/en/index.html", "institutionIdentifier": ["ROR:04cdgtt98", "RRID:SCR_012942", "RRID:nlx_36666"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dkfz.de/en/kontakt.php"]}, {"institutionName": "Helmholtz-Gemeinschaft Deutscher Forschungszentren", "institutionAdditionalName": ["Helmholtz Association of German Research Centres"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz.de/en/contact/"]}] [{"policyName": "Genome RNAi download information", "policyURL": "http://www.genomernai.org/DownloadAllExperimentsForm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/deed.en"}] restricted [{"dataUploadLicenseName": "Submission of RNAi phenotype and/or reagent data", "dataUploadLicenseURL": "http://www.genomernai.org/Submission"}] ["unknown"] yes {} ["none"] http://www.genomernai.org/About# [] yes yes [] [] {} GenomeRNAi is covered by Thomson Reuters Data Citation Index. GenomeRNAi contains data from public sources including: NCBI, FlyBase and links to Europe PubMed Central 2014-06-26 2021-09-06 +r3d100011091 DepositOnce eng [{"additionalName": "Repositorium f\u00fcr Forschungsdaten und -publikationen", "additionalNameLanguage": "deu"}, {"additionalName": "Repository for Research Data and Publications", "additionalNameLanguage": "eng"}] https://depositonce.tu-berlin.de/ [] ["dspace@depositonce.tu-berlin.de"] "Deposit Once" is the repository for research data and publications of TU Berlin. It is an institutional repository for deposition and storage of research data from many different disciplines. "Deposit Once" is also a service platform that provides value-added services - including the reusability of existing data, automated workflows for the detection of research results and other added values ​​for the scientists / inside. eng ["institutional"] {"size": "51 Generic Research Data; 47 Image; 16 Textual Data; 11 Audio; 11 Software; 4 3D Model; 2 Multimedia", "updatedp": "2020-01-13"} 2013 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.szf.tu-berlin.de/menue/dienste_tools/repositorium_depositonce/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multi-disciplinary"] [{"institutionName": "Technische Universit\u00e4t Berlin, Servicezentrum Forschungsdaten und -publikationen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.szf.tu-berlin.de/menue/ueber_das_szf/", "institutionIdentifier": ["ROR:03v4gjf40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.szf.tu-berlin.de/servicemenue/kontakt/"]}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Handlungsempfehlungen zur Umsetzung der Forschungsdaten-Policy der Technischen Universit\u00e4t Berlin", "policyURL": "https://www.szf.tu-berlin.de/fileadmin/f33_szf/FD-Policy_TUBerlin_Handlungsempfehlungen_end_de.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.szf.tu-berlin.de/servicemenue/impressum/"}] restricted [] ["DSpace"] yes {"api": "http://openarchives.org/", "apiType": "OAI-PMH"} ["DOI", "hdl"] [] yes yes ["DINI Certificate"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://depositonce.tu-berlin.de/feed/rss_2.0/site", "syndicationType": "RSS"} 2014-06-27 2020-01-13 +r3d100011094 Ocean Networks Canada eng [] https://www.oceannetworks.ca/ [] ["https://www.oceannetworks.ca/about-us/contact-us"] Ocean Networks Canada maintains several observatories installed in three different regions in the world's oceans. All three observatories are cabled systems that can provide power and high bandwidth communiction paths to sensors in the ocean. The infrastructure supports near real-time observations from multiple instruments and locations distributed across the Arctic, NEPTUNE and VENUS observatory networks. These observatories collect data on physical, chemical, biological, and geological aspects of the ocean over long time periods, supporting research on complex Earth processes in ways not previously possible. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.oceannetworks.ca/about-us [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Britisch Columbia", "North East Pacific", "acoustic monitoring of air-sea interactions", "benthic ecology", "biology", "chemical processes", "coastal network", "deep sea", "deep water renewal", "delta slope stability", "earthquakes and tsunamis", "estuary circulation", "fish tracking", "marine ecosystems", "marine mammal communications", "measurement of seismic acitvity", "meteorological sensors", "meterology", "methane gas", "observatory system", "ocean observatory", "ocean research", "ocean science", "ocean-atmosphere interactions", "oceanic sensors", "plate tectonics", "river plume dynamics", "seafloor", "sediment transport and bedform dynamics", "tides and ocean mixing", "undersea laboratory", "undersea network", "zooplankton dynamics"] [{"institutionName": "British Columbia Government, British Columbia Knowledge Development Fund", "institutionAdditionalName": ["BCKDF"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gov.bc.ca/citz/technologyandinnovation/Funding/BCKDF/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Victoria, Ocean Networks Canada Observatory", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.oceannetworks.ca/", "institutionIdentifier": ["ROR:05gknh003"], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.oceannetworks.ca/about-us/contact-us"]}] [{"policyName": "Data Policy", "policyURL": "http://www.oceannetworks.ca/data-tools/data-help/data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.oceannetworks.ca/legal-notices"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.oceannetworks.ca/legal-notices"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.oceannetworks.ca/data-tools/data-help/data-policy"}] restricted [{"dataUploadLicenseName": "Guidelines for submissions", "dataUploadLicenseURL": "http://www.oceannetworks.ca/terms-and-conditions-use"}] ["unknown"] {"api": "http://www.oceannetworks.ca/data-tools/data-access/data-download-tools", "apiType": "other"} ["none"] http://www.oceannetworks.ca/data-tools/data-help/data-policy/how-cite-us [] unknown yes ["WDS"] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Ocean Networks Canada is a regular member of The International Council for Science World Data System (ICSU-WDS). Note: We are currently working to integrate VENUS, NEPTUNE and Arctic data access. At present, only legacy tools are available for each observatory. FGDC-Metadatastandard: http://www.oceannetworks.ca/data-tools/data-help/data-policy 2014-07-08 2021-10-11 +r3d100011095 ODIN eng [{"additionalName": "ODIN Portal", "additionalNameLanguage": "eng"}, {"additionalName": "Online Data & Information Network for Energy", "additionalNameLanguage": "eng"}] https://odin.jrc.ec.europa.eu/odin/index.jsp [] ["https://ec.europa.eu/jrc/en/contact/form"] The ODIN Portal hosts scientific databases in the domains of structural materials and hydrogen research and is operated on behalf of the European energy research community by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union. ODIN contains engineering databases (Mat-Database, Hiad-Database, Nesshy-Database, HTR-Fuel-Database, HTR-Graphit-Database) and document management sites and other information related to European research in the area of nuclear and conventional energy. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://iet.jrc.ec.europa.eu/our-mission [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["alloy", "bioenergy", "clean fossil fuel", "energy", "enery research", "high temperature reactor fuel element data", "high temperature reactor graphite element data", "hydrogen accident", "hydrogen incident", "hydrogen sorption", "material properties", "material testing", "nuclear safety", "nuclear security", "renewable energy"] [{"institutionName": "European Commission, Joint Research Centre", "institutionAdditionalName": ["EC, JRC", "EU Science Hub"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/jrc/en", "institutionIdentifier": ["ROR:02qezmz13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "COMMISSION DECISION of 12 December 2011 on the reuse of Commission documents", "policyURL": "https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}] closed [] ["unknown"] {} ["DOI"] [] unknown yes [] [] {} ODIN is the Online Data & Information Network of the European Commission Joint Research Centre (JRC) and provides data management services to the European energy research community. It contains engineering databases MATDB and HIAD and plus the document database DOMA and other information related to European research in the area of nuclear and conventional energy. 2014-07-15 2021-10-11 +r3d100011098 OpenML eng [{"additionalName": "Open Machine Learning", "additionalNameLanguage": "eng"}] http://www.openml.org/ ["biodbcore-001316"] ["j.vanschoren@liacs.leidenuniv.nl"] OpenML is an open ecosystem for machine learning. By organizing all resources and results online, research becomes more efficient, useful and fun. OpenML is a platform to share detailed experimental results with the community at large and organize them for future reuse. Moreover, it will be directly integrated in today’s most popular data mining tools (for now: R, KNIME, RapidMiner and WEKA). Such an easy and free exchange of experiments has tremendous potential to speed up machine learning research, to engender larger, more detailed studies and to offer accurate advice to practitioners. Finally, it will also be a valuable resource for education in machine learning and data mining. eng ["disciplinary"] {"size": "20.678 datasets and 110.990 tasks", "updatedp": "2019-12-18"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.openml.org [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["algorithms", "datasets", "experimental methodology", "experiments", "machine learning", "meta-learning"] [{"institutionName": "Eindhoven University of Technology", "institutionAdditionalName": ["TU/e", "Technische Universiteit Eindhoven"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tue.nl/en/", "institutionIdentifier": ["ROR:02c2kyt77", "RRID:SCR_003354", "RRID:nlx_151954"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tue.nl/universiteit/contact/"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/contact/index_en.htm"]}, {"institutionName": "Katholieke Universiteit Leuven, Declaratieve Talen en Artificiele Intelligentie", "institutionAdditionalName": ["DTAI", "Katholieke Universiteit Leuven,Declarative Languages and Artificial Intelligence"], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dtai.cs.kuleuven.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dtai.cs.kuleuven.be/about/contact/"]}, {"institutionName": "Leiden University, Leiden Institute f\u00fcr Advanced Computer Science, Data Mining Group", "institutionAdditionalName": ["LIACS Data Mining Group", "Universiteit Leiden, Leiden Institute f\u00fcr Advanced Computer Science, Data Mining Group"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://datamining.liacs.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["j.vanschoren@liacs.leidenuniv.nl"]}, {"institutionName": "Netherlands Organisation for Scientific Research", "institutionAdditionalName": ["NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nwo.nl/en/", "institutionIdentifier": ["ROR:04jsz6e67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nwo.nl/en/contact"]}, {"institutionName": "PASCAL 2", "institutionAdditionalName": ["PASCAL Network", "Pattern Analysis, Statistical Modelling and Computational Learning"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.k4all.org/project/pascal2/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "OpenML documentation", "policyURL": "https://docs.openml.org/"}, {"policyName": "Terms of Use", "policyURL": "https://docs.openml.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/choose/mark/"}] restricted [] ["unknown"] yes {"api": "https://docs.openml.org/#programming-apis", "apiType": "REST"} ["none"] https://docs.openml.org/ [] yes yes [] [] {} OpenML attributes data, flows, runs, tells other how to cite it 2014-07-17 2021-11-17 +r3d100011099 data.bris Research Data Repository eng [] https://data.bris.ac.uk/data/ [] ["data-bris@bristol.ac.uk", "http://www.bristol.ac.uk/staff/researchers/data/contacts/"] The data.bris Research Data Repository is an online digital repository of multi-disciplinary research datasets produced at the University of Bristol. eng ["institutional"] {"size": "763 datasets", "updatedp": "2019-12-18"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.bris.ac.uk/data/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arts", "dentistry", "engineering", "law", "medical sciences", "medicine", "multidisciplinary", "science", "social science", "veterinary sciences"] [{"institutionName": "JISC", "institutionAdditionalName": ["Joint Information Systems Committee"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": ["ROR:01rv9gx86", "RRID:SCR_011331", "RRID:nlx_23596"], "responsibilityStartDate": "2011", "responsibilityEndDate": "2013", "institutionContact": ["https://www.webarchive.org.uk/wayback/archive/20140614064554/http://www.jisc.ac.uk/whatwedo/programmes/di_researchmanagement/managingresearchdata/infrastructure/data-bris.aspx"]}, {"institutionName": "Leverhulme Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leverhulme.ac.uk/", "institutionIdentifier": ["ROR:012mzw131"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.leverhulme.ac.uk/contact/contact-us"]}, {"institutionName": "Open Knowledge", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://okfn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://okfn.org/contact/"]}, {"institutionName": "University of Bristol", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bristol.ac.uk/", "institutionIdentifier": ["ROR:0524sp257", "RRID:SCR_011613", "RRID:nlx_14701"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Bristol, Research Data Service", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bristol.ac.uk/staff/researchers/data/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.bristol.ac.uk/style-guides/web/policies/legal/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data.bris.ac.uk/data/licence"}] restricted [{"dataUploadLicenseName": "Depositing guide", "dataUploadLicenseURL": "http://www.bristol.ac.uk/staff/researchers/data/publishing-research-data/"}] ["CKAN"] {"api": "http://docs.ckan.org/en/ckan-2.7.2/api/", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} data.bris is covered by Thomson Reuters Data Citation Index. 2014-07-18 2021-10-11 +r3d100011100 GLUES Geoportal eng [{"additionalName": "Global Assessment of Land Use Dynamics, Greenhouse Gas Emissions and Ecosystem Services : Geoportal", "additionalNameLanguage": "eng"}, {"additionalName": "Sustainable Land Management", "additionalNameLanguage": "eng"}] http://geoportal-glues.ufz.de/index.php ["biodbcore-001749"] ["Stephan.Maes@tu-dresden.de", "http://geoportal-glues.ufz.de/inform/contact.html"] This portal provides access to the GLUES Geodata Infrastructure (Glues GDI). The infrastructure is the common data and service platform for the international research program 'Sustainable Land Management'. eng ["disciplinary", "institutional"] {"size": "5095 datasets", "updatedp": "2019-11-29"} 2010-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://geoportal-glues.ufz.de/inform/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "biodiversity", "climate change", "economic change", "economics", "ecosystem", "forestry", "geography", "geosciences", "horticulture medicine", "land use", "veterinary medicine", "water resources"] [{"institutionName": "FONA", "institutionAdditionalName": ["Forschung f\u00fcr nachhaltige Entwicklung", "Research for Sustainable Development"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fona.de/en/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fona.de/en/contact.php"]}, {"institutionName": "German Ministry of Education and Research", "institutionAdditionalName": ["Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Helmholtz Centre for Environmental Research", "institutionAdditionalName": ["Helmholtz-Zentrum f\u00fcr Umweltforschung", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/index.php?en=33573", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ufz.de/index.php?en=34291"]}, {"institutionName": "Technical University Dresden", "institutionAdditionalName": ["Technische Universit\u00e4t Dresden, Professur f\u00fcr Geoinformationssysteme"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://tu-dresden.de/", "institutionIdentifier": ["ROR:042aqky30"], "responsibilityStartDate": "2010-01-01", "responsibilityEndDate": "", "institutionContact": ["Stephan.Maes@tu-dresden.de"]}] [{"policyName": "Licensing documents", "policyURL": "http://geoportal-glues.ufz.de/discover/documents.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://geoportal-glues.ufz.de/documents/Creative_Commons_Leitfaden.pdf"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}] restricted [] ["other", "other", "other"] {"api": "http://geoportal-glues.ufz.de/discover/publish.php", "apiType": "other"} ["none"] http://geoportal-glues.ufz.de/discover/publish.php [] unknown yes [] [] {"syndication": "http://geoportal-glues.ufz.de/geoportal/blog/?feed=rss2", "syndicationType": "RSS"} The GLUES GDI relies on the latest international standards (W3C, OGC, ISO 19115, ISO 19119) for service-based geodata access and sharing as well as established service oriented Web technologies. 2014-07-18 2021-11-17 +r3d100011104 Worldwide Protein Data Bank eng [{"additionalName": "PDB", "additionalNameLanguage": "eng"}, {"additionalName": "wwPDB", "additionalNameLanguage": "eng"}] http://www.wwpdb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.mckkb4", "RRID:SCR_006555", "RRID:nif-0000-23903"] ["info@wwpdb.org"] The Protein Data Bank (PDB) is an archive of experimentally determined three-dimensional structures of biological macromolecules that serves a global community of researchers, educators, and students. The data contained in the archive include atomic coordinates, crystallographic structure factors and NMR experimental data. Aside from coordinates, each deposition also includes the names of molecules, primary and secondary structure information, sequence database references, where appropriate, and ligand and biological assembly information, details about data collection and structure solution, and bibliographic citations. The Worldwide Protein Data Bank (wwPDB) consists of organizations that act as deposition, data processing and distribution centers for PDB data. Members are: RCSB PDB (USA), PDBe (Europe) and PDBj (Japan), and BMRB (USA). The wwPDB's mission is to maintain a single PDB archive of macromolecular structural data that is freely and publicly available to the global community. eng ["disciplinary", "other"] {"size": "PDB Depositions 152.043", "updatedp": "2018-11-30"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.wwpdb.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biology", "molecular biology", "proteins", "proteomics", "x-ray structures"] [{"institutionName": "Biological Magnetic Resonance Data Bank", "institutionAdditionalName": ["BMRB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bmrb.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Protein Data Bank Japan", "institutionAdditionalName": ["PDBj"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pdbj.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Protein Data Bank in Europe", "institutionAdditionalName": ["PDBe"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ebi.ac.uk/pdbe/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RCSB Protein Data Bank", "institutionAdditionalName": ["RCSB PDB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wwpdb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Electron Microscopy Data Bank at PDBe", "institutionAdditionalName": ["EMDB"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ebi.ac.uk/pdbe/emdb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/05/worldwide-protein-data-bank_2021-05-07.pdf"}, {"policyName": "Worldwide Protein Data Bank Policy Statement Governing Integrative/Hybrid Methods Structure Depositions", "policyURL": "http://www.wwpdb.org/documentation/ihm"}, {"policyName": "wwPDB Agreement", "policyURL": "http://www.wwpdb.org/about/agreement"}, {"policyName": "wwPDB Privacy and Usage Policies", "policyURL": "https://www.wwpdb.org/about/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.wwpdb.org/about/agreement"}] restricted [{"dataUploadLicenseName": "wwPDB new deposition and annotation system", "dataUploadLicenseURL": "http://www.wwpdb.org/deposition/system-information"}] ["unknown"] yes {"api": "http://www.wwpdb.org/download/downloads", "apiType": "FTP"} ["none"] http://www.wwpdb.org/about/cite-us ["ORCID"] yes yes ["other"] [] {"syndication": "http://www.wwpdb.org/news_rss.xml", "syndicationType": "RSS"} is covered by Elsevier. Worldwide Protein Data Bank is covered by Thomson Reuters Data Citation Index. wwPDB is a regular Member of the ICSU World Data System - WDS. 2014-08-13 2021-09-03 +r3d100011105 European Zebrafish Resource Center eng [{"additionalName": "EZRC", "additionalNameLanguage": "eng"}] https://www.ezrc.kit.edu/index.php [] ["EZRC-Requests@itg.kit.edu"] The EZRC at KIT houses the largest experimental fish facility in Europe with a capacity of more than 300,000 fish. Zebrafish stocks are maintained mostly as frozen sperm. Frequently requested lines are also kept alive as well as a selection of wildtype strains. Several thousand mutations in protein coding genes generated by TILLING in the Stemple lab of the Sanger Centre, Hinxton, UK and lines generated by ENU mutagenesis by the Nüsslein-Volhard lab in addition to transgenic lines and mutants generated by KIT groups or brought in through collaborations. We also accept submissions on an individual basis and ship fish upon request to PIs in Europe and elsewhere. EZRC also provides screening services and technologies such as imaging and high-throughput sequencing. Key areas include automation of embryo handling and automated image acquisition and processing. Our platform also involves the development of novel microscopy techniques (e.g. SPIM, DSLM, robotic macroscope) to permit high-resolution, real-time imaging in 4D. By association with the ComPlat platform, we can support also chemical screens and offer libraries with up to 20,000 compounds in total for external users. As another service to the community the EZRC provides plasmids (cDNAs, transgenes, Talen, Crispr/cas9) maintained by the Helmholtz repository of Bioparts (HERBI) to the scientific community. In addition the fish facility keeps a range of medaka stocks, maintained by the Loosli group. eng ["disciplinary", "institutional"] {"size": "more than 300.000 zebrafish; 15.000 mutants; 20.000 compounds; over 2.500 plasmids", "updatedp": "2018-11-30"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ezrc.kit.edu/24.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bio samples", "fish embryos", "fish sperms", "mutant zebrafish", "plasmids", "protein coding genes", "screening service", "transgenic zebrafish"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/about/archives", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz BioInterfaces in Technology and Medicine programme", "institutionAdditionalName": ["BIFTM"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bif.kit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bif.kit.edu/71.php"]}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/kit/english/index.php", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute of Toxicology and Genetics, European Zebrafish Resource Center", "institutionAdditionalName": ["EZRC", "KIT ITG", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Toxikologie und Genetik, European Zebrafish Resource Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ezrc.kit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["EZRC-Requests@itg.kit.edu"]}, {"institutionName": "Klaus Tschira Stiftung", "institutionAdditionalName": ["KTS"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.klaus-tschira-stiftung.de/", "institutionIdentifier": ["ROR:052jep661"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Zebrafish Regulomics for Human Health", "institutionAdditionalName": ["ZF-HEALTH"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://zf-health.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "MTA form", "policyURL": "https://www.ezrc.kit.edu/downloads/EZRC_MTA_Form.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ezrc.kit.edu/legals.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ezrc.kit.edu/downloads/EZRC_MTA_Form.pdf"}] restricted [{"dataUploadLicenseName": "Submission form", "dataUploadLicenseURL": "http://www.ezrc.kit.edu/downloads/EZRC_Submission.xlsx"}] ["unknown"] yes {} ["none"] [] unknown yes [] [] {} 2014-08-13 2020-09-11 +r3d100011107 Dartmouth Flood Observatory eng [{"additionalName": "DFO", "additionalNameLanguage": "eng"}, {"additionalName": "Space-based Measurement and Modeling fo Surface Water", "additionalNameLanguage": "eng"}] http://floodobservatory.colorado.edu/index.html [] ["Robert.Brakenridge@Colorado.edu"] Space-based measurement and modeling of surface water for research, humanitarian, and water management application. The Observatory detects, maps, and measures major flood events world-wide using satellite remote sensing. eng ["disciplinary"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://floodobservatory.colorado.edu/dfomission.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["drought", "inundation", "large floods", "river watch", "surface water"] [{"institutionName": "Dartmouth College", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://home.dartmouth.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "2009", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Disaster Alert and Coordination System", "institutionAdditionalName": ["GDACS"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gdacs.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japan Aerospace Exploration Agency", "institutionAdditionalName": ["JAXA", "\u306b\u3064\u3044\u3066", "\u5b87\u5b99\u822a\u7a7a\u7814\u7a76\u958b\u767a\u6a5f\u69cb"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://global.jaxa.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Colorado, Institute of Arctic and Alpine Research, Community Surface Dynamics Modeling System", "institutionAdditionalName": ["CSDMS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://instaar.colorado.edu/research/programs/community-surface-dynamics-modeling-system/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DFO mission", "policyURL": "http://floodobservatory.colorado.edu/dfomission.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["unknown"] yes {} ["none"] http://floodobservatory.colorado.edu/Archives/ [] unknown unknown [] [] {} 2014-08-14 2018-11-30 +r3d100011108 heiDATA eng [{"additionalName": "heiDATA Institutional Repository for Research Data of Heidelberg University", "additionalNameLanguage": "eng"}] https://heidata.uni-heidelberg.de ["FAIRsharing_DOI:10.25504/FAIRsharing.zABkyi"] ["https://data.uni-heidelberg.de/contact.html"] heiDATA is Heidelberg University’s research data repository. It is managed by the Competence Centre for Research Data, a joint institution of the University Library and the Computing Centre. All researchers affiliated with Heidelberg University can use this service for archiving and publishing their data. eng ["institutional", "other"] {"size": "68 Dataverses; 259 Studies; 2.474 Files", "updatedp": "2018-11-30"} 2014-06-16 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.uni-heidelberg.de/services.html#postproject [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["chemistry", "computer science", "data processing", "earth sciences", "economics", "geograhy", "history", "linguistics", "mathematics", "modern languages", "social science"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Heidelberg University, Competence Centre for Research Data", "institutionAdditionalName": ["Universit\u00e4t Heidelberg, Kompetenzzentrum Forschungsdaten"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://data.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data@uni-heidelberg.de"]}] [{"policyName": "Open Access Policy", "policyURL": "https://www.uni-heidelberg.de/de/universitaet/das-profil-der-universitaet-heidelberg/gute-wissenschaftliche-praxis/open-access-policy"}, {"policyName": "Research Data Policy", "policyURL": "https://www.uni-heidelberg.de/de/universitaet/das-profil-der-universitaet-heidelberg/gute-wissenschaftliche-praxis/research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}] restricted [] ["DataVerse"] yes {"api": "https://heidata.uni-heidelberg.de/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} heiDATA Dataverse Network is covered by Thomson Reuters Data Citation Index. 2014-08-15 2021-11-16 +r3d100011109 Information System and Data Center eng [{"additionalName": "Global Earth Science Data", "additionalNameLanguage": "eng"}, {"additionalName": "ISDC", "additionalNameLanguage": "eng"}] http://isdc.gfz-potsdam.de/homepage/ [] ["isdc-support@gfz-potsdam.de"] ISDC's online service portal is an access point for all manner of geoscientific geodata, its corresponding metadata, scientific documentation and software tools. The majority of the data and information, the portal currently offers to the public, are global geomonitoring products such as satellite orbit and Earth gravity field data as well as geomagnetic and atmospheric data for the exploration. These products for Earths changing system are provided via state-of-the art retrieval techniques. The projects hosted are: CHAMP, GGP, GRACE, GNSS, GGSP, GGOS, GPS-PDR, ICGEM, TerraSAR-x (TSX-TOR) and TanDEM-X. eng ["disciplinary", "institutional"] {"size": "20.86 TB of data; 33.67 mio products", "updatedp": "2017-10-20"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isdc-old.gfz-potsdam.de/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "earth data", "earth gravity field", "geomagnetism", "geomonitoring", "satellite data", "satellite orbit"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten \nam Deutschen GeoForschungsZentrum \nGFZ", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}, {"policyName": "How to get data", "policyURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://isdc.gfz-potsdam.de/imprint/?L=0#c76"}, {"dataLicenseName": "other", "dataLicenseURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}, {"dataLicenseName": "other", "dataLicenseURL": "https://tandemx-science.dlr.de/pdfs/TSX-TDX-user-license-v2.2.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.dlr.de/dlr/en/desktopdefault.aspx/tabid-10383/571_read-430/"}] closed [] [] {"api": "ftp://rz-vm152.gfz-potsdam.de/grace/", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} GFZ was and is involved in the development, manufacturing, operation and analysis of various geoscientific satellite systems such as GFZ-1, CHAMP, GRACE, GOCE, GRACE-FO, Swarm or EnMAP. 2014-08-18 2020-10-16 +r3d100011110 CHAMP eng [{"additionalName": "Challenging Minisatellite Payload", "additionalNameLanguage": "eng"}] https://www.gfz-potsdam.de/champ/ [] ["champ@gfz-potsdam.de", "https://www.gfz-potsdam.de/champ/"] CHAMP (CHAllenging Minisatellite Payload) is a German small satellite mission for geoscientific and atmospheric research and applications, managed by GFZ. With its highly precise, multifunctional and complementary payload elements (magnetometer, accelerometer, star sensor, GPS receiver, laser retro reflector, ion drift meter) and its orbit characteristics (near polar, low altitude, long duration) CHAMP will generate for the first time simultaneously highly precise gravity and magnetic field measurements over a 5 years period. This will allow to detect besides the spatial variations of both fields also their variability with time. The CHAMP mission had opened a new era in geopotential research and had become a significant contributor to the Decade of Geopotentials. In addition with the radio occultation measurements onboard the spacecraft and the infrastructure developed on ground, CHAMP had become a pilot mission for the pre-operational use of space-borne GPS observations for atmospheric and ionospheric research and applications in weather prediction and space weather monitoring. End of the mission of CHAMP was at September 19 2010, after ten years, two month and four days, after 58277 orbits. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.gfz-potsdam.de/en/section/geomagnetism/infrastructure/champ/mission-orbit/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["atmospheric limb", "atmospheric limb sounding", "earth gravity field", "earth magnetic field", "electric field investigations", "geopotential research", "gps", "ionosphere sounding", "ionospheric sounding", "magnetic field measurements", "satellite"] [{"institutionName": "COSMOS International Launch Services GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ohb-cosmos.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Aerospace Center", "institutionAdditionalName": ["DLR", "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt e.V."], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Jena-Optronik GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jena-optronik.de/", "institutionIdentifier": ["Wikidata:Q1686789"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten \nam Deutschen GeoForschungsZentrum GFZ", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}, {"policyName": "How to get data", "policyURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://isdc-old.gfz-potsdam.de/html/CH-OG-4-PSO.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}] closed [] ["unknown"] {} ["DOI"] http://isdc-old.gfz-potsdam.de/html/CH-OG-4-PSO.html [] unknown unknown [] [] {} The CHAMP mission ended on September 19 2010, when - after ten years, two month and four days and after 58277 orbits - the satelite burned out in outer space: Project partner: https://www.gfz-potsdam.de/en/section/geomagnetism/infrastructure/champ/project-partners/ 2014-08-18 2021-09-03 +r3d100011111 GRACE ISDC eng [{"additionalName": "Gravity Recovery and Climate Experiment", "additionalNameLanguage": "eng"}] http://isdc.gfz-potsdam.de/grace-isdc/ [] ["christoph.dahle@gfz-potsdam.de"] The twin GRACE satellites were launched on March 17, 2002. Since that time, the GRACE Science Data System (SDS) has produced and distributed estimates of the Earth gravity field on an ongoing basis. These estimates, in conjunction with other data and models, have provided observations of terrestrial water storage changes, ice-mass variations, ocean bottom pressure changes and sea-level variations. This portal, together with PODAAC, is responsible for the distribution of the data and documentation for the GRACE project. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2002 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www2.csr.utexas.edu/grace/overview.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["GPS", "climate", "earth gravity field", "earth rotation", "geodetic hazard monitoring", "satellite"] [{"institutionName": "GFZ, Information Systems and Data Center", "institutionAdditionalName": ["ISDC"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://isdc.gfz-potsdam.de/grace-isdc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GRACE", "institutionAdditionalName": ["Gravity Recovery and Climate Experiment"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www2.csr.utexas.edu/grace/overview.html", "institutionIdentifier": ["Wikidata:Q704319"], "responsibilityStartDate": "2002", "responsibilityEndDate": "2017", "institutionContact": []}, {"institutionName": "German Aerospace Center", "institutionAdditionalName": ["DLR", "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt e.V."], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/grace/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oceanography Distributed Active Data Center", "institutionAdditionalName": ["PODAAC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/eosdis/daacs/podaac", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://isdc.gfz-potsdam.de/imprint/#c76"}, {"dataLicenseName": "other", "dataLicenseURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}] closed [] ["unknown"] {"api": "ftp://rz-vm152.gfz-potsdam.de/grace/", "apiType": "FTP"} ["DOI"] [] unknown unknown [] [] {} GRACE is a joint partnership between the National Aeronautics and Space Administration (NASA) in the United States and Deutsches Zentrum fuer Luft und Raumfahrt (DLR) in Germany. Prof. Byron Tapley of the University of Texas Center for Space Research (UTCSR) is the Principal Investigator (PI), and Dr.-Ing. Frank Flechtner of the GeoForschungsZentrum (GFZ) Potsdam is the Co-Principal Investigator (Co-PI). 2014-08-18 2020-09-16 +r3d100011112 GNSS - ISDC eng [{"additionalName": "Global Navigation Satellite Systems - Information System and Data Center", "additionalNameLanguage": "eng"}] https://www.gfz-potsdam.de/en/section/space-geodetic-techniques/infrastructure/gnss-station-network/ [] ["Markus.Ramatschi@gfz-potsdam.de"] The term GNSS (Global Navigation Satellite Systems) comprises the different navigation satellite systems like GPS, GLONAS and the future Galileo as well as rawdata from GNSS microwave receivers and processed or derived higher level products and required auxiliary data. The results of the GZF GNSS technology based projects are used as contribution for maintaining and studying the Earth rotational behavior and the global terrestial reference frame, for studying neotectonic processes along plate boundaries and the interior of plates and as input to short term weather forecasting and atmosphere/climate research. Currently only selected products like observation data, navigation data (ephemeriden), meteorological data as well as quality data with a limited spatial coverage are provided by the GNSS ISDC. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=41 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["VLBI", "atmosphere sounding", "geodynamics", "gps", "satellite navigation"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gfz-potsdam.de/en/imprint/"}] closed [] ["unknown"] {"api": "ftp://ftp.gfz-potsdam.de/GNSS/products/mgex/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2014-08-19 2020-10-16 +r3d100011113 GGSP - ISDC eng [{"additionalName": "Galileo Geodetic Service Provider - Information System and Data Center", "additionalNameLanguage": "eng"}, {"additionalName": "Geodetic Reference Service Provider (GRSP) for Galileo", "additionalNameLanguage": "eng"}] https://www.gfz-potsdam.de/en/section/space-geodetic-techniques/projects/grsp/ [] ["benjamin.maennel@gfz-potsdam.de"] The main function of the GGSP (Galileo Geodetic Service Provider) is to provide a terrestrial reference frame, in the broadest sense of the word, to both the Galileo Core System (GCS) as well as to the Galileo User Segment (all Galileo users). This implies that the GGSP should enable all users of the Galileo System, including the most demanding ones, to access and realise the GTRF with the precision required for their specific application. Furthermore, the GGSP must ensure the proper interfaces to all users of the GTRF, especially the geodetic and scientific user groups. In addition the GGSP must ensure the adherence to the defined standards of all its products. Last but not least the GGSP will play a key role to create awareness of the GTRF and educate users in the usage and realisation of the GTRF. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=24 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Galileo", "Galileo Terres trial Reference Frame", "earth rotation parameters", "geodynamics", "satellite", "satellites orbits"] [{"institutionName": "European Commission, Research & Innovation, 6th Framework Programme", "institutionAdditionalName": ["FP6"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp6/pdf/fp6-in-brief_en.pdf", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2006", "institutionContact": []}, {"institutionName": "European Global Navigation Satellite Systems Agency", "institutionAdditionalName": ["GSA"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gsa.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gfz-potsdam.de/en/imprint/"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} Description: http://gfzpublic.gfz-potsdam.de/pubman/item/escidoc:242789:1/component/escidoc:242788/16323.pdf 2014-08-19 2020-09-30 +r3d100011114 GGOS ICGEM eng [{"additionalName": "Global Geodetic Observing System at GFZ International Center for Global Gravity Field Models", "additionalNameLanguage": "eng"}] http://icgem.gfz-potsdam.de/home [] ["bar@gfz-potsdam.de"] !!! >>> Duplicate to https://www.re3data.org/repository/r3d100011116 , this entry is no longer maintained <<< !!!! GGOS is the Global Geodetic Observing System of the International Association of Geodesy (IAG). It provides observations of the three fundamental geodetic observables and their variations, that is, the Earth's shape, the Earth's gravity field and the Earth's rotational motion. GGOS integrates different geodetic techniques, different models, different approaches in order to ensure a long-term, precise monitoring of the geodetic observables in agreement with the Integrated Global Observing Strategy (IGOS). GGOS provides the observational basis to maintain a stable, accurate and global reference frame and in this function is crucial for all Earth observation and many practical applications. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ggos.org/en/about/services/icgem/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["earth system", "geodynamics", "satellite"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of Geodesy", "institutionAdditionalName": ["IAG"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iag-aig.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy", "policyURL": "http://ggos.org/en/about/services/icgem/"}, {"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ggos.org/en/about/services/icgem/"}] closed [] ["unknown"] {} ["DOI"] [] unknown unknown [] [] {} 2014-08-19 2021-10-27 +r3d100011115 GPS-PDR ISDC eng [{"additionalName": "GPS Potsdam Dresden Reprocessing", "additionalNameLanguage": "eng"}] http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=46 [] ["isdc-support@gfz-potsdam.de"] <<<<< ----- !!! The data is in the phase of migration to another system. Therefore the repository is no longer available. This record is out-dated.; 2020-10-06 !!! ----- >>>>> Due to the changes at the individual IGS analysis centers during these years the resulting time series of global geodetic parameters are inhomogeneous and inconsistent. A geophysical interpretation of these long series and the realization of a high-accuracy global reference frame are therefore difficult and questionable. The GPS reprocessing project GPS-PDR (Potsdam Dresden Reprocessing), initiated by TU München and TU Dresden and continued by GFZ Potsdam and TU Dresden, provides selected products of a homogeneously reprocessed global GPS network such as GPS satellite orbits and Earth rotation parameters. eng ["disciplinary", "institutional"] {"size": "21.04 TB of data, 34.11 Mio products", "updatedp": "2018-06-20"} 2007 2018 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["GPS", "earth rotation", "satellite orbits"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International GNSS Service", "institutionAdditionalName": ["IGS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://beta.igs.org/", "institutionIdentifier": ["Wikidata:Q59852567"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Dresden", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://tu-dresden.de/?set_language=en", "institutionIdentifier": ["ROR:042aqky30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "http://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}, {"policyName": "How to get data", "policyURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gfz-potsdam.de/impressum/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=37"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-08-19 2021-07-20 +r3d100011116 ICGEM eng [{"additionalName": "International Centre for Global Earth Models", "additionalNameLanguage": "eng"}] http://icgem.gfz-potsdam.de/home [] ["icgem@gfz-potsdam.de"] The International Center for Global Earth Models collects and distributes historical and actual global gravity field models of the Earth and offers calculation service for derived quantities. In particular the tasks include: collecting and archiving of all existing global gravity field models, web interface for getting access to global gravity field models, web based visualization of the gravity field models their differences and their time variation, web based service for calculating different functionals of the gravity field models, web site for tutorials on spherical harmonics and the theory of the calculation service. As new service since 2016, ICGEM is providing a Digital Object Identifier (DOI) for the data set of the model (the coefficients). eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataservices.gfz-potsdam.de/mesi/overview.php?id=8 [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3D Visualisation", "gravity field", "satellite orbit"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "GFZ German Research Centre for Geosciences", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Association of Geodesy", "institutionAdditionalName": ["IAG"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iag-aig.org/", "institutionIdentifier": ["Wikidata:Q1639820"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Assocication of Geodesy, International Gravitiy Field Service", "institutionAdditionalName": ["IAG, IGFS", "IAG, International Gravity Field Service"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://igfs.topo.auth.gr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines on Research Data at the GFZ German Research Centre for Geosciences", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_en.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_en.pdf"}] open [] ["unknown"] no {} ["DOI"] http://icgem.gfz-potsdam.de/home [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} ICGEM is one of six centres of the International Gravity Field Service (IGFS) of the International Association of Geodesy (IAG). The other five Centres are Bureau Gravimetrique International (BGI) at CNES / CRGS, Toulouse, France Digital Elevation Model Centre (DEM) at Montfort University, UK International Centre for Earth Tides (ICET) at University of French Polynesia International Geoid Service (IGeS) at Politecnico di Milano, Milan, Italy Technical Support Centre of IGFS at NGA, Saint Louis, USA 2014-08-19 2021-10-27 +r3d100011117 TerraSAR-X TOR eng [{"additionalName": "TSX Tracking Occultation and Ranging", "additionalNameLanguage": "eng"}] https://www.gfz-potsdam.de/sektion/geodaetische-weltraumverfahren/projekte/terrasar-x-ro/ [] ["jens.wickert@gfz-potsdam.de"] TerraSAR-X is a German satellite for Earth Observation, which was launched on July 14, 2007. The mission duration was foreseen to be 5 years. TerraSAR-X carries an innovative high resolution x-band sensor for imaging with resolution up to 1 m. TerraSAR-X carries as secondary payload an IGOR GPS receiver with GPS RO capability. GFZ provided the IGOR and is responsible for the related TOR experiment (Tracking, Occultation and Ranging). TerraSAR-X provides continuously atmospheric GPS data in near-real time. These data from GFZ are continuously assimilated in parallel with those from GRACE-A by the world-leading weather centers to improve their global forecasts. TerraSAR-X, together with TanDEM-X also forms a twin-satellite constellation for atmosphere sounding and generates an unique data set for the evaluation of the accuracy of the GPS-RO technique. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=42 [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["GPS flight receiver", "SAR data", "geologic hazards", "glacier dynamics", "ice sheet impact", "radar mission", "x-band"] [{"institutionName": "DLR", "institutionAdditionalName": ["Deutsches Zentrum f\u00fcr Luft- und Raumfahrt", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Aerospace Center, Terra SAR Science Service System", "institutionAdditionalName": ["TerraSAR-X Science Service System"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sss.terrasar-x.dlr.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tsx.science@dlr.de"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Texas Center for Space Research", "institutionAdditionalName": ["CSR"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.csr.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "https://www.gfz-potsdam.de/veranstaltungen/detail/article/gfz-verabschiedet-grundsaetze-zum-umgang-mit-forschungsdaten/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dlr.de/dlr/de/Portaldata/1/Resources/documents/TSX_brosch.pdf"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} The DLR Microwaves and Radar Institute (DLR-Institut für Hochfrequenztechnik und Radarsysteme), the DLR Remote Sensing Technology Institute (DLR-Institut für Methodik der Fernerkundung) and the German Remote Sensing Data Center (Deutsches Fernerkundungsdatenzentrum; DFD) of DLR cooperate closely in the 'SAR Center of Excellence'. The partner institutions complement each other by covering all relevant fields, from sensor technology and mission design to high-precision operational processing and value-added end-user products. Together with DLR's German Space Operations Center (Deutsches Raumfahrt-Kontrollzentrum), these institutes are also responsible for building the TerraSAR-X ground segment as well as operating the satellite over a period of five years. 2014-08-19 2020-09-28 +r3d100011118 TanDEM-X ISDC eng [] http://isdc-old.gfz-potsdam.de/index.php?module=pagesetter&func=viewpub&tid=1&pid=21#tandemX [] ["jens.wickert@gfz-potsdam.de"] TanDEM-X (TerraSAR-X add-on for Digital Elevation Measurement) is the first bistatic SAR mission in space. TanDEM-X and its twin satellite TerraSAR-X are flying in a closely controlled formation with typical distances between 250 and 500 meters. Primary mission objective is the generation of a consistent global digital elevation model with few meter level height accuracy. Beyond that, GFZ equipped TanDEM-X with a geodetic grade GPS receiver for precise baseline determination and for radio occultation measurements. TanDEM-X was launched on June 21, 2010 for a 5 year mission lifetime. The GPS radio occultation data of the German TanDEM-X satellite are analysed and globally distributed vertical atmospheric profiles (bending angles, refractivity, temperature, water vapor) are derived and provided for the international user community. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2010 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tandemx-science.dlr.de/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["S-Band", "X-band radar based SAR (Synthetic Aperture Radar) interferometry images", "digital earth elevation model", "land surface mapping", "radar satellite", "velocity measurements"] [{"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry for Economic Affairs and Energy", "institutionAdditionalName": ["Bundesministerium f\u00fcr Wirtschaft und Energie"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmwi.de/Navigation/EN/Home/home.html", "institutionIdentifier": ["ROR:02vgg2808"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Aerospace Center, TanDEM-X Science Service System", "institutionAdditionalName": ["TanDEM-X Science Service System"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://tandemx-science.dlr.de/", "institutionIdentifier": ["https://tandemx-science.dlr.de"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Irena.Hajnsek@dlr.de", "tandemx-science@dlr.de"]}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines on Research Data at the GFZ German Research Centre for Geosciences", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_en.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://isdc.gfz-potsdam.de/imprint/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://tandemx-science.dlr.de/pdfs/TSX-TDX-user-license-v2.2.pdf"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} The TanDEM-X mission is financed and implemented as a public-private partnership between the German Aerospace Center, DLR, and Astrium. Funded by the Federal Ministry for Economics and Technology under the ID code 50 EP 0603, TanDEM-X is a PPP project conducted jointly by DLR and Astrium GmbH. DLR is responsible for providing TanDEM-X data to the scientific community, mission planning and implementation, radar operation and calibration, control of the two satellites, and generation of the digital elevation model. To this end, DLR has developed the necessary ground-based facilities. The project's scientific coordination has been entrusted to the DLR Microwaves and Radar Institute in Oberpfaffenhofen. Airbus, Defence & Space (Astrium) has built the satellite and shares the cost of its development and use. Infoterra GmbH, a subsidiary of Airbus, Defence & Space (Astrium), is responsible for commercial marketing of the data from both missions, TerraSAR-X and TanDEM-X. 2014-08-19 2021-03-30 +r3d100011119 ScholarsArchive@OSU eng [] https://ir.library.oregonstate.edu [] ["scholarsarchive@oregonstate.edu", "steve.vantuyl@oregonstate.edu"] ScholarsArchive@OSU is Oregon State University's digital service for gathering, indexing, making available and storing the scholarly work of the Oregon State University community. It also includes materials from outside the institution in support of the university's land, sun, sea and space grant missions and other research interests. eng ["institutional"] {"size": "98 datasets", "updatedp": "2020-12-04"} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://ir.library.oregonstate.edu/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "behavioural sciences", "biology", "chemistry", "computer science", "economics", "electrical and system engineering", "forestry", "horticulture and veterinary Medicine", "humanites", "jurisprudence", "medicine", "microbiology", "physics, geosciences (including geography)", "social sciences", "virology and immunology"] [{"institutionName": "Oregon State University", "institutionAdditionalName": ["OSU"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://oregonstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://communications.oregonstate.edu/webform/contact-osu"]}] [{"policyName": "Open Access Policy", "policyURL": "http://cdss.library.oregonstate.edu/sites/default/files/osu_openacesspolicy_final_single_page.pdf"}, {"policyName": "ScholarsArchive@OSU Policy", "policyURL": "https://wiki.library.oregonstate.edu/confluence/display/RP/ScholarsArchive@OSU+Policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://guides.library.oregonstate.edu/DataRepository/SADataContent"}, {"dataLicenseName": "other", "dataLicenseURL": "https://guides.library.oregonstate.edu/SADataContent"}, {"dataLicenseName": "other", "dataLicenseURL": "https://osulibrary.oregonstate.edu/sa-termsofuse"}] closed [] ["DSpace"] yes {} ["DOI", "hdl"] https://guides.library.oregonstate.edu/DataRepository/SADataFAQ [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://ir.library.oregonstate.edu/xmlui/feed/rss_2.0/1957/40397", "syndicationType": "RSS"} ScholarsArchive@OSU is covered by Thomson Reuters Data Citation Index. Permission for contributing: Anyone belonging to the OSU community can contribute to ScholarsArchive@OSU 2014-08-28 2020-12-04 +r3d100011121 cIRcle eng [{"additionalName": "BIRS", "additionalNameLanguage": "eng"}, {"additionalName": "Banff International Research Station for Mathematical Innovation and Discovery", "additionalNameLanguage": "eng"}] https://circle.ubc.ca/ [] ["eugene.barsky@ubc.ca", "ubc-circle@interchange.ubc.ca"] cIRcle is an open access digital repository for published and unpublished material created by the UBC community and its partners. In BIRS there are thousands of mathematics videos, which are primary research data. Our repository is the largest source of mathematics data with more than 10TB of primary research by the best mathematicians in the world, coming from more than 600 institutions. eng ["disciplinary", "institutional"] {"size": "2.669 items", "updatedp": "2016-03-02"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://circle.ubc.ca/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["computer science", "electrical engineering", "humanities", "mathematics", "social and behavioural sciences", "statistics", "system engineering"] [{"institutionName": "Mexico's National Council for Science and Technology", "institutionAdditionalName": ["CONACYT", "Consejo Nacional de Ciencia y Tecnolog\u00eda"], "institutionCountry": "MEX", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.conacyt.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.conacyt.mx/"]}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/ContactDirectory-RepertoiredeContact_eng.asp"]}, {"institutionName": "US National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of British Columbia Library", "institutionAdditionalName": ["UBC Library"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.library.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eugene.barsky@ubc.ca"]}] [{"policyName": "Policies", "policyURL": "https://circle.ubc.ca/about/policies/"}, {"policyName": "UBC Open Access Position Statement", "policyURL": "https://scholcomm.ubc.ca/open-access/ubc-open-access-position-statement/"}, {"policyName": "cIRcle Non-Exclusive Distribution License", "policyURL": "https://circle.ubc.ca/submissions/license-form/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://scholcomm.ubc.ca/open-access/ubc-open-access-position-statement/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "License & Copyright", "dataUploadLicenseURL": "https://circle.ubc.ca/licensing-copyright/"}, {"dataUploadLicenseName": "Submission Requirements", "dataUploadLicenseURL": "https://circle.ubc.ca/about/policies/#policy3"}] ["DSpace"] yes {} ["hdl"] https://circle.sites.olt.ubc.ca/faq/#How_do_I_cite_an_item_that_I_have_found_in_cIRcle.3F [] no yes [] [] {"syndication": "https://open.library.ubc.ca/rss/collection/48630.xml", "syndicationType": "RSS"} cIRcle is covered by Clarivate Data Citation Index. 2014-08-28 2021-08-19 +r3d100011122 Hustedt Diatom Collection Database eng [{"additionalName": "Friedrich Hustedt Diatom Study Centre Database", "additionalNameLanguage": "eng"}, {"additionalName": "Hustedt Sammlungsdatenbank", "additionalNameLanguage": "deu"}] http://hustedt.awi.de/default.aspx#ViewID=Home ["biodbcore-001574"] ["Bank.Beszteri@awi.de"] Since 2003, data concerning material, slides and taxa, existing within the Friedrich Hustedt Diatom centre, are being entered in a database. In 2014, all data from the initial collection database have been transferred into a new system using the EarthCape platform. The web interface of this new system is now on-line but is incomplete. The database stores information on all specimens in the collection, named by Hustedt or deposited later by other workers, with the literature-, material- and slide-information. Taxon names have been entered as they appear on the slides or on a sheet in a slidebox, although in some cases, recently proposed names are given under “comments”. The database also has a complete entry of all of the publications held in the library of the centre, now more than 8,000. eng ["disciplinary"] {"size": "53.906 slides; 29.714 specimes", "updatedp": "2018-12-04"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.awi.de/en/science/biosciences/polar-biological-oceanography/main-research-focus/hustedt-diatom-study-centre/database.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Friedrich Hustedt", "carbon cycle", "diatoms", "fossils", "herbaria", "samples", "sediments", "slides"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research, Friedrich Hustedt Diatom Study Centre", "institutionAdditionalName": ["AWI, Friedrich-Hustedt-Zentrum f\u00fcr Diatomeenforschung", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung, Friedrich-Hustedt-Zentrum f\u00fcr Diatomeenforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en/science/biosciences/polar-biological-oceanography/main-research-focus/hustedt-diatom-study-centre.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Bank.Beszteri@awi.de"]}] [{"policyName": "Terms and Conditions of Use", "policyURL": "https://www.awi.de/en/about-us/service/media-centre.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.awi.de/en/about-us/service/media-centre.html"}] closed [] ["other"] yes {} ["none"] https://www.awi.de/kontaktseiten/impressum.html [] unknown yes [] [] {} 2014-09-05 2021-11-17 +r3d100011123 GeoReM eng [{"additionalName": "Geological and Environmental Reference Materials", "additionalNameLanguage": "eng"}] http://georem.mpch-mainz.gwdg.de/ ["biodbcore-001514"] ["k.jochum@mpic.de"] GeoReM is a Max Planck Institute database for reference materials of geological and environmental interest, such as rock powders, synthetic and natural glasses as well as mineral, isotopic, biological, river water and seawater reference materials. GeoReM contains published analytical data and compilation values (major and trace element concentrations and mass fractions, radiogenic and stable isotope ratios). GeoReM contains all important metadata about the analytical values such as uncertainty, analytical method and laboratory. Sample information and references are also included. GeoReM complements the three earthchem databases: GEOROC, NAVDAT and PETDB. eng ["disciplinary"] {"size": "3.390 reference materials; 47.150 analyses; 10.410 papers and preferred analytical values", "updatedp": "2018-12-04"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://georem.mpch-mainz.gwdg.de/Georem_Flyer_final.pdf [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["materials", "methods", "samples", "standards"] [{"institutionName": "Gesellschaft f\u00fcr wissenschaftliche Datenverarbeitung mbH G\u00f6ttingen", "institutionAdditionalName": ["GWDG"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gwdg.de/", "institutionIdentifier": ["OR:00cd95c65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Gesellschaft zur F\u00f6rderung der Wissenschaften e.V.", "institutionAdditionalName": ["MPG", "Max Planck Society"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/", "institutionIdentifier": ["ROR:01hhn8329"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Institut f\u00fcr Chemie", "institutionAdditionalName": ["MPIC", "Max Planck Institute for Chemistry"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpic.de/", "institutionIdentifier": ["ROR:02f5b7n18"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pr@mpic.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mpic.de/3626961/imprint"}] restricted [] ["unknown"] yes {} ["none"] http://georem.mpch-mainz.gwdg.de/CiteGeorem.html [] yes yes [] [] {} 2014-09-05 2021-09-03 +r3d100011124 mentha eng [{"additionalName": "the interactome browser", "additionalNameLanguage": "eng"}] http://mentha.uniroma2.it/ ["FAIRsharing_doi:10.25504/FAIRsharing.j1eyq2", "OMICS_05022", "RRID:SCR_016148"] ["http://mentha.uniroma2.it/contact.php", "sinnefa@gmail.com"] mentha archives evidence collected from different sources and presents these data in a complete and comprehensive way. Its data comes from manually curated protein-protein interaction databases that have adhered to the IMEx consortium. The aggregated data forms an interactome which includes many organisms. mentha is a resource that offers a series of tools to analyse selected proteins in the context of a network of interactions. Protein interaction databases archive protein-protein interaction (PPI) information from published articles. However, no database alone has sufficient literature coverage to offer a complete resource to investigate "the interactome". mentha's approach generates every week a consistent interactome (graph). Most importantly, the procedure assigns to each interaction a reliability score that takes into account all the supporting evidence. mentha offers eight interactomes (Homo sapiens, Arabidopsis thaliana, Caenorhabditis elegans, Drosophila melanogaster, Escherichia coli K12, Mus musculus, Rattus norvegicus, Saccharomyces cerevisiae) plus a global network that comprises every organism, including those not mentioned. The website and the graphical application are designed to make the data stored in mentha accessible and analysable to all users. Source databases are: MINT, IntAct, DIP, MatrixDB and BioGRID. eng ["disciplinary"] {"size": "90.905 proteins; 741.337 interactions; 49.177 publications", "updatedp": "2018-12-04"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://mentha.uniroma2.it/about.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "human", "microbes", "plants", "protein-protein interactoin PPI", "transcripts"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["Affinomics", "FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/guidance/archive_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mike.taussig@babraham.ac.uk"]}, {"institutionName": "Fondo per gli Investimenti della Ricerca di Base", "institutionAdditionalName": ["FIRB", "Fund for investment in basic research"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.researchitaly.it/en/fund-for-investment-in-basic-research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUPO Proteomics Standards Initiative", "institutionAdditionalName": ["PSI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hupo.org/Proteomics-Standards-Initiative", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Molecular Exchange Consortium", "institutionAdditionalName": ["IMEx"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imexconsortium.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Rome Tor Vergata, Department of Biology, Molecular Genetics Group", "institutionAdditionalName": ["Universita degli Studi di Roma 'Tor Vergata', Dipartimento di Biologia, Genetica Molecolare"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.moleculargenetics.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IMEx Curation Rules", "policyURL": "http://www.imexconsortium.org/curation"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://mentha.uniroma2.it/about.php"}] closed [] [] {"api": "http://mentha.uniroma2.it/developers.php", "apiType": "REST"} ["none"] http://mentha.uniroma2.it/about.php#citeus [] yes unknown [] [] {} mentha supports PSICQUIC standardised access to molecular interaction databases. mentha is searchable by UniProt IDs. 2014-09-08 2019-01-17 +r3d100011125 Science3D eng [{"additionalName": "Open Access tomography database", "additionalNameLanguage": "eng"}, {"additionalName": "Science 3D", "additionalNameLanguage": "eng"}] https://www.science3d.org/ [] ["https://www.science3d.org/Imprint", "science3d@desy.de"] ----<<<< This repository is no longer available. This record is out-dated !!!!! >>>>> ----- Science3D is an Open Access project to archive and curate scientific data and make them available to everyone interested in scientific endeavours. Science3D focusses mainly on 3D tomography data from biological samples, simply because theses object make it comparably easy to understand the concepts and techniques. The data come primarily from the imaging beamlines of the Helmholtz Center Geesthacht (HZG), which make use of the uniquely bright and coherent X-rays of the Petra3 synchrotron. Petra3 - like many other photon and neutron sources in Europe and World-wide - is a fantastic instrument to investigate the microscopic detail of matter and organisms. The experiments at photon science beamlines hence provide unique insights into all kind of scientific fields, ranging from medical applications to plasma physics. The success of these experiments demands enormous efforts of the scientists and quite some investments eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.science3d.org/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3D model", "DORIS", "PETRA 3", "synchrotron", "tomography", "x-ray"] [{"institutionName": "Deutsches Elektronen-Synchrotron", "institutionAdditionalName": ["DESY"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.desy.de/", "institutionIdentifier": ["ROR:01js2sh04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/growth/sectors/space/research/fp7_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz-Zentrum hereon GmbH", "institutionAdditionalName": ["hereon"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hereon.de/index.php.en", "institutionIdentifier": ["ROR:03qjp1d79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "PaNdata ODI", "institutionAdditionalName": ["Photon and Neutron data Open Data Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://pan-data.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://pan-data.eu/Contact"]}] [{"policyName": "Impressum", "policyURL": "http://www.desy.de/impressum/index_ger.html"}, {"policyName": "Open Science in the Helmholtz Association", "policyURL": "http://os.helmholtz.de/open-science-in-the-helmholtz-association/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [] restricted [] ["unknown"] {} ["DOI"] [] yes unknown [] [] {} 2014-09-23 2021-04-14 +r3d100011126 Integrated Digitized Biocollections eng [{"additionalName": "iDigBio", "additionalNameLanguage": "eng"}] https://www.idigbio.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.d21jc4", "RRID:SCR_014336"] ["help@idigbio.org", "https://www.idigbio.org/contact"] The National Resource for Advancing Digitization of Biodiversity Collections (ADBC) funded by the National Science Foundation. Through ADBC, data and images for millions of biological specimens are being made available in electronic format for the research community, government agencies, students, educators, and the general public eng ["disciplinary"] {"size": "118.426.317 Specimen Records; 29.523.938 Media Records; 1.604 Recordsets", "updatedp": "2019-04-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.idigbio.org/about/mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "evolution", "paleontology"] [{"institutionName": "Florida Museum of Natural History", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.floridamuseum.ufl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Florida State University", "institutionAdditionalName": ["FSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fsu.edu/", "institutionIdentifier": ["RRID:SCR_011228", "RRID:nlx_70332"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://servicecenter.fsu.edu/university-help-desks"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Florida", "institutionAdditionalName": ["UF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ufl.edu/", "institutionIdentifier": ["RRID:SCR_000145", "RRID:nlx_80063"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "iDigBio Intellectual Property Policy", "policyURL": "https://www.idigbio.org/content/idigbio-intellectual-property-policy"}, {"policyName": "iDigBio Terms of Use Policy", "policyURL": "https://www.idigbio.org/content/idigbio-terms-use-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.idigbio.org/content/idigbio-intellectual-property-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.idigbio.org/content/idigbio-intellectual-property-policy"}] restricted [{"dataUploadLicenseName": "iDigBio Terms of Use Policy", "dataUploadLicenseURL": "https://www.idigbio.org/content/idigbio-terms-use-policy"}] ["unknown"] {"api": "https://www.idigbio.org/wiki/index.php/RESTful_Documentation_by_Paul_Schroeder", "apiType": "REST"} ["URN"] https://www.idigbio.org/content/idigbio-terms-use-policy [] no unknown [] [] {"syndication": "https://www.idigbio.org/rss-feed.xml", "syndicationType": "RSS"} 2014-09-29 2021-07-02 +r3d100011128 National Vegetation Survey Databank eng [{"additionalName": "NVS", "additionalNameLanguage": "eng"}, {"additionalName": "New Zealand National Vegetation Survey Databank", "additionalNameLanguage": "eng"}] https://nvs.landcareresearch.co.nz/ [] ["nvs@landcareresearch.co.nz"] The National Vegetation Survey (NVS) Databank is a physical archive and electronic databank containing records of over 109,000 vegetation survey plots - including data from over 25,000 permanent plots in New Zealand. The data can be explored online and requested for download. The NVS Databank provides data spanning more than 60 years of indigenous and exotic plant plot records from throughout New Zealand's terrestrial ecosystems. The physical archive includes plot sheets, maps, and photographs from many years of vegetation surveys. Purpose-built software for entering, validating and summarising data is available. NVS is accorded the status of a Nationally Significant database and upkeep and maintenance is supported by Core funding for Crown Research Institutes from the NZ Ministry of Business, Innovation and Employment. eng ["disciplinary"] {"size": "> 109.000 vegetation survey plots including data from over 25.000 permanent plots;", "updatedp": "2019-04-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://nvs.landcareresearch.co.nz/About/Index [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["botany", "ecology", "forestry", "geology", "phylogenetics"] [{"institutionName": "Department of Conservation, Terrestrial and Freshwater Biodiversity Information System Programme", "institutionAdditionalName": ["TFBIS"], "institutionCountry": "NZL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.doc.govt.nz/get-involved/funding/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tfbis@doc.govt.nz"]}, {"institutionName": "Ministry for the Environment", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mfe.govt.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@mfe.govt.nz"]}, {"institutionName": "Ministry of Business, Innovation and Employment\u2019s Science and Innovation Group", "institutionAdditionalName": ["MBIE"], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mbie.govt.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mbie.govt.nz/about/contact-us/"]}] [{"policyName": "Terms of Use", "policyURL": "https://nvs.landcareresearch.co.nz/Home/Terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://nvs.landcareresearch.co.nz/Home/Copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nvs.landcareresearch.co.nz/Home/Copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nvs.landcareresearch.co.nz/Home/Terms"}] restricted [] ["unknown"] {} ["none"] [] no yes [] [] {} 2014-09-29 2019-04-26 +r3d100011129 Nanomaterial Registry eng [{"additionalName": "NanomaterialRegistry", "additionalNameLanguage": "eng"}] https://nanomaterialregistry.net/Default.aspx ["RRID:SCR_013793"] ["https://nanomaterialregistry.net/ContactUs.aspx", "nanoregistry@rti.org"] The Nanomaterial Registry is a publicly available repository for curated research data on nanomaterials, including their physico-chemical characteristics and their interactions with biological and environmental systems. eng ["disciplinary"] {"size": "2.031 Nanomaterials", "updatedp": "2014-08-15"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://nanomaterialregistry.net/about/Default.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Nanomaterials", "Nanotechnology"] [{"institutionName": "RTI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rti.org/", "institutionIdentifier": ["ROR:052tfza37"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rti.org/contact-us"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NIHinfo@od.nih.gov"]}] [{"policyName": "Terms of Use", "policyURL": "https://nanomaterialregistry.net/TermsOfUse.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nanomaterialregistry.net/TermsOfUse.aspx"}] closed [] ["unknown"] {} ["none"] [] no yes [] [] {} Nanomaterial Registry supports researchers to share data by providing a plan to archive, share and integrate data on global scale. Standards: https://nanomaterialregistry.net/resources/StandardsAndGuidance.aspx 2014-09-30 2021-10-21 +r3d100011130 e!DAL - electronic Data Archive Library eng [] http://edal.ipk-gatersleben.de/ [] ["Daniel.Arend@ipk-gatersleben.de", "Matthias.Lange@ipk-gatersleben.de", "https://edal.ipk-gatersleben.de/contact.html"] e!DAL stands for electronic Data Archive Library. It is a lightweight open source software software framework for publishing and sharing research data. e!DAL was developed based on experiences coming from decades of research data management and has grown towards being a general data archiving and publication infrastructure [https://doi.org/10.1186/1471-2105-15-214]. First research data repository is "Plant Genomics and Phenomics Research Data Repository" [https://doi.org/10.1093/database/baw033]. eng ["institutional"] {"size": "1 repository; 130 datasets", "updatedp": "2017-11-08"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://edal.ipk-gatersleben.de/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "plant genomics"] [{"institutionName": "Deutsches Pflanzen Ph\u00e4notypisierungsnetzwerk", "institutionAdditionalName": ["DPPN", "German Plant Phenotyping Network"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dppn.de/dppn/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["a.kesseler@fz-juelich.de"]}, {"institutionName": "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung", "institutionAdditionalName": ["IPK", "Institute of Plant Genetics and Crop Plant Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipk-gatersleben.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ipk-gatersleben.de/kontakt/adresse/", "info(at)ipk-gatersleben.de"]}, {"institutionName": "de.NBI", "institutionAdditionalName": ["German Network for Bioinformatics Infrastructure"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.denbi.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}] restricted [] ["other"] yes {"api": "https://edal.ipk-gatersleben.de/repos/IPK_data_uploader_help.html", "apiType": "other"} ["DOI"] http://edal.ipk-gatersleben.de/ [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-11-03 2017-11-21 +r3d100011131 Panel Study on Income Dynamics eng [{"additionalName": "PSID", "additionalNameLanguage": "eng"}] http://psidonline.isr.umich.edu/ ["RRID:SCR_008976", "RRID:nlx_152067"] ["psidhelp@umich.edu"] A national study on socioeconomics and family health over lifetimes and across generations funded by National Science Foundation (NSF). It is the longest running longitudinal household survey in the world, started in 1968 with a nationally representative sample of over 18,000 individuals living in 5,000 families in the United States. It is recognizing the importance of the socioeconomic data, available on this website without cost to researchers and analysts. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["child development", "childbearing", "demographics", "education", "employment", "expenditures", "health", "income", "marriage", "philanthropy", "statistics", "wealth"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research", "institutionAdditionalName": ["ISR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://home.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["umisr-info@umich.edu"]}] [{"policyName": "Conditions of use", "policyURL": "http://simba.isr.umich.edu/U/CondUse.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://simba.isr.umich.edu/U/CondUse.aspx"}] closed [] ["unknown"] {} ["none"] http://psidonline.isr.umich.edu/Guide/FAQ.aspx?ID=1040 [] unknown yes [] [] {} The PSID is currently funded by the following organizations: National Institute on Aging; Eunice Kennedy Shriver National Institute of Child Health and Human Development; Indiana University Lilly Family School of Philanthropy; Economic Research Service, Department of Agriculture; Food and Nutrition Service, Department of Agriculture; Office of the Assistant Secretary for Planning and Evaluation, Department of Health and Human Services; Department of Housing and Urban Development. PSID is part of the CNEF User Package, read more: https://cnef.ehe.osu.edu/data/ 2014-10-06 2017-06-08 +r3d100011132 Social Scientific Resarch Documentation Centre Repository eng [{"additionalName": "KDK", "additionalNameLanguage": "hun"}, {"additionalName": "Kutat\u00e1si Dokument\u00e1ci\u00f3s K\u00f6zpont", "additionalNameLanguage": "hun"}, {"additionalName": "RDC Repository", "additionalNameLanguage": "eng"}] http://openarchive.tk.mta.hu/ [] ["kdk@tk.mta.hu"] The Research Documentation Centre of the Centre for Social Sciences at the Hungarian Academy of Sciences provides information on and access to research conducted at the Centre. The metadata and many of the documents of the Research Documentation Centre (RDC) are available to all visitors. External researchers may ask for access to restricted collections eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "hun"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11101 Sociological Theory", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["business", "economics", "education", "health data", "law", "politics", "social history", "social policy", "social security", "socialism", "sociology"] [{"institutionName": "Hungarian Academy of Sciences, Centre for Social Sciences", "institutionAdditionalName": ["Magyar Tudom\u00e1nyos Akad\u00e9mia, T\u00e1rsadalomtudom\u00e1nyi Kutat\u00f3k\u00f6zpont", "mtatk"], "institutionCountry": "HUN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://tk.mta.hu/en/introduction", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["titkarsag@tk.mta.hu"]}] [{"policyName": "Repository Policies", "policyURL": "http://openarchive.tk.mta.hu/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://openarchive.tk.mta.hu/policies.html"}] closed [] ["EPrints"] no {"api": "http://openarchive.tk.mta.hu/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] [] unknown no [] [] {"syndication": "http://openarchive.tk.mta.hu/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2014-10-06 2019-07-01 +r3d100011135 Integrated Public Use Microdata Series - International eng [{"additionalName": "IPUMS-I", "additionalNameLanguage": "eng"}] https://international.ipums.org/international/ ["biodbcore-001782"] ["ipums@umn.edu"] IPUMS is the world's largest accessible collection of individual-level data on population, and is a collaboration of over 100 national statistical agencies. eng ["disciplinary"] {"size": "94 countries; 365 censuses;over 1 Billion person records;", "updatedp": "2019-07-01"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://international.ipums.org/international/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["demographics", "economic development", "human development", "statistics"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stat/Transfer", "institutionAdditionalName": ["StatTransfer"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://stattransfer.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minnesota, Minnesota Population Center", "institutionAdditionalName": ["MPC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pop.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mpc@umn.edu"]}, {"institutionName": "University of Minnesota, Office of the Vice President for Research", "institutionAdditionalName": ["OVPR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://research.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://research.umn.edu/about-us/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://international.ipums.org/international-action/faq#ques7"}, {"dataLicenseName": "other", "dataLicenseURL": "https://uma.pop.umn.edu/ipumsi/user/new?return_url=https%3A%2F%2Finternational.ipums.org%2Finternational-action%2Fmenu"}] closed [] ["unknown"] {} ["none"] https://international.ipums.org/international/citation.shtml [] no unknown [] [] {} IPUMS is covered by Thomson Reuters Data Citation Index. For an overview of IPUMS International Partners see: https://international.ipums.org/international/international_partners.shtml 2014-10-07 2021-11-16 +r3d100011136 VecNet eng [{"additionalName": "Vector-Borne Disease Network", "additionalNameLanguage": "eng"}] https://www.vecnet.org/ ["OMICS_22585"] ["VecNet@jcu.edu.au", "https://www.vecnet.org/index.php/contact-us"] The repository is no longer available. >>>!!!<<< 2019-09-06: no more access to VecNet >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.vecnet.org/index.php/about-vecnet [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["EMOD", "Malaria", "Malaria Eradication Research Agenda", "OpenMalaria", "malERA"] [{"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gatesfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Institute for Disease Modeling", "institutionAdditionalName": ["IDM"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://idmod.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://idmod.org/contact"]}, {"institutionName": "James Cook University", "institutionAdditionalName": ["JCU"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jcu.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jcu.edu.au/jcu-contact-information"]}, {"institutionName": "Pittsburgh Supercomputing Center, Public Health Applications Group, R. Farlow Consulting LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.psc.edu/research/public-health-applications", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss TPH", "institutionAdditionalName": ["Institut Tropical et de Sant\u00e9 Publique Suisse", "Schweizerisches Tropen- und Public Health-Institut", "Swiss Tropical and Public Health Institute"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.swisstph.ch/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.swisstph.ch/de/kontakt/"]}, {"institutionName": "University of Notre Dame", "institutionAdditionalName": ["ND"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nd.edu/about/contact/"]}, {"institutionName": "University of Oxford", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ox.ac.uk/contact-us"]}, {"institutionName": "VecNet", "institutionAdditionalName": ["Vector-Borne Disease Network"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.vecnet.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["VecNet@jcu.edu.au"]}] [{"policyName": "Information Sharing", "policyURL": "https://www.vecnet.org/index.php/about-vecnet/information-sharing"}, {"policyName": "Terms of Use", "policyURL": "https://www.vecnet.org/index.php/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.vecnet.org/index.php/terms-of-use"}] closed [] ["other"] yes {} ["none"] [] yes yes [] [] {"syndication": "https://www.vecnet.org/index.php?format=feed&type=rss", "syndicationType": "RSS"} description: VecNet Vector-Borne Disease Network platform contains curated data, tagged citations, articles and reports on entomology, epidemiology, demography, climatology, and interventions to support the analysis of malaria eradication. In addition, location specific datasets containing weather, vector and population information and a transmission simulator for Models changes in malaria transmission due to interventions or environmental changes. 2014-09-30 2019-09-06 +r3d100011137 Open Science Framework eng [{"additionalName": "OSF", "additionalNameLanguage": "eng"}] https://osf.io/ ["FAIRsharing_doi:10.25504/FAIRsharing.g4z879", "RRID:SCR_003238", "RRID:nlx_157292"] ["contact@osf.io"] The Open Science Framework (OSF) is part network of research materials, part version control system, and part collaboration software. The purpose of the software is to support the scientist's workflow and help increase the alignment between scientific values and scientific practices. Document and archive studies. Move the organization and management of study materials from the desktop into the cloud. Labs can organize, share, and archive study materials among team members. Web-based project management reduces the likelihood of losing study materials due to computer malfunction, changing personnel, or just forgetting where you put the damn thing. Share and find materials. With a click, make study materials public so that other researchers can find, use and cite them. Find materials by other researchers to avoid reinventing something that already exists. Detail individual contribution. Assign citable, contributor credit to any research material - tools, analysis scripts, methods, measures, data. Increase transparency. Make as much of the scientific workflow public as desired - as it is developed or after publication of reports. Find public projects here. Registration. Registering materials can certify what was done in advance of data analysis, or confirm the exact state of the project at important points of the lifecycle such as manuscript submission or at the onset of data collection. Discover public registrations here. Manage scientific workflow. A structured, flexible system can provide efficiency gain to workflow and clarity to project objectives, as pictured. eng ["other"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://cos.io/about/mission/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["archive", "multidisciplinary", "program management", "workflow"] [{"institutionName": "Center for Open Science", "institutionAdditionalName": ["COS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cos.io/", "institutionIdentifier": ["ROR:05d5mza29", "RRID:SCR_003239", "RRID:nlx_157293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Center for Open Science partners", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://osf.io/institutions", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TOP Guidelines", "policyURL": "https://www.cos.io/initiatives/top-guidelines"}, {"policyName": "Terms of Use", "policyURL": "https://github.com/CenterForOpenScience/cos.io/blob/master/TERMS_OF_USE.md"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://github.com/CenterForOpenScience/cos.io/blob/master/TERMS_OF_USE.md"}] restricted [] ["other"] yes {"api": "https://github.com/structureddynamics/OSF-Web-Services-PHP-API", "apiType": "other"} ["ARK", "DOI"] https://help.osf.io/hc/en-us/articles/360019931173-Sharing-data ["ORCID"] unknown no [] [] {} is covered by Elsevier. OSF is covered by Clarivate Data Citation Index. more information about OSF: https://www.nitrc.org/projects/osf 2014-10-01 2022-01-18 +r3d100011138 National Weather Service, Climate Prediction Center eng [{"additionalName": "NWS, CPC", "additionalNameLanguage": "eng"}] https://www.cpc.ncep.noaa.gov/ [] ["https://www.cpc.ncep.noaa.gov/information/personnel/contacts.shtml"] NWS/NCEP/Climate Prediction Center delivers climate prediction, monitoring, and diagnostic products for timescales from weeks to years to the Nation and the global community for the protection of life and property and the enhancement of the economy. The goal of the CPC website is to provide easy and comprehensive access to data and products that serve our mission. We serve a broad audience ranging from government to non-government entities like academia, NGO’s, and the public and private sectors. Specific sectors include agriculture, energy, health, transportation, emergency managers, etc. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cpc.ncep.noaa.gov/information/who_we_are/index.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["meteorology", "meteorology - data processing", "meteorology - remote sensing", "meteorology - research", "meteorology - research - international cooperation", "weather forecasting"] [{"institutionName": "NOAA Partners", "institutionAdditionalName": ["NOAA, NWS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cpc.ncep.noaa.gov/products/partnerships/noaapart.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, National Weather Service, Climate Prediction Center", "institutionAdditionalName": ["NOAA, NWS, CPC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.weather.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.weather.gov/contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.weather.gov/disclaimer"}, {"policyName": "NOAA Information Quality Guidelines", "policyURL": "https://www.cio.noaa.gov/services_programs/info_quality.html"}, {"policyName": "National Weather Service Policy Directive", "policyURL": "https://www.nws.noaa.gov/directives/sym/pd06001curr.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "https://alerts.weather.gov/#atom", "syndicationType": "ATOM"} 2014-10-02 2021-07-02 +r3d100011139 NIST Standard Reference Data eng [{"additionalName": "NIST Data Gateway", "additionalNameLanguage": "eng"}, {"additionalName": "SRD", "additionalNameLanguage": "eng"}] https://www.nist.gov/srd ["RRID:SCR_006452", "RRID:nlx_144072"] ["data@nist.gov", "https://www.nist.gov/about-nist/contact-us"] NIST Data Gateway - provides easy access to many of the NIST scientific and technical databases. These databases cover a broad range of substances and properties from many different scientific disciplines. The Gateway includes links to free online NIST data systems as well as to information on NIST PC databases available for purchase. eng ["disciplinary"] {"size": "49 free SRD databases; 41 fee-based SRD databases", "updatedp": "2019-07-02"} 2001 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.nist.gov/srd [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biometric identification - data processing", "biotechnology", "chemistry - analytic standards", "crystallography", "fingerprints", "fluid dynamics", "mass spectrometry", "oxide ceramics", "phase diagrams", "thermodynamics"] [{"institutionName": "NIST Material Measurement Laboratory", "institutionAdditionalName": ["MML"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/mml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.nist.gov/disclaimer"}, {"policyName": "NIST Information Quality Standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST Privacy and Accessibility Information", "policyURL": "https://www.nist.gov/privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/srd/public-law"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/sites/default/files/documents/srd/SRDAct-2.pdf"}] closed [] ["CKAN"] yes {} ["none"] [] yes yes [] [] {} The scope of Version 4.0 of the Gateway is 115 NIST databases: 62 online systems with scientific and technical data as well as 50 PC products. The PC products include 26 standard reference databases and 25 imaging databases available from the NIST Scientific and Technical Databases Web site (https://www.nist.gov/srd). Additional NIST databases will be included in future versions of the Gateway. Version 4.0 also provides a new search menu (accessible from the JPCRD link) for 845 articles published in the Journal of Physical and Chemical Reference Data between 1972 and 2003. Full text online versions of over 350 articles can be accessed from the NIST Data Gateway in PDF format. For the articles that are not available online, including those published within the last five years, ordering information for reprints is provided. In addition, links are available to abstracts at the American Institute of Physics Web site for all articles published between 1975 and 2003. The Gateway can be searched by keyword, property, and substance name. Over 1000 keywords and properties as well as over 140,000 substance names and synonyms are available in Version 4.0 of the Gateway. 2014-10-06 2019-07-02 +r3d100011140 The Global Agricultural Trial Repository and Database eng [{"additionalName": "AgTrials", "additionalNameLanguage": "eng"}] https://ccafs.cgiar.org/resources/tools/agtrials ["biodbcore-001783"] ["http://www.agtrials.org/contact"] The Global Agricultural Trial Repository (AgTrials) provides access to a database on the performance of agricultural technologies at sites across the developing world. It builds on decades of evaluation trials, mostly of varieties, but includes any agricultural technology for developing world farmers. It aims to facilitate the subsequent analysis on the performance of agricultural technologies under a changing climate and to form the basis for improving models of agricultural production under current and future conditions, and for evaluating the efficacy of trialed materials for adaptation. eng ["disciplinary"] {"size": "107 Trial Groups; 43 Technologies; 34.705 Trials", "updatedp": "2014-10-09"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.agtrials.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "crops and climate", "droughts - research", "food security", "forest management", "global warming", "livestock management", "soil science"] [{"institutionName": "Consultative Group on International Agricultural Research, Research Program on Climate Change, Agriculture and Food Security", "institutionAdditionalName": ["CGIAR, CCAFS"], "institutionCountry": "COL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ccafs.cgiar.org/", "institutionIdentifier": ["ROR:04wccky94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ccafs.cgiar.org/contact-us#.WTpZjLmweUl"]}] [{"policyName": "Priorities and Policies for CSA", "policyURL": "https://ccafs.cgiar.org/flagships/priorities-and-policies-for-CSA"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.agtrials.org/"}] restricted [] ["unknown"] {} ["none"] http://www.agtrials.org/about [] yes yes [] [] {} Current partners: Eight CGIAR centers: the Africa Rice Center (AfricaRice), the Tropical Soil Biology and Fertility Institute of CIAT (CIAT-TSBF), the International Potato Center (CIP), the International Crops Research Institute for the Semi-Arid Tropics (ICRISAT), the International Livestock Research Institute (ILRI), the International Center for Agricultural Research in Dry Areas (ICARDA), the International Rice Research Institute (IRRI), the International Institute of Tropical Agriculture (IITA) and Bioversity (Bioversity). National partners: IER, Réseau Ouest et Centrafricain de recherche sur le Sorgho, CILSS, IRAT -NARS/ CIRAD, SMIP 2014-10-07 2022-02-07 +r3d100011141 China Meteorological Data Service Center eng [{"additionalName": "CMDC", "additionalNameLanguage": "eng"}, {"additionalName": "China Meteorological Data Sharing System", "additionalNameLanguage": "eng"}] http://data.cma.cn/en [] ["datacenter@cma.gov.cn"] China Meteorological Data Service Center, an upgraded system of the meteorological data sharing network, is an important component of the underlying national science and technology platform and a main portal application system of meteorological cloud. It is an authoritative and unified shared service platform for China Meteorological Administration to open its meteorological data resources to domestic and global users, and a data supporting platform for China to open its meteorological service market and promote the sharing and efficient application of meteorological information resources as a new meteorological service system. The comprehensive meteorological database provide online and offline shared services, the existing data types including global upper-air sounding data, surface observations, ocean observations, numerical forecast products, agro-meteorological data of ground observation data encryption, aircraft soundings, numerical weather prediction analysis field data, GPS-Met, Storm 2 No, GOES-9 satellite data, soil moisture, aircraft reported sandstorm monitoring, TOVS, ATOVS, wind profilers, satellite detection information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://data.cma.cn/en/?r=article/getLeft/id/347/keyIndex/1 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["assimilation", "fusion", "radar", "satellite", "surface", "upper air"] [{"institutionName": "National Meteorological Information Center", "institutionAdditionalName": ["\u4e2d\u56fd\u6c14\u8c61\u5c40 \u56fd\u5bb6\u6c14\u8c61\u4fe1\u606f\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nmic.cn/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science and Technology Infrastructure", "institutionAdditionalName": ["NSTI"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.escience.gov.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Quality Declaration", "policyURL": "http://data.cma.cn/en/?r=article/getLeft/id/345/keyIndex/30"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://data.cma.cn/en/?r=site/index"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.cma.cn/en/?r=article/getLeft/id/343/keyIndex/30"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-10-06 2021-08-24 +r3d100011147 Forest Service Research Data Archive eng [{"additionalName": "FSRDA", "additionalNameLanguage": "eng"}] https://www.fs.usda.gov/rds/archive/ ["FAIRsharing_doi:10.25504/FAIRsharing.NzKTvN"] ["dave.rugg@usda.gov", "https://www.fs.usda.gov/rds/archive/contactus", "laurie.s.porth@usda.gov"] The Forest Service Research Data Archive is an actively curated repository for the long-term preservation and distribution of citable research data sets that are broadly relevant to forest and grassland ecology, and the economic and social interactions of humans with these ecosystems. Most data sets were created by U.S. Forest Service scientists or by scientists funded through the U.S. Forest Service or the U.S. Joint Fire Science Program. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.fs.usda.gov/rds/archive/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ecosystem", "forestry", "sustainability"] [{"institutionName": "United States Department of Agriculture, Forest Service", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.fs.usda.gov/", "institutionIdentifier": ["ROR:03zmjc935"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fs.usda.gov/rds/archive/contactus"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.fs.usda.gov/rds/archive/DataUseInfo"}] restricted [] ["unknown"] {} ["DOI"] https://www.fs.usda.gov/rds/archive/DataUseInfo [] no yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Forest Service Research Data Archive is covered by Thomson Reuters Data Citation Index. 2014-10-08 2021-11-09 +r3d100011148 Plants of TAIWAN eng [{"additionalName": "\u53f0\u7063\u690d\u7269\u8cc7\u8a0a\u6574\u5408\u67e5\u8a62\u7cfb\u7d71", "additionalNameLanguage": "zho"}] http://tai2.ntu.edu.tw/ [] ["clinglu@gmail.com"] Plants of TAIWAN includes digitized plant specimens and historical botanical literature of Taiwan, and a database of plant names and information for about 5000 species in Taiwan. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Ecology"] [{"institutionName": "National Taiwan University, Institute of Ecology and Evolutionary Biology", "institutionAdditionalName": [], "institutionCountry": "TWN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ecology.lifescience.ntu.edu.tw/doku.php/en/start", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ntuecology@ntu.edu.tw"]}] [{"policyName": "Copyrights", "policyURL": "http://tai2.ntu.edu.tw/index.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://tai2.ntu.edu.tw/index.php"}] closed [] ["unknown"] {} ["other"] http://tai2.ntu.edu.tw/index.php [] yes unknown [] [] {} 2014-10-14 2019-08-08 +r3d100011149 Chinese Crop Germplasm Resources Information System eng [{"additionalName": "CGRIS", "additionalNameLanguage": "eng"}] http://www.cgris.net/cgris_english.html [] ["fangwei@caas.net.cn"] Chinese Crop Germplasm Resources Information System provides germplasm resources and genetic information for crops including grains, fruits, vegetables, oilseeds, and fibers. The data includes crop fingerprint and DNA sequence data. eng ["disciplinary"] {"size": "340 kinds of crops; 470.000 accessions of germplasm", "updatedp": "2017-12-01"} 1998 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.cgris.net/cgris%E6%95%B0%E6%8D%AE%E9%87%87%E9%9B%86.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["corn", "cotton", "crop breeding", "crops", "fruit treees", "germplams", "mulberry", "oil seeds", "rice", "soy", "sugar", "tea", "tobacco", "vegetables", "wheat"] [{"institutionName": "Chinese Academy of Agricultural Sciences, Institute of Crop Germplasm Resources", "institutionAdditionalName": ["CAAS", "ICGR"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["CAOYS@MAIL.CAAS.NET.CN"]}, {"institutionName": "Chinese Academy of Agricultural Sciences, Institute of Crop Science", "institutionAdditionalName": ["CAAS", "ICS"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caas.cn/en/administration/research_institutes/research_institutes_beijing/77812.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User guide", "policyURL": "http://www.cgris.net/cgris%E7%94%A8%E6%88%B7%E6%8C%87%E5%8D%97.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cgris.net/icgr/icgr_english.html"}] restricted [] [] {} [] http://www.cgris.net/cgris%E7%94%A8%E6%88%B7%E6%8C%87%E5%8D%97.html [] unknown unknown [] [] {} 2014-10-14 2018-01-05 +r3d100011150 DARECLIMED eng [{"additionalName": "Cyprus Institute Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Data Repositories and Computational infrastructure for environmental and Climate studies in eastern MEDiterranean", "additionalNameLanguage": "eng"}] https://www.cyi.ac.cy/index.php/dareclimed-data-repository.html [] ["info@cyi.ac.cy"] DARECLIMED data repository consists of three kind of data: (a) climate, (b) water resources, and (c) energy related data. The first part, climate datasets, will include atmospheric and indirect atmospheric data, proxies and reconstructions, terrestrial and oceanic data. Land use, population, economy and development data will be added as well. Datasets can be handled and analyzed by connecting to the Live Access Server (LAS), which enables to visualize data with on-the-fly graphics, request custom subsets of variables in a choice of file formats, access background reference material about the data (metadata), and compare (difference) variables from distributed locations. Access to server is granted upon request by emailing the data repository manager. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011-01-02 2017-07-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cyi.ac.cy/index.php/dareclimed-data-repository.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Mediterranean", "agriculture", "climate change", "climatology", "hydrology", "sustainability", "water resources"] [{"institutionName": "European Commission, Community Research and Development Information Service, FP7", "institutionAdditionalName": ["EU, CORDIS, FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/rcn/97194/reporting/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Cyprus Institute", "institutionAdditionalName": ["CyI"], "institutionCountry": "CYP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cyi.ac.cy/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cyi.ac.cy/index.php/contact.html"]}] [{"policyName": "Sharing data and information in the Eastern Mediterranean and the Middle East Chania", "policyURL": "https://www.cyi.ac.cy/index.php/in-focus/the-final-conference-of-the-eu-dareclimed-project-sharing-data-and-information-in-the-eastern-mediterranean-and-the-middle-east-chania,-crete,-greece-july-23-to-25,-2013.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cyi.ac.cy/images/InFocus/final_conf_eu_dareclimed_july2013_260713/The_Chania_Declaration_25_07_13.pdf"}] closed [] ["unknown"] {"api": "https://ferret.pmel.noaa.gov/FERRET_17sep07/LAS/FAQ/ingesting_data.htm", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} Datasets can be handled and analyzed by connecting to the Live Access Server (LAS). If you want to access LAS, please contact Dr. Christina Oikonomou, c.oikonomou@cyi.ac.cy . The Live Access Server (LAS) is a highly configurable web server designed to provide flexible access to geo-referenced scientific data. --- Participants: http://www.cyi.ac.cy/index.php/dareclimed-participants.html 2014-10-14 2019-08-21 +r3d100011153 National Data eng [{"additionalName": "China Statistical Database", "additionalNameLanguage": "eng"}, {"additionalName": "\u56fd\u5bb6\u6570\u636e", "additionalNameLanguage": "zho"}] https://data.stats.gov.cn/english/ [] ["info@stats.gov.cn"] The national data provide the monthly, quarterly and annual, census regions, departments and international social and economic statistic data. It Offers a variety of file output, watchmaking, drawing, Indicators, visualization charts and geographic information data. To speed up the construction of modern service-oriented statistics, and to better serve the community, on the basis of "China Statistical Database" created in 2008, the National Bureau of Statistics(NBS) established a new statistical database in 2013. eng ["other"] {"size": "", "updatedp": ""} 2013 ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] http://data.stats.gov.cn/english/staticreq.htm?m=aboutctryinfo [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PMU", "banking", "census data", "consumer price index", "foreign trade", "gross domestic product", "producer price index", "purchasing managers index", "social sciences", "statistics", "telecommunication", "transportation"] [{"institutionName": "National Bureau of Statistics of China", "institutionAdditionalName": ["NBS", "\u4e2d\u56fd\u7edf\u8ba1\u56fd\u5bb6\u7edf\u8ba1\u5c40"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.stats.gov.cn/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://data.stats.gov.cn/english/"]}] [{"policyName": "Statistics Law of the People's Republic of China (Chapter III)", "policyURL": "http://www.stats.gov.cn/english/LF/SL/201209/t20120921_27177.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.stats.gov.cn/english/nbs/200701/t20070104_59236.html"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {"syndication": "http://www.stats.gov.cn/english/PressRelease/rss.xml", "syndicationType": "RSS"} 2014-10-10 2021-09-08 +r3d100011154 China Earthquake Data Center eng [{"additionalName": "formerly: World Data Center for Seismology, Beijing", "additionalNameLanguage": "eng"}, {"additionalName": "\u4e2d\u56fd\u5730\u9707\u6570\u636e\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] http://data.earthquake.cn/index.html [] ["datashare@seis.ac.cn"] China Earthquake Data Center provides Seismic data, geomagnetic data, geoelectric data, terrain data and underground fluid change data. It is only open in the Seismological Bureau. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006-09-28 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://data.earthquake.cn/gybz/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["auroral activity", "geosciences", "seism", "seismic monitoring", "solar activity", "tremor"] [{"institutionName": "China Earthquake Administration, China Earthquake Networks Center", "institutionAdditionalName": ["CENC"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.csndmc.ac.cn/wdc4seis@bj/intro/cenc/intro.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ceaweb@seis.ac.cn"]}, {"institutionName": "ICSU World Data System", "institutionAdditionalName": ["ICSU-WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": ["https://www.icsu-wds.org/contact-info"]}, {"institutionName": "Peoples Republic of China, Ministry of Science and Technology, National Science and Technology Infrastructure Center", "institutionAdditionalName": ["NSTIC"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nstic.org.cn/English/English.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Standard specifications", "policyURL": "http://data.earthquake.cn/zcfg/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://data.earthquake.cn/sjgxgz/index.html"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-10-13 2017-11-28 +r3d100011157 Datatang eng [{"additionalName": "\u6570\u636e\u5802", "additionalNameLanguage": "zho"}] http://datatang.com/ [] ["globalsales@datatang.com"] Datatang is a professional data pre-processing company. We are engaged in data collecting, annotating, and customizing to meet our clients’ various needs. We assist our clients from university research labs and company R&D departments to waive trivial yet necessary data processing procedure and make their approach to the highest-value data in a more efficient way. eng ["other"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["data annotation", "data collecting", "data processing", "elecronic commerce", "image data", "image recognition", "research data", "social network", "speech recognition", "text data", "transportation geography", "voice data"] [{"institutionName": "Datatang Technology & Co", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://en.datatang.com/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Room Data User Service Agreement", "policyURL": "http://www.datatang.com/about/protocol.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.datatang.com/about/protocol.html"}] restricted [] ["unknown"] {"api": "http://api.datatang.com/", "apiType": "other"} ["none"] [] no yes ["other"] [] {} They have built the world's largest Chinese microblogging syntax tree database: Microblog Syntax Tree Database 2014-10-13 2018-01-03 +r3d100011158 Data Sharing Infrastructure of Earth System Science eng [{"additionalName": "\u56fd\u5bb6\u5730\u7403\u7cfb\u7edf\u79d1\u5b66\u6570\u636e\u5171\u4eab\u670d\u52a1\u5e73\u53f0", "additionalNameLanguage": "zho"}] http://www.geodata.cn/ [] ["geodata@igsnrr.ac.cn"] The National Earth System Science Data Sharing Service Platform is one of the 23 national science and technology infrastructure platforms identified by the Ministry of Science and Technology and the Ministry of Finance as the first batch of platforms. The platform is led by the Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences. Since its construction in 2003, more than 40 domestic and overseas units have participated in the platform construction. National Earth System Science Data Sharing Service Platform main development course: The overall goal of the platform is to integrate and integrate the data resources generated by data center groups, universities, research institutes and scientists in China and abroad, to import international data resources and to receive the data resources generated by major national scientific research projects. Based on this, Processing data products. We will improve standards and operational mechanisms and provide data support for Earth system science research and sustainable socio-economic development through the Earth System Scientific Data Sharing Network Platform and professional service teams. The recent consolidation of data resources required to share the research on land surface systems and human-land relations. eng ["disciplinary"] {"size": "150.08 TB", "updatedp": "2018-01-03"} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geodata.cn/aboutus.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["geography", "landcover", "topography"] [{"institutionName": "Chinese Academy of Sciences, Institute of Geographic Sciences and Natural Resources Research", "institutionAdditionalName": ["IGSNRR", "\u4e2d\u56fd\u79d1\u5b66\u9662\u5730\u7406\u79d1\u5b66\u4e0e\u8d44\u6e90\u7814\u7a76\u6240 \u7248\u6743\u6240\u6709"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://english.igsnrr.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["weboffice@igsnrr.ac.cn"]}] [{"policyName": "Data navigation retrieval", "policyURL": "http://www.geodata.cn/help/dataRetrieval.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.geodata.cn/"}] restricted [] [] {} ["DOI"] [] unknown unknown [] [] {} 2014-10-13 2018-01-05 +r3d100011159 Earth System Grid Federation eng [{"additionalName": "ESGF", "additionalNameLanguage": "eng"}] https://esgf.llnl.gov/index.html [] ["esgf-user@lists.llnl.gov", "https://esgf.llnl.gov/mailing-list.html"] The Earth System Grid Federation (ESGF) is an international collaboration with a current focus on serving the World Climate Research Programme's (WCRP) Coupled Model Intercomparison Project (CMIP) and supporting climate and environmental science in general. Data is searchable and available for download at the Federated ESGF-CoG Nodes https://esgf.llnl.gov/nodes.html eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://esgf.llnl.gov/mission.html [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["aerosol", "atmosphere", "climate change", "climate research", "geography", "land", "landice", "ocean", "seaice", "simulation", "topography"] [{"institutionName": "Department of Energy's Scientific Discovery, Advanced Computing program", "institutionAdditionalName": ["SciDAC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.scidac.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.scidac.gov/contactSD.html"]}, {"institutionName": "Earth System Grid Federation", "institutionAdditionalName": ["ESGF"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://esgf.llnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://esgf.llnl.gov/mailing-list.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "ESGF Federation Design", "policyURL": "https://esgf.llnl.gov/federation-design.html"}, {"policyName": "ESGF Node Design", "policyURL": "https://esgf.llnl.gov/node-design.html"}, {"policyName": "Earth System Grid Federation Governance", "policyURL": "https://esgf.llnl.gov/media/pdf/ESGF_Governance_5_11_2017.pdf"}, {"policyName": "Earth System Grid Federation Policies & Guidelines", "policyURL": "https://esgf.llnl.gov/media/pdf/ESGF-Policies-and-Guidelines-V1.0.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://esgf.llnl.gov/LICENSE.html"}] restricted [] ["unknown"] yes {"api": "https://github.com/ESGF/esgf.github.io/wiki/ESGF_Search_REST_API", "apiType": "REST"} ["DOI"] https://www.earthsystemgrid.org/legal/terms_of_use.html [] no yes [] [{"metadataStandardName": "CIM - Common Information Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model"}] {} Data Format: NetCDF (Network Commmon Data Format) Federated ESGF-CoG Nodes: https://esgf.llnl.gov/nodes.html 2014-10-13 2021-09-08 +r3d100011164 Australian New Zealand Clinical Trials Registry eng [{"additionalName": "ANZCTR", "additionalNameLanguage": "eng"}] http://www.anzctr.org.au/ ["biodbcore-001430"] ["info@actr.org.au"] The Australian New Zealand Clinical Trials Registry (ANZCTR) is an online register of clinical trials being undertaken in Australia, New Zealand and elsewhere. The ANZCTR includes trials from the full spectrum of therapeutic areas of pharmaceuticals, surgical procedures, preventive measures, lifestyle, devices, treatment and rehabilitation strategies and complementary therapies. eng ["disciplinary", "other"] {"size": "14.582 trials; 21.218 datasets", "updatedp": "2017-01-04"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.anzctr.org.au/Faq.aspx#2 [{"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "clinical trials", "complementary therapies", "devices", "lifestyle", "pharmaceuticals", "preventive measures", "rehabilitation strategies", "surgical procedures", "treatment"] [{"institutionName": "Australian Government", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.australia.gov.au", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Sydney, National Health and Medical Research Council Clinical Trials Centre", "institutionAdditionalName": ["NHMRC Clinical Trials Centre"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ctc.usyd.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["enquiry@ctc.usyd.edu.au"]}, {"institutionName": "World Health Organisation", "institutionAdditionalName": ["WHO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.who.int/en/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["http://apps.who.int/trialsearch/"]}] [{"policyName": "ANZCTR Access Policy", "policyURL": "http://www.anzctr.org.au/docs/ANZCTR%20Access%20policy%20-%20V3%2023Apr08.pdf"}, {"policyName": "Requirements of the International Medical Journal Editors", "policyURL": "http://www.icmje.org/recommendations/browse/publishing-and-editorial-issues/clinical-trial-registration.html"}, {"policyName": "Terms and conditions", "policyURL": "http://www.anzctr.org.au/Support/Terms.aspx"}, {"policyName": "WHO Registry Criteria", "policyURL": "http://www.who.int/ictrp/network/criteria_summary/en/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.anzctr.org.au/Support/Terms.aspx"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.anzctr.org.au/docs/ANZCTR%20Access%20policy%20-%20V3%2023Apr08.pdf"}] restricted [{"dataUploadLicenseName": "ANZCTR Access Policy", "dataUploadLicenseURL": "http://www.anzctr.org.au/docs/ANZCTR%20Access%20policy%20-%20V3%2023Apr08.pdf"}] ["unknown"] yes {} ["other"] http://www.anzctr.org.au/Faq.aspx#g11 [] unknown yes [] [] {} ANZCTR is one of the first three trial registries to be recognised by the World Health Organization International Clinical Trials Registry Platform (WHO ICTRP) as a Primary Registry. ANZCTR uses Universial Trial Number (UTN). 2014-10-06 2021-11-17 +r3d100011165 Basis Set Exchange eng [{"additionalName": "BSE", "additionalNameLanguage": "eng"}, {"additionalName": "EMSL Basis Set Exchange", "additionalNameLanguage": "eng"}] https://bse.pnl.gov/bse/portal [] ["http://www.nwchem-sw.org/index.php/Special:AWCforum/sc/id3."] The Basis Set Exchange (BSE) provides a web-based user interface for downloading and uploading Gaussian-type (GTO) basis sets, including effective core potentials (ECPs), from the EMSL Basis Set Library. It provides an improved user interface and capabilities over its predecessor, the EMSL Basis Set Order Form, for exploring the contents of the EMSL Basis Set Library. The popular Basis Set Order Form and underlying Basis Set Library were originally developed by Dr. David Feller and have been available from the EMSL webpages since 1994. eng ["disciplinary"] {"size": "601 basis sets", "updatedp": "2017-01-04"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://bse.pnl.gov/bse/portal/user/anon/js_peid/11535052407933/action/portlets.BasisSetAction/template/courier_content/panel/Main/eventSubmit_doPopup_html/true?vmfile=basisset_about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["GTO", "computational models", "effective core potentials", "environmental molecular sciences", "gaussian-type basis sets", "multi-scale chemical science"] [{"institutionName": "Pacific Northwest National Laboratory, Environmental Molecular Sciences Laboratory", "institutionAdditionalName": ["EMSL", "PNNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.emsl.pnl.gov/emslweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["emsl@pnnl.gov"]}, {"institutionName": "U.S. Department of Energy, Office of Science, Biological & Environmental Research", "institutionAdditionalName": ["BER"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/ber/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}] [{"policyName": "About", "policyURL": "https://bse.pnl.gov/bse/portal/user/anon/js_peid/11535052407933/action/portlets.BasisSetAction/template/courier_content/panel/Main/eventSubmit_doPopup_html/true?vmfile=basisset_about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.pnnl.gov/notices.asp"}] restricted [] ["other"] yes {"api": "https://bse.pnl.gov/axis/services/BseService?wsdl", "apiType": "SOAP"} ["none"] https://bse.pnl.gov/bse/portal [] no yes [] [] {} The popular Basis Set Order Form and underlying Basis Set Library were originally developed by Dr. David Feller and have been available from the EMSL webpages since 1994. 2014-10-08 2018-01-04 +r3d100011166 Benchmark Energy & Geometry Database eng [{"additionalName": "BEGDB", "additionalNameLanguage": "eng"}] http://www.begdb.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.nbe4fq"] ["http://www.begdb.com/index.php?action=contact&state=write", "rezi99@gmail.com"] The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate QM calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods. eng ["disciplinary"] {"size": "15 datasets", "updatedp": "2018-10-08"} 2008 ["ces", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.uochb.cz/web/structure/572.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["benchmarks", "biochemistry", "energy", "geometry", "molecular structures", "organic chemistry", "parameterization", "quantum mechanics calculations"] [{"institutionName": "Academy of Sciences of the Czech Republic, Institute of Organic Chemistry and Biochemistry AS CR, v.v.i.", "institutionAdditionalName": ["IOCB AS CR", "\u00daOCHB AV \u010cR", "\u00dastav organick\u00e9 chemie a biochemie AV \u010cR, v.v.i."], "institutionCountry": "CZE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uochb.cz/web/structure/31.html", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["uochb@uochb.cas.cz"]}, {"institutionName": "ELIXIR CZ", "institutionAdditionalName": [], "institutionCountry": "CZE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.elixir-czech.cz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["elixir@uochb.cas.cz"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.begdb.com/index.php?action=license"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.begdb.com/index.php?action=license"}] restricted [] ["unknown"] {} ["none"] http://www.begdb.com/index.php?action=quotations [] yes yes [] [] {} 2014-10-09 2019-05-15 +r3d100011169 Bibliothèques Virtuelles Humanistes fra [{"additionalName": "BVH", "additionalNameLanguage": "fra"}, {"additionalName": "Humanistic Virtual Libraries", "additionalNameLanguage": "eng"}] http://www.bvh.univ-tours.fr/ [] ["bvh@univ-tours.fr", "http://www.bvh.univ-tours.fr/contact.asp"] The program "Humanist Virtual Libraries" distributes heritage documents and pursues research associating skills in human sciences and computer science. It aggregates several types of digital documents: A selection of facsimiles of Renaissance works digitized in the Central Region and in partner institutions, the Epistemon Textual Database, which offers digital editions in XML-TEI, and Transcripts or analyzes of notarial minutes and manuscripts eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.bvh.univ-tours.fr/presentation.asp [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Biblioth\u00e8que Andr\u00e9-Desguine", "Epistemon", "Gallica", "Medic@", "iconography", "project BaTyr", "project CRII", "project FORSE", "project MONLOE", "renaissance", "transcription"] [{"institutionName": "Centre d\u2019\u00c9tudes Sup\u00e9rieures de la Renaissance", "institutionAdditionalName": ["CESR", "Center for Advanced Renaissance Studies"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cesr.univ-tours.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cesr.univ-tours.fr/informations-pratiques/contacter-le-cesr-63949.kjsp?RH=CESR_FR"]}, {"institutionName": "Institut de recherche et d\u2019histoire des textes", "institutionAdditionalName": ["IRHT"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irht.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.irht.cnrs.fr/?q=fr/contactez-nous"]}] [{"policyName": "Mentions l\u00e9gales", "policyURL": "http://www.bvh.univ-tours.fr/mentions.asp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bvh.univ-tours.fr/mentions.asp"}] restricted [] ["other"] no {"api": "http://www.bvh.univ-tours.fr/oai2/repositoryOAI.asp", "apiType": "OAI-PMH"} ["none"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://www.bvh.univ-tours.fr/bvh.xml", "syndicationType": "RSS"} Partners: http://www.bvh.univ-tours.fr/partenaires.asp Since December 2006, the electronic resources of the Humanistic Virtual Libraries program have been integrated into Gallica, a digital library of the Bibliothèque nationale de France (http://gallica.bnf.fr/accueil/?mode=desktop). Conversely, the Humanist Virtual Libraries program will retrieve the records of the documents published in Gallica, Medic @ ... to build a renaissance resource portal online. 2014-10-14 2021-09-08 +r3d100011170 BioImages - Virtual Field-Guide eng [{"additionalName": "Virtual Field-Guide to UK Biodiversity", "additionalNameLanguage": "eng"}] http://www.bioimages.org.uk/ [] [] This site offers an enormous collection of photographs of wild species and natural history objects. It covers most groups of organisms with the exception of birds and other vertebrates. The photographs are presented to illustrate biodiversity and as an aid to identification. The criterion for inclusion of a species is that it must have been, or might be expected to be, found in Britain or Ireland. BioImages follows the biological classification. Biota is a hierarchical system with species grouped in genera, genera in families, families in orders and so on up to kingdoms and superkingdoms. The datasets are linked to bioinfo: food webs and species interactions in the Biodiversity of UK and Ireland. eng ["disciplinary"] {"size": "bioimages: 6.903 Taxa; 106.670 Images; 6.950 Identification references. bioinfo: 24.144 Taxa with infos; 8.245 References; 103.821 Trophisms", "updatedp": "2017-01-04"} 1998-04-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.bioinfo.org.uk/html/b148841.htm [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Biota", "Britain", "Britain", "Ireland", "Ireland", "biodiversity", "fungi", "insects", "natural objects", "plant pathology", "plants", "specimen", "wild species"] [{"institutionName": "BioInfo (UK)", "institutionAdditionalName": ["food webs and species interactions in the Biodiversity of UK and Ireland"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bioinfo.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Malcolm Storey", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bioimages.org.uk/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["malcolm.storey@dsl.pipex.com"]}] [{"policyName": "Purpose", "policyURL": "http://www.bioimages.org.uk/index.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bioimages.org.uk/cright.htm"}] closed [] ["unknown"] no {} ["none"] http://www.bioimages.org.uk/cright.htm [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Biota takes you to the top of the classification tree http://www.bioinfo.org.uk/html/Biota.htm 2014-10-14 2021-07-13 +r3d100011172 CaltechLabNotes eng [{"additionalName": "California Institute of Technology LabNotes", "additionalNameLanguage": "eng"}, {"additionalName": "California Institute of Technology, Collection of Open Digital Archives", "additionalNameLanguage": "eng"}, {"additionalName": "CaltechCODA", "additionalNameLanguage": "eng"}] http://caltechln.library.caltech.edu/ [] ["archives@caltech.edu", "coda@library.caltech.edu", "http://library.caltech.edu/about/contactus.php"] Lab Notes Online presents historic scientific data from the Caltech Archives' collections in digital facsimile. Beginning in the fall of 2008, the first publication in the series is Robert A. Millikan's notebooks for his oil drop experiments to measure the charge of the electron, dating from October 1911 to April 1912. Other laboratory, field, or research notes will be added to the archive over time. eng ["disciplinary"] {"size": "2 datasets", "updatedp": "2018-01-05"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40801 Electronic Semiconductors, Components, Circuits, Systems", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://caltechln.library.caltech.edu/information.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["charge of electron", "electric field", "photoelectric effect", "physics"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["CALTECH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.caltech.edu/contact"]}, {"institutionName": "California Institute of Technology Library", "institutionAdditionalName": ["CALTECH Library"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.library.caltech.edu/contact"]}] [{"policyName": "Open Access Policy", "policyURL": "https://www.library.caltech.edu/sites/default/files/OA_Policy_6.10.2013.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://libguides.caltech.edu/c.php?g=512634&p=3502900"}, {"dataLicenseName": "other", "dataLicenseURL": "https://libguides.caltech.edu/c.php?g=512634&p=3502900"}] closed [] ["EPrints"] yes {} ["none"] http://caltechln.library.caltech.edu/8/4/Millikan_2C_b%26w.pdf [] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://caltechln.library.caltech.edu/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} CaltechLabNotes is part of the Caltech Collection of Open Digital Archives (CODA). The Caltech Collection of Open Digital Archives (CODA): the Institute's collections of faculty research publications and other content supporting the mission of the Institute. 2014-10-15 2018-01-05 +r3d100011173 Cancer GenomeAtlas Data Portal eng [{"additionalName": "Cancer Genome Atlas Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "TCGA Data Portal", "additionalNameLanguage": "eng"}] https://cancergenome.nih.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.m8wewa", "RRID:SCR_003193", "RRID:nlx_156913"] ["https://cancergenome.nih.gov/abouttcga/peoplecontacts"] The Cancer Genome Atlas (TCGA) Data Portal provides a platform for researchers to search, download, and analyze data sets generated by TCGA. It contains clinical information, genomic characterization data, and high level sequence analysis of the tumor genomes. The Data Coordinating Center (DCC) is the central provider of TCGA data. The DCC standardizes data formats and validates submitted data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://cancergenome.nih.gov/abouttcga/overview/missiongoal [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "bioinformatics", "cancer detection", "cancer prevention", "disease", "genomics"] [{"institutionName": "National Institutes of Health, National Cancer Institute, Center for Biomedical Informatics and Information Technology", "institutionAdditionalName": ["CBIIT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cbiit.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncicbiit@mail.nih.gov"]}, {"institutionName": "National Institutes of Health, National Cancer Institute, Center for Cancer Genomics, The Cancer Genome Atlas Program Office", "institutionAdditionalName": ["CCG", "NCI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/about-nci/organization/ccg/about/contact#4", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tcga@mail.nih.gov"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/17516564/"]}] [{"policyName": "Policies and Guidelines", "policyURL": "https://cancergenome.nih.gov/abouttcga/policies/policiesguidelines"}, {"policyName": "Publication Guidelines", "policyURL": "https://cancergenome.nih.gov/publications/publicationguidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cancergenome.nih.gov/PublishedContent/Files/pdfs/TCGA%20Human%20Subjects%20Protection%20and%20Data%20Access%20Policies%20Rev_2014-01-16.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cancergenome.nih.gov/abouttcga/policies/responsibleuse"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cancergenome.nih.gov/pdfs/Data_Use_Certv082014"}] restricted [] ["unknown"] {} ["none"] https://cancergenome.nih.gov/publications/publicationguidelines [] no yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "https://cancergenome.nih.gov/rss", "syndicationType": "RSS"} The TCGA Data Portal does not host lower levels of sequence data. NCI's Cancer Genomics Hub (CGHub) is the new secure repository for storing, cataloging, and accessing BAM files and metadata for sequencing data. TCGA Data are available at the Genomic Data Commons (GDC): https://gdc-portal.nci.nih.gov 2014-10-15 2021-09-08 +r3d100011174 Cancer Genomics Hub eng [{"additionalName": "CGHub", "additionalNameLanguage": "eng"}] https://cghub.ucsc.edu/ ["RRID:SCR_002657", "RRID:nlx_156095"] ["support@cghub.ucsc.edu"] >>>>!!!!<<<< The Cancer Genomics Hub mission is now completed. The Cancer Genomics Hub was established in August 2011 to provide a repository to The Cancer Genome Atlas, the childhood cancer initiative Therapeutically Applicable Research to Generate Effective Treatments and the Cancer Genome Characterization Initiative. CGHub rapidly grew to be the largest database of cancer genomes in the world, storing more than 2.5 petabytes of data and serving downloads of nearly 3 petabytes per month. As the central repository for the foundational genome files, CGHub streamlined team science efforts as data became as easy to obtain as downloading from a hard drive. The convenient access to Big Data, and the collaborations that CGHub made possible, are now essential to cancer research. That work continues at the NCI's Genomic Data Commons. All files previously stored at CGHub can be found there. The Website for the Genomic Data Commons is here: https://gdc.nci.nih.gov/ >>>>!!!!<<<< The Cancer Genomics Hub (CGHub) is a secure repository for storing, cataloging, and accessing cancer genome sequences, alignments, and mutation information from the Cancer Genome Atlas (TCGA) consortium and related projects. Access to CGHub Data: All researchers using CGHub must meet the access and use criteria established by the National Institutes of Health (NIH) to ensure the privacy, security, and integrity of participant data. CGHub also hosts some publicly available data, in particular data from the Cancer Cell Line Encyclopedia. All metadata is publicly available and the catalog of metadata and associated BAMs can be explored using the CGHub Data Browser. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://wiki.nci.nih.gov/display/TCGA/Cancer+Genomics+Hub [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "cancer cell line", "cancer detection", "cancer prevention", "genomics", "tissue"] [{"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of California, Santa Cruz, Genomics Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ucscgenomics.soe.ucsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ucscgenomics.soe.ucsc.edu/contact-us/"]}] [{"policyName": "Policies", "policyURL": "https://cancergenome.nih.gov/abouttcga/policies"}, {"policyName": "Policies and guidelines", "policyURL": "https://cancergenome.nih.gov/abouttcga/policies/policiesguidelines"}, {"policyName": "Publication Guidelines", "policyURL": "https://cancergenome.nih.gov/publications/publicationguidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cancergenome.nih.gov/abouttcga/policies/responsibleuse"}] closed [] ["unknown"] {} ["other"] [] no yes [] [] {} see also TCGA Data Portal. To download or upload TCGA data (BAM files) from CGHub, you must be granted authorization from the Data Access Committee (DAC). 2014-10-15 2018-01-08 +r3d100011175 Chemical Carcinogenesis Research Information System eng [{"additionalName": "CCRIS", "additionalNameLanguage": "eng"}, {"additionalName": "a toxnet database", "additionalNameLanguage": "eng"}] https://toxnet.nlm.nih.gov/cgi-bin/sis/htmlgen?CCRIS ["RRID:SCR_008178", "RRID:nif-0000-21077"] [] The repository is no longer available. <<>>!!!>>> eng ["disciplinary"] {"size": "more than 9.000 chemical records", "updatedp": "2018-01-08"} 1985 2016-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.nlm.nih.gov/pubs/factsheets/ccrisfs.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cancer", "carcinogenesis", "carcinogenicity", "mutagenesis", "mutagenicity", "tumor inhibition", "tumor promotion"] [{"institutionName": "National Instiutes of Health, National Cancer Institut", "institutionAdditionalName": ["NIH, NCI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Library of Medicine, Division of Specialized Information Services", "institutionAdditionalName": ["NLM, SIS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sis.nlm.nih.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html", "tehip@teh.nlm.nih.gov"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] yes {"api": "https://toxnet.nlm.nih.gov/toxnetapi/search_chemical.html", "apiType": "REST"} [] https://toxnet.nlm.nih.gov/newtoxnet/faq.html [] no yes [] [] {} CCRIS provides historical information from the years 1985 - 2011. It is no longer updated. CCRIS is part of TOXNET (Toxicology Data Network) Description: CCRIS contains over 9,000 chemical records with carcinogenicity, mutagenicity, tumor promotion, and tumor inhibition test results. Data are derived from studies cited in primary journals, current awareness tools, NCI reports, and other special sources. Test results have been reviewed by experts in carcinogenesis and mutagenesis. CCRIS provides historical information from the years 1985 - 2011. 2014-10-15 2019-12-17 +r3d100011176 CURATOR eng [{"additionalName": "Chiba University Repository for Access To Outcomes from Research", "additionalNameLanguage": "eng"}] http://opac.ll.chiba-u.jp/da/curator/?lang=1 [] ["ir@office.chiba-u.jp"] CURATOR (Chiba University's Repository for Access to Outcomes from Research) captures, preserves and makes publicly available intellectual digital materials from research activities on Chiba University campuses, including peer-reviewed articles, theses, preprints, statistical and experimental data, course materials and softwares. CURATOR is intended to function as the portal for the outcomes from Chiba University's research activities. The University Library is responsible for building and operating CURATOR under the guidance of the Faculty Committee for Improved Scholarly Information Availability, which commissioned by the Library Board of Faculty Representatives to systematically promote and arrange disseminative activities by the University. eng ["institutional"] {"size": "51.825 images; 424 datasets", "updatedp": "2019-12-18"} 2004 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Chiba University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.chiba-u.ac.jp/e/index.html", "institutionIdentifier": ["ROR:01hjzeq58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.chiba-u.ac.jp/e/contact/index.html"]}, {"institutionName": "Chiba University Library", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ll.chiba-u.ac.jp/english/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "OA Policy", "policyURL": "https://openscience.jp/oa/oa-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://opac.ll.chiba-u.jp/da/curator/?lang=1"}] restricted [] ["other"] {"api": "http://opac.ll.chiba-u.jp/opac/mmd_api/oai-pmh/?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] ["ResearcherID"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-10-15 2019-12-18 +r3d100011177 Claremont Colleges Digital Library eng [{"additionalName": "CCDL", "additionalNameLanguage": "eng"}] https://ccdl.claremont.edu/digital/ ["biodbcore-001515"] ["digitalcollections@claremont.edu", "https://claremont.libwizard.com/f/contact_ccdl"] The Claremont Colleges Digital Library (CCDL) provides access to digitized and born-digital historical and visual resources collections created both by and for The Claremont Colleges community. eng ["institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://ccdl.claremont.edu/digital/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["anthropology", "fine arts", "geography", "history", "language and literature", "library science", "music", "political science", "psychology", "religion", "sciences", "social sciences"] [{"institutionName": "Claremont Colleges Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.claremont.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Claremont Colleges Library's Center for Digital Initiatives", "institutionAdditionalName": ["CDI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://libraries.claremont.edu/cdi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018", "institutionContact": ["https://library.claremont.edu/ask-us/"]}] [{"policyName": "Copyright", "policyURL": "https://library.claremont.edu/copyright-resources/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.claremont.edu/copyright-resources/"}] closed [] ["other"] {} ["none"] [] no yes [] [] {} 2014-10-15 2021-11-16 +r3d100011181 Digital Case eng [] http://library.case.edu/digitalcase/ [] ["digitalcase@case.edu"] Digital Case is Case Western Reserve University's digital library, institutional repository and digital archive. Digital Case stores, disseminates, and preserves the intellectual output of Case faculty, departments and research centers in digital formats (both "born digital" items as well as materials of historical interest that have been digitized). Kelvin Smith Library manages Digital Case on behalf of the university. With Digital Case, KSL assumes an active role in the scholarly communication process, providing expertise in the form of a set of services (metadata creation, secure environment, preservation over time) for access and distribution of the university’s collective intellectual product. eng ["institutional"] {"size": "37.359 items in 199 collections", "updatedp": "2019-12-18"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Case Western Reserve University, Kelvin Smith Library", "institutionAdditionalName": ["KSL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://library.case.edu/ksl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://library.case.edu/ksl/contactus/comments/"]}] [{"policyName": "Copyright", "policyURL": "http://library.case.edu/digitalcase/policy.aspx#copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://library.case.edu/digitalcase/policy.aspx#copyright"}] restricted [] ["unknown"] {} ["hdl"] [] no yes [] [] {} 2014-10-20 2019-12-18 +r3d100011182 UA Campus Repository eng [{"additionalName": "University of Arizona Campus Repository", "additionalNameLanguage": "eng"}] http://arizona.openrepository.com/arizona/ [] ["repository@u.library.arizona.edu"] The UA Campus Repository is an institutional repository that facilitates access to the research, creative works, publications and teaching materials of the University by collecting, sharing and archiving content selected and deposited by faculty, researchers, staff and affiliated contributors. eng ["institutional"] {"size": "59.649 itms", "updatedp": "2017-05-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40903 Operating, Communication and Information Systems", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://repository.arizona.edu/pages/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DLIST", "Digital Curation", "Library and Information Science", "Museum Informatics", "archives and records management", "information sciences", "multidisciplinary"] [{"institutionName": "University of Arizona, University Libraries", "institutionAdditionalName": ["UA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://new.library.arizona.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://new.library.arizona.edu/contact"]}] [{"policyName": "Format Support Policy", "policyURL": "http://arizona.openrepository.com/arizona/help/formats.jsp#policy"}, {"policyName": "UA Campus Repository HELP", "policyURL": "http://arizona.openrepository.com/arizona/help/index.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://arizona.openrepository.com/arizona/help/index.jsp#submit"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://new.library.arizona.edu/research/open-access/policy"}] restricted [{"dataUploadLicenseName": "SUBMIT: Licence", "dataUploadLicenseURL": "http://arizona.openrepository.com/arizona/help/index.jsp#submit"}] ["DSpace"] {"api": "http://arizona.openrepository.com/arizona/oai/request?verb=ListSets", "apiType": "OAI-PMH"} ["hdl"] http://arizona.openrepository.com/arizona/help/index.jsp#submit ["ORCID"] yes unknown [] [{"metadataStandardName": "AVM - Astronomy Visualization Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "http://arizona.openrepository.com/arizona/feed/rss_2.0/site", "syndicationType": "RSS"} UA Campus Repository supports ORCID Author Identification System 2014-10-16 2019-12-18 +r3d100011183 Digitale Sammlungen, Goethe-Universität Frankfurt am Main deu [] https://sammlungen.ub.uni-frankfurt.de/ [] ["https://sammlungen.ub.uni-frankfurt.de/doc/contact", "information@ub.uni-frankfurt.de"] Digital documents and collections hosted by the University Library - both freely available on the internet and access-restricted - can be found here. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ub.uni-frankfurt.de/sammlungen/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Handwritings", "Incunabula", "Judaica", "Judaism", "Literary remains"] [{"institutionName": "Johann Wolfgang Goethe-Universit\u00e4t Frankfurt, Universit\u00e4tsbibliothek Johann Christian Senckenberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ub.uni-frankfurt.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Public Domain", "policyURL": "http://creativecommons.org/publicdomain/mark/1.0/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/3.0/deed.de"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://creativecommons.org/publicdomain/mark/1.0/"}] closed [] ["other"] {} ["URN"] [] no yes [] [] {"syndication": "http://sammlungen.ub.uni-frankfurt.de/rss", "syndicationType": "RSS"} 2014-10-17 2021-10-11 +r3d100011188 Digital South Asia Library eng [{"additionalName": "DSAL", "additionalNameLanguage": "eng"}] http://dsal.uchicago.edu/ [] ["dsal@uchicago.edu"] The Digital South Asia Library provides digital materials for reference and research on South Asia to scholars, public officials, business leaders, and other users. This program builds upon a two-year pilot project funded by the Association of Research Libraries' Global Resources Program with support from the Andrew W. Mellon Foundation. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10602 Asian Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://dsal.uchicago.edu/about.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Asian studies", "multidisciplinary"] [{"institutionName": "Center for Research Libraries", "institutionAdditionalName": ["CRL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.crl.edu/", "institutionIdentifier": ["ROR:05dky1a08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.crl.edu/about/staff-directory"]}, {"institutionName": "The Andrew W. Mellon Foundation", "institutionAdditionalName": ["TICFIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mellon.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["inquiries@mellon.org"]}, {"institutionName": "University of Chicago", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uchicago.edu/", "institutionIdentifier": ["ROR:024mw5h28", "RRID:SCR_002832", "RRID:nlx_50001"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uchicago.edu/contact/"]}] [{"policyName": "Copyright", "policyURL": "http://dsal.uchicago.edu/copyright.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dsal.uchicago.edu/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dsal.uchicago.edu/images/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dsal.uchicago.edu/maps/"}] closed [] [] {} ["none"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-10-20 2020-01-21 +r3d100011189 PRISM: University of Calgary's Digital Repository eng [] https://prism.ucalgary.ca/ ["OpenDOAR:7771"] ["digitize@ucalgary.ca", "kmeranji@ucalgary.ca"] PRISM is a digital archive of the University of Calgary's intellectual output. Established and maintained by Libraries and Cultural Resources to manage, preserve and make available the academic works of faculty, students and research groups. The collection includes faculty publications, masters and doctoral theses, and research output from across Southern Alberta. PRISM is updated regularly, with new works added daily. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Calgary, Libraries and Cultural Resources", "institutionAdditionalName": ["LCR"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lcr.ucalgary.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://contacts.ucalgary.ca/"]}] [{"policyName": "Open Access Mandate", "policyURL": "https://prism.ucalgary.ca/handle/1880/47361"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/license"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://library.ucalgary.ca/copyright"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "https://libanswers.ucalgary.ca/faq/199051"}] ["DSpace"] {} ["DOI", "hdl"] [] no yes [] [] {"syndication": "http://prism.ucalgary.ca/feed/atom_1.0/site", "syndicationType": "ATOM"} 2014-10-20 2020-01-09 +r3d100011191 Earth-prints Repository eng [] http://www.earth-prints.org/ [] ["https://www.earth-prints.org/feedback"] Earth-Prints is an open archive created and maintained by Istituto Nazionale di Geofisica e Vulcanologia. This digital collection allows users to browse, search and access manuscripts, journal articles, theses, conference materials, books, book-chapters, web products. The goal of our repository is to collect, capture, disseminate and preserve the results of research in the fields of Atmosphere, Cryosphere, Hydrosphere and Solid Earth. Earth-prints is young and growing rapidly. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earth-prints.org/bitstream/2122/1076/1/brochureEP.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "cryosphere", "earth sciences", "hydrosphere", "solid earth"] [{"institutionName": "Istituto Nazionale di Geofisica e Vulcanologia", "institutionAdditionalName": ["INGV", "National Institute of Geophysics and Volcanology"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ingv.it/en/", "institutionIdentifier": ["ROR:00qps9a02"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://comunicazione.ingv.it/it/contatti.html"]}] [{"policyName": "Archive Policy", "policyURL": "http://www.earth-prints.org/author-guidelines.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.earth-prints.org/author-guidelines.jsp"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public_domain"}] restricted [] ["DSpace"] {} ["hdl"] [] yes no [] [] {"syndication": "http://www.earth-prints.org/feed/atom_1.0/site", "syndicationType": "ATOM"} 2014-10-21 2020-01-22 +r3d100011192 MGnify eng [{"additionalName": "formerly: EBI Metagenomics", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/metagenomics/ ["FAIRsharing_doi:10.25504/FAIRsharing.dxj07r"] ["https://www.ebi.ac.uk/support/metagenomics"] MGnify (formerly: EBI Metagenomics) offers an automated pipeline for the analysis and archiving of microbiome data to help determine the taxonomic diversity and functional & metabolic potential of environmental samples. Users can submit their own data for analysis or freely browse all of the analysed public datasets held within the repository. In addition, users can request analysis of any appropriate dataset within the European Nucleotide Archive (ENA). User-submitted or ENA-derived datasets can also be assembled on request, prior to analysis. eng ["disciplinary"] {"size": "3.692 studies; 215.970 samples; 280.606 analyses", "updatedp": "2020-01-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebi.ac.uk/metagenomics/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "functional analysis", "genomics"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/index.cfm?pg=contacts&origin=tools-contact"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@embl.de"]}] [{"policyName": "Terms of use of the EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [] ["other"] yes {"api": "https://www.ebi.ac.uk/metagenomics/api/schema/?format=openapi", "apiType": "REST"} ["none"] https://www.ebi.ac.uk/metagenomics/ [] yes yes [] [] {} Data submission via the European Nucleotide Archive (ENA). - UniProt has retired UniMES. Henceforth, we recommend using the EBI Metagenomics portal instead. 2014-10-21 2020-01-28 +r3d100011193 Wittliff Collections - Digital Collections eng [] https://digital.library.txstate.edu/handle/10877/137 [] ["digitalcollections@txstate.edu", "https://digital.library.txstate.edu/contact"] The Digital Collections repository is a service that provides free and open access to the scholarship and creative works produced and owned by the Texas State University community. The Wittliff Collections, located on the seventh floor of the Albert B. Alkek Library at Texas State University, was founded by William D. Wittliff in 1987. The Wittliff Collections include 2 collections. 1. The Southwestern Writers Collection: These Collection holds the papers of numerous 20th century writers and the Southwestern & Mexican Photography Collection. The film holdings contain over 500 film and television screenplays as well as complete production archives for several popular films, including the television miniseries Lonesome Dove. The music holdings represent the breadth and scope of popular Texas sounds. 2. Mexican Photography Collection: The Southwestern & Mexican Photography Collection assembles a broad range of photographic work from the Southwestern United States and Mexico, from the 19th-century to the present day. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.thewittliffcollections.txstate.edu/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Mexico", "authors", "literature", "music", "photographs", "southwest of America"] [{"institutionName": "Texas State University, University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.library.txstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library@txstate.edu"]}, {"institutionName": "The Wittliff Collections", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.thewittliffcollections.txstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["thewittliffcollections@txstate.edu"]}] [{"policyName": "Copyright", "policyURL": "http://www.library.txstate.edu/research/digital-collections/authors-corner/faqs.html"}, {"policyName": "Non-exclusive Distribution License Agreement", "policyURL": "https://gato-docs.its.txstate.edu/jcr:4643db77-a12e-4bb0-82c9-c56234c2db84/RepositoryNonexclusive%20distribution%20license.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.library.txstate.edu/research/digital-collections/authors-corner/faqs.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.copyright.gov/title17/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.library.txstate.edu/research/digital-collections/authors-corner/license/contentParagraph/0/content_files/file2/document/RepositoryNonexclusive%20distribution%20license.pdf"}] restricted [] ["DSpace"] {} ["hdl"] https://digital.library.txstate.edu/handle/10877/5125 [] no yes [] [] {} see also: http://www.thewittliffcollections.txstate.edu/ 2014-10-22 2020-02-03 +r3d100011195 Ensembl Bacteria eng [{"additionalName": "e!EnsemblBacteria", "additionalNameLanguage": "eng"}] http://bacteria.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.zsgmvd", "MIR:00000202", "RRID:SCR_008679", "RRID:nif-0000-33711"] ["helpdesk@ensemblgenomes.org", "http://www.ensemblgenomes.org/info/about/contact"] This site provides access to complete, annotated genomes from bacteria and archaea (present in the European Nucleotide Archive) through the Ensembl graphical user interface (genome browser). Ensembl Bacteria contains genomes from annotated INSDC records that are loaded into Ensembl multi-species databases, using the INSDC annotation import pipeline. eng ["disciplinary"] {"size": "44.046 genomes; 43.552 bacteria; 494 archaea; 8.244 species", "updatedp": "2019-04-10"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "gene models", "genomics", "procaryotes", "protein"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Microme", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.microme.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ensemblgenomes.org/info/data/identifiers"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [] ["MySQL"] yes {"api": "ftp://ftp.ensemblgenomes.org/pub/current/fungi/", "apiType": "FTP"} ["none"] http://ensemblgenomes.org/info/publications [] yes yes [] [] {} eEnsemblBacteria uses NCBI taxonomy; Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2014-10-20 2020-02-03 +r3d100011196 Ensembl Fungi eng [{"additionalName": "e!EnsemblFungi", "additionalNameLanguage": "eng"}] http://fungi.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.bg5xqs", "MIR:00000206", "RRID:SCR_008681", "RRID:nif-0000-33718"] ["http://fungi.ensembl.org/Help/Contact", "http://fungi.ensembl.org/info/about/contact/index.html"] EnsemblFungi is a genome-centric portal for fungal species. It is a project to maintain annotation on selected genomes. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "fungi", "gene models", "genome", "proteins"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["EC, FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [] ["MySQL"] yes {"api": "http://fungi.ensembl.org/info/website/ftp/index.html", "apiType": "FTP"} ["none"] http://www.ensembl.org/info/about/publications.html [] yes yes [] [] {} eEnsemblfungi uses NCBI taxonomy. Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2014-10-22 2021-10-11 +r3d100011197 Ensembl Genomes eng [{"additionalName": "e!EnsemblGenomes", "additionalNameLanguage": "eng"}] http://ensemblgenomes.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.923a0p", "RRID:OMICS_01648", "RRID:SCR_006773", "RRID:nlx_65207"] ["helpdesk@ensemblgenomes.org", "http://ensemblgenomes.org/info/about/contact"] The Ensembl genome annotation system, developed jointly by the EBI and the Wellcome Trust Sanger Institute, has been used for the annotation, analysis and display of vertebrate genomes since 2000. Since 2009, the Ensembl site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. In each domain, we aim to bring the integrative power of Ensembl tools for comparative analysis, data mining and visualisation across genomes of scientific interest, working in collaboration with scientific communities to improve and deepen genome annotation and interpretation. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20304 Sensory and Behavioural Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "chemical biology", "eukaryotes", "gene expression", "genes", "genetics", "prokaryotes", "proteins", "sequences"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ensembl.org/info/about/legal/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ensembl.org/info/about/legal/image_reuse.html"}] restricted [{"dataUploadLicenseName": "Upload", "dataUploadLicenseURL": "http://ensemblgenomes.org/node/30423"}] ["MySQL"] yes {"api": "http://ensemblgenomes.org/info/access/ftp", "apiType": "FTP"} ["none"] http://ensemblgenomes.org/info/publications [] yes yes [] [] {} EnsemblGenomes uses NCBI taxonomy. Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2014-10-20 2020-02-03 +r3d100011198 Ensembl Metazoa eng [{"additionalName": "e!EnsemblMetazoa", "additionalNameLanguage": "eng"}] http://metazoa.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.c23cqq", "MIR:00000204", "RRID:SCR_000800", "RRID:nif-0000-33714"] ["http://metazoa.ensembl.org/Help/Contact", "http://metazoa.ensembl.org/info/about/contact/index.html"] Ensembl Metazoa is a genome-centric portal for metazoan species of scientific interest. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "eukaryota", "gene models", "genomics", "multicellular organisms"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/contact-nhgri/"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Identifier policy", "policyURL": "http://ensemblgenomes.org/info/data/identifiers"}, {"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Data Upload Disclaimer", "dataUploadLicenseURL": "http://metazoa.ensembl.org/info/website/adding_trackhubs.html"}] ["MySQL"] yes {"api": "ftp://ftp.ensemblgenomes.org/pub/metazoa/", "apiType": "FTP"} ["none"] http://ensemblgenomes.org/info/publications [] yes yes [] [] {} EnsemblMetazoa uses Uniprot taxonomy data; Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2014-10-22 2021-10-11 +r3d100011199 Ensembl Plants eng [{"additionalName": "e!EnsemblPlants", "additionalNameLanguage": "eng"}] http://plants.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.j8g2cv", "MIR:00000205", "RRID:SCR_008680", "RRID:nif-0000-33715"] ["http://plants.ensembl.org/Help/Contact", "http://plants.ensembl.org/info/about/contact/index.html"] EnsemblPlants is a genome-centric portal for plant species. Ensembl Plants is developed in coordination with other plant genomics and bioinformatics groups via the EBI's role in the transPLANT consortium. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "gene models", "genome", "plants", "proteins"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cordis.europa.eu/project/rcn/99709/factsheet/en"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Gramene", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gramene.org/", "institutionIdentifier": ["RRID:SCR_000532", "RRID:SCR_002829", "RRID:nif-0000-02926", "RRID:nlx_65829"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gramene.org/feedback"]}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "Triticeae Genomics For Sustainable Agriculture", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wheatgenome.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Barley Genome Sequencing", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.barleygenome.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.barleygenome.org.uk/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}, {"institutionName": "transPLANT", "institutionAdditionalName": ["trans-National Infrastructure for Plant Genomic Science"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.transplantdb.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.transplantdb.eu/contact"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ensembl.org/info/about/legal/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ensembl.org/info/about/legal/image_reuse.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Data Upload Disclaimer", "dataUploadLicenseURL": "http://plants.ensembl.org/info/website/upload/index.html"}] ["MySQL"] yes {"api": "ftp://ftp.ensemblgenomes.org/pub/plants/", "apiType": "FTP"} ["none"] http://www.ensembl.org/info/about/publications.html [] yes yes [] [] {} EnsemblPlants uses Uniprot taxonomy. Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2014-10-22 2021-10-11 +r3d100011200 Ensembl Protists eng [{"additionalName": "e!EnsemblProtists", "additionalNameLanguage": "eng"}] http://protists.ensembl.org/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.ad1zae", "RRID:SCR_013154", "RRID:nif-0000-33712"] ["http://ensemblgenomes.org/info/about/contact"] EnsemblProtists is a genome-centric portal for protists species. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ensemblgenomes.org/info/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "biology", "eukaryotic microorganisms", "gene structure", "genomics", "microorganisms", "simple cellular organization"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "European Commission, Seventh Framework Programme", "institutionAdditionalName": ["EC, FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "Phytopath", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.phytopathdb.org/homepage", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.phytopathdb.org/content/contact-us"]}, {"institutionName": "United Kingdom Biotechnology and Biosciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bbsrc.ac.uk/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bbsrc.ac.uk/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ensemblgenomes.org/info/about/legal/browser_agreement"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Data Upload Disclaimer", "dataUploadLicenseURL": "http://fungi.ensembl.org/info/website/upload/index.html#access"}] ["MySQL"] yes {"api": "ftp://ftp.ensemblgenomes.org/pub/protists/release-46", "apiType": "FTP"} ["none"] http://ensemblgenomes.org/info/publications [] yes yes [] [] {} EnsembleProtists uses Uniprot taxonomy. Since 2009, the EnsemblGenomes site has been complemented by the creation of five new sites, for bacteria, protists, fungi, plants and invertebrate metazoa, enabling users to use a single collection of (interactive and programatic) interfaces for accessing and comparing genome-scale data from species of scientific interest from across the taxonomy. See also: e!ensembl 2010-10-22 2021-09-09 +r3d100011201 DataverseNL eng [] https://dataverse.nl/ ["FAIRsharing_doi:10.25504/FAIRsharing.denvnv"] ["info@dataverse.nl", "marion.wittenberg@dans.knaw.nl"] Online storage, sharing and registration of research data, during the research period and after its completion. DataverseNL is a shared service provided by participating institutions and DANS. eng ["institutional"] {"size": "386 dataverses; 1.498 datasets; 13.461 files", "updatedp": "2020-10-16"} 2010 ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dans.knaw.nl/en/about/services/DataverseNL/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "4TU.Federation", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.4tu.nl/nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/nl", "institutionIdentifier": ["ROR:008pnp284", "RRID:SCR_000904", "RRID:nlx_156902"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dans.knaw.nl/nl/contact"]}, {"institutionName": "Leiden University", "institutionAdditionalName": ["Universiteit Leiden"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.universiteitleiden.nl/en", "institutionIdentifier": ["ROR:027bh9e22", "RRID:SCR_011342", "RRID:nlx_33496"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Maastricht University, University Library", "institutionAdditionalName": ["Maastricht Universiteit, Universiteitsbibliotheek"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.maastrichtuniversity.nl/about-um/service-centres/university-library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NIOO", "institutionAdditionalName": ["Nederlands Instituut voor Ecologie", "Netherlands Institute of Ecology"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nioo.knaw.nl/", "institutionIdentifier": ["ROR:01g25jp36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["communicatie@nioo.knaw.nl"]}, {"institutionName": "Rijksuniversiteit Groningen", "institutionAdditionalName": ["University of Groningen"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rug.nl/", "institutionIdentifier": ["ROR:012p63287", "RRID:SCR_011650", "RRID:nlx_149167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rug.nl/info/contact"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Tilburg University, Library and IT Services", "institutionAdditionalName": ["LIS"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tilburguniversity.edu/about/organization/university-services/library-it-services", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Trimbos Institute", "institutionAdditionalName": ["Trimbos-instituut"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.trimbos.nl/english/?", "institutionIdentifier": ["ROR:02amggm23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universiteit Utrecht", "institutionAdditionalName": ["Utrecht University"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uu.nl/", "institutionIdentifier": ["ISNI:0000000120346234", "ROR:04pp8hn57", "RRID:SCR_011753", "RRID:nlx_67641"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universiteit Utrecht, Universiteitsbibliotheek", "institutionAdditionalName": ["Utrecht University Library"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uu.nl/en/university-library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "VU Amsterdam", "institutionAdditionalName": ["Vrije Universiteit Amsterdam"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vu.nl/en/", "institutionIdentifier": ["ROR:008xxew50", "RRID:SCR_011770", "RRID:nlx_143738"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DANS privacy statement", "policyURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information/privacy-statement"}, {"policyName": "General Terms of Use", "policyURL": "https://dans.knaw.nl/en/about/services/DataverseNL/DataverseNLGeneralTermsofuse.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.nl/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} DataverseNL is covered by Clarivate Data Citation Index. 2014-10-22 2021-08-19 +r3d100011202 Open Research Exeter eng [{"additionalName": "ORE", "additionalNameLanguage": "eng"}] https://ore.exeter.ac.uk/repository/ [] ["openaccess@exeter.ac.uk", "rdm@exeter.ac.uk"] Open Research Exeter (ORE) is the University of Exeter's repository for all types of research, including research papers, research data and theses. Research in ORE can be viewed and downloaded freely by anyone, anywhere: researchers, students, industry, business and the wider public. ORE's content includes journal articles, conference papers, working papers, reports, book chapters, videos, audio, images, multimedia research project outputs, raw data and analysed data. ORE's content is securely stored, managed and preserved to ensure free, permanent access. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.exeter.ac.uk/research/openresearch/opendata/depositingore/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Exeter", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.exeter.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.exeter.ac.uk/contact/"]}] [{"policyName": "HEFCE policy for open access in the next Research Excellence Framework (REF)", "policyURL": "http://www.exeter.ac.uk/research/openresearch/refrequirements/"}, {"policyName": "ORE takedown policy", "policyURL": "http://www.exeter.ac.uk/research/openresearch/selfarchiving/policies/#d.en.444183"}, {"policyName": "Open Access Research and Research Data Management Policy", "policyURL": "http://www.exeter.ac.uk/media/universityofexeter/research/openaccess/OA_RDM_Policy_Final.pdf"}, {"policyName": "Open Research Exeter (ORE) policies", "policyURL": "http://www.exeter.ac.uk/research/openresearch/selfarchiving/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.exeter.ac.uk/research/openresearch/todo/copyright/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.exeter.ac.uk/research/openresearch/opendata/"}] restricted [{"dataUploadLicenseName": "Submitting to ORE", "dataUploadLicenseURL": "http://www.exeter.ac.uk/research/openresearch/policies/ore/#a1"}] ["DSpace"] yes {} ["DOI", "hdl"] ["ORCID"] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2014-10-22 2019-01-08 +r3d100011203 Flytrap eng [] http://www.fly-trap.org/ ["RRID:SCR_003075", "RRID:nif-0000-00051"] ["da@dai.ed.ac.uk", "http://www.fly-trap.org/flytrap/html/docs/contact.html"] Flytrap is an interactive database for displaying gene expression patterns, in particular P[GAL4] patterns, via an intuitive WWW based interface. This development consists of two components, the first being the html interface to the database and the second, a tool-kit for constructing and maintaining the database. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.fly-trap.org/flytrap/html/docs/flytrap.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["Drosophila", "brain function", "cell", "expressen pattern", "gene expression", "genetics", "neuroimagining"] [{"institutionName": "University of Edinburgh", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["communications.office@ed.ac.uk", "https://www.gla.ac.uk/explore/contact/"]}, {"institutionName": "University of Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "2001", "institutionContact": ["https://www.gla.ac.uk/about/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@wellcome.ac.uk"]}] [{"policyName": "Policy on data, software and materials management and sharing", "policyURL": "https://wellcome.ac.uk/funding/managing-grant/policy-data-software-materials-management-and-sharing"}, {"policyName": "Research Data Management Policy", "policyURL": "http://www.ed.ac.uk/schools-departments/information-services/about/policies-and-regulations/research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.inf.ed.ac.uk/teaching/courses/diss/03-04/props/122_armstrong1.html"}] closed [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2014-10-23 2019-01-08 +r3d100011206 GEOROC eng [{"additionalName": "Geochemie der Gesteine von Ozeanen und Kontinenten", "additionalNameLanguage": "deu"}, {"additionalName": "Geochemistry of Rocks of the Oceans and Continents", "additionalNameLanguage": "eng"}] http://georoc.mpch-mainz.gwdg.de/georoc/Entry.html ["biodbcore-001675"] ["b.sarbas@mpic.de"] The database GEOROC (Geochemistry of Rocks of the Oceans and Continents) is maintained by the Max Planck Institute for Chemistry in Mainz. The database is a comprehensive collection of published analyses of volcanic rocks and mantle xenoliths. It contains major and trace element concentrations, radiogenic and nonradiogenic isotope ratios as well as analytical ages for whole rocks, glasses, minerals and inclusions. Samples come from 11 different geological settings. Metadata include, among others, geographic location with latitude and longitude, rock class and rock type, alteration grade, analytical method, laboratory, reference materials and references eng ["disciplinary"] {"size": "1.264.730 analyses, 499.280 samples, 17.490 papers, 18.428.710 single data values", "updatedp": "2018-12-05"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://georoc.mpch-mainz.gwdg.de/georoc/Start.asp [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemistry", "geochemistry", "igneous and metamorphic Petrology", "mathematics", "mineralogy", "physics", "solid earth", "trace element geochemistry"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Gesellschaft f\u00fcr Wissenschaftliche Datenverarbeitung mbH G\u00f6ttingen", "institutionAdditionalName": ["GWDG"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gwdg.de/", "institutionIdentifier": ["ROR:00cd95c65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gwdg.de/web/guest/about-us/contact"]}, {"institutionName": "Max-Planck-Gesellschaft, Max-Planck Institut f\u00fcr Chemie", "institutionAdditionalName": ["MPIC", "Max Planck Institute for Chemistry"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpic.de/", "institutionIdentifier": ["ROR:02f5b7n18"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpic.de/3822998/contact"]}] [{"policyName": "GEOROC quick tour", "policyURL": "http://georoc.mpch-mainz.gwdg.de/georoc/webseite/News-Dateien/QuickTour_GEOROC.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mpic.de/3625534/imprint"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} GEOROC is covered by Thomson Reuters Data Citation Index. Datasets in GEOROC are cross-linked with GeoReM https://www.re3data.org/repository/r3d100011123. EarthChem https://www.re3data.org/repository/r3d100011538 is a community-driven effort to facilitate the preservation, discovery, access and visualization of the various geochemical datasets. The EarthChem Portal offers a "one-stop-shop" for geochemistry data of the solid earth with access to complete data from multiple data systems (including the databases PetDB, NAVDAT, GEOROC, and USGS data). The portal features mapping and visualization tools. 2014-10-27 2021-09-03 +r3d100011207 GloPAD eng [{"additionalName": "Datenbank der globalen darstellenden K\u00fcnste", "additionalNameLanguage": "deu"}, {"additionalName": "Global Performing Arts Database", "additionalNameLanguage": "eng"}] http://www.glopad.org/pi/en/ [] ["glopac@cornell.edu", "http://www.glopac.org/contact/index.php"] GloPAD is a multimedia, multilingual, web-accessible database containing digital images, texts, video clips, sound recordings, and complex media objects (such as 3-D images) related to the performing arts from around the world. GloPAD (Global Performing Arts Database) records include authoritative, detailed, multilingual descriptions of digital images, texts, video clips, sound recordings, and complex media objects related to the performing arts around the world, plus information about related pieces, productions, performers, and creators. GloPAC is an international organization of institutions and individuals committed to using innovative digital technologies to create easily accessible, multimedia, and multilingual information resources for the study and preservation of the performing arts. eng ["disciplinary"] {"size": "4.500 objects", "updatedp": "2018-12-05"} 2002 ["deu", "eng", "fra", "jpn", "rus", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.glopac.org/about/aboutGloPAD.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["GloPAC", "PARCs", "Performing Arts", "Performing Arts Resource Centers"] [{"institutionName": "Cornell University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2002-10", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Performing Arts Consortium", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.glopac.org/", "institutionIdentifier": [], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["glopacadmin@cornell.edu"]}, {"institutionName": "Institute of Museum and Library Services", "institutionAdditionalName": ["IMSL"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imls.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2002-10", "responsibilityEndDate": "2005-09", "institutionContact": []}] [{"policyName": "Permissions, Credits, and Using Digital Objects", "policyURL": "http://www.glopad.org/pi/en/using.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.glopac.org/about/aboutGloPAD.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.glopac.org/about/aboutGloPAD.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.glopad.org/pi/en/using.php"}] closed [] ["unknown"] {} ["none"] http://www.glopad.org/pi/en/using.php [] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Participating Organizations see: http://www.glopac.org/about/aboutOrgs.php 2014-10-27 2019-01-08 +r3d100011208 Hardin.MD eng [{"additionalName": "Hardin MD", "additionalNameLanguage": "eng"}, {"additionalName": "Hardin Mate Directory", "additionalNameLanguage": "eng"}, {"additionalName": "Medical Picture Gallery", "additionalNameLanguage": "eng"}] https://web.archive.org/web/20170206082130/http://hardinmd.lib.uiowa.edu/ ["RRID:SCR_002364", "RRID:nif-0000-21186"] ["hardin-webmaster@uiowa.edu", "janna-lawrence@uiowa.edu"] !!!!! As of June 30, 2017, HardinMD has been retired, although it is still findable through the WayBack Machine !!!!! Hardin MD was first launched in 1996, as a source to find the best lists, or directories, of information in health and medicine. Hence, the name Hardin MD comes from Hardin Meta Directory, since the site was conceived as a "directory of directories." The Hardin part of our name is from Robert Hardin, a physician at University of Iowa, after whom the library was named. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 2017-06-30 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.lib.uiowa.edu/hardin/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}] ["dataProvider"] ["disease", "health", "medicine"] [{"institutionName": "Hardin Library for the Health Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lib.uiowa.edu/hardin/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["http://www.lib.uiowa.edu/hardin/contact/"]}, {"institutionName": "The University of Iowa Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.lib.uiowa.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lib.uiowa.edu/contact/"]}] [{"policyName": "HonCode", "policyURL": "http://www.hon.ch/HONcode/Patients/Visitor/visitor_de.html"}, {"policyName": "Public Domain", "policyURL": "https://blog.lib.uiowa.edu/hardinmd/2008/10/21/public-domain-pictures-in-hardin-md/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://blog.lib.uiowa.edu/hardinmd/2008/10/21/public-domain-pictures-in-hardin-md/"}] closed [] ["unknown"] {} ["none"] http://www.hon.ch/HONcode/Guidelines/hc_p4.html [] yes yes [] [] {} 2014-10-27 2021-09-03 +r3d100011209 Hazardous Substance Data Bank eng [{"additionalName": "A TOXNET database", "additionalNameLanguage": "eng"}, {"additionalName": "HSDB", "additionalNameLanguage": "eng"}] https://toxnet.nlm.nih.gov/cgi-bin/sis/htmlgen?HSDB ["RRID:SCR_002374", "RRID:nif-0000-21201"] [] The repository is no longer available. <<>> eng ["disciplinary", "institutional"] {"size": "over 5800 records", "updatedp": "2018-12-05"} 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://toxnet.nlm.nih.gov/newtoxnet/hsdb.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["environmental health", "human", "pharmacology", "public health", "substance", "toxicology"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Toxicology Data Network", "institutionAdditionalName": ["TOXNET"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "U.S. National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/"]}] [{"policyName": "Copyright Information and Downloading National Library of Medicine Data", "policyURL": "https://www.nlm.nih.gov/databases/download.html"}, {"policyName": "NLM Copyright Information", "policyURL": "https://www.nlm.nih.gov/copyright.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.nlm.nih.gov/databases/download.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nlm.nih.gov/databases/download.html"}] closed [] ["unknown"] {"api": "https://toxnet.nlm.nih.gov/toxnetapi/TOXNETWebService.html", "apiType": "REST"} ["none"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html [] yes yes [] [] {} Description: HSDB is a toxicology database that focuses on the toxicology of potentially hazardous chemicals. It provides information on human exposure, industrial hygiene, emergency handling procedures, environmental fate, regulatory requirements, nanomaterials, and related areas. The information in HSDB has been assessed by a Scientific Review Panel. 2014-10-27 2019-12-17 +r3d100011210 HONmedia eng [{"additionalName": "Health On The Net Foundation", "additionalNameLanguage": "eng"}, {"additionalName": "Health on the Net media", "additionalNameLanguage": "eng"}] http://www.hon.ch/HONmedia/ [] ["HONsecretariat@healthonnet.org", "http://www.hon.ch/Global/contact2.html"] HONmedia is an unique repository of over 6800 medical images and videos, pertaining to 1700 topics and themes. This peerless database has been created manually by HON and new image links are constantly being added from the worldwide Web. eng ["disciplinary"] {"size": "over 6.800 medical images and videos", "updatedp": "2018-12-05"} 1996 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] http://www.hon.ch/Global/HON_mission.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["serviceProvider"] ["Anatomy", "Anthropology", "Bioinformatics", "Medicine", "Physics", "Psychology"] [{"institutionName": "Health On the Net Foundation", "institutionAdditionalName": ["HON"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hon.ch/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["HONsecretariat@healthonnet.org", "https://www.hon.ch/Global/contact2.html"]}, {"institutionName": "Helping HON and Funding", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hon.ch/Global/helping_HON2.html", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State of Geneva", "institutionAdditionalName": ["R\u00e9publique et canton de Gen\u00e8ve"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ge.ch/dares/accueil.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioniformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.isb-sib.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Hospitals of Geneva", "institutionAdditionalName": ["HUG", "H\u00f4pitaux Universitaieres de Gen\u00e8ve"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hug-ge.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright", "policyURL": "https://www.hon.ch/Global/copyright.html"}, {"policyName": "Disclaimer and Copyrights", "policyURL": "https://www.hon.ch/Global/copyright.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://debussy.hon.ch/cgi-bin/HONmedia?copyright"}] restricted [] ["unknown"] {} ["none"] https://www.hon.ch/Global/copyright.html [] no unknown ["other"] [] {} 2014-10-30 2019-01-08 +r3d100011213 ITIS eng [{"additionalName": "Integrated Taxonomic Information System", "additionalNameLanguage": "eng"}] https://www.itis.gov/ [] ["itiswebmaster@itis.gov"] Here you will find authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world. eng ["disciplinary"] {"size": "Scientific Names: 796.798; Common Names: 130.249", "updatedp": "2018-12-05"} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.itis.gov/info.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "biogeography", "ecological system", "environmental monitoring", "fungi", "mammalogy", "microbes", "systematics", "taxonomy"] [{"institutionName": "CONABIO", "institutionAdditionalName": ["Comisi\u00f3n nacional para el conocimiento y uso de la biodiversidad"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gob.mx/conabio", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gob.mx/conabio"]}, {"institutionName": "Department of Agriculture, Agriculture Research Service", "institutionAdditionalName": ["USDA, ARS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}, {"institutionName": "Department of Agriculture, Natural Resources Conservation Service", "institutionAdditionalName": ["USDA, NRCS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/site/national/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}, {"institutionName": "National Park Service", "institutionAdditionalName": ["NPS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nps.gov/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nps.gov/aboutus/contactus.htm"]}, {"institutionName": "NatureServe", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.natureserve.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.natureserve.org/about-us/contact-us"]}, {"institutionName": "Smithsonian Institution, National Museum of Natural History", "institutionAdditionalName": ["NMNH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://naturalhistory.si.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://naturalhistory.si.edu/email.html"]}, {"institutionName": "U.S. Environmental Protection Agency", "institutionAdditionalName": ["EPA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epa.gov/home/forms/contact-epa"]}, {"institutionName": "U.S. Fish and Wildlife Service", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fws.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fws.gov/duspit/contactus.htm/CONTACT%20US.pdf"]}, {"institutionName": "United States Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "ITIS Privacy Statement and Disclaimer", "policyURL": "https://www.itis.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.itis.gov/privacy.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.itis.gov/privacy.html"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "https://www.itis.gov/submit_guidlines.html"}] ["unknown"] {"api": "https://www.itis.gov/ws_description.html", "apiType": "other"} ["other"] https://www.itis.gov/citation.html [] yes yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "https://www.itis.gov/ITISrss.xml", "syndicationType": "RSS"} Partners: http://www.itis.gov/organ.html 2014-10-31 2019-01-08 +r3d100011216 KU ScholarWorks eng [] https://kuscholarworks.ku.edu/dspace/ [] ["https://openaccess.ku.edu/contact", "mreed@ku.edu"] KU ScholarWorks is the digital repository of the University of Kansas. It contains scholarly work created by KU faculty, staff and students, as well as material from the University Archives. KU ScholarWorks makes important research and historical items available to a wider audience and helps assure their long-term preservation. eng ["institutional"] {"size": "473 research datasets", "updatedp": "2018-12-05"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Kansas Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lib.ku.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lib.ku.edu/ask-librarian"]}] [{"policyName": "Open Access Policy for University of Kansas Scholarship", "policyURL": "http://policy.ku.edu/governance/open-access-policy"}, {"policyName": "Research data management - data services, repositories", "policyURL": "https://guides.lib.ku.edu/data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://policy.ku.edu/governance/open-access-policy"}] restricted [] ["DSpace"] yes {"api": "https://kuscholarworks.ku.edu/page/about", "apiType": "OAI-PMH"} ["hdl"] ["ORCID"] yes unknown [] [] {"syndication": "https://kuscholarworks.ku.edu/feed/atom_1.0/site", "syndicationType": "ATOM"} 2014-12-05 2021-08-25 +r3d100011218 LSE Research Online eng [{"additionalName": "London School of Economics and Political Science Research Online", "additionalNameLanguage": "eng"}] http://eprints.lse.ac.uk/ [] ["datalibrary@lse.ac.uk", "lseresearchonline@lse.ac.uk"] LSE Research Online is the institutional repository for the London School of Economics and Political Science. LSE Research Online contains research produced by LSE staff, including journal articles, book chapters, books, working papers, conference papers and more. eng ["institutional"] {"size": "11 datasets", "updatedp": "2019-08-29"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://eprints.lse.ac.uk/faq.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["historic data", "political science"] [{"institutionName": "LSE Library", "institutionAdditionalName": ["London School of Economics and Political Science Library"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lse.ac.uk/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library.enquiries@lse.ac.uk"]}] [{"policyName": "LSE Research Data Management", "policyURL": "http://www.lse.ac.uk/library/research-support/research-data-management"}, {"policyName": "LSE Research Online deposit agreement", "policyURL": "http://eprints.lse.ac.uk/faq.html"}, {"policyName": "Terms of use", "policyURL": "https://www.lse.ac.uk/lse-information/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://files.eprints.org/867/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://eprints.lse.ac.uk/faq.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://eprints.lse.ac.uk/faq.html"}] restricted [{"dataUploadLicenseName": "LSE Research Online deposit agreement", "dataUploadLicenseURL": "http://eprints.lse.ac.uk/faq.html"}, {"dataUploadLicenseName": "Publisher copyright policies & self-archiving", "dataUploadLicenseURL": "http://www.sherpa.ac.uk/romeo/"}, {"dataUploadLicenseName": "Repository's Rights and Responsibilities", "dataUploadLicenseURL": "http://eprints.lse.ac.uk/faq.html"}] ["EPrints"] yes {"api": "http://eprints.lse.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} [] ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://eprints.lse.ac.uk/cgi/latest_tool?output=RSS2", "syndicationType": "RSS"} 2014-12-05 2019-08-29 +r3d100011219 Metropolitan Travel Survey Archive eng [{"additionalName": "MTSA", "additionalNameLanguage": "eng"}] http://www.surveyarchive.org/ [] ["http://www.surveyarchive.org/contacts.html"] MTSA is a Metropolitan Travel Survey Archive to store, preserve, and make publicly available, via the internet, travel surveys conducted by metropolitan areas, states and localities. As a result of cooperation from several agencies, we now have been able to post databases along with relevant documentation for many regions in the archive http://www.surveyarchive.org/archive.html . The databases and the documentation can be obtained from this website. In addition to making these databases publicly available, we are also in the process of converting all the databases to a common format to enhance the readability and usability of each survey, so many surveys can be used online, see analyze http://www.surveyarchive.org/analyze.html. The results from the first year of the project, along with issues related to archiving travel survey data are provided in our reports page http://www.surveyarchive.org/reports.html . Papers written by Yacov Zahavi, an instrumental figure in the development of travel surveys, are also provided here. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.surveyarchive.org/updates.html [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["data aquisition", "survey data", "transportation planning", "travel behavior", "travel surveys"] [{"institutionName": "NUSTATS Research Solutions", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nustats.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nustats.com/contactus/"]}, {"institutionName": "Transportation.gov", "institutionAdditionalName": ["DOT", "U.S. Department of Transportation", "United States Department of Transportation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.transportation.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.transportation.gov/contact-us"]}, {"institutionName": "University of Michigan, Institute for Social Research, Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icpsr.umich.edu/icpsrweb/ICPSR/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.icpsr.umich.edu/icpsrweb/ICPSR/help/#contact"]}, {"institutionName": "University of Minnesota", "institutionAdditionalName": ["U of M"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://twin-cities.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://twin-cities.umn.edu/contact-us/"]}, {"institutionName": "University of Minnesota, Minnesota Population Center", "institutionAdditionalName": ["MPC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pop.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mpc@umn.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.surveyarchive.org/about.html"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} MTSA supports Data Documentation Initiative (DDI) metadata standard 2014-10-24 2019-01-08 +r3d100011220 MINDS@UW eng [{"additionalName": "Minds @ University of Wisconsin", "additionalNameLanguage": "eng"}] https://minds.wisconsin.edu/ [] ["dspace-help@minds.wisconsin.edu"] MINDS@UW is designed to gather, distribute, and preserve digital materials related to the University of Wisconsin's research and instructional mission. Content, which is deposited directly by UW faculty and staff, may include research papers and reports, pre-prints and post-prints, datasets and other primary research materials, learning objects, theses, student projects, conference papers and presentations, and other born-digital or digitized research and instructional materials. eng ["institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.wisc.edu/digital-library-services/about-digital-library-services/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Wisconsin Digital Collections Center", "institutionAdditionalName": ["UWDCC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.wisc.edu/digital-library-services/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.library.wisc.edu/forms/contact-the-uw-digital-collections-center/"]}, {"institutionName": "University of Wisconsin-Madison, Information Technology", "institutionAdditionalName": ["UW\u2011Madison Information Technology"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://it.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["IT @ UW-Madison"]}] [{"policyName": "MINDS@UW license", "policyURL": "http://www.engr.wisc.edu/cmsimages/CEE_MindsatUW.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.library.wisc.edu/digital-library-services/minds/faq/#q6"}] closed [] ["DSpace"] yes {} ["hdl"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://minds.wisconsin.edu/feed/rss_2.0/site", "syndicationType": "RSS"} 2014-11-03 2019-01-08 +r3d100011221 Monash University Research Repository eng [{"additionalName": "ARROW (formerly)", "additionalNameLanguage": "eng"}] https://www.monash.edu/library/researchers/repository [] ["Research.Repository@monash.edu", "researchdata@monash.edu"] The Monash University Research Repository allows researchers to store, manage and share their research outputs and data, and use research collections from across the University. The Research Repository consists of multiple repository platforms, selected to meet the needs of our researchers by offering a variety of options suited to different types of research outputs and collections. These different platforms are described in detail at the Repository URL page. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.monash.edu/library/researchers/repository [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary", "research data", "research outputs", "research publications", "special collections"] [{"institutionName": "Monash University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.monash.edu/", "institutionIdentifier": ["ROR:02bfwt286", "RRID:SCR_001088", "RRID:nlx_77388"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Monash University Library", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.monash.edu/library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.monash.edu/library/about/contacts"]}] [{"policyName": "Disclaimer and Copyright", "policyURL": "https://www.monash.edu/disclaimer-copyright"}, {"policyName": "Ownership and rights", "policyURL": "https://www.monash.edu/library/researchdata/guidelines/ownership"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.monash.edu/library/researchers/researchdata/guidelines/ownership#Monash"}] restricted [] ["other"] yes {"api": "https://repository.monash.edu/oai-pmh-repository/request", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "CSMD-CCLRC Core Scientific Metadata Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/csmd-cclrc-core-scientific-metadata-model"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Repository services are supported by the Pure, Figshare and Omeka softwares. 2014-11-03 2020-07-31 +r3d100011222 MycoBank eng [{"additionalName": "Fungal databases, nomenclature and species banks", "additionalNameLanguage": "eng"}] http://www.mycobank.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.v8se8r", "RRID:SCR_004950", "RRID:nlx_91803"] ["http://www.mycobank.org/Contact.aspx"] MycoBank is an on-line database aimed as a service to the mycological and scientific society by documenting mycological nomenclatural novelties (new names and combinations) and associated data, for example descriptions and illustrations. The nomenclatural novelties will each be allocated a unique MycoBank number that can be cited in the publication where the nomenclatural novelty is introduced. These numbers will also be used by the nomenclatural database Index Fungorum, with which MycoBank is associated. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["ara", "deu", "eng", "fra", "nld", "por", "spa", "tha", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ima-mycology.org/society/statutes [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Index Fungorum", "Index of Fungi", "International Code of Nomenclature ICN", "biodiversity", "biology", "fungal systematics", "mycology", "nomenclatur", "typification"] [{"institutionName": "Botanische Staatssammlung M\u00fcnchen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.botanischestaatssammlung.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.botanischestaatssammlung.de/"]}, {"institutionName": "International Mycological Association", "institutionAdditionalName": ["IMA"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ima-mycology.org/society"]}, {"institutionName": "Royal Netherlands Academy of Arts and Sciences, Westerdijk Fungal Biodiversity Institute", "institutionAdditionalName": ["CBS-KNAW Fungal Biodiversity Centre (formerly)", "Centraalbureau voor Schimmelcultures", "Westerdijk Institute"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "http://www.westerdijkinstitute.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["k.bensch@mycobank.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://de.mycobank.org/"}] restricted [] ["other"] yes {"api": "http://www.mycobank.org/Services/Generic/Help.aspx?s=searchservice", "apiType": "REST"} ["none"] http://www.mycobank.org/DefaultInfo.aspx?Page=HelpMovies#Link [] yes yes [] [] {} 2014-10-24 2021-09-03 +r3d100011223 National Trauma Data Bank eng [{"additionalName": "American College of Surgeons National Trauma Data Bank", "additionalNameLanguage": "eng"}, {"additionalName": "NTDB", "additionalNameLanguage": "eng"}] https://www.facs.org/quality-programs/trauma/tqp/center-programs/ntdb [] ["NTDB@facs.org", "https://www.facs.org/quality-programs/trauma/contact##contactntdb"] The National Trauma Data Bank® (NTDB) is the largest aggregation of trauma registry data ever assembled. The goal of the NTDB is to inform the medical community, the public, and decision makers about a wide variety of issues that characterize the current state of care for injured persons. Registry data that is collected from the NTDB is compiled annually and disseminated in the forms of hospital benchmark reports, data quality reports, and research data sets. Research data sets that can be used by researchers. To gain access to NTDB data, researchers must submit requests through our online application process eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.facs.org/quality-programs/trauma/tqp/center-programs/ntdb/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["mental disease"] [{"institutionName": "American College of Surgeons", "institutionAdditionalName": ["ACS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.facs.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.facs.org/contact"]}, {"institutionName": "Digital Innovation, Inc., Technical Assistance Center", "institutionAdditionalName": ["DI, Inc."], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.dicorp.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dicorp.com/contact-us/request-more-information/"]}, {"institutionName": "NTDB Data Center", "institutionAdditionalName": ["National Trauma Data Bank, Data Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.facs.org/quality-programs/trauma/tqp/center-programs/ntdb", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NTDB@facs.org"]}] [{"policyName": "HIPAA Business Associate Agreement-Data Use Agreement (BAA-DUA)", "policyURL": "http://web.facs.org/baa/default.htm"}, {"policyName": "Terms Of Use", "policyURL": "https://www.facs.org/~/media/files/quality%20programs/trauma/ntdb/usermanual72.ashx"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.facs.org/~/media/files/quality%20programs/trauma/ntdb/usermanual72.ashx"}] restricted [] ["unknown"] {} ["none"] https://www.facs.org/~/media/files/quality%20programs/trauma/ntdb/usermanual72.ashx [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} The operational definitions for the NTDB is the National Trauma Data Standard (NTDS) Data Dictionary, which is designed to establish a national standard for the exchange of trauma registry data. 2014-11-03 2019-01-08 +r3d100011226 NIST Physical reference data eng [{"additionalName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "additionalNameLanguage": "eng"}, {"additionalName": "Physical reference data", "additionalNameLanguage": "eng"}] https://www.nist.gov/pml/productsservices/physical-reference-data [] ["inquiries@nist.gov"] Physical Reference Data compiles physical data and biblographic sources: Physical constants, atomic spectroscopy data, molecular spectroscopic data, X-Ray and Gamma-Ray data, nuclear physics data etc. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.nist.gov/pml/about-pml [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomic properties", "dosimetry", "particle energy", "physical constants", "physics", "spectroscopy", "wavelength"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/pml"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/office-director/freedom-information-act"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} 2014-11-04 2017-08-28 +r3d100011230 Oxford University Research Archive eng [{"additionalName": "ORA datasets", "additionalNameLanguage": "eng"}] https://ora.ox.ac.uk/?f%5Bf_type_of_work%5D%5B%5D=Dataset&q=&search_field=all_fields ["FAIRsharing_doi:10.25504/FAIRsharing.rkwr6y"] ["https://ora.ox.ac.uk/contact", "ora@bodleian.ox.ac.uk"] The Oxford University Research Archive (ORA) serves as an institutional repository for the University of Oxford and is home to the scholarly research output of its members. ORA also is the home of Oxford digital theses. ORA is a permanant and secure archive of the University which preserves an array of research publications, journal articles, conference papers, working papers, theses, reports, book sections and more. Unpublished academic work is also deposited into ORA, maximising the University's research output. ORA hollds publications, theses and research data. eng ["institutional"] {"size": "986 datasets", "updatedp": "2021-09-21"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www2.bodleian.ox.ac.uk/ora/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Oxford, Bodleian Libraries", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bodleian.ox.ac.uk/#/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bodleian.ox.ac.uk/contact-us"]}] [{"policyName": "Disclaimer and data protection statement", "policyURL": "https://ora.ox.ac.uk/disclaimer"}, {"policyName": "Ownership, Liability and Use", "policyURL": "https://www.ox.ac.uk/legal"}, {"policyName": "Policy on the Management of Data Supporting Research Outputs", "policyURL": "https://researchdata.ox.ac.uk/university-of-oxford-policy-on-the-management-of-data-supporting-research-outputs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bodleian.ox.ac.uk/ask/how-to-guides/copyright#collapse2650071"}] restricted [{"dataUploadLicenseName": "Deposit licence", "dataUploadLicenseURL": "https://www2.bodleian.ox.ac.uk/ora/deposit-in-ora"}] ["Fedora"] {"api": "https://ora.ox.ac.uk/oai2", "apiType": "OAI-PMH"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ORA – Oxford University Research Archive is covered by Clarivate Data Citation Index. See also: https://www.re3data.org/repository/r3d100011586 2014-11-05 2021-10-01 +r3d100011232 PANDIT eng [{"additionalName": "Protein and Associated Nucleotide Domains with Inferred Trees", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/research/goldman/software/pandit ["RRID:SCR_003321", "RRID:nif-0000-03241"] ["pandit@ebi.ac.uk"] >>>!!!<<>>!!!<<< PANDIT is a collection of multiple sequence alignments and phylogenetic trees. It contains corresponding amino acid and nucleotide sequence alignments, with trees inferred from each alignment. PANDIT is based on the Pfam database (Protein families database of alignments and HMMs), and includes the seed amino acid alignments of most families in the Pfam-A database. DNA sequences for as many members of each family as possible are extracted from the EMBL Nucleotide Sequence Database and aligned according to the amino acid alignment. PANDIT also contains a further copy of the amino acid alignments, restricted to the sequences for which DNA sequences were found. eng ["disciplinary"] {"size": "7.738 protein families", "updatedp": "2019-05-15"} 2001 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "nucleotide", "pfam-A", "protein"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute, Goldman Group", "institutionAdditionalName": ["EMBL-EBI, Goldman Group"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/research/goldman", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "EMBL-EBI terms of use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/goldman-srv/pandit/Pandit/data/GNULICENSE"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ebi.ac.uk/goldman-srv/pandit/Pandit/data/COPYRIGHT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/goldman-srv/pandit/Pandit/data/GNULICENSE"}] closed [] ["other"] yes {} ["none"] https://www.ebi.ac.uk/goldman-srv/pandit/pandit.cgi?action=help [] no unknown [] [] {} What happened to PANDIT: Efforts to obtain renewed funding after 2008 were unfortunately not successful. PANDIT has therefore been frozen since November 2008, and its data are not updated since September 2005 when version 17.0 was released (corresponding to Pfam 17.0). The existing data and website remain available from these pages, and should remain stable and, we hope, useful. 2014-11-03 2019-05-15 +r3d100011234 Pediatric Surgery @ Brown eng [{"additionalName": "The Image Bank", "additionalNameLanguage": "eng"}] http://med.brown.edu/pedisurg/Brown/IBCategories.html [] [] These pages contain more than 150 clinical, intraoperative and radiologic images related to pediatric surgery. This "virtual atlas" is intended to help students, residents and fellows in their understanding of surgical conditions of the infant and child. These images can be used for personal (not commercial) use, but a reference to their origin would be appreciated. WARNING: Some of the clinical images are graphic in nature and may not be suitable for viewing by everyone. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://med.brown.edu/pedisurg/Brown/Mission.html [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["fetal medicine", "pediatric surgery"] [{"institutionName": "Brown University, Warren Alpert Medical School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.brown.edu/academics/medical/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Thomas_Tracy@Brown.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://med.brown.edu/pedisurg/Fetal/ImageBank.html"}] closed [] [] {} ["none"] http://med.brown.edu/pedisurg/Fetal/ImageBank.html [] no no [] [] {} 2014-11-04 2017-06-12 +r3d100011235 PetDB eng [{"additionalName": "the petrological Database", "additionalNameLanguage": "eng"}] https://search.earthchem.org/ ["RRID:SCR_002209", "RRID:nlx_154723"] ["info@petdb.org"] PetDB, the Petrological Database, is a web-based data management system that provides on-line access to geochemical and petrological data. PetDB is a global synthesis of chemical, isotopic, and mineralogical data for rocks, minerals, and melt inclusions. PetDB's current content focuses on data for igneous and metamorphic rocks from the ocean floor, specifically mid-ocean ridge basalts and abyssal peridotites and xenolith samples from the Earth's mantle and lower crust. PetDB is maintained and continuously updated as part of the EarthChem data collections. eng ["disciplinary"] {"size": "References: 3.161; Samples: 123.750; Bulk rock data points: 1.653.955; Minerals: 3.218.690; Volcanic glasses: 966.545; Melt inclusions: 414.243; Total individual values: 6.254.134; Number of stations: 3.156", "updatedp": "2021-05-21"} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cruise", "deep sea", "diamond", "drill core", "expedition leg", "mineral analyses", "petrology", "sample", "ship", "xenolith"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "EarthChem", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earthchem.org/", "institutionIdentifier": ["RRID:SCR_002207", "RRID:nlx_154721"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/support/contact"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["ROR:02fjjnc15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["ISNI:0000 0004 0374 112X", "ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://www.earthchem.org/ecl/policies/"}, {"policyName": "Requirements for the Publication of Geochemical Data", "policyURL": "http://get.iedadata.org/doi/100426"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.iedadata.org/privacy-policy/"}] restricted [{"dataUploadLicenseName": "Submission Guidelines", "dataUploadLicenseURL": "https://www.earthchem.org/ecl/submission-guidelines/"}] [] yes {"api": "http://ecp.iedadata.org/rest_search_documentation/", "apiType": "REST"} ["DOI"] https://www.iedadata.org/help/data-publication/ [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} If data is available through Marine Geoscience Data System (MGDS) a link will be available to retrieve the relevant information. Petrographic datasets are accepted via the EarthChem Library. The Deep Lithosphere dataset migration into the PetDB database is complete. 2014-11-04 2021-09-03 +r3d100011236 PhysioBank eng [] https://archive.physionet.org/physiobank/ ["RRID:SCR_006949", "RRID:nlx_48903"] ["webmaster@physionet.org"] PhysioBank is a large and growing archive of well-characterized digital recordings of physiologic signals and related data for use by the biomedical research community. PhysioBank currently includes databases of multi-parameter cardiopulmonary, neural, and other biomedical signals from healthy subjects and patients with a variety of conditions with major public health implications, including sudden cardiac death, congestive heart failure, epilepsy, gait disorders, sleep apnea, and aging. eng ["disciplinary"] {"size": "over 75 databases", "updatedp": "2017-06-12"} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://archive.physionet.org/physiobank/about.shtml [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["evaluation", "signal processing"] [{"institutionName": "PhysioNet", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://physionet.org/", "institutionIdentifier": ["RRID:SCR_007345", "RRID:nif-0000-00250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@physionet.org"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institute of Biomedical Imaging and Bioengineering", "institutionAdditionalName": ["NIBIB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nibib.nih.gov/", "institutionIdentifier": ["RRID:SCR_011422", "RRID:nlx_inv_1005103"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nibib.nih.gov/contact-us"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["RRID:SCR_012887", "RRID:nlx_inv_1005108"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nigms.nih.gov"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NIHinfo@od.nih.gov"]}] [{"policyName": "Contributing to PhysioNet Guidelines", "policyURL": "https://archive.physionet.org/guidelines.shtml"}, {"policyName": "License Terms", "policyURL": "https://archive.physionet.org/faq.shtml#license"}, {"policyName": "PhysioNet Copying Policy", "policyURL": "https://archive.physionet.org/copying.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://archive.physionet.org/copying.shtml"}] restricted [{"dataUploadLicenseName": "Contributing to PhysioNet Guidelines", "dataUploadLicenseURL": "https://archive.physionet.org/guidelines.shtml"}] ["other"] no {"api": "https://archive.physionet.org/physiotools/wfdb.shtml#library", "apiType": "FTP"} ["none"] https://archive.physionet.org/citations.shtml [] yes yes [] [] {"syndication": "https://physionet.org/feed.xml", "syndicationType": "RSS"} Physiobank is a component of PhysioNet. See PhysioNet in re3data.org. - Mirrors see: https://physionet.org/mirrors/ 2014-11-05 2019-08-22 +r3d100011237 Publicdata.eu eng [{"additionalName": "Europe's Public Data", "additionalNameLanguage": "eng"}] https://okfn.org/projects/lod2/ [] ["info@publicdata.eu"] >>>!!!<<< 2018-08-17: The repository is no longer available >>>!!!<<< >>>!!!<<< publicdata.eu portal is superseded by European data portal https://www.re3data.org/repository/r3d100012199 >>>!!!<<< eng ["other"] {"size": "47.863 datasets", "updatedp": "2016-10-25"} 2014 2018-08-17 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10901 General Education and History of Education", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://svn.aksw.org/lod2/D9.1.3/public.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "European Commission Seventh Framework Programme", "institutionAdditionalName": ["FP7", "LOD2"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/rcn/95562_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Knowledge Foundation", "institutionAdditionalName": ["OKFN"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://okfn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@okfn.org"]}] [{"policyName": "Open Definition Compatible License", "policyURL": "https://opendefinition.org/od/2.1/en/"}, {"policyName": "UK Open Government Licence", "policyURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/od/2.1/en/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] restricted [] ["CKAN"] no {} ["none"] [] no no [] [] {} description: PublicData.eu is a Pan European data portal, providing access to open, freely reusable datasets from local, regional and national public bodies across Europe. To find data from European countries, go explore EUROPEAN DATA PORTAL: https://www.europeandataportal.eu/ 2014-11-06 2018-08-20 +r3d100011239 RIT Digital Media Library Repository eng [{"additionalName": "RIT DML", "additionalNameLanguage": "eng"}, {"additionalName": "Rochester Institute of Technology's Digital Media Library", "additionalNameLanguage": "eng"}] https://digitalarchive.rit.edu/xmlui/ [] ["ritdigitalarchive@rit.edu"] The RIT DML captures, distributes and preserves RIT's digital products. Here you can find articles, working papers, preprints, technical reports, conference papers and data sets in various digital formats. eng ["institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://digitalarchive.rit.edu/xmlui/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Rochester Institute of Technology, Libraries", "institutionAdditionalName": ["RIT libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.rit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright Infringement", "policyURL": "https://www.rit.edu/copyright-infringement"}, {"policyName": "Forms & Agreements", "policyURL": "https://www.rit.edu/research/srs/formsagreements"}, {"policyName": "Terms of Use", "policyURL": "https://www.rit.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.rit.edu/terms-of-use"}] restricted [] ["DSpace"] no {} ["hdl"] [] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digitalarchive.rit.edu/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} RIT's open access scholarly materials may be viewed in RIT Scholar Works, http://scholarworks.rit.edu. 2014-11-13 2021-08-25 +r3d100011240 Science Photo Library eng [{"additionalName": "SPL", "additionalNameLanguage": "eng"}] https://www.sciencephoto.com/ [] ["https://www.sciencephoto.com/contact", "info@sciencephoto.com"] Science Photo Library (SPL) provides creative professionals with striking specialist imagery, unrivalled in quality, accuracy and depth of information. We have more than 600,000 images and 40,000 clips to choose from, with hundreds of new submissions uploaded to the website each week. eng ["other"] {"size": "more than 600.000 images; 40.000 clips;", "updatedp": "2014-12-01"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.sciencephoto.com/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Science Photo Library", "institutionAdditionalName": ["SPL"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.sciencephoto.com/", "institutionIdentifier": ["ISNI:0000 0001 1019 0846"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@sciencephoto.com"]}] [{"policyName": "Fair processing notice", "policyURL": "https://www.sciencephoto.com/static/pdf/fair-processing-notice.pdf"}, {"policyName": "Image and Motion Licence Agreement", "policyURL": "https://www.sciencephoto.com/terms.html"}, {"policyName": "Submission guidelines", "policyURL": "https://www.sciencephoto.com/static/pdf/submission-guidelines.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.sciencephoto.com/terms.html"}] restricted [{"dataUploadLicenseName": "Draft contract", "dataUploadLicenseURL": "https://www.sciencephoto.com/static/pdf/submission-guidelines.pdf"}] ["unknown"] no {} ["none"] [] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-11-13 2019-08-22 +r3d100011241 Catalogue of Life eng [] http://www.catalogueoflife.org/ ["OMICS_22519", "RRID:SCR_006701", "RRID:nlx_153875", "biodbcore-001200"] ["http://www.catalogueoflife.org/content/contact", "sp2000@sp2000.org", "support@sp2000.org"] The Catalogue of Life is the most comprehensive and authoritative global index of species currently available. It consists of a single integrated species checklist and taxonomic hierarchy. The Catalogue holds essential information on the names, relationships and distributions of over 1.8 million species. This figure continues to rise as information is compiled from diverse sources around the world. eng ["disciplinary"] {"size": "1.8 M species; 168 contributing databases", "updatedp": "2019-08-22"} 2001-06 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.catalogueoflife.org/content/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["animals", "biodiversity", "botany", "fungi", "microorganism", "taxonomy"] [{"institutionName": "7th Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cordis@publications.europa.eu"]}, {"institutionName": "Integrated Taxonomic Information System", "institutionAdditionalName": ["ITIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.itis.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["itiswebmaster@itis.gov"]}, {"institutionName": "Species 2000", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sp2000.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sp2000@sp2000.org"]}, {"institutionName": "University of Reading", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.reading.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.reading.ac.uk/about/contact-us.aspx"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.catalogueoflife.org/content/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.catalogueoflife.org/col/info/copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.catalogueoflife.org/col/info/copyright"}] restricted [{"dataUploadLicenseName": "Contributing your data", "dataUploadLicenseURL": "http://www.catalogueoflife.org/content/contributing-your-data#standard"}] ["unknown"] no {} ["DOI", "URN"] http://www.catalogueoflife.org/col/info/cite [] no yes [] [] {} 2014-11-17 2021-11-17 +r3d100011242 The European Genome-phenome Archive eng [{"additionalName": "EGA", "additionalNameLanguage": "eng"}] https://ega-archive.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.mya1ff", "MIR:00000512", "OMICS_01028", "RRID:SCR_004944", "RRID:nlx_91316"] ["helpdesk@ega-archive.org"] The European Genome-phenome Archive (EGA) is designed to be a repository for all types of sequence and genotype experiments, including case-control, population, and family studies. We will include SNP and CNV genotypes from array based methods and genotyping done with re-sequencing methods. The EGA will serve as a permanent archive that will archive several levels of data including the raw data (which could, for example, be re-analysed in the future by other algorithms) as well as the genotype calls provided by the submitters. We are developing data mining and access tools for the database. For controlled access data, the EGA will provide the necessary security required to control access, and maintain patient confidentiality, while providing access to those researchers and clinicians authorised to view the data. In all cases, data access decisions will be made by the appropriate data access-granting organisation (DAO) and not by the EGA. The DAO will normally be the same organisation that approved and monitored the initial study protocol or a designate of this approving organisation. The European Genome-phenome Archive (EGA) allows you to explore datasets from genomic studies, provided by a range of data providers. Access to datasets must be approved by the specified Data Access Committee (DAC). eng ["disciplinary"] {"size": "4.900 datasets; 768 DACs; 3.190 studies", "updatedp": "2019-08-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ega-archive.org/about/introduction [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biomedical research projects", "clinical studies", "genomics"] [{"institutionName": "Centre for Genomic Regulation", "institutionAdditionalName": ["CRG"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.crg.eu/", "institutionIdentifier": ["RRID:SCR_011147", "RRID:nlx_152187"], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["comunicacio@crg.eu"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}] [{"policyName": "CRG Terms of Use", "policyURL": "https://www.crg.eu/node/10699"}, {"policyName": "Data Access Agreement", "policyURL": "https://ega-archive.org/files/Example_DAA.doc"}, {"policyName": "EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ega-archive.org/files/Example_DAA.doc"}] restricted [{"dataUploadLicenseName": "Submission statements", "dataUploadLicenseURL": "https://ega-archive.org/files/Submission_statement_V1.0.docx"}] ["unknown"] yes {"api": "https://ega-archive.org/metadata/how-to-use-the-api", "apiType": "REST"} ["none"] [] yes yes [] [] {} For each dataset that requires access control, there is a corresponding Data Access Committee (DAC) who determine access permissions. Data access requests are reviewed by the relevant DAC, not by the EGA. Since 2013 and through a collaboration between the European Bioinformatics Institute and the Centre for Genomic Regulation, The European Genome-phenome Archive (EGA) is jointly managed and available at both institutions: EGA-EBI and EGA-CRG https://ega-archive.org/ 2014-11-17 2019-08-22 +r3d100011243 TROVE eng [] https://trove.nla.gov.au/ [] ["https://trove.nla.gov.au/contact-trove-support"] Trove helps you find and use resources relating to Australia. It’s more than a search engine. Trove brings together content from libraries, museums, archives and other research organisations and gives you tools to explore and build. eng ["institutional"] {"size": "over 6.327.477.454 Australian and online resources", "updatedp": "2019-08-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://trove.nla.gov.au/general/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "National Library of Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nla.gov.au/", "institutionIdentifier": ["ISNI: 0000 0004 0385 6840"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nla.gov.au/contact-us"]}] [{"policyName": "Copyrights", "policyURL": "https://www.nla.gov.au/copyright-in-library-collections"}, {"policyName": "Terms of use", "policyURL": "https://trove.nla.gov.au/general/termsofuse"}, {"policyName": "Trove Content Inclusion Policy", "policyURL": "https://help.nla.gov.au/trove/our-policies/trove-content-inclusion-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.1/au/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://trove.nla.gov.au/general/termsofuse"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nla.gov.au/copyright-in-library-collections"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.1/au/"}] ["other"] no {"api": "https://help.nla.gov.au/trove/building-with-trove/api", "apiType": "other"} ["none"] [] no unknown [] [] {} 2014-11-18 2021-07-02 +r3d100011244 UniSave eng [{"additionalName": "UniProtKB Sequence/Annotation Version Archive", "additionalNameLanguage": "eng"}] http://www.ebi.ac.uk/uniprot/unisave/app/#/ ["OMICS_30197", "RRID:SCR_004946", "RRID:nlx_91568"] ["https://www.ebi.ac.uk/about/contact"] The UniProtKB Sequence/Annotation Version Archive (UniSave) has the mission of providing freely to the scientific community a repository containing every version of every Swiss-Prot/TrEMBL entry in the UniProt Knowledge Base (UniProtKB). This is achieved by archiving, every release, the entry versions within the current release. The primary usage of this service is to provide open access to all entry versions of all entries. In addition to viewing their content, one can also filter, download and compare versions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebi.ac.uk/uniprot/unisave/app/#/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "genomics"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}] [{"policyName": "Terms of Use of the EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "UniProt License and disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] closed [] ["unknown"] yes {"api": "ftp://ftp.uniprot.org/pub/databases/uniprot/previous_releases/", "apiType": "FTP"} ["none"] [] no unknown [] [] {} 2014-11-18 2021-07-02 +r3d100011245 University of Southampton Institutional Research Repository eng [{"additionalName": "ePrints Soton", "additionalNameLanguage": "eng"}] https://eprints.soton.ac.uk/ [] ["eprints@soton.ac.uk"] ePrints Soton is the University's Research Repository. It contains journal articles, books, PhD theses, conference papers, data, reports, working papers, art exhibitions and more. Where possible, journal articles, conference proceedings and research data made open access. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Southampton", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.southampton.ac.uk/", "institutionIdentifier": ["RRID:SCR_008086", "RRID:nlx_56990"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.southampton.ac.uk/contact.page"]}] [{"policyName": "General Information and Regulations", "policyURL": "https://www.southampton.ac.uk/calendar/sectioniv/index.page"}, {"policyName": "Open Access & Institutional Repository: Policies and Information for Depositors/Authors", "policyURL": "http://library.soton.ac.uk/openaccess/policies"}, {"policyName": "University Ethics policy", "policyURL": "https://www.southampton.ac.uk/about/governance/policies/ethics.page"}, {"policyName": "University policy on open access", "policyURL": "http://www.calendar.soton.ac.uk/sectionIV/open-access.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://library.soton.ac.uk/openaccess/copyright"}] restricted [{"dataUploadLicenseName": "Deposit agreement", "dataUploadLicenseURL": "http://library.soton.ac.uk/openaccess/deposit-agreement"}] ["EPrints"] {"api": "https://eprints.soton.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] https://library.soton.ac.uk/researchdata/datacitation ["none"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://eprints.soton.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} University of Southampton Institutional Research Repository is covered by Thomson Reuters Data Citation Index. University of Southampton Institutional Research Repository uses Altmetric metrics. ePrints is no longer available to login or deposit outputs, although you can still use ePrints for searching. All research outputs must now be deposited in Pure, the University's research information system - https://www.southampton.ac.uk/research/researcher-support/pure.page All records deposited in Pure with the status 'public' will appear in ePrints. 2014-11-18 2019-10-02 +r3d100011249 York Digital Library eng [{"additionalName": "YODL", "additionalNameLanguage": "eng"}] https://dlib.york.ac.uk/yodl/app/home/index [] ["dti-group@york.ac.uk"] York Digital Library (YODL) is a University-wide Digital Library service for multimedia resources used in or created through teaching, research and study at the University of York. YODL complements the University's research publications, held in White Rose Research Online and PURE, and the digital teaching materials in the University's Yorkshare Virtual Learning Environment. YODL contains a range of collections, including images, past exam papers, masters dissertations and audio. Some of these are available only to members of the University of York, whilst other material is available to the public. YODL is expanding with more content being added all the time eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://dlib.york.ac.uk/yodl/app/home/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multimedia"] [{"institutionName": "University of York", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.york.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of York, Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.york.ac.uk/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.york.ac.uk/library/collections/yorkdigitallibraryyodl/"]}] [{"policyName": "YODL User Guide", "policyURL": "https://www.york.ac.uk/media/library/documents/digitallibrary/YODL%20user%20guide.pdf"}, {"policyName": "York Digital Library policy", "policyURL": "https://www.york.ac.uk/library/collections/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dlib.york.ac.uk/yodl/app/home/licences"}] restricted [{"dataUploadLicenseName": "Rights policy", "dataUploadLicenseURL": "https://www.york.ac.uk/library/collections/yorkdigitallibraryyodl/yorkdigitallibrarypolicy/#Rights%20Policy"}] ["unknown"] yes {} ["none"] ["none"] unknown yes [] [] {} York Digital Library is covered by Clarivate Data Citation Index 2014-11-04 2021-08-11 +r3d100011250 Wellcome Images eng [] https://wellcomeimages.org/ ["RRID:SCR_004181", "RRID:nlx_143611"] ["info@wellcomecollection.org"] Wellcome Images is one of the Wellcome Library's major visual collections and also forms part of Wellcome Collection. Wellcome Images is one of the world's richest and most unique collections, with themes ranging from medical and social history to contemporary healthcare and biomedical science. This unrivalled collection contains historical images from the Wellcome Library collections, Tibetan Buddhist paintings, ancient Sanskrit manuscripts written on palm leaves, beautifully illuminated Persian books and much more. eng ["disciplinary", "institutional"] {"size": "over 40.000 images", "updatedp": "2014-11-04"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://wellcomeimages.org/indexplus/page/About%20Us.html [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["biomedical science", "clinical collection", "healthcare", "medical history", "social history"] [{"institutionName": "Wellcome Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wellcomelibrary.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcomelibrary.org/using-the-library/services-and-facilities/contact-us/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["RRID:SCR_011782", "RRID:nlx_inv_1005147"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access to personal data within our research collections", "policyURL": "https://wellcomelibrary.org/content/documents/policy-documents/access-to-personal-data.pdf"}, {"policyName": "Clinical Images Usage terms and Conditions", "policyURL": "https://wellcomeimages.org/indexplus/page/Terms+and+Conditions.html?#clinical"}, {"policyName": "Terms of Use", "policyURL": "https://wellcomeimages.org/indexplus/page/Terms.html?"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] closed [] [] {} ["none"] https://wellcomeimages.org/indexplus/page/Terms.html? [] unknown unknown [] [] {} 2014-11-04 2019-12-03 +r3d100011251 AfricaRice Dataverse eng [{"additionalName": "Rice science at the service of Africa", "additionalNameLanguage": "eng"}, {"additionalName": "la science rizicole au service de l'Afrique", "additionalNameLanguage": "fra"}] https://dataverse.harvard.edu/dataverse/africarice [] ["africarice@cgiar.org", "https://www.africarice.org/home"] AfricaRice is a leading pan-African rice research organization committed to improving livelihoods in Africa through strong science and effective partnerships. AfricaRice dataverse makes studies in rice research open availabe. With the focus on agronomy, breeding, entomoloy, grain quality, pathology, physiology and socio-economics of rice. eng ["institutional"] {"size": "5 dataverses; 122 datasets; 519 files", "updatedp": "2021-04-15"} 2012 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.africarice.org/mission-statement [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ARICA", "NERICA", "rice breeding", "rice entomology", "rice genebank", "rice genetics", "rice pathology", "rice physiology", "socio-economics", "sustainable productivity"] [{"institutionName": "Africa Rice Center", "institutionAdditionalName": ["AfricaRice", "Centre du riz pour l'Afrique", "formerly: WARDA", "formerly: West Africa Rice Development Association"], "institutionCountry": "BEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.africarice.org/", "institutionIdentifier": ["ROR:040y9br29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Africa Rice Center Donors", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.africarice.org/donors", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consultative Group on International Agricultural Research", "institutionAdditionalName": ["CGIAR"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cgiar.org/", "institutionIdentifier": ["ROR:04c4bm785"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RICE CRP", "institutionAdditionalName": ["GRiSP", "formerly: Global Rice Science Partnership"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://grispnetwork.groupsite.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AfricaRice Center Policies and Strategies", "policyURL": "https://www.africarice.org/policies-strategies"}, {"policyName": "AfricaRice OpenAccess\nand Data Management Policy", "policyURL": "https://43c018b3-2e2d-4407-af86-1d6495506405.filesusr.com/ugd/0839e4_bc5b043670be43e7b00b79fdf7a4a033.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Africa Rice is covered by Clarivate Data Citation Index. Africa Rice supports Data Documentation Initiative (DDI) metadata standards 2014-11-04 2021-04-16 +r3d100011252 Analysis of the Interstellar Medium of Isolated Galaxies eng [{"additionalName": "AMIGA", "additionalNameLanguage": "eng"}] http://amiga.iaa.es/p/1-homepage.htm [] ["http://amiga.iaa.es/p/3-amiga-group.htm"] The AMIGA project (Analysis of the interstellar Medium of Isolated GAlaxies) involves the identification and study of a statistically significant sample of the most isolated galaxies in the local Universe. Our goal is to quantify the properties of different phases of the interstellar medium in these galaxies which are likely to be least affected by their external environment. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://amiga.iaa.es/p/2-amiga-science.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Physical Sciences", "galaxies"] [{"institutionName": "Consejo Superior de Investigaciones Cientificas", "institutionAdditionalName": ["CSIC"], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.csic.es/", "institutionIdentifier": ["ROR:02gfc7t72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fundacion Centro de Supercomputacion de Castilla Y Leon", "institutionAdditionalName": ["SCAYLE Supercomputing Centre"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scayle.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Astrophysics of Andalucia", "institutionAdditionalName": ["IAA", "Instituto de Astrofisica de Andalucia - CSIC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iaa.csic.es/en", "institutionIdentifier": ["ROR:04ka0vh05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.csic.es/en/legal-advice"}] closed [] [] yes {} ["none"] [] yes unknown [] [] {} AMIGA is covered by Clarivate Data Citation Index. 2014-11-05 2021-09-08 +r3d100011253 AspGD eng [{"additionalName": "Aspergillus Genome Database", "additionalNameLanguage": "eng"}] http://www.aspergillusgenome.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.9k7at4", "RRID:SCR_001880", "RRID:nif-0000-02577"] ["aspergillus-curator@lists.stanford.edu", "http://www.aspergillusgenome.org/cgi-bin/suggestion"] >>>>!!!!<<<< AspGD data are being integrated into FungiDB. Please click here for additional details http://fungidb.org/ . Discussion of how to maximize the value of FungiDB for the Aspergillus research community will be a major topic at the upcoming AsperFest12 meeting at Asilomar (March 16-17, 2015). >>>>!!!!<<<< AspGD is an organized collection of genetic and molecular biological information about the filamentous fungi of the genus Aspergillus. Among its many species, the genus contains an excellent model organism (A. nidulans, or its teleomorph Emericella nidulans), an important pathogen of the immunocompromised (A. fumigatus), an agriculturally important toxin producer (A. flavus), and two species used in industrial processes (A. niger and A. oryzae). AspGD contains information about genes and proteins of multiple Aspergillus species; descriptions and classifications of their biological roles, molecular functions, and subcellular localizations; gene, protein, and chromosome sequence information; tools for analysis and comparison of sequences; and links to literature information; as well as a multispecies comparative genomics browser tool (Sybil) for exploration of orthology and synteny across multiple sequenced Aspergillus species. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.aspergillusgenome.org/AboutContents.shtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["RNA sequence", "fungi", "gene ontology", "life sciences", "molecular biology", "pathogene"] [{"institutionName": "Broad Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": ["ROR:05a0ya142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jwortman@broadinstitute.org"]}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": ["ROR:00f54p054"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gsherloc@stanford.edu"]}] [{"policyName": "Aspergillus Gene Nomenclature Guide", "policyURL": "http://www.aspergillusgenome.org/Nomenclature.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.aspergillusgenome.org/"}] restricted [{"dataUploadLicenseName": "Submit data to AspGD", "dataUploadLicenseURL": "http://www.aspergillusgenome.org/SubmitContents.shtml"}] [] yes {} ["none"] http://www.aspergillusgenome.org//HowToCite.shtml [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Aspergillus Genome Database is covered by Clarivate Data Citation Index 2014-11-05 2021-04-16 +r3d100011254 CfA Dataverses eng [{"additionalName": "The Astronomy Dataverse Network", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/cfa [] ["https://dataverse.harvard.edu/dataverse/cfa#"] The Astronomy data repository at Harvard is currently open to all scientific data from astronomical institutions worldwide. Incorporating Astroinformatics of galaxies and quasars Dataverse. The Astronomy Dataverse is connected to the indexing services provided by the SAO/NASA Astrophysical Data Service (ADS). eng ["disciplinary"] {"size": "38 dataverses; 125 datasets; 2.035 files", "updatedp": "2021-04-16"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["physical sciences"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard Library", "institutionAdditionalName": ["HL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["cfA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": ["ROR:03c3r2d17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} cfA dataverses is covered by Thomson Reuters Data Citation Index. Astroinformatics of galaxies and quasars Dataverse and theastrodata is covered by Thomson Reuters Data Citation Index. 2014-11-05 2021-04-16 +r3d100011255 ATNF Pulsar Catalogue eng [{"additionalName": "Psrcat", "additionalNameLanguage": "eng"}] https://www.atnf.csiro.au/research/pulsar/psrcat/ [] ["beth.cloake@csiro.au", "cass-enquiries@csiro.au", "https://www.atnf.csiro.au/contact/index.html"] All observations obtained with the Parkes radio telescope are made available to the general community after an embargo period. Usually this embargo period is set to 18 months after the observation. The catalogue includes all published rotation-powered pulsars, including those detected only at high energies. It also includes Anomalous X-ray Pulsars (AXPs) and Soft Gamma-ray Repeaters (SGRs) for which coherent pulsations have been detected. However, it excludes accretion-powered pulsars such as Her X-1 and the recently discovered X-ray millisecond pulsars. ATNF Pulsar catalogue contains information on all published pulsars, with complete bibliographic information. For professional astronomers, a more detailed "Expert" web interface is available allowing access to parameters of specialist interest. The catalogue can also be accessed using a command-line interface on unix or linux systems. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Parkes radio telescope", "observatory", "physical sciences", "radio-astronomy"] [{"institutionName": "Australia Telescope National Facility, Pulsar Group", "institutionAdditionalName": ["ATNF"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.atnf.csiro.au/research/pulsar/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.atnf.csiro.au/research/pulsar/index.html?n=Main.Contact"]}, {"institutionName": "Commonwealth Scientific & Industrial Research Organization", "institutionAdditionalName": ["CSIRO"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/", "institutionIdentifier": ["ROR:03qn8fb07", "RRID:SCR_011167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ATNF Pulsar Catalogue v1.57: Documentation", "policyURL": "https://www.atnf.csiro.au/research/pulsar/psrcat/psrcat_help.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.csiro.au/org/LegalNoticeAndDisclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.atnf.csiro.au/research/pulsar/psrcat/catalogueHistory.html"}] closed [] ["other"] yes {} ["none"] http://www.atnf.csiro.au/research/pulsar/psrcat/catalogueHistory.html [] yes unknown [] [] {} ATNF Pulsar Database is covered by Thomson Reuters Data Citation Index 2014-11-05 2021-09-08 +r3d100011256 Avon Longitudinal Study of Parents and Children eng [{"additionalName": "ALSPAC", "additionalNameLanguage": "eng"}, {"additionalName": "Avon Longitudinal Study of Pregnancy and Childhood", "additionalNameLanguage": "eng"}, {"additionalName": "Children of the 90s", "additionalNameLanguage": "eng"}] https://www.bristol.ac.uk/alspac/ ["RRID:SCR_007260", "RRID:nif-0000-30224"] ["alspac-exec@bristol.ac.uk", "https://www.bristol.ac.uk/alspac/contact/"] ALSPAC is a longitudinal birth cohort study which enrolled pregnant women who were resident in one of three Bristol-based health districts in the former County of Avon with an expected delivery date between 1st April 1991 and 31st December 1992. Around 14,000 pregnant women were initially recruited. Detailed information has been collected on these women, their partners and subsequent children using self-completion questionnaires, data extraction from medical notes, linkage to routine information systems and from hands-on research clinics. Additional cohorts of participants have since been enrolled in their own right including fathers, siblings, children of the children and grandparents of the children. Ethical approval for the study was obtained from the ALSPAC Ethics and Law Committee (IRB00003312) and Local Research Ethics. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biosamples", "biospecimen assays", "genetic data", "genomics", "macrodata", "microdata", "social sciences"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/?nav=main", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mrc.ac.uk/research/facilities-and-resources-for-researchers/cohort-directory/avon-longitudinal-study-of-parents-and-children-alspac-children-of-the-90s/"]}, {"institutionName": "University of Bristol", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bristol.ac.uk/", "institutionIdentifier": ["ROR:0524sp257", "RRID:SCR_011613", "RRID:nlx_14701"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ALSPAC Data Management Plan", "policyURL": "https://www.bristol.ac.uk/media-library/sites/alspac/documents/researchers/data-access/alspac-data-management-plan.pdf"}, {"policyName": "ALSPAC access policy", "policyURL": "http://www.bristol.ac.uk/media-library/sites/alspac/documents/researchers/data-access/ALSPAC_Access_Policy.pdf"}, {"policyName": "Confidentiality form", "policyURL": "http://www.bristol.ac.uk/media-library/sites/alspac/documents/researchers/data-access/ALSPAC_Access_Policy.pdf"}, {"policyName": "Data Transfer Agreement - DTA", "policyURL": "https://www.bristol.ac.uk/media-library/sites/alspac/documents/researchers/data-access/ALSPAC%20non%20HTA%20Material%20Transfer%20Agreement.pdf"}, {"policyName": "Material Transfer Agreement - MTA", "policyURL": "https://www.bristol.ac.uk/media-library/sites/alspac/documents/researchers/data-access/ALSPAC%20non%20HTA%20Material%20Transfer%20Agreement.pdf"}, {"policyName": "Research Councils UK Open Access Policy", "policyURL": "https://www.ucl.ac.uk/library/research-support/open-access/research-funders/uk-research-councils-open-access-policy-and-funding"}, {"policyName": "Wellcome Trust Open Access Policy", "policyURL": "https://wellcome.ac.uk/funding/managing-grant/open-access"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bristol.ac.uk/web/policies/terms-conditions.html"}] closed [] ["unknown"] {} ["none"] http://www.bristol.ac.uk/alspac/researchers/publications/ [] yes yes [] [] {"syndication": "http://www.bris.ac.uk/alspac/news/news-feed.rss", "syndicationType": "RSS"} ALSPAC is covered by Thomson Reuters Data Citation Index 2014-11-10 2021-09-08 +r3d100011257 Bacterial Carbohydrate Structure DataBase eng [{"additionalName": "BCSDB", "additionalNameLanguage": "eng"}, {"additionalName": "Bacterial CSDB", "additionalNameLanguage": "eng"}] http://csdb.glycoscience.ru/bacterial/index.html ["FAIRsharing_doi:10.25504/FAIRsharing.dkbt9j", "RRID:SCR_007560", "RRID:nif-0000-02598"] ["netbox@toukach.ru"] >>>!!!Bacterial (BCSDB) and Plant&Fungal (PFCSDB) carbohydrate structure databases have been merged into a single database, CSDB!!!<<< BCSDB database is aimed at provision of structural, bibliographic, taxonomic and related information on bacterial carbohydrate structures. Two key points of this service are: covering - is above 90% in the scope of bacterial carbohydrates. This means the negative search answer remains valuable scientific information. And consistence - we manually check the data, and aim at hight quality error-free content. The main source of data is a retrospective literature analysis. About 25% of data were imported from CCSD (Carbbank, ceased in 1997, University of Georgia, Athens; structures published before 1995) with subsequent manual curation and approval. Current coverage is displayed in red on the top of the left menu. The time lag between publication of new data and their deposition ~ 1 year. The scope is "bacterial carbohydrates" and covers nearly all structures of this class published up to 2016. Bacterial means that a structure has been found in bacteria or obtained by modification of those found in bacteria. Carohydrate means a structure composed of any residues linked by glycosidic, ester, amidic, ketal, phospho- or sulpho-diester bonds, in which at least one residue is a sugar or its derivative. eng ["disciplinary"] {"size": "14.964 compounds; 8.507 organisms", "updatedp": "2021-04-22"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://toukach.ru/csdb.htm [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["NMR", "archae", "bacteria", "carbohydrates", "fragment", "fungi", "glycomics", "non-carbohydrate moieties", "plants", "spectroscopy", "structural biology", "taxonomy"] [{"institutionName": "Russian Academy of Sciences, N.D. Zelinsky Institute of Organic Chemistry", "institutionAdditionalName": ["\u0418\u041e\u0425 \u0420\u0410\u041d", "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u043e\u0440\u0433\u0430\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0445\u0438\u043c\u0438\u0438 \u0438\u043c. \u041d.\u0414.\u0417\u0435\u043b\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u043d\u0430\u0443\u043a"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://zioc.ru/?lang=en", "institutionIdentifier": ["ROR:007phxq15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["SECRETARY@ioc.ac.ru"]}, {"institutionName": "Russian Foundation for Basic Research", "institutionAdditionalName": ["RFBR", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u043e\u043d\u0434 \u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439", "\u0420\u0444\u0444\u0438"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rfbr.ru/rffi/eng", "institutionIdentifier": ["ROR:02mh1ke95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The President of the Russian Federation Grants Council", "institutionAdditionalName": ["RFBR"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://grants.extech.ru/", "institutionIdentifier": ["ROR:05gxnjj05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.sciencedirect.com/science/article/abs/pii/S0008621513003807"}] open [] [] yes {} ["none"] http://csdb.glycoscience.ru/bacterial/index.html [] yes unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} Bacterial Carbohydrate Structure DataBase is covered by Thomson Reuters Data Citation Index. BCSD is one part of the Russian CSDB, the other parts are 'Plant & Fungal Carbohydrate Structure Database', and 'Glycosyltransferase Database'. 2014-11-10 2021-12-21 +r3d100011258 Behavioral Risk Factor Surveillance System eng [{"additionalName": "BRFSS", "additionalNameLanguage": "eng"}] https://www.cdc.gov/brfss/ ["RRID:SCR_012974", "RRID:nif-0000-30157"] ["https://wwwn.cdc.gov/dcs/contactus/form"] The Behavioral Risk Factor Surveillance System (BRFSS) is the world's largest, on-going telephone health survey system. As a result, surveys were developed and conducted to monitor state-level prevalence of the major behavioral risks among adults associated with premature morbidity and mortality. The basic philosophy was to collect data on actual behaviors, rather than on attitudes or knowledge, that would be especially useful for planning, initiating, supporting, and evaluating health promotion and disease prevention programs. Currently data are collected monthly in all 50 states. eng ["disciplinary"] {"size": "", "updatedp": ""} 1993 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cdc.gov/brfss/about/about_brfss.htm [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["GSPS", "SMART", "asthma", "chronic disease", "life sciences"] [{"institutionName": "Centers for Disease Control and Prevention, National Center for Chronic Disease Prevention and Health Promotion, Division of Population Health", "institutionAdditionalName": ["NCCDPHP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/NCCDPHP/dph/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wwwn.cdc.gov/dcs/ContactUs/Form"]}] [{"policyName": "CDC policies", "policyURL": "https://www.cdc.gov/Other/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.cdc.gov/brfss/about/brfss_faq.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cdc.gov/other/imagereuse.html"}] closed [] [] {} ["none"] https://www.cdc.gov/brfss/about/brfss_faq.htm [] yes yes [] [] {} BRFSS is covered by Thomson Reuters Data Citation Index 2014-11-10 2021-09-08 +r3d100011259 BioCyc Database Collection eng [] https://biocyc.org/ ["OMICS_02675", "RRID:SCR_002298", "RRID:nif-0000-00369"] ["biocyc-support@ai.sri.com", "https://biocyc.org/contact.shtml"] The BioCyc database collection of Pathway/Genome Databases (PGDBs) provides a reference on the genomes and metabolic pathways of thousands of sequenced organisms. BioCyc PGDBs are generated by software that predict the metabolic pathways of completely sequenced organisms, predict which genes code for missing enzymes in metabolic pathways, and predict operons. BioCyc also integrates information from other bioinformatics databases, such as protein feature and Gene Ontology information from UniProt. The BioCyc website provides a suite of software tools for database searching and visualization, for omics data analysis, and for comparative genomics and comparative pathway questions. From 2016 on, access to the EcoCyc and MetaCyc databases will remain free. Subscriptions to the other 7,600 BioCyc databases will be available to institutions (e.g., libraries), and to individuals. Access to licensed databases via: http://www.phoenixbioinformatics.org/biocyc . eng ["disciplinary"] {"size": "18.030 PGDBs", "updatedp": "2021-04-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["dna", "gene expression", "genomes", "life sciences"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "SRI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sri.com/", "institutionIdentifier": ["ROR:05s570m15", "RRID:SCR_004926"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sri.com/locations"]}] [{"policyName": "BioCyc to Adopt Subscription Model", "policyURL": "https://biocyc.org/news001-subscriptions.shtml"}, {"policyName": "BioCycUserGuide", "policyURL": "https://biocyc.org/BioCycUserGuide.shtml"}, {"policyName": "Web Site User's guide", "policyURL": "https://biocyc.org/PToolsWebsiteHowto.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://biocyc.org/download-bundle.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://biocyc.org/download-flatfiles.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://bioinformatics.ai.sri.com/ptools/licensing/all-reg.shtml"}] closed [] ["unknown"] yes {"api": "https://biocyc.org/web-services.shtml", "apiType": "REST"} ["none"] https://biocyc.org/publications.shtml [] yes yes [] [] {"syndication": "http://feeds.feedburner.com/BioCycUpdates", "syndicationType": "RSS"} BioCyc is covered by Thomson Reuters Data Citation Index. The Tier 1 databases are: EcoCyc, MetaCyc, HumanCyc, AraCyc, YeastCyc, LeishCyc, TrypanoCyc are included 2014-11-11 2021-09-08 +r3d100011260 Breast Cancer Surveillance Consortium eng [{"additionalName": "BCSC", "additionalNameLanguage": "eng"}] https://www.bcsc-research.org/ [] ["KPWA.scc@kp.org", "https://www.bcsc-research.org/contact"] The Breast Cancer Surveillance Consortium (BCSC) is a research resource for studies designed to assess the delivery and quality of breast cancer screening and related patient outcomes in the United States. The BCSC is a collaborative network of seven mammography registries with linkages to tumor and/or pathology registries. The network is supported by a central Statistical Coordinating Center. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20521 Gynaecology and Obstetrics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.bcsc-research.org/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["breast cancer", "disease", "life sciences", "mammography", "tumor"] [{"institutionName": "National Cancer Institute", "institutionAdditionalName": ["Instituto Nacional del C\u00e1ncer", "NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81", "RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "U.S. Department of Health & Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhs.gov/about/contact-us/index.html"]}, {"institutionName": "USA.gov", "institutionAdditionalName": ["GobiernoUSA.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/contact"]}] [{"policyName": "Guide to Working with BCSC Data", "policyURL": "https://www.bcsc-research.org/application/files/1315/5657/4782/GuidetoworkingwithBCSCdata_V7.1_2018_12_19.pdf"}, {"policyName": "Submitting a Research Proposal & Working with the BCSC Research Resource", "policyURL": "https://www.bcsc-research.org/about/working-with-bcsc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cancer.gov/policies/copyright-reuse"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bcsc-research.org/work/BCSC_collab_research_agreement.pdf"}] restricted [{"dataUploadLicenseName": "Guidelines for Developing Manuscripts", "dataUploadLicenseURL": "https://www.bcsc-research.org/"}] ["unknown"] {} ["none"] http://www.bcsc-research.org/work/manuscripts.html#acknowledgements [] no yes [] [] {} Breast Cancer Surveillance Consortium is covered by Thomson Reuters Data Citation Index. 2014-11-12 2021-04-23 +r3d100011261 BsubCyc eng [{"additionalName": "a member of the BioCyc Database Collection", "additionalNameLanguage": "eng"}] https://bsubcyc.org/ [] ["biocyc-support@ai.sri.com", "https://bsubcyc.org/contact.shtml"] BsubCyc is a model-organism database for the bacterium Bacillus subtilis and is based on the updated B. subtilis 168 genome sequence and annotation published by Barbe et al. in 2009. Gene function annotations are being updated when new literature is available. Subscriptions are now required to access BsubCyc. For more information on obtaining a subscription, click here: http://www.phoenixbioinformatics.org/biocyc/subscriptions.html eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Bacillus subtilis"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SRI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sri.com/", "institutionIdentifier": ["ROR:05s570m15", "RRID:SCR_004926"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sri.com/locations"]}] [{"policyName": "BioCyc to Adopt Subscription Model", "policyURL": "https://biocyc.org/news001-subscriptions.shtml"}, {"policyName": "Web Site User's Guide for Pathway Tools-Based Web Sites", "policyURL": "https://bsubcyc.org/PToolsWebsiteHowto.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://biocyc.org/download-flatfiles.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://biocyc.org/download.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://bioinformatics.ai.sri.com/ptools/licensing/all-reg.shtml"}] closed [] [] {"api": "https://bsubcyc.org/web-services.shtml", "apiType": "REST"} ["none"] https://bsubcyc.org/ [] yes unknown [] [] {"syndication": "http://feeds.feedburner.com/BioCycUpdates", "syndicationType": "RSS"} BsubCyc is covered by Thomson Reuters Data Citation Index. 2014-11-13 2021-09-08 +r3d100011262 Buckeye Speech Corpus eng [] https://buckeyecorpus.osu.edu/ [] ["psych.service@osu.edu"] The Buckeye Corpus of conversational speech contains high-quality recordings from 40 speakers in Columbus OH conversing freely with an interviewer. The speech has been orthographically transcribed and phonetically labeled. The audio and text files, together with time-aligned phonetic labels, are stored in a format for use with speech analysis software (Xwaves and Wavesurfer). Software for searching the transcription files is currently being written. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://buckeyecorpus.osu.edu/php/corpuswhy.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["social sciences", "transcripts"] [{"institutionName": "National Institute on Deafness and other Communication Disorders", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nidcd.nih.gov/", "institutionIdentifier": ["ROR:04mhx6838", "RRID:SCR_012859"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ohio State University, Department of Psychology", "institutionAdditionalName": ["OSU"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://psychology.osu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Licensing Agreement", "policyURL": "https://buckeyecorpus.osu.edu/License.pdf"}, {"policyName": "Manual", "policyURL": "https://buckeyecorpus.osu.edu/BuckeyeCorpusmanual.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://buckeyecorpus.osu.edu/License.pdf"}] closed [] [] yes {} ["none"] https://buckeyecorpus.osu.edu/php/publications.php [] unknown unknown [] [] {} Buckeye Speech Corpus is covered by Thomson Reuters Data Citation Index. 2014-11-13 2021-04-23 +r3d100011263 Canadian Opinion Research Archive eng [{"additionalName": "CORA", "additionalNameLanguage": "eng"}] https://www.queensu.ca/cora/ [] ["cora@queensu.ca"] The Canadian Opinion Research Archive at Queen's University makes available commercial and independent surveys to the academic, research and journalistic communities. Founded in 1992, CORA contains hundreds of surveys including thousands of discrete items collected by major commercial Canadian firms dating back to the 1970s. CORA is continually adding new surveys and is always soliciting new data from commercial research firms, independent think tanks, research institutes, NGOs, and academic researchers. This website also includes readily accessible results from these surveys, tracking Canadian opinion over time on frequently asked survey questions, as well as tabular results from recent Canadian surveys, and more general information on polling. This material is made available as a public service by CORA and its partners. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.queensu.ca/cora/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Canadian election study", "aboriginal issues", "census", "economics", "education", "employment", "family", "housing", "medicine", "poverty", "public health", "social insurance", "social sciences", "transportation", "welfare"] [{"institutionName": "McGill University, Department of Political Science", "institutionAdditionalName": ["QUL"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mcgill.ca/politicalscience/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mcgill.ca/politicalscience/contact"]}, {"institutionName": "Queens University, School of Policy Studies", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.queensu.ca/sps/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.queensu.ca/sps/contact-us"]}, {"institutionName": "Queens University, University Libary", "institutionAdditionalName": ["QUL"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.queensu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://library.queensu.ca/help-services/ask-us"]}] [{"policyName": "public service by CORA", "policyURL": "https://www.queensu.ca/cora/access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.queensu.ca/cora/about"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.statcan.gc.ca/eng/reference/licence"}] closed [] ["Nesstar"] yes {} ["none"] [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Canadian Opinion Research Archive is covered by Thomson Reuters Data Citation Index. In addition CORA holdings can be accessed at scholarsportal. CORA uses Data Documentation Inititative DDI metadata standards. Analysis of CORA holdings is available at the website, individual-level data cannot be downloaded, but all data can be accessed and analysed here. 2014-11-13 2021-04-23 +r3d100011264 Cancer Models Database eng [{"additionalName": "caMOD", "additionalNameLanguage": "eng"}] https://wiki.nci.nih.gov/display/caMOD/caMOD [] ["ncicb@pop.nci.nih.gov"] >>>!!!<<< The NCI Cancer Models Database, caMOD, was retired on December 24, 2015. Information about many of the mouse models hosted in caMOD was obtained from the Jackson Laboratory Mouse Tumor Biology (MTB) Database and can be accessed through that resource http://tumor.informatics.jax.org/mtbwi/index.do . See caMOD Retirement Announcement https://wiki.nci.nih.gov/display/caMOD/caMOD+Retirement+Announcement >>>>!!<<< Query the Cancer Models database for models submitted by fellow researchers. Retrieve information about the making of models, their genetic description, histopathology, derived cell lines, associated images, carcinogenic agents, and therapeutic trials. Links to associated publications and other resources are provided. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 2015-12-24 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20507 Clinical Chemistry and Pathobiochemistry", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["drug screening data", "life sciences", "mouse models", "rat models", "transplantation models"] [{"institutionName": "U.S. Department of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NIH, NCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "caMod users guide", "policyURL": "https://wiki.nci.nih.gov/display/caMOD/caMOD+User%27s+Guide"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.nci.nih.gov/display/caMOD/caMOD"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wiki.nci.nih.gov/display/caMOD/caMOD"}] restricted [] [] yes {} ["none"] [] yes unknown [] [] {} The NCI Cancer Models Database, caMOD, will be retired on December 24, 2015. Information about many of the mouse models hosted in caMOD was obtained from the Jackson Laboratory Mouse Tumor Biology (MTB) Database and can be accessed through that resource http://tumor.informatics.jax.org/mtbwi/index.do. To obtain raw data, simply notify Application Support ncicbiit@mail.nih.gov. To review the caMOD data index, see the caMOD Model Directory page https://wiki.nci.nih.gov/x/3AqyEg. To save the UML model files that describe the schema of the database, download the Documentation on all caMOD classes zip file https://wiki.nci.nih.gov/download/attachments/312579685/DocOnAllcaMODClasses.zip?version=1&modificationDate=1450727498000&api=v2. If you have any further questions, please contact the NCI CBIIT Application Support team ncicbiit@mail.nih.gov. Cancer Models Database is covered by Thomson Reuters Data Citation Index. 2014-11-14 2018-01-10 +r3d100011266 CfA Library Datasets Dataverse eng [] https://dataverse.harvard.edu/dataverse/cfalibrary [] ["https://www.cfa.harvard.edu/about/contact", "library@cfa.harvard.edu"] The aim of CfA Library Datasets Dataverse is creating a better information system to respond to the changing needs of astronomers not only at the CfA, but worldwide as well. As part of this growing partnership with the ADS, the CfA Library is expanding its metadata and data curation services, and in the process, creating datasets that the astronomy community may find useful. The CfA Library Datasets Dataverse has been created to share these datasets with the greater community with the hope that some members may find it useful. Please remember to acknowledge the CfA Library and the ADS and cite the work using the "Data Citation" presented under each study's "Cataloging Information" section. eng ["institutional"] {"size": "2 studies", "updatedp": "2018-01-10"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["UAT", "astronomy thesaurus", "grants", "physical sciences"] [{"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics, John G. Wolbach Library and Information Resource Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA Astrophysics Data Systems", "institutionAdditionalName": ["ADS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ads.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "https://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://support.dataverse.harvard.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [] ["DataVerse"] yes {} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} CfA Library Datasets Dataverse is covered by Thomson Reuters Data Citation Index. CfA Library Datasets Dataverse is using Data Documentation Inititative DDI metadata standards. 2014-11-14 2021-09-08 +r3d100011267 CGIAR Research Program on Forests, Trees and Agroforestry Dataverse eng [{"additionalName": "Harvard Dataverse Network", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/crp6 [] ["cgiarforestsandtrees@cgiar.org"] The CGIAR Research Program No. 6 (CRP6): Forests, Trees and Agroforestry: Livelihoods, Landscapes and Governance aims to enhance the management and use of forests, agroforestry and tree genetic resources across the landscape, from farms to forests. eng ["institutional"] {"size": "22 datasets; 107 files", "updatedp": "2018-01-10"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Africa", "America", "Asia", "biodiversity", "physical sciences"] [{"institutionName": "Consultative Group on International Agricultural Research, Research Program on Forest, Trees and Agroforestry", "institutionAdditionalName": ["CGIAR CRP-FTA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.foreststreesagroforestry.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cgiarforestsandtrees@cgiar.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "https://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://support.dataverse.harvard.edu/harvard-dataverse-privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} CGIAR Research Program on Forests, Trees and Agroforestry is covered by Thomson Reuters Data Citation Index. CGIAR Research Program on Forests, Trees and Agroforestry is using Data Documentation Inititative DDI metadata standards 2014-11-14 2021-04-30 +r3d100011268 Child Language Data Exchange System eng [{"additionalName": "CHILDES", "additionalNameLanguage": "eng"}] https://childes.talkbank.org/ ["RRID:SCR_003241", "RRID:nif-0000-00624"] ["https://www.talkbank.org/share/email.html", "macw@cmu.edu"] CHILDES is the child language component of the TalkBank system. TalkBank is a system for sharing and studying conversational interactions. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["communication sciences", "corpora", "linguistic coding", "phonbank", "social sciences"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Carnegie Mellon University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/index.html", "institutionIdentifier": ["ROR:05x2bcf33", "RRID:SCR_011138", "RRID:nlx_42483"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/feedback/index.html"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Language Archives Community", "institutionAdditionalName": ["OLAC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.language-archives.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Chat Manual", "policyURL": "https://www.talkbank.org/manuals/CHAT.pdf"}, {"policyName": "NIH data sharing policy", "policyURL": "https://grants.nih.gov/grants/policy/data_sharing/index.htm"}, {"policyName": "TalkBank Code of Ethics", "policyURL": "https://www.talkbank.org/share/ethics.html"}, {"policyName": "TalkBank Ground Rules for data sharing", "policyURL": "https://www.talkbank.org/share/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] open [{"dataUploadLicenseName": "IRB principles", "dataUploadLicenseURL": "https://www.talkbank.org/share/irb/"}] ["other"] {} ["hdl"] https://www.talkbank.org/share/rules.html [] yes unknown [] [] {} CHILDES is covered by Thomson Reuters Data Citation Index. In addition to preservation at Carnegie Mellon, all TalkBank materials are included in the Nijmegen Max-Planck archive at mpi.nl and the CLARIN archives. TalkBank is harvested by Online Language Archiving Community (OLAC) http://www.language-archives.org/ OAIS standards are implemented in terms of TalkBank policies for long term preservation, data migration, metadata creation, storage practices, documentation, legal responsibilities, and data access. Metadata regarding each file is constructed in accord with the CMDI standard at http://www.clarin.eu/content/component-metadata and is included in each archive 2014-11-14 2021-09-08 +r3d100011269 Collaborative Research in Computational Neuroscience eng [{"additionalName": "CRCNS", "additionalNameLanguage": "eng"}] https://crcns.org/ ["RRID:SCR_005608", "RRID:nif-0000-00255"] ["mathieu.girerd@agencerecherche.fr"] This website makes data available from the first round of data sharing projects that were supported by the CRCNS funding program. To enable concerted efforts in understanding the brain experimental data and other resources such as stimuli and analysis tools should be widely shared by researchers all over the world. To serve this purpose, this website provides a marketplace and discussion forum for sharing tools and data in neuroscience. To date we host experimental data sets of high quality that will be valuable for testing computational models of the brain and new analysis methods. The data include physiological recordings from sensory and memory systems, as well as eye movement data. eng ["other"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["brain", "cortex", "eye movement", "life sciences", "retina"] [{"institutionName": "Agence Nationale de la Recherche", "institutionAdditionalName": ["ANR", "French National Research Agency"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://anr.fr/en/anrs-role-in-research/missions/", "institutionIdentifier": ["ROR:00rbzpz17", "RRID:SCR_011248"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["daria.julkowska@agencerecherche.fr", "mathieu.girerd@agencerecherche.fr"]}, {"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Germany, Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rainer.girgenrath@dlr.de"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/pubs/2020/nsf20609/nsf20609.htm"]}, {"institutionName": "United States-Israel Binational Science Foundation", "institutionAdditionalName": ["BSF"], "institutionCountry": "ISR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bsf.org.il/", "institutionIdentifier": ["ROR:00j8z2m73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["heni@bsf.org.il", "yair@bsf.org.il"]}] [{"policyName": "Terms of Use", "policyURL": "https://crcns.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://crcns.org/terms"}] restricted [{"dataUploadLicenseName": "Instructions for data contributors", "dataUploadLicenseURL": "https://crcns.org/files/data/guide/crcns_instructions_for_contributing_data.pdf"}] ["other"] {} ["DOI"] https://crcns.org/terms [] yes unknown [] [] {"syndication": "https://crcns.org/news/aggregator/RSS", "syndicationType": "RSS"} Collaborative Research in Computational Neuroscience is covered by Thomson Reuters Data Citation Index 2014-11-14 2021-09-02 +r3d100011270 Computational and Information Systems Laboratory Research Data Archive eng [{"additionalName": "CISL RDA", "additionalNameLanguage": "eng"}] https://rda.ucar.edu/ [] ["rdahelp@ucar.edu"] This repository record is no longer valid. >>>!!!<<< 2018-08-09: Please refer to the record that is titled "Research Data Archive at NCAR" instead https://www.re3data.org/repository/r3d100010050 . >>>!!!<<< eng ["disciplinary"] {"size": "640 datasets", "updatedp": "2014-12-02"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://rda.ucar.edu/#!about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["agriculture", "biosphere", "climate indicators", "cryosphere", "hydrosphere", "land surface", "paleoclimate", "physical sciences", "solid earth", "spectral/engineering", "sun-earth interactions"] [{"institutionName": "National Center for Atmospheric Research, Computational and Information Systems Laboratory Data Support Section", "institutionAdditionalName": ["NCAR, CISL DSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.cisl.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://staff.ucar.edu/browse/orgs/DSS"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}] [{"policyName": "Notification of Copyright Infringement", "policyURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}, {"policyName": "Terms of Use", "policyURL": "https://www2.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www2.ucar.edu/terms-of-use"}] restricted [{"dataUploadLicenseName": "Terms of use - Contributed content", "dataUploadLicenseURL": "https://www2.ucar.edu/terms-of-use"}] ["unknown"] no {"api": "https://rda.ucar.edu/cgi-bin/oai", "apiType": "OAI-PMH"} ["DOI"] https://rda.ucar.edu/#!data-citation/FAQs [] yes unknown [] [] {"syndication": "http://ncarrda.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} description: The CISL Research Data Archive (RDA), managed by NCAR's Data Support Section (DSS), contains a large and diverse collection of meteorological and oceanographic observations, operational and reanalysis model outputs, and remote sensing datasets to support atmospheric and geosciences research, along with ancillary datasets, such as topography/bathymetry, vegetation, and land use. Computational and Information Systems Laboratory Research Data Archive is covered by Thomson Reuters Data Citation Index 2014-11-19 2021-10-14 +r3d100011271 COMPLETE Dataverse eng [{"additionalName": "COordinated Molecular Probe Line Extinction Thermal Emission Survey of Star Forming Regions Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/complete [] ["https://www.cfa.harvard.edu/COMPLETE/people.html"] The COordinated Molecular Probe Line Extinction Thermal Emission Survey of Star Forming Regions (COMPLETE) provides a range of data complementary to the Spitzer Legacy Program "From Molecular Cores to Planet Forming Disks" (c2d) for the Perseus, Ophiuchus and Serpens regions. In combination with the Spitzer observations, COMPLETE will allow for detailed analysis and understanding of the physics of star formation on scales from 500 A.U. to 10 pc. eng ["disciplinary"] {"size": "25 datasets; 278 files", "updatedp": "2018-01-10"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["interstellar medium", "physical sciences"] [{"institutionName": "Harvard Dataverse", "institutionAdditionalName": ["cfa"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": ["ROR:03c3r2d17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "https://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://support.dataverse.harvard.edu/harvard-dataverse-privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} COordinated Molecular Probe Line Extinction Thermal Emission Survey of Star Forming Regions Dataverse is covered by Thomson Reuters Data Citation Index. COMPLETE is part of CfA Dataverses and the Harvard Dataverse Network. COMPLETE uses Data Documentation Inititative metadata standards. 2014-11-19 2021-04-30 +r3d100011272 The Comprehensive Resource of Mammalian protein complexes eng [{"additionalName": "CORUM", "additionalNameLanguage": "eng"}] https://mips.helmholtz-muenchen.de/corum/ ["OMICS_01904", "RRID:SCR_002254", "RRID:nif-0000-02688"] ["andreas.ruepp@helmholtz-muenchen.de"] CORUM is a manually curated dataset of mammalian protein complexes. Annotation of protein complexes includes protein complex composition and other valuable information such as method of purification, cellular function of complexes or involvement in diseases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://mips.helmholtz-muenchen.de/corum/#about [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "genetics", "genomics", "proteomics"] [{"institutionName": "Helmholtz Zentrum M\u00fcnchen", "institutionAdditionalName": ["German Research Center for Environmental Health"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/en/helmholtz-zentrum-muenchen/index.html", "institutionIdentifier": ["ROR:00cfam450", "RRID:SCR_011282"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Zentrum M\u00fcnchen, German Research Centre for Environmental Health, Institute of Bioinformatics and Systems Biology", "institutionAdditionalName": ["Helmholtz Zentrum M\u00fcnchen, Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt, Institute of Bioinformatics and Systems Biology", "IBIS"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/ibis/index.html", "institutionIdentifier": ["ROR:0127fwn18", "RRID:SCR_011307"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ibis.office@helmholtz-muenchen.de"]}, {"institutionName": "Helmholtz Zentrum M\u00fcnchen, German Research Centre for Environmental Health, Institute of Bioinformatics and Systems Biology, Munich Information Center for Protein Sequences", "institutionAdditionalName": ["MIPS"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/ibis/institute/about-us/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://mips.helmholtz-muenchen.de/corum/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://mips.helmholtz-muenchen.de/corum/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://mips.helmholtz-muenchen.de/corum/"}] closed [] ["unknown"] yes {} ["none"] [] yes unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} CORUM is covered by Thomson Reuters Data Citation Index. CORUM uses PSI-MI standard for the annotation of molecule interactions. 2014-11-20 2021-04-30 +r3d100011273 Database of Zeolite Structures eng [] http://www.iza-structure.org/databases/ [] ["christian.baerlocher@mat.ethz.ch"] This database provides structural information on all of the Zeolite Framework Types that have been approved by the Structure Commission of the International Zeolite Association (IZA-SC). eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.iza-structure.org/DatabaseHistory.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["crystallography", "physical sciences"] [{"institutionName": "ETH Zurich, Laboratory of Crystallography", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.crystal.mat.ethz.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["baerlocher@mat.ethz.ch", "mccusker@mat.ethz.ch"]}, {"institutionName": "International Zeolite Association, Structure Commission", "institutionAdditionalName": ["IZA-SC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iza-structure.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iza-structure.org/IZA-SC_Members.htm"]}] [{"policyName": "Credits for the Database of Zeolite Structures", "policyURL": "http://www.iza-structure.org/IZA-SC_Credits.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.iza-structure.org/IZA-SC_Credits.htm"}] closed [] ["unknown"] no {} ["none"] https://europe.iza-structure.org/IZA-SC/DatabaseCredits.html [] no unknown [] [] {} Database of Zeolite Structures is covered by Thomson Reuters Data Citation Index 2014-11-24 2021-04-30 +r3d100011274 Deakin Research Online eng [{"additionalName": "DRO", "additionalNameLanguage": "eng"}] https://dro.deakin.edu.au/ [] ["drosupport@deakin.edu.au"] DRO is Deakin University's research repository, providing digital curation by describing and preserving the University's research output and enabling worldwide discovery. eng ["institutional"] {"size": "206 data collections", "updatedp": "2021-04-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.deakin.edu.au/library/dro/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Deakin University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.deakin.edu.au/", "institutionIdentifier": ["ROR:02czsnj07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.deakin.edu.au/contact"]}] [{"policyName": "Research Data Footprints Guide", "policyURL": "https://www.deakin.edu.au/library/research/manage-data/footprints-guide"}, {"policyName": "Research Data Store User Guide", "policyURL": "https://www.deakin.edu.au/__data/assets/pdf_file/0005/253328/Research-Data-Store-User-Guide.pdf"}, {"policyName": "Research conduct policy", "policyURL": "https://policy.deakin.edu.au/view.current.php?id=00092"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/au/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://deakin.libguides.com/openaccess"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.deakin.edu.au/library/dro/open-access-and-copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://deakin.libguides.com/openaccess"}] restricted [{"dataUploadLicenseName": "Deakin Research Online Deposit Agreement", "dataUploadLicenseURL": "https://www.deakin.edu.au/__data/assets/pdf_file/0010/257248/deposit-agreement.pdf"}] ["unknown"] yes {} ["hdl"] ["ORCID"] yes yes [] [] {"syndication": "http://dro.deakin.edu.au/news.php?show=rss", "syndicationType": "RSS"} Deakin Research Online is covered by Thomson Reuters Data Citation Index 2014-11-24 2021-04-30 +r3d100011275 DEG eng [{"additionalName": "Database of Essential Genes", "additionalNameLanguage": "eng"}] http://tubic.tju.edu.cn/deg/ ["OMICS_08725", "RRID:SCR_012929", "RRID:nif-0000-02745"] ["rzhang.cn@gmail.com"] DEG hosts records of currently available essential genomic elements, such as protein-coding genes and non-coding RNAs, among bacteria, archaea and eukaryotes. Essential genes in a bacterium constitute a minimal genome, forming a set of functional modules, which play key roles in the emerging field, synthetic biology. eng ["disciplinary"] {"size": "53.944 essential genes; 786 essential non-coding sequences", "updatedp": "2021-04-30"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["archaea", "bacteria", "eukaryotes", "life sciences", "microbial genomes"] [{"institutionName": "Tianjin University, Center of BioInformatics", "institutionAdditionalName": ["TUBIC"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://tubic.tju.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rzhang.cn@gmail.com", "tubicweb@gmail.com"]}] [{"policyName": "Data Sources", "policyURL": "http://tubic.tju.edu.cn/deg/data_source.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://tubic.tju.edu.cn/deg/data_source.php"}] closed [] ["unknown"] yes {} ["none"] http://tubic.tju.edu.cn/deg/citation.php [] yes unknown [] [] {} DEG is covered by Thomson Reuters Data Citation Index 2014-11-24 2021-04-30 +r3d100011277 EcoCyc Database eng [{"additionalName": "EcoCyc E. coli Database", "additionalNameLanguage": "eng"}, {"additionalName": "Encyclopedia of E. coli Genes and Metabolism", "additionalNameLanguage": "eng"}] https://ecocyc.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.65dmtr", "OMICS_01645", "RRID:SCR_002433", "RRID:nif-0000-02783"] ["biocyc-support@ai.sri.com", "https://ecocyc.org/contact.shtml"] EcoCyc is a scientific database for the bacterium Escherichia coli K-12 MG1655. The EcoCyc project performs literature-based curation of the entire genome, and of transcriptional regulation, transporters, and metabolic pathways. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ecocyc.org/intro.shtml [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "genomics", "life sciences"] [{"institutionName": "EcoCyc Steering Committee", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ecocyc.org/advisors.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ecocyc.org/contact.shtml"]}, {"institutionName": "Macquarie University, Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://mq.edu.au/", "institutionIdentifier": ["ROR:01sf06y89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mq.edu.au/contact-us"]}, {"institutionName": "National Autonomous University of Mexico, Center for Genomic Sciences", "institutionAdditionalName": ["UNAM CCG", "Universidad Nacional Aut\u00f3noma de M\u00e9xico, Centro de Ciencias Gen\u00f3micas"], "institutionCountry": "MEX", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ccg.unam.mx/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ccg.unam.mx/en/feedback"]}, {"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH NIGMS", "NIH grant GM077678"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "SRI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sri.com/", "institutionIdentifier": ["ROR:05s570m15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sri.com/locations"]}, {"institutionName": "University of California", "institutionAdditionalName": ["UC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.universityofcalifornia.edu/", "institutionIdentifier": ["ROR:00pjdza24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.universityofcalifornia.edu/uc-system/contact-us"]}] [{"policyName": "Complete License", "policyURL": "https://ecocyc.org/download-bundle.shtml"}, {"policyName": "Data File License", "policyURL": "https://ecocyc.org/download-flatfiles.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://ecocyc.org/download.shtml"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://bioinformatics.ai.sri.com/ptools/licensing/all-reg.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ecocyc.org/download.shtml"}] restricted [] ["MySQL"] yes {"api": "https://ecocyc.org/web-services.shtml", "apiType": "REST"} ["none"] https://ecocyc.org/ [] yes unknown [] [] {"syndication": "https://biocyc.org/subscribe.shtml", "syndicationType": "RSS"} EcoCyc is covered by Thomson Reuters Data Citation Index. EcoCyc is a member of the BioCyc database collection. Ecocyc incorporates information that was obtained from several sources: Genbank, ENZYME database, PubMed, UniProt Gene Ontology data, UniProt protein feature data 2014-11-25 2021-10-11 +r3d100011278 English Lexicon Project eng [{"additionalName": "ELP", "additionalNameLanguage": "eng"}] https://elexicon.wustl.edu/ [] ["elp@artsci.wustl.edu"] The English Lexicon Project (supported by the National Science Foundation) affords access to a large set of lexical characteristics, along with behavioral data from visual lexical decision and naming studies of 40,481 words and 40,481 nonwords. eng ["disciplinary"] {"size": "over 40.000 words; 2.749.324 reaction time measurements; 1.123.350 experimental measurements", "updatedp": "2019-12-09"} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://elexicon.wustl.edu/about.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["behavioral data", "computational modeling", "human memory", "psycholinguistics"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "Washington University in St. Louis, Cognitive Psychology Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://psychnet.wustl.edu/coglab/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Non-commercial research purposes", "policyURL": "https://elexicon.wustl.edu/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://elexicon.wustl.edu/about.html"}] restricted [] ["unknown"] no {} ["none"] https://elexicon.wustl.edu/about.html [] unknown unknown [] [] {} English Lexicon Project is covered by Thomson Reuters Data Citation Index. 2014-11-25 2020-02-04 +r3d100011279 EUROCAT eng [{"additionalName": "European Surveillance of Congenital Anomalies", "additionalNameLanguage": "eng"}] https://eu-rd-platform.jrc.ec.europa.eu/eurocat_en [] ["JRC-EUROCAT@ec.europa.eu", "http://www.eurocat-network.eu/contactus"] A European network of population-based registries for the epidemiologic surveillance of congenital anomalies. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.eurocat-network.eu/aboutus/whatiseurocat/whatiseurocat [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["congenital anomalies", "epidemiology", "life sciences", "prevention"] [{"institutionName": "BioMedical Computing Ltd", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.bio-medical.co.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Health research and innovation", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation/research-area/health-research-and-innovation_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eurocat@ulster.ac.uk", "https://ec.europa.eu/info/departments/research-and-innovation_en#contact"]}, {"institutionName": "University of Ulster", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ulster.ac.uk/", "institutionIdentifier": ["ROR:01yp9g959"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ulster.ac.uk/about/contact-us"]}] [{"policyName": "Disclaimer", "policyURL": "https://ec.europa.eu/info/legal-notice_en"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en#brexit-content-disclaimer"}] restricted [{"dataUploadLicenseName": "Data Transmission to Central Registry", "dataUploadLicenseURL": "http://www.eurocat-network.eu/aboutus/datacollection/datamanagement/datatransmissiontocentralregistry"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} EUROCAT is covered by Thomson Reuters Data Citation Index. 2014-11-26 2020-02-04 +r3d100011280 FlowRepository eng [] http://flowrepository.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.veg2d6", "RRID:SCR_013779"] ["http://flowrepository.org/support_ticket"] FlowRepository is a web-based application accessible from a web browser that serves as an online database of flow cytometry experiments where users can query and download data collected and annotated according to the MIFlowCyt standard. It is primarily used as a data deposition place for experimental findings published in peer-reviewed journals in the flow cytometry field. FlowRepository is funded by the International Society for Advancement of Cytometry (ISAC) and powered by the Cytobank engine specifically extended for the purposes of this repository. FlowRepository has been developed by forking and extending Cytobank in 2011. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://flowrepository.org/quick_start_guide [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FCM", "OMIP", "bioinformatics", "cytometry", "life sciences", "statistics"] [{"institutionName": "Cytobank Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://cytobank.org", "institutionIdentifier": ["ROR:01a6nzt97", "RRID:SCR_014043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Society for Advancement of Cytometry", "institutionAdditionalName": ["ISAC"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.isac-net.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wallace H. Coulter Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.whcf.org/", "institutionIdentifier": ["ROR:04cmszv87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "FlowRepository Privacy Policy", "policyURL": "http://flowrepository.org/privacy_policy"}, {"policyName": "Terms of Use", "policyURL": "http://flowrepository.org/terms_of_service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/licenses/agpl-3.0.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://flowrepository.org/privacy_policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://flowrepository.org/terms_of_service"}] restricted [{"dataUploadLicenseName": "Submitting Data", "dataUploadLicenseURL": "http://flowrepository.org/quick_start_guide#SubmittingData"}] [] yes {"api": "http://flowrepository.org/images/pdf/FlowRepositoryAPI.pdf", "apiType": "other"} ["none"] http://flowrepository.org/ [] yes yes [] [{"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {} is covered by Elsevier. FlowRepository is covered by Thomson Reuters Data Citation Index. FlowRepository uses the MIBBI registered MIFlowCyt standard http://flowcyt.sourceforge.net/miflowcyt/ 2014-11-19 2021-09-02 +r3d100011281 Global Trade Analysis Project eng [{"additionalName": "The GTAP Data Base", "additionalNameLanguage": "eng"}] https://www.gtap.agecon.purdue.edu/databases/default.asp [] ["contactgtap@purdue.edu"] The centerpiece of the Global Trade Analysis Project is a global data base describing bilateral trade patterns, production, consumption and intermediate use of commodities and services. The GTAP Data Base consists of bilateral trade, transport, and protection matrices that link individual country/regional economic data bases. The regional data bases are derived from individual country input-output tables, from varying years. eng ["disciplinary"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gtap.agecon.purdue.edu/about/history.asp#DBhist [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["Africa", "energy", "labor migration", "land cover", "land use", "poverty", "satellite data", "social sciences"] [{"institutionName": "GTAP consortium", "institutionAdditionalName": ["GTAP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gtap.agecon.purdue.edu/about/consortium.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Purdue University, Department of Agricultural Economics, Center for Global Trade Analysis, Global Trade Analysis Project", "institutionAdditionalName": ["GTAP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gtap.agecon.purdue.edu/default.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions on the Use and Supply of the GTAP Data Package", "policyURL": "https://www.gtap.agecon.purdue.edu/databases/documents/LicenseAgreement_v7.pdf"}, {"policyName": "GTAP Policy on Input-Output Table and Dataset Contributors", "policyURL": "https://www.gtap.agecon.purdue.edu/databases/contribute/documents/conditions.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gtap.agecon.purdue.edu/databases/documents/LicenseAgreement_v7.pdf"}] restricted [] ["other"] yes {} ["none"] https://www.gtap.agecon.purdue.edu/resources/citations.asp [] yes yes [] [] {} The GTAP Data Base is covered by Thomson Reuters Data Citation Index. Previous versions of the GTAP Data Base, that are at least 2 releases old are freely available for download. GTAP consortium members and ata contributors receive a single use license and free access to the most recent update. 2014-11-22 2021-12-13 +r3d100011282 The Health Improvement Network eng [{"additionalName": "THIN", "additionalNameLanguage": "eng"}] https://www.the-health-improvement-network.com/ [] [] THIN is a medical data collection scheme that collects anonymised patient data from its members through the healthcare software Vision. The UK Primary Care database contains longitudinal patient records for approximately 6% of the UK Population. The anonymised data collection, which goes back to 1994, is nationally representative of the UK population. eng ["disciplinary"] {"size": "587 practices covered; 12.000.000 patients; 3.600.000 active patients", "updatedp": "2014-11-24"} 2002-11 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.the-health-improvement-network.co.uk/#what-is-thin [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["demographics", "diagnoses", "health service evaluation", "life sciences", "medical studies", "patient data", "practice data", "prescribing", "socioeconomics"] [{"institutionName": "Cegedim RX", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.cegedimrx.co.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@cegedimrx.co.uk"]}, {"institutionName": "European Network of Centres for Pharmacoepidemiology and Pharmacovigilance", "institutionAdditionalName": ["ENCePP"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.encepp.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.encepp.eu/encepp/viewResource.htm?id=10237"]}, {"institutionName": "IQVIA", "institutionAdditionalName": ["The Human Data Science Company", "formerly: CSD Medical Research UK", "formerly: IMS Health Ltd"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.iqvia.com/", "institutionIdentifier": [], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["https://www.iqvia.com/contact/general"]}, {"institutionName": "UK National Health Service", "institutionAdditionalName": ["NHS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nhs.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhs.uk/contact-us/"]}] [{"policyName": "European Network of Centres for Pharmacoepidemiology and Pharmacovigilance - ENCePP Guide on Methodological Standards", "policyURL": "http://www.encepp.eu/standards_and_guidances/methodologicalGuide.shtml"}, {"policyName": "Legal Notices", "policyURL": "https://www.cegedimrx.co.uk/privacy-policy"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://csdmruk.cegedim.com/our-data/accessing-the-data.shtml"}] restricted [] ["other"] {} ["none"] [] yes yes [] [] {} The Health Improvement Network - THIN is covered by Thomson Reuters Data Citation Index. Additional Information Services (AIS) is the division of THIN which obtains anonymised hard copy information for medical studies. AIS liases with THIN data contributors on behalf of researchers to obtain documents which add valuable information to studies. This information can be in the form of anonymised questionnaires completed by the GP or patient, copies of patient-related correspondence, a specified intervention (e.g. a laboratory test to confirm diagnosis) or death certificates. All documentation is depersonalised by the practice and checked by AIS to ensure anonymisation is complete before the information is supplied to the researcher. All studies have ethical approval by NHS Multicentre Research Ethics Committees (MREC) before AIS requests are made to practices. 2014-11-24 2021-05-20 +r3d100011283 History of Marine Animal Populations eng [{"additionalName": "HMAP Data Pages", "additionalNameLanguage": "eng"}] https://hydra.hull.ac.uk/resources?utf8=%E2%9C%93&search_field=all_fields&q=hmap [] [] The HMAP Data Pages are a research resource comprising of information derived largely from historical records relating to fishing catches and effort in selected spatial and temporal contexts. The History of Marine Animal Populations (HMAP), the historical component of the Census of Marine Life, aimed to improve our understanding of ecosystem dynamics, specifically with regard to long-term changes in stock abundance, the ecological impact of large-scale harvesting by man, and the role of marine resources in the historical development of human society. HMAP data is also accessible through the Ocean Biogeographic Information System (OBIS): http://www.iobis.org/, see also: http://seamap.env.duke.edu/dataset eng ["disciplinary"] {"size": "22 datasets", "updatedp": "2020-04-30"} 2002-01-31 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tcd.ie/history/opi/hmap.php [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["fishery", "marine environment", "maritime historical studies"] [{"institutionName": "University of Hull, Hull History Centre", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.hullhistorycentre.org.uk/home.aspx", "institutionIdentifier": ["ROR:014d1nq39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hullhistorycentre.org.uk/visit-us/planning-your-visit/contact-details.aspx", "hullhistorycentre@hcandl.co.uk"]}] [{"policyName": "Terms and Conditions for the University of Hull Website", "policyURL": "http://www.hull.ac.uk/Legal/Terms-and-conditions.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.hull.ac.uk/Legal/Terms-and-conditions.aspx"}] closed [] [] no {} ["none"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} History of Marine Animal Populations is covered by Thomson Reuters Data Citation Index. Datasets are available at Hydra, University of Hull's repository https://hydra.hull.ac.uk/resources/hull:HMAPDisplaySet. The website of the project does not exist anymore. HMAP Collection at PLOS: http://collections.plos.org/hmap 2014-11-27 2020-04-30 +r3d100011284 HILDA Survey eng [{"additionalName": "Household, Income and Labour Dynamics in Australia Survey", "additionalNameLanguage": "eng"}] https://melbourneinstitute.unimelb.edu.au/hilda [] ["hilda-inquiries@unimelb.edu.au"] The Household, Income and Labour Dynamics in Australia (HILDA) Survey is a household-based panel study that collects valuable information about economic and personal well-being, labour market dynamics and family life. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["demography", "descriptive statistics", "econometrics", "economic development", "labor relations", "political economy", "population study", "social psychology", "sociology"] [{"institutionName": "Australian Government, Department of Social Services", "institutionAdditionalName": ["DSS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dss.gov.au/", "institutionIdentifier": ["ROR:04vctsm14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dssfeedback@dss.gov.au"]}, {"institutionName": "University of Melbourne, Faculty of Business and Economics, Melbourne Institute of Applied Economic and Social Research", "institutionAdditionalName": ["Melbourne Institute"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://melbourneinstitute.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["melb-inst@unimelb.edu.au"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://melbourneinstitute.com/downloads/hilda/Deeds/Deed_of_Licence-Individual_Australian_Researchers.pdf"}] closed [] ["unknown"] {} ["none"] http://melbourneinstitute.com/hilda/doc/datafaq.html#FAQ11 [] yes yes [] [] {} HILDA is covered by Thomson Reuters Data Citation Index. HILDA is part of the CNEF User Package, read more: https://cnef.ehe.osu.edu/data/ 2014-11-27 2021-01-13 +r3d100011285 Human Metabolome Database eng [{"additionalName": "HMDB", "additionalNameLanguage": "eng"}] https://hmdb.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.sye5js", "RRID:SCR_013647", "RRID:nlx_152721"] ["dwishart@ualberta.ca"] The Human Metabolome Database (HMDB) is a freely available electronic database containing detailed information about small molecule metabolites found in the human body. It is intended to be used for applications in metabolomics, clinical chemistry, biomarker discovery and general education. eng ["disciplinary"] {"size": "114.264metabolite entries", "updatedp": "2021-01-13"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://hmdb.ca/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biomarker discovery", "clinical chemistry", "diseases", "enzyme", "general education", "life sciences", "metabolite", "metabolomics", "pathways", "proteins", "reactions", "transporter"] [{"institutionName": "Alberta Innovates \u2013 Health Solutions", "institutionAdditionalName": ["AIHS"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://albertainnovates.ca/", "institutionIdentifier": ["ROR:00ynafe15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Genome Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://genomealberta.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://genomealberta.ca/contact-us/", "info@genomealberta.ca"]}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://genomebc.ca/", "institutionIdentifier": ["ROR:03gne5057"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/", "institutionIdentifier": ["ROR:029s29983"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.metabolomicscentre.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.metabolomicscentre.ca/contact", "info@metabolomicscentre.ca"]}, {"institutionName": "University of Alberta, Edmonton, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wishartlab.com/contact"]}] [{"policyName": "About the Human Metabolome Database", "policyURL": "https://hmdb.ca/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://hmdb.ca/about#cite"}] closed [] ["unknown"] yes {} ["none"] https://hmdb.ca/about#cite [] yes unknown [] [] {} Human Metabolome Database is covered by Thomson Reuters Data Citation Index. Many data fields are hyperlinked to other databases (KEGG, PubChem, MetaCyc, ChEBI, PDB, UniProt, and GenBank). Four additional databases, DrugBank, T3DB, SMPDB and FooDB are also part of the HMDB suite of databases. 2014-12-01 2021-08-25 +r3d100011286 HumanCyc eng [{"additionalName": "Encyclopedia of Human Genes and Metabolism", "additionalNameLanguage": "eng"}] https://humancyc.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.zaa7w", "OMICS_02704", "RRID:SCR_007050", "RRID:nif-0000-21206"] ["biocyc-support@ai.sri.com", "https://humancyc.org/contact.shtml"] HumanCyc provides an encyclopedic reference on human metabolic pathways. It provides a zoomable human metabolic map diagram, and it has been used to generate a steady-state quantitative model of human metabolism. 2016: Subscriptions are now required to access HumanCyc. For more information on obtaining a subscription, click here: http://www.phoenixbioinformatics.org/biocyc#product-biocyc-subscription eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "20517 Endocrinology, Diabetology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://biocyc.org/news001-subscriptions.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "biotechnology", "cancer", "epilepsy", "evolution", "gastroenterology", "genomics", "life sciences", "proteomics"] [{"institutionName": "SRI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sri.com/", "institutionIdentifier": ["ROR:05s570m15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sri.com/locations"]}] [{"policyName": "BioCyc to Adopt Subscription Model", "policyURL": "https://biocyc.org/news001-subscriptions.shtml"}, {"policyName": "Data File License", "policyURL": "https://humancyc.org/download.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://bioinformatics.ai.sri.com/ptools/licensing/all-reg.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://humancyc.org/download.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.phoenixbioinformatics.org/biocyc#product-tair-subscription"}] closed [] ["MySQL"] yes {"api": "https://humancyc.org/web-services.shtml", "apiType": "REST"} ["none"] https://humancyc.org/publications.shtml [] yes yes [] [] {} HumanCyc is covered by Thomson Reuters Data Citation Index. HumanCyc is a member of the BioCyc database collection 2014-12-02 2021-04-07 +r3d100011287 INTEGRALL eng [{"additionalName": "The Integron Database", "additionalNameLanguage": "eng"}] http://integrall.bio.ua.pt/ [] ["http://integrall.bio.ua.pt/?contacts", "integrall@bio.ua.pt"] INTEGRALL is a web-based platform dedicated to compile information on integrons and designed to organize all the data available for these genetic structures. INTEGRALL provides a public genetic repository for sequence data and nomenclature and offers to scientists an easy and interactive access to integron's DNA sequences, their molecular arrangements as well as their genetic contexts. eng ["disciplinary"] {"size": "11,658 Entries; 1.509 Integrase Genes; 8.562 Gene Cassettes; 214 Genera; 469 Species", "updatedp": "2021-01-19"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://integrall.bio.ua.pt/?about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biotechnology", "genetic structures", "integrons", "life sciences", "sequence data"] [{"institutionName": "Institut national de la sant\u00e9 et de la recherche m\u00e9dicale", "institutionAdditionalName": ["French Institute of Health and Medical Research", "Inserm"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.inserm.fr/", "institutionIdentifier": ["ROR:02vjkv261"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["thomas.jove@inserm.fr"]}, {"institutionName": "University of Aveiro, Centre for Environmental and Marine Studies", "institutionAdditionalName": ["Universidade de Aveiro, Centro de estudos do ambiente e do mar"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cesam.ua.pt/index.php?language=eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["amoura@ua.pt"]}, {"institutionName": "University of Aveiro, Department of Biology", "institutionAdditionalName": ["Universidade de Aveiro, Departamento de Biologia"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ua.pt/dbio/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ua.pt/dbio/Contacts.aspx"]}] [{"policyName": "Public Domain", "policyURL": "http://integrall.bio.ua.pt/?"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://integrall.bio.ua.pt/?"}] restricted [] ["unknown"] no {} ["none"] [] yes yes [] [] {} INTEGRALL is covered by Thomson Reuters Data Citation Index 2014-12-09 2021-01-19 +r3d100011288 ICES data portal eng [{"additionalName": "International Council for the Exploration of the Sea datasets", "additionalNameLanguage": "eng"}] https://ecosystemdata.ices.dk/ [] ["https://www.ices.dk/pages/Contact.aspx", "info@ices.dk"] ICES is an intergovernmental organization whose main objective is to increase the scientific knowledge of the marine environment and its living resources and to use this knowledge to provide unbiased, non-political advice to competent authorities. eng ["disciplinary"] {"size": "183.982.218 measurements", "updatedp": "2021-03-21"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ices.dk/about-ICES/Pages/default.aspx [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["eggs and larvae", "fish trawl surveys", "historical plankton", "hydrochemistry", "physical sciences"] [{"institutionName": "International Council for the Exploration of the Sea", "institutionAdditionalName": ["CIEM", "Conseil International pour l'Exploration de la Mer", "ICES"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ices.dk/Pages/default.aspx", "institutionIdentifier": ["ROR:03hg53255"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ices.dk"]}] [{"policyName": "CorTrustSeal assessment ICES", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/03/International-Council-for-the-Exploration-of-the-Sea.pdf"}, {"policyName": "ICES Data Policy", "policyURL": "https://ices.dk/data/guidelines-and-policy/Pages/ICES-data-policy.aspx"}, {"policyName": "ICES Data Type Guidelines", "policyURL": "https://ices.dk/data/guidelines-and-policy/Pages/ICES-data-type-guidelines.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ices.dk/data/guidelines-and-policy/Pages/ICES-data-policy.aspx"}] open [] ["other"] yes {"api": "http://gis.ices.dk/geonetwork/srv/eng/xml.metadata.get?id=414235", "apiType": "SOAP"} ["DOI"] [] no yes ["other"] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} ICES is covered by Thomson Reuters Data Citation Index. The Api has moved to the collections in a metadata catalogue. 2014-12-11 2022-01-03 +r3d100011289 International Service for the Geoid eng [{"additionalName": "IGeS", "additionalNameLanguage": "eng"}, {"additionalName": "ISG", "additionalNameLanguage": "eng"}, {"additionalName": "International Geoid Service", "additionalNameLanguage": "eng"}] https://www.isgeoid.polimi.it/ [] ["https://www.isgeoid.polimi.it/Contacts/contacts.html", "isg@polimi.it"] ISG' activities are on educational, research, and data distribution sides: principal purposes of ISG are the collection and distribution of geoid models, the collection and distribution of software for geoid computation, and the organization of technical schools on geoid determinations. ISG collects and disseminates worldwide local and regional geoid models estimated by geodetic Institutions and researchers of many countries. More than 30 countries are represented, listed in alphabetic order or localized on a map eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.isgeoid.polimi.it/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["geoid models", "gravity", "physical sciences"] [{"institutionName": "International Association of Geodesy", "institutionAdditionalName": ["IAG"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iag-aig.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Geospatial-Intelligence Agency", "institutionAdditionalName": ["NGA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nga.mil/", "institutionIdentifier": ["ROR:02k4pxv54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Politecnico di Milano, Department of Civil and Environmental Engineering at", "institutionAdditionalName": ["DICA", "Politecnico di Milano, Dipartimento di Ingegneria Civile e Ambientale"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.polimi.it/index.php?id=6098&L=1&sel_dipartimento=267165713", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dica.polimi.it/chi-siamo/contatti-2/"]}] [{"policyName": "Services - Geoid Repository", "policyURL": "https://www.isgeoid.polimi.it/Geoid/reg_mod.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.isgeoid.polimi.it/Geoid/reg_mod.html"}] restricted [] ["unknown"] no {} ["none"] https://www.isgeoid.polimi.it/ [] no unknown [] [] {} ISG is covered by Thomson Reuters Data Citation Index. ISG has been founded in 1992 (as International Geoid Service - IGeS) as a working arm of International Geoid Commission (IGeC), and it is actually an official Service of the International Association of Geodesy (IAG). 2014-12-11 2021-04-07 +r3d100011290 London Datastore eng [] https://data.london.gov.uk/ [] ["datastore@london.gov.uk"] The London Datastore is an initiative by the Greater London Authority (GLA) to release as much of the data that it holds as possible. eng ["institutional"] {"size": "975 datasets", "updatedp": "2021-04-20"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10901 General Education and History of Education", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.london.gov.uk/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["crime and community safety", "demography", "employment and skills", "environment", "health", "housing", "life sciences", "sports", "topography", "transparency"] [{"institutionName": "Greater London Authority", "institutionAdditionalName": ["GLA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.london.gov.uk/", "institutionIdentifier": ["ROR:04g0aqp14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.london.gov.uk/about-us/contacting-city-hall-and-mayor-0"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://data.london.gov.uk/about/terms-and-conditions/"}, {"policyName": "The Freedom of Information Act 2000", "policyURL": "https://www.london.gov.uk/about-us/governance-and-spending/sharing-our-information/freedom-information"}, {"policyName": "UK Open Government Licence", "policyURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.london.gov.uk/about-us/governance-and-spending/sharing-our-information/freedom-information"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data.london.gov.uk/about/terms-and-conditions/"}] closed [] ["CKAN"] yes {"api": "https://data.london.gov.uk/developers/", "apiType": "REST"} ["none"] [] yes yes [] [] {"syndication": "http://data.london.gov.uk/feed/", "syndicationType": "RSS"} London Datastore is covered by Thomson Reuters Data Citation Index. 2014-12-11 2021-04-20 +r3d100011291 Manitoba Population Research Data Repository eng [{"additionalName": "MCHP Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Population Health Research Data Repository", "additionalNameLanguage": "eng"}] https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/resources/repository/index.html [] ["https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/contact.html", "info@cpe.umanitoba.ca"] The Population Health Research Data Repository housed at MCHP is a comprehensive collection of administrative, registry, survey, and other data primarily relating to residents of Manitoba. It was developed to describe and explain patterns of health care and profiles of health and illness, facilitating inter-sectoral research in areas such as health care, education, and social services. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://mchp-appserv.cpe.umanitoba.ca/viewConcept.php?conceptID=1419 [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["social sciences", "social services", "statistics"] [{"institutionName": "University of Manitoba, Manitoba Centre for Health Policy", "institutionAdditionalName": ["MCHP"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/contact.html"]}] [{"policyName": "Acknowledgments and Disclaimers", "policyURL": "https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/resources/access_acknowledgments.html"}, {"policyName": "Policies on Use and Disclosure", "policyURL": "https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/resources/access_policies.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://umanitoba.ca/faculties/health_sciences/medicine/units/chs/departmental_units/mchp/resources/access_acknowledgments.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://umanitoba.ca/faculties/medicine/units/community_health_sciences/departmental_units/mchp/resources/access_policies.html"}] restricted [] ["unknown"] {} ["none"] [] yes yes [] [] {} Manitoba Centre for Health Policy Population Health Research Data Repository is covered by Thomson Reuters Data Citation Index. 2014-12-15 2021-01-20 +r3d100011293 Medical Expenditure Panel Survey eng [{"additionalName": "MEPS", "additionalNameLanguage": "eng"}] https://meps.ahrq.gov/mepsweb/ [] ["mepsprojectdirector@ahrq.hhs.gov"] The Medical Expenditure Panel Survey (MEPS) is a set of large-scale surveys of families and individuals, their medical providers, and employers across the United States. MEPS is the most complete source of data on the cost and use of health care and health insurance coverage. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["health care", "health insurance", "life sciences"] [{"institutionName": "Agency for Healthcare Research and Quality", "institutionAdditionalName": ["AHRQ"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ahrq.gov/", "institutionIdentifier": ["ROR:03jmfdf59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ahrq.gov/contact/index.html"]}] [{"policyName": "Data Overview", "policyURL": "https://meps.ahrq.gov/mepsweb/data_stats/data_overview.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://meps.ahrq.gov/mepsweb/copyright.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "https://meps.ahrq.gov/mepsweb/data_stats/data_overview.jsp"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} Medical Expenditure Panel Survey is covered by Thomson Reuters Data Citation Index. 2014-12-15 2021-04-20 +r3d100011294 MetaCyc eng [{"additionalName": "Metabolic Pathway Database", "additionalNameLanguage": "eng"}, {"additionalName": "a member of the BioCyc database collection", "additionalNameLanguage": "eng"}] https://metacyc.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.yytevr", "OMICS_02718", "RRID:SCR_007778", "RRID:nif-0000-03114"] ["biocyc-support@ai.sri.com", "https://metacyc.org/contact.shtml"] MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway. MetaCyc applications include: Online encyclopedia of metabolism, Prediction of metabolic pathways in sequenced genomes, Support metabolic engineering via enzyme database, Metabolite database aids. metabolomics research. eng ["disciplinary"] {"size": "2.722 pathways; 3009 different organisms", "updatedp": "2019-12-04"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["genomics", "life sciences", "metabolic engineering", "molecular biology", "systems biology"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SRI International", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sri.com/", "institutionIdentifier": ["ROR:05s570m15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sri.com/contact/"]}] [{"policyName": "BioCycUserGuide", "policyURL": "https://biocyc.org/BioCycUserGuide.shtml"}, {"policyName": "Curator Guide for Pathway / Genome Databases", "policyURL": "https://bioinformatics.ai.sri.com/ptools/curatorsguide.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://metacyc.org/download.shtml"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://metacyc.org/all-reg.shtml"}] closed [] ["other"] {"api": "https://metacyc.org/web-services.shtml", "apiType": "REST"} ["none"] https://metacyc.org/ [] yes yes [] [] {"syndication": "https://feeds.feedburner.com/BioCycUpdates?format=xml", "syndicationType": "RSS"} MetaCyc is covered by Thomson Reuters Data Citation Index. MetaCyc contains links to many other bioinformatics DBs: Pathways link to EcoCyc, the University of Minnesota Biocatalysis/Biodegradation Database, the KEGG Ligand database, and the Soybase database. Proteins contain unification links to UniProt/Swiss-Prot, FlyBase, DictyBase, DIP, DisProt, STRING, EuPathDB, PhosphoSite, PRIDE, PROSITE, SMR, and MINT. Proteins also contain relationship links to SMART, PANTHER, ProDom, PRINTS, CAZy, PDB, Pfam, and InterPro. Reactions link to ENZYME, KEGG, BRENDA, Rhea, and IUBMB. Chemical compounds link to PubChem, NCI Open Database, ChEBI, KEGG, Chemical Abstracts, Wikipedia ChemSpider, DrugBank, BiGG and KEGG Glycan. Genes link to NCBI Entrez nucleotide and gene databases, to TAIR (The Arabidopsis Information Resource) and to the Coli Genetic Stock Center. All types of objects may contain literature citations, which link to PubMed when available. 2014-11-25 2021-10-11 +r3d100011295 National Center for Earth-Surface Dynamics Data Repository eng [{"additionalName": "NCED Data Repository", "additionalNameLanguage": "eng"}] https://repository.nced.umn.edu/ ["RRID:SCR_002195", "RRID:nlx_154715"] ["safl-itadmin@lists.umn.edu"] In its 10-year tenure, NCED has made major contributions to the growth of Earth-Surface Dynamics (ESD) through direct research in three Integrated Programs (IP) of Streams, Watersheds and Deltas. These contributions include: Establishment of experimental geomorphology and stratigraphy as a major source of insight in ESD, Integration of quantitative methods from engineering, physics, and applied math into ESD, Advances in the coupling of life, especially vegetation, and landscape dynamics, Integration of a variety of novel methods from stochastic hydrology, including nonlocal transport and multifractal spatial signatures, into ESD, Advances in providing the scientific basis for restoring streams, and Integration of subsurface structure and stratigraphic records into understanding present-day delta dynamics. All data created or compiled by NCED-funded scientists is archived here. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "403 Process Engineering, Technical Chemistry", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] http://www.nced.umn.edu/nced-mission [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Angelo Coast Reserve", "DWIP", "ESD", "Eel River", "NCED Watershed Program", "Richmond Field Station", "SAFL", "SRIP", "STC", "St. Anthony Falls Lab", "Stream Restoration Integraded Program", "Subsurface Architecture Program", "co-evolution", "deltas", "ecosystem", "erosion", "physical sciences", "streams", "watersheds"] [{"institutionName": "NCED Core Participating Institutions and Non-Academic Partners", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nced.umn.edu/about/nced-partnerships", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "University of Minnesota, Minnesota Supercomputing Institute", "institutionAdditionalName": ["MSI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.msi.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.msi.umn.edu/content/contact-information"]}, {"institutionName": "University of Minnesota, National Center for Earth-Surface Dynamics 2", "institutionAdditionalName": ["A National Science Foundation Science and Technology Center", "NCED"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.nced.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nced@umn.edu"]}] [{"policyName": "General Data Protection Regulation (GDPR)", "policyURL": "https://privacy.umn.edu/general-data-protection-regulation-gdpr"}, {"policyName": "NCED By-Laws", "policyURL": "https://www.revisor.mn.gov/statutes/cite/13"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.revisor.mn.gov/statutes/?id=13"}] restricted [] [] no {} ["DOI"] https://repository.nced.umn.edu/ [] unknown unknown [] [] {} National Center for Earth-Surface Dynamics Data Repository is covered by Thomson Reuters Data Citation Index. 2014-11-27 2021-12-15 +r3d100011296 NIST Atomic Spectra Database eng [{"additionalName": "ASD", "additionalNameLanguage": "eng"}, {"additionalName": "NIST Standard Reference Database 78", "additionalNameLanguage": "eng"}, {"additionalName": "Spectral Data for the Chandra X-Ray Observatory (former database / discontinued)", "additionalNameLanguage": "eng"}] https://www.nist.gov/pml/atomic-spectra-database ["biodbcore-001108", "doi:10.18434/T4W30F"] ["https://www.nist.gov/about-nist/contact-us"] The Atomic Spectra Database (ASD) contains data for radiative transitions and energy levels in atoms and atomic ions. Data are included for observed transitions and energy levels of most of the known chemical elements. ASD contains data on spectral lines with wavelengths from about 0.2 Å (ångströms) to 60 m (meters). For many lines, ASD includes radiative transition probabilities. The energy level data include the ground states and ionization energies for all spectra. Except where noted, the data have been critically evaluated by NIST. For most spectra, wavelengths, transition probabilities, relative intensities, and energy levels are integrated, so that all the available information for a given transition is incorporated under a single listing. For classified lines, in addition to the observed wavelength, ASD includes the Ritz wavelength, which is the wavelength derived from the energy levels. The Ritz wavelengths are usually more precise than the observed ones. Line lists containing classified lines can be ordered by either multiplet (for a given spectrum) or wavelength. For some spectra, ASD includes lists of prominent lines with wavelengths and relative intensities but without energy-level classifications. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.nist.gov/about-nist/work-nist [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["actinium", "aluminium", "aluminum", "americium", "antimony", "argon", "arsenic", "astatine", "atom", "atomic", "atomic physics", "atomic property", "atomic spectroscopy", "atomic spectroscopy", "atomic-ions", "barium", "berkelium", "beryllium", "bismuth", "bohrium", "boron", "bromine", "cadmium", "calcium", "californium", "carbon", "cerium", "cesium", "chandra", "chlorine", "chromium", "cobalt", "columbium", "copernicium", "copper", "curium", "darmstadtium", "database", "deuterium", "doubly-charged", "dubnium", "dysprosium", "einsteinium", "element", "energy levels", "erbium", "europium", "fermium", "flerovium", "fluorine", "francium", "gadolinium", "gallium", "germanium", "gold", "ground states", "hafnium", "hassium", "helium", "holmium", "hydrogen", "indium", "iodine", "ionization potentials", "ionization-energies", "ionization-limits", "ionized spectra", "ionized-atoms", "iridium", "iron", "krypton", "kurchatovium", "lanthanum", "lawrencium", "lead", "line classifications", "lithium", "livermorium", "lutetium", "magnesium", "manganese", "meitnerium", "mendelevium", "mercury", "mg", "molybdenum", "multiply-charged", "ne", "neodymium", "neon", "neptunium", "neutral", "nickel", "niobium", "nitrogen", "nobelium", "observatory", "osmium", "oxygen", "palladium", "phosphorus", "physical reference data", "physical sciences", "platinum", "plutonium", "polonium", "potassium", "praseodymium", "promethium", "protactinium", "quadruply-charged", "radium", "radon", "rhenium", "rhodium", "roentgenium", "rubidium", "ruthenium", "rutherfordium", "s", "samarium", "scandium", "seaborgium", "selenium", "si", "silicium", "silicon", "silver", "singly-charged", "sodium", "spectra", "spectral lines", "spectroscopy", "spectrum", "strontium", "sulfur", "sulphur", "tantalum", "technetium", "tellurium", "terbium", "thallium", "thorium", "thulium", "tin", "titanium", "transition probabilities", "triply-charged", "tritium", "tungsten", "ununbium", "ununhexium", "ununoctium", "ununpentium", "ununquadium", "ununseptium", "ununtrium", "unununium", "uranium", "vanadium", "wavelengths", "x-ray", "xenon", "ytterbium", "yttrium", "zinc", "zirconium"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["PML"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nist.gov/pml/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Standards and Technology, Standard Reference Data Program", "institutionAdditionalName": ["NIST, SRDP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nist.gov/srd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Standards and Technology, Systems Integration for Manufacturing Applications", "institutionAdditionalName": ["NIST, SIMA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nist.gov/el/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Commerce", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.commerce.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Fusion Energy Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://science.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "http://www.nist.gov/public_affairs/disclaimer.cfm"}, {"policyName": "NIST quality standards", "policyURL": "http://www.nist.gov/director/quality_standards.cfm"}, {"policyName": "NIST scientific integrity", "policyURL": "http://www.nist.gov/director/scientific_integrity_summary.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nist.gov/public_affairs/disclaimer.cfm"}] closed [] [] yes {} ["none"] http://physics.nist.gov/PhysRefData/ASD/Html/verhist.shtml [] yes yes [] [] {} NIST Atomic Spectra Database is covered by Thomson Reuters Data Citation Index. The National Institute of Standards and Technology (NIST) is an agency of the U.S. Department of Commerce. As of November 2011, the contents of the database "Spectral Data for the Chandra X-Ray Observatory" have been completely superseded by the NIST Atomic Spectra Database (ASD). Therefore, this database has been discontinued. To search for the data previously contained in this database (multiply ionized spectra of Ne, Mg, Si, and S), please go to Atomic Spectra Database (ASD): 2014-11-26 2021-11-16 +r3d100011297 Nord-Trondelag Health Study eng [{"additionalName": "HUNT Databank", "additionalNameLanguage": "eng"}, {"additionalName": "HUNT Study", "additionalNameLanguage": "eng"}, {"additionalName": "Helseundersokelsen i Nord-Trondelag", "additionalNameLanguage": "nor"}] https://hunt-db.medisin.ntnu.no/hunt-db/ ["RRID:SCR_010626", "RRID:nlx_57833"] ["https://www.ntnu.edu/contact", "kontakt@hunt.ntnu.no"] The Trøndelag Health Study (The HUNT Study) is one of the largest health studies ever performed. It is a unique database of questionnaire data, clinical measurements and samples from a county’s inhabitants from 1984 onwards. The HUNT Study is well-known in the county of Trøndelag, and its inhabitants have a generally positive attitude to participation and health research resulting from the study. HUNT has high participation rates, providing a good base for further health surveys in the county and an excellent research environment. Today, HUNT Research Centre has a database with information on 230,000 people. Approximately 300 national and international research projects are currently using the samples and data from HUNTs collection. eng ["disciplinary"] {"size": "126.000 unique participants", "updatedp": "2016-11-22"} 1984 ["eng", "nor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ntnu.edu/hunt/hunt-surveys [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["HUNT1", "HUNT2", "HUNT3", "Young-HUNT", "social sciences"] [{"institutionName": "Norwegian University of Science and Technology, HUNT Research Centre", "institutionAdditionalName": ["NTNU HUNT Forskningssenter"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ntnu.edu/", "institutionIdentifier": ["ROR:05xg72x27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access information", "policyURL": "https://www.ntnu.edu/hunt/data"}, {"policyName": "Guidelines for administration and use of research data from the HUNT study", "policyURL": "https://www.ntnu.edu/hunt/guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ntnu.edu/hunt/guidelines"}] closed [] [] {} ["none"] [] yes yes [] [] {} Nord-Trondelag Health Study is covered by Thomson Reuters Data Citation Index. Associated is the HUNT biobank with an commercial branck. 2014-11-26 2021-04-27 +r3d100011298 Nuclear Receptor Signaling Atlas eng [{"additionalName": "NURSA Hub", "additionalNameLanguage": "eng"}] http://www.nursa.org/nursa/index.jsf ["FAIRsharing_doi:10.25504/FAIRsharing.vszknv", "RRID:SCR_003287", "RRID:nif-0000-03208"] ["support@nursa.org"] >>> !!! the repository is offline !!! <<< More information see: https://dknet.org/about/NURSA_Archive All NURSA-biocurated transcriptomic datasets have been preserved for data mining in SPP through an enhanced and expanded version of Transcriptomine named Ominer. To access these datasets, dkNET provides users with the information of 527 transcriptomic datasets that contain data related to nuclear receptors and nuclear receptor coregulators in the NURSA Datasets table view and redirects users to the current SPP dataset page. Once users find the specific dataset of research interest, users can download the dataset by clicking DOI and then clicking the Download Dataset button at the Signaling Pathways Project webpage. See https://www.re3data.org/repository/r3d100013650 eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["house mouse", "human", "life sciences", "molecules", "norway rat", "nuclear receptor signaling", "reagents", "transcriptomine"] [{"institutionName": "Baylor College of Medicine", "institutionAdditionalName": ["BCM"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["berto@bcm.edu"]}, {"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Development", "institutionAdditionalName": ["NICHD", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/Pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Diabetes, Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.niddk.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["margolisr@mail.nih.gov"]}] [{"policyName": "NIH Funding Opportunities and Notices", "policyURL": "http://grants.nih.gov/grants/guide/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/legalcode"}] restricted [] [] yes {} ["DOI"] [] yes yes [] [] {} description: NURSA began in 2002 with the objective to accrue, develop and communicate information about the nuclear receptor superfamily. Over the last ten years, NURSA has developed a website that has developed into a comprehensive source of information about nuclear receptors, and their co-regulators, ligands, and downstream targets. Through a series of integrated 'omics-scale and informatic approaches projects, NURSA has fostered a systems biology understanding of nuclear receptor function, physiology and regulation of target gene networks in vivo. Nuclear Receptor Signaling Atlas is covered by Thomson Reuters Data Citation Index. 2014-11-26 2021-11-09 +r3d100011299 Plant and Fungal Carbohydrate Structure Database eng [{"additionalName": "PFCSDB", "additionalNameLanguage": "eng"}, {"additionalName": "Plant & Fungal CSDB", "additionalNameLanguage": "eng"}] http://csdb.glycoscience.ru/plant_fungal/ [] ["http://csdb.glycoscience.ru/plant_fungal/core/feedback.php", "http://csdb.glycoscience.ru/plant_fungal/index.html?help=email"] >>>!!!Bacterial (BCSDB) and Plant&Fungal (PFCSDB) carbohydrate structure databases have been merged into a single database, CSDB!!!<<< This database is aimed at provision of structural, bibliographic, taxonomic and related information on plant and fungal carbohydrate structures. The main source of data is a retrospective literature analysis. About 4000 records were imported from CCSD (Carbbank, University of Georgia, Athens, plus NMR data from corresponding publications; structures published before 1995) with subsequent manual curation and approval. The scope is "plant and fungal carbohydrates" and is expected to cover nearly all structures of this class published until 2013. Plant and fungal means that a structure has been found in plants or fungi or obtained by modification of those found in these domains. Carohydrate means a structure composed of any residues linked by glycosidic, ester, amidic, ketal, phospho- or sulpho-diester bonds, in which at least one residue is a sugar or its derivative. eng ["disciplinary"] {"size": "7.968 compounds; 2.926 organisms; 2.827 publications", "updatedp": "2019-12-09"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://csdb.glycoscience.ru/plant_fungal/index.html?help=about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["NMR signals", "NMR simulation", "life sciences", "taxonomy"] [{"institutionName": "International Science & Technology Center", "institutionAdditionalName": ["ISTC", "\u041c\u041d\u0422\u0426", "\u041c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u044b\u0439 \u043d\u0430\u0443\u0447\u043d\u043e-\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0446\u0435\u043d\u0442\u0440"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.istc.int/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Russian Academy of Sciences, N.D. Zelinsky Institute of Organic Chemistry", "institutionAdditionalName": ["ZIOC RAS", "\u0418\u041e\u0425 \u0420\u0410\u041d", "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u043e\u0440\u0433\u0430\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0445\u0438\u043c\u0438\u0438 \u0438\u043c. \u041d.\u0414.\u0417\u0435\u043b\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u043d\u0430\u0443\u043a"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://zioc.ru/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["SECRETARY@ioc.ac.ru"]}, {"institutionName": "Russian Foundation for Basic Research", "institutionAdditionalName": ["RFBR", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u043e\u043d\u0434 \u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439", "\u0420\u0444\u0444\u0438"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rfbr.ru/rffi/eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The President of the Russian Federation Grants Council", "institutionAdditionalName": [], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://grants.extech.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Univerity of Georgia, Carbbank", "institutionAdditionalName": ["CCSD Database"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://glycomics.uga.edu/?id=46", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "1997", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://toukach.ru/bcsdb.htm"}] open [] [] yes {"api": "http://csdb.glycoscience.ru/plant_fungal/index.html?help=api", "apiType": "SOAP"} ["none"] http://csdb.glycoscience.ru/help/credits.html#citations [] yes unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} Plant and Fungal Carbohydrate Structure Database is covered by Thomson Reuters Data Citation Index. PFCSDB is one part of the Russian CSDB, the other part is Bacterial Carbohydrate Structure DataBase (BCSD). 2014-11-27 2021-12-21 +r3d100011300 Plant Organelles Database 3 eng [{"additionalName": "PODB3", "additionalNameLanguage": "eng"}] http://podb.nibb.ac.jp/Organellome/ ["RRID:SCR_006520", "RRID:nlx_151998"] ["http://podb.nibb.ac.jp/Organellome/contact.php", "webmaster@nibb.ac.jp"] The Plant Organelles Database Version 3 (PODB3) is a specialized database project to promote a comprehensive understanding of organelle dynamics, including organelle function, biogenesis, differentiation, movement, and interactions with other organelles. This database consists of 6 individual parts, 'The Electron Micrograph Database', 'The Perceptive Organelles Database', 'The Organelles Movie Database', 'The Organellome Database', 'The Functional Analysis Database', and 'External Links to other databases and Web pages'. All the data and protocols in these databases are populated by direct submission of experimentally determined data from plant researchers. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.nibb.ac.jp/en/sections/cell_biology/mano/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["food production", "functional foods", "gene expresion", "histology", "life sciences", "organelle dynamics", "phytoremediation"] [{"institutionName": "National Institute for Basic Biology, Department of Cell Biology", "institutionAdditionalName": ["NIBB"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nibb.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nibb.ac.jp/en/about/contact.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://podb.nibb.ac.jp/Organellome/index.php"}] restricted [{"dataUploadLicenseName": "Submit data to the PODB3", "dataUploadLicenseURL": "http://podb.nibb.ac.jp/Organellome/"}] ["unknown"] yes {} ["none"] http://podb.nibb.ac.jp/Organellome/ [] yes yes [] [] {} Plant Organelles Database 3 is covered by Thomson Reuters Data Citation Index. 2014-11-27 2021-12-22 +r3d100011301 Plant Transcription Factor Database eng [{"additionalName": "PlantTFDB", "additionalNameLanguage": "eng"}] http://planttfdb.cbi.pku.edu.cn/ ["FAIRsharing_doi:10.25504/FAIRsharing.ex3fqk", "OMICS_00560", "RRID:SCR_003362", "RRID:nif-0000-03311"] ["english@moe.edu.cn"] Species included in PlantTFDB 4.0 covers the main lineages of green plants. Therefore, PlantTFDB provides genomic TF repertoires across Viridiplantae. To provide comprehensive information for the TF family, a brief introduction and key references are presented for each family. Comprehensive annotations are made for each identified TF, including functional domains, 3D structures, gene ontology (GO), plant ontology (PO), expression information, expert-curated functional description, regulation information, interaction, conserved elements, references, and annotations in various databases such as UniProt, RefSeq, TransFac, STRING, and VISTA. By inferring orthologous groups and constructing phylogenetic trees, evolutionary relationships among identified TFs were inferred. In addition, PlantTFDB has a simple and user-friendly interface to allow users to query based on combined conditions or make sequence similarity search using BLAST. eng ["disciplinary"] {"size": "320.370 transcription factors; 165 species; 58 families", "updatedp": "2018-12-06"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://planttfdb.cbi.pku.edu.cn/aboutus.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["BLAST", "genome sequences", "life sciences", "miRNA"] [{"institutionName": "Ministry of Education of the Peoples's Republic of China", "institutionAdditionalName": ["\u56fd\u5bb6\u81ea\u7136\u79d1\u5b66\u57fa\u91d1\u59d4\u5458\u4f1a \u4eacICP\u5907"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.moe.gov.cn/publicfiles/business/htmlfiles/moe/moe_2792/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["english@moe.edu.cn"]}, {"institutionName": "National Basic Research Program of China", "institutionAdditionalName": ["973 Program"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.most.gov.cn/eng/programmes1/200610/t20061009_36223.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National High-tech R & D Program", "institutionAdditionalName": ["863 Program", "HTRDP 863"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.most.gov.cn/eng/programmes1/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["program@most.cn"]}, {"institutionName": "National Natural Science Foundation of China", "institutionAdditionalName": ["\u56fd\u5bb6\u81ea\u7136\u79d1\u5b66\u57fa\u91d1\u59d4\u5458\u4f1a \u4eacICP\u5907"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsfc.gov.cn/english/site_1/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Bic@nsfc.gov.cn"]}, {"institutionName": "Peking University, Center for Bioinformatics", "institutionAdditionalName": ["PKU CBI", "\u5317\u5927\u751f\u7269\u4fe1\u606f\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cbi.pku.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cbi.pku.edu.cn/people/cbifaculty/index.htm"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://planttfdb.cbi.pku.edu.cn/index.php"}] closed [] ["unknown"] yes {"api": "http://www.cbi.pku.edu.cn/download/index.htm", "apiType": "FTP"} ["none"] http://planttfdb.cbi.pku.edu.cn/aboutus.php [] unknown unknown [] [] {} Plant Transcription Factor Database is covered by Thomson Reuters Data Citation Index 2014-11-27 2021-08-24 +r3d100011302 The Polinsky Language Sciences Lab Dataverse eng [] https://dataverse.harvard.edu/dataverse/polinsky [] [] The Polinsky Language Sciences Lab at Harvard University is a linguistics lab that examines questions of language structure and its effect on the ways in which people use and process language in real time. We engage in linguistic and interdisciplinary research projects ourselves; offer linguistic research capabilities for undergraduate and graduate students, faculty, and visitors; and build relationships with the linguistic communities in which we do our research. We are interested in a broad range of issues pertaining to syntax, interfaces, and cross-linguistic variation. We place a particular emphasis on novel experimental evidence that facilitates the construction of linguistic theory. We have a strong cross-linguistic focus, drawing upon English, Russian, Chinese, Korean, Mayan languages, Basque, Austronesian languages, languages of the Caucasus, and others. We believe that challenging existing theories with data from as broad a range of languages as possible is a crucial component of the successful development of linguistic theory. We investigate both fluent speakers and heritage speakers—those who grew up hearing or speaking a particular language but who are now more fluent in a different, societally dominant language. Heritage languages, a novel field of linguistic inquiry, are important because they provide new insights into processes of linguistic development and attrition in general, thus increasing our understanding of the human capacity to maintain and acquire language. Understanding language use and processing in real time and how children acquire language helps us improve language study and pedagogy, which in turn improves communication across the globe. Although our lab does not specialize in language acquisition, we have conducted some studies of acquisition of lesser-studied languages and heritage languages, with the purpose of comparing heritage speakers to adults. eng ["disciplinary", "institutional"] {"size": "16 datasets; 1.156 files", "updatedp": "2018-12-06"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cross-linguistic", "fluent speakers", "heritage speakers", "social sciences"] [{"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard University, Polinsky Language Sciences Lab", "institutionAdditionalName": ["CP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://urs.iq.harvard.edu/polinsky-language-sciences-lab", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kplaster@fas.harvard.edu"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] closed [{"dataUploadLicenseName": "Data Deposit Terms", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Polinsky Language Sciences Lab is covered by Thomson Reuters Data Citation Index. And uses Data Documentation Initiative (DDI) metadata specification. 2014-11-28 2021-08-24 +r3d100011303 Population Services International Dataverse eng [{"additionalName": "PSI Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/PSI [] ["info@psi.org"] PSI is a global health organization dedicated to improving the health of people in the developing world by focusing on serious challenges like a lack of family planning, HIV and AIDS, barriers to maternal health, and the greatest threats to children under five, including malaria, diarrhea, pneumonia and malnutrition. A hallmark of PSI is a commitment to the principle that health services and products are most effective when they are accompanied by robust communications and distribution efforts that help ensure wide acceptance and proper use. PSI works in partnership with local governments, ministries of health and local organizations to create health solutions that are built to last. We use original data to monitor and evaluate our programs, generate consumer insight, estimate the impact of our solutions, and evaluate the health of the markets we work to strengthen. eng ["institutional"] {"size": "62 dataverses; 853 datasets; 9013 files", "updatedp": "2018-0-12-06"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://dataverse.harvard.edu/dataverse/PSI [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["AIDS", "HIV", "developing world", "family planning", "geographic studies", "infectious diseases", "malaria", "malnutrition", "qualitative studies", "quantitative studies", "social sciences"] [{"institutionName": "Population Services International", "institutionAdditionalName": ["PSI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.psi.org/", "institutionIdentifier": ["ROR:03x1cjm87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.psi.org/search/contact/?s=contact"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Data-PASS Data Deposit Agreement", "policyURL": "http://www.data-pass.org/sites/default/files/deposit-agreement.pdf"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Population Services International is covered by Thomson Reuters Data Citation Index. 2014-11-28 2021-09-03 +r3d100011304 PRISM Climate Data eng [{"additionalName": "Parameter-elevation Regressions on Independent Slopes Model Climate Data", "additionalNameLanguage": "eng"}] http://www.prism.oregonstate.edu/ [] ["prism-questions@nacse.org"] The PRISM Climate Group gathers climate observations from a wide range of monitoring networks, applies sophisticated quality control measures, and develops spatial climate datasets to reveal short- and long-term climate patterns. The resulting datasets incorporate a variety of modeling techniques and are available at multiple spatial/temporal resolutions, covering the period from 1895 to the present. Whenever possible, we offer these datasets to the public, either free of charge or for a fee (depending on dataset size/complexity and funding available for the activity). eng ["disciplinary"] {"size": "", "updatedp": ""} 1981 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.prism.oregonstate.edu/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["historical climate data", "maximum temperature (tmax", "maximum vapor pressure deficit vpdmax", "minimum temperature tmin", "minimum vapor pressure deficit vpdmin", "physical sciences", "precipitation", "station networks"] [{"institutionName": "Oregon State University, Northwest Alliance for Computational Science & Engineering", "institutionAdditionalName": ["NACSE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nacse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nacse.org/home/contact.html"]}, {"institutionName": "Oregon State University, PRISM Climate Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.prism.oregonstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["prism-questions@nacse.org"]}, {"institutionName": "United States Department of Agriculture, Risk Management Agency", "institutionAdditionalName": ["USDA, RMA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rma.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["RMA.Media.Requests@rma.usda.gov"]}] [{"policyName": "PRISM Gridded Climate Data Terms of Use", "policyURL": "http://www.prism.oregonstate.edu/documents/PRISM_terms_of_use.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.prism.oregonstate.edu/documents/PRISM_terms_of_use.pdf"}] closed [] ["unknown"] {"api": "http://www.prism.oregonstate.edu/documents/PRISM_downloads_FTP.pdf", "apiType": "FTP"} ["none"] http://www.prism.oregonstate.edu/documents/PRISM_terms_of_use.pdf [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} PRISM Climate Data is covered by Thomson Reuters Data Citation Index. Our Website Is in Transition! The new site offers updated and expanded versions of the PRISM climate datasets, incorporating observations from new station networks. As the transition is underway, some previously available datasets have not yet been recomputed or transferred. They remain available on the old website http://oldprism.nacse.org/ in case you need them. PRISM usese FDGC Content Standard for Digital Geospatial Metadata and Biological Data Profile. 2014-11-28 2018-12-07 +r3d100011305 Recode eng [{"additionalName": "Database of translational recoding events", "additionalNameLanguage": "eng"}] http://recode.ucc.ie/ ["RRID:SCR_007887", "RRID:nif-0000-03392"] ["p.baranov@ucc.ie"] Recode2 is a database of genes that utilize non-standard translation for gene expression purposes. Recoding events described in the database include programmed ribosomal frameshifting, translational bypassing (aka hopping) and mRNA specific codon redefinition. Frameshifting at a particular site often yields two protein products from one coding sequence and sometimes serves a regulatory purpose by acting as a sensor of the level of product protein or of some external ligand. Bypassing (hopping) allows the coupling of two ORFs separated on an mRNA by a coding gap. Codon redefinition occurs when a stop codon is decoded as a standard amino acid (often glutamine or tryptophan), or the 21st amino acid selenocysteine. These recoding events are in competition with standard decoding and are site specific. The efficiency of recoding is often modulated by cis-stimulators and sometimes by trans-factors. The sequences of the genes that use recoding for their expression are in the database. The recoding sites and the known stimulatory signals are annotated in the database together with notes on factors that are known to affect recoding efficiencies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://recode.ucc.ie/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "cell biology", "life sciences"] [{"institutionName": "Science Foundation Ireland", "institutionAdditionalName": ["SFI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sfi.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@sfi.ie"]}, {"institutionName": "University College Cork, School of Biochemistry and Cell Biology", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucc.ie/en/biochemistry/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucc.ie/en/contact/"]}, {"institutionName": "University of Utah, Human Genetics Department", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utah.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utah.edu/contact/"]}] [{"policyName": "Recode Policies", "policyURL": "http://recode.ucc.ie/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] closed [] ["other"] yes {} ["DOI"] http://recode.ucc.ie/publication [] yes unknown [] [] {} Recode is covered by Thomson Reuters Data Citation Index. There ar two sites for recode the Irish mirror http://recode.ucc.ie/?mirror=utah and the US mirror at Eccles Institute of Human Genetics at the University of Utah http://recode.genetics.utah.edu/?mirror=utah 2014-12-04 2018-12-07 +r3d100011306 RESID Database of Protein Modifications eng [] https://pir.georgetown.edu/resid/resid.shtml ["FAIRsharing_doi:10.25504/FAIRsharing.qaszjp", "OMICS_02422", "RRID:SCR_003505", "RRID:nif-0000-03400"] ["pirmail@georgetown.edu"] The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["genomes", "life sciences", "proteins", "proteomes", "structure"] [{"institutionName": "Georgetown University, Medical Center", "institutionAdditionalName": ["GUMC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://gumc.georgetown.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR", "a UniProt Consortium Member"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu/pirwww/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jsgarave@udel.edu"]}, {"institutionName": "University of Delaware, Delaware Biotechnology Institute, Center for Bioinformatics & Computational Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://bioinformatics.udel.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bioinformatics@udel.edu"]}] [{"policyName": "Terms of Use", "policyURL": "https://pir.georgetown.edu/pirwww/about/linkpir.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://pir.georgetown.edu/resid/resid.shtml"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] closed [] ["unknown"] yes {"api": "ftp://ftp.pir.georgetown.edu/databases/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} RESID is covered by Thomson Reuters Data Citation Index. RESID was formerly hosted by EMBL-EBI. The Protein Information Resource (PIR) is an integrated public bioinformatics resource to support genomic, proteomic and systems biology research and scientific studies. 2014-12-05 2019-01-17 +r3d100011307 Geological Data Center at Scripps Institution of Oceanography eng [{"additionalName": "GDC", "additionalNameLanguage": "eng"}, {"additionalName": "University of California San Diego, Scripps Institution of Oceanography, Geological Data Center", "additionalNameLanguage": "eng"}] http://gdc.ucsd.edu [] ["gdc@ucsd.edu", "http://gdc.ucsd.edu/index.php/contact-us/"] The mission of the GDC is to curate and provide access to oceanographic data, especially from Scripps expeditions, making them accessible for scientific and educational use worldwide. Originally launched by Bill Menard, the GDC has been in operation for more than 40 years. While many historic physical artifacts are carefully preserved, the current emphasis is on digital archiving, in coordination with other national and international programs. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://gdc.ucsd.edu/index.php/about/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CTD", "bathymetry", "cruise reports", "expeditions", "gravity", "magnetics", "multibeam", "navigation", "physical sciences", "research vessels"] [{"institutionName": "National National Science Digital Library", "institutionAdditionalName": ["NSDL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nibib.nih.gov/content/national-science-digital-library-nsdl", "institutionIdentifier": ["RRID:SCR_008215", "RRID:nif-0000-21294"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["SIO", "Scripps Institution of Oceanography"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://scripps.ucsd.edu/about/contact-us"]}] [{"policyName": "Division of Ocean Sciences (OCE) Sample and Data Policy", "policyURL": "https://www.nsf.gov/pubs/2017/nsf17037/nsf17037.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://scripps.ucsd.edu/ships/data-and-sample-distribution-policy"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2014-12-08 2019-06-28 +r3d100011308 SPT Galaxy Cluster Followup Dataverse eng [{"additionalName": "South Pole Telescope Galaxy Cluster Followup Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/SPT_Clusters [] ["https://dataverse.harvard.edu/dataverse/SPT_Clusters"] Dataverse to host followup observations of galaxy clusters identified in South Pole Telescope SZ Surveys. This includes: 1) GMOS spectroscopy of low to moderate redshift galaxy clusters taken as a part of NOAO Large Survey Program 11A-0034 (PI: Christopher Stubbs). eng ["disciplinary"] {"size": "4 datasets; 125 files", "updatedp": "2018-12-07"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://dataverse.harvard.edu/dataverse/SPT_Clusters [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["physical sciences", "spectroscopy"] [{"institutionName": "Harvard University Information Technology Services", "institutionAdditionalName": ["HUIT"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://huit.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ithelp@harvard.edu"]}, {"institutionName": "Harvard University Library", "institutionAdditionalName": ["HUL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hul.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iq.harvard.edu/contact-us"]}] [{"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-usetml"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} SPT Galaxy Cluster Spectroscopy Dataverse is covered by Thomson Reuters Data Citation Index. cfA dataverses use Data Documentation Initative (DDI) metadata standards. 2014-12-15 2019-03-05 +r3d100011309 Study of Health in Pomerania eng [{"additionalName": "SHIP", "additionalNameLanguage": "eng"}] http://www2.medizin.uni-greifswald.de/cm/fv/ship/ [] ["http://www2.medizin.uni-greifswald.de/cm/fv/ship/organisationszentrum/", "susanne.mueller1@uni-greifswald.de"] The SHIP study´s main aims include the investigation of health in all its aspects and complexity involving the collection and assessment of data relevant to the prevalence and incidence of common, population-relevant diseases and their risk factors. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20513 Pneumology, Clinical Infectiology Intensive Care Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www2.medizin.uni-greifswald.de/cm/fv/ship/studienbeschreibung/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Diabetes mellitus", "cardiovascular disease", "cohort study", "dental disease", "drug abusing behavior", "health", "hepatopathy", "life sciences", "neurological disease", "pulmonary disease", "risk factors", "thyroid disease"] [{"institutionName": "Federal Ministry of Food and Agriculture", "institutionAdditionalName": ["BMEL", "Bundesministerium f\u00fcr Ern\u00e4hrung und Landwirtschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmel.de/EN/Homepage/homepage_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmel.de/EN/Services/Contact/contact_node.html"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Institut f\u00fcr Community Medicine", "institutionAdditionalName": ["CM", "Ernst-Moritz-Arndt-Universit\u00e4t Greifswald, Universit\u00e4tsmedizin Greifswald (formerly)", "Institute for Community Medicine"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www2.medizin.uni-greifswald.de/icm/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www2.medizin.uni-greifswald.de/icm/index.php?id=19&L=1"]}] [{"policyName": "Rules for the use and handling of data and samples", "policyURL": "https://www.fvcm.med.uni-greifswald.de/Web/Nutzungsordnung_FVCM_2012-07-03.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.fvcm.med.uni-greifswald.de/Web/Nutzungsordnung_FVCM_2012-07-03.pdf"}] closed [] ["unknown"] {} ["none"] [] no yes [] [] {} Study of Health in Pomerania is covered by Thomson Reuters Data Citation Index 2014-12-15 2021-07-20 +r3d100011310 Taiwan Biodiversity Information Facility eng [{"additionalName": "TaiBIF", "additionalNameLanguage": "eng"}] http://taibif.tw/en ["FAIRsharing_doi:10.25504/FAIRsharing.y2vm4r"] ["http://www.taibif.tw/en/contact"] "TaiBIF" stands for Taiwan Biodiversity Information Facility. It is the Taiwan portal of GBIF, and is in charge of integrating Taiwan's biodiversity information, including lists of species and local experts, illustrations of species, introduction of endemic species and invasive species, Taiwan's terrestrial and marine organisms, biodiversity literature, geographical and environmental information, information about relevant institutions, organizations, projects, and observation spots, the Catalog of Life (a list of Taiwanese endemic species), and publications. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.taibif.tw/en/node/2623 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "life sciences", "taxonomy"] [{"institutionName": "Academia Sinica", "institutionAdditionalName": ["\u4e2d\u592e\u7814\u7a76\u9662"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sinica.edu.tw/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sinica.edu.tw/en/articles/32"]}, {"institutionName": "Council of Agriculture, Executive Yuan", "institutionAdditionalName": ["\u884c\u653f\u9662\u8fb2\u696d\u59d4\u54e1\u6703"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://eng.coa.gov.tw/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["coa@mail.coa.gov.tw"]}, {"institutionName": "Ministry of Science and Technology", "institutionAdditionalName": ["MOST", "\u79d1\u6280\u90e8"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.most.gov.tw/?l=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Taiwan Biodiversity Information Facility", "institutionAdditionalName": ["TaiBIF", "\u53f0\u6e7e\u751f\u7269\u591a\u6837\u6027\u4fe1\u606f\u57fa\u91d1"], "institutionCountry": "TWN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://taibif.tw/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.gbif.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://taibif.tw/en/node/2623"}] closed [] ["unknown"] no {"api": "https://www.gbif.org/developer/summary", "apiType": "REST"} ["none"] https://www.gbif.org/citation-guidelines [] yes unknown [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} TaiBIF is the Taiwan portal of GBIF. -- Taiwan Biodiversity Information Facility is covered by Thomson Reuters Data Citation Index 2015-01-06 2019-07-30 +r3d100011311 Taiwan Forestry Research Institute Data Catalog eng [{"additionalName": "TFRI Data Catalog", "additionalNameLanguage": "eng"}, {"additionalName": "\u6797 \u696d \u8a66 \u9a57 \u6240 \u7814 \u7a76 \u8cc7 \u6599 \u76ee \u9304", "additionalNameLanguage": "jpn"}] http://metacat.tfri.gov.tw/tfri/ ["biodbcore-001743"] ["beer@tfri.gov.tw"] The TFRI focuses its work on conserving forest resources, restoring rare animals and plants, improving silvicultural techniques, managing natural forests and providing nature education among other activities. The TRFI’s data catalog contains research data from the various divisions and projects spanning forests, plants, ecology and herbariums throughout the country. eng ["disciplinary"] {"size": "1.414 data packages", "updatedp": "2018-12-07"} ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tfri.gov.tw/main/index.aspx?siteid=&ver=&usid=&mode=&lc=1945&noframe= [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bamboo", "ecology", "forest", "herbarium", "life sciences", "meteorology", "plants", "silviculture", "wood cellulose"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "Knowledge Network for Biocomplexity", "institutionAdditionalName": ["KNB"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://knb.ecoinformatics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["knb-help@nceas.ucsb.edu"]}, {"institutionName": "Taiwan Forestry Research Institute", "institutionAdditionalName": ["TFRI"], "institutionCountry": "TWN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tfri.gov.tw/main/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service@tfri.gov.tw"]}] [{"policyName": "Open Government Declaration", "policyURL": "https://www.tfri.gov.tw/main/page_view.aspx?siteid=&ver=&usid=&mnuid=5478&modid=1407&mode="}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.ausgoal.gov.au/creative-commons"}] open [] ["other"] no {} ["none"] [] no unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} Taiwan Forestry Research Institute Data Catalog is covered by Thomson Reuters Data Citation Index. TFRI Metacat is a Member Node of DataONE https://search.dataone.org/#profile/TFRI 2015-01-07 2021-11-17 +r3d100011312 The Abdul Latif Jameel Poverty Action Lab eng [{"additionalName": "J-PAL Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/jpal [] ["http://www.povertyactionlab.org/", "info@povertyactionlab.org"] Data from selected studies from the Abdul Latif Jameel Poverty Action Lab (J-PAL), povertyactionlab.org. A number of other studies from J-PAL have data posted on the MacArthur Dataverse: http://dvn.iq.harvard.edu/dvn/dv/macarthur. eng ["disciplinary"] {"size": "86 data sets; 736 files", "updatedp": "2018-12-07"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.povertyactionlab.org/about-j-pal [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["economic policy", "education", "social sciences"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Massachusetts Institute of Technology, Abdul Latif Jameel Poverty Action Lab", "institutionAdditionalName": ["MIT, J-PAL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.povertyactionlab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.povertyactionlab.org/offices-contacts"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use, User uploads", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] no unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} The Abdul Latif Jameel Poverty Action Lab is covered by Thomson Reuters Data Citation Index. 2015-01-08 2019-03-05 +r3d100011313 U.S. Census Bureau TIGER/Line Shapefiles and TIGER/Line® Files eng [{"additionalName": "TIGER/Line\u00ae Shapefiles and TIGER/Line\u00ae Files", "additionalNameLanguage": "eng"}] https://www.census.gov/geo/maps-data/data/tiger-line.html ["biodbcore-001543"] ["https://www.census.gov/about/contact-us.html"] The Census Bureau releases TIGER/Line shapefiles and metadata each year to the public. TIGER/Line shapefiles are spatial extracts from the Census Bureau’s MAF/TIGER database. They contain features such as roads, railroads, hydrographic features and legal and statistical boundaries. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://catalog.data.gov/dataset/tiger-line-shapefile-2014-nation-u-s-114th-congressional-district-national-shapefile [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["social sciences"] [{"institutionName": "U.S. Department of Commerce, U.S. Census Bureau", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.census.gov/en.html#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.census.gov/about/contact-us.html"]}] [{"policyName": "Open Government Plan", "policyURL": "http://www.osec.doc.gov/opog/OG/default.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.fgdl.org/metadata/fgdl_html/tiger_roads_2011.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.usa.gov/government-works"}] closed [] ["unknown"] no {"api": "https://www2.census.gov/geo/pdfs/education/tiger/Downloading_TIGERLine_Shp.pdf", "apiType": "FTP"} ["none"] https://www.census.gov/about/policies/citation.html [] no unknown [] [] {} U.S. Census Bureau TIGER/Line Shapefiles is covered by Thomson Reuters Data Citation Index. 2015-01-08 2021-11-16 +r3d100011314 UCLA Phonetics Lab Archive eng [] http://archive.phonetics.ucla.edu/ [] ["phonetic@humnet.ucla.edu"] Welcome to the UCLA Phonetics Lab Archive. For over half a century, the UCLA Phonetics Laboratory has collected recordings of hundreds of languages from around the world, providing source materials for phonetic and phonological research, of value to scholars, speakers of the languages, and language learners alike. The materials on this site comprise audio recordings illustrating phonetic structures from over 200 languages with phonetic transcriptions, plus scans of original field notes where relevant. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://archive.phonetics.ucla.edu/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["humanities"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of California, Los Angeles, Phonetics Laboratory", "institutionAdditionalName": ["UCLA Phonetics Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.linguistics.ucla.edu/faciliti/uclaplab.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["keating@humnet.ucla.edu"]}] [{"policyName": "How to Use the Archive - Permissions", "policyURL": "http://archive.phonetics.ucla.edu/archive_instructions.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/2.0/"}] closed [] ["unknown"] no {} ["none"] http://archive.phonetics.ucla.edu/archive_instructions.htm [] no unknown [] [] {} UCLA Phonetics Lab Archive is covered by Thomson Reuters Data Citation Index 2015-01-12 2019-01-08 +r3d100011315 UCLA Social Science Data Archive Dataverse eng [{"additionalName": "SSDA Dataverse UCLA Library Data Science Center", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/ssda_ucla [] ["datascience@ucla.edu", "datascience@ucla.edu"] The Social Science Data Archive is still active and maintained as part of the UCLA Library Data Science Center. SSDA Dataverse is one of the archiving opportunities of SSDA, the others are: Data can be archived by SSDA itself (http://dataarchives.ss.ucla.edu/index.html) or by ICPSR or by UCLA Library or by California Digital Library. The Social Science Data Archives serves the UCLA campus as an archive of faculty and graduate student survey research. We provide long term storage of data files and documentation. We ensure that the data are useable in the future by migrating files to new operating systems. We follow government standards and archival best practices. The mission of the Social Science Data Archive has been and continues to be to provide a foundation for social science research with faculty support throughout an entire research project involving original data collection or the reuse of publicly available studies. Data Archive staff and researchers work as partners throughout all stages of the research process, beginning when a hypothesis or area of study is being developed, during grant and funding activities, while data collection and/or analysis is ongoing, and finally in long term preservation of research results. Our role is to provide a collaborative environment where the focus is on understanding the nature and scope of research approach and management of research output throughout the entire life cycle of the project. Instructional support, especially support that links research with instruction is also a mainstay of operations. eng ["disciplinary", "institutional"] {"size": "1 dataverse; 569 datasets; 4.358 files", "updatedp": "2018-12-07"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.library.ucla.edu/data-archive-mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["pedagogy", "political behavior", "social sciences"] [{"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "University of California at Los Angeles, Library, Social Science Data Archive", "institutionAdditionalName": ["UCLA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.ucla.edu/blog/social-science-data-archive", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lib_archivehelp@em.ucla.edu"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Data-Pass", "policyURL": "http://www.data-pass.org/"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use, User uploads", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] no unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} UCLA Social Science Data Archive is covered by Thomson Reuters Data Citation Index. SSDA is using DDI metadata standard. 2015-01-12 2021-10-15 +r3d100011316 UNITE eng [{"additionalName": "Communication and identification of DNA based fungal species", "additionalNameLanguage": "eng"}, {"additionalName": "Unified system for the DNA based fungal species linked to the classification", "additionalNameLanguage": "eng"}] https://unite.ut.ee/index.php ["FAIRsharing_doi:10.25504/FAIRsharing.cnwx8c", "Omics_23522", "RRID:SCR_006518", "RRID:nlx_61947"] ["https://unite.ut.ee/contact.php"] UNITE provides unified way how you delimit, identify, communicate and work with DNA based Species Hypotheses (SH). eng ["disciplinary"] {"size": "817.130 ITS sequences", "updatedp": "2018-12-07"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://unite.ut.ee/static/UNITE_ver4_2016_poster.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["genomics", "life sciences", "mycology"] [{"institutionName": "Estonian Research Council", "institutionAdditionalName": ["Sihtasutus Eesti Teadusagentuur"], "institutionCountry": "EST", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.etag.ee/en/estonian-research-council/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["etag@etag.ee"]}, {"institutionName": "PlutoF", "institutionAdditionalName": [], "institutionCountry": "EST", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://plutof.ut.ee/#/login", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@plutof.ut.ee"]}, {"institutionName": "University of Tartu", "institutionAdditionalName": ["Tartu \u00dclikool"], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ut.ee/en/contact"]}] [{"policyName": "Creative Commons Attribution-ShareAlike 4.0 International", "policyURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] ["other"] yes {"api": "https://plutof.docs.apiary.io/#introduction/basic-api-policy", "apiType": "other"} ["none"] https://unite.ut.ee/cite.php [] no unknown [] [] {} UNITE is covered by Thomson Reuters Data Citation Index. 2015-01-14 2019-01-17 +r3d100011317 University of Minnesota Biocatalysis/Biodegradation Database eng [{"additionalName": "EAWAG Biocatalysis/Biodegradation Database", "additionalNameLanguage": "eng"}, {"additionalName": "EAWAG-BBD", "additionalNameLanguage": "eng"}, {"additionalName": "UM-BBD", "additionalNameLanguage": "eng"}] http://eawag-bbd.ethz.ch/ ["RRID:SCR_005787", "RRID:nif-0000-03607", "omics_21934"] ["bbd@eawag.ch"] This database contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the EAWAG-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. eng ["disciplinary"] {"size": "219 pathways; 1503 reactions; 1396 compounds; 993 enzymes; 543 microorganism entries; 249 biotransformation rules; 50 organic functional groups; 76 reactions of naphthalene 1,2-dioxygenase; 109 reactions of toluene dioxygenase", "updatedp": "2018-12-07"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://eawag-bbd.ethz.ch/aboutBBD.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["analytical chemistry", "biodegradation", "biotechnology", "cheminformatics", "hydrology", "life sciences", "molecular biology", "thermodynamics"] [{"institutionName": "DuPont Industrial Biosciences", "institutionAdditionalName": ["DuPont Genencor Science"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://biosciences.dupont.com/science/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://biosciences.dupont.com/contact/"]}, {"institutionName": "Lhasa Limited", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lhasalimited.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lhasalimited.org/contact-us.htm"]}, {"institutionName": "Lonza Group", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.lonza.com/Home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lonza.com/contact-us.aspx"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Swiss Federal Institute of Aquatic Science and Technology", "institutionAdditionalName": ["Eawag"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eawag.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@eawag.ch"]}, {"institutionName": "Swiss National Science Foundation", "institutionAdditionalName": ["SNSF"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.snf.ch/en/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.snf.ch/en/theSNSF/contact/Pages/default.aspx"]}, {"institutionName": "The National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "U.S. Department of Energy, Microbial Genomics", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://microbialgenomics.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["genome@science.doe.gov", "http://microbialgenomics.energy.gov/"]}, {"institutionName": "University of Minnesota, BioTechnology Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bti.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bti.umn.edu/contact.html"]}] [{"policyName": "Copyrights", "policyURL": "http://eawag-bbd.ethz.ch/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://eawag-bbd.ethz.ch/index.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://eawag-bbd.ethz.ch/index.html"}] restricted [] ["unknown"] no {} ["none"] http://eawag-bbd.ethz.ch/index.html [] yes yes [] [] {} University of Minnesota Biocatalysis/Biodegradation Database is covered by Thomson Reuters Data Citation Index 2015-01-14 2018-12-07 +r3d100011318 Washington State University Data Center Dataverse eng [] https://dataverse.harvard.edu/dataverse.xhtml?alias=wsu [] ["https://dataverse.harvard.edu/dataverse.xhtml?alias=wsu"] The gift of the Stowell Datasets, a digital archive of psychographic data, to the College of Liberal Arts (and continued gift of new datasets) provide a unique opportunity for WSU to facilitate access to a valuable research resource. The datasets include over 350 individual major media market surveys (CATI, Random Digit Dialing telephone surveys) collected over the period 1989-2001 and feature approximately n=1,000+ respondents for each market for each year. eng ["disciplinary", "institutional"] {"size": "88 datasets; 711 files", "updatedp": "2018-12-07"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://dgss.wsu.edu/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CATI", "Random Digit Dialing telephone surveys", "consumer survey", "demographics", "media market", "psychographics", "social sciences"] [{"institutionName": "State of Washington, Washington State Office of Financial Management", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ofm.wa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ofm.wa.gov/about/contact-us"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Washington State University, Division of Governmental Studies and Services", "institutionAdditionalName": ["DGSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dgss.wsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dgss@wsu.edu", "https://wsu.edu/about/contact/"]}] [{"policyName": "Dataverse Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Intended Use Office of Financial Management Policy", "policyURL": "https://www.ofm.wa.gov/about/about-our-website/intended-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use, User uploads", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["hdl"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Washington State University Data Center is covered by Thomson Reuters Data Citation Index. Washington State University Data Center Dataverse uses Data Documentation Initative (DDI) metadata standards 2014-12-12 2019-03-05 +r3d100011319 World Agroforestry Centre - ICRAF Dataverse eng [] https://dataverse.harvard.edu/dataverse/icraf [] ["http://www.worldagroforestry.org/about_us", "icraf@cgiar.org"] The Centre’s vision is a rural transformation in the developing world as smallholder households strategically increase their use of trees in agricultural landscapes to improve their food security, nutrition, income, health, shelter, social cohesion, energy resources and environmental sustainability. The Centre’s mission is to generate science-based knowledge about the diverse roles that trees play in agricultural landscapes, and to use its research to advance policies and practices, and their implementation, that benefit the poor and the environment. eng ["disciplinary", "institutional"] {"size": "44 dataverses; 532 data sets; 2.927 files", "updatedp": "2018-12-07"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.worldagroforestry.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["climate change", "fertilizer", "health", "land health", "landscape", "nutrition", "physical sciences"] [{"institutionName": "CGIAR Consortium", "institutionAdditionalName": ["a global agricultural research partnership"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cgiar.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cgiar.org/contacts/"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "World Agroforestry Centre", "institutionAdditionalName": [], "institutionCountry": "KEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.worldagroforestry.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.worldagroforestry.org/contact"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-normsl"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "Policies and guidelines", "policyURL": "http://www.worldagroforestry.org/about/Policies-and-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.worldagroforestry.org/about/Policies-and-guidelines"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.worldagroforestry.org/rss-feeds", "syndicationType": "RSS"} World Agroforestry Centre is covered by Thomson Reuters Data Citation Index. The World Agroforestry Centre (ICRAF) is a CGIAR Consortium Research Centre. ICRAF’s headquarters are in Nairobi, Kenya, with five regional offices located in Cameroon, India, Indonesia, Kenya and Peru. 2014-12-12 2019-03-05 +r3d100011321 U.S. National Archives and Records Administration Dataverse eng [{"additionalName": "NARA Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/nara [] ["https://www.archives.gov/contact/"] The National Archives and Records Administration (NARA) is the nation's record keeper. Of all documents and materials created in the course of business conducted by the United States Federal government, only 1%-3% are so important for legal or historical reasons that they are kept by us forever. Those valuable records are preserved and are available to you, whether you want to see if they contain clues about your family’s history, need to prove a veteran’s military service, or are researching an historical topic that interests you. eng ["institutional"] {"size": "583 datasets", "updatedp": "2018-12-07"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.archives.gov/about/info/mission.html [{"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Social Sciences", "artworks", "census data", "federal register", "legal manuscripts", "multidisciplinary"] [{"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "U.S. National Archives and Records Administration", "institutionAdditionalName": ["NARA", "National Archives"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.archives.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.archives.gov/contact/"]}] [{"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Guide to Federal Records in NARA", "policyURL": "https://www.archives.gov/research/guide-fed-records"}, {"policyName": "Terms and Conditions for Using NARA website", "policyURL": "https://www.archives.gov/global-pages/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html#copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.archives.gov/global-pages/privacy.html#copyright"}] closed [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["hdl"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.archives.gov/social-media/rss-feeds.html", "syndicationType": "RSS"} U.S. National Archives and Records Administration Dataverse is covered by Thomson Reuters Data Citation Index. NARA Dataverse is part of the Harvard Dataverse. See also Online Research Tools and Aids: http://www.archives.gov/research/start/online-tools.html 2014-12-15 2019-03-05 +r3d100011322 1.2 Meter CO Survey Dataverse eng [] https://dataverse.harvard.edu/dataverse/rtdc [] ["https://dataverse.harvard.edu/dataverse/rtdc"] The Radio Telescope Data Center (RTDC) reduces, archives, and makes available on its web site data from SMA and the CfA Millimeter-wave Telescope. The whole-Galaxy CO survey presented in Dame et al. (2001) is a composite of 37 separate surveys. The data from most of these surveys can be accessed. Larger composites of these surveys are available separately. eng ["disciplinary", "other"] {"size": "40 datasets; 265 files", "updatedp": "2020-02-19"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cfa.harvard.edu/rtdc/CO/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["physical sciences", "radio telescope"] [{"institutionName": "Cfa Dataverses", "institutionAdditionalName": ["Harvard-Smithsonian Center for Astrophysics Dataverses"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/dataverse/cfa", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Smithsonian Astrophysical Observatory, Radio Telescope Data Center", "institutionAdditionalName": ["RTDC", "SAO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/rtdc/CO/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "Smithsonian Institution Terms of Use", "policyURL": "https://www.si.edu/Termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.si.edu/Termsofuse"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.si.edu/Termsofuse"}] closed [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 1.2 Meter CO Survey Dataverse is covered by Clarivate Data Citation Index. 1.2 Meter CO Survey Dataverse is part of CfA Dataverses, and uses Data Documentation Initiative - DDI metadata standards 2014-12-16 2020-02-19 +r3d100011323 SILVA eng [{"additionalName": "A comprehensive on-line resource for quality checked and aligned ribosomal RNA sequence data.", "additionalNameLanguage": "eng"}] https://www.arb-silva.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.5vtYGG", "OMICS_01514", "RRID:SCR_006423", "RRID:nif-0000-03464", "RRID:rid_000103"] ["accounts@arb-silva.de"] SILVA is a comprehensive, quality-controlled web resource for up-to-date aligned ribosomal RNA (rRNA) gene sequences from the Bacteria, Archaea and Eukaryota domains alongside supplementary online services. In addition to data products, SILVA provides various online tools such as alignment and classification, phylogenetic tree calculation and viewer, probe/primer matching, and an amplicon analysis pipeline. With every full release a curated guide tree is provided that contains the latest taxonomy and nomenclature based on multiple references. SILVA is an ELIXIR Core Data Resource. eng ["disciplinary", "institutional"] {"size": "Version 138 over 9.400.000 SSU Aligned rRNA sequences", "updatedp": "2018-12-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.arb-silva.de/documentation/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["archaea", "bacteria", "bioinformatics", "eukarya", "hylogenetic inference", "microbial DNA sequence data", "molecular biodiversity", "rDNA", "rRNA", "taxonomy of the eukaryotics"] [{"institutionName": "Max-Planck-Institute for Marine Microbiology, Microbial Genomics and Bioinformatics Group", "institutionAdditionalName": ["MPI-Bremen, Mikrobielle Genomik und Bioinformatik", "Max-Planck-Institut f\u00fcr Marine Mikrobiologie, Mikrobielle Genomik und Bioinformatik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpi-bremen.de/en/Microbial-Genomics-Group.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpi-bremen.de/en/Address_and_Contacts.html"]}, {"institutionName": "Ribocon GmbH", "institutionAdditionalName": ["Ribocon"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ribocon.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ribocon.com/contact.html"]}] [{"policyName": "SILVA Terms of Use/License Information", "policyURL": "https://www.arb-silva.de/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] yes {"api": "https://www.arb-silva.de/download/arb-files/", "apiType": "FTP"} ["none"] https://www.arb-silva.de/contact/ ["ORCID"] yes yes [] [] {"syndication": "https://www.arb-silva.de/news/rss.xml", "syndicationType": "RSS"} SILVA is one of the ELIXIR Core Data Resources. As of release 138 the SILVA databases, its taxonomy, and all files provided for download are licensed unter Opens external link in new windowCreate Commons Attribution 4.0 (CC-BY 4.0). All data is freely available for academic and commercial use as long as SILVA is credited as original author and a link to the full license is provided. Releases before SILVA 138 are not affected by the new license. Please refer to the license file provided in each download directory for the license associated with the provided files. 2014-09-24 2021-05-20 +r3d100011324 megx.net eng [{"additionalName": "Marine Ecological GenomiX", "additionalNameLanguage": "eng"}] https://mb3is.megx.net/ ["OMICS_15635", "RRID:SCR_000738", "RRID:nif-0000-03109"] ["https://mb3is.megx.net/portal/team/team.html"] ----<<<<< This repository is no longer open to the public !!! >>>>>---- eng ["disciplinary"] {"size": "1.832 rokaryotic genomes; 996.747 16S/18S rRNA sequences; 161.017 23S/28S rRNA Sequences; 2.362 sites; 5.156 samples", "updatedp": "2017-12-13"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mb3is.megx.net/portal/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Global Ocean Sampling GOS", "archaeal genomes", "marine bacterial", "marker genes", "metagenomes", "microbiology", "phage Genomes", "prokaryotic Genomes"] [{"institutionName": "Max Planck Institute for Marine Microbiology, Microbial Genomics/Bioinformatics Group", "institutionAdditionalName": ["Microbial Genomics and Bioinformatics Group", "Mikrobielle Genomik und Bioinformatik"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpi-bremen.de/en/Microbial_Genomics_Group.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpi-bremen.de/en/Address_and_Contacts.html"]}] [{"policyName": "Disclaimer", "policyURL": "http://mb3is.megx.net/portal/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://mb3is.megx.net/portal/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://mb3is.megx.net/portal/disclaimer.html"}] restricted [] ["other"] {} ["none"] http://mb3is.megx.net/portal/faq.html [] yes yes [] [] {} One of the key elements of megx.net is the Genes Mapserver which facilitates the interpretation of the sequence data in MetaStorage in its environmental context via a browsable world map. Megx.net now covers diversity analysis by integrating the SILVA ribosomal RNA databases. 2014-09-24 2019-01-24 +r3d100011326 GEOFON eng [{"additionalName": "GEOFOrschungsNetz", "additionalNameLanguage": "eng"}, {"additionalName": "GFZ Seismological Data Archive", "additionalNameLanguage": "eng"}] https://geofon.gfz-potsdam.de/ ["FAIRsharing_DOI:10.25504/FAIRsharing.J3YyP9", "doi:10.14470/TR560404"] ["angelo.strollo@gfz-potsdam.de", "https://geofon.gfz-potsdam.de/contact/"] GEOFON seeks to facilitate cooperation in seismological research and earthquake and tsunami hazard mitigation by providing rapid transnational access to seismological data and source parameters of large earthquakes, and keeping these data accessible in the long term. It pursues these aims by operating and maintaining a global network of permanent broadband stations in cooperation with local partners, facilitating real time access to data from this network and those of many partner networks and plate boundary observatories, providing a permanent and secure archive for seismological data. It also archives and makes accessible data from temporary experiments carried out by scientists at German universities and institutions, thereby fostering cooperation and encouraging the full exploitation of all acquired data and serving as the permanent archive for the Geophysical Instrument Pool at Potsdam (GIPP). It also organises the data exchange of real-time and archived data with partner institutions and international centres. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://geofon.gfz-potsdam.de/mission/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["broad-band network", "earthquake", "real time data", "seismic network", "seismology", "tsunami warning"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/startseite/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://geofon.gfz-potsdam.de/contact"]}] [{"policyName": "Creation Guidelines for Seismic Network Operators", "policyURL": "https://geofon.gfz-potsdam.de/docs/doi-geofon-guidelines/"}, {"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten am Deutschen GeoForschungsZentrum GFZ", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_de.pdf"}, {"policyName": "Guidelines on Research Data at the GFZ German Research Centre for Geosciences", "policyURL": "https://media.gfz-potsdam.de/gfz/wv/doc/16/GFZ_Daten_Grundsaetze+Erg_en.pdf"}, {"policyName": "Waveform Access", "policyURL": "https://geofon.gfz-potsdam.de/waveform/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://geofon.gfz-potsdam.de/waveform/archive/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.seiscomp3.org/doc/seattle/2013.046/base/license.html"}] restricted [{"dataUploadLicenseName": "GEOFON Data Archive Information / Guidelines", "dataUploadLicenseURL": "https://geofon.gfz-potsdam.de/contribute.php"}] ["other", "other", "other", "other"] yes {"api": "http://www.fdsn.org/webservices/", "apiType": "REST"} ["DOI"] https://geofon.gfz-potsdam.de/citation.php [] no yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {"syndication": "http://geofon.gfz-potsdam.de/eqinfo/list.php?fmt=rss", "syndicationType": "RSS"} The GEOFON earthquake monitoring system acts as key node for rapid global earthquake information for the European-Mediterranean Seismological Centre (EMSC) and as background centre of many tsunami warning centres in the Indian Ocean and in the Mediterranean. GEOFON is part of the Modular Earth Science Infrastructure (MESI) housed at the GeoForschungsZentrum providing services within the “Permanent networks”, “Data Distribution and Archiving” and “Communications” groups of MESI. More information about the submission of data can be found at: https://geofon.gfz-potsdam.de/contribute.php 2014-09-26 2021-11-16 +r3d100011327 Berkeley Drosophila Genome Project insitu eng [{"additionalName": "BDGP insitu homepage", "additionalNameLanguage": "eng"}, {"additionalName": "Patterns of gene expression in Drosophila embryogenesis", "additionalNameLanguage": "eng"}] https://insitu.fruitfly.org/cgi-bin/ex/insitu.pl ["RRID:SCR_002868", "RRID:nif-0000-25550"] ["https://insitu.fruitfly.org/cgi-bin/ex/insitu.pl?t=html&p=contact_us"] In early 2010 we updated the site to facilitate more rapid transfer of our data to the public database and focus our efforts on the core mission of providing expression pattern images to the research community. The original database http://www.fruitfly.org/index.html reproduced functions available on FlyBase, complicating our updates by the requirement to re-synchronize with FlyBase updates. Our expression reports on the new site still link to FlyBase gene reports, but we no longer reproduce FlyBase functions and therefore can update expression data on an ongoing basis instead of more infrequent major releases. All the functions relating to the expression patterns remain and we soon will add an option to search expression patterns by image similarity, in addition to annotation term searches. In a transitional phase we will leave both the old and the new sites up, but the newer data (post Release 2) will appear only on the new website. We welcome any feedback or requests for additional features. - The goals of the Drosophila Genome Center are to finish the sequence of the euchromatic genome of Drosophila melanogaster to high quality and to generate and maintain biological annotations of this sequence. In addition to genomic sequencing, the BDGP is 1) producing gene disruptions using P element-mediated mutagenesis on a scale unprecedented in metazoans; 2) characterizing the sequence and expression of cDNAs; and 3) developing informatics tools that support the experimental process, identify features of DNA sequence, and allow us to present up-to-date information about the annotated sequence to the research community. eng ["disciplinary"] {"size": "expression of 8.478 genes; 139.243 digital photographs", "updatedp": "2019-08-23"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["D.Melanogaster Release 5 Genome", "Drosophila Gene Collection", "EST Sequencing", "Expression Pattern", "Gene Disruption Project", "SNP map", "Universal Proteomics Resource", "modENCODE"] [{"institutionName": "Baylor College of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bcm.edu/", "institutionIdentifier": ["ISNI:0000 0001 2160 926X", "RRID:SCR_015037"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bcm.edu/contact-us"]}, {"institutionName": "Carnegie Institution of Washington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://carnegiescience.edu/", "institutionIdentifier": ["ISNI:0000 0004 0373 5870"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Drosophila Genome Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.fruitfly.org/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bdgp at fruitfly dot org", "http://www.fruitfly.org/about/contacts.html"]}, {"institutionName": "Howard Hughes Medical Institute", "institutionAdditionalName": ["HHMI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhmi.org/", "institutionIdentifier": ["ISNI:0000 0004 0619 9647", "RRID:SCR_011281", "RRID:nlx_98347"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ISNI:0000 0001 2231 4551", "RRID:SCR_011336", "RRID:nlx_37075"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ISNI:0000 0001 2233 9230", "OMICS_01554", "RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Energy", "institutionAdditionalName": ["Energy.gov"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ISNI:0000 0004 1261 5133", "RRID:SCR_012841", "RRID:nlx_86742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Berkeley, Department of Molecular and Cell Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mcb.berkeley.edu/", "institutionIdentifier": ["ISNI:0000 0004 0457 4474"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://mcb.berkeley.edu/about-the-department/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/copyleft/fdl.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://insitu.fruitfly.org/cgi-bin/ex/insitu.pl"}] restricted [] [] yes {"api": "https://insitu.fruitfly.org/cgi-bin/ex/insitu.pl?t=html&p=downloads", "apiType": "other"} ["none"] https://insitu.fruitfly.org/cgi-bin/ex/insitu.pl?t=html&p=faq [] unknown unknown [] [] {} The Berkeley Drosophila Genome Project (BDGP) is a consortium of the Drosophila Genome Center; Part of the BDGP Informatics Group is a member of the FlyBase consortium. 2014-09-30 2021-07-02 +r3d100011328 Centre National de Ressources Textuelles et Lexicales fra [{"additionalName": "CNRTL", "additionalNameLanguage": "fra"}] https://www.cnrtl.fr/ [] ["Jean-Marie.Pierrel@atilf.fr", "contact@cnrtl.fr"] Created in 2005 by the CNRS, CNRTL unites in a single portal, a set of linguistic resources and tools for language processing. The CNRTL includes the identification, documentation (metadata), standardization, storage, enhancement and dissemination of resources. The sustainability of the service and the data is guaranteed by the backing of the UMR ATILF (CNRS - Université Nancy), support of the CNRS and its integration in the excellence equipment project ORTOLANG . eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["DEDE", "Frantext", "MORPHALOU", "corpora", "dictionary", "etymology", "lexicon", "morphology"] [{"institutionName": "Analyse et Traitement Informatique de La Langue Francaise, Centre National de Ressources Textuelles et Lexicales", "institutionAdditionalName": ["CNRTL", "Computer Processing and Analysis of the French Language", "atilf"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.atilf.fr/spip.php?rubrique18", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.atilf.fr/spip.php?article82"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Huma-Num", "institutionAdditionalName": ["la TGIR des humanit\u00e9s num\u00e9riques"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Maison des sciences de l'homme Lorraine", "institutionAdditionalName": ["MSH Lorraine", "USR 3261"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.msh-lorraine.fr/actualites/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ortolang", "institutionAdditionalName": ["Open Resources and TOols for LANGuage", "Outils et Ressources pour un Traitement Optimis\u00e9 de la LANGue"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ortolang.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Lorraine", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.univ-lorraine.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Appel \u00e0 contributions", "policyURL": "https://www.cnrtl.fr/accueil/contributions_appel.php"}, {"policyName": "Conditions d'utilisation", "policyURL": "https://www.cnrtl.fr/accueil/infos.php"}, {"policyName": "Open Access", "policyURL": "http://openaccess.inist.fr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cnrtl.fr/accueil/infos.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cnrtl.fr/lexiques/prolex/licence_lgpl-lr.php"}] restricted [] ["unknown"] yes {} ["none"] [] yes yes [] [] {"syndication": "https://www.cnrtl.fr/portail/rssmotdujour.php", "syndicationType": "RSS"} CNRTL is part of the European CLARIN center network and participates with DARIAH Digital Research Infrastructure for the Arts and Humanities. CNRTL uses Lexical Markup Framework (LMF) ISO 24613 as metadata standard. SLDR for speech, and CNRTL for text, are the resources centres from which a French sub-network of CLARIN centres is being built: the ORTOLANG project (programme Investissements d'avenir, ANR-11-EQPX-0032). 2014-09-30 2019-08-23 +r3d100011329 Ortolang fra [{"additionalName": "Open Resources and TOols for LanGuage", "additionalNameLanguage": "eng"}, {"additionalName": "Outils et Ressources pour un Traitement Optimis\u00e9 de la LANGue", "additionalNameLanguage": "fra"}] https://www.ortolang.fr/ ["ISSN 2417-7482"] ["contact@ortolang.fr"] ORTOLANG is an EQUIPEX project accepted in February 2012 in the framework of investissements d’avenir. Its aim is to construct a network infrastructure including a repository of language data (corpora, lexicons, dictionaries etc.) and readily available, well-documented tools for its processing. Expected outcomes comprize: promoting research on analysis, modelling and automatic processing of our language to their highest international levels thanks to effective resource pooling; facilitating the use and transfer of resources and tools set up within public laboratories to industrial partners, notably SMEs which often cannot develop such resources and tools for language processing given the cost of investment; promoting French language and the regional languages of France by sharing expertise acquired by public laboratories. ORTOLANG is a service for the language, which is complementary to the service offered by Huma-Num (très grande infrastructure de recherche). Ortolang gives access to SLDR for speech, and CNRTL for text resources. eng ["disciplinary"] {"size": "466.568 files; 420 resources; 7.4 TB of data", "updatedp": "2019-08-23"} 2012 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["corpora", "dictionary", "etymology", "lexicon", "morphology"] [{"institutionName": "Analyse et Traitement Informatique de La Langue Francaise, Centre National de Ressources Textuelles et Lexicales", "institutionAdditionalName": ["CNRTL", "Computer Processing and Analysis of the French Language", "atilf"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.atilf.fr/spip.php?rubrique18", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Gouvernement de France, Commissariat g\u00e9n\u00e9ral \u00e0 l'Investissement d'avenir", "institutionAdditionalName": ["CGI"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gouvernement.fr/secretariat-general-pour-l-investissement-sgpi", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Huma-Num", "institutionAdditionalName": ["la TGIR des humanit\u00e9s num\u00e9riques"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Lorraine", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.univ-lorraine.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Mentions L\u00e9gales", "policyURL": "https://www.ortolang.fr/legal-notices"}, {"policyName": "Open Access", "policyURL": "http://openaccess.inist.fr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ortolang.fr/legal-notices"}] restricted [] [] yes {"api": "http://sldr.org/oai-pmh.php?verb=ListIdentifiers&metadataPrefix=oai_dc&set=ortolang", "apiType": "OAI-PMH"} ["ARK", "hdl"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Ortolang is part of the future French node of European CLARIN center network and participates with DARIAH Digital Research Infrastructure for the Arts and Humanities. SLDR for speech, and CNRTL for text, are the resources centres from which a French sub-network of CLARIN centres is being built: the ORTOLANG project (programme Investissements d'avenir, ANR-11-EQPX-0032). 2014-09-30 2020-11-26 +r3d100011330 ModelDB eng [] https://senselab.med.yale.edu/ModelDB/default.cshtml ["FAIRsharing_doi:10.25504/FAIRsharing.5rb3fk", "MIR:00000131", "OMICS_14850", "RRID:SCR_007271", "RRID:nif-0000-00004"] ["tom.morse@yale.edu"] ModelDB is a curated database of published models in the broad domain of computational neuroscience. It addresses the need for access to such models in order to evaluate their validity and extend their use. It can handle computational models expressed in any textual form, including procedural or declarative languages (e.g. C++, XML dialects) and source code written for any simulation environment. The model source code doesn't even have to reside inside ModelDB; it just has to be available from some publicly accessible online repository or WWW site. eng ["disciplinary"] {"size": "1.471 models", "updatedp": "2019-08-23"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20603 Developmental Neurobiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://senselab.med.yale.edu/ModelDB/mdb_model_sharing.cshtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CNS models", "brain", "epilepsy", "neurobiology", "neuroinformatics", "synapses"] [{"institutionName": "National Institutes of Health, National Institute of Mental Health", "institutionAdditionalName": ["NIH", "NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["ISNI:0000 0004 0464 0574", "RRID:SCR_011431", "RRID:nlx_inv_1005109"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Neuroscience Information Framework", "institutionAdditionalName": ["NIF"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://neuinfo.org//", "institutionIdentifier": ["OMICS_01190", "RRID:SCR_002894", "RRID:nif-0000-25673"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@neuinfo.org"]}, {"institutionName": "SenseLab Project", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://senselab.med.yale.edu/", "institutionIdentifier": ["RRID:SCR_007276", "RRID:nif-0000-00017"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["senselab_admin@mailman.yale.edu"]}, {"institutionName": "Yale University, Yale School of Medicine, Shepherd Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://medicine.yale.edu/lab/shepherd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://medicine.yale.edu/lab/shepherd/people/"]}] [{"policyName": "Model sharing in computational neuroscience", "policyURL": "http://www.scholarpedia.org/article/Model_sharing_in_computational_neuroscience"}, {"policyName": "Yale University Copyright Policy", "policyURL": "https://ocr.yale.edu/faculty/policies/yale-university-copyright-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ocr.yale.edu/faculty/policies/yale-university-copyright-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/"}] restricted [] ["CKAN"] yes {} ["none"] https://senselab.med.yale.edu/ModelDB/HowToCite.html [] yes yes [] [] {"syndication": "https://senselab.med.yale.edu/_site/api/rss2-0.cshtml?db=2&daysback=14", "syndicationType": "RSS"} Model DB is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. ModelDB uses a great number of resources that you find here https://senselab.med.yale.edu/ModelDB/mdbresources.cshtml 2014-12-16 2021-09-02 +r3d100011331 Xenbase eng [{"additionalName": "Xenopus Genomics Database", "additionalNameLanguage": "eng"}] http://www.xenbase.org/entry/ ["FAIRsharing_doi:10.25504/FAIRsharing.jrv6wj", "MIR:00000186", "OMICS_01665", "RRID:SCR_003280", "RRID:nif-0000-01286"] ["http://www.xenbase.org/other/static/contactUs.jsp", "xenbase@ucalgary.ca"] Xenbase's mission is to provide the international research community with a comprehensive, integrated and easy to use web based resource that gives access the diverse and rich genomic, expression and functional data available from Xenopus research. Xenbase also provides a critical data sharing infrastructure for many other NIH-funded projects, and is a focal point for the Xenopus community. In addition to our primary goal of supporting Xenopus researchers, Xenbase enhances the availability and visibility of Xenopus data to the broader biomedical research community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.xenbase.org/other/static/aboutXenbase.jsp [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["BLAST", "frog model", "gene expression", "genes", "genome", "protocols", "reagents"] [{"institutionName": "Cincinnati Children's Hospital, Zorn Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cincinnatichildrens.org/research/divisions/d/dev-biology/labs/zorn/xenbase", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cincinnatichildrens.org/research/divisions/d/dev-biology/labs/zorn/contact"]}, {"institutionName": "Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Calgary, Vize Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucalgary.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pvize@ucalgary.ca"]}] [{"policyName": "Terms and Conditions of Use", "policyURL": "http://www.xenbase.org/other/static/aboutXenbase.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.xenbase.org/other/static/aboutXenbase.jsp"}] restricted [] [] yes {"api": "ftp://ftp.xenbase.org/pub", "apiType": "FTP"} ["none"] http://www.xenbase.org/other/static/citingXenbase.jsp [] yes yes [] [] {} is covered by Elsevier. Development and Hardware Team is located at University of Calgary, Curation Team at Cincinnati Children's Hospital, Zorn Lab. 2014-12-16 2021-09-03 +r3d100011332 CLARIN INT Portal eng [{"additionalName": "CLARIN INT Center", "additionalNameLanguage": "eng"}, {"additionalName": "CLARIN IvdNT-portaal", "additionalNameLanguage": "nld"}] https://portal.clarin.inl.nl/ [] ["jantheo.bakker@inl.nl", "servicedesk@inl.nl"] The focus of CLARIN INT Portal is on resources that are relevant to the lexicological study of the Dutch language and on resources relevant for research in and development of language and speech technology. For Example: lexicons, lexical databases, text corpora, speech corpora, language and speech technology tools, etc. The resources are: Cornetto-LMF (Lexicon Markup Framework), Corpus of Contemporary Dutch (Corpus Hedendaags Nederlands), Corpus Gysseling, Corpus VU-DNC (VU University Diachronic News text Corpus), Dictionary of the Frisian Language (Woordenboek der Friese Taal), DuELME-LMF (Lexicon Markup Framework), Language Portal (Taalportaal), Namescape, NERD (Named Entity Recognition and Disambiguation) and TICCLops (Text-Induced Corpus Clean-up online processing system). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://ivdnt.org/clarin [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["Dutch language", "Frisian language", "corpora", "dictionary", "early middle Dutch", "lexicon"] [{"institutionName": "CLARIAH", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN European Research Infrastructure Consortium", "Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Instituut voor de Nederlandse Taal", "institutionAdditionalName": ["Dutch Language Institute", "INT", "IVDNT", "formerly: INL", "formerly: Institute for Dutch Lexicology", "formerly: Instituut voor Nederlandse Lexicologie"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ivdnt.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["griet.depoorter@ivdnt.org"]}] [{"policyName": "CLARIN Centre B assessment procedure", "policyURL": "https://www.clarin.eu/node/3767"}, {"policyName": "CLARIN Standards for LRT", "policyURL": "https://www.clarin.eu/sites/default/files/Standards%20for%20LRT-v6.pdf"}, {"policyName": "CTS Assessment for CLARIN INT", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/12/CLARIN-Center-IvdNT.pdf"}, {"policyName": "End User License Agreement", "policyURL": "https://portal.clarin.inl.nl/doc/end_user_license_agreement_INT.pdf"}, {"policyName": "Information about deposition", "policyURL": "https://portal.clarin.inl.nl/doc/information_about_deposition.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.html"}] open [] ["DSpace"] yes {"api": "https://vlo.clarin.eu/data/Instituut_voor_Nederlandse_Lexicologie_INL_Metadata_Repository.html", "apiType": "OAI-PMH"} ["hdl"] [] yes yes ["CLARIN certificate B", "other"] [] {} INL is part of the CLARIN-NL consortium and of CLARIN-ERIC. 2014-12-17 2019-08-26 +r3d100011333 CLARIN Centre Vienna eng [{"additionalName": "CCV", "additionalNameLanguage": "eng"}, {"additionalName": "CLARIN-AT", "additionalNameLanguage": "eng"}, {"additionalName": "LRP", "additionalNameLanguage": "eng"}, {"additionalName": "Language Resources Portal", "additionalNameLanguage": "eng"}] [] [] >>>!!!<<<>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2017 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora"] [{"institutionName": "Austrian Academy of Sciences, Austrian Centre for Digital Humanities", "institutionAdditionalName": ["ACDH-OEAW", "\u00d6sterreichische Akademie der Wissenschaften, Austrian Centre for Digital Humanities"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/acdh/acdh-home/", "institutionIdentifier": ["ROR:028bsh698"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["acdh(at)oeaw.ac.at"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "\u00d6sterreich, Bundesministerium f\u00fcr Wissenschaft, Forschung und Wirtschaft", "institutionAdditionalName": ["Federal Ministry of Science, Research and Economy", "bmwfw"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmwfw.gv.at/Seiten/default.aspx", "institutionIdentifier": ["ROR:02d229b24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00d6sterreischische Akademie der Wissenschaften", "institutionAdditionalName": ["Austrian Academy of Sciences", "OAW", "\u00d6AW"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/oesterreichische-akademie-der-wissenschaften/", "institutionIdentifier": ["ROR:03anc3s24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/at/legalcode"}] restricted [] ["Fedora"] {} ["hdl"] [] unknown yes [] [] {} CLARIN Centre Vienna was a certified CLARIN B Centre, the national coordinator of CLARIN-AT Consortium and member of CLARIN-ERIC. former description: CLARIN Centre Vienna (CCV) is Austria’s main connection point to the European network of CLARIN Centres. It is an Austrian contribution to CLARIN-ERIC and being hosted by the Austrian Centre for Digital Humanities of the Austrian Academy of Sciences (ACDH-OEAW). It is jointly funded by the Academy and the Federal Ministry of Science, Research and Economy. CCV is embedded in the Digital Humanities Austria (DHA) initiative which has started in January 2014. DHA represents the umbrella under which the DH infrastructure activities CLARIN and DARIAH are conducted in Austria. 2014-12-17 2021-02-10 +r3d100011334 Meertens Instituut Collecties nld [{"additionalName": "De Digitale Koepel", "additionalNameLanguage": "eng"}, {"additionalName": "Meertens Institute Collections", "additionalNameLanguage": "eng"}] http://www.meertens.knaw.nl/cms/en/ [] ["Marc.Kemps.Snijders@meertens.knaw.nl", "info@meertens.knaw.nl"] Currently the institute has more than 700 collections consisting of (digital) research data, digitized material, archival collections, printed material, handwritten questionnaires, maps and pictures. The focus is on resources relevant for the study of function, meaning and coherence of cultural expressions and resources relevant for the structural, dialectological and sociolinguistic study of language variation within the Dutch language. An overview is here http://www.meertens.knaw.nl/cms/en/collections/databases eng ["disciplinary"] {"size": "700 collections", "updatedp": "2019-08-27"} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.meertens.knaw.nl/cms/en/over-het-meertens-instituut/missie-visie-en-kernwaarden [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Dutch dialect", "Dutch names", "Dutch songs", "corpora"] [{"institutionName": "CLARIAH", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN European Research Infrastructure Consortium", "Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.nl/node/130", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.clarin.nl/contact.html"]}, {"institutionName": "Royal Netherlands Academy of Arts and Sciences, Meertens Institute", "institutionAdditionalName": ["KNAW", "Koninklijka Nederlandse Akademie van Wetenschappen, Meertens Instituut"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.meertens.knaw.nl/cms/nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.meertens.knaw.nl/cms/nl/contact"]}] [{"policyName": "CLARIN Centre B assessment procedure", "policyURL": "https://www.clarin.eu/node/3767"}, {"policyName": "DSA Assessment for CLARIN MI (Meertens Instituut)", "policyURL": "https://assessment.datasealofapproval.org/assessment_100/seal/html/"}, {"policyName": "Datanotitie Meertens Institute", "policyURL": "http://www.meertens.knaw.nl/cms/images/stories/pdf/algemeen/Collectieplan.pdf"}, {"policyName": "European Code of Conduct for Research Integrity", "policyURL": "http://www.allea.org/wp-content/uploads/2017/04/ALLEA-European-Code-of-Conduct-for-Research-Integrity-2017.pdf"}, {"policyName": "General Terms and conditions", "policyURL": "http://www.meertens.knaw.nl/cms/nl/collecties"}, {"policyName": "Open Access policies", "policyURL": "https://www.knaw.nl/en/topics/open-access-and-digital-preservation/open-access/overzicht?set_language=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] ["unknown"] yes {"api": "https://vlo.clarin.eu/data/Meertens_Institute_Metadata_Repository.html", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://www.meertens.knaw.nl/cms/en/nieuws-agenda/nieuws-overzicht?format=feed&type=rss", "syndicationType": "RSS"} MI is member of CLARIN-NL and CLARIN-ERIC. Metadata Schema is CMDI. MI usess Dublin Core Metadata. For long term digital preservation and archiving the Meertens Institute uses the services of DANS. 2014-12-17 2021-05-25 +r3d100011335 DHS Data Access eng [{"additionalName": "DNB Household Survey", "additionalNameLanguage": "eng"}] https://www.dhsdata.nl/site/users/login [] ["CentERdata@uvt.nl"] The DNB Household Survey (DHS) supplies longitudinal data to the international academic community, with a focus on the psychological and economic aspects of financial behavior. The study comprises information on work, pensions, housing, mortgages, income, assets, loans, health, economic and psychological concepts, and personal characteristics. The DHS data are collected from 2,000 households participating in the CentERpanel. The CentERpanel is an Internet panel that reflects the composition of the Dutch-speaking population in the Netherlands. Both the DHS as well as the CentERpanel, in which the study in conducted, are run by CentERdata eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1993 ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.centerdata.nl/en/projects-by-centerdata/dnb-household-survey-dhs [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Economic and Psychological Concepts", "accomodation", "assets", "health", "income", "liabilities", "mortages", "survey data", "work"] [{"institutionName": "CentERdata - Institute for data collection and research", "institutionAdditionalName": ["CentERdata - Instituut voor dataverzameling en onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.centerdata.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["CentERdata@uvt.nl"]}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/en", "institutionIdentifier": ["ROR:008pnp284", "RRID:SCR_000904", "RRID:nlx_156902"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Code of Conduct for the use of personal data in scientific research", "policyURL": "http://www.vsnu.nl/files/documenten/Domeinen/Accountability/Codes/Bijlage%20Gedragscode%20persoonsgegevens.pdf"}, {"policyName": "CoreTrustSeal assessment DHS Data Access", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/10/DHS-Data-Access.pdf"}, {"policyName": "DHS data rules and conditions", "policyURL": "https://www.centerdata.nl/en/databank/dhs-data-access"}, {"policyName": "Data Management and Preservation Policy of DNB Household Survey(DHS)", "policyURL": "https://www.centerdata.nl/sites/default/files/projectbestanden/data_management_and_preservation_dhs_1.1.pdf"}, {"policyName": "Statement Concerning the Use of CSS & DHS Data", "policyURL": "https://www.centerdata.nl/sites/default/files/bestanden/dhs_statement.pdf"}, {"policyName": "data deposit license agreements of DANS", "policyURL": "https://dans.knaw.nl/en/about/organisation-and-policy/legal-information"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.centerdata.nl/sites/default/files/bestanden/dhs_statement.pdf"}] closed [] ["unknown"] yes {"api": "https://www.dhsdata.nl/oai/", "apiType": "OAI-PMH"} ["DOI", "URN"] [] yes yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} For the future, there are plans to migrate the DHS data under a Questasy application, which is compatible with version 3 of the DDI (see https://www.centerdata.nl/en/software-solutions/questasy ). In addition DHS data are archived in EASY, the online archiving system of the Dutch Data Archiving and Networked Services (DANS). DHS data, can be accessed through NARCIS http://www.narcis.nl 2014-12-19 2021-03-24 +r3d100011336 eLaborate eng [{"additionalName": "Huygens ING: eLaborate", "additionalNameLanguage": "eng"}, {"additionalName": "e-laborate", "additionalNameLanguage": "eng"}] http://elaborate.huygens.knaw.nl/ [] ["info-elaborate@huygens.knaw.nl"] eLaborate is an online work environment in which scholars can upload scans, transcribe and annotate text, and publish the results as on online text edition which is freely available to all users. Short information about and a link to already published editions is presented on the page Editions under Published. Information about editions currently being prepared is posted on the page Ongoing projects. The eLaborate work environment for the creation and publication of online digital editions is developed by the Huygens Institute for the History of the Netherlands of the Royal Netherlands Academy of Arts and Sciences. Although the institute considers itself primarily a research facility and does not maintain a public collection profile, Huygens ING actively maintains almost 200 digitally available resource collections. eng ["disciplinary", "other"] {"size": "13 public collections", "updatedp": "2019-12-11"} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://elaborate.huygens.knaw.nl/?page_id=62 [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Netherlands", "Rembrandt"] [{"institutionName": "CLARIAH", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": ["Common Language Resources and Technology Insfrastructure - NL"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/en/", "institutionIdentifier": ["RRID:SCR_000904", "RRID:nlx_156902"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Huygens Institute for the History of the Netherlands of the Royal Netherlands Academy of Arts and Sciences", "institutionAdditionalName": ["Huygens ING - KNAW", "Huygens Instituut voor Nederlandse Geschiedenis - Koninklijke Nederlandse Akademie van Wetenschappen"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.huygens.knaw.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@huygens.knaw.nl"]}] [{"policyName": "Code of Conduct for the use of personal data in scientific research", "policyURL": "http://www.vsnu.nl/files/documenten/Domeinen/Accountability/Codes/Bijlage%20Gedragscode%20persoonsgegevens.pdf"}, {"policyName": "Huygens ING - KNAW data policy and IPR", "policyURL": "https://en.huygens.knaw.nl/informatie/documenten/"}, {"policyName": "KNAW policy on open access and digital preservation", "policyURL": "https://www.knaw.nl/en/topics/openscience/open-access-and-digital-preservation/open-access/policy"}, {"policyName": "NS facilitates open access data DANS facilitates open access data", "policyURL": "https://dans.knaw.nl/en/current/news/dans-facilitates-open-access-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://github.com/HuygensING/timbuctoo/blob/master/LICENSE.txt"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/nl/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.coretrustseal.org/about/history/data-seal-of-approval/"}] restricted [] ["other"] yes {"api": "http://oaipmh.huygens.knaw.nl/oai", "apiType": "OAI-PMH"} ["hdl"] [] yes yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://elaborate.huygens.knaw.nl/?feed=rss2", "syndicationType": "RSS"} Huygens ING is a participant in the CLARIN NL consortium, which is a member of the European CLARIN ERIC organisation. eLaborate use Dublin Core metadata standards. Data are archived in EASY, the online archiving system of the Dutch Data Archiving and Networked Services (DANS). 2015-01-09 2020-02-14 +r3d100011337 IMS Universität Stuttgart Repository eng [{"additionalName": "IMS Fedora Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Repository of the CLARIN-D Centre at IMS Stuttgart", "additionalNameLanguage": "eng"}] http://clarin04.ims.uni-stuttgart.de/repo/ [] ["clarin@ims.uni-stuttgart.de", "https://www.uni-stuttgart.de/cgi-bin/mail.cgi?clarin=ims.uni-stuttgart.de"] Currently, the IMS repository focuses on resources provided by the Institute for Natural Language Processing in Stuttgart (IMS) and other CLARIN-D related institutions such as the local Collaborative Research Centre 732 (SFB 732) as well as institutions and/or organizations that belong to the CLARIN-D extended scientific community. Comprehensive guidelines and workflows for submission by external contributors are being compiled based on the experiences in archiving such in-house resources. eng ["disciplinary", "institutional"] {"size": "82 datasets", "updatedp": "2019-08-27"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.ims.uni-stuttgart.de/forschung/projekte/ClarinD.en.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["conversation", "corpora", "speechCorpus", "transcription"] [{"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Stuttgart, Institut f\u00fcr Linguistik / Anglistik; Sonferforschungsbereich 732", "institutionAdditionalName": ["SFB 732"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ims.uni-stuttgart.de/forschung/projekte/sfb-732.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-stuttgart.de/cgi-bin/mail.cgi?sabine.mohr=ifla.uni-stuttgart.de"]}, {"institutionName": "Universit\u00e4t Stuttgart, Institut f\u00fcr Maschinelle Sprachverarbeitung, Forschungszentrum Informatik", "institutionAdditionalName": ["IMS", "University Stuttgart, Institute for Natural Language Processing"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ims.uni-stuttgart.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ims@ims.uni-stuttgart.de"]}] [{"policyName": "Centre B Certificate IMS, Universit\u00e4t Stuttgart", "policyURL": "https://www.clarin.eu/node/3818"}, {"policyName": "G\u00c9ANT Data Protection Code of Conduct", "policyURL": "https://geant3plus.archive.geant.net/uri/dataprotection-code-of-conduct/v1/Pages/default.aspx"}, {"policyName": "IMS Stuttgart CLARIN Centre repository Terms of Use", "policyURL": "http://clarin04.ims.uni-stuttgart.de/repo/resources/terms-of-use.pdf"}, {"policyName": "Report on CLARIN Model Contracts", "policyURL": "https://weblicht.sfs.uni-tuebingen.de/Reports/D-SPIN_R7.2.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://weblicht.sfs.uni-tuebingen.de/Reports/D-SPIN_R7.2.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.eu/content/licenses-and-clarin-categories"}] restricted [{"dataUploadLicenseName": "CLARIN Deposition & License Agreement", "dataUploadLicenseURL": "http://clarin04.ims.uni-stuttgart.de/repo/resources/data_ipr.pdf"}] ["Fedora"] yes {"api": "https://vlo.clarin.eu/data/clarin/results/cmdi/IMS_Repository/", "apiType": "OAI-PMH"} ["hdl"] [] yes yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Within CLARIN, IMS data is aggregated and can be searched online via software components such as the Virtual Language Oberservatory (https://vlo.clarin.eu/search;jsessionid=6DE196689CC47BF860822CCA6ABCD98F?1&fq=organisation:Universit%C3%A4t+Stuttgart) 2015-01-09 2021-08-24 +r3d100011338 TRAILS eng [{"additionalName": "Tracking Adolescents' Individual Lives Survey", "additionalNameLanguage": "eng"}] https://www.trails.nl/ [] ["http://www.trails.nl/en/topmenu/contact", "trails-cc@umcg.nl", "trails@umcg.nl"] TRAILS is a prospective cohort study, which started in 2001 with population cohort and 2004 with a clinical cohort (CC). Since then, a group of 2500 young people from the Northern part of the Netherlands has been closely monitored in order to chart and explain their mental, physical, and social development. These TRAILS participants have been measured every two to three years, by means of questionnaires, interviews, and all kinds of tests. By now, we have collected information that spans the total period from preadolescence up until young adulthood. One of the main goals of TRAILS is to contribute to the knowledge of the development of emotional and behavioral problems and the (social) functioning of preadolescents into adulthood, their determinants, and underlying mechanisms. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.trails.nl/en/hoofdmenu/over-trails [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Dutch study", "adolescence", "bullying", "genetic factors", "mental health", "microdata", "social development"] [{"institutionName": "Erasmus Medical Center Rotterdam", "institutionAdditionalName": ["Erasmus MC Rotterdam"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.erasmusmc.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.erasmusmc.nl/en/contact-us"]}, {"institutionName": "European Science Foundation", "institutionAdditionalName": ["ESF", "Eurostress project FP-006"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.esf.org/esf/european-science-foundation/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2009", "institutionContact": ["http://www.esf.org/contact/"]}, {"institutionName": "Government of the Netherlands , Ministry of Justice and Security", "institutionAdditionalName": ["Rijskoverheid, Ministerie van Veiligheid en Justitie", "VENJ", "WODC"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.government.nl/ministries/ministry-of-justice-and-security", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.government.nl/ministries/ministry-of-justice-and-security/contact"]}, {"institutionName": "Gratama-Stichting", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gratama.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@gratama.net"]}, {"institutionName": "Netherlands Organization for Scientific Research", "institutionAdditionalName": ["NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nwo.nl/en", "institutionIdentifier": ["RRID:SCR_000988", "RRID:nlx_151487"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nwo.nl/en/contact"]}, {"institutionName": "Universiteit Medisch centrum St. Radboud Jijmegen", "institutionAdditionalName": ["Radboud University Nijmegen Medical Centre", "Radboudumc"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.radboudumc.nl/patientenzorg", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@radboudumc.nl"]}, {"institutionName": "Universiteit Utrecht", "institutionAdditionalName": ["Utrecht University"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uu.nl/", "institutionIdentifier": ["RRID:SCR_011753", "RRID:nlx_67641"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uu.nl/en/organisation/contact"]}, {"institutionName": "University of Groningen", "institutionAdditionalName": ["Rijksuniversiteit Groningen"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rug.nl/", "institutionIdentifier": ["RRID:SCR_011650", "RRID:nlx_149167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rug.nl/about-us/how-to-find-us/contact"]}] [{"policyName": "DANS depositing instructions", "policyURL": "https://dans.knaw.nl/en/about/services/easy/information-about-depositing-data"}, {"policyName": "DANS license agreement", "policyURL": "https://dans.knaw.nl/en/content/dans-licence-agreement-deposited-data"}, {"policyName": "DSA Assessment TRAILS", "policyURL": "https://www.coretrustseal.org/about/history/data-seal-of-approval/"}, {"policyName": "TRAILS Data-Use", "policyURL": "https://www.trails.nl/en/hoofdmenu/data/data-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.trails.nl/en/hoofdmenu/data/data-use"}] closed [] ["unknown"] {} ["none"] [] yes yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} TRAILS data available to external data consumers are archived in DANS (Data Archiving and Networked Services) EASY (Electronic Archiving System). TRAILS uses Dublin Core metadata. 2015-01-12 2019-08-27 +r3d100011339 GAMS deu [{"additionalName": "Geisteswissenschaftliches Asset Management System", "additionalNameLanguage": "deu"}, {"additionalName": "Humanities' Asset Management System", "additionalNameLanguage": "eng"}] http://gams.uni-graz.at/context:gams [] ["zim@uni-graz.at"] GAMS is the asset management system at the University of Graz for the storage and management of digital resources that are produced in scientific contexts. eng ["institutional"] {"size": "", "updatedp": ""} 2005 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "10503 European and American Literature", "scheme": "DFG"}, {"name": "10504 General and Comparative Literature and Cultural Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://gams.uni-graz.at/archive/objects/context:gams/methods/sdef:Context/get?mode=about&locale=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cirilo", "corpora", "history of science", "podcast", "translations", "visualizations of quantum mechanics"] [{"institutionName": "Karl-Franzens-Universit\u00e4t Graz, Zentrum f\u00fcr Informationsmodellierung", "institutionAdditionalName": ["University of Graz, Austrian Centre for Information Modelling", "Universit\u00e4t Graz", "ZIM"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://informationsmodellierung.uni-graz.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["zim@uni-graz.at"]}] [{"policyName": "CoreTrustSeal Assessment for GAMS", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/04/GAMS-Geisteswissenschaftliches-Asset-Management-System.pdf"}, {"policyName": "Deposition License Agreement", "policyURL": "https://static.uni-graz.at/fileadmin/gewi-zentren/Informationsmodellierung/PDF/Repository-Depositors-Agreement_GAMS_V3.pdf"}, {"policyName": "Impressum", "policyURL": "https://www.uni-graz.at/de/impressum/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/at/"}] restricted [] ["Fedora"] yes {"api": "http://gams.uni-graz.at/oaiprovider?verb=Identify", "apiType": "OAI-PMH"} ["PURL", "hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Cirilo is a client for content preservation and curation of data in FEDORA-based Repositories and Austria's contribution to DARIAH-EU Task "Reference Software Packages". 2014-11-17 2021-09-21 +r3d100011340 Network Repository eng [{"additionalName": "Network Data Repository, Graph Data, Social Networks", "additionalNameLanguage": "eng"}] http://networkrepository.com [] ["help@networkrepository.com"] Network Repository is the first interactive data repository for graph and network data. It hosts graph and network datasets, containing hundreds of real-world networks and benchmark datasets. Unlike other data repositories, Network Repository provides interactive analysis and visualization capabilities to allow researchers to explore, compare, and investigate graph data in real-time on the web. eng ["disciplinary"] {"size": "37 Data collections; 6.612 Networks; 57 Temporal Networks; 211 ML datasets", "updatedp": "2019-08-27"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://networkrepository.com/platform.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["benchmark data sets", "exploratory analytics", "graph data", "interaction", "machine learning data", "network data", "networks", "recommendation system data", "social network data", "statistics", "visualization"] [{"institutionName": "Purdue University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.purdue.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["info@BigGraphAnalytics.com"]}] [{"policyName": "Data License and Policy", "policyURL": "http://networkrepository.com/policy.php"}, {"policyName": "Notice and Disclaimer", "policyURL": "http://networkrepository.com/page_terms_disclaimer.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://networkrepository.com/page_terms_disclaimer.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://networkrepository.com/page_platform.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://networkrepository.com/policy.php"}] open [] ["other"] yes {} ["none"] http://networkrepository.com/page_ack.php [] yes yes [] [] {} is covered by Thomson Reuters Data Citation Index. 2014-10-06 2021-08-25 +r3d100011343 Biological Collection Access Service for Europe eng [{"additionalName": "BioCASE", "additionalNameLanguage": "eng"}] http://www.biocase.org ["FAIRsharing_doi:10.25504/FAIRsharing.zv11j3"] ["secretariat@biocase.org"] The Biological Collection Access Service for Europe, BioCASE, is a transnational network of biological collections of all kinds. BioCASE enables widespread unified access to distributed and heterogeneous European collection and observational databases using open-source, system-independent software and open data standards and protocols. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.biocase.org/whats_biocase/index.shtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biodiversity", "botany", "taxonomy"] [{"institutionName": "Freie Universit\u00e4t Berlin, Botanischer Garten und Botanisches Museum Berlin-Dahlem", "institutionAdditionalName": ["BGBM"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bgbm.org/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.biocase.org/help_desk/index.shtml"]}] [{"policyName": "GBIF Data publisher agreement", "policyURL": "https://www.gbif.org/terms/data-publisher"}, {"policyName": "GBIF Terms of use", "policyURL": "https://www.gbif.org/terms"}, {"policyName": "Imprint BGBM", "policyURL": "http://www.bgbm.org/en/imprint"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gbif.org/terms/data-user"}] open [{"dataUploadLicenseName": "Code of Conduct for Data and Portal Nodes", "dataUploadLicenseURL": "http://search.biocase.org/edit/search/units/gbifAgreement/"}, {"dataUploadLicenseName": "GBIF Data Sharing Agreement", "dataUploadLicenseURL": "https://www.gbif.org/terms/data-publisher"}] ["other", "other"] no {} ["none"] https://www.gbif.org/terms/data-user [] no no [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://www.biocase.org/rss.xml", "syndicationType": "RSS"} is covered by Elsevier. BioCASE builds on the predecessor projects CDEFD, BioCISE, and ENHSIN. These laid the groundwork for implementing a fully functional service unlocking the immense biological knowledge base formed by biological collections. BioCASE and GBIF have overlapping objectives. Both cover collection data, but GBIF concentrates on digitised unit-level resources, whereas BioCASE includes also metadata on non-databased collections. Projects and Initiatives related to BioCASE are: http://www.biocase.org/partners_links/index.shtml 2015-01-19 2021-10-25 +r3d100011344 Collaborative Climate Community Data and Processing Grid eng [{"additionalName": "C3Grid", "additionalNameLanguage": "eng"}] https://www.dkrz.de/en/projects-and-partners/projects-1/c3-inad?set_language=en ["biodbcore-001538"] ["data@dkrz.de"] >>>!!!<<< The repository is no longer available. >>>!!!<<< C3-Grid is an ALREADY FINISHED project within D-Grid, the initiative to promote a grid-based e-Science framework in Germany. The goal of C3-Grid is to support the workflow of Earth system researchers. A grid infrastructure will be implemented that allows efficient distributed data processing and inter-institutional data exchange. Aim of the effort was to develop an infrastructure for uniform access to heterogeneous data and distributed data processing. The work was structured in two projects funded by the Federal Ministry of Education and Research. The first project was part of the D-Grid initiative and explored the potential of grid technology for climate research and developed a prototype infrastructure. Details about the C3Grid architecture are described in “Earth System Modelling – Volume 6”. In the second phase "C3Grid - INAD: Towards an Infrastructure for General Access to Climate Data" this infrastructure was improved especially with respect to interoperability to Earth System Grid Federation (ESGF). Further the portfolio of available diagnostic workflows was expanded. These workflows can be re-used now in adjacent infrastructures MiKlip Evaluation Tool (http://www.fona-miklip.de/en/index.php) and as Web Processes within the Birdhouse Framework (http://bird-house.github.io/). The Birdhouse Framework is now funded as part of the European Copernicus Climate Change Service (https://climate.copernicus.eu/) managed by ECMWF and will be extended to provide scalable processing services for ESGF hosted data at DKRZ as well as IPSL and BADC. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 2016 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["climate research"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}, {"institutionName": "Deutsches Klimarechenzentrum", "institutionAdditionalName": ["DKRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.dkrz.de/?set_language=en&cl=en", "institutionIdentifier": ["ROR:03ztgj037"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dkrz.de/about-en/contact"]}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.foerderinfo.bund.de/en/contact-44.php"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The C3Grid is the predecessor of C3GRID-INAD project. It provided an infrastructure of data search, some workflows, data fetch facilities to the climate researchers. C3Grid-INAD is a step further to the C3Grid project, thus integrating all the services provided in C3Grid and extending additional features e.g. workflows, data archives etc. in addition to the former ones. Moreover, C3Grid-INAD provides a common platform to the climate researchers (users) to access climate data. Partners: https://portal.enes.org/c3web/about-c3grid/c3-inad/partner 2015-01-19 2021-11-16 +r3d100011345 DARIAH-DE Repository deu [] https://de.dariah.eu/repository [] ["https://de.dariah.eu/kontakt", "info@de.dariah.eu"] The DARIAH-DE repository is a digital long-term archive for human and cultural-scientific research data. Each object described and stored in the DARIAH-DE Repository has a unique and lasting Persistent Identifier (DOI), with which it is permanently referenced, cited, and kept available for the long term. In addition, the DARIAH-DE Repository enables the sustainable and secure archiving of data collections. The DARIAH-DE Repository is not only to DARIAH-DE associated research projects, but also to individual researchers as well as research projects that want to save their research data persistently, referenceable and long-term archived and make it available to third parties. The main focus is the simple and user-oriented access to long-term storage of research data. To ensure its long term sustainability, the DARIAH-DE Repository is operated by the Humanities Data Centre. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://de.dariah.eu/dariah-de-in-kurze [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["digital humanities"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "DARIAH-DE", "institutionAdditionalName": ["Digital Research Infrastructure for the Arts and Humanities"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://de.dariah.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@de.dariah.eu"]}, {"institutionName": "DARIAH-EU", "institutionAdditionalName": ["Digital Research Infrastructure for the Arts and Humanities"], "institutionCountry": "EEC", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.dariah.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dariah.eu/contact/"]}, {"institutionName": "Georg-August-Universit\u00e4t G\u00f6ttingen, Nieders\u00e4chsische Staats- und Universit\u00e4tsbibliothek", "institutionAdditionalName": ["G\u00f6ttingen State and University Library", "SUB G\u00f6ttingen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/en/news/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sub.uni-goettingen.de/en/contact/", "https://www.sub.uni-goettingen.de/en/projects-research/project-details/projekt/dariah-de-iii-1/"]}, {"institutionName": "Humanities Data Centre", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://humanities-data-centre.de/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["https://humanities-data-centre.de/?page_id=20"]}] [{"policyName": "DARIAH-DE Repository Terms of Use", "policyURL": "https://hdl.handle.net/21.11113/0000-000B-CB48-0@data"}, {"policyName": "Nutzungsbedingungen des DARIAH-DE Repository", "policyURL": "https://hdl.handle.net/21.11113/0000-000B-CB49-F@data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://de.dariah.eu/verwendete-lizenzen"}] restricted [] ["unknown"] no {"api": "https://repository.de.dariah.eu/1.0/oaipmh/oai", "apiType": "OAI-PMH"} ["DOI", "hdl"] [] no no [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-01-20 2020-11-26 +r3d100011347 Deutsches Register Klinischer Studien deu [{"additionalName": "DRKS", "additionalNameLanguage": "deu"}, {"additionalName": "German Clinical Trials Register", "additionalNameLanguage": "eng"}] https://www.drks.de/drks_web/ [] ["datenmanagement@drks.de", "drks@bfarm.de", "https://www.drks.de/drks_web/navigate.do?navigationId=contact"] The DRKS is an open access online register for clinical trials conducted in Germany, which allows all users to search, register and share information on clinical trials. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.drks.de/drks_web/navigate.do?navigationId=about.aims&messageDE=Ziele&messageEN=Aims [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["EUDAMED-Number", "EudraCT-Number", "ICMJE", "ICTRP", "International Clinical Trial Platform", "International Committee of Medical Journal Editors", "UTN", "Universal Trial Number", "WHO", "clinical trial"] [{"institutionName": "Deutsches Institut f\u00fcr Medizinische Dokumentation und Information", "institutionAdditionalName": ["DIMDI", "German Institute of Medical Documentation and Information"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dimdi.de/dynamic/de/startseite", "institutionIdentifier": [], "responsibilityStartDate": "01.07.2017", "responsibilityEndDate": "", "institutionContact": ["https://www.dimdi.de/dynamic/en/dimdi/contact/index.html", "https://www.drks.de/drks_web/navigate.do?navigationId=about.orga&messageDE=Team&messageEN=Team"]}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": ["https://www.bmbf.de/de/kontakt.php"]}, {"institutionName": "University Medical Center Freiburg, German Cochrane Center", "institutionAdditionalName": ["DCZ", "Universit\u00e4tsklinikums Freiburg, Deutsches Cochrane Zentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cochrane.de/de/willkommen-auf-unseren-webseiten", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": ["http://www.cochrane.de/de/team"]}, {"institutionName": "University Medical Center Freiburg, Institute of Medical Biometry and Statistics", "institutionAdditionalName": ["IMBI", "Universit\u00e4tsklinikum Freiburg, Institut f\u00fcr Medizinische Biometrie und Statistik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imbi.uni-freiburg.de/?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "30.06.2017", "institutionContact": ["http://www.imbi.uni-freiburg.de/Kontakt-en?set_language=en"]}] [{"policyName": "Clinical Trials", "policyURL": "http://www.icmje.org/recommendations/browse/publishing-and-editorial-issues/clinical-trial-registration.html"}, {"policyName": "HonCode", "policyURL": "http://www.hon.ch/HONcode/Patients/Visitor/visitor_de.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icmje.org/recommendations/browse/publishing-and-editorial-issues/copyright.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.clinicaltrials.gov/ct2/about-site/terms-conditions#Use"}] restricted [] ["unknown"] no {} ["none"] [] yes unknown [] [] {} 2015-01-26 2021-08-24 +r3d100011349 Europäische Geschichte Online deu [{"additionalName": "EGO", "additionalNameLanguage": "deu"}, {"additionalName": "European History Online", "additionalNameLanguage": "eng"}] http://www.ieg-ego.eu [] ["http://ieg-ego.eu/en/ego/contact"] EGO examines 500 years of modern European history by transcending national, disciplinary and methodological boundaries. Ten thematic threads tie together processes of intercultural exchange whose influence extended beyond national and cultural borders. These range from religion, politics, science and law to art and music, as well as to the economy, technology and the military. EGO employs the newest research to present European transfer processes comprehensively in a way that is easy to understand. The articles link to images, sources, statistics, animated and interactive maps, and audio and visual clips. EGO thereby takes full advantage of the Internet's multi-media potential. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10604 Islamic Studies, Arabian Studies, Semitic Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "10701 Protestant Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ieg-ego.eu/en/ego#ProjectFocus [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["eastern europe", "ethnology", "european studies", "history of europe", "history of literature", "history of medicine", "history of technology", "military history", "music history", "religion"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Leibniz-Institut f\u00fcr Europ\u00e4ische Geschichte", "institutionAdditionalName": ["IEG", "Leibniz Institute of European History"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ieg-mainz.de/likecms.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ieg-mainz.de"]}, {"institutionName": "Ministerium f\u00fcr Bildung, Wissenschaft, Weiterbildung und Kultur des Landes Rheinland-Pfalz", "institutionAdditionalName": ["MBWWK"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mwwk.rlp.de/de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2009", "institutionContact": ["https://mwwk.rlp.de/de/kontakt/"]}, {"institutionName": "Trier Centre for Digital Humanities", "institutionAdditionalName": ["Universit\u00e4t Trier, Kompetenzzentrum f\u00fcr elektronische Erschlie\u00dfungs- und Publikationsverfahren in den Geisteswissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://kompetenzzentrum.uni-trier.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kompetenzzentrum@uni-trier.de"]}] [{"policyName": "Legal Details", "policyURL": "http://ieg-ego.eu/en/ego/legal-details"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/deed.de"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ieg-ego.eu/en/ego/legal-details"}] closed [] ["unknown"] no {} ["URN"] http://ieg-ego.eu/en/ego/faq-english#HowdoIciteanEGOarticle [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-01-22 2019-08-28 +r3d100011352 OceanRep GEOMAR Repository eng [{"additionalName": "GEOMAR Helmholtz Centre for Ocean Research Kiel", "additionalNameLanguage": "eng"}, {"additionalName": "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel", "additionalNameLanguage": "deu"}] https://oceanrep.geomar.de/ [] ["bibliotheksleitung@geomar.de", "https://www.geomar.de/en/bibliothek"] GEOMAR Helmholtz Centre for Ocean Research Kiel is one of the leading marine science institutions in Europe. GEOMAR investigates the chemical, physical, biological, and geological processes in the oceans, as well as their interactions with the seafloor and the atmosphere. OceanRep is an open access digital collection containing the research output of GEOMAR staff and students. Included are journal articles, conference papers, book chapters, theses and more, - with fulltext, if available. Research data are linked to the publications entries. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://oceanrep.geomar.de/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biological oceanography", "chemical oceanography", "climate change", "deep sea", "dynamics of the ocean floor", "geosystem", "marine biochemistry", "marine ecology", "marine ecosystem", "marine hazards", "marine resources", "ocean", "ocean circulation", "ocean floor", "palaeo-oceanography", "plate tectonics", "tropical ocean"] [{"institutionName": "GEOMAR Helmholtz Centre for Ocean Research Kiel, Library", "institutionAdditionalName": ["GEOMAR", "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel, Bibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/en/bibliothek", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliotheksleitung@geomar.de", "info@geomar.de"]}, {"institutionName": "Helmholtz Association", "institutionAdditionalName": ["Helmholtz-Gemeinschaft Deutscher Forschungszentren"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz.de/en/contact/"]}] [{"policyName": "Repository Policies (Metadata, Data, Content, Submission Preservation Policy)", "policyURL": "http://oceanrep.geomar.de/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://oceanrep.geomar.de/faqs.html#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://oceanrep.geomar.de/oa.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://oceanrep.geomar.de/policies.html"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "https://oceanrep.geomar.de/policies.html"}] ["EPrints"] yes {"api": "http://oceanrep.geomar.de/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] https://oceanrep.geomar.de/help/ ["ORCID"] no yes [] [] {"syndication": "http://oceanrep.geomar.de/cgi/latest_tool?output=RSS2", "syndicationType": "RSS"} Data Management Portal for Kiel Marine Sciences hosted at GEOMAR: https://portal.geomar.de/ Data Portal German Marine Research: https://manida.awi.de/search 2015-01-19 2021-04-06 +r3d100011355 Jülich ObservatorY for Cloud Evolution - Core Facility eng [{"additionalName": "JOYCE - CF", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: JOYCE", "additionalNameLanguage": "eng"}] http://gop.meteo.uni-koeln.de/ag_crewell/doku.php?id=sites:joyce#joyce [] ["bernhard.pospichal@uni-koeln.de", "jbeer@uni-bonn.de", "loehnert@meteo.uni-koeln.de"] The Jülich Observatory for Cloud Evolution (JOYCE) operates ground-based active and passive remote sensing instruments for cloud and precipitation observations. ​JOYCE is based on a long-term successful collaboration between the University of Cologne, the University of Bonn and the Research Centre Jülich. Since 2017 JOYCE is transformed into a Core Facility (JOYCE - CF) funded by the DFG (Deutsche Forschungsgemeinschaft) with the aim of high quality radar and passive microwave observations of the atmosphere. JOYCE will serve as a reference center for best practices in data acquisition, storage and distribution. JOYCE instrumentation aims to observe spatial and temporal variability of atmospheric water cycle variables. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "40601 Thermodynamics and Kinetics of Materials", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://geomet.uni-koeln.de/index.php?id=2672&L=1 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["AERI", "CT25K", "HATPRO-TOPHAT", "MIRA", "MRR", "Micro Rain Radar", "Sodar", "TSI", "Total\u00f6 Sky Imager", "climatology", "meteorology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["FZJ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.fz-juelich.de/portal/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fz-juelich.de/portal/DE/Service/Kontakt/kontakt_node.html?cms_docId=364622"]}, {"institutionName": "Transregional Collaborative Research Centre 32", "institutionAdditionalName": ["TR32"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.tr32.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@tr32.de"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Mathematisch-Naturwissenschaftliche Fakult\u00e4t, Institut f\u00fcr Geophysik und Meteorologie", "institutionAdditionalName": ["University of Cologne, Faculty of Mathematics and Natural Sciences, Institute for Geophysics and Meteorology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://geomet.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://geomet.uni-koeln.de/index.php?id=1082&L=1"]}] [{"policyName": "Data availability statement", "policyURL": "http://gop.meteo.uni-koeln.de/ag_crewell/doku.php?id=sites:joyce#data_availability"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://gop.meteo.uni-koeln.de/ag_crewell/doku.php?id=sites:joyce#data_availability"}] restricted [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2015-01-27 2020-09-11 +r3d100011360 Screening Unit Berlin-Buch eng [] https://www.leibniz-fmp.de/screeningunit [] ["info@fmp-berlin.de", "screening@fmp-berlin.de"] The mission of the platform is to enable access for academic projects towards experiments in high-throughput without loss of IP and on a cost basis, which does not restrict access towards HTS usage. The FMP hosts the central open access technology platform of EU-OPENSCREEN, the ChemBioNet and theHelmholtz-Initiative für Wirkstoffforschung, the Screening Unit. The Unit serves for systematic screening of large compound or genome-wide RNAi libraries with state-of-the-art equipment like automated microscopes and microfluidic systems. The Screening Unit is part of the Chemical Biology Platform of the FMP also supported by the MDC. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.leibniz-fmp.de/screeningunit [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biotechnology", "chemical biology", "diagnosis", "genomics", "image analysis", "medicinal chemistry", "molecular medicine", "systems biology"] [{"institutionName": "Helmholtz Zentrum M\u00fcnchen - Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt", "institutionAdditionalName": ["HMGU"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/en/index.html", "institutionIdentifier": ["ROR:00cfam450"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Molekulare Pharmakologie im Forschungsverbund Berlin e.V.", "institutionAdditionalName": ["FMP"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-fmp.de/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@fmp-berlin.de"]}, {"institutionName": "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin in der Helmholtz-Gemeinschaft", "institutionAdditionalName": ["MDC"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Storage Guidelines Screening Facility FMP", "policyURL": "https://www.leibniz-fmp.de/fileadmin/user_upload/Core_Facilities/Screening_Unit/downloads/Data_Storage_Guidelines_Screening_Facility_FMP.pdf"}, {"policyName": "Forschungsverbund Berlin Positionspapier", "policyURL": "https://www.fv-berlin.de/ueber-uns/organisation/satzung-positionspapier"}, {"policyName": "Guidelines", "policyURL": "https://www.leibniz-fmp.de/fileadmin/user_upload/Core_Facilities/Screening_Unit/downloads/Guidelines.pdf"}, {"policyName": "Imprint", "policyURL": "https://www.leibniz-fmp.de/impressum"}, {"policyName": "Nutzerordnung ChemBioNet: Screening", "policyURL": "https://www.leibniz-fmp.de/fileadmin/user_upload/Core_Facilities/Screening_Unit/downloads/Guidelines.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.leibniz-fmp.de/impressum"}] closed [] ["unknown"] no {} ["none"] [] yes yes [] [] {} 2015-01-28 2020-08-12 +r3d100011361 European Chemical Biology Database eng [{"additionalName": "ECBD", "additionalNameLanguage": "eng"}, {"additionalName": "EU-Openscreen's database", "additionalNameLanguage": "eng"}] https://www.eu-openscreen-data.eu/ [] ["office@eu-openscreen.eu"] The European Chemical Biology Database (ECBD) is a prototype database, currently being developed for EU-OPENSCREEN. The purpose of ECBD is to store and integrate screening data from EU-OPENSCREEN partners and contributors. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["chemical biology", "systems biology"] [{"institutionName": "EU-OPENSCREEN", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eu-openscreen.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["office@eu-openscreen.eu"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}, {"institutionName": "Leibniz-Institut f\u00fcr Molekulare Pharmakologie", "institutionAdditionalName": ["FMP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "EBI Terms of Use of the EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "Principles of Service Provision", "policyURL": "https://www.ebi.ac.uk/services"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Public Domain", "dataUploadLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] ["unknown"] yes {"api": "https://www.ebi.ac.uk/seqdb/confluence/display/WEBSERVICES/%28Retired%29+EMBL-EBI+Web+Services", "apiType": "REST"} ["none"] [] no no [] [] {} 2015-01-29 2021-08-25 +r3d100011363 Der Bildbestand der Deutschen Kolonialgesellschaft in der Universitätsbibliothek Frankfurt am Main deu [] http://www.ub.bildarchiv-dkg.uni-frankfurt.de/ [] ["archivzentrum@ub.uni-frankfurt.de"] The project of the Stadt- und Universitätsbibliothek Frankfurt am Main encompasses safety filming of 50.000 to 70.000 historical photographs from the German colonial history. Public access to the pictures is via a research database on the internet. eng ["institutional"] {"size": "50.000 historical photographs", "updatedp": "2019-12-20"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.ub.bildarchiv-dkg.uni-frankfurt.de/Bildprojekt/DFG-Projekt/DFG-Projekt.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Cameroon Tanzania", "German colonies", "German settlements", "German-East-Africa", "Kaiser-Wilhelmsland", "Kiautschou", "Marshall-Islands", "Namibia", "Papua-New-Guinee", "Rwanda carolinas", "Tsingtau", "Western-Samoa", "agriculture trade", "colonial administration", "colonial troops", "discovery research", "education mission", "federation of Micronesia", "landscape, harbour", "marianas mining", "navy", "old photographs", "portrait", "railway traffic", "vegetation animals"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["postmaster@dfg.de"]}, {"institutionName": "Hochschule f\u00fcr Technik und Wirtschaft Dresden", "institutionAdditionalName": ["Dresden University of Applied Sciences"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.htw-dresden.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.htw-dresden.de/servicemenue/kontakt.html"]}, {"institutionName": "Hochschulrechenzentrum der Johann Wolfgang Goethe-Universit\u00e4t Frankfurt am Main", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rz.uni-frankfurt.de/hrz", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["beratung@rz.uni-frankfurt.de"]}, {"institutionName": "Universit\u00e4tsbibliothek Johann Christian Senckenberg Frankfurt am Main", "institutionAdditionalName": ["University Library Johann Christian Senckenberg"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-frankfurt.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Das DFG-Projekt", "policyURL": "http://www.ub.bildarchiv-dkg.uni-frankfurt.de/Bildprojekt/DFG-Projekt/DFG-Projekt.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ub.bildarchiv-dkg.uni-frankfurt.de/Bildprojekt/Praesentation/Folie1-g.htm"}] closed [] ["unknown"] no {} ["none"] [] no unknown [] [] {} 2015-02-02 2021-08-25 +r3d100011364 arthistoricum.net deu [{"additionalName": "Fachinformationsdienst Kunst - Fotografie - Design", "additionalNameLanguage": "deu"}, {"additionalName": "Specialized Information Service Art - Photography - Design", "additionalNameLanguage": "eng"}] https://www.arthistoricum.net/ [] ["https://www.arthistoricum.net/en/contact/", "redaktion@arthistoricum.net"] Since January 2012, two previously independent resources called "ViFaArt – Virtual Library for Contemporary Art" and "arthistoricum.net – Virtual Library for Art History" have been joint together, forming a new service called arthistoricum.net. This unique union makes it now possible to research the whole subject spectrum belonging to Art History. The special interest collection of Art History focuses on Medieval and Early European Art History, including art influenced by Europe in the USA, Canada and Australia, continuing chronologically from the Early Christian era until 1945. The special interest collection of Contemporary Art continues the art historical subject spectrum to include European and North American Art History from 1945. arthistoricum.net contains text and image resources as well as comprehensive, academically relevant information dealing with all media from the Middle Ages up to the present. arthistoricum.net pools the resources and know-how of the responsible partner institutions, thus making this portal an essential forum for research and teaching. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.arthistoricum.net/en/about-us/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Janke Archive", "architectural drawings", "caricatures", "deutsche fotothek", "furniture design", "illustrations", "miniatures from the Bibliotheca Palatina", "print study room", "worker photography"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "Fachinformationsdienste f\u00fcr die Wissenschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen", "institutionAdditionalName": ["LMU"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lmu.de/de/index.html", "institutionIdentifier": ["ROR:05591te55"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Institut f\u00fcr Kunstgeschichte", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kunstgeschichte.uni-muenchen.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kunstgeschichte.uni-muenchen.de/ifk/lehrstuehle/lehrst_kohle/index.html", "hubertus.kohle@gmail.com"]}, {"institutionName": "S\u00e4chsische Landesbibliothek - Staats- und Universit\u00e4tsbibliothek Dresden", "institutionAdditionalName": ["SLUB Dresden"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.slub-dresden.de/", "institutionIdentifier": ["ROR:03wf51b65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Katja.Leiskau@slub-dresden.de"]}, {"institutionName": "Universit\u00e4t Heidelberg", "institutionAdditionalName": ["Heidelberg University"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-heidelberg.de/de", "institutionIdentifier": ["ROR:038t36y30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4tsbibliothek Heidelberg", "institutionAdditionalName": ["UB Heidelberg"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["buettner_alexandra@ub.uni-heidelberg.de", "effinger@ub.uni-heidelberg.de", "mueller_bettina@ub.uni-heidelberg.de"]}] [{"policyName": "Z\u00fcrcher Erkl\u00e4rung zur digitalen Kunstgeschichte", "policyURL": "https://www.sik-isea.ch/Portals/0/Content/Veranstaltungen/Z%C3%BCrcher%20Erkl%C3%A4rung%20zur%20digitalen%20Kunstgeschichte%202014_d_150914.pdf?ver=2015-12-04-153943-230"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.arthistoricum.net/en/imprint/"}] closed [] ["other"] {} ["DOI"] https://www.arthistoricum.net/kunstform/richtlinien/ [] yes yes [] [] {} Partners: https://www.arthistoricum.net/en/partner/ 2015-01-27 2021-03-17 +r3d100011365 TextGrid Repository deu [{"additionalName": "Virtual research environment for the Humanities", "additionalNameLanguage": "eng"}, {"additionalName": "Virtuelle Forschungsumgebung f\u00fcr die Geisteswissenschaften", "additionalNameLanguage": "deu"}] https://www.textgridrep.org/ [] ["https://textgrid.de/kontakt"] The TextGrid Repository is a digital preservation archive for human sciences research data. It offers an extensive searchable and adaptable corpus of XML/TEI encoded texts, pictures and databases. Amongst the continuously growing corpus is the Digital Library of TextGrid, which consists of works of more than 600 authors of German fiction (prose, verse and drama), as well as nonfiction from the beginning of the printing press to the early 20th century. The files are saved in different output formats (XML, ePub, PDF), published and made searchable. Different tools e.g. viewing or quantitative text-analysis tools can be used for visualization or to further research the text. The TextGrid Repository is part of the virtual research environment TextGrid, which besides offering digital preservation also offers open-source software for collaborative creations and publications of e.g. digital editions that are based on XML/TEI. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://textgrid.de/projekt [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["art", "corpora", "cultural history", "fairytales", "humanities", "literature", "philosophy", "sociology"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "2012", "responsibilityEndDate": "2015", "institutionContact": ["bmbf@bmbf.bund.de", "https://www.bmbf.de/de/kontakt.php"]}, {"institutionName": "Georg-August-Universit\u00e4t G\u00f6ttingen, Nieders\u00e4chsische Staats- und Universit\u00e4tsbibliothek G\u00f6ttingen", "institutionAdditionalName": ["Georg-August-Universit\u00e4t G\u00f6ttingen, G\u00f6ttingen State and University Library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/en/news/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sub.uni-goettingen.de/en/contact/"]}, {"institutionName": "Humanities Data Centre", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://humanities-data-centre.de/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["https://humanities-data-centre.de/?page_id=20"]}, {"institutionName": "Text Encoding Initiative", "institutionAdditionalName": ["TEI"], "institutionCountry": "USA", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://tei-c.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://tei-c.org/about/contact/"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/05/TextGrid-Repository.pdf"}, {"policyName": "TextGrid Terms of Use", "policyURL": "https://textgrid.de/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.de"}] restricted [] ["other"] yes {"api": "https://www.textgridlab.org/doc/services/", "apiType": "REST"} ["hdl"] https://textgrid.de/impressum [] no yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} TextGrid is an open source-project and part of the DARIAH-DE infrastructure. 2015-01-26 2020-11-17 +r3d100011366 Tierstimmenarchiv - Museum für Naturkunde Berlin deu [{"additionalName": "Animal Sound Archive - Museum f\u00fcr Naturkunde Berlin", "additionalNameLanguage": "eng"}] https://www.tierstimmenarchiv.de/ [] ["https://www.tierstimmenarchiv.de/tsa/content_86_de.html", "karl-heinz.frommolt@mfn-berlin.de"] The Animal Sound Archive at the Museum für Naturkunde in Berlin is one of the oldest and largest collections of animal sounds. Presently, the collection consists of about 120,000 bioacoustical recordings comprising almost all groups of animals: 1.800 bird species 580 mammalian species more then150 species of invertebrates; some fishes, amphibians and reptiles eng ["disciplinary"] {"size": "around 120.000 recordings of animal voices", "updatedp": "2019-12-18"} 2006 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.tierstimmenarchiv.de/tsa/content_16_de.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["animal voices", "bioacoustics", "biology", "pattern recognition", "recording system", "signal processing"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2012", "responsibilityEndDate": "2014", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Museum f\u00fcr Naturkunde Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.naturkundemuseum.berlin/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.naturkundemuseum.berlin/en/museum/imprint"]}] [{"policyName": "Imprint", "policyURL": "https://www.tierstimmenarchiv.de/tsa/content_67_en.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.tierstimmenarchiv.de/"}] restricted [{"dataUploadLicenseName": "call for support", "dataUploadLicenseURL": "https://www.tierstimmenarchiv.de/"}] ["unknown"] {} ["other"] [] yes yes [] [] {} The Animal Sound Archive of the Museum für Naturkunde Berlin and the Department of Experimental Industrial Psychology of the Bergische Universität Wuppertal develop effective tools to access bioacoustical reference data within the joined project „Reference system of bioacoustic data“ (2012 - 2014)supported by the DFG. 2015-01-23 2019-12-18 +r3d100011367 Zentrale Biomaterialbank der Charité deu [{"additionalName": "Central Biomaterial Bank Charit\u00e9", "additionalNameLanguage": "eng"}, {"additionalName": "ZeBanC", "additionalNameLanguage": "deu"}] https://biobank.charite.de/ [] ["https://biobank.charite.de/metas/kontakt/"] Human biomaterial banks (short: biobanks) are collections of human body substances (i.e. blood, DNA, urine or tissue) connected with disease specific information. This allow for research of relations between deseases and underlying (molecular) modifications and paves the way for developing target-oriented therapies ("personalized medicine"). The biobank material arises from samples taken for therapeutical or diagnostic reasons or is extracted in the context of clinical trials. An approval for usage by the patient is always needed prior to any research activities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://biobank.charite.de/en/forschung/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA extracts", "biomaterial", "biospecimens", "blood", "cellpreparations", "clinical research", "frozen tissue samples", "genome reserach", "histology", "morphology", "paraffin-embedded tissue samples", "patient materials", "plasma samples", "serum samples"] [{"institutionName": "Bundesministeriums f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Charit\u00e9 - Universit\u00e4tsmedizin Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.charite.de/en/", "institutionIdentifier": ["RRID:SCR_011151", "RRID:nlx_149288"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.charite.de/en/charite/contact/"]}] [{"policyName": "Data Security", "policyURL": "https://biobank.charite.de/en/information_for_patients/"}, {"policyName": "Informations for Patients and Donors", "policyURL": "https://biobank.charite.de/en/information_for_patients/"}, {"policyName": "Scope of Services", "policyURL": "https://biobank.charite.de/en/service/"}, {"policyName": "Terms and Conditions", "policyURL": "https://biobank.charite.de/fileadmin/user_upload/microsites/ohne_AZ/m_cc05/biobank/ZeBanC_Dateien/Gesch%C3%A4ftsordnung_ZeBanC_Version2.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://biobank.charite.de/en/metas/legal_disclaimer/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://biobank.charite.de/fileadmin/user_upload/microsites/ohne_AZ/m_cc05/biobank/ZeBanC_Dateien/Gesch%C3%A4ftsordnung_ZeBanC_Version2.pdf"}] closed [] ["other"] {} ["none"] https://biobank.charite.de/fileadmin/user_upload/microsites/ohne_AZ/m_cc05/biobank/ZeBanC_Dateien/Gesch%C3%A4ftsordnung_ZeBanC_Version2.pdf [] yes yes [] [] {} The ZeBanC biobank is one of five biobanks (Berlin, Aachen, Heidelberg, Kiel, Würzburg) funded by the Bundesministerium für Bildung und Forschung (BMBF - Federal Ministry of Education and Research). Apart from establishing a biobank at their particular sites the five biobanks also obliged themselves to develop example processes and best practice methods that can be used by other hospitals building a biobank in the future. In addition to the activities of those five biobanks the "Technologie- und Methodenplattform für vernetzte Forschung e.V. (TMS) develops a nationwide Biobank Registry which is supposed to list all German biobanks. 2015-01-27 2021-09-08 +r3d100011368 Zentrum für Klinische Studien der Universität zu Köln deu [{"additionalName": "CTCC", "additionalNameLanguage": "eng"}, {"additionalName": "Clinical Trials Center Cologne", "additionalNameLanguage": "eng"}] http://zks.uni-koeln.de/index.php?s=studien&c=studien_klinische-studien [] ["assistenz(at)zks-koeln.de"] The Centre for Clinical Trials Cologne (Köln ZKS) aims to support all processes of clinical trials and the quality of patient-oriented clinical research in an academic environment. It supports doctors of University Hospital of Cologne, other clinics, study groups and professional associations in the design and conduct of clinical trials. For the pharmaceutical industry and contract research organizations, the ZKS Köln is a clinic near partner for medical research projects. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://zks.uni-koeln.de/ctcc_profile.html [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["clinical trial", "dermatology", "drugs", "oncology", "patient study", "surgery"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Germany, Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "KKS Netzwerk", "institutionAdditionalName": ["Koordinierungszentren f\u00fcr Klinische Studien"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kks-netzwerk.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t K\u00f6ln, Medizinische Fakult\u00e4t, Zentrum f\u00fcr Klinische Studien", "institutionAdditionalName": ["ZKS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.zks-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@zks-koeln.de"]}] [{"policyName": "Documents for International trials", "policyURL": "http://medfak.uni-koeln.de/sites/MedFakDekanat/Forschung/Qualitaetssicherung/Documents_for_international_Trials_V03.doc"}, {"policyName": "Good Clinical Practice - GCP", "policyURL": "http://www.ema.europa.eu/docs/en_GB/document_library/Scientific_guideline/2009/09/WC500002874.pdf"}, {"policyName": "K\u00f6lner Sponsoren-Modell", "policyURL": "http://medfak.uni-koeln.de/19678.html"}, {"policyName": "World Medical Association Declaration of Helsinki - Ethical Principles for Medical Research Involving Human Subjects", "policyURL": "https://jamanetwork.com/journals/jama/fullarticle/1760318"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.gesetze-im-internet.de/gcp-v/__12.html"}] restricted [] ["unknown"] no {} ["none"] [] no yes [] [] {} CTCC is obligated by the University of Cologne (UoC), by national law (i.e. AMG, MPG) and international regulatory bodies (i.e. ICH-GCP, DIN ISO 14155, DIN ISO 9001) to uphold quality standards. The quality management of the CTCC tends to ensure all quality relevant processes, arrangements and procedures. We are certified in accordance with DIN ISO 9001. This signet stresses our ambition to fulfill expectations of clients, partners, providers and staff in order of legal requirements and our own approach. 2015-05-20 2018-01-18 +r3d100011369 South Australian Resources Information Geoserver eng [{"additionalName": "SARIG", "additionalNameLanguage": "eng"}] https://map.sarig.sa.gov.au/ ["biodbcore-001510"] ["resources.customerservices@sa.gov.au"] An online web application developed by DMITRE Resources and Energy Group enabling users to search, view and download information relating to minerals, petroleum and geothermal exploration in South Australia. eng ["disciplinary"] {"size": "over 600 datasets", "updatedp": "2018-01-18"} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://minerals.statedevelopment.sa.gov.au/knowledge_centre/mesa_journal/sarig [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["South Australia", "drillhole", "lithology", "mineral and petroleum industry", "mineral deposits", "minerals exploration", "petrology", "stratigraphy", "topography"] [{"institutionName": "Government of South Australia, Department of State Development", "institutionAdditionalName": ["DSD"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://statedevelopment.sa.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dsdreception@sa.gov.au"]}] [{"policyName": "Explore and discover the new SARIG platform", "policyURL": "http://minerals.statedevelopment.sa.gov.au/knowledge_centre/mesa_journal/sarig#about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/deed.en"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.ausgoal.gov.au/"}] closed [] ["unknown"] {"api": "http://minerals.statedevelopment.sa.gov.au/online_tools/free_data_delivery_and_publication_downloads/web_services", "apiType": "other"} ["none"] [] no unknown [] [] {} 2014-09-11 2021-11-16 +r3d100011371 TOXNET eng [{"additionalName": "Toxicology Data Network", "additionalNameLanguage": "eng"}] https://www.nlm.nih.gov/toxnet/index.html [] [] The repository is no longer available <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.nlm.nih.gov/pubs/factsheets/toxnetfs.html [{"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["cancer", "chemicals", "diseases", "drugs", "environmental health", "occupational safety and health", "toxicology"] [{"institutionName": "National Library of Medicine, Division of Specialized Information Services", "institutionAdditionalName": ["NLM, SIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sis.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://www.nlm.nih.gov/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] [] yes {"api": "https://toxnet.nlm.nih.gov/newtoxnet/faq.html", "apiType": "FTP"} ["none"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html [] yes yes [] [] {} TOXNET provides links to PubMed, NLM's free web interface to the world's biomedical literature, and to additional sources of toxicological information. Description: TOXNET (TOXicology Data NETwork) is a group of databases covering chemicals and drugs, diseases and the environment, environmental health, occupational safety and health, poisoning, risk assessment and regulations, and toxicology. Information in the TOXNET databases covers: Toxicology data: CCRIS (Chemical Carcinogenesis Research Information System), CPDB (Carcinogenic Potency Database), CTD (Comparative Toxicogenomics Database), GENE-TOX (Genetic Toxicology), HSDB® (Hazardous Substances Data Bank), Haz-Map®, Household Products Database, IRIS (Integrated Risk Information System), ITER (International Toxicity Estimates for Risk), LactMed® (Drugs and Lactation), TRI (Toxics Release Inventory), TOXMAP®, ; Chemical nomenclature: ChemIDplus; Toxicology literature: TOXLINE®, DART® (Developmental and Reproductive Toxicology Database). 2014-10-15 2019-12-17 +r3d100011372 PhytoPath eng [] http://www.phytopathdb.org/ ["OMICS_10268"] ["http://www.phytopathdb.org/content/contact-us"] >>>!!!<<< This site is no longer maintained and is provided for reference only. Some functionality or links may not work. For all enquiries please contact the Ensembl Helpdesk http://www.ensembl.org/Help/Contact >>>!!!<<< PhytoPath is a new bioinformatics resource that integrates genome-scale data from important plant pathogen species with literature-curated information about the phenotypes of host infection. Using the Ensembl Genomes browser, it provides access to complete genome assembly and gene models of priority crop and model-fungal, oomycete and bacterial phytopathogens. PhytoPath also links genes to disease progression using data from the curated PHI-base resource. PhytoPath portal is a joint project bringing together Ensembl Genomes with PHI-base, a community-curated resource describing the role of genes in pathogenic infection. PhytoPath provides access to genomic and phentoypic data from fungal and oomycete plant pathogens, and has enabled a considerable increase in the coverage of phytopathogen genomes in Ensembl Fungi and Ensembl Protists. PhytoPath also provides enhanced searching of the PHI-base resource as well as the fungi and protists in Ensembl Genomes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-01 2017-05-30 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.phytopathdb.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "bioinformatics", "disease", "fungal pathogens", "fungi", "genes", "host infection", "oomycete pathogens", "pathogenicity", "protists"] [{"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Broad Institute of Harvard and MIT", "institutionAdditionalName": ["Broad Institute"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.broadinstitute.org/contact"]}, {"institutionName": "EnsemblGenomes", "institutionAdditionalName": ["e!EnsemblGenomes"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ensemblgenomes.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "PHI-base", "institutionAdditionalName": ["Pathogen host interactions"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.phi-base.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rothamsted Research", "institutionAdditionalName": ["Rothamsted Experimental Station"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rothamsted.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.rothamsted.ac.uk/about"]}, {"institutionName": "U.S.Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA ARS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}] [{"policyName": "Legal Notices", "policyURL": "http://ensemblgenomes.org/info/about/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Data Upload Disclaimer", "dataUploadLicenseURL": "http://fungi.ensembl.org/info/website/upload/index.html#access"}] ["unknown"] yes {} ["none"] http://ensemblgenomes.org/info/publications [] yes yes [] [] {} PhythoPath includes data from e!EnsemblGenomes and PHI-base 2010-10-23 2021-09-08 +r3d100011373 Virtual Fly Brain eng [{"additionalName": "VFB", "additionalNameLanguage": "eng"}, {"additionalName": "VFB Drosophila melanogaster fly brain atlas", "additionalNameLanguage": "eng"}] https://virtualflybrain.org ["FAIRsharing_doi:10.25504/FAIRsharing.nzaz6z", "RRID:SCR_004229", "RRID:nlx_143644"] ["douglas.armstrong@ed.ac.uk", "support@virtualflybrain.org"] Virtual Fly Brain (VFB) - an interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of the Drosophila melanogaster CNS. eng ["disciplinary"] {"size": "Over 200k registered images with 126k+ single neurons plus 68k+ expression pattern images", "updatedp": "2021-01-18"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://doi.org/10.1093/bioinformatics/btr677 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Drosophila", "brain", "connectome", "gene expression", "innervation patterns", "neuroanatomy", "neurobiology", "neurons", "phenotypes", "transgene expression"] [{"institutionName": "FlyBase", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://flybase.org/", "institutionIdentifier": ["RRID:SCR_006549", "RRID:nif-0000-00558"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://flybase.org/contact/email"]}, {"institutionName": "Medical Reserarch Council, Laboratory of Molecular Biology", "institutionAdditionalName": ["MRC, LMB"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www2.mrc-lmb.cam.ac.uk/", "institutionIdentifier": ["ROR:00tw3jy02", "RRID:SCR_003527", "RRID:nif-0000-38323"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cambridge, Department of Genetics", "institutionAdditionalName": ["Department of Genetics"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gen.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Edinburgh, Institute for Adaptive and Neural Computation", "institutionAdditionalName": ["ANC"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.anc.ed.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://homepages.inf.ed.ac.uk/jda/"]}, {"institutionName": "University of Edinburgh, MRC Institute of Genetics & Molecular Medicine", "institutionAdditionalName": ["MRC Human Genetics Unit"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/mrc-human-genetics-unit", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ed.ac.uk/mrc-human-genetics-unit/contact-us"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk", "institutionIdentifier": ["ROR:029chgv08", "RRID:SCR_011782"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@wellcome.ac.uk"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://github.com/VirtualFlyBrain/VFB"}] closed [] ["other"] yes {} [] http://www.virtualflybrain.org/site/vfb_site/about_us.htm [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2014-10-29 2021-09-09 +r3d100011375 Columbia University Academic Commons eng [] https://academiccommons.columbia.edu/ [] ["ac@columbia.edu"] Academic Commons provides open, persistent access to the scholarship produced by researchers at Columbia University, Barnard College, Jewish Theological Seminary, Teachers College, and Union Theological Seminary. Academic Commons is a program of the Columbia University Libraries. Academic Commons accepts articles, dissertations, research data, presentations, working papers, videos, and more. eng ["institutional"] {"size": "25.875 items", "updatedp": "2018-10-08"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://academiccommons.columbia.edu/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Columbia University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Columbia University Libraries, Digital Scholarship", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.columbia.edu/services/digital-scholarship.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dig-scholar@library.columbia.edu"]}] [{"policyName": "Participation", "policyURL": "https://academiccommons.columbia.edu/policies"}, {"policyName": "Terms of Use", "policyURL": "https://academiccommons.columbia.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://academiccommons.columbia.edu/policies#copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://academiccommons.columbia.edu/policies#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://academiccommons.columbia.edu/policies#copyright"}] restricted [{"dataUploadLicenseName": "Upload", "dataUploadLicenseURL": "https://academiccommons.columbia.edu/upload"}] ["Fedora"] yes {"api": "https://academiccommons.columbia.edu/oai", "apiType": "OAI-PMH"} ["DOI"] [] yes yes [] [] {} Columbia University Academic Commons is covered by Thomson Reuters Data Citation Index. 2014-10-31 2018-10-09 +r3d100011376 plankton*net eng [] https://planktonnet.awi.de/ [] ["https://planktonnet.awi.de/#content"] The PLANKTON*NET data provider at the Alfred Wegener Institute for Polar and Marine Research is an open access repository for plankton-related information. It covers all types of phytoplankton and zooplankton from marine and freshwater areas. PLANKTON*NET's greatest strength is its comprehensiveness as for the different taxa image information as well as taxonomic descriptions can be archived. PLANKTON*NET also contains a glossary with accompanying images to illustrate the term definitions. PLANKTON*NET therefore presents a vital tool for the preservation of historic data sets as well as the archival of current research results. Because interoperability with international biodiversity data providers (e.g. GBIF) is one of our aims, the architecture behind the new planktonnet@awi repository is observation centric and allows for mulitple assignment of assets (images, references, animations, etc) to any given observation. In addition, images can be grouped in sets and/or assigned tags to satisfy user-specific needs . Sets (and respective images) of relevance to the scientific community and/or general public have been assigned a persistant digital object identifier (DOI) for the purpose of long-term preservation (e.g. set ""Plankton*Net celebrates 50 years of Roman Treaties"", handle: 10013/de.awi.planktonnet.set.495)" eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://planktonnet.awi.de/#content [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "classification", "ecology of plankton", "microalgae", "phytoplankton", "taxonomy", "zooplankton"] [{"institutionName": "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["AWI", "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@awi.de"]}, {"institutionName": "Bremerhavener Gesellschaft f\u00fcr Investitionsf\u00f6rderung und Stadtentwicklung mbH", "institutionAdditionalName": ["Bremerhaven Economic Development Company", "bis"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bis-bremerhaven.de/de/", "institutionIdentifier": ["ROR:021gr0q06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bis-bremerhaven.de/home.98291.html", "mail@bis-bremerhaven.de"]}, {"institutionName": "European Commission, Community Research and Development Information Service, Sixth Framework Programe", "institutionAdditionalName": ["EU, CORDIS, Sixth Framework Programe"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://cordis.europa.eu/fp6/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "2006", "institutionContact": ["https://cordis.europa.eu/about/en"]}, {"institutionName": "Helmholtz-Gemeinschaft Deutscher Forschungszentren", "institutionAdditionalName": ["Helmholtz Association"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz.de/en/contact/"]}] [{"policyName": "open access", "policyURL": "https://planktonnet.awi.de/#content"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://planktonnet.awi.de/#content"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://planktonnet.awi.de/#content"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] ["other"] {} ["hdl"] https://planktonnet.awi.de/#content [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://planktonnet.awi.de/rss/rss_news.php", "syndicationType": "RSS"} 2014-11-11 2021-12-22 +r3d100011378 MatDB eng [{"additionalName": "Mat-Database", "additionalNameLanguage": "eng"}, {"additionalName": "MatDatabase", "additionalNameLanguage": "eng"}] https://odin.jrc.ec.europa.eu/alcor/PortalController?query=Select&action=Refresh [] ["simon.austin@ec.europa.eu"] MatDB is a database application for experimentally measured engineering materials data. It supports open, registered, and restricted access. It presently hosts more than 20.000 unique data sets coming mainly from European and Member State research programmes. It supports web interfaces for entering, browsing, and retrieving data. MatDB is also enabled for innovative services, including data citation and interoperability standards. The data citation service relies on DataCite DOIs. The historic data sets are being enabled for citation. For all new projects where MatDB is used for managing project data, end-users are encouraged to request DataCite DOIs. There is though no obligation as regards the access level as it is considered sufficient simply that the data sets are made discoverable through data citation. The service that relies on interoperability standards leverages the outputs from a series of CEN Workshops that aim to deliver Standards-compliant data formats for engineering materials data. In this context, MatDB is used to validate and demonstrate said formats with a view to promoting their adoption. MatDB is part of the ODIN Portal https://odin.jrc.ec.europa.eu eng ["disciplinary"] {"size": "more than 20.000 datasets", "updatedp": "2014-11-12"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://ec.europa.eu/jrc/en/about [{"name": "Databases", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["energy", "material science", "measurement", "nuclear", "reactor", "safety", "test data"] [{"institutionName": "European Commission, Joint Research Centre, Institute for Energy and Transport", "institutionAdditionalName": ["EU, JRC, IET"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/jrc/en/science-area/energy-and-transport", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/jrc/en/contact/form"]}] [{"policyName": "COMMISSION DECISION of 12 December 2011 on the reuse of Commission documents", "policyURL": "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}] restricted [] ["unknown"] yes {} ["DOI"] [] unknown yes [] [] {} MatDB is covered by Thomson Reuters Data Citation Index. MatDB is part of the ODIN Portal https://odin.jrc.ec.europa.eu 2014-12-10 2021-12-22 +r3d100011379 ScienceBase USGS eng [{"additionalName": "ScienceBase catalog", "additionalNameLanguage": "eng"}] https://www.sciencebase.gov/about/ [] ["https://www.sciencebase.gov/about/content/contact-us", "sciencebase@usgs.gov"] ScienceBase provides access to aggregated information derived from many data and information domains, including feeds from existing data systems, metadata catalogs, and scientists contributing new and original content. ScienceBase architecture is designed to help science teams and data practitioners centralize their data and information resources to create a foundation needed for their work. ScienceBase, both original software and engineered components, is released as an open source project to promote involvement from the larger scientific programming community both inside and outside the USGS. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climatic change", "energy and environment", "geophysics", "landscape", "maps"] [{"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "U.S. Geological Survey Policies and Notices", "policyURL": "https://www.usgs.gov/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/legal"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/legal"}] restricted [] [] yes {"api": "https://waterservices.usgs.gov/rest/", "apiType": "REST"} ["DOI", "PURL"] https://www.usgs.gov/data-management/data-citation [] yes unknown [] [] {} 2014-11-17 2021-12-22 +r3d100011380 National Arctic and Antarctic Data Center eng [{"additionalName": "CN-NADC", "additionalNameLanguage": "eng"}] https://www.chinare.org.cn/en/ [] ["nadc@pric.org.cn"] Chinese National Arctic & Antarctic Data Center(CN-NADC) is a national facility within the Polar research institute of China (PRIC), which is a research institute under the State Oceanic Administration (SOA) of China. CN-NADC was established in response to Chinese participation in the Article III.1.c of Antarctic Treaty System - (ATS — http://www.ats.aq) and Chinese Polar Data Policy(http://www.chinare.org.cn/standardDetail/?id=477). CN-NADC serves as the only authorized institution in China to capture, standard manage and long-term preserve the data and samples information, and to provide sustainable polar data service. In 2003, CN-NADC became one of the nodes of ‘National Data Sharing Infrastructure of Earth Science’ (GEODATA,http://www2.geodata.cn/), which’s one of the Platforms of the National Science and Technology Infrastructures (NSTI, http://www.escience.org.cn//) supported by the Ministry of Science and Technology (MOST) and the Ministry of Finance of People’s Republic of China. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.pric.org.cn/EN/detail/category.aspx?c=1 [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["polar data", "polar year", "satellite image", "weather data"] [{"institutionName": "Ministry of Science and Technology of the People's Republic of China", "institutionAdditionalName": ["PRIC"], "institutionCountry": "CHN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://en.most.gov.cn/", "institutionIdentifier": ["ROR:027s68j25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science and Technology Infrastructure Platform", "institutionAdditionalName": ["GEODATA.CN"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www2.geodata.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science and Technology Infrastructures", "institutionAdditionalName": ["NSTI"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.escience.org.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Polar Research Institute of China", "institutionAdditionalName": ["PRIC"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.pric.org.cn/", "institutionIdentifier": ["ROR:027fn9x30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State Oceanic Administration", "institutionAdditionalName": ["SOA"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.soa.org.cn/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Chinese Polar Data Policy", "policyURL": "http://www.chinare.org.cn/standardDetail/?id=477"}, {"policyName": "FAQ", "policyURL": "https://www.chinare.org.cn/en/help/using-help"}, {"policyName": "Polar Information Commons - PIC", "policyURL": "https://www.polarcommons.org/ethics-and-norms-of-data-sharing.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] [] {} ["none"] https://www.chinare.org.cn/en/help/using-help [] unknown unknown [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} N-NADC uses Directory Interchange Fomrat -DIF metadata Standard. N-NADC submits metadata directory and information to Portal of Chinese Science and Technology Resource of NSTI and Antarctic Master Directory(AMD) of Global Change Master Directory (GCMD, http://gcmd.nasa.gov/). Since 2003, CN-NADC is a member of SC-ADM (Standing Committee on Antarctic Data Management, http://www.scar.org/data-products/scadm) and it is also a member of the SOOS-DISM (Southern Ocean Observing System, Data Management Sub-Committee) since 2013. 2014-11-17 2021-12-22 +r3d100011381 CERN Open Data eng [] http://opendata.cern.ch/ [] ["opendata-support@cern.ch"] The CERN Open Data portal is the access point to a growing range of data produced through the research performed at CERN. It disseminates the preserved output from various research activities, including accompanying software and documentation which is needed to understand and analyze the data being shared. eng ["disciplinary", "institutional"] {"size": "9.356 datasets", "updatedp": "2021-12-23"} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "310 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://opendata.cern.ch/docs/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["LHC Large Hadron Collider", "basic constituents of matter", "detectors", "particle accelerators", "particle physics", "primary data", "universe"] [{"institutionName": "CERN Scientific Informations Service", "institutionAdditionalName": ["CERN-GS-SIS"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://scientific-info.cern/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["opendata-support@cern.ch"]}, {"institutionName": "European Organization for Nuclear Research", "institutionAdditionalName": ["CERN", "Conseil Europeen pour la Recherche Nucleaire"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://home.cern/", "institutionIdentifier": ["ROR:01ggx4157"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["opendata-support@cern.ch"]}, {"institutionName": "European Organization for Nuclear Research, Information Technology Department, Collaboration & Information Services", "institutionAdditionalName": ["CERN-IT-CIS"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://information-technology.web.cern.ch/it-organisation/it-cis", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["opendata-support@cern.ch"]}] [{"policyName": "CERN OpenData Terms of Use", "policyURL": "http://opendata.cern.ch/docs/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://opendata.cern.ch/docs/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://opendata.cern.ch/docs/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/gpl-3.0.html"}] closed [] ["other"] yes {} ["DOI"] https://www.force11.org/datacitationprinciples [] no yes [] [] {} Opendata CERN is covered by Thomson Reuters Data Citation Index. Opendata CERN uses invenio repository software. Databases: CMS - Compact Muon Solenoid; ALICE - A large ion collider experiment; ATLAS - A Toroidal LHC ApparatuS; LHCb - Large Hadron Collider beauty. The portal is a collaborative effort of the CERN groups IT-CIS and GS-SIS in collaboration with many researchers in the HEP community. 2014-11-18 2021-12-23 +r3d100011382 Queen's Research Data Centre eng [{"additionalName": "QRDC", "additionalNameLanguage": "eng"}] https://www.queensu.ca/qrdc/ [] ["https://crdcn.org/contact-us", "qrdc.assistant@queensu.ca", "qrdc@queensu.ca"] The Queen's Research Data Centre is a member of the Canadian Research Data Centre Network (CRDCN) that provides researchers with access to microdata 'masterfiles' from population and health surveys. Access to the RDC is limited to those with projects approved by Statistics Canada. Before applying to an RDC, you will have to show that your research cannot be conducted using Public Use Microdata Files (PUMFs) available through the Data Liberation Initiative (DLI). Access to DLI PUMFS at Queen's is available through the Social Science Data Centre, using the ODESI data portal. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://crdcn.org/research [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census", "household surveys", "microdata", "population", "statistics"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "FCI", "Fondation Canadienne pour l'Innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:nlx_144042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Research Data Centre Network", "institutionAdditionalName": ["CRDCN", "RCCDR", "R\u00e9seau Canadien des Centres de donn\u00e9es de recherche"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://crdcn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://crdcn.org/contact-us"]}, {"institutionName": "Queens University Library, Joseph S. Stauffer Library", "institutionAdditionalName": ["Joseph S. Stauffer Library"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.queensu.ca/locations/stauffer-library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Social Sciences and Humanities Research Council", "institutionAdditionalName": ["CRSH", "Conseil de recherches en sciences humaines", "SSHRC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sshrc-crsh.gc.ca/home-accueil-eng.aspx", "institutionIdentifier": ["ROR:04j5jqy92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Statistics Canada", "institutionAdditionalName": ["Statistique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.statcan.gc.ca/rdc-cdr/eng/user/login", "institutionIdentifier": ["ROR:05k71ja87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research", "policyURL": "https://crdcn.org/research"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cdn.dal.ca/content/dam/dalhousie/pdf/faculty/ardc/researcher-rechercheur-guide-eng.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.statcan.gc.ca/eng/rdc/process"}] closed [] ["other"] {} ["none"] [] unknown yes [] [] {} QRDC is covered by Thomson Reuters Data Citation Index. 2014-11-19 2021-12-23 +r3d100011384 Duanaire eng [{"additionalName": "A treasury of digital data for Irish economic history", "additionalNameLanguage": "eng"}] http://www.duanaire.ie/ [] ["aidan.kane@nuigalway.ie"] The Duanaire project borrows the Irish word for song-book or anthology (loosely, a 'treasury'), to convey the sense of a rich, varied corpus handed down and explored anew. This project, led by Dr Aidan Kane (economics at NUI Galway), will open up a wealth of Irish economic history data, and in particular, Irish fiscal history data, by making accessible online a range of datasets in flexible forms to diverse audiences. The project is constructing a unique infrastructure for the imaginative curation, exploration, and sharing of significant tranches of Irish economic history data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.duanaire.ie/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["18th century", "House of Commons", "Ireland", "Irish economic history", "finances", "fiscal history data"] [{"institutionName": "NUI Galway, Economics", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.nuigalway.ie/economics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["economics@nuigalway.ie"]}, {"institutionName": "NUI Galway, James Hardiman Library", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.library.nuigalway.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.library.nuigalway.ie/contactus/"]}, {"institutionName": "NUI Galway, Whitaker Instiute", "institutionAdditionalName": ["O\u00c8 Gaillimh"], "institutionCountry": "IRL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://whitakerinstitute.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Using the database", "policyURL": "http://www.duanaire.ie/dbases/public_finances_18_century/index.php"}, {"policyName": "terms and conditions for the NUI Galway Web site", "policyURL": "http://nuigalway.ie/footer-links/copyright.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nuigalway.ie/footer-links/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nuigalway.ie/footer-links/copyright.html"}] closed [] [] yes {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2014-11-19 2021-12-23 +r3d100011386 Digital Averroes Research Environment eng [{"additionalName": "Averroes-Database", "additionalNameLanguage": "eng"}, {"additionalName": "DARE", "additionalNameLanguage": "eng"}] https://dare.uni-koeln.de/ [] ["https://dare.uni-koeln.de/contact/", "info-averroes@uni-koeln.de"] The Digital Averroes Research Environment (DARE) collects and edits the works of the Andalusian Philosopher Averroes or Abū l-Walīd Muḥammad Ibn Aḥmad Ibn Rušd, born in Cordoba in 1126, died in Marrakesh in 1198. DARE makes accessible online digital editions of Averroes's works, and images of all textual witnesses, including manuscripts, incunabula, and early prints. Averroes's writings and the scholarly literature are documented in a bibliographical database. At the same time, DARE is a research platform, giving scholars who work on Averroes the opportunity to present their research and to discuss questions related to Averroes's thought in the Forum. A collaborative, evolving, and open-ended project hosted by DARE is the Averroes Encyclopaedia, designed to document Averroes's philosophical, scientific and technical vocabulary. eng ["disciplinary", "institutional"] {"size": "80.000 digitized manuscript pages; 33 fully transcribed editions", "updatedp": "2014-11-21"} 2011-02-19 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://dare.uni-koeln.de/?q=node/22 [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Andalusian philosophy", "Arabian philosophy", "Arabic", "Hewbrew", "Latin", "critical editions", "early prints", "grammar", "incunabula", "law and theology", "logic", "manuscripts", "mathematics", "medicine", "metaphysics", "philosophy of nature", "practical philosophy", "psychology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fritz Thyssen Stiftung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.fritz-thyssen-stiftung.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fritz-thyssen-stiftung.de/kontakt/"]}, {"institutionName": "Nordrhein-Westf\u00e4lische Akademie der Wissenschaften und der K\u00fcnste", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.awk.nrw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.awk.nrw.de/kontakt.html"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Philosophische Fakult\u00e4t, Thomas-Institut", "institutionAdditionalName": ["University of Cologne, Faculty of Arts and Humanities, Thomas-Institute"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.thomasinstitut.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://www.thomasinstitut.uni-koeln.de/index.php?id=119"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZK", "University of Cologne, Regional Computing Centre"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://rrzk.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://rrzk.uni-koeln.de/kontakt-uebersicht.html?&L=1"]}] [{"policyName": "Contribution guidelines", "policyURL": "http://dare.uni-koeln.de/?q=node/39"}, {"policyName": "Project Description", "policyURL": "http://dare.uni-koeln.de/?q=node/22"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dare.uni-koeln.de/?q=node/26"}] restricted [] ["other"] yes {} ["PURL"] http://dare.uni-koeln.de/?q=node/129 [] yes yes [] [] {} A collaborative, evolving, and open-ended project hosted by DARE is the Averroes Encyclopaedia, designed to document Averroes's philosophical, scientific and technical vocabulary. Even though the DARE-website, and especially the section "Sources," will one day replace the old Averroes Database, it is still online and can be accessed under: http://www.thomasinstitut.uni-koeln.de/index.php?id=11620 2014-11-21 2021-10-11 +r3d100011387 Edmond eng [] https://edmond.mpdl.mpg.de/imeji/ [] ["edmond@mpdl.mpg.de"] Edmond is the institutional repository of the Max Planck Society for public research data. It enables Max Planck scientists to create citable scientific assets by describing, enriching, sharing, exposing, linking, publishing and archiving research data of all kinds. A unique feature of Edmond is the dedicated metadata management, which supports a non-restrictive metadata schema definition, as simple as you like or as complex as your parameters require. Further on, all objects within Edmond have a unique identifier and therefore can be clearly referenced in publications or reused in other contexts. eng ["institutional"] {"size": "107 collections with 39,000 items (July 2019)", "updatedp": "2019-07-23"} 2014-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Max Planck Society"] [{"institutionName": "Max Planck Digital Library", "institutionAdditionalName": ["MPDL"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpdl.mpg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpdl.mpg.de/en/contact.html"]}, {"institutionName": "Max-Planck-Gesellschaft", "institutionAdditionalName": ["MPG"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpg.de/contact/requests"]}] [{"policyName": "Disclaimer Data Protection", "policyURL": "http://edmond.mpdl.mpg.de/imeji/imprint"}, {"policyName": "Terms of Use", "policyURL": "http://edmond.mpdl.mpg.de/imeji/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://edmond.mpdl.mpg.de/imeji/#Licenses"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/lizenzen"}] restricted [] ["other"] no {"api": "http://edmond.mpdl.mpg.de/imeji/api/index.html", "apiType": "REST"} ["DOI"] [] yes yes [] [] {} 2014-11-25 2021-10-11 +r3d100011389 Research Centre of the Bundesbank eng [{"additionalName": "Forschungszentrum der Deutschen Bundesbank", "additionalNameLanguage": "deu"}] http://www.bundesbank.de/Navigation/EN/Bundesbank/Research/Research_centre/research_centre.html [] [] <<>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 2021 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bundesbank.de/Navigation/EN/Bundesbank/Research/research.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["banking regulation", "banking structure", "corporate finance", "financal stability", "household finance", "risk management", "statistics"] [{"institutionName": "Deutsche Bundesbank", "institutionAdditionalName": ["Bundesbank"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.bundesbank.de/Navigation/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bundesbank.de/Navigation/DE/Presse/Pressekontakt/pressekontakt.html"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.bundesbank.de/Navigation/EN/Service/Terms_of_Use/terms_of_use_node.html?docId=91760¬First=true"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bundesbank.de/Secure/Navigation/EN/Imprint/imprint.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.bundesbank.de/Navigation/EN/Service/Terms_of_Use/terms_of_use_node.html?docId=91760¬First=true"}] closed [] ["unknown"] {} ["DOI"] https://www.bundesbank.de/Secure/Navigation/EN/Imprint/imprint.html [] unknown unknown [] [] {"syndication": "http://www.bundesbank.de/Navigation/EN/Service/RSS/rss.html?v2=9078", "syndicationType": "RSS"} Description: One of the Bundesbank's tasks is to collect statistical data. Some of these data are then fed into the time series published on the internet in the time series database. In recent years, there have been increased demands for all data providers to make more data available for research purposes. This applies, on the one hand, to the individual data used for the calculation of the published aggregated data. This is because only using these individual data is it possible to accurately reflect the heterogeneity of the relevant feature carriers in academic studies. Due to legal requirements, individual data cannot be made generally available. However, these data are made available under strict conditions and for clearly defined academic research purposes at the Research Centre of the Deutsche Bundesbank. Furthermore, in the area of aggregated data, there is also an increasing demand for real-time data. These data reflect an out-of-date data set and may therefore deviate from data currently available as a result of corrections carried out in the meantime. 2015-01-27 2021-10-25 +r3d100011390 Comparative Study of Electoral Systems eng [{"additionalName": "CSES", "additionalNameLanguage": "eng"}] http://www.cses.org/ [] ["cses@umich.edu"] The Comparative Study of Electoral Systems (CSES) is a collaborative, cross-national program of comparative electoral behavior among over 60 election study teams from around the world. The CSES allows examination into how societal, political, economic and structural contexts shape citizen behavior and condition democratic choice; the nature of political and social divisions; and how citizens in different political systems evaluate democratic institutions and processes. Participating countries include a common module of survey questions in their post-election studies. The resulting data are deposited along with voting, demographic, district and macro variables. The studies are then merged into a single, free, public dataset for use in comparative study and cross-level analysis. The research agenda, questionnaires, and study design are developed by an international committee of leading scholars of electoral politics and political science. The design is implemented in each country by their foremost social scientists. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["crossnational reserach", "election studies", "electoral analysis", "psephology", "quantitative social research", "social science elicitation", "statistical survey"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bmbf.de/en/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/de/1539.php"]}, {"institutionName": "GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["FDZ International Survey Programmes", "GESIS - Leibniz Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.gesis.org/en/services/data-analysis/survey-data/cses/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gesis.org/en/services/data-analysis/survey-data/cses/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Michigan", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.isr.umich.edu/cps/project_cses.html"]}, {"institutionName": "University of Michigan, Institute for Social Research, Center for Political Studies", "institutionAdditionalName": ["Center for Political Studies"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.isr.umich.edu/cps/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.isr.umich.edu/cps/contact.html"]}] [{"policyName": "Survey Administration Documents", "policyURL": "http://www.cses.org/collabs/collabs.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.cses.org/"}] restricted [] ["unknown"] {} ["DOI"] http://www.cses.org/datacenter/module1/cite_module1.htm#cite [] yes yes [] [] {} the GESIS - Leibniz Institute for the Social Sciences has included the datasets from CSES Modules 1, 2, and 3 into ZACAT, their data portal and online analysis tool. To use the online analysis tool, visit the Data Center on the CSES website. Within the page for each Module in the Data Center, there is a grey box with a link labeled "Analyze Online" which will take you to the ZACAT website. When you arrive at the ZACAT website, select the Module you wish to analyze from the box to the left, and then use the grey bar at the top of the page to manipulate the data. CSES Module 1: 1996-2001;CSES Module 2: 2001-2006; CSES Module 3: 2006-2011; Cses MOdule 4 2011-2016; Cses Module 5 2016-2021. The free, integrated dataset, codebooks and further documents are available via GESIS data catalogue https://dbk.gesis.org/dbksearch/GDESC2.asp?no=0091&DB=E . Data is accessible as a text file and can be imported into SPSS or STATA software packages via prepared syntax files. 2015-02-09 2017-02-01 +r3d100011391 HSRC Research Data Service eng [{"additionalName": "Human Sciences Research Council Research Data Service", "additionalNameLanguage": "eng"}] http://datacuration.hsrc.ac.za/ [] ["http://datacuration.hsrc.ac.za/contact/datahelp", "llotter@hsrc.ac.za"] The HSRC Research Data Service provides a digital repository facility for the HSRC's research data in support of evidence based human and social development in South Africa and the broader region. It includes both quantitative and qualitative data. Access to data is dependent on ethical requirements for protecting research participants, as well as on legal agreements with the owners, funders or in the case of data owned by the HSRC, the requirements of the depositors of the data. eng ["disciplinary", "institutional"] {"size": "90 datasets", "updatedp": "2016-01-07"} 1968 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://datacuration.hsrc.ac.za/content/view/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["HIV/AIDS", "South Africa", "agrarian reform", "alcohol prevention", "census data", "child maltreatment prevention", "community survey", "financial crisis", "health system", "mental health", "microdata", "poverty", "qualititative data", "schools", "sexuality", "unemployment"] [{"institutionName": "Human Sciences Research Council", "institutionAdditionalName": ["HSRC"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.hsrc.ac.za/en/", "institutionIdentifier": ["ROR:056206b04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hsrc.ac.za/en/contact"]}] [{"policyName": "About HSRC", "policyURL": "http://datacuration.hsrc.ac.za/content/view/about"}, {"policyName": "Code of Research Ethics", "policyURL": "http://www.hsrc.ac.za/en/about/research-ethics/code-of-research-ethics"}, {"policyName": "HSRC Acta", "policyURL": "http://www.hsrc.ac.za/uploads/pageContent/179/Download%20the%20HSRC%20Act,%20No.%2017%20of%202008.pdf"}, {"policyName": "HSRC Application Form", "policyURL": "http://www.hsrc.ac.za/uploads/pageContent/1398/HSRC%20Application%20Form%202010-11-23.doc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://datacuration.hsrc.ac.za/assets/uploads/files/hsrceula.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://datacuration.hsrc.ac.za/content/view/terms"}] restricted [] ["unknown"] yes {} ["DOI"] http://datacuration.hsrc.ac.za/search/basic [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "http://www.hsrc.ac.za/en/projects?rss=1", "syndicationType": "RSS"} HSRC Research Data Service is covered by Thomson Reuters Data Citation Index. HSRC applies for DSA certification in 2016 2015-02-18 2020-01-17 +r3d100011392 INDEPTH Data Repository eng [{"additionalName": "International Network for the Demographic Evaluation of Populations and Their Health Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "iSHARE Repository", "additionalNameLanguage": "eng"}] https://www.indepth-ishare.org/index.php/home [] ["data-admin@indepth-ishare.org", "https://www.indepth-ishare.org/index.php/feedback"] INDEPTH is a global network of research centres that conduct longitudinal health and demographic evaluation of populations in low- and middle-income countries (LMICs). INDEPTH aims to strengthen global capacity for Health and Demographic Surveillance Systems (HDSSs), and to mount multi-site research to guide health priorities and policies in LMICs, based on up-to-date scientific evidence. The data collected by the INDEPTH Network members constitute a valuable resource of population and health data for LMIC countries. This repository aims to make well documented anonymised longitudinal microdata from these Centres available to data users. eng ["disciplinary", "other"] {"size": "132 surveys; 3.191 citations; 4.499 variables", "updatedp": "2019-12-11"} 2013-07-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.indepth-ishare.org/index.php/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Africa", "Asia", "Oceania", "cause of death", "demography", "fertility", "health and demographic surveillance system (HDSS)", "health research", "migration", "mortality", "population", "population research"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": ["Gates Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Hewlett Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hewlett.org/", "institutionIdentifier": ["ROR:04hd1y677"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hewlett.org/contact/"]}, {"institutionName": "IDRC/CRDI", "institutionAdditionalName": ["Centre de Recherches pour le D\u00e9veloppement International", "International Development Research Centre"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.idrc.ca/en", "institutionIdentifier": ["ROR:029agyb27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.idrc.ca/en/contact-us"]}, {"institutionName": "INDEPTH Network", "institutionAdditionalName": ["International Network for the Demographic Evaluation of Populations and Their Health Network"], "institutionCountry": "GHA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.indepth-network.org/", "institutionIdentifier": ["ROR:0326f0a78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sida", "institutionAdditionalName": ["Swedisch International Development Cooperation Agency"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sida.se/English/", "institutionIdentifier": ["ROR:01fn7me06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "INDEPTH Data Access and Sharing Policy", "policyURL": "http://www.indepth-network.org/images/idasp.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.indepth-network.org/images/annex%203.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.indepth-network.org/images/the%20policy.pdf"}] restricted [] ["unknown"] {} ["DOI"] http://www.indepth-ishare.org/index.php/howtouse [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} INDEPTH Data Repository is covered by Thomson Reuters Data Citation Index. Associated with the repository is INDEPTHStats, a freely accessible website to visualise key demographic indicators. 2014-12-12 2021-10-08 +r3d100011393 Data Repository for the University of Minnesota eng [{"additionalName": "DRUM", "additionalNameLanguage": "eng"}, {"additionalName": "Data Repository for U of M", "additionalNameLanguage": "eng"}] https://conservancy.umn.edu/handle/11299/166578 ["hdl:11299/166578"] ["https://conservancy.umn.edu/contact/"] Open access repository for digital research created at the University of Minnesota. U of M researchers may deposit data to the Libraries’ Data Repository for U of M (DRUM), subject to our collection policies. All data is publicly accessible. Data sets submitted to the Data Repository are reviewed by data curation staff to ensure that data is in a format and structure that best facilitates long-term access, discovery, and reuse. eng ["institutional"] {"size": "452 datasets", "updatedp": "2017-07-03"} 2014-11-03 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://conservancy.umn.edu/pages/drum/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["behavioural sciences", "biology", "economics", "forestry", "horticulture", "humanities", "immunology", "jurisprudence", "medicine", "microbiology", "social sciences", "veterinary", "virology"] [{"institutionName": "University of Minnesota Libraries", "institutionAdditionalName": ["M Libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lib.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.lib.umn.edu/about/contact"]}] [{"policyName": "CoreTrustSeal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/06/20210629-DRUM_CTS_Certification_2020-2022.pdf"}, {"policyName": "DRUM Policies and Terms of Use", "policyURL": "https://conservancy.umn.edu/pages/drum/policies/#terms-of-use"}, {"policyName": "Policies and Guidelines", "policyURL": "https://conservancy.umn.edu/pages/drum/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://conservancy.umn.edu/pages/drum/policies/#terms-of-use"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://conservancy.umn.edu/pages/policies/#CopyrightPolicy"}] restricted [{"dataUploadLicenseName": "Deposit Agreement", "dataUploadLicenseURL": "https://conservancy.umn.edu/pages/policies/#DepositAgreement"}, {"dataUploadLicenseName": "Deposit License", "dataUploadLicenseURL": "https://conservancy.umn.edu/pages/drum/policies/#terms-of-use"}] ["DSpace"] yes {} ["DOI", "hdl"] [] yes yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://conservancy.umn.edu/feed/rss_2.0/11299/166578", "syndicationType": "RSS"} DRUM is covered by Thomson Reuters Data Citation Index. 2014-12-10 2021-10-08 +r3d100011394 B2SHARE eng [] https://b2share.eudat.eu/ [] ["https://www.eudat.eu/support-request?service=B2SHARE", "info@eudat.eu"] B2SHARE is a user-friendly, reliable and trustworthy way for researchers, scientific communities and citizen scientists to store and share small-scale research data from diverse contexts and disciplines. B2SHARE is able to add value to your research data via (domain tailored) metadata, and assigning citable Persistent Identifiers PIDs (Handles) to ensure long-lasting access and references. B2SHARE is one of the B2 services developed via EUDAT and long tail data deposits do not cost money. Special arrangements such as branding and special metadata elements can be made on request. eng ["other"] {"size": "435 records", "updatedp": "2017-01-16"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.eudat.eu/what-eudat [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["B2ACCESS", "B2DROP", "B2FIND", "B2HANDLE", "B2SAFE", "B2STAGE", "EUDAT", "FAIR", "cross-disciplinary"] [{"institutionName": "EUDAT", "institutionAdditionalName": ["European Data Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eudat.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/contact"]}, {"institutionName": "European Commission, Research and Innovation, FP7, Infrastructures", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cordis.europa.eu/project/rcn/100031_en.html"]}] [{"policyName": "Data Access and Reuse Policies", "policyURL": "https://www.eudat.eu/data-access-and-reuse-policies-darup"}, {"policyName": "Terms of Use for EUDAT B2SHARE Service", "policyURL": "https://b2share.eudat.eu/help/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}] restricted [{"dataUploadLicenseName": "Terms of Use for EUDAT B2SHARE Service", "dataUploadLicenseURL": "https://b2share.eudat.eu/help/terms-of-use"}] ["other"] {"api": "https://www.eudat.eu/services/userdoc/b2find-integration", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} B2SHARE features: integrated with the EUDAT collaborative data infrastructure, free upload and registration of stable research data, data assigned a permanent identifier, which can be retraced to the data owner, data owner defines access policy, community-specific metadata extensions and user interfaces, openly accessible and harvestable metadata, representational state transfer application programming interface (REST API) for integration with community sites, data integrity ensured by checksum during data ingest, professionally managed storage service. B2SHARE is based on Invenio. EUDAT B2SHARE on GitHub see: https://github.com/EUDAT-B2SHARE 2014-12-16 2021-10-08 +r3d100011395 EUDAT eng [{"additionalName": "European Data Infrastructure", "additionalNameLanguage": "eng"}] https://www.eudat.eu/ [] ["https://www.eudat.eu/contact-support-request", "info@eudat.eu"] The EUDAT project aims to contribute to the production of a Collaborative Data Infrastructure (CDI). The project´s target is to provide a pan-European solution to the challenge of data proliferation in Europe's scientific and research communities. The EUDAT vision is to support a Collaborative Data Infrastructure which will allow researchers to share data within and between communities and enable them to carry out their research effectively. EUDAT aims to provide a solution that will be affordable, trustworthy, robust, persistent and easy to use. EUDAT comprises 26 European partners, including data centres, technology providers, research communities and funding agencies from 13 countries. B2FIND is the EUDAT metadata service allowing users to discover what kind of data is stored through the B2SAFE and B2SHARE services which collect a large number of datasets from various disciplines. EUDAT will also harvest metadata from communities that have stable metadata providers to create a comprehensive joint catalogue to help researchers find interesting data objects and collections. eng ["other"] {"size": "471.029 datasets in B2FIND", "updatedp": "2017-01-16"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.eudat.eu/what-eudat [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["B2ACCESS", "B2DROP", "B2FIND", "B2HANDLE", "B2SAFE", "B2SHARE", "B2STAGE", "FAIR", "academic", "business", "cross-disciplinary", "government", "personal"] [{"institutionName": "B2FIND Communities", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://b2find.eudat.eu/group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/support-request"]}, {"institutionName": "EUDAT", "institutionAdditionalName": ["European Data Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eudat.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/contact"]}, {"institutionName": "EUDAT Consortium", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eudat.eu/partners", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/contact"]}, {"institutionName": "European Commission, Research and Innovation, FP7, Infrastructures", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cordis.europa.eu/project/rcn/100031_en.html"]}] [{"policyName": "Data Access and Management", "policyURL": "https://www.eudat.eu/system/files/EUDAT-position-OA-DMP.pdf"}, {"policyName": "Data Access and Reuse Policies (DARUP)", "policyURL": "https://www.eudat.eu/data-access-and-reuse-policies-darup"}, {"policyName": "Policy", "policyURL": "https://eudat.eu/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eudat.eu/data-access-and-reuse-policies-darup"}] closed [] ["CKAN"] {} ["DOI", "hdl"] [] unknown unknown [] [] {"syndication": "https://www.eudat.eu/rss.xml", "syndicationType": "RSS"} EUDAT is covered by Clarivate Data Citation Index. B2FIND is a simple, user-friendly metadata catalogue of research data collections stored in EUDAT data centres and other repositories http://b2find.eudat.eu/ and https://github.com/EUDAT-B2FIND/md-ingestion B2SHARE is a user-friendly, reliable and trustworthy way for researchers, scientific communities and citizen scientists to store and share small-scale research data from diverse contexts https://b2share.eudat.eu/ B2DROP is a secure and trusted data exchange service for researchers and scientists to keep their research data synchronized and up-to-date and to exchange with other researchers https://b2drop.eudat.eu/login B2SAFE is a robust, safe and highly available service which allows community and departmental repositories to implement data management policies on their research data across multiple administrative domains in a trustworthy manner. B2STAGE is a reliable, efficient, light-weight and easy-to-use service to transfer research data sets between EUDAT storage resources and high-performance computing (HPC) workspaces. B2HANDLE is a distributed service, with the organisations hosting the service mirroring each other's Persistent Identifiers. This ensures the sustainability and reliability of PIDs in the EUDAT domain. B2ACCESS is an easy-to-use and secure Authentication and Authorization platform developed by EUDAT https://b2access.eudat.eu:8443/home/home 2014-12-16 2021-10-08 +r3d100011396 The Content Name Collection eng [{"additionalName": "CNC", "additionalNameLanguage": "eng"}] [] [] >>>!!!<<< The repository is offline >>>!!!<<< A collection of open content name datasets for Information Centric Networking. The "Content Name Collection" (CNC) lists and hosts open datasets of content names. These datasets are either derived from URL link databases or web traces. The names are typically used for research on Information Centric Networking (ICN), for example to measure cache hit/miss ratios in simulations. eng ["disciplinary", "institutional"] {"size": "8 datasets comprising more than 6 billion content names; 650 files", "updatedp": "2015-01-07"} 2014-01-08 ["deu", "eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.icn-names.net/#motivation [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Content Centric Networking", "Content Names", "ICN", "Information Centric Networking", "Named Data Networking", "Named Function Networking", "URL"] [{"institutionName": "University of Basel, Department of Mathematics and Computer Science, Computer Networks Group", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cn.dmi.unibas.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal", "policyURL": "http://www.icn-names.net/#legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.icn-names.net/license.txt"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2015-01-07 2020-02-07 +r3d100011397 AEKOS Data Portal eng [{"additionalName": "Advanced Ecological and Knowledge Observation System Data Portal", "additionalNameLanguage": "eng"}] http://www.aekos.org.au/index.html#/home [] ["esupport@tern.org.au"] TERN's AEKOS data portal is the original gateway to Australian ecology data. It is a ‘data and research methods’ data portal for Australia’s land-dwelling plants, animals and their environments. The primary focus of data content is raw co-located ‘species and environment’ ecological survey data that has been collected at the ‘plot’ level to describe biodiversity, its patterns and ecological processes. It is openly accessible with standard discovery metadata and user-oriented, contextual metadata critical for data reuse. Our services support the ecosystem science community, land managers and governments seeking to publish under COPE publishing ethics and the FAIR data publishing principles. AEKOS is registered with Thomson & Reuters Data Citation Index and is a recommended repository of Nature Publishing’s Scientific Data. There are currently 97,037 sites covering mostly plant biodiversity and co-located environmental data of Australia. The AEKOS initiative is supported by TERN (tern.org.au), hosted by The University of Adelaide and funded by the Australian Government’s National Research Infrastructure for Australia. eng ["disciplinary"] {"size": "3.432.272 records", "updatedp": "2020-02-25"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ecoinformatics.org.au/about_aekos [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Australia", "FAIR", "environmental data", "experimental data", "fauna", "flora", "inventory data", "plant traits", "site-based (point) ecological data", "surveillance and long-term monitoring data", "terrestrial ecology"] [{"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Terrestrial Ecosystem Research Network, Eco-Informatics Facility", "institutionAdditionalName": ["TERN, Eco-Informatics Facility"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ecoinformatics.org.au/eco-informatics_facility", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiry@ecoinformatics.org.au", "http://www.ecoinformatics.org.au/contact_us"]}, {"institutionName": "University of Adelaide", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.adelaide.edu.au/", "institutionIdentifier": ["ROR:00892tw58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legals, Licensing and Attributions", "policyURL": "http://www.ecoinformatics.org.au/licensing_and_attributions"}, {"policyName": "TERN Data Licensing Policy", "policyURL": "https://www.tern.org.au/rs/7/sites/998/user_uploads/File/Data%20Licensing%20Documents/TERN%20Data%20Licensing%20Policy%20v1_0.pdf"}, {"policyName": "TERN Data Licensing Principles", "policyURL": "https://www.tern.org.au/rs/7/sites/998/user_uploads/File/Data%20Licensing%20Documents/TERN%20Data%20Licensing%20Principles.pdf"}, {"policyName": "TERN Data Licensing", "policyURL": "https://www.tern.org.au/datalicence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ecoinformatics.org.au/licensing_and_attributions"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.tern.org.au/TERN-s-Data-Licences-pg22188.html"}] restricted [] [] yes {} ["DOI"] http://www.ecoinformatics.org.au/Citing_AEKOS_Data [] yes unknown [] [] {} AEKOS Data Portal is covered by Clarivate Data Citation Index. Sponsors: http://ecoinformatics.org.au/data_partners The ÆKOS system, SHaRED (https://www.shared.org.au/login) and Soils-to-Satellites (http://ecoinformatics.org.au/Soils_to_Satellites) are supported through a number of collaborations with Commonwealth and State/Territory government agencies, peak bodies and data infrastructure providers. 2015-01-13 2020-02-25 +r3d100011398 B2SAFE eng [] https://www.eudat.eu/b2safe [] ["https://www.eudat.eu/contact-support-request", "info@eudat.eu"] B2SAFE is a robust, safe and highly available service which allows community and departmental repositories to implement data management policies on their research data across multiple administrative domains in a trustworthy manner. A solution to: provide an abstraction layer which virtualizes large-scale data resources, guard against data loss in long-term archiving and preservation, optimize access for users from different regions, bring data closer to powerful computers for compute-intensive analysis eng ["other"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.eudat.eu/what-eudat [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["B2ACCESS", "B2DROP", "B2FIND", "B2HANDLE", "B2SHARE", "B2STAGE", "EUDAT", "FAIR", "cross-disciplinary"] [{"institutionName": "EUDAT", "institutionAdditionalName": ["European Data Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eudat.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/contact"]}, {"institutionName": "European Commission, Research and Innovation, FP7, Infrastructures", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cordis.europa.eu/project/rcn/100031_en.html"]}] [{"policyName": "Data Access and Reuse Policies (DARUP)", "policyURL": "https://www.eudat.eu/data-access-and-reuse-policies-darup"}, {"policyName": "position on open acess, open data and data management planning", "policyURL": "https://www.eudat.eu/system/files/EUDAT-position-OA-DMP.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://github.com/EUDAT-B2SAFE/B2SAFE-core/blob/master/LICENSE"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eudat.eu/data-access-and-reuse-policies-darup"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}] restricted [] ["other"] {} ["hdl"] [] unknown unknown [] [] {} Any community and departmental data repositories that have a proper repository infrastructure supporting PIDs and metadata describing the properties and context of the data being replicated can participate in the B2SAFE service. EUDAT will help interested community centres to set up and use this service by running training courses, and providing support for the necessary adaptation work, including offering a service helpdesk. To find out more details about the EUDAT B2SAFE service, please contact the EUDAT service team. EUDAT is not only involved but is also driving a number of RDA working and interest groups, notably Data Foundation and Terminology PID Information Types, Data Type Registry, Practical Policy, Data Citation, Metadata, Big Data Analytics and Legal Interoperability (https://rd-alliance.org/fourth-plenary-poster-session/b2safe-replicate-research-data-safely.html) B2SAFE service core code for EUDAT project is released under BSD license (https://github.com/EUDAT-B2SAFE/B2SAFE-core) 2015-01-13 2021-10-08 +r3d100011399 MADATA - Mannheim research data repository eng [{"additionalName": "MADATA - Forschungsdatenrepositorium der Universit\u00e4t Mannheim", "additionalNameLanguage": "deu"}] https://madata.bib.uni-mannheim.de/ [] ["fdz@bib.uni-mannheim.de"] The Research Data Repository of the University of Mannheim invites all researchers and faculty of the University of Mannheim to archive their research data here in order to make it accessible through the Internet. All archived data sets receive DOIs (Digital Object Identifier) to make them accessible and citable. Using this repository is free of charge. eng ["institutional"] {"size": "120 datasets", "updatedp": "2020-03-12"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://madata.bib.uni-mannheim.de/information.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universit\u00e4t Mannheim, Universit\u00e4tsbibliothek", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bib.uni-mannheim.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["irene.schumm@bib.uni-mannheim.de", "joerg.mechnich@bib.uni-mannheim.de"]}] [{"policyName": "Further Information on Research data", "policyURL": "https://madata.bib.uni-mannheim.de/information.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["EPrints"] no {"api": "https://madata.bib.uni-mannheim.de/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] [] yes yes [] [] {"syndication": "https://madata.bib.uni-mannheim.de/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2015-01-14 2020-03-12 +r3d100011400 Catena eng [{"additionalName": "Digital Archive of Historic Gardens and Landscapes", "additionalNameLanguage": "eng"}] http://catena.bgc.bard.edu/ [] ["catena@bgc.bard.edu."] Catena, the Digital Archive of Historic Gardens and Landscapes, is a collection of historic and contemporary images, including plans, engravings, and photographs, intended to support research and teaching in the fields of garden history and landscape studies. Created through the collaborative efforts of landscape historians and institutions, the initial offering of images is focused on the Villas as a Landscape Type. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://catena.bgc.bard.edu/mission.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["architecture", "historic gardens", "history", "landscapes", "parks", "primary source", "secondary source", "villas"] [{"institutionName": "Bard Graduate Center", "institutionAdditionalName": ["BGC", "Decorative Arts, Design, and Culture"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bgc.bard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["generalinfo@bgc.bard.edu"]}, {"institutionName": "Luna Imaging", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "http://www.lunaimaging.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lunaimaging.com/contact"]}, {"institutionName": "National Endowment for the Humanities", "institutionAdditionalName": ["NEH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.neh.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.neh.gov/about/contact"]}, {"institutionName": "Samuel H. Kress Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.kressfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.kressfoundation.org/about/default.aspx?id=90", "info@delmas.org"]}, {"institutionName": "The Gladys Krieble Delmas Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://delmas.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://delmas.org/about-the-foundation/contact-us/", "info@delmas.org"]}] [{"policyName": "Terms of use", "policyURL": "http://catena.bgc.bard.edu/terms_use.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://catena.bgc.bard.edu/terms_use.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.lunacommons.org/termsofuse.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.copyright.gov/title17/"}] restricted [] ["other"] yes {"api": "http://doc.lunaimaging.com/display/V63Doc/Installing+LUNA#InstallingLUNA-Toc314492415", "apiType": "OAI-PMH"} ["none"] [] yes unknown [] [] {} Catena uses VRA Core 3.0 metadata standards http://membership.vraweb.org/projects/vracore3/categories.html. What is a Catena? A catena is a water chain, a feature frequently found in villa gardens. These water chains connect nature, architecture, and sculpture, drawing visitors from one part of a garden to another, just as a database links together images, people, places, and concepts. Institutions for providing support to the project: http://catena.bgc.bard.edu/part_inst.htm. - Links überprüft 15.12.2017 Re 2014-01-27 2017-12-15 +r3d100011405 modENCODE eng [{"additionalName": "Model Organism ENCyclopedia of DNA Elements", "additionalNameLanguage": "eng"}] http://www.modencode.org/ ["OMICS_03816", "RRID:SCR_006206", "RRID:nlx_151752"] ["help@modencode.org", "http://www.modencode.org/contact-us/"] The modENCODE Project, Model Organism ENCyclopedia Of DNA Elements, was initiated by the funding of applications received in response to Requests for Applications (RFAs) HG-06-006, entitled Identification of All Functional Elements in Selected Model Organism Genomes and HG-06-007, entitled A Data Coordination Center for the Model Organism ENCODE Project (modENCODE). The modENCODE Project is being run as an open consortium and welcomes any investigator willing to abide by the criteria for participation that have been established for the project. Both computational and experimental approaches are being applied by modENCODE investigators to study the genomes of D. melanogaster and C. elegans. An added benefit of studying functional elements in model organisms is the ability to biologically validate the elements discovered using methods that cannot be applied in humans. The comprehensive dataset that is expected to result from the modENCODE Project will provide important insights into the biology of D. melanogaster and C. elegans as well as other organisms, including humans. eng ["disciplinary"] {"size": "2212 datasets", "updatedp": "2018-12-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.modencode.org/publications/about/index.shtml [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "gene structure", "genomic", "organisms"] [{"institutionName": "InterMine", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://intermine.readthedocs.org/en/latest/about/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://intermine.readthedocs.io/en/latest/about/contact-us/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about/contact.htm"]}, {"institutionName": "University of Cambridge, Department of Genetics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gen.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gen.cam.ac.uk/department/contacts"]}] [{"policyName": "ENCODE Consortia Data Release, Data Use, and Publication Policies", "policyURL": "https://www.genome.gov/pages/research/encode/encodedatareleasepolicyfinal2008.pdf"}, {"policyName": "Welcome to modMine", "policyURL": "http://intermine.modencode.org/release-33/begin.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.modencode.org/publications/about/index.shtml"}] closed [] ["unknown"] {"api": "ftp://data.modencode.org/", "apiType": "FTP"} ["none"] http://www.modencode.org/publications/faq/#How_do_I_cite_modMine.3F [] unknown yes [] [] {} 2015-02-09 2018-12-11 +r3d100011407 ARACHNE IDAI.objects eng [] http://arachne.uni-koeln.de/drupal/ [] ["http://arachne.uni-koeln.de/drupal/?q=de_DE/contact"] Arachne is the central object-database of the German Archaeological Institute (DAI). In 2004 the DAI and the Research Archive for Ancient Sculpture at the University of Cologne (FA) joined the effort to support Arachne as a tool for free internet-based research. Arachne's database design uses a model that builds on one of the most basic assumptions one can make about archaeology, classical archaeology or art history: all activities in these areas can most generally be described as contextualizing objects. Arachne tries to avoid the basic mistakes of earlier databases, which limited their object modeling to specific project-oriented aspects, thus creating separated containers of only a small number of objects. All objects inside Arachne share a general part of their object model, to which a more class-specific part is added that describes the specialised properties of a category of material like architecture or topography. Seen on the level of the general part, a powerful pool of material can be used for general information retrieval, whereas on the level of categories and properties, very specific structures can be displayed. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://arachne.uni-koeln.de/drupal/?q=de_DE/node/186 [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["archaeological objects", "archaeology", "art history", "digitalization", "image databank"] [{"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": ["DAI", "German Archaelological Institute"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/dai/meldungen", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dainst.org/dai/standorte/kontakte"]}, {"institutionName": "Universit\u00e4t K\u00f6ln, Arch\u00e4ologisches Institut", "institutionAdditionalName": ["Arbeitsstelle f\u00fcr Digitale Arch\u00e4ologie"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://archaeologie.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.portal.uni-koeln.de/kontakt.html?L=0"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://arachne.uni-koeln.de/drupal/?q=de_DE/node/11"}] closed [] ["MySQL"] yes {"api": "https://arachne.uni-koeln.de/drupal/?q=de_DE/node/234", "apiType": "OAI-PMH"} ["none"] https://arachne.uni-koeln.de/drupal/?q=de_DE/node/329 [] yes yes [] [] {"syndication": "https://arachne.uni-koeln.de/drupal/?q=de_DE/node/234", "syndicationType": "ATOM"} 2015-02-23 2018-12-11 +r3d100011413 Wolfenbütteler Digital Library eng [{"additionalName": "WDB", "additionalNameLanguage": "deu"}, {"additionalName": "Wolfenb\u00fctteler Digitale Bibliothek", "additionalNameLanguage": "deu"}] http://www.hab.de/en/home/library/wolfenbuettel-digital-library.html [] ["http://www.hab.de/en/home/contacts.html"] In the Wolfenbüttel Digital Library the Herzog August Bibliothek presents in digital facsimile selected items from its collections which are rare, outstanding, frequently used, or currently most relevant for research. All digitized titles may be accessed not only here, but also via the PICA-OPAC as long as they are monographs. The OPAC allows you to search for digitized books separately by limiting the search options within the database using the term Online Resources. Projects which provide additional indexing comprise a project-specific database, an inventory of digitized titles, information about tools and techniques, and references to literature. Here the main objective is to provide search facilities outside the scope of usual bibliographic description, such as page-related indexing. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["digital editions", "imprints", "incunabula", "manuscripts"] [{"institutionName": "Herzog August Bibliothek Wolfenb\u00fcttel", "institutionAdditionalName": ["HAB"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.hab.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["auskunft@hab.de"]}] [{"policyName": "Library Rules \u00a77", "policyURL": "http://www.hab.de/files/benutzungsordnunglandesbibliotheken.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.hab.de/en/home/library/service/ordering-reproductions/publishing---copyright.html"}] closed [] [] {"api": "http://oai.hab.de/?verb=Identify", "apiType": "OAI-PMH"} ["other"] http://www.hab.de/en/home/library/wolfenbuettel-digital-library/guarantee-declaration.html [] no unknown [] [] {"syndication": "http://dbs.hab.de/rss/", "syndicationType": "RSS"} Partners: http://www.hab.de/de/home/ueber-uns/kooperationen.html Various research and cataloguing projects are developing stand-alone websites containing research papers and primary sources as well as links to internal and external resources. http://www.hab.de/en/home/research/projects/web-portals-and-databases.html 2015-03-24 2018-12-12 +r3d100011414 ZVDD deu [{"additionalName": "Zentrales Verzeichnis Digitalisierter Drucke", "additionalNameLanguage": "deu"}] http://www.zvdd.de/en/start/ [] ["http://www.zvdd.de/en/about-the-zvdd-project/contact/", "zvdd@sub.uni-goettingen"] Zvdd aims to record all digital surrogates of printed works, which are available from the internet and meet certain quality criteria. This comprised all types of printed works, such as newspapers, journals, printed music, flying leaves as well as monographs or serials. eng ["other"] {"size": "1.588.728 Titel", "updatedp": "2018-12-12"} 2005 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] http://www.zvdd.de/en/about-the-zvdd-project/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["educational science", "history", "multidisciplinary", "musicology", "philology", "religous education", "science"] [{"institutionName": "AG Sammlung Deutscher Drucke", "institutionAdditionalName": ["AG SDD"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ag-sdd.de/Subsites/agsdd/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ag-sdd.de/Subsites/agsdd/DE/Header/Kontakt/kontakt_node.html;jsessionid=DCCC5E9EC4BA3DBF8BDADF42A96B025E.prod-worker2"]}, {"institutionName": "Deutsche Digitale Bibliothek", "institutionAdditionalName": ["DDB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.deutsche-digitale-bibliothek.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.deutsche-digitale-bibliothek.de/content/pressekontakt"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/service/kontakt/index.html"]}, {"institutionName": "Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen", "institutionAdditionalName": ["hbz"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hbz-nrw.de/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2008", "institutionContact": ["https://www.hbz-nrw.de/ueber-uns/kontakt"]}, {"institutionName": "Nieders\u00e4chsische Staats- und Universit\u00e4tsbibliothek G\u00f6ttingen", "institutionAdditionalName": ["SUB"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/sub-aktuell/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sub.uni-goettingen.de/kontakt/"]}, {"institutionName": "Verbundzentrale des Gemeinsamen Bibliotheksverbundes", "institutionAdditionalName": ["VZG"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gbv.de/Verbundzentrale", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2008", "institutionContact": ["http://www.gbv.de/kontakt"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.zvdd.de/en/about-the-zvdd-project/legal-notice/"}] open [] ["unknown"] no {"api": "http://www.zvdd.de/oai2/", "apiType": "OAI-PMH"} ["PURL", "URN"] ["none"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://www.zvdd.de/dms/rss", "syndicationType": "RSS"} 2015-04-07 2021-07-20 +r3d100011415 AMBDAS Bibliographic Database eng [{"additionalName": "Atomic and Molecular Bibliographic Data System", "additionalNameLanguage": "eng"}] https://www-amdis.iaea.org/AMBDAS/ [] ["https://www-amdis.iaea.org/contacts.php"] The database contains numerical data on atomic and molecular collisions, radiative processes and various other material properties of specific use in fusion and plasma research. Searching the database produces bibliographic results linking to the research paper containing the data of interest. Searches can be performed based on a variety of parameters including reactants, surface of interest, data type; or by date, journal or author. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www-naweb.iaea.org/napc/nd/index.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atomic and molecular collision", "atomic and molecular structure characteristics", "fusion energy research", "particle-solid surface interaction processes", "physico-chemical and thermo-mechanical material properties", "plasma science", "radiative processes"] [{"institutionName": "International Atomic Energy Agency, Nuclear Data Section, Atomic and Molecular Unit", "institutionAdditionalName": ["IAEA, NDS AMD Unit"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www-amdis.iaea.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www-amdis.iaea.org/contacts.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www-amdis.iaea.org/"}] closed [] ["unknown"] no {} ["DOI"] ["none"] yes unknown [] [] {} 2015-04-07 2018-12-12 +r3d100011416 GENIE eng [{"additionalName": "GENIE Atomic Data Search Engine", "additionalNameLanguage": "eng"}, {"additionalName": "General Internet Search Engine for Atomic Data", "additionalNameLanguage": "eng"}] https://www-amdis.iaea.org/GENIE/ [] ["https://www-amdis.iaea.org/contacts.php", "nds.contact-point@iaea.org"] GENIE (GENeral Internet search Engine) allows a simultaneous search on multiple databases for spectral and collisional atomic data for fusion and atomic physics research. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www-naweb.iaea.org/napc/nd/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atomic and molecular collision", "atomic and molecular structure characteristics", "fusion energy research", "particle-solid surface interaction processes", "physico-chemical and thermo-mechanical material properties", "plasma science", "radiative processes"] [{"institutionName": "International Atomic Energy Agency, Nuclear Data Section, Atomic and Molecular Data Unit", "institutionAdditionalName": ["IAEA, A&M Data Unit"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www-amdis.iaea.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www-amdis.iaea.org/contacts.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www-amdis.iaea.org/"}] closed [] ["unknown"] no {} ["none"] ["none"] no unknown [] [] {} Spectroscopic databases accessible through GENIE: NIST Atomic Spectra Database, Kurucz's CD-ROM 23, Atomic Line List v.2.04, TOPbase (Opacity Project), Kelly Atomic Line Database, MCHF/MCDHF Collection, KAERI AMODS Spectral Lines, CAMBD Atomic Spectra, Spectr-W3. Collision processes databases accessible through GENIE: IAEA ALADDIN Database, NIFS AMDIS Database, CAMBD Collisional Processes, NIST Atomic Cross Sections, Spectr-W3 2015-04-07 2021-07-20 +r3d100011417 NIST Atomic Spectral Line Broadening Bibliographic Database eng [] https://physics.nist.gov/cgi-bin/ASBib1/LineBroadBib.cgi [] ["https://physics.nist.gov/cgi-bin/ASBib1/LineBroadBib.cgi", "pml-data-webmaster@nist.gov"] This database contains references to publications that include numerical data, general information, comments, and reviews on atomic line broadening and shifts, and is part of the collection of the NIST Atomic Spectroscopy Data Center http://www.nist.gov/pml/div684/grp01/asdc_info.cfm eng ["disciplinary"] {"size": "6.988 references", "updatedp": "2018-12-12"} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["anomalous redshifts", "atomic line broadening", "bibliography database", "doppler broadening", "foreign-gas broadening", "instrumental broadening", "laser field-induced broadening", "light shifts", "line asymmetries", "line broadening tables", "line shapes", "line shifts", "line wings", "line-narrowing mechanisms", "microfield distributions", "natural line shapes", "plasma diagnostics", "plasma polarization shifts", "radiation induced broadening", "resonance broadening", "satellite bands", "self-absorption", "stark broadening", "stark shifts", "tables of voigt functions", "turbulent plasmas", "van der waals broadening", "zeeman broadening"] [{"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Standards and Technology, Atomic Spectroscopy Data Center", "institutionAdditionalName": ["NIST, Atomic Spectroscopy Data Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml/quantum-measurement/atomic-spectroscopy/atomic-spectroscopy-data-center-contacts", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/pml/quantum-measurement/atomic-spectroscopy/atomic-spectroscopy-data-center-contacts"]}, {"institutionName": "National Institute of Standards and Technology, Standard Reference Data Program", "institutionAdditionalName": ["NIST, SRDP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/srd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}] [{"policyName": "Disclaimer", "policyURL": "https://physics.nist.gov/cgi-bin/ASBib1/Linebr/disclaimer.cgi"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] closed [] ["unknown"] no {} ["DOI"] ["none"] no yes [] [] {} NIST Atomic Spectroscopy Data Center also maintains another two bibliographic databases: NIST Atomic Transition Probability Bibliographic Database http://physics.nist.gov/cgi-bin/ASBib1/TransProbBib.cgi and NIST Atomic Energy Levels and Spectra Bibliographic Database http://physics.nist.gov/cgi-bin/ASBib1/ELevBib.cgi References to publications containing critically compiled data can be found in a separate database of NIST compilations of atomic spectroscopy data http://physics.nist.gov/PhysRefData/datarefs/datarefs_search_form.html 2015-04-08 2018-12-12 +r3d100011418 NIST FLYCHK eng [{"additionalName": "Collisional-Radiative Code", "additionalNameLanguage": "eng"}] https://nlte.nist.gov/FLY/ [] ["https://nlte.nist.gov/FLY/ContactUs.html"] FLYCHK provides a capability to generate atomic level populations and charge state distributions for low-Z to mid-Z elements under NLTE conditions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://nlte.nist.gov/FLY/ContactUs.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["atomic physics", "collisional-radiative modeling", "ion populations", "ionization", "plasma kinetics", "plasma spectroscopy", "radiative losses", "recombination"] [{"institutionName": "Lawrence Livermore National Laboratory", "institutionAdditionalName": ["LLNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.llnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.llnl.gov/about/contact"]}, {"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}, {"institutionName": "U.S. Department of Energy, Office of Fusion Energy Sciences", "institutionAdditionalName": ["U.S. DOE, FES"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/fes/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}] [{"policyName": "Disclaimer", "policyURL": "https://nlte.nist.gov/FLY/disclaimer.html"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown yes [] [] {} 2015-04-08 2018-12-12 +r3d100011419 NIST Saha Plasma Population Kinetics Modeling Database eng [{"additionalName": "SAHA Plasma Population Kinetics Database", "additionalNameLanguage": "eng"}] https://nlte.nist.gov/SAHA/ [] ["pml-data-webmaster@nist.gov"] This database contains benchmark results for simulation of plasma population kinetics and emission spectra. The data were contributed by the participants of the 3rd Non-LTE Code Comparison Workshop who have unrestricted access to the database. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["code comparison", "collisional-radiative modeling", "ion population", "ionization", "ionization equilibrium", "lte", "nlte", "non-lte", "non-maxwellian plasma", "non-thermal plasma", "plasma", "plasma emission", "plasma kinetics", "plasma spectroscopy", "population kinetics", "recombination"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/about-nist/contact-us"]}] [{"policyName": "Disclaimer", "policyURL": "https://nlte.nist.gov/SAHA/disclaimer.html"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://nlte.nist.gov/SAHA/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] closed [] ["unknown"] no {} ["none"] https://nlte.nist.gov/SAHA/verhist.shtml ["none"] no yes [] [] {} The National Institute of Standards and Technology (NIST) is an agency of the U.S. Department of Commerce. 2015-04-13 2018-12-12 +r3d100011420 NIST Atomic Transition Probability Bibliographic Database eng [{"additionalName": "Atomic Transition Probabilities Bibliographic Database", "additionalNameLanguage": "eng"}] https://physics.nist.gov/cgi-bin/ASBib1/TransProbBib.cgi [] ["https://www.nist.gov/about-nist/our-organization/people?name=Kramida+684", "pml-data-webmaster@nist.gov"] This database contains references to publications that include numerical data, comments, and reviews on atomic transition probabilities (oscillator strengths, line strengths, or radiative lifetimes), and is part of the collection of the NIST Atomic Spectroscopy Data Center http://physics.nist.gov/PhysRefData/datarefs/datarefs_search_form.html eng ["disciplinary"] {"size": "9.595 references", "updatedp": "2018-12-12"} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["a-values", "bibliography database", "f-values", "line strengths", "oscillator strengths", "radiative lifetimes", "transition probabilities"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory, Quantum Measurement Division", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}, {"institutionName": "National Institute of Standards and Technology, Standard Reference Data Program", "institutionAdditionalName": ["NIST, SRDP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/srd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}, {"institutionName": "National Institute of Standards and Technology, Systems Integration for Manufacturing Applications Program", "institutionAdditionalName": ["NIST, SIMA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ws680.nist.gov/publication/get_pdf.cfm?pub_id=821138", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://physics.nist.gov/cgi-bin/ASBib1/Fvalbib/disclaimer.cgi"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] closed [] ["unknown"] no {} ["DOI"] ["none"] no yes [] [] {} NIST Atomic Spectroscopy Data Center also maintains another two bibliographic databases: NIST Atomic Spectral Line Broadening Bibliographic Database http://physics.nist.gov/cgi-bin/ASBib1/LineBroadBib.cgi and NIST Atomic Energy Levels and Spectra Bibliographic Database http://physics.nist.gov/cgi-bin/ASBib1/ELevBib.cgi References to publications containing critically compiled data can be found in a separate database of NIST compilations of atomic spectroscopy data http://physics.nist.gov/PhysRefData/datarefs/datarefs_search_form.html 2015-04-13 2018-12-12 +r3d100011421 NIST Ultraviolet Spectrum of Platinum Lamp eng [{"additionalName": "NIST Atlas of the Spectrum of a Platinum/Hollow-Cathode Lamp in the region 1130-4330 \u00c5 (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Spectrum of Platinum", "additionalNameLanguage": "eng"}] https://www.nist.gov/pml/ultraviolet-spectrum-platinum-lamp [] ["https://www.nist.gov/srd/standard-reference-data-contact-form?id=112", "yuri.ralchenko@nist.gov"] In February 1986 the NIST measurements were communicated to appropriate astronomers for use in ground-based testing and calibration programs for the GHRS, and in 1990 the NIST group published the new wavelengths for about 3000 lines in the Supplement Series of the Astrophysical Journal. The full report on the NIST measurements in the form of a complete and detailed atlas of the platinum/neon spectrum presented in this special issue of the Journal of Research of NIST will be highly useful to a wide range of scientists. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://physics.nist.gov/PhysRefData/platinum/foreword.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atlas", "atomic", "calibration", "hollow cathode lamp", "intensities", "platinum", "pt", "spectrograph", "spectroscopy", "spectrum", "ultraviolet", "uv", "wavelength"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/about-nist/contact-us"]}] [{"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}, {"policyName": "Public Access to NIST Research", "policyURL": "https://www.nist.gov/open"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/disclaimer"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] closed [] ["unknown"] no {} ["none"] https://www.nist.gov/pml/ultraviolet-spectrum-platinum-lamp-version-history ["none"] no yes [] [] {} The National Institute of Standards and Technology (NIST) is an agency of the U.S. Department of Commerce. 2015-04-13 2018-12-12 +r3d100011423 Handbook of Basic Atomic Spectroscopic Data eng [] https://www.nist.gov/pml/handbook-basic-atomic-spectroscopic-data [] ["alexander.kramida@nist.gov", "pml-data-webmaster@nist.gov"] This handbook is designed to provide a selection of the most important and frequently used atomic spectroscopic data in an easily accessible format. The compilation includes data for the neutral and singly-ionized atoms of all elements hydrogen through einsteinium (Z = 1-99). eng ["disciplinary"] {"size": "approximately 12.000 lines of all elements", "updatedp": "2018-12-12"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.nist.gov/pml/basic-atomic-spectroscopic-data-handbook [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["atomic", "atomic spectroscopic data", "atomic spectroscopy", "data", "ebook", "elements", "intensity", "spectra", "spectroscopy", "wavelength"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["PML", "Physical Measurement Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}] [{"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}, {"policyName": "Public Access to NIST Research", "policyURL": "https://www.nist.gov/open"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nlte.nist.gov/FLY/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://nlte.nist.gov/FLY/disclaimer.html"}] closed [] ["unknown"] no {} ["none"] ["none"] yes yes [] [] {} The National Institute of Standards and Technology (NIST) is an agency of the U.S. Department of Commerce. 2015-04-14 2018-12-12 +r3d100011424 The NIST Reference on Constants, Units, and Uncertainty eng [{"additionalName": "NIST Reference on Constants, Units, and Uncertainty", "additionalNameLanguage": "eng"}, {"additionalName": "Values of Fundamental Physical Constants", "additionalNameLanguage": "eng"}] https://physics.nist.gov/cuu/Constants/index.html [] ["pml-webmaster@nist.gov"] This database gives values of the basic constants and conversion factors of physics and chemistry resulting from the 2002 least-squares adjustment of the fundamental physical constants as published by the CODATA Task Group on Fundamental Constants and recommended for international use by CODATA. eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://physics.nist.gov/cuu/Reference/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Avogadro constant", "Faraday", "Newtonian gravitational constant", "Planck's constant", "QHE", "conversion factors", "elementary charge", "fine-structure constant", "free electron g factor", "measurement", "physical constants", "quantum Hall effect", "self-consistent values", "velocity of light in vacuum"] [{"institutionName": "Committee on Data for Science and Technology, Task Group on Fundamental Constants", "institutionAdditionalName": ["CODATA Task Group on Fundamental Constants"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.codata.org/committees-and-groups/fundamental-physical-constants", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.codata.org/contact-us"]}, {"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/pml"]}] [{"policyName": "Disclaimer", "policyURL": "http://nlte.nist.gov/FLY/disclaimer.html"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}, {"policyName": "NIST scientific integrity Policy", "policyURL": "https://obamawhitehouse.archives.gov/sites/default/files/nist_scientific-integrity-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/office-director/freedom-information-act"}] closed [] ["unknown"] yes {} ["none"] https://physics.nist.gov/cuu/Reference/versioncon.shtml [] unknown unknown [] [] {} CODATA Internationally recommended 2010 values of the Fundamental Physical Constants https://www.nist.gov/pml/data/physicalconst.cfm This site addresses three topics: fundamental physical constants, the International System of Units (SI), which is the modern metric system, and expressing the uncertainty of measurement results. Both essential information and background information are given for each topic. 2015-03-31 2018-12-12 +r3d100011426 Robert L. Kurucz eng [] http://kurucz.harvard.edu/ [] ["RKURUCZ@CFA.HARVARD.EDU"] This site provides up-to-date public access to Robert L. Kurucz data and programs: Vita and bibliography, papers, atoms, molecules, linelists, opacities, grids of model atmospheres, sun, stars, programs, CD-ROMs. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atoms", "linelists", "molecules", "opacities", "stars", "sun", "wavelength"] [{"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": ["ROR:03c3r2d17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}] [{"policyName": "CfA Image Use Policy", "policyURL": "https://www.cfa.harvard.edu/news/image-use-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://kurucz.harvard.edu/"}] closed [] ["unknown"] {} [] [] no unknown [] [] {} List of 26 Kurucz CD-ROMs that have been produced: http://kurucz.harvard.edu/cdroms.html 2015-04-01 2021-08-10 +r3d100011427 R. L. Kurucz atomic linelist eng [{"additionalName": "CD-ROM 18 and CD-ROM 23", "additionalNameLanguage": "eng"}] https://www.cfa.harvard.edu/amp/ampdata/databases.html [] ["RKURUCZ@CFA.HARVARD.EDU"] This facility permits selective searches of some atomic data files compiled by R. L. Kurucz (Harvard-Smithsonian Center for Astrophysics). The data provided are: - vacuum wavelength (in nm) [above 200 nm calculated using Edlen, Metrologia, Vol. 2, No. 2, 1966]- air wavelength (in nm) above 200 nm- log(gf), - E [in cm-1], j, parity, and configuration for the levels (lower, upper), - information regarding the source of the data. CD-ROM 18 contains the spectrum synthesis programs ATLAS7V, SYNTHE, SPECTRV, ROTATE, BROADEN, PLOTSYN, etc. and sample runs found in directory PROGRAMS; Atomic line data files BELLHEAVY.DAT, BELLLIGHT.DAT, GFIRONLAB.DAT, GULLIVER.DAT, NLTELINES.DAT, GFIRONQ.DAT, obsolete, merged into GFALL, found in directory LINELISTS: Molecular line data files C2AX.ASC, C2BA.ASC, C2DA.ASC, C2EA.ASC, CNAX.ASC, CNBX.ASC, COAX.ASC, COXX.ASC, H2.ASC, HYDRIDES.ASC, SIOAX.ASC, SIOEX.ASC, SIOXX.ASC, found in directory LINELISTS; and my solar flux atlas for test calculations SOLARFLUX.ASC. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://kurucz.harvard.edu/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atoms", "computed spectra", "linelists", "molecules", "solar atlases", "wavelength"] [{"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}] [{"policyName": "CfA Image Use Policy", "policyURL": "https://www.cfa.harvard.edu/policies/image_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://kurucz.harvard.edu/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.si.edu/Termsofuse"}] closed [] ["unknown"] {"api": "http://kurucz.harvard.edu/linelists/gfall/", "apiType": "FTP"} ["none"] https://www.cfa.harvard.edu/amp/ampdata/kurucz23/sekur.html [] no yes [] [] {} Robert L. Kurucz: http://kurucz.harvard.edu/ 2015-04-01 2019-12-03 +r3d100011428 European mirror of Kurucz CD-ROM 23 database eng [{"additionalName": "Atomic spectral line database from CD-ROM 23 of Robert L. Kurucz", "additionalNameLanguage": "eng"}] http://www.pmp.uni-hannover.de/cgi-bin/ssi/test/kurucz/sekur.html [] [] >>>!!!<<< 2019-12-03: The repository is no longer available >>>!!!<<< Please use https://www.cfa.harvard.edu/amp/ampdata/kurucz23/sekur.html The atomic line data used in this database are taken from Bob Kurucz' CD-ROM 23 of spectroscopic line calculations. The database contains all lines of the file "gfall.dat" with the following items for each line: Wavelength; loggf; element code; lower level: energy, J, configuration; upper level: energy, J, configuration; gamma r; gamma s; gamma w; reference code. CD-ROM 23 has all the atomic line data with good wavelengths in one large file and in one file for each species. The big file is also divided into 10 nm and 100 nm sections for convenience. Also given are hyperfine line lists for neutral Sc, V, Mn, and Co that were produced by splitting all the energy levels for which laboratory data are available (only a small fraction). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atoms", "linelists", "molecules", "opacities", "wavelength"] [{"institutionName": "Alexander von Humboldt Foundation", "institutionAdditionalName": ["Alexander von Humboldt-Stiftung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.humboldt-foundation.de/web/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.humboldt-foundation.de/web/contact.html"]}, {"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Hannover, Institute for Atomic- and Molecularphysics, Division of Plasmaphysics", "institutionAdditionalName": ["Universit\u00e4t Hnnover, Institut f\u00fcr Atom- und Molek\u00fclphysik, Abteilung Plasmaphysik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.pmp.uni-hannover.de/cgi-bin/ssi/test/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Access-Resolution Leibniz Universit\u00e4t Hannover", "policyURL": "https://www.uni-hannover.de/en/universitaet/ziele/open-access/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.uni-hannover.de/en/copyright/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://kurucz.harvard.edu/"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} The concept behind this search interface and also the ideas behind the type of compression used to store the data are influenced to a large part by the earlier work of Andreas Bard, currently at NIST, Gaithersburg, MD, and Dietmar Engelke, now at PTB, Braunschweig, Germany. Original Readme File to Kurucz' CD-ROM23: https://www.cfa.harvard.edu/amp/ampdata/kurucz23/gfreadme.dat ; Link to CfA-server: https://www.cfa.harvard.edu/amp/ampdata/kurucz23/sekur.html 2015-04-01 2021-03-17 +r3d100011429 R.L.Kelly atomic and ionic linelist eng [] https://www.cfa.harvard.edu/ampcgi/kelly.pl [] ["www-admin@cfa.harvard.edu"] Atomic and Ionic UV/VUV Linelist . This facility permits selective searches of some atomic data compliled by R. L. Kelly. The data provided are: - vacuum wavelength [in nm], - intensity estimate, - E [in cm-1], j, and configuration for lower and upper levels, - multiplet (where available), - reference numbers of the sources of the data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cfa.harvard.edu/amp/ampdata/databases.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["astrophysics", "atomic and molecular physics", "space physics"] [{"institutionName": "Harvard-Smithsonian Center for Astrophysics", "institutionAdditionalName": ["CfA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CfA Image Use Policy", "policyURL": "https://www.cfa.harvard.edu/policies/image_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.cfa.harvard.edu/amp/ampdata/databases.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/ip/1210.html"}] closed [] [] {} [] [] unknown unknown [] [] {} 2015-05-20 2021-08-24 +r3d100011430 ATOMDB eng [] http://www.atomdb.org/ [] ["http://www.atomdb.org/contact/index.php"] AtomDB is an atomic database useful for X-ray plasma spectral modeling. The current version of AtomDB is primarly used for modeing collisional plasmas, those where hot electrons colliding with astrophysically abundant elements and ions create X-ray emission. However, AtomDB is also useful when modeling absorption by elements and ions or even photoionized plasmas, where X-ray photons (often from a simple power-law source) interacting with elements and ions create complex spectra. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.atomdb.org/index.php [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astrophysics", "atoms", "emmission", "galaxies", "planets", "plasma", "spectra", "stars", "universe"] [{"institutionName": "National Aeronautics and Space Administration, Smithsonian Astrophysical Observatory, Chandra X-Ray Observatory", "institutionAdditionalName": ["NASA, SAO, CXC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cxc.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cxcweb@head.cfa.harvard.edu Smithsonian"]}] [{"policyName": "AtomDB 3.0 Documentation", "policyURL": "http://www.atomdb.org/atomdb_300_docs.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.atomdb.org/atomdb_300_docs.pdf"}] closed [] ["other"] yes {} ["none"] [] unknown yes [] [] {} The atomic database AtomDB includes the Astrophysical Plasma Emission Database (APED) and the spectral models output from the Astrophysical Plasma Emission Code (APEC). 2015-04-01 2021-07-02 +r3d100011431 NIST Energy Levels of Hydrogen and Deuterium eng [{"additionalName": "Energy Levels of Hydrogen and Deuterium", "additionalNameLanguage": "eng"}, {"additionalName": "NIST Standard Reference Database 142", "additionalNameLanguage": "eng"}] https://www.nist.gov/pml/energy-levels-hydrogen-and-deuterium [] ["https://www.nist.gov/pml/energy-levels-hydrogen-and-deuterium", "mohr@nist.gov"] This database provides theoretical values of energy levels of hydrogen and deuterium for principle quantum numbers n = 1 to 200 and all allowed orbital angular momenta l and total angular momenta j. The values are based on current knowledge of the revelant theoretical contributions including relativistic, quantum electrodynamic, recoil, and nuclear size effects. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Deuterium", "Hydrogen", "energy levels", "numerical calculation", "transition frequencies"] [{"institutionName": "U.S. Department of Commerce, National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": ["RRID:SCR_006440", "RRID:nlx_144073"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/director/pao/media-contacts"]}] [{"policyName": "Environmental Policy Statement", "policyURL": "https://www.nist.gov/environmental-policy-statement"}, {"policyName": "NIST Information Quality Standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/foia"}] closed [] ["unknown"] yes {} ["none"] https://physics.nist.gov/PhysRefData/HDEL/version.shtml [] unknown yes [] [] {} 2015-04-07 2019-12-05 +r3d100011432 Electron-Impact Excitation of Multicharged Ions using MEIBEL eng [{"additionalName": "Electron-Impact Excitation of Multicharged Ions using Merged Electron-Ion Beams Energy Loss", "additionalNameLanguage": "eng"}] http://www.cfadc.phy.ornl.gov/meibel/home.html [] [] >>>!!!<<< 2019-12-04: The repository is no longer available >>>!!!<<< Presented here are excitation cross sections measured for a select number of transitions using the Merged Electron-Ion Beams Energy Loss (MEIBEL) experiment. This is a collaboration of JILA and the Multicharged Ion Research Facility (MIRF) at Oak Ridge National Laboratory (ORNL), where the apparatus is located. Since there exist a nearly infinite number of transitions in multicharged ions we have chosen a few that serve as benchmarks for theoretical efforts. Of particular interest are forbidden transitions which are often dominated by dielectronic resonances whose positions and magnitudes are difficult to predict theoretically. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["electron impact excitation", "experimental physics", "ion bombardement", "multicharged ions"] [{"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}, {"institutionName": "Oak Ridge National Laboratory, Physics Division", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.phy.ornl.gov/groups/atomic/atomic.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Fusion Energy Sciences", "institutionAdditionalName": ["FES"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/fes/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}, {"institutionName": "UT-Battelle", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ut-battelle.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ut-battelle.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}] closed [] ["other"] {"api": "http://jigsaw.w3.org/css-validator/api.html", "apiType": "SOAP"} ["none"] [] yes unknown [] [] {} 2015-04-07 2021-11-16 +r3d100011433 Electron-Impact Ionization of Multicharged Ions at ORNL eng [] http://www.cfadc.phy.ornl.gov/xbeam/xbmintro.html [] [] >>>!!!<<< 2019-12-04: The repository is no longer available >>>!!!<<< Presented here are experimental ionization cross sections measured using the Electron-Ion Crossed Beams apparatus in the Multicharged Ion Research Facility (MIRF) at the Physics Division of Oak Ridge National Laboratory (ORNL). The data are given in both graphical and tabular form along with the reference to the original publication of the experimental results. Also presented in the figures are theoretical cross sections supporting the experiments. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["electron gun", "electron impact excitation", "experimental physics", "ion optics", "ion source", "multicharged ions"] [{"institutionName": "Oak Ridge National Laboratory, Physics Division", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.phy.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Fusion Energy Sciences", "institutionAdditionalName": ["FES"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/fes/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}, {"institutionName": "UT-Battelle", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ut-battelle.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ut-battelle.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}] closed [] ["other"] {"api": "http://jigsaw.w3.org/css-validator/api.html", "apiType": "SOAP"} ["none"] [] yes unknown [] [] {} 2015-04-07 2021-03-19 +r3d100011434 Atomic Data for Astrophysics eng [] https://www.pa.uky.edu/~verner/atom.html [] ["verner@oblako.pa.uky.edu"] The Atomic Data for Astrophysics server provides links to basic atomic data required for calculation of the ionization state of astrophysical plasmas and for quantitative spectroscopy. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.pa.uky.edu/~verner/info.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Auger process", "astrophysical plasmas", "atomic physics", "autoionization", "collisional ionization", "energy level", "opacities", "photoionization", "plasma physics", "quantitative spectroscopy", "wavelength"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Kentucky, Department of Physics & Astronomy", "institutionAdditionalName": ["UK, Department of Physics & Astronomy"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pa.as.uky.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pa.as.uky.edu/contact-physics-and-astronomy"]}] [{"policyName": "Intellectual Property Disposition and Administrative Regulation", "policyURL": "https://www.uky.edu/regs/sites/www.uky.edu.regs/files/files/ar/ar7-6.pdf"}, {"policyName": "Policy Governing Access To and Use of University Information Technology Resources", "policyURL": "https://www.uky.edu/regs/sites/www.uky.edu.regs/files/files/ar/ar10-1.pdf"}, {"policyName": "UK regulation and policy library", "policyURL": "https://www.uky.edu/regs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://libraries.uky.edu/page.php?lweb_id=115<ab_id=326"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.uky.edu/sotu/2015-2020-strategic-plan#UK%20Mission"}] closed [] ["unknown"] no {} ["none"] [] unknown unknown [] [] {} This work has been supported by the National Science Foundation through grant AST 93-19034 and by NASA through award NAGW-3315. Most of these data are utilized in the photoionization code Cloudy https://www.nublado.org/ and other radiative-collisional, photoionization, and coronal plasma codes. 2015-04-13 2021-07-02 +r3d100011444 The Atomic Line List eng [{"additionalName": "The Atomic Line List v2.04", "additionalNameLanguage": "eng"}] http://www.pa.uky.edu/~peter/atomic/ [] ["p.vanhoof@oma.be"] This is a compilation of approximately 923,000 allowed, intercombination and forbidden atomic transitions with wavelengths in the range from 0.5 Å to 1000 µm. It's primary intention is to allow the identification of observed atomic absorption or emission features. The wavelengths in this list are all calculated from the difference between the energy of the upper and lower level of the transition. No attempt has been made to include observed wavelengths. Most of the atomic energy level data have been taken from the Atomic Spectra Database provided by the National Institute of Standards and Technology (NIST). eng ["disciplinary"] {"size": "923.000 atomic transitions with wavelengths in the range from 0.5 \u00c5 to 1000 \u00b5m", "updatedp": "2015-04-20"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.pa.uky.edu/~peter/atomic/documentation.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["emmission lines", "lower level", "spectroscopy", "transition", "upper level", "wavelength"] [{"institutionName": "Observatoire royal de Belgique", "institutionAdditionalName": ["Koninklijke Sterrenwacht van Belgi\u00eb", "Royal Observatory of Belgium"], "institutionCountry": "BEL", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.astro.oma.be/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["p.vanhoof@oma.be"]}, {"institutionName": "University of Kentucky, Department of Physics and Astronomy", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pa.as.uky.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["p.vanhoof@oma.be"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.pa.uky.edu/~peter/atomic/disclaimer.html"}] closed [] ["unknown"] {} ["none"] http://www.pa.uky.edu/~peter/atomic/index.html [] yes yes [] [] {} Beta-Verson v2.05b21: https://www.pa.uky.edu/~peter/newpage/ - December 2019. Only for testing 2015-04-20 2019-12-05 +r3d100011446 STARK-B eng [] http://stark-b.obspm.fr/ ["ISSN 2429-6465"] ["http://stark-b.obspm.fr/index.php/contact", "mdimitrijevic@aob.bg.ac.rs", "nbennessib@ksu.edu.sa", "nicolas.moreau@obspm.fr", "sylvie.sahal-brechot@obspm.fr"] STARK-B is a database of calculated widths and shifts of isolated lines of atoms and ions due to electron and ion collisions. This database is devoted to modeling and spectroscopic diagnostics of stellar atmospheres and envelopes. In addition, it is also devoted to laboratory plasmas, laser equipments and technological plasmas. So, the domain of temperatures and densities covered by the tables is wide and depends on the ionization degree of the considered ion. The temperature can vary from several thousands for neutral atoms to several hundred thousands of Kelvin for highly charged ions. The electron or ion density can vary from 1012 (case of stellar atmospheres) to several 1019cm-3 (some white dwarfs and some laboratory plasmas). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://stark-b.obspm.fr/index.php/introduction [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmospheres", "atomic data", "atomic processes", "laser equipments", "line", "profiles", "spectroscopic diagnostics", "stars", "stellar atmospheres", "stellar envelopes"] [{"institutionName": "Astronomical Observatory of Belgrade", "institutionAdditionalName": ["AOB", "Astronomskoj opservatoriji u Beogradu"], "institutionCountry": "SRB", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.aob.rs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@aob.rs"]}, {"institutionName": "Observatoire de Paris", "institutionAdditionalName": ["Paris Observatory", "l\u2019Observatoire de Paris"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.obspm.fr/-observatoire-de-paris-.html?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.obspm.fr/-contacts-.html?lang=en"]}] [{"policyName": "Introduction", "policyURL": "http://stark-b.obspm.fr/index.php/introduction"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://stark-b.obspm.fr/"}] closed [] ["other"] yes {} ["none"] [] yes unknown [] [] {} 2015-04-22 2020-01-03 +r3d100011447 Stark Broadening Parameters for Neutral and Singly Charged Ions eng [{"additionalName": "Param\u00e8tres d'\u00e9largissement Stark des \u00e9l\u00e9ments neutres et une fois ionis\u00e9s", "additionalNameLanguage": "fra"}] https://griem.obspm.fr/index.php?page=accueil.php [] ["Lydia.Tchang-Brillet@obspm.fr"] Tables extracted from the book "Spectral Line Broadening by Plasmas" by H. R. Griem (Academic Press, New York, 1974) eng ["disciplinary"] {"size": "77 spectra", "updatedp": "2015-05-11"} 2006 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atomic physics", "griem", "lerma meudon", "obspm", "quantum physics", "spectroscopy"] [{"institutionName": "Minist\u00e8re de l\u2019Enseignement sup\u00e9rieur et de la Recherche, Observatoire de Paris", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.obspm.fr/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.obspm.fr/-contacts-.html?lang=fr"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://griem.obspm.fr/"}] closed [] ["unknown"] no {} ["none"] ["none"] no unknown [] [] {} 2015-05-05 2021-07-02 +r3d100011448 Vienna Atomic Line Database eng [{"additionalName": "VALD", "additionalNameLanguage": "eng"}] http://vald.astro.uu.se/ [] ["http://vald.astro.uu.se/~vald/php/vald.php?docpage=contact.html"] The Vienna Atomic Line Database (VALD) is a collection of atomic and molecular transition parameters of astronomical interest. VALD offers tools for selecting subsets of lines for typical astrophysical applications: line identification, preparing for spectroscopic observations, chemical composition and radial velocity measurements, model atmosphere calculations etc. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.astro.uu.se/valdwiki [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["absorption in stellar spectra", "atomic transitions", "spectral lines", "spectroscopy", "stellar atmospheres"] [{"institutionName": "Institute of Astronomy of the Russian Academy of Sciences", "institutionAdditionalName": ["INASAN", "\u0424\u0435\u0434\u0435\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u0431\u044e\u0434\u0436\u0435\u0442\u043d\u043e\u0435 \u0443\u0447\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043d\u0430\u0443\u043a\u0438 \u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0430\u0441\u0442\u0440\u043e\u043d\u043e\u043c\u0438\u0438 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u043d\u0430\u0443\u043a"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.inasan.ru/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["admin@inasan.rssi.ru"]}, {"institutionName": "University of Vienna", "institutionAdditionalName": ["Universit\u00e4t Wien"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.univie.ac.at/en/", "institutionIdentifier": ["ISNI:0000000122861424", "ROR:03prydq77", "RRID:SCR_011741", "RRID:nlx_52021"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.univie.ac.at/en/about-us/further-information/contact-services-a-z/"]}, {"institutionName": "Uppsala University", "institutionAdditionalName": ["Uppsala universitet"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uu.se/en/", "institutionIdentifier": ["ISNI:0000000419369457", "ROR:048a87296", "RRID:SCR_011751", "RRID:nlx_91052"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uu.se/en/about-uu/contact/"]}] [{"policyName": "About VALD", "policyURL": "http://vald.astro.uu.se/~vald/php/vald.php?docpage=about_vald.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://vald.astro.uu.se/~vald/php/vald.php?docpage=about_vald.html"}] closed [] ["unknown"] {"api": "http://vald.astro.uu.se/", "apiType": "FTP"} ["none"] http://www.astro.uu.se/valdwiki/Acknowledgement ["none"] yes yes [] [] {} Mirror Servers: Uppsala: http://vald.astro.uu.se/~vald/php/vald.php Vienna: http://vald.astro.univie.ac.at/~vald3/php/vald.php Moscow: http://vald.inasan.ru/~vald3/php/vald.php 2015-05-05 2019-12-06 +r3d100011449 MCHF/MCDHF Database eng [{"additionalName": "Multiconfiguration Hartree-Fock and Multiconfiguration Dirac-Hartree-Fock Database", "additionalNameLanguage": "eng"}] https://nlte.nist.gov/MCHF/ [] ["Charlotte.Fischer@Nist.Gov", "https://nlte.nist.gov/MCHF/background.html"] The MCHF/MCDHF database contains collections of transition data from different relativistic theories by different computational methods. For a few collections the Landé gJ factor is provided. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30302 General Theoretical Chemistry", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://nlte.nist.gov/MCHF/background.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["atom physics", "atomic system", "dirac-hartree-fock", "energy", "hartree-fock", "quantum mechanics", "technology", "transition data"] [{"institutionName": "National Institute of Standards and Technology, Physical Measurement Laboratory", "institutionAdditionalName": ["NIST, PML"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/pml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nist.gov/nist-media-contacts"]}, {"institutionName": "U.S.Department of Energy, Office of Science, Office of Basic Energy Sciences, Chemical Sciences, Geosciences and Biosciences Division", "institutionAdditionalName": ["BES, CSGB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.osti.gov/bes/csgb", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.osti.gov/About/Contact"]}] [{"policyName": "Database Disclaimer", "policyURL": "https://www.nist.gov/pml/database-disclaimer"}, {"policyName": "NIST Summary Report on Scientific Integrity", "policyURL": "https://www.nist.gov/summary-report-scientific-integrity"}, {"policyName": "NIST quality standards", "policyURL": "https://www.nist.gov/nist-information-quality-standards"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://nlte.nist.gov/MCHF/background.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/disclaimer"}] closed [] ["unknown"] {} ["none"] https://nlte.nist.gov/MCHF/citation.html ["none"] yes yes [] [] {} Atomic Structure Codes licenses: https://nlte.nist.gov/MCHF/index.html 2015-05-06 2021-07-06 +r3d100011450 CHIANTI eng [{"additionalName": "An Atomic Database for Spectroscopic Diagnostics of Astrophysical Plasmas", "additionalNameLanguage": "eng"}] https://www.chiantidatabase.org/ [] ["pyoung9@gmu.edu"] CHIANTI consists of a critically evaluated set of up-to-date atomic data, together with user-friendly programs written in Interactive Data Language (IDL) and Python to calculate the spectra from astrophysical plasmas. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["applied mathematics", "emission line spectra", "energy levels", "geophysics", "radiative transition probabilities", "spectroscopy", "theoretical physics", "wavelength"] [{"institutionName": "George Mason University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.gmu.edu/", "institutionIdentifier": ["ROR:02jqj7156", "RRID:SCR_011213", "RRID:nlx_29991"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.gmu.edu/admissions-aid/contact-us"]}, {"institutionName": "University of Cambridge", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cam.ac.uk/", "institutionIdentifier": ["ROR:013meh722", "RRID:SCR_000996", "RRID:nlx_31670"], "responsibilityStartDate": "1997", "responsibilityEndDate": "", "institutionContact": ["https://www.cam.ac.uk/contact-the-university?ucam-ref=global-footer"]}, {"institutionName": "University of Michigan", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umich.edu/", "institutionIdentifier": ["ROR:00jmfr291", "RRID:SCR_011668", "RRID:nlx_80572"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.umich.edu/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.chiantidatabase.org/chianti.html"}] closed [] ["unknown"] {} ["none"] https://www.chiantidatabase.org/referencing.html ["none"] no unknown [] [] {} This collaboration is made possible only with the support of funding agencies in the United States and Europe, and the help of individual scientists outside the CHIANTI consortium: https://www.chiantidatabase.org/acknowledgements.html ChiantiPy on GitHub : https://github.com/chianti-atomic/ChiantiPy/ 2015-05-06 2021-07-02 +r3d100011452 Archives of programs and data for physics eng [{"additionalName": "Archives for physics", "additionalNameLanguage": "eng"}] http://www.sci.muni.cz/~physics/info.htm [] ["trunec@sci.muni.cz"] >>>!!!<<< 2018-01-18: no data nor programs can be found >>>!!!<<< These archives contain public domain programs for calculations in physics and other programs that we suppose about will help during work with computer. Physical constants and experimental or theoretical data as cross sections, rate constants, swarm parameters, etc., that are necessary for physical calculations are stored here, too. Programs are mainly dedicated to computers compatible with PC IBM. If programs do not use graphic units it is possible to use them on other computers, too. It is necessary to reprogram the graphic parts of programs in the other cases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-01-18 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["data processing", "education", "numerical methods", "plasmaphysics"] [{"institutionName": "Masaryk University, Department of Physical Electronics", "institutionAdditionalName": ["Masarykova univerzita, \u00dastav fyzik\u00e1ln\u00ed elektroniky"], "institutionCountry": "CZE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.muni.cz/o-univerzite/fakulty-a-pracoviste/prirodovedecka-fakulta/312030-ustav-fyzikalni-elektroniky", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.muni.cz/en/people/1597-david-trunec", "trunec@sci.muni.cz"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.sci.muni.cz/~physics/info.htm"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.sci.muni.cz/~physics/info.htm"}] restricted [] ["unknown"] {} ["none"] http://www.sci.muni.cz/~physics/archives.htm ["none"] yes unknown [] [] {} 2015-05-11 2018-01-18 +r3d100011454 Portal to Los Alamos Opacity Codes eng [{"additionalName": "Astrophysical opacities", "additionalNameLanguage": "eng"}, {"additionalName": "TOPS opacities", "additionalNameLanguage": "eng"}] http://aphysics2.lanl.gov/opacity/lanl/ [] ["opacity@lanl.gov"] Portal to Los Alamos Opacity Codes is your gateway to the set of opacity codes developed at the Los Alamos National Laboratory. The TOPS code has been developed to calculate multigroup opacities that can be written in a variety of formats for use in radiation transport codes. Arbitrary mixture of any elements for which OPLIB data exist is supported. Opacities of special mixtures that are important in astrophysical applications are also available as a separate option (Astrophysical opacities). eng ["institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["LEDCOP", "radiation transport"] [{"institutionName": "Los Alamos National Laboratory, Theoretical Division, T-1, Physics and Chemistry of Materials", "institutionAdditionalName": ["LANL T-1"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lanl.gov/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lanl.gov/resources/contacts.php"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.lanl.gov/resources/web-policies/copyright-legal.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.lanl.gov/resources/web-policies/copyright-legal.php"}] closed [] [] no {} ["none"] http://www.lanl.gov/resources/web-policies/copyright-legal.php [] yes unknown [] [] {} 2015-07-15 2018-01-18 +r3d100011455 Interface to Los Alamos Atomic Physics Codes eng [] http://aphysics2.lanl.gov/tempweb/lanl/ [] ["abd@lanl.gov"] Interface to Los Alamos Atomic Physics Codes is your gateway to the set of atomic physics codes developed at the Los Alamos National Laboratory. The well known Hartree-Fock method of R.D. Cowan, developed at Group home page of the Los Alamos National Laboratory, is used for the atomic structure calculations. Electron impact excitation cross sections are calculated using either the distorted wave approximation (DWA) or the first order many body theory (FOMBT). Electron impact ionization cross sections can be calculated using the scaled hydrogenic method developed by Sampson and co-workers, the binary encounter method or the distorted wave method. Photoionization cross sections and, where appropriate, autoionizations are also calculated. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomic physics", "atomic structure", "collision strengths", "cross sections", "ionization stage", "rates coefficients"] [{"institutionName": "Los Alamos National Laboratory, Theoretical Division, T-1, Physics and Chemistry of Materials", "institutionAdditionalName": ["LANL T-1"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lanl.gov/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lanl.gov/resources/contacts.php"]}] [{"policyName": "ACE -Another Coollisional excitation Code", "policyURL": "http://aphysics2.lanl.gov/tempweb/lanldocs/ace.pdf"}, {"policyName": "CATS - Cowan Atomic Structure Code", "policyURL": "http://aphysics2.lanl.gov/tempweb/lanldocs/cats.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://www.lanl.gov/resources/web-policies/copyright-legal.php"}, {"policyName": "ionization code - GIPPER User manual", "policyURL": "http://aphysics2.lanl.gov/tempweb/lanldocs/gipper.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.lanl.gov/resources/web-policies/copyright-legal.php"}] closed [] [] no {} ["none"] http://www.lanl.gov/resources/web-policies/copyright-legal.php [] yes unknown [] [] {} 2015-07-17 2018-01-18 +r3d100011456 CCC Data Base eng [{"additionalName": "Convergent Close-Coupling Data Base", "additionalNameLanguage": "eng"}] http://atom.curtin.edu.au/CCC-WWW/index.html [] ["I.Bray@curtin.edu.au", "yuri.ralchenko@nist.gov"] The CCC method yields accurate excitation and ionisation cross sections for atomic and ionic targets which are well-modelled by one or two valence electrons above a Hartree-Fock core. Inner core ionisation can be a major contributor to the total ionisation cross section. Such contributions can be estimated using various forms of Born-based approximations. eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astrophysics", "atomic collision", "fusion reserach", "molecular collision", "theoretical physics"] [{"institutionName": "Curtin University, Faculty of Science and Engineering, School for Science, Department of Physics and Astronomy", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://scieng.curtin.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["I.Bray@curtin.edu.au", "http://atom.curtin.edu.au/", "http://plasma-gate.weizmann.ac.il/~fnralch/"]}] [{"policyName": "Australian Code for the responsible conduct of research", "policyURL": "https://www.nhmrc.gov.au/guidelines-publications/r39"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://policies.curtin.edu.au/local/docs/policy/Research_Data_and_Primary_Materials_Policy.pdf"}] restricted [] ["unknown"] {} ["none"] ["none"] no unknown [] [] {} 2015-05-12 2018-01-18 +r3d100011457 AMODS eng [{"additionalName": "Atomic Molecular and Optical Database Systems", "additionalNameLanguage": "eng"}] http://atom.kaeri.re.kr/ [] ["yjrhee@kaeri.re.kr"] The repository is no longer available. >>>!!!<<< 2018-01-18: no more access to AMODS >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmoic structures", "atomic energy", "atomic spectroscopy", "radiative transition"] [{"institutionName": "Korea Atomic Energy Research Institute, Nuclear Data Center", "institutionAdditionalName": ["KAERI, NDC"], "institutionCountry": "KOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kaeri.re.kr/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://atom.kaeri.re.kr/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://atom.kaeri.re.kr/"}] closed [] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} description: Informations on the atomic and molecular structures, transition lines and probabilities, laser propagation characteristics, collisional ionization cross sections, and fundamental constants are being compiled in this site. AMODS is a mirror site of ASD (Atomic Spectra Database, https://www.re3data.org/repository/r3d100011296) of NIST until 2002. Whereas AMODS is a representative database of Atomic and Molecular data in KAERI, ATOM is a representative database of Nuclear data in KAERI. 2015-05-12 2018-08-09 +r3d100011460 SPECTR-W3 eng [{"additionalName": "Atomic Database Spectr-W3 for Plasma Spectroscopy and other Applications", "additionalNameLanguage": "eng"}, {"additionalName": "SPECTR-W3 Database on spectroscopic properties of atoms and ions", "additionalNameLanguage": "eng"}] http://spectr-w3.snz.ru/index.phtml [] ["P.A.Loboda@vniitf.ru"] The information accumulated in the SPECTR-W3 ADB contains over 450,000 records and includes factual experimental and theoretical data on ionization potentials, energy levels, wavelengths, radiation transition probabilities, oscillator strengths, and (optionally) the parameters of analytical approximations of electron-collisional cross-sections and rates for atoms and ions. Those data were extracted from publications in physical journals, proceedings of the related conferences, special-purpose publications on atomic data, and provided directly by authors. The information is supplied with references to the original sources and comments, elucidating the details of experimental measurements or calculations, where necessary and available. To date, the SPECTR-W3 ADB is the largest factual database in the world containing the information on spectral properties of multicharged ions. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://spectr-w3.snz.ru/about.phtml [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["nuclear physics", "technology"] [{"institutionName": "Aix-Marseille University, Physics of Ionic and Molecular Interactions", "institutionAdditionalName": ["Aix-Marseille Universit\u00e9, Laboratoire de Physique des Interactions Ioniques et Moleculaires"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://piim.univ-amu.fr/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://piim.univ-amu.fr/Contacts-and-access?lang=en"]}, {"institutionName": "Czech Technical University in Prague, Faculty of Nuclear Sciences and Physical Engineering", "institutionAdditionalName": ["CTU", "\u010cesk\u00e9 vysok\u00e9 u\u010den\u00ed technick\u00e9 v Praze, Fakulta jadern\u00e1 a fyzik\u00e1ln\u011b in\u017een\u00fdrsk\u00e1"], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cvut.cz/en/faculty-of-nuclear-sciences-and-physical-engineering", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GSI Helmholtzzentrum f\u00fcr Schwerionenforschung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gsi.de/start/aktuelles.htm", "institutionIdentifier": ["ROR:02k8cbn47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gsi.de/topmenu/kontakt.htm"]}, {"institutionName": "Institute for High Energy Densities of the Joint Institute for High Temperatures of the Russian Academy of Sciences", "institutionAdditionalName": ["IHED JIHT of RAS", "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u043e\u0433\u043e \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430 \u0432\u044b\u0441\u043e\u043a\u0438\u0445 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u041d\u0430\u0443\u043a"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ihed.ras.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@ihed.ras.ru"]}, {"institutionName": "International Sicence and Technology Center", "institutionAdditionalName": ["ISTC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.istc.int/", "institutionIdentifier": ["ROR:03fn1w943"], "responsibilityStartDate": "2006", "responsibilityEndDate": "2011", "institutionContact": ["http://www.istc.int/en/contact-info", "http://www.istc.int/en/project/735FF7A5D98946F4C32576CD0026AB02"]}, {"institutionName": "Joint Institute for High Temperatures of the Russian Academy of Sciences", "institutionAdditionalName": ["JIHT RAS"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jiht.ru/en/", "institutionIdentifier": ["ROR:04gns8903"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jiht.ru/about/contacts/"]}, {"institutionName": "Lawrence Livermore National Laboratory", "institutionAdditionalName": ["LLNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.llnl.gov/", "institutionIdentifier": ["ROR:041nk4h53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.llnl.gov/about/contact"]}, {"institutionName": "Russian Federal Nuclear Center - VNIITF", "institutionAdditionalName": ["RFNC - VNIITF", "Zababakhin All-Russian Scientific Research Institute of Technical Physics"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.vniitf.ru/en/", "institutionIdentifier": ["ROR:02se2k984"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["P.A.Loboda@vniitf.ru", "http://vniitf.ru/en/article/contacts"]}, {"institutionName": "Russian Foundation for Basic Research", "institutionAdditionalName": ["\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u0444\u043e\u043d\u0434 \u0444\u0443\u043d\u0434\u0430\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439"], "institutionCountry": "RUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.rfbr.ru/rffi/eng", "institutionIdentifier": ["ROR:02mh1ke95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Darmstadt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tu-darmstadt.de/", "institutionIdentifier": ["ROR:05n911h24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Milano-Bicocca", "institutionAdditionalName": ["Universita degli Studi di Milano-Bicocca"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unimib.it/go/102/Home/English", "institutionIdentifier": ["ROR:01ynf4891"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bicocca.international@unimib.it"]}, {"institutionName": "Universit\u00e9 de Li\u00e8ge, Institut de Physique Nucleaire, Atomique et de Spectroscopie", "institutionAdditionalName": ["IPNAS"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.istc.int/en/institute/17657", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hpgarnir@ulg.ac.be", "http://www.istc.int/en/contact-info"]}, {"institutionName": "Virtual Atomic and Molecular Data Centre Consortium", "institutionAdditionalName": ["VAMDC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.vamdc.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "VADMCStandards", "policyURL": "http://standards.vamdc.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://standards.vamdc.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://spectr-w3.snz.ru/index.phtml"}] restricted [] ["unknown"] {} ["none"] http://www.vamdc.org/structure/policy-citation/ ["none"] yes unknown [] [] {} 2015-05-13 2020-09-02 +r3d100011461 Atomic & Molecular Database eng [{"additionalName": "CAMDB", "additionalNameLanguage": "eng"}, {"additionalName": "Chinese Atomic & Molecular Database", "additionalNameLanguage": "eng"}, {"additionalName": "\u539f\u5b50\u5206\u5b50\u6570\u636e\u5e93", "additionalNameLanguage": "zho"}] http://www.camdb.ac.cn/e/ [] ["wu_yong@iapcm.ac.cn"] Welcome to our Atomic & Molecular Database in the Institute of Applied Physics and Computational Mathematics (IAPCM). The database is intended to collect, assess and compile atomic and molecular data for various elementary processes, and especially data needed in plasma simulation and diagnosis. Part data came from the old version of the SPECTR database(by A.Ya Faenov et al). eng ["disciplinary"] {"size": "850.000 records", "updatedp": "2015-05-20"} 2004 2006 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["applied physics"] [{"institutionName": "Chinese National Committee for CODATA", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.codata.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Applied Physics and Computational Mathematics", "institutionAdditionalName": ["IAPCM"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iapcm.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.camdb.ac.cn/e/"}] restricted [] ["unknown"] no {} ["none"] ["none"] yes unknown [] [] {} 2015-05-13 2021-08-24 +r3d100011462 Selected constants energy levels and atomic spectra of actinides eng [{"additionalName": "Constantes selectionnees niveaux d'energie et spectres atomiques des actinides", "additionalNameLanguage": "fra"}] http://web2.lac.u-psud.fr/lac/Database/Contents.html ["ISSN 2428-257X"] ["http://web2.lac.u-psud.fr/spip.php?auteur1&lang=fr"] >>>!!!<<< The repository is no longer available. >>>!!!<<< The aim of the present volume is the compilation of experimental data. The Tables of energy levels are presented in a way similar to the "Atomic Energy levels the Rare Earth Elements", and incorporate additionnal data: isotope shifts and hyperfine structures. For each spectrum, they are separated in two lists of odd and even levels, the parity of the ground level being given first. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["actinides", "atomic physics", "molecular physics"] [{"institutionName": "Laboratoire Aim\u00e9 Cotton", "institutionAdditionalName": ["LAC", "UMR9188"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lac.u-psud.fr/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "http://web2.lac.u-psud.fr/spip.php?page=credits"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://web2.lac.u-psud.fr/spip.php?page=credits"}] closed [] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} 2015-05-18 2021-09-08 +r3d100011464 LXcat eng [{"additionalName": "ICECat", "additionalNameLanguage": "eng"}, {"additionalName": "electron scattering database", "additionalNameLanguage": "eng"}, {"additionalName": "ion scattering database", "additionalNameLanguage": "eng"}] https://fr.lxcat.net/home/ [] ["lxcat.info@gmail.com"] At the heart of the Plasma Data Exchange Project is LXcat (pronounced "elecscat"), an open-access website for collecting, displaying, and downloading electron and ion scattering cross sections, swarm parameters (mobility, diffusion coefficient, etc.), reaction rates, energy distribution functions, etc. and other data required for modeling low temperature plasmas. The available data bases have been contributed by members of the community and are indicated by the contributor's chosen title. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://fr.lxcat.net/home/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["electrons", "interaction potentials", "ions", "scatterring cross sections", "swarm data", "transport data"] [{"institutionName": "Plasma Data Exchange Project", "institutionAdditionalName": ["GEC Plasma Data Exchange Project", "PDEP"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://fr.lxcat.net/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lxcat.info@gmail.com"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://fr.lxcat.net/instructions/how_reference.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://fr.lxcat.net/instructions/how_reference.php"}] restricted [] ["unknown"] yes {} ["none"] https://fr.lxcat.net/instructions/how_reference.php ["none"] no unknown [] [] {} Supporting organizations of the repository: http://fr.lxcat.net/home/ The electron and ion databases were originally separate structures and accessible through two different websites called LXCat and ICECat, respectively. In April 2012, the databases were combined into a common structure and we have incorporated the ICECat site into LXCat. Both electron and ion data are now accessible from this one site. http://fr.lxcat.net/home/team.php Eindhoven University of Technology joined the project in 2013 installing a mirroring server for a more relaible service http://nl.lxcat.net/home/ 2015-05-19 2018-04-16 +r3d100011466 OMNIWeb eng [] https://omniweb.gsfc.nasa.gov/ow.html [] ["Natalia.E.Papitashvili@gsfc.nasa.gov"] Hourly "Near-Earth" solar wind magnetic field and plasma data, energetic proton fluxes (>1 to >60 MeV), and geomagnetic and solar activity indices. OMNIWeb is part of "Space Physics Data Facility" (https://www.re3data.org/repository/r3d100010168 ). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://omniweb.gsfc.nasa.gov/html/ow_data.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aeronautics", "space science"] [{"institutionName": "NASA Goddard Space Flight Center, Heliospheric Science Division, Space Physics Data Facility", "institutionAdditionalName": ["HSD", "SPDF"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://spdf.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gsfc-spdf-support@lists.nasa.gov"]}] [{"policyName": "INTELLECTUAL PROPERTY AND DATA RIGHTS", "policyURL": "https://www.nasa.gov/offices/ogc/ip/1210.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/ip/1210.html"}] restricted [] ["unknown"] {"api": "https://omniweb.gsfc.nasa.gov/ftpbrowser/ftphelper.html", "apiType": "FTP"} ["none"] https://omniweb.gsfc.nasa.gov/html/citing.html ["none"] no unknown [] [] {} OMNIWeb Plus (now including COHOWeb, ATMOWeb, FTP Browser, HelioWeb and CGM)is a part of NASA's Space Physics Data Facility http://spdf.gsfc.nasa.gov/ 2015-05-19 2018-10-10 +r3d100011468 Data Portal of the Alfred Wegener Institute eng [{"additionalName": "including: AWI EXPEDITION", "additionalNameLanguage": "eng"}] https://data.awi.de/?site=home ["biodbcore-001661"] ["expedition@awi.de"] Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA. eng ["institutional"] {"size": "1.729 expeditions; 398.298 datasets", "updatedp": "2020-08-12"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.awi.de/?site=about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["ATM", "FRAM", "Heincke", "LTER", "Neumayer III", "Polar 2", "Polar 5", "Polar 6", "Polarstern", "aircraft", "climate change", "environmental science", "research vessels"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/?site=home", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research, Computing and Data Centre", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung, Rechenzentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en/about-us/service/computing-centre.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Stephan.Frickenhaus@awi.de"]}] [{"policyName": "Tutorials", "policyURL": "https://sensor.awi.de/?site=tutorial"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["unknown"] {} ["DOI", "hdl"] ["ORCID"] yes yes [] [] {} 2015-05-20 2021-11-16 +r3d100011469 GIS Maps Portal at AWI eng [{"additionalName": "maps@awi", "additionalNameLanguage": "eng"}] https://maps.awi.de/awimaps/catalog/ ["biodbcore-001511"] ["antonie.haas@awi.de"] This portal provides an overview of GIS-products at AWI. maps@awi stores and shares public access GIS data created by AWI projects. eng ["disciplinary"] {"size": "36 datasets; 3 projects", "updatedp": "2020-08-12"} 2011 ["deu", "eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Biotopes", "ecology", "environmental monitoring", "fishery", "habitat", "hydrography", "remote sensing", "sedimentology", "species distribution", "water resources"] [{"institutionName": "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/ueber-uns/service/kontakt.html"]}, {"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["Germany, Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wissgrid - Grid f\u00fcr die Wissenschaft", "institutionAdditionalName": ["Wissgrid - Grid for Science"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://wissgrid.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2011", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.awi.de/kontaktseiten/impressum.html"}] restricted [] ["other"] {} ["none"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-05-20 2021-11-17 +r3d100011470 Data Portal German Marine Research eng [] https://marine-data.de/ [] ["https://marine-data.de/"] The Data Portal German Marine Research is a product of the Marine Network for Integrated Data Access (MaNIDA) funded cooperatively by the Helmholtz Association and the affiliated universities. The consortium aims to implement a sustainable e-infrastructure for coherent discovery, view, download and dissemination of marine research data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://marine-data.de/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["bathymetry", "earth system research", "ecosystem", "marine research data", "observatories", "oceanography", "physics", "sample", "temperature", "vessels"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}, {"institutionName": "Federal Maritime and Hydrographic Agency of Germany", "institutionAdditionalName": ["BSH", "Bundesamt f\u00fcr Seeschifffahrt und Hydrographie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.bsh.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:03ycvrj88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bsh.de/DE/Service/Kontakt/kontakt_node.html"]}, {"institutionName": "GEOMAR Helmholtz Centre for Ocean Research Kiel", "institutionAdditionalName": ["GEOMAR", "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/en/", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.geomar.de/en/service/"]}, {"institutionName": "Helmholtz-Gemeinschaft Deutscher Forschungszentren", "institutionAdditionalName": ["Helmholtz Association"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz.de/en/contact/"]}, {"institutionName": "Helmholtz-Zentrum hereon GmbH", "institutionAdditionalName": ["hereon"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hereon.de/index.php.en", "institutionIdentifier": ["ROR:03qjp1d79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hereon.de/about_us/organisation/contact/index.php.en"]}, {"institutionName": "MARUM", "institutionAdditionalName": ["Universit\u00e4t Bremen, Center for Marine Environmental Sciences", "Universit\u00e4t Bremen, Zentrum f\u00fcr Marine Umweltwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/en/index.html", "institutionIdentifier": ["ROR:02gn1ar53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@marum.de"]}, {"institutionName": "Marine Network for Integrated Data Access", "institutionAdditionalName": ["MaNIDA"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.manida.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.manida.org/metanavi/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://marine-data.de/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://marine-data.de/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.awi.de/en/about-us/service/media-centre.html"}] restricted [] ["unknown"] {} ["DOI", "hdl"] https://marine-data.de/ ["none"] yes no [] [] {"syndication": "https://manida.awi.de/rest/rss", "syndicationType": "RSS"} 2015-05-20 2021-04-06 +r3d100011471 TERENO Data Discovery Portal eng [{"additionalName": "Terrestrial Environmental Observatories Data Discovery Portal", "additionalNameLanguage": "eng"}] https://ddp.tereno.net/ddp/ [] ["support-tereno@tereno.net"] This portal applicaton brings together the data collected and published via OGC Web-services from the individual observatories and provides access of the data to the public. Therefore, it serves as a database node to provide scientists and decision makers with reliable and well accessible data and data products. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["climate change", "ecology", "ecosystem", "hydrology", "mining"] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["FZJ"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fz-juelich.de/portal/EN/Service/Contact/contact_node.html?cms_docId=721936"]}, {"institutionName": "German Aerospace Center", "institutionAdditionalName": ["DLR", "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Centre for Geosciences", "institutionAdditionalName": ["Deutsches GeoForschungsZentrum", "GFZ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kaiserk@gfz-potsdam.de"]}, {"institutionName": "Helmholtz Centre for Environmental Research", "institutionAdditionalName": ["Helmholtz-Zentrum f\u00fcr Umweltforschung", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/index.php?en=33573", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ufz.de/index.php?de=39475"]}, {"institutionName": "Helmholtz Zentrum M\u00fcnchen, German Research Center for Environmental Health", "institutionAdditionalName": ["HMGU", "Helmholtz Zentrum M\u00fcnchen, Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/en/helmholtz-zentrum-muenchen/index.html", "institutionIdentifier": ["ROR:00cfam450"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz-muenchen.de/en/about-us/service/contact/index.html"]}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute of Meteorology and Climate Research - Atmospheric Environmental Research", "institutionAdditionalName": ["IMK-IFU", "KIT", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung - Atmosph\u00e4rische Umweltforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.imk-ifu.kit.edu/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imk-ifu.kit.edu/tereno.php"]}] [{"policyName": "TERENO Data Policy - Terms of Use", "policyURL": "https://www.tereno.net/ddp/docs/TERENO-Data%20Policy%20V2.0.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.tereno.net/ddp/docs/TERENO-Data%20Policy%20V2.0.pdf"}] restricted [] ["unknown"] {} ["DOI", "PURL", "hdl"] https://www.tereno.net/ddp/docs/TERENO-Data%20Policy%20V2.0.pdf ["none"] no yes [] [] {} The disclaimer "Use of data from the Tereno project" of the repository will only be shown when clicking on the e-mail button to receive data via e-mail. 2015-05-26 2021-03-31 +r3d100011472 Ocean Science Information System eng [{"additionalName": "OSIS", "additionalNameLanguage": "eng"}, {"additionalName": "Ocean Science Information System", "additionalNameLanguage": "eng"}] https://portal.geomar.de/osis [] ["datamanagement@geomar.de"] Our system consists of a portal (portal.geomar.de), providing access to several projects with personal password. The portal offers document exchange, common or individual blogs and fora and implementation of external webpages and -services. Moreover, you can access the expedition database, that organizes data description and exchange of cruises and expeditions for each project. Expeditions are linked to KML-files (Google-Earth compatible), allowing a visualization of all stations of a cruise/expedition. We established the linkage to the publications database /repository OceanRep (EPrints), as well as the description of model-output and linkage to paper publications. eng ["disciplinary", "institutional"] {"size": "2.274 legs; 20 models ;20 experiments; 149 platforms; 482 gears; 33networks", "updatedp": "2018-04-18"} 2009 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://portal.geomar.de/home [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cruises", "expeditions", "marine sciences", "oceans"] [{"institutionName": "BIOACID", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oceanacidification.de/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info(at)geomar.de"]}, {"institutionName": "Future Ocean", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.futureocean.org/en/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.futureocean.org/de/kontakt.php"]}, {"institutionName": "GEOMAR Data Management", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://portal.geomar.de/about-us", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datamanagement(at)geomar.de"]}, {"institutionName": "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel", "institutionAdditionalName": ["GEOMAR", "GEOMAR Helmholtz Centre for Ocean Research Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info(at)geomar.de"]}, {"institutionName": "Sonderforschungsbereich 754 Climate - biogeochemistry interactions in the tropical ocean", "institutionAdditionalName": ["Collaborative Research Center 754", "SFB 754"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sfb754.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aoschlies(a)geomar.de"]}] [{"policyName": "Terms of Use of the Data Management Portal", "policyURL": "https://portal.geomar.de/metadata/user/agree"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.geomar.de/en/impressum"}] restricted [] [] yes {"api": "http://thredds.geomar.de/", "apiType": "OpenDAP"} ["none"] [] yes yes [] [] {} The Kiel Data Mangement Team (KDMT) is a joined group of GEOMAR, cluster of excellence "Future Ocean", SFB 754 and BIOACID. Our aim is to provide ONE place for all marine sciences in Kiel for data description, data storage and data archiving, independent of project status but specific restrictions for each project. This system is aimed at preparing data for paper publication, data exchange inside a project and data publication. 2015-07-17 2020-11-30 +r3d100011473 circbase eng [] http://www.circbase.org/ ["OMICS_10188"] ["petar.glazar@mdc-berlin.de"] Thousands of circular RNAs (circRNAs) have recently been shown to be expressed in eukaryotic cells [Salzman et al. 2012, Jeck et al. 2013, Memczak et al. 2013, Salzman et al. 2013]. Here you can explore public circRNA datasets and download the custom python scripts needed to discover circRNAs in your own (ribominus) RNA-seq data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["C.elegans", "C.melanogaster", "L.chalumnae", "L.menaodoensis", "S.mediterranea", "circRNA", "human", "mouse", "systems biology"] [{"institutionName": "Max Delbr\u00fcck Center for Molecular Medicine in the Helmholtz Association", "institutionAdditionalName": ["MDC", "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin in der Helmholtz-Gemeinschaft"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Delbr\u00fcck Center for Molecular Medicine, N. Rajewsky Lab", "institutionAdditionalName": ["MDC", "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin in der Helmholtz-Gemeinschaft, AG N. Rajewsky"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/n-rajewsky", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rajewsky@mdc-berlin.de"]}] [{"policyName": "circBase help", "policyURL": "http://www.circbase.org/doc/help_mod.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.circbase.org/doc/help_mod.html"}] restricted [{"dataUploadLicenseName": "Submit your data", "dataUploadLicenseURL": "http://www.circbase.org/doc/help_mod.html"}] [] yes {} [] http://www.circbase.org/ [] unknown unknown [] [] {} 2015-05-26 2020-09-28 +r3d100011474 pSILAC eng [{"additionalName": "pulsed SILAC", "additionalNameLanguage": "eng"}] https://psilac.mdc-berlin.de/ [] ["rajewsky@mdc-berlin.de"] database of pSILAC data – information about changes in mRNA levels and protein synthesis following microRNA misexpression in HeLa cells eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["berlin buch", "bioinformatics", "biotechnology", "cancer", "cardiovascular diseases", "cell growth", "genetics", "max-delbr\u00fcck-centrum", "mdc berlin", "molecular medicine", "molecular therapy", "regenerative medicine", "stem cell", "structural biology"] [{"institutionName": "Johannes-Gutenberg University, Institute of Molecular Biology, Computational Biology and Data Mining Group", "institutionAdditionalName": ["Johannes-Gutenberg Universit\u00e4t, Institut f\u00fcr molekulare Biologie", "cbdm"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cbdm.uni-mainz.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["andrade@uni-mainz.de"]}, {"institutionName": "Max Delbr\u00fcck Center for Molecular Medicine in the Helmholtz Associaltion, Matthias Selbach and Nikolaus Rajewsky labs", "institutionAdditionalName": ["MDC", "Max-Delbr\u00fcck-Centrum f\u00fcr Molekulare Medizin in der Helmholtz-Gemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mdc-berlin.de/40599418/en/globals/impressum"}] closed [] ["unknown"] {} ["none"] https://psilac.mdc-berlin.de/citation/ ["none"] yes unknown [] [] {} Pulsed SILAC (pSILAC) is a variation of the SILAC method where the labelled amino acids are added to the growth medium for only a short period of time. This allows monitoring differences in de novo protein production rather than raw concentration. http://en.wikipedia.org/wiki/Stable_isotope_labeling_by_amino_acids_in_cell_culture 1 Sep 2014: the group of Miguel Andrade is moving to the Institute of Molecular Biology in Mainz from the Max Delbrück Center for Molecular Medicine in Berlin 2015-05-26 2021-08-25 +r3d100011475 Human protein-protein interaction network database search eng [] http://artemis.mdc-berlin.de/y2h_network/ppi_search.php [] ["silvio.schwartz@mdc-berlin.de"] >>>!!!<<< Offline, actually no valid URL 2020-09-30 >>>!!!<<< A human interactome map. The sequencing of the human genome has provided a surprisingly small number of genes, indicating that the complex organization of life is not reflected in the gene number but, rather, in the gene products – that is, in the proteins. These macromolecules regulate the vast majority of cellular processes by their ability to communicate with each other and to assemble into larger functional units. Therefore, the systematic analysis of protein-protein interactions is fundamental for the understanding of protein function, cellular processes and, ultimately, the complexity of life. Moreover, interactome maps are particularly needed to link new proteins to disease pathways and the identification of novel drug targets. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.mdc-berlin.de/wanker [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cellular process", "genetics", "human protein", "intracellular signaling peptides and proteins", "neuroproteomics", "protein", "protein binding", "protein function", "protein-protein interaction", "proteomics", "sequenzing", "two-hybrid system techniques"] [{"institutionName": "MAX-DELBR\u00dcCK-CENTRUM F\u00dcR MOLEKULARE MEDIZIN in der Helmholtz-Gemeinschaft", "institutionAdditionalName": ["MDC", "Max Delbr\u00fcck Center fo Molecular Medicine in the Helmholtz Association"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mdc-berlin.de/40599418/en/globals/impressum"}] closed [] ["unknown"] {} ["other"] ["none"] no unknown [] [] {} 2015-06-01 2021-05-25 +r3d100011476 Huntingtin Interaction Network eng [] http://artemis.mdc-berlin.de/huntington/eingabe.php [] ["https://www.mdc-berlin.de/40599278/en/globals/Contact", "silvio.schwartz@mdc-berlin.de"] >>>!!!<<< Offline, actually no valid URL 2020-09-30 >>>!!!<<< The main objective of our work is to understand the pathomechanisms of late onset neurodegenerative disorders such as Huntington's, Parkinson's, Alzheimer's and Machado Joseph disease and to develop causal therapies for them. The disease causing proteins of these illnesses have been identified, but their functions in the unaffected organism are mostly unknown. Here, we have developed a strategy combining library and matrix yeast two-hybrid screens to generate a highly connected PPI network for Huntington's disease (HD). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.mdc-berlin.de/1157755/en/research/research_teams/proteomics_and_molecular_mechanisms_of_neurodegenerative_diseases [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["COS cells", "Huntington", "RNA", "antibodies", "max-delbrueck", "mdc", "neurogenerative disorder", "neuroproteomics", "phosphoproteins", "protein", "protein binding", "protein-protein interaction", "proteomics", "signaltransducing", "two-hybrid system techniques"] [{"institutionName": "MAX-DELBR\u00dcCK-CENTRUM F\u00dcR MOLEKULARE MEDIZIN in der Helmholtz-Gemeinschaft", "institutionAdditionalName": ["MDC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdc-berlin.de/", "institutionIdentifier": ["ROR:04p5ggc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mdc-berlin.de/40599278/en/globals/Contact"]}] [{"policyName": "RULES FOR SAFEGUARDING GOOD \nSCIENTIFIC PRACTICE AT THE MDC", "policyURL": "https://www.mdc-berlin.de/37988020/en/research/regeln_guter_wiss_Praxis/E_Rules_Safeguarding_good_sc_practice-19_01_2011.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mdc-berlin.de/40599418/en/globals/impressum"}] closed [] ["unknown"] {} ["none"] ["none"] no unknown [] [] {} 2015-06-01 2021-05-25 +r3d100011477 RELMIN fra [{"additionalName": "Le statut l\u00e9gal des minorit\u00e9s religieuses dans l\u2019espace euro-m\u00e9diterran\u00e9en (V\u00e8me \u2013XV\u00e8me si\u00e8cles)", "additionalNameLanguage": "fra"}, {"additionalName": "The legal status of religious minorities in the Euro-Mediterranean world (5th -15th centuries", "additionalNameLanguage": "eng"}] http://telma.irht.cnrs.fr/outils/relmin/index/ ["ISSN 2428-4661"] ["nicolas.stefanni@univ-nantes.fr"] RELMIN collects, studies and publishes legal texts defining the status of religious minorities in medieval Europe. The corpus of texts is rich and varied, spanning ten centuries over a broad geographical area; these texts, in Latin, Arabic, Greek, Hebrew and Aramaic (and also in Medieval Spanish, Portuguese, and other European vernaculars), are dispersed in libraries and archives across Europe. The texts are now gathered in the RELMIN Database in their original language, with translations and commentaries. They are made available to scholars, students and citizens at large. Access is unlimited, free and perennial. and to contribute to the work of compilation. RELMIN is is buil ding a digital database of legal, judicial and normative sources defining the status of religious minorities from the 5th to the 15th century. eng ["disciplinary", "other"] {"size": "643 texts", "updatedp": "2021-09-22"} 2010 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10604 Islamic Studies, Arabian Studies, Semitic Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["confession", "europenan law", "history", "history of religion minorities", "interreligious relations", "legal structures", "middle ages", "minorities", "religion"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programm", "institutionAdditionalName": ["CORDIS FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/249416/reporting/de", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "European Research Council", "institutionAdditionalName": ["ERC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://erc.europa.eu/", "institutionIdentifier": ["ROR:0472cxd90"], "responsibilityStartDate": "2010", "responsibilityEndDate": "2015", "institutionContact": ["https://erc.europa.eu/about-erc/contact-us"]}, {"institutionName": "Maison des Sciences de l\u2019Homme Ange Gu\u00e9pin", "institutionAdditionalName": ["MSH"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://msh-ange-guepin.univ-nantes.fr/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://msh-ange-guepin.univ-nantes.fr/contacts"]}, {"institutionName": "Telma", "institutionAdditionalName": ["Traitement \u00e9lectronique des manuscrits et des archives"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://telma.hypotheses.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["com.irht@cnrs-orleans.fr"]}, {"institutionName": "Universit\u00e9 de Nantes", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univ-nantes.fr/", "institutionIdentifier": ["ROR:03gnr7b55"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://www.univ-nantes.fr/tous-les-contacts"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.univ-nantes.fr/credits-et-aspects-legaux"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.univ-nantes.fr/credits-et-aspects-legaux"}] restricted [] ["other"] yes {} ["none"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Contributeurs: http://telma.irht.cnrs.fr/outils/relmin/contributeurs/ 2015-05-11 2021-09-22 +r3d100011478 Pombase eng [{"additionalName": "The scientific resource for fission yeast", "additionalNameLanguage": "eng"}] https://www.pombase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.8jsya3", "MIR:00000335", "OMICS_06183", "RRID:SCR_006586", "RRID:nlx_144356"] ["helpdesk@pombase.org", "https://www.pombase.org/about"] PomBase is a comprehensive database for the fission yeast Schizosaccharomyces pombe, providing structural and functional annotation, literature curation and access to large-scale data sets. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Phenotype Ontology FYPO", "biology", "eukaryotic model", "gene ontology", "genes", "genetics", "genomic sequence", "genomices"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "University College London", "institutionAdditionalName": ["UCL"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ucl.ac.uk/contact-list"]}, {"institutionName": "University of Cambridge", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cam.ac.uk/contact-the-university"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Pombase terms of use", "policyURL": "https://www.pombase.org/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.pombase.org/about/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}] restricted [] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/pombase/", "apiType": "FTP"} ["none"] https://www.pombase.org/about/citing-pombase ["none"] yes yes [] [] {} 2015-04-04 2019-01-23 +r3d100011479 TriTrypDB eng [{"additionalName": "kinetoplastid genomics resource", "additionalNameLanguage": "eng"}] https://tritrypdb.org/tritrypdb/app ["FAIRsharing_doi:10.25504/FAIRsharing.fs1z27", "MIR:00000155", "OMICS_03144", "RRID:SCR_007043", "RRID:nlx_152064"] ["https://tritrypdb.org/tritrypdb/app/contact-us"] TriTrypDB is an integrated genomic and functional genomic database for pathogens of the family Trypanosomatidae, including organisms in both Leishmania and Trypanosoma genera. TriTrypDB and its continued development are possible through the collaborative efforts between EuPathDB, GeneDB and colleagues at the Seattle Biomedical Research Institute (SBRI). eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Eedotrypanum", "FAIR", "biology", "crithidia", "euglenozoa", "eukaryotic pathogens", "genetics", "genomics", "kinetoplatid genomes", "leishmania", "metabolic pathways", "pathogen researcher", "trypanosoma"] [{"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/en", "institutionIdentifier": ["RRID:SCR_006346", "RRID:nlx_152065"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Eukaryotic Pathogen Bioinformatics Resource Center", "institutionAdditionalName": ["EuPathDB Bioinformatics Resource Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://eupathdb.org/eupathdb/", "institutionIdentifier": ["RRID:SCR_004512", "RRID:nlx_49652"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://eupathdb.org/eupathdb/contact.do"]}, {"institutionName": "National Institute of Allergy and Infectious Deseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["NIAID, BRC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institues of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sanger.ac.uk/", "institutionIdentifier": ["RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "Data access policy", "policyURL": "http://tritrypdb.org/tritrypdb/showXmlDataContent.do?name=XmlQuestions.About#use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://tritrypdb.org/tritrypdb/showXmlDataContent.do?name=XmlQuestions.About#use"}] restricted [{"dataUploadLicenseName": "Data Submission and Release on uPathDB Databases", "dataUploadLicenseURL": "http://tritrypdb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "http://tritrypdb.org/tritrypdb/serviceList.jsp", "apiType": "REST"} ["none"] http://tritrypdb.org/tritrypdb/showXmlDataContent.do?name=XmlQuestions.About#citing [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://tritrypdb.org/news.rss", "syndicationType": "RSS"} is covered by Elsevier. TriTryDB is a project of EuPathDB, formerly ApiDB 2015-04-27 2021-10-08 +r3d100011480 The Taenia solium Genome Project eng [{"additionalName": "T. solium Genome Project", "additionalNameLanguage": "eng"}] http://www.taeniasolium.unam.mx/taenia/ [] ["rbobes@biomedicas.unam.mx"] >>>!!!<<< 2021-08; The repository is no longer available. >>>!!!<<< Archived page of Taenia solium genome project see https://web.archive.org/web/20160309194611/http://www.taeniasolium.unam.mx/taenia eng ["disciplinary"] {"size": "23,270 sequenced from Taenia solium EST", "updatedp": "2015-06-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.taeniasolium.unam.mx/taenia/about.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "cell biology", "dna sequencing", "genomic sciences", "genomics", "immunology", "molecular biology"] [{"institutionName": "National Autonomous University of Mexico", "institutionAdditionalName": ["UNAM", "Universidad Nacional Aut\u00f3noma de M\u00e9xico"], "institutionCountry": "MEX", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unam.mx/"]}, {"institutionName": "National Autonomous University of Mexico, Center for Genomic Sciences", "institutionAdditionalName": ["Universidad Nacional Aut\u00f3noma de M\u00e9xico, Centro de Ciencias Gen\u00f3micas"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ccg.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ccg.unam.mx/es/feedback"]}, {"institutionName": "National Autonomous University of Mexico, Institute of Biomedical Research", "institutionAdditionalName": ["Universidad Nacional Aut\u00f3noma de M\u00e9xico, Instituto de Investigaciones Biom\u00e9dicas"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.biomedicas.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@biomedicas.unam.mx"]}, {"institutionName": "National Autonomous University of Mexico, Institute of Biotechnology", "institutionAdditionalName": ["Universidad Nacional Aut\u00f3noma de M\u00e9xico, Instituto de Biotecnolog\u00eda"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ibt.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["direccion@ibt.unam.mx"]}, {"institutionName": "National Autonomous University of Mexico, School of Medicine", "institutionAdditionalName": ["Universidad Nacional Aut\u00f3noma de M\u00e9xico, Facultad de Medicina UNAM"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.facmed.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Autonomous University of Mexico, School of Sciences", "institutionAdditionalName": ["Universidad Nacional Aut\u00f3noma de M\u00e9xico, Facultad de Ciencias"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fciencias.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fciencias.unam.mx/contacto"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://gds.nih.gov/03policy2.html"}] closed [] ["unknown"] {"api": "ftp://bioinformatica.biomedicas.unam.mx/", "apiType": "FTP"} ["none"] ["none"] no unknown [] [] {} description: The Taenia solium genome project is a whole genome sequencing project of the parasite Taenia solium, the causal agent of human and porcine cysticercosis; a disease that is still a public health problem of relevance in Mexico. It is being carried out by a consortium of scientists belonging to diverse institutions of the Universidad Nacional Autónoma de México (UNAM, the National Autonomous University of Mexico). This is the Entrez Genome Project site, where project data can be found: https://www.ncbi.nlm.nih.gov/genome?term=txid6204 - The consortium is aided and annually evaluated by an Advisory Board formed by respected members of the international scientific community: http://www.taeniasolium.unam.mx/taenia/advisory.htm 2015-06-01 2021-09-01 +r3d100011481 cranach.net deu [{"additionalName": "das Forschungs-Wiki zu Lucas Cranach, seinen S\u00f6hnen und seiner Werkstatt", "additionalNameLanguage": "deu"}] http://cranach.ub.uni-heidelberg.de/wiki/index.php/Hauptseite [] ["info@cranach.net"] Cranach.net is the research database of the Cranach Research Institute (CRI), a project of the Department of History of Art of the Stuttgart State Academy of Art and Design, which is dedicated to the digitization and indexing of the complete works of Lucas Cranach the Elder and his workshop. eng ["disciplinary"] {"size": "3.158 articles (including monographic texts dealing with 2.562 paintings and 362 drawings); 16.853 files", "updatedp": "2016-07-22"} 2010 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.arthistoricum.net/en/subjects/thematic-portals/cranach-online/cranachnet/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Cranach", "Koepplin-Archiv", "graphics", "images", "infrared reflectography", "painter"] [{"institutionName": "Staatlichen Akademie der Bildenden K\u00fcnste Stuttgart, Lehrstuhl f\u00fcr Mittlere und Neuere Kunstgeschichte", "institutionAdditionalName": ["ABK"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.abk-stuttgart.de/personen/nils-b%C3%BCttner.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nils.buettner@abk-stuttgart.de"]}, {"institutionName": "Universit\u00e4t Trier, Lehrstuhl f\u00fcr Kunstgeschichte", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-trier.de/index.php?id=8117", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-trier.de/index.php?id=6043"]}, {"institutionName": "Universit\u00e4tsbibliothek Heidelberg", "institutionAdditionalName": ["UB Heidelberg"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ub.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ub.uni-heidelberg.de/kontakt/Welcome.html"]}] [{"policyName": "CranachNet:Datenschutz", "policyURL": "http://cranach.ub.uni-heidelberg.de/wiki/index.php/CranachNet:Datenschutz"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cranach.ub.uni-heidelberg.de/wiki/index.php/CranachNet:Impressum"}, {"dataLicenseName": "other", "dataLicenseURL": "http://cranach.ub.uni-heidelberg.de/wiki/index.php/CranachNet:Impressum"}] restricted [] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} 2015-06-02 2016-08-15 +r3d100011482 Deutsches Dokumentationszentrum für Kunstgeschichte, Bildarchiv Foto Marburg deu [{"additionalName": "Bildarchiv Foto Marburg", "additionalNameLanguage": "eng"}, {"additionalName": "Documentation Center for Art History, Bildarchiv Foto Marburg", "additionalNameLanguage": "eng"}] http://www.fotomarburg.de/welcome?set_language=en [] ["bildarchiv@fotomarburg.de", "http://www.fotomarburg.de/information-in-brief?set_language=en"] Bildarchiv Foto Marburg is Germany's documentation center for art history. Its mission is to collect, index and make available photographs related to European art and architecture, as well as to conduct research on the history, practice and theory of how visual cultural assets are passed on, especially the accompanying transformation process as it relates to the media, the conditions of storing knowledge in visual form, and the significance to society of remembering visual culture. The inventory of Bildarchiv Foto Marburg, the greater part of which is digitally processed, and the inventories of further cultural organizations can be viewed on the internet from the image database: Image Index of Art and Architecture: http://www.bildindex.de/#|home eng ["disciplinary"] {"size": "around 1.7 million images", "updatedp": "2015-03-31"} 1991 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.fotomarburg.de/mission-statement [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Europe", "Germany", "architecture", "cultural assets", "cultural heritage", "european arts"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact_imprint/visitors_information/index.html"]}, {"institutionName": "Philipps-Universit\u00e4t Marburg, Deutsches Dokumentationszentrum f\u00fcr Kunstgeschichte, Bildarchiv Foto marburg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.fotomarburg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fotomarburg.de/information-in-brief"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.fotomarburg.de/impressum"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2015-03-31 2020-07-20 +r3d100011483 ASTER j-spacesystems eng [{"additionalName": "Advanced Spaceborne Thermal Emission and Reflection Radiometer Ground Data Systems", "additionalNameLanguage": "eng"}] http://www.jspacesystems.or.jp/en_project_aster/ [] ["https://ssl.jspacesystems.or.jp/en/contact/index.php"] !!! We will terminate ASTER Products Distribution Service in March 2016 although we have been providing ASTER Products since November 20, 2000. !!! ASTER (Advanced Spaceborne Thermal Emission and Reflection radiometer) is the high efficiency optical imager which covers a wide spectral region from the visible to the thermal infra-red by 14 spectral bands. ASTER acquires data which can be used in various fields in earth science. ASTER was launched from Vandenberg Air Force Base in California, USA in 1999 aboard the Terra, which is the first satellite of the EOS Project. The purpose of ASTER project is to make contributions to extend the understanding of local and regional phenomena on the Earth surface and its atmosphere. The followings are ASTER related information, which includes ASTER instrument, ASTER Ground Data System, ASTER Science Activities, ASTER Data Distribution and so on. ASTER Search provides services to search and order ASTER data products on the website. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 2016 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.jspacesystems.or.jp/en/about/message/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["TERRA", "agriculture, forestry,ranching", "atmosphere", "coastal resources", "earth sciences", "environment", "geological features", "map creation", "mission", "sea areas", "snow & ice", "space sciences", "water areas", "water resources"] [{"institutionName": "Japan Ministry of Economy Trade and Industry", "institutionAdditionalName": ["METI"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.meti.go.jp/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.meti.go.jp/honsho/comment_form/comments_send.htm"]}, {"institutionName": "Japan Space Systems, ASTER Project", "institutionAdditionalName": ["J-spacesystems ASTER Project"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jspacesystems.or.jp/en_/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jspacesystems.or.jp/en/contact/index.php"]}, {"institutionName": "National Aeronautics and Space Administration, Jet Propulsion Laboratory, Advanced Spaceborne Thermal Emission and Reflection Radiometer", "institutionAdditionalName": ["NASA JPL ASTER"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://asterweb.jpl.nasa.gov/index.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://science.jpl.nasa.gov/people/Tan/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.jspacesystems.or.jp/en/terms/index.html"}] closed [] [] yes {} ["none"] [] unknown yes [] [] {} !!! We will terminate ASTER Products Distribution Service in March 2016 although we have been providing ASTER Products since November 20, 2000. !!! ASTER is a cooperative effort between NASA and Japan's Ministry of Economy Trade and Industry (METI), with the collaboration of scientific and industry organizations in both countries. The ASTER instrument provides the next generation in remote sensing imaging capabilities when compared to the older Landsat Thematic Mapper and Japan's JERS-1 OPS scanner. ASTER captures high spatial resolution data in 14 bands, from the visible to the thermal infrared wavelengths, and provides stereo viewing capability for digital elevation model creation. As the "zoom lens" for Terra, ASTER data are used by other Terra and space-borne instruments for validation and calibration. The ASTER Project consists of two parts, each having a Japanese and a U.S. component. Mission operations are split between Japan Space Systems (J-spacesystems) and the Jet Propulsion Laboratory (JPL) in the U.S. J-spacesystems oversees monitoring instrument performance and health, developing the daily schedule command sequence, processing Level 0 data to Level 1, and providing higher level data processing, archiving, and distribution. The JPL ASTER project provides scheduling support for U.S. investigators, calibration and validation of the instrument and data products, coordinating the U.S. Science Team, and maintaining the science algorithms. The joint Japan/U.S. ASTER Science Team has about 40 scientists and researchers. 2015-07-20 2021-05-20 +r3d100011484 GERDA eng [{"additionalName": "GEofysisk Relationel DAtabase", "additionalNameLanguage": "dan"}, {"additionalName": "GEophysical Relational DAtabase", "additionalNameLanguage": "eng"}, {"additionalName": "National Geophysical Database", "additionalNameLanguage": "eng"}, {"additionalName": "National geofysisk database", "additionalNameLanguage": "dan"}] https://eng.geus.dk/products-services-facilities/data-and-maps/national-geophysical-database-gerda/ ["biodbcore-001625"] ["mh@geus.dk"] The geophysical database, GERDA, is a strong tool for data storage, handling and QC. Data are uploaded to and downloaded from the GERDA database through this website. GERDA is the Danish national database on shallow geophysical data. Since its establishment in 1998-2000, the database has been continuously developed. The database is hosted by the Geological Survey of Denmark and Greenland (GEUS). eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["dan", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["borehole log", "drilling", "drinking water quality", "electromagnetic", "energy", "environment", "geoelectrical profiles", "geoelectrical sounding", "groundwater", "minerals", "seismic", "water resources"] [{"institutionName": "Aarhus University, Department of Geoscience", "institutionAdditionalName": ["Aarhus Universitet, Institut for Geoscience"], "institutionCountry": "DNK", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://geo.au.dk/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://geo.au.dk/en/contact/"]}, {"institutionName": "Geological Survey of Denmark and Greenland", "institutionAdditionalName": ["De Nationale Geologiske Unders\u00f8gelser for Danmark og Gr\u00f8nland", "GEUS"], "institutionCountry": "DNK", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://eng.geus.dk/", "institutionIdentifier": ["ROR:01b40r146"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["geus@geus.dk", "https://eng.geus.dk/about/contact/"]}] [{"policyName": "Terms of use", "policyURL": "http://data.geus.dk/geusmap/terms_20140620.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://data.geus.dk/geusmap/terms_20140620.pdf"}] restricted [] ["other"] {"api": "https://data.geus.dk/geusmap/ows/help/?mapname=gerda&epsg=25832", "apiType": "other"} ["none"] [] yes yes [] [] {} 2015-05-20 2021-11-17 +r3d100011485 IODP Bremen Core Repository eng [{"additionalName": "BCR", "additionalNameLanguage": "eng"}] https://www.marum.de/en/Research/IODP-Bremen-Core-Repository.html [] ["bcr@marum.de", "https://www.marum.de/en/Research/IODP-Bremen-Core-Repository.html#section1017"] The Bremen Core Repository - BCR, for International Ocean Discovery Program (IODP), Integrated Ocean Discovery Program (IODP), Ocean Drilling Program (ODP), and Deep Sea Drilling Project (DSDP) cores from the Atlantic Ocean, Mediterranean and Black Seas and Arctic Ocean is operated at University of Bremen within the framework of the German participation in IODP. It is one of three IODP repositories (beside Gulf Coast Repository (GCR) in College Station, TX, and Kochi Core Center (KCC), Japan). One of the scientific goals of IODP is to research the deep biosphere and the subseafloor ocean. IODP has deep-frozen microbiological samples from the subseafloor available for interested researchers and will continue to collect and preserve geomicrobiology samples for future research. eng ["disciplinary"] {"size": "more than 158 km of deep-sea cores; 90 expeditions", "updatedp": "2021-09-06"} 1994 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.marum.de/en/Research/BCR-Practices-and-Procedures.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["deep sea", "earth science", "environmental science", "hard rocks", "microbiology samples", "microfossil samples", "ocean drilling", "sediments"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/ueber-uns/service/kontakt.html"]}, {"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research, World Data Center for Marine Environmental Sciences, Publishing Network for Geoscientific and Environmental Data", "institutionAdditionalName": ["AWI, PANGAEA", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.awi.de/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.awi.de/en/service/contact/"]}, {"institutionName": "International Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iodp.org/about-iodp/media-contacts"]}, {"institutionName": "Universit\u00e4t Bremen, Center for Marine Environmental Sciences", "institutionAdditionalName": ["MARUM", "Universit\u00e4t Bremen, Zentrum f\u00fcr Marine Umweltwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/en/index.html", "institutionIdentifier": ["ROR:02gn1ar53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marum.de/en/Discover/Page176/Projektpartner.html"]}] [{"policyName": "BCR Practices and Procedures", "policyURL": "https://www.marum.de/en/Research/BCR-Practices-and-Procedures.html"}, {"policyName": "IODP Sample, Obligation, and Data Policies", "policyURL": "https://www.marum.de/en/Research/BCR-Practices-and-Procedures.html#section5906"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://wiki.pangaea.de/wiki/PANGAEA#License"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.marum.de/en/Page19.html"}] closed [] ["unknown"] {} ["none"] ["none"] no yes [] [] {} 2015-06-02 2021-10-08 +r3d100011486 Gulf Coast Repository eng [{"additionalName": "GCR", "additionalNameLanguage": "eng"}] http://iodp.tamu.edu/curation/gcr/ [] ["database@iodp.tamu.edu", "rumford@iodp.tamu.edu"] The International Ocean Discovery Program’s (IODP) Gulf Coast Repository (GCR) is located in the Research Park on the Texas A&M University campus in College Station, Texas. This repository stores DSDP, ODP, and IODP cores from the Pacific Ocean, the Caribbean Sea and Gulf of Mexico, and the Southern Ocean. A satellite repository at Rutgers University houses New Jersey/Delaware land cores 150X and 174AX. eng ["disciplinary", "other"] {"size": "The GCR houses over 100 kilometers of core in approximately 15,000 square feet of refrigerated space", "updatedp": "2015-05-20"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://iodp.tamu.edu/curation/gcr/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["deep sea", "drilling", "geography", "geology", "physics", "sediments"] [{"institutionName": "International Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/", "institutionIdentifier": ["ROR:05a18r864"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Texas A&M University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.tamu.edu/", "institutionIdentifier": ["ROR:01f5ytq51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tamu.edu/contact-us/index.html"]}, {"institutionName": "Texas A&M University, College of Geosciences, International Ocean Discovery Program, Joint Oceanographic Institutions for Deep Earth Sampling Resolution Science Operator", "institutionAdditionalName": ["JOIDES Resolution Science Operator", "JRSO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://iodp.tamu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://iodp.tamu.edu/staffdir/index.html"]}] [{"policyName": "Core Policies", "policyURL": "http://iodp.tamu.edu/curation/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://iodp.tamu.edu/about/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://iodp.tamu.edu/about/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://iodp.tamu.edu/curation/policy.html"}] restricted [] ["unknown"] no {} ["none"] [] no unknown [] [] {} 2015-05-20 2021-09-03 +r3d100011487 Rutgers/New Jersey Geological and Water Survey Core Repository eng [{"additionalName": "NJGS", "additionalNameLanguage": "eng"}] http://geology.rutgers.edu/research-facilities/rutgers-core-repository [] ["http://geology.rutgers.edu/contact-eps", "jvb@rutgers.edu"] Welcome to the home page of the Rutgers/New Jersey Geological and Water Survey Core Repository. We are an official repository of the International Ocean Discovery Program (IODP), hosting Legs 150X and 174AX onshore cores drilled as part of the NJ/Mid-Atlantic Transect, and the New Jersey Geological and Water Survey (NJGWS). Cores from other ODP/IODP repositories are available through ODP. In addition to ODP/IODP cores, we are the repository for: - 1.) 6668 m of Newark Basin Drilling Project Triassic cores (e.g., Olsen, Kent, et al. 1996) - 2.) 5182 m of the Army Corps of Engineers Passaic Tunnel Project Jurassic cores - 3.) 457 m of post-impact cores from the Chesapeake Bay Impact Structure Deep Hole - 4.) Cores obtained from the Northern North Atlantic as part of the IODP Expedition 303/306 - 5.) Cores from various rift and drift basins on the eastern and Gulf Coasts of the U.S. - 6.) Geological samples from the New Jersey Geological and Water Survey (NJGWS) and United States Geological Survey (USGS) including 304 m of continuous NJGWS/USGS NJ coastal plain cores. eng ["disciplinary"] {"size": "4.120 core boxes", "updatedp": "2015-05-27"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["climate", "deep sea", "drilling", "geology", "ocean", "sedimentation"] [{"institutionName": "International Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iodp.org/resources/core-repositories"]}, {"institutionName": "National Science Foundation, Division of Ocean Sciences", "institutionAdditionalName": ["NSF, OCE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/div/index.jsp?div=OCE", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/staff/staff_list.jsp?org=OCE&from_org=OCE"]}, {"institutionName": "National Science Foundation, Ocean Drilling", "institutionAdditionalName": ["NSF, OC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/funding/pgm_summ.jsp?pims_id=13524", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rutgers, School of Arts and Sciences, Department of Earth and Plantetary Sciences", "institutionAdditionalName": ["The State University of New Jersey"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rutgers.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://universitysecretary.rutgers.edu/contact-us/send-message-office-secretary"]}] [{"policyName": "Core Policy", "policyURL": "http://geology.rutgers.edu/research-facilities/rutgers-core-repository/core-repository/core-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://geology.rutgers.edu/research-facilities/rutgers-core-repository/core-repository/core-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www-odp.tamu.edu/publications/policy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf17037"}] restricted [] ["unknown"] no {} ["none"] [] yes yes [] [] {} The Rutgers/NJGS--is a satellite repository of the GCR for New Jersey/Delaware land cores 2015-05-20 2018-01-12 +r3d100011488 Kochi Core Center eng [{"additionalName": "KCC", "additionalNameLanguage": "eng"}] http://www.kochi-core.jp/en/ [] ["http://www.kochi-core.jp/en/aboutus/inquiry.html", "nanxiao@jamstec.go.jp"] Kochi Core Center (KCC) houses one of the 3 Inernationational Ocean Discovery Program (IODP) core repositories, accompanied by images and x-ray CT scanning data viewable by the Virtual Core Library. And it hosts Japan Agency for Marine-Earth Science and Technology (JAMSTEC) marine core samples and associated analytical data for general scientific or educational uses, after 2 years have passed since collection of core samples. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.kochi-core.jp/en/aboutus/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DeepBIOS", "chronometry", "core samples", "cruises", "deep sea", "drilling science", "earth sciences", "marine", "sea sediments", "sediment", "subseafloor"] [{"institutionName": "International Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iodp.org/contacts-for-new-visitors#"]}, {"institutionName": "Japan Agency for Marine-Earth Science and Technology", "institutionAdditionalName": ["JAMSTEC"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jamstec.go.jp/e/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["http://www.jamstec.go.jp/e/contact_us/"]}, {"institutionName": "Kochi University, Center for Advanced Marine Core Research", "institutionAdditionalName": ["CMCR"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kochi-u.ac.jp/marine-core/cmcr/index_e.html", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["http://www.kochi-u.ac.jp/marine-core/member/index_e.html"]}] [{"policyName": "Conditions for Using Core Samples", "policyURL": "http://www.jamstec.go.jp/kochi/jc_curation/e/e_policy.html"}, {"policyName": "IODP Sample, Data, and Obligations Policy & Implementation Guidelines", "policyURL": "http://www.iodp.org/program-documents/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://iodp.tamu.edu/curation/policy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.iodp.org/program-documents/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.jamstec.go.jp/kochi/jc_curation/e/e_policy.html"}] closed [] ["unknown"] yes {} ["none"] [] no yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Kochi Core Center (KCC) houses one of the 3 IODP core repositories in the world [the other repositories are BCR (Bremen Core Repository of the University of Bremen, Germany) and the GCR (Gulf Coast Repository of the Texas A&M University, USA]. At the KCC, the IODP cores and those collected during the ODP and DSDP era (hereafter legacy cores) are stored in 3 large reefers at about 4℃. There is a large freezer to store samples at -20℃, and a special facility to store samples in liquid nitrogen. Besides these, there are air-conditioned reefer containers, which are used for storage of salt cores, core catcher samples and residues at room temperature and low humidity condition. The 3 large reefers at the KCC are fitted with mobile core racks in order to enhance the storage capacity of the reefers. Each rack has mesh like structures to facilitate storage of core sections in commonly known D-tube. The current configuration of core racks allows storage of about 155,000 D-tubes in the 3 reefers, which provides sufficient space for storage of about 117 km long core 2015-04-24 2018-11-02 +r3d100011489 Experimental Nuclear Reaction Data eng [{"additionalName": "EXFOR", "additionalNameLanguage": "eng"}] https://www-nds.iaea.org/exfor/exfor.htm [] ["V.Zerkin@iaea.org", "n.otsuka@iaea.org", "pritychenko@bnl.gov"] The EXFOR library contains an extensive compilation of experimental nuclear reaction data. Neutron reactions have been compiled systematically since the discovery of the neutron, while charged particle and photon reactions have been covered less extensively. eng ["disciplinary"] {"size": "20.766 experiments", "updatedp": "2015-04-14"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www-nds.iaea.org/nrdc/about/about-exfor.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["gamma spectrum", "nuclear data", "reaction data", "spectroscopy"] [{"institutionName": "Brookhaven National Laboratory, Nuclear Science & Technology Department, National Nuclear Data Center", "institutionAdditionalName": ["BNL, NST, NNDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nndc.bnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nndc.bnl.gov/about/nndc.html#contacts"]}, {"institutionName": "International Atomic Energy Agency, International Network of Nuclear Reaction Data Centres", "institutionAdditionalName": ["IAEA, NRDC"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www-nds.iaea.org/nrdc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nds.contact-point@iaea.org"]}] [{"policyName": "Disclaimer", "policyURL": "https://www-nds.iaea.org/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www-nds.iaea.org/copyright.html"}] restricted [] ["unknown"] {} ["none"] https://www-nds.iaea.org/nrdc/about/citation-exfor.html ["none"] yes no [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Links to EXFOR Services: NNDC (USA): http://www.nndc.bnl.gov/exfor/ NEADB (France): http://www.oecd-nea.org/janisweb/search/exfor/ NDS (Austria): http://www-nds.iaea.org/exfor/ JAEA (Japan): http://spes.jaea.go.jp/ JCPRG (Japan): http://www.jcprg.org/exfor/ CDFE (Russia): http://cdfe.sinp.msu.ru/exfor/ The repository is accessible via various URLs. 2015-04-15 2018-08-15 +r3d100011490 International Network of Nuclear Reaction Data Centres eng [{"additionalName": "NRDC", "additionalNameLanguage": "eng"}] https://www-nds.iaea.org/nrdc/ [] ["nds.contact-point@iaea.org"] The International Network of Nuclear Reaction Data Centres (NRDC) constitutes a worldwide cooperation of nuclear data centres under the auspices of the International Atomic Energy Agency. The Network was established to coordinate the world-wide collection, compilation and dissemination of nuclear reaction data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www-nds.iaea.org/nrdc/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["nuclear data", "nuclear physics", "nuclear science", "nuclear technology"] [{"institutionName": "International Atomic Energy Agency", "institutionAdditionalName": ["IAEA"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/", "institutionIdentifier": ["ROR:02zt1gg83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nds.contact-point@iaea.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iaea.org/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.iaea.org/about/disclaimer"}] closed [] ["unknown"] {} ["none"] https://www-nds.iaea.org/nrdc/about/citation-exfor.html [] yes yes [] [] {} file transfer: username: NDSOPEN; EXFOR file transfer: username: NDSX4; Mirrors: India http://www-nds.org.in/, China, Russia http://www-nds.atomstandard.ru/ 2015-04-15 2021-09-03 +r3d100011492 Evaluated Nuclear Data File eng [{"additionalName": "ENDF", "additionalNameLanguage": "eng"}] https://www-nds.iaea.org/exfor/endf.htm [] ["V.Zerkin@iaea.org"] Core nuclear reaction database contain recommended, evaluated cross sections, spectra, angular distributions, fission product yields, photo-atomic and thermal scattering law data, with emphasis on neutron induced reactions. The data were analyzed by experienced nuclear physicists to produce recommended libraries for one of the national nuclear data projects (USA, Europe, Japan, Russia and China). All data are stored in the internationally-adopted ENDF-6 format maintained by CSEWG. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www-nds.iaea.org/nrdc/about/about-endf.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["astrophysics", "medicine", "nuclear physics", "nuclear reaction data", "reaction data"] [{"institutionName": "Brookhaven National Laboratory, Nuclear Science andTechnology Department, National Nuclear Data Center, Cross Section Evaluation Working Group", "institutionAdditionalName": ["BNL, NST, NNDC, CSEWG"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.nndc.bnl.gov/csewg/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mwherman@bnl.gov"]}, {"institutionName": "International Atomic Energy Agency, International Network of Nuclear Reaction Data Centres", "institutionAdditionalName": ["IAEA, NRDC"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www-nds.iaea.org/nrdc/", "institutionIdentifier": ["ROR:02zt1gg83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nds.contact-point@iaea.org"]}, {"institutionName": "Working Party on International Nuclear Data Evaluation Co-operation", "institutionAdditionalName": ["WPEC"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.oecd-nea.org/science/wpec/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd-nea.org/general/contacts/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www-nds.iaea.org/copyright.html"}] closed [] ["unknown"] {"api": "https://www-nds.iaea.org/public/download-endf/", "apiType": "FTP"} ["none"] https://www-nds.iaea.org/nrdc/about/citation-endf.html ["none"] no no [] [] {} Links to ENDF Services: NNDC (USA): http://www.nndc.bnl.gov/endf/ NEADB (France): http://www.oecd-nea.org/janisweb/search/endf/ http://www.oecd-nea.org/dbforms/data/eva/evatapes/ (ftp) NDS (Austria): http://www-nds.iaea.org/endf/ http://www-nds.iaea.org/ndspub/download-endf/ (ftp) JAEA (Japan): http://spes.jaea.go.jp/ JCPRG (Japan): http://www.jcprg.org/exfor/ 2015-04-15 2021-09-03 +r3d100011496 CorrDB eng [{"additionalName": "Animal Trait Correlation Database", "additionalNameLanguage": "eng"}] https://www.animalgenome.org/cgi-bin/CorrDB/index [] ["https://www.animalgenome.org/bioinfo/community/team"] CorrDB has data of cattle, relating to meat production, milk production, growth, health, and others. This database is designed to collect all published livestock genetic/phenotypic trait correlation data, aimed at facilitating genetic network analysis or systems biology studies. eng ["disciplinary"] {"size": "23.552 correlation data on 866 traits; 4.273 heritability data on 1.069 traits;", "updatedp": "2021-09-14"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.animalgenome.org/bioinfo/community/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["animal", "cattle", "genetics", "genomics", "health", "livestock", "phenotype correlation", "systems biology"] [{"institutionName": "United States Department of Agriculture, Livestock Genome Research Projects, National Animal Genome Research Program", "institutionAdditionalName": ["USDA, NRSP-8, NAGRP"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/program/animal-breeding-genetics-and-genomics", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}, {"institutionName": "United States Department of Agriculture, National Resources Conservation Service, National Resources Inventory Program", "institutionAdditionalName": ["USDA-NRCS-NRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/technical/nra/nri/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2013", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}] [{"policyName": "License and Citation", "policyURL": "https://www.animalgenome.org/default/copyright.CorrDB.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.animalgenome.org/default/copyright.CorrDB.php"}] restricted [{"dataUploadLicenseName": "Curators/Editors: Your Starting Point", "dataUploadLicenseURL": "https://www.animalgenome.org/CorrDB/app"}] ["MySQL"] {} ["none"] https://www.animalgenome.org/default/copyright.CorrDB.php ["none"] yes unknown [] [] {} 2015-04-21 2021-09-14 +r3d100011497 Animal Genome Tracks on GBrowse eng [] https://www.animalgenome.org/gbrowse/ [] ["https://www.animalgenome.org/bioinfo/community/team"] Genome track alignments using GBrowse on this site are featured with: (1) Annotated and predicted genes and transcripts; (2) QTL / SNP Association tracks; (3) OMIA genes; (4) Various SNP Chip tracks; (5) Other mapping fetures or elements that are available. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.animalgenome.org/bioinfo/community/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "gbrowse", "genome", "genome browser", "genomics", "livestock"] [{"institutionName": "United States Department of Agriculture, Livestock Genome Research Projects, National Animal Genome Research Program", "institutionAdditionalName": ["USDA, NRSP-8, NAGRP"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://reeis.usda.gov/web/crisprojectpages/1001816-national-animal-genome-research-program.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}, {"institutionName": "United States Department of Agriculture, National Resources Inventory", "institutionAdditionalName": ["USDA-NRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/technical/nra/nri/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2013", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}] [{"policyName": "Policies", "policyURL": "https://www.usda.gov/policies-and-links"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.animalgenome.org/gbrowse/"}] open [] ["other"] {} ["none"] ["none"] yes unknown [] [] {} 2015-04-22 2021-10-08 +r3d100011498 AnimalGenome.ORG eng [{"additionalName": "BioMart AnimalGenome.ORG", "additionalNameLanguage": "eng"}] https://www.animalgenome.org/ ["RRID:SCR_006564", "RRID:nlx_149170"] ["https://www.animalgenome.org/bioinfo/community/team", "https://www.animalgenome.org/bioinfo/services/helpdesk/"] This is a animal and human genome database that uses the BioMart software. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.animalgenome.org/bioinfo/community/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal genome", "bioinformatics", "genetics", "genomics", "human genome"] [{"institutionName": "United States Department of Agriculture, Livestock Genome Research Projects, National Animal Genome Research Program", "institutionAdditionalName": ["NAGRP", "NRSP-8", "USDA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/program/animal-breeding-genetics-and-genomics", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nifa.usda.gov/contact-us"]}, {"institutionName": "United States Department of Agriculture, National Resources Inventory", "institutionAdditionalName": ["USDA-NRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/technical/nra/nri/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "2013", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.animalgenome.org/"}] restricted [] ["other"] {"api": "http://www.biomart.org/other/biomart_0.9_0_documentation.pdf", "apiType": "REST"} ["none"] ["none"] no unknown [] [] {} 2015-04-22 2021-11-08 +r3d100011503 Global Genome Biodiversity Network eng [{"additionalName": "DNA Bank Network (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "GGBN", "additionalNameLanguage": "eng"}] http://data.ggbn.org/ggbn_portal/ ["OMICS_19241"] ["https://wiki.ggbn.org/ggbn/Contact_Us", "info@ggbn.org"] The DNA Bank Network was established in spring 2007 and was funded until 2011 by the German Research Foundation (DFG). The network was initiated by GBIF Germany (Global Biodiversity Information Facility). It offers a worldwide unique concept. DNA bank databases of all partners are linked and are accessible via a central web portal, providing DNA samples of complementary collections (microorganisms, protists, plants, algae, fungi and animals). The DNA Bank Network was one of the founders of the Global Genome Biodiversity Network (GGBN) and is fully merged with GGBN today. GGBN agreed on using the data model proposed by the DNA Bank Network. The Botanic Garden and Botanical Museum Berlin-Dahlem (BGBM) hosts the technical secretariat of GGBN and its virtual infrastructure. The main focus of the DNA Bank Network is to enhance taxonomic, systematic, genetic, conservation and evolutionary studies by providing: • high quality, long-term storage of DNA material on which molecular studies have been performed, so that results can be verified, extended, and complemented, • complete on-line documentation of each sample, including the provenance of the original material, the place of voucher deposit, information about DNA quality and extraction methodology, digital images of vouchers and links to published molecular data if available. eng ["disciplinary", "institutional"] {"size": "3.718.390", "updatedp": "2018-12-12"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://wiki.ggbn.org/ggbn/About_GGBN [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["DNA", "biodiversity tissue", "genetics", "molecular biology", "samples", "systematic studies", "taxonomic studies"] [{"institutionName": "Deutsche Forschungsgemeineschaft, Wissenschaftliche Literaturversorgungs- und Informationssysteme", "institutionAdditionalName": ["DFG, LIS", "German Research Foundation, Scientific Library Services and Information Systems"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/foerderung/programme/infrastruktur/lis/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": ["http://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": ["http://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Global Genome Biodiversity Network", "institutionAdditionalName": ["GGBN"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.ggbn.org/ggbn_portal/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://wiki.ggbn.org/ggbn/Contact_Us"]}, {"institutionName": "SYNTHESYS III", "institutionAdditionalName": ["Synthesis of Systematic Resources"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.synthesys.info/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "2017", "institutionContact": ["http://www.synthesys.info/access/tafs/contacts.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.ggbn.org/ggbn/Imprint#Copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.ggbn.org/ggbn/Imprint#Urheber-_und_Kennzeichenrecht"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wiki.ggbn.org/ggbn/GGBN_Wiki:Privacy_policy"}] restricted [] ["MySQL"] {} ["none"] http://data.ggbn.org/ggbn_portal/ ["none"] no yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "http://wiki.ggbn.org/ggbnwiki/index.php?title=Imprint&feed=atom&action=history", "syndicationType": "ATOM"} 2015-04-28 2019-01-21 +r3d100011504 German Federation for Biological Data eng [{"additionalName": "GFBio", "additionalNameLanguage": "eng"}] https://www.gfbio.org/ [] ["https://www.gfbio.org/contact"] The project brings together national key players providing environmentally related biological data and services to develop the ‘German Federation for Biological Data' (GFBio). The overall goal is to provide a sustainable, service oriented, national data infrastructure facilitating data sharing and stimulating data intensive science in the fields of biological and environmental research. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.gfbio.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["biodiversity", "ecosystem", "natural history"] [{"institutionName": "GFBIO", "institutionAdditionalName": ["GFBIO Consortium", "German Federation for Biological Data"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfbio.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@gfbio.org"]}, {"institutionName": "GFBIO collection data centers", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfbio.org/about/data-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@gfbio.org"]}, {"institutionName": "University of Bremen, Center for Marine Environmental Sciences", "institutionAdditionalName": ["MARUM", "Universit\u00e4t Bremen, Zentrum f\u00fcr Marine Umweltwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@marum.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/copyleft/gpl.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gfbio.org/about/legal-notice"}] restricted [] ["MySQL"] yes {"api": "https://gfbio.biowikifarm.net/wiki/Data_exchange_standards,_protocols_and_formats_relevant_for_the_collection_data_domain_within_the_GFBio_network", "apiType": "other"} ["DOI"] ["none"] yes unknown [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} The beta version of the GFBio search Currently includes data from PANGAEA and selected collection data centers. The aggregated dataproviders have different data licenses than the repository. 2015-04-29 2018-12-14 +r3d100011505 Flora von Bayern: Wiki and Data Portal deu [] https://bayernflora.de/web/Hauptseite [] ["bayernflora@snsb.de"] The "Flora of Bavaria" initiative with its data portal (14 million occurrence data) and Wiki representation is primarily a citizen science project. Efforts to describe and monitor the flora of Bavaria have been ongoing for 100 years. The goal of these efforts is to record all vascular plants, including newcomers, and to document threatened or former local occurrences. Being geographically largest state of Germany with a broad range of habitats, Bavaria has a special responsibility for documenting and maintaining its plant diversity . About 85% of all German vascular plant species occur in Bavaria, and in addition it has about 50 endemic taxa, only known from Bavaria (most of them occur in the Alps). The Wiki is collaboration of volunteers and local and regional Bavarian botanical societies. Everybody is welcome to contribute, especially with photos or reports of local changes in the flora. The Flora of Bavaria project is providing access to a research data repository for occurrence data powered by the Diversity Workbench database framework. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://wiki.bayernflora.de/web/Hauptseite [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Diversity Workbench", "flora", "plant life", "species monitoring"] [{"institutionName": "Bayerisches Landesamt f\u00fcr Umwelt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lfu.bayern.de/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatliche Naturwissenschaftliche Sammlungen Bayerns, Botanische Staatssammlung M\u00fcnchen", "institutionAdditionalName": ["SNSB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bsm.mwn.de/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["triebel@snsb.de"]}, {"institutionName": "World Wide Fund For Nature", "institutionAdditionalName": ["WWF-Deutschland"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wwf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "2016", "institutionContact": ["https://www.wwf.de/kontakt/"]}] [{"policyName": "Datenerfassung", "policyURL": "https://bayernflora.de/web/Datenerfassung"}, {"policyName": "Guide lines of the SNSB IT Center with Flora of Bavaria data repository", "policyURL": "https://wiki.bayernflora.de/web/Richtlinien_des_Fachdatenzentrums_der_Staatlichen_Naturwissenschaftlichen_Sammlungen_Bayerns_(SNSB_IT_Center)_zum_Umgang_mit_Beobachtungsdaten"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] ["other"] yes {} ["DOI", "URN"] https://wiki.bayernflora.de/web/Zitiervorschl%C3%A4ge:_Internetquellen_und_Datenpublikationen_zur_Flora_von_Bayern ["none"] yes yes [] [] {} Additional partners of the project can be found here: http://wiki.bayernflora.de/web/Hauptseite 2015-04-29 2019-01-18 +r3d100011506 Fluxnet - Fluxdata eng [{"additionalName": "FLUXNET (formerly)", "additionalNameLanguage": "eng"}] https://fluxnet.fluxdata.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.yfk79s"] ["fluxdata-support@fluxdata.org", "https://fluxnet.fluxdata.org/about/contact-us/"] Vast networks of meteorological sensors ring the globe measuring atmospheric state variables, like temperature, humidity, wind speed, rainfall, and atmospheric carbon dioxide, on a continuous basis. These measurements serve earth system science by providing inputs into models that predict weather, climate and the cycling of carbon and water. And, they provide information that allows researchers to detect the trends in climate, greenhouse gases, and air pollution. The eddy covariance method is currently the standard method used by biometeorologists to measure fluxes of trace gases between ecosystems and atmosphere. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://fluxnet.fluxdata.org/about/vision/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR data", "atmosphere", "biosphere", "carbon dioxide", "ecosystem", "energy", "measurement", "meterology", "physics", "water vapor"] [{"institutionName": "FLUXNET", "institutionAdditionalName": ["a global network of micrometeorological tower sites"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://daac.ornl.gov/cgi-bin/dataset_lister.pl?p=9", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fluxnet-community@fluxdata.org"]}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@ lbl.gov"]}] [{"policyName": "Data Policies", "policyURL": "https://fluxnet.fluxdata.org/data/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://fluxnet.fluxdata.org/data/data-policy/"}] restricted [] ["unknown"] yes {} ["DOI"] https://fluxnet.fluxdata.org/data/data-policy/ ["none"] unknown yes [] [] {} Fluxnet is covered by Clarivate Data Citation Index. FLUXNET is organized through the Regional Networks that contribute to the two main FLUXNET portals: the FLUXNET-ORNL website (https://fluxnet.ornl.gov/), hosted at the Oak Ridge National Laboratory (USA), that maintains the catalog of all the existing and past eddy covariance sites globally, giving access to historical collection such the Marconi dataset and providing useful tools such updated images, MODIS cutout, and references. The second portal is the one you are surfing now, the FLUXNET-Fluxdata webiste (https://fluxnet.fluxdata.org/), hosted at the Lawrence Berkeley National Laboratory (USA). Here the data that have been shared by the Regional Networks and processed and harmonized to share with the FLUXNET communities. Fluxdata website offers a number of tools in addition to the data access such communication and ideas sharing platforms, documentation, and support to the FLUXNET data users. The two FLUXNET portals are interconnected between them and with the Regional Networks, making FLUXNET one of the largest ecosystem network and environmental experiment in the world. The high level of collaboration and integration of the actors involved (FLUXNET-ORNL, Fluxdata, Regional Network) ensures the robustness and the best possible use of the resources available. Sponsors: https://fluxnet.fluxdata.org/about/sponsors/ 2015-05-04 2021-08-19 +r3d100011507 Global Forest Change 2000–2016 eng [] http://earthenginepartners.appspot.com/science-2013-global-forest [] ["https://geog.umd.edu/webform/contact-us"] Results from time-series analysis of Landsat images in characterizing global forest extent and change from 2000 through 2016. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://geog.umd.edu/about-us/geographical-sciences-mission-and-vision-statement [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["forestry", "global forest change", "global forest extent"] [{"institutionName": "University of Maryland, Department of Geographical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geog.umd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://geog.umd.edu/webform/contact-us", "mhansen@umd.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] yes {"api": "https://sites.google.com/site/earthengineapidocs/reference/api-changelog", "apiType": "other"} ["none"] http://earthenginepartners.appspot.com/science-2013-global-forest/download_v1.4.html ["none"] yes unknown [] [] {} 2015-05-04 2018-12-13 +r3d100011509 Geospatial Data eng [] http://libguides.library.usyd.edu.au/geospatial [] ["https://sydney.edu.au/library/contacts/", "troy.mutton@sydney.edu.au"] This guide aims to provide a starting point to locating Geographic Information System (GIS) information both through the University of Sydney library catalogue and on the World Wide Web. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GIS", "geospatial", "maps"] [{"institutionName": "The University of Sydney, Library", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.sydney.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://library.sydney.edu.au/contacts/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sydney.edu.au/disclaimer.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "http://sydney.edu.au/policies/showdoc.aspx?recnum=PDOC2013/337&RendNum=0"}] closed [] ["unknown"] {} ["none"] ["none"] yes unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://rss.libguides.com/rss.php?iid=397&mode=s&sid=421284", "syndicationType": "RSS"} 2015-06-02 2018-12-13 +r3d100011511 DigiMorph eng [{"additionalName": "Digital Morphology", "additionalNameLanguage": "eng"}] http://www.digimorph.org/index.phtml ["RRID:SCR_004416", "RRID:nlx_143746"] ["info@digimorph.org", "rowe@mail.utexas.edu"] The Digital Morphology library, part of the National Science Foundation Digital Libraries Initiative, is a dynamic archive of information on digital morphology and high-resolution X-ray computed tomography of biological specimens. Digital Morphology, part of the National Science Foundation Digital Libraries Initiative, develops and serves unique 2D and 3D visualizations of the internal and external structure of living and extinct vertebrates, and a growing number of 'invertebrates.' The Digital Morphology library contains nearly a terabyte of imagery of natural history specimens that are important to education and central to ongoing cutting-edge research efforts. eng ["disciplinary"] {"size": "over a terabyte of imagery of natural history specimens", "updatedp": "2018-12-13"} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.digimorph.org/aboutdigimorph.phtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["fossils", "invertebrates", "meteorites", "morphology", "organisms", "paleomorphology", "paleontology", "rocks", "skeleton", "stereolitography", "vertebrates"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Texas Memorial Museum", "institutionAdditionalName": ["Austin's First Science Museum"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://tmm.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://tmm.utexas.edu/"]}, {"institutionName": "University of Texas Austin, Geology Foundation", "institutionAdditionalName": ["UT Austin, Geology Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jsg.utexas.edu/alumni/support/geology-foundation/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jsg.utexas.edu/about/contacts/"]}, {"institutionName": "University of Texas Austin, College of Natural Sciences", "institutionAdditionalName": ["UT Austin, College of Natural Sciences"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cns.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cns.utexas.edu/about/contacts"]}, {"institutionName": "University of Texas Austin, Department of Geological Sciences", "institutionAdditionalName": ["UT Austin, Department of Geological Sciences"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jsg.utexas.edu/dgs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jsg.utexas.edu/dgs/"]}, {"institutionName": "University of Texas Austin, Information Technology Services", "institutionAdditionalName": ["UT Austin, ITS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://it.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://it.utexas.edu/services/email-calendar-collaboration"]}, {"institutionName": "University of Texas, High-Resolution X-ray Computed Tomography Facility", "institutionAdditionalName": ["UTCT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ctlab.geo.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ctlab.geo.utexas.edu/contact-information/"]}, {"institutionName": "W.M. Keck Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wmkeck.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wmkeck.org/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.digimorph.org/aboutdigimorph.phtml"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} Additional Sponsors: Intel, Apple Computer 2015-03-29 2018-12-13 +r3d100011512 EarthStat eng [] http://www.earthstat.org/ [] ["earthstat.data@gmail.com"] EarthStat.org serves geographic data sets with the purpose of solving the grand challenge of feeding a growing global population while reducing agriculture’s impact on the environment. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthstat.org/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["climate", "crop data", "environment", "food"] [{"institutionName": "University of British Columbia, Land Use and Global Environment Research Group", "institutionAdditionalName": ["LUGE"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ramankuttylab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ramankuttylab.com/people.html"]}, {"institutionName": "University of Minnesota\u2019s Institute on the Environment, Global Landscapes Initiative", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://environment.umn.edu/discovery/gli/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://environment.umn.edu/contact/"]}] [{"policyName": "Copyright and ethical use of data", "policyURL": "https://www.lib.umn.edu/datamanagement/copyright"}, {"policyName": "University of Minnesota Copyright Policies and Information", "policyURL": "https://www.lib.umn.edu/copyright/umn"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/CC0"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/"}] closed [] ["unknown"] {"api": "http://www.earthstat.org/data-download/", "apiType": "NetCDF"} ["none"] https://www.lib.umn.edu/datamanagement/cite ["none"] no unknown [] [] {} Some data sets were developed earlier, during Navin Ramankutty's tenure at SAGE, at the University of Wisconsin: navin.ramankutty@ubc.ca 2015-02-24 2018-12-13 +r3d100011514 Community Data Portal eng [{"additionalName": "CDP", "additionalNameLanguage": "eng"}] http://cdp.ucar.edu/ [] ["cislhelp@ucar.edu"] !!!! <<<< The Community Data Portal (CDP) has been retired after nearly 15 years of service and is no longer available. Data can now be found here: DASH Search: https://data.ucar.edu/ . Please contact us with questions or concerns: datahelp@ucar.edu >>>> !!!! The Community Data Portal (CDP) is a collection of earth science datasets from NCAR, UCAR, UOP, and participating organizations. eng ["disciplinary"] {"size": "8.000+ Collections; 1.169.041 Files; 6.3TB Total Size; 4.5TB Downloaded; 2.107 Registrations", "updatedp": "2018-01-12"} 2018-01-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["arctic, antarctic", "atmospheric", "climatology", "computational science", "environmental impacts", "oceanic", "solar data", "space weather", "turbulence", "weather"] [{"institutionName": "Computational & Information System Labs", "institutionAdditionalName": ["CISL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.cisl.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cislhelp@ucar.edu"]}, {"institutionName": "National Center for Atmospheric Research - Cyberinfrastructure Strageic Initiative", "institutionAdditionalName": ["NCAR - CSI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.ucar.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "UCAR Community Programs", "institutionAdditionalName": ["UCP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucp.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucp.ucar.edu/contact-us"]}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http2://www2.ucar.edu/contact-us"]}] [{"policyName": "Notification of Copyright Infringement", "policyURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}, {"policyName": "Terms of Use", "policyURL": "http://cdp.ucar.edu/forward.htm?forward=/home/terms_of_use.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cdp.ucar.edu/forward.htm?forward=/home/terms_of_use.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://cdp.ucar.edu/forward.htm?forward=/home/terms_of_use.htm"}] closed [] ["unknown"] {"api": "https://www.unidata.ucar.edu/Presentations/UPCsemseries/CDP.pdf", "apiType": "FTP"} ["none"] ["none"] no unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {} 2015-03-23 2021-08-24 +r3d100011515 NITRC eng [{"additionalName": "Neuroimaging Informatics Tools and Resources Clearinghouse", "additionalNameLanguage": "eng"}] https://www.nitrc.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.6b9re3", "RRID:SCR_003430", "RRID:nif-0000-00202"] ["https://www.nitrc.org/help/contact_us.php"] Neuroimaging Tools and Resources Collaboratory (NITRC) is currently a free one-stop-shop environment for science researchers that need resources such as neuroimaging analysis software, publicly available data sets, and computing power. Since its debut in 2007, NITRC has helped the neuroscience community to use software and data produced from research that, before NITRC, was routinely lost or disregarded, to make further discoveries. NITRC provides free access to data and enables pay-per-use cloud-based access to unlimited computing power, enabling worldwide scientific collaboration with minimal startup and cost. With NITRC and its components—the Resources Registry (NITRC-R), Image Repository (NITRC-IR), and Computational Environment (NITRC-CE)—a researcher can obtain pilot or proof-of-concept data to validate a hypothesis for a few dollars. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nitrc.org/include/about_us.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["clinical neuroinformatics", "genetics", "genomics", "information theory", "mental health", "neuroimaging", "neuroinformatics", "neuroinformatics", "neuroscience"] [{"institutionName": "National Institutes of Health , National Insitute of Mental Health", "institutionAdditionalName": ["NIH, NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NIMHinfo@mail.nih.gov"]}, {"institutionName": "National Institutes of Health, National Insitute of Drug Abuse", "institutionAdditionalName": ["NIH, NIDA", "The Science of Drug Abuse & Addiction"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.drugabuse.gov/about-nida/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NIH, NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ninds.nih.gov/Contact-Us"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health, Blueprint for Neuroscience Research", "institutionAdditionalName": ["HHS, NIH, Blueprint"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://neuroscienceblueprint.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["blueprint@mail.nih.gov"]}, {"institutionName": "UCSD, Center for Research in Biological Systems", "institutionAdditionalName": ["CRBS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://crbs.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://crbs.ucsd.edu/about/contact-2"]}] [{"policyName": "Acceptance of Copyright and License Terms", "policyURL": "https://www.nitrc.org/include/copyright.php"}, {"policyName": "Accessibility Information", "policyURL": "https://www.nitrc.org/include/accessibility.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nitrc.org/include/copyright.php"}] restricted [] ["unknown"] yes {"api": "https://www.nitrc.org/plugins/mwiki/index.php/nitrc:User_Guide_-_Web_Services_Interface", "apiType": "SOAP"} ["none"] https://www.nitrc.org/plugins/mwiki/index.php/nitrc:Acknowledgement_of_Resource_Provider_and_NITRC ["none"] yes yes [] [] {"syndication": "https://www.nitrc.org/export/rss_sfprojects.php", "syndicationType": "RSS"} is covered by Elsevier. NITRC Partners: https://www.nitrc.org/plugins/mwiki/index.php/nitrc:Partners 2015-03-23 2021-09-02 +r3d100011516 PLEXdb eng [{"additionalName": "Plant Expression Database", "additionalNameLanguage": "eng"}] ["FAIRsharing_doi:10.25504/FAIRsharing.8pjgwx", "OMICS_03225", "RRID:SCR_006963", "RRID:nlx_149236"] [] >>>!!!<<< 08.08.2019: Plexdb is no longer online, URLold: http://www.plexdb.org/index.php >>>!!!<<< >>>>!!!! <<<< 13.12.2018: PLEXdb is now a static site after funding stopped from NSF. We have stopped registration of new users; but past users who have data can login when needed and interact with the site. You can download data using the authentication provided at the download page. >>>>!!!!<<<< PLEXdb is a unified gene expression resource for plants and plant pathogens. PLEXdb is a genotype to phenotype, hypothesis building information warehouse, leveraging highly parallel expression data with seamless portals to related genetic, physical, and pathway data. eng ["disciplinary"] {"size": "Experiments: 643 Accessible: 574; Hybridizations: 13429 Accessible: 12165", "updatedp": "2018-12-013"} 08.08.2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biology", "expression profiling", "genetics", "genomics", "genotype", "pathway"] [{"institutionName": "Iowa State University", "institutionAdditionalName": ["Iowa State"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.iastate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://web.iastate.edu/contact/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "United States Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA, ARS"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=00-00-00-00"]}, {"institutionName": "United States Department of Agriculture, National Resources Inventory", "institutionAdditionalName": ["USDA, NRI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/technical/nra/nri/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [] restricted [] ["unknown"] yes {} ["none"] [] yes yes [] [] {} 2015-03-23 2019-08-08 +r3d100011517 United States Department of Agriculture, Economic Research Service, Data Products eng [{"additionalName": "USDA ERS Data Products", "additionalNameLanguage": "eng"}] https://www.ers.usda.gov/data-products.aspx [] ["https://www.ers.usda.gov/contact-us/"] The ERS mission is to inform and enhance public and private decision making on economic and policy issues related to agriculture, food, the environment, and rural development. eng ["disciplinary"] {"size": "", "updatedp": ""} 1961 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.ers.usda.gov/about-ers.aspx [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["agricultural science", "animal products", "biotechnology", "climate change", "ecosystem", "macroeconomics", "nutrition"] [{"institutionName": "United States Department of Agriculture, Economic Research Service", "institutionAdditionalName": ["USDA, ERS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ers.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ers.usda.gov/contact-us.aspx"]}] [{"policyName": "ERS Error Correction Policy", "policyURL": "https://www.ers.usda.gov/about-ers/policies-and-standards/error-correction-policy/"}, {"policyName": "Policies and Links", "policyURL": "https://www.usda.gov/policies-and-links"}, {"policyName": "Policies and Standards", "policyURL": "https://www.ers.usda.gov/about-ers/policies-and-standards/"}, {"policyName": "USDA ERS Data policies", "policyURL": "https://search.ers.usda.gov/search?affiliate=ers&query=data+policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}] closed [] ["unknown"] yes {"api": "https://www.ers.usda.gov/developer", "apiType": "other"} ["none"] ["none"] no yes [] [] {"syndication": "http://www.ers.usda.gov/rss?type=data", "syndicationType": "RSS"} 2015-03-24 2018-12-13 +r3d100011518 UniRef eng [{"additionalName": "UniProt Reference Clusters", "additionalNameLanguage": "eng"}] https://www.uniprot.org/help/uniref ["OMICS_03879", "RRID:SCR_010646", "RRID:nlx_66133"] ["https://www.uniprot.org/contact"] The UniProt Reference Clusters (UniRef) provide clustered sets of sequences from the UniProt Knowledgebase (including isoforms) and selected UniParc records in order to obtain complete coverage of the sequence space at several resolutions while hiding redundant sequences (but not their descriptions) from view. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.uniprot.org/help/uniref [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological process", "cellular component", "coding sequence diversity", "disease", "protein sequences", "sequence clusters"] [{"institutionName": "British Heart Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/#&panel1-2", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bhf.org.uk/about-us/contact-us"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "Parkinson's Disease United Kingdom", "institutionAdditionalName": ["PDUK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.parkinsons.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.parkinsons.org.uk/content/contact-us"]}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pir.georgetown.edu/pirwww/support/contact.shtml"]}, {"institutionName": "State Secretariat for Education, Research and Innovation", "institutionAdditionalName": ["SBFI", "SERI", "Staatssekretariat f\u00fcr Bildung, Forschung und Innovation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sbfi.admin.ch/sbfi/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sbfi.admin.ch/sbfi/en/home/seri/find-a-contact-person-in-seri.html"]}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isb-sib.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.isb-sib.ch/forms.html"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about/contact.htm"]}] [{"policyName": "License & Disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/"}] restricted [{"dataUploadLicenseName": "Submissions and Updates", "dataUploadLicenseURL": "https://www.uniprot.org/help/submissions"}] ["unknown"] yes {"api": "ftp://ftp.uniprot.org/pub/databases/uniprot/uniref/", "apiType": "FTP"} ["none"] ["none"] yes unknown [] [] {} In re3data.org listetd: UniProt Knowledgebase 2015-03-24 2020-01-29 +r3d100011519 UniParc eng [{"additionalName": "UniProt Archive", "additionalNameLanguage": "eng"}] https://www.uniprot.org/help/uniparc ["OMICS_03880", "RRID:SCR_004769", "RRID:nlx_76940"] ["https://www.uniprot.org/contact"] The UniProt Archive (UniParc) is a comprehensive and non-redundant database that contains most of the publicly available protein sequences in the world. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.uniprot.org/help/uniparc [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["evolution", "proteomics", "statistics", "vertebrate"] [{"institutionName": "British Hearth Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/#&panel1-2", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bhf.org.uk/about-us/contact-us"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "Parkinson's Disease United Kingdom", "institutionAdditionalName": ["PDUK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.parkinsons.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.parkinsons.org.uk/content/contact-us"]}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pir.georgetown.edu/pirwww/support/contact.shtml"]}, {"institutionName": "State Secretariat for Education, Research and Innovation", "institutionAdditionalName": ["SBFI", "SERI", "Staatssekretariat f\u00fcr Bildung, Forschung und Innovation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sbfi.admin.ch/sbfi/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sbfi.admin.ch/sbfi/en/home/seri/find-a-contact-person-in-seri.html"]}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sib.swiss/contact"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about/contact.htm"]}] [{"policyName": "License & Disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/"}] restricted [{"dataUploadLicenseName": "Submissions and Updates", "dataUploadLicenseURL": "https://www.uniprot.org/help/submissions"}] ["unknown"] yes {"api": "ftp://ftp.uniprot.org/pub/databases/uniprot/", "apiType": "FTP"} ["none"] https://www.uniprot.org/help/publications ["none"] yes yes [] [] {} http://www.uniprot.org/help/uniparc 2015-03-24 2020-01-29 +r3d100011520 UniMES eng [{"additionalName": "UniProt Metagenomic and Environmental Sequences", "additionalNameLanguage": "eng"}] https://www.uniprot.org/help/unimes ["OMICS_03881"] ["https://www.uniprot.org/contact"] >>>!!!!<<< Retirement of UniProt Metagenomic and Environmental Sequences (UniMES): UniProt has retired UniMES as there is now a resource at the EBI that is dedicated to serving metagenomic researchers. Henceforth, we recommend using the EBI Metagenomics portal instead https://www.ebi.ac.uk/metagenomics/ . In addition to providing a repository of metagenomics sequence data, EBI Metagenomics allows you to view functional and taxonomic analyses and to submit your own samples for analysis. >>> !!!<<< The UniProt Metagenomic and Environmental Sequences (UniMES) database is a repository specifically developed for metagenomic and environmental data. We provide UniMES clusters in order to obtain complete coverage of sequence space at different resolutions. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-01-29 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.uniprot.org/help/unimes [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["database", "evolution", "protein sequences", "proteomics"] [{"institutionName": "British Heart Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/#&panel1-2", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bhf.org.uk/about-us/contact-us"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "Parkinson's Disease United Kingdom", "institutionAdditionalName": ["PDUK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.parkinsons.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.parkinsons.org.uk/content/contact-us"]}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pir.georgetown.edu/pirwww/support/contact.shtml"]}, {"institutionName": "State Secretariat for Education, Research and Innovation", "institutionAdditionalName": ["SBFI", "SERI", "Staatssekretariat f\u00fcr Bildung, Forschung und Innovation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sbfi.admin.ch/sbfi/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sbfi.admin.ch/sbfi/en/home/seri/find-a-contact-person-in-seri.html"]}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sib.swiss/contact"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about/contact.htm"]}] [{"policyName": "License & Disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {} ["none"] ["none"] no yes [] [] {} UniProt has retired UniMES as there is now a resource at the EBI that is dedicated to serving metagenomic researchers. Henceforth, we recommend using the EBI Metagenomics portal instead. In addition to providing a repository of metagenomics sequence data, EBI Metagenomics allows you to view functional and taxonomic analyses and to submit your own samples for analysis. 2015-03-24 2020-01-29 +r3d100011521 UniProtKB eng [{"additionalName": "UniProtKnowledgebase", "additionalNameLanguage": "eng"}, {"additionalName": "Universal Protein Knowledgebase", "additionalNameLanguage": "eng"}] https://www.uniprot.org/uniprot/ ["FAIRsharing_doi:10.25504/FAIRsharing.s1ne3g", "OMICS_03878", "RRID:SCR_004426", "RRID:nlx_53981"] ["https://www.uniprot.org/contact"] The UniProt Knowledgebase (UniProtKB) is the central hub for the collection of functional information on proteins, with accurate, consistent and rich annotation. In addition to capturing the core data mandatory for each UniProtKB entry (mainly, the amino acid sequence, protein name or description, taxonomic data and citation information), as much annotation information as possible is added. This includes widely accepted biological ontologies, classifications and cross-references, and clear indications of the quality of annotation in the form of evidence attribution of experimental and computational data. The Universal Protein Resource (UniProt) is a comprehensive resource for protein sequence and annotation data. The UniProt databases are the UniProt Knowledgebase (UniProtKB), the UniProt Reference Clusters (UniRef), and the UniProt Archive (UniParc). The UniProt Metagenomic and Environmental Sequences (UniMES) database is a repository specifically developed for metagenomic and environmental data. The UniProt Knowledgebase,is an expertly and richly curated protein database, consisting of two sections called UniProtKB/Swiss-Prot and UniProtKB/TrEMBL. eng ["disciplinary"] {"size": "547.964 manually annotated and reviewed records; 92.124.243 automatically annotated and not reviewed records", "updatedp": "2015-03-25"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.uniprot.org/help/uniprotkb [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "biology", "cellular component", "disease", "molecular function", "proteomics", "sequences", "spectrometry"] [{"institutionName": "British Heart Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bhf.org.uk/about-us/contact-us"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nsf.gov"]}, {"institutionName": "Parkinson's Disease United Kingdom", "institutionAdditionalName": ["PDUK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.parkinsons.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.parkinsons.org.uk/content/contact-us"]}, {"institutionName": "Protein Information Resource", "institutionAdditionalName": ["PIR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pir.georgetown.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pir.georgetown.edu/pirwww/support/contact.shtml"]}, {"institutionName": "State Secretariat for Education, Research and Innovation", "institutionAdditionalName": ["SBFI", "SERI", "Staatssekretariat f\u00fcr Bildung, Forschung und Innovation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sbfi.admin.ch/sbfi/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sbfi.admin.ch/sbfi/en/home/seri/find-a-contact-person-in-seri.html"]}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sib.swiss/contact"]}, {"institutionName": "U.S. Department of Health and Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about/contact.htm"]}] [{"policyName": "License & Disclaimer", "policyURL": "https://www.uniprot.org/help/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://www.uniprot.org/help/license"}] restricted [{"dataUploadLicenseName": "Submissions and Updates", "dataUploadLicenseURL": "https://www.uniprot.org/help/submissions"}] ["unknown"] yes {"api": "https://www.uniprot.org/help/programmatic_access", "apiType": "REST"} ["PURL"] https://www.uniprot.org/help/publications ["none"] yes yes [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} UniProtKB is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. Different databases for different uses: We have built four different databases: The UniProt Knowledgebase, and in particular UniProtKB/Swiss-Prot, is used to access functional information on proteins. Every UniProtKB entry contains the amino acid sequence, protein name or description,taxonomic data and citation information but in addition to this, we add as much annotation as possible. This includes widely accepted biological ontologies, classifications and cross-references, as well as clear indications on the quality of annotation in the form of evidence attribution to experimental and computational data. - The UniRef databases provide clustered sets of sequences from UniProtKB and selected UniParc records to provide complete coverage of sequence space at several resolutions. UniRef90 and UniRef50 yield a database size reduction of approximately 40% and 65%, respectively, providing significantly faster sequence searches. - UniParc is the most comprehensive publicly accessible non-redundant protein sequence database available, providing links to all underlying sources and versions of these sequences. You can instantly find out whether a sequence of interest is already in the public domain and, if not, identify its closest relatives. - UniMES is a repository specifically for metagenomic and environmental data. 2015-03-25 2021-09-03 +r3d100011522 SOFIA eng [{"additionalName": "South Florida Information Access", "additionalNameLanguage": "eng"}] https://sofia.usgs.gov/ [] ["hhenkel@usgs.gov"] South Florida Information Access (SOFIA) is an interdisciplinary service that provides coherent information access in support of research, decision making, and resource management for the South Florida ecosystem restoration effort. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://sofia.usgs.gov/aboutsofia.html#mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "U.S. Department of the Interior", "institutionAdditionalName": ["DOI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.doi.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.doi.gov/contact-us"]}, {"institutionName": "U.S. Geological Survey, Priority Ecosystems Science Initiative", "institutionAdditionalName": ["USGS, PES"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "Accessibility Policy", "policyURL": "https://www.usgs.gov/accessibility-and-us-geological-survey"}, {"policyName": "Environmental Management Policy Statement", "policyURL": "https://www.usgs.gov/environmental-management-policy-statement"}, {"policyName": "How to request information under the Freedom of Information Act (FOIA) Policy", "policyURL": "https://www2.usgs.gov/foia/"}, {"policyName": "Information Policies and Instructions", "policyURL": "https://www.usgs.gov/information-policies-and-instructions"}, {"policyName": "USGS Comment Policy", "policyURL": "https://www.usgs.gov/usgs-comment-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] closed [] ["unknown"] no {} ["none"] ["none"] yes no [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2015-03-02 2018-12-14 +r3d100011524 GeoPlatform eng [] https://www.geoplatform.gov/ [] ["servicedesk@geoplatform.gov"] The GeoPlatform provides shared and trusted geospatial data, services, and applications for use by the public and by government agencies and partners to meet their mission needs. eng ["disciplinary"] {"size": "150.943 datasets", "updatedp": "2018-01-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geoplatform.gov/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate change", "earth science", "ecosystem"] [{"institutionName": "Data.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.data.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datagov@gsa.gov"]}, {"institutionName": "Federal Geographic Data Committee", "institutionAdditionalName": ["FGDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fgdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fgdc.gov/aboutus"]}] [{"policyName": "Data Policies", "policyURL": "https://www.geoplatform.gov/data-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] restricted [] ["CKAN"] yes {"api": "https://www.geoplatform.gov/help/api/", "apiType": "REST"} ["none"] https://www.geoplatform.gov/about/data-policies/ ["none"] no unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2015-02-25 2020-01-30 +r3d100011525 Hydra eng [{"additionalName": "Hull's digital repository", "additionalNameLanguage": "eng"}] https://hydra.hull.ac.uk/ [] ["https://hydra.hull.ac.uk/contact", "libhelp@hull.ac.uk"] Hydra is a repository for digital materials at the University of Hull. It can hold and manage any type of digital material, and is being developed in response to the growth in the amount of digital material that is generated through the research, education and administrative activities within the University. Hydra contains different collections of datasets from University of Hull research projects as: ARCdoc, domesday dataset, History of Marine animal Populations (HMAP) and others. eng ["institutional"] {"size": "6124 datasets", "updatedp": "2018-12-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://hydra.hull.ac.uk/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Hull", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hull.ac.uk/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hull.ac.uk/choose-hull/study-at-hull/international/contact.aspx"]}] [{"policyName": "Cookies policy", "policyURL": "https://hydra.hull.ac.uk/cookies"}, {"policyName": "Take-down policy", "policyURL": "https://hydra.hull.ac.uk/takedown"}, {"policyName": "University of Hull Open Access Policy", "policyURL": "https://hydra.hull.ac.uk/assets/hull:10503/content"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hydra.hull.ac.uk/"}] restricted [] ["Fedora"] yes {} ["none"] ["none"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2015-02-25 2021-07-20 +r3d100011527 GlycomeDB eng [{"additionalName": "A carbohydrate structure metadatabase", "additionalNameLanguage": "eng"}] http://www.glycome-db.org/ ["RRID:SCR_005717", "RRID:nlx_149174"] [] <<<<>>>> With the new database, GlycomeDB, it is possible to get an overview of all carbohydrate structures in the different databases and to crosslink common structures in the different databases. Scientists are now able to search for a particular structure in the meta database and get information about the occurrence of this structure in the five carbohydrate structure databases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["carbohydrate", "glycobiology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Cancer Research Center Heidelberg", "institutionAdditionalName": ["DKFZ", "Deutsches Krebsforschungszentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dkfz.de/en/index.html", "institutionIdentifier": ["ROR:04cdgtt98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dkfz.de/en/kontakt.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.glycome-db.org/index.html"}] closed [] ["unknown"] no {} ["none"] ["none"] no unknown [] [] {} For use of data from any of the integrated databases you have to respect the licenses of the corresponding database initiative. (BCSDB, CFG, GlyAffinity, GlycoBase(Dublin), GlycoBase(Lille), KEGG) 2015-03-03 2021-07-02 +r3d100011528 TOXMAP eng [] https://toxmap.nlm.nih.gov/toxmap/ [] [] The repository is no longer available. <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://toxmap.nlm.nih.gov/toxmap/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["NPL", "National Priorities List", "Superfund", "TRI", "Toxics Release Inventory", "chemical", "environmental health", "environmental justice", "environmental map", "toxins"] [{"institutionName": "National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": ["ISNI:0000000405077840", "ROR:0060t0j89", "RRID:SCR_011446", "RRID:nlx_inv_1005117"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/?deptID=28054&from=https://www.nlm.nih.gov/about/index.html"]}, {"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "Toxics Release Inventory Program", "institutionAdditionalName": ["TRI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/toxics-release-inventory-tri-program", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epa.gov/toxics-release-inventory-tri-program/forms/tri-program-contacts"]}, {"institutionName": "United States Environmental Protection Agency, Superfund", "institutionAdditionalName": ["EPA, Superfund"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/superfund", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epa.gov/superfund/forms/contact-us-about-superfund"]}] [{"policyName": "TOXMAP Accessibility", "policyURL": "https://toxmap.nlm.nih.gov/toxmap/accessibility.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] no {} ["none"] ["none"] yes unknown [] [] {} The data shown in TOXMAP comes from: http://wayback.archive-it.org/org-350/20180312141653/https://www.nlm.nih.gov/pubs/factsheets/toxmap.html TOXMAP's data are also available in text-only format from a variety of sources: TOXNET®/TRI (National Library of Medicine), HSDB® (National Library of Medicine), TRI Explorer (U.S. EPA), USA Quick Facts (U.S. Census Bureau), and The Agency for Toxic Substances and Disease Registry. TOXMAP belongs to a group of TOXNET databases related to toxicology, hazardous chemicals, environmental health, and toxic releases. Description: TOXMAP® is a Geographic Information System (GIS) from the Division of Specialized Information Services of the US National Library of Medicine® (NLM) that uses maps of the United States and Canada to help users visually explore data primarily from the US Environmental Protection Agency (EPA)'s Toxics Release Inventory (TRI) and Superfund Program. 2015-03-09 2019-12-17 +r3d100011529 Toxics Release Inventory eng [{"additionalName": "TRI", "additionalNameLanguage": "eng"}] https://toxnet.nlm.nih.gov/newtoxnet/tri.htm ["RRID:SCR_008245", "RRID:nif-0000-21401"] [] The repository is no longer available. <<>>!!!>>> As part of a broader NLM reorganization, most of NLM's toxicology information services have been integrated into other NLM products and services. eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nlm.nih.gov/pubs/factsheets/trifs.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["environmental health"] [{"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] no {} ["other"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html ["none"] no unknown [] [] {} TRI was a TOXNET database. Description: The Toxics Release Inventory (TRI) is a set of publicly available databases containing information on releases of specific toxic chemicals and their management as waste, as reported annually by U.S. industrial and federal facilities. 2015-03-10 2021-07-02 +r3d100011530 Comparative Toxicogenomics Database eng [{"additionalName": "CTD", "additionalNameLanguage": "eng"}] http://ctdbase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.h3tjtr", "RRID:OMICS_01578", "RRID:SCR_006530", "RRID:nif-0000-02683"] ["http://ctdbase.org/help/contact.go"] CTD is a robust, publicly available database that aims to advance understanding about how environmental exposures affect human health. It provides manually curated information about chemical–gene/protein interactions, chemical–disease and gene–disease relationships. These data are integrated with functional and pathway data to aid in development of hypotheses about the mechanisms underlying environmentally influenced diseases. We also have additional ongoing projects involving manual curation of exposome data and chemical–phenotype relationships to help identify pre–disease biomarkers resulting from environmental exposures. The initial release of CTD was on November 12, 2004. We’re grateful to our strong community support and encourage you to give us feedback so we can continue to evolve with your research needs. eng ["disciplinary"] {"size": "32.940.326 toxicogenomic relationships", "updatedp": "2017-06-28"} 2004 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://ctdbase.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "environmental health", "genetics"] [{"institutionName": "Mount Desert Island Biological Laboratory", "institutionAdditionalName": ["MDI Biological Laboratory", "MDIBL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://mdibl.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mdibl.org/about/contact/"]}, {"institutionName": "North Carolina State University", "institutionAdditionalName": ["NCSU"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncsu.edu/contact"]}, {"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Institute of Environmental Health Sciences", "institutionAdditionalName": ["NIEHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niehs.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niehs.nih.gov/about/od/ocpl/contact/"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054"]}] [{"policyName": "Legal notices", "policyURL": "http://ctdbase.org/about/legal.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ctdbase.org/about/legal.jsp"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] yes {} ["none"] http://ctdbase.org/about/publications/#citing ["none"] yes unknown [] [] {} CTD a TOXNET database. CTD has also received support from the National Center for Research Resources (P20 RR016463), Pfizer, Inc., and the American Chemistry Council. Description: CTD contains manually curated data describing cross-species chemical-gene/protein interactions and chemical- and gene-disease relationships. The results provide insight into the molecular mechanisms underlying variable susceptibility and environmentally influenced diseases. These data will also provide insights into complex chemical-gene and protein interaction networks. 2015-03-10 2021-09-09 +r3d100011531 Integrated Risk Information System eng [{"additionalName": "IRIS", "additionalNameLanguage": "eng"}] http://toxnet.nlm.nih.gov/newtoxnet/iris.htm ["RRID:SCR_013005", "RRID:nif-0000-21221"] [] The repository is no longer available. <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 1994 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.epa.gov/iris/basic-information-about-integrated-risk-information-system [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["cancer", "dose-response assessment", "environmental health", "hazard identification"] [{"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tehip@teh.nlm.nih.gov"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054"]}, {"institutionName": "U.S. Environmental Protection Agency", "institutionAdditionalName": ["EPA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.epa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epa.gov/home/forms/contact-epa"]}] [{"policyName": "EPA IRIS Disclaimer", "policyURL": "https://toxnet.nlm.nih.gov/help/newtoxnet/IRIS_disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] yes {} ["other"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html ["none"] no yes [] [] {} IRIS was a TOXNET database. Description: IRIS contains data in support of human health risk assessment, including hazard identification and dose-response assessments. It is compiled by the U.S. EPA and contains descriptive and quantitative information related to human cancer and non-cancer health effects that may result from exposure to substances in the environment. IRIS data is reviewed by EPA scientists and represents EPA consensus. 2015-03-10 2019-12-17 +r3d100011532 International Toxicity Estimates for Risk eng [{"additionalName": "ITER", "additionalNameLanguage": "eng"}] http://toxnet.nlm.nih.gov/newtoxnet/iter.htm ["RRID:SCR_008196", "RRID:nif-0000-21225"] [] The repository is no longer available. <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nlm.nih.gov/pubs/factsheets/iterfs.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["cancer", "dose-response assessment", "environmental health", "hazard identification"] [{"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "Toxicology Excellence for Risk Assessment", "institutionAdditionalName": ["TERA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.tera.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tera@tera.org"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] no {} ["other"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html ["none"] yes yes [] [] {} Other participating institutions can be found here: http://wayback.archive-it.org/org-350/20180312141546/https://www.nlm.nih.gov/pubs/factsheets/iterfs.html ITER a TOXNET database. Description: ITER contains data in support of human health risk assessments. It is compiled by Toxicology Excellence for Risk Assessment (TERA) and contains data from CDC/ATSDR, Health Canada, RIVM, U.S. EPA, IARC, NSF International and independent parties offering peer-reviewed risk values. ITER provides comparison charts of international risk assessment information and explains differences in risk values derived by different organizations. 2015-03-10 2019-12-17 +r3d100011533 Carcinogenic Potency Database eng [{"additionalName": "CPDB", "additionalNameLanguage": "eng"}] https://toxnet.nlm.nih.gov/newtoxnet/cpdb.htm ["OMICS_03986"] ["tehip@teh.nlm.nih.gov"] The repository is no longer available. <<>>!!!>>> eng ["disciplinary"] {"size": "6.540 chronic, long-term animal cancer tests", "updatedp": "2014-03-18"} 2019-12-16 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nlm.nih.gov/pubs/factsheets/cpdbfs.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["cancer", "carcinogenicity", "environmental health"] [{"institutionName": "TOXNET", "institutionAdditionalName": ["Toxicology Data Network"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://toxnet.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sis.nlm.nih.gov/siscontact.html"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["HHS, NIH, NCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": ["HHS, NIH, NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://support.nlm.nih.gov/ics/support/ticketnewwizard.asp?style=classic&deptID=28054"]}, {"institutionName": "U.S. Department of Health and Human Services, National Toxicology Program", "institutionAdditionalName": ["HHS, NTP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ntp.niehs.nih.gov/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ntp.niehs.nih.gov/help/contactus/index.html"]}, {"institutionName": "University of California, Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["UCB, Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lbl.gov/web-support/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nlm.nih.gov/copyright.html"}] closed [] ["unknown"] {} ["none"] https://toxnet.nlm.nih.gov/newtoxnet/faq.html ["none"] yes unknown [] [] {} Description: CPDB reports analyses of animal cancer tests used in support of cancer risk assessments for human. It was developed by the Carcinogenic Potency Project at the University of California, Berkeley and the Lawrence Berkeley National Laboratory. It includes 6,540 chronic, long-term animal cancer tests from the published literature as well as from the National Cancer Institute and the National Toxicology Program (NTP). Years of coverage: CPDB covers 1980 - 2011. It is no longer updated. 2015-03-16 2019-12-17 +r3d100011534 SedDB eng [{"additionalName": "Integrated Data Management for Sediment Geochemistry", "additionalNameLanguage": "eng"}] http://www.earthchem.org/seddb ["RRID:SCR_002210", "RRID:nlx_154724"] ["info@seddb.org"] !!! Content of SedDB has been static since 2014 and will not be updated until further notice.!!! SedDB complements current geological data systems (PetDB, EarthChem, NavDat and GEOROC) with an integrated compilation of geochemistry of marine and continental sediments. Notice: Content of SedDB has been static since 2014 and will not be updated until further notice. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthchem.org/overview [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["geochronology", "petrography", "petrology", "sedimentology"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/support/contact"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Data Submission Guidelines", "policyURL": "http://www.earthchem.org/help/guidelines"}, {"policyName": "IEDA Data Publication Policy", "policyURL": "https://www.iedadata.org/help/data-publication/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "http://www.earthchem.org/help/guidelines"}] ["unknown"] {} ["none"] http://www.earthchem.org/data/cite ["none"] yes unknown [] [] {} SedDB is part of Interdisciplinary Earth Data Alliance (IEDA): IEDA is a partnership between EarthChem and the Marine Geoscience Data System (MGDS). EarthChem and MGDS systems include the geochemical databases PetDB and SedDB, the geochemistry data network EarthChem, the Ridge2000 and MARGINS Data Portals, the Academic Seismic Portal field data collection, the Antarctic and Southern Ocean Data System, the Global Multi Resolution Topography synthesis, and the System for Earth Sample Registration SESAR. Content of SedDB has been static since 2014 and will not be updated until further notice. 2015-03-16 2021-09-03 +r3d100011536 VentDB eng [{"additionalName": "Geochemical Database for Seafloor Hydrothermal Springs", "additionalNameLanguage": "eng"}] http://www.earthchem.org/ventdb ["RRID:SCR_001632", "RRID:nlx_154725"] ["info@ventdb.org"] >>>!!!<<< The repository is no longer available. >>>!!!<<< 2021-06-17; VentDB data collections now housed in the EarthChem Library VentDB is an effort funded by the US National Science Foundation to build and operate a data management system for hydrothermal spring geochemistry that will host and serve the full range of compositional data acquired on seafloor hydrothermal vents from all tectonic settings. VentDB supports the preservation and dissemination of analytical data on hydrothermal springs and plumes. VentDB complements existing geochemical data collections such as SedDB and PetDB. VentDB can accommodate published historical data as well as legacy and new data that investigators contribute. Content of VentDB is static and will not be updated until further notice. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Zero-Mg Hydrothermal End-Member Compositions", "dissolved gas", "geochronology", "radiogenic istopes", "stable istopes"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/contact"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Hawai'i", "institutionAdditionalName": ["UH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hawaii.edu/", "institutionIdentifier": ["ROR:03tzaeb71", "RRID:SCR_000998", "RRID:nlx_88254"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hawaii.edu/site/contact/"]}] [{"policyName": "Data Submission Guidelines", "policyURL": "http://www.earthchem.org/help/guidelines"}, {"policyName": "IEDA Data Publication Policy", "policyURL": "https://www.iedadata.org/help/data-publication/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "http://www.earthchem.org/help/guidelines"}] ["unknown"] {} [] https://www.iedadata.org/help/data-publication/ ["none"] no unknown [] [] {} 2015-03-16 2021-09-03 +r3d100011537 Geochron eng [] https://www.geochron.org/ ["biodbcore-001751"] ["iny@email.arizona.edu", "jdwalker@ku.edu."] Geochron is a global database that hosts geochronologic and thermochronologic information from detrital minerals. Information included with each sample consists of a table with the essential isotopic information and ages, a table with basic geologic metadata (e.g., location, collector, publication, etc.), a Pb/U Concordia diagram, and a relative age probability diagram. This information can be accessed and viewed with any web browser, and depending on the level of access desired, can be designated as either private or public. Loading information into Geochron requires the use of U-Pb_Redux, a Java-based program that also provides enhanced capabilities for data reduction, plotting, and analysis. Instructions are provided for three different levels of interaction with Geochron: 1. Accessing samples that are already in the Geochron database. 2. Preparation of information for new samples, and then transfer to Arizona LaserChron Center personnel for uploading to Geochron. 3. Preparation of information and uploading to Geochron using U-Pb_Redux. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geochron.org/about.php [{"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["earth sciences", "geochronology", "geoscience", "thermochronology"] [{"institutionName": "Columbia University, Lamont-Doherty Earth Observartory, EarthChem", "institutionAdditionalName": ["EarthChem"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earthchem.org/", "institutionIdentifier": ["RRID:SCR_002207", "RRID:nlx_154721"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthchem.org/contact"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Arizona, Arizona LaserChron Center", "institutionAdditionalName": ["Arizona LaserChron Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sites.google.com/a/laserchron.org/laserchron/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sites.google.com/site/laserchron/contacts-1"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://docs.google.com/file/d/0B9ezu34P5h8eY2MwYjkwNTQtZjQ2NS00NjI4LTk1YTItM2RiMGU5ZTVjNDNh/edit?pli=1"}] restricted [{"dataUploadLicenseName": "EarthChem Library Submission Guidelines", "dataUploadLicenseURL": "http://www.earthchem.org/help/guidelines"}] ["unknown"] {} ["DOI"] ["none"] no yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Geochron is a project of EarthChem and EARTHTIME. Database development is a collaborative effort of EarthChem (Doug Walker, University of Kansas), CIRDLES (Jim Bowring, College of Charleston), EARTHTIME (Sam Bowring, MIT), and the Arizona LaserChron Center (George Gehrels, University of Arizona). Funding for this initiative is provided by the National Science Foundation (EAR-0929746) and the ExxonMobil Corporation. There is a collaboration with the "Working-Group for Geochronology by LA-ICPMS" to provide sets of zircon standards that LA-ICPMS and SIMS labs can use for technique development and interlab calibration tests 2015-03-24 2021-09-03 +r3d100011538 EarthChem Library eng [] https://earthchem.org/ecl/ ["FAIRsharing_doi:10.25504/FAIRsharing.ne5dn7"] ["https://www.earthchem.org/about/contact/", "info@earthchem.org"] The EarthChem Library is a data repository that archives, publishes and makes accessible data and other digital content from geoscience research (analytical data, data syntheses, models, technical reports, etc.) eng ["disciplinary"] {"size": "890 records", "updatedp": "2021-06-18"} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.earthchem.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate", "diamonds", "earth sciences", "ecology", "environmental science", "minerals", "mines", "rocks"] [{"institutionName": "Columbia University Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://library.columbia.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Earthchem", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthchem.org/", "institutionIdentifier": ["RRID:SCR_002207", "RRID:nlx_154721"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.earthchem.org/about/contact/"]}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iedadata.org/", "institutionIdentifier": ["ROR:02fjjnc15", "RRID:SCR_006739", "RRID:nlx_156096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iedadata.org/contact/"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Access to Data", "policyURL": "https://www.earthchem.org/ecl/policies/#accesss"}, {"policyName": "Policies", "policyURL": "https://www.earthchem.org/ecl/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] restricted [] [] yes {"api": "http://portal.earthchem.org/rest_search_documentation/", "apiType": "REST"} ["DOI"] https://www.earthchem.org/ecl/policies/#citation [] yes yes [] [] {} is covered by Elsevier. EarthChem Portal is the one-stop-shop for geochemical data that gives users the ability to search federated databases including PetDB, SedDB, NAVDAT, MetPetDB, the USGS National Geochemical Database, GEOROC, and GANSEKI simultaneously. 2015-03-24 2021-09-02 +r3d100011539 NAVDAT eng [{"additionalName": "The North American Volcanic and Intrusive Rock Database", "additionalNameLanguage": "eng"}, {"additionalName": "The Western North American Volcanic and Intrusive Rock Database", "additionalNameLanguage": "eng"}] https://www.navdat.org/ [] ["admin@jasonash.com", "https://navdat.org/index.cfm", "jasonash@ku.edu"] The North American Volcanic and Intrusive Rock Database (NAVDAT) is intended as a web-accessible repository for age, chemical and isotopic data from Mesozoic and younger igneous rocks in western North America. Please note: Although this site is fully functional, the content of NAVDAT has been static since 2014 and will not be updated until further notice. All data is still available via the EarthChem Portal http://portal.earthchem.org/ eng ["disciplinary"] {"size": "64.985 Samples; 1.103.584 Chemical Values; 1.874 References", "updatedp": "2014-12-31"} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://navdat.org/NavdatHome/FAQ.cfm#WhatIsNAVDAT [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["geochronology", "petrology"] [{"institutionName": "Geothermal Program Office of the China Lake Naval Air Weapons Station", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cnic.navy.mil/regions/cnrsw/installations/naws_china_lake.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cnic.navy.mil/contact_us.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "Free use", "policyURL": "https://www.navdat.org/NavdatHome/FAQ.cfm#Why"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.navdat.org/NavdatHome/FAQ.cfm#Why"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "https://navdat.org/NavdatHome/DataSubmissionFileFormat.cfm"}] ["unknown"] no {} ["none"] ["none"] yes yes [] [] {} 2015-02-23 2021-09-03 +r3d100011541 Missouri Geological Survey Program eng [{"additionalName": "GeoSTRAT", "additionalNameLanguage": "eng"}] https://dnr.mo.gov/geology/geosrv/ [] ["geology@dnr.mo.gov", "welldrillers@dnr.mo.gov"] We conduct integrated earth resource evaluation that incorporates sustainable economic vitality and environmental and public health protection. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dnr.mo.gov/geology/index.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["geotechnics", "geothermal energy", "topography"] [{"institutionName": "Missouri Department of Natural Resources", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dnr.mo.gov/index.html", "institutionIdentifier": ["ROR: 03s24wa94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@dnr.mo.gov"]}] [{"policyName": "Administrative Policies and Procedures", "policyURL": "https://dnr.mo.gov/policies/"}, {"policyName": "Data Policy", "policyURL": "https://www.mo.gov/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dnr.mo.gov/policies/7.09.pdf"}] closed [] ["unknown"] no {} ["none"] ["none"] no unknown [] [] {"syndication": "https://dnr.mo.gov/news/rss", "syndicationType": "RSS"} 2015-02-05 2019-12-18 +r3d100011543 Site Survey Data Bank eng [{"additionalName": "SSDB", "additionalNameLanguage": "eng"}] https://ssdb.iodp.org/ ["biodbcore-001611"] ["https://ssdb.iodp.org/contact.php"] The Site Survey Data Bank (SSDB) is a repository for site survey data submitted in support of International Ocean Discovery Program (IODP) proposals and expeditions. SSDB serves different roles for different sets of users. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ssdb.iodp.org/about.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["PDB", "Proposal Database", "drilling"] [{"institutionName": "The Geological Data Center", "institutionAdditionalName": ["GDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://gdc.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://gdc.ucsd.edu/index.php?page=contact"]}, {"institutionName": "The International Ocean Discovery Program", "institutionAdditionalName": ["IODP"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iodp.org/index.php", "institutionIdentifier": ["ROR:05a18r864"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iodp.org/program-organization/science-support-office"]}] [{"policyName": "Guidelines for Site Characterization Data", "policyURL": "https://www.iodp.org/top-resources/program-documents/policies-and-guidelines/496-iodp-guidelines-for-site-characterization-data-july-2019/file"}, {"policyName": "Proposal Submission Guidelines", "policyURL": "http://www.iodp.org/top-resources/program-documents/policies-and-guidelines/498-iodp-proposal-submission-guidelines-may-2018/file"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iodp.org/top-resources/program-documents/policies-and-guidelines/496-iodp-guidelines-for-site-characterization-data-july-2019/file"}] restricted [{"dataUploadLicenseName": "How to Submit Files to SSDB", "dataUploadLicenseURL": "http://ssdb.iodp.org/documents/howtosubmit.php"}] ["unknown"] no {} ["none"] ["none"] no yes [] [] {} SSDB is a resource for the general science community to access drilling-related data submitted in the past. Without an SSDB account, you can use SSDBquery and SSDBlegacy to find data that may be of interest, however you will not be able to download data without registering for a basic user account. With a basic account, you can download any data that are not under proprietary hold; held data are only available to authorized reviewers, though the metadata (file name, type, etc.) are visible. 2015-02-05 2021-11-16 +r3d100011545 Deutsches BioBanken-Register deu [{"additionalName": "German Biobank Registry", "additionalNameLanguage": "eng"}] http://www.biobanken.de/en-gb/home.aspx ["RRID:SCR_004991", "RRID:nlx_143997"] ["http://www.biobanken.de/home/impressum.aspx", "info@biobanken.de"] Biobanks are a key prerequisite for modern medical research. By linking samples and clinical data they make it possible to clarify the causes and the course of diseases. The German Biobank Registry pools the medically relevant biobanks in Germany. The German Biobank Registry provides an overview of the medical biobanks in Germany; increases the international visibility of German biobanks; facilitates the networking of biobanks; promotes an exchange of information and samples between research teams; supports the use of existing resources; provides information for investments in biobanks and promotes transparency and trust in research where human samples are used. Searching for samples in all biobanks is possible at the project portal (P2B2) https://p2b2.fraunhofer.de/ after registration. eng ["disciplinary"] {"size": "130 biobanks", "updatedp": "2019-12-18"} 2012 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.biobanken.de/en-gb/aboutus.aspx [{"name": "Databases", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "biotechnology", "clinical research", "diagnostics", "diseases", "health", "human samples with associated data"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fraunhofer-Institut f\u00fcr Biomedizinische Technik", "institutionAdditionalName": ["Fraunhofer IBMT"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ibmt.fraunhofer.de/", "institutionIdentifier": ["ROR:05tpsgh61", "RRID:SCR_011236", "RRID:nlx_158601"], "responsibilityStartDate": "", "responsibilityEndDate": "2014", "institutionContact": []}, {"institutionName": "Fraunhofer-Institut f\u00fcr Zelltherapie und Immunologie", "institutionAdditionalName": ["Fraunhofer IZI", "Fraunhofer Institute for Cell Therapy and Immunology"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.izi.fraunhofer.de/", "institutionIdentifier": ["ROR:04x45f476"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["p2b2@izi-bb.fraunhofer.de"]}, {"institutionName": "TMF \u2013 Technologie- und Methodenplattform f\u00fcr die vernetzte medizinische Forschung e.V.", "institutionAdditionalName": ["TMF", "Technology, Methods, and Infrastructure for Networked Medical Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tmf-ev.de/EnglishSite/Home.aspx", "institutionIdentifier": ["RRID:SCR_004993", "RRID:nlx_143998"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tmf-ev.de/EnglishSite/AboutUs/Contact.aspx"]}] [{"policyName": "Datenschutz", "policyURL": "http://www.biobanken.de/home/datenschutz.aspx"}, {"policyName": "Rechtliche Grundlagen einer EU-weiten Biomaterialbank-Kooperation", "policyURL": "http://up.biobanken.de/Portals/0/Dokumentation/BMB-EUCoop%20-%20%20Mustertexte%20v1.0_Auszug_S23_bis_33.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://up.biobanken.de/Portals/0/Dokumentation/BMB-EUCoop%20-%20%20Mustertexte%20v1.0_Auszug_S23_bis_33.pdf"}] restricted [] ["unknown"] {} ["none"] [] no yes [] [] {} see also: https://www.tmf-ev.de/BiobankenRegister_Alt/Register.aspx 2015-01-29 2019-12-18 +r3d100011547 DFG Senatskommission für Ozeanographie - METEOR- und MARIA S. MERIAN-Berichte deu [] http://dfg-ozean.de1.cc/berichte/berichte.php [] [] The repository is no longer available <<>>!!!>>> eng ["institutional"] {"size": "", "updatedp": ""} 2017 ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["earth science", "geology"] [{"institutionName": "DFG Senatskommission f\u00fcr Ozeanographie", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dfg-ozean.de1.cc/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Sekom.Ozean@marum.de"]}, {"institutionName": "MARUM Zentrum f\u00fcr Marine Umweltwissenschaften", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.marum.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@marum.de"]}] [{"policyName": "Leitfaden zur organisatorisch-technischen Vorbereitung, Durchf\u00fchrung und Nachbereitung", "policyURL": "http://www.dfg-ozean.de/fileadmin/DFG/Berichte_METEOR/LDF_Leitfaden_METEOR_MERIAN_14_10_16.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://dfg-ozean.de1.cc/info/impressum.php"}] closed [] ["unknown"] no {} ["DOI"] ["none"] no unknown [] [] {} Description: METEOR and Maria S. Merian reports appear in irregular intervals. They serve as working documents for the concerned circle of the expedition group and as reports for funding agencies. 2015-02-03 2019-12-18 +r3d100011548 Halocarbons in the Ocean and Atmosphere database project eng [{"additionalName": "HalOcAt", "additionalNameLanguage": "eng"}] https://halocat.geomar.de/home [] ["halocat@geomar.de"] HalOcAt brings together global oceanic and atmospheric data of mainly short-lived brominated and iodinated trace gases. eng ["disciplinary"] {"size": "9.526 ocean data; 137.682 atmospheric data", "updatedp": "2015-02-04"} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological oceanography", "chemical oceanography", "dynamics of the ocean floor", "meteorology", "ocean circulation and climate dynamics", "palaeo-oceanography", "physical oceanography"] [{"institutionName": "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel", "institutionAdditionalName": ["GEOMAR", "GEOMAR Helmholtz Centre for Ocean Research Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@geomar.de"]}] [{"policyName": "Legal Disclaimer", "policyURL": "https://www.geomar.de/en/impressum"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.geomar.de/en/impressum"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2015-02-04 2020-08-26 +r3d100011549 MEMENTO eng [{"additionalName": "MarinE MethanE and NiTrous Oxide", "additionalNameLanguage": "eng"}, {"additionalName": "Marine CH\u2084 - N\u2082O database", "additionalNameLanguage": "eng"}] https://memento.geomar.de/ [] ["https://memento.geomar.de/contact"] MEMENTO aims to become a valuable tool for identifying regions of the world ocean that should be targeted in future work to improve the quality of air-sea flux estimates. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://memento.geomar.de/memento-s-future [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological oceanography", "chemical oceanography", "dynamics of the ocean floor", "meteorology", "ocean circulation and climate dynamics", "palaeo-oceanography", "physical oceanography"] [{"institutionName": "COST Action 735", "institutionAdditionalName": ["European CoOperation in the Field of Scientific and Technical Research"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cost.eu/actions/735/#tabs|Name:overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cost.eu/contact-us/"]}, {"institutionName": "GEOMAR Helmholtz-Zentrum f\u00fcr Ozeanforschung Kiel", "institutionAdditionalName": ["GEOMAR", "GEOMAR Helmholtz Centre for Ocean Research Kiel"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/", "institutionIdentifier": ["ROR:02h2x0161"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@geomar.de"]}, {"institutionName": "Kieler Datenmanagement-Team", "institutionAdditionalName": ["KDMT", "Kiel Datamanagement Team"], "institutionCountry": "DEU", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geomar.de/en/centre/central-facilities/rz/daten/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datenmanagement@geomar.de"]}, {"institutionName": "SOLAS", "institutionAdditionalName": ["Surface Ocean Lower Atmosphere Study"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.solas-int.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SOPRAN", "institutionAdditionalName": ["Surface Ocean Processes in the Anthropocene"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://sopran.pangaea.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sopran.pangaea.de/further-info/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://memento.geomar.de/terms-of-use"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.geomar.de/en/service/impressum/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://memento.geomar.de/memento-s-future"}] restricted [] ["unknown"] {} ["none"] https://memento.geomar.de/terms-of-use [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2015-02-04 2019-12-18 +r3d100011550 Open PHACTS eng [{"additionalName": "OPS", "additionalNameLanguage": "eng"}, {"additionalName": "Open Pharmacological Space", "additionalNameLanguage": "eng"}] http://www.openphacts.org/index.php ["RRID:SCR_005050", "RRID:nlx_144033"] ["info@openphactsfoundation.org"] The Open PHACTS project will develop an open source, open standards and open access innovation platform, Open Pharmacological Space (OPS), via a semantic web approach. OPS will comprise data, vocabularies and infrastructure needed to accelerate drugoriented research. This semantic integration hub will address key bottlenecks in small molecule drug discovery: disparate information sources, lack of standards and shared concept identifiers, guided by well defined research questions assembled from participating drug discovery teams. Open PHACTS draws together multiple sources of publicly-available pharmacological and physicochemical data, accessible via the Open PHACTS Explorer, an intuitive interface, and the powerful Open PHACTS API. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.openphactsfoundation.org/platform/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biology", "chemistry", "drug discovery", "pharmacology", "pharmacy"] [{"institutionName": "European Commission, Research and Innovation, FP7, Infrastructures", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Innovative Medicines Initiative", "institutionAdditionalName": ["IMI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imi.europa.eu/", "institutionIdentifier": ["ROR:019af4n30"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.imi.europa.eu/contact"]}, {"institutionName": "Open Phacts Consortium", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.openphactsfoundation.org/people/the-open-phacts-consortium/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://www.openphactsfoundation.org/contact/"]}, {"institutionName": "Open Phacts Foundation", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.openphactsfoundation.org/", "institutionIdentifier": ["RRID:SCR_000495", "RRID:nlx_158351"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["http://www.openphactsfoundation.org/contact/"]}, {"institutionName": "efpia", "institutionAdditionalName": ["European Federation of Pharmaceutical Industries and Associations"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.efpia.eu/", "institutionIdentifier": ["ROR:00g1x4v36", "RRID:SCR_003820", "RRID:nlx_158124"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.efpia.eu/contact-us/"]}] [{"policyName": "Open PHACTS data guidelines", "policyURL": "http://www.openphactsfoundation.org/openphacts/documentation/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.openphactsfoundation.org/openphacts/documentation/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.openphactsfoundation.org/openphacts/documentation/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.openphactsfoundation.org/platform/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "http://www.openphactsfoundation.org/platform/"}, {"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "http://www.openphactsfoundation.org/openphacts/documentation/"}] ["unknown"] {} ["none"] http://www.openphactsfoundation.org/openphacts/documentation/ [] unknown yes [] [] {} 2015-02-03 2019-12-20 +r3d100011551 e-Atlas eng [{"additionalName": "Australia's Tropical Land and Seas", "additionalNameLanguage": "eng"}] http://eatlas.org.au/home [] ["http://eatlas.org.au/contact"] The eAtlas is a website, mapping system and set of data visualisation tools for presenting research data in an accessible form that promotes greater use of this information. The eAtlas will serve as the primary data and knowledge repository for all NERP Tropical Ecosystems Hub projects, which focus on the on the Great Barrier Reef, Wet Tropics rainforest and Torres Strait. The eAtlas will capture and record research outcomes and make them available to research-users in a timely, readily accessible manner. It will host meta-data records and provide an enduring repository for raw data. It will also develop and host web visualisations to view information using a simple and intuitive interface. This will assist scientists with data discovery and allow environmental managers to access and investigate research data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://eatlas.org.au/content/about-e-atlas [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Australia", "Greet Barrier Reef", "SELTMP", "Torres Strait", "bathymetry", "climate change", "coral reefs", "dugongs", "fish abundance", "health", "rainforest revegetation", "seabirds", "seagrass", "tropical ecosystems", "turtles", "wet tropics"] [{"institutionName": "Australian Government, Australian Institute of Marine Science", "institutionAdditionalName": ["AIMS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aims.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aims.gov.au/docs/about/contacts.html"]}, {"institutionName": "National Environmental Research Program Tropical Ecosystems Hub", "institutionAdditionalName": ["NERP Tropical Ecosystems Hub"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://nerptropical.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiries@rrrc.org.au"]}] [{"policyName": "Dataset reporting", "policyURL": "http://eatlas.org.au/sites/default/files/eatlas/articles/forms/e-Atlas-dataset-report-form_v1.3.2.docx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/deed.en"}] restricted [] ["other"] {"api": "http://eatlas.org.au/resources/data-submission-form", "apiType": "NetCDF"} [] http://eatlas.org.au/resources/data-submission-form [] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://eatlas.org.au/rss.xml/73", "syndicationType": "RSS"} Partners: http://eatlas.org.au/content/about-e-atlas 2015-02-04 2018-04-18 +r3d100011552 Ningaloo Atlas eng [] http://ningaloo-atlas.org.au/welcome ["biodbcore-001507"] ["ningaloo@aims.gov.au"] The Ningaloo Atlas was created in response to the need for more comprehensive and accessible information on environmental and socio-economic data on the greater Ningaloo region. As such, the Ningaloo Atlas is a web portal to not only access and share information, but to celebrate and promote the biodiversity, heritage, value, and way of life of the greater Ningaloo region. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ningaloo-atlas.org.au/content/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Australia", "Ningaloo reef", "World Heritage", "biodiversity", "biology", "conservation", "coral reef", "ecology", "ecosystems", "marine environments", "oceanography", "socio-economy", "terrestrial environments", "whale sharks"] [{"institutionName": "Australian Government, Australian Institute of Marine Science", "institutionAdditionalName": ["AIMS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aims.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aims.gov.au/docs/about/contacts.html"]}, {"institutionName": "BHP Billiton Petroleum", "institutionAdditionalName": ["BHPB"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.bhp.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bhp.com/contact-us"]}, {"institutionName": "Ningaloo Atlas partners", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ningaloo-atlas.org.au/node/213", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://ningaloo-atlas.org.au/content/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org.au/learn/licences/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ningaloo-atlas.org.au/content/terms-use"}] restricted [{"dataUploadLicenseName": "Creative Commons licenses", "dataUploadLicenseURL": "https://creativecommons.org.au/learn/licences/"}] ["other"] yes {} ["none"] https://www.aims.gov.au/docs/cc-citation.html [] yes yes [] [] {"syndication": "http://ningaloo-atlas.org.au/rss.xml", "syndicationType": "RSS"} Partners: http://ningaloo-atlas.org.au/node/213 2015-02-06 2021-11-17 +r3d100011553 European Variation Archive eng [{"additionalName": "EVA", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/eva/?Home ["FAIRsharing_doi:10.25504/FAIRsharing.6824pv", "OMICS_19707"] ["eva-helpdesk@ebi.ac.uk", "https://www.ebi.ac.uk/eva/?Feedback"] The European Variation Archive is an open-access database of all types of genetic variation data from all species. The EVA provides access to highly detailed, granular, raw variant data from human, with other species to follow. As of September 2017, EMBL-EBI will maintain reliable accessions for non-human genetic variation data through the European Variation Archive (EVA). NCBI's dbSNP database will continue to maintain stable identifiers for human genetic variation data only. This change will enable a more rapid turnaround for data sharing in this burgeoning field. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebi.ac.uk/eva/?About [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA sequences", "GA4GH", "Global Alliance for Genomic and Health", "genomics"] [{"institutionName": "Database of Genomic Variants archive", "institutionAdditionalName": ["DGVa"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/dgva", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/dgva/contact-us"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}] [{"policyName": "EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/eva/?About"}] restricted [{"dataUploadLicenseName": "Submit", "dataUploadLicenseURL": "https://www.ebi.ac.uk/eva/?Submit-Data"}] ["unknown"] {"api": "https://www.ebi.ac.uk/eva/?API#", "apiType": "REST"} ["none"] [] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2015-02-17 2021-09-08 +r3d100011554 Coherent X-ray Imaging Data Bank eng [{"additionalName": "CXIDB", "additionalNameLanguage": "eng"}] https://cxidb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.y6w78m", "RRID:SCR_014722"] ["cxidb@cxidb.org", "https://cxidb.org/contact.html"] Welcome to the Coherent X-ray Imaging Data Bank (CXIDB), a new database which offers scientists from all over the world a unique opportunity to access data from Coherent X-ray Imaging (CXI) experiments. CXIDB is dedicated to further the goal of making data from Coherent X-ray Imaging (CXI) experiments available to all, as well as archiving it. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://cxidb.org/mission.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CXI file format", "x-ray imaging"] [{"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lbl.gov/visit/"]}, {"institutionName": "National Energy Research Scientific Computing Center", "institutionAdditionalName": ["NERSC"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nersc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nersc.gov/about/contact-us/"]}, {"institutionName": "U.S. Department of Energy Office of Science", "institutionAdditionalName": ["U.S. DOE Office of Science"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/"]}, {"institutionName": "U.S. Department of Energy's Scientific Discovery through Advanced Computing program", "institutionAdditionalName": ["SciDAC"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scidac.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scidac.gov/contactSD.html"]}] [{"policyName": "CXI File Format", "policyURL": "https://github.com/FilipeMaia/CXI/raw/master/cxi_file_format.pdf"}, {"policyName": "Copyrights", "policyURL": "http://cxidb.org/browse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cxidb.org/browse.html"}] restricted [] ["unknown"] yes {} ["DOI"] http://cxidb.org/index.html ["none"] yes unknown [] [] {} CXIDB is covered by Thomson Reuters Data Citation Index. 2015-02-18 2021-09-08 +r3d100011555 International Neuroimaging Data-sharing Initiative eng [{"additionalName": "INDI", "additionalNameLanguage": "eng"}] http://fcon_1000.projects.nitrc.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.ajpk6x", "RRID:SCR_005361", "RRID:SCR_015771", "RRID:nlx_144428"] ["INDI_SummerOfSharing@childmind.org"] INDI was formed as a next generation FCP effort. INDI aims to provide a model for the broader imaging community while simultaneously creating a public dataset capable of dwarfing those that most groups could obtain individually. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://fcon_1000.projects.nitrc.org/indi/docs/INDI_MISSION_STATEMENT.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "mental health", "neuroimaging"] [{"institutionName": "Child Mind Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://childmind.org/", "institutionIdentifier": ["ROR:01bfgxw09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://childmind.org/about-us/contact-us/"]}, {"institutionName": "Neuroimaging Informatics Tools and Resources Clearinghouse", "institutionAdditionalName": ["NITRC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.nitrc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["moderator@nitrc.org"]}] [{"policyName": "INDI policies", "policyURL": "https://www.nitrc.org/plugins/mwiki/index.php/fcon_1000:MainPage"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.nitrc.org/include/glossary.php#546"}] restricted [{"dataUploadLicenseName": "INDI Data contribution guide", "dataUploadLicenseURL": "https://www.nitrc.org/plugins/mwiki/index.php/fcon_1000:MainPage"}] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} Request Access & More Information: http://fcon_1000.projects.nitrc.org/indi/req_access.html 2015-02-19 2021-09-02 +r3d100011556 MetaboLights eng [] https://www.ebi.ac.uk/metabolights/ ["FAIRsharing_doi:10.25504/FAIRsharing.kkdpxe", "MIR:00000380", "OMICS_02535", "RRID:SCR_014663"] ["https://www.ebi.ac.uk/metabolights/contact"] MetaboLights is a database for Metabolomics experiments and derived information. The database is cross-species, cross-technique and covers metabolite structures and their reference spectra as well as their biological roles, locations and concentrations, and experimental data from metabolic experiments. eng ["disciplinary"] {"size": "598 studies; 3.032 different organisms; 25.859 feference compounds;", "updatedp": "2018-04-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/metabolights/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["cosmos", "metabolic", "metabolic pathway", "metabolism", "metabolite", "metabolite database", "metabolites", "metabolomics", "metabolomics experiment", "metabolomics study", "metabonomics"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute, Steinbeck group", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/research/steinbeck", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/people/christoph-steinbeck"]}, {"institutionName": "University of Cambridge, Griffin Group", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.metabolomics.bioc.cam.ac.uk/welcome", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jlg40@cam.ac.uk"]}] [{"policyName": "EMBL-EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "MetaboLights Submission Guide", "policyURL": "https://docs.google.com/document/d/1kvBdnleInVr1UMyV-sm91w2uK_IfkU11Rx-uxvILOFU/view?pli=1#heading=h.30j0zll"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "EBI Terms of Use", "dataUploadLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] ["unknown"] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/metabolights/studies/public/", "apiType": "FTP"} ["none"] https://www.ebi.ac.uk/metabolights/about ["none"] yes yes [] [] {} MetaboLights is covered by Thomson Reuters Data Citation Index. 2015-02-18 2020-01-29 +r3d100011557 EuPathDB eng [{"additionalName": "Eukaryotic Pathogen Database Resources", "additionalNameLanguage": "eng"}] https://eupathdb.org/eupathdb/ ["FAIRsharing_doi:10.25504/FAIRsharing.f94905", "OMICS_03154", "RRID:SCR_004512", "RRID:nlx_49652"] ["help@EuPathDB.org", "https://eupathdb.org/eupathdb/contact.do"] EuPathDB (formerly ApiDB) is an integrated database covering the eukaryotic pathogens in the genera Acanthamoeba, Annacaliia, Babesia, Crithidia, Cryptosporidium, Edhazardia, Eimeria, Encephalitozoon, Endotrypanum, Entamoeba, Enterocytozoon, Giardia, Gregarina, Hamiltosporidium, Leishmania, Nematocida, Neospora, Nosema, Plasmodium, Theileria, Toxoplasma, Trichomonas, Trypanosoma and Vavraia, Vittaforma). While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all of these resources, and the opportunity to leverage orthology for searches across genera. eng ["disciplinary"] {"size": "844 datasets", "updatedp": "2018-04-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "genomics", "infectious disease", "parasitology", "phylogenetics", "population biology", "proteomics", "spectrometry"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["NIAID, BRC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ned.nih.gov/search/ViewDetails.aspx?NIHID=0011254525"]}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["droos@sas.upenn.edu"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "Data Access Policy", "policyURL": "https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#use"}, {"policyName": "Data Submission Policy", "policyURL": "https://eupathdb.org/EuPathDB_datasubm_SOP.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] restricted [{"dataUploadLicenseName": "Data Submission Policy", "dataUploadLicenseURL": "https://eupathdb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "https://eupathdb.org/eupathdb/serviceList.jsp", "apiType": "REST"} ["none"] https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#citing ["none"] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} University of Pennsylvania is one of four Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. EupathDB project includes: AmoebaDB, CryptoDB, FungiDB, GiardiaDB, MicrosporidiaDB, PiroplasmaDB, PlasmoDB, ToxoDB , TrichDB, TriTrypDB andOrthoMCL. 2015-03-03 2018-12-17 +r3d100011558 Influenza Research Database eng [{"additionalName": "IRD", "additionalNameLanguage": "eng"}] https://www.fludb.org/brc/home.spg?decorator=influenza ["FAIRsharing_doi:10.25504/FAIRsharing.ws7cgw", "MIR:00000172", "OMICS_04512", "RRID:SCR_006641", "RRID:nif-0000-21222"] ["https://www.fludb.org/brc/problemReport.spg?decorator=influenza"] The mission of the Influenza Research Database (IRD) is to provide a resource for the influenza virus research community that will facilitate an understanding of the influenza virus and how it interacts with the host organism, leading to new treatments and preventive actions. This resource will contain avian and non-human mammalian influenza surveillance data, human clinical data associated with virus extracts, phenotypic characteristics of viruses isolated from extracts, and all genomic and proteomic data available in public repositories for influenza viruses. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.fludb.org/brc/staticContent.spg?decorator=influenza&type=FluInfo&subtype=Mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "allergy", "genomics", "phylogenetics", "protein structure", "proteomics", "systems biology"] [{"institutionName": "Bioinformatics Resource Centers", "institutionAdditionalName": ["BRCs"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "Northrop Grumman", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "http://www.northropgrumman.com/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.northropgrumman.com/ContactUs/Pages/default.aspx"]}, {"institutionName": "The J. Craig Venter Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jcvi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jcvi.org/contact"]}, {"institutionName": "Vecna Technologies, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.vecna.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@vecna.com"]}] [{"policyName": "NIAID/Division of Microbiology and Infectious Diseases (DMID) Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] open [] ["unknown"] yes {} ["none"] https://www.fludb.org/brc/staticContent.spg?decorator=influenza&type=FluInfo&subtype=Cite ["none"] yes yes [] [] {} Northrop Grumman is one of the Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. Terms & Conditions: While this resource is freely available to researchers neither we as data providers nor our funding agencies are responsible for incorrect data or for incorrect interpretations of any results. Accuracy cannot be guaranteed for data that is predicted using computational tools and sequence similarity methods as they may not be experimentally validated. In some cases data can be incomplete as it may be part of an ongoing research project. To minimize errors, we strongly encourage users to contact the primary data provider(s) to ensure that any anomalies present in the primary data are adequately considered. 2015-03-09 2020-04-24 +r3d100011559 The Cancer Imaging Archive eng [{"additionalName": "TCIA", "additionalNameLanguage": "eng"}] https://www.cancerimagingarchive.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.jrfd8y", "OMICS_10659", "RRID:SCR_008927", "RRID:nlx_151749"] ["feedback@cancerimagingarchive.net", "help@cancerimagingarchive.net"] TCIA is a service which de-identifies and hosts a large archive of medical images of cancer accessible for public download. The data are organized as “collections”; typically patients’ imaging related by a common disease (e.g. lung cancer), image modality or type (MRI, CT, digital histopathology, etc) or research focus. Supporting data related to the images such as patient outcomes, treatment details, genomics and expert analyses are also provided when available. eng ["disciplinary"] {"size": "113 datasets", "updatedp": "2020-02-18"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cancerimagingarchive.net/about-the-cancer-imaging-archive-tcia/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CIP", "Cancer Imaging Program", "DICOM", "Pathology", "Radiology", "biomarker", "biomedical engineering", "breast cancer", "cancer", "diagnosis", "health informatics", "medical imaging", "medical research"] [{"institutionName": "Frederick National Laboratory for Cancer Research", "institutionAdditionalName": ["FNLCR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://frederick.cancer.gov/", "institutionIdentifier": ["ROR:03v6m3209"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://frederick.cancer.gov/about/contact"]}, {"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI", "NIH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}, {"institutionName": "University of Arkansas for Medical Sciences", "institutionAdditionalName": ["UAMS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://uams.edu/", "institutionIdentifier": ["ROR:00xcryt71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@cancerimagingarchive.net"]}] [{"policyName": "Data Usage Policies and Restrictions", "policyURL": "https://wiki.cancerimagingarchive.net/display/Public/Data+Usage+Policies+and+Restrictions"}, {"policyName": "Disclaimer", "policyURL": "https://www.cancerimagingarchive.net/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.cancerimagingarchive.net/display/Public/Data+Usage+Policies+and+Restrictions"}] restricted [] ["unknown"] yes {"api": "https://wiki.cancerimagingarchive.net/x/NIIiAQ", "apiType": "REST"} ["DOI"] https://wiki.cancerimagingarchive.net/x/c4hF ["none"] yes yes [] [] {} TCIA is covered by Clarivate Data Citation Index. is covered by Elsevier. 2015-02-23 2021-09-03 +r3d100011560 Sicas Medical Image Repository eng [{"additionalName": "SMIR", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Virtual Skeleton Database", "additionalNameLanguage": "eng"}] https://www.smir.ch ["FAIRsharing_doi:10.25504/FAIRsharing.vcmz9h"] ["contact@si-cas.com"] The SICAS Medical Image Repository is a freely accessible repository containing medical research data including medical images, surface models, clinical data, genomics data and statistical shape models. The data can freely be organized and shared on SMIR and made publicly accessible with a DOI. Dedicated data sets are organized as collections of anatomical regions (e.g Cochlea). The data can be filtered using a modular search and accessed on the web or through the SMIR API. eng ["disciplinary"] {"size": "community uploads and more than 100 high quality full-body CT-scans are available", "updatedp": "2015-03-19"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://si-cas.com/ncssm/about.htm [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["VSD", "biomechanics", "biomedical research", "brain tumor image", "computer tomography", "demographic analysis", "image processing", "medical informatics", "statistical models"] [{"institutionName": "National Center Of Competence in Statistical Shape Modeling", "institutionAdditionalName": ["NCSSM"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://si-cas.com/ncssm/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://si-cas.com/ncssm/contact.htm"]}, {"institutionName": "SICAS", "institutionAdditionalName": ["Swiss Institute for Computer Assisted Surgery"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://si-cas.com/", "institutionIdentifier": [], "responsibilityStartDate": "2013-01-01", "responsibilityEndDate": "", "institutionContact": ["http://www.si-cas.com/index.php/contact", "michael.kistler@si-cas.com"]}, {"institutionName": "University of Bern, Institute for Surgical Technology and Biomechanics", "institutionAdditionalName": ["ISTB", "Institute for Surgical Technology and Biomechanics", "Universit\u00e4t Bern, Institut f\u00fcr chirurgische Technologien und Biomechanik"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.istb.unibe.ch/content/index_eng.html", "institutionIdentifier": [], "responsibilityStartDate": "2008-12-01", "responsibilityEndDate": "2012-12-31", "institutionContact": ["michael.kistler@istb.unibe.ch"]}] [{"policyName": "Terms and Conditons", "policyURL": "https://www.smir.ch/Home/TermsAndConditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.smir.ch/Home/TermsAndConditions"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}, {"dataUploadLicenseName": "Open Data Commons", "dataUploadLicenseURL": "https://opendatacommons.org/licenses/"}] ["other"] yes {"api": "https://www.smir.ch/api/help", "apiType": "REST"} ["DOI"] https://www.smir.ch/Home/TermsAndConditions ["none"] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://blog.smir.ch/?feed=comments-rss2", "syndicationType": "RSS"} SMIR contains BRATS (Brain Tumor Segmentation)2012 ff, ISLES (Ischemic Ischemic Stroke Lesion Segmentation) 2015 ff and Shape (Statistical Shape Model Challenge) 2014. 2015-03-19 2018-09-18 +r3d100011561 PhysioNet eng [] http://physionet.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.bemzxg", "OMICS_25293", "RRID:SCR_007345", "RRID:nif-0000-00250"] ["contact@physionet.org"] Modern signal processing and machine learning methods have exciting potential to generate new knowledge that will impact both physiological understanding and clinical care. Access to data - particularly detailed clinical data - is often a bottleneck to progress. The overarching goal of PhysioNet is to accelerate research progress by freely providing rich archives of clinical and physiological data for analysis. eng ["disciplinary"] {"size": "The main PhysioNet server at MIT supplies about 4 terabytes of data (about 8 million hits) each month", "updatedp": "2015-03-20"} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://physionet.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["MIMIC-III", "National Sleep Research Resource", "PWAVE", "aging", "biomedical signals", "cardiology", "eICU", "electrophysiology", "heart", "nervous system", "nonlinear dynamics", "physiological signals", "physiology", "sudden death"] [{"institutionName": "Beth Israel Deaconess Medical Center", "institutionAdditionalName": ["BIDMC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bidmc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bidmc.org/contact-us"]}, {"institutionName": "Boston University", "institutionAdditionalName": ["BU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bu.edu/info/about/contact-us/"]}, {"institutionName": "Harvard Medical School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hms.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hms.harvard.edu/contact-us"]}, {"institutionName": "MIT Laboratory for Computational Physiology", "institutionAdditionalName": ["MIT LCP"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://lcp.mit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "McGill University, Centre for Applied Mathematics in Bioscience and Medicine", "institutionAdditionalName": ["CAMBAM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mcgill.ca/cambam/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["infocambam.med@mcgill.ca"]}, {"institutionName": "National Institutes of Health, National Institute of Biomedical Imaging and Bioengineering", "institutionAdditionalName": ["NIBIB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nibib.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://www.nibib.nih.gov/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}] [{"policyName": "PhysioNet Guidelines", "policyURL": "https://www.physionet.org/guidelines.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://physionet.org/about/licenses/physionet-restricted-health-data-license-150/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://physionet.org/content/eicu-crd/view-license/2.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl.html"}] restricted [{"dataUploadLicenseName": "NIH Data Sharing Policy", "dataUploadLicenseURL": "https://grants.nih.gov/grants/policy/data_sharing/"}] ["other"] yes {"api": "https://physionet.org/physiotools/matlab/wfdb-app-matlab/", "apiType": "FTP"} ["DOI"] https://physionet.org/about/#citation [] yes yes [] [] {"syndication": "http://physionet.org/feed.xml", "syndicationType": "RSS"} PhysioNet is covered by Thomson Reuters Data Citation Index. see also in re3data.org: PhysioBank. PhysioBank is the web-accessible public data archive and component of PhysioNet. 2015-03-20 2019-09-19 +r3d100011562 Kinetic models of biological systems eng [{"additionalName": "KiMoSys", "additionalNameLanguage": "eng"}] https://kimosys.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.6erywc", "OMICS_11484"] ["https://www.kimosys.org/documentation/contact#"] KiMoSys, a web application for quantitative KInetic MOdels of biological SYStems. Kinetic models, with the aim to understand and subsequently design the metabolism of organism of interest are constructed iteratively and require accurate experimental data for both the generation and verification of hypotheses. Therefore, there is a growing requirement for exchanging experimental data and models between the systems biology community, and to automate as much as possible the kinetic model building, editing, simulation and analysis steps. eng ["disciplinary"] {"size": "42 entries", "updatedp": "2018-04-25"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.kimosys.org/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["accessible dynamic data", "biotechnology", "dynamic modeling", "enzyme measurements", "flux data", "kinetic models", "metabolite concentrations", "metabolomics", "reaction data", "systems biology"] [{"institutionName": "European Commission, BacHBERRY Seventh Framework Programme - FP7", "institutionAdditionalName": ["BAcHBerry FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/rcn/110644_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cordis.europa.eu/guidance/helpdesk_de.html"]}, {"institutionName": "Funda\u00e7\u00e3o para a Ci\u00eancia e a Tecnologia", "institutionAdditionalName": ["FCT"], "institutionCountry": "PRT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fct.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fct.pt/contactos.phtml"]}, {"institutionName": "Instituto de Engenharia de Sistemas e Computadores, Investiga\u00e7\u00e3o e Desenvolvimento em Lisboa", "institutionAdditionalName": ["INESC-ID"], "institutionCountry": "PRT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.inesc-id.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.inesc-id.pt/contacts/", "kimosys@kdbio.inesc-id.pt"]}] [{"policyName": "Terms and Condition of use", "policyURL": "https://www.kimosys.org/documentation#17"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kimosys.org/documentation#17"}] restricted [] ["MySQL"] yes {} ["none"] https://www.kimosys.org/documentation#cite2 ["ORCID"] yes yes [] [] {} KiMoSys is covered by Thomson Reuters Data Citation Index. 2015-02-23 2018-09-11 +r3d100011563 Panel on household finances eng [{"additionalName": "Haushaltsstudie", "additionalNameLanguage": "deu"}, {"additionalName": "PHF", "additionalNameLanguage": "eng"}, {"additionalName": "Studie zur wirtschaftlichen Lage privater Haushalte", "additionalNameLanguage": "deu"}] https://www.bundesbank.de/en/bundesbank/research/panel-on-household-finances [] [] <<>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2010 2021 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bundesbank.de/Navigation/EN/Bundesbank/Research/RDSC/rdsc.html?https=1 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Germany", "balance sheet", "euro area", "household finance", "income", "pension", "wealth", "work life"] [{"institutionName": "Deutsche Bundesbank, Research Centre", "institutionAdditionalName": ["Deutsche Bundesbank, Forschungszentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bundesbank.de/Navigation/EN/Bundesbank/bundesbank.html?https=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bundesbank.de/Navigation/EN/Service/Contact/contact.html"]}, {"institutionName": "European Central Bank, Household Finance and Consumption Network", "institutionAdditionalName": ["ECB", "HFCN", "HFCS"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ecb.europa.eu/home/html/researcher_hfcn.en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ecb.europa.eu/home/contacts/html/index.en.html"]}, {"institutionName": "infas - Institut f\u00fcr angewandte Sozialwissenschaft GmbH", "institutionAdditionalName": ["infas"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.infas.de/projekte/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.infas.eu/about-infas/contact/#ic1220"]}] [{"policyName": "Erkl\u00e4rung zum Datenschutz und zur absoluten Vertraulichkeit Ihrer Angaben", "policyURL": "https://www.bundesbank.de/Redaktion/DE/Downloads/Bundesbank/Forschungszentrum/infas_datenschutzblatt.pdf?__blob=publicationFile"}, {"policyName": "certification document", "policyURL": "https://www.bundesbank.de/Redaktion/EN/Downloads/Bundesbank/Research_Centre/phf_certification_document.pdf?__blob=publicationFile"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.bundesbank.de/Redaktion/EN/Dossier/Service/terms_of_use.html?notFirst=true&docId=109018"}] closed [] [] {} ["DOI"] [] yes yes [] [] {} Panel on household finances is covered by Thomson Reuters Data Citation Index. Description: The German Panel on Household Finances (PHF) is a panel survey on household finance and wealth in Germany, covering the balance sheet, pension, income, work life and other demographic characteristics. The panel survey is conducted by the research centre of the Deutsche Bundesbank. PHF is part of the Household Finance and Consumption Network of the European Central Bank. 2015-02-06 2021-10-25 +r3d100011564 eagle-i eng [] https://www.eagle-i.net/ ["RRID:SCR_013153", "RRID:nlx_143592"] ["https://www.eagle-i.net/contact/", "info@eagle-i.org"] Groundbreaking biomedical research requires access to cutting edge scientific resources; however such resources are often invisible beyond the laboratories or universities where they were developed. eagle-i is a discovery platform that helps biomedical scientists find previously invisible, but highly valuable, resources. eng ["disciplinary"] {"size": "100.800 biomedical resources", "updatedp": "2018-05-18"} 2011-09-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.eagle-i.net/about/what-is-eagle-i/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biological specimens", "biomedical", "core laboratories", "human studies", "organisms", "software", "viruses"] [{"institutionName": "Harvard Catalyst, Harvard Medical School", "institutionAdditionalName": ["The Harvard Clinical and Translational Science Center"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://catalyst.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["richard@hms.harvard.edu"]}, {"institutionName": "Oregon Health & Science University", "institutionAdditionalName": ["OHSU"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ohsu.edu/xd/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["haendel@ohsu.edu"]}, {"institutionName": "eagle-i Participationg Institutions", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eagle-i.net/about/participating-institutions/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Get the eagle-i data", "policyURL": "https://www.eagle-i.net/get-involved/for-developers/export/"}, {"policyName": "eagle-i Terms of use", "policyURL": "https://www.eagle-i.net/help/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://open.med.harvard.edu/project/eagle-i/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://open.med.harvard.edu/wiki/display/eaglei/Get+Data"}] restricted [] ["other"] yes {"api": "https://www.eagle-i.net/get-involved/for-developers/export/", "apiType": "SPARQL"} [] https://www.eagle-i.net/get-involved/for-researchers/citing-an-eagle-i-resource/ [] yes yes [] [] {"syndication": "https://www.eagle-i.net/feed/", "syndicationType": "RSS"} institutions: Addgene, Clark Atlanta University, Charles R. Drew University, The City College of New York, Dartmouth College, Developmental Studies Hybridoma Bank, Duke University, East Carolina University, Florida Agricultural and Mechanical University, Fred Hutchinson Cancer Research Center, Harvard University, Howard University, Hunter College - CUNY, ITHS Regional Directory, Jackson State University, Meharry Medical College, Michigan State University, Montana State University, Morehouse School of Medicine (MSM), New York Stem Cell Foundation, North Carolina A&T State University, NYU Langone Medical Center, Oregon Health & Science University, Ponce School of Medicine, Texas Southern University, Tuskegee University, The University of Alaska Fairbanks, Universidad Central del Caribe, The University of Hawai’i at Mānoa, University of North Carolina at Chapel Hill, University of North Carolina at Charlotte University of North Carolina at Greensboro, University of Pennsylvania, The University of Puerto Rico Medical Sciences Campus, University of Texas at El Paso, University of Texas at San Antonio, Vanderbilt University, Xavier University of Louisiana, Washington University NIMH Genetics 2015-02-18 2018-05-18 +r3d100011565 1000 Functional Connectomes Project eng [] http://fcon_1000.projects.nitrc.org/fcpClassic/FcpTable.html ["OMICS_13923", "RRID:SCR_005361", "RRID:SCR_015771", "RRID:nlx_144428"] ["moderator@nitrc.org"] The FCP entailed the aggregation and public release (via www.nitrc.org) of over 1200 resting state fMRI (R-fMRI) datasets collected from 33 sites around the world. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://fcon_1000.projects.nitrc.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ABIDE - Autism Brain Imaging Data Exchange", "ADHD-200", "NKI-RS Nathan Kline Institute-Rockland Sample", "mental health"] [{"institutionName": "Child Mind Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://childmind.org/", "institutionIdentifier": ["ROR:01bfgxw09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://childmind.org/about-us/contact-us/"]}, {"institutionName": "Neuroimaging Informatics Tools and Resources Clearinghouse", "institutionAdditionalName": ["NITRC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.nitrc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["moderator@nitrc.org"]}] [{"policyName": "Disclaimer", "policyURL": "http://fcon1000.projects.nitrc.org/fcpClassic/FcpTable.html"}, {"policyName": "How to", "policyURL": "https://www.nitrc.org/plugins/mwiki/index.php/fcon_1000:MainPage"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/Artistic-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://www.nitrc.org/include/glossary.php#546"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/#sthash.SJBlh7SV.dpuf"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] restricted [] ["other"] yes {} ["none"] ["none"] yes no [] [] {"syndication": "https://www.nitrc.org/export/rss20_newreleases.php?group_id=296", "syndicationType": "RSS"} Disclaimer: http://fcon_1000.projects.nitrc.org/ 2015-02-19 2021-09-02 +r3d100011566 WASCAL Data Discovery Portal eng [{"additionalName": "WADI - Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "WASCAL SDI", "additionalNameLanguage": "eng"}, {"additionalName": "WASCAL spatial data infrastructure", "additionalNameLanguage": "eng"}, {"additionalName": "West African Science Service Center on Climate Change and Adapted Land Use Data Discovery Portal", "additionalNameLanguage": "eng"}] https://wascal-dataportal.org/wascal_searchportal2/ [] ["j.sorg@fz-juelich.de", "r.kunkel@fz-juelich.de"] Within WASCAL a large number of heterogeneous data are collected. These data are mainly coming from different initiated research activities within WASCAL (Core Research Program, Graduate School Program) from the hydrological-meteorological, remote sensing, biodiversity and socio economic observation networks within WASCAL, and from the activities of the WASCAL Competence Center in Ouagadougou, Burkina-Faso. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wascal-dataportal.org/wascal_searchportal2/info.jsp [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate", "farming", "hydrology", "land use", "remote sensing", "socio-economy", "soil", "topography", "vegetation"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "WASCAL Partners", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wascal.org/about-wascal/partners/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "West African Science Service Center on Climate Change and Adapted Land Use", "institutionAdditionalName": ["WASCAL"], "institutionCountry": "GHA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wascal.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wascal.org/special-pages/contact/", "info(at)wascal.org"]}] [{"policyName": "Legal constraints for data sharing: Data Policy", "policyURL": "https://wascal-dataportal.org/wascal_searchportal2/downloads/WADI-Portal_Handbook_2nd.pdf"}, {"policyName": "WASCAL Cooperation Agreement", "policyURL": "http://www.wascal.org/fileadmin/user_upload/Documents/WASCAL_Cooperation_Agreement.pdf"}, {"policyName": "WASCAL Data Management Plan", "policyURL": "https://wascal-dataportal.org/wascal_searchportal2/downloads/WASCAL-DMP.pdf"}, {"policyName": "WASCAL constitution", "policyURL": "http://www.wascal.org/fileadmin/user_upload/Documents/WASCAL_Constitution.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wascal-dataportal.org/wascal_searchportal2/downloads/WASCAL-DMP.pdf"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wascal-dataportal.org/wascal_searchportal2/downloads/WASCAL-DMP.pdf"}] restricted [] ["other"] yes {} ["none"] https://wascal-dataportal.org/wascal_searchportal2/downloads/WASCAL-DMP.pdf [] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} WASCAL is governed by a Governing Board that includes one member of each of the ten WASCAL partner countries and Germany. WASCAL partner countries: Bénin, Burkina Faso, Côte d'Ivoire, Gambia, Ghana, Mali, Niger, Nigeria, Sénégal, Togo 2015-04-09 2018-05-18 +r3d100011567 BIGG Database eng [{"additionalName": "Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions", "additionalNameLanguage": "eng"}] http://bigg.ucsd.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.va62ke", "OMICS_02533", "RRID:SCR_005809", "RRID:nlx_149299"] ["invent@ucsd.edu"] BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. BiGG integrates several published genome-scale metabolic networks into one resource with standard nomenclature which allows components to be compared across different organisms. BiGG can be used to browse model content, visualize metabolic pathway maps, and export SBML files of the models for further analysis by external software packages. Users may follow links from BiGG to several external databases to obtain additional information on genes, proteins, reactions, metabolites and citations of interest. eng ["disciplinary"] {"size": "over 5.000 metabolites: 10.000 reactions; 2.000 human genes", "updatedp": "2018-12-14"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "bioinformatics", "genetics", "genomics", "metabolic network", "metabolic pathway", "metabolism"] [{"institutionName": "University of California", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.universityofcalifornia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.universityofcalifornia.edu/uc-system/contact-us"]}, {"institutionName": "University of California, Systems Biology Research Group", "institutionAdditionalName": ["Systems Biology Research Group"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://systemsbiology.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://systemsbiology.ucsd.edu/"]}] [{"policyName": "About BiGG Models", "policyURL": "http://bigg.ucsd.edu/#"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://bigg.ucsd.edu/#"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://bigg.ucsd.edu/license#license"}] closed [] ["other"] yes {"api": "http://bigg.ucsd.edu/data_access", "apiType": "REST"} ["none"] http://bigg.ucsd.edu/bigg/home.pl [] unknown yes [] [] {} 2015-02-24 2018-12-14 +r3d100011568 Genome-Scale Metabolic Network DataBase eng [{"additionalName": "GSMNDB", "additionalNameLanguage": "eng"}] [] ["wanghui2005@tju.edu.cn"] >>>!!!<<< 2019-12-23: the repository is offline >>>!!!<<< Introduction of genome-scale metabolic network: The completion of genome sequencing and subsequent functional annotation for a great number of species enables the reconstruction of genome-scale metabolic networks. These networks, together with in silico network analysis methods such as the constraint based methods (CBM) and graph theory methods, can provide us systems level understanding of cellular metabolism. Further more, they can be applied to many predictions of real biological application such as: gene essentiality analysis, drug target discovery and metabolic engineering eng ["disciplinary"] {"size": "135 high quality metabolic models for 87 organisms", "updatedp": "2015-03-02"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["genetics", "genomics", "metabolic network model", "metabolism", "synthetic biology"] [{"institutionName": "Tianjin University", "institutionAdditionalName": ["TJU"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tju.edu.cn/english/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["xmzhao@tju.edu.cn"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://synbio.tju.edu.cn/GSMNDB/Pages/Models.htm"}] closed [] ["unknown"] yes {} ["none"] [] yes unknown [] [] {} 2015-03-01 2020-02-07 +r3d100011569 PlasmoDB eng [{"additionalName": "Plasmodium Genomics Resource", "additionalNameLanguage": "eng"}] https://plasmodb.org/plasmo/app/ ["FAIRsharing_doi:10.25504/FAIRsharing.g4n8sw", "MIR:00000150", "OMICS_02765", "RRID:SCR_013331", "RRID:nif-0000-03314"] ["https://plasmodb.org/plasmo/app/contact-us"] PlasmoDB is a genome database for the genus Plasmodium, a set of single-celled eukaryotic pathogens that cause human and animal diseases, including malaria. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "antibody", "genomics", "infectious disease", "medical research", "nucleic acid", "parasitology", "phylogenetics", "population biology", "proteomics", "spectrometry"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ned.nih.gov/search/ViewDetails.aspx?NIHID=2001097136"]}] [{"policyName": "Data Access Policy", "policyURL": "http://plasmodb.org/plasmo/showXmlDataContent.do?name=XmlQuestions.About#use"}, {"policyName": "Data Submission Policy", "policyURL": "http://plasmodb.org/EuPathDB_datasubm_SOP.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://plasmodb.org/plasmo/showXmlDataContent.do?name=XmlQuestions.About#use"}] restricted [{"dataUploadLicenseName": "Data Submission Policy", "dataUploadLicenseURL": "http://plasmodb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "http://plasmodb.org/plasmo/serviceList.jsp", "apiType": "REST"} ["none"] http://plasmodb.org/plasmo/showXmlDataContent.do?name=XmlQuestions.About#citing ["none"] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://plasmodb.org/news.rss", "syndicationType": "RSS"} is covered by Elsevier. The relationship between EuPathDB and PlasmoDB is: PlasmoDB is a member of pathogen-databases that are housed under the NIAID-funded EuPathDB Bioinformatics Resource Center (BRC) umbrella. 2015-03-09 2021-09-08 +r3d100011570 Kyoto Encyclopedia of Genes and Genomes eng [{"additionalName": "KEGG", "additionalNameLanguage": "eng"}] http://www.genome.jp/kegg/ ["FAIRsharing_doi:10.25504/FAIRsharing.327nbg", "MIR:00000578", "RRID:SCR_001120", "RRID:nif-0000-21234", "RRID:nlx_31015"] ["KEGG@kegg.jp", "https://www.kegg.jp/feedback/"] KEGG is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies eng ["disciplinary"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "biochemistry", "bioinformatics", "cells", "chemistry", "drugs", "ecosystem", "genetics", "genomics", "health", "molecular interaction networks", "organism", "systemic functions", "systems biology"] [{"institutionName": "Japan Science and Technology Agency, National Bioscience Database Center", "institutionAdditionalName": ["NBDC", "National Bioscience Database Center"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://biosciencedbc.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biosciencedbc.jp/en/contact-us"]}, {"institutionName": "Kyoto University, Institute for Chemical Research, Bioinformatics Center", "institutionAdditionalName": ["Bioinformatics Center"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bic.kyoto-u.ac.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["KEGG@kegg.jp"]}, {"institutionName": "Kyoto University, Kanehisa Laboratories", "institutionAdditionalName": ["Kanehisa Laboratories"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kanehisa.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["KEGG@kegg.jp"]}, {"institutionName": "NPO Bioinformatics Japan", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.bioinformatics.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bioinformatics.jp/en/contact.html"]}, {"institutionName": "University of Tokyo, Institute of Medical Science, Human Genome Center", "institutionAdditionalName": ["HGC", "Human Genome Center"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hgc.jp/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.kegg.jp/kegg/docs/plea.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kegg.jp/kegg/legal.html"}] closed [] ["unknown"] yes {"api": "https://www.bioinformatics.jp/en/keggftp.html", "apiType": "FTP"} ["none"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Academic users may freely use the KEGG website at http://www.kegg.jp/ or its mirror site at GenomeNet http://www.genome.jp/kegg/. Academic users may also freely link to the KEGG website. Non-academic users may use the KEGG website as end users for non-commercial purposes, but any other use requires a license agreement. Non-academic users and Academic users intending to use KEGG for commercial purposes are requested to obtain a license agreement through KEGG's exclusive licensing agent, Pathway Solutions, for installation of KEGG at their sites, for distribution or reselling of KEGG data, for software development or any other commercial activities that make use of KEGG, or as end users of any third-party application that requires downloading of KEGG data or access to KEGG data via the KEGG API. Our major source of funding has come from the Institute for Bioinformatics Research and Development (BIRD) of the Japan Science and Technology Agency (JST). As of April 1, 2011 BIRD has been converted to the National Bioscience Database Center (NBDC) in JST. NPO Bioinformatics Japan operates the KEGG FTP site for academic users. KEGG FTP academic subscription (paid subscription) is available to academic users belonging to academic institutions. First, register for a KEGG FTP account from the URL below: https://www.bioinformatics.jp/ and activate your account by following the link given in the confirmation email that you receive. Second, login to your account and submit a subscription request, which gives you a link to download your order form. You will have to agree with the terms and conditions of use to complete this step. Third, fill in the order form and send it back by email. Subscription orders outside of Japan are handled by Pathway Solutions Inc.1 email: academic @ pathway.jp Subscription orders within Japan are handled by NPO Bioinformatics Japan email: academic @ bioinformatics.jp Once your payment is confirmed, you will have an access to the KEGG FTP site. 2015-03-01 2021-08-25 +r3d100011571 Gulf of Mexico Research Initiative Information and Data Cooperative eng [{"additionalName": "GRIIDC", "additionalNameLanguage": "eng"}] https://data.gulfresearchinitiative.org/ [] ["griidc@gomri.org"] The Gulf of Mexico Research Initiative Information and Data Cooperative (GRIIDC) is a team of researchers, data specialists and computer system developers who are supporting the development of a data management system to store scientific data generated by Gulf of Mexico researchers. The Master Research Agreement between BP and the Gulf of Mexico Alliance that established the Gulf of Mexico Research Initiative (GoMRI) included provisions that all data collected or generated through the agreement must be made available to the public. The Gulf of Mexico Research Initiative Information and Data Cooperative (GRIIDC) is the vehicle through which GoMRI is fulfilling this requirement. The mission of GRIIDC is to ensure a data and information legacy that promotes continual scientific discovery and public awareness of the Gulf of Mexico Ecosystem. eng ["disciplinary"] {"size": "2008 datasets; 280 research groups", "updatedp": "2018-04-06"} 2011-01-10 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.gulfresearchinitiative.org/about-griidc [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Gulf of Mexico Alliance", "OMA", "dilution of petroleum", "dispersion of petroleum", "distribution of petroleum", "ecosystem", "gas releases", "oil spill"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": [], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "Fish and Wildlife Research Institute", "institutionAdditionalName": ["FWRI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://myfwc.com/research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://myfwc.com/contact/"]}, {"institutionName": "Harte Research Institute for Gulf of Mexico Studies, Gulf of Mexico Research Initiative", "institutionAdditionalName": ["HRI, GMRI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.harteresearchinstitute.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@harteresearchinstitute.org"]}, {"institutionName": "Texas A&M University - Corpus Christi", "institutionAdditionalName": ["The Island University"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.tamucc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tamucc.edu/about/contactus.html"]}] [{"policyName": "Data Compliance Information", "policyURL": "https://data.gulfresearchinitiative.org/RB-data-compliance"}, {"policyName": "Data Management Planning", "policyURL": "https://data.gulfresearchinitiative.org/data-management-planning"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] yes {"api": "http://138.197.0.26:8080/erddap/index.html", "apiType": "REST"} ["DOI"] https://data.gulfresearchinitiative.org/how-do-i-cite-dataset-griidc-repository [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} GRIIDC is covered by Thomson Reuters Data Citation Index. 2015-03-04 2021-12-27 +r3d100011575 Southern California Earthquake Data Center eng [{"additionalName": "SCEDC", "additionalNameLanguage": "eng"}] http://scedc.caltech.edu/ ["RRID:SCR_000663", "RRID:nlx_154718", "biodbcore-001719"] ["http://scedc.caltech.edu/contact/index.html"] The Southern California Earthquake Data Center (SCEDC) operates at the Seismological Laboratory at Caltech and is the primary archive of seismological data for southern California. The 1932-to-present Caltech/USGS catalog maintained by the SCEDC is the most complete archive of seismic data for any region in the United States. Our mission is to maintain an easily accessible, well-organized, high-quality, searchable archive for research in seismology and earthquake engineering. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://scedc.caltech.edu/about/dchistory.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["California", "earthquake", "geophysics", "hazard", "seismology"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.caltech.edu/contact"]}, {"institutionName": "Geological and Planetary Sciences , Caltech's Seismological Laboratory", "institutionAdditionalName": ["GPS, Caltech's Seismological Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.seismolab.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.seismolab.caltech.edu/contact.html"]}, {"institutionName": "Southern California Earthquake Center", "institutionAdditionalName": ["SCEC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scec.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scec.org/contact"]}, {"institutionName": "Southern California Seismic Network", "institutionAdditionalName": ["SCSN"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.scsn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.scsn.org/index.php/contact/contact-us/index.html"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}, {"institutionName": "U.S. Geological Survey, National Earthquake Hazards Reduction Program, Earthquake Hazards Program", "institutionAdditionalName": ["USGS, NEHRP, Earthquake Hazards Program"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthquake.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://earthquake.usgs.gov/contactus/"]}, {"institutionName": "U.S. Geological Survey, Advanced National Seismic System", "institutionAdditionalName": ["ANSS", "USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthquake.usgs.gov/monitoring/anss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["benz@usgs.gov", "cwolfe@usgs.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://scedc.caltech.edu/about/data-index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://scedc.caltech.edu/about/faq.html#photos"}] restricted [] ["other"] {"api": "http://service.scedc.caltech.edu/", "apiType": "other"} ["DOI"] http://scedc.caltech.edu/about/citation.html ["none"] unknown yes [] [] {"syndication": "http://earthquake.usgs.gov/earthquakes/eqinthenews/index.atom", "syndicationType": "RSS"} Earthquake Catalogs: http://scedc.caltech.edu/eq-catalogs/index.html The Southern California Earthquake Data Center (SCEDC) operates at the Seismological Laboratory at Caltech and is the primary archive of earthquake data for southern California. The Southern California Earthquake Center (SCEC) is headquartered at the University of Southern California and is a community of scientists and specialists who actively coordinate research on earthquake hazards. The Data Center is a central resource of SCEC and is supported by SCEC, but it is a separate entity. 2015-03-27 2021-11-17 +r3d100011577 UC San Diego Library Digital Collections eng [] https://library.ucsd.edu/dc/ [] ["https://library.ucsd.edu/dc/contact"] The UC San Diego Library Digital Collections website gathers two categories of content managed by the Library: library collections (including digitized versions of selected collections covering topics such as art, film, music, history and anthropology) and research data collections (including research data generated by UC San Diego researchers). eng ["institutional"] {"size": "113.059 items", "updatedp": "2015-05-19"} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://library.ucsd.edu/dc/p/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Baja California", "aerosol chemistry", "anthropology", "archaeology", "history", "oceanography"] [{"institutionName": "UC San Diego", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ucsd.edu/about/contact.html"]}, {"institutionName": "UC San Diego Library, Research Data Curation Program", "institutionAdditionalName": ["RDCP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.ucsd.edu/research-and-collections/data-curation/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["research-data-curation@ucsd.edu"]}] [{"policyName": "Notice and Takedown Policy", "policyURL": "https://library.ucsd.edu/dc/p/takedown"}, {"policyName": "UC San Diego Guidelines on Access and Management of Research Data", "policyURL": "https://blink.ucsd.edu/research/policies-compliance-ethics/guidelines.html#Access-to-and-Transfer-of-Resea"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.ucsd.edu/dc/p/faq#a011"}] restricted [{"dataUploadLicenseName": "Deposit Terms and Agreement", "dataUploadLicenseURL": "https://library.ucsd.edu/research-and-collections/data-curation/deposit-term-agree.html"}] ["other"] {} ["ARK", "DOI"] https://library.ucsd.edu/dc/p/faq#a010 ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2015-04-07 2021-10-08 +r3d100011578 Europeana collections eng [] https://www.europeana.eu/portal/de [] ["http://www.europeana.eu/portal/contact.html", "info@europeana.eu"] Europeana is the trusted source of cultural heritage brought to you by the Europeana Foundation and a large number of European cultural institutions, projects and partners. It’s a real piece of team work. Ideas and inspiration can be found within the millions of items on Europeana. These objects include: Images - paintings, drawings, maps, photos and pictures of museum objects Texts - books, newspapers, letters, diaries and archival papers Sounds - music and spoken word from cylinders, tapes, discs and radio broadcasts Videos - films, newsreels and TV broadcasts All texts are CC BY-SA, images and media licensed individually. eng ["other"] {"size": "58.245.986 artworks, artefacts, books, films and music from European museums, galleries, libraries and archives", "updatedp": "2018-08-15"} 2009 ["dan", "deu", "ell", "eng", "fra", "ita", "nld", "rus", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://pro.europeana.eu/our-mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Europe", "agriculture", "architecture", "biology", "chemistry", "constructional engineering", "cultural artifact", "cultural hertiage", "cultural policy", "digital library", "earth siences", "economics", "educational policy", "energy", "engineering technology", "human health", "humanities", "materials", "network", "physics", "pollution", "social sciences"] [{"institutionName": "European Union", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europa.eu/european-union/contact_en"]}, {"institutionName": "Europeana Foundation", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pro.europeana.eu/organisation/europeana-foundation", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pro.europeana.eu/contact-us"]}] [{"policyName": "Data Exchange Agreement", "policyURL": "https://pro.europeana.eu/page/the-data-exchange-agreement"}, {"policyName": "Europeana Terms and Policies", "policyURL": "https://www.europeana.eu/portal/en/rights.html"}, {"policyName": "Europeana Usage Guidelines for public domain works", "policyURL": "https://www.europeana.eu/portal/en/rights/public-domain.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://rightsstatements.org/page/InC/1.0/?language=de"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.europeana.eu/portal/en/rights/public-domain-charter.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://pro.europeana.eu/page/available-rights-statements"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.europeana.eu/portal/en/rights.html"}] restricted [{"dataUploadLicenseName": "Europeana Publishing Guide", "dataUploadLicenseURL": "https://pro.europeana.eu/post/publication-policy"}, {"dataUploadLicenseName": "Publish your collection with Europeana", "dataUploadLicenseURL": "https://pro.europeana.eu/services/data-publication-services"}, {"dataUploadLicenseName": "Terms for User Contributions", "dataUploadLicenseURL": "https://www.europeana.eu/portal/en/rights/contributions.html"}] ["unknown"] yes {"api": "http://oai.europeana.eu/", "apiType": "OAI-PMH"} ["hdl"] https://www.europeana.eu/portal/en/rights/metadata.html [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://blog.europeana.eu/feed/", "syndicationType": "RSS"} You can choose from 30 languages. 2015-04-07 2019-01-22 +r3d100011579 Antarctic Glaciological Data Center at NSIDC eng [{"additionalName": "AGDC", "additionalNameLanguage": "eng"}] http://nsidc.org/data/agdc/ ["RRID:SCR_002219", "RRID:nlx_154741"] ["lynn.yarmey@colorado.edu"] The Antarctic Glaciological Data Center (AGDC) at NSIDC archives and distributes Antarctic glaciological and cryospheric data collected by the U.S. Antarctic Program. From this Web site, you can access the data, the metadata, and the guide documentation for each data set as well as submit your data for archival, find related data sets, and access a collection of Antarctica photographs and images from the NSIDC archive. AGDC developped and gives access to A-CAP: The Antarctic Cryosphere Access Portal. eng ["disciplinary"] {"size": "183 datasets", "updatedp": "2015-04-08"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["A-CAP", "AVHRR", "Antarctic cryosphere", "MODIS", "boreholes", "climate", "expeditions", "glaciers", "ice core", "remote sensing"] [{"institutionName": "Cooperative Institute for Research in Environmental Sciences, National Snow and Ice Data Center", "institutionAdditionalName": ["CIRES", "NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nsidc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nsidc.org/about/contact.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation, Antarctic Data Consortium", "institutionAdditionalName": ["ADC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.usap-data.org/adc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation, Directorate for Geosciences, Polar Programs, United States Antarctic Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/geo/plr/antarct/usap.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Colorado Boulder", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.colorado.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.colorado.edu/contact"]}] [{"policyName": "NSIDC DATA Policies", "policyURL": "http://nsidc.org/about/policies"}, {"policyName": "Use and Copyright", "policyURL": "http://nsidc.org/about/use_copyright.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://nsidc.org/about/policies"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nsidc.org/about/policies"}, {"dataLicenseName": "other", "dataLicenseURL": "http://nsidc.org/about/use_copyright.html"}] restricted [] [] yes {"api": "ftp://sidads.colorado.edu/pub/DATASETS/AGDC/", "apiType": "FTP"} ["DOI"] http://nsidc.org/about/use_copyright.html [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://nsidc.org/the-drift/data-set/agdc/feed", "syndicationType": "RSS"} AGDC is part of the U.S. Antarctic Data Consortium (ADC). Cooperative Institute for Research in Environmental Sciences (CIRES) is a partnership of the University of Colorado Boulder and the National Oceanic and Atmospheric Administration (NOAA). Grant: NSF OPP ANT 0944763 2015-04-08 2017-04-25 +r3d100011580 World Ocean Database eng [{"additionalName": "WOD", "additionalNameLanguage": "eng"}] https://www.nodc.noaa.gov/OC5/WOD/pr_wod.html ["biodbcore-001516"] ["OCL.help@noaa.gov"] The World Ocean Database (WOD) is a collection of scientifically quality-controlled ocean profile and plankton data that includes measurements of temperature, salinity, oxygen, phosphate, nitrate, silicate, chlorophyll, alkalinity, pH, pCO2, TCO2, Tritium, Δ13Carbon, Δ14Carbon, Δ18Oxygen, Freon, Helium, Δ3Helium, Neon, and plankton. WOD contains all data of "World Data Service Oceanography" (WDS-Oceanography). eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.nodc.noaa.gov/woa/WOD/DOC/wod_intro.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bathytermography", "buoys", "climatology", "coast", "earth climate", "geophysics", "meterology", "nitrate", "oceanography", "oxygen", "phosphate", "planktion", "salinity", "silicate", "temperature"] [{"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nodc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nodc.noaa.gov/about/contact.html"]}, {"institutionName": "National Centers for Environmental Information, Ocean Climate Laboratory", "institutionAdditionalName": ["NCEI", "OCL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nodc.noaa.gov/access/oceanclimate.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Tim.Boyer@noaa.gov"]}, {"institutionName": "National Environmental Satellite, Data, and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NESDIS.Webmaster@noaa.gov"]}, {"institutionName": "National oceanic and atmospheric adminstration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}] [{"policyName": "NCEI Data Collecting Policy", "policyURL": "https://www.nodc.noaa.gov/submit/data-policy.html"}, {"policyName": "NCEI Data Submission Guidelines", "policyURL": "https://www.nodc.noaa.gov/submit/submit-guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://data.nodc.noaa.gov/woa/WOD/DOC/wod_intro.pdf"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nodc.noaa.gov/about/faq.html"}] restricted [{"dataUploadLicenseName": "NCEI Data Submission Guidelines", "dataUploadLicenseURL": "https://www.nodc.noaa.gov/submit/submit-guide.html"}] [] yes {"api": "ftp://ftp.nodc.noaa.gov/pub/data.nodc/", "apiType": "FTP"} ["none"] https://www.nodc.noaa.gov/OC5/WOD/wod-woa-faqs.html#WOD18 [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "http://www.nodc.noaa.gov/OC5/RSS/wod_updates.xml", "syndicationType": "RSS"} Previous: World Data Center for Oceanography, Silver Spring 2015-04-09 2021-11-16 +r3d100011581 NOAA National Centers for Environmental Information - formerly: National Oceanographic Data Center eng [{"additionalName": "NODC", "additionalNameLanguage": "eng"}] https://www.nodc.noaa.gov/ [] ["https://www.nodc.noaa.gov/about/contact.html"] The National Oceanographic Data Center includes the National Coastal Data Development Center (NCDDC) and the NOAA Central Library, which are integrated to provide access to the world's most comprehensive sources of marine environmental data and information. NODC maintains and updates a national ocean archive with environmental data acquired from domestic and foreign activities and produces products and research from these data which help monitor global environmental changes. These data include physical, biological and chemical measurements derived from in situ oceanographic observations, satellite remote sensing of the oceans, and ocean model simulations. >>>!!!<<< For informations about the migration of data from NODC to NCEI see: https://www.nodc.noaa.gov/about/index.html >>>!!!<<< eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1961 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncei.noaa.gov/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biology", "climate change", "environment", "geology", "marine data management", "national security", "natural diesasters", "oceanography", "oxygen", "plankton", "satellite remote sensing", "temperature"] [{"institutionName": "National Centers for Environmental Information, National Oceanographic Data Center", "institutionAdditionalName": ["NCEI", "NODC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nodc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nodc.noaa.gov/about/contact.html"]}, {"institutionName": "National Environmental Satellite, Data, and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": ["ROR:007qwym43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["John.Leslie@noaa.gov"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}] [{"policyName": "NCEI-Oceans Data Policy", "policyURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nodc.noaa.gov/about/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nodc.noaa.gov/about/faq.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "https://www.nodc.noaa.gov/submit/submit-guide.html"}] [] {"api": "ftp://ftp.nodc.noaa.gov/pub/data.nodc/", "apiType": "FTP"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://www.nodc.noaa.gov/rss/", "syndicationType": "RSS"} NCEI - National Oceanographic Data Center is covered by Thomson Reuters Data Citation Index. 2015-04-13 2021-09-03 +r3d100011582 UBC Abacus Dataverse Network eng [{"additionalName": "Abacus Dataverse Network", "additionalNameLanguage": "eng"}] http://dvn.library.ubc.ca/dvn/ [] ["http://dvn.library.ubc.ca/dvn/faces/ContactUsPage.xhtml"] The Abacus Dataverse Network is the research data repository of the British Columbia Research Libraries' Data Services, a collaboration involving the Data Libraries at Simon Fraser University (SFU), the University of British Columbia (UBC), the University of Northern British Columbia (UNBC) and the University of Victoria (UVic). eng ["disciplinary", "institutional"] {"size": "11 dataveres; 1927 dataverses; 31.572 files", "updatedp": "2017-01-25"} 2014-01-08 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://dvn.library.ubc.ca/dvn/faces/AnnouncementsPage.xhtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["computer science", "economics", "electrical engineering", "financial statistics", "geography", "geosciences", "health", "humanities", "social and behavioural scienes", "survey", "system engineering"] [{"institutionName": "Simon Fraser University Library", "institutionAdditionalName": ["SFU Library"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lib.sfu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sfu.ca/contact/burnaby.html"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://dataverse.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "University of British Columbia Library", "institutionAdditionalName": ["UBC Library"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.library.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://about.library.ubc.ca/contact-us/"]}, {"institutionName": "University of Northern British Columbia, Geoffrey R. Weller Library", "institutionAdditionalName": ["Geoffrey R. Weller Library"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.unbc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://library.unbc.ca/about/staff-directory"]}, {"institutionName": "University of Victoria, Libraries", "institutionAdditionalName": ["UVic, Libraries"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uvic.ca/library/featured/data/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uvic.ca/library/home/home/contact/index.php"]}] [{"policyName": "Acceptable Use and Security of UBC Electronic Information and Systems", "policyURL": "http://universitycounsel.ubc.ca/files/2013/06/policy104.pdf"}, {"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.publicdomainmanifesto.org/"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use, User uploads", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://dvn.library.ubc.ca/dvn/resources/other/rss_feed.xml", "syndicationType": "RSS"} 2015-04-13 2019-03-05 +r3d100011583 NoMaD Repository & Archive eng [{"additionalName": "Novel Materials Discovery", "additionalNameLanguage": "eng"}] https://nomad-lab.eu/services/repo-arch ["FAIRsharing_doi:10.25504/FAIRsharing.aq20qn"] ["contact@nomad-lab.eu", "support@nomad-lab.eu"] The NOMAD Repository and Archive stands for open access of scientific materials data. It enables the confirmatory analysis of materials data, their reuse, and repurposing. All data is available in their raw format as produced by the underlying code (Repository) and in a common, machine-processable, and well-defined data format (Archive). eng ["disciplinary"] {"size": "11.241.168 entries", "updatedp": "2021-08-20"} 2015-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://nomad-lab.eu/index.php?page=repo-arch [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "atomistic simulation", "big data analytics", "chemical siences", "computational material science", "material science", "multi-scale modelling", "physics"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Mathematisch-Naturwissenschaftliche Fakult\u00e4t, Institut f\u00fcr Physik", "institutionAdditionalName": ["Faculty of Mathematics and Natural Sciences, Department of Physics", "Institut f\u00fcr Physik"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.physik.hu-berlin.de/de/home", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["sol-office@physik.hu-berlin.de"]}, {"institutionName": "Max-Planck-Gesellschaft", "institutionAdditionalName": ["MPG"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.mpg.de/de", "institutionIdentifier": ["ROR:01hhn8329"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://www.mpg.de/contact/requests"]}] [{"policyName": "Terms of Use", "policyURL": "https://nomad-lab.eu/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://nomad-lab.eu/terms"}] restricted [{"dataUploadLicenseName": "Term of Use", "dataUploadLicenseURL": "https://nomad-lab.eu/terms"}] [] yes {"api": "https://nomad-lab.eu/prod/rae/api/", "apiType": "REST"} ["DOI"] [] yes yes [] [] {} is covered by Elsevier. nomad@FAIRDI, the Open-Source continuation of the original NOMAD-coe software that reconciles the original code base, integrate it’s services, allows 3rd parties to run individual and federated instance of the nomad infrastructure, provides nomad to other material science domains, and applies the FAIRDI principles as proliferated by the FAIRDI Data Infrastructure e.V. GitHub: https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-FAIR 2015-04-16 2021-10-08 +r3d100011584 MyTARDIS @ ANSTO eng [{"additionalName": "Australian Nuclear Science and Technology Organisation (ANSTO)", "additionalNameLanguage": "eng"}] https://tardis.nbi.ansto.gov.au/ [] ["ashley.buckle@med.monash.edu.au", "enquiries@ansto.gov.au"] >>> !!! The repository is offline !!! <<< The MyTARDIS repository at ANSTO is used to: * Store metadata for all experiments conducted at ANSTO * Provide access and download of metadata and data to authorised users of experiments * Provide search, access and download of public metadata and data to the general scientific community eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 2021 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["nuclear science", "nuclear technology"] [{"institutionName": "Australian Nuclear Science and Technology Organisation", "institutionAdditionalName": ["ANSTO"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ansto.gov.au/", "institutionIdentifier": ["ROR:05j7fep28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ansto.gov.au/contact-us"]}] [{"policyName": "MyTardis documentation", "policyURL": "https://mytardis.readthedocs.io/en/latest/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://researchdata.ands.org.au/mytardis-ansto/14261"}] restricted [] ["other"] yes {} ["none"] https://tardis.nbi.ansto.gov.au/about/ ["none"] no unknown [] [] {} 2015-05-05 2021-08-23 +r3d100011585 Combined QTL Map of Dairy Cattle Traits eng [] http://firefly.vetsci.usyd.edu.au/CMS/reprogen/QTL_Map/index.php?Page=QTL+Map [] ["http://firefly.vetsci.usyd.edu.au/CMS/reprogen/QTL_Map/index.php?Page=Contact+Us"] >>>!!! <<< 2021-09-01: repository is offline >>>!!!<<< Background: Many studies have been conducted to detect quantitative trait loci (QTL) in dairy cattle. However, these studies are diverse in terms of their differing resource populations, marker maps, phenotypes, etc, and one of the challenges is to be able to synthesise this diverse information. This web page has been constructed to provide an accessible database of studies, providing a summary of each study, facilitating an easier comparison across studies. However, it also highlights the need for uniform reporting of results of studies, to facilitate more direct comparisons being made. Description: Studies recorded in this database include complete and partial genome scans, single chromosome scans, as well as fine mapping studies, and contain all known reports that were published in peer-reviewed journals and readily available conference proceedings, initially up to April 2005. However, this data base is being added to, as indicated by the last web update. Note that some duplication of results will occur, in that there may be a number of reports on the same resource population, but utilising different marker densities or different statistical methodologies. The traits recorded in this map are milk yield, milk composition (protein yield, protein %, fat yield, fat %), and somatic cell score (SCS). eng ["disciplinary"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://firefly.vetsci.usyd.edu.au/CMS/reprogen/QTL_Map/index.php?Page=Project+Description [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["genes", "genetics", "genomics", "heredity", "quantitative trait loci - QTL", "sequencing"] [{"institutionName": "University of Sydney, Faculty of Venterinary Science", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sydney.edu.au/science/schools/sydney-school-of-veterinary-science.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sydney.edu.au/vetscience/about/locations.shtml"]}] [{"policyName": "Accessibility", "policyURL": "http://sydney.edu.au/accessibility.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://sydney.edu.au/disclaimer.shtml"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} M. S. Khatkar, P. C. Thomson, I. Tammen, F. Costa and H. W. Raadsma 2015-04-28 2021-09-01 +r3d100011586 Research Data Oxford eng [] https://researchdata.ox.ac.uk/ [] ["researchdata@ox.ac.uk"] Research data management is a general term covering how you organize, structure, store, and care for the information used or generated during a research project. The University of Oxford policy mandates the preservation of research data and records for a minimum of 3 years after publication. A place to securely hold digital research materials (data) of any sort along with documentation that helps explain what they are and how to use them (metadata). The application of consistent archiving policies, preservation techniques and discovery tools, further increases the long term availability and usefulness of the data. This is the main difference between storage and archiving of data. ORA-Data is the University of Oxford’s research data archive https://www.re3data.org/repository/r3d100011230 eng ["institutional"] {"size": "", "updatedp": ""} 2015-05-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.bodleian.ox.ac.uk/ora-data/about-ora-data [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ukri.org/councils/epsrc/", "institutionIdentifier": ["ROR:0439y7842"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ukri.org/about-us/contact-us/"]}, {"institutionName": "University of Oxford", "institutionAdditionalName": ["Oxford University"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ox.ac.uk/", "institutionIdentifier": ["ROR:052gg0110"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ora@bodleian.ox.ac.uk"]}, {"institutionName": "University of Oxford, Bodleian Libraries", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bodleian.ox.ac.uk/libraries/old-library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["reader.services@bodleian.ox.ac.uk"]}] [{"policyName": "University of Oxford on the management of research data and records", "policyURL": "https://researchdata.ox.ac.uk/university-of-oxford-policy-on-the-management-of-data-supporting-research-outputs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.epsrc.ac.uk/about/standards/researchdata/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www2.bodleian.ox.ac.uk/__data/assets/pdf_file/0011/190010/ORA-Data-User-Agreement.pdf"}] restricted [{"dataUploadLicenseName": "ORA deposit agreement", "dataUploadLicenseURL": "https://www2.bodleian.ox.ac.uk/__data/assets/pdf_file/0019/190009/ORA-Data-Deposit-Agreement.pdf"}, {"dataUploadLicenseName": "ORA submission policy", "dataUploadLicenseURL": "https://www2.bodleian.ox.ac.uk/__data/assets/pdf_file/0012/190011/ORA-Data-Submission-Preservation-and-Withdrawal-Policies.pdf"}] ["unknown"] {} ["DOI"] [] yes yes [] [] {"syndication": "https://researchdata.ox.ac.uk/feed/", "syndicationType": "RSS"} Funders: https://researchdata.ox.ac.uk/funder-requirements/ 2015-05-11 2021-10-08 +r3d100011587 Northwest Knowledge Network eng [{"additionalName": "NKN", "additionalNameLanguage": "eng"}] https://data.nkn.uidaho.edu// [] ["boswald@uidaho.edu", "info@nkn.uidaho.edu"] NKN is now Research Computing and Data Services (RCDS)! We provide data management support for UI researchers and their regional, national, and international collaborators. This support keeps researchers at the cutting-edge of science and increases our institution's competitiveness for external research grants. Quality data and metadata developed in research projects and curated by RCDS (formerly NKN) is a valuable, long-term asset upon which to develop and build new research and science. eng ["disciplinary", "institutional"] {"size": "265 results", "updatedp": "2021-10-12"} 2013-01-04 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.nkn.uidaho.edu/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BISON", "Biodiversity Information Serving Our Nation", "Data Basin", "DataONE", "DataUp", "EZID", "GDP", "Geo Data Portal", "ScienceBase", "VIVO"] [{"institutionName": "University of Idaho Office of Research and Economic Development", "institutionAdditionalName": ["ORED"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uidaho.edu/research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Idaho, Research Computing and Data Services", "institutionAdditionalName": ["RCDS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hpc.uidaho.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Service", "policyURL": "https://hpc.uidaho.edu/terms-of-service.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.northwestknowledge.net/services/terms_of_service"}] restricted [] [] yes {"api": "https://rdrr.io/github/weecology/portalPredictionsModels/man/NMME_urls.html", "apiType": "other"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} NKN is partnering with Research Data Alliance (RDA) and is a full member node of DataONE network: https://search.dataone.org/#profile 2015-05-08 2021-10-14 +r3d100011589 Peking University Open Research Data eng [{"additionalName": "PKU-Opendata", "additionalNameLanguage": "eng"}] http://opendata.pku.edu.cn/dataverse/pku [] ["luopc@lib.pku.edu.cn", "opendata@lib.pku.edu.cn"] In order to meet the needs of research data management for Peking University. The PKU library cooperate with the NSFC-PKU data center for management science, PKU science and research department, PKU social sciences department to jointly launch the Peking University Open Research Data Platform. PKU Open research data provides preservation, management and distribution services for research data. It encourage data owner to share data and data users to reuse data. eng ["institutional"] {"size": "19 dataverses; 110 datasets; 370 data files", "updatedp": "2017-01-26"} 2015-12-25 ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://opendata.pku.edu.cn/about.xhtml [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Beijing Social and Economic Development Annual Survey (BAS)", "Chinese Health and Retirement Longitudinal Survey (CHARLS)", "Chinese elderly health factors follow-up survey (CLHLS)", "Chinese family tracing survey (CFPS)"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "Peking University", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://english.pku.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Peking University Library", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.lib.pku.edu.cn/portal/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["luopc@lib.pku.edu.cn"]}] [{"policyName": "General terms of use", "policyURL": "http://opendata.pku.edu.cn/dataverseuser.xhtml?editMode=CREATE"}, {"policyName": "PKU Open Research Data Hanbook", "policyURL": "http://opendata.pku.edu.cn/handbook.xhtml"}, {"policyName": "membership regulations", "policyURL": "http://dcms.pku.edu.cn/CSDA/gjzd/member/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://opendata.pku.edu.cn/dataverseuser.xhtml?editMode=CREATE"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] http://opendata.pku.edu.cn/handbook.xhtml#Reuse-CiteDown [] no unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Peking University Open Research Data is covered by Thomson Reuters Data Citation Index. 2015-05-15 2017-11-07 +r3d100011591 Brain Transcriptome Database eng [{"additionalName": "BrainTx", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CDT-DB", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Cerebellar Development Transcriptome Database", "additionalNameLanguage": "eng"}] https://www.cdtdb.neuroinf.jp/CDT/Top.jsp ["RRID:SCR_014457"] ["cdt-db@brain.riken.jp", "https://www.cdtdb.neuroinf.jp/CDT/About.jsp#ch1-7"] The Brain Transcriptome Database (BrainTx) project aims to create an integrated platform to visualize and analyze our original transcriptome data and publicly accessible transcriptome data related to the genetics that underlie the development, function, and dysfunction stages and states of the brain. eng ["disciplinary"] {"size": "26.911 items", "updatedp": "2021-09-17"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cdtdb.neuroinf.jp/CDT/About.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["DNA", "RNA", "brain", "cells", "cerebellum", "encephalon", "gene expression", "genetics", "genomics", "mammals", "transcriptome data"] [{"institutionName": "International Neuroinformatics Coordinating Facility", "institutionAdditionalName": ["INCF"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.incf.org/", "institutionIdentifier": ["ROR:02y5xjh56"], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://www.incf.org/contact", "info@incf.org"]}, {"institutionName": "International Neuroinformatics Coordination Facility, National Node of Japan", "institutionAdditionalName": ["INCF Japan Node"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.neuroinf.jp/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "2019", "institutionContact": []}, {"institutionName": "Japan Science and Technology Agency", "institutionAdditionalName": ["JST", "\u79d1\u5b66\u6280\u8853\u632f\u8208\u6a5f\u69cb"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jst.go.jp/EN/", "institutionIdentifier": ["ROR:00097mb19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jst.go.jp/EN/about/contact.html"]}, {"institutionName": "Japan Society for the Promotion of Science", "institutionAdditionalName": ["JSPS", "\u65e5\u672c\u5b66\u8853\u632f\u8208\u4f1a"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jsps.go.jp/english/index.html", "institutionIdentifier": ["ROR:00hhkn466"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jsps.go.jp/english/access_contact/index.html"]}, {"institutionName": "Japanese Ministry of Education, Culture, Sports, Science, and Technology", "institutionAdditionalName": ["MEXT", "\u6587\u90e8\u79d1\u5b66\u3001\u6280\u8853\u74b0\u5883\u7701"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mext.go.jp/en/", "institutionIdentifier": ["ROR:048rj2z13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mext.go.jp/en/about/address/index.htm"]}, {"institutionName": "RIKEN Center for Brain Science", "institutionAdditionalName": ["Formerly: RIKEN Brain Science Insitute", "Formerly: RIKEN-BSI", "RIKEN CBS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cbs.riken.jp/en/", "institutionIdentifier": ["ROR:04j1n1c04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://form.kintoneapp.com/public/form/show/0029a698ba449f10d6c3b2e2bce4393e2b1f0777789c6641e26140beff4360aa"]}, {"institutionName": "RIKEN Center for Brain Science, Integrative Computational Brain Science Collaboration Center, Neuroinformatics Unit", "institutionAdditionalName": ["Formerly: RIKEN BSI NIJC", "Formerly: RIKEN Brain Science Institute, Neuroinformatics Japan Center", "RIKEN CBS ICBSCC NIU"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ni.riken.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CDT-DB User Guide", "policyURL": "https://www.cdtdb.neuroinf.jp/CDT/DownloadFile.do?filename=BrainTx_Users_Guide_ver5.5.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cdtdb.neuroinf.jp/CDT/About.jsp#ch1-3"}] closed [] ["unknown"] yes {} ["none"] [] yes yes [] [] {"syndication": "https://www.cdtdb.neuroinf.jp/CDT/cdtdb.xml", "syndicationType": "RSS"} The database is integrated into the RIKEN integrated database of mammals of the RIKEN Scientists' Networking System (SciNetS). 2015-05-26 2021-09-17 +r3d100011592 Russian-Ukrainian Geomagnetic Data Center eng [] http://geomag.gcras.ru/ [] ["geomag@gcras.ru"] The Analytical Geomagnetic Data Center of the Trans-Regional INTERMAGNET Segment is operated by the Geophysical Center of the Russian Academy of Sciences (GC RAS). Geomagnetic data are transmitted from observatories and stations located in Russia and near-abroad countries. The Center also provides access to spaceborne data products. The MAGNUS hardware-software system underlies the operation of the Center. Its particular feature is the automated real-time recognition of artificial (anthropogenic) disturbances in incoming data. Being based on fuzzy logic approach, this quality control service facilitates the preparation of the definitive magnetograms from preliminary records carried out by data experts manually. The MAGNUS system also performs on-the-fly multi-criteria estimation of geomagnetic activity using several indicators and provides online tools for modeling electromagnetic parameters in the near-Earth space. The collected geomagnetic data are stored using relational database management system. The geomagnetic database is intended for storing both 1-minute and 1-second data. The results of anthropogenic and natural disturbance recognition are also stored in the database. eng ["disciplinary"] {"size": "18 observatories", "updatedp": "2015-05-27"} 2012-01-01 2015-05-26 ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "306 Polymer Research", "scheme": "DFG"}, {"name": "30601 Preparatory and Physical Chemistry of Polymers", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://geomag.gcras.ru/index.html [{"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Swarm", "geographic information systems GIS", "geoinformatics", "geomagnetic field", "geomagnetism", "geophysics", "magnetic monitoring"] [{"institutionName": "INTERMAGNET", "institutionAdditionalName": ["International Real-time Magnetic Observatory Network"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.intermagnet.org/index-eng.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@intermagnet.org"]}, {"institutionName": "National Academy of Sciences of Ukraine, Institute of Geophysics", "institutionAdditionalName": ["IGP", "\u041d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0430\u044f \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u044f \u043d\u0430\u0443\u043a \u0423\u043a\u0440\u0430\u0438\u043d\u044b, \u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0433\u0435\u043e\u0444\u0438\u0437\u0438\u043a\u0438"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.igph.kiev.ua/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.igph.kiev.ua/eng/contacts.html"]}, {"institutionName": "Russian Academy of Sciences, Geophysical Center", "institutionAdditionalName": ["GC RAS", "\u0413\u0415\u041e\u0424\u0418\u0417\u0418\u0427\u0415\u0421\u041a\u0418\u0419 \u0426\u0415\u041d\u0422\u0420 \u0420\u041e\u0421\u0421\u0418\u0419\u0421\u041a\u041e\u0419 \u0410\u041a\u0410\u0414\u0415\u041c\u0418\u0418 \u041d\u0410\u0423\u041a"], "institutionCountry": "RUS", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.gcras.ru/eng/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gcras.ru/eng/"]}, {"institutionName": "Russian-Ukrainian Geomagnetic Data Center", "institutionAdditionalName": ["RUGDC"], "institutionCountry": "RUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://geomag.gcras.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://geomag.gcras.ru/contacts.html"]}] [{"policyName": "Data Policy", "policyURL": "http://geomag.gcras.ru/datapolicy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://geomag.gcras.ru/datapolicy.html"}] closed [] ["other"] {"api": "http://geomag.gcras.ru/datapolicy.html", "apiType": "FTP"} ["DOI"] http://geomag.gcras.ru/datapolicy.html [] unknown yes [] [] {} FTP access to the RUGDC data is available on request. To request this service please send an e-mail to geomag@gcras.ru. 2015-05-27 2021-08-30 +r3d100011593 HJ Andrews Experimental Forest eng [{"additionalName": "HJA", "additionalNameLanguage": "eng"}] https://andrewsforest.oregonstate.edu/ [] ["https://andrewsforest.oregonstate.edu/contacts", "michael.nelson@oregonstate.edu"] The Andrews Forest is a place of inquiry. Our mission is to support research on forests, streams, and watersheds, and to foster strong collaboration among ecosystem science, education, natural resource management, and the humanities. Our place and our work are administered cooperatively by the USDA Forest Service's Pacific Northwest Research Station, Oregon State University, and the Willamette National Forest. First established in 1948 as an US Forest Service Experimental Forest, the H.J. Andrews is a 16,000-acre ecological research site in Oregon's beautiful western Cascades Mountains. The landscape is home to iconic Pacific Northwest old-growth forests of Cedar and Hemlock, and moss-draped ancient Douglas Firs; steep terrain; and fast, cold-running streams. In 1980 the Andrews became a charter member of the National Science Foundation's Long-Term Ecological Research (LTER) Program. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://andrewsforest.oregonstate.edu/research [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biosphere reserve", "carbon dynamics", "ecology", "education", "environment", "fauna", "flora", "forest", "forest development", "hydrology", "insects", "natural changes", "vegetation", "wildlife"] [{"institutionName": "Long Term Ecological Research", "institutionAdditionalName": ["LTER"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lternet.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lternet.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Oregon State University", "institutionAdditionalName": ["OSU"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://oregonstate.edu/", "institutionIdentifier": ["ROR:00ysfqy60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://communications.oregonstate.edu/webform/contact-osu"]}, {"institutionName": "USDA Forest Service's Pacific Northwest Research Station", "institutionAdditionalName": ["USFS Research"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.fs.fed.us/pnw/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fs.fed.us/pnw/contact/index.shtml"]}, {"institutionName": "United States Department of Agriculture, Willamette National Forest", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fs.usda.gov/willamette/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fs.usda.gov/contactus/willamette/about-forest/contactus"]}] [{"policyName": "Data Access Policy", "policyURL": "https://andrewsforest.oregonstate.edu/data/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Submission of Data", "dataUploadLicenseURL": "https://andrewsforest.oregonstate.edu/data/metadata"}] ["unknown"] yes {} ["none"] https://andrewsforest.oregonstate.edu/data/policy ["none"] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} The Andrews Forest (AND) Program is part of the Long-Term Ecological Research (LTER) Network established by the National Science Foundation. Since 1980, the Experimental Forest has been one of the 230-plus stations in the National Atmospheric Deposition Program, which monitors the chemistry of the Nation’s precipitation. 2015-05-28 2021-10-08 +r3d100011594 The Monarch Initiative eng [{"additionalName": "Monarch", "additionalNameLanguage": "eng"}, {"additionalName": "Monarch Initiative", "additionalNameLanguage": "eng"}] https://monarchinitiative.org/ ["OMICS_14548", "RRID:SCR_001373", "RRID:nlx_152525"] ["info@monarchinitiative.org"] As with most biomedical databases, the first step is to identify relevant data from the research community. The Monarch Initiative is focused primarily on phenotype-related resources. We bring in data associated with those phenotypes so that our users can begin to make connections among other biological entities of interest. We import data from a variety of data sources. With many resources integrated into a single database, we can join across the various data sources to produce integrated views. We have started with the big players including ClinVar and OMIM, but are equally interested in boutique databases. You can learn more about the sources of data that populate our system from our data sources page https://monarchinitiative.org/about/sources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://monarchinitiative.org/page/about#goals [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["abnormalities in flies", "abnormalities in mouse", "abnormalities in zebrafish", "anatomy", "disease", "drug", "gene expression", "genetics", "genotype", "human gene function", "mutation", "orthology", "pathways", "phenotypes", "strain"] [{"institutionName": "Charit\u00e9 Universit\u00e4tsmedizin Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.charite.de/charite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.charite.de/ihre_ansprechpartner_an_der_charite/"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}, {"institutionName": "Garvan Institute of Medical Research", "institutionAdditionalName": ["Garvan"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.garvan.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.garvan.org.au/contact"]}, {"institutionName": "Jackson Laboratory", "institutionAdditionalName": ["The Jackson Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lawrence Berkeley National Lab", "institutionAdditionalName": ["Berkeley Lab", "Lawrence Berkeley National Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Oregon Health & Science University", "institutionAdditionalName": ["OHSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ohsu.edu/xd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ohsu.edu/xd/about/contact-us/"]}, {"institutionName": "Queen Mary University of London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.qmul.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.qmul.ac.uk/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/legalcode"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/legalcode"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://monarchinitiative.org/"}] restricted [] [] yes {"api": "https://api.monarchinitiative.org/api/", "apiType": "other"} ["none"] ["none"] yes unknown [] [] {"syndication": "https://monarch-initiative.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} We import data from a variety of data sources in formats including databases, spreadsheets, delimited text files, XML, JSON, and Web APIs, on a monthly schedule, which is placed into a Postgres database (hosted by the NIF). Collaborations and Partners see: https://monarchinitiative.org/page/about#partner-text The Monarch interface, data, ontologies, and API are rapidly evolving. All of our repositories are on GitHub at https://github.com/monarch-initiative. 2015-06-01 2020-01-29 +r3d100011596 PhenoGen Informatics eng [] https://phenogen.org/ ["RRID:nlx_153879"] ["https://phenogen.org/web/common/contact.jsp"] The PhenoGen website shares experimental data with a worldwide community of investigators and provides a flexible, integrated, multi-resolution repository of neuroscience transcriptomic genetic data for collaborative research on genomic disorders. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Quantitative Trait Locus QTL", "alcohol consumption", "behavioral neuroadaptations", "brain neurocircuitries", "cellular neuroadaptations", "chromosome", "ethanol", "molecular neuroadaptations", "mouse", "rat", "transcriptome"] [{"institutionName": "Branbury Fund Inc.", "institutionAdditionalName": ["TGCi"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.tgci.com/contact-us", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Integrative Neuroscience Initiative on Alcoholism", "institutionAdditionalName": ["INIA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://inia-west.org/", "institutionIdentifier": ["ROR:00bame609"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://inia-west.org/#!contact/component_20591"]}, {"institutionName": "National Institute on Alcohol Abuse and Alcoholism", "institutionAdditionalName": ["NIAAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaaa.nih.gov/", "institutionIdentifier": ["ROR:02jzrsm59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaaa.nih.gov/about-niaaa/contact-us"]}, {"institutionName": "University of Colorado", "institutionAdditionalName": ["CU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cu.edu/", "institutionIdentifier": ["ROR:00jc20583"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cu.edu/contact-office-president"]}] [{"policyName": "PhenoGen Informatics", "policyURL": "https://phenogen.org/web/common/PhenoGen.pdf"}, {"policyName": "PhenoGen Website Overview", "policyURL": "https://phenogen.org/helpdocs/PhenoGen_Overview_Left.htm#CSHID=Phenogen_Overview.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucdenver.edu/legal"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ucdenver.edu/legal"}] restricted [] [] yes {} [] https://phenogen.org/web/common/citation.jsp ["none"] yes yes [] [] {} github: https://github.com/TabakoffLab/PhenogenCloud 2015-06-02 2021-10-08 +r3d100011597 LEDAS eng [{"additionalName": "LEicester Database and Archive Service", "additionalNameLanguage": "eng"}] https://www.ledas.ac.uk/ [] ["https://www.ledas.ac.uk/info/contact.html", "ledas-help@star.le.ac.uk"] The Leicester Database and Archive Service (LEDAS) is an easy to use on-line astronomical database and archive access service, dealing mainly with data from high energy astrophysics missions, but also providing full database functionality for over 200 astronomical catalogues from ground-based observations and space missions. The LEDAS also allows access to images, spectra and light curves in graphics, HDS and FITS formats, as well as access to raw and processed event data. LEDAS provides the primary means of access for the UK astronomical community to the ROSAT Public Data Archive, the ASCA Public Data Archive and the Ginga Products Archive by its Archive Network Interface ARNIE. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.ledas.ac.uk/info/overview.html [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["ASCA", "DSS", "Ginga", "HEASARC", "ROSAT", "ViZieR", "astronomy", "astrophysic", "data cubes", "gamma-ray", "light", "space mission", "spectra", "x-ray"] [{"institutionName": "University of Leicester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://le.ac.uk/", "institutionIdentifier": ["ROR:04h699437"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Leicester, Department of Physics and Astronomy", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://le.ac.uk/physics", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dlg@star.le.ac.uk"]}] [{"policyName": "The Leicester Database and Archive Service User Guide", "policyURL": "https://www.ledas.ac.uk/info/user_guide/www/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ledas.ac.uk/info/user_guide/www/node19.html"}] closed [] ["unknown"] {"api": "ftp://ftp.ledas.ac.uk/", "apiType": "FTP"} ["none"] https://www.ledas.ac.uk/info/acknowledge.html ["none"] unknown yes [] [] {} 2015-06-03 2021-09-06 +r3d100011598 Canadian Research Data Centre Network eng [{"additionalName": "CRDCN", "additionalNameLanguage": "eng"}, {"additionalName": "RCCDR", "additionalNameLanguage": "fra"}, {"additionalName": "R\u00e9seau canadien des Centres de donn\u00e9es de recherche", "additionalNameLanguage": "fra"}] https://crdcn.ca/publications-data/data/ [] ["info@crdcn.ca"] Research Data Centres offer a secure access to detailed microdata from Statistics Canada's surveys, and to Canadian censuses' data, as well as to an increasing number of administrative data sets. The search engine was designed to help you find out more easily which dataset among all the surveys available in the RDCs best suits your research needs. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2000 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://crdcn.ca/about/about-crdcn/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["census data", "cross-sectional surveys", "longitudinal surveys", "pilot data"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "Fondation Canadienne pur l'innovation", "Fondation Canadienne pur l'innovation"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.innovation.ca/contact"]}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Government of Canada, Statistics Canada, Research Data Centres Program", "institutionAdditionalName": ["CDR", "Gouvernement du Canada, Statistique Canada, Programme des Centres de donn\u00e9es de recherche", "RDC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.statcan.gc.ca/eng/microdata/data-centres", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["infostats@statcan.gc.ca"]}, {"institutionName": "MCMaster University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mcmaster.ca/", "institutionIdentifier": ["ROR:02fa3aq29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Social Sciences and Humanities Research Council", "institutionAdditionalName": ["CRSH", "Conseil de recherches en sciences humaines du Canada", "SSHRC"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.sshrc-crsh.gc.ca/home-accueil-eng.aspx", "institutionIdentifier": ["ROR:04j5jqy92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sshrc-crsh.gc.ca/contact_us-contactez_nous/index-eng.aspx"]}] [{"policyName": "Accessing RDC Data", "policyURL": "https://crdcn.ca/publications-data/access-crdcn-data/"}, {"policyName": "Microdata Access Portal application process", "policyURL": "https://www.statcan.gc.ca/eng/microdata/data-centres/access"}, {"policyName": "Policy on Informing Users of Data Quality and Methodology", "policyURL": "https://www.statcan.gc.ca/eng/about/policy/info-user"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://laws.justice.gc.ca/eng/acts/C-42/FullText.html"}] restricted [] ["unknown"] {} ["none"] ["none"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Fees can apply to certain research projects conducted in the RDCs. Consult the Access & Fee-For-Service Policy to learn more. All partners: https://crdcn.ca/about/partners/ 2015-06-22 2021-10-13 +r3d100011601 Structural Biology Data Grid eng [{"additionalName": "SBGrid Data Bank", "additionalNameLanguage": "eng"}] https://data.sbgrid.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.1hqd55", "OMICS_21660", "RRID:SCR_003511", "RRID:nif-0000-37641"] ["data@sbgrid.org", "https://data.sbgrid.org/contact"] Open access to macromolecular X-ray diffraction and MicroED datasets. The repository complements the Worldwide Protein Data Bank. SBDG also hosts reference collection of biomedical datasets contributed by members of SBGrid, Harvard and pilot communities. eng ["disciplinary", "institutional"] {"size": "455 datasets", "updatedp": "2018-12-14"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://data.sbgrid.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["X-ray crystallography", "macromolecular models", "nuclear magnetic resonance", "structural biology", "x-ray diffraction"] [{"institutionName": "Harvard Medical School", "institutionAdditionalName": ["HMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hms.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sliz@hkl.hms.harvard.edu"]}, {"institutionName": "SBGrid Software Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sbgrid.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sbgrid.org/about/contact/"]}] [{"policyName": "Policies, Terms of Use and Guidelines", "policyURL": "https://data.sbgrid.org/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] open [{"dataUploadLicenseName": "Terms of use", "dataUploadLicenseURL": "https://data.sbgrid.org/policies/"}] ["unknown"] yes {} ["DOI"] https://data.sbgrid.org/help/cite/ [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} SBGrid Data Bank is covered by Thomson Reuters Data Citation Index. 2015-06-05 2019-01-17 +r3d100011602 EELS Data Base eng [{"additionalName": "Electron energy loss spectroscopy Data Base", "additionalNameLanguage": "eng"}, {"additionalName": "Inner & Outer Shell Excitation Spectrum Repository", "additionalNameLanguage": "eng"}] https://eelsdb.eu/ ["ISSN 2430-3593"] ["sfmu@sfmu.fr"] The EELS database is a public interactive consultable web repository of outer-shell and inner-shell excitation spectra from Electron Energy Loss Spectroscopy and X-Ray experiments, which forms a reference catalog of fine structures for materials. Each spectrum is available with a full set of recording parameters providing a complete overview of the working conditions. The database must also be seen as a research tool for EEL spectroscopists, theoreticians, students, or private firms and a central “location” for the growing EELS community. eng ["disciplinary"] {"size": "276 spectra", "updatedp": "2018-12-14"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://eelsdb.eu/about/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["XAS", "condensed matter", "material science", "periodic table", "spectroscopy", "x-ray"] [{"institutionName": "CEMES - CNRS", "institutionAdditionalName": ["Centre d\u2019\u00c9laboration de Mat\u00e9riaux et d\u2019Etudes Structurales (UPR 8011) - Centre National de la Recherche Scientifique"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cemes.fr/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cemes.fr/admin01?lang=en"]}, {"institutionName": "French microscopy society SF(my)", "institutionAdditionalName": ["SF\u00b5", "Societ\u00e9 Francaise des Microscopes"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://90plan.ovh.net/~sfmuredh/thewebsite/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sfmu@sfmu.fr"]}, {"institutionName": "METSA", "institutionAdditionalName": ["Electron Microscopy and Atom Probe", "Microscopie Electronique et Sonde Atomique"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://metsa.prod.lamp.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://metsa.prod.lamp.cnrs.fr/contact"]}, {"institutionName": "Universit\u00e9 de Nantes, Institut des Mat\u00e9riaux Jean Rouxel", "institutionAdditionalName": ["IMN"], "institutionCountry": "FRA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs-imn.fr/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cnrs-imn.fr/index.php/en/"]}, {"institutionName": "esteem2", "institutionAdditionalName": ["european network for electron microscopy"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/rcn/104478_en.html", "institutionIdentifier": [], "responsibilityStartDate": "2012-10-01", "responsibilityEndDate": "2016-09-30", "institutionContact": ["https://cordis.europa.eu/project/rcn/104478_en.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}] restricted [{"dataUploadLicenseName": "Open Data Commons Open Database License", "dataUploadLicenseURL": "http://opendatacommons.org/licenses/odbl/"}] ["unknown"] {} ["none"] https://eelsdb.eu/about/ ["none"] no unknown [] [] {"syndication": "https://eelsdb.eu/spectra/feed/", "syndicationType": "RSS"} 2015-06-08 2021-08-24 +r3d100011604 Astronomical Data Archives Center eng [{"additionalName": "ADAC", "additionalNameLanguage": "eng"}, {"additionalName": "ADC", "additionalNameLanguage": "eng"}, {"additionalName": "Astronomy Data Center", "additionalNameLanguage": "eng"}] [] ["data_center @ dbc.nao.ac.jp"] The Astronomical Data Archives Center (ADAC) provides access to astronomical data from all over the world with links to online data catalogs, journal archives, imaging services and data archives. Users can access the VizieR catalogue service as well as the Hubble Ultra Deep Field Data by requesting password access. ADAC also provides access to the SMOKA public science data obtained through the Subaru Telescope in Hawaii as well as Schmidt Telescope at the University of Tokyo & MITSuME and KANATA Telescope at Higashi-Hiroshima Observatory. Users may need to contact the ADAC for password access or create user accounts for the various data services accessible through the ADAC site. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["astrometry", "high-energy", "photometry", "radio", "sky survey", "spectroscopy"] [{"institutionName": "National Astronomical Observatory of Japan, Astronomy Data Center", "institutionAdditionalName": ["ADC", "NAOJ"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nao.ac.jp/en/project/adc.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["consult @ ana.nao.ac.jp"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dbc.nao.ac.jp/"}] restricted [] [] {"api": "ftp://dbc.nao.ac.jp/DBC/ADAC/", "apiType": "FTP"} ["none"] [] no unknown [] [] {} Astronomical Data Analysis Center was reorganized to Astronomy Data Center (ADC) and Center for Computational Astrophysics (CfCA) on 2006 April 1st. Astronomical Data Center has been renamed Astronomical Data Archives Center (ADAC) (2006.5.11). 2015-07-21 2018-12-14 +r3d100011609 PLANTS Database eng [{"additionalName": "PlantsList of Accepted Nomenclature, Taxoomy & Symbols Database", "additionalNameLanguage": "eng"}] https://plants.usda.gov/java/ [] ["plants@ftc.usda.gov"] The PLANTS Database provides standardized information about the vascular plants, mosses, liverworts, hornworts, and lichens of the U.S. and its territories. It includes names, plant symbols, checklists, distributional data, species abstracts, characteristics, images, crop information, automated tools, onward Web links, and references. This information primarily promotes land conservation in the United States and its territories, but academic, educational, and general use is encouraged. PLANTS reduces government spending by minimizing duplication and making information exchange possible across agencies and disciplines. eng ["disciplinary"] {"size": "more than 50.000 plant images", "updatedp": "2018-01-17"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.nrcs.usda.gov/wps/portal/nrcs/detail/national/plantsanimals/plants/?&cid=stelprdb1047060 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["characteristics", "crop information", "distribution", "ecology", "fact sheets", "plant guides", "plant profiles", "plant symbols", "species abstracts", "taxonomy"] [{"institutionName": "U.S. Department of Agriculture, Natural Resources Conservation Service", "institutionAdditionalName": ["USDA, NRCS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/site/national/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://www.usda.gov/policies-and-links"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}, {"dataLicenseName": "other", "dataLicenseURL": "https://plants.usda.gov/java/intellectualPlants"}] closed [] ["unknown"] {} ["none"] https://plants.usda.gov/java/citePlants ["none"] yes yes [] [] {} The National Plant Data Team provides national and international leadership on plant information for the United States and its territories. The Team acquires, develops, and disseminates plant information to support USDA, NRCS and other efforts to improve the ecological health of the land. The Team maintains the PLANTS Database to support a variety of conservation activities. PLANTS is a collaborative effort of the USDA NRCS National Plant Data Team (NPDT), the USDA NRCS Information Technology Center (ITC), The USDA National Information Technology Center (NITC), and many other partners. Partners: https://plants.usda.gov/partners.html 2015-07-20 2018-12-14 +r3d100011611 Stanford Network Analysis Project eng [{"additionalName": "SNAP", "additionalNameLanguage": "eng"}, {"additionalName": "Stanford Large Network Dataset Collection", "additionalNameLanguage": "eng"}] http://snap.stanford.edu/index.html [] ["http://snap.stanford.edu/contact.html", "snap-webmaster@cs.stanford.edu"] Stanford Network Analysis Platform (SNAP) is a general purpose network analysis and graph mining library. It is written in C++ and easily scales to massive networks with hundreds of millions of nodes, and billions of edges. It efficiently manipulates large graphs, calculates structural properties, generates regular and random graphs, and supports attributes on nodes and edges. SNAP is also available through the NodeXL which is a graphical front-end that integrates network analysis into Microsoft Office and Excel. The SNAP library is being actively developed since 2004 and is organically growing as a result of our research pursuits in analysis of large social and information networks. Largest network we analyzed so far using the library was the Microsoft Instant Messenger network from 2006 with 240 million nodes and 1.3 billion edges. The datasets available on the website were mostly collected (scraped) for the purposes of our research. The website was launched in July 2009. eng ["disciplinary"] {"size": "50 large network datasets", "updatedp": "2018-12-14"} 2009 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://snap.stanford.edu/about.html [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["citation networks", "collaboration networks", "communication networks", "emails", "information networks", "internet networks", "road networks", "social networks", "web graphs"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stanford.edu/contact/"]}] [{"policyName": "SNAP user documentation", "policyURL": "http://snap.stanford.edu/snap/doc.html"}, {"policyName": "Tutorials", "policyURL": "http://cs.stanford.edu/people/jure/teaching.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "http://snap.stanford.edu/snap/doc/snapuser-ref/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://snap.stanford.edu/snap/license.html"}] restricted [] [] yes {} ["none"] http://snap.stanford.edu/citing.html [] yes unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} 2015-08-03 2021-07-20 +r3d100011612 KONECT eng [{"additionalName": "Koblenz Network Collection", "additionalNameLanguage": "eng"}] http://konect.cc/ [] ["jerome.kunegis@unamur.be"] This is the KONECT project, a project in the area of network science with the goal to collect network datasets, analyse them, and make available all analyses online. KONECT stands for Koblenz Network Collection, as the project has roots at the University of Koblenz–Landau in Germany. All source code is made available as Free Software, and includes a network analysis toolbox for GNU Octave, a network extraction library, as well as code to generate these web pages, including all statistics and plots. KONECT contains over a hundred network datasets of various types, including directed, undirected, bipartite, weighted, unweighted, signed and rating networks. The networks of KONECT are collected from many diverse areas such as social networks, hyperlink networks, authorship networks, physical networks, interaction networks and communication networks. The KONECT project has developed network analysis tools which are used to compute network statistics, to draw plots and to implement various link prediction algorithms. The result of these analyses are presented on these pages. Whenever we are allowed to do so, we provide a download of the networks. eng ["disciplinary"] {"size": "1.326 network datasets; computed 41.379 graph statistics; generated 83.920 plots", "updatedp": "2021-05-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://konect.cc/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["affilation networks", "animal networks", "authorship networks", "citation networks", "communications networks", "computer networks", "feature networks", "folksonomies", "human contact networks", "human social networks", "hyperlink networks", "interaction networks", "lexical networks", "metabolic networks", "miscellaneous networks", "network analysis", "online contact networks", "online social networks", "physical networks", "rating networks", "software networks", "statistics", "text networks", "trophic networks"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Program", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/257859", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "Hasso Plattner Institut, Future SOC Lab", "institutionAdditionalName": ["HPI, Future SOC Lab"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hpi.de/forschung/future-soc-lab/projekte/projektarchiv.html", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "2012", "institutionContact": ["futuresoc-lab-info@hpi.de"]}, {"institutionName": "ROBUST Project", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://robust-project.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "Univerity of Namur", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unamur.be/en", "institutionIdentifier": ["ROR:03d1maw17"], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Namur, Namur Institute for Complex Systems", "institutionAdditionalName": ["NAXYS"], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.naxys.be/", "institutionIdentifier": [], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Koblenz Landau, Institute for Web Science and Technologies", "institutionAdditionalName": ["WeST"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://west.uni-koblenz.de/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "2020", "institutionContact": ["http://west.uni-koblenz.de/de/ueber-uns/kontakt"]}] [{"policyName": "KONECT handbook of network analysis", "policyURL": "https://github.com/kunegis/konect-handbook/raw/master/konect-handbook.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/#GPL"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.0/de/deed.en"}] restricted [] ["unknown"] no {} ["none"] http://konect.cc/about/ [] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} 2015-08-11 2021-05-17 +r3d100011623 TROLLing eng [{"additionalName": "Troms\u00f8 Repository of Language and Linguistics", "additionalNameLanguage": "eng"}] https://trolling.uit.no [] ["https://site.uit.no/trolling/contact/", "researchdata@hjelp.uit.no"] The Tromsø Repository of Language and Linguistics (TROLLing) is a FAIR-aligned repository of linguistic data and statistical code. The archive is open access, which means that all information is available to everyone. All data are accompanied by searchable metadata that identify the researchers, the languages and linguistic phenomena involved, the statistical methods applied, and scholarly publications based on the data (where relevant). Linguists worldwide are invited to deposit data and statistical code used in their linguistic research. TROLLing is a special collection within DataverseNO (http://doi.org/10.17616/R3TV17), and C Centre within CLARIN (Common Language Resources and Technology Infrastructure, a networked federation of European data repositories; http://www.clarin.eu/), and harvested by their Virtual Language Observatory (VLO; https://vlo.clarin.eu/). eng ["disciplinary"] {"size": "84 datasets; 2.716 files", "updatedp": "2020-04-01"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://site.uit.no/trolling/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "curated", "language", "linguistics"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARINO", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Norway"], "institutionCountry": "NOR", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://clarin.w.uib.no/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["clarin@uib.no"]}, {"institutionName": "UiT The Arctic University of Norway", "institutionAdditionalName": ["UiT Noregs arktiske universitet", "UiT Norges arktiske universitet", "Universitetet i Troms\u00f8", "University of Troms\u00f8"], "institutionCountry": "NOR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://en.uit.no/", "institutionIdentifier": ["FundRef:doi:10.13039/100007465", "GRID:grid.10919.30", "ISNI:0000000122595234", "ROR:00wge5k78", "Wikidata:Q279724"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["research-data@support.uit.no"]}] [{"policyName": "DataverseNO Policy Framework", "policyURL": "https://site.uit.no/dataverseno/about/policy-framework/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] open [{"dataUploadLicenseName": "DataverseNO Deposit Agreement", "dataUploadLicenseURL": "https://site.uit.no/dataverseno/about/policy-framework/deposit-agreement/"}] ["DataVerse"] yes {"api": "https://dataverse.no/oai?verb=ListRecords&metadataPrefix=oai_dc&set=trolling", "apiType": "OAI-PMH"} ["DOI"] https://doi.org/10.15497/rda00040 [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}] {"syndication": "https://site.uit.no/trolling/feed/", "syndicationType": "RSS"} Metadata from TROLLing are harvested/indexed by several discovery services, including the CLARIN Virtual Language Observatory (VLO; https://vlo.clarin.eu/), B2FIND (http://b2find.eudat.eu/) BASE (https://www.base-search.net), DataCite Search (https://search.datacite.org), Google Dataset Search (https://toolbox.google.com/datasetsearch), ExLibris Primo (https://www.exlibrisgroup.com/products/primo-discovery-service/). 2015-06-12 2021-02-16 +r3d100011625 International Aid Transparency Initiative eng [{"additionalName": "IATI", "additionalNameLanguage": "eng"}, {"additionalName": "IITA", "additionalNameLanguage": "fra"}, {"additionalName": "Initiative internationale pour la transparence de l\u2019aide", "additionalNameLanguage": "fra"}] https://iatistandard.org/en/ [] ["https://iatistandard.org/en/contact/"] IATI is a voluntary, multi-stakeholder initiative that seeks to improve the transparency of aid, development, and humanitarian resources in order to increase their effectiveness in tackling poverty. IATI brings together donor and recipient countries, civil society organisations, and other experts in aid information who are committed to working together to increase the transparency and openness of aid. - See more at: https://iatistandard.org/en/about/#sthash.BYPZ6NPt.dpuf eng ["disciplinary"] {"size": "5.770 datasets", "updatedp": "2018-01-17"} 2008 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://iatistandard.org/en/using-data/iati-tools-and-resources/using-iati-registry/ [{"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["cash flow", "control", "development aid agency", "spending", "trancparency"] [{"institutionName": "International Aid Transparency Governing board", "institutionAdditionalName": ["IATI secretariat"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://iatistandard.org/en/about/governance/who-runs-iati/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://iatistandard.org/en/contact/"]}, {"institutionName": "International Aid Transparency Initiative Steering Committee", "institutionAdditionalName": ["IATI Steering Committee"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://iatistandard.org/en/about/governance/members-assembly-documents/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@iatistandard.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://iatistandard.org/en/guidance/preparing-organisation/organisation-data-publication/how-to-license-your-data/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://iatistandard.org/documents/62/The-IATI-Licensing-Standard.doc"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opendefinition.org/od/2.1/en/"}] restricted [] ["CKAN"] yes {"api": "http://reference.iatistandard.org/202/guidance/datastore/reference/data-api/", "apiType": "other"} ["none"] [] no unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Publishers:https://www.iatiregistry.org/publisher; 2015-06-26 2020-01-13 +r3d100011626 ETH Data Archive eng [] https://login.data-archive.ethz.ch/register [] ["data-archive@library.ethz.ch"] ETH Data Archive is ETH Zurich's long-term preservation solution for digital information such as research data, documents or images. It serves as the backbone of data curation and for most of its content, it is a “dark archive” without public access. In this capacity, the ETH Data Archive also archives the content of ETH Zurich’s Research Collection which is the primary repository for members of the university and the first point of contact for publication of data at ETH Zurich. All data that was produced in the context of research at the ETH Zurich, can be published and archived in the Research Collection. Direct access to the ETH Data Archive is intended only for customers who need to deposit software source code within the framework of ETH transfer Software Registration. An automated connection to the ETH Data Archive in the background ensures the medium to long-term preservation of all publications and research data. eng ["institutional"] {"size": "565 research data", "updatedp": "2020-01-29"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.library.ethz.ch/en/ms/Forschungsdatenmanagement-und-Datenerhalt/ETH-Data-Archive [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "ETH Z\u00fcrich, ETH-Bibliothek", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.library.ethz.ch/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@library.ethz.ch"]}] [{"policyName": "Guidelines for research integrity and good scientific practice at the ETH Z\u00fcrich", "policyURL": "https://rechtssammlung.sp.ethz.ch/Dokumente/414en.pdf"}, {"policyName": "Open-Access-Policy der ETH Z\u00fcrich", "policyURL": "http://www.library.ethz.ch/de%20%20/ms/Open-Access-an-der-ETH-Zuerich/Open-Access-Policy-der-ETH-Zuerich"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-2-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/ch/deed.en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/alphabetical"}] restricted [] ["other"] yes {} ["DOI"] http://www.library.ethz.ch/en/ms/Open-access-at-ETH-Zurich/Publishing-research-data#collapse1516925978 [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ETH Data Archive is covered by Thomson Reuters Data Citation Index. According to supplier information, the software in use is compliant with the OAIS Reference Model (ISO 14721). 2015-06-18 2020-01-29 +r3d100011627 Polar Rock Repository eng [{"additionalName": "PRR", "additionalNameLanguage": "eng"}] http://research.bpcrc.osu.edu/rr/ ["RRID:SCR_002212", "RRID:nlx_154740"] ["curator@bpcrc.osu.edu"] The Polar Rock Repository is a national facility constructed adjacent to Scott Hall, home of the Byrd Polar Research Center, The Ohio State University. It is supported by the National Science Foundation's Office of Polar Programs. The repository houses rock samples from Antarctica, the Arctic, southern South America and South Africa. The polar rock collection and database includes field notes, photos, maps, cores, powder and mineral residues, thin sections, as well as microfossil mounts, microslides and residues. Rock samples may be borrowed for research by university scientists from anywhere in the world. Samples may also be borrowed for educational or museum use in the United States. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://research.bpcrc.osu.edu/rr/policy.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["antarctica", "arctic", "fossils", "geology", "minerals", "rock sample", "sediment"] [{"institutionName": "National Science Foundation, Office of Polar Programs", "institutionAdditionalName": ["NSF, OPP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/div/index.jsp?div=OPP", "institutionIdentifier": ["ROR:05nwjp114"], "responsibilityStartDate": "2012-04-01", "responsibilityEndDate": "", "institutionContact": ["OPPwebmaster@nsf.gov"]}, {"institutionName": "Ohio State University, Byrd Polar and Climate Research Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://bpcrc.osu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://byrd.osu.edu/contact", "www@bprc.mps.ohio-state.edu"]}, {"institutionName": "Ohio State University, Office of Sponsored Programs", "institutionAdditionalName": ["OSU-OSP"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://osp.osu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2012-04-01", "responsibilityEndDate": "", "institutionContact": ["http://osp.osu.edu/contact/"]}] [{"policyName": "PRR Policy for sample donation, distribution and publication", "policyURL": "http://research.bpcrc.osu.edu/rr/policy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://research.bpcrc.osu.edu/rr/policy.php"}] restricted [{"dataUploadLicenseName": "PRR Policy", "dataUploadLicenseURL": "http://research.bpcrc.osu.edu/rr/policy.php"}] ["unknown"] {} ["none"] http://research.bpcrc.osu.edu/rr/about/ [] yes yes [] [] {} This material is based upon work supported by the National Science Foundation, Office of Polar Programs, under Grant No. 1141906. 2015-06-29 2020-01-29 +r3d100011630 Australian Drosophila Ecology and Evolution Resource eng [{"additionalName": "ADEER", "additionalNameLanguage": "eng"}] https://adeer.esrc.info/ [] [] >>>!!!<<< data is from publications and the repository is now closed >>>!!!<<< The Australian Drosophila Ecology and Evolution Resource (ADEER) from the Hoffmann lab and other contributors is a nationally significant life science collection. The Drosophila Clinal Data Collection contains data on populations along the eastern coast of Australia. It remains an excellent resource for understanding past and future evolutionary responses to climate change. The Drosophila Genomic Data Collection hosts Drosophila genomes sequenced as part of the Genomic Basis for Adaptation to Climate Change Project. 23 genomes have been sequenced as part of this project. Currently assemblies and annotations are available for Drosophila birchii, D. bunnanda, D. hydei, and D. repleta. The Drosophila Species Distribution Data Collection contains distribution data of nine drosophilid species that have been collected in Australia by the Hoffmann lab and other research groups between 1924 and 2005. More than 300 drosophilid species have been identified in the tropical and temperate forests located on the east coast of Australia. Many species are restricted to the tropics, a few are temperate specialists, and some have broad distributions across climatic regions. Their varied distribution along the tropical - temperate cline provide a powerful tool for studying climate adaptation and species distribution limits. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://adeer.esrc.info/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological adaptation", "climate change", "ecological genetics", "evolutionary genetics", "evolutionary impact", "field surveys", "fly population", "genome", "terrestrial ecology"] [{"institutionName": "Australian Government, National Collaborative Research Infrastructure Strategy Program", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}, {"institutionName": "Australian Museum, Dr. Shane F. McEvey", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://australianmuseum.net.au/get-involved/staff-profiles/shane-mcevey/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "CSIRO, Black Mountain Laboratories, Oakeshott Lab", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csiro.au/en/Locations/ACT/Black-Mountain", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["john.oakeshott@csiro.au"]}, {"institutionName": "Monash University, Dr. Carla Sgr\u00f2's Research Group", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://carlasgrolab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://carlasgrolab.org/contact/"]}, {"institutionName": "NeCTAR", "institutionAdditionalName": ["National eResearch Collaboration Tools and Resources"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://nectar.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nectar.org.au/contact/"]}, {"institutionName": "Science and Industry Endowment Fund", "institutionAdditionalName": ["SIEF"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sief.org.au/", "institutionIdentifier": ["ROR:04c4mj004"], "responsibilityStartDate": "2011", "responsibilityEndDate": "2015", "institutionContact": ["https://sief.org.au/contacts/"]}, {"institutionName": "University College London, Institute of Healthy Ageing, Partridge Lab", "institutionAdditionalName": ["UCL, IHA, Partridge Lab"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/biosciences/departments/genetics-evolution-and-environment/gee-labs/institute-healthy-ageing-iha/people/partridge-lab", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Melbourne Library, eScholarship Research Centre", "institutionAdditionalName": ["ESRC"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://esrc.unimelb.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unimelb.edu.au/contact"]}, {"institutionName": "University of Melbourne, Hoffmann Lab", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://adeer.esrc.info/biogs/DR00002b.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ary@unimelb.edu.au"]}, {"institutionName": "University of New England, Barker, Prof. James Stuart Flinton, Emeritus Prof.", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://adeer.esrc.info/biogs/DR00365b.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sbarker@une.edu.au"]}, {"institutionName": "VicNode", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://researchdata.edu.au/vicnode/673930", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About ADEER", "policyURL": "https://adeer.esrc.info/about.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {} ["DOI"] https://adeer.esrc.info/about.html ["none"] yes unknown [] [] {} Most data sets are openly available under a CC-BY licence and can be accessed on this site. Please see licence and citation information for specific datasets in the resource. 2015-07-21 2021-06-29 +r3d100011631 UniSA Research Data Access Portal eng [{"additionalName": "University of South Australia Research Data Access Portal", "additionalNameLanguage": "eng"}] https://data.unisa.edu.au/dap/ [] ["RDMS-Enquiries@unisa.edu.au"] The UniSA Data Access Portal showcases a range of Open Access research collections and datasets developed or collected by the University of South Australia. The UniSA Data Access Portal also highlights research projects and publications related to the available collections and datasets, and facilitates a variety of searches by researcher, organisation, discipline and keyword. Research collections and datasets available in Open Access can be freely downloaded and used to support your research in line with the terms of the licence under which they are made available. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.unisa.edu.au/dap/about.aspx [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PALS - Pregnancy and Lifestyle Study", "climate change", "grab samples", "hydrological modelling", "urban water"] [{"institutionName": "University of South Australia", "institutionAdditionalName": ["UniSA"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unisa.edu.au/", "institutionIdentifier": ["ROR:01p93h210", "RRID:SCR_011698", "RRID:nlx_97543"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unisa.edu.au/Research/Research-fellowships/Contact-us/"]}] [{"policyName": "Research Data Storage", "policyURL": "https://i.unisa.edu.au/askresearch/data-management/data-storage/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["unknown"] yes {} ["none"] ["none"] yes unknown [] [] {} includes Water Quality Major Open Data Collection. 2015-07-30 2021-07-02 +r3d100011632 OAGR eng [{"additionalName": "Online Ancient Genome Repository", "additionalNameLanguage": "eng"}] https://www.oagr.org.au/ [] [] It captures and catalogues ancient human genome and microbiome data, including raw sequence and processed data, along with metadata about its provenance and production. Included datasets are generated from ancient samples studied at the Australian Centre for Ancient DNA, University of Adelaide in collaboration with other research groups. Datasets and collections in OAGR are open data resources made freely available in a reusable form, using open file formats and licensed with minimal restrictions for reuse. Digital object identifiers (DOIs) are minted for included datasets and collections to facilitate persistent identification and citation. eng ["disciplinary"] {"size": "44 studies; 46 datasets; 12.664 Files;", "updatedp": "2020-01-29"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.oagr.org.au/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "enzyme", "gen sequencing", "human skeleton", "human skull", "molecular biology", "neandertal", "prehistory", "shotgun experiments"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Adelaide , Australian Centre for Ancient DNA", "institutionAdditionalName": ["ACAD"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.adelaide.edu.au/acad/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["maria.lekis@adelaide.edu.au"]}, {"institutionName": "eResearch SA", "institutionAdditionalName": ["eRSA"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.adelaide.edu.au/technology/research/intersect-partnership", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2019", "institutionContact": []}] [{"policyName": "OAGR Repository Guidelines", "policyURL": "https://www.oagr.org.au/about/repositoryguidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] {} ["DOI"] https://www.oagr.org.au/about/repositoryguidelines/ ["none"] no unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2015-08-06 2020-01-29 +r3d100011633 IMAS Data Portal eng [{"additionalName": "Institute for Marine and Antarctic Studies Data Portal", "additionalNameLanguage": "eng"}] https://data.imas.utas.edu.au/static/landing.html [] ["IMAS.DataManager@utas.edu.au"] The Institute for Marine and Antarctic Studies (IMAS) pursues multidisciplinary and interdisciplinary work to advance understanding of temperate marine, Southern Ocean, and Antarctic environments. IMAS research is characterised as innovative, relevant, and globally distinctive. Education at IMAS delivers world class programs, resulting in highly trained graduates who serve the needs of academic institutions, industry, government, and the community. IMAS is naturally advantaged by its Southern Ocean location proximal to Antarctica, and hosts one of the world's largest critical masses of marine and Antarctic researchers. IMAS also operate facilities and host data sets of national and global interest and to the benefit of the community. The guiding framework of IMAS is that all data that are not commercial-in-confidence or restricted by legislation or agreement are owned by the University on behalf of the community or Commonwealth, are hosted by an organisation, and are shared with researchers for analysis and interpretation. IMAS is committed to the concept of Open Data. The IMAS Data Portal is an online interface showcasing the IMAS metadata catalogue and all available IMAS data. The portal aims to make IMAS data freely and openly available for the benefit of Australian marine and environmental science as a whole. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.imas.utas.edu.au/imas/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological", "biosphere", "chemical", "chlorophyll", "ecology", "ocean temperature", "oceanography", "photosynthesis", "physical-water", "sea surface", "vegetation"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ands.org.au/contact-us"]}, {"institutionName": "Integrated Marine Observing System", "institutionAdditionalName": ["IMOS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://imos.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://imos.org.au/contact-us/"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}, {"institutionName": "Tasmanian Partnership for Advanced Computing", "institutionAdditionalName": ["TPAC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.tpac.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tpac.org.au/contact/"]}, {"institutionName": "University of Tasmania, Institute for Marine and Antarctic Studies", "institutionAdditionalName": ["IMAS"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.imas.utas.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imas.utas.edu.au/imas/contact-us"]}] [{"policyName": "Data Management Guidelines", "policyURL": "https://www.imas.utas.edu.au/__data/assets/pdf_file/0003/782121/IMAS_Data_Management_Guidelines-2015.pdf"}, {"policyName": "IMAS Data Management Policy", "policyURL": "https://www.imas.utas.edu.au/__data/assets/pdf_file/0009/782118/IMAS-Data-Management-Policy-2015.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "IMAS Data Submission Tool", "dataUploadLicenseURL": "https://data.imas.utas.edu.au/submit/media/guide/IMAS-DaST-UserGuide_EEEeyj3.pdf"}] ["unknown"] {} ["DOI"] https://help.aodn.org.au/user-guide-introduction/aodn-portal/data-use-acknowledgement/ ["none"] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The IMOS (Integrated Marine Observing System) Data Portal User Guide provides a set of instructions for navigating the portal features. The screenshots in this guide are taken from the IMOS portal, but the instructions are also applicable to the IMAS Data Portal and provide a useful framework for discovering IMAS data. 2015-08-10 2020-01-31 +r3d100011634 Boola Boola Forest bird study eng [] http://data.cerdi.edu.au/gippsland_birds.php [] ["wendy.wright@federation.edu.au"] This study assessed differences in avian biodiversity across different forest age-classes, including mature stands (> 100 years), in a managed, mixed-species eucalypt forest located in Gippsland, south-eastern Australia. Avian surveys and detailed habitat measurements were initially carried out in 50 two hectare stands ranging in age from 100 years. Extensive wildfire which occurred during the study reduced the number of sites to 28 (seven in each of four age classes) upon which analyses and inferences were made. Mature vegetation (> 100 years) had the greatest richness, abundance and biomass of birds. Key ecological resources, such as tree-hollows for nesting, generally occurred mostly in stands > 60 years. There were quantum increases in all measures of avian biodiversity in mature stands (> 100 years). The visualisation of the survey data is part of an interoperable web-GIS maintained by the Centre for eResearch and Digital Innovation (CeRDI) at Federation University Australia (FedUni). eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.cerdi.edu.au/cb_pages/eresearch.php [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Gippsland", "avifauna", "birds", "forest", "forest management", "timber harvesting"] [{"institutionName": "ANZ Trustees Foundation", "institutionAdditionalName": ["Australia and New Zealand Banking Group Limited"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.anz.com.au/personal/", "institutionIdentifier": ["ROR:012d8w472"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.anz.com.au/support/contact-us/"]}, {"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "Federation University Australia", "institutionAdditionalName": ["FedUni"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://federation.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wendy.wright@federation.edu.au"]}, {"institutionName": "Federation University Australia , Centre for eResearch and Digital Innovation", "institutionAdditionalName": ["CeRDI"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cerdi.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cerdi.edu.au/contactus"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}] [{"policyName": "Research", "policyURL": "http://www.cerdi.edu.au/CollaborativeResearchPrograms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/au/"}] closed [] ["unknown"] {"api": "https://www.opengeospatial.org/standards/wms", "apiType": "other"} ["none"] ["none"] yes unknown [] [] {} 2015-08-10 2020-01-31 +r3d100011635 EarthByte eng [] https://www.earthbyte.org/ [] ["https://www.earthbyte.org/contact-us-3/"] EarthByte is an internationally leading eGeoscience collaboration between several Australian Universities, international centres of excellence and industry partners. One of the fundamental aims of the EarthByte Group is geodata synthesis through space and time, assimilating the wealth of disparate geological and geophysical data into a four-dimensional Earth model including tectonics, geodynamics and surface processes. The EarthByte Group is pursuing open innovation via collaborative software development, high performance and distributed computing, “big data” analysis and by making open access digital data collections available to the community. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.earthbyte.org/what-is-earthbyte/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["archaean geodynamics", "basin evolution", "exploration geodynamics", "global geodynamics", "palaeo-climate modelling", "plate kinematics", "regional geodynamics", "structural geology", "surface processes", "tectonics"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "University of Sydney, School of Geosciences, EarthByte Group", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.geosci.usyd.edu.au/research/re_earthbyte.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dietmar.muller@sydney.edu.au", "maria.seton@sydney.edu.au", "patrice.rey@sydney.edu.au"]}] [{"policyName": "The EarthByte Group", "policyURL": "http://www.geosci.usyd.edu.au/research/re_earthbyte.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.sydney.edu.au/help/copyright/"}] restricted [] ["unknown"] yes {} ["DOI"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The EarthByte research group collaborates with many national and international research institutions as well as major international industry partners. See our Research Archive to view past projects, http://www.earthbyte.org/category/research-archive/ 2015-08-11 2020-01-31 +r3d100011636 dharmae eng [{"additionalName": "Data Hub of Australian Research on Marine & Aquatic Ecocultures", "additionalNameLanguage": "eng"}] https://dharmae.research.uts.edu.au/ [] ["eresearch-it@uts.edu.au"] In a changing climate, water raises increasingly complex challenges: concerning its quantity, quality, availability, allocation, use and significance as a habitat, resource and cultural medium. Dharmae, a ‘Data Hub of Australian Research on Marine and Aquatic Ecocultures’ brings together multi-disciplinary research data relating to water in all these forms. The term “ecoculture” guides the development of this collection and its approach to data discovery. Ecoculture recognizes that, since nature and culture are inextricably linked, there is a corresponding need for greater interconnectedness of the different knowledge systems applied to them. eng ["disciplinary"] {"size": "240 items; 2 collections;", "updatedp": "2017-07-13"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dharmae.research.uts.edu.au/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Murray-Darling Basin", "aborigines", "climate change", "ecoculture", "indigenous knowledge", "talking fish project"] [{"institutionName": "Australian Government, Department of Education and Training, Education Investment Fund, Super Science Initiative", "institutionAdditionalName": ["EIF"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/super-science-initiative", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}, {"institutionName": "Australian Government, Department of Education and Training, National Collaborative Research Infrastructure", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}, {"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arc.gov.au/", "institutionIdentifier": ["ROR:05mmh0f86", "RRID:SCR_000952", "RRID:nlx_156882"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.arc.gov.au/contacts-feedback/contacts"]}, {"institutionName": "Murray-Darling Basin Authority", "institutionAdditionalName": ["MDBA"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mdba.gov.au/", "institutionIdentifier": ["ROR:03cwpte63"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mdba.gov.au/contact-us"]}, {"institutionName": "New South Wales Government, Department of Primary Industries", "institutionAdditionalName": ["NSW, DPI"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dpi.nsw.gov.au/", "institutionIdentifier": ["ROR:050khh066"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dpi.nsw.gov.au/contact-us"]}, {"institutionName": "University of Technology, Sydney", "institutionAdditionalName": ["UTS"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uts.edu.au/", "institutionIdentifier": ["ROR:03f0f6041", "RRID:SCR_011711", "RRID:nlx_153963"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uts.edu.au/about/contacts/uts-contacts"]}] [{"policyName": "Digital Preservation Policy", "policyURL": "http://www.naa.gov.au/about-us/organisation/accountability/operations-and-preservation/digital-preservation-policy.aspx"}, {"policyName": "Important notices", "policyURL": "http://dharmae.research.uts.edu.au/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://dharmae.research.uts.edu.au/"}] restricted [] ["other"] {} ["none"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The collection include, but are not limited to the Aboriginal and Torres Strait Islander Data Archive (ATSIDA), Atlas of Living Australia (ALA), State Library of New South Wales (Indigenous Unit), Geoscience Australia and Geonames. 2015-08-12 2021-07-02 +r3d100011637 cropPAL eng [{"additionalName": "Compendium of crop Proteins with Annotated Locations", "additionalNameLanguage": "eng"}] https://crop-pal.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.p7btsb"] [] The compendium of crop Proteins with Annotate Locations (cropPAL) is a comprehensive collection of subcellular location annotation for proteins of hordeum vulgare (barley), tritium aestivum (wheat), oryza sativa (rice) and zea mays (corn) derived from published experimental localization studies and precompiled bioinformatic predictions. eng ["disciplinary"] {"size": "over 800 studies", "updatedp": "2020-03-25"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.annualreport.uwa.edu.au/previous-reports/annual-report-2013/agency-performance/Mission,-Vision-and-Objectives [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "GFP", "agriculture", "cell types", "chromosomes", "proteomics"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "Plant Energy Biology", "institutionAdditionalName": ["PEB"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://plantenergy.edu.au/", "institutionIdentifier": ["ROR:01a1mq059"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://plantenergy.edu.au/contact"]}, {"institutionName": "University of Western Australia", "institutionAdditionalName": ["UWA"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.uwa.edu.au/", "institutionIdentifier": ["ROR:047272k79", "RRID:SCR_012342", "RRID:nlx_74663"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uwa.edu.au/#uwaMenuGlobalContact"]}] [{"policyName": "Terms of use", "policyURL": "https://www.web.uwa.edu.au/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.web.uwa.edu.au/disclaimer-copyright/"}] closed [] ["unknown"] yes {} ["none"] https://crop-pal.org/ ["none"] yes unknown [] [] {} 2015-09-23 2021-07-02 +r3d100011638 University of Southern Queensland research data collection eng [] https://researchdata.edu.au/contributors/university-of-southern-queensland [] ["gacenga@usq.edu.au"] University of Southern Queensland Research Data Collection in Research Data Australia cover 123 subjects areas including Agricultural and Veterinary Sciences, Environmental Sciences and Engineering. eng ["disciplinary"] {"size": "29 data records;", "updatedp": "2020-04-02"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://researchdata.edu.au/page/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["UV ratings", "UVA wavelenghts", "UVB wavelenghts", "solar radiation science", "solice data", "weather"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.education.gov.au/contact-department"]}, {"institutionName": "University of Southern Queensland", "institutionAdditionalName": ["USQ"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usq.edu.au/", "institutionIdentifier": ["ROR:04sjbnx57", "RRID:SCR_000374", "RRID:nlx_46605"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Nathan.Downs@usq.edu.au"]}] [{"policyName": "ANDS Research Data Australia policies", "policyURL": "https://www.ands.org.au/online-services/research-data-australia/research-data-australia-policies"}, {"policyName": "All Policy and Procedure A-Z", "policyURL": "https://policy.usq.edu.au/lists"}, {"policyName": "Research Data and Primary Materials Management Procedure", "policyURL": "https://policy.usq.edu.au/documents/151985PL#4.3_Store"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [] ["unknown"] {} ["none"] https://ardc.edu.au/resources/working-with-data/citation-identifiers/ ["none"] yes yes [] [] {} 2015-08-19 2021-02-18 +r3d100011639 Australian Waterbird Surveys eng [{"additionalName": "AWS", "additionalNameLanguage": "eng"}] https://aws.ecosystem.unsw.edu.au/ [] ["ecosystem@unsw.edu.au"] Australian Waterbird Surveys (AWS) is an information source of waterbird communities around Australia, based on surveys of their diversity and numbers. It relies on rigorous data collection protocols and includes more than 50 waterbird species and up to 30 years of survey data. This open source also includes the extent of flooding of thousands of wetlands observed during our surveys. As a group, waterbirds can be sentinels of the ecological health of our wetlands and rivers. We hope this free information system will help track long-term changes in the environment, provide an assessment tool for individual species, report on our national and international responsibilities and help improve the way we manage our rivers and wetlands. It has been developed with the support of research and government partners. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.ands.org.au/__data/assets/pdf_file/0006/411999/unsw-poster2.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Eastern Australian Survey", "Lake Eyre", "Murray-Darling Basin", "Western Rivers", "ecosystem", "river", "wetlands", "wildlife"] [{"institutionName": "Australian Research Council", "institutionAdditionalName": ["ARC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arc.gov.au/", "institutionIdentifier": ["ROR:05mmh0f86", "RRID:SCR_000952", "RRID:nlx_156882"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.arc.gov.au/contacts-feedback/contacts"]}, {"institutionName": "National Health and Medical Research Council", "institutionAdditionalName": ["NHMRC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhmrc.gov.au/", "institutionIdentifier": ["ROR:011kf5r70", "RRID:SCR_011497", "RRID:nlx_156854"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhmrc.gov.au/contact-us"]}, {"institutionName": "University of New South Wales, Centre for Ecosystem Science", "institutionAdditionalName": ["UNSW, CES"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ecosystem.unsw.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ecosystem.unsw.edu.au/contact"]}] [{"policyName": "Accessibility", "policyURL": "https://www.unsw.edu.au/accessibility"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.unsw.edu.au/copyright-disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://research.unsw.edu.au/open-access"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.unsw.edu.au/copyright-disclaimer"}] restricted [] ["unknown"] yes {} ["none"] ["none"] unknown unknown [] [] {} 2015-08-25 2020-04-02 +r3d100011640 USC Research Bank research data eng [{"additionalName": "University of the Sunshine Coast Research Bank research data", "additionalNameLanguage": "eng"}] https://research.usc.edu.au/discovery/search?vid=61USC_INST:ResearchRepository [] ["https://libguides.usc.edu.au/researchbank/contact", "research-repository@usc.edu.au"] The USC Research Bank is the institutional research repository for the University of the Sunshine Coast. It provides an open access showcase of the University's scholarly research output ensuring that research is made available to the local, national and international communities. USC Research Bank is harvested by search engines, and is also indexed by the National Library of Australia's TROVE. By making research easily accessible, it also facilitates collaboration between researchers. Where possible, access to the full text of the publication is made available, in line with copyright permissions for each output. To access relevant research, use the Browse function, or specific records can be searched for by using the search box. Find research data by filtering by resource type 'Research Dataset'. eng ["institutional"] {"size": "35 items", "updatedp": "2020-04-02"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://research.usc.edu.au/vital/access/manager/About [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Australia", "Clinical sciences", "business and management", "ecology", "education systems", "environmental geosciences", "environmental science and management", "fisheries sciences", "forestry sciences", "medical and health sciences", "microbiology", "nursing", "physical geography", "specialist studies in education", "virtual herbarium"] [{"institutionName": "University of the Sunshine Coast", "institutionAdditionalName": ["USC"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usc.edu.au/", "institutionIdentifier": ["ROR:016gb9e15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://research.usc.edu.au/vital/access/manager/Contact"]}] [{"policyName": "User Terms & Conditions", "policyURL": "https://research.usc.edu.au/vital/access/manager/Terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://research.usc.edu.au/vital/access/manager/Copyright"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataUploadLicenseName": "Copyright", "dataUploadLicenseURL": "https://research.usc.edu.au/vital/access/manager/Copyright"}] ["unknown"] {} ["DOI"] [] no yes [] [] {} Data also available through collection of USC at Research data Australia https://researchdata.ands.org.au/contributors/university-of-the-sunshine-coast Citations at almost every entry. 2015-08-26 2021-07-02 +r3d100011643 Polar Geospatial Center eng [{"additionalName": "PGC", "additionalNameLanguage": "eng"}] https://www.pgc.umn.edu/ ["RRID:SCR_000402", "RRID:nlx_154743"] ["https://www.pgc.umn.edu/about/findus/", "pgc@umn.edu"] The Polar Geospatial Center provides geospatial support, mapping, and GIS/remote sensing solutions to researchers and logistics groups in the polar science community. eng ["disciplinary"] {"size": "more than 30.000 samples", "updatedp": "2015-07-14"} 2007 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.pgc.umn.edu/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerial photography", "aeromagnetic", "antarctic", "arctic", "geography", "geology", "geophysics", "geospatial field", "glaciology", "global climate", "ice", "meteorite", "satellite imagery"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Minnesota", "institutionAdditionalName": ["U of M"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://twin-cities.umn.edu/", "institutionIdentifier": ["ROR:017zqws13", "RRID:SCR_011674", "RRID:nlx_77683"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://twin-cities.umn.edu/contact-us"]}] [{"policyName": "Our Purpose", "policyURL": "https://www.pgc.umn.edu/about/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.pgc.umn.edu/data/"}] restricted [] ["unknown"] {"api": "https://developers.arcgis.com/javascript/", "apiType": "other"} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} The PGC is funded by National Science Foundation OPP Collaborative Agreement ANT-1043681. The Polar Geospatial Center (PGC) was initiated as the Antarctic Geospatial Information Center (AGIC) in 2007 under a National Science Foundation grant. 2015-07-14 2021-07-02 +r3d100011646 EchoBase eng [{"additionalName": "an integrated post-genomic database for E.coli", "additionalNameLanguage": "eng"}] https://www.york.ac.uk/res/thomas/index.cfm ["MIR:00000200", "RRID:SCR_002430", "RRID:nif-0000-02781"] ["ght2@york.ac.uk"] EchoBase is a database that curates new experimental and bioinformatic information about the genes and gene products of the model bacterium Escherichia coli K-12 strain MG1655. eng ["disciplinary"] {"size": "304 curated references relating to the 4.506 genes in this bacterium", "updatedp": "2017-07-20"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.york.ac.uk/res/thomas/Introduction.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Escherichia coli", "bioinformatics", "enteric flora", "gene expression", "genetics", "genomics", "microarray data", "protein-protein interaction", "proteomics"] [{"institutionName": "GlaxoSmithKline", "institutionAdditionalName": ["GSK"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://de.gsk.com/", "institutionIdentifier": ["ROR:01xsqw823"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://de.gsk.com/de-de/impressum/"]}, {"institutionName": "UK Research and Innovation, Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["UKRI, BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982", "RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gav.thomas@bbsrc.ak.uk", "https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "University of New York, Department of Biology", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.york.ac.uk/biology/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["biol-reception@york.ac.uk", "https://www.york.ac.uk/biology/contact/"]}, {"institutionName": "University of York", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.york.ac.uk/", "institutionIdentifier": ["ROR:04m01e293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.york.ac.uk/about/contact/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.york.ac.uk/about/legal-statements/#tab-3"}] closed [] ["MySQL"] yes {} ["none"] https://www.york.ac.uk/res/thomas/index.cfm [] yes yes [] [] {} EchoBASE is part of the International E. coli Alliance 2016-03-21 2021-08-25 +r3d100011647 IPK Gatersleben eng [{"additionalName": "Leibniz Institute of Plant Genetics and Crop Plant Research", "additionalNameLanguage": "eng"}, {"additionalName": "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung", "additionalNameLanguage": "deu"}] https://www.ipk-gatersleben.de/datenbanken/ [] ["https://www.ipk-gatersleben.de/kontakt/adresse/", "info@ipk-gatersleben.de"] The Institute of Plant Genetics and Crop Plant Research IPK Gatersleben, is a nonprofit research institution for crop genetics and molecular biology, and is part of the Leibniz Association. The mission of the IPK Gatersleben is to conduct basic and applied research in the area of plant genetics and crop plant research. The results of this work are not only of significant benefit to plant breeders and the agricultural industry, but also to the food, feed, and chemical industry. An additional research area, the use of renewable raw materials, is increasingly gaining in importance. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ipk-gatersleben.de/en/institute/about-us/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "biodiversity", "bioinformatics", "genetic diversity", "phenotypic diversity", "plant genomics"] [{"institutionName": "Land Sachsen-Anhalt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sachsen-anhalt.de/lang/english/sachsen-anhalt/succinctly/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sachsen-anhalt.de/meta/kontaktformular/"]}, {"institutionName": "Leibniz Gemeinschaft", "institutionAdditionalName": ["Leibniz Asscociation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/", "institutionIdentifier": ["ROR:01n6r0e97"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.leibniz-gemeinschaft.de/en/about-us/organisation/headquarters/contact-persons.html"]}, {"institutionName": "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung", "institutionAdditionalName": ["IPK", "Institute of Plant Genetics and Crop Plant Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipk-gatersleben.de/", "institutionIdentifier": ["ROR:02skbsp27", "RRID:SCR_011341", "RRID:nlx_157760"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipk-gatersleben.de/en/contact/address/"]}] [{"policyName": "Technology transfer", "policyURL": "https://www.ipk-gatersleben.de/en/technology-transfer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}] restricted [] ["other"] yes {"api": "https://edal.ipk-gatersleben.de/", "apiType": "other"} ["DOI"] https://www.datacite.org/citation.html [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The Federal ex situ Genebank for agricultural and horticultural crops of the IPK Gatersleben forms an essential component for the implementation of both national and international policy on conservation and and sustainable utilization of plant genetic resources. The Genebank Information System (https://www.ipk-gatersleben.de/en/gbisipk-gaterslebendegbis-i/) GBIS maps all processes and documents information related to conservation management and the distribution of material. In addition GBIS represents and interface for exchange of data with national and international databases. 2015-07-09 2021-07-02 +r3d100011648 AHEAD eng [{"additionalName": "European Archive of Historical EArthquake Data", "additionalNameLanguage": "eng"}] https://www.emidius.eu/AHEAD/ ["doi:10.6092/INGV.IT-AHEAD"] ["andrea.rovida@ingv.it", "mario.locati@ingv.it"] AHEAD, the European Archive of Historical Earthquake Data 1000-1899, is a distributed archive aiming at preserving, inventorying and making available, to investigators and other users, data sources on the earthquake history of Europe, such as papers, reports, Macroseismic Data Points (MDPs), parametric catalogues, and so on. eng ["disciplinary"] {"size": "About 6.000 earthquakes, about 350 data sources", "updatedp": "2021-12-10"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.emidius.eu/AHEAD/description.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquakes", "epicentre", "geology", "historical", "macroseismic", "seismic", "seismology"] [{"institutionName": "Bureau de Recherches G\u00e9ologiques et Mini\u00e8res", "institutionAdditionalName": ["BRGM"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.brgm.eu/", "institutionIdentifier": ["ROR:05hnb7x64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.brgm.fr/content/contact"]}, {"institutionName": "EPOS", "institutionAdditionalName": ["European Plate Observing System"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.epos-ip.org/", "institutionIdentifier": [], "responsibilityStartDate": "2015-10-01", "responsibilityEndDate": "2019-09-30", "institutionContact": ["epos.secretariat@ingv.it"]}, {"institutionName": "Institut Cartogr\u00e0fic i Geol\u00f2gic de Catalunya", "institutionAdditionalName": ["ICC", "IGC", "Institut Cartogr\u00e0fic de Catalunya"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icgc.cat/", "institutionIdentifier": ["ROR:03d2ezn18"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icgc.cat/en/The-ICGC/Contact"]}, {"institutionName": "Institut de radioprotection et de s\u00fbret\u00e9 nucl\u00e9aire", "institutionAdditionalName": ["IRSN"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irsn.fr/FR/Pages/Home.aspx", "institutionIdentifier": ["ROR:01ha22c77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.irsn.fr/FR/Contact/Pages/Question.aspx"]}, {"institutionName": "Institute of Engineering Seismology and Earthquake Engineering", "institutionAdditionalName": ["ITSAK"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.itsak.gr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.itsak.gr/en/contact/contact_form"]}, {"institutionName": "Instituto Portugu\u00eas do Mar e da Atmosfera", "institutionAdditionalName": ["IPMA", "Portuguese Institute for Sea and Atmosphere"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ipma.pt/pt/index.html", "institutionIdentifier": ["ROR:01sp7nd78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipma.pt/en/siteinfo/contacto.jsp"]}, {"institutionName": "Istituto Nazionale di Geofisica e Vulcanologia", "institutionAdditionalName": ["INGV", "National Institute of Geophysics and Volcanology"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ingv.it/", "institutionIdentifier": ["ROR:00qps9a02"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National and Kapodistrian University of Athens, School of Sciences, Department of Geology and Geoenvironment", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geol.uoa.gr/index.php/en", "institutionIdentifier": [], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Observatory of Belgium, Seismology-Gravimetry", "institutionAdditionalName": ["Koninklijke Sterrenwacht van Belgi\u00eb , Seismologie-Gravimetrie", "K\u00f6nigliche Sternwarte Belgiens, Seismologie-Gravimetrie", "Observatoire royal de Belgique, S\u00e9ismologie-Gravim\u00e9trie", "ROB"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://seismologie.be/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://seismologie.be/en/the-service/contact-us"]}, {"institutionName": "SERA", "institutionAdditionalName": ["Seismology and Earthquake Engineering Research Infrastructure Alliance for Europe"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sera-eu.org/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "2017-05-01", "responsibilityEndDate": "2020-04-30", "institutionContact": ["http://www.sera-eu.org/en/about/contact/"]}, {"institutionName": "Schweizerischer Erdbebendienst, ETH Z\u00fcrich", "institutionAdditionalName": ["SED", "Service Sismologique Suisse", "Servizio Sismico Svizzero", "Swiss Seismological Service"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.seismo.ethz.ch/de/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.seismo.ethz.ch/en/about-us/contact/"]}, {"institutionName": "University of Bergen, Department of Earth Sciences", "institutionAdditionalName": ["Universitetet i Bergen, Institutt for geovitenskap"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uib.no/en/geo", "institutionIdentifier": [], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": ["https://www.uib.no/en/about/74388/contact-information"]}, {"institutionName": "University of Helsinki, Institute of Seismology", "institutionAdditionalName": ["Helsingin yliopisto, Seismologian instituutti"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helsinki.fi/en/institute-of-seismology", "institutionIdentifier": [], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": ["https://www.helsinki.fi/en/institute-of-seismology/contact"]}, {"institutionName": "\u00c9lectricit\u00e9 de France SA", "institutionAdditionalName": ["EDF"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.edf.fr/", "institutionIdentifier": ["ROR:03wb8xz10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.edf.fr/contacts/institutionnels"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.emidius.eu/AHEAD/description.php#disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.emidius.eu/AHEAD/description.php#copyright"}] restricted [] ["MySQL"] {"api": "https://www.emidius.eu/services/europe/wfs/?service=WFS&request=getCapabilities", "apiType": "REST"} ["DOI"] https://www.emidius.eu/AHEAD/description.php#data_citation ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} AHEAD has supplied the earthquake list, and macroseismic intensity data points (MDPs) that have been processed with updated, repeatable procedures, regionally calibrated against a set of recent, instrumental earthquakes, to obtain earthquake parameters of the European PreInstrumental Earthquake CAtalogue (EPICA). EPICA aims at providing the seismological and engineering community a homogeneous, European parametric earthquake covering the time-window 1000-1899 with homogeneous moment magnitude (Mw) estimates. https://doi.org/10.13127/epica.1.1 2015-07-20 2021-12-10 +r3d100011650 International Argo Project eng [{"additionalName": "Argo.net", "additionalNameLanguage": "eng"}] http://www.argo.net/ [] ["argo@ucsd.edu", "support@argo.net"] Argo is an international programme using autonomous floats to collect temperature, salinity and current data in the ice-free oceans. It is teamed with the Jason ocean satellite series. Argo will soon reach its target of 3000 floats delivering data within 24 hours to researchers and operational centres worldwide. 23 countries contribute floats to Argo and many others help with float deployments. Argo has revolutionized the collection of information from inside the oceans. ARGO Project is organized in regional and national Centers with a Project Office, an Information Center (AIC) and 2 Global Data Centers (GDAC), at the United States and at France. Each DAC submits regularly all its new files to both USGODAE and Coriolis GDACs.The whole Argo data set is available in real time and delayed mode from the global data centres (GDACs). The internet addresses are: • https://nrlgodae1.nrlmry.navy.mil/ • http://www.argodatamgt.org . eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://argo.ucsd.edu/about/mission/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate", "fishery management", "floats", "global change", "marine safety", "marine transport", "mesoscale eddies", "ocean circulation model", "ocean dynamics", "ocean observations", "offshore industry", "salinity", "temperature", "velocity", "weather"] [{"institutionName": "Argo Global Data Cenre at IFREMER, Argo Data Management", "institutionAdditionalName": ["ARGO GDAC IFREMER", "Euro-Argo ERIC"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.argodatamgt.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Sylvie.Pouliquen@ifremer.fr"]}, {"institutionName": "Argo Information Centre at JCOMMOPS", "institutionAdditionalName": ["AIC", "JCOMM in-situ Observations Program Support Centre"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ocean-ops.org/board?t=argo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["belbeoch@jcommops.org"]}, {"institutionName": "Argo Project Office", "institutionAdditionalName": ["APO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://argo.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["droemmich@ucsd.edu"]}, {"institutionName": "Coriolis", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.coriolis.eu.org/Observing-the-Ocean/ARGO", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Ocean Data Assimilation Experiment, Argo Global Data Center", "institutionAdditionalName": ["ARGO GDAC", "US GDAC", "USGODAE"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgodae.org//argo/argo.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Argo Data Beginners Guide", "policyURL": "https://argo.ucsd.edu/Argo_date_guide.html"}, {"policyName": "Argo User's manual", "policyURL": "https://archimer.ifremer.fr/doc/00153/26387/24482.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.argodatamgt.org/"}] closed [] ["unknown"] yes {"api": "ftp://usgodae.org/pub/outgoing/argo", "apiType": "FTP"} ["DOI"] http://www.argodatamgt.org/Legal-notice-acknowledgements/Acknowledgements/Argo-data-acknowledgement ["none"] yes unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} Argo is a major contributor to the WCRP 's Climate Variability and Predictability Experiment (CLIVAR) project and to the Global Ocean Data Assimilation Experiment (GODAE). The Argo array is part of the Global Climate Observing System/Global Ocean Observing System GCOS /GOOS. 2015-08-11 2020-12-02 +r3d100011651 Freshwater Biodiversity Data Portal eng [{"additionalName": "BIOFRESH", "additionalNameLanguage": "eng"}] http://data.freshwaterbiodiversity.eu/ [] ["aline.vanderwerf@belspo.be", "data@freshwaterplatform.eu", "info@freshwaterplatform.eu"] The aim of the Freshwater Biodiversity Data Portal is to integrate and provide open and free access to freshwater biodiversity data from all possible sources. To this end, we offer tools and support for scientists interested in documenting/advertising their dataset in the metadatabase, in submitting or publishing their primary biodiversity data (i.e. species occurrence records) or having their dataset linked to the Freshwater Biodiversity Data Portal. This information portal serves as a data discovery tool, and allows scientists and managers to complement, integrate, and analyse distribution data to elucidate patterns in freshwater biodiversity. The Freshwater Biodiversity Data Portal was initiated under the EU FP7 BioFresh project and continued through the Freshwater Information Platform (http://www.freshwaterplatform.eu). To ensure the broad availability of biodiversity data and integration in the global GBIF index, we strongly encourages scientists to submit any primary biodiversity data published in a scientific paper to national nodes of GBIF or to thematic initiatives such as the Freshwater Biodiversity Data Portal. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.freshwaterplatform.eu/index.php/fip-principles.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["Bolivian fish", "Fish-SPRICH", "Stygofauna Mundi", "biodiversity", "ecosystems", "fisheries", "freshwater ecology", "freshwater management", "species observations"] [{"institutionName": "Belgian Biodiversity Platform", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.biodiversity.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aline.vanderwerf@belspo.be", "contact@biodiversity.be"]}, {"institutionName": "Biofresh Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://project.freshwaterbiodiversity.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2014", "institutionContact": ["http://project.freshwaterbiodiversity.eu/index.php/project/our-team", "http://www2.freshwaterbiodiversity.eu/contact/"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "2014", "institutionContact": []}, {"institutionName": "Freshwater Information Platform", "institutionAdditionalName": ["FIP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.freshwaterplatform.eu/", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["http://www.freshwaterplatform.eu/index.php/contact.html", "info@freshwaterplatform.eu"]}, {"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gbif.org/contact-us"]}, {"institutionName": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", "institutionAdditionalName": ["IGB", "Leibniz-Institut f\u00fcr Gew\u00e4sser\u00f6kologie und Binnenfischerei"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.igb-berlin.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tockner@igb-berlin.de"]}, {"institutionName": "Royal Belgian Institute of Natural Sciences", "institutionAdditionalName": ["Institut royal des Sciences naturelles de Belgique", "Koninklijk Belgisch Instituut voor Natuurwetenschappen", "K\u00f6nigliches Belgisches Institut f\u00fcr Naturwissenschaften", "RBINS"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.naturalsciences.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aaike.dewever@naturalsciences.be"]}, {"institutionName": "University of Duisburg-Essen, Aquatic Ecology", "institutionAdditionalName": ["UDE", "Universit\u00e4t Duisburg-Essen, Aquatische \u00d6kologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-due.de/aquatische_oekologie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["joerg.strackbein@uni-due.de"]}, {"institutionName": "University of Natural Resources and Life Sciences, Institute of Hydrobiology and Aquatic Ecosystem Management", "institutionAdditionalName": ["BOKU", "IHG", "Universit\u00e4t f\u00fcr Bodenkultur Wien, Institut f\u00fcr Hydrobiologie, Gew\u00e4ssermanagement"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wau.boku.ac.at/ihg/?&L=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["astrid.schmidt-kloiber@boku.ac.at"]}] [{"policyName": "Draft Data Policy", "policyURL": "http://data.freshwaterbiodiversity.eu/datapolicy"}, {"policyName": "Manual for contributing to the BioFresh metadatabase", "policyURL": "http://data.freshwaterbiodiversity.eu/data/manuals/BioFresh_Metadata_Manual_v1.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://data.freshwaterbiodiversity.eu/datarepository"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.freshwaterbiodiversity.eu/datapolicy"}] restricted [] ["other"] yes {} ["DOI"] http://data.freshwaterbiodiversity.eu/datapolicy [] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "http://data.freshwaterbiodiversity.eu/ipt/rss.do", "syndicationType": "RSS"} Numerous EU funded projects addressing freshwater ecology and water management have generated websites, tools, databases and other products, which are intended for long-term use. However, many of them are not maintained after the project has ended and, moreover, they are dispersed across several project websites. For freshwater researchers and other users, it is challenging to gain an overview of projects and their products. The EU funded project BioFresh was the first to establish a platform — the Global Freshwater Biodiversity Information Platform — bringing together information and data on freshwater biodiversity in a clearly arranged and easily explorable way. We now continue these efforts and extend the platform, widening its scope from biodiversity issues to all kinds of freshwater ecology, management and research topics. Our mission is to bring together the results of many projects dealing with freshwater ecosystems in one a single platform. 2015-08-25 2021-08-24 +r3d100011652 Boundary Layer Late Afternoon and Sunset Turbulence eng [{"additionalName": "BLLAST", "additionalNameLanguage": "eng"}] http://bllast.sedoo.fr/ ["ISSN 2430-3518"] ["bllast@aero.obs-mip.fr", "bllastAdmins@sedoo.fr"] BLLAST is a research programme aimed at exploring the late afternoon transition of the atmospheric boundary layer. The late afternoon period of the diurnal cycle of the boundary layer is poorly understood. This is yet an important transition period that impacts the transport and dillution of water vapour and trace species. The main questions adressed by the project are: - How the turbulence activity fades when heating by the surface decreases? - What is the impact on the transport of chemical species? - How relevant processes can be represented in numerical models? To answer all these questions, a field campaign was carried out during the summer of 2011 (from June 14 to July 8). Many observation systems were then deployed and operated by research teams coming from France and abroad. They were spanning a large spectrum of space and time scales in order to achieve a comprehensive description of the boundary layer processes. The observation strategy consisted in intensifying the operations in the late afternoon with tethered balloons, resarch aircrafts and UAVs. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011-06-14 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://bllast.sedoo.fr/objectives/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Southern France", "atmosphere", "atmospheric boundary layer", "clouds", "cosmic physics", "earth's surface", "geography", "geophysics", "heating", "precipitation"] [{"institutionName": "Agence Nationale de la Recherche", "institutionAdditionalName": ["ANR"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.agence-nationale-recherche.fr/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "2015", "institutionContact": ["http://www.agence-nationale-recherche.fr/en/about-anr/contact/"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es", "institutionAdditionalName": ["OMP"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bllast@aero.obs-mip.fr"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9s de l'OMP", "institutionAdditionalName": ["SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/presentation/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["laurence.fleury@obs-mip.fr"]}] [{"policyName": "Data users obligations and rights", "policyURL": "http://bllast.sedoo.fr/database/source/data_policy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://bllast.sedoo.fr/database/source/data_policy.php"}] restricted [] ["unknown"] {"api": "http://bllast.sedoo.fr/database/source/data_policy.php", "apiType": "NetCDF"} ["DOI"] [] no yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} Only metadata and BLLAST Operational Center (BOC) website can be accessed by non-registered users. Users wishing to get access to the BLLAST database are required to fill in an on line registration form including an abstract about the intended work, and to sign the data use rules. BLLAST Participants: http://bllast.sedoo.fr/participants/ BLLAST supports: http://bllast.sedoo.fr/supports/ 2015-09-07 2019-01-03 +r3d100011653 DataBank, Bodleian Libraries, University of Oxford eng [] https://databank.ora.ox.ac.uk/ [] ["ora@bodleian.ox.ac.uk"] >>>!!!<<< The repository is no longer available. >>>!!!<<< further information and data see: Research Data Oxford: https://www.re3data.org/repository/r3d100011230 eng ["institutional"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.bodleian.ox.ac.uk/__data/assets/pdf_file/0015/190014/Bodleian-RDM-Policy.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Jisc", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "University of Oxford, Bodleian Digital Library Systems and Services", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bodleian.ox.ac.uk/bdlss", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bodleian.ox.ac.uk/bdlss/about-us/staff"]}] [{"policyName": "Bodleian Libraries' policy", "policyURL": "https://www.bodleian.ox.ac.uk/__data/assets/pdf_file/0015/190014/Bodleian-RDM-Policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] closed [{"dataUploadLicenseName": "Uploading data to DataBank", "dataUploadLicenseURL": "https://github.com/dataflow/RDFDatabank/wiki/What-is-DataBank-and-what-does-it-do%3F"}] ["MySQL"] {} ["DOI"] ["none"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} Description: DataBank is a repository that will keep data safe in the long term. It can automatically obtain a Digital Object Indicator (DOI) for each data package, and make the metadata and/or the underlying data searchable and accessible by the wider world. Databank is being developed by the Bodleian Digital Library Systems and Services of the University of Oxford as a part of the Dataflow project. 2015-09-24 2021-10-05 +r3d100011654 Brown Digital Repository eng [{"additionalName": "BDR", "additionalNameLanguage": "eng"}] https://repository.library.brown.edu/studio/ [] ["bdr@brown.edu"] The Brown Digital Repository (BDR) is a place to gather, index, store, preserve, and make available digital assets produced via the scholarly, instructional, research, and administrative activities at Brown. eng ["institutional"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://repository.library.brown.edu/studio/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Brown University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.brown.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.brown.edu/contact"]}, {"institutionName": "Brown University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.brown.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["libweb@brown.edu"]}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://it.brown.edu/computing-policies/acceptable-use-policy"}, {"policyName": "Brown's Policy", "policyURL": "https://www.brown.edu/about/administration/copyright/"}, {"policyName": "Policies", "policyURL": "https://repository.library.brown.edu/studio/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.brown.edu/about/administration/copyright/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.brown.edu/about/administration/copyright/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.brown.edu/about/administration/copyright/"}] restricted [{"dataUploadLicenseName": "Ingest", "dataUploadLicenseURL": "https://repository.library.brown.edu/studio/policies/"}] ["unknown"] {"api": "https://repository.library.brown.edu/studio/api-docs/", "apiType": "other"} ["DOI"] ["none"] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-09-28 2019-01-09 +r3d100011655 California Coastal Atlas eng [{"additionalName": "CCA", "additionalNameLanguage": "eng"}] https://californiacoastalatlas.net/ [] ["editor@CaliforniaCoastalAtlas.net", "hellyj@CaliforniaCoastalAtlas.net"] The California Coastal Atlas is an experiment in the creation of a new information resource for the description, analysis and understanding of natural and human processes affecting the coast of California. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ican.iode.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate", "coastal governance", "coastal hazards", "coastal vulnerability", "deep sea research", "ecology", "ecosystem", "marine spatial planning", "ocean", "sea temperature", "water"] [{"institutionName": "El Centro de Investigaci\u00f3n Cient\u00edfica y de Educaci\u00f3n Superior de Ensenada, Baja California", "institutionAdditionalName": ["CICESE"], "institutionCountry": "MEX", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cicese.edu.mx/", "institutionIdentifier": ["ROR:04znhwb73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@cicese.mx"]}, {"institutionName": "International Coastal Atlas Network", "institutionAdditionalName": ["ICAN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ican.iode.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["marcia@vims.edu", "n.dwyer@ucc.ie"]}, {"institutionName": "National Oceanographic and Atmospheric Administration, Monterey Bay National Marine Sanctuary", "institutionAdditionalName": ["NOOA, MBNMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://montereybay.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://montereybay.noaa.gov/intro/contact.html"]}, {"institutionName": "Universidad Aut\u00f3noma de Baja California", "institutionAdditionalName": ["UABC"], "institutionCountry": "MEX", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.uabc.mx/", "institutionIdentifier": ["ROR:05xwcq167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uabc.mx/institucion/directorio/dependenciasadministrativas.php"]}, {"institutionName": "University of California, Institute for Mexico and the United States", "institutionAdditionalName": ["UCMexus"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ucmexus.ucr.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ucmexus@ucr.edu"]}, {"institutionName": "University of California, San Diego Supercomputer Center", "institutionAdditionalName": ["SDSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sdsc.edu/", "institutionIdentifier": ["ROR:04mg3nk07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sdsc.edu/about_sdsc/contacts_leadership.html"]}, {"institutionName": "University of California, Scripps Institution of Oceanography", "institutionAdditionalName": ["SIO"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://scripps.ucsd.edu/about/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer"}] restricted [] ["unknown"] {} ["DOI"] [] unknown yes [] [] {"syndication": "http://californiacoastalatlas.net/?q=node/1/feed", "syndicationType": "RSS"} The California Coastal Atlas is a member of the International Coastal Atlas Network (ICAN). ICAN is a network of organizations implementing data interoperability standards for coastal web atlases 2015-09-28 2021-09-03 +r3d100011656 Common Cold Project Data Sets eng [{"additionalName": "Carnegie Mellon University Digital Collections", "additionalNameLanguage": "eng"}] https://www.cmu.edu/common-cold-project/data/index.html [] ["CommonColdProject@gmail.com"] The Common Cold Project began in 2011 with the aim of creating, documenting, and archiving a database that combines final research data from 5 prospective viral-challenge studies that were conducted over the preceding 25 years: the British Cold Study (BCS); the three Pittsburgh Cold Studies (PCS1, PCS2, and PCS3); and the Pittsburgh Mind-Body Center Cold Study (PMBC). These unique studies assessed predictor (and hypothesized mediating) variables in healthy adults aged 18 to 55 years, experimentally exposed them to a virus that causes the common cold, and then monitored them for development of infection and signs and symptoms of illness. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cmu.edu/common-cold-project/about/index.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["age", "antibody titer", "body mass index BMI", "cardiovascular function", "demographic", "endocrine", "ethnicity", "health", "metabolic activity", "psychological health", "race", "sex", "socioeconomic status", "upper respiratory invectious URI", "virus"] [{"institutionName": "Carnegie Mellon University", "institutionAdditionalName": ["CMU"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/", "institutionIdentifier": ["ROR:05x2bcf33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/directory-contact/index.html"]}, {"institutionName": "Carnegie Mellon University, Department of Psychology, Laboratory for the Study of Stress, Immunity and Disease", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/dietrich/psychology/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/dietrich/psychology/"]}, {"institutionName": "University of Pittsburgh, Internal Review Boards", "institutionAdditionalName": ["IRB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irb.pitt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.irb.pitt.edu/contact-information"]}] [{"policyName": "Data-Sharing Agreement", "policyURL": "https://www.cmu.edu/common-cold-project/data/data-sharing-agreement/index.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cmu.edu/common-cold-project/data/data-sharing-agreement/index.html"}] closed [] [] {} ["DOI"] https://www.cmu.edu/common-cold-project/how-to-cite-data-and-grants/index.html ["none"] yes yes [] [] {} 2015-10-26 2021-09-09 +r3d100011657 ChArMEx database eng [{"additionalName": "Chemistry-Aerosol Mediterranean Experiment", "additionalNameLanguage": "eng"}] http://mistrals.sedoo.fr/ChArMEx/ ["ISSN 2495-9650"] ["laurence.fleury@obs-mip.fr"] The objective of this database is to stimulate the exchange of information and the collaboration between researchers within the ChArMEx community. However, this community is not exclusive and researchers not directly involved in ChArMEx, but who wish to contribute to the achievements of ChArMEx scientific and/or educational goals are welcome to join-in. The database is a depository for all the data collected during the various projects that contribute to ChArMEx coordinated program. It aims at documenting, storing and distributing the data produced or used by the project community. However, it is also intended to host datasets that were produced outside the ChArMEx program but which are meaningful to ChArMEx scientific and/or educational goals. Any data owner who wishes to add or link his dataset to ChArMEx database is welcome to contact the database manager in order to get help and support. The ChArMEx database includes past and recent geophysical in situ observations, satellite products and model outputs. The database organizes the data management and provides data services to end-users of ChArMEx data. The database system provides a detailed description of the products and uses standardized formats whenever it is possible. It defines the access rules to the data and details the mutual rights and obligations of data providers and users (see ChArMEx data and publication policy). The database is being developed jointly by : SEDOO, OMP Toulouse , ICARE, Lille and ESPRI, IPSL Paris eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-07-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://charmex.lsce.ipsl.fr/index.php/what-is-charmex-mainmenu-35.html [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CANOPEE", "Mediterranean", "TRAQA", "atmosphere", "atmospheric pollution", "biogeochemistry", "climate", "model output", "regional climate", "satellite products"] [{"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cnrs.fr/en/cnrs-directories"]}, {"institutionName": "ChArMEx project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://charmex.lsce.ipsl.fr/index.php/home-mainmenu-1.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://charmex.lsce.ipsl.fr/index.php/contacts-mainmenu-50.html"]}, {"institutionName": "Institut Pierre Simon Laplace", "institutionAdditionalName": ["IPSL"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ipsl.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipsl.fr/en/Organisation/Contact-us2"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9es de l'OMP", "institutionAdditionalName": ["OMP", "SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/Services-communs-OMP/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["laurence.fleury@obs-mip.fr"]}, {"institutionName": "University of Lille, ICARE Data and Services Center", "institutionAdditionalName": ["Cloud-Aerosol-Water-Radiation Interactions", "ICARE"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icare.univ-lille1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@icare.univ-lille1.fr"]}] [{"policyName": "ChArMEx Data Policy", "policyURL": "http://mistrals.sedoo.fr/ChArMEx/Data-Policy/ChArMEx_DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://mistrals.sedoo.fr/ChArMEx/Data-Policy/ChArMEx_DataPolicy.pdf"}] restricted [] ["unknown"] yes {"api": "ftp://sedoo.fr", "apiType": "FTP"} ["DOI"] http://mistrals.sedoo.fr/ChArMEx/Data-Policy/ChArMEx_DataPolicy.pdf [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} As part of the international multidisciplinary program MISTRALS (Mediterranean Integrated Studies At Local And Regional Scales), ChArMEx (the Chemistry-Aerosol Mediterranean Experiment) is an international cooperative research program that aims at a better understanding and quantification of the tropospheric chemistry and its impacts in the Mediterranean with a focus on air quality, regional climate, and biogeochemistry, and of their future evolution. ChArMEx is composed of many scientific projects and involves a large research community from various disciplines and methodological backgrounds, and aims at developing the exchange and use of local, satellite and model data to foster collaborations. 2015-09-14 2021-08-25 +r3d100011658 CITK eng [{"additionalName": "Cognitive Interaction Toolkit", "additionalNameLanguage": "eng"}] https://toolkit.cit-ec.uni-bielefeld.de/ [] ["flier@cit-ec.uni-bielefeld.de", "info@cit-ec.uni-bielefeld.de", "swrede@cor-lab.uni-bielefeld.de"] The Cognitive Interaction Toolkit provides a unified view on linked research artifacts of collaborating institutions in the Bielefeld University’s strategic research area Interactive Intelligent Systems. It binds together a framework for software integration, software and hardware components, system descriptions, experiments, data sets, and publications. The research artifacts are hosted at a distributed service infrastructure that includes project oriented collaboration platforms, opensource and opendata servers, continuous integration services, and publication data servers. These are accessible via this web catalog defining a central collaborative instance for integrated research efforts. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://toolkit.cit-ec.uni-bielefeld.de/vision [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological kybernetics", "bionics", "grasping", "human-robot interaction", "mental representation of movement", "motion tracking", "motor synergies", "movement", "robotics", "robots", "virtual objects"] [{"institutionName": "Bielefeld University, Central Lab Facilities", "institutionAdditionalName": ["CLF"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cit-ec.de/en/central-lab-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cit-ec.de/en/central-lab-facilities/contacts"]}, {"institutionName": "Bielefeld University, Research Institute for Cognition and Robotics", "institutionAdditionalName": ["CoR-Lab"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cor-lab.de/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["https://www.cor-lab.de/contact-0"]}, {"institutionName": "Universit\u00e4t Bielefeld", "institutionAdditionalName": ["Bielefeld University"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uni-bielefeld.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["citk-dev@lists.cit-ec.uni-bielefeld.de", "http://www.uni-bielefeld.de/Universitaet/Serviceangebot/Kontakt/index.html"]}, {"institutionName": "Universit\u00e4t Bielfeld, Kognitive Interaktionstechnologie", "institutionAdditionalName": ["Bielefeld University, Cognitive Interaction Technology", "CITEC"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cit-ec.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cit-ec.de/de/content/kontakt"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cit-ec.de/en/legal-notice"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/summary/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/summary/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://openresearch.cit-ec.de/projects/open-research-at-citec/wiki/Usage_and_Participation"}] restricted [] ["other"] yes {"api": "https://opensource.cit-ec.de/projects/citk", "apiType": "REST"} ["DOI"] ["none"] unknown yes [] [] {} Obtain and use CITEC Open Source software and Open Data databases: https://openresearch.cit-ec.de/projects/open-research-at-citec/wiki/Usage_and_Participation#Obtain-and-use-CITEC-Open-Source-software-and-Open-Data-databases 2015-09-29 2019-01-15 +r3d100011659 Satellite Application Facility on Climate Monitoring eng [{"additionalName": "CM SAF", "additionalNameLanguage": "eng"}] https://www.cmsaf.eu/EN/Home/home_node.html ["biodbcore-001544"] ["contact.cmsaf@dwd.de", "https://www.cmsaf.eu/EN/Service/UHD/UHD_node.html"] The Satellite Application Facility on Climate Monitoring (CM SAF) develops, produces, archives and disseminates satellite-data-based products in support to climate monitoring. The product suite mainly covers parameters related to the energy & water cycle and addresses many of the Essential Climate Variables as defined by GCOS (GCOS 138). The CM SAF produces both Enviromental Data Records and Climate Data Records. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cmsaf.eu/EN/Overview/Mission&Mandate/Mission&Mandate_node.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MetOP", "atmospheric temperature", "climatology", "clouds", "geophysic", "polar orbit", "satellite", "solar", "water", "water cycle"] [{"institutionName": "Deutscher Wetterdienst", "institutionAdditionalName": ["DWD"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.dwd.de/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dwd.de/DE/service/kontakt/kontakt_node.html", "info@dwd.de"]}, {"institutionName": "Eumetsat", "institutionAdditionalName": ["European Organisation for the Exploitation of Meteorological Satellites"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eumetsat.int/website/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eumetsat.int/website/home/ContactUs/index.html"]}, {"institutionName": "European Centre for Medium Weather Forecast", "institutionAdditionalName": ["ECMWF"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ecmwf.int/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ecmwf.int/en/about/contact-us"]}, {"institutionName": "Royal Meteorological Institute of Belgium", "institutionAdditionalName": ["RMI"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.meteo.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.meteo.be/en/about-rmi/contact/contact-rmi"]}] [{"policyName": "Eumetsat Data Policy", "policyURL": "https://www.eumetsat.int/cs/idcplg?IdcService=GET_FILE&dDocName=pdf_leg_data_policy&allowInterrupt=1&noSaveAs=1&RevisionSelectionMethod=LatestReleased"}, {"policyName": "Terms of Use", "policyURL": "https://www.eumetsat.int/website/home/AboutUs/TermsofUse/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.eumetsat.int/website/home/AboutUs/TermsofUse/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eumetsat.int/cs/idcplg?IdcService=GET_FILE&dDocName=pdf_leg_data_policy&allowInterrupt=1&noSaveAs=1&RevisionSelectionMethod=LatestReleased"}] closed [] ["unknown"] {"api": "ftp://opendata.dwd.de/climate_environment/CDC/", "apiType": "FTP"} ["DOI"] ["none"] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} 2015-10-01 2021-11-16 +r3d100011660 Collaborative Research Centre 806 Database eng [{"additionalName": "CRC 806", "additionalNameLanguage": "eng"}, {"additionalName": "SFB 806", "additionalNameLanguage": "deu"}, {"additionalName": "Sonderforschungsbereich 806", "additionalNameLanguage": "deu"}] http://crc806db.uni-koeln.de/ [] ["c.willmes@uni-koeln.de", "g.bareth@uni-koeln.de", "http://www.sfb806.uni-koeln.de/", "j.richter@uni-koeln.de"] The CRC806-Database platform is the Research Data Management infrastructure of the SFB / CRC 806. The infrastructure is implemented using Open Source software, and implements Open Science, Open Access and Open Data principles. The Collaborative Research Centre (CRC; ‘Sonderforschungsbereich’ or SFB) is designed to capture the complex nature of chronology, regional structure, climatic, environmental and socio-cultural contexts of major intercontinental and transcontinental events of dispersal of Modern Man from Africa to Western Eurasia, and particularly to Europe (Cited from introductory text on: www.sfb806.de). eng ["disciplinary"] {"size": "315 datasets", "updatedp": "2015-10-10"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://crc806db.uni-koeln.de/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["archaeology", "arktis", "atmosphere", "climate", "cultural environment", "environmental conditions", "geoscience", "human mobility", "ice", "ocean", "paleoenvironment", "prehistory"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "URWTH Aachen University", "institutionAdditionalName": ["Rheinisch-Westf\u00e4lische Technische Hochschule Aachen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rwth-aachen.de/cms/~a/root/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rwth-aachen.de/cms/root/Die-RWTH/~emu/Kontakt-Lageplaene/Kontakt"]}, {"institutionName": "Universit\u00e4t Bonn", "institutionAdditionalName": ["Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn", "University of Bonn"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www3.uni-bonn.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www3.uni-bonn.de/kontakt"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln", "institutionAdditionalName": ["University of Cologne"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.portal.uni-koeln.de/kontakt.html"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZK"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://rrzk.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://rrzk.uni-koeln.de/kontakt-uebersicht.html"]}] [{"policyName": "Terms of use", "policyURL": "http://crcns.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] {"api": "http://crcns.org/wiki/index.php/Uploading_the_data", "apiType": "FTP"} ["DOI"] http://cera-www.dkrz.de/WDCC/ui/Entry.jsp?acronym=UNI_HH_MI_FRAMZY2002 ["none"] yes yes [] [] {"syndication": "http://crc806db.uni-koeln.de/start/news/News/dataRss/rss.xml?tx_unikoelnnews_news%5Bformat%5D=xml&cHash=38ba1acb7c2125155ea695db60a62d55", "syndicationType": "RSS"} 2015-10-06 2019-01-21 +r3d100011661 M-TROPICS eng [{"additionalName": "Multiscale TROPIcal CatchmentS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Bassins Versants Exp\u00e9rimentaux Tropicaux", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: Experimental Tropical Watersheds", "additionalNameLanguage": "eng"}] https://mtropics.obs-mip.fr/ [] ["https://mtropics.obs-mip.fr/technical-contact-form-2/"] The CZO Multiscale TROPIcal CatchmentS (M-TROPICS) consists in the merging, in 2016, of two previously-existing CZOs: BVET (India and Cameroon) and MSEC (Laos and Vietnam). The CZO Multiscale TROPIcal CatchmentS (M-TROPICS) provides the international scientific community with unique decennial time series of meteorological, hydrological, geochemical, and ecological variables in tropical environments. The CZO M-TROPICS involves academic and governmental partners in tropical countries (Cameroun, India, Lao PDR, and Vietnam) and is included in the Research Infrastructure OZCAR, the French contribution to the international CZO initiative. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://mtropics.obs-mip.fr/presentation-eng/historical-background/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["BVET", "Cameroon", "FAIR", "India", "MSEC", "air temperature", "biogeochemistry", "ecosystem", "environment", "erosion", "global radiation", "hydrochemistry", "hydrology", "measurement", "meteorology", "mineralogy", "rainfall", "sediment", "water"] [{"institutionName": "G\u00e9osciences Environnement Toulouse", "institutionAdditionalName": ["GET"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.get.omp.eu/", "institutionIdentifier": ["ROR:05k0qmv73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IEES Paris", "institutionAdditionalName": ["Institute of Ecology and Environmental Sciences Paris"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://iees-paris.fr/", "institutionIdentifier": ["ROR:02s56xp85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indian Institute of Science Bangalore", "institutionAdditionalName": ["IIS"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iisc.ac.in/", "institutionIdentifier": ["ROR:04dese585"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de Recherches G\u00e9ologiques et Mini\u00e8res", "institutionAdditionalName": ["IRGM", "Institute of Geological and Mining Research"], "institutionCountry": "CMR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irgm-cameroun.org/", "institutionIdentifier": ["ROR:02hz8mm45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratoire des Sciences du Climat et de l'Environnement", "institutionAdditionalName": ["LSCE"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lsce.ipsl.fr/", "institutionIdentifier": ["ROR:01j4h9t83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National University of Lao PDR", "institutionAdditionalName": [], "institutionCountry": "LAO", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nuol.edu.la/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Observatoire des sciences de l'univers, Ecce Terra", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ecceterra.upmc.fr/fr/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Soil and Fertilisers Research Institute", "institutionAdditionalName": ["SFRI"], "institutionCountry": "VNM", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sfri.org.vn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Science and Technology of Hanoi", "institutionAdditionalName": ["USTH"], "institutionCountry": "VNM", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usth.edu.vn/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Yaound\u00e9", "institutionAdditionalName": [], "institutionCountry": "CMR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://uy1.uninet.cm/", "institutionIdentifier": ["ROR:022zbs961"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] yes {} ["DOI"] ["none"] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Data collected as part of M-TROPICS based research projects: https://dataverse.ird.fr/dataverse/M-TROPICS International joint laboratories and other networks: https://mtropics.obs-mip.fr/presentation-eng/national-and-international-networks/ Related research projects: https://mtropics.obs-mip.fr/presentation-eng/related-research-projects/ 2015-10-07 2021-10-12 +r3d100011662 Landcare Research Data Repository eng [{"additionalName": "Datastore Landcare Research Manaaki Whenua", "additionalNameLanguage": "eng"}] https://datastore.landcareresearch.co.nz/ [] ["LandrethA@landcareresearch.co.nz", "McGlinchyA@landcareresearch.co.nz", "datamanager@landcareresearch.co.nz"] The Landcare Research DataStore ('the DataStore') is the general data catalogue and repository for Environmental Research Data from Landcare Research. Much of Landcare Research’s research data is available through specific web pages, but many datasets sit outside these areas. This data repository provides a mechanism for our staff to deposit and document this wider range of datasets so that they may be discovered and potentially re-used. eng ["disciplinary", "institutional"] {"size": "352 datasets", "updatedp": "2020-01-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datastore.landcareresearch.co.nz/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["New Zealand", "biodiversity", "biosecurity", "ecology", "fungi", "greenhouse gases", "invasive species", "land resources", "pest management", "plants", "soils", "sustainability", "systematics", "taxonomy", "water"] [{"institutionName": "Landcare Research NZ", "institutionAdditionalName": ["Manaaki Whenua"], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.landcareresearch.co.nz/home", "institutionIdentifier": ["ROR:02p9cyn66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library@landcareresearch.co.nz"]}] [{"policyName": "Sustainability policy", "policyURL": "https://www.landcareresearch.co.nz/about/about-landcare/principles/sustainability-policy"}, {"policyName": "Terms of Use", "policyURL": "https://datastore.landcareresearch.co.nz/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://datastore.landcareresearch.co.nz/terms_of_use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://datastore.landcareresearch.co.nz/terms_of_use"}] restricted [] ["CKAN"] yes {} ["DOI"] https://datastore.landcareresearch.co.nz/terms_of_use [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Collections: https://datastore.landcareresearch.co.nz/organization 2015-10-08 2020-01-08 +r3d100011663 EOL eng [{"additionalName": "Earth Observing Laboratory", "additionalNameLanguage": "eng"}] http://www.eol.ucar.edu/ [] ["codiac@eol.ucar.edu"] EOL’s platforms and instruments collect large and often unique data sets that must be validated, archived and made available to the research community. The goal of EOL data services is to advance science through delivering high-quality project data and metadata in ways that are as transparent, secure, and easily accessible as possible - today and into the future. By adhering to accepted standards in data formats and data services, EOL provides infrastructure to facilitate discovery and direct access to data and software from state-of-the-art commercial and locally-developed applications. EOL’s data services are committed to the highest standard of data stewardship from collection to validation to archival. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.eol.ucar.edu/data-services [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["airborne measurements", "aircraft", "climate", "cloud systems", "cumulus", "meteorology", "ocean", "oceanography", "radar", "satellite", "upper air", "weather"] [{"institutionName": "National Center for Atmospheric Research, University Corporation for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.ucar.edu/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}] [{"policyName": "EOL Data Policy", "policyURL": "http://www.eol.ucar.edu/content/eol-data-policy"}, {"policyName": "UCAR Terms of use", "policyURL": "http://www2.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}] closed [] ["unknown"] {"api": "http://data.eol.ucar.edu/codiac/dss/id=100.009", "apiType": "FTP"} ["DOI"] http://www.eol.ucar.edu/node/2172 ["none"] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} NCAR Earth Observing Laboratory is covered by Clarivate Data Citation Index 2015-10-14 2021-08-11 +r3d100011664 Geoportal der BFG deu [{"additionalName": "GEOPORTAL @ BfG", "additionalNameLanguage": "eng"}, {"additionalName": "GGInA", "additionalNameLanguage": "deu"}, {"additionalName": "Geopaortal der Bundesanstalt f\u00fcr Gew\u00e4sserkunde", "additionalNameLanguage": "eng"}, {"additionalName": "Gew\u00e4sserkundliches Geografisches Informations- und Analysesystem der BfG", "additionalNameLanguage": "eng"}] https://geoportal.bafg.de/ggina-portal/ [] ["geoportal@bafg.de", "will@bafg.de"] Through our decades of hydrological and ecological practices and the activities on the waterways of the German Federal a valuable inventory of hydrological information has emerged in the stuck our experience and knowledge base. Almost all environmental information have a direct or indirect spatial reference. This inventory of spatial data continues to grow. He is both the basis and results of our scientific work. With GGInA, the hydrological Geographical Information and Analysis System of BfG, you can research yourself in this inventory. Much of the information and data is accessed directly on the Metadata Catalog Search and specialist applications. The Geoportal also opens up databases of our partners in the transport and environment. At the same selected data can also be integrated into other environmental portals. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["German lakes", "German waterways", "WasserBLICK", "drinking water", "flood", "hydrography", "hydrologic Atlas", "surface water"] [{"institutionName": "Bundesanstalt f\u00fcr Gew\u00e4sserkunde", "institutionAdditionalName": ["BfG", "Federal Institute of Hydrology"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bafg.de/DE/Home/homepage_node.html", "institutionIdentifier": ["ROR:03kdvpr29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["posteingang@bafg.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://geoportal.bafg.de/ggina-portal/html/Impressum_Haftungsausschluss.html"}] restricted [] [] no {} ["DOI"] https://geoportal.bafg.de/ggina-portal/html/Impressum_Haftungsausschluss.html [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2015-12-21 2021-06-29 +r3d100011665 GLOBE eng [{"additionalName": "Global Collaboration Engine", "additionalNameLanguage": "eng"}] http://globe.umbc.edu/ [] ["http://globe.umbc.edu/contact/"] GLOBE (Global Collaboration Engine) is an online collaborative environment that enables land change researchers to share, compare and integrate local and regional studies with global data to assess the global relevance of their work. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://globe.umbc.edu/about-globe/benefits-of-globe/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "biodiversity", "climate", "ecosystem", "geovisualization", "human systems", "natural systems", "remote sensing", "surface"] [{"institutionName": "CHANS-NET", "institutionAdditionalName": ["International Network of Research on Coupled Human and Natural Systems"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://chans-net.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://chans-net.org/contact-us"]}, {"institutionName": "National Institute for Space Research, Global Land Project", "institutionAdditionalName": ["INPE, GLP", "Instituto Nacional de Pesquisas Espaciais"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.globallandproject.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.globallandproject.org/people/scientific_committee/actual_members.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "The Other Firm", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.theotherfirm.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.theotherfirm.com/about/#contact"]}, {"institutionName": "University of Maryland, Baltimore County", "institutionAdditionalName": ["UMBC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://umbc.edu/", "institutionIdentifier": ["ROR:02qskvh78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["homepage@umbc.edu"]}, {"institutionName": "University of Maryland, Baltimore County, Computer Science and Electrical Engineering", "institutionAdditionalName": ["CSEE"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.csee.umbc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.csee.umbc.edu/contact/"]}, {"institutionName": "University of Maryland, Baltimore County, Department of Information Systems", "institutionAdditionalName": ["UMBC, Department of Information Systems"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://informationsystems.umbc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://about.umbc.edu/visitors-guide/contact-us/"]}, {"institutionName": "University of Maryland, Baltimore County, Geography & Environmental Systems", "institutionAdditionalName": ["GES"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ges.umbc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://about.umbc.edu/visitors-guide/contact-us/"]}] [{"policyName": "Benefits of Globe", "policyURL": "http://globe.umbc.edu/about-globe/benefits-of-globe/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://globe.umbc.edu/documentation-overview/visibility/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://globe.umbc.edu/documentation-overview/visibility/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://globe.umbc.edu/documentation-overview/visibility/"}] restricted [{"dataUploadLicenseName": "Creating GLOBE\u2019s Global Variables", "dataUploadLicenseURL": "http://globe.umbc.edu/tutorials/creating-globes-global-variables/"}] ["unknown"] {} ["DOI"] http://globe.umbc.edu/app/#/manager/cases/view/752 ["none"] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://globallandproject.org/rss/rss.php", "syndicationType": "RSS"} GLOBE is part of the The Global Land Project (GLP), and a collaborator with CHANS.net, community leaders in Land Change Science. 2015-10-20 2021-09-03 +r3d100011667 HyMeX eng [{"additionalName": "HYdrological cycle in the Mediterranean EXperiemnt", "additionalNameLanguage": "eng"}] http://mistrals.sedoo.fr/HyMeX/ ["ISSN 2491-1887"] ["databasecontact@hymex.org"] HYdrological cycle in the Mediterranean EXperiemnt. Considering the science and societal issues motivating HyMeX, the programme aims to : improve our understanding of the water cycle, with emphasis on extreme events, by monitoring and modelling the Mediterranean atmosphere-land-ocean coupled system, its variability from the event to the seasonal and interannual scales, and its characteristics over one decade (2010-2020) in the context of global change, assess the social and economic vulnerability to extreme events and adaptation capacity.The multidisciplinary research and the database developed within HyMeX should contribute to: improve observational and modelling systems, especially for coupled systems, better predict extreme events, simulate the long-term water-cycle more accurately, provide guidelines for adaptation measures, especially in the context of global change. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mistrals.sedoo.fr/HyMeX/Data-Policy/HyMeX_DataPolicy.pdf [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["aircraft", "atmosphere", "atmosphere-land-ocean coupled system", "drifters, buoys", "hydrology", "hydrometerology", "mediterranean", "oceanography", "temperature", "water cycle"] [{"institutionName": "Institut Pierre Simon Laplace, Ensemble de Services Pour la Recherche", "institutionAdditionalName": ["IPSL, ESPRI"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ipsl.fr/fr/Organisation/Les-structures-federatives/ESPRI", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ipsl.fr/fr/Organisation/Nous-contacter2"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9es de l'OMP", "institutionAdditionalName": ["OMP, Service de Donn\u00e9es de l'OMP", "SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/recherche/plates-formes/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["laurence.fleury@obs-mip.fr"]}] [{"policyName": "Data Policy", "policyURL": "http://mistrals.sedoo.fr/HyMeX/Data-Policy/"}, {"policyName": "HYmeX Data and Publicaton Policy", "policyURL": "http://mistrals.sedoo.fr/HyMeX/Data-Policy/HyMeX_DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://mistrals.sedoo.fr/HyMeX/Data-Policy/HyMeX_DataPolicy.pdf"}] restricted [{"dataUploadLicenseName": "HyMeX data and Publication Policy", "dataUploadLicenseURL": "http://mistrals.sedoo.fr/HyMeX/Data-Policy/HyMeX_DataPolicy.pdf"}] ["unknown"] yes {"api": "http://mistrals.sedoo.fr/HyMeX/Provide-data/", "apiType": "FTP"} ["DOI"] http://mistrals.sedoo.fr/HyMeX/Provide-data/ ["none"] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} HYmeX is part of "Mistrals Database" 2015-09-28 2018-11-02 +r3d100011668 IDEALS eng [{"additionalName": "Illinois Digital Environment for Access to Learning and Scholarship", "additionalNameLanguage": "eng"}] https://www.ideals.illinois.edu/ [] ["https://www.ideals.illinois.edu/contact", "ideals-gen@illinois.edu"] IDEALS is an institutional repository that collects, disseminates, and provides persistent and reliable access to the research and scholarship of faculty, staff, and students at the University of Illinois at Urbana-Champaign. Faculty, staff, graduate students, and in some cases undergraduate students, can deposit their research and scholarship directly into IDEALS. Departments can use IDEALS to distribute their working papers, technical reports, or other research material. Contact us at https://www.ideals.illinois.edu/feedback for more information. eng ["institutional"] {"size": "84.381 items", "updatedp": "2015-12-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://wiki.cites.illinois.edu/wiki/display/IDEALS/IDEALS+Resources+and+Information [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Illinois at Urbana-Champaign, University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.library.illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ideals.illinois.edu/feedback"]}] [{"policyName": "IDEALS Access Restriction Policy", "policyURL": "http://hdl.handle.net/2142/3743"}, {"policyName": "IDEALS Access and Use Policy", "policyURL": "http://hdl.handle.net/2142/14157"}, {"policyName": "IDEALS Collection Policy", "policyURL": "http://hdl.handle.net/2142/7"}, {"policyName": "IDEALS Community Policy", "policyURL": "http://hdl.handle.net/2142/88807"}, {"policyName": "IDEALS Copyright and Intellectual Property Policy", "policyURL": "http://hdl.handle.net/2142/235"}, {"policyName": "IDEALS Digital Preservation Policy", "policyURL": "http://hdl.handle.net/2142/2383"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.cites.illinois.edu/wiki/display/IDEALS/Access+and+Use+Policy"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wiki.cites.illinois.edu/wiki/display/IDEALS/Access+and+Use+Policy"}] restricted [{"dataUploadLicenseName": "IDEALS Deposit Agreement", "dataUploadLicenseURL": "http://hdl.handle.net/2142/3732"}] ["DSpace"] no {"api": "http://www.ideals.illinois.edu/dspace-oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] yes yes [] [] {} 2015-10-28 2021-09-08 +r3d100011669 Illinois State Water Survey eng [{"additionalName": "ISWS", "additionalNameLanguage": "eng"}] https://www.isws.illinois.edu/ [] ["https://www.isws.illinois.edu/contact", "web@prairie.illinois.edu"] The Water Survey has flourished for more than a century by anticipating and responding to new challenges and opportunities to serve the citizens of Illinois. Today, the ISWS continues to demonstrate flexibility and adaptability by developing new programs, while continuing to provide long-standing services upon which Illinoisans have come to rely. The Scientific Surveys of the University of Illinois at Urbana-Champaign are the primary agencies in Illinois responsible for producing and disseminating scientific and technological information, services, and products related to the environment, economic development, and quality of life. To achieve this mission, the Scientific Surveys conduct state-of-the-art research and collect, analyze, archive, and disseminate high-quality, objective data and technical information. The information, services, and products provide a sound technical basis for the citizens and policymakers of Illinois and the nation to make wise social, economic, and environmental decisions. eng ["institutional"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.prairie.illinois.edu/about-inrs.shtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "air chemistry", "air quality", "atmospheric chemical deposition", "climatology", "foodplain", "groundwater", "measuring rain", "meteorology", "storm", "water chemistry", "water quality", "water supply planning", "weather"] [{"institutionName": "University of Illinois at Urbanan-Champaign, Prairie Research Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://prairie.illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["prairie@illinois.edu"]}] [{"policyName": "Data Use License Agreement", "policyURL": "https://www.isws.illinois.edu/dat/data-disclaimer/data-use-agreement"}, {"policyName": "Terms of Use", "policyURL": "https://www.isws.illinois.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.isws.illinois.edu/terms-of-use"}] restricted [{"dataUploadLicenseName": "Illinois Water Inventory Program", "dataUploadLicenseURL": "https://www.isws.illinois.edu/groundwater-science/illinois-water-inventory-program"}] [] {} ["DOI"] https://www.isws.illinois.edu/terms-of-use ["none"] yes yes [] [] {} The Illinois State Water Survey (ISWS) is a Division of the Prairie Research Institute of the University of Illinois at Urbana-Champaign (U of I). In 2013 the Illinois State Water Survey restructured in order to focus on critical research issues that are important to the state of Illinois. The new organizational structure of the Water Survey includes seven sections (Climate and Atmospheric Science, Chemistry and Technology, Groundwater Science, Water Quality, Surface Water Hydrology and Hydraulics, Coordinated Hazard Assessment and Mapping Program (CHAMP), and Water Resources Data and Information), and one national program (National Atmospheric Deposition Program), together with central administration and management functions conducted in the Office of the Director. In addition to its traditional strengths, the Water Survey is enhancing its monitoring, analytical, and mathematical modeling capabilities to address issues with greater efficiency and productivity. 2015-11-02 2021-10-18 +r3d100011670 INTREPID bioinformatics eng [] http://www.intrepidbio.com/ ["RRID:SCR_012625", "RRID:SciEx_574"] ["http://server1.intrepidbio.com/FeatureBrowser/account/contact", "info@intrepidbio.com"] !!! >>> intrepidbio.com expired <<< !!!! Intrepid Bioinformatics serves as a community for genetic researchers and scientific programmers who need to achieve meaningful use of their genetic research data – but can’t spend tremendous amounts of time or money in the process. The Intrepid Bioinformatics system automates time consuming manual processes, shortens workflow, and eliminates the threat of lost data in a faster, cheaper, and better environment than existing solutions. The system also provides the functionality and community features needed to analyze the large volumes of Next Generation Sequencing and Single Nucleotide Polymorphism data, which is generated for a wide range of purposes from disease tracking and animal breeding to medical diagnosis and treatment. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2021-03-06 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.intrepidbio.com/products/features/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["NGS data", "SNP data", "cattle", "chimpanzee", "genome", "gorilla", "horse", "human", "mouse", "pig", "rat", "sheep"] [{"institutionName": "Intrepid Bioinformatics Solutions, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.intrepidbio.com/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://server1.intrepidbio.com/FeatureBrowserPrivate/account/contact", "info@intrepidbio.com"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.intrepidbio.com/products/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.intrepidbio.com/products/terms-of-use/"}] restricted [] ["other"] {"api": "http://www.intrepidbio.com/data-solutions-2/snp-data/", "apiType": "other"} ["DOI"] ["none"] unknown yes [] [] {} The Board of Directors is a seasoned team of experts in genetic bioinformatics, life sciences, academic administration, healthcare, and media & communications: http://www.intrepidbio.com/products/board-of-directors/ 2015-11-03 2021-10-08 +r3d100011671 MERMeX eng [{"additionalName": "Marine Ecosystems Response in the Mediterranean Experiment", "additionalNameLanguage": "eng"}] https://mistrals.sedoo.fr/MERMeX/ [] ["guieu@obs-vlfr.fr", "ivane.pairaud@ifremer.fr", "mermex-database@sedoo.fr", "richard.sempere@mio.osupytheas.fr"] MERMex is focused on the biogeochemical changes that will take place in the Mediterranean Sea due to natural changes as well as the socio-economic impacts, and how they will affect marine ecosystems and biodiversity. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mistrals.sedoo.fr/MERMeX/Data-Policy/MERMeX_DataPolicy.pdf [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["climate changes", "ecosystem", "marine ecosystem", "mediterranean", "oceanography"] [{"institutionName": "Centre national de la recherche scientifique, L'Institut national des sciences de l'Univers", "institutionAdditionalName": ["CNRS, INSU"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.insu.cnrs.fr/", "institutionIdentifier": ["ROR:04kdfz702"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "French Research Institute for Exploitation of the Sea", "institutionAdditionalName": ["IFREMER", "Institut fran\u00e7ais de recherche pour l'exploitation de la mer"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wwz.ifremer.fr/", "institutionIdentifier": ["ROR:044jxhp58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wwz.ifremer.fr/sendform/contact"]}, {"institutionName": "International Geosphere-Biosphere Programme", "institutionAdditionalName": ["IGBP"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.igbp.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": ["https://www.kva.se/sv/om-oss/kontakt"]}, {"institutionName": "Laboratoire d\u2019excellence, Objectif Terre Mediterran\u00e9e", "institutionAdditionalName": ["LABEX Objectif Terre Mediterran\u00e9e", "OT-Med", "Objectif Terre - Bassin M\u00e9diterran\u00e9en"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.otmed.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9es de l'OMP", "institutionAdditionalName": ["OMP, Service de Donn\u00e9es de l'OMP", "SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sedoo.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sedoo.fr/contact/", "laurence.fleury@obs-mip.fr"]}] [{"policyName": "MERMeX Data and Publication Policy", "policyURL": "https://mistrals.sedoo.fr/MERMeX/Data-Policy/MERMeX_DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://mistrals.sedoo.fr/MERMeX/Data-Policy/MERMeX_DataPolicy.pdf"}] restricted [{"dataUploadLicenseName": "MERMeX Provide Data", "dataUploadLicenseURL": "https://mistrals.sedoo.fr/MERMeX/Provide-data/"}] ["unknown"] yes {"api": "https://mistrals.sedoo.fr/MERMeX/Provide-data/", "apiType": "FTP"} ["DOI"] https://mistrals.sedoo.fr/MERMeX/Data-Policy/MERMeX_DataPolicy.pdf [] unknown yes [] [] {} MERMeX is a part of MISTRALS database; see also: http://mermex.pytheas.univ-amu.fr/ 2015-09-28 2021-10-18 +r3d100011672 Microstructure Database eng [{"additionalName": "CAMS microstructure library", "additionalNameLanguage": "eng"}] http://cams.mse.ufl.edu/microstructures [] ["http://cams.mse.ufl.edu/contact"] >>>!!!<<< The repository is no longer available. >>>!!!<<< Here you will find a collection of atomic microstructures that have been built by the atomic modeling community. Feel free to download any of these and use them in your own scientific explorations.The focus of this cyberinfrastructure is to advance the field of atomic-scale modeling of materials by acting as a forum for disseminating new atomistic scale methodologies, educating non-experts and the next generation of computational materials scientists, and serving as a bridge between the atomistic and complementary (electronic structure, mesoscale) modeling communities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://cams.mse.ufl.edu/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomic microstructures", "atomic-scale modeling", "atomistic scale methodologies", "materials science"] [{"institutionName": "Cyberinfrastructure for Atomistic Materials Science", "institutionAdditionalName": ["CAMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://cams.mse.ufl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cams.mse.ufl.edu/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Florida, Department of Materials Sience and Engineering", "institutionAdditionalName": ["UF, MSE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mse.ufl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mse.ufl.edu/about/contacts/"]}] [{"policyName": "Policies", "policyURL": "https://it.ufl.edu/it-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://it.ufl.edu/it-policies/"}] restricted [{"dataUploadLicenseName": "Registration", "dataUploadLicenseURL": "http://cams.mse.ufl.edu/forum/ucp.php?mode=register"}] ["other"] yes {} ["DOI"] ["none"] unknown yes [] [] {} 2015-10-05 2021-10-14 +r3d100011673 MISTRALS database eng [{"additionalName": "MISTRALS data portal", "additionalNameLanguage": "eng"}, {"additionalName": "Mediterranean Integrated STudies at Regional And Local Scales", "additionalNameLanguage": "eng"}] http://mistrals.sedoo.fr/ ["ISSN 2495-9693"] [] MISTRALS database is a distributed system, that enables users to access datasets produced by all the projects (ChArMEx, HyMeX, MERMex, TerMex, CORSiCA, EMSO and MOOSE) and stored in different data centres. MISTRALS (Mediterranean Integrated STudies at Regional And Local Scales) is a decennial program for systematic observations and research dedicated to the understanding of the Mediterranean Basin environmental process under the planet global change. It aims to coordinate, across the Mediterranean Basin, interdisciplinary research on atmosphere, hydrosphere, lithosphere and paleo-climate, including environmental ecology and social sciences. The objective is to achieve a better understanding of the mechanisms shaping and influencing landscape, environment and human impact of this eco-region. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.mistrals-home.org/spip/spip.php?rubrique32 [{"name": "Databases", "scheme": "parse"}] ["serviceProvider"] ["Mediterranean", "agriculture", "atmosphere", "climate", "environmental ecology", "fisheries", "geology", "hydrosphere", "lithosphere", "marine ecosystems", "paleo-climate", "social sciences", "urban planning"] [{"institutionName": "Institut Pierre Simon Laplace", "institutionAdditionalName": ["IPSL"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ipsl.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MISTRALS", "institutionAdditionalName": ["Mediterranean Integrated Studies at Regional and Local Scales"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mistrals-home.org/spip/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@mistrals-home.org"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9es de l'OMP", "institutionAdditionalName": ["OMP", "SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/recherche/plates-formes/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["laurence.fleury@obs-mip.fr"]}, {"institutionName": "University of Lille, ICARE Data and Services Center", "institutionAdditionalName": ["Cloud-Aerosol-Water-Radiation Interactions", "ICARE"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icare.univ-lille1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@icare.univ-lille1.fr"]}] [{"policyName": "ChArMEx Data Policy", "policyURL": "http://mistrals.sedoo.fr/ChArMEx/Data-Policy/ChArMEx_DataPolicy.pdf"}, {"policyName": "Data and Publication Policy", "policyURL": "http://mistrals.sedoo.fr/User-Account-Creation/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://mistrals.sedoo.fr/User-Account-Creation/"}] restricted [] ["unknown"] yes {"api": "http://mistrals.sedoo.fr/?editDatsId=1341&datsId=1341", "apiType": "NetCDF"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Programs: ChArMEx : https://charmex.lsce.ipsl.fr/; HyMeX : http://www.hymex.org/; MerMeX : http://mermex.com.univ-mrs.fr/ ; PaleoMex : https://paleomex.lsce.ipsl.fr/ ; SICMed : http://www.sicmed.net/ . Partners: http://www.mistrals-home.org/spip/spip.php?rubrique62 2015-09-10 2021-05-19 +r3d100011674 My Geo Hub eng [] https://mygeohub.org/ [] ["https://mygeohub.org/about/contact"] This hub supports the geospatial modeling, data analysis and visualization needs of the broad research and education communities through hosting of groups, datasets, tools, training materials, and educational contents. eng ["disciplinary"] {"size": "344 Resources", "updatedp": "2019-12-05"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://mygeohub.org/about/hubzero [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "climate", "drought", "geography", "geology", "hydrology", "spatial planning"] [{"institutionName": "HUBzero", "institutionAdditionalName": ["Platform for scientific collaboration"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hubzero.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hubzero.org/about/contactus"]}, {"institutionName": "Purdue University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.purdue.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["online@purdue.edu"]}] [{"policyName": "Purdue University Policy Office", "policyURL": "https://www.purdue.edu/policies/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://mygeohub.org/about/dmcapolicy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://mygeohub.org/about/terms"}] restricted [] ["unknown"] yes {"api": "https://mygeohub.org/search/?terms=API", "apiType": "other"} ["DOI"] [] yes yes [] [] {} Research projects: Useful to Usable (USU; Geoshare; driNet; Water Hub; Geospatial buildings blocks (GABBS) 2015-10-19 2019-12-05 +r3d100011675 Natural History Museum, Data Portal eng [{"additionalName": "Explore and download the Natural History Museum\u2019s research and collections data", "additionalNameLanguage": "eng"}] https://data.nhm.ac.uk/ ["biodbcore-001302"] ["data@nhm.ac.uk", "https://data.nhm.ac.uk/contact"] The Museum is committed to open access and open science, and has launched the Data Portal to make its research and collections datasets available online. It allows anyone to explore, download and reuse the data for their own research. Our natural history collection is one of the most important in the world, documenting 4.5 billion years of life, the Earth and the solar system. Almost all animal, plant, mineral and fossil groups are represented. These datasets will increase exponentially. Under the Museum's ambitious digital collections programme we aim to have 20 million specimens digitised in the next five years. eng ["disciplinary", "other"] {"size": "2.834.363 records", "updatedp": "2015-10-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://data.nhm.ac.uk/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "botany", "entomology", "mineralogy", "palaeontology", "zoology"] [{"institutionName": "Natural History Museum", "institutionAdditionalName": ["NHM"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nhm.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nhm.ac.uk/contact-us.html"]}] [{"policyName": "Terms and conditions of use", "policyURL": "http://www.nhm.ac.uk/about-us/website-terms-conditions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://opendefinition.org/licenses/cc-by/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://opendefinition.org/licenses/cc-zero/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "http://data.nhm.ac.uk/dataset"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.nhm.ac.uk/terms-conditions"}] restricted [] ["CKAN"] yes {"api": "http://data.nhm.ac.uk/about/download", "apiType": "REST"} ["DOI"] http://data.nhm.ac.uk/about/citation ["none"] yes yes [] [] {} The Data Portal has been developed by the Museum’s biodiversity informatics group, with the help and support of teams throughout the Museum. 2015-10-20 2021-11-17 +r3d100011676 NGEE Arctic eng [{"additionalName": "Advancing predicitve understanding of Arctic ecosystems in response to climate change", "additionalNameLanguage": "eng"}, {"additionalName": "Next-Generation Ecosystem Experiments", "additionalNameLanguage": "eng"}] https://ngee-arctic.ornl.gov/ [] ["https://ngee-arctic.ornl.gov/contact", "support@ngee-arctic.ornl.gov"] The goal of NGEE–Arctic is to reduce uncertainty in projections of future climate by developing and validating a model representation of permafrost ecosystems and incorporating that representation into Earth system models. The new modeling capabilities will improve our confidence in model projections and will enable scientist to better respond to questions about processes and interactions now and in the future. It also will allow them to better communicate important results concerning climate change to decision makers and the general public. And let's not forget about summer in the Antarctic, which happens during our winter months. eng ["disciplinary"] {"size": "125 results", "updatedp": "2018-08-16"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ngee-arctic.ornl.gov/mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Alaska", "Earth System Models ESMs", "arctic landscapes", "climate system", "ecosystem", "energy dynamics", "geomorphology", "hydrology", "microtopography"] [{"institutionName": "Brookhaven National Laboratory", "institutionAdditionalName": ["Brookhaven Lab"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bnl.gov/world/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["arogers@bnl.gov", "https://www.bnl.gov/common/templates/feedback/"]}, {"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley LAB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lbl.gov/visit/", "sshubbard@lbnl.gov"]}, {"institutionName": "Los Alamos National Laboratory", "institutionAdditionalName": ["LANL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lanl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cjw@lanl.gov", "https://www.lanl.gov/resources/contacts.php"]}, {"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ornl.gov/content/contact-us", "wullschlegsd@ornl.gov"]}, {"institutionName": "Oak Ridge National Laboratory, Energy and Environmental Sciences, Environmental Sciences Division", "institutionAdditionalName": ["ESD", "Environmental Sciences Division"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/division/esd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ornl.gov/content/contact-us"]}, {"institutionName": "Sandia National Laboratory", "institutionAdditionalName": ["SNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sandia.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sandia.gov/contact_us/index.html", "mdivey@sandia.gov"]}, {"institutionName": "U.S.Department of Energy, Office of Science", "institutionAdditionalName": ["Office of Science"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ethan.alpern@science.doe.gov", "https://science.energy.gov/about/contact/"]}, {"institutionName": "University of Alaska Fairbanks", "institutionAdditionalName": ["UAF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uaf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uaf.edu/uaf/contact/", "lhinzman@iarc.uaf.edu"]}, {"institutionName": "University of Nebraska Lincoln", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dbillesbach1@unl.edu"]}, {"institutionName": "University of New Hampshire", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unh.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unh.edu/main/contact-us?utm_source=contact&utm_medium=navigation&utm_campaign=bar-menu", "scott.ollinger@unh.edu"]}] [{"policyName": "NGEE-Arctic Data Policies", "policyURL": "https://ngee-arctic.ornl.gov/data-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ngee-arctic.ornl.gov/sites/default/files/page_files/NGEE-Arctic_Data_Policy_20131203_approved.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ngee-arctic.ornl.gov/sites/default/files/page_files/NGEE-Arctic_Fair-Use_Policy_20130515_approved.pdf"}] restricted [{"dataUploadLicenseName": "NGEE Arctic Metadata Entry and Data Upload ToolTips", "dataUploadLicenseURL": "https://ngee-arctic.ornl.gov/sites/default/files/page_files/NGEE_Arctic_Metadata_Entry_and_Data_Upload_Tool_Tips.pdf"}] ["unknown"] {} ["DOI"] https://ngee-arctic.ornl.gov/sites/default/files/page_files/NGEE_Arctic_Data_Management_Guides_20150429.pdf ["none"] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "https://mercury-ops2.ornl.gov/ngeesolr4/core1/select?q=*:*&version=2.2&start=0&rows=10&indent=on&wt=xslt&tr=example_rss.xs", "syndicationType": "RSS"} NGEE Arctic Data Catalog is covered by Clarivate Data Citation Index 2015-12-02 2021-08-11 +r3d100011678 NIRD Research Data Archive eng [{"additionalName": "NIRD Archive", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: NorStore Research Data Archive", "additionalNameLanguage": "eng"}] https://archive.sigma2.no/ [] ["sigma2@uninett.no"] The NIRD Research Data Archive is a repository that provides long-term storage for research data and is compliant with the Open Archival Information System (OAIS) reference model . The aim of the archive is to provide (public) access to published research data and to promote cross-disciplinary studies. The NIRD Research Data Archive (NIRD Archive) is in full production. The NIRD Archive will operate on a “subject to approval” basis and will accept any type of research data from Norwegian academically funded projects that is no longer considered propriatory. eng ["other"] {"size": "174 datasets", "updatedp": "2020-02-11"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.sigma2.no/content/nird-research-data-archive [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Norwegian University of Science and Technology", "institutionAdditionalName": ["NTNU", "Norges teknisk-naturvitenskapelige universitet"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ntnu.edu/", "institutionIdentifier": ["ROR:05xg72x27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ntnu.edu/contact"]}, {"institutionName": "Research Council of Norway", "institutionAdditionalName": ["Forskningsr\u00e5det", "RCN"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.forskningsradet.no/en/Home_page/1177315753906", "institutionIdentifier": ["ROR:00epmv149"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["post@forskningsradet.no"]}, {"institutionName": "UNINETT Sigma2", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sigma2.no/", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://www.sigma2.no/content/nird-research-data-archive", "sigma2@uninett.no", "sigma@uninett.no"]}, {"institutionName": "University of Bergen", "institutionAdditionalName": ["UiB", "Universitetet i Bergen"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uib.no/en", "institutionIdentifier": ["ROR:03zga2b32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uib.no/en/about/74388/contact-information"]}, {"institutionName": "University of Oslo", "institutionAdditionalName": ["UiO", "Universitetet i Oslo"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uio.no/english/", "institutionIdentifier": ["ROR:01xtthb56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uio.no/english/about/contact/"]}, {"institutionName": "University of Troms\u00f8", "institutionAdditionalName": ["UiT", "Universitetet i Troms\u00f8"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.uit.no/startsida", "institutionIdentifier": ["ROR:00wge5k78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://en.uit.no/om/art?p_document_id=339795&dim=179034"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.sigma2.no/content/terms-and-conditions-use-research-data-archive"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data.norge.no/nlod/en/2.0"}] restricted [{"dataUploadLicenseName": "Research Data Archive - Depositor Agreement", "dataUploadLicenseURL": "https://www.sigma2.no/research-data-archive-depositor-agreement"}, {"dataUploadLicenseName": "User Guide for the Research Data Archive", "dataUploadLicenseURL": "https://www.sigma2.no/content/archive-user-guide"}] ["unknown"] yes {} ["DOI"] https://www.sigma2.no/content/archive-user-guide#Citations ["none"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} NIRD Research Data Archive is covered by Clarivate Data Citation Index. Published metadata will be provided in an ‘open access’ framework, while downloading and depositing datasets require Feide/OpenIdP authentication (Feide is the national federated identity service in Norway). In the near future it is anticipate that the archive will provide published datasets with a unique persistent identifier (PID), such that the dataset can be permanently referenced from other sources (e.g. CRIStin). There is currently no national PID service suitable for the use proposed here. Instead that datasets should be published and available for download from the archive for a period of 10 years. Legacy data or larger data collections of national importance may be supported for much longer periods (indefinitely). While waiting for a suitable national PID provider, datasets will not be given an official identifier or published for public access. 2015-12-09 2020-02-11 +r3d100011679 Northern California Earthquake Data Center eng [{"additionalName": "NCEDC", "additionalNameLanguage": "eng"}] http://ncedc.org/ ["biodbcore-001528", "doi:10.7932/NCEDC"] ["ncedcinfo@ncedc.org"] The Northern California Earthquake Data Center (NCEDC) is a permanent archive and distribution center primarily for multiple types of digital data relating to earthquakes in central and northern California. The NCEDC is located at the Berkeley Seismological Laboratory, and has been accessible to users via the Internet since mid-1992. The NCEDC was formed as a joint project of the Berkeley Seismological Laboratory (BSL) and the U.S. Geological Survey (USGS) at Menlo Park in 1991, and current USGS funding is provided under a cooperative agreement for seismic network operations. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ncedc.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["BARD", "BDSN", "HRSN", "earthquake", "geophysics", "seismology"] [{"institutionName": "Berkeley Seismological Laboratory", "institutionAdditionalName": ["BSL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://seismo.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@seismo.berkeley.edu"]}, {"institutionName": "California Integrated Seismic Network, Advanced National Seismic SystemNetwork", "institutionAdditionalName": ["ANSS", "CISN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://earthquake.usgs.gov/monitoring/anss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://earthquake.usgs.gov/monitoring/anss/contacts.php"]}, {"institutionName": "California Integrated Seismic Network, Northern California Earthquake Management Center", "institutionAdditionalName": ["CISN", "NCEMC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cisn.org/ncmc.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cisn.org/contacts.html"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://earthquake.usgs.gov/regional/nca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://answers.usgs.gov/cgi-bin/gsanswers?tmplt=2/"]}, {"institutionName": "University of California, Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Information Policies and Instructions", "policyURL": "http://www.usgs.gov/laws/info_policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usgs.gov/laws/info_policies.html"}] closed [] ["other"] yes {"api": "http://ncedc.org/DART/", "apiType": "FTP"} ["DOI"] http://ncedc.org/acknowledge.html ["none"] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2015-12-09 2021-11-16 +r3d100011680 Ozone Mapping and Profiler Suite eng [{"additionalName": "Measuring global ozone, aerosols, and reflectivity", "additionalNameLanguage": "eng"}, {"additionalName": "OMPS", "additionalNameLanguage": "eng"}] http://ozoneaq.gsfc.nasa.gov/omps/ [] ["richard.d.mcpeters@nasa.gov"] The Ozone Mapping and Profiler Suite measures the ozone layer in our upper atmosphere—tracking the status of global ozone distributions, including the ‘ozone hole.’ It also monitors ozone levels in the troposphere, the lowest layer of our atmosphere. OMPS extends out 40-year long record ozone layer measurements while also providing improved vertical resolution compared to previous operational instruments. Closer to the ground, OMPS’s measurements of harmful ozone improve air quality monitoring and when combined with cloud predictions; help to create the Ultraviolet Index, a guide to safe levels of sunlight exposure. OMPS has two sensors, both new designs, composed of three advanced hyperspectralimaging spectrometers.The three spectrometers: a downward-looking nadir mapper, nadir profiler and limb profiler. The entire OMPS suite currently fly on board the Suomi NPP spacecraft and are scheduled to fly on the JPSS-2 satellite mission. NASA will provide the OMPS-Limb profiler. eng ["disciplinary"] {"size": "170 products", "updatedp": "2015-12-11"} 2011-10-28 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://npp.gsfc.nasa.gov/omps.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Suomi NPP", "aerospace", "air quality", "atmosphere", "climatology", "concentration", "earth", "geophysics", "ozone layer", "satellite", "sensor"] [{"institutionName": "NASA Goddard Space Flight Center", "institutionAdditionalName": ["GSFC", "Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@noaa.gov"]}, {"institutionName": "U.S. Department of Defense", "institutionAdditionalName": ["Department of Defense"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.defense.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.defense.gov/Contact"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "NATIONAL SPACE POLICY of the UNITED STATES of AMERICA", "policyURL": "https://www.whitehouse.gov/sites/default/files/national_space_policy_6-28-10.pdf"}, {"policyName": "NOAA Freedom of Information Act (FOIA)", "policyURL": "http://www.noaa.gov/foia/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ozoneaq.gsfc.nasa.gov/data/omps/"}] closed [] [] {"api": "http://ozoneaq.gsfc.nasa.gov/omps/media/presentations/peter_hall_metadata_2015-03-12.pdf", "apiType": "NetCDF"} ["DOI"] [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://feeds.feedburner.com/OmpsUpdates", "syndicationType": "RSS"} 2015-12-11 2016-09-22 +r3d100011681 Precipitation Processing System eng [{"additionalName": "PPS", "additionalNameLanguage": "eng"}] http://pps.gsfc.nasa.gov/ [] ["helpdesk@mail.pps.eosdis.nasa.gov."] The Precipitation Processing System (PPS) evolved from the Tropical Rainfall Measuring Mission (TRMM) Science Data and Information System (TSDIS). The purpose of the PPS is to process, analyze and archive data from the Global Precipitation Measurement (GPM) mission, partner satellites and the TRMM mission. The PPS also supports TRMM by providing validation products from TRMM ground radar sites. All GPM, TRMM and Partner public data products are available to the science community and the general public from the TRMM/GPM FTP Data Archive. Please note that you need to register to be able to access this data. Registered users can also search for GPM, partner and TRMM data, order custom subsets and set up subscriptions using our PPS Data Products Ordering Interface (STORM) eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://pps.gsfc.nasa.gov/aboutpps.html [{"name": "Configuration data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Global Precipitation Measurement (GPM)", "TRMM Science Data and Information System (TSDIS)", "Tropical Rainfall Measuring Mission (TRMM)", "climatology", "earth's water cycle", "hydrology", "meterology", "precipitation", "satellite", "snow", "tropical rainfall"] [{"institutionName": "Goddard Earth Sciences Data and Information Services Center", "institutionAdditionalName": ["DAAC", "GES DISC", "Goddard Distributed Active Archive Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://disc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://disc.sci.gsfc.nasa.gov/contact.shtml"]}, {"institutionName": "NASA Goddard Space Flight Center", "institutionAdditionalName": ["GSFC", "Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}] [{"policyName": "How to get Access to GPM NRT Data", "policyURL": "http://pps.gsfc.nasa.gov/Documents/nrtInstructions.pdf"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://pps.gsfc.nasa.gov/aboutpps.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://pps.gsfc.nasa.gov/Documents/GPMSDMPlan-Rev1.pdf"}] closed [] [] {"api": "ftp://arthurhou.pps.eosdis.nasa.gov/", "apiType": "FTP"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} STORM (https://storm.pps.eosdis.nasa.gov) is a publicly available Web-based data access interface for the Global Precipitation Measurement (GPM) Mission's Precipitation Processing System (PPS). 2015-12-11 2016-09-15 +r3d100011682 Scholar's Bank eng [] https://scholarsbank.uoregon.edu/xmlui/ [] ["scholars@uoregon.edu"] Scholars' Bank is the open access repository for the intellectual work of faculty, students and staff at the University of Oregon and partner institution collections. eng ["institutional"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.uoregon.edu/our-mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Rome history", "african-american voting", "demography", "geology", "mammalia", "morphology", "politics", "race", "survey"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Oregon", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uoregon.edu/", "institutionIdentifier": ["ROR:0293rh119"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uoregon.edu/contact-us"]}, {"institutionName": "University of Oregon, UO Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.uoregon.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://library.uoregon.edu/contact"]}] [{"policyName": "Author License Agreement", "policyURL": "https://library.uoregon.edu/digitalscholarship/irg/SBlicense"}, {"policyName": "Policies & Guidelines", "policyURL": "https://library.uoregon.edu/digitalscholarship/irg/SB_Policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/us/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.uoregon.edu/digitalscholarship/irg/SB_Copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/licenses/publicdomain/"}] restricted [{"dataUploadLicenseName": "Submitting", "dataUploadLicenseURL": "https://library.uoregon.edu/digitalscholarship/irg/SB_Submit"}] ["DSpace"] {} ["DOI", "hdl"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Scholar's Bank is covered by Thomson Reuters Data Citation Index. 2015-12-21 2021-11-16 +r3d100011683 SeaBASS eng [] https://seabass.gsfc.nasa.gov/ [] ["seabass@seabass.gsfc.nasa.gov"] SeaBASS, the publicly shared archive of in situ oceanographic and atmospheric data maintained by the NASA Ocean Biology Processing Group (OBPG). High quality in situ measurements are prerequisite for satellite data product validation, algorithm development, and many climate-related inquiries. As such, the NASA Ocean Biology Processing Group (OBPG) maintains a local repository of in situ oceanographic and atmospheric data to support their regular scientific analyses. The SeaWiFS Project originally developed this system, SeaBASS, to catalog radiometric and phytoplankton pigment data used their calibration and validation activities. To facilitate the assembly of a global data set, SeaBASS was expanded with oceanographic and atmospheric data collected by participants in the SIMBIOS Program, under NASA Research Announcements NRA-96 and NRA-99, which has aided considerably in minimizing spatial bias and maximizing data acquisition rates. Archived data include measurements of apparent and inherent optical properties, phytoplankton pigment concentrations, and other related oceanographic and atmospheric data, such as water temperature, salinity, stimulated fluorescence, and aerosol optical thickness. Data are collected using a number of different instrument packages, such as profilers, buoys, and hand-held instruments, and manufacturers on a variety of platforms, including ships and moorings. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://seabass.gsfc.nasa.gov/wiki/System_Description [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MODIS-Aqua", "MODIS-Terra", "OCTS", "SeaWiFS", "climate", "cruises", "phytoplankton", "satellites"] [{"institutionName": "National Aeronautics and Space Administration, Ocean Biology Processing Group", "institutionAdditionalName": ["OBPG", "OceanColor"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://oceancolor.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oceancolor.gsfc.nasa.gov/contact/"]}] [{"policyName": "Data Access Policy and Citation", "policyURL": "https://seabass.gsfc.nasa.gov/wiki/Access_Policy"}, {"policyName": "NASA's Earth Science Program Data & Information Policy", "policyURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://seabass.gsfc.nasa.gov/wiki/Access_Policy"}] restricted [{"dataUploadLicenseName": "Data Submission Policy", "dataUploadLicenseURL": "https://seabass.gsfc.nasa.gov/wiki/Data_Submission#Data%20Submission%20Policy"}] ["unknown"] yes {} ["DOI"] https://seabass.gsfc.nasa.gov/wiki/Access_Policy#Citation ["none"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2016-01-08 2021-10-08 +r3d100011684 SHARE Geonetwork eng [{"additionalName": "Stations at High Altitude for Research on the Environment", "additionalNameLanguage": "eng"}] http://share.evk2cnr.org/ [] ["http://share.evk2cnr.org/contact-us/"] SHARE - Stations at High Altitude for Research on the Environment - is an integrated Project for environmental monitoring and research in the mountain areas of Europe, Asia, Africa and South America responding to the call for improving environmental research and policies for adaptation to the effects of climate changes, as requested by International and Intergovernmental institutions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://share.evk2cnr.org/about/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["High altitude stations", "alternative energy", "biodiversity", "climate", "ecosystems", "glaciers", "ground data", "health", "instruments and sensors", "paleoclimate", "satellite images"] [{"institutionName": "Consiglio Nazionale delle Ricerche, Dipartimento Scienze del Sistema Terra e Tecnologie per l'Ambiente", "institutionAdditionalName": ["CNR", "National Research Council of Italy, Department of Earth System Science and Environmental Technologies"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dta.cnr.it/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dta.cnr.it/en/contacts/", "protocollo-ammcen@pec.cnr.it", "segreteria.dta@cnr.it"]}, {"institutionName": "United Nations Environment Programmme", "institutionAdditionalName": ["UNEP"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.unep.org/", "institutionIdentifier": ["ROR:015z29x25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unep.org/about/ContactUs/tabid/129618/Default.aspx"]}] [{"policyName": "SHARE Data Sharing and Publication Policy", "policyURL": "https://nextdata.evk2cnr.org/geonetwork/srv/eng/resources.get?uuid=c6b6060e-0648-4f88-b108-95ea00928171&fname=SHARE_DSPP_10042014.pdf&access=private&usg=AFQjCNHAzTEXAgHusJnWRevfmtYdmKM-1Q&sig2=gpOSjAvy6XpY4xUi1XseCg&bvm=bv.111396085,d.d24&cad=rja"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://nextdata.evk2cnr.org/geonetwork/srv/eng/resources.get?uuid=c6b6060e-0648-4f88-b108-95ea00928171&fname=SHARE_DSPP_10042014.pdf&access=private&usg=AFQjCNHAzTEXAgHusJnWRevfmtYdmKM-1Q&sig2=gpOSjAvy6XpY4xUi1XseCg&bvm=bv.111396085,d.d24&cad=rja"}] restricted [] ["other"] yes {"api": "http://share.evk2cnr.org:8080/geoserver/gn/wms", "apiType": "other"} ["DOI"] http://nextdata.evk2cnr.org/geonetwork/srv/eng/resources.get?uuid=c6b6060e-0648-4f88-b108-95ea00928171&fname=SHARE_DSPP_10042014.pdf&access=private&usg=AFQjCNHAzTEXAgHusJnWRevfmtYdmKM-1Q&sig2=gpOSjAvy6XpY4xUi1XseCg&bvm=bv.111396085,d.d24&cad=rja [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://share.evk2cnr.org/home/feed/", "syndicationType": "RSS"} 2016-01-08 2021-11-12 +r3d100011686 TerMEx eng [] http://mistrals.sedoo.fr/TerMEx/ [] ["termex-database@sedoo.fr"] The TerMEx program addresses, within the framework of circum-Mediterranean cooperation, two sets of major challenges: (1) the scientific challenges of the Mediterranean deep Earth dynamics, its basin deposits and its interactions with climate, and (2) the societal challenges associated with natural hazards, resources and climate change. The database aims at documenting, storing and distributing the data produced or used by the TerMEx community. This community is not exclusive and we encourage researchers of associated and related programs in the Mediterranean (e.g. Actions Marges and ESF-TopoMed) to join-in the community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-01-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mistrals.sedoo.fr/TerMEx/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Mediterreanen Sea", "bathymetry", "geology", "seafloor morphology", "sedimentary", "techtonic", "volcanic"] [{"institutionName": "Institut Pierre Simon Laplace, Ensemble de Services Pour la Recherche", "institutionAdditionalName": ["IPSL, ESPRI"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipsl.fr/en/ipsl/centers-and-services/research-services-at-ipsl-espri/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Karim.Ramage@ipsl.fr"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es, Service de Donn\u00e9es de l'OMP", "institutionAdditionalName": ["OMP", "SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sedoo.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["laurence.fleury@obs-mip.fr"]}, {"institutionName": "Universit\u00e9 de Lille, Institut de Cr\u00e9ation Audiovisuelle en Recherche et Enseignement", "institutionAdditionalName": ["ICARE"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icare.univ-lille.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@icare.univ-lille1.fr", "https://www.icare.univ-lille.fr/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://mistrals.sedoo.fr/TerMEx/"}] restricted [] ["unknown"] {"api": "https://mistrals.sedoo.fr/?editDatsId=1341&datsId=1341", "apiType": "NetCDF"} ["none"] https://mistrals.sedoo.fr/?editDatsId=1341&datsId=1341 ["none"] unknown yes [] [] {} 2016-01-12 2021-09-09 +r3d100011687 Global Precipitation Climatology Centre eng [{"additionalName": "GPCC", "additionalNameLanguage": "eng"}, {"additionalName": "WZN", "additionalNameLanguage": "deu"}, {"additionalName": "Weltzentrum f\u00fcr Niederschlagsklimatologie", "additionalNameLanguage": "deu"}] https://www.dwd.de/EN/ourservices/gpcc/gpcc.html [] ["gpcc@dwd.de"] The Global Precipitation Climatology Centre (GPCC) provides global precipitation analyses for monitoring and research of the earth's climate. The centre is a German contribution to the World Climate Research Programme (WCRP) and to the Global Climate Observing System (GCOS). eng ["disciplinary"] {"size": "", "updatedp": ""} 1989 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.dwd.de/EN/ourservices/gpcc/gpcc.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agricultural", "arctic", "atmospheric chemistry", "biometeorology", "hydrometeorology", "marine meteorology", "meteorology"] [{"institutionName": "Deutscher Wetterdienst", "institutionAdditionalName": ["DWD", "German Meteorological Service"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dwd.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nrqs528"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Climate Observing System", "institutionAdditionalName": ["GCOS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://gcos.wmo.int/en/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Climate Research Programme", "institutionAdditionalName": ["WCRP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wcrp-climate.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Meteorological Organization", "institutionAdditionalName": ["WMO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wmo.int/", "institutionIdentifier": ["ROR:011pjwf87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General Terms and Conditions of Business and Delivery", "policyURL": "https://www.dwd.de/EN/service/terms/terms_conditions_download.pdf?__blob=publicationFile&v=2"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dwd.de/EN/service/copyright/copyright_node.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.dwd.de/EN/service/copyright/copyright_node.html"}] closed [] [] {"api": "https://opendata.dwd.de/climate_environment/GPCC/html/download_gate.html", "apiType": "FTP"} ["DOI"] https://www.dwd.de/EN/ourservices/gpcc/gpcc.html [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} In this framework, the Global Precipitation Climatology Centre (GPCC) has been established in 1989 on request of the World Meteorological Organization (WMO). It is operated by Deutscher Wetterdienst (DWD, National Meteorological Service of Germany) as a German contribution to the World Climate Research Programme (WCRP). 2016-01-12 2022-01-05 +r3d100011688 Collaborative Research Centre Transregio 32 Database eng [{"additionalName": "CRC/Transregio 32 \"Patterns in Soil-Vegetation-Atmosphere Systems\"", "additionalNameLanguage": "eng"}, {"additionalName": "SFB/Transregio 32 \"Muster und Strukturen in Boden-Pflanzen-Atmosph\u00e4ren-Systemen", "additionalNameLanguage": "deu"}, {"additionalName": "TR32DB", "additionalNameLanguage": "eng"}] https://www.tr32db.uni-koeln.de/site/index.php [] ["g.bareth@uni-koeln.de", "https://www.tr32db.uni-koeln.de/site/impressum.php", "tr32db-admin@uni-koeln.de"] In the framework of the Collaborative Research Centre/Transregio 32 ‘Patterns in Soil-Vegetation-Atmosphere Systems: Monitoring, Modelling, and Data Assimilation’ (CRC/TR32, www.tr32.de), funded by the German Research Foundation from 2007 to 2018, a RDM system was self-designed and implemented. The so-called CRC/TR32 project database (TR32DB, www.tr32db.de) is operating online since early 2008. The TR32DB handles all data including metadata, which are created by the involved project participants from several institutions (e.g. Universities of Cologne, Bonn, Aachen, and the Research Centre Jülich) and research fields (e.g. soil and plant sciences, hydrology, geography, geophysics, meteorology, remote sensing). The data is resulting from several field measurement campaigns, meteorological monitoring, remote sensing, laboratory studies and modelling approaches. Furthermore, outcomes of the scientists such as publications, conference contributions, PhD reports and corresponding images are collected in the TR32DB. eng ["disciplinary"] {"size": "1862 datasets", "updatedp": "2019-01-21"} 2008-02-11 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.tr32db.uni-koeln.de/site/about.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atmospheric science", "earth science", "geography", "geophysics", "hydrology", "meteorology", "plant science", "remote sensing", "soil science"] [{"institutionName": "Collaborative Research Centre/Transregio 32", "institutionAdditionalName": ["CRC/Transregio 32", "SFB/Transregio 32"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tr32.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de/portal/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cologne", "institutionAdditionalName": ["Universit\u00e4t zu K\u00f6ln"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uni-koeln.de/", "institutionIdentifier": ["ROR:00rcxh774"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.portal.uni-koeln.de/kontakt.html"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZK", "Regional Computing Centre Cologne"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://rrzk.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rrzk.uni-koeln.de/kontakt-uebersicht.html"]}] [{"policyName": "TR32DB data policy agreement", "policyURL": "http://www.tr32db.uni-koeln.de/datapolicy/data_policy_crc_tr32.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.tr32db.uni-koeln.de/datapolicy/data_policy_crc_tr32.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.tr32db.uni-koeln.de/datapolicy/data_policy_crc_tr32.pdf"}] restricted [{"dataUploadLicenseName": "TR32DB data policy agreement", "dataUploadLicenseURL": "http://www.tr32db.uni-koeln.de/datapolicy/data_policy_crc_tr32.pdf"}] [] yes {"api": "https://www.openafs.org/", "apiType": "other"} ["DOI"] https://www.tr32db.uni-koeln.de/site/faq.php ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2016-01-14 2021-10-08 +r3d100011690 UCSD Signaling gateway eng [] http://www.signaling-gateway.org/molecule/ ["FAIRsharing_doi:10.25504/FAIRsharing.zf8s5t", "RRID:SCR_006907", "RRID:nif-0000-03604"] ["http://www.signaling-gateway.org/contactus/", "webmaster@signaling-gateway.org"] The UCSD Signaling Gateway Molecule Pages provide essential information on over thousands of proteins involved in cellular signaling. Each Molecule Page contains regularly updated information derived from public data sources as well as sequence analysis, references and links to other databases. eng ["disciplinary"] {"size": "more than 3.800 proteins", "updatedp": "2016-02-09"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.signaling-gateway.org/molecule/jsp/molpage/aboutus.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "cell", "genes", "homology", "human", "mouse", "protein structures"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH/NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": ["ROR:04q48ey07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "San Diego Supercomputer Center", "institutionAdditionalName": ["SDSC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.sdsc.edu/", "institutionIdentifier": ["ROR:04mg3nk07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sdsc.edu/about_sdsc/contacts_leadership.html"]}, {"institutionName": "UC San Diego", "institutionAdditionalName": ["UCSD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ucsd.edu/", "institutionIdentifier": ["ROR:0168r3w48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ucsd.edu/contact/index.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.signaling-gateway.org/molecule/jsp/molpage/aboutus.jsp"}] restricted [] [] {"api": "ftp://ftp.afcs.org/pub/mpdata/", "apiType": "FTP"} ["none"] ["none"] yes unknown [] [] {} The UCSD-Nature Signaling Gateway is a collaboration between the University of California, San Diego and the Nature Publishing Group (NPG), designed to facilitate navigation of the complex world of research into cellular signaling. The Signaling Gateway is made up of three components: the Molecule Pages, the Signaling Update and the Data Center. 2016-02-09 2021-10-08 +r3d100011691 ACTRIS Data Centre eng [{"additionalName": "ACTRIS DC", "additionalNameLanguage": "eng"}] https://actris.nilu.no/ ["biodbcore-001520"] ["clm@nilu.no", "kt@nilu.no", "mf@nilu.no"] The ACTRIS DC is designed to assist scientists with discovering and accessing atmospheric data and contains an up-to-date catalogue of available datasets in a number of databases distributed throughout the world. A site like this can never be complete, but we have aimed at including datasets from the most relevant databases to the ACTRIS project, also building on the work and experiences achieved in the EU FP6 research project Global Earth Observation and Monitoring. The focus of the web portal is validated data, but it is also possible to browse the ACTRIS data server for preliminary data (rapid delivery data) through this site. The web site allows you to search in a local metadata catalogue that contains information on actual datasets that are archived in external archives. It is set up so that you can search for data by selecting the chemical/physical variable, the data location, the database that holds the data, the type of data, the data acquisition platform, and the data matrix eng ["disciplinary"] {"size": "403.015 datasets", "updatedp": "2021-04-23"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://actris.nilu.no/Content/?pageid=f8f033b9e7024455b4cb866cc0170439 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ACTRIS methodologies", "Cloudnet Database", "EARLINET Database", "EBAS", "aerosol", "atmosphere", "greenhouse gas", "measurements data", "observational data", "reactive gas", "stratospheric composition"] [{"institutionName": "ACTRIS", "institutionAdditionalName": ["Aerosols, Clouds, and Trace gases Research InfraStructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://actris.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.actris.eu/contact"]}, {"institutionName": "ACTRIS Partners", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.actris.eu/who-we-are", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "2019", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation_en", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Norwegian Institute for Air Research", "institutionAdditionalName": ["NILU", "Norsk institutt for luftforskning"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nilu.no/", "institutionIdentifier": ["ROR:00q7d9z06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nilu@nilu.no"]}] [{"policyName": "ACTRIS Data Centre Data Policy", "policyURL": "https://actris.nilu.no/Data/Policy/?referrer=about"}, {"policyName": "ACTRIS Data Policy", "policyURL": "https://actris.nilu.no/Content/Documents/DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://actris.nilu.no/Content/Documents/DataPolicy.pdf"}] restricted [] ["unknown"] yes {} ["none"] https://actris.nilu.no/Data/Policy/?referrer=about [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The ACTRIS IA in FP7 (2011-2015) project was finished in April 2015. This project integrated the existing research infrastructures (EUSAAR, EARLINET, CLOUDNET, and a new trace gases network component) into a single coordinated framework. The project was funded within the EC 7th Framework Programme under "Research Infrastructures for Atmospheric Research". ICARE (https://www.icare.univ-lille.fr/) contributes with the production and provision of satellite data that complements the ACTRIS ground-based data catalogue 2016-02-10 2021-11-17 +r3d100011692 USGODAE Argo GDAC Data Browser eng [{"additionalName": "US Global Ocean Data Assimilation Experiment Argo Global Data Assembly Center Data Browser", "additionalNameLanguage": "eng"}] https://www.usgodae.org/cgi-bin/argo_select.pl [] ["godae-help@nrlmry.navy.mil", "support@argo.net"] The USGODAE Project consists of United States academic, government and military researchers working to improve assimilative ocean modeling as part of the International GODAE Project. GODAE hopes to develop a global system of observations, communications, modeling and assimilation, that will deliver regular, comprehensive information on the state of the oceans, in a way that will promote and engender wide utility and availability of this resource for maximum benefit to the community. The USGODAE Argo GDAC is currently operational, serving daily data from the following national DACs: Australia (CSIRO), Canada (MEDS), China (2: CSIO and NMDIS), France (Coriolis), India (INCOIS), Japan (JMA), Korea (2: KMA and Kordi), UK (BODC), and US (AOML). eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.usgodae.org/argo/argo.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ocean", "pressure", "salinity", "temperature"] [{"institutionName": "Fleet Numerical Meteorology and Oceanography Center", "institutionAdditionalName": ["FNMOC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usno.navy.mil/FNMOC/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usno.navy.mil/help"]}, {"institutionName": "GODAE", "institutionAdditionalName": ["Global Ocean Data Assimilation Experiment"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.godae.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.godae.org/contacts.html"]}, {"institutionName": "International Argo Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.argo.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@argo.net"]}, {"institutionName": "USGODAE Argo GDAC", "institutionAdditionalName": ["US Global Ocean Data Assimilation Experiment Argo Global Data Assembly Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.usgodae.org/argo/argo.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.usgodae.org/contacts.html"]}, {"institutionName": "United States Naval Meteorology and Oceanography Command", "institutionAdditionalName": ["NMOC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.navy.mil/local/cnmoc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Naval Research Laboratory, Marine Meteorology Division", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nrlmry.navy.mil/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nrlmry.navy.mil/contact.html"]}] [{"policyName": "A beginner's guide to accessing Argo data", "policyURL": "http://www.argo.ucsd.edu/Argo_date_guide.html"}, {"policyName": "Argo Data Reference Documentation", "policyURL": "http://www.argodatamgt.org/Documentation"}, {"policyName": "The purpose of GODAE", "policyURL": "https://www.godae.org/What-is-GODAE.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usgodae.org/disclaimer.html"}] restricted [] ["unknown"] {"api": "ftp://www.usgodae.org/pub/outgoing/argo/", "apiType": "FTP"} ["DOI"] [] unknown no [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} The USGODAE server is one of two Argo Global Data Assembly Centers (GDAC). 2016-02-10 2021-07-01 +r3d100011693 Avian Knowledge Network eng [{"additionalName": "AKN", "additionalNameLanguage": "eng"}] https://avianknowledge.net/ [] ["IM_DataManager@fws.gov", "https://avianknowledge.net/index.php/akn-contact-information/"] The Avian Knowledge Network (AKN) is an international network of governmental and non-governmental institutions and individuals linking avian conservation, monitoring and science through efficient data management and coordinated development of useful solutions using best-science practices based on the data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.avianknowledge.net/index.php?page=akn-goals [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["BMDR", "Griffin Groups", "LaMNA", "bird observatory", "eBird", "ecosystem"] [{"institutionName": "Bird Studies Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.birdscanada.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.birdscanada.org/about/index.jsp?lang=EN&targetpg=contact"]}, {"institutionName": "Connecting Conservation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://connectingconservation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://connectingconservation.org/contact-us/"]}, {"institutionName": "Klamath Bird Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://klamathbird.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Midwest Coordinated Bird Monitoring Partnership", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://midwestbirdmonitoring.ning.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Pacific Southwest Research Station", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fs.fed.us/psw/locations/arcata/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fs.fed.us/psw/contact/"]}, {"institutionName": "Partners of the AKN", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.avianknowledge.net/index.php?page=partners", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Point Blue", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.pointblue.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.pointblue.org/about-pointblue/contact-us/"]}, {"institutionName": "Rocky Mountain Avian Data Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://rmbo.org/v3/avian/Home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://rmbo.org/v3/avian/Help.aspx"]}, {"institutionName": "Sponsors of the AKN", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.avianknowledge.net/index.php?page=sponsors", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Cornell Lab of Ornithology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.birds.cornell.edu/page.aspx?pid=1609", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.birds.cornell.edu/page.aspx?pid=1644"]}] [{"policyName": "Data Access", "policyURL": "http://www.avianknowledge.net/index.php?page=data-access"}, {"policyName": "Data Security and Quality", "policyURL": "http://www.avianknowledge.net/index.php?page=data-security-and-quality"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.avianknowledge.net/index.php?page=data-access"}] restricted [{"dataUploadLicenseName": "Add your data", "dataUploadLicenseURL": "http://www.avianknowledge.net/index.php?page=participate"}] [] {} [] [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {"syndication": "https://griffingroups.com/blog/view/42373/new-datasets-added-to-mwadc?view=rss", "syndicationType": "RSS"} The AKN is bringing together bird-monitoring (point-count, area search, distance sampling, transect sampling, nest success), bird-banding, and broad-scale citizen-based bird-surveillance data. All these observational data are unified within a distributed information architecture (the AKN nodes) that is constantly expanding. 2016-02-12 2021-10-08 +r3d100011694 AVISO+ eng [] https://www.aviso.altimetry.fr/en/home.html ["ISSN 2496-0144"] ["aviso@altimetry.fr", "https://www.aviso.altimetry.fr/en/services/contact.html"] AVISO stands for "Archiving, Validation and Interpretation of Satellite Oceanographic data". Here, you will find data, articles, news and tools to help you discover or improve your skills in the altimetry domain through four key themes: ocean, coast, hydrology and ice. Altimetry is a technique for measuring height. Satellite altimetry measures the time taken by a radar pulse to travel from the satellite antenna to the surface and back to the satellite receiver. Combined with precise satellite location data, altimetry measurements yield sea-surface heights. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.aviso.altimetry.fr/en/missions.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Duacs", "Ocean Surface Topography Mission", "SSH - Sea Surface Height", "Ssalto", "climate", "earth", "radiometer", "space", "temperature", "water"] [{"institutionName": "Center for Topographic studies of the Ocean and Hydrosphere", "institutionAdditionalName": ["CTOH"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ctoh.legos.obs-mip.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ctoh.legos.obs-mip.fr/contact-info"]}, {"institutionName": "Centre National d'\u00c9tudes Spatiales", "institutionAdditionalName": ["CNES"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cnes.fr/fr/contactez-nous"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cnrs.fr/fr/une/contacts.htm"]}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es", "institutionAdditionalName": ["OMP"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Toulouse III - Paul Sabatier", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.univ-tlse3.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility of the products", "policyURL": "http://www.aviso.altimetry.fr/fileadmin/documents/data/tools/hdbk_duacs.pdf"}, {"policyName": "Conditions to get Aviso data", "policyURL": "http://www.aviso.altimetry.fr/en/services/faq.html"}, {"policyName": "Data access", "policyURL": "http://www.aviso.altimetry.fr/en/data/data-access.html"}, {"policyName": "Data format", "policyURL": "http://www.aviso.altimetry.fr/en/data/product-information/data-format.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://marine.copernicus.eu/web/27-service-commitments-and-licence.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.aviso.altimetry.fr/en/data/data-access/registration-form.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.csic.es/web/guest/aviso-legal"}] restricted [] [] yes {"api": "http://ftp.aviso.altimetry.fr", "apiType": "FTP"} ["none"] http://www.aviso.altimetry.fr/en/data/product-information/citation-and-aviso-products-licence.html [] unknown yes [] [] {"syndication": "http://www.aviso.altimetry.fr/en/courses/services/rss-feeds.html", "syndicationType": "RSS"} In 2014, the CTOH website is merged with the AVISO website to allow an operational product dissemination and a better visibility of the observation service within the altimetric community. AVISO is the showcase of Cnes activities in altimetry. Indeed, the altimetric products processed by the SALP service from Cnes (Service d'Altimétrie et de Localisation Précise) are distributed via AVISO portal since 1998. In recent years, AVISO has become a reference in international oceanographic and altimetric communities. In 2014 AVISO opens to wider applications than the ocean themes. Thus becoming AVISO +, the portal opens to hydrology / coastal / ice and merges with the CTOH website to provide users with more operational and demonstration products, and expertise in an intuitive and modern web site. Services: http://www.aviso.altimetry.fr/en/data/data-access.html 2016-02-15 2021-10-08 +r3d100011696 biodiversity.aq eng [{"additionalName": "ANTABIF dataportal", "additionalNameLanguage": "eng"}, {"additionalName": "SCAR Antarctic Biodiversity Portal", "additionalNameLanguage": "eng"}] https://www.biodiversity.aq/ [] ["https://www.biodiversity.aq/about/contacts/"] Antarctic marine and terrestrial biodiversity data is widely scattered, patchy and often not readily accessible. In many cases the data is in danger of being irretrievably lost. Biodiversity.aq establishes and supports a distributed system of interoperable databases, giving easy access through a single internet portal to a set of resources relevant to research, conservation and management pertaining to Antarctic biodiversity. biodiversity.aq provides access to both marine and terrestrial Antarctic biodiversity data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.biodiversity.aq/index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AFG", "ATLAS", "EBA", "IPT", "Princess Elisabeth Station", "SCAR-MarBIN", "biodiversity", "biogeographic", "limnetic", "mARS", "terrestrial"] [{"institutionName": "Belgian Science Policy Office", "institutionAdditionalName": ["BELSPO", "Federaal Wetenschapsbeleid", "Politique scientifique f\u00e9d\u00e9rale"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.belspo.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.belspo.be/belspo/organisation/contact_en.stm"]}, {"institutionName": "Scientific Committee on Antarctic Research", "institutionAdditionalName": ["SCAR"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.scar.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.scar.org/contact"]}, {"institutionName": "Sponsors", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.biodiversity.aq/sponsors.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Agreement", "policyURL": "http://data.biodiversity.aq/pages/data_policy"}, {"policyName": "Ethics and Norms to Follow", "policyURL": "http://www.polarcommons.org/ethics-and-norms-of-data-sharing.html"}, {"policyName": "Global Biodiversity Information Facility", "policyURL": "http://www.gbif.org/"}, {"policyName": "International Polar Year 2007-2008 Data Policy", "policyURL": "http://ipy.arcticportal.org/images/uploads/final_ipy_data_policy-1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] restricted [] [] {} ["none"] http://data.biodiversity.aq/pages/data_policy [] unknown yes [] [] {"syndication": "http://ipt.biodiversity.aq/rss.do", "syndicationType": "RSS"} We have now released an initial version of the ANTABIF Data Portal, which consolidates biodiversity data (taxonomy and occurrence) accessible through the SCAR-MarBIN (marine) or EBA's Antarctic Biodiversity (terrestrial and limnetic) websites. Blog: http://antarcticbiodiversity.blogspot.de/ 2016-02-17 2021-10-08 +r3d100011697 BioVel eng [{"additionalName": "Biodiversity Virtual e-Laboratory", "additionalNameLanguage": "eng"}] https://www.biovel.eu/ [] ["contact@biovel.eu.", "http://www.biovel.eu/contact", "support@biovel.eu"] BioVeL is a virtual e-laboratory that supports research on biodiversity issues using large amounts of data from cross-disciplinary sources. BioVeL supports the development and use of workflows to process data. It offers the possibility to either use already made workflows or create own. BioVeL workflows are stored in MyExperiment - Biovel Group http://www.myexperiment.org/groups/643/content. They are underpinned by a range of analytical and data processing functions (generally provided as Web Services or R scripts) to support common biodiversity analysis tasks. You can find the Web Services catalogued in the BiodiversityCatalogue. eng ["disciplinary"] {"size": "MyExperiment Biovel Group: 39 workflows; 18 files; 10 pack. BiodiversityCatalogue: 67 services; 50 service providers; 107 contributing members.", "updatedp": "2016-01-19"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.biovel.eu/about-biovel [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Taverna workflow suite", "biodiversity", "computer programming", "data processing tool", "ecology", "ecosystem", "genetics", "informatics", "metagenomics", "phylogenetics", "population modelling", "taxonomy", "workflow"] [{"institutionName": "Biovel International Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.biovel.eu/about-biovel/history", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cardiff University, School of Computer Science and Informatics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cs.cf.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Alex.Hardisty@cs.cardiff.ac.uk", "http://www.cs.cf.ac.uk/newsandevents/biovel.html"]}, {"institutionName": "European Commission, Community Research and Development Information Service, 7th Framework Programme", "institutionAdditionalName": ["EU, CORDIS, FP7", "FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://cordis.europa.eu/project/rcn/100168_en.html", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://cordis.europa.eu/project/rcn/100168_en.html"]}] [{"policyName": "BiodiversityCatalogue Terms Of Use", "policyURL": "https://www.biodiversitycatalogue.org/termsofuse"}, {"policyName": "Open Source", "policyURL": "https://www.biovel.eu/about-biovel"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://github.com/myGrid/biocatalogue/blob/master/license.txt"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-sa/3.0/"}] restricted [] ["unknown"] yes {"api": "https://www.biocatalogue.org/wiki/doku.php?id=public:help:general_info_on_web_services", "apiType": "REST"} ["none"] https://www.biovel.eu/about-biovel/how-to-cite-biovel ["none"] yes yes [] [] {"syndication": "https://www.biodiversitycatalogue.org/index.atom", "syndicationType": "ATOM"} Partners: http://www.biovel.eu/about-biovel/history Biovel consists of a Wiki, Biovel Portal, Taverna Workbench, BiodiversityCatalogue and myExperiment. 2016-01-19 2021-09-06 +r3d100011698 Birdata eng [{"additionalName": "BirdLife Australia", "additionalNameLanguage": "eng"}, {"additionalName": "Royal Australasian Ornithologists Union RAOU", "additionalNameLanguage": "eng"}] https://birdata.birdlife.org.au/ [] ["atlas@birdlife.org.au", "info@birdlife.org.au"] Birdata is your gateway to BirdLife Australia data including the Atlas of Australian Birds and Nest record scheme. You can use Birdata to draw bird distribution maps and generate bird lists for any part of the country. You can also join in the Atlas and submit survey information to this important environmental database. Birdata is a partnership between Birds Australia and the Tony and Lisette Lewis Foundation's WildlifeLink program to collect and make Birds Australia data available online. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://birdlife.org.au/who-we-are [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Australia", "atlassers", "biodiversity", "biology", "bird", "bird conservation", "distribution", "nature conservancy", "survey"] [{"institutionName": "BirdLife Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.birdlife.org.au/", "institutionIdentifier": ["ROR:03fhpab87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@birdlife.org.au"]}, {"institutionName": "WildlifeLink", "institutionAdditionalName": ["The Tony & Lisette Lewis Foundation"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wildlifelink.wixsite.com/wildlifelink", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wildlifelink.wixsite.com/wildlifelink/contact"]}] [{"policyName": "Policies", "policyURL": "https://www.birdlife.org.au/conservation/advocacy/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc/2.5/au/"}] restricted [{"dataUploadLicenseName": "How to record, submit and manage your data", "dataUploadLicenseURL": "https://birdata.birdlife.org.au/get-started"}] ["unknown"] {"api": "https://api.ala.org.au/", "apiType": "other"} [] ["none"] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} Data collection, data management, data extraction and the inevitable questions about how to manipulate and interpret the data cost a great deal of time and money. Most of our datasets are unfunded, and we simply must charge to cover our costs. To extract data, curate it and provide assistance to you requires a staff member and fees we collect from the sale of data assist in meeting this cost. Unfortunately, we have learned from bitter experience that we have to limit the use of our data by agreement. This is because: In the past, we have found ourselves competing against grants and tenders from other organisations which rely on unauthorised copies of our own data! We think it is fair to recognise BirdLife Australia, and the organisations that helped support our data collection efforts. We also think that it is fair to recognise the volunteer contributions to a dataset. We need to protect our interests by ensuring that data are not on-sold or distributed, and that we are not liable for any misuse of the data. Some aspects of the data contain sensitive information on rare or threatened birds. Agreements help us determine that our data is being used for the good of birds. As a non-government organisation we are not a commercial seller of data, we do it to cover the costs of ongoing data management and to assist in the usability of the data. Partners: http://www.birdlife.org.au/who-we-are/our-organisation/partners 2015-12-01 2021-11-16 +r3d100011699 Bolin Centre Database eng [{"additionalName": "Bolin Centre for Climate Research", "additionalNameLanguage": "eng"}] http://bolin.su.se/data/ ["biodbcore-001744"] ["bolindata@su.se"] The main objective of the Bolin Centre Database is to ensure the preservation, interoperability and open access of climate research data for members of the Bolin Centre for Climate Research. The Bolin Centre Database also provides expert advice and guidance on data management. The Bolin Centre itself is a multi-disciplinary consortium in Sweden that conducts research and graduate education related to the Earth´s climate, in collaboration between Stockholm University, The Swedish Meteorological and Hydrological Institute (SMHI) and the KTH Royal Institute of Technology. eng ["disciplinary"] {"size": "~100 datasets with metadata, of which some contain several subsets.", "updatedp": "2017-10-16"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://bolin.su.se/data/about.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerosols", "biodiversity", "biogeochemical cycles", "climate", "clouds", "cryosphere", "environmental science", "hydrosphere", "lacustrine", "landscape processes", "meteorology", "oceans\u2010atmosphere dynamics", "paleoclimate", "physical geography", "tectonic", "turbulence", "weather"] [{"institutionName": "Bolin Centre for Climate Researh", "institutionAdditionalName": ["Bolincentret f\u00f6r klimatforskning"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bolin.su.se/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://bolin.su.se/index.php/contacts"]}, {"institutionName": "KTH Royal Institute of Technology, FLOW", "institutionAdditionalName": ["Kungliga Tekniska H\u00f6gskolan, FLOW", "Linn\u00e9 FLOW Centre"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.flow.kth.se/", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": ["http://www.flow.kth.se/?q=node/31"]}, {"institutionName": "Stockholm University", "institutionAdditionalName": ["Stockholms universitet"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.su.se/english/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swedish Meteorological and Hydrological Institute, Rossby Centre", "institutionAdditionalName": ["SMHI, Rossby Centre"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.smhi.se/en/research/research-departments/climate-research-rossby-centre2-552", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.smhi.se/en/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://bolin.su.se/index.php/open-access"}] restricted [{"dataUploadLicenseName": "Contribute with data", "dataUploadLicenseURL": "http://bolin.su.se/data/contribute.php"}] [] no {"api": "http://bolin.su.se/data/ncscd/netcdf.php", "apiType": "NetCDF"} ["DOI"] http://bolin.su.se/index.php/data-citation [] yes yes [] [] {} 2015-11-09 2021-11-16 +r3d100011700 WRMC-BSRN eng [{"additionalName": "Baseline Surface Radiation Network", "additionalNameLanguage": "eng"}, {"additionalName": "World Radiation Monitoring Center, Baseline Surface Radiation Network", "additionalNameLanguage": "eng"}] https://www.bsrn.awi.de/ [] ["https://bsrn.awi.de/metanavi/contact/"] BSRN is a project of the Radiation Panel (now the Data and Assessment Panel) from the Global Energy and Water Cycle Experiment (GEWEX) under the umbrella of the World Climate Research Programme (WCRP). It is the global baseline network for surface radiation for the Global limate Observing System (GCOS), contributing to the Global Atmospheric Watch (GAW), and forming a ooperative network with the Network for the Detection of Atmospheric Composition Change NDACC). eng ["disciplinary"] {"size": "52 BSRN stations are in operation, 12 stations are temporarily or permanently closed, 10 stations have candidate status", "updatedp": "2018-12-19"} 1992 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://bsrn.awi.de/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["atmosphere", "earth climate system", "earth radiation field", "earth surface", "meterology", "ocean", "radiation"] [{"institutionName": "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["AWI", "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}, {"institutionName": "Global Water and Energy Exchanges Project", "institutionAdditionalName": ["GEWEX"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gewex.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gewex.org/contact/"]}, {"institutionName": "Network for the Detection of Atmospheric Composition Change", "institutionAdditionalName": ["NDACC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ndsc.ncep.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ndsc.ncep.noaa.gov/mail_admin/"]}, {"institutionName": "World Meteorological Organization, Global Atmosphere Watch", "institutionAdditionalName": ["WMO, GAW"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://community.wmo.int/activity-areas/gaw", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Meteorological Organization, Global Climate Observing System", "institutionAdditionalName": ["WMO, GCOS"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://public.wmo.int/en/programmes/global-climate-observing-system?name=AboutGCOS", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gcos@wmo.int"]}, {"institutionName": "World Meterological Organization, World Climate Research Programme", "institutionAdditionalName": ["WMO, WCRP"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://wcrp-climate.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wcrp-climate.org/contact-wcrp"]}, {"institutionName": "World Radiation Monitoring Center, Baseline Surface Radiation Network", "institutionAdditionalName": ["BSRN", "WRMC-BSRN"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bsrn.awi.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bsrn.awi.de/metanavi/contact/"]}] [{"policyName": "Conditions of data release", "policyURL": "https://bsrn.awi.de/data/conditions-of-data-release.html"}, {"policyName": "Principles and Responsibilities of ICSU World Data Centers", "policyURL": "https://www.ukssdc.ac.uk/wdc/guide/gdsystema.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.oecd.org/sti/sci-tech/38500813.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://bsrn.awi.de/data/conditions-of-data-release.html"}] restricted [{"dataUploadLicenseName": "Data input", "dataUploadLicenseURL": "https://bsrn.awi.de/data/data-input.html"}] [] {"api": "https://bsrn.awi.de/?id=387", "apiType": "FTP"} ["DOI"] https://bsrn.awi.de/?id=393 [] yes yes [] [] {} The central archive of the BSRN is the World Radiation Monitoring Center (WRMC) which was initiated by Atsumu Ohmura in 1992 and operated at ETH until 2007. Since 2008 the WRMC is operated by the Alfred Wegener Institute for Polar and Marine Research (AWI), Germany. An alternative to ftp access is data access via PANGAEA – Data Publisher for Earth & Environmental Science (http://www.pangaea.de/). The information system PANGAEA is operated as an Open Access library that is used for archiving, publishing, and distributing georeferenced data from Earth system research. 2015-11-09 2021-04-06 +r3d100011701 COSMIC Data Analysis and Archive Center eng [{"additionalName": "CDAAC", "additionalNameLanguage": "eng"}, {"additionalName": "Constellation Observing System for Meteorology Ionosphere and Climate, Data Analysis and Archive Center", "additionalNameLanguage": "eng"}] https://cdaac-www.cosmic.ucar.edu [] ["maggie@ucar.edu"] CDAAC is responsible for processing the science data received from COSMIC. This data is currently being processed not long after the data is received, i.e. approximately eighty percent of radio occultation profiles are delivered to operational weather centers within 3 hours of observation as well as in a more accurate post-processed mode (within 8 weeks of observation). eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["climate", "ionosphere", "meterology", "orbit determination", "radio occultation", "satelite observation", "scintillations", "space", "weather"] [{"institutionName": "COSMIC", "institutionAdditionalName": ["Constellation Observing System for Meteorology, Ionosphere, and Climate"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cosmic.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://www.cosmic.ucar.edu/contact.html"]}, {"institutionName": "NATO Support and Procurement Organisation", "institutionAdditionalName": ["NSPO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nspa.nato.int/en/NSPO/nspo.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nspa.nato.int/en/NSPO/chairman.htm"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/centers/hq/about/contact_us.html"]}, {"institutionName": "National Center for Atmospheric Research | University Corporation for Atmospheric Research", "institutionAdditionalName": ["NCAR / UCAR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.ucar.edu/contact-us"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncdc.noaa.gov/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Office for Nuclear Regulation", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.onr.org.uk/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.onr.org.uk/feedback.htm"]}, {"institutionName": "U.S. AIR FORCE", "institutionAdditionalName": ["USAF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.airforce.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.airforce.com/how-to-join/connect"]}] [{"policyName": "Data Policy for Metop Data and Products", "policyURL": "https://www.wmo.int/pages/prog/www/ois/Operational_Information/Newsletters/2000_2009/2008/Jan08/EUMETSATPolicy.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://www.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/notification-copyright-infringement-digital-millenium-copyright-act"}] closed [] ["other"] yes {"api": "https://cdaac-www.cosmic.ucar.edu/cdaac/status.html", "apiType": "FTP"} ["ARK"] ["none"] unknown yes [] [] {} 2015-11-09 2018-12-19 +r3d100011702 CDAWeb eng [{"additionalName": "Heliophysics Coordinated Data Analysis Web", "additionalNameLanguage": "eng"}] https://cdaweb.sci.gsfc.nasa.gov/index.html/ [] ["NASA-SPDF-Support@nasa.onmicrosoft.com", "robert.m.candey@nasa.gov"] The CDAWeb data system enables improved display and coordinated analysis of multi-instrument, multimission data bases of the kind whose analysis is critical to meeting the science objectives of the ISTP program and the InterAgency Consultative Group (IACG) Solar-Terrestrial Science Initiative. The system combines the client-server user interface technology of the World Wide Web with a powerful set of customized IDL routines to leverage the data format standards (CDF) and guidelines for implementation adopted by ISTP and the IACG. The system can be used with any collection of data granules following the extended set of ISTP/IACG standards. CDAWeb is being used both to support coordinated analysis of public and proprietary data and better functional access to specific public data such as the ISTP-precursor CDAW 9 data base that is formatted to the ISTP/IACG standards. Many data sets are available through the Coordinated Data Analysis Web (CDAWeb) service and the data coverage continues to grow. These are largely, but not exclusively, magnetospheric data and nearby solar wind data of the ISTP era (1992-present) at time resolutions of approximately a minute. The CDAWeb service provides graphical browsing, data subsetting, screen listings, file creations and downloads (ASCII or CDF). Public data from current (1992-present) space physics missions (including Cluster, IMAGE, ISTP, FAST, IMP-8, SAMPEX and others). Public data from missions before 1992 (including IMP-8, ISIS1/2, Alouette2, Hawkeye and others). Public data from all current and past space physics missions. CDAWeb ist part of "Space Physics Data Facility" (https://www.re3data.org/repository/r3d100010168). eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://cdaweb.gsfc.nasa.gov/help.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astrophysics", "electric and magnetic fields", "ephemeris", "gamma and X-Rays", "particles", "plasma and solar wind", "remote sensing", "solar terrestrial physics", "standard"] [{"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center", "institutionAdditionalName": ["NASA, GSFC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Space Science Data Center", "institutionAdditionalName": ["NSSDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nssdc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nssdc-request@lists.nasa.gov"]}, {"institutionName": "Space Physics Data Facility", "institutionAdditionalName": ["SPDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://spdf.gsfc.nasa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Robert.E.McGuire@nasa.gov", "tamara.j.kovalick@nasa.gov"]}] [{"policyName": "Data and Information Policy", "policyURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] ["other"] {"api": "ftp://cdaweb.gsfc.nasa.gov/", "apiType": "FTP"} ["none"] ["none"] unknown yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} mirror at: http://cdhf5.bnsc.rl.ac.uk/cdaweb.new/ 2015-11-09 2021-08-24 +r3d100011703 Chesapeake Bay Data Hub eng [{"additionalName": "CPB", "additionalNameLanguage": "eng"}, {"additionalName": "Chesapeake Bay Program", "additionalNameLanguage": "eng"}] https://www.chesapeakebay.net/what/data [] ["https://www.chesapeakebay.net/who/contact", "mmallone@chesapeakebay.net"] This interface provides access to several types of data related to the Chesapeake Bay. Bay Program databases can be queried based upon user-defined inputs such as geographic region and date range. Each query results in a downloadable, tab- or comma-delimited text file that can be imported to any program (e.g., SAS, Excel, Access) for further analysis. Comments regarding the interface are encouraged. Questions in reference to the data should be addressed to the contact provided on subsequent pages. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://archive.chesapeakebay.net/pubs/532.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Geographic Information System (GIS)", "Quality Assurance (QA)", "agriculture", "algae", "bathymetry", "biodiversity", "crabs", "disease", "drainage basin", "ecology", "ecosystem", "emissions", "fish", "forest", "hydrology", "invertebrate", "land use", "mammal", "marine", "natural infrasturcture", "pollution", "sedimentation", "submerged aquatic vegetation", "terrestrial", "urbanization", "vertebrate", "water quality", "watershed", "zooplankton"] [{"institutionName": "U.S. Environmental Protection Agency, Chesapeake Bay Program Office", "institutionAdditionalName": ["EPA, CBPO"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www2.epa.gov/aboutepa/about-chesapeake-bay-program-office", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["debell.kevin@epa.gov", "https://www2.epa.gov/aboutepa/about-chesapeake-bay-program-office"]}] [{"policyName": "Chesapeake Bay Program Guidance for Data Management", "policyURL": "http://archive.chesapeakebay.net/cims/Guidance%20for%20Data%20Management%20Nov%202006.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://archive.chesapeakebay.net/cims/Guidance%20for%20Data%20Management%20Nov%202006.pdf"}] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.chesapeakebay.net/site/terms"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.chesapeakebay.net/site/terms"}, {"dataLicenseName": "other", "dataLicenseURL": "http://archive.chesapeakebay.net/cims/Guidance%20for%20Data%20Management%20Nov%202006.pdf"}] open [{"dataUploadLicenseName": "Chesapeake Bay Program Guidance for Data Management", "dataUploadLicenseURL": "http://archive.chesapeakebay.net/cims/Guidance%20for%20Data%20Management%20Nov%202006.pdf"}] ["other"] {} [] https://www.chesapeakebay.net/terms [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} The Chesapeake Bay Program is founded on the commitment of Pennsylvania, Maryland, Virginia, the District of Columbia, the Federal Government and the Chesapeake Bay Commission to work in partnership to protect and restore the Chesapeake Bay system. In the years since the Chesapeake Bay Agreement of 1983 , the Program has expanded its scope of partnerships to include greater participation by citizens, local governments, businesses and others. The Program has also expanded its geographic and technical scope by encompassing more activities in the watershed, the airshed and even the influence of the ocean in recognition of the extensive ecosystem connections that affect the Bay and its management. Funding: https://www.chesapeakebay.net/about/how/funding -- Bay program partners: http://www.chesapeakebay.net/about/partners 2015-11-09 2018-12-19 +r3d100011704 Climate Data Online eng [{"additionalName": "CDO", "additionalNameLanguage": "eng"}] https://www.ncdc.noaa.gov/cdo-web/ ["biodbcore-001649"] ["https://www.ncdc.noaa.gov/contact", "ncei.orders@noaa.gov"] Climate Data Online (CDO) provides free access to NCDC's archive of global historical weather and climate data in addition to station history information. These data include quality controlled daily, monthly, seasonal, and yearly measurements of temperature, precipitation, wind, and degree days as well as radar data and 30-year Climate Normals eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncdc.noaa.gov/cdo-web/faq#generalSection [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climatology", "geography", "historical weather", "meteorology", "precipitation", "weather", "weather radar"] [{"institutionName": "National Oceanic and Atmospheric Administration, National Centers for Environmental Information", "institutionAdditionalName": ["NCDC", "NOAA, NCEI", "National Climatic Data Center"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncdc.noaa.gov/", "institutionIdentifier": ["RRID:SCR_009427", "RRID:nlx_154702"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncdc.noaa.gov/contact", "ncdc.orders@noaa.gov"]}] [{"policyName": "NCEI-Oceans Data Policy", "policyURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.google.com/intl/de_US/help/terms_maps.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncdc.noaa.gov/cdo-web/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.noaa.gov/foia-freedom-of-information-act"}] closed [] ["unknown"] {"api": "ftp://ftp.ncdc.noaa.gov/pub/data/noaa", "apiType": "FTP"} ["none"] ["none"] no yes [] [] {} 2015-11-09 2021-11-16 +r3d100011705 Coupled Model Intercomparison Project eng [{"additionalName": "CMIP", "additionalNameLanguage": "eng"}] https://pcmdi.llnl.gov/mips/cmip5/index.html [] ["https://pcmdi.llnl.gov/mips/cmip5/contact.html"] Under the World Climate Research Programme (WCRP) the Working Group on Coupled Modelling (WGCM) established the Coupled Model Intercomparison Project (CMIP) as a standard experimental protocol for studying the output of coupled atmosphere-ocean general circulation models (AOGCMs). CMIP provides a community-based infrastructure in support of climate model diagnosis, validation, intercomparison, documentation and data access. This framework enables a diverse community of scientists to analyze GCMs in a systematic fashion, a process which serves to facilitate model improvement. Virtually the entire international climate modeling community has participated in this project since its inception in 1995. The Program for Climate Model Diagnosis and Intercomparison (PCMDI) archives much of the CMIP data and provides other support for CMIP. We are now beginning the process towards the IPCC Fifth Assessment Report and with it the CMIP5 intercomparison activity. The CMIP5 (CMIP Phase 5) experiment design has been finalized with the following suites of experiments: I Decadal Hindcasts and Predictions simulations, II "long-term" simulations, III "atmosphere-only" (prescribed SST) simulations for especially computationally-demanding models. The new ESGF peer-to-peer (P2P) enterprise system (http://pcmdi9.llnl.gov) is now the official site for CMIP5 model output. The old gateway (http://pcmdi3.llnl.gov) is deprecated and now shut down permanently. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://pcmdi-cmip.llnl.gov/cmip5/index.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["aerosols", "astrophysics", "atmosphere", "climate change", "climate model", "clouds", "gases", "glacier", "methan", "ocean circulation changes", "permafrost", "physical climate", "sea-ice"] [{"institutionName": "Earth System Grid Federation", "institutionAdditionalName": ["ESGF"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://esgf.llnl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://esgf.llnl.gov/mailing-list.html"]}, {"institutionName": "Lawrence Livermore National Laboratory, Program for Climate Model Diagnosis and Intercomparison", "institutionAdditionalName": ["LLNL, PCMDI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pcmdi.llnl.gov/?", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pcmdi.llnl.gov/?"]}, {"institutionName": "Met Office Hadley Centre", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.metoffice.gov.uk/climate-change/resources/hadleycentre", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.metoffice.gov.uk/about-us/contact"]}, {"institutionName": "U.S. Department of Energy's Office of Science, Biological and Environmental Research, Climate and Environmental Sciences Division, Regional and Global Climate Modeling Program", "institutionAdditionalName": ["RGCM Program", "U.S. Department of Energy's Office of Science, BER, CESD, RGCM Program"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/ber/research/cesd/regional-and-global-modeling/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.energy.gov/about/contact/", "renu.joseph@science.doe.gov"]}] [{"policyName": "Information and Data Sharing Policy", "policyURL": "http://genomicscience.energy.gov/datasharing/"}, {"policyName": "Terms of use agreement", "policyURL": "https://pcmdi.llnl.gov/mips/cmip5/terms-of-use.html"}, {"policyName": "WEB Policies", "policyURL": "https://energy.gov/about-us/web-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.llnl.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://pcmdi.llnl.gov/mips/cmip5/terms-of-use.html"}] restricted [] ["other"] {"api": "https://pcmdi.llnl.gov/mips/cmip5/datadescription.html", "apiType": "NetCDF"} ["DOI"] https://pcmdi.llnl.gov/mips/cmip5/citation.html [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "https://cmip.llnl.gov/cmip5/news.html", "syndicationType": "RSS"} CMIP5 Data: https://pcmdi.llnl.gov/mips/cmip5/availability.html; https://pcmdi.llnl.gov/?cmip5/index.html 2015-11-09 2018-12-19 +r3d100011707 Genomic Observatories MetaDatabase eng [{"additionalName": "GEOME", "additionalNameLanguage": "eng"}] https://geome-db.org [] ["ecrandall@psu.edu", "geome.help@gmail.com", "https://geome-db.org/contact"] The Genomic Observatories Meta-Database (GEOME) is a web-based database that captures the who, what, where, and when of biological samples and associated genetic sequences. GEOME helps users with the following goals: ensure the metadata from your biological samples is findable, accessible, interoperable, and reusable; improve the quality of your data and comply with global data standards; and integrate with R, ease publication to NCBI's sequence read archive, and work with an associated LIMS. The initial use case for GEOME came from the Diversity of the Indo-Pacific Network (DIPnet) resource. eng ["disciplinary"] {"size": "", "updatedp": "2021-02-24"} 2017 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://geome-db.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "biology", "ecology", "evolution", "genetics", "genomic", "metadata"] [{"institutionName": "Diversity of the Indo-Pacific Network", "institutionAdditionalName": ["DIPnet"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://diversityindopacific.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://diversityindopacific.net"]}, {"institutionName": "National Museum of Natural History", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://naturalhistory.si.edu", "institutionIdentifier": ["ROR:00cz47042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["meyerC@si.edu"]}, {"institutionName": "National Science Foundation, Division of Environmental Biology", "institutionAdditionalName": ["DEB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/funding/pgm_summ.jsp?pims_id=503634", "institutionIdentifier": ["ROR:03g87he71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["debquestions@nsf.gov"]}, {"institutionName": "University of Hawaii", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hawaii.edu/", "institutionIdentifier": ["ROR:03tzaeb71"], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["eric.d.crandall@gmail.com"]}] [{"policyName": "Data usage policy", "policyURL": "https://geome-db.org/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://geome-db.org/about#dataPolicy"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://diversityindopacific.net/data-usage-agreement/"}] restricted [{"dataUploadLicenseName": "Data Usage Policy", "dataUploadLicenseURL": "https://geome-db.org/about"}] ["other"] {"api": "https://api.geome-db.org/apidocs/current/service.json", "apiType": "REST"} ["ARK"] https://geome-db.org/about#dataPolicy [] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-11-09 2021-02-25 +r3d100011708 ASTER JPL eng [{"additionalName": "Advanced Spaceborne Thermal Emission and Reflection Radiometer", "additionalNameLanguage": "eng"}] https://asterweb.jpl.nasa.gov/index.asp ["RRID:SCR_010478", "RRID:nlx_157751"] ["https://science.jpl.nasa.gov/people/Tan/"] The ASTER Project consists of two parts, each having a Japanese and a U.S. component. Mission operations are split between Japan Space Systems (J-spacesystems) and the Jet Propulsion Laboratory (JPL) in the U.S. J-spacesystems oversees monitoring instrument performance and health, developing the daily schedule command sequence, processing Level 0 data to Level 1, and providing higher level data processing, archiving, and distribution. The JPL ASTER project provides scheduling support for U.S. investigators, calibration and validation of the instrument and data products, coordinating the U.S. Science Team, and maintaining the science algorithms. The joint Japan/U.S. ASTER Science Team has about 40 scientists and researchers. Data access via NASA Reverb, ASTER Japan site, earth explorer, GloVis,GDEx and LP DAAC. See here http://asterweb.jpl.nasa.gov/data.asp . In Addition data are availabe through the newly implemented ASTER Volcano archive (AVA) http://ava.jpl.nasa.gov/ . eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://asterweb.jpl.nasa.gov/mission.asp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["serviceProvider"] ["climatology", "ecosystems", "geology", "hazard monitoring", "hydrology", "land cover", "land surface", "soils", "vegetation", "volcano monitoring"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.caltech.edu/contact"]}, {"institutionName": "Japan Spacesystems", "institutionAdditionalName": ["j-spacesystems"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jspacesystems.or.jp/en_/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ssl.jspacesystems.or.jp/en/contact/index.php"]}, {"institutionName": "Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html#"]}] [{"policyName": "ASTER user handbook", "policyURL": "https://asterweb.jpl.nasa.gov/documents.asp"}, {"policyName": "JPL Image use policy", "policyURL": "https://www.jpl.nasa.gov/imagepolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/copyrights.php"}] closed [] [] {} ["none"] [] yes yes [] [] {} The first Earth Observing System (EOS) satellite called Terra (previously AM-1) was launched on December 18, 1999. Terra flys in a sun-synchronous polar orbit, crossing the equator in the morning at 10:30. The Advanced Spaceborne Thermal Emission and Reflection Radiometer (ASTER) is one of the five state-of-the-art instrument sensor systems on-board Terra with a unique combination of wide spectral coverage and high spatial resolution in the visible near-infrared through shortwave infrared to the thermal infrared regions. It was built by a consortium of Japanese government, industry, and research groups. - See more at: https://lpdaac.usgs.gov/dataset_discovery/aster#sthash.LI2t3yjv.dpuf 2015-07-20 2018-12-19 +r3d100011709 Complete Genomics eng [] http://www.completegenomics.com/ [] ["http://www.completegenomics.com/contact-us/", "info@completegenomics.com", "support@completegenomics.com"] Complete Genomics provides free public access to a variety of whole human genome data sets generated from Complete Genomics’ sequencing service. The research community can explore and familiarize themselves with the quality of these data sets, review the data formats provided from our sequencing service, and augment their own research with additional summaries of genomic variation across a panel of diverse individuals. The quality of these data sets is representative of what a customer can expect to receive for their own samples. This public genome repository comprises genome results from both our Standard Sequencing Service (69 standard, non-diseased samples) and the Cancer Sequencing Service (two matched tumor and normal sample pairs). In March 2013 Complete Genomics was acquired by BGI-Shenzhen , the world’s largest genomics services company. BGI is a company headquartered in Shenzhen, China that provides comprehensive sequencing and bioinformatics services for commercial science, medical, agricultural and environmental applications. Complete Genomics is now focused on building a new generation of high-throughput sequencing technology and developing new and exciting research, clinical and consumer applications. eng ["disciplinary"] {"size": "69 standard, non-diseased samples as well as two matched tumor and normal sample pairs", "updatedp": "2018-01-22"} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.completegenomics.com/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "bioinformatics", "biotechnology", "genetics", "genomics", "hardware engineering", "human DNA", "human genome analysis", "human genome sequencing", "molecular biology", "semiconductors", "tumor"] [{"institutionName": "BGI Shenzhen", "institutionAdditionalName": ["Beijing Genomics Institute Shenzhen"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.bgi.com/global/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Complete Genomics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.completegenomics.com/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.completegenomics.com/contact-us/"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.completegenomics.com/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.completegenomics.com/terms/"}] restricted [{"dataUploadLicenseName": "Sample Submission Instructions", "dataUploadLicenseURL": "http://www.completegenomics.com/documents/Sample_Submission_Instructions.pdf"}] ["unknown"] {"api": "http://www.completegenomics.com/documents/PublicGenomes.pdf", "apiType": "FTP"} [] http://www.completegenomics.com/documents/PublicGenomes.pdf [] yes yes [] [] {} Complete Genomics is now previewing its first commercial product, the Revolocity™ system. Unlike other providers who focus on providing only sequencing equipment, Complete Genomics has designed the Revolocity system to be a total end-to-end genomics solution for large-scale, high-quality genomes. 2015-11-05 2018-12-19 +r3d100011710 Coriolis eng [{"additionalName": "Operational Oceanography", "additionalNameLanguage": "eng"}] http://www.coriolis.eu.org/ ["ISSN 2495-8956"] ["codac@ifremer.fr"] The Coriolis Data Centre handles operational oceanography measurements made in situ, complementing the measurement of the ocean surface made using instruments aboard satellites. This work is realised through the establishment of permanent networks with data collected by ships or autonomous systems that are either fixed or drifting. This data can be used to construct a snapshot of water mass structure and current intensity. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.coriolis.eu.org/About-Coriolis/Schedule [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["argo", "climate", "ecosystem", "in-situ", "mersea", "ocean circulation", "operational oceanography", "sea", "temperature", "weather"] [{"institutionName": "CNES", "institutionAdditionalName": ["Centre National d'Etudes Spatiales"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cnes.fr/fr/contactez-nous"]}, {"institutionName": "CNRS", "institutionAdditionalName": ["Centre national de la recherche scientifique", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cnrs.fr/en/home/contacts.htm"]}, {"institutionName": "IRD", "institutionAdditionalName": ["L\u2019Institut de recherche pour le d\u00e9veloppement"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ird.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ird.fr/l-ird/nous-contacter/pour-nous-contacter"]}, {"institutionName": "Ifremer, Sismer", "institutionAdditionalName": ["Institut fran\u00e7ais de recherche pour l'exploitation de la mer, Syst\u00e8mes d\u2019informations scientifiques de la Mer"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://data.ifremer.fr/SISMER", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://data.ifremer.fr/SISMER/Contacts"]}, {"institutionName": "Institut Polaire Francais", "institutionAdditionalName": ["IPEV", "Institut Paul Emile Victor"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.institut-polaire.fr/language/fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.institut-polaire.fr/site-en/contact-en/"]}, {"institutionName": "M\u00e9t\u00e9o-France", "institutionAdditionalName": ["Organisme de M\u00e9t\u00e9orologie Fran\u00e7aise"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.meteofrance.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SHOM", "institutionAdditionalName": ["Service Hydrographique & Oc\u00e9anographique de la Marine"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.shom.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.shom.fr/util/contact-shom/"]}] [{"policyName": "CLIVAR Data Policy", "policyURL": "http://www.clivar.org/resources/data/data-policy"}, {"policyName": "Data & Products", "policyURL": "http://www.coriolis.eu.org/Data-Products"}, {"policyName": "Overview", "policyURL": "http://www.coriolis.eu.org/About-Coriolis/Overview"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.coriolis.eu.org/Documentation/Technical-information-of-Coriolis-Web-Site"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.coriolis.eu.org/Legal-notice-acknowledgements/Acknowledgements/Coriolis-data-acknowledgement"}] restricted [{"dataUploadLicenseName": "Submit data", "dataUploadLicenseURL": "http://www.coriolis.eu.org/Data-Products/Submit-data"}] ["unknown"] {"api": "http://www.coriolis.eu.org/Data-Products/Data-Delivery", "apiType": "FTP"} ["DOI"] http://www.coriolis.eu.org/Legal-notice-acknowledgements/Acknowledgements/Coriolis-data-acknowledgement ["none"] unknown yes [] [] {} The CORIOLIS Data Centre is the Global Data Assembly Center (GDAC) for ARGO, OceanSITES and GOSUD project networks. 2016-01-26 2018-12-19 +r3d100011713 DBpedia eng [] https://www.dbpedia.org/ ["RRID:SCR_003661", "RRID:nlx_157815"] ["dbpedia@infai.org", "https://www.dbpedia.org/contact/"] DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link the different data sets on the Web to Wikipedia data. We hope that this work will make it easier for the huge amount of information in Wikipedia to be used in some new interesting ways. Furthermore, it might inspire new mechanisms for navigating, linking, and improving the encyclopedia itself. eng ["other"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.dbpedia.org/about/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary", "wikipedia"] [{"institutionName": "OpenLink Software Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.openlinksw.com/", "institutionIdentifier": ["ROR:03sqxy896"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.openlinksw.com/contact/"]}, {"institutionName": "University of Mannheim, School of Business Informatics and Mathematics, Data and Web Science Group", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-mannheim.de/dws/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["chris@informatik.uni-mannheim.de"]}, {"institutionName": "Universit\u00e4t Leipzig, Fakult\u00e4t f\u00fcr Mathematik und Informatik, Institut f\u00fcr Informatik", "institutionAdditionalName": ["Universit\u00e4t Leipzig, Institute of Computer Science"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mathcs.uni-leipzig.de/ifi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["auer@informatik.uni-leipzig-de"]}, {"institutionName": "dbPedia Members", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dbpedia.org/members/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://wiki.dbpedia.org/about/contact"]}, {"institutionName": "wikipedia", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wikipedia.org/", "institutionIdentifier": ["RRID:SCR_004897", "RRID:nlx_86719"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://en.wikipedia.org/wiki/Wikipedia:Contact_us"]}] [{"policyName": "Imprint", "policyURL": "https://www.dbpedia.org/imprint/"}, {"policyName": "dbpedia mapping guide", "policyURL": "http://mappings.dbpedia.org/index.php/Mapping_Guide"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License"}, {"dataLicenseName": "other", "dataLicenseURL": "https://en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License"}] closed [] ["other"] yes {"api": "https://dbpedia.org/page/SPARQL", "apiType": "SPARQL"} ["none"] https://www.dbpedia.org/blog/dbpedia-citations-references-challenge/ [] unknown yes [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "https://www.dbpedia.org/?q=rss.xml", "syndicationType": "RSS"} 2016-02-02 2021-07-13 +r3d100011714 Earth Orientation Center eng [{"additionalName": "IERS EOP PC", "additionalNameLanguage": "eng"}] http://hpiers.obspm.fr/eop-pc/index.php?index=mission&lang=en [] ["christian.bizouard@obspm.fr", "services.iers@obspm.fr"] The Earth Orientation Centre is responsible for monitoring of long-term earth orientation parameters, publications for time dissemination and leap second announcements. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra", "rus", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://hpiers.obspm.fr/eop-pc/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DORIS", "GPS", "SLR", "VLBI", "atmosphere", "conversion of units", "cosmology", "earth's rotation", "geodesy", "gravity", "hydrology", "ocean", "satellites"] [{"institutionName": "International Earth Rotations and Reference Systems Service", "institutionAdditionalName": ["IERS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iers.org/IERS/EN/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["central_bureau@iers.org", "https://www.iers.org/IERS/EN/Organization/ProductCentres/EarthOrientationCentre/eoc.html"]}, {"institutionName": "l'Observatoire de Paris", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.obspm.fr/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.obspm.fr/-contacts-74-.html?lang=fr"]}, {"institutionName": "l'Observatoire de Paris, SYRTE", "institutionAdditionalName": ["Syst\u00e8mes de R\u00e9f\u00e9rence Temps Espace"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://syrte.obspm.fr/spip/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://syrte.obspm.fr/spip/presentation/article/contact?lang=fr"]}] [{"policyName": "IERS Conventions", "policyURL": "https://www.iers.org/IERS/EN/DataProducts/Conventions/conventions.html"}, {"policyName": "The coordinated use of observing techniques", "policyURL": "http://hpiers.obspm.fr/eop-pc/index.php?index=techniques&lang=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iers.org/IERS/EN/Organization/About/ToR/ToR.html"}] restricted [] [] {"api": "ftp://hpiers.obspm.fr/iers/series/longterm/", "apiType": "FTP"} ["none"] ["none"] unknown unknown [] [] {} Earth Orientation Center is a Product Center of International Earth Rotations and Reference Systems Service (IERS). 2016-02-15 2021-09-22 +r3d100011716 eartH2Observe eng [{"additionalName": "Global Earth Observation for Integrated Water Resource Assessment", "additionalNameLanguage": "eng"}] http://www.earth2observe.eu/ [] ["v.levizzani@isac.cnr.it"] EartH2Observe brings together the findings from European FP projects DEWFORA, GLOWASIS, WATCH, GEOWOW and others. It will integrate available global earth observations (EO), in-situ datasets and models and will construct a global water resources re-analysis dataset of significant length (several decades). The resulting data will allow for improved insights on the full extent of available water and existing pressures on global water resources in all parts of the water cycle. The project will support efficient and globally consistent water management and decision making by providing comprehensive multi-scale (regional, continental and global) water resources observations. It will test new EO data sources, extend existing processing algorithms and combine data from multiple satellite missions in order to improve the overall resolution and reliability of EO data included in the re-analysis dataset. The resulting datasets will be made available through an open Water Cycle Integrator data portal https://wci.earth2observe.eu/ : the European contribution to the GEOSS/WCI approach. The datasets will be downscaled for application in case-studies at regional and local levels, and optimized based on identified European and local needs supporting water management and decision making . Actual data access: https://wci.earth2observe.eu/data/group/earth2observe eng ["disciplinary"] {"size": "517 datasets", "updatedp": "2018-01-18"} 2014-01 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earth2observe.eu/?page_id=4120 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climatology", "earth science", "hydrology", "meteorology", "ocean", "water cycle"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en"]}, {"institutionName": "Plymouth Marine Laboratory", "institutionAdditionalName": ["PML"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.pml.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["SBG@pml.ac.uk", "https://www.pml.ac.uk/Contact-us"]}, {"institutionName": "Stichting Deltares", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.deltares.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jaap.schellekens@deltares.nl"]}, {"institutionName": "eartH2Observe Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.earth2observe.eu/?page_id=4298", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open definition", "policyURL": "http://opendefinition.org/"}, {"policyName": "Policy Context", "policyURL": "http://www.earth2observe.eu/?page_id=4136"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] ["CKAN"] yes {"api": "https://wci.earth2observe.eu/", "apiType": "FTP"} ["none"] ["none"] unknown unknown [] [] {"syndication": "http://www.earth2observe.eu/?feed=rss2", "syndicationType": "RSS"} This project has received funding from the European Union’s Seventh Programme for research, technological development and demonstration under grant agreement No 603608. 2016-02-16 2021-08-25 +r3d100011717 EDGAR eng [{"additionalName": "Emissions Database for Global Atmospheric Research", "additionalNameLanguage": "eng"}] http://edgar.jrc.ec.europa.eu [] ["edgar-info@jrc.ec.europa.eu", "greet.maenhout@ec.europa.eu"] The Emissions Database for Global Atmospheric Research (EDGAR) provides independent estimates of the global anthropogenic emissions and emission trends, based on publicly available statistics, for the atmospheric modeling community as well as for policy makers. This scientific independent emission inventory is characterized by a coherent world historical trend from 1970 to year x-3, including emissions of all greenhouse gases, air pollutants and aerosols. Data are presented for all countries, with emissions provided per main source category, and spatially allocated on a 0.1x0.1 grid over the globe. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30101 Inorganic Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://data.jrc.ec.europa.eu/collection/edgar [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CO2 emission", "Kyoto Protocol Greenhouse Gases", "ammonia", "cement", "fossil fuels", "lime", "steel"] [{"institutionName": "European Commission Joint Research Centre", "institutionAdditionalName": ["JRC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/jrc/", "institutionIdentifier": ["European Commission, Joint Research Centre"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/jrc/en/contact/form"]}, {"institutionName": "Netherlands Environment Assessment Agency", "institutionAdditionalName": ["PBL", "Planbureau voor de Leefomgeving"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.pbl.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pbl.nl/en/contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://ec.europa.eu/info/legal-notice_en"}, {"policyName": "EDGAR - Terms of use", "policyURL": "http://edgar.jrc.ec.europa.eu/terms_of_use.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://data.jrc.ec.europa.eu/licence/com_reuse"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ec.europa.eu/jrc/en/about/jrc-in-brief/data-policy"}] closed [] ["unknown"] yes {} ["none"] http://edgar.jrc.ec.europa.eu/terms_of_use.php [] unknown unknown [] [] {} Former EDGAR website at PBL: https://themasites.pbl.nl/tridion/en/themasites/edgar/ 2016-02-19 2020-07-07 +r3d100011718 EIDA eng [{"additionalName": "European Integrated Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "European Integrated waveform Data Archive", "additionalNameLanguage": "eng"}] https://www.orfeus-eu.org/data/eida/ [] ["sleeman@knmi.nl"] EIDA, an initiative within ORFEUS, is a distributed data centre established to (a) securely archive seismic waveform data and related metadata, gathered by European research infrastructures, and (b) provide transparent access to the archives by the geosciences research communities. EIDA nodes are data centres which collect and archive data from seismic networks deploying broad-band sensors, short period sensors, accelerometers, infrasound sensors and other geophysical instruments. Networks contributing data to EIDA are listed in the ORFEUS EIDA networklist (http://www.orfeus-eu.org/data/eida/networks/). Data from the ORFEUS Data Center (ODC), hosted by KNMI, are available through EIDA. Technically, EIDA is based on an underlying architecture developed by GFZ to provide transparent access to all nodes' data. Data within the distributed archives are accessible via the ArcLink protocol (http://www.seiscomp3.org/wiki/doc/applications/arclink). eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.orfeus-eu.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ESM", "European Strong Motion database", "GEOFON", "RRSM", "Rapid Raw Strong Motion database", "earthquake", "seismic networks", "seismology", "waveform"] [{"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/startseite/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gfz-potsdam.de/en/contact/"]}, {"institutionName": "ORFEUS Data Center", "institutionAdditionalName": ["ODC"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.orfeus-eu.org/", "institutionIdentifier": ["ROR:01v801w64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.orfeus-eu.org/organization/contact/form/"]}] [{"policyName": "EIDA Data Policy", "policyURL": "https://www.orfeus-eu.org/data/eida/acknowledgements/"}, {"policyName": "ORFEUS Statutes", "policyURL": "https://www.orfeus-eu.org/documents/Foundation_Orfeus.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.orfeus-eu.org/data/eida/acknowledgements/"}] restricted [] ["unknown"] {"api": "https://www.orfeus-eu.org/data/eida/webservices/", "apiType": "other"} ["DOI"] https://www.orfeus-eu.org/data/eida/acknowledgements/ [] unknown yes [] [] {} The web interface to the European Integrated waveform Data Archives (EIDA), is accessible via the centralised EIDA web pages hosted by ORFEUS. The SED continues to maintain a web interface at http://arclink.ethz.ch/webinterface/ Partners: http://www.orfeus-eu.org/data/eida/structure/ 2016-02-22 2021-08-24 +r3d100011719 eKlima eng [] http://sharki.oslo.dnmi.no/portal/page?_pageid=73,39035,73_39049&_dad=portal&_schema=PORTAL [] ["eklima@met.no"] >>>!!!<<< As stated 2021-06-28 eklima is no longer available >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nno", "nob"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://sharki.oslo.dnmi.no/Help/start/start_en.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Norwegian", "air pollution", "atmosphere", "climatology", "environment", "hydrology", "marine pollution", "oceanography", "salinity", "temperature", "weather"] [{"institutionName": "Government.no", "institutionAdditionalName": ["Regjeringen.no"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.regjeringen.no/en/id4/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["redaksjonen@dss.dep.no"]}, {"institutionName": "Norwegian Meteorological Institute", "institutionAdditionalName": ["MET", "Meteorologisk institutt"], "institutionCountry": "NOR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.met.no/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.met.no/en/contact-us"]}] [{"policyName": "Licensing and crediting", "policyURL": "https://www.met.no/en/free-meteorological-data/Licensing-and-crediting"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/no/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://data.norge.no/nlod/EN"}] [] ["other"] {"api": "http://eklima.met.no/wsKlima/start/start_en.html", "apiType": "SOAP"} ["none"] https://www.met.no/en/free-meteorological-data/Licensing-and-crediting ["none"] unknown yes [] [] {} Description: eKlima is a web site to access the database of climate data of the Norwegian Meteorological Institute from an external computer. The database contains measurements made by the Norwegian Meteorological Institute and its collaborators as far back in time as 1957. There are also some data that are older than that, with the longest data sets going as far back in time as 150 years. However, for the period before 1957 not all measurements are completely digitised yet. 2016-02-22 2021-06-28 +r3d100011720 EMEP eng [{"additionalName": "The European Monitoring and Evaluation Programme", "additionalNameLanguage": "eng"}] http://www.emep.int/ [] ["amann @ iiasa.ac.at", "emep.mscw@met.no", "hilde.fagerli @ met.no", "kjetil.torseth @ nilu.no", "manfred.ritter @ umweltbundesamt.at", "sergey.dutchak @ msceast.org"] The European Monitoring and Evaluation Programme (EMEP) is a scientifically based and policy driven programme under the Convention on Long-range Transboundary Air Pollution (CLRTAP) for international co-operation to solve transboundary air pollution problems. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.unece.org/env/lrtap/emep/strategies.html [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["air pollution", "depositions", "emission", "geophysics", "heavy metals", "hemisphere", "measurement", "modelling of atmospheric transport", "nitrogen", "ozone", "precipitation quality", "sulphur"] [{"institutionName": "EMEP Centre on Emission Inventories and Projections", "institutionAdditionalName": ["CEIP"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ceip.at/umweltsituation/industrie/branche/metalle/metall/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ceip.at/ms/ceip_home1/ceip_home/ceip_topnavi/ceip_contact/"]}, {"institutionName": "HELCOM", "institutionAdditionalName": ["Baltic Marine Environment Protection Commission - Helsinki Commission", "Helsinki Convention"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.helcom.fi/", "institutionIdentifier": ["ROR:002pjp005"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.helcom.fi/about-us/contact-us"]}, {"institutionName": "International Institute for Applied Systems Analysis, Centre for Integrated Assessment Modelling", "institutionAdditionalName": ["IIASA, CIAM"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://webarchive.iiasa.ac.at/rains/ciam.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://webarchive.iiasa.ac.at/docs/contact-us.html"]}, {"institutionName": "Meteorological Synthesizing Centre - East", "institutionAdditionalName": ["EMEP, MSC-E", "MSC-E", "\u041c\u0421\u0426-\u0412", "\u041c\u0435\u0442\u0435\u043e\u0440\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0438\u043d\u0442\u0435\u0437\u0438\u0440\u0443\u044e\u0449\u0438\u0439 \u0446\u0435\u043d\u0442\u0440 \u00ab\u0412\u043e\u0441\u0442\u043e\u043a\u00bb"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.msceast.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["msce@msceast.org"]}, {"institutionName": "Norwegian Institute for Air Research, Chemical Coordinating Centre", "institutionAdditionalName": ["EMEP CCC", "NILU, EMEP Chemical Coordinating Centre"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nilu.no/projects/ccc/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kjetil.torseth@nilu.no"]}, {"institutionName": "Norwegian Institute for Air Research, Meteorological Synthesizing Centre - West", "institutionAdditionalName": ["NILU, MSC-W", "Norsk institutt for luftforskning"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.emep.int/mscw/index_mscw.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["emep.mscw@met.no", "http://www.emep.int/mscw/index_mscw.html"]}, {"institutionName": "OSPAR Commission", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ospar.org/organisation", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["secretariat@ospar.org"]}, {"institutionName": "UNECE", "institutionAdditionalName": ["United Nations Economic Commission for Europe"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.unece.org/info/ece-homepage.html", "institutionIdentifier": ["ROR:038dn8481"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unece.org/contact/contact.html"]}, {"institutionName": "Umweltbundesamt", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.umweltbundesamt.at/", "institutionIdentifier": ["ROR:013vyke20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.umweltbundesamt.at/ueberuns/kontakt/"]}, {"institutionName": "World Meteorological Organization", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wmo.int/pages/index_en.html", "institutionIdentifier": ["ROR:011pjwf87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wmo.int/pages/contact/form_en.php"]}] [{"policyName": "EMEP Strategies", "policyURL": "http://www.unece.org/env/lrtap/emep/strategies.html"}, {"policyName": "Environmental Policy", "policyURL": "http://www.unece.org/env/welcome.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.ceip.at/ms/ceip_home1/ceip_home/webdab_emepdatabase/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://data.norge.no/nlod/en/2.0"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ceip.at/ms/ceip_home1/ceip_home/webdab_emepdatabase/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nilu.no/projects/ccc/emepdata.html"}] restricted [{"dataUploadLicenseName": "Data Policy", "dataUploadLicenseURL": "https://ebas-submit.nilu.no/DataPolicy.aspx"}, {"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "http://ebas-submit.nilu.no/terms.aspx"}] ["other"] yes {"api": "http://www.nilu.no/projects/ccc/submission/index.html", "apiType": "FTP"} ["none"] http://www.ceip.at/ms/ceip_home1/ceip_home/webdab_emepdatabase/ ["none"] yes yes [] [] {} Five EMEP Centers (CEIP, CCC, MSC-W, MSC-E, CIAM) and four Task Forces (TFEIP, TFMM, TFIAM, TFHTAP) undertake efforts in support of the EMEP work plan. --- EMEP is collaborating with: WMO:GAW (Global Atmosphere Watch (GAW) programme of WMO), EU-AQFD (Air Quality Framework Directive), AMAP (Arctic Monitoring and Assessment Programme), UNEP (United Nations Environment Programme). --- EMEP hosts data from GAW World Data Centre for Reactive Gases (WDCRG). 2016-02-23 2021-09-03 +r3d100011721 Environmental Change Network eng [{"additionalName": "ECN", "additionalNameLanguage": "eng"}, {"additionalName": "ECN Data Centre", "additionalNameLanguage": "eng"}, {"additionalName": "UK Environmental Change Network", "additionalNameLanguage": "eng"}] http://www.ecn.ac.uk [] ["ecnccu@ceh.ac.uk", "http://www.ecn.ac.uk/what-we-do/about/contact-us"] The Environmental Change Network is the UK’s long-term environmental monitoring and research (LTER) programme. We make regular measurements of plant and animal communities and their physical and chemical environment. Our long-term datasets are used to increase understanding of the effects of climate change, air pollution and other environmental pressures on UK ecosystems. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ecn.ac.uk/what-we-do/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["air", "atmospheric nitrogen chemistry", "climate", "habitat", "invertebrates", "meteorology", "plant", "precipitation chemistry", "soil", "soil solution chemistry", "surface water chemistry", "vertebrates", "weather"] [{"institutionName": "Centre for Ecology & Hydrology", "institutionAdditionalName": ["CEH"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceh.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ceh.ac.uk/contact-us"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}] [{"policyName": "Conditions of Use", "policyURL": "http://data.ecn.ac.uk/tsv/ECNdb.asp#Use"}, {"policyName": "ECN Data Centre Data Policy", "policyURL": "http://data.ecn.ac.uk/datapolicy.asp"}, {"policyName": "NERC Data policy", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/"}, {"policyName": "NERC Policy on Licensing and Charging for Environmental Data and Information Products", "policyURL": "https://nerc.ukri.org/research/sites/data/policy/nerc-licensing-charging-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://data.ecn.ac.uk/tsv/ECNdb.asp"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nerc.ukri.org/research/sites/data/policy/nerc-licensing-charging-policy/"}] closed [] ["unknown"] {"api": "http://searchmobilecomputing.techtarget.com/definition/GPRS", "apiType": "other"} ["DOI"] https://eip.ceh.ac.uk/catalogue/help/using-data/citingData ["none"] yes yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} ECN is the UK member of the International Long-Term Ecological Research Network (ILTER) and of LTER-Europe. ECN is a multi-agency programme sponsored by a consortium of UK government departments and agencies. These organisations contribute to the programme through funding either site monitoring and/or network co-ordination activities. Our sponsors can be found at http://www.ecn.ac.uk/what-we-do/about/sponsors. ECN ist one of the data centres and data resources which is hosted at ECH on behalf of the UK research community: https://eip.ceh.ac.uk/data 2016-02-29 2021-09-22 +r3d100011722 ERDDAP eng [{"additionalName": "Environmental Research Division's Data Access Program", "additionalNameLanguage": "eng"}] https://coastwatch.pfeg.noaa.gov/erddap/index.html [] ["bob.simons@noaa.gov", "https://coastwatch.pfeg.noaa.gov/erddap/legal.html#contact"] ERDDAP is a data server that gives you a simple, consistent way to download subsets of gridded and tabular scientific datasets in common file formats and make graphs and maps. This particular ERDDAP installation has oceanographic data (for example, data from satellites and buoys). eng ["disciplinary"] {"size": "1.431 datasets", "updatedp": "2018-12-19"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://catalog.data.gov/dataset/environmental-reasearch-divisions-data-access-program-erddap [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "buoys", "gridded datasets", "ocean", "remote sensing", "satellites", "tabular datasets"] [{"institutionName": "NOAA Fisheries Service\u2019s Southwest Fisheries Science Center", "institutionAdditionalName": ["SWFSC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://swfsc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://swfsc.noaa.gov/index.aspx?id=966&ParentMenuId=6"]}, {"institutionName": "NOAA Fisheries Service\u2019s Southwest Fisheries Science Center, Environmental Research Division", "institutionAdditionalName": ["ERD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://swfsc.noaa.gov/textblock.aspx?Division=ERD&id=1315&ParentMenuId=200", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NOAA's National Marine Fisheries Service", "institutionAdditionalName": ["NMFS", "NOAA Fisheries"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nmfs.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nmfs.noaa.gov/aboutus/contactus.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Licenses / Data Usage Restrictions", "policyURL": "https://coastwatch.pfeg.noaa.gov/erddap/legal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://opendefinition.org/licenses/cc-by/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://coastwatch.pfeg.noaa.gov/erddap/legal.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://coastwatch.pfeg.noaa.gov/erddap/legal.html#dataLicenses"}] closed [] ["other"] {"api": "https://coastwatch.pfeg.noaa.gov/erddap/griddap/documentation.html", "apiType": "OpenDAP"} ["none"] [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} CoastWatch has expanded from POES/AVHRR SST data for the East Coast to providing a variety of environmental data (i.e. SST, ocean color, winds, etc.) from several different satellite platforms covering all U.S. coastal waters, including Hawaii and Alaska. Today, sea surface temperature maps support meteorological weather predictions and also support commercial and recreational activities (e.g., fishing). Biologists utilize ocean color radiometry data and derived chlorophyll-a and total suspended matter/turbidity products to identify runoff plumes and blooms and also predict HABs; and sailors and commercial shipping pilots use ocean surface vector winds for safe navigation. 2016-03-02 2021-07-20 +r3d100011723 Environmental Dataset Gateway eng [{"additionalName": "EDG", "additionalNameLanguage": "eng"}, {"additionalName": "EPA's official open data catalog", "additionalNameLanguage": "eng"}] https://edg.epa.gov/metadata/catalog/main/home.page ["biodbcore-001615"] ["edg@epa.gov", "https://edg.epa.gov/metadata/catalog/identity/feedback.page"] EPA was established on December 2, 1970 to consolidate in one agency a variety of federal research, monitoring, standard-setting and enforcement activities to ensure environmental protection. Since its inception, EPA has been working for a cleaner, healthier environment for the American people eng ["disciplinary"] {"size": "5214 records", "updatedp": "2020-02-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "climate change", "ecosystem", "energy", "environmental justice", "environmental sciences", "facility", "waste", "water"] [{"institutionName": "U. S. Environmental Protection Agency", "institutionAdditionalName": ["EPA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/", "institutionIdentifier": ["ROR:03tns0030"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Regulatory Information", "policyURL": "https://www.epa.gov/laws-regulations"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usa.gov/publicdomain/label/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://edg.epa.gov/EPA_Data_License.html"}] restricted [] ["other"] {"api": "https://edg.epa.gov/metadata/webhelp/en/gptlv10/index.html#/REST_API_Syntax/00t000000029000000/1", "apiType": "REST"} ["DOI"] [] yes unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} EDG is covered by Clarivate Data Citation Index 2016-03-03 2021-11-16 +r3d100011724 EUREF Permanent Network eng [{"additionalName": "EPN", "additionalNameLanguage": "eng"}] http://www.epncb.oma.be/ [] ["epncb@oma.be"] The EPN (or EUREF Permanent Network) is a voluntary organization of several European agencies and universities that pool resources and permanent GNSS station data to generate precise GNSS products. The EPN has been created under the umbrella of the International Association Geodesy and more precisely by its sub-commission EUREF. The European Terrestrial Reference System 89 (ETRS89) is used as the standard precise GPS coordinate system throughout Europe. Supported by EuroGeographics and endorsed by the EU, this reference system forms the backbone for all geographic and geodynamic projects on the European territory both on a national as on an international level. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.epncb.oma.be/_organisation/about.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ETRS89", "EVRS", "European Terrestrial Reference System", "European Vertical Reference System", "GLONASS", "GNSS", "GPS", "Galileo", "Global Navigation Satellite System", "satellite"] [{"institutionName": "EUREF", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.euref.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.euref.eu/euref_contacts.html"]}, {"institutionName": "International Association of Geodesy", "institutionAdditionalName": ["IAG"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iag-aig.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Observatory of Belqium, Global Navigation Satellite Systems Research Group", "institutionAdditionalName": ["ROB, GNSS Research Group"], "institutionCountry": "BEL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://gnss.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy", "policyURL": "https://www.astro.oma.be/common/internet/en/data-policy-en.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.epncb.oma.be/_documentation/faq.php#q2_2"}] restricted [{"dataUploadLicenseName": "Procedure for becoming an EPN Station", "dataUploadLicenseURL": "http://www.epncb.oma.be/_documentation/guidelines/procedure_becoming_station.pdf"}] [] {"api": "http://www.epncb.oma.be/_newseventslinks/anonymous_ftp.php", "apiType": "FTP"} ["none"] http://www.epncb.oma.be/_documentation/faq.php#q2_2 [] unknown yes [] [] {} The EUREF Permanent Network (EPN) is a voluntary federation of over 100 self-funding agencies, universities, and research institutions in more than 30 European countries. They work together to maintain the European Terrestrial Reference System (ETRS89) which is the single Europe-wide standard coordinate reference system adopted by the European Commission (ref COGI action decision 2003 - F/GIS/69/EN). In addition, the INSPIRE Directive 2007/2/EC of the European Parliament and of the Council as regards interoperability of spatial data sets and services established - among other requirements - that the ETRS89 shall be used for the referencing of spatial data sets in INSPIRE. Contributors: http://www.epncb.oma.be/_organisation/contributors.php Collaborations: http://www.epncb.oma.be/_organisation/collaborations.php 2016-03-03 2018-12-19 +r3d100011725 Eurobarometer eng [{"additionalName": "Eurobarom\u00e8tre", "additionalNameLanguage": "fra"}] http://ec.europa.eu/COMMFrontOffice/PublicOpinion/index.cfm/General/index [] ["eurobarometer@ec.europa.eu"] Public Opinion in the European Union. Our surveys address major topics concerning European citizenship. The Standard Eurobarometer was established in 1973. Since 1973, the European Commission has been monitoring the evolution of public opinion in the Member States, thus helping the preparation of texts, decision-making and the evaluation of its work. Our surveys and studies address major topics concerning European citizenship: enlargement, social situation, health, culture, information technology, environment, the Euro, defence, etc. Each survey consists of approximately 1000 face-to-face interviews per country. Reports are published twice yearly. Reproduction is authorised, except for commercial purposes, provided the source is acknowledged. Special Eurobarometer reports are based on in-depth thematic studies carried out for various services of the European Commission or other EU Institutions and integrated in the Standard Eurobarometer's polling waves. Reproduction is authorised, except for commercial purposes, provided the source is acknowledged. Flash Eurobarometers are ad hoc thematic telephone interviews conducted at the request of any service of the European Commission. Flash surveys enable the Commission to obtain results relatively quickly and to focus on specific target groups, as and when required. Reproduction is authorised, except for commercial purposes, provided the source is acknowledged. The qualitative studies investigate in-depth the motivations, feelings and reactions of selected social groups towards a given subject or concept, by listening to and analysing their way of expressing themselves in discussion groups or with non-directive interviews. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["Europe", "culture", "defence", "enlargement", "environment", "health", "information technology", "public opinion", "social situation", "socio-demographics", "the Euro"] [{"institutionName": "European Commission, Directorate-General Communication", "institutionAdditionalName": ["COMM"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/departments/communication_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/communication_en"]}] [{"policyName": "Alphabetical guide to eurobarometer surveys", "policyURL": "http://ec.europa.eu/commfrontoffice/publicopinion/index.cfm/Archive/index"}, {"policyName": "Terms and conditions", "policyURL": "https://www.gesis.org/eurobarometer-data-service/search-data-access/data-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/issp/search-and-data-access/"}] closed [] ["unknown"] {} ["none"] https://www.gesis.org/eurobarometer-data-service/search-data-access/data-access ["none"] unknown yes [] [] {} Data access is provided through European Union Open Data Portal http://open-data.europa.eu/en/ . Microdata access through GESIS - Leibniz Institute for the Social Sciences, Eurobarometer Data Service http://www.gesis.org/eurobarometer-data-service/data-access/ . 2016-03-14 2018-12-19 +r3d100011726 European Centre for Medium-Range Weather Forecasts eng [{"additionalName": "CEPMMT", "additionalNameLanguage": "fra"}, {"additionalName": "Centre europ\u00e9en pour les pr\u00e9visions m\u00e9t\u00e9orologiques \u00e0 moyen terme", "additionalNameLanguage": "fra"}, {"additionalName": "ECMWF", "additionalNameLanguage": "eng"}, {"additionalName": "EZMW", "additionalNameLanguage": "deu"}, {"additionalName": "Europ\u00e4isches Zentrum f\u00fcr mittelfristige Wettervorhersage", "additionalNameLanguage": "deu"}] https://www.ecmwf.int/ [] ["https://www.ecmwf.int/en/about/contact-us"] The European Centre for Medium-Range Weather Forecasts (ECMWF) is an independent intergovernmental organisation supported by 34 states. ECMWF is both a research institute and a 24/7 operational service, producing and disseminating numerical weather predictions to its Member States. This data is fully available to the national meteorological services in the Member States. The Centre also offers a catalogue of forecast data that can be purchased by businesses worldwide and other commercial customers Forecasts, analyses, climate re-analyses, reforecasts and multi-model data are available from our archive (MARS) or via dedicated data servers or via point-to-point dissemination eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ecmwf.int/en/about/what-we-do [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Copernicus", "European forecasts", "MARS", "charts", "meteorology"] [{"institutionName": "European Centre for Medium-Range Weather Forecasts", "institutionAdditionalName": ["CEPMMT", "Centre europ\u00e9en pour les pr\u00e9visions m\u00e9t\u00e9orologiques \u00e0 moyen terme", "ECMWF", "EZMW", "Europ\u00e4isches Zentrum f\u00fcr mittelfristige Wettervorhersage"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ecmwf.int/", "institutionIdentifier": ["ROR:014w0fd65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access to forecasts", "policyURL": "https://www.ecmwf.int/en/forecasts/accessing-forecasts"}, {"policyName": "Terms of use", "policyURL": "https://www.ecmwf.int/en/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ecmwf.int/en/forecasts/accessing-forecasts/licences-available"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ecmwf.int/en/terms-use"}] restricted [] [] {"api": "https://software.ecmwf.int/wiki/display/ECAC/Unattended+file+transfer+-+ectrans", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} ECMWF is a world leader in data assimilation research and development. The quality of our forecasts depends on how well we use information received in real-time from the global observing system, which consists of numerous satellite instruments, weather stations, ships, buoys, and other components. Real-time data: You will find the Catalogue of Real-time data here: https://www.ecmwf.int/search/datasets?f[0]=im_field_audience%3A608 . You can order data through one of our catalogue contact points (https://www.ecmwf.int/en/forecasts/accessing-forecasts/order-real-time-forecasts/delivery-arrangements) or, if you are located outside of the ECMWF Member States territory, directly through ECMWF Data Services (https://www.ecmwf.int/en/forecasts/accessing-forecasts/order-real-time-forecasts/). Archive data: Depending on your location you can order archive data (https://www.ecmwf.int/en/forecasts/accessing-forecasts/order-historical-datasets) directly through ECMWF (you may have to seek authorisation from your catalogue contact point: https://www.ecmwf.int/forecasts/access-forecasts/how-can-i-obtain-ecmwf-data). Specific data sets from our data portal (http://apps.ecmwf.int/datasets/) are available free of charge, subject to terms and conditions. ECMWF wiki: https://software.ecmwf.int/wiki/spacedirectory/view.action 2016-03-07 2021-07-02 +r3d100011728 European Union Open Data Portal eng [{"additionalName": "EU ODP", "additionalNameLanguage": "eng"}, {"additionalName": "EU Open Data Portal", "additionalNameLanguage": "eng"}] https://data.europa.eu/euodp/en/data ["ISSN 2315-3091", "biodbcore-001451"] ["https://data.europa.eu/de/feedback/form"] The European Union Open Data Portal is the single point of access to a growing range of data from the institutions and other bodies of the European Union (EU). Data are free for you to use and reuse for commercial or non-commercial purposes. By providing easy and free access to data, the portal aims to promote their innovative use and unleash their economic potential. It also aims to help foster the transparency and the accountability of the institutions and other bodies of the EU. The EU Open Data Portal is managed by the Publications Office of the European Union. Implementation of the EU's open data policy is the responsibility of the Directorate-General for Communications Networks, Content and Technology of the European Commission. eng ["disciplinary"] {"size": "14.528 datasets", "updatedp": "2020-05-06"} 2012-12 ["bul", "ces", "dan", "deu", "ell", "eng", "est", "fin", "fra", "gle", "hrv", "hun", "ita", "lav", "lit", "mlt", "nld", "pol", "por", "ron", "slk", "slv", "spa", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.europa.eu/euodp/en/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "European Union", "agriculture", "business", "communication", "economics", "education and communications", "employment", "energy", "environment", "finance", "fisheries", "forestry", "geography", "industry", "law", "politics", "production", "research", "science", "social questions", "statistics", "surveys", "technology", "trade", "transport", "transport", "youth population"] [{"institutionName": "European Union", "institutionAdditionalName": ["Europ\u00e4ische Union"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": ["ROR:019w4f821", "RRID:SCR_011219", "RRID:nlx_67420"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europa.eu/european-union/contact_en"]}] [{"policyName": "Disclaimer", "policyURL": "https://ec.europa.eu/info/legal-notice_en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}, {"dataLicenseName": "other", "dataLicenseURL": "https://eur-lex.europa.eu/legal-content/EN/ALL/?uri=CELEX:02003L0098-20130717"}] restricted [] ["CKAN"] yes {"api": "https://data.europa.eu/euodp/data/api", "apiType": "REST"} ["none"] ["none"] yes unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://data.europa.eu/euodp/en/data/feeds/custom.atom?", "syndicationType": "ATOM"} 2016-03-07 2021-11-17 +r3d100011729 European-Mediterranean Seismological Centre eng [{"additionalName": "CSEM", "additionalNameLanguage": "fra"}, {"additionalName": "Centre Sismologique Euro-M\u00e9diterran\u00e9en", "additionalNameLanguage": "fra"}, {"additionalName": "EMSC", "additionalNameLanguage": "eng"}] https://www.emsc-csem.org/#2 ["ISSN 2495-9324"] ["contact@emsc-csem.org", "https://www.emsc-csem.org/about/?d=4"] EMSC collects real time parametric data (source parmaters and phase pickings) provided by 65 seismological networks of the Euro-Med region. These data are provided to the EMSC either by email or via QWIDS (Quake Watch Information Distribution System, developped by ISTI). The collected data are automatically archived in a database, made available via an autoDRM, and displayed on the web site. The collected data are automatically merged to produce automatic locations which are sent to several seismological institutes in order to perform quick moment tensors determination. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.emsc-csem.org/Earthquake/seismicity/real_time.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Citizen Seismology", "EPOS", "IMPROVER", "MARsite", "NERA", "REAKT", "Seismic Portal", "Sigma", "Verce", "earthquake"] [{"institutionName": "Digital Element", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://www.digitalelement.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.digitalelement.com/contact-us/"]}, {"institutionName": "European-Mediterranean Seismological Centre", "institutionAdditionalName": ["CSEM", "Centre Sismologique Euro-M\u00e9diterran\u00e9en", "EMSC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.emsc-csem.org/#2", "institutionIdentifier": ["ROR:034j4s684"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact[at]emsc-csem.org"]}, {"institutionName": "GeoSIG", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.geosig.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Minist\u00e8re de l'Environnement, de l\u00c9nergie et de la Mer", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ecologique-solidaire.gouv.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00c9lectricit\u00e9 de France SA", "institutionAdditionalName": ["EDF"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.edf.fr/", "institutionIdentifier": ["ROR:03wb8xz10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://particulier.edf.fr/fr/accueil/aide-et-contact/contact/contacter-edf.html"]}] [{"policyName": "Internal rules of the EMSC", "policyURL": "https://www.emsc-csem.org/Files/docs/about/internal_rules_2004.pdf"}, {"policyName": "Statutes of the EMSC", "policyURL": "https://www.emsc-csem.org/Files/docs/about/statutes_2008.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.emsc-csem.org/policy.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.emsc-csem.org/Earthquake/seismicity/real_time.php#principle"}] restricted [] ["other"] {} ["none"] https://www.emsc-csem.org/policy.php [] unknown no [] [] {"syndication": "https://www.emsc-csem.org/service/rss/", "syndicationType": "RSS"} EMSC Members: https://www.emsc-csem.org/about/?d=1#members 2016-03-14 2021-09-03 +r3d100011730 Federal Land Manager Environmental database eng [{"additionalName": "FED", "additionalNameLanguage": "eng"}] https://views.cira.colostate.edu/fed/ [] ["ciraweb@colostate.edu"] This website provides access to an extensive database of environmental data and an integrated suite of online tools and resources to help Federal Land Managers assess and analyze the air quality and visibility in Federally-protected lands such as National Parks, National Forests, and Wilderness Areas eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://views.cira.colostate.edu/feddoc/Doc/Overview/Introduction.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FLM", "IMPROVE website", "Interagency Monitoring of Protected Visual Environment", "WRAP TSS", "WRAP Technical Support System", "aerosol", "air-quality-related value AQRV", "federal land manager", "haze", "ozone", "water quality data"] [{"institutionName": "Colorado State University, Cooperative Institute for Research in the Atmosphere", "institutionAdditionalName": ["CIRA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cira.colostate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@cira.colostate.edu"]}, {"institutionName": "National Park Service", "institutionAdditionalName": ["NPS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nps.gov/index.htm", "institutionIdentifier": ["ROR:044zqqy65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nps.gov/aboutus/contactus.htm"]}, {"institutionName": "United States Forest Service", "institutionAdditionalName": ["USDA Forest Service", "United States Department of Agriculture Forest Service", "United States Forest Service"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fs.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fs.usda.gov/about-agency/contact-us"]}] [{"policyName": "Colorado Public (Open) Records Act", "policyURL": "https://www.colostate.edu/privacy/"}, {"policyName": "Colorado State University Disclaimer", "policyURL": "https://www.colostate.edu/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.colostate.edu/privacy/"}] closed [] [] {} ["none"] [] unknown yes [] [] {} FED is a project within US Forest Service Air Program 2016-03-14 2021-08-25 +r3d100011732 Galaxy Zoo eng [] https://www.zooniverse.org/projects/zookeeper/galaxy-zoo/ [] ["contact@zooniverse.org", "https://www.zooniverse.org/about/contact"] Galaxies, made up of billions of stars like our Sun, are the beacons that light up the structure of even the most distant regions in space. Not all galaxies are alike, however. They come in very different shapes and have very different properties; they may be large or small, old or young, red or blue, regular or confused, luminous or faint, dusty or gas-poor, rotating or static, round or disky, and they live either in splendid isolation or in clusters. In other words, the universe contains a very colourful and diverse zoo of galaxies. For almost a century, astronomers have been discussing how galaxies should be classified and how they relate to each other in an attempt to attack the big question of how galaxies form. Galaxy Zoo (Lintott et al. 2008, 2011) pioneered a novel method for performing large-scale visual classifications of survey datasets. This webpage allows anyone to download the resulting GZ classifications of galaxies in the project. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["deu", "eng", "fas", "fra", "heb", "hun", "ita", "pol", "por", "rus", "spa", "ukr", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://blog.galaxyzoo.org/about-2/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DECaLS", "Dark Energy Camera Legacy Survey", "Illustris", "SDSS", "Sloan Digital Sky Survey", "UKIDSS", "UKIRT", "UKIRT Infrared Deep Sky Survey", "dark energy"] [{"institutionName": "Galaxy Zoo Team", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.zooniverse.org/about/team", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford, Department of Physics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.physics.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.physics.ox.ac.uk/contacts"]}, {"institutionName": "Zooniverse", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zooniverse.org/", "institutionIdentifier": ["RRID:SCR_013969"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.zooniverse.org/about/contact"]}] [{"policyName": "Zooniverse Security", "policyURL": "https://www.zooniverse.org/security"}, {"policyName": "Zooniverse User Agreement and Privacy Policy", "policyURL": "https://www.zooniverse.org/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.0/uk/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://zoo1.galaxyzoo.org/Copyright.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.sdss.org/collaboration/#image-use"}] open [] ["unknown"] {} ["none"] http://zoo1.galaxyzoo.org/Copyright.aspx ["none"] unknown yes [] [] {"syndication": "https://blog.galaxyzoo.org/comments/feed/", "syndicationType": "RSS"} Galaxy Zoo is now arguably the world’s best-known online citizen science project, and is certainly the one with the largest number of publications based on citizen scientists input. Our success inspired the creation of The Zooniverse, hosting project using the same technique across many research areas. 2016-03-15 2021-07-02 +r3d100011733 GENCODE eng [] https://www.gencodegenes.org/ ["OMICS_06416", "RRID:SCR_014966"] ["gencode-help@ebi.ac.uk", "https://www.gencodegenes.org/pages/contact.html"] GENCODE is a scientific project in genome research and part of the ENCODE (ENCyclopedia Of DNA Elements) scale-up project. The GENCODE consortium was initially formed as part of the pilot phase of the ENCODE project to identify and map all protein-coding genes within the ENCODE regions (approx. 1% of Human genome). Given the initial success of the project, GENCODE now aims to build an “Encyclopedia of genes and genes variants” by identifying all gene features in the human and mouse genome using a combination of computational analysis, manual annotation, and experimental validation, and annotating all evidence-based gene features in the entire human genome at a high accuracy. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.gencodegenes.org/pages/gencode.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biotype", "chromosomes", "genes", "human", "mouse", "protein"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/Funded-Programs-Projects/ENCODE-Project-ENCyclopedia-Of-DNA-Elements", "institutionIdentifier": ["ROR:00baak391", "RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/about-nhgri/Contact"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["ROR:05cy4wa09", "RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "EMBL-EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}, {"policyName": "How to access the data", "policyURL": "https://www.gencodegenes.org/pages/data_access.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gencodegenes.org/pages/data_access.html"}] closed [] ["unknown"] {"api": "http://www.ensembl.org/info/data/ftp/index.html", "apiType": "FTP"} ["none"] https://www.gencodegenes.org/pages/publications.html ["none"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Participants: https://www.gencodegenes.org/pages/all_participants.html 2016-03-16 2021-07-02 +r3d100011734 GEOSS Portal eng [{"additionalName": "The Global Earth Observation System of Systems Portal", "additionalNameLanguage": "eng"}] https://www.geoportal.org/?f:dataSource=dab [] ["secretariat@geosec.org"] The GEOSS Portal provides an entry point to access Earth Observation information and services. It will connect to a system of existing portals, addressing the GEO Societal Benefit Areas globally and provide national to regional perspective to achieve synergy and leverage. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "pol", "rus", "srd", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.earthobservations.org/geoss.php [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "biodiversity", "climate", "disaster", "ecosystem", "energy", "health", "water", "weather"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.esa.int/", "institutionIdentifier": ["ROR:03wd9za21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.esa.int/Services/Contacts"]}, {"institutionName": "GEOSS Portal Data Providers", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geoportal.org/data-providers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Group on Earth Observations", "institutionAdditionalName": ["GEO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.earthobservations.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.earthobservations.org/documents.php?smid=2500"]}, {"institutionName": "Institute of Atmospheric Pollution Research", "institutionAdditionalName": ["CNR-IIA", "Consiglio Nazionale delle Ricerche Istituto sull'Inquinamento Atmosferico"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iia.cnr.it/en/", "institutionIdentifier": ["ROR:05hky6p02"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iia.cnr.it/en/926-2/"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.geoportal.org/terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.earthobservations.org/g_copyright.html"}] restricted [{"dataUploadLicenseName": "How to get involved", "dataUploadLicenseURL": "https://www.earthobservations.org/members.php"}] ["unknown"] yes {"api": "http://gs-service-production.geodab.eu/gs-service/api/demo/", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Participating Organizations: https://www.earthobservations.org/pos.php The ICSU World Data System (ICSU-WDS) is now officially recognized as a 'Participating Organization' in the intergovernmental Group on Earth Observations (GEO). WDS will contribute its Members’ key multidisciplinary quality-assessed scientific datasets to the GEO System of Systems (GEOSS) Data Collection of Open Resources for Everyone (https://www.icsu-wds.org/news/news-archive/wds-recognized-as-participating-organization-in-geo). 2016-03-16 2020-05-18 +r3d100011738 GIS Data Depot eng [] http://data.geocomm.com/ [] ["http://www.geocomm.com/corporate/contact/index.html", "info@geocomm.com"] The repository is no longer available. >>>!!!<<< 2018-09-14: no more access to GIS Data Depot >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geocomm.com/corporate/about/mission.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["FEMA Flood Data", "NWI", "USGS DOQ", "USGS DRG", "USGS DRM", "VMA", "geo-spatial", "geodesy", "remote sensing"] [{"institutionName": "Geocommunity", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geocomm.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MindSites Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.mindsites.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "http://www.geocomm.com/corporate/terms/termsandconditions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.geocomm.com/corporate/terms/copyrights.html"}] closed [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} description: The GIS Data Depot houses data in support of the GIS industry. The majority of the data provided has been downloaded by our staff from a wide range of GIS Web sites located on the Internet. There is also value added data where we have performed some translation, attribution, analysis, or other data enhancing operations. By providing all of these resources from one convenient location, GeoCommunity has made every effort to ensure that you can locate the data you are searching for in a quick and efficient manner. 2016-03-21 2018-09-14 +r3d100011739 GISTEMP eng [{"additionalName": "GISS Surface Temperature Analysis", "additionalNameLanguage": "eng"}, {"additionalName": "Goddard Institute for Space Studies Surface Temperature Analysis", "additionalNameLanguage": "eng"}] https://data.giss.nasa.gov/gistemp/ [] ["reto.a.ruedy@nasa.gov"] Surface air temperature change is a primary measure of global climate change. The GISTEMP project started in the late 1970s to provide an estimate of the changing global surface air temperature which could be compared with the estimates obtained from climate models simulating the effect of changes in atmospheric carbon dioxide, volcanic aerosols, and solar irradiance. The continuing analysis updates global temperature change from the late 1800s to the present. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ERSST v4", "Global Historical Climate Network", "L-OTI", "Land-Ocean Temperature Index", "NOAA GHCN v3", "SCARR", "Scientific Committee on Arctic Research", "long-term temperature", "temperature anomalies"] [{"institutionName": "Columbia University in the City of New York", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.columbia.edu/", "institutionIdentifier": ["ROR:00hj8s172", "RRID:SCR_011164", "RRID:nif-0000-01915"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA Goddard Institute for Space Studies", "institutionAdditionalName": ["GISS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.giss.nasa.gov/", "institutionIdentifier": ["ROR:01cyfxe35"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Trinnovim LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://trinnovim.com", "institutionIdentifier": [], "responsibilityStartDate": "2012-04-01", "responsibilityEndDate": "2017-07-31", "institutionContact": ["http://trinnovim.com/contact.html"]}] [{"policyName": "NASA Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/FOIA/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/audience/formedia/features/communication_policy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}] closed [] ["unknown"] {} ["none"] https://data.giss.nasa.gov/gistemp/references.html [] yes yes [] [] {"syndication": "https://www.giss.nasa.gov/rss2.xml", "syndicationType": "RSS"} 2016-03-30 2020-05-18 +r3d100011740 Global Land Cover Facility eng [{"additionalName": "GLCF", "additionalNameLanguage": "eng"}] [] ["staff@esipfed.org"] >>>!!!<<< 2019-01: Global Land Cover Facility goes offline see https://spatialreserves.wordpress.com/2019/01/07/global-land-cover-facility-goes-offline/ ; no more access to http://www.landcover.org >>>!!!<<< The Global Land Cover Facility (GLCF) provides earth science data and products to help everyone to better understand global environmental systems. In particular, the GLCF develops and distributes remotely sensed satellite data and products that explain land cover from the local to global scales. eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-01-07 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ASTER", "AVHRR", "Elevation data", "GOES", "Ikonos", "Landsat", "MODIS", "Orbview", "Quickbird", "SRTM"] [{"institutionName": "Federation of Earth Science Information Partners", "institutionAdditionalName": ["ESIP Federation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.esipfed.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.esipfed.org/contact", "staff@esipfed.org"]}, {"institutionName": "Global Observation of Forest and Land Cover Dynamics", "institutionAdditionalName": ["GOFC-GOLD"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.fao.org/gtos/gofc-gold/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Earth Science", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.nasa.gov/earth-science/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Maryland", "institutionAdditionalName": ["UMD"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.umd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.umd.edu/contact-us"]}, {"institutionName": "University of Maryland, Department of Geographical Sciences", "institutionAdditionalName": ["UM Geography"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://geog.umd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://geog.umd.edu/webform/contact-us"]}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": ["feeRequired"]}] [] closed [] [] {"api": "https://glovis.usgs.gov/", "apiType": "FTP"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2016-03-31 2021-08-25 +r3d100011741 Global carbon atlas eng [] http://www.globalcarbonatlas.org/?q=en/content/welcome-carbon-atlas ["biodbcore-001685"] ["contact@globalcarbonatlas.org", "http://www.globalcarbonatlas.org/?q=en/content/contacts"] The Global Carbon Atlas is an online platform to explore, visualize and interpret global and regional carbon data arising from both human activities and natural processes. The graphics and data sources are made available in the belief that their wide dissemination will lead to new knowledge and better-informed decisions to limit and cope with human-induced climate change. The Global Carbon Atlas is a community effort under the umbrella of the Global Carbon Project based on the contributions of many research institutions and individual scientists around the world who make available observations, models, and interpretation skills. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013-11 ["eng", "fra", "rus", "spa", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.globalcarbonproject.org/about/index.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cement production", "climate", "coal", "dioxide", "emission", "fossil fuels", "gas", "gas flaring", "global carbon cycle", "land", "ocean", "oil"] [{"institutionName": "Fondation BNP Paribas", "institutionAdditionalName": ["BNP Paribas Foundation"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://group.bnpparibas/decouvrez-le-groupe/fondation-bnp-paribas", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://group.bnpparibas/contacts"]}, {"institutionName": "Global Carbon Project", "institutionAdditionalName": ["GCP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.globalcarbonproject.org/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.globalcarbonproject.org/contact.htm", "info@globalcarbonproject.org"]}] [{"policyName": "Terms of use", "policyURL": "http://www.globalcarbonatlas.org/?q=en/content/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.globalcarbonatlas.org/?q=en/content/terms-use"}] restricted [] ["unknown"] {} ["none"] http://www.globalcarbonatlas.org/?q=en/content/terms-use ["none"] yes unknown [] [] {} The Global Carbon Project is part of the Earth System Science Partnership which aims to foster international cooperation in carbon cycle research. It produces an annual report which includes data about the exchange of carbon dioxide resulting from human activity. 2016-03-31 2021-11-17 +r3d100011742 AERONET eng [{"additionalName": "AErosol RObotic NETwork", "additionalNameLanguage": "eng"}] https://aeronet.gsfc.nasa.gov/ [] ["David.M.Giles@nasa.gov", "Ilya.Slutsker-1@nasa.gov"] The AERONET (AErosol RObotic NETwork) program is a federation of ground-based remote sensing aerosol networks established by NASA and PHOTONS (PHOtométrie pour le Traitement Opérationnel de Normalisation Satellitaire; Univ. of Lille 1, CNES, and CNRS-INSU) and is greatly expanded by networks (e.g., RIMA, AeroSpan, AEROCAN, and CARSNET) and collaborators from national agencies, institutes, universities, individual scientists, and partners. The program provides a long-term, continuous and readily accessible public domain database of aerosol optical, microphysical and radiative properties for aerosol research and characterization, validation of satellite retrievals, and synergism with other databases. The network imposes standardization of instruments, calibration, processing and distribution. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://aeronet.gsfc.nasa.gov/new_web/system_descriptions.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["African Monsoon Multidisciplinary Analysis (AMMA)", "Angstr\u00f6m exponent", "Atmospheric Brown Cloud (ABC)", "Base Asia - Thailand", "CALIPSO", "CATZ", "Cimel Sun Photometer", "Distributed Regional Aerosol Gridded Observation Networks (DRAGON)", "Megacity Aerosol Experiment in Mexico City (MAX-MEX)", "Sky radiance", "TIGERZ", "TROPOS", "aerosol", "aerosol optical depth (AOD)", "calibration", "sky-photometer", "sun-photometer"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Aeronautics and Space Administration, Goddard Space Flight Center", "institutionAdditionalName": ["NASA, Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": ["ROR:0171mag52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Photons/Aeronet Network", "institutionAdditionalName": ["PHOTONS", "PHOtom\u00e9trie pour le Traitement Op\u00e9rationnel de Normalisation Satellitaire"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://loaphotons.univ-lille1.fr/photons/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["didier.tanre@univ-lille1.fr", "photons@univ-lille1.fr"]}] [{"policyName": "DATA - ACCESS and DISSEMINATION TOOLS", "policyURL": "https://aeronet.gsfc.nasa.gov/new_web/data.html"}, {"policyName": "DATA - Usage and Guidelines", "policyURL": "https://aeronet.gsfc.nasa.gov/new_web/data_usage.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://aeronet.gsfc.nasa.gov/new_web/data_usage.html"}] closed [] [] {} ["none"] https://aeronet.gsfc.nasa.gov/new_web/data_usage.html [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} collaborators: https://aeronet.gsfc.nasa.gov/new_web/collaborators.html Explanation "How to download data from the AERONET database": http://www.instesre.org/Aerosols/aeronet_files/aeronet.htm Several off-line analysis tools have been developed by AERONET/PHOTONS to analyze AERONET data with satellite data. These tools can be accessed at the LOA software development page: http://loawww.univ-lille1.fr/informatique/index.php?lang=us 2016-04-04 2020-07-03 +r3d100011743 GOES Space Environment Monitor eng [{"additionalName": "GOES SEM", "additionalNameLanguage": "eng"}, {"additionalName": "Geostationary Operational Environmental Satellites SEM", "additionalNameLanguage": "eng"}] https://www.ngdc.noaa.gov/stp/satellite/goes/ [] ["ncei.info@noaa.gov"] The GOES Space Environment Monitor archive is an important component of the National Space Weather Program --a interagency program to provide timely and reliable space environment observations and forecasts. GOES satellites carry onboard a Space Environment Monitor subsystem that measures X-rays, Energetic Particles and Magnetic Field at the Spacecraft. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010-04-14 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nesdis.noaa.gov/content/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Synchronous Meteorological Satellites SMS", "energetic particle sensor EPS", "magnetometer", "meteorology", "orbit", "space weather", "spectrography", "x-ray sensor XRS"] [{"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/ngdc.html", "institutionIdentifier": ["ROR:04r0wrp59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ngdc.noaa.gov/ngdcinfo/phone.html"]}, {"institutionName": "National Environmental Satellite, Data, and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": ["ROR:007qwym43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["John.Leslie@noaa.gov"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81", "RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#disclaimer"}] closed [] ["other"] {"api": "ftp://ftp.ngdc.noaa.gov/STP/", "apiType": "FTP"} ["other"] ["none"] unknown unknown [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} You can view GOES SEM data in real time by visiting the Space Weather Prediction Center, https://www.swpc.noaa.gov/ 2016-04-05 2021-05-20 +r3d100011747 iNaturalist.org eng [{"additionalName": "iNat", "additionalNameLanguage": "eng"}] https://www.inaturalist.org/ [] ["help@inaturalist.org"] iNaturalist is a citizen science project and online social network of naturalists, citizen scientists, and biologists built on the concept of mapping and sharing observations of biodiversity across the globe. iNat is a platform for biodiversity research, where anyone can start up their own science project with a specific purpose and collaborate with other observers. eng ["disciplinary"] {"size": "42.646.862 Observations; 284.643 Species; 142.803 Identifiers; 1.153.864 Observers", "updatedp": "2020-06-03"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.inaturalist.org/pages/what+is+it [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["amphibians", "animals", "arachnids", "birds", "chromista", "fungi", "insects", "mammals", "mollusks", "plants", "protozoans", "ray-finned fishes", "reptiles"] [{"institutionName": "UC Berkeley School of Information", "institutionAdditionalName": ["University of California, Berkeley, I School"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ischool.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ischool.berkeley.edu/about/contactus"]}] [{"policyName": "Policies", "policyURL": "https://www.inaturalist.org/pages/curator+guide#policies"}, {"policyName": "Terms of Service", "policyURL": "https://www.inaturalist.org/pages/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.inaturalist.org/pages/help"}] restricted [] ["MySQL"] {} ["none"] https://www.inaturalist.org/pages/curator+guide#policies ["none"] unknown yes [] [] {} Supporters: https://www.inaturalist.org/pages/partners 2016-04-19 2021-10-08 +r3d100011748 Tropicos® eng [{"additionalName": "w\u00b3Tropicos", "additionalNameLanguage": "eng"}] https://www.tropicos.org/home [] ["http://legacy.tropicos.org/Feedback.aspx?callingurl=%2FTermsOfUse.aspx"] Tropicos® was originally created for internal research but has since been made available to the world’s scientific community. All of the nomenclatural, bibliographic, and specimen data accumulated in MBG’s electronic databases during the past 30 years are publicly available here. eng ["disciplinary"] {"size": "1.3138.741 Names; 4.696.026 Specimens; 669.200 Images; 52.515 Publications; 150.295 References; 69.713 Common Names", "updatedp": "2020-06-03"} ["eng", "fra", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.missouribotanicalgarden.org/media/fact-pages/tropicos.aspx [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Biodiversity Heritage Library (BHL)", "Botanicus project", "Carl Linnaeus\u2019s Species Plantarum", "Flora Mesoamericana", "Flora of China", "Flora of North America", "Neotropical ecozone", "botanical database", "floristic data", "taxonomy"] [{"institutionName": "Missouri Botanical Garden", "institutionAdditionalName": ["MBG"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.missouribotanicalgarden.org/", "institutionIdentifier": ["ROR:04tzy5g14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.missouribotanicalgarden.org/about/additional-information/contact-us.aspx"]}] [{"policyName": "Terms of Use", "policyURL": "http://legacy.tropicos.org/TermsOfUse.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.missouribotanicalgarden.org/conditions.aspx"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/licenses/publicdomain/"}] restricted [] [] {"api": "http://services.tropicos.org/", "apiType": "REST"} ["none"] http://legacy.tropicos.org/TermsOfUse.aspx [] yes yes [] [] {"syndication": "http://tropicosdev.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} List of all projects: http://legacy.tropicos.org/ProjectList.aspx 2016-04-21 2020-07-03 +r3d100011749 Integrated Marine Observing System Ocean Data Portal eng [{"additionalName": "Australian Ocean Data Network Portal", "additionalNameLanguage": "eng"}, {"additionalName": "IMOS Ocean Portal", "additionalNameLanguage": "eng"}, {"additionalName": "IMOS data Portal", "additionalNameLanguage": "eng"}] https://portal.aodn.org.au/ [] ["info@emii.org.au"] >>>!!!<<< duplicate >>>!!!<<< see https://www.re3data.org/repository/r3d100010914 At 2016-05-29 sees the official merger of the IMOS eMarine Information Infrastructure (eMII) Facility and the Australian Ocean Data Network (AODN) into a single entity. The marine information Facility of IMOS is now the AODN. Enabling open access to marine data is core business for IMOS. The IMOS data will continue to be discoverable alongside a wider collection of Australian marine and climate data via the new-look AODN Portal. Visit the AODN Portal at https://portal.aodn.org.au/. - All IMOS data is open access and can be discovered, accessed and downloaded via the Australian Ocean Data Network (AODN) Portal. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://imos.org.au/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["AATAMS", "climate", "climatology", "marine", "marine sciences", "ocean maps"] [{"institutionName": "Integrated Marine Observing System", "institutionAdditionalName": ["IMOS"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://imos.org.au/", "institutionIdentifier": ["ROR:010x3gp67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://imos.org.au/contact-us"]}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.dese.gov.au/ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncris@education.gov.au"]}, {"institutionName": "University of Tasmania", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.utas.edu.au/", "institutionIdentifier": ["ROR:01nfmeh72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utas.edu.au/about/contact"]}] [{"policyName": "AODN Public Documents", "policyURL": "https://help.aodn.org.au/public-documents/"}, {"policyName": "Data Use Acknowledgement", "policyURL": "https://help.aodn.org.au/user-guide-introduction/aodn-portal/data-use-acknowledgement/"}, {"policyName": "IMOS Data Licensing", "policyURL": "https://help.aodn.org.au/user-guide-introduction/imos/imos-data-licencing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org.au/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/CC_Affiliate_Network"}] restricted [] [] yes {"api": "https://help.aodn.org.au/downloading-data-from-servers/", "apiType": "FTP"} ["none"] https://help.aodn.org.au/user-guide-introduction/aodn-portal/data-use-acknowledgement/ [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} All IMOS data can be discovered, accessed and downloaded via the IMOS Ocean Portal. There is a wide range of marine data types available in a variety of formats. In order to make specialised data more usable to a wider audience, the IMOS data team and Facilities have developed a number of data tools: http://imos.org.au/imosdatatools/ IMOS operates as a multi-institutional collaboration. IMOS is led by the University of Tasmania in partnership with the CSIRO, Australian Institute of Marine Science, Bureau of Meteorology, Sydney Institute of Marine Science (encompassing the University of New South Wales, The University of Sydney, Macquarie University and University of Technology Sydney), University of Western Australia, Curtin University and the South Australian Research and Development Institute. The AODN Ocean Data Portal (https://portal.aodn.org.au/aodn/) has access to the complete IMOS metadata catalog and all available ocean data. The IMOS Ocean Portal is an opensource project and is available on GitHib https://github.com/aodn/aodn-portal. 2016-04-22 2021-11-10 +r3d100011750 Italian National Biodiversity Network eng [{"additionalName": "NNB", "additionalNameLanguage": "ita"}, {"additionalName": "Network Nazionale Biodiversit\u00e0", "additionalNameLanguage": "ita"}] http://193.206.192.106/portalino/home_en/il-network.html [] ["http://www.nnb.isprambiente.it/it/contatti"] The Ministry for the Environment, Land and Sea has promoted the project "Environment 2010" which plays a strong team move to support the National Strategy for Biodiversity . The crux of the system is the National Biodiversity Network (NNB), a network of Centers of Excellence (CoE) and National Focal Point (FP), accredited to international and national level for the management, sharing and information about data on biodiversity. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "ita"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://193.206.192.106/portalino/home_en/il-network.html [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Environment 2010", "INSPIRE", "INfrastructure for SPatial InfoRmation in Europe", "LIFEWATCH", "LTER", "ecosystem", "gene", "habitat", "population", "species"] [{"institutionName": "Ministry for the Environment, Land and Sea", "institutionAdditionalName": ["Ministero dell'Ambiente e della Tutela del Territorio e del Mare"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.minambiente.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Italian Open Data License v2.0", "policyURL": "http://193.206.192.106/portalino/pdf/iodl2.pdf"}, {"policyName": "Policy del sito", "policyURL": "https://www.naturaitalia.it/static/media/doc/pdf/Policy_privacy_Naturaitalia.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://193.206.192.106/portalino/pdf/iodl2.pdf"}] restricted [] [] {} ["none"] [] unknown yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} Draft Memorandum of Understanding: http://193.206.192.106/portalino/pdf/Protocollo_Intesa_NNB.pdf The NNB is a shared data management system consists of a central node, which allows you to do the research and data management, and peripheral nodes (database that have primary biodiversity data) in order to ensure consultation and the 'efficient integration of information on biodiversity, all done without the physical transfer of data, which always reside at cooperating institutions which retain all legal rights. The database of properties of individual nodes differ in structure (different fields) and architecture (different DBs, like Access, Oracle, MySQL, etc..), But they can communicate through the Protocol Biocase. This ensures, through a set of rules, a communication between the nodes themselves intrinsic and the international community that participates in the network of Biocase. 2016-04-25 2021-07-02 +r3d100011751 JGI MycoCosm eng [{"additionalName": "MycoCosm - the fungal genomics resource", "additionalNameLanguage": "eng"}] https://mycocosm.jgi.doe.gov/mycocosm/home ["RRID:OMICS_01657", "RRID:SCR_005312", "RRID:nlx_144366"] ["http://jgi.doe.gov/contact-us/"] MycoCosm, the DOE JGI’s web-based fungal genomics resource, which integrates fungal genomics data and analytical tools for fungal biologists. It provides navigation through sequenced genomes, genome analysis in context of comparative genomics and genome-centric view. MycoCosm promotes user community participation in data submission, annotation and analysis. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://jgi.doe.gov/our-science/science-programs/fungal-genomics/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "biocontrol", "biorefinery mechanisms", "encyclopedia of funghi", "expression", "funghi", "genome sequence", "helix", "pathogenicity", "protein", "symbiosis"] [{"institutionName": "Joint Genome Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://jgi.doe.gov/our-science/science-programs/fungal-genomics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://jgi.doe.gov/contact-us/"]}, {"institutionName": "U.S. Department of Energy, Office of Science", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://science.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://science.energy.gov/about/contact/"]}, {"institutionName": "University of California", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://universityofcalifornia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://universityofcalifornia.edu/uc-system/contact-us"]}] [{"policyName": "Data Management Policy", "policyURL": "http://jgi.doe.gov/data-and-tools/data-management-policy-practices-resources/"}, {"policyName": "Policies", "policyURL": "http://jgi.doe.gov/user-program-info/pmo-overview/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://jgi.doe.gov/data-and-tools/data-management-policy-practices-resources/"}] restricted [{"dataUploadLicenseName": "DOE JGI\u2019s Policy on Microbial Genbank Submissions", "dataUploadLicenseURL": "http://jgi.doe.gov/data-and-tools/data-management-policy-practices-resources/"}] ["other"] yes {} ["none"] http://genome.jgi.doe.gov/pages/citeUs.jsf ["none"] yes unknown [] [] {} 2016-04-25 2021-09-08 +r3d100011752 European Soil Data Centre eng [{"additionalName": "ESDAC", "additionalNameLanguage": "eng"}, {"additionalName": "European Soil Data Centre Portal", "additionalNameLanguage": "eng"}] https://esdac.jrc.ec.europa.eu/ [] ["ec-esdac@ec.europa.eu"] The European Soil Data Centre (ESDAC) is the thematic centre for soil related data in Europe. Its ambition is to be the single reference point for and to host all relevant soil data and information at European level. It contains a number of resources that are organized and presented in various ways: datasets, services/applications, maps, documents, events, projects and external links. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ESDB", "European Soil Database", "LUCAS", "SPADE", "compaction", "contaminated Sites", "erosion", "landslides", "salinization", "soil biodiversity", "soil organic carmvon", "soil sealing"] [{"institutionName": "European Commission, Joint Research Centre", "institutionAdditionalName": ["EC, JRC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/jrc/", "institutionIdentifier": ["ROR:02qezmz13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/jrc/en/contact/form"]}] [{"policyName": "disclaimer, copyright notice", "policyURL": "https://ec.europa.eu/info/legal-notice_en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ec.europa.eu/info/legal-notice_en#copyright-notice"}] restricted [] [] {} ["none"] [] yes unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The activities of ESDAC are institutional and are planned and executed under the JRC Work Programme. 2016-04-27 2021-08-24 +r3d100011753 Junar por [{"additionalName": "Junar Open Data Platform", "additionalNameLanguage": "eng"}] https://junar.com/?lang=en [] ["contact@junar.com"] Junar provides a cloud-based open data platform that enables innovative organizations worldwide to quickly, easily and affordably make their data accessible to all. In just a few weeks, your initial datasets can be published, providing greater transparency, encouraging collaboration and citizen engagement, and freeing up precious staff resources. eng ["other"] {"size": "", "updatedp": ""} 2010 ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://junar-cdn-brandings.s3.amazonaws.com/reference-material/Product-sheet-Open-Data-Portal-N0515.pdf [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Open Data Dashboard", "Software - as - a - Service SaaS", "big data", "cloud-based data management system", "economics", "government", "open data", "software"] [{"institutionName": "JUNAR", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.junar.com/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["contact@Junar.com"]}] [{"policyName": "TERMS OF SERVICE", "policyURL": "https://junar.com/terms-of-service/?lang=en"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [] ["unknown"] {"api": "http://junardemo.opendata.junar.com/developers/", "apiType": "REST"} ["none"] [] unknown yes [] [] {} 2016-02-03 2021-11-15 +r3d100011754 Knoema eng [] https://knoema.de/ [] ["https://knoema.com/business/contact", "info@knoema.com", "support@knoema.com"] Knoema is a knowledge platform. The basic idea is to connect data with analytical and presentation tools. As a result, we end with one uniformed platform for users to access, present and share data-driven content. Within Knoema, we capture most aspects of a typical data use cycle: accessing data from multiple sources, bringing relevant indicators into a common space, visualizing figures, applying analytical functions, creating a set of dashboards, and presenting the outcome. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["ara", "deu", "eng", "eng", "fra", "hin", "jpn", "por", "rus", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://feedback.knoema.com/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["World Data Atlas", "agriculture", "analytics", "big data", "business", "demography", "economics", "energy", "foreign trade", "graphs", "health", "statistics", "telecommunication", "transportation", "visualization"] [{"institutionName": "Knoema", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://knoema.com/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["info@knoema.com", "support@knoema.com"]}] [{"policyName": "Terms of Use", "policyURL": "https://knoema.de/legal/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://knoema.de/legal/termsofuse"}] restricted [] ["unknown"] yes {"api": "https://knoema.com/dev/explorer", "apiType": "other"} ["none"] [] unknown yes [] [{"metadataStandardName": "SDMX - Statistical Data and Metadata Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange"}] {"syndication": "http://blog.knoema.com/feeds/posts/default", "syndicationType": "ATOM"} Sources: http://knoema.com/atlas/sources 2016-02-02 2021-09-03 +r3d100011756 Meteoritical bulletin database eng [] https://www.lpi.usra.edu/meteor/ [] ["https://meteoritical.org/contact", "jgrossman@nasa.gov"] The primary function of this database is to provide authoritative information about meteorite names. The correct spelling, complete with punctuation and diacritical marks, of all known meteorites recognized by the Meteoritical Society may be found in this compilation. Official abbreviations for many meteorites are documented here as well. The database also contains status information for meteorites with provisional names, and listings for specimens of doubtful origin and pseudometeorites. A seconday purpose of this database is to provide an interface to map services for the display of geographic information about meteorites. Two are currently implemented here. If the user has installed the free NASA program World Wind, links are provided for each meteorite to zoom the program to the find location. The database also provides links to the Google Maps service for the display of find locations. eng ["disciplinary"] {"size": "64.474 valid meteorite names; 6.859 provisional names; 12.900 full-text writeups", "updatedp": "2021-11-29"} 2005-04-23 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.lpi.usra.edu/meteor/about.php [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["astronomy", "meteorites", "planetary science"] [{"institutionName": "Lunar and Planetary Institute", "institutionAdditionalName": ["LPI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lpi.usra.edu/", "institutionIdentifier": ["ROR:01r4eh644"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@lpi.usra.edu"]}, {"institutionName": "The Meteoritical Society", "institutionAdditionalName": ["International Society for Meteorites and Planetary Science"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://meteoritical.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://meteoritical.org/contact"]}] [{"policyName": "Conflict of Interest Policy", "policyURL": "https://meteoritical.org/society/governance/conflict-interest-policy"}, {"policyName": "Constitution and Bylaws", "policyURL": "https://meteoritical.org/society/governance/constitution-and-bylaws"}, {"policyName": "Guidelines for meteorite nomenclature", "policyURL": "https://www.lpi.usra.edu/meteor/docs/nc-guidelines-2015-february.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://meteoritical.org/society/governance/position-statements"}] restricted [{"dataUploadLicenseName": "Requesting Names", "dataUploadLicenseURL": "https://www.lpi.usra.edu/meteor/FAQ.php"}] ["unknown"] yes {} ["none"] ["none"] yes yes [] [] {"syndication": "https://www.lpi.usra.edu/meteor/meteorite-rss.php", "syndicationType": "RSS"} The Meteoritical Bulletin is published as a Supplement to "Meteoritics and Planetary Science". All photographs listed in the Meteoritical Bulletin Database are given as links to publically accessible images on other websites. Links to images in the 'Encyclopedia of Meteorites' http://www.encyclopedia-of-meteorites.com/ are updated each night. 2016-01-27 2021-11-29 +r3d100011757 Moderate Resolution Imaging Spectroradiometer eng [{"additionalName": "MODIS", "additionalNameLanguage": "eng"}] https://modis.gsfc.nasa.gov/ [] ["shannell.c.frazier@nasa.gov"] MODIS (or Moderate Resolution Imaging Spectroradiometer) is a key instrument aboard the Terra (originally known as EOS AM-1) and Aqua (originally known as EOS PM-1) satellites. Terra's orbit around the Earth is timed so that it passes from north to south across the equator in the morning, while Aqua passes south to north over the equator in the afternoon. Terra MODIS and Aqua MODIS are viewing the entire Earth's surface every 1 to 2 days, acquiring data in 36 spectral bands, or groups of wavelengths (see MODIS Technical Specifications). These data will improve our understanding of global dynamics and processes occurring on the land, in the oceans, and in the lower atmosphere. MODIS is playing a vital role in the development of validated, global, interactive Earth system models able to predict global change accurately enough to assist policy makers in making sound decisions concerning the protection of our environment. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://modis.gsfc.nasa.gov/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["TDRSS", "atmosphere", "cryospere", "earth oberservation satellite", "land", "ocean", "remote sensing", "satellite meterology", "spacecraft instrument"] [{"institutionName": "NASA's Goddard Space Flight Center", "institutionAdditionalName": ["Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nasa.gov/centers/goddard/about/contact-us.html"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nasasearch.nasa.gov/search?utf8=%E2%9C%93&affiliate=nasa&query=contact"]}, {"institutionName": "National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsidc.org/about/contact.html"]}, {"institutionName": "U. S. Geological Survey EROS Data Center", "institutionAdditionalName": ["EDC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://eros.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://eros.usgs.gov/contact"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.usgs.gov/laws/policies_notices.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lpdaac.usgs.gov/citing_our_data"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nsidc.org/about/policies"}] closed [] ["unknown"] {"api": "https://ladsweb.nascom.nasa.gov/data/ftp_site.html", "apiType": "FTP"} ["DOI"] https://lpdaac.usgs.gov/citing_our_data [] yes yes [] [] {} LAADS Web is the web interface to the Level 1 and Atmosphere Archive and Distribution System (LAADS). The mission of LAADS is to provide quick and easy access to MODIS Level 1, Atmosphere and Land data products and VIIRS Level 1 and Land data products. 2016-01-11 2021-09-08 +r3d100011758 Nasa's Data Portal eng [] https://data.nasa.gov/ [] ["nasa-data@lists.arc.nasa.gov"] This site is a continually growing catalog of publiclyaAvailable NASA Datasets, APIs, Visualizations, and More. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.nasa.gov/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aerospace", "earth science", "management / operations", "space science", "terrestrial"] [{"institutionName": "NASA", "institutionAdditionalName": ["National Aeronautics and Space Administration"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nasasearch.nasa.gov/search?utf8=%E2%9C%93&affiliate=nasa&query=contact"]}, {"institutionName": "Open.NASA, The Innovation team", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://open.nasa.gov/innovation-team/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["openNASA @openNASA"]}] [{"policyName": "INTELLECTUAL PROPERTY AND DATA RIGHTS", "policyURL": "http://www.nasa.gov/offices/ogc/ip/1210.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usa.gov/publicdomain/label/1.0/"}] restricted [] ["unknown"] {"api": "https://data.nasa.gov/developer", "apiType": "REST"} ["none"] ["none"] unknown yes [] [] {"syndication": "https://data.nasa.gov/catalog.rss", "syndicationType": "RSS"} 2016-02-01 2016-09-09 +r3d100011759 National Weather Service, National Centers for Environmental Prediction eng [{"additionalName": "NCEP", "additionalNameLanguage": "eng"}, {"additionalName": "National Centers for Environmental Prediction", "additionalNameLanguage": "eng"}] https://www.weather.gov/ncep/ [] ["Ncep.webmaster@noaa.gov", "http://www.ncep.noaa.gov/mail_liaison/"] NCEP delivers national and global weather, water, climate and space weather guidance, forecasts, warnings and analyses to its Partners and External User Communities. The National Centers for Environmental Prediction (NCEP), an arm of the NOAA's National Weather Service (NWS), is comprised of nine distinct Centers, and the Office of the Director, which provide a wide variety of national and international weather guidance products to National Weather Service field offices, government agencies, emergency managers, private sector meteorologists, and meteorological organizations and societies throughout the world. NCEP is a critical national resource in national and global weather prediction. NCEP is the starting point for nearly all weather forecasts in the United States. The Centers are: Aviation Weather Center (AWC), Climate Prediction Center (CPC), Environmental Modeling Center (EMC), NCEP Central Operations (NCO), National Hurricane Center (NHC), Ocean Prediction Center (OPC), Storm Prediction Center (SPC), Space Weather Prediction Center (SWPC), Weather Prediction Center (WPC) eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ncep.noaa.gov/mission/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["aviation weather", "climate", "forecast", "hurricane", "observations", "ocean weather prediction", "space weather", "storm prediction", "weather prediction", "weather warnings"] [{"institutionName": "National Oceanic and Atmospheric Administration, National Centers for Environmental Prediction", "institutionAdditionalName": ["NCEP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncep.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncep.noaa.gov/mail_dataquestions/", "http://www.ncep.noaa.gov/mail_liaison/", "http://www.ncep.noaa.gov/mail_webmaster/"]}, {"institutionName": "National Weather Service", "institutionAdditionalName": ["NWS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.weather.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.weather.gov/contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.weather.gov/disclaimer/"}, {"policyName": "National Weather Service Directive 60-1", "policyURL": "http://www.nws.noaa.gov/directives/sym/pd06001curr.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.weather.gov/disclaimer/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer/"}] closed [] ["unknown"] {"api": "ftp://tgftp.nws.noaa.gov/SL.us008001/", "apiType": "FTP"} [] [] unknown unknown [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2016-02-08 2021-09-08 +r3d100011760 NCEP/NCAR Reanalysis Project eng [] https://psl.noaa.gov/data/reanalysis/reanalysis.shtml [] ["psl.data@noaa.gov"] The NCEP/NCAR Reanalysis Project is a joint project between the National Centers for Environmental Prediction (NCEP, formerly "NMC") and the National Center for Atmospheric Research (NCAR). The goal of this joint effort is to produce new atmospheric analyses using historical data (1948 onwards) and as well to produce analyses of the current atmospheric state (Climate Data Assimilation System, CDAS). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://psl.noaa.gov/about/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climate", "earth", "meteorology", "precipitation", "temperature", "weather"] [{"institutionName": "National Center for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": ["ROR:05cvfcr44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic & Atmospheric Administration, Earth System Research Laboratory, Physical Sciences Division", "institutionAdditionalName": ["NOAA, ESRL, PSD"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://psl.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://psl.noaa.gov/about/contacts.html", "webmaster.psl@noaa.gov"]}, {"institutionName": "National Weather Service, National Centers for Environmental Prediction", "institutionAdditionalName": ["NCEP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.weather.gov/ncep/", "institutionIdentifier": ["ROR:00ndyev54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Commerce, National Oceanic & Atmospheric Administration, Oceanic & Atmospheric Research", "institutionAdditionalName": ["NOAA, Research"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://research.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://research.noaa.gov/Contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://psl.noaa.gov/disclaimer/"}, {"policyName": "NOAA Freedom of Information Act (FOIA)", "policyURL": "https://www.noaa.gov/information-technology/foia"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://psl.noaa.gov/disclaimer/#datause"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://psl.noaa.gov/disclaimer/#datause"}] closed [] ["unknown"] {"api": "https://psl.noaa.gov/data/gridded_help/howtoftp.html", "apiType": "FTP"} [] https://psl.noaa.gov/data/gridded/help.html#cite [] unknown yes [] [] {} 2016-02-09 2021-12-08 +r3d100011761 Neotoma Paleoecology Database eng [{"additionalName": "Neotoma DB", "additionalNameLanguage": "eng"}] https://www.neotomadb.org/ ["RRID:SCR_002190", "RRID:nlx_154700"] ["eric.c.grimm@outlook.com", "https://www.neotomadb.org/contacts/investigators"] Neotoma is a multiproxy paleoecological database that covers the Pliocene-Quaternary, including modern microfossil samples. The database is an international collaborative effort among individuals from 19 institutions, representing multiple constituent databases. There are over 20 data-types within the Neotoma Paleoecological Database, including pollen microfossils, plant macrofossils, vertebrate fauna, diatoms, charcoal, biomarkers, ostracodes, physical sedimentology and water chemistry. Neotoma provides an underlying cyberinfrastructure that enables the development of common software tools for data ingest, discovery, display, analysis, and distribution, while giving domain scientists control over critical taxonomic and other data quality issues. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.neotomadb.org/about/category/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAUNMAP", "North American Pollen Database (NAPD)", "Pliocene", "Quaternary", "biology", "fossil data", "fossil mammals (FAUNMAP)", "neotoma", "paleoenvironments", "paleontology"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "North Dakota State University", "institutionAdditionalName": ["NDSU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ndsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ndsu.edu/pubweb/~ashworth/index.html"]}, {"institutionName": "Pennsylvania State University, Department of Geosciences", "institutionAdditionalName": ["PennState, Department of Geosciences"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.geosc.psu.edu/academic-faculty/graham-russell"]}, {"institutionName": "University of Wisconsin\u2013Madison", "institutionAdditionalName": ["Madison", "UW-Madison"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.geography.wisc.edu/faculty.php?p=51"]}] [{"policyName": "Data Use and Embargo Policy", "policyURL": "https://www.neotomadb.org/data/category/use"}, {"policyName": "Neotoma Database Manual", "policyURL": "http://neotoma-manual.readthedocs.io/en/latest/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en_US"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en_US"}] restricted [] ["other"] yes {"api": "http://api.neotomadb.org/doc/", "apiType": "REST"} ["none"] https://www.neotomadb.org/data [] yes yes ["WDS"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Neotoma Paleoecology Database is covered by Clarivate Data Citation Index 2016-02-10 2021-09-08 +r3d100011763 PSD Climate and Weather Data eng [{"additionalName": "NOAA, ESRL, PSD, CWD", "additionalNameLanguage": "eng"}, {"additionalName": "National Oceanic & Atmospheric Administration, Earth System Research Laboratory, Physical Sciences Division, Climate and Weather Data", "additionalNameLanguage": "eng"}] https://psl.noaa.gov/data/ [] ["https://psl.noaa.gov/about/contacts.html", "psl.data@noaa.gov"] The NOAA/ESRL Physical Sciences Division (PSD) conducts weather and climate research to observe and understand Earth's physical environment, and to improve weather and climate predictions on global-to-local scales. PSD archives a wide range of data ranging from gridded climate datasets extending hundreds of years to real-time wind profiler data at a single location. The data or products derived from this data, organized by type, are available to scientists and the general public . eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://psl.noaa.gov/about/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["air-sea fluxes", "climate", "cloud profiling radars", "satellite", "weather", "wind profiling radars"] [{"institutionName": "U.S. Department of Commerce | National Oceanic and Atmospheric Administration | Earth System Research Laboratory | Physical Sciences Laboratory", "institutionAdditionalName": ["U.S. Dept. of Commerce, NOAA, ESRL, PSL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://psl.noaa.gov/", "institutionIdentifier": ["ROR:030ea6w47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://psl.noaa.gov/staff/"]}] [{"policyName": "Disclaimer", "policyURL": "https://psl.noaa.gov/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://psl.noaa.gov/disclaimer/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://psl.noaa.gov/disclaimer/"}] restricted [] ["unknown"] {"api": "https://psl.noaa.gov/data/gridded/howtoftp.html", "apiType": "FTP"} ["none"] https://psl.noaa.gov/data/help/ [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2016-02-10 2022-01-05 +r3d100011764 NOAA's climate data record program eng [{"additionalName": "Climate data record program", "additionalNameLanguage": "eng"}] http://www.ncdc.noaa.gov/cdr/operationalcdrs.html [] ["http://www.ncdc.noaa.gov/contact"] Climate Data Record (CDR) is a time series of measurements of sufficient length, consistency and continuity to determine climate variability and change. The fundamental CDRs include sensor data, such as calibrated radiances and brightness temperatures, that scientists have improved and quality-controlled along with the data used to calibrate them. The thematic CDRs include geophysical variables derived from the fundamental CDRs, such as sea surface temperature and sea ice concentration, and they are specific to various disciplines. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncdc.noaa.gov/cdr [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Arctic sea ice", "atmosphere", "climate", "clouds", "drought patterns", "geophysics", "hurricane trends", "ocean", "precipitation", "satellite data", "sensor data", "snow and ice", "terrestrial data", "weather"] [{"institutionName": "NOAA, National Environmental Satellite, Data, and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.nesdis.noaa.gov/about_nesdis.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nesdis.noaa.gov/contacts.html"]}, {"institutionName": "Natonal Oceanic and Atmospheric Administration, National Centers for Environmental Information", "institutionAdditionalName": ["NCDC (formerly)", "NOAA, NCEI", "National Climatic Data Center (formerly)"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.ncei.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncei.noaa.gov/contact", "ncei.info@noaa.gov"]}, {"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/email"]}] [{"policyName": "CDR Program open data policy", "policyURL": "http://www1.ncdc.noaa.gov/pub/data/sds/cdr/CDRs/Geostationary_IR_Channel_Brightness_Temperature/UseAgreement.pdf"}, {"policyName": "Development Guideline", "policyURL": "https://www.ncdc.noaa.gov/cdr/development-guidelines"}, {"policyName": "NOAA Freedom of Information Act (FOIA)", "policyURL": "http://www.noaa.gov/foia/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www1.ncdc.noaa.gov/pub/data/sds/cdr/CDRs/Aerosol_Optical_Thickness/UseAgreement.pdf"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines", "dataUploadLicenseURL": "https://www.nodc.noaa.gov/submit/submit-guide.html"}] ["unknown"] {"api": "http://www1.ncdc.noaa.gov/pub/data/sds/cdr/Guidelines/NetCDF_Metadata_Guidelines.pdf", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "https://www.ncdc.noaa.gov/news.xml", "syndicationType": "RSS"} 2016-02-11 2018-11-05 +r3d100011765 Web Soil Survey eng [{"additionalName": "NRCS Web Soil Survey", "additionalNameLanguage": "eng"}, {"additionalName": "SSURGO", "additionalNameLanguage": "eng"}, {"additionalName": "STATSGO2", "additionalNameLanguage": "eng"}, {"additionalName": "Soil Survey Geographic Database", "additionalNameLanguage": "eng"}, {"additionalName": "State Soil Geographic2", "additionalNameLanguage": "eng"}, {"additionalName": "WSS", "additionalNameLanguage": "eng"}] https://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/survey/ [] ["david.lindbo@wdc.usda.gov", "https://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/contactus/"] Web Soil Survey (WSS) provides soil data and information produced by the National Cooperative Soil Survey. It is operated by the USDA Natural Resources Conservation Service (NRCS) and provides access to the largest natural resource information system in the world. NRCS has soil maps and data available online for more than 95 percent of the nation’s counties and anticipates having 100 percent in the near future. The site is updated and maintained online as the single authoritative source of soil survey information. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.nrcs.usda.gov/wps/portal/nrcs/site/soils/home/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Land management", "geophysics", "land use", "pedology", "physical geography", "soil formation", "soil health", "soil mapping", "soil survey", "vegetation"] [{"institutionName": "National Cooperative Soil Survey", "institutionAdditionalName": ["NCSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/survey/partnership/ncss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/email"]}, {"institutionName": "United States Department of Agriculture, Natural Resources Conservation Service", "institutionAdditionalName": ["USDA, NRCS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nrcs.usda.gov/wps/portal/nrcs/site/soils/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/contactus/"]}] [{"policyName": "Technical References Soil Survey", "policyURL": "http://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/ref/?cid=stelprdb1247805"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.usda.gov/wps/portal/usda/usdahome?navid=POLICY_LINK"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usda.gov/wps/portal/usda/usdahome?navid=POLICY_LINK"}] closed [] ["unknown"] {} ["none"] http://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/home/?cid=nrcs142p2_053368 [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://websoilsurvey.sc.egov.usda.gov/RSS/All_RSS.xml", "syndicationType": "RSS"} Data access: WSS : http://websoilsurvey.sc.egov.usda.gov/App/WebSoilSurvey.aspx see also: http://sdmdataaccess.nrcs.usda.gov/ 2016-02-12 2021-09-08 +r3d100011767 Open Tree of Life eng [{"additionalName": "Tree of Life - Evolution", "additionalNameLanguage": "eng"}] https://tree.opentreeoflife.org/opentree/argus/opentree13.4@ott93302 [] ["https://tree.opentreeoflife.org/contact"] The tree of life links all biodiversity through a shared evolutionary history. This project will produce the first online, comprehensive first-draft tree of all 1.8 million named species, accessible to both the public and scientific communities. Assembly of the tree will incorporate previously-published results, with strong collaborations between computational and empirical biologists to develop, test and improve methods of data synthesis. This initial tree of life will not be static; instead, we will develop tools for scientists to update and revise the tree as new data come in. Early release of the tree and tools will motivate data sharing and facilitate ongoing synthesis of knowledge. eng ["disciplinary"] {"size": "Descendant tips: 2.424.255", "updatedp": "2016-02-17"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://opentree.wikispaces.com/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["amoebae", "animals", "bacteria", "biodiversity", "birds", "bloodline", "funghi", "insects", "mammals", "pedigree", "phylogenies", "plants", "taxonomic catalogue", "vertebrates"] [{"institutionName": "GitHub", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://github.com/OpenTreeOfLife", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://github.com/contact", "https://github.com/orgs/OpenTreeOfLife/people"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Open Tree of Life Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://opentree.wikispaces.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://blog.opentreeoflife.org/"]}] [{"policyName": "Sharing data with Open tree of Life", "policyURL": "http://blog.opentreeoflife.org/data-sharing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://tree.opentreeoflife.org/about/licenses"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["unknown"] yes {"api": "https://github.com/OpenTreeOfLife/germinator/wiki/Open-Tree-of-Life-Web-APIs", "apiType": "other"} ["none"] https://tree.opentreeoflife.org/about/open-tree-of-life [] yes unknown [] [] {"syndication": "http://blog.opentreeoflife.org/feed/", "syndicationType": "RSS"} You need a (free) GitHub account to participate. Using GitHub allows us to track the history and changes of all data. Once you've created a GitHub account, just login and give access to OpenTree. Funding is from NSF AVAToL #1208809. 2016-02-17 2021-09-08 +r3d100011768 OpenWorm eng [] http://www.openworm.org/ [] ["https://openworm.org/contacts.html", "info@openworm.org"] OpenWorm aims to build the first comprehensive computational model of the Caenorhabditis elegans (C. elegans), a microscopic roundworm. With only a thousand cells, it solves basic problems such as feeding, mate-finding and predator avoidance. Despite being extremely well studied in biology, this organism still eludes a deep, principled understanding of its biology. We are using a bottom-up approach, aimed at observing the worm behaviour emerge from a simulation of data derived from scientific experiments carried out over the past decade. To do so we are incorporating the data available in the scientific community into software models. We are engineering Geppetto and Sibernetic, open-source simulation platforms, to be able to run these different models in concert. We are also forging new collaborations with universities and research institutes to collect data that fill in the gaps All the code we produce in the OpenWorm project is Open Source and available on GitHub. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://docs.openworm.org/#missionvision [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Caenorhabditis elegans", "bioinformatics", "computational modeling", "multi-cellular organism", "nematode C. elegans", "roundworm", "simulaton"] [{"institutionName": "GitHub", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://github.com/openworm/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@openworm.org"]}, {"institutionName": "OpenWorm Community", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://docs.openworm.org/community/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://openworm.org/people.html"]}] [{"policyName": "OpenWorm membership policy", "policyURL": "https://my-openworm-docs.readthedocs.io/en/latest/Community/membership.html#membership"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [{"dataUploadLicenseName": "Open source licenses", "dataUploadLicenseURL": "https://choosealicense.com/"}] ["other"] yes {"api": "https://my-openworm-docs.readthedocs.io/en/latest/api.html", "apiType": "other"} ["none"] [] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "http://blog.openworm.org/rss", "syndicationType": "RSS"} We created a 3D Browser to let everybody take the worm apart. Zoom, rotate and peel back layers of a 3D worm without getting your hands dirty http://browser.openworm.org/ 2016-02-17 2021-12-10 +r3d100011769 Prompt Assessment of Global Earthquakes for Response eng [{"additionalName": "PAGER", "additionalNameLanguage": "eng"}] https://earthquake.usgs.gov/data/pager/ [] ["PAGER@usgs.gov", "https://www.usgs.gov/staff-profiles/national-earthquake-information-center-neic"] PAGER (Prompt Assessment of Global Earthquakes for Response) is an automated system that produces content concerning the impact of significant earthquakes around the world, informing emergency responders, government and aid agencies, and the media of the scope of the potential disaster. PAGER rapidly assesses earthquake impacts by comparing the population exposed to each level of shaking intensity with models of economic and fatality losses based on past earthquakes in each country or region of the world. Earthquake alerts – which were formerly sent based only on event magnitude and location, or population exposure to shaking – now will also be generated based on the estimated range of fatalities and economic losses. PAGER uses these earthquake parameters to calculate estimates of ground shaking by using the methodology and software developed for ShakeMaps. ShakeMap sites provide near-real-time maps of ground motion and shaking intensity following significant earthquakes. These maps are used by federal, state, and local organizations, both public and private, for post-earthquake response and recovery, public and scientific information, as well as for preparedness exercises and disaster planning. eng ["disciplinary"] {"size": "306 items", "updatedp": "2021-12-01"} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://earthquake.usgs.gov/data/pager/onepager.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["computerized information system", "earthquakes", "estimates", "geographic information system", "geophysics", "hazards", "seismology", "shake map"] [{"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "Policies and Notices", "policyURL": "https://www.usgs.gov/policies-and-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.doi.gov/copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.doi.gov/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earthquake.usgs.gov/data/pager/disclaimer.php"}] closed [] ["unknown"] {"api": "https://earthquake.usgs.gov/fdsnws/event/1/", "apiType": "REST"} ["none"] ["none"] no yes [] [] {} 2016-02-18 2021-12-01 +r3d100011772 IMPACT eng [{"additionalName": "IMPACT Cyber Trust", "additionalNameLanguage": "eng"}, {"additionalName": "Information Marketplace for Policy and Analysis of Cyber-risk & Trust", "additionalNameLanguage": "eng"}] https://www.impactcybertrust.org/home# [] ["Contact@ImpactCyberTrust.org", "SandT-Cyber-Liaison@hq.dhs.gov"] The Information Marketplace for Policy and Analysis of Cyber-risk & Trust (IMPACT) program supports global cyber risk research & development by coordinating, enhancing and developing real world data, analytics and information sharing capabilities, tools, models, and methodologies. In order to accelerate solutions around cyber risk issues and infrastructure security, IMPACT makes these data sharing components broadly available as national and international resources to support the three-way partnership among cyber security researchers, technology developers and policymakers in academia, industry and the government. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.dhs.gov/science-and-technology/cybersecurity-impact [{"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cyber attack", "cyber crime", "cyber defense", "cyber risk", "data protection", "ethics", "internet measurement", "security"] [{"institutionName": "Department of Homeland Security, Science & Technology Directorate", "institutionAdditionalName": ["DHS, S&T"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dhs.gov/science-and-technology/cyber-security-division", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["SandT-Cyber-Liaison@hq.dhs.gov"]}, {"institutionName": "Impact Performers", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.impactcybertrust.org/who_performers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "International Organization Approval Protocol", "policyURL": "https://www.impactcybertrust.org/help_international"}, {"policyName": "Portal Terms of Use", "policyURL": "https://www.impactcybertrust.org/portalterms"}, {"policyName": "Standardized Legal Agreements", "policyURL": "https://www.impactcybertrust.org/tools_legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.impactcybertrust.org/tools_legal"}] restricted [{"dataUploadLicenseName": "Resource Submission Forms", "dataUploadLicenseURL": "https://www.impactcybertrust.org/tools"}] ["unknown"] yes {} ["DOI"] https://www.impactcybertrust.org/citation_list [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} IMPACT is covered by Clarivate Data Citation Index. IMPACT is the evolved and improved version of PREDICT. Datasets and tools will be released only to researchers whose requests are approved, either by the ICC for all unrestricted datasets/tools, by the ICC and Data Provider for all quasi-restricted datasets for restricted datasets/tools, indicating they have met all approval criteria. 2016-02-23 2021-10-08 +r3d100011773 Remote Sensing Systems eng [{"additionalName": "RSS", "additionalNameLanguage": "eng"}] https://www.remss.com/ [] ["https://www.remss.com/about/contact/", "support@remss.com"] Remote Sensing Systems is a world leader in processing and analyzing microwave data from satellite microwave sensors. We specialize in algorithm development, instrument calibration, ocean product development, and product validation. We have worked with more than 30 satellite microwave radiometer, sounder, and scatterometer instruments over the past 40 years. Currently, we operationally produce satellite retrievals for SSMIS, AMSR2, WindSat, and ASCAT. The geophysical retrievals obtained from these sensors are made available in near-real-time (NRT) to the global scientific community and general public via FTP and this web site. eng ["disciplinary"] {"size": "", "updatedp": ""} 1974 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.remss.com/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["climate", "earth", "geophysics", "measurements", "microwave data", "near-real-time (NRT) data", "satellite", "satellite microwave remote sensing", "satellite microwave sensors", "weather"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.noaa.gov/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Remote Sensing Systems", "institutionAdditionalName": ["RSS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.remss.com/", "institutionIdentifier": [], "responsibilityStartDate": "1974", "responsibilityEndDate": "", "institutionContact": ["http://www.remss.com/about/contact"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.remss.com/support/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.remss.com/support/terms-of-use"}] closed [] ["unknown"] {"api": "http://www.remss.com/support/data-shortcut", "apiType": "FTP"} [] http://www.remss.com/support/terms-of-use [] unknown yes [] [] {} Our research is supported by NASA, NOAA, and the NSF, with many of our researchers participating in NASA science research teams and working groups, collaborating with other fore-front industry leaders and the scientific community. 2016-02-24 2021-09-08 +r3d100011774 data.eaufrance.fr fra [{"additionalName": "R\u00e9pertoire des donn\u00e9es publiques sur l'eau en France", "additionalNameLanguage": "fra"}] http://www.data.eaufrance.fr/ [] ["http://www.data.eaufrance.fr/contact"] data.eaufrance.fr is an information system on water (EIS); it is registered in the National Plan for Water Data (NELS) and will be integrated into the data dissemination web pattern. It also complies with the European Directive 2003/98 / EC of November 2003 on the reuse of public sector information. data.eaufrance.fr is a public data distribution platform open for reuse in the terms and conditions of the Licence Open / Open License. Opendata SIE is coordinated by the National Office for Water and Aquatic Environments (Onema); it was developed by the BRGM and the International Office for Water (IOW). eng ["disciplinary"] {"size": "494 r\u00e9sultats", "updatedp": "2018-08-16"} ["fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["France", "coastal water", "earth siences", "ecosystem", "environment", "inland water", "water", "water management", "water quality"] [{"institutionName": "Bureau de Recherches G\u00e9ologiques et Mini\u00e8res", "institutionAdditionalName": ["BRGM"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.brgm.fr/", "institutionIdentifier": ["ROR:05hnb7x64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.brgm.fr/content/contact"]}, {"institutionName": "Office International de l'Eau", "institutionAdditionalName": ["International Office for Water", "OIEau"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.oieau.fr/", "institutionIdentifier": ["ROR:04aptxm88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oieau.fr/contact"]}, {"institutionName": "Office national de l\u2019eau et des milieux aquatiques", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.onema.fr/", "institutionIdentifier": ["ROR:01pf7nz88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.onema.fr/node/4195"]}, {"institutionName": "eaufrance", "institutionAdditionalName": ["Le service public d'information sur l'eau"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.eaufrance.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.eaufrance.fr/contact.php"]}] [{"policyName": "Avertissement", "policyURL": "http://www.data.eaufrance.fr/avertissement-2"}, {"policyName": "Conditions g\u00e9n\u00e9rales d\u2019alimentation du r\u00e9pertoire data.eaufrance.fr", "policyURL": "http://www.data.eaufrance.fr/sites/default/files/CGA_opendata_sie_2013.pdf"}, {"policyName": "R\u00e8gles de gouvernance et bonnes pratiques pour l\u2019alimentation de l\u2019opendata du SIE", "policyURL": "http://www.data.eaufrance.fr/sites/default/files/Regles_opendata_sie_2013.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.data.eaufrance.fr/avertissement-2"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.data.eaufrance.fr/sites/default/files/Licence-Ouverte-Open-Licence.pdf"}] restricted [] ["unknown"] {} ["URN"] http://www.data.eaufrance.fr/sites/default/files/Licence-Ouverte-Open-Licence.pdf [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.data.eaufrance.fr/geosource/srv/fre/rss.latest?georss=simplepoint", "syndicationType": "RSS"} 2016-02-26 2021-09-08 +r3d100011775 RESA eng [{"additionalName": "Rapid eye science archive", "additionalNameLanguage": "eng"}] https://www.planet.com/resa/ [] ["resa@planet.com"] The company RapidEye AG of Brandenburg brought on 29 August 2008 five satellites into orbit that can be aligned within a day to any point on Earth. The data are interesting for a number of large and small companies for applications from harvest planning to assessment of insurance claims case of natural disasters. Via the Rapid Eye Science Archive (RESA) science users can receive, free of charge, optical image data of the RapidEye satellite fleet. Imagery is allocated based on a proposal to be submitted via the RESA Portal which will be evaluated by independent experts. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009-03-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.planet.com/products/satellite-imagery/files/160625-RapidEye%20Image-Product-Specifications.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["agriculture, soils", "earth observation", "ecosystems", "forestry", "land cover", "land use management", "observation", "satellites", "vegetation"] [{"institutionName": "Bundesministerium f\u00fcr Wirtschaft und Energie", "institutionAdditionalName": ["BMWi"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmwi.de/Navigation/DE/Home/home.html", "institutionIdentifier": ["ROR:02vgg2808"], "responsibilityStartDate": "2007-07-01", "responsibilityEndDate": "2012-07-31", "institutionContact": ["https://www.bmwi.de/Redaktion/DE/Artikel/Service/impressum.html"]}, {"institutionName": "Deutsches Fernerkundungsdatenzentrum", "institutionAdditionalName": ["DFD", "German Remote Sensing Data Center"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5278/8856_read-15911/", "institutionIdentifier": [], "responsibilityStartDate": "2012-08-01", "responsibilityEndDate": "2013-12-31", "institutionContact": ["https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5245/mailcontact-1169/"]}, {"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt e.V.", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "2012-08-01", "responsibilityEndDate": "2013-12-31", "institutionContact": ["https://www.dlr.de/rd/de/desktopdefault.aspx/tabid-2096/"]}, {"institutionName": "Earth Observation Center", "institutionAdditionalName": ["EOC"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/eoc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dlr.de/eoc/desktopdefault.aspx/tabid-5232/"]}, {"institutionName": "Planet Labs Gemany GmbH", "institutionAdditionalName": ["Planet"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.planet.com/", "institutionIdentifier": [], "responsibilityStartDate": "2014-01-01", "responsibilityEndDate": "", "institutionContact": ["https://www.planet.com/contact/"]}] [{"policyName": "Lizenzvereinbarung zur Nutzung von RapidEye Daten undProdukten", "policyURL": "https://geoservice.dlr.de/egp/resources/files/RESA_user-license-de_v4.0.pdf"}, {"policyName": "Terms of use", "policyURL": "https://www.planet.com/resa/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://geoservice.dlr.de/egp/resources/files/RESA_user-license-de_v4.0.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://geoservice.dlr.de/egp/resources/files/RESA_user-license-en_v4.0.pdf"}] closed [] ["unknown"] {} ["none"] https://www.planet.com/resa/projektantrag-und-verfahren/ [] unknown unknown [] [] {} 2016-02-29 2021-10-06 +r3d100011776 Swedish Meteorological and Hydrological Institute open data eng [{"additionalName": "SMHI open data", "additionalNameLanguage": "eng"}, {"additionalName": "SMHI \u00d6ppna data", "additionalNameLanguage": "swe"}] https://www.smhi.se/data/utforskaren-oppna-data/ [] ["http://www.smhi.se/en/contact", "smhi@smhi.se"] SMHI's observation stations collect large quantities of data, including temperature, precipitation, wind, air pressure, lightning, solar radiation and ozone. Satellites and radar installations are also important sources. Data is presented continuously on smhi.se and used in SMHI's various weather services. In the Explorer SMHI’s data ( http://opendata-catalog.smhi.se/explore/ ) you find data available with open access (in Swedish). Information in English on Oceanographic observations, Model data (HIROMB BS01), Machine to machine – feeds, and Conditions of use. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "swe"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.smhi.se/en/about-smhi/what-we-do/observations-and-data-air-lakes-waterways-and-seas-1.83759 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Arome", "Besan", "HIRLAM", "HIROMB BS01", "climatology", "hydrology", "meteorology", "oceanography"] [{"institutionName": "Swedish Meteorological and Hydrological Institute", "institutionAdditionalName": ["SMHI", "Sveriges meteorologiska och hydrologiska institut"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.smhi.se/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of use", "policyURL": "http://www.smhi.se/en/services/open-data/conditions-of-use-1.33347"}, {"policyName": "Mer och mer \u00f6ppna data", "policyURL": "http://www.smhi.se/omsmhi/policys/datapolicy/mer-och-mer-oppna-data-1.8138"}, {"policyName": "Villkor f\u00f6r anv\u00e4ndning", "policyURL": "https://www.smhi.se/data/oppna-data/villkor-for-anvandning-1.30622"}, {"policyName": "code of conduct of SMHI", "policyURL": "http://www.smhi.se/polopoly_fs/1.98502!/Menu/general/extGroup/attachmentColHold/mainCol1/file/The%20Code%20of%20Conduct%20of%20SMHI.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.smhi.se/en/services/open-data/conditions-of-use-1.33347"}] restricted [] ["unknown"] {"api": "http://opendata.smhi.se/apidocs/", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://opendata-download-grid-archive.smhi.se/feed/2", "syndicationType": "ATOM"} 2016-03-07 2021-12-15 +r3d100011777 Open Data by Socrata eng [{"additionalName": "Blist", "additionalNameLanguage": "eng"}, {"additionalName": "Socrata", "additionalNameLanguage": "eng"}] https://opendata.socrata.com/ [] [] >>>!!!<<< Access to this Cite will be going away soon >>>!!!<<< Socrata’s cloud-based solution allows government organizations to put their data online, make data-driven decisions, operate more efficiently, and share insights with citizens. eng ["other"] {"size": "", "updatedp": ""} 2008 2021-04 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.tylertech.com/products/socrata [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["education", "finance", "health", "housing", "infrastructure", "politics", "public safety", "transportation"] [{"institutionName": "Socrata", "institutionAdditionalName": ["formerly: Blist"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://socrata.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.socrata.com/contact-us/"]}] [{"policyName": "Terms of Service", "policyURL": "https://support.socrata.com/hc/en-us/articles/360019057154"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://novascotia.ca/opendata/licence.asp"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://web.archive.org/web/20170717152754/http://www.formez.it/iodl/"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public_domain"}, {"dataLicenseName": "other", "dataLicenseURL": "https://support.socrata.com/hc/en-us/articles/202950218-Which-licensing-option-should-I-use-"}] restricted [{"dataUploadLicenseName": "Contributor License Agreement", "dataUploadLicenseURL": "http://open-source.socrata.com/the-code/"}] ["other"] yes {"api": "http://open-source.socrata.com/philosophy/", "apiType": "REST"} ["none"] ["none"] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {"syndication": "https://opendata.socrata.com/catalog.rss", "syndicationType": "RSS"} Community: http://www.opendatanetwork.com/ Description: Socrata’s cloud-based solution allows government organizations to put their data online, make data-driven decisions, operate more efficiently, and share insights with citizens. 2016-03-18 2021-10-08 +r3d100011778 Solar and Heliospheric Observatory eng [{"additionalName": "SOHO", "additionalNameLanguage": "eng"}] https://sohowww.nascom.nasa.gov/ [] ["drsoho@esa.nascom.nasa.gov", "https://sohowww.nascom.nasa.gov/about/local_info.html"] SOHO, the Solar & Heliospheric Observatory, is a project of international collaboration between ESA and NASA to study the Sun from its deep core to the outer corona and the solar wind. SOHO was launched on December 2, 1995. The SOHO spacecraft was built in Europe by an industry team led by prime contractor Matra Marconi Space (now EADS Astrium) under overall management by ESA. The twelve instruments on board SOHO were provided by European and American scientists. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995-12-02 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://sohowww.nascom.nasa.gov/about/docs/SOHO_Fact_Sheet.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["CDS", "CELIAS", "EIT", "ERNE", "GOLF", "LASCO", "MDI", "SUMER", "SWAN", "UVCS", "VIRGO", "helioseismology", "interior of the sun", "ionized gas", "satellite", "solar wind", "space science", "spacecraft", "sun corona", "sun-earth interaction"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sci.esa.int/services/31008-contact-us/", "http://www.esa.int/ESA/Connect_with_us"]}, {"institutionName": "European Space Agency, European Space Astronomy Centre", "institutionAdditionalName": ["ESAC"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/About_Us/ESAC", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ssa.esac.esa.int/ssa/aio/html/contact.shtml"]}, {"institutionName": "NASA's Goddard Space Flight Center", "institutionAdditionalName": ["Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html", "https://www.nasa.gov/mission_pages/soho/index.html"]}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"policyName": "NATIONAL SPACE POLICY of the UNITED STATES of AMERICA", "policyURL": "https://www.space.commerce.gov/policy/national-space-policy/"}, {"policyName": "SOHO fact sheet", "policyURL": "https://sohowww.nascom.nasa.gov/about/docs/SOHO_Fact_Sheet.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.esa.int/Services/Terms_and_conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.esa.int/Services/Terms_and_conditions"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/data-rights-related-issues/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://soho.nascom.nasa.gov/data/summary/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/"}] closed [] ["unknown"] {"api": "https://api.nasa.gov/", "apiType": "other"} ["none"] https://soho.nascom.nasa.gov/data/summary/copyright.html ["none"] yes yes [] [] {} 2016-03-21 2021-10-08 +r3d100011780 SuperDARN eng [{"additionalName": "Super Dual Auroral Radar Networks", "additionalNameLanguage": "eng"}] http://superdarn.gi.alaska.edu/ [] ["info@gi.alaska.edu"] SuperDARN is an international HF radar network designed to measure global-scale magnetospheric convection by observing plasma motion in the Earth’s upper atmosphere. This network consists of more than 20 radars operating on frequencies between 8 and 20 MHz that look into the polar regions of Earth. These radars can measure the position and velocity of charged particles in our ionosphere, the highest layer of the Earth's atmosphere, and provide scientists with information regarding Earth's interaction with the space environment. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.gi.alaska.edu/facilities/superdarn [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["HF radar", "VSWR bandwdith dipole", "Wallops Island radar", "atmosphere", "ionosphere", "magnetosphere", "mesosphere", "plasma physics", "solar wind", "thermosphere"] [{"institutionName": "Johns Hopkins University, Applied Physics Laboratory", "institutionAdditionalName": ["JHU, APL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jhuapl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jhuapl.edu/aboutapl/visitor/contactinformation.asp"]}, {"institutionName": "NASA, Goddard Space Flight Center, Wallops Flight Facility", "institutionAdditionalName": ["NASA, Goddard Space Flight Center, Wallops Island Flight Facility"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nasa.gov/centers/wallops/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.onr.navy.mil/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alaska Fairbanks, Geophysical Institute", "institutionAdditionalName": ["UAF, Geophysical Institute"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gi.alaska.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gi.alaska.edu/about/contact", "uaf-gi-public-info@alaska.edu"]}] [{"policyName": "SuperDARN Principal Investigators\u2019 Agreement", "policyURL": "http://vt.superdarn.org/tiki-download_file.php?fileId=904"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://vt.superdarn.org/tiki-download_file.php?fileId=904"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://superdarn.usask.ca/comments/feed/", "syndicationType": "RSS"} SuperDARN is operated and maintained by an international collaboration of multiple universities and research institutions, located throughout the world. SuperDARN Radar Locations: http://superdarn.gi.alaska.edu/tutorials/SuperDARN_Radar_Locations.pdf List of all SuperDARN radars: http://vt.superdarn.org/tiki-index.php?page=Radar+Overview 2016-04-12 2021-08-24 +r3d100011781 SURFRAD eng [{"additionalName": "Surface Radiation", "additionalNameLanguage": "eng"}, {"additionalName": "Surface Radiation Budget Network", "additionalNameLanguage": "eng"}] https://gml.noaa.gov/grad/surfrad/ [] ["John.A.Augustine@noaa.gov", "https://gml.noaa.gov/about/contacts.html"] To understand the global surface energy budget is to understand climate. Because it is impractical to cover the earth with monitoring stations, the answer to global coverage lies in reliable satellite-based estimates. Efforts are underway at NASA and universities to develop algorithms to do this, but such projects are in their infancy. In concert with these ambitious efforts, accurate and precise ground-based measurements in differing climatic regions are essential to refine and verify the satellite-based estimates, as well as to support specialized research. To fill this niche, the Surface Radiation Budget Network (SURFRAD) was established in 1993 through the support of NOAA's Office of Global Programs. eng ["institutional"] {"size": "", "updatedp": ""} 1993 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://gml.noaa.gov/grad/surfrad/overview.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["aerosol", "air quality", "atmosphere", "climate", "industrial pollution", "meteorology", "ozone", "radiation", "stratosphere", "troposphere"] [{"institutionName": "NOAA Earth System Research Laboratory", "institutionAdditionalName": ["ESRL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.esrl.noaa.gov/", "institutionIdentifier": ["ROR:033tt8e33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.esrl.noaa.gov/about/contacts.html"]}] [{"policyName": "Disclaimer and Terms of Reference", "policyURL": "https://gml.noaa.gov/about/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://gml.noaa.gov/about/disclaimer.html"}] restricted [] [] {"api": "ftp://aftp.cmdl.noaa.gov/data/radiation/surfrad/", "apiType": "FTP"} [] https://gml.noaa.gov/about/disclaimer.html ["none"] unknown yes [] [] {} The SURFRAD program has close ties with scientists at the University of Maryland, the Pennsylvania State University, NESDIS, UCAR's Office of Field Project Support, GCIP, DOE and Unidata. It is also part of the world-wide BSRN network. Operationally, SURFRAD has the cooperation of the USDA, the Fort Peck Tribes, the Pennsylvania State University, and the Illinois State Water Survey. 2016-04-27 2022-01-12 +r3d100011782 The National Map eng [{"additionalName": "TNM", "additionalNameLanguage": "eng"}, {"additionalName": "Your Source for Topographic Information", "additionalNameLanguage": "eng"}] http://nationalmap.gov/ [] ["mtischler@usgs.gov"] As one of the cornerstones of the U.S. Geological Survey's (USGS) National Geospatial Program, The National Map is a collaborative effort among the USGS and other Federal, State, and local partners to improve and deliver topographic information for the Nation. It has many uses ranging from recreation to scientific analysis to emergency response. The National Map is easily accessible for display on the Web, as products and services, and as downloadable data. The geographic information available from The National Map includes orthoimagery (aerial photographs), elevation, geographic names, hydrography, boundaries, transportation, structures, and land cover. Other types of geographic information can be added within the viewer or brought in with The National Map data into a Geographic Information System to create specific types of maps or map views. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://nationalmap.gov/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GIS Data", "US Topo", "atmosphere", "biology", "climate", "earthquake", "exosystem", "hydrography", "topographic", "topography", "wildlife"] [{"institutionName": "U.S. Department of the Interior", "institutionAdditionalName": ["DOI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.doi.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www2.usgs.gov/ngpo/tnm_tacticalplan.html#"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [{"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}, {"policyName": "U.S. Geological Survey Freedom of Information Act (FOIA)", "policyURL": "http://www2.usgs.gov/foia/"}, {"policyName": "U.S. Geological Survey Information Quality Guidelines", "policyURL": "http://www2.usgs.gov/info_qual/"}, {"policyName": "USGS Data Policy", "policyURL": "https://hdds.usgs.gov/data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hdds.usgs.gov/copyright-and-data-citation"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hdds.usgs.gov/data-policy"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usgs.gov/laws/info_policies.html"}] restricted [] ["unknown"] {"api": "ftp://rockyftp.cr.usgs.gov/vdelivery/Datasets/Staged/", "apiType": "FTP"} ["none"] https://hdds.usgs.gov/copyright-and-data-citation [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Standards and specifications (http://nationalmap.gov/standards/index.html) are essential to facilitate the development and sharing of geospatial data and products. The USGS standards and specifications define the requirements to ensure that all products and data prepared by the USGS under the National Geospatial Program are consistent in accuracy, structure, format, style, and content. Geospatial data and products are available via the USGS Store, The National Map, The National Map Small-Scale Collection, and the Geo.Data.Gov websites. The National Map Corps volunteers are successfully editing structures in all 50 States, Puerto Rico, and the US Virgin Islands. Structures include schools, hospitals, post offices, police stations and other important public buildings. Volunteers collect and/or improve structures data by adding new features, removing obsolete points, and correcting existing data using a web-based mapping tool. Both newly collected and modified point features become part of the USGS National Structures Database, The National Map, and ultimately U.S. Topo Maps. 2016-05-02 2021-08-25 +r3d100011783 Madrigal Database eng [{"additionalName": "Cedar Madrigal", "additionalNameLanguage": "eng"}] http://cedar.openmadrigal.org/ [] ["brideout@haystack.mit.edu", "madrigal@haystack"] The OpenMadrigal project seeks to develop and support an on-line database for geospace data. The project has been led by MIT Haystack Observatory since 1980, but now has active support from Jicamarca Observatory and other community members. Madrigal is a robust, World Wide Web based system capable of managing and serving archival and real-time data, in a variety of formats, from a wide range of ground-based instruments. Madrigal is installed at a number of sites around the world. Data at each Madrigal site is locally controlled and can be updated at any time, but shared metadata between Madrigal sites allow searching of all Madrigal sites at once from any Madrigal site. Data is local; metadata is shared. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://madrigal.haystack.mit.edu/madrigal/wt_whatIsMadrigal.html [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["CEDAR program", "atmosphere", "geophysics", "geospace data", "incoherent scatter radar (ISR)", "ionosphere"] [{"institutionName": "Jicamarca Radio Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://jro.igp.gob.pe/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MIT Haystack Observatory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.haystack.mit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@haystack.mit.edu"]}] [{"policyName": "Rules of the Road", "policyURL": "https://cedarweb.vsp.ucar.edu/wiki/index.php/Data_Services:Rules_of_the_Road"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cedar.openmadrigal.org/"}] restricted [] ["other"] yes {"api": "https://cedarweb.vsp.ucar.edu/wiki/images/7/7b/Rideout_CEDAR2012_CEDAR_Madrigal_DB.pdf", "apiType": "NetCDF"} ["none"] http://cedar.openmadrigal.org/ [] no yes [] [] {} Data can be accessed from a variety of Madrigal sites, including (but not limited to) Millstone Hill, USA, Arecibo, Puerto Rico, EISCAT, Norway, SRI International, USA, Cornell University, USA, Jicamarca, Peru, the Consortium of Resonance and Rayleigh Lidars, the Institute of Geology and Geophysics, the Chinese Academy of Sciences, the University of Oulu, Finland, and finally, the archival CEDAR site. --- Community members: http://www.openmadrigal.org/ 2016-05-13 2021-01-27 +r3d100011784 THEMIS eng [{"additionalName": "ARTEMIS", "additionalNameLanguage": "eng"}, {"additionalName": "Acceleration, Reconnection, Turbulence and Electrodynamics of the Moon\u2019s Interaction with the Sun", "additionalNameLanguage": "eng"}, {"additionalName": "Time History of Events and Macroscale Interactions during Substorms", "additionalNameLanguage": "eng"}] http://themis.ssl.berkeley.edu/index.shtml [] ["David.G.Sibeck@nasa.gov", "http://themis.igpp.ucla.edu/contactus.shtml", "vassilis@ucla.edu"] The THEMIS mission is a five-satellite Explorer mission whose primary objective is to understand the onset and macroscale evolution of magnetospheric substorms. The five small satellites were launched together on a Delta II rocket and they carry identical sets of instruments including an electric field instrument (EFI), a flux gate magnetometer (FGM), a search coil magnetometer (SCM), a electro-static analyzer, and solid state telescopes (SST). The mission consists of several phases. In the first phase, the spacecraft will all orbit as a tight cluster in the same orbital plane with apogee at 15.4 Earth radii (RE). In the second phase, also called the Dawn Phase, the satellites will be placed in their orbits and during this time their apogees will be on the dawn side of the magnetosphere. During the third phase (also known as the Tail Science Phase) the apogees will be in the magnetotail. The fourth phase is called the Dusk Phase or Radiation Belt Science Phase, with all apogees on the dusk side. In the fifth and final phase, the apogees will shift to the sunward side (Dayside Science Phase). The satellite data will be combined with observations of the aurora from a network of 20 ground observatories across the North American continent. The THEMIS-B (THEMIS-P1) and THEMIS-C (THEMIS-P2) were repurposed to study the lunar environment in 2009. The spacecraft were renamed ARTEMIS (Acceleration, Reconnection, Turbulence and Electrodynamics of the Moon’s Interaction with the Sun), with the P1 and P2 designations maintained. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007-02-17 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://themis.igpp.ucla.edu/overview.shtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aurora borealis", "energy", "eruptions", "geomagnetism", "global substorm phenomena", "magnetic fields", "magnetosheath", "magnetosphere", "magnetosphere", "northern light", "satellite observation", "solar wind", "spacecraft observations", "sun"] [{"institutionName": "Canadian Space Agency", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.asc-csa.gc.ca/eng/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.asc-csa.gc.ca/eng/media/default.asp"]}, {"institutionName": "Goddard Space Flight Center", "institutionAdditionalName": ["Space Physics Data Facility"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cdaweb.gsfc.nasa.gov/", "http://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/artemis"]}, {"institutionName": "Technische Universit\u00e4t Braunschweig, Institut f\u00fcr Geophysik und extraterrestrische Physik", "institutionAdditionalName": ["IGEP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.igep.tu-bs.de/forschung/weltraumphysik/projekte/themis/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.igep.tu-bs.de/institut/mitglieder/index.html"]}, {"institutionName": "University of Calgary", "institutionAdditionalName": ["THEMIS-C"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://aurora.phys.ucalgary.ca/themis/themis_main.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://aurora.phys.ucalgary.ca/themis/themis_c_team.html"]}, {"institutionName": "University of California at Berkeley, Space Science Laboratory", "institutionAdditionalName": ["SSL", "UC Berkely, SSL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ssl.berkeley.edu/research/projects/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://themis.ssl.berkeley.edu/thm_sci_help_request_form.php", "outreach@ssl.berkeley.edu"]}, {"institutionName": "University of California at Los Angeles, Institute of Geophysics and Planetary Physics", "institutionAdditionalName": ["IGPP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.igpp.ucla.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["director@igpp.ucla.edu"]}, {"institutionName": "\u00d6sterreichische Akademie der Wissenschaften, Institut f\u00fcr Weltraumforschung", "institutionAdditionalName": ["Austrian Academy of Sciences, Space Research Institute", "OeAW IWF"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iwf.oeaw.ac.at/en/institute/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iwf.oeaw.ac.at/en/research/near-earth-space/themis/"]}] [{"policyName": "Data Policy and Credits", "policyURL": "http://themis.ssl.berkeley.edu/roadrules.shtml"}, {"policyName": "NASA Policies & Procedures", "policyURL": "http://www.nasa.gov/offices/ocfo/policies/#.VzXTjzGfX3h"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://themis.igpp.ucla.edu/roadrules.shtml"}] closed [] ["other"] yes {"api": "http://themis.ssl.berkeley.edu/data/themis/", "apiType": "FTP"} ["none"] http://themis.igpp.ucla.edu/roadrules.shtml [] unknown yes [] [] {} On May 19, 2008 the Space Sciences Laboratory (SSL) at Berkeley announced NASA had extended the THEMIS mission to the year 2012. NASA officially approved the movement of THEMIS B and C into lunar orbit under the mission name ARTEMIS (Acceleration, Reconnection, Turbulence and Electrodynamics of the Moon’s Interaction with the Sun). Mirror Themis database see: http://cdpp.irap.omp.eu/index.php/data/mirror-themis-database 2016-05-13 2019-02-20 +r3d100011785 Tropical Atmosphere Ocean Project eng [{"additionalName": "TAO array", "additionalNameLanguage": "eng"}, {"additionalName": "TAO/TRITON array", "additionalNameLanguage": "eng"}] http://www.pmel.noaa.gov/tao/jsdisplay/ [] ["http://www.pmel.noaa.gov/tao/proj_over/tao-contacts.html"] Real-time data from moored ocean buoys for improved detection, understanding and prediction of El Niño and La Niña. eng ["disciplinary"] {"size": "", "updatedp": ""} 1985 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.pmel.noaa.gov/tao/proj_over/mesgdir.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["El Ni\u00f1o-Southern Oscillation, ENSO", "Pazific Ocean", "barometric pressure", "buoys", "climate", "climate phenomenon", "drifts", "environment", "meterology", "mooring", "physical oceanography", "surface temperature", "weather"] [{"institutionName": "Institut de Recherche pour le D\u00e9veloppement", "institutionAdditionalName": ["IRD"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ird.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ird.fr/infos-pratiques/contactez-nous"]}, {"institutionName": "Japan Agency for Marine-earth Science and TEChnology", "institutionAdditionalName": ["JAMSTEC", "\u6d77\u6d0b\u6a5f\u69cb"], "institutionCountry": "JPN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.jamstec.go.jp/e/", "institutionIdentifier": [], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": ["http://www.jamstec.go.jp/e/contact_us/"]}, {"institutionName": "Joint Institute for the Study of Atmosphere and Ocean", "institutionAdditionalName": ["JISAO"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://jisao.washington.edu//", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jisao.washington.edu//Directory-landing"]}, {"institutionName": "National Oceanic and Atmospheric Administration, Pacific Marine Environmental Laboratory", "institutionAdditionalName": ["NOAA, PMEL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.pmel.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.pmel.noaa.gov/news-story/new-study-links-frequency-el-ninos-greenhouse-warming", "oar.pmel.taotech@noaa.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.pmel.noaa.gov/tao/tao_privacy.html"}] closed [] ["unknown"] {"api": "http://www.pmel.noaa.gov/tao/data_deliv/taoftp_access.html", "apiType": "FTP"} ["none"] http://www.pmel.noaa.gov/tao/proj_over/diagrams/index.html ["none"] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} The TAO array (renamed the TAO/TRITON array on 1 January 2000) consists of approximately 70 moorings in the Tropical Pacific Ocean, telemetering oceanographic and meteorological data to shore in real-time via the Argos satellite system. 2016-05-13 2018-11-02 +r3d100011786 TurtleSAT eng [] http://www.turtlesat.org.au/turtlesat/default.aspx [] ["http://www.turtlesat.org.au/turtlesat/pageContent.aspx?page=turtle_contacts"] TurtleSAT is a new website where communities are mapping the location of freshwater turtles in waterways and wetlands across the country. Australia's unique freshwater turtles are in crisis - their numbers are declining and your help is needed to record where you see turtles in your local area. eng ["disciplinary"] {"size": "4.443 turtles", "updatedp": "2016-05-12"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20304 Sensory and Behavioural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.turtlesat.org.au/turtlesat/pagecontent.aspx?page=turtle_aboutproject [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Australia", "animal", "community mapping", "ecosystem", "freshwater turtle", "observation"] [{"institutionName": "Aboriginal Learning On Country", "institutionAdditionalName": ["ALOC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.alt.sa.gov.au/aboriginal-learning-on-country-program", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "FeralScan.org.au", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://feralscan.org.au/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["feralscan@feralscan.org.au", "foxscan@feralscan.org.au", "webmaster@feralscan.org"]}, {"institutionName": "Fisch Fuel Co.", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.fishfuelco.com.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.fishfuelco.com.au/contact-us/"]}, {"institutionName": "Invasive Animals CRC", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.invasiveanimals.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.invasiveanimals.com/about-us/contact/"]}, {"institutionName": "NSW Government, Department of Primary Industries", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dpi.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "North Central", "institutionAdditionalName": ["CMA", "Catchment Management Authority"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.nccma.vic.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nccma.vic.gov.au//Media_and_Events/Media_Releases/index.aspx?itemDetails=8467&objectType=kms&searchfields=cs_ItemName"]}, {"institutionName": "The Field Naturalists Society of South Australia", "institutionAdditionalName": ["FNSSA"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.fnssa.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pmatejci@bigpond.net.au"]}, {"institutionName": "Turtles Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.turtlesaustralia.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["turtles@iinet.net.au"]}, {"institutionName": "University of South Australia, Barabara Hardy Institute", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.unisa.edu.au/research/barbara-hardy-institute/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Kelly.stone@unisa.edu.au"]}, {"institutionName": "University of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://sydney.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sydney.edu.au/science/people/mike.thompson.php"]}, {"institutionName": "Western Sydney University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.uws.edu.au/newscentre/news_centre/more_news_stories/new_app_helps_track_turtles", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["R.Spencer@westernsydney.edu.au"]}] [{"policyName": "General license", "policyURL": "http://www.turtlesat.org.au/turtlesat/pageContent.aspx?page=turtle_disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.turtlesat.org.au/turtlesat/pageContent.aspx?page=turtle_disclaimer"}] open [] ["unknown"] {} ["none"] ["none"] no yes [] [] {} Project supporters: This project is proudly supported by many organisations, community groups and dedicated individuals. We work closely with Aboriginal Learning On Country (ALOC) and Local Action Planning groups in South Australia, Turtles Australia (http://www.turtlesaustralia.org.au/), and the North Central Catchment Management Authority in Victoria. 2016-05-12 2022-02-04 +r3d100011788 IOOS® eng [{"additionalName": "U.S. Integrated Ocean Observing System", "additionalNameLanguage": "eng"}] https://ioos.noaa.gov/ ["RRID:SCR_003598", "RRID:nlx_157745"] ["noaa.ioos.webmaster@noaa.gov"] U.S. IOOS is a vital tool for tracking, predicting, managing, and adapting to changes in our ocean, coastal and Great Lakes environment. A primary focus of U.S. IOOS is integration of, and expedited access to, ocean observation data for improved decision making. The Data Management and Communication (DMAC) subsystem of U.S. IOOS serves as a central mechanism for integrating all existing and projected data sources. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ioos.noaa.gov/about/about-us/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DMAC", "Data Integration Framework", "Data Management and Communications Plan", "Great Lakes", "climate change", "coastal ecology", "coastal waters", "marine ecology", "marine environmental phenomena", "oceanography", "tide"] [{"institutionName": "Department of Commerce", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.commerce.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration's National Ocean Service", "institutionAdditionalName": ["NOAA's Administration's National Ocean Service", "NOAA's NOS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://oceanservice.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oceanservice.noaa.gov/contact.html"]}, {"institutionName": "USA.gov", "institutionAdditionalName": ["U.S. government's official web portal"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Manual for Real-Time Quality Control of In-Situ Surface Wave Data", "policyURL": "https://ioos.noaa.gov/ioos-in-action/wave-data/"}, {"policyName": "Manual for Real-Time Quality Control of Ocean Optics Data", "policyURL": "https://ioos.noaa.gov/wp-content/uploads/2016/04/qartod_ocean_optics_manual.pdf"}, {"policyName": "U.S. IOOS\u00ae Privacy Policy / U.S. IOOS Data Catalog and Asset Maps", "policyURL": "https://ioos.noaa.gov/privacy-policy/"}, {"policyName": "Web Site Disclaimer", "policyURL": "https://ioos.noaa.gov/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.earthobservations.org/geoss_dsp.shtml"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.noaa.gov/foia-freedom-information-act"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ioos.noaa.gov/data/contribute-data/"}] open [{"dataUploadLicenseName": "Contribute Your Data", "dataUploadLicenseURL": "https://ioos.noaa.gov/data/contribute-data/"}] [] {"api": "ftp://ftp.nodc.noaa.gov/pub/data.nodc/ioos/", "apiType": "FTP"} ["none"] [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The IOOS Catalog is a collection of web based services that address three data discovery functions (Service Registry, Data Catalog Service and System Viewer) stated in the U.S. IOOS®. Federal partners and regional associations see: http://catalog.ioos.us/by_the_numbers/ NOAA’s National Oceanographic Data Center (NODC) is the nominal archive center for IOOS data. Data providers are expected to provide for storage of data, metadata and other supporting documentation and algorithm descriptions, to establish data recovery mechanisms, and to perform off-site storage of backups until the data and metadata are submitted to NODC for archiving 2016-05-04 2018-01-15 +r3d100011790 WATCH eng [{"additionalName": "WATer and Global CHange", "additionalNameLanguage": "eng"}] http://www.eu-watch.org/ [] ["fulco.ludwig@wur.nl", "http://www.eu-watch.org/watermip/contacts"] <<>>!!!>>> eng ["disciplinary"] {"size": "", "updatedp": ""} 2007-02-01 2011-07-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.eu-watch.org/data_availability [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "carbon", "circulation", "earth system", "energy cycle", "hydrology", "sediment", "water"] [{"institutionName": "Centre for Ecology and Hydrology", "institutionAdditionalName": ["CEH"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ceh.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ceh.ac.uk/contact-us"]}, {"institutionName": "European Commission, Research & Innovation, Sixth Framework Programm", "institutionAdditionalName": ["EU, 6FP"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://cordis.europa.eu/fp6calls/home_en.html?fuseaction=UserSite.FP6HomePage", "institutionIdentifier": [], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": ["http://cordis.europa.eu/news/rcn/33914_en.html"]}] [{"policyName": "Freedom of Information", "policyURL": "http://www.ceh.ac.uk/freedom-of-information"}, {"policyName": "Terms & Conditions", "policyURL": "http://www.ceh.ac.uk/terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ceh.ac.uk/copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.eu-watch.org/data_availability"}] closed [] ["unknown"] {"api": "http://www.eu-watch.org/watermip/data-format", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} Description: "This Integrated Project Water and Global Change (WATCH) will bring together the hydrological, water resources and climate communities, to analyse, quantify and predict the components of the current and future global water cycles and related water resources states, evaluate their uncertainties and clarify the overall vulnerability of global water resources related to the main societal and economic sectors." The WATCH project has produced a large number of data sets which should be of considerable use in regional and global studies of climate and water. Some of these datasets are described in the special collection, particularly Weedon et al. 2011 and Haddeland et al 2011. These data are all hosted by IIASA in Austria on a basic FTP site available to the public. For an introduction to the water cycle with illustrations of decadal averages plus visualisation of available data, see www.waterandclimatechange.eu. Included in the data sets are the meteorological data used by global hydrological or land surface models and model outputs for the 20th and 21st Centuries. All the WATCH data is in NetCDF format (Network Common Data Format. NetCDF is an extremely efficient data format for large volumes of data and is becoming popular with modellers as both an input and output format. Data conforms to the ALMA-data exchange convention; for more information, please see https://www.lmd.jussieu.fr/~polcher/ALMA/. We have introduced a web based system to catalogue these data which can be accessed via the CEH Gateway catalogue (https://gateway.ceh.ac.uk/). Use the search term WATCH in the gateway site to find a list of the available data. Participants: http://www.eu-watch.org/about/participants 2016-05-09 2021-10-20 +r3d100011791 WorldClim - Global Climate Data eng [] https://worldclim.org/ ["RRID:SCR_010244", "RRID:nlx_156877"] ["info@worldclim.org"] WorldClim is a set of global climate layers (climate grids) with a spatial resolution of about 1 square kilometer. The data can be used for mapping and spatial modeling in a GIS or with other computer programs. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://worldclim.org/data/index.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bioclim", "GARP", "GIS", "climate change projections", "climate data", "ecological modeling", "historical climate"] [{"institutionName": "Ashoka Trust for Research in Ecology and the Environment", "institutionAdditionalName": ["ATREE"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.atree.org/", "institutionIdentifier": ["ROR:02e22ra24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Center for Tropical Agriculture", "institutionAdditionalName": ["CIAT", "Centro Inernacional de Agricultura Tropical"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://alliancebioversityciat.org/", "institutionIdentifier": ["ROR:05920yd65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ciat.cgiar.org/contact-us"]}, {"institutionName": "National Herbarium of the Netherlands", "institutionAdditionalName": ["NHN", "Nationaal Herbarium Nederland", "Naturalis Biodiversity Center, Department of Botany"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.naturalis.nl/en/collections-of-naturalis", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NatureServe", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.natureserve.org/", "institutionIdentifier": ["ROR:02rnyzs79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.natureserve.org/contact-us"]}, {"institutionName": "Rainforest CRS", "institutionAdditionalName": ["CRC-TREM", "Cooperative Research Centre for Tropical Rainforest Ecology and Management"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://rainforest-crc.jcu.edu.au/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2006-06-30", "institutionContact": ["https://rainforest-crc.jcu.edu.au/contacts.htm"]}, {"institutionName": "Reference Center on Environmental Information", "institutionAdditionalName": ["CRIA", "Centro de Refer\u00eancia em Informa\u00e7\u00e3o Ambiental"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cria.org.br/", "institutionIdentifier": ["ROR:023vyrd34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Berkeley, Museum of Vertebrate Zoology", "institutionAdditionalName": ["MVZ"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mvz.berkeley.edu/", "institutionIdentifier": ["ROR:01rdg4502"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CMIP6: Terms of Use", "policyURL": "https://pcmdi.llnl.gov/CMIP6/TermsOfUse/TermsOfUse6-1.html"}, {"policyName": "Copyright & Licensing", "policyURL": "https://osc.universityofcalifornia.edu/scholarly-publishing/copyright-licensing/"}, {"policyName": "Global climate and weather data information", "policyURL": "https://worldclim.org/data/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://worldclim.org/data/index.html"}] closed [] [] {} ["none"] https://pcmdi.llnl.gov/CMIP6/TermsOfUse/TermsOfUse6-1.html [] unknown yes [] [] {} outline showing all sub-datasets and variables contained in this dataset: http://iridl.ldeo.columbia.edu/SOURCES/.WORLDCLIM/outline.html 2016-05-10 2022-01-18 +r3d100011792 XSEDE eng [{"additionalName": "Extreme Science and Engineering Discovery Environment", "additionalNameLanguage": "eng"}] https://www.xsede.org/ ["RRID:SCR_006091", "RRID:nlx_151554"] ["help@xsede.org", "info@xsede.org"] XSEDE is a single virtual system that scientists can use to interactively share computing resources, data and expertise. People around the world use these resources and services — things like supercomputers, collections of data and new tools — to improve our planet. The Extreme Science and Engineering Discovery Environment (XSEDE) is the most advanced, powerful, and robust collection of integrated advanced digital resources and services in the world. It is a single virtual system that scientists can use to interactively share computing resources, data, and expertise. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.xsede.org/about/what-we-do [{"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cyberinfrastructure", "data sharing", "high performance computing", "multidisciplinary", "networking", "storage", "supercomputers", "visualization"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Illinois, National Center for Supercomputing Applications", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncsa.illinois.edu/", "institutionIdentifier": ["ROR:03r10zj06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage policies", "policyURL": "https://www.xsede.org/ecosystem/operations/usagepolicy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.xsede.org/ecosystem/operations/usagepolicy"}] restricted [] [] {} [] https://www.xsede.org/for-users/acknowledgement [] yes yes [] [] {} 2016-05-10 2021-09-21 +r3d100011793 ASTER Volcano Archive eng [{"additionalName": "AVA", "additionalNameLanguage": "eng"}] https://ava.jpl.nasa.gov/ ["biodbcore-001299"] ["ava@jpl.nasa.gov"] The ASTER Volcano Archive (AVA) is the worlds largest specialty archive of volcano data. For 1,549 recently active volcanos listed by the Smithsonian Global Volcanism Program, the AVA has collected the entirety of high-resolution multispectral ASTER data and made it available to the public. Also included are digital elevation maps, NOAA ash advisories, alteration zone imagery, and thermal anomaly reports. LANDSAT7 data are also being processed. eng ["disciplinary"] {"size": "195.450 granules; 25.519 NOAA reports; 1.216 digital elevation maps; 6.338 thermal anomaly detections", "updatedp": "2021-10-18"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ava.jpl.nasa.gov/pages/about/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["LANDSAT7", "SO2 emissions", "infrared imagery", "lava flow", "volcano ash"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": ["ROR:05dxps055"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.caltech.edu/contact"]}, {"institutionName": "Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jpl.nasa.gov/contact_JPL.php"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "JPL Image use policy", "policyURL": "https://www.jpl.nasa.gov/jpl-image-use-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/jpl-image-use-policy"}] closed [] [] {} ["none"] [] unknown yes [] [] {} The ASTER Volcano Archive (AVA) was created by members of the ASTER Joint Science Team under a series of proposals to the NASA Science of Terra and Aqua Program. All AVA Team members are also ex-officio members of the ASTER Geology Working Group, and Science Team Associates. 2015-07-20 2021-11-16 +r3d100011795 euHCVdb eng [{"additionalName": "european Hepatitis C Virus database", "additionalNameLanguage": "eng"}, {"additionalName": "european hepatitis C virus sequences database", "additionalNameLanguage": "eng"}] https://euhcvdb.ibcp.fr/euHCVdb/ ["ISSN 2429-9022", "RRID:SCR_007645", "RRID:nif-0000-02819"] ["https://euhcvdb.ibcp.fr/euHCVdb/jsp/sendMail.jsp"] The euHCVdb is mainly oriented towards protein sequence, structure and function analyses and structural biology of HCV. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://euhcvdb.ibcp.fr/euHCVdb/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "RNA", "bioinformatics", "drug design", "genomics", "genotypes", "hepatitis", "infection", "molecular modelling", "resistance", "sequence analysis", "virus"] [{"institutionName": "Centre national de la recherche scientifique", "institutionAdditionalName": ["CNRS", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cnrs.fr/en/home/contacts.htm"]}, {"institutionName": "Institut de\u00a0Biologie et\u00a0Chimie des\u00a0Prot\u00e9ines, Pole BioInformatique Lynonnais Gerland", "institutionAdditionalName": ["PBIL-IBCP"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://prabi.ibcp.fr/htm/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["g.deleage@ibcp.fr"]}, {"institutionName": "L\u2019Institut de\u00a0Biologie et\u00a0Chimie des\u00a0Prot\u00e9ines", "institutionAdditionalName": ["IBCP"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ibcp.fr/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ibcp.fr/fr/?lang=fr"]}, {"institutionName": "Universit\u00e9 Claude Bernard Lyon 1", "institutionAdditionalName": ["University Claude Bernard Lyon 1"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.univ-lyon1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.univ-lyon1.fr/universite/pratique/contacts/#.Va9Hy1Il97w"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://euhcvdb.ibcp.fr/euHCVdb/"}] closed [] ["other"] {} ["none"] https://euhcvdb.ibcp.fr/euHCVdb/ [] yes unknown [] [] {} 2015-07-22 2020-04-24 +r3d100011796 Strong Motion Virtual Data Center eng [{"additionalName": "Global component of the Center for Engeinnering Strong Motion Data", "additionalNameLanguage": "eng"}, {"additionalName": "Strong Motion VDC", "additionalNameLanguage": "eng"}] https://strongmotioncenter.org/vdc/scripts/default.plx ["biodbcore-001551"] ["cesmd@strongmotioncenter.org"] The VDC is a public, web-based search engine for accessing worldwide earthquake strong ground motion data. While the primary focus of the VDC is on data of engineering interest, it is also an interactive resource for scientific research and government and emergency response professionals. eng ["disciplinary"] {"size": "821 earthquakes", "updatedp": "2019-05-15"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://strongmotioncenter.org/vdc/CosmosVDCUserManual.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquakes", "strong motion"] [{"institutionName": "California Geological Survey", "institutionAdditionalName": ["CGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.conservation.ca.gov/cgs", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.consrv.ca.gov/cgs/Pages/contactUs.aspx"]}, {"institutionName": "Center for Engineering Strong Motion Data", "institutionAdditionalName": ["CESMD"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://strongmotioncenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["CESMD@strongmotioncenter.org"]}, {"institutionName": "Consortium of Organizations for Strong-Motion Observation Systems", "institutionAdditionalName": ["COSMOS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.strongmotion.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cosmos@strongmotion.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Southern California Earthquake Center", "institutionAdditionalName": ["SCEC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.scec.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scec.org/contact"]}, {"institutionName": "US Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}, {"institutionName": "University of California Santa Barbara", "institutionAdditionalName": ["UC Santa Barbara"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucsb.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": ["https://www.ucsb.edu/contact"]}] [{"policyName": "COSMOS VDC User Manual", "policyURL": "https://strongmotioncenter.org/vdc/CosmosVDCUserManual.pdf"}, {"policyName": "VDC fact sheet", "policyURL": "https://strongmotioncenter.org/vdc/VDC_Factsheet2012_cmj.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://strongmotioncenter.org/vdc/CosmosVDCUserManual.pdf"}] closed [] ["unknown"] {} ["none"] https://strongmotioncenter.org/vdc/CosmosVDCUserManual.pdf [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} VDC is restricted to strong-motion data, principally from earthquakes of magnitude 5.0 or larger in earthquake prone areas and 4.5 or larger in other areas. - The VDC was incorporated as a part of the Center for Engineering Strong Motion Data (CESMD) in 2012. 2015-07-22 2021-11-16 +r3d100011797 Center for Engineering Strong Motion Data eng [{"additionalName": "CESMD", "additionalNameLanguage": "eng"}] https://www.strongmotioncenter.org/ [] ["cesmd@strongmotioncenter.org"] Strong-motion data of engineering and scientific importance from the United States and other seismically active countries are served through the Center for Engineering Strong Motion Data(CESMD). The CESMD now automatically posts strong-motion data from an increasing number of seismic stations in California within a few minutes following an earthquake as an InternetQuick Report(IQR). As appropriate,IQRs are updated by more comprehensive Internet Data Reports that include reviewed versions of the data and maps showing, for example, the finite fault rupture along with the distribution of recording stations. Automated processing of strong-motion data will be extended to post the strong-motion records of the regional seismic networks of the Advanced National Seismic System (ANSS) outside California. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.strongmotioncenter.org/aboutcesmd.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ShakeMap", "accelerogram", "earthquake", "historical earthquakes", "seismology", "strong motion", "strong motion stations"] [{"institutionName": "California Geological Survey", "institutionAdditionalName": ["CGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.consrv.ca.gov/CGS/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consortium of Organizations for Strong Motion Observation Systems", "institutionAdditionalName": ["COSMOS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.strongmotion.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Earthquake Hazards Program, Advanced National Seismic System", "institutionAdditionalName": ["ANSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/natural-hazards/earthquake-hazards/anss-advanced-national-seismic-system?qt-science_support_page_related_con=4#qt-science_support_page_related_con", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://answers.usgs.gov/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.strongmotioncenter.org/NCESMD/reports/02-0168.pdf"}] closed [] ["unknown"] {"api": "ftp://140.174.65.75/Small_Record_and_Earthquakes/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} The Center for Engineering Strong Motion Data (CESMD) is a cooperative center established by the US Geological Survey (USGS) and the California Geological Survey (CGS) to integrate earthquake strong-motion data from the CGS California Strong Motion Instrumentation Program, the USGS National Strong Motion Project, and the Advanced National Seismic System (ANSS). The CESMD provides raw and processed strong-motion data for earthquake engineering applications. Transfer of the operational and maintenance responsibilities for the Consortium of Organizations for Strong Motion Observation Systems (COSMOS) Virtual Data Center (VDC) from the University of California at Santa Barbara to the CESMD is nearing completion in 2012. The VDC Tagged Format (VTF) file format has been adopted by the CESMD as the standard for converting strong motion data to facilitate the process of uploading data into the VDC database. 2015-07-22 2021-09-21 +r3d100011798 NeuroElectro eng [{"additionalName": "organizing information on cellular neurophysiology", "additionalNameLanguage": "eng"}] http://neuroelectro.org ["RRID:nlx_151885"] ["http://www.neuroelectro.org/contact_info/", "rgerkin@asu.edu"] The goal of the NeuroElectro Project is to extract information about the electrophysiological properties (e.g. resting membrane potentials and membrane time constants) of diverse neuron types from the existing literature and place it into a centralized database. eng ["disciplinary"] {"size": "200 neurons", "updatedp": "2015-07-24"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.neuroelectro.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["brain", "electrophysiology", "membranes", "neuron-to-neuron", "ontology"] [{"institutionName": "Arizona State University", "institutionAdditionalName": ["ASU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.asu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://contact.asu.edu/"]}, {"institutionName": "Carnegie Mellon University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/directory-contact/index.html"]}, {"institutionName": "Neuroscience Information Network", "institutionAdditionalName": ["NIF"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://neuinfo.org//", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cdn.ubc.ca/clf/ref/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] yes {"api": "https://docs.google.com/document/d/1eeWTrr1sKDoqXJtPayBgKR9WvPwzdaXDdfat2Y_nZmY/edit", "apiType": "REST"} ["none"] http://www.neuroelectro.org/publications [] yes unknown [] [] {} Extractions of data Primarily from , the Journal of Neurophysiology, Journal of Physiology and Journal of Neuroscience, as well as a number of other journals (such as Neuron, Brain Research, European Journal of Neuroscience). The majority of the extracted data is from papers which have HTML fulltext markups available, typically papers published after 1997. 2015-07-23 2021-09-03 +r3d100011800 LSHTM Data Compass eng [] https://datacompass.lshtm.ac.uk/ [] ["researchdatamanagement@lshtm.ac.uk"] LSHTM Data Compass is a curated digital repository of research outputs that have been produced by staff and students at the London School of Hygiene & Tropical Medicine and their collaborators. It is used to share outputs intended for reuse, including: qualitative and quantitative data, software code and scripts, search strategies, and data collection tools. eng ["institutional"] {"size": "1500 records", "updatedp": "2020-04-22"} 2015-07-09 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datacompass.lshtm.ac.uk/information.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["education", "epidemiology", "health", "infectious disesases", "knowledge translation", "tropical diseases"] [{"institutionName": "London School of Hygiene & Tropical Medicine", "institutionAdditionalName": ["LSHTM"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lshtm.ac.uk/", "institutionIdentifier": ["ROR:00a0jsq62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lshtm.ac.uk/aboutus/contact"]}, {"institutionName": "University of London, CoSector", "institutionAdditionalName": ["CoSector", "ULCC (formerly)", "University of London Computer Centre (formerly)"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.cosector.com/digital-services", "institutionIdentifier": [], "responsibilityStartDate": "2015-07-09", "responsibilityEndDate": "", "institutionContact": ["https://www.cosector.com/contact/"]}] [{"policyName": "Freedom of Information policy", "policyURL": "https://www.lshtm.ac.uk/sites/default/files/Freedom_of_Information_Policy.pdf"}, {"policyName": "Policies", "policyURL": "https://researchonline.lshtm.ac.uk/policies.html#metadata"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://datacompass.lshtm.ac.uk/information.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://researchonline.lshtm.ac.uk/policies.html#metadata"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.lshtm.ac.uk/research/research-governance-and-integrity/animal-research/regulation-and-oversight"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "https://researchonline.lshtm.ac.uk/policies.html#metadata"}] ["EPrints"] yes {} ["DOI"] [] yes yes [] [] {} LSHTM Data Compass may be used to store and share data produced by LSHTM staff and students and its collaborators which are non-confidential and non-sensitive. 2015-08-07 2021-09-03 +r3d100011801 NCEI eng [{"additionalName": "NOAA National Centers for Environmental Information", "additionalNameLanguage": "eng"}] https://www.ncei.noaa.gov/ ["FAIRsharing_doi:10.25504/FAIRsharing.kjncvg"] ["https://www.ncei.noaa.gov/contact", "ncei.info@noaa.gov"] NOAA's National Centers for Environmental Information (NCEI) are responsible for hosting and providing public access to one of the most significant archives for environmental data on Earth with over 20 petabytes of comprehensive atmospheric, coastal, oceanic, and geophysical data. NCEI headquarters are located in Asheville, North Carolina. Most employees work in the four main locations, but apart from those locations, NCEI has employees strategically located throughout the United States. The main locations are Cooperative Institute for Climate and Satellites–North Carolina (CICS-NC) at Asheville, North Carolina, Cooperative Institute for Research in Environmental Sciences (CIRES) at Boulder Colorado, Cooperative Institute for Climate and Satellites–Maryland (CICS-MD) at Silver Spring Maryland and Stennis Space Center, Mississippi. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ncei.noaa.gov/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bathymetry & global relief", "climate monitoring", "ecology", "environmental science", "fisheries", "freshwater biology", "geomagnetism", "interactive maps", "land-based stations", "limnology", "marine geophysics", "models", "natural hazards", "ocean", "paleoclimatology", "radar", "satellite", "space weather"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "NOAA National Environmental Satellite, Data, and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nesdis.noaa.gov/"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.noaa.gov/contact-us"]}, {"institutionName": "United States Department of Commerce", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.commerce.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.commerce.gov/page/contact-us"]}] [{"policyName": "NCEI-Oceans Data Policy", "policyURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/title17/92chap4.html#403"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncdc.noaa.gov/customer-support"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nodc.noaa.gov/about/datapolicy.html"}] restricted [] ["unknown"] {"api": "https://www.ncdc.noaa.gov/cdo-web/webservices", "apiType": "NetCDF"} ["DOI"] ["none"] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} NOAA National Centers for Environmental Information is covered by Thomson Reuters Data Citation Index. The demand for high-value environmental data and information has dramatically increased in recent years. NCEI is designed to improve NOAA’s ability to meet that demand. The Consolidated and Further Continuing Appropriations Act, 2015, Public Law 113-235, approved the consolidation of NOAA’s existing three National Data Centers: the National Climatic Data Center, the National Geophysical Data Center, and the National Oceanographic Data Center into the National Centers for Environmental Information. By using consistent data stewardship tools and practices across all science disciplines and by forging an improved data management team, users will see an improvement in the overall value of our environmental data archives. The transition to NCEI will take time, with the final integration anticipated beyond 2020. An overriding principle throughout the formation of NCEI is transparency to our users and commitment to continuing to provide the geophysical, oceans, coastal, weather and climate data users have come to rely on. 2015-08-21 2018-11-14 +r3d100011802 CLARIN-PL eng [{"additionalName": "Centrum Technologii Jezykowiych", "additionalNameLanguage": "pol"}, {"additionalName": "Language Technology Centre", "additionalNameLanguage": "eng"}] https://clarin-pl.eu/dspace/ [] ["clarin-pl@pwr.edu.pl"] Polish CLARIN node – CLARIN-PL Language Technology Centre – is being built at Wrocław University of Technology. The LTC is addressed to scholars in the humanities and social sciences. Registered users are granted free access to digital language resources and advanced tools to explore them. They can also archive and share their own language data (in written, spoken, video or multimodal form). eng ["disciplinary"] {"size": "462 items", "updatedp": "2019-12-17"} 2014-09-25 ["eng", "pol"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://clarin-pl.eu/dspace/page/about#mission-statement [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["digital archive", "electronic dictionaries", "language models", "semantic analyses", "speech recognition", "syntactic analyses"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "CLARIN-PL", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://clarin-pl.eu/en/home-page/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin-pl.eu/en/contact/"]}, {"institutionName": "Institute of Computer Science, Polish Academy of Sciences, Department of Artificial Intelligence, Linguistic Engineering Group", "institutionAdditionalName": ["ICS PAS, LE"], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://zil.ipipan.waw.pl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of Slavic Studies, Polish Academy of Sciences", "institutionAdditionalName": ["PAS"], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ispan.waw.pl/default/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ispan.waw.pl/default/en/about-the-institute/contacts/"]}, {"institutionName": "Polish-Japanese Institute of Information Technology", "institutionAdditionalName": ["PJA"], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.pja.edu.pl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pjatk@pja.edu.pl"]}, {"institutionName": "University of Lodz", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://iso.uni.lodz.pl", "institutionIdentifier": ["RRID:SCR_004053", "RRID:nlx_158123"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://iso.uni.lodz.pl/contact"]}, {"institutionName": "University of Wroc\u0142aw", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://international.uni.wroc.pl/en", "institutionIdentifier": ["RRID:SCR_000363", "RRID:nlx_48592"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://international.uni.wroc.pl/en/international-office"]}, {"institutionName": "Wroc\u0142aw University of Science andTechnology", "institutionAdditionalName": ["Politechnika Wroc\u0142awska"], "institutionCountry": "POL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://pwr.edu.pl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal and Ethical Issues", "policyURL": "https://www.clarin.eu/governance/legal-issues-committee"}, {"policyName": "Terms of Service", "policyURL": "https://clarin-pl.eu/dspace/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.clarin.eu/node/3760"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.clarin.eu/node/3760"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin-pl.eu/dspace/page/about#about-contracts"}] restricted [{"dataUploadLicenseName": "Non-Exclusive Distribution License", "dataUploadLicenseURL": "https://clarin-pl.eu/dspace/page/contract"}] ["DSpace"] yes {"api": "https://vlo.clarin.eu/data/CLARIN_PL_digital_repository.html", "apiType": "OAI-PMH"} ["hdl"] https://clarin-pl.eu/dspace/page/cite ["none"] yes yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {"syndication": "https://clarin-pl.eu/dspace/feed/rss_2.0/site", "syndicationType": "RSS"} CLARIN-PL is harvested by CLARIN-ERIC Virtual Language Observatory - VLO https://vlo.clarin.eu/;jsessionid=4D696B6566A3B0A9E95330F55605DDDF?0 - LinkListener-searchContainer-selections-facets-container-facets-1-facet-facetValues-allValues-bodyContent-facetValuesContainer-facetValue-290-facetSelect . 2015-08-26 2019-12-19 +r3d100011803 CIMMYT Research Data & Software Repository Network eng [{"additionalName": "Centro Internacional de Mejoramiento de Ma\u00edz y Trigo", "additionalNameLanguage": "spa"}, {"additionalName": "International Maize and Wheat Improvement Center", "additionalNameLanguage": "eng"}] https://data.cimmyt.org/dataverse/root [] ["https://data.cimmyt.org/dataverse/root?q=&types=dataverses&sort=dateSort&order=asc&page=1"] The International Maize and Wheat Improvement Center (CIMMYT) provides a free, open access repository of research software, studies, and datasets produced and developed by CIMMYT scientists as well as the results of the Seeds of Discovery project, which makes available genetic profiles of wheat and maize, two of mankind's three major cereal crops. eng ["disciplinary"] {"size": "4 dataverses; 426 datasets; 4.007 files", "updatedp": "2019-01-08"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Mexico", "agricultural systems", "genetic engineering", "maize", "seeds of discovery", "socio-economics", "wheat"] [{"institutionName": "CGIAR", "institutionAdditionalName": ["Consultative Group on International Agricultural Research"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cgiar.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cgiar.org/contacts/"]}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.harvard.edu/", "support@dataverse.org"]}, {"institutionName": "International Maize and Wheat Improvement Center", "institutionAdditionalName": ["CIMMYT", "Centro Internacional de Mejoramiento de Ma\u00edz y Trigo"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cimmyt.org/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cimmyt.org/en/contact-us"]}, {"institutionName": "Mexico, Secretaria de Agricultura, Ganaderia Dessarrollo Rural, Pesca Y Alimentacion", "institutionAdditionalName": ["SAGARPA"], "institutionCountry": "MEX", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sagarpa.mx/English/Pages/Introduction.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gob.mx/sader#344"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "General Terms and Conditions", "policyURL": "https://www.cimmyt.org/wp-content/uploads/2016/04/Subgrant-Agreement-General-Terms-and-Conditions-1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cimmyt.org/wp-content/uploads/2016/05/CIMMYT-Intellectual-Property-Policy-Apr-2009.pdf"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} CIMMYT is one of the 15 non-profit, research and training institutions affiliated with the Consultative Group on International Agricultural Research (CGIAR). 2015-08-26 2019-03-05 +r3d100011804 RU-IIEc spa [{"additionalName": "RU-Economicas", "additionalNameLanguage": "spa"}, {"additionalName": "Repositorio Universitario Instituto de Investigaciones Econ\u00f3micas", "additionalNameLanguage": "spa"}] http://ru.iiec.unam.mx/ [] ["comision-ru@iiec.unam.mx"] RU-Economicas is the repository of the Institute of Economic Research (IIEc) of the UNAM, created to manage, promote and preserve, in digital format, the intellectual production of Institute of Economic Research. The objective of this repository is to promote scholarly communication and increase the visibility and use of the content produced at the Institute. It houses various materials, which may have been arbitrated or not, including books, journals, articles, lectures, presentations, databases, audiovisual, and so on. The RU-Economics provides the general public, students, teachers and researchers, a search service and online consultation of digital resources produced by the academic community of the Institute of Economic Research. Our repository is part of our university's Digital Archives Network (RAD-UNAM) which aims to create a network of university repositories to support university departments in the management and dissemination of their digital resources. Thus, the Institute for Economic Research adds to the efforts of the UNAM for better management of and access to intellectual products of the university community in the digital environment. eng ["institutional"] {"size": "1 research dataset", "updatedp": "2019-12-02"} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://ru.iiec.unam.mx/information.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Mexico", "agricultural and natural resources economics", "economic development", "economic systems", "economics of the environment and ecology", "financial economics", "industrial organization", "international economy", "labor and demographic economy", "law and economics", "macroeconomics", "mathematical methods", "microeconomics", "quantitative methods", "urban, rural and regional economy"] [{"institutionName": "Universidad Nacional Aut\u00f3noma de M\u00e9xico, Instituto de Investigaciones Econ\u00f3micas", "institutionAdditionalName": ["IIEc", "National Autonomous University of Mexico, Institute of Economic Research", "UNAM"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iiec.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iiec.unam.mx/contact"]}] [{"policyName": "Data Seal of Approval Assessment", "policyURL": "https://easy.dans.knaw.nl/ui/datasets/id/easy-dataset:116038/tab/2#"}, {"policyName": "Manual para el Dep\u00f3sito de \nObjetos", "policyURL": "http://ru.iiec.unam.mx/91/4/manual_deposito_documentos_ru.pdf"}, {"policyName": "Pol\u00edticas de uso", "policyURL": "http://ru.iiec.unam.mx/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["EPrints"] {"api": "http://ru.iiec.unam.mx/cgi/oai2", "apiType": "OAI-PMH"} ["none"] [] unknown yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://ru.iiec.unam.mx/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} Type of objects that can be deposited Books Chapters in books and other equity: prologues, introductory studies, presentations, among others. Periodicals: magazines, newsletters, journals, and so on. Articles in journals: reviews, specialized newspaper articles, editorials, among others. Memories of institutional academic events. Presentations at external seminars. Reports, manuals and technical reports. Pictures: photographs, cartographic material, posters, diagrams, and so on. Scripts, audios and videos: television, radio, film scripts, among others. 2016-01-19 2019-12-05 +r3d100011805 Digital Repository of Ireland eng [{"additionalName": "DRI", "additionalNameLanguage": "eng"}, {"additionalName": "Taisclann Dhigiteach na h\u00c9ireann", "additionalNameLanguage": "gla"}] https://repository.dri.ie/ ["FAIRsharing_DOI:10.25504/FAIRsharing.wL29nJ"] ["https://www.dri.ie/contact", "t.biro@ria.ie"] The Digital Repository of Ireland (DRI) is a national trusted digital repository (TDR) for Ireland’s social and cultural data. We preserve, curate, and provide sustained access to a wealth of Ireland’s humanities and social sciences data through a single online portal. The repository houses unique and important collections from a variety of organisations including higher education institutions, cultural institutions, government agencies, and specialist archives. DRI has staff members from a wide variety of backgrounds, including software engineers, designers, digital archivists and librarians, data curators, policy and requirements specialists, educators, project managers, social scientists and humanities scholars. DRI is certified by the CoreTrustSeal, the current TDR standard widely recommended for best practice in Open Science. In addition to providing trusted digital repository services, the DRI is also Ireland’s research centre for best practices in digital archiving, repository infrastructures, preservation policy, research data management and advocacy at the national and European levels. DRI contributes to policy making nationally (e.g. via the National Open Research Forum and the IRC), and internationally, including European Commission expert groups, the DPC, RDA and the OECD. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dri.ie/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Irish cultural heritage", "Irish history", "archaeology", "art", "arts in education", "church history", "community archives", "contemporary social movements", "ethnic groups", "government", "identity", "local archives", "oral histories", "politics", "qualitative data", "religious segregation", "social justice"] [{"institutionName": "Maynooth University", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.maynoothuniversity.ie/", "institutionIdentifier": ["ROR:048nfjm95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.maynoothuniversity.ie/contact"]}, {"institutionName": "Royal Irish Academy", "institutionAdditionalName": ["RIA"], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ria.ie/", "institutionIdentifier": ["ROR:019tbdj08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Trinity College Dublin", "institutionAdditionalName": ["Col\u00e1iste na Tr\u00edn\u00f3ide, Baile \u00c1tha Cliath"], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tcd.ie/", "institutionIdentifier": ["ROR:02tyrky19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DRI Collection Policy (Amended - 2020)", "policyURL": "https://doi.org/10.7486/DRI.kk91v774c"}, {"policyName": "DRI Deposit Terms and Conditions (2018)", "policyURL": "https://doi.org/10.7486/DRI.1544r4085"}, {"policyName": "DRI End User Terms and Conditions (Amended - 2020)", "policyURL": "https://doi.org/10.7486/DRI.4b29qt95d"}, {"policyName": "DRI Membership Policy (2018)", "policyURL": "https://doi.org/10.7486/DRI.0574f668r"}, {"policyName": "DRI Organisational Manager Agreement (2018)", "policyURL": "https://doi.org/10.7486/DRI.zk527x75s"}, {"policyName": "DRI Restricted Data Policy (Amended - 2019)", "policyURL": "https://doi.org/10.7486/DRI.8623xk58w"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en_US"}] restricted [] ["Fedora"] yes {} ["DOI"] https://doi.org/10.7486/DRI.rx91h486p [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "MIDAS-Heritage", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"}] {} Digital Repository of Ireland is a regular member of ICSU World Data System - WDS. 2016-01-21 2021-11-16 +r3d100011806 SLUB Sammlungen deu [{"additionalName": "SLUB Collections", "additionalNameLanguage": "eng"}, {"additionalName": "SLUBArchiv.digital", "additionalNameLanguage": "deu"}] https://digital.slub-dresden.de/en/digital-collections/ [] ["Simone.Georgi@slub-dresden.de", "digital@slub-dresden.de"] Founded in 1556, the SLUB today houses a variety of collections. The Library collects most comprehensively media from and about Saxony (Saxonica) and – commissioned by the German Research Foundation – literature on contemporary art, photography, industrial design and commercial art, and history of technology. In addition, also the music and the map collection have a special rank. These and other valuable materials are summarized in the special collections department. Finally the Deutsche Fotothek as one of the most important photo archives in Germany has a prominent role. eng ["disciplinary", "institutional"] {"size": "112.147 titles; 404.589 volumes; over 1.8 Million media items (images, maps, drawings).", "updatedp": "2021-04-16"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "10303 Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://slubarchiv.slub-dresden.de/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Saxonica", "arts", "autographs", "codices", "digitalizations", "drawings", "historic maps", "history", "inkunabel", "music", "opera", "photo archive"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "S\u00e4chsische Landesbibliothek \u2013 Staats- und Universit\u00e4tsbibliothek Dresden", "institutionAdditionalName": ["SLUB", "Saxon State and University Library Dresden"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.slub-dresden.de/", "institutionIdentifier": ["ROR:03wf51b65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.slub-dresden.de/kontakt/"]}, {"institutionName": "S\u00e4chsische Landesbibliothek \u2013 Staats- und Universit\u00e4tsbibliothek Dresden, SLUBArchiv.digital", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://slubarchiv.slub-dresden.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Gerald.Huebsch@slub-dresden.de"]}] [{"policyName": "AGB Deutsche Fotothek", "policyURL": "https://digital.slub-dresden.de/fileadmin/groups/slubsite/Ueber_uns/PDF-Ueber_uns/AGB-einsch.Nutzugn_Online-Bilddatenbank.pdf"}, {"policyName": "Gesetz \u00fcber die SLUB", "policyURL": "https://www.slub-dresden.de/fileadmin/groups/slubsite/Ueber_uns/Organisation/Gesetz_%C3%BCber_die_SLUB_Dresden-Fassung_vom_17.12.2013.pdf"}, {"policyName": "Implementation of the Data Seal of Approval", "policyURL": "https://assessment.datasealofapproval.org/assessment_178/seal/html/"}, {"policyName": "Terms of Use for Digital Collections", "policyURL": "https://digital.slub-dresden.de/en/terms-of-use-for-digital-collections/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/deed.de"}] closed [] ["other"] {"api": "https://digital.slub-dresden.de/oai/?verb=Identify", "apiType": "OAI-PMH"} ["PURL"] [] unknown yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digital.slub-dresden.de/rss/", "syndicationType": "RSS"} 2016-02-08 2021-04-16 +r3d100011807 Kielipankki fin [{"additionalName": "The Language Bank of Finland", "additionalNameLanguage": "eng"}] https://www.kielipankki.fi/language-bank/ [] ["kielipankki @csc.fi"] The Language Bank features text and speech corpora with different kinds of annotations in over 60 languages. There is also a selection of tools for working with them, from linguistic analyzers to programming environments. Corpora are also available via web interfaces, and users can be allowed to download some of them. The IP holders can monitor the use of their resources and view user statistics. eng ["disciplinary"] {"size": "13 billion tokens (2019)", "updatedp": "2019-10-30"} 1996 ["eng", "fin"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.kielipankki.fi/organization/fin-clarin/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["linguistic analyzers", "multilingual", "speech corpora", "text corpora"] [{"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.eu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin@clarin.eu"]}, {"institutionName": "CSC \u2013 IT Center for Science", "institutionAdditionalName": [], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csc.fi/", "institutionIdentifier": ["ROR:04m8m1253"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@csc.fi"]}, {"institutionName": "FIN-CLARIN Consortium", "institutionAdditionalName": [], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kielipankki.fi/organization/fin-clarin/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fin-clarin@helsinki.fi"]}] [{"policyName": "CSC General terms of use", "policyURL": "https://research.csc.fi/general-terms-of-use"}, {"policyName": "G\u00c9ANT Data Protection Code of Conduct", "policyURL": "https://geant3plus.archive.geant.net/uri/dataprotection-code-of-conduct/v1/Pages/default.aspx"}, {"policyName": "Open Science Finland", "policyURL": "https://www.avointiede.fi/en"}, {"policyName": "Terms of use of the Language Bank of Finland", "policyURL": "https://www.kielipankki.fi/language-bank/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://urn.fi/urn:nbn:fi:lb-201910222"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}, {"dataLicenseName": "RL", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/fdl-1.3.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-lc/"}] restricted [{"dataUploadLicenseName": "CLARIN Deposition License Agreements (DELA)", "dataUploadLicenseURL": "https://www.kielipankki.fi/support/clarin-sa/"}] ["unknown"] yes {"api": "https://kielipankki.fi/md_api/que", "apiType": "OAI-PMH"} ["URN", "hdl"] https://www.kielipankki.fi/corpora/ [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.kielipankki.fi/uutinen/feed/", "syndicationType": "RSS"} Search for Kielipankki in CLARIN Virtual Language Observatory - VLO https://vlo.clarin.eu/ 2016-02-08 2022-01-03 +r3d100011808 nanoHUB eng [{"additionalName": "nanoHUB.org", "additionalNameLanguage": "eng"}] https://nanohub.org/ ["OMICS_27120", "RRID:SCR_013963"] ["https://nanohub.org/about/contact"] nanoHUB.org is the premier place for computational nanotechnology research, education, and collaboration. Our site hosts a rapidly growing collection of Simulation Programs for nanoscale phenomena that run in the cloud and are accessible through a web browser. In addition to simulation devices, nanoHUB provides Online Presentations, Courses, Learning Modules, Podcasts, Animations, Teaching Materials, and more. These resources help users learn about our simulation programs and about nanotechnology in general. Our site offers researchers a venue to explore, collaborate, and publish content, as well. Much of these collaborative efforts occur via Workspaces and User groups. eng ["disciplinary"] {"size": "7.171 resources", "updatedp": "2021-10-15"} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://nanohub.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Nanomaterial Registry", "nanoBIO", "nanoscience", "nanotechnology", "simulation", "thermalhub"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Purdue University, Network for Computational Nanotechnology", "institutionAdditionalName": ["NCN"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nanohub.org/groups/ncn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nanohub.org/groups/ncn/contact"]}] [{"policyName": "Abuse Policy", "policyURL": "https://nanohub.org/legal/abuse"}, {"policyName": "Terms of Use", "policyURL": "https://nanohub.org/legal/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.5/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/UoI-NCSA.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.opensource.org/docs/definition.php"}] restricted [{"dataUploadLicenseName": "Submitting Content terms of license", "dataUploadLicenseURL": "https://nanohub.org/legal/license"}] ["unknown"] yes {} ["DOI"] https://nanohub.org/about/citeus [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} nanoHUB is covered by Thomson Reuters Data Citation Index. nanoHUB offers usage and citation metrics. The National Science Foundation (NSF) is funding Purdue University for the operation and advancement of nanoHUB.org, a national nanotechnology infrastructure. The NCN cyber platform plans to expand its widely used nanoHUB online science and engineering gateway, developing a virtual society that shares simulation software, data, and other innovative content that provide engineers and scientists with the fundamental knowledge required to advance nanoscience into nanotechnology. 2015-09-04 2021-10-15 +r3d100011810 Socio Cognitive Processes Lab data eng [{"additionalName": "Infectious cognition data", "additionalNameLanguage": "eng"}] http://www.princeton.edu/~acoman/Home.html [] ["acoman@princeton.edu"] Our lab investigates how cognition manifests in, and is influenced by, the social contexts in which it occurs. We focus: 1) on how conversational interactions can reshape memory, by promoting shared remembering and shared forgetting, and 2) on how socio-cognitive processes affect the formation of collective memories and beliefs, and the dynamics of collective decisions. In exploring these issues, while maintaining high ecological validity, our lab integrates a wide range of methodologies, including laboratory experiments, field studies, social network analysis, and agent-based simulations. eng ["institutional"] {"size": "1 dataset", "updatedp": "2018-01-30"} 2015-08-09 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.princeton.edu/~acoman/Projects.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agent-based simulations", "cognitive psychology", "collective beliefs", "collective decisions", "conversational interactions", "field studies", "human memory", "social network analysis"] [{"institutionName": "Princeton University, Socio-Cognitive Processes Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.princeton.edu/~acoman/Home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["acoman@princeton.edu"]}] [{"policyName": "Princeton University copyright Policy", "policyURL": "http://www.princeton.edu/copyright/pu-copyright-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.princeton.edu/copyright/index.xml"}] restricted [] ["unknown"] no {} ["none"] ["none"] yes no [] [] {} 2015-09-11 2018-01-30 +r3d100011811 Nordicana D eng [{"additionalName": "La collection Nordicana D", "additionalNameLanguage": "fra"}, {"additionalName": "Nordicana D collection", "additionalNameLanguage": "eng"}] http://www.cen.ulaval.ca/nordicanad/en_index.aspx [] ["http://www.cen.ulaval.ca/nordicanad/en_joindre.aspx", "nordicana@cen.ulaval.ca"] Nordicana series D is a formatted, online data report series archived at CEN. It is produced only in electronic form and is freely and openly accessible to CEN researchers and to other users. Each issue is published in French and in English, and is indexed via an assigned digital object identifier (DOI). An issue may be updated, for example with new data, as a new version number, but will retain the same DOI. Each issue contains data sets and extensive metadata that explain the origin of the data, the format of the data, the history of updates via different version numbers, and the format that should be adopted to cite the data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.cen.ulaval.ca/nordicanad/en_index.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ADAPT", "IPY-ArcticWOLVES", "SILA Network", "climate warming", "ecosystems", "environmental change", "geosystems", "northern regions"] [{"institutionName": "Centre for Northern Studies", "institutionAdditionalName": ["CEN", "Centre d'\u00e9tudes nordiques"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cen.ulaval.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cen.ulaval.ca/en/joindre.php"]}, {"institutionName": "Universit\u00e9 Laval", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ulaval.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ulaval.ca/"]}, {"institutionName": "Universit\u00e9 du Qu\u00e9bec \u00e0 Rimouski", "institutionAdditionalName": ["UQAR", "Universit\u00e9 du Qu\u00e9bec Campus Rimouski"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uqar.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uqar.ca/"]}] [{"policyName": "Nordicana D and CEN Data Policy", "policyURL": "http://www.cen.ulaval.ca/nordicanad/document/en_datapolicy.pdf"}, {"policyName": "Terms of use", "policyURL": "http://www.cen.ulaval.ca/nordicanad/en_modalite.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cen.ulaval.ca/nordicanad/document/en_datapolicy.pdf"}] restricted [] [] yes {} ["DOI"] http://www.cen.ulaval.ca/nordicanad/en_modalite.aspx [] yes no [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} All data reports published in Nordicana D will be described in the Polar Data Catalogue to ensure their full availability and dissemination.CEN researchers also include professors from the Université du Québec à Trois-Rivières, Université de Sherbrooke, Université de Montréal, Université du Québec à Chicoutimi, Université du Québec à Montréal, McGill University and Cégep F-X Garneau. CEN brings together over 200 researchers, students, postdoctoral fellows and pro fessionals from diverse disciplines (biology and microbiology, geography, geology, engineering, archeology, landscape management). 2015-09-10 2021-07-20 +r3d100011812 45 and Up Study eng [] https://www.saxinstitute.org.au/our-work/45-up-study/ [] ["https://www.saxinstitute.org.au/contact-us/"] More than a quarter of a million people — one in 10 NSW men and women aged over 45 — have been recruited to our 45 and Up Study, the largest ongoing study of healthy ageing in the Southern Hemisphere. The baseline information collected from all of our participants is available in the Study’s Data Book. This information, which researchers use as the basis for their analyses, contains information on key variables such as height, weight, smoking status, family history of disease and levels of physical activity. By following such a large group of people over the long term, we are developing a world-class research resource that can be used to boost our understanding of how Australians are ageing. This will answer important health and quality-of-life questions and help manage and prevent illness through improved knowledge of conditions such as cancer, heart disease, depression, obesity and diabetes. eng ["disciplinary"] {"size": "more than 250.000 NSW men and women aged 45 and over", "updatedp": "2019-01-09"} 2004 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.saxinstitute.org.au/about-us/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cancer", "cardiovascular health", "diabetes", "health", "health policy", "healthcare", "healthy ageing", "lifestyle factors", "mental health", "wellbeing"] [{"institutionName": "Australian Commission on Safety and Quality in Health Care", "institutionAdditionalName": ["Safety and Quality in Health Care"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.safetyandquality.gov.au/", "institutionIdentifier": ["ROR:00bm0qt52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.safetyandquality.gov.au/about-us/contact-us/"]}, {"institutionName": "Australian Red Cross Blood Service", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.donateblood.com.au/", "institutionIdentifier": ["ROR:00evjd729"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.donateblood.com.au/contact-us"]}, {"institutionName": "Bureau of Health Information", "institutionAdditionalName": ["BHI"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bhi.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bhi.nsw.gov.au/About_us/contact_us"]}, {"institutionName": "Cancer Council NSW", "institutionAdditionalName": ["Cancer Council New South Wales"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cancercouncil.com.au/", "institutionIdentifier": ["ROR:05gsbkp40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancercouncil.com.au/contact-us/"]}, {"institutionName": "NSW Agency for Clinical Innovation", "institutionAdditionalName": ["ACI"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.aci.health.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.aci.health.nsw.gov.au/about-aci"]}, {"institutionName": "NSW Government Family & Community Services \u2013 Carers, Ageing and Disability Inclusion", "institutionAdditionalName": ["FACS, ADHC"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.facs.nsw.gov.au/", "institutionIdentifier": ["ROR:01yshzf86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.facs.nsw.gov.au/about_us/contact_us"]}, {"institutionName": "NSW Ministry of Health", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.health.nsw.gov.au/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.health.nsw.gov.au/pages/contact.aspx"]}, {"institutionName": "National Health and Medical Research Council", "institutionAdditionalName": ["NHMRC"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhmrc.gov.au/", "institutionIdentifier": ["ROR:011kf5r70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhmrc.gov.au/about/contact-us"]}, {"institutionName": "National Heart Foundation of Australia, NSW Division", "institutionAdditionalName": ["Heart Foundation"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.heartfoundation.org.au", "institutionIdentifier": ["ROR:039d9wr27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.heartfoundation.org.au/about-us/contact-us"]}, {"institutionName": "saxinstitute", "institutionAdditionalName": ["Institute for Health Research"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.saxinstitute.org.au/", "institutionIdentifier": ["ROR:008cfxd05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.saxinstitute.org.au/contact-us/"]}] [{"policyName": "Governance and ethics", "policyURL": "https://www.saxinstitute.org.au/our-work/45-up-study/governance/"}, {"policyName": "Terms and conditions", "policyURL": "https://www.saxinstitute.org.au/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.saxinstitute.org.au/terms/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.saxinstitute.org.au/terms/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.saxinstitute.org.au/our-work/45-up-study/governance/"}] restricted [] ["unknown"] {} ["none"] ["none"] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 45 and Up Study is covered by Clarivate Data Citation Index. 2015-10-30 2021-09-06 +r3d100011813 Aberdeen Birth Cohorts eng [{"additionalName": "1921 Birth Cohort, 1936 Birth Cohort, Children of the 1950s", "additionalNameLanguage": "eng"}] https://www.abdn.ac.uk/birth-cohorts/ [] ["c.mcneil@abdn.ac.uk", "children1950s@abdn.ac.uk"] The University has followed all of the children born in Aberdeen in 1921, 1936, and 1950-1956 as they grow and age. Collectively these groups are known as the ABERDEEN BIRTH COHORTS, and are a jewel in the crown of Scottish health research and have helped to advance our understanding of aging well. The Children of the 1950s study is a population-based resource for the study of biological and social influences on health across the life-course and between generations. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biosamples", "brain aging", "dementia", "genetic tests", "heart disease", "intelligence", "mental health", "pegnancy", "quality of life", "schooling"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mrc.ac.uk/about/contact/"]}, {"institutionName": "University of Aberdeen", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.abdn.ac.uk/", "institutionIdentifier": ["ROR:016476m91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.abdn.ac.uk/about/contact/"]}] [{"policyName": "Data request form", "policyURL": "https://www.abdn.ac.uk/birth-cohorts/documents/Data_request_form_May_2015.doc"}, {"policyName": "Regulations for access", "policyURL": "https://www.abdn.ac.uk/birth-cohorts/1936/for-researchers/data-access/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.abdn.ac.uk/birth-cohorts/documents/Data_request_form_May_2015.doc"}] closed [] ["unknown"] {} ["none"] [] yes unknown [] [] {} Aberdeen Birth Cohorts is covered by Clarivate Data Citation Index. Approval to use anonymised sub-sets of the data requires approval by the Study Steering Group. 2016-02-08 2020-02-19 +r3d100011815 NBIS DOI repository eng [{"additionalName": "BILS DOI Repository (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Bioinformatics Infrastructure for Life Sciences DOI Repository (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "National Bioinformatics Infrastructure Sweden DOI repository", "additionalNameLanguage": "eng"}] http://doi.nbis.se/ [] [] >>>!!!<<< The repository is inactive, please use SciLifeLab Data Repository >>>!!!<<< This DOI repository provides permanent identifiers to data sets generated by Life Science researchers active in Sweden, and for which no other suitable public repository is available. BILS is a distributed national research infrastructure supported by the Swedish Research Council (Vetenskapsrådet) providing bioinformatics support to life science researchers in Sweden. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["algae", "bacteria", "biomarker", "genetics", "protein"] [{"institutionName": "National Bioinformatics Infrastructure Sweden", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nbis.se/", "institutionIdentifier": [], "responsibilityStartDate": "2016-04-01", "responsibilityEndDate": "", "institutionContact": ["data@nbis.se"]}, {"institutionName": "Swedish Research Council", "institutionAdditionalName": ["Vetenskapsradet"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.vr.se/english", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.vr.se/english/en_-sidfot/contact/contact-us.html"]}] [{"policyName": "USER AGREEMENT NBIS", "policyURL": "https://nbis.se/assets/doc/nbis-support-useragreement.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] open [] ["unknown"] {} ["DOI"] https://nbis.se/assets/doc/nbis-support-useragreement.pdf [] yes unknown [] [] {} BILS has been superseded by NBIS -- National Bioinformatics Infrastructure Sweden. Please visit https://nbis.se for the most up-to-date information. - BILS DOI Repository is covered by Thomson Reuters Data Citation Index. 2016-02-16 2021-06-02 +r3d100011817 BioDare2 eng [{"additionalName": "BioDare (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Biological Data Repository", "additionalNameLanguage": "eng"}] https://biodare2.ed.ac.uk/welcome [] ["biodare@ed.ac.uk", "biodare@staffmail.ed.ac.uk"] BeiDare2 is currently at beta version. All new users should try the new service as we no longer provide training for the classic BioDare. - BioDare stands for Biological Data Repository, its main focus is data from circadian experiments. BioDare is an online facility to share, store, analyse and disseminate timeseries data, focussing on circadian clock data, with browser and web service interfaces. Toolbox features include an improved, speedier FFT-NLLs routine and ROBuST’s Spectrum Resampling tool that will analyse rhythmic time series data. eng ["disciplinary"] {"size": "148 experiments in version 1", "updatedp": "2016-02-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.biodare.ed.ac.uk/robust/About.action [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biological signalling", "chronobiology", "genotypes", "p:LUC", "plant development", "plant growth", "rhythm analysis", "time series"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en"]}, {"institutionName": "University of Edinburgh, The Halliday Lab", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hallidaylab.bio.ed.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tomasz.zielinski@ed.ac.uk"]}] [{"policyName": "Conditions of BioDare Service", "policyURL": "https://biodare2.ed.ac.uk/documents/service"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] ["unknown"] yes {} ["none"] https://biodare2.ed.ac.uk/welcome ["none"] yes unknown [] [] {} BioDare 1 version: https://www.biodare.ed.ac.uk/robust/About.action ---- BioDare is covered by Thomson Reuters Data Citation Index. 2016-02-17 2019-01-09 +r3d100011818 Born in Bradford eng [{"additionalName": "BiB", "additionalNameLanguage": "eng"}] https://www.borninbradford.nhs.uk/ [] ["borninbradford@bthft.nhs.uk", "https://borninbradford.nhs.uk/contact-us/", "john.wright@bthft.nhs.uk"] Born in Bradford is one of the biggest and most important medical research studies undertaken in the UK. The project started in 2007 and is looking to answer questions about our health by tracking the lives of 13,500 babies and their families and will provide information for studies across the UK and around the world. The aim of Born in Bradford is to find out more about the causes of childhood illness by studying children from all cultures and backgrounds as their lives unfold. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "20521 Gynaecology and Obstetrics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://borninbradford.nhs.uk/about-us/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bradford", "biological samples", "child health", "child wellness", "childhood illness", "cohort Study", "diabetes", "medical research study"] [{"institutionName": "Bradford Institute for Health Research", "institutionAdditionalName": ["BIHR"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bradfordresearch.nhs.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["https://www.bradfordresearch.nhs.uk/contact/"]}, {"institutionName": "National Health Service", "institutionAdditionalName": ["NHS"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhs.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhs.uk/contact-us/"]}] [{"policyName": "Guidance and conditions for collaborators on the Born in Bradford programme", "policyURL": "https://borninbradford.nhs.uk/?s=Guidance+and+conditions+for+collaborators+on+the+Born+in+Bradford+programme"}, {"policyName": "cohort information", "policyURL": "https://borninbradford.nhs.uk/?s=cohort+information"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://borninbradford.nhs.uk/?s=data+use+agreement"}] closed [] ["unknown"] {} ["none", "none"] ["none"] yes yes [] [] {} Born in Bradford is covered by Thomson Reuters Data Citation Index. 2016-02-19 2019-01-09 +r3d100011819 Broad-Novartis Cancer Cell Line Encyclopedia eng [{"additionalName": "CCLE", "additionalNameLanguage": "eng"}, {"additionalName": "Cancer Cell Line Encyclopedia", "additionalNameLanguage": "eng"}] https://portals.broadinstitute.org/ccle ["OMICS_03988", "RRID:SCR_013836"] ["https://portals.broadinstitute.org/ccle/about#contact"] The Cancer Cell Line Encyclopedia project is a collaboration between the Broad Institute, and the Novartis Institutes for Biomedical Research and its Genomics Institute of the Novartis Research Foundation to conduct a detailed genetic and pharmacologic characterization of a large panel of human cancer models, to develop integrated computational analyses that link distinct pharmacologic vulnerabilities to genomic patterns and to translate cell line integrative genomics into cancer patient stratification. The CCLE provides public access to genomic data, analysis and visualization for about 1000 cell lines. eng ["disciplinary"] {"size": "Cell Lines: 1457", "updatedp": "2019-01-09"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://portals.broadinstitute.org/ccle/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "cancer cell lines", "chemical biology", "genetics", "genomics", "mRNA expression", "pharmaceutical", "tumor biology"] [{"institutionName": "Broad Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cellfactory@broadinstitute.org", "https://www.broadinstitute.org/contact"]}, {"institutionName": "Genomics Institute of the Novartis Research Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gnf.nibr.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gnf.nibr.com/about-us/contact-us"]}, {"institutionName": "Novartis", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.novartis.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.novartis.com/our-company/contact-us"]}, {"institutionName": "Novartis Institutes for Biomedical Research", "institutionAdditionalName": ["NIBR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.novartis.com/our-science/novartis-institutes-biomedical-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.novartis.com/our-company/contact-us"]}] [{"policyName": "Terms of Access", "policyURL": "https://portals.broadinstitute.org/ccle/about"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://portals.broadinstitute.org/ccle/about"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cancergenome.nih.gov/pdfs/CCLE_Release_Justification"}, {"dataLicenseName": "other", "dataLicenseURL": "https://osp.od.nih.gov/scientific-sharing/policies/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://portals.broadinstitute.org/ccle/about"}] restricted [] ["unknown"] yes {} ["none"] https://portals.broadinstitute.org/ccle/about ["none"] unknown yes [] [] {} CCLE is covered by Thomson Reuters Data Citation Index. 2016-02-22 2019-01-09 +r3d100011820 CaPSURE eng [{"additionalName": "Cancer of the Prostate Strategic Urologic Research Endeavor", "additionalNameLanguage": "eng"}] https://urology.ucsf.edu/research/cancer/capsure [] ["https://urology.ucsf.edu/people/peter-r-carroll"] CaPSURE™ is a longitudinal, observational study of approximately 15,000 men with all stages of biopsy-proven prostate cancer. Patients have enrolled at 43 community urology practices, academic medical centers, and VA hospitals throughout the United States since 1995. CEASAR stands for Comparative Effectiveness Analysis of Surgery and Radiation. The ongoing goal of CEASAR is to help learn more about what prostate cancer treatments work best, for which patients, in whose hands. There are currently about 3,600 men with a prostate cancer diagnosis participating in CEASAR. Three rounds of surveys have been completed, with the first carried out in the spring of 2010. We are currently in the process of conducting our fourth survey with the same group of men in our study. This survey, our Three Year Follow-up, will occur throughout the summer of 2014. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "20523 Urology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://urology.ucsf.edu/about [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["CEASAR Comparative Effectiveness Analysis of Surgery and Radiation.", "Gleason-Score", "PSA", "cancer", "oncology", "prostate", "survey data", "tumor"] [{"institutionName": "UCSF Department of Urology", "institutionAdditionalName": ["University of California San Francisco, Department of Urology"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://urology.ucsf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://urology.ucsf.edu/people/peter-r-carroll"]}] [{"policyName": "Research Guidelines", "policyURL": "https://urology.ucsf.edu/sites/urology.ucsf.edu/files/uploaded-files/attachments/uroloncdatasets_presentfindings_aug2015_0.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ucsf.us.qualtrics.com/jfe/form/SV_2beAaQ5YBmmGxNj"}] closed [] ["unknown"] {} [] [] yes yes [] [] {} CaPSURE is covered by Thomson Reuters Data Citation Index. 2016-02-23 2019-01-09 +r3d100011821 Chickpea Transcriptome Database eng [{"additionalName": "CTDB", "additionalNameLanguage": "eng"}] http://www.nipgr.res.in/ctdb.html ["OMICS_04684"] ["mjainanid@gmail.com"] The Chickpea Transcriptome Database (CTDB) has been developed with the view to provide most comprehensive information about the chickpea transcriptome, the most relevant part of the genome. The database contains various information and tools for transcriptome sequence, functional annotation, conserved domain(s), transcription factor families, molecular markers (microsatellites and single nucleotide polymorphisms), Comprehensive gene expression and comparative genomics with other legumes. The database is a freely available resource, which provides user scientists/breeders a portal to search, browse and query the data to facilitate functional and applied genomics research in chickpea and other legumes. The current release of database provides transcriptome sequence from cultivated (Cicer arietinum desi (ICC4958) and kabuli (ICCV2)) and wild (Cicer reticulatum, PI489777) chickpea genotypes. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.nipgr.res.in/ctdb.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Arapidopsis", "chickpea transcriptome", "cicer arietinum", "cicer reticulatum", "compound microsatellite", "desi chickpea", "flower development", "kabuli chickpea", "legumes", "polymorphic microsatellite", "wild chickpea"] [{"institutionName": "Government of India, Ministry of Science & Technology, Department of Biotechnology", "institutionAdditionalName": ["DBT"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dbtindia.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Plant Genome Research", "institutionAdditionalName": ["NIPGR"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nipgr.res.in/home/home.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nipgr.res.in/misc/contact_us.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.nipgr.res.in/ctdb.html"}] restricted [] ["unknown"] yes {} ["none"] http://www.nipgr.res.in/ctdb.html [] yes unknown [] [] {} Chickpea Transcriptome Database is covered by Thomson Reuters Data Citation Index. 2016-02-25 2021-08-24 +r3d100011822 Cognitive Function and Ageing Study eng [{"additionalName": "CFAS", "additionalNameLanguage": "eng"}] http://www.cfas.ac.uk/ [] ["leb22@medschl.cam.ac.uk"] The Cognitive Function and Ageing Studies (CFAS) are population based studies of individuals aged 65 years and over living in the community, including institutions, which is the only large multi-centred population-based study in the UK that has reached sufficient maturity. There are three main studies within the CFAS group. MRC CFAS, the original study began in 1989, with three of its sites providing a parent subset for the comparison two decades later with CFAS II (2008 onwards). Subsequently another CFAS study, CFAS Wales began in 2011. eng ["disciplinary"] {"size": "", "updatedp": ""} 1989 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.cfas.ac.uk/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CFAS I", "CFAS II", "England", "UK population cohort", "Wales", "ageing", "biosamples", "brain", "dementia", "disability"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrc.ukri.org/about/contact/"]}, {"institutionName": "Newcastle University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncl.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cambridge", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cambridge, School of Clinical Medicine, Cambridge Institute of Public Health", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iph.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iph.cam.ac.uk/about-us/contact/"]}, {"institutionName": "University of Nottingham", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nottingham.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nottingham.ac.uk/contact/index.aspx"]}] [{"policyName": "Authorship and publication policy", "policyURL": "http://www.cfas.ac.uk/files/2015/07/Authorship-and-Publication-Policy-v2-01_05_2015.docx"}, {"policyName": "Data Transfer Agreement", "policyURL": "http://www.cfas.ac.uk/files/2015/07/Data-Transfer-Agreement-v2-30_04_2015.doc"}, {"policyName": "Ethical Approval", "policyURL": "http://www.cfas.ac.uk/files/2015/09/Ethical-approvals-for-CFAS.docx"}, {"policyName": "Study Documentation", "policyURL": "http://www.cfas.ac.uk/cfas-i/cfasi-documents/"}, {"policyName": "The Cognitive Function and Ageing Studies\nData Destruction Form", "policyURL": "http://www.cfas.ac.uk/files/2015/07/Data-destruction-form-v2-30_04_2015.doc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cfas.ac.uk/files/2015/07/Data-Transfer-Agreement-v2-30_04_2015.doc"}] closed [] ["unknown"] yes {} ["none"] http://www.cfas.ac.uk/files/2015/07/Data-Transfer-Agreement-v2-30_04_2015.doc [] yes yes [] [] {"syndication": "http://www.cfas.ac.uk/feed/", "syndicationType": "RSS"} Cognitive Function and Ageing Study is covered by Thomson Reuters Data Citation Index. 2016-02-22 2019-01-09 +r3d100011823 Dallas Heart Study eng [{"additionalName": "DHS", "additionalNameLanguage": "eng"}, {"additionalName": "DHS cohort", "additionalNameLanguage": "eng"}] https://www.utsouthwestern.edu/research/translational-medicine/doing-research/dallas-heart/ [] ["dallasheartstudy@utsouthwestern.edu"] The Dallas Heart Study (DHS) is a multi-ethnic, population-based probability sample of Dallas County designed to define the social and the biological variables contributingto ethnic differences in cardiovascular health at the community level and to support hypothesis-driven research aimed at determining the underlying mechanisms contributing to differences in cardiovascular risk. The initial data collection from the population was performed in three sequential stages over a two year period(2000-2002) and included the collection of detailed socioeconomic, biomarker and imaging data from each participant. The underlying assumption of the study is that successful identification of new risk factors for cardiovascular disease will require the availability of an exquisitely phenotyped, multiethnic population in close proximity to the Center. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20512 Cardiology, Angiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.utsouthwestern.edu/edumedia/edufiles/research/center_translational_medicine/dallas_heart_study/dhs-study-overview.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DXA", "Dallas county", "EKG", "MDCT", "MRI", "accelerometer placement", "acoustic cardiogram", "ankle-brachial index", "anthropometrics", "blood collection", "blood pressure", "cognitive screening test", "medications", "urine collection", "walk test", "weight"] [{"institutionName": "Donald W. Reynolds Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://philanthropynewsdigest.org/news/donald-w.-reynolds-foundation-prepares-to-close-its-doors", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": []}, {"institutionName": "UT Soutwestern, Medical Center", "institutionAdditionalName": ["Donald W. Reynolds Cardiovascular Clinical Research Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utsouthwestern.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utsouthwestern.edu/about-us/contact-us.html"]}] [{"policyName": "Join a Research Study", "policyURL": "https://www.utsouthwestern.edu/research/translational-medicine/participate-clinical-trial/"}, {"policyName": "Research Ethics", "policyURL": "https://www.utsouthwestern.edu/research/translational-medicine/doing-research/berd/research-ethics.html"}, {"policyName": "THE DALLAS HEART STUDY", "policyURL": "https://www.utsouthwestern.edu/edumedia/edufiles/research/center_translational_medicine/dallas_heart_study/dhs-study-overview.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.utsouthwestern.edu/research/translational-medicine/doing-research/dallas-heart/"}] closed [] ["unknown"] {} ["none"] https://www.utsouthwestern.edu/research/translational-medicine/about/citing-support.html [] yes unknown [] [] {} DHS is covered by Thomson Reuters Data Citation Index. 2016-03-04 2019-01-09 +r3d100011824 Danish National Birth Cohort eng [{"additionalName": "Bedre sundhet i generationer", "additionalNameLanguage": "dan"}, {"additionalName": "DNBC", "additionalNameLanguage": "eng"}] https://www.dnbc.dk/ [] ["dnbc-research@ssi.dk"] Exposures in the period from conception to early childhood - including fetal growth, cell division, and organ functioning - may have long-lasting impact on health and disease susceptibility. To investigate these issues the Danish National Birth Cohort (Better health in generations) was established. A large cohort of pregnant women with long-term follow-up of the offspring was the obvious choice because many of the exposures of interest cannot be reconstructed with suffcient validity back in time. The study needed to be large, and the aim was to recruit 100,000 women early in pregnancy, and to continue follow-up for decades. Exposure information was collected by computer-assisted telephone interviews with the women twice during pregnancy and when their children were six and 18 months old. Participants were also asked to fill in a self-administered food frequency questionnaire in mid-pregnancy. Furthermore, a biological bank has been set up with blood taken from the mother twice during pregnancy and blood from theumbilical cord taken shortly after birth. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.dnbc.dk/about-the-dnbc [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Dietary Habits of 14-year Olds", "biological samples", "food frequency", "history of birth", "lifestyle during pregnancy", "miscarriage", "post-natal", "pre-natal", "pregnancy", "triplets", "twins"] [{"institutionName": "Statens Serum Institut", "institutionAdditionalName": ["SSI"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.ssi.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["serum@ssi.dk"]}] [{"policyName": "Access to data from the DNBC", "policyURL": "https://www.dnbc.dk/access-to-dnbc-data"}, {"policyName": "Working with data from the DNBC on the VDI \u2013 general information", "policyURL": "https://www.dnbc.dk/-/media/arkiv/projekt-sites/dnbc/vdi-access-to-dnbc_october_2018.pdf?la=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.dnbc.dk/access-to-dnbc-data"}] closed [] [] {} ["none"] https://www.dnbc.dk/access-to-dnbc-data/acknowledgement [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {"syndication": "https://www.ssi.dk/English/RandD/Research%20areas/Epidemiology/DNBC/DNBC%20News.aspx?feed=1", "syndicationType": "RSS"} Danish National Birth Cohort is covered by Thomson Reuters Data Citation Index. 2016-03-04 2019-01-09 +r3d100011825 Diabetes Study of Northern California eng [{"additionalName": "DISTANCE", "additionalNameLanguage": "eng"}] https://divisionofresearch.kaiserpermanente.org/projects/distance/ [] ["howard.h.moffet@kp.org", "https://divisionofresearch.kaiserpermanente.org/about/contact-us"] The Diabetes Study of Northern California (DISTANCE) conducts epidemiological and health services research in diabetes among a large, multiethnic cohort of patients in a large, integrated health care delivery system. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20517 Endocrinology, Diabetology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://divisionofresearch.kaiserpermanente.org/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["VRO", "Virtual Research Office", "acute metabolic events", "clinical trial", "congestive heart failure", "diabetes-related complications", "end-stage renal disease", "ethnicity", "health communications", "health literacy and language barriers", "lower-extremity amputation", "medication adherence", "myocardial infarction", "proliferative retinopathy", "social disparities", "stroke"] [{"institutionName": "Kaiser Permanente, Division of Research", "institutionAdditionalName": ["DOR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://divisionofresearch.kaiserpermanente.org/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://divisionofresearch.kaiserpermanente.org/about/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIH NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niddk.nih.gov/about-niddk/contact-us"]}] [{"policyName": "Terms and conditions of our website", "policyURL": "https://divisionofresearch.kaiserpermanente.org/termsandconditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://divisionofresearch.kaiserpermanente.org/termsandconditions"}] closed [] ["unknown"] {} ["none"] ["none"] yes yes [] [] {} Diabetes Study of Northern California is covered by Thomson Reuters Data Citation Index. 2016-03-22 2019-01-09 +r3d100011826 Drosophila Genetic Reference Panel 2 eng [{"additionalName": "DGRP2", "additionalNameLanguage": "eng"}] http://dgrp.gnets.ncsu.edu/ [] ["dgrp2-webadmin@ncsu.edu"] The Drosophila Genetic Reference Panel (DGRP) is a population consisting of more than 200 inbred lines derived from the Raleigh, USA population. The DGRP is a living library of common polymorphisms affecting complex traits, and a community resource for whole genome association mapping of quantitative trait loci. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://mackay.gnets.ncsu.edu/research/the-d-melanogaster-genetic-reference-panel-dgrp/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Drosophila melanogaster", "GWAS", "genotype", "phenotype"] [{"institutionName": "Keck Center for Behavioral Biolog", "institutionAdditionalName": ["NC State University"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "N.C. State University, W.M. Keck Center for Behavioral Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://keck.sciences.ncsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["trudy_mackay@ncsu.edu"]}, {"institutionName": "N.C. State University, W.M. Keck Center for Behavioral Biology, Mackay Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mackay.gnets.ncsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dgrp.gnets.ncsu.edu/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://mackay.gnets.ncsu.edu/research/the-d-melanogaster-genetic-reference-panel-dgrp/"}] open [] [] {} ["none"] http://dgrp.gnets.ncsu.edu/faq.html#4 ["none"] unknown unknown [] [] {} DGRP is covered by Thomson Reuters Data Citation Index. 2016-03-24 2020-07-07 +r3d100011827 DSPR eng [{"additionalName": "The Drosophila Synthetic Population Resource", "additionalNameLanguage": "eng"}] http://wfitch.bio.uci.edu/~dspr/index.html [] ["flyrils@gmail.com"] The Drosophila Synthetic Population Resource (DSPR) consists of a new panel of over 1700 recombinant inbred lines (RILs) of Drosophila melanogaster, derived from two highly recombined synthetic populations, each created by intercrossing a different set of 8 inbred founder lines (with one founder line common to both populations). Complete genome sequence data for the founder lines are available, and in addition, there is a high resolution genetic map for each RIL. The DSPR has been developed as a community resource for high-resolution QTL mapping and is intended to be used widely by the Drosophila community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://wfitch.bio.uci.edu/~dspr/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Drosophila melanogaster", "chemotherapy", "gene expression", "genome", "genotype", "local interval", "nicotine resistance", "permutation", "phenotype", "toxicity"] [{"institutionName": "University of California at Irvine, Department of Ecology and Evolutionary Biology", "institutionAdditionalName": ["UCI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ecoevo.bio.uci.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tdlong@uci.edu"]}, {"institutionName": "University of Kansas, Department of Molecular Biosciences", "institutionAdditionalName": ["KU, Department of Molecular Biosciences"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://molecularbiosciences.ku.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sjmac@ku.edu"]}] [{"policyName": "A Data Analysis Tutorial for DSPR data", "policyURL": "http://wfitch.bio.uci.edu/~dspr/DatFILES/DSPRqtl-intro.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wfitch.bio.uci.edu/~dspr/Tools/Tutorial/index.html"}] closed [] [] yes {} ["none"] ["none"] yes unknown [] [] {} DSPR - Drosophila Synthetic Population Resource is covered by Thomson Reuters Data Citation Index. Flies can be requested from the RILs and founder lines. 2016-03-30 2020-07-07 +r3d100011828 Fragile Families and Child Wellbeing Study eng [{"additionalName": "FFCWS", "additionalNameLanguage": "eng"}] https://fragilefamilies.princeton.edu/ [] ["ffdata@princeton.edu"] The Fragile Families & Child Wellbeing Study is following a cohort of nearly 5,000 children born in large U.S. cities between 1998 and 2000 (roughly three-quarters of whom were born to unmarried parents). We refer to unmarried parents and their children as “fragile families” to underscore that they are families and that they are at greater risk of breaking up and living in poverty than more traditional families. The core Study was originally designed to primarily address four questions of great interest to researchers and policy makers: (1) What are the conditions and capabilities of unmarried parents, especially fathers?; (2) What is the nature of the relationships between unmarried parents?; (3) How do children born into these families fare?; and (4) How do policies and environmental conditions affect families and children? eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://fragilefamilies.princeton.edu/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Great Recession", "brain development", "child behavior", "child neglect", "family dynamics", "family resources", "fathers' investments", "genetic-environmental interactions", "incarceration", "mDiary", "population research", "prenatal care", "religion", "school", "school performance", "sleep"] [{"institutionName": "Columbia University, Columbia Population Research Center", "institutionAdditionalName": ["CPRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cprc.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cprc@columbia.edu"]}, {"institutionName": "Columbia University, National Center for Children & Families", "institutionAdditionalName": ["NCCF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://policyforchildren.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brooks-gunn@columbia.edu", "http://policyforchildren.org/research-projects/families/fragile-families-and-child-well-being-study/"]}, {"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["ROR:04byxyr05", "RRID:SCR_011429)", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Princeton University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.princeton.edu/", "institutionIdentifier": ["ROR:00hx57361", "RRID:SCR_001059", "RRID:nlx_16293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://fragilefamilies.princeton.edu/mclanahan", "https://fragilefamilies.princeton.edu/people/irv-garfinkel"]}, {"institutionName": "Princeton University, Bendheim-Thoman Center for Research on Child Wellbeing", "institutionAdditionalName": ["CRCW"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://crcw.princeton.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["CRCW@princeton.edu"]}, {"institutionName": "Princeton University, Center for Health and Wellbeing", "institutionAdditionalName": ["CHW"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://chw.princeton.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://chw.princeton.edu/research/additional-research-projects"]}] [{"policyName": "General documentation", "policyURL": "https://fragilefamilies.princeton.edu/documentation"}, {"policyName": "Restricted vs Public Data", "policyURL": "https://fragilefamilies.princeton.edu/restricted"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://fragilefamilies.princeton.edu/documentation"}, {"dataLicenseName": "other", "dataLicenseURL": "https://fragilefamilies.princeton.edu/restricted"}] closed [] ["unknown"] {} ["none"] https://fragilefamilies.princeton.edu/faq#general_9 ["none"] yes yes [] [] {"syndication": "https://fragilefamilies.princeton.edu/feed/news/rss?&&uid=&field_news_author_title=&sort_order=DESC&sort_by=field_news_date_value", "syndicationType": "RSS"} FFCWS is covered by Thomson Reuters Data Citation Index. The Fragile Families and Child Wellbeing Study is the longest running population based birth cohort study in the U.S. We have been collecting data for the past 17 years on nearly 5,000 families. The first five waves of data are publicly available through the Office of Population Research data archive https://opr.princeton.edu/Archive/FF/ . 2016-04-18 2020-07-08 +r3d100011829 Gazel eng [{"additionalName": "The Gazel cohort", "additionalNameLanguage": "eng"}] https://www.gazel.inserm.fr/en/gazel-cohort ["RRID:SCR_008962", "RRID:nlx_151989"] ["gazel@inserm.fr"] GAZEL is an open epidemiologic laboratory. Like major scientific instruments (telescopes or particle accelerators, for example, or genotyping laboratories equipped with sequencers), GAZEL was not constructed to answer a specific question. Instead it was designed to help analyze a wide range of scientific problems and is accessible to the community of researchers specializing in epidemiology. In accordance with its purpose as a scientific research platform, the GAZEL cohort is permanently open to epidemiologic research teams. Today, more than 50 projects on very diversified themes have been set up in GAZEL by some 20 teams, French, belonging to different bodies, and foreign (Germany, Belgium, Canada, Great Britain, Sweden, Finland, and USA). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Lifepath", "ageing", "biosamples", "cancer", "causes of death", "healthcare", "heart disease", "lifestyle", "morbidity", "womens health"] [{"institutionName": "Caisse Centrale d\u2019Activit\u00e9s Sociales du Personnel des Industries Electriques et Gazi\u00e8res", "institutionAdditionalName": ["CCAS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ccas.fr/application_ccasfrv4.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Caisse d\u2019assurance maladie des industries \u00e9lectriques et gazi\u00e8res", "institutionAdditionalName": ["Camieg"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.camieg.fr/mentions-legales/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ENGIE", "institutionAdditionalName": ["formerly: GDF SUEZ"], "institutionCountry": "FRA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.engie.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Electricit\u00e9 de France", "institutionAdditionalName": ["EDF"], "institutionCountry": "FRA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.edf.fr/", "institutionIdentifier": ["ROR:03wb8xz10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut national de la sant\u00e9 et de la recherche m\u00e9dicale", "institutionAdditionalName": ["Inserm", "National Institute of Health and Medical Research"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.inserm.fr/en", "institutionIdentifier": ["ROR:02vjkv261", "RRID:SCR_011404", "RRID:nlx_88851"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "L'Assurance maladie", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ameli.fr/", "institutionIdentifier": ["ROR:03am7sg53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Charte de la Cohorte Gazel", "policyURL": "http://www.gazel.inserm.fr/images/constances/REGLEMENTGAZEL.pdf"}, {"policyName": "Confidentiality", "policyURL": "https://www.gazel.inserm.fr/en/confidentiality"}, {"policyName": "Projects", "policyURL": "https://www.gazel.inserm.fr/index.php/en/projects"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.gazel.inserm.fr/images/constances/REGLEMENTGAZEL.pdf"}] restricted [{"dataUploadLicenseName": "Charte de la Cohorte Gazel", "dataUploadLicenseURL": "http://www.gazel.inserm.fr/images/constances/REGLEMENTGAZEL.pdf"}] ["unknown"] {} ["none"] http://www.gazel.inserm.fr/images/constances/REGLEMENTGAZEL.pdf ["none"] yes yes [] [] {} Gazel is covered by Thomson Reuters Data Citation Index. The GAZEL cohort, set up in 1989 by Inserm Unit 88 (subsequently Unit 687), in cooperation with several departments of électricité de France-Gaz de France (EDF-GDF). EDF-GDF was a public utility firm in France involved in production, transmission and distribution of energy. GAZEL initially included 20 624 volunteers working at EDF-GDF (15 010 men and 5614 women), aged from 35 to 50 years. 2016-04-18 2020-07-09 +r3d100011830 Studie zur Gesundheit von Kindern und Jugendlichen in Deutschland deu [{"additionalName": "German Health Interview and Examination Survey for Children and Adolescents", "additionalNameLanguage": "eng"}, {"additionalName": "KiGGS", "additionalNameLanguage": "deu"}] https://www.kiggs-studie.de/english/home.html [] ["https://www.kiggs-studie.de/english/metamenu/contact.html", "kiggs@rki.de"] KiGGS is a long-term study conducted by the Robert Koch Institute (RKI) on the health of children and adolescents in Germany. The study repeatedly supplies data, representative of the country as a whole, on the health of under 18-year-olds. In addition, the children and adolescents of the first KiGGS study are repeatedly invited, and they continue to be monitored right into their adulthood. eng ["disciplinary"] {"size": "17.641 study participants", "updatedp": "2017-07-26"} 2003 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.kiggs-studie.de/english/survey.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["accidents", "accute and chronic illness", "adiposity", "complaints", "disability", "drug usage", "eating disorders", "health awareness", "health care", "health risks", "leisure activities", "living conditions", "mental health", "nutrition", "physical health", "physical wellbeing", "social and migrant status", "social net", "soical contact"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Federal Ministry for Research and Education"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Bundesministerium f\u00fcr Gesundheit", "institutionAdditionalName": ["BMG", "German Federal Ministry of Health"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bundesgesundheitsministerium.de/en/en.html", "institutionIdentifier": ["ROR:05vp4ka74", "RRID:SCR_005247", "RRID:nlx_158558"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bundesgesundheitsministerium.de/service/kontakt.html"]}, {"institutionName": "Robert Koch-Institut", "institutionAdditionalName": ["RKI"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rki.de/EN/Content/Institute/institute_node.html", "institutionIdentifier": ["ROR:01k5qnb77", "RRID:SCR_011500", "RRID:nlx_157722"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rki.de/EN/Service/Contact/Contact_node.html"]}] [{"policyName": "Guidelines and Recommendations", "policyURL": "https://www.dgepi.de/assets/Leitlinien-und-Empfehlungen/cec55ccaaa/Recommendations-for-good-Epidemiologic-Practice.pdf"}, {"policyName": "Public Use Files pertaining to Robert Koch Institute", "policyURL": "https://www.rki.de/EN/Content/Health_Monitoring/Public_Use_Files/public_use_file_node.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kiggs-studie.de/english/metamenu/imprint.html"}] closed [] ["unknown"] {} ["none"] ["none"] yes yes [] [] {} KiGGS is covered by Thomson Reuters Data Citation Index. See also: https://bmcpublichealth.biomedcentral.com/articles/10.1186/1471-2458-8-196 . Results of the KiGGS baseline study (only in German) : https://www.kiggs-studie.de/english/results/kiggs-baseline-study.html. There are 3 parts: Baseline study, KiGGS wave 1 and KiGGs wave 2. 2016-03-16 2020-10-28 +r3d100011831 GerManC project eng [{"additionalName": "A representative historical corpus of German 1650-1800", "additionalNameLanguage": "eng"}] https://www.alc.manchester.ac.uk/modern-languages/research/german-studies/germanc/ [] ["Anita.Auer@unil.ch", "martin.durrell@manchester.ac.uk"] The aim of the project was to compile a representative computerized corpus of German for the period 1650-1800. This is the first such corpus of early modern German and it is intended as a primary research resource in a number of disciplines. Its structure deliberately parallels that of extant historical corpora of English in order to facilitate systematic comparative studies. The regional dimension which was an essential feature of the projects also provides information about the link between language and changes in the relative cultural and political areas within Germany. eng ["disciplinary"] {"size": "336 German-language texts from the period 1650-1800, comprising approximately 800.000 words", "updatedp": "2016-03-15"} 2006-03-01 2011-08-31 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.alc.manchester.ac.uk/modern-languages/research/german-studies/germanc/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora", "cultural history", "drama", "grammar", "legal history", "legal texts", "narrative prose", "newspapers", "scholarly writing", "semantics", "sermons", "vocabulary"] [{"institutionName": "Arts and Humanities Research Council", "institutionAdditionalName": ["AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": ["ROR:0505m1554"], "responsibilityStartDate": "2008", "responsibilityEndDate": "2012-08-31", "institutionContact": ["https://ahrc.ukri.org/about/contact/"]}, {"institutionName": "Economic and Social Data Service Data Archive", "institutionAdditionalName": ["UK Data Service"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://discover.ukdataservice.ac.uk/catalogue?sn=7021", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ukdataservice.ac.uk/help/get-in-touch"]}, {"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["ROR:03n0ht308"], "responsibilityStartDate": "2006-03-01", "responsibilityEndDate": "2012-08-31", "institutionContact": ["https://esrc.ukri.org/contact-us/"]}, {"institutionName": "University of Manchester, School of Arts, Languages and Cultures", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.alc.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2006-03-01", "responsibilityEndDate": "2011-08-31", "institutionContact": ["martin.durrell@manchester.ac.uk", "ug.languages@manchester.ac.uk"]}, {"institutionName": "University of Oxford Text Archive", "institutionAdditionalName": ["OTA"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ota.bodleian.ox.ac.uk/repository/xmlui/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ota.ahds.ac.uk"]}] [{"policyName": "Copyrights", "policyURL": "https://www.manchester.ac.uk/copyright/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ukdataservice.ac.uk/get-data/how-to-access/conditions"}] closed [] ["other"] {} ["none"] http://doc.ukdataservice.ac.uk/doc/7021/mrdoc/UKDA/UKDA_Study_7021_Information.htm [] yes yes [] [] {} GerManC project is covered by Thomson Reuters Data Citation Index. The corpus can be downloaded from the Economic and Social Data Service Data Archive (https://beta.ukdataservice.ac.uk/datacatalogue/studies/study?id=7021) and the Oxford Text Archive (https://ota.bodleian.ox.ac.uk/repository/xmlui/handle/20.500.12024/2544) The corpus is part of "Historisches Korpus" (https://www1.ids-mannheim.de/lexik/abgeschlosseneprojekte/historischeskorpus/historisches-korpus.html) available via COSMASS II (http://www.ids-mannheim.de/cosmas2/) 2016-03-15 2020-10-28 +r3d100011832 Growing Up Today Study eng [{"additionalName": "GUTS", "additionalNameLanguage": "eng"}] http://nhs2survey.org/gutswordpress/ [] ["guts@channing.harvard.edu"] The Growing Up Today Study is a collaborative study between clinicians, researchers, and thousands of participants across the US and beyond. The aim of this study is to gain a deeper understanding of the factors that affect health throughout life. Together we are working to building one of the most powerful resources for fighting cancer, obesity, heart disease, depression, and so much more. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://nhs2survey.org/gutswordpress/index.php/about/history/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["depression", "diet & nutrition", "disease", "environmental factors", "gender", "genetics", "health", "medical prevention", "physical activity", "sexual orientation"] [{"institutionName": "American Cancer Society", "institutionAdditionalName": ["ACS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.org/", "institutionIdentifier": ["ROR:02e463172"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.org/about-us/online-help/contact-us.html"]}, {"institutionName": "American Heart Association", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.heart.org/", "institutionIdentifier": ["ROR:013kjyp64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Boston Children\u2019s Hospital", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.childrenshospital.org/", "institutionIdentifier": ["ROR:00dvg7y05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.childrenshospital.org/about-us/contact-us"]}, {"institutionName": "Brigham and Women\u2019s Hospital", "institutionAdditionalName": ["BWH"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.brighamandwomens.org/", "institutionIdentifier": ["ROR:04b6nzv94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.brighamandwomens.org/forms/contact-bwh-important-phone-numbers"]}, {"institutionName": "Dana-Farber Cancer Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dana-farber.org/", "institutionIdentifier": ["ROR:02jzgtq86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dana-farber.org/contact-us/"]}, {"institutionName": "Harvard Medical School", "institutionAdditionalName": ["HMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hms.harvard.edu/", "institutionIdentifier": ["ROR:03wevmz92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hms.harvard.edu/contact-us"]}, {"institutionName": "Harvard T.H. Chan School of Public Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hsph.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hsph.harvard.edu/contact-us/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "San Diego State University", "institutionAdditionalName": ["SDSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sdsu.edu/", "institutionIdentifier": ["ROR:0264fdx42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Confidentiality", "policyURL": "http://www.gutsweb.org/survey/includes/conf.htm"}, {"policyName": "Guidelines for use of the Growing Up Today Study: \nExternal Collaborators", "policyURL": "http://www.gutsweb.org/images/PDFs/guts-data-use.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nhs2survey.org/gutswordpress/index.php/researchers/information-for-researchers/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gutsweb.org/survey/includes/conf.htm"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} Growing Up Today Study is covered by Thomson Reuters Data Citation Index. 2016-03-11 2020-10-28 +r3d100011833 Harvard Medical School, Library of Integrated Network-Based Cellular Signatures Database eng [{"additionalName": "HMS, LINCS database", "additionalNameLanguage": "eng"}] https://lincs.hms.harvard.edu/db/ ["RRID:SCR_006454", "RRID:nlx_156062"] ["https://lincs.hms.harvard.edu/about/people/", "lincs-feedback@ hms.harvard.edu."] The Database contains all publicly available HMS LINCS datasets and information for each dataset about experimental reagents (small molecule perturbagens, cells, antibodies, and proteins) and experimental and data analysis protocols. eng ["disciplinary"] {"size": "350 datasets", "updatedp": "2020-10-28"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://commonfund.nih.gov/LINCS/overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["antibodies", "biochemistry", "biology", "cells", "experimental reagents", "molecular signatures", "proteins", "small molecules reagents"] [{"institutionName": "Big Data to Knowledge - Library of Integrated Network-based Cellular Signatures, Data Coordination and Integration Center", "institutionAdditionalName": ["BD2K - LINCS DCIC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://lincs-dcic.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@lincs-dcic.org"]}, {"institutionName": "Harvard Medical School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://hms.harvard.edu/", "institutionIdentifier": ["ROR:03wevmz92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hms.harvard.edu/contact-us"]}, {"institutionName": "National Institutes of Health, Library of Integrated Network-based Cellular Signatures Program", "institutionAdditionalName": ["NIH, LINCS Program"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.lincsproject.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Genomic Data Sharing Policy", "policyURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}, {"policyName": "Terms of use", "policyURL": "https://lincs.hms.harvard.edu/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lincsproject.org/LINCS/data/release-policy"}] closed [] ["unknown"] {"api": "https://docs.google.com/document/d/1R_d_1UWO0C9y1TceXpKIUkhjk08DfvP1D19txi4Tbas/edit?pref=2&pli=1", "apiType": "other"} ["none"] http://www.lincsproject.org/LINCS/data/release-policy ["none"] yes yes [] [{"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}, {"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {"syndication": "https://lincs.hms.harvard.edu/feed/", "syndicationType": "RSS"} LINCS database is covered by Thomson Reuters Data Citation Index. LINCS database datasets are part of LINCS Data Portal datasets: http://lincsportal.ccs.miami.edu/datasets/ 2016-03-10 2020-10-28 +r3d100011834 InCHIANTI eng [{"additionalName": "Invecchiare nel Chianti", "additionalNameLanguage": "ita"}, {"additionalName": "The InCHIANTI Study", "additionalNameLanguage": "eng"}] http://inchiantistudy.net/wp/ [] ["http://inchiantistudy.net/wp/contatti/"] Older persons are often referred to physicians because of complaints of progressive difficulties in walking. The diagnostic and therapeutic approach to these patients is complex. Multiple physiologic subsystems may influence the ability to walk and no standard criteria are currently available to establish whether these subsystems are functioning within the “normal” range. To address lack of knowledge Dr. Luigi Ferrucci and Dr. Stefania Bandinelli conducted InCHIANTI, a representative population-based study of older persons living in the Chianti geographic area (Tuscany, Italy). The data collection started in September 1998 and was completed in March 2000. 3 and 6-year follow-up assessment of the InCHIANTI study population were performed in the years 2001-2003 and 2004-2006. A nine-year follow-up is already planned and funded through an NIA grant. The InCHIANTI Biobank is a collection of biological samples of the study population. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://inchiantistudy.net/wp/lo-studio/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["central nervous system", "cognitive impairment", "epidemiology", "geriatrics", "insulin resistance", "physiology", "subcortical features", "walk"] [{"institutionName": "Italian Health Ministry", "institutionAdditionalName": ["Ministero della Salute"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.salute.gov.it/portale/home.html", "institutionIdentifier": ["ROR:00789fa95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.salute.gov.it/portale/p5_0.jsp?lingua=italiano&id=58"]}, {"institutionName": "National Institute on Research and Care of the Elderly", "institutionAdditionalName": ["INRCA", "Istituto Nazionale di Riposo e Cura per Anziani"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.inrca.it/inrca/home.asp?ling=en", "institutionIdentifier": ["ROR:057aq1y25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.inrca.it/inrca/home.asp?ling=en"]}, {"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nia.nih.gov/about/stay-connected"]}, {"institutionName": "Tuscany Regional Health Agency", "institutionAdditionalName": ["ARS", "L'Agenzia regionale di sanit\u00e0 della Toscana"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ars.toscana.it/it/", "institutionIdentifier": ["ROR:059vkfm47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ars.toscana.it"]}] [{"policyName": "InCHIANTI dataset", "policyURL": "http://inchiantistudy.net/wp/inchianti-dataset/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://inchiantistudy.net/wp/wp-content/uploads/2014/02/modulo_richiesta_dati.pdf"}] restricted [] ["unknown"] {} ["none"] http://inchiantistudy.net/wp/inchianti-dataset/ [] yes yes [] [] {"syndication": "http://inchiantistudy.net/wp/feed/", "syndicationType": "RSS"} InChianti is covered by Thomson Reuters Data Citation Index. InChanti includes 3 projects: Farseeing, FRAILOMIC, MooDFOOD Partnerships: http://inchiantistudy.net/wp/chi-siamo/ 2016-01-29 2020-11-16 +r3d100011835 International HapMap Project eng [{"additionalName": "Asep\u1ecd HapMap ti Gbogbo Agbaye", "additionalNameLanguage": "yor"}, {"additionalName": "Le projet international HapMap", "additionalNameLanguage": "fra"}, {"additionalName": "\u56fd\u9645\u4eba\u7c7b\u57fa\u56e0\u7ec4\u5355\u4f53\u578b\u56fe\u8ba1\u5212", "additionalNameLanguage": "zho"}, {"additionalName": "\u56fd\u969b HapMap \u8a08\u753b", "additionalNameLanguage": "jpn"}] https://www.ncbi.nlm.nih.gov/variation/news/NCBI_retiring_HapMap/ ["OMICS_00273", "RRID:SCR_002846", "RRID:nif-0000-02940"] ["hapmap-help@ncbi.nlm.nih.gov"] !! OFFLINE !! A recent computer security audit has revealed security flaws in the legacy HapMap site that require NCBI to take it down immediately. We regret the inconvenience, but we are required to do this. That said, NCBI was planning to decommission this site in the near future anyway (although not quite so suddenly), as the 1,000 genomes (1KG) project has established itself as a research standard for population genetics and genomics. NCBI has observed a decline in usage of the HapMap dataset and website with its available resources over the past five years and it has come to the end of its useful life. The International HapMap Project is a multi-country effort to identify and catalog genetic similarities and differences in human beings. Using the information in the HapMap, researchers will be able to find genes that affect health, disease, and individual responses to medications and environmental factors. The Project is a collaboration among scientists and funding agencies from Japan, the United Kingdom, Canada, China, Nigeria, and the United States. All of the information generated by the Project will be released into the public domain. The goal of the International HapMap Project is to compare the genetic sequences of different individuals to identify chromosomal regions where genetic variants are shared. By making this information freely available, the Project will help biomedical researchers find genes involved in disease and responses to therapeutic drugs. In the initial phase of the Project, genetic data are being gathered from four populations with African, Asian, and European ancestry. Ongoing interactions with members of these populations are addressing potential ethical issues and providing valuable experience in conducting research with identified populations. Public and private organizations in six countries are participating in the International HapMap Project. Data generated by the Project can be downloaded with minimal constraints. The Project officially started with a meeting in October 2002 (https://www.genome.gov/10005336/) and is expected to take about three years. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 2016-06-16 ["eng", "fra", "jpn", "yor", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://hapmap.ncbi.nlm.nih.gov/thehapmap.html.en [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "SNPs, Single nucleotide polymorphisms", "biology", "diseases", "genetic variants", "genetics", "haplotypes", "human genome", "medicine", "patterns of polymorphism"] [{"institutionName": "Groups Participating in the International HapMap Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/variation/news/NCBI_retiring_HapMap/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/page.cfm?pageID=10001688", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/page.cfm?pageID=10001688#al-7", "spencerg@mail.nih.gov"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NHGRI Rapid Data Release Policies", "policyURL": "https://www.genome.gov/10506537/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/variation/news/NCBI_retiring_HapMap/"}] closed [] ["unknown"] yes {} ["none"] ["none"] yes yes [] [] {} International HapMap Project is covered by Thomson Reuters Data Citation Index. 2016-01-11 2017-08-03 +r3d100011836 Johns Hopkins Data Archive Dataverse Network eng [{"additionalName": "JHU Data Archive", "additionalNameLanguage": "eng"}] https://archive.data.jhu.edu/ [] ["dataservices@jhu.edu"] The Johns Hopkins Data Archive contains data collections produced by the Johns Hopkins community of researchers for public access and use. Each dataset has a citation and DOI, facilitating attribution and connection to research publications. If you are conducting research at Johns Hopkins and are interested in archiving your data with the JHU Data Archive, please contact us to discuss your research and data access needs. Currently, the JHU Data Archive operates on the Dataverse repository software platform. More information about the benefits of archiving data and the JHU Data Archive can be found here: https://dataservices.library.jhu.edu/ eng ["institutional"] {"size": "41 dataverses; 104 datasets; 2.703 files", "updatedp": "2020-11-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dataservices.library.jhu.edu/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidsciplinary"] [{"institutionName": "Johns Hopkins Sheridan Libraries and University Museums", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.jhu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.library.jhu.edu/support/"]}, {"institutionName": "Johns Hopkins University", "institutionAdditionalName": ["JHUDMS", "Johns Hopkins University Data Management Services"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataservices.library.jhu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataservices@jhu.edu"]}] [{"policyName": "Digital Asset Use, Rights, and Permissions Policy", "policyURL": "https://www.library.jhu.edu/policies/rights-and-reproductions/"}, {"policyName": "Digital Collections Statement of Use", "policyURL": "https://www.library.jhu.edu/policies/digital-collections-statement-use-takedown-policy/"}, {"policyName": "JHU Libraries policies", "policyURL": "https://www.library.jhu.edu/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.library.jhu.edu/policies/digital-collections-statement-use-takedown-policy/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["none"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Johns Hopkins University Data Archive is covered by Thomson Reuters Data Citation Index. 2016-03-22 2020-11-16 +r3d100011838 Malaria Atlas Project eng [{"additionalName": "MAP", "additionalNameLanguage": "eng"}] https://malariaatlas.org/ [] ["malariaatlas@telethonkids.org.au"] The Malaria Atlas Project (MAP) brings together researchers based around the world with expertise in a wide range of disciplines from public health to mathematics, geography and epidemiology. We work together to generate new and innovative methods of mapping malaria risk. Ultimately our goal is to produce a comprehensive range of maps and estimates that will support effective planning of malaria control at national and international scales. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://malariaatlas.org/introducing-map/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Ebola", "Plasmodium falciparum", "endemicity", "epidemiology", "malaria", "maps", "mosquito bionomics"] [{"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/de", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/de/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "Curtin University, Telethon Kids Institute", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.telethonkids.org.au/", "institutionIdentifier": ["ROR:01dbmzx78"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford, Department of Zoology", "institutionAdditionalName": ["WHO Collaborating Centre in Geospatial Disease Modelling"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.zoo.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2019", "institutionContact": ["https://www.lksf.org/tag/university-of-oxford/", "https://www.zoo.ox.ac.uk/contact-us"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "MAP Open AccessPolicy", "policyURL": "https://malariaatlas.org/open-access-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["unknown"] {"api": "https://malariaatlas.org/api-docs/", "apiType": "other"} ["none"] https://malariaatlas.org/open-access-policy/ ["none"] yes yes [] [] {} The University of Oxford has received designation as a World Health Organization (WHO) Collaborating Centre in Geospatial Disease Modelling. Based in the Spatial Ecology and Epidemiology Group (SEEG) in the Department of Zoology, University of Oxford, this new designation primarily recognises the contributions of SEEG to supporting the modelling, monitoring and evaluation activities of the WHO Global Malaria Programme. --- MAP is covered by Thomson Reuters Data Citation Index. 2016-04-20 2021-05-20 +r3d100011839 European MassBank eng [{"additionalName": "High Resolution Mass Spectral Database", "additionalNameLanguage": "eng"}, {"additionalName": "MassBank", "additionalNameLanguage": "eng"}, {"additionalName": "NORMAN MassBank", "additionalNameLanguage": "eng"}] https://massbank.eu/MassBank/ ["MIR:00000273"] ["https://www.ufz.de/index.php?en=36683", "https://www.ufz.de/index.php?en=40500", "massbank@massbank.eu", "tobias.schulze@ufz.de"] Database of mass spectra of known, unknown and provisionally identified substances. MassBank is the first public repository of mass spectral data for sharing them among scientific research community. MassBank data are useful for the chemical identification and structure elucidation of chemical compounds detected by mass spectrometry. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.norman-network.net/?q=NORMAN%20Network [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Metabolomics", "bioinformatics", "cellular process", "chemical compounds", "envirommental contaminants", "mass", "mass spectra", "natural compounds", "spectral", "spectroscopy", "transformation products"] [{"institutionName": "Helmholtz-Zentrum f\u00fcr Umweltforschung GmbH - UFZ", "institutionAdditionalName": ["Helmholtz Centre for Environmental Research - UFZ", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/index.php?en=33573", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ufz.de/index.php?en=40500", "tobias.schulze@ufz.de"]}, {"institutionName": "NORMAN Association", "institutionAdditionalName": ["Network of reference laboratories, research centres and related organisations for monitoring of emerging environmental substances"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.norman-network.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.norman-network.net/?q=Contact"]}] [{"policyName": "MassBank User\u2019s Manual", "policyURL": "http://massbank.jp/manuals/MassBankUserManual_en.pdf"}, {"policyName": "NORMAN Position Paper", "policyURL": "https://www.norman-network.net/sites/default/files/files/Highlights/NORMAN%20Position%20Paper%20Data%20Collection%20Exchange%20and%20Interpretation_FINAL.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://massbank.eu/MassBank/Index"}] restricted [] ["other"] yes {"api": "https://massbank.eu/MassBank/Index", "apiType": "REST"} ["none"] ["none"] unknown yes [] [] {} In pursuit of its long-term goal of improving the identification of environmental unknowns and, consequently, the prioritisation of emerging substances, NORMAN started close co-operation with the global ‘metabolomics’ MassBank consortium (http://www.massbank.jp) in August 2012.With a strict focus on environmental data the NORMAN MassBank is available at the mirror server https://massbank.eu//MassBank/ --- History: https://www.norman-network.net/sites/default/files/files/Events/2014/1_ARITA_09NormanMassBank.pdf . MassBank on github: https://github.com/MassBank ---MassBank is covered by Thomson Reuters Data Citation Index. 2016-04-28 2020-08-24 +r3d100011840 Mexican Health and Aging Study eng [{"additionalName": "ENASEM", "additionalNameLanguage": "spa"}, {"additionalName": "Estudio Nacional de Salud y Envejecimiento en M\u00e9xico", "additionalNameLanguage": "spa"}, {"additionalName": "MHAS", "additionalNameLanguage": "eng"}] http://www.mhasweb.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.n8qft8", "RRID:SCR_000818", "RRID:nlx_151859"] ["http://www.mhasweb.org/ContactUs.aspx", "info@MHASWeb.org"] The Mexican Health and Aging Study (MHAS) started as a prospective panel study of health and aging in Mexico. MHAS is nationally representative of the 13 million Mexicans born prior to 1951. The survey has national and urban/rural representation. The baseline survey, in 2001, included a nationally representative sample of Mexicans aged 50 and over and their spouse/partners regardless of their age. A direct interview was sought with each individual and proxy interviews were obtained when poor health or temporary absence precluded a direct interview. The sample was distributed in all 32 states of the country in urban and rural areas. Households in the six states which account for 40% of all migrants to the U.S. were over-sampled. A sub-sample was selected to obtain anthropometric measures. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mhasweb.org/StudyDescription.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aging process", "cohort study", "disability burden", "disease", "economic history", "family transfer systems", "gereontology", "health", "life circumstances", "migration", "migration"] [{"institutionName": "Instituto Nacional de Estad\u00edstica, Geograf\u00eda e Inform\u00e1tica", "institutionAdditionalName": ["INEGI"], "institutionCountry": "MEX", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.inegi.org.mx/", "institutionIdentifier": ["ROR:03647wj34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.inegi.org.mx/inegi/contacto.html"]}, {"institutionName": "Instituto Nacional de Geriatr\u00eda", "institutionAdditionalName": ["INGER", "National Institute of Geriatrics Mexico"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://inger.gob.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contacto.geriatria@salud.gob.mx"]}, {"institutionName": "Instituto Nacional de Salud P\u00fablica", "institutionAdditionalName": ["INSP"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.insp.mx/", "institutionIdentifier": ["ROR:032y0n460"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.insp.mx/contacto.html"]}, {"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIH, NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nia.nih.gov/contact"]}, {"institutionName": "Universitiy of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["polsky@mail.med.upenn.edu"]}, {"institutionName": "University of Maryland", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umd.edu/", "institutionIdentifier": ["ROR:047s2c258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.umd.edu/contact-us"]}, {"institutionName": "University of Wisconsin, Center for Demography of Health and Aging", "institutionAdditionalName": ["CDHA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cdha.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cdhadata@ssc.wisc.edu"]}, {"institutionName": "University of Texas Medical Branch", "institutionAdditionalName": ["UTMB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utmb.edu/", "institutionIdentifier": ["ROR:016tfm930"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utmb.edu/scoa/wong.asp"]}] [{"policyName": "User Agreement", "policyURL": "http://www.mhasweb.org/DocumentationQuestionnaire.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.mhasweb.org/Data.aspx"}] closed [] ["unknown"] {} ["none"] http://www.mhasweb.org/DocumentationQuestionnaire.aspx ["none"] unknown yes [] [] {} The individual-Level files of the study are: 2001, 2003, 2012, 2015. ---- Is covered by Thomson Reuters Master Data Repository list 2016-04-28 2021-09-08 +r3d100011841 MRC National Survey of Health and Development eng [{"additionalName": "NSHD", "additionalNameLanguage": "eng"}, {"additionalName": "National Survey of Health and Development", "additionalNameLanguage": "eng"}] http://www.nshd.mrc.ac.uk/ [] ["mrclha.enquiries@ucl.ac.uk"] The MRC National Survey of Health and Development 1946 (NSHD) was the first ever British birth cohort study. It has collected information from birth to the current day on the health and life circumstances of five and a half thousand men and women born during a week in March 1946 throughout England, Wales, and Scotland. The study explores differences in child development by factors like social class, biological factors, health and education. Due to the length of the study it has developed into a study of ageing. eng ["disciplinary"] {"size": "5.362 individuals with over 20.000 variables", "updatedp": "2016-04-26"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.nshd.mrc.ac.uk/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["England", "Scotland", "Wales", "ageing", "biological process", "birth cohort study", "cognitive function", "health care", "lifecourse data", "longterm biological prozess", "longterm social process", "physical function", "psychological process", "socioeconomics"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["d.kuh@nshd.mrc.ac.uk"]}, {"institutionName": "UK Research Council, HALCyon", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nshd.mrc.ac.uk/archive/halcyon/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2013", "institutionContact": []}, {"institutionName": "University College London, Medical Research Council, Lifelong Health and Ageing", "institutionAdditionalName": ["LHA", "UCL, MRC Unit for Lifelong Health and Ageing"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nshd.mrc.ac.uk/", "institutionIdentifier": ["ROR:03kpvby98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidance for accessing NSHD data and data proposal form", "policyURL": "http://www.nshd.mrc.ac.uk/data/"}, {"policyName": "Policies and guidance for researchers", "policyURL": "https://www.mrc.ac.uk/research/policies-and-guidance-for-researchers/"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nshd.mrc.ac.uk/data/"}] closed [] ["unknown"] {} ["DOI"] http://www.nshd.mrc.ac.uk/data/nshd-digital-object-identifiers/ [] unknown yes [] [] {} SWIFT-NSHD (The Secure Web Interface for the NSHD) is a variable retrieval tool which allows registered users to create their own bespoke NSHD datasets. --- Is covered by Thomson Reuters Master Data Repository list 2016-04-29 2021-09-21 +r3d100011843 OsteoArthritis Initiative eng [{"additionalName": "OAI", "additionalNameLanguage": "eng"}] https://nda.nih.gov/oai [] ["ndahelp@mail.nih.gov"] The Osteoarthritis Initiative (OAI) is a multi-center, longitudinal, prospective observational study of knee osteoarthritis (OA). The overall aim of the OAI is to develop a public domain research resource to facilitate the scientific evaluation of biomarkers for osteoarthritis as potential surrogate endpoints for disease onset and progression. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "20518 Rheumatology, Clinical Immunology, Allergology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://nda.nih.gov/oai/about-oai [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biomarkers", "biosamples", "biospecimens", "cohort study", "radiographs"] [{"institutionName": "NIMH Data Archive, Osteo-Arthritis Initiative", "institutionAdditionalName": ["OAI"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nda.nih.gov/oai", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Arthritis and Musculoskeletal and Skin Diseases", "institutionAdditionalName": ["NIAMS", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niams.nih.gov/", "institutionIdentifier": ["ROR:006zn3t30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niams.nih.gov/Funding/Funded_Research/Osteoarthritis_Initiative/"]}, {"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIA", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, San Francisco Coordinating Center", "institutionAdditionalName": ["UCSF CC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sfcc.ucsf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sfcc.ucsf.edu/michael-c-nevitt-phd-mph"]}] [{"policyName": "Access Portals", "policyURL": "https://nda.nih.gov/oai/query-download"}, {"policyName": "Getting Access to Shared Data", "policyURL": "https://nda.nih.gov/get/access-data.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://nda.nih.gov/get/access-data.html"}] closed [] ["unknown"] {} ["none"] ["none"] yes yes [] [] {} OAI is covered by Thomson Reuters Data Citation Index. 2016-04-25 2021-08-24 +r3d100011844 Pacific Islands Families Study eng [{"additionalName": "PIF Study", "additionalNameLanguage": "eng"}] https://niphmhr.aut.ac.nz/research-centres/centre-for-pacific-health-and-development-research/pacific-islands-families-study [] ["https://biodesign.aut.ac.nz/contact-us"] The Pacific Islands Families (PIF) Study is an ongoing longitudinal birth cohort study that has been tracking the health and development of 1,398 Pacific children and their parents since the children were born at Middlemore Hospital in South Auckland in the year 2000. It is the only prospective study specifically of Pacific peoples in the world. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://phrc.aut.ac.nz/our-research/pacific-islands-families-study#442922-collapse1 [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Cook Islands M\u0101ori", "Fijians", "Niueans", "Pacific ethnicity", "Pasifika", "S\u0101moans", "Tokelauans", "Tongans", "Tuvaluans", "air pollution", "biostatistics", "deafness", "hearing problems", "nutrition", "oral health"] [{"institutionName": "Auckland University of Technology", "institutionAdditionalName": ["AUT"], "institutionCountry": "NZL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.aut.ac.nz/", "institutionIdentifier": ["ROR:01zvqw119"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Auckland University of Technology, National Institute for Public Health and Mental Health Research, Centre for Pacific Health and Development Research", "institutionAdditionalName": ["AUT Pacific Health Research Centre", "NIPHMHR"], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://phrc.aut.ac.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dtautolo@aut.ac.nz"]}, {"institutionName": "Health Research Council of New Zealand", "institutionAdditionalName": ["HRC"], "institutionCountry": "NZL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hrc.govt.nz/", "institutionIdentifier": ["ROR:00zbf3d93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.aut.ac.nz/copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.aut.ac.nz/copyright"}] closed [] ["unknown"] {} ["none"] [] yes unknown [] [] {} PIF Study is covered by Thomson Reuters Data Citation Index. The data from the study is coded and held anonymously in secure storage under the responsibility of the Co-Directors in accordance with the requirements of the New Zealand Privacy Act (1993) and the Health Information Privacy Code (1994). All interviews are confidential and only PIF Study staff authorised by the Co-Directors have access to computerised data. 2016-04-25 2020-12-09 +r3d100011845 Project Achilles eng [] https://depmap.org/portal/achilles/ ["OMICS_19003"] ["achilles@broadinstitute.org"] Project Achilles is a systematic effort aimed at identifying and cataloging genetic vulnerabilities across hundreds of genomically characterized cancer cell lines. The project uses genome-wide genetic perturbation reagents (shRNAs or Cas9/sgRNAs) to silence or knock-out individual genes and identify those genes that affect cell survival. Large-scale functional screening of cancer cell lines provides a complementary approach to those studies that aim to characterize the molecular alterations (e.g. mutations, copy number alterations) of primary tumors, such as The Cancer Genome Atlas (TCGA). The overall goal of the project is to identify cancer genetic dependencies and link them to molecular characteristics in order to prioritize targets for therapeutic development and identify the patient population that might benefit from such targets. Project Achilles data is hosted on the Cancer Dependency Map Portal (DepMap) where it has been harmonized with our genomics and cellular models data. You can access the latest and all past datasets here: https://depmap.org/portal/download/all/ eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://depmap.org/portal/achilles/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PARIS", "biomarkers", "cancer", "genes", "heatmaps", "shRNA", "tumor vulnerabilities"] [{"institutionName": "Broad Institute", "institutionAdditionalName": ["Broad Institute of MIT and Harvard"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": ["ROR:05a0ya142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["trc_info@broadinstitute.org"]}, {"institutionName": "University of North Carolina at Chapel Hill, Hahn Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://hahnlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://hahnlab.com/contact.html"]}] [{"policyName": "Data sharing", "policyURL": "https://doi.org/10.1038/518477a"}, {"policyName": "Development of open source tools and resources", "policyURL": "https://www.broadinstitute.org/data-sciences"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.broadinstitute.org/data-sciences"}] restricted [] ["unknown"] yes {} ["none"] ["none"] yes yes [] [] {} Project Achilles is covered by Thomson Reuters Data Citation Index. Project Achilles is collaboration between the Hahn lab, Broad's RNAi platform and Broad's Cancer Program. 2016-04-26 2020-12-09 +r3d100011846 Reality Commons eng [] http://realitycommons.media.mit.edu/ [] ["http://realitycommons.media.mit.edu/contactus.html", "wdong@media.mit.edu"] Cell phones have become an important platform for the understanding of social dynamics and influence, because of their pervasiveness, sensing capabilities, and computational power. Many applications have emerged in recent years in mobile health, mobile banking, location based services, media democracy, and social movements. With these new capabilities, we can potentially be able to identify exact points and times of infection for diseases, determine who most influences us to gain weight or become healthier, know exactly how information flows among employees and productivity emerges in our work spaces, and understand how rumors spread. In an attempt to address these challenges, we release several mobile data sets here in "Reality Commons" that contain the dynamics of several communities of about 100 people each. We invite researchers to propose and submit their own applications of the data to demonstrate the scientific and business values of these data sets, suggest how to meaningfully extend these experiments to larger populations, and develop the math that fits agent-based models or systems dynamics models to larger populations. These data sets were collected with tools developed in the MIT Human Dynamics Lab and are now available as open source projects or at cost. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40802 Communication, High-Frequency and Network Technology, Theoretical Electrical Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MATLAB", "bluetooth", "employees", "family", "friends", "mobile phones", "people analytics", "phone log", "reality mining", "social evolution", "social networks", "social physics", "students", "survey"] [{"institutionName": "MIT Human Dynamics Laboratory", "institutionAdditionalName": ["Massachusetts Institute of Technology, Human Dynamics Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.media.mit.edu/groups/human-dynamics/overview/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MIT Media Lab", "institutionAdditionalName": ["Massachusetts Institute of Technology, Media Lab"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.media.mit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Massachusetts Institute of Technology", "institutionAdditionalName": ["MIT"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://web.mit.edu/", "institutionIdentifier": ["ROR:042nb2s44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dynamics and Performance of an IT Call Center", "policyURL": "http://realitycommons.media.mit.edu/CallCenterDynamics.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://realitycommons.media.mit.edu/index.html"}] restricted [] ["unknown"] no {} ["none"] http://realitycommons.media.mit.edu/download.php?file=RealityMiningReadMe.pdf ["none"] yes unknown [] [] {} Reality Commons is covered by Thomson Reuters Data Citation Index. 2016-05-04 2021-07-02 +r3d100011847 REasons for Geographic and Racial Differences in Stroke Study eng [{"additionalName": "REGARDS", "additionalNameLanguage": "eng"}] https://www.uab.edu/soph/regardsstudy/ ["RRID:SCR_007228", "RRID:nif-0000-01878"] ["https://www.uab.edu/soph/regardsstudy/participants", "regards@uab.edu"] REGARDS is an observational study of risk factors for stroke in adults 45 years or older. 30,239 participants were recruited between January 2003 and October 2007. They completed a telephone interview followed by an in-home physical exam. Measurements included traditional risk factors such as blood pressure and cholesterol levels, and an echocardiogram of the heart. At six month intervals, participants are contacted by phone to ask about stroke symptoms, hospitalizations and general health status. The study is ongoing and will follow participants for many years. eng ["disciplinary"] {"size": "30.239 participants", "updatedp": "2016-04-19"} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.uab.edu/soph/regardsstudy/about [{"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["brain", "etiology", "geographic differences", "racial differences", "risk factors", "stroke"] [{"institutionName": "Examination Management Services, Inc", "institutionAdditionalName": ["EMSI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.emsinet.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Neurological Disorders and Stroke", "institutionAdditionalName": ["NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": ["\"ROR\""], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ninds.nih.gov/Contact-Us"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Alabama Institutional Review Board for Human Use", "institutionAdditionalName": ["UAB IRB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uab.edu/research/home/irb", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uab.edu/research/home/about/contact-us"]}, {"institutionName": "University of Alabama School of Public Health", "institutionAdditionalName": ["UAB School of Public Health"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uab.edu/soph/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Regards@uab.edu", "pajohn@uab.edu"]}, {"institutionName": "University of Arkansas for Medical Sciences", "institutionAdditionalName": ["UAMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uams.edu/", "institutionIdentifier": ["ROR:00xcryt71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Vermont", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uvm.edu/", "institutionIdentifier": ["ROR:0155zta11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["elaine.cornell@uvm.edu"]}, {"institutionName": "Wake Forest University, School of Medicine", "institutionAdditionalName": ["Wake Forest School of Medicine"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://school.wakehealth.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Coded Private Information or Specimens Use in Research, Guidance", "policyURL": "https://www.hhs.gov/ohrp/regulations-and-policy/guidance/research-involving-coded-private-information/index.html"}, {"policyName": "Digital Mass Communications and Content Policy", "policyURL": "https://www.uab.edu/policies/content/Pages/UAB-IT-POL-0000404.html"}, {"policyName": "NIH Data Sharing Policy", "policyURL": "https://grants.nih.gov/grants/policy/data_sharing/"}, {"policyName": "PUBLICATIONS and PRESENTATIONS (P&P) Policies and Procedures", "policyURL": "https://www.uab.edu/soph/regardsstudy/images/documents/REGARDS_Combined_Publications__Presentations_Policies_and_Procedures_Version_41_April_2010_without_appendices_email_update.pdf"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.uab.edu/soph/regardsstudy/images/documents/REGARDS_Combined_Publications__Presentations_Policies_and_Procedures_Version_41_April_2010_without_appendices_email_update.pdf"}] closed [] ["unknown"] {} [] [] yes yes [] [] {} Partners: https://www.uab.edu/soph/regardsstudy/about. __ REGARDS iss covered by Thomson Reuters Data Citation Index. 2016-04-18 2020-12-09 +r3d100011848 Romani Morpho-Syntax Database eng [{"additionalName": "RMS", "additionalNameLanguage": "eng"}] https://romani.humanities.manchester.ac.uk//rms/ [] ["romani@manchester.ac.uk", "yaron.matras@manchester.ac.uk"] The Manchester Romani Project is part of an international network of scholarly projects devoted to research on Romani language and linguistics, coordinated in partnership with Dieter Halwachs (Institute of Linguistics, Graz University and Romani-Projekt Graz), and Peter Bakker (Institute of Linguistics, Aarhus University). The project explores the linguistic features of the dialects of the Romani language, and their distribution in geographical space. An interactive web application is being designed, which will allow users to search and locate on a map different dialectal variants, and to explore how variants cluster in particular regions. Examples sentences and words with sound files will also be made available, to give impressions of dialectal variation within Romani. From the distribution of linguistic forms among the dialects it will be possible to make infeences about social-historical contacts among the Romani communities, and about migration patterns. eng ["disciplinary"] {"size": "The database contains altogether over 5.500 fields with information on forms, or analytical questions of this kind, covering all areas of structure, with the exception of phonetics", "updatedp": "2016-04-18"} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10402 Individual Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://romani.humanities.manchester.ac.uk/atmanchester/projects/rmsdatabase.shtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Romani dialects", "corpora", "ethnology", "grammar", "history", "linguistics"] [{"institutionName": "Open Society Institute", "institutionAdditionalName": ["Open Society Foundations"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.opensocietyfoundations.org/", "institutionIdentifier": ["ROR:00qnfvz68"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.opensocietyfoundations.org/contact"]}, {"institutionName": "UK Research and Innovation, Economic and Social Research Council", "institutionAdditionalName": ["UKRI, ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["ROR:03n0ht308"], "responsibilityStartDate": "2005-05-31", "responsibilityEndDate": "2008-05-31", "institutionContact": ["https://esrc.ukri.org/contact-us/"]}, {"institutionName": "UK Research and Innovation,, Arts and Humanities Research Council", "institutionAdditionalName": ["AHRB", "Arts and Humanities Research Board", "UKRI, AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": ["ROR:0505m1554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ahrc.ukri.org/about/contact/"]}, {"institutionName": "University of Manchester, School of Arts, Languages and Cultures", "institutionAdditionalName": ["ALC", "School of Arts, Languages and Cultures"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.alc.manchester.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.manchester.ac.uk/connect/contact-us/", "romani@manchester.ac.uk"]}, {"institutionName": "[romani] Project", "institutionAdditionalName": ["University of Manchester, Romani Linguistics and Romani Language Projects"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://romani.humanities.manchester.ac.uk//", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["romani@manchester.ac.uk"]}] [{"policyName": "RMS Help", "policyURL": "https://romani.humanities.manchester.ac.uk//rms/help"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.manchester.ac.uk/copyright/"}] restricted [] ["other"] yes {} ["none"] https://romani.humanities.manchester.ac.uk//downloads/2/RMS_screenshot03.jpg [] yes yes [] [] {} The RMS project is part of a network of international scholarly research projects in Romani linguistics, which include Romlex, the ROMANI-Projekt Graz, and Rombase. --- RMS is covered by Thomson Reuters Data Citation Index. 2016-04-15 2020-12-09 +r3d100011849 Stemformatics eng [] https://www.stemformatics.org/# ["OMICS_19883"] ["c.wells@uq.edu.au", "https://www.stemformatics.org/contents/contact_us", "info@stemformatics.org"] Stemformatics is a collaboration between the stem cell and bioinformatics community. We were motivated by the plethora of exciting cell models in the public and private domains, and the realisation that for many biologists these were mostly inaccessible. We wanted a fast way to find and visualise interesting genes in these exemplar stem cell datasets. We'd like you to explore. You'll find data from leading stem cell laboratories in a format that is easy to search, easy to visualise and easy to export. eng ["disciplinary"] {"size": "349 public studies with 7.131 human and 1.873 mouse samples", "updatedp": "2017-08-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.stemformatics.org/contents/about_us# [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Kegg pathways", "bioinformatics", "cell gene expressions", "human stem cell", "mouse stem cell"] [{"institutionName": "Queensland Facility for Advanced Bioinformatics", "institutionAdditionalName": ["QFAB"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://qfab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://qfab.org/contact"]}, {"institutionName": "Stem Cells Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://stemcellsaustralia.edu.au/", "institutionIdentifier": ["ROR:03antpb48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stemcore", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.stemcore.com.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.stemcore.com.au/contact/"]}, {"institutionName": "University of Queensland, Australian Institute for Bioengineering and Nanotechnology", "institutionAdditionalName": ["AIBN"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://aibn.uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["c.wells@uq.edu.au", "https://contacts.uq.edu.au/contacts/"]}, {"institutionName": "Walter and Eliza Hall Institute", "institutionAdditionalName": ["Institute of Medical Research", "WEHI"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wehi.edu.au/", "institutionIdentifier": ["ROR:01b6kha49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wehi.edu.au/about/contact-us"]}, {"institutionName": "qcif", "institutionAdditionalName": ["Queensland Cyber Infrastructure Foundation"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.qcif.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.qcif.edu.au/contact-us/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.stemformatics.org/#"}] restricted [{"dataUploadLicenseName": "Confirmation of hosting a private dataset", "dataUploadLicenseURL": "https://www.stemformatics.org/Stemformatics_data_methods.pdf"}] ["unknown"] yes {} [] https://www.stemformatics.org/contents/about_us#citation [] yes yes [] [] {} Partners: https://www.stemformatics.org/contents/about_us#partners . --- Stemformatics covered by Thomson Reuters Data Citation Index. 2016-04-13 2020-12-09 +r3d100011850 Swiss HIV Cohort Study & Swiss Mother and Child HIV Cohort Study eng [{"additionalName": "SHCS & MoCHIV", "additionalNameLanguage": "eng"}] http://www.shcs.ch/ [] ["christoph.rudin@unibas.ch", "http://www.shcs.ch/contact", "submission@shcsmail.ch"] The Swiss HIV Cohort Study (SHCS), established in 1988, is a systematic longitudinal study enrolling HIV-infected individuals in Switzerland. It is a collaboration of all Swiss University Hospital infectious disease outpatient clinics, two large cantonal hospitals, all with affiliated laboratories, and with affiliated smaller hospitals and private physicians carrying for HIV patients. The Swiss Mother and Child HIV Cohort Study (MoCHiV) is integrated into the SHCS. It aims at preventing mother to child transmission and enrolls HIV-infected pregnant women and their children. The SHCS involves practically all researchers being active in patient-oriented HIV research in Switzerland. The clinics can delegate recruitment of participants and follow-up visits to other outpatient clinics or to specialized private physicians, provided that the requirements of the protocol can be entirely fulfilled and controlled. The laboratories can contract other laboratories for some of the analyses. eng ["disciplinary"] {"size": "", "updatedp": ""} 1988 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20521 Gynaecology and Obstetrics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.shcs.ch/157-about-shcs [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["HIV research", "Switzerland", "biosamples", "child", "cohort study", "diagnostics", "epidemiology", "genetics", "mother", "prevention", "public health aspects", "public health surveillance", "social sciences", "treatment"] [{"institutionName": "Centre hospitalier universitaire vaudois", "institutionAdditionalName": ["CHUV", "University Hospital of Lausanne"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.chuv.ch/fr/chuv-home", "institutionIdentifier": ["ROR:05a353079"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.chuv.ch/fr/chuv-home/formulaire-de-contact"]}, {"institutionName": "Federal Office of Public Health", "institutionAdditionalName": ["Bundesamt f\u00fcr Gesundheit", "FOPH"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bag.admin.ch/bag/en/home.html", "institutionIdentifier": ["ROR:01qtc5416"], "responsibilityStartDate": "1988", "responsibilityEndDate": "2000", "institutionContact": ["https://www.bag.admin.ch/bag/en/home/das-bag/kontakt-standort.html"]}, {"institutionName": "Swiss National Science Foundation", "institutionAdditionalName": ["FNS", "Fonds National Suisse de la Recherche Scientifique", "SNF", "Schweizerischer Nationalfonds zur F\u00f6rderung der wissenschaftlichen Forschung"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.snf.ch/de/Seiten/default.aspx", "institutionIdentifier": ["ROR:00yjd3n13"], "responsibilityStartDate": "2000", "responsibilityEndDate": "", "institutionContact": ["http://www.snf.ch/en/theSNSF/contact/Pages/default.aspx"]}, {"institutionName": "University Hospital Zurich", "institutionAdditionalName": ["USZ", "Universit\u00e4tsSpital Z\u00fcrich"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.en.usz.ch/Pages/default.aspx", "institutionIdentifier": ["ROR:01462r250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.infektiologie.usz.ch/ueber-die-klinik/seiten/kontakt.aspx"]}] [{"policyName": "Authorship in the SHCS and in multi-cohort collaborations", "policyURL": "http://www.shcs.ch/userfiles/file/Authorship_SHCS_RW_May2008.pdf"}, {"policyName": "Guidelines and operational rules for nested research projects", "policyURL": "http://www.shcs.ch/130-guidelines-and-operational-rules-for-nested-research-projects"}, {"policyName": "Handbuch", "policyURL": "http://www.shcs.ch/userfiles/file/Handbuch_Januar2015.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.shcs.ch/161-use-of-the-data"}] closed [] ["unknown"] no {} ["none"] http://www.shcs.ch/138-publications ["none"] yes yes [] [] {} SHCS Is covered by Thomson Reuters Data Citation Index. SHCS uses web of science metrics. -- Health care providers: http://www.shcs.ch/180-health-care-providers . 2016-04-12 2020-12-10 +r3d100011851 TwinsUK eng [] https://twinsuk.ac.uk/ [] ["https://twinsuk.ac.uk/contact-us/", "twinsuk@kcl.ac.uk"] The TwinsUK resource is the biggest UK adult twin registry of 14.000 twins used to study the genetic and environmental aetiology of age related complex traits and diseases. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.kcl.ac.uk/aboutkings/strategy [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ageing", "biological samples", "cardiovascular disease", "cell lines", "cohort study", "computational biology", "epigenetics", "genetics", "metabolic syndrome", "monozygotic (identical) twins", "musculoskeletal system", "osteoporosis", "rheumatology"] [{"institutionName": "Arthritis Research UK", "institutionAdditionalName": ["ARUK", "Arthritis Research Campaign", "Versus Arthritis"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.versusarthritis.org/", "institutionIdentifier": ["ROR:02jkpm469"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.versusarthritis.org/contact-us/"]}, {"institutionName": "Chronic Disease Research Foundation", "institutionAdditionalName": ["CDRF"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cdrf.org.uk/", "institutionIdentifier": ["ROR:02y30tw62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cdrf.org.uk/contact"]}, {"institutionName": "European Commission", "institutionAdditionalName": ["EU"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/index_en", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/about-european-commission/organisational-structure/locations_en", "https://ec.europa.eu/info/departments_en"]}, {"institutionName": "King's College London, Department of Twin Research & Genetic Epidemiology", "institutionAdditionalName": ["DTR"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kcl.ac.uk/lsm/Schools/life-course-sciences/departments/twin-research-and-genetic-epidemiology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kcl.ac.uk/lsm/schools/life-course-sciences/departments/twin-research-and-genetic-epidemiology/contact"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/?nav=main", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrc.ukri.org/about/contact/", "https://mrc.ukri.org/research/facilities-and-resources-for-researchers/cohort-directory/twins-uk/"]}, {"institutionName": "National Institute for Health Research", "institutionAdditionalName": ["NIHR"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nihr.ac.uk/", "institutionIdentifier": ["ROR:0187kwz08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nihr.ac.uk/contact/"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": ["WT"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.org/about-us/contact-us", "https://wellcome.org/news/twins-research-comes-age"]}] [{"policyName": "DTR Policy Document for data access", "policyURL": "https://twinsuk.ac.uk/wp-content/uploads/2018/11/DTR_DataAccess_Policy_0318.pdf"}, {"policyName": "Privacy statement", "policyURL": "https://www.kcl.ac.uk/terms/privacy"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kcl.ac.uk/terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://twinsuk.ac.uk/wp-content/uploads/2018/11/DTR_DataAccess_Policy_0318.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://twinsuk.ac.uk/wp-content/uploads/2018/11/DTR_Data_Access_Request_Form_2018.pdf"}] restricted [] ["unknown"] {"api": "ftp://twinr-ftp.kcl.ac.uk/", "apiType": "FTP"} ["none"] https://twinsuk.ac.uk/wp-content/uploads/2018/11/DTR_DataAccess_Policy_0318.pdf [] yes yes [] [] {} TwinsUK is covered by Thomson Reuters Data Citation Index. 2016-03-04 2021-09-09 +r3d100011852 UQ eSpace, Research Data Collections eng [] https://espace.library.uq.edu.au/collection/UQ:289097 [] ["espace@library.uq.edu.au", "https://espace.library.uq.edu.au/contact"] UQ eSpace is the single authoritative source for the research outputs of the staff and students of the University of Queensland and is the archival home of UQ Research Higher Degree digital theses. UQ eSpace raises the visibility and accessibility of UQ publications to the wider world and provides data for mandatory Government reporting requirements such as the Higher Education Research Data Collection (HERDC) and Excellence in Research for Australia (ERA) as well as for the internal UQ systems such as the Q-Index. It also operates as an institutional repository for open access publications, research datasets and other digitised materials created by staff of the University such as print materials, photographs, audio materials, videos, manuscripts and other original works. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["architecture", "behavioral science", "economics", "engineering", "health", "health sciences", "humanities", "information technology", "law", "natural sciences", "social sciences"] [{"institutionName": "University of Queensland", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uq.edu.au/contacts/"]}] [{"policyName": "Research Data Management - Policy", "policyURL": "http://ppl.app.uq.edu.au/content/4.20.06-research-data-management"}, {"policyName": "UQ eSpace Scope and Policy", "policyURL": "http://espace.library.uq.edu.au/view/UQ:295655/eSpaceScopeandPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ppl.app.uq.edu.au/content/4.20.08-open-access-uq-research-outputs#Policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ppl.app.uq.edu.au/content/4.20.08-open-access-uq-research-outputs#Policy"}] restricted [{"dataUploadLicenseName": "Research Data Management - Policy", "dataUploadLicenseURL": "http://ppl.app.uq.edu.au/content/4.20.06-research-data-management"}] ["Fedora"] {"api": "http://espace.library.uq.edu.au/oai.php", "apiType": "OAI-PMH"} ["DOI"] https://espace.library.uq.edu.au/view/UQ:323185 ["AuthorClaim", "ORCID", "ResearcherID", "other"] yes unknown [] [] {"syndication": "http://espace.library.uq.edu.au/list/latest/?tpl=2", "syndicationType": "RSS"} UQ eSpace, Research Data Collections is covered by Thomson Reuters Data Citation Index. ; metrics:Thomson Reuters web of science citation counts, Altmetric metrics. 2016-03-04 2021-09-09 +r3d100011853 West of Scotland Twenty-07 Study eng [] http://2007study.sphsu.mrc.ac.uk/ [] ["http://2007study.sphsu.mrc.ac.uk/Last-data-collection.html", "http://2007study.sphsu.mrc.ac.uk/contact-us.html", "sphsu-twenty07@glasgow.ac.uk"] The Twenty-07 Study was set up in 1986 in order to investigate the reasons for differences in health by socio-economic circumstances, gender, area of residence, age, ethnic group, and family type. 4510 people are being followed for 20 years. The initial wave of data collection took place in 1987/8, when respondents were aged 15, 35 and 55. The final wave of data collection took place in 2007/08 when respondents were aged 35, 55 and 75. In this way the Twenty-07 Study provides us with unique opportunities to investigate both the changes in people's lives over 20 years and how they affect their health, and the differences in people's experiences at the same ages 20 years apart, and how these have different effects on their health. eng ["disciplinary"] {"size": "", "updatedp": ""} 1987 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://2007study.sphsu.mrc.ac.uk/about-twenty-07.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["HIV", "Scotland", "area of residence", "behaviours", "beliefs", "biological samples", "cancer", "cohort study", "ethnic group", "family type", "gender", "health inequalities", "heart diseases", "life circumstances", "physical health"] [{"institutionName": "MRC Social and Public Health Sciences Unit", "institutionAdditionalName": ["SPHSU"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/researchinstitutes/healthwellbeing/research/mrccsosocialandpublichealthsciencesunit/", "institutionIdentifier": ["ROR:02v3sdn51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gla.ac.uk/researchinstitutes/healthwellbeing/research/mrccsosocialandpublichealthsciencesunit/contact/", "survadmin@sphsu.mrc.ac.uk"]}, {"institutionName": "UK Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrc.ukri.org/about/contact/", "https://mrc.ukri.org/research/facilities-and-resources-for-researchers/cohort-directory/west-of-scotland-twenty-07-study-twenty-07/"]}] [{"policyName": "Data Sharing", "policyURL": "http://2007study.sphsu.mrc.ac.uk/Information-on-data-sharing.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://2007study.sphsu.mrc.ac.uk/Data-Sharing-Form.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://2007study.sphsu.mrc.ac.uk/Twenty07_DataSharingPolicy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://2007study.sphsu.mrc.ac.uk/Twenty07_data_app_guidance"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} West of Scotland Twenty-07 Study is covered by Thomson Reuters Data Citation Index. 2016-03-03 2021-12-14 +r3d100011854 Whitehall II Study eng [{"additionalName": "Stress and Health Study", "additionalNameLanguage": "eng"}, {"additionalName": "WII", "additionalNameLanguage": "eng"}] https://www.ucl.ac.uk/whitehallII [] ["https://www.ucl.ac.uk/epidemiology-health-care/contact-us-institute"] The Whitehall II study was established to explore the relationship between socio-economic status, stress and cardiovascular disease. A cohort of 10,308 participants aged 35-55, of whom 3,413 were women and 6,895 men, was recruited from the British Civil Service in 1985. Since this first wave of data collection, self-completion questionnaires and clinical data have been collected from the cohort every two to five years with a high level of participation. Data collection is intended to continue until 2030. eng ["disciplinary"] {"size": "", "updatedp": ""} 1985 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ucl.ac.uk/epidemiology-health-care/about-1 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological samples", "cognitive function", "cohort study", "diabetes", "health", "heart disease", "male, female", "mental health", "psychosocial factors", "social inequalities", "socioeconomic circumstances"] [{"institutionName": "British Heart Foundation", "institutionAdditionalName": ["BHF"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhf.org.uk/", "institutionIdentifier": ["ROR:02wdwnk04"], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.bhf.org.uk/about-us/contact-us"]}, {"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["ROR:03n0ht308"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://esrc.ukri.org/public-engagement/social-science-for-schools/contact/"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrc.ukri.org/research/facilities-and-resources-for-researchers/mrc-scales/contact-information/"]}, {"institutionName": "National Institutes of Health, National Heart, Lung and Blood Institute", "institutionAdditionalName": ["NIH, NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": ["ROR:012pb6c26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhlbi.nih.gov/contact"]}, {"institutionName": "National Institutes of Health, National Institute on Aging", "institutionAdditionalName": ["NIH, NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": ["ROR:049v75w11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nia.nih.gov/contact"]}, {"institutionName": "University College London, Research Department of Epidemiology and Public Health, Institute of Epidemiology and Health Care", "institutionAdditionalName": ["UCL, Research Department of Epidemiology and Public Health, IEHC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/epidemiology-health-care", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucl.ac.uk/epidemiology-health-care/contact-us"]}] [{"policyName": "Data sharing", "policyURL": "http://www.mrc.ac.uk/research/research-policy-ethics/data-sharing/policy/"}, {"policyName": "Whitehall II data collection procedure", "policyURL": "https://www.ucl.ac.uk/epidemiology-health-care/sites/epidemiology-health-care/files/data-processes.pdf"}, {"policyName": "Whitehall II policy on data sharing", "policyURL": "https://www.ucl.ac.uk/epidemiology-health-care/sites/epidemiology-health-care/files/w2_data_sharing_policy_v30.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ucl.ac.uk/epidemiology-health-care/sites/epidemiology-health-care/files/w2_data_sharing_policy_v30.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ukri.org/councils/mrc/guidance-for-applicants/policies-and-guidance-for-researchers/data-sharing/"}] closed [] ["unknown"] {} [] [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Whitehall II Study is covered by Thomson Reuters Data Citation Index. 2016-03-02 2021-12-16 +r3d100011855 Work Histories Italian Panel eng [{"additionalName": "WHIP", "additionalNameLanguage": "eng"}] https://www.laboratoriorevelli.it/whip/whip_datahouse.php [] ["whip@laboratoriorevelli.it"] WHIP is a database of individual work histories, based on Inps administrative archives. The reference population is made up by all the people – Italian and foreign – who have worked in Italy even only for only a part of their working career. A large representative sample has been extracted from this population: in the standard file the sampling coefficient is about 1: 180, for a dynamic population of about 370,000 people (figures will be doubled in the full edition). For each of these people the main episodes of their working careers are observed. The complete list of observations includes: private employee working contracts, atypical contracts, self-employment activities as artisan, trader and some activities as freelancer, retirement spells, as well as non-working spells in which the individual received social benefits, like unemployment subsidies or mobility benefits. The workers for whom activity is not observed in WHIP are those who worked in the public sector or as freelancers (lawyers or notaries) – who have an autonomous security fund. The WHIP section concerning employee contracts is a Linked Employer Employee Database: in addition to the data about the contract, thanks to a linkage with the Inps Firm Observatory, data concerning the firm in which the worker is employed is also available. eng ["disciplinary"] {"size": "", "updatedp": ""} 1985 ["eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.laboratoriorevelli.it/whip/whip_datahouse.php?lingua=eng&pagina=documentazione [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["apprentice training", "labour market", "policies", "temporary work", "wage distribution", "work contracts", "worker mobility", "working careers", "working hours at age", "working time"] [{"institutionName": "National Social Security Institute", "institutionAdditionalName": ["INPS", "Istituto Nazionale Previdenza Sociale"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.inps.it/", "institutionIdentifier": ["ROR:052s0am34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.inps.it/contatti"]}, {"institutionName": "University of Turin, LABORatorio Riccardo Revelli", "institutionAdditionalName": ["LABORatorio R. Revelli"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.laboratoriorevelli.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["labor@laboratoriorevelli.it"]}] [{"policyName": "Codice di deontologia e di buona condotta per i trattamenti di dati personali per scopi statistici e scientifici", "policyURL": "https://www.privacy.it/archivio/garanteprovv20040616.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.privacy.it/archivio/garanteprovv20040616.html"}] closed [] ["unknown"] {} [] https://www.laboratoriorevelli.it/whip/documentazione.php?lingua=eng&sottopagina=faq#Generale9 [] yes yes [] [] {} Work Histories Italian Panel is covered by Thomson Reuters Data Citation Index. 2016-03-02 2021-12-13 +r3d100011856 World Contraceptive Use eng [{"additionalName": "Estimates and Projections of Family Planning Indicators", "additionalNameLanguage": "eng"}] https://population.un.org/dataportal/home [] ["https://www.un.org/en/development/desa/population/about/contact/index.asp", "population@un.org"] Contraceptive prevalence and the unmet need for family planning are key indicators for measuring improvements in access to reproductive health as asserted in the 2030 Agenda for Sustainable Development under target 3.7. "By 2030, ensure universal access to sexual and reproductive health-care services, including for family planning, information and education, and the integration of reproductive health into national strategies and programmes". eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.un.org/development/desa/pd/data/world-contraceptive-use [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["childbearing", "contraception", "demography", "familiy planning", "health survey", "matrimony", "sexuality"] [{"institutionName": "United Nations, Population Divison", "institutionAdditionalName": ["Population Divisions"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.un.org/development/desa/pd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.un.org/en/development/desa/population/about/contact/index.asp", "population@un.org"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.un.org/en/about-us/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.un.org/en/about-us/copyright"}] closed [] ["unknown"] no {} ["none"] https://www.un.org/en/development/desa/population/publications/dataset/contraception/wcu2020.asp ["none"] no yes [] [] {} World Contraceptive Use 2015 Is covered by Thomson Reuters Data Citation Index; --- The world contraceptive Use Wall Chart 2003 opend a series of reports with the issue of contraception within the Familiy Planning. Since that time reports on this topic appear almost yearly. It is to be expected, that after 2015 more updated reports will follow. --- The Population Division produces a systematic and comprehensive series of annual, model-based estimates and projections of contraceptive prevalence, unmet need for family planning, total demand for family planning and the percentage of demand for family planning that is satisfied among married or in-union women for the period from 1970 to 2030. Median estimates with 80 per cent and 95 per cent uncertainty intervals are provided for 195 countries or areas of the world and for regions and development groups. A Bayesian hierarchical model combined with country-specific time trends was used to generate the estimates, projections and uncertainty assessments. Details on the methodology are described in Alkema, L. et al. (2013). National, regional and global rates and trends in contraceptive prevalence and unmet need for family planning between 1990 and 2015: a systematic and comprehensive analysis. The Lancet. Vol. 381, Issue 9878, pp. 1642–1652. 2015-10-30 2021-12-03 +r3d100011857 MindBigData eng [{"additionalName": "The \"MNIST\" of Brain Digits", "additionalNameLanguage": "eng"}] http://www.mindbigdata.com/ [] ["vivancos@vivancos.com", "web@mindbigdata.com"] The version 1.0 of the open database contains 1,151,268 brain signals of 2 seconds each, captured with the stimulus of seeing a digit (from 0 to 9) and thinking about it, over the course of almost 2 years between 2014 & 2015, from a single Test Subject David Vivancos. All the signals have been captured using commercial EEGs (not medical grade), NeuroSky MindWave, Emotiv EPOC, Interaxon Muse & Emotiv Insight, covering a total of 19 Brain (10/20) locations. In 2014 started capturing brain signals and released the first versions of the "MNIST" of brain digits, and in 2018 released another open dataset with a subset of the "IMAGENET" of The Brain. Version 0.05 (last update 09/28/2021) of the open database contains 24,000 brain signals of 2 seconds each, captured with the stimulus of seeing a real MNIST digit (from 0 to 9) 6,000 so far and thinking about it, + the same amout of signals with another 2 seconds of seeing a black screen, shown in between the digits, from a single Test Subject David Vivancos in a controlled still experiment to reduce noise from EMG & avoiding blinks. eng ["disciplinary"] {"size": "1.867.623 brain signals, 491.836.511 Data Points", "updatedp": "2021-09-28"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://mindbigdata.com/opendb/visualmnist.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["EEG Electroencephalography signals", "algorithm", "artificial intelligence", "brain", "computer-human interaction", "functional magnetic resonance imaging maps", "image processing", "neuroscience", "signals"] [{"institutionName": "MindBigData.com", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://MindBigData.com", "institutionIdentifier": [], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["vivancos@vivancos.com", "web@mindbigdata.com"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/dbcl/1-0/"}] closed [] ["unknown"] yes {} ["none"] [] no yes [] [] {} 2014-09-14 2021-09-28 +r3d100011858 PATRIC eng [{"additionalName": "Pathosystems Resource Integration Center", "additionalNameLanguage": "eng"}] https://www.patricbrc.org/portal/portal/patric/Home ["OMICS_01658", "RRID:SCR_004154", "RRID:nlx_17476"] ["help@patricbrc.org"] The PATRIC website provides an entry point to integrated data and tools for bacterial infectious disease research. The website is organized by data types and analysis tools. Primary access is provided through the PATRIC main menu, available at the top of the home page. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.patricbrc.org/portal/portal/patric/Home [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bacteria", "bacterial species", "bioinformatics", "biology", "genomes", "genomics", "infectious disease", "procaryotics"] [{"institutionName": "Bioinformatics Resource Centers", "institutionAdditionalName": ["BRCs"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.niaid.nih.gov/LabsAndResources/resources/dmid/brc/Pages/awards.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH", "National Institute of Allergy and Infectious Diseases"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.niaid.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["http://www.niaid.nih.gov/links_policies/Pages/contact_us.aspx"]}, {"institutionName": "University of Chicago", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.uchicago.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["help@patricbrc.org"]}] [{"policyName": "NIAID/Division of Microbiology and Infectious Diseases (DMID) Data Sharing and Release Guidelines", "policyURL": "http://www.niaid.nih.gov/LabsAndResources/resources/dmid/Pages/data.aspx"}, {"policyName": "PATRIC Data Release Policy", "policyURL": "http://enews.patricbrc.org/data-release-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.opensource.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://enews.patricbrc.org/data-release-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.niaid.nih.gov/LabsAndResources/resources/dmid/Pages/data.aspx"}] restricted [] ["unknown"] yes {"api": "ftp://ftp.patricbrc.org/patric2/", "apiType": "FTP"} ["none"] http://enews.patricbrc.org/citing-patric/ ["none"] yes yes [] [{"metadataStandardName": "Genome Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/genome-metadata"}] {"syndication": "http://enews.patricbrc.org/feed/", "syndicationType": "RSS"} University of Chicago is one of four Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. 2015-09-21 2017-12-06 +r3d100011859 National Cancer Data Base eng [{"additionalName": "NCDB", "additionalNameLanguage": "eng"}] https://www.facs.org/quality-programs/cancer/ncdb [] ["https://www.facs.org/quality-programs/cancer/staff", "ncdb@facs.org"] The nationally recognized National Cancer Database (NCDB)—jointly sponsored by the American College of Surgeons and the American Cancer Society—is a clinical oncology database sourced from hospital registry data that are collected in more than 1,500 Commission on Cancer (CoC)-accredited facilities. NCDB data are used to analyze and track patients with malignant neoplastic diseases, their treatments, and outcomes. Data represent more than 70 percent of newly diagnosed cancer cases nationwide and more than 34 million historical records. eng ["disciplinary"] {"size": "more than 34 million historical records", "updatedp": "2021-10-22"} 1989 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.facs.org/quality-programs/cancer/ncdb/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["chemotherapy", "clinical studies", "hormone therapy", "malignant neoplastic diseases", "metastases", "oncology", "patient characeteristics", "radiation", "surgical and adjuvant treatments", "survival", "tumor characteristics", "tumor characteristics"] [{"institutionName": "American Cancer Society", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.org/", "institutionIdentifier": ["ROR:02e463172"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.org/about-us/online-help/contact-us.html"]}, {"institutionName": "American College of Surgeons", "institutionAdditionalName": ["ACoS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.facs.org/", "institutionIdentifier": ["ROR:009mk5659"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.facs.org/about-acs"]}, {"institutionName": "American Joint Committee on Cancer", "institutionAdditionalName": ["AJCC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cancerstaging.org/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ajcc@facs.org"]}] [{"policyName": "COC Survival Policy", "policyURL": "https://www.facs.org/~/media/files/quality%20programs/cancer/ncdb/coc_survivalpublic%20reporting%20policy.ashx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.facs.org/quality-programs/cancer/ncdb/call-for-data/fordsmanual"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ncin.org.uk/collecting_and_using_data/data_access"}] restricted [] ["CKAN"] {"api": "https://cancerstaging.org/Pages/Vendors.aspx", "apiType": "REST"} [] ["none"] yes yes [] [] {} National Cancer Data Base is covered by Thomson Reuters Data Citation Index. The Commission on Cancer and the NCDB maintain close working relationships with staff at other cancer surveillance and registry agencies and organizations, see https://www.facs.org/quality-programs/cancer/ncdb/about 2015-10-23 2021-10-27 +r3d100011860 TheDataWeb eng [{"additionalName": "DataFerrett", "additionalNameLanguage": "eng"}] https://thedataweb.rm.census.gov/ ["RRID:SCR_003197"] ["https://thedataweb.rm.census.gov/ContactUs.html"] TheDataWeb (DataWeb) is a sophisticated, technologically advanced data dissemination system that facilitates easy access to statistical data from their source, and repurposes them for many uses. eng ["disciplinary"] {"size": "828 datasets", "updatedp": "2015-10-21"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataferrett.census.gov/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["American community survey", "American housing survey (AHS)", "National Health Interview Survey (NHIS)", "National Health and Nutrition Examination Survey (NHANES)", "National Hospital Ambulatory Medical Care Survey (NHAMCS)", "National Survey of Fishing, Hunting and Wildlife-Associated Recreation (FHWAR)", "New York City Housing and vacancy Survey (NYCHVS", "Public Libraries Survey (PLS)", "Small Area Health Insurance Estimates (SAHIE)", "Small Area Income and Poverty Estimates (SAIPE)", "Social Security Administration (SSA)", "Survey of Program Dynamics (SPD)", "behavioral risk-factor surveillance system (BRFSS)", "business", "consumer expenditure survey (CES)", "county business patterns (CBP)", "current population survey", "economy", "education", "employment", "families and living arrangements", "health", "home mortgage disclosure act (HMDA)", "housing", "income and poverty", "international trade", "mortality - underlying cause-of-death - 1994 (MORT)", "national ambulatory medical care survey (NAMCS)", "population", "survey of income and program particiation"] [{"institutionName": "Australian Bureau of Statistics", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.abs.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.abs.gov.au/websitedbs/D3310114.nsf//Home/Contact+Us?opendocument#from-banner=GT"]}, {"institutionName": "Centers for Disease Control and Prevention", "institutionAdditionalName": ["CDC", "Centros para el Control y la Prevenci\u00f3n de Enfermendades"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wwwn.cdc.gov/dcs/ContactUs/Form"]}, {"institutionName": "Employment and Training Administration", "institutionAdditionalName": ["ETA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.doleta.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.doleta.gov/contact.cfm"]}, {"institutionName": "Environmental Protection Agency", "institutionAdditionalName": ["EPA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epa.gov/home/forms/contact-epa"]}, {"institutionName": "Harvard University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.harvard.edu/contact-harvard"]}, {"institutionName": "Institute of Museum and Library Services", "institutionAdditionalName": ["IMLS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.imls.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imls.gov/contact/contact-us"]}, {"institutionName": "Kenya National Bureau of Statistics", "institutionAdditionalName": [], "institutionCountry": "KEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.knbs.or.ke/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.knbs.or.ke/?page_id=1659"]}, {"institutionName": "U.S. Department of Commerce, United States Census Bureau", "institutionAdditionalName": ["U.S. Census Bureau"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.census.gov/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.census.gov/about/contact-us.html"]}] [{"policyName": "DataFerrett users guide", "policyURL": "https://dataferrett.census.gov/UserResources/DataFerrett_UserGuide.pdf"}, {"policyName": "Policies and Notices", "policyURL": "https://www.census.gov/about/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.census.gov/about/policies/privacy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.usa.gov/government-works"}] closed [] [] {"api": "https://www.census.gov/data/developers/data-sets.html", "apiType": "REST"} [] https://www.census.gov/about/policies/citation.html [] unknown yes [] [] {} TheDataWeb Is covered by Thomson Reuters Data Citation Index. // DataFerrett is a data analysis and extraction tool to customize federal, state, and local data to suit your requirements. Using DataFerrett, you can develop an unlimited array of customized spreadsheets that are as versatile and complex as your usage demands then turn those spreadsheets into graphs and maps without any additional software : https://dataferrett.census.gov/ 2015-10-21 2021-09-09 +r3d100011861 National Sleep Research Resource eng [{"additionalName": "Explore a rich collection of sleep research data collected in children and adults across the U.S.", "additionalNameLanguage": "eng"}, {"additionalName": "NSRR", "additionalNameLanguage": "eng"}] https://sleepdata.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.crjxwd"] ["support@sleepdata.org"] The National Sleep Research Resource (NSRR) offers free web access to large collections of de-identified physiological signals and clinical data elements collected in well-characterized research cohorts and clinical trials. eng ["disciplinary"] {"size": "11 studies", "updatedp": "2018-02-02"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://catalyst.harvard.edu/pdf/reactor/Session%202_Redline%20-%20Sleep%20Apnia.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Childhood Adenotonsillectomy Trial", "Cleveland Children's Sleep and Health Study", "Cleveland Family Study", "Heart Biomarker Evaluation in Apnoe Treatment", "Hispanic Community Health Study / Study of Latinos", "Home Positive Airway Pressure", "Honolulu-Asia Aging Study of Sleep Apnea", "MrOS Sleep Study", "Multi-Ethnic Study of Atherosclerosis", "Sleep Heart Health Study", "Study of Osteoporotic Fracture", "biomedicine", "circadian disorder", "overnight plethysmography", "overnight polysomnograms", "physionet", "sleep disorder", "sleep medicine"] [{"institutionName": "Brigham and Women's Hospital", "institutionAdditionalName": ["BWH"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.brighamandwomens.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.brighamandwomens.org/forms/contactus.aspx"]}, {"institutionName": "National Institutes of Health, National Heart, Lung, and Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nhlbi.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nhlbi.nih.gov/about/contact"]}] [{"policyName": "Data Access and Use Agreement - DAUA", "policyURL": "https://sleepdata.org/blog/2016/01/release-v0-18-0-overview-part-1"}, {"policyName": "NIH Data Sharing Policy", "policyURL": "https://grants.nih.gov/grants/policy/data_sharing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://sleepdata.org/about"}] restricted [{"dataUploadLicenseName": "NIH Data Sharing Policy.", "dataUploadLicenseURL": "https://grants.nih.gov/grants/policy/data_sharing/"}] ["unknown"] yes {} ["DOI"] [] no yes [] [] {} National Sleep Research Resource is covered by Thomson Reuters Data Citation Index. Information about citation in each study. 2015-09-18 2021-11-16 +r3d100011864 OpenKIM eng [{"additionalName": "Knowledgebase of Interatomic Models", "additionalNameLanguage": "eng"}] https://openkim.org/ [] ["support@openkim.org"] OpenKIM is an online suite of open source tools for molecular simulation of materials. These tools help to make molecular simulation more accessible and more reliable. Within OpenKIM, you will find an online resource for standardized testing and long-term warehousing of interatomic models and data, and an application programming interface (API) standard for coupling atomistic simulation codes and interatomic potential subroutines. eng ["disciplinary"] {"size": "411 models; 35 model drivers", "updatedp": "2020-02-06"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30203 Theory and Modelling", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "40603 Microstructural Mechanical Properties of Materials", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://openkim.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atomistic simulations", "cyberinfrastructure", "force fields", "interatomic models", "interatomic potentials", "material properties", "molecular dynamics simulation", "transferability of interatomic models"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Minnesota Twin Cities", "institutionAdditionalName": ["U of M"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://twin-cities.umn.edu/", "institutionIdentifier": ["ROR:017zqws13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.aem.umn.edu/~elliott", "http://www.aem.umn.edu/~tadmor"]}] [{"policyName": "Getting started with KIM", "policyURL": "https://openkim.org/getting-started/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://openkim.org/kim-licensing/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://openkim.org/kim-licensing/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/CDDL-1.0"}] restricted [] ["other"] yes {"api": "https://openkim.org/kim-api/", "apiType": "other"} ["DOI"] https://openkim.org/getting-started/kim-citation/ [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} OpenKIM is covered by Clarivate Data Citation Index. 2015-10-08 2020-02-06 +r3d100011865 Astrophysics Source Code Library eng [{"additionalName": "ASCL", "additionalNameLanguage": "eng"}, {"additionalName": "ASCL.net Astrophysics Source Code Library", "additionalNameLanguage": "eng"}] http://ascl.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.wb0txg", "ISSN 2381-2028"] ["aallen@ascl.net", "editor@ascl.net", "http://ascl.net/home/getwp/899"] The Astrophysics Source Code Library (ASCL) is a free online registry for source codes of interest to astronomers and astrophysicists and lists codes that have been used in research that has appeared in, or been submitted to, peer-reviewed publications. The ASCL is citable by using the unique ascl ID assigned to each code. The ascl ID can be used to link to the code entry by prefacing the number with ascl.net (i.e., ascl.net/1201.001). eng ["disciplinary"] {"size": "2,363 code entries", "updatedp": "2016-08-16"} 1999-03-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://ascl.net/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ADS", "astronomer", "astrophysicist", "astrophysics codes", "astrophysics data system"] [{"institutionName": "American Astronomical Society", "institutionAdditionalName": ["AAS"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://aas.org/", "institutionIdentifier": ["ROR:00b93bs30"], "responsibilityStartDate": "2012", "responsibilityEndDate": "2012", "institutionContact": ["aas@aas.org"]}, {"institutionName": "Heidelberg Institute for Theoretical Studies", "institutionAdditionalName": ["HITS", "Heidelberger Institut f\u00fcr Theoretische Studien"], "institutionCountry": "DEU", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.h-its.org/", "institutionIdentifier": ["ROR:01f7bcy98"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Michigan Technological University", "institutionAdditionalName": ["MTU"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mtu.edu/", "institutionIdentifier": ["ROR:0036rpn28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Maryland, College Park", "institutionAdditionalName": ["UMD"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://umd.edu/", "institutionIdentifier": ["ROR:047s2c258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "editorial policy", "policyURL": "http://ascl.net/home/getwp/1354"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/bsd-license.php"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ascl.net/home/getwp/898"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://ascl.net/submissions"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ascl.net/submissions"}] open [{"dataUploadLicenseName": "Submissions", "dataUploadLicenseURL": "http://ascl.net/submissions"}] ["MySQL"] no {} ["DOI", "other"] http://ascl.net/home/getwp/351 ["none"] yes yes [] [] {} ASCL is covered by Thomson Reuters Data Citation Index. ASCL is covered by Elsevier. The ASCL is a free online curated registry of source codes used to produce research results in astrophysics and astronomy. It is a growing resource, with new additions every month. Submissions by code authors are vetted by ASCL editors. It is indexed by the SAO/NASA Astrophysics Data System (ADS) and has been cited in over 120 publications, including journals, proceedings, and theses (http://ascl.net/dashboard). 2015-10-12 2021-09-02 +r3d100011867 SEANOE eng [{"additionalName": "Publication de donn\u00e9es scientifiques marines", "additionalNameLanguage": "fra"}, {"additionalName": "Sea scientific open data publication", "additionalNameLanguage": "eng"}] https://www.seanoe.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.bb5rna", "ISSN 2491-1836"] ["data@seanoe.org", "frederic.merceur@ifremer.fr"] "Seanoe (SEA scieNtific Open data Edition) is a publisher of scientific data in the field of marine sciences. It is operated by Ifremer (http://wwz.ifremer.fr/). Data published by SEANOE are available free. They can be used in accordance with the terms of the Creative Commons license selected by the author of data. Seance contributes to Open Access / Open Science movement for a free access for everyone to all scientific data financed by public funds for the benefit of research. An embargo limited to 2 years on a set of data is possible; for example to restrict access to data of a publication under scientific review. Each data set published by SEANOE has a DOI which enables it to be cited in a publication in a reliable and sustainable way. The long-term preservation of data filed in SEANOE is ensured by Ifremer infrastructure. " eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.seanoe.org/html/about.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["marine sciences"] [{"institutionName": "Ilfremer", "institutionAdditionalName": ["French Research Institute for Exploitation of the Sea", "Institut fran\u00e7ais de recherche pour l'exploitation de la mer", "Instituto Franc\u00e9s de Investigaci\u00f3n para la Explotaci\u00f3n del Mar"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wwz.ifremer.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wwz.ifremer.fr/sendform/contact"]}, {"institutionName": "Ilfremer, D\u00e9partement Infrastructures de Recherche et Syst\u00e8mes d\u2019Information", "institutionAdditionalName": ["Ilfremer, Department of Marine and Digital Infrastructures"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://wwz.ifremer.fr/Recherche-Technologie/Departements-scientifiques/Departement-Infrastructures-de-Recherche-et-Systemes-d-Information", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wwz.ifremer.fr/en/sendform/contact"]}] [{"policyName": "About SEANOE", "policyURL": "https://www.seanoe.org/html/about.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] open [{"dataUploadLicenseName": "Publish your marine data", "dataUploadLicenseURL": "https://www.seanoe.org/html/publish-your-data.htm"}] ["unknown"] yes {} ["DOI"] http://dx.doi.org/10.17882/39475 ["ORCID"] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Seanoe is covered by Thomson Reuters Data Citation Index. is covered by Elsevier. Data published in SEANOE are also automatically duplicated to the EMODnet Data Ingestion portal so that marine data centers of the EMODnet Ingestion network will be informed about the existence and the availability of datasets published in SEANOE. 2015-10-22 2021-09-03 +r3d100011868 Mendeley Data eng [] https://data.mendeley.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.3epmpp", "RRID:SCR_015671"] ["https://service.elsevier.com/app/contact/supporthub/mendeley/"] For datasets big and small; Store your research data online. Quickly and easily upload files of any type and we will host your research data for you. Your experimental research data will have a permanent home on the web that you can refer to. eng ["other"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.mendeley.com/mission [{"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "data collection platform", "multidisciplinary"] [{"institutionName": "Elsevier Inc", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.elsevier.com/", "institutionIdentifier": ["ROR:02scfj030", "RRID:SCR_013811"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.elsevier.com/contact"]}, {"institutionName": "Mendeley Inc.", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.mendeley.com/", "institutionIdentifier": ["ROR:01t2a8a42", "RRID:SCR_002750", "RRID:nif-0000-24120"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mendeley.com/contact-us/"]}] [{"policyName": "Copyright and Intellectual Property Policy", "policyURL": "https://www.mendeley.com/terms/copyright"}, {"policyName": "Elsevier Terms and Conditions", "policyURL": "https://www.elsevier.com/legal/elsevier-website-terms-and-conditions"}, {"policyName": "Implementation of the CoreTrustSeal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2017/10/pdf.pdf"}, {"policyName": "Mendeley terms of use", "policyURL": "https://www.mendeley.com/terms/"}, {"policyName": "Terms of Service applicable to governmental users/members", "policyURL": "https://www.mendeley.com/terms-governmental-amendment/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Who owns and controls my data?", "dataUploadLicenseURL": "https://data.mendeley.com/faq"}] ["other"] yes {"api": "https://api.mendeley.com/apidocs/docs", "apiType": "other"} ["ARK", "DOI"] [] yes yes ["other"] [] {} is covered by Elsevier. Mendeley Data is covered by Clarivate Data Citation Index. 2015-10-23 2021-09-09 +r3d100011869 Permanent Service for Mean Sea Level eng [{"additionalName": "PSMSL", "additionalNameLanguage": "eng"}] http://www.psmsl.org/ ["biodbcore-001683"] ["psmsl@noc.ac.uk"] PSMSL is the global data bank for long term sea level change information from tide gauges and bottom pressure recorders. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.psmsl.org/about_us/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["ODINAfrica", "RLR", "high frequency data", "sea level change", "stations", "tide gauges"] [{"institutionName": "British Oceanographic Data Centre", "institutionAdditionalName": ["BODC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bodc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bodc.ac.uk/about/contact_us/"]}, {"institutionName": "ICSU World Data System", "institutionAdditionalName": ["ICSU WDS"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.icsu-wds.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.icsu-wds.org/contact-info"]}, {"institutionName": "International Association of Geodesy, Global Geodetic Observing System", "institutionAdditionalName": ["GGOS", "IAG"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ggos.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ggos_co@asi.it"]}, {"institutionName": "National Oceanography Centre", "institutionAdditionalName": ["NOC"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://noc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://noc.ac.uk/contact"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/"]}, {"institutionName": "United Nations Educational, Scientific and Cultural Organization, Intergovernmental Oceanographic Commission", "institutionAdditionalName": ["UNESCO IOC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ioc-unesco.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["t.gross@unesco.org"]}] [{"policyName": "Academic licence for the use of data supplied by BODC", "policyURL": "http://www.psmsl.org/misc/eoss/wp5/license.html"}, {"policyName": "IOC Manuals and Guides", "policyURL": "http://www.psmsl.org/train_and_info/training/manuals/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.psmsl.org/misc/eoss/wp5/license.html"}] restricted [] [] no {} ["none"] http://www.psmsl.org/data/obtaining/reference.php [] no yes ["WDS"] [] {} PSMSL is a regular member of World Data System - WDX . 2015-10-23 2021-11-16 +r3d100011870 IndExs – Index of Exsiccatae eng [{"additionalName": "Index of Exsiccatae", "additionalNameLanguage": "eng"}] http://indexs.botanischestaatssammlung.de [] ["office.bsm@snsb.de", "triebel@snsb.de"] "IndExs" is a database comprising information on exsiccatae (=exsiccatal series) with titles, abbreviations, bibliography and provides a unique and persistent Exsiccata ID for each series. Exsiccatae are defined as "published, uniform, numbered sets of preserved specimens distributed with printed labels" (Pfister 1985). Please note that there are two similar latin terms: "exsiccata, ae" is feminine and used for a set of dried specimens as defined above, whereas the term "exsiccatum, i" is neutral and used for dried specimens in general. If available, images of one or more examplary labels are added to give layout information. eng ["disciplinary"] {"size": "more than 2150 exsiccata series, more than 1500 images", "updatedp": "2019-01-22"} 2001-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.botanischestaatssammlung.de/DatabaseClients/IndExs/About.jsp [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Diversity Workbench", "algae", "bacteria", "bryophytes", "fungi", "lichens", "pteridophytes", "spermatophytes", "zoocecidia"] [{"institutionName": "Botanische Staatssammlung M\u00fcnchen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.botanischestaatssammlung.de/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["office.bsm@snsb.de"]}, {"institutionName": "Staatliche naturwissenschaftliche Sammlungen Bayerns, IT Center", "institutionAdditionalName": ["Bavarian Natural History Collections, IT Center", "SNSB IT Center"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.snsb.info/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.snsb.info/Contact.html"]}] [{"policyName": "Disclaimer", "policyURL": "http://www.snsb.info/Disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://indexs.botanischestaatssammlung.de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}] closed [] ["other"] no {"api": "http://www.botanischestaatssammlung.de/DatabaseClients/IndExs/webservice.jsp", "apiType": "REST"} ["URN"] http://www.botanischestaatssammlung.de/DatabaseClients/IndExs/About.jsp [] yes yes [] [] {} export options: csv, xls, xml 2015-10-26 2019-01-24 +r3d100011871 HAGR eng [{"additionalName": "Human Ageing Genomic Resources", "additionalNameLanguage": "eng"}] https://genomics.senescence.info/ ["FAIRsharing_doi:10.25504/FAIRsharing.bw1e90", "RRID:SCR_007700", "RRID:nif-0000-02938"] ["aging@liv.ac.uk", "https://genomics.senescence.info/feedback.php"] The Human Ageing Genomic Resources (HAGR) is a collection of databases and tools designed to help researchers study the genetics of human ageing using modern approaches such as functional genomics, network analyses, systems biology and evolutionary analyses. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://genomics.senescence.info/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cancer", "genetics", "genomics", "gerontology", "human aging", "protein-protein interactions", "systems biology"] [{"institutionName": "Harvard Medical School, George Church's lab", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://arep.med.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://arep.med.harvard.edu/visit.html"]}, {"institutionName": "University of Liverpool, Institute for Integrative Biology, Integrative Genomics of Ageing Group", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://pcwww.liv.ac.uk/~aging/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://pcwww.liv.ac.uk/~aging/contact.html"]}, {"institutionName": "University of Namur", "institutionAdditionalName": ["UNamur", "Universit\u00e9 de Namur"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unamur.be/en", "institutionIdentifier": ["ROR:03d1maw17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unamur.be/en/contact-us"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.org/who-we-are/contact-us"]}] [{"policyName": "Disclaimers, Credits, and Copyright", "policyURL": "https://genomics.senescence.info/legal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://genomics.senescence.info/legal.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://genomics.senescence.info/legal.html"}] closed [] ["MySQL"] yes {} ["none"] https://genomics.senescence.info/legal.html#citation [] yes yes [] [] {} João Pedro de Magalhães is the principal investigator of the Integrative Genomics of Ageing Group at the University of Liverpool in the UK. Amongst other projects, we maintain the Human Ageing Genomic Resources, a series of tools and databases aimed at understanding the genetic basis of human aging. Grants from: https://genomics.senescence.info/about.html Databases: The Ageing Gene Database (GenAge), The Dietary Restriction Database (GenDR), Human Longevity Genetic Variants Database (LongevityMap), The Animal Ageing and Longevity Database (AnAge). Projects: Gene Expression, Cancer, Genome Sequencing, Evolution of Ageing 2015-10-26 2021-11-08 +r3d100011872 LIAS eng [{"additionalName": "A Global Information System for Lichenized and Non-Lichenized Ascomycetes", "additionalNameLanguage": "eng"}] http://www.lias.net/ [] [] LIAS is a global information system for Lichenized and Non-Lichenized Ascomycetes. It includes several interoperable data repositories. In recent years, the two core components ‘LIAS names’ and ‘LIAS light’ have been much enlarged. LIAS light is storing phenotypic trait data. They includes > 10,700 descriptions (about 2/3 of all known lichen species), each with up to 75 descriptors comprising 2,000 traits (descriptor states and values), including 800 secondary metabolites. 500 traits may have biological functions and more than 1,000 may have phylogenetic relevance. LIAS is thus one of the most comprehensive trait databases in organismal biology. The online interactive identification key for more than 10,700 lichens is powered by the Java applet NaviKey and has been translated into 19 languages (besides English) in cooperation with lichenologists worldwide. The component ‘LIAS names’ is a platform for managing taxonomic names and classifications with currently >50,000 names, including the c. 12,000 accepted species and recognized synonyms. The LIAS portal contents, interfaces, and databases run on servers of the IT Center of the Bavarian Natural History Collections and are maintained there. 'LIAS names' and ‘LIAS light’ also deliver content data to the Catalogue of Life, acting as the Global Species Database (GSD) for lichens. LIAS gtm is a database for visualising the geographic distribution of lichen traits. LIAS is powered by the Diversity Workbench database framework with several interfaces for data management and publication. The LIAS long-term project was initiated in the early 1990s and has since been continued with funding from the DFG, the BMBF, and the EU. eng ["disciplinary"] {"size": "nearly 11.000 species descriptions, more than 50.000 taxon names, more than 800 lichen metabolites, 20 languages, glossary with more than 2.600 terms", "updatedp": "2019-01-21"} 1996-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.lias.net/About/Objectives.cfm [{"name": "Databases", "scheme": "parse"}] ["dataProvider"] ["Diversity Workbench", "biodiversity", "fungi", "identification keys", "lichen traits", "lichenology", "mycology", "phylogeny", "taxonomy"] [{"institutionName": "Arizona State University, Biodiversity Knowledge Integration Center, Lichen Herbarium", "institutionAdditionalName": ["Arizona State University Lichen Herbarium"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biokic.asu.edu/lichen-herbarium", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bayerisches Staatsministerium f\u00fcr Wissenschaft und Kunst", "institutionAdditionalName": ["Bavarian State Ministry of Science and the Arts", "Wissenschaftsministerium Bayern"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.stmwk.bayern.de/", "institutionIdentifier": ["ROR:01a44gd51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Botanische Staatssammlung M\u00fcnchen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.botanischestaatssammlung.de/", "institutionIdentifier": ["Wikidata:Q875673"], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["office.bsm@snsb.de", "triebel@snsb.de"]}, {"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SNSB IT-Zentrum", "institutionAdditionalName": ["SNSB IT Center"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.snsb.info/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["triebel@snsb.de"]}, {"institutionName": "Staatliche Naturwissenschaftliche Sammlungen Bayerns", "institutionAdditionalName": ["Bavarian Natural History Collections", "SNSB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.snsb.de/index.php/de/", "institutionIdentifier": ["ROR:05th1v540"], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["https://www.snsb.de/index.php/de/kontakt-snsb"]}, {"institutionName": "University of Bayreuth, Department of Mycology", "institutionAdditionalName": ["Universit\u00e4t Bayreuth, Abteilung Mykologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mycology.uni-bayreuth.de/", "institutionIdentifier": [], "responsibilityStartDate": "1996", "responsibilityEndDate": "", "institutionContact": ["Gerhard.Rambold@uni-bayreuth.de", "http://www.mycology.uni-bayreuth.de/mycology/de/mitarbeiter/mit/mitarbeiter_detail.php?id_obj=14072"]}, {"institutionName": "University of Hamburg, Herbarium Hamburgense", "institutionAdditionalName": ["HBG", "Herbarium Hamburgense"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.herbariumhamburgense.de/", "institutionIdentifier": ["Wikidata:Q55829126"], "responsibilityStartDate": "2001", "responsibilityEndDate": "2004", "institutionContact": ["http://www.herbariumhamburgense.de/contact_hbg.php"]}, {"institutionName": "University of Oslo, Natural History Museum", "institutionAdditionalName": ["Natural History Museum", "Naturhistorisk museum"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nhm.uio.no/english/", "institutionIdentifier": ["Wikidata:Q1840963"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Objectives", "policyURL": "http://www.lias.net/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/"}] closed [] ["other"] yes {} ["URN"] http://www.lias.net/About/Impressum.cfm [] no yes [] [] {"syndication": "https://glossary.lias.net/w/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=atom", "syndicationType": "ATOM"} TDWG 2005 standards "DELTA" and "SDD" used for LIAS light; see https://www.tdwg.org/standards/ 2015-10-27 2021-09-06 +r3d100011873 Staatliche Naturwissenschaftliche Sammlungen Bayerns deu [{"additionalName": "Bavarian Natural History Collections", "additionalNameLanguage": "eng"}, {"additionalName": "SNSB", "additionalNameLanguage": "deu"}] https://www.snsb.de/index.php/en/ [] ["https://www.snsb.de/index.php/en/contact-snsb", "it-center@snsb.de", "triebel@snsb.de"] The Bavarian Natural History Collections (Staatliche Naturwissenschaftliche Sammlungen Bayerns, SNSB) are a research institution for natural history in Bavaria. They encompass five State Collections (zoology, botany, paleontology and geology, mineralogy, anthropology and paleoanatomy), the Botanical Garden Munich-Nymphenburg and eight museums with public exhibitions in Munich, Bamberg, Bayreuth, Eichstätt and Nördlingen. Our research focuses mainly on the past and present bio- and geodiversity and the evolution of animals and plants. To achieve this we have large scientific collections (almost 35,000,000 specimens), see "joint projects". eng ["disciplinary", "institutional"] {"size": "77 datasets, more than 14 million data units", "updatedp": "2019-02-07"} 2010-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.snsb.de/index.php/en/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["anthropology", "botany", "geology", "mineralogy", "mycology", "paleoanatomy", "paleontology", "zoology"] [{"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.gbif.org/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["https://www.gbif.org/contact-us"]}, {"institutionName": "Staatliche Naturwissenschaftliche Sammlungen Bayerns", "institutionAdditionalName": ["Bavarian Natural History Collections", "SNSB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.snsb.mwn.de/index.php/de/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["http://www.snsb.mwn.de/index.php/en/contact"]}, {"institutionName": "Staatliche Naturwissenschaftliche Sammlungen Bayerns, Information Technology Center", "institutionAdditionalName": ["Bavarian Natural History Collections, Information Technology Center", "SNSB IT Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.snsb.info/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["http://www.snsb.info/Contact.html", "triebel@snsb.de"]}] [{"policyName": "GBIF Data - Terms of use", "policyURL": "https://www.gbif.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gbif.org/terms"}] restricted [] ["other"] yes {"api": "http://www.gbif.org/developer/summary", "apiType": "REST"} ["DOI"] https://www.gbif.org/citation-guidelines [] no yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} Datasets of Bavarian Natural History Collections (SNSB) and datasets hosted by the SNSB are published via Global Biodiversity Information Facility (GBIF) and German Federation for Biological Data (GFBio). ABCD standard is used on a regular basis. DC and EML standard is used for certain checklist datasets processed for GBIF; see https://www.tdwg.org/standards/ 2015-10-27 2019-02-08 +r3d100011874 RefractiveIndex.INFO eng [{"additionalName": "Refractive index Database", "additionalNameLanguage": "eng"}, {"additionalName": "refractiveindex.info database", "additionalNameLanguage": "eng"}] http://refractiveindex.info/ [] ["polyanskiy@refractiveindex.info"] A database of optical constants of materials eng ["disciplinary"] {"size": "1.500 records", "updatedp": "2015-10-27"} 2014-02-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://refractiveindex.info/download.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["inorganic materials", "optical glass", "organic materials"] [{"institutionName": "github", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://github.com/polyanskiy/refractiveindex.info-database", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mpolyanskiy@gmail.com", "polyanskiy@bnl.gov"]}] [{"policyName": "Copyright and related rights", "policyURL": "http://refractiveindex.info/download.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://refractiveindex.info/download.php"}] open [] ["unknown"] yes {} ["none"] http://refractiveindex.info/about.php [] yes unknown [] [] {} refractiveindex.info database is now an independent project hosted on GitHub: https://github.com/polyanskiy/refractiveindex.info-database 2015-10-27 2016-08-10 +r3d100011876 Plant Genomics and Phenomics Research Data Repository eng [{"additionalName": "PGP Repository", "additionalNameLanguage": "eng"}] http://edal-pgp.ipk-gatersleben.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.rf3m4g", "OMICS_13414"] ["a.kesseler@fz-juelich.de"] The Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) and the German Plant Phenotyping Network (DPPN) has jointly initiated the Plant Genomics and Phenomics Research Data Repository (PGP) as infrastructure to comprehensively publish plant research data [https://dx.doi.org/10.1093/database/baw033]. This covers in particular these cross-domain data sets that are not being published in central repositories because of its huge volume, unsupported data domain or scope, like image collections from plant phenotyping and microscopy, unassembled sequences, genotyping data, visualizations of complex morphological plant models, movies plant 3-D models, raw data from mass spectrometry, software, and documents. Accepted data is published as citable DOIs and core set of technical metadata is registered at DataCite. The used e!DAL-embedded Web frontend generates for each data set a landing page and supports an interactive exploration of available datasets. This long-term stable access to plant genomic and phenomic primary data records across domains and laboratories in one repository can empower researchers to reproduce already published analysis results as well as performing subsequent, advanced studies. eng ["disciplinary", "institutional"] {"size": "147 datasets", "updatedp": "2018-04-17"} 2014-07-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://edal-pgp.ipk-gatersleben.de/whatis.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "biodiversity", "bioinformatics", "genetic diversity", "phenotypic diversity", "plant genomics"] [{"institutionName": "German Network for Bioinformatics Infrastructure", "institutionAdditionalName": ["de.NBI"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.denbi.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Plant Phenotyping Network", "institutionAdditionalName": ["DPPN", "Deutsches Pflanzen Ph\u00e4notypisierungsnetzwerk"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dppn.de/dppn/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["a.kesseler@fz-juelich.de", "http://www.dppn.de/dppn/EN/Service/Impressum/impressum_node.html"]}, {"institutionName": "Leibniz Institute of Plant Genetics and Crop Plant Research", "institutionAdditionalName": ["IPK", "Leibniz-Institut f\u00fcr Pflanzengenetik und Kulturpflanzenforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ipk-gatersleben.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ipk-gatersleben.de/kontakt/adresse/"]}] [{"policyName": "License and Disclaimer", "policyURL": "http://edal-pgp.ipk-gatersleben.de/whatis.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://edal-pgp.ipk-gatersleben.de/whatis.html"}] restricted [{"dataUploadLicenseName": "Creative Commons Licenses", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}] ["other"] yes {"api": "http://edal.ipk-gatersleben.de/download.html", "apiType": "other"} ["DOI"] http://www.datacite.org.s3-website-eu-west-1.amazonaws.com/cite-your-data.html [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} This archive aims to provide data from the ʺsystem plantʺ - from the root to bloom and seed, as well from sequence analysis to systems biology. Plant Genomics and Phenomics Research Data Repository is part of e!DAL driven repositories https://edal.ipk-gatersleben.de/ 2015-11-04 2021-09-08 +r3d100011879 KNMI Data Platform eng [{"additionalName": "KDP", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: KDC", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: KNMI Data Centre", "additionalNameLanguage": "eng"}] https://dataplatform.knmi.nl/ [] ["licentiebureau@knmi.nl", "opendata@knmi.nl"] KDP has replaced the KNMI Data Centre (KDC), which was turned off on the 27th of July 2020. Not only a change of name, but also a transition to new technologies. Initially, the KDP will be more primitive than KDC. To fulfill future ambitions, a digital KNMI transformation has been initiated. Part of this transition is the development of a new KDP as a successor of the KDC. All data on the KNMI Data Platform is free to use. For some datasets a service agreement is available, which is indicated on the page of the dataset. The KNMI Data platform provides access to KNMI data on weather, climate and seismology. Here you will find KNMI data on various subjects such as the most recent 10-minute observations, historical series, data about meteorological measuring stations, model calculations, earthquake data and satellite products. In addition to KNMI datasets, we also make datasets from other parties available, such as ECMWF, ECOMET, EUMETSAT and WMO. eng ["disciplinary", "institutional"] {"size": "247 datasets", "updatedp": "2021-11-29"} ["eng", "nld"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://english.knmidata.nl/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climate", "earthquake", "historical weather data", "model forecast", "observations", "satellites", "seismology", "station", "weather foreasting"] [{"institutionName": "Koninklijk Nederlands Meteorologisch Instituut", "institutionAdditionalName": ["KNMI", "Royal Netherlands Meteorological Institute"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.knmi.nl/home", "institutionIdentifier": ["ROR:05dfgh554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.knmi.nl/over-het-knmi/contact/contactformulier", "licentiebureau@knmi.nl"]}] [{"policyName": "Open data policy", "policyURL": "https://english.knmidata.nl/open-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.nl"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://english.knmidata.nl/copyright"}] restricted [] ["unknown"] yes {"api": "https://developer.dataplatform.knmi.nl/apis/", "apiType": "NetCDF"} ["none"] [] yes unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} KNMI Data Centre is covered by Thomson Reuters Data Citation Index. 2015-11-10 2021-11-29 +r3d100011880 CIAT Dataverse spa [{"additionalName": "CIAT - International Center for Tropical Agriculture Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "CIAT Research Online", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/CIAT [] ["s.staiger@cgiar.org"] The International Center for Tropical Agriculture (CIAT), a member of the CGIAR Consortium, believes that open access contributes to its mission of reducing hunger and poverty, and improving human nutrition in the tropics through research aimed at increasing the eco-efficiency of agriculture. Research data produced by CIAT and its Partners is distributed freely whenever possible. Kindly note that these datasets require proper citation and citation information is included with the metadata for each dataset. eng ["institutional"] {"size": "3 dataverses; 84 datasets; 930 files", "updatedp": "2017-01-25"} ["eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://ciat.cgiar.org/about-us/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "agrobiodiversity", "climate change", "crop breeding", "crops and climate", "decision and policy analysis", "soil science", "soils"] [{"institutionName": "Consultative Group on International Agricultural Research", "institutionAdditionalName": ["CGIAR"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cgiar.org/", "institutionIdentifier": ["ROR:04c4bm785"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ciat@cgiar.org", "http://www.cgiar.org/contacts/"]}, {"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Center for Tropical Agriculture", "institutionAdditionalName": ["CIAT", "Centro Internacional de Agricultura Tropical"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ciat.cgiar.org/", "institutionIdentifier": ["ROR:037wny167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ciat.cgiar.org/contact-us"]}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [{"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2015-11-10 2021-10-25 +r3d100011883 Open Exoplanet Catalogue eng [] http://www.openexoplanetcatalogue.com/ [] ["exoplanet@hanno-rein.de"] The Open Exoplanet Catalogue is a catalogue of all discovered extra-solar planets. It is a new kind of astronomical database. It is decentralized and completely open. We welcome contributions and corrections from both professional astronomers and the general public. eng ["disciplinary"] {"size": "4.596 exoplanets", "updatedp": "2021-11-24"} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://github.com/OpenExoplanetCatalogue/open_exoplanet_catalogue/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["exoplanets", "histograms", "planetary systems", "planets", "solar systems"] [{"institutionName": "University of Toronto, Department of Physical and Environmental Sciences", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.utsc.utoronto.ca/physsci/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hanno.rein (-at-) utoronto.ca", "http://hanno-rein.de/"]}, {"institutionName": "github", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://github.com/", "institutionIdentifier": ["Wikidata:Q364"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://github.com/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] open [{"dataUploadLicenseName": "MIT License", "dataUploadLicenseURL": "https://opensource.org/licenses/MIT"}] [] yes {} [] https://github.com/OpenExoplanetCatalogue/open_exoplanet_catalogue/ [] yes unknown [] [] {} repository and software hosted at github https://github.com/OpenExoplanetCatalogue/open_exoplanet_catalogue/ . 2015-11-13 2021-11-24 +r3d100011890 Ag Data Commons eng [{"additionalName": "USDA\u2019s Open Research Data", "additionalNameLanguage": "eng"}] https://data.nal.usda.gov ["FAIRsharing_doi:10.25504/FAIRsharing.83wDfe"] ["NAL-ADC-Curator@usda.gov", "nino.chkhenkeli@usda.gov"] Ag Data Commons provides access to a wide variety of open data relevant to agricultural research. We are a centralized repository for data already on the web, as well as for new data being published for the first time. While compliance with the U.S. Federal public access and open data directives is important, we aim to surpass them. Our goal is to foster innovative data re-use, integration, and visualization to support bigger, better science and policy. eng ["disciplinary"] {"size": "3.098 datasets", "updatedp": "2021-03-12"} 2015-05-03 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20505 Nutritional Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.nal.usda.gov/about-ag-data-commons [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agroecosystem", "agronomy", "bioenergy", "earth sciences", "economic statistics", "environmental sciences", "genomics", "hydrology", "life cycle assessment", "science", "soil", "sustainability"] [{"institutionName": "United States Department of Agriculture, National Agricultural Library", "institutionAdditionalName": ["USDA, NAL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nal.usda.gov/main/", "institutionIdentifier": ["ROR:00z6b1508"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nal.usda.gov/main/contact-us"]}] [{"policyName": "Project Open Data - Open Data Policy", "policyURL": "https://project-open-data.cio.gov/"}, {"policyName": "Terms of Service", "policyURL": "https://data.nal.usda.gov/terms-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.usa.gov/publicdomain/label/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/fdl-1.3.html"}] restricted [{"dataUploadLicenseName": "Guidelines For Data Files", "dataUploadLicenseURL": "https://data.nal.usda.gov/guidelines-data-files"}] ["other"] yes {"api": "https://www.usda.gov/media/digital/developer-resources", "apiType": "other"} ["DOI", "other"] https://data.nal.usda.gov/terms-service ["ORCID"] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Ag Data Commons is covered by Clarivate Data Citation Index. data.gov, AGRIS, and others. The Ag Data Commons is a metadata repository that uses the Project Open Data v1.1 metadata schema and its metadata resources. 2015-11-24 2021-09-09 +r3d100011891 Lancaster University Research Directory eng [] http://www.research.lancs.ac.uk/portal/ [] ["https://www.lancaster.ac.uk/about-us/contact-us/", "rdm@lancaster.ac.uk"] Here you can find out more about Lancaster’s world-class research activities, view details of publications, outputs and awards and make contact with our researchers. eng ["institutional"] {"size": "505 datasets", "updatedp": "2021-11-25"} 2015-01-05 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.research.lancs.ac.uk/portal/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Lancaster University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lancaster.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lancaster.ac.uk/about-us/contact-us/"]}] [{"policyName": "ESRC Research Data Policy", "policyURL": "https://www.ukri.org/manage-your-award/publishing-your-research-findings/"}, {"policyName": "Research Data Management - Policy and Signposting", "policyURL": "https://www.lancaster.ac.uk/library/research-data-management/research-data-management-policy/#"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "http://opendatacommons.org/"}] restricted [] ["unknown"] no {} ["DOI"] ["none"] yes yes [] [] {"syndication": "http://www.research.lancs.ac.uk/portal/en/datasets/search.rss", "syndicationType": "RSS"} 2015-11-25 2021-11-25 +r3d100011894 Synapse eng [] https://www.synapse.org ["FAIRsharing_DOI:10.25504/FAIRsharing.dnxzmk", "RRID:SCR_006307", "RRID:nlx_151983"] ["synapseinfo@sagebase.org"] Synapse is an open source software platform that clinical and biological data scientists can use to carry out, track, and communicate their research in real time. Synapse enables co-location of scientific content (data, code, results) and narrative descriptions of that work. eng ["other"] {"size": "", "updatedp": ""} 2012-05-22 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20106 Developmental Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://sagebionetworks.org/tools_resources/synapse-platform/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AMP-AD Knowledge Portal", "DREAM Challenges", "GitHub", "NF Data Portal", "TCGA Pan-Cancer Working Group", "biomedicine", "query structured data", "record provenance", "research communities"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact/"]}, {"institutionName": "Children's Tumor Foundation", "institutionAdditionalName": ["CTF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ctf.org/", "institutionIdentifier": ["ROR:01hx92781"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ctf.org"]}, {"institutionName": "Life Sciences Discovery Fund", "institutionAdditionalName": ["LSDF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.lsdfa.org/", "institutionIdentifier": ["ROR:05tzak412"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lsdfa.org/lsdf/staff_and_office"]}, {"institutionName": "Sage Bionetworks", "institutionAdditionalName": ["Sage"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sagebionetworks.org/", "institutionIdentifier": ["ROR:049ncjx51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sagebase.org/contact/"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Heart, Lung and Blood Institute", "institutionAdditionalName": ["NIH, NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": ["ROR:012pb6c26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhlbi.nih.gov/about/contact"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Institute of Aging", "institutionAdditionalName": ["NIH, NIA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nia.nih.gov/contact"]}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health, National Institute of Mental Health", "institutionAdditionalName": ["NIH, NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["ROR:04xeg9z08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ctf.org"]}] [{"policyName": "Synapse Commons Governance Overview", "policyURL": "https://docs.synapse.org/articles/governance.html"}, {"policyName": "Synapse Terms and Conditions of Use", "policyURL": "https://s3.amazonaws.com/static.synapse.org/governance/SageBionetworksSynapseTermsandConditionsofUse.pdf?v=4"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://docs.synapse.org/articles/governance.html"}] restricted [] ["unknown"] yes {"api": "https://docs.synapse.org/rest/", "apiType": "REST"} ["DOI"] [] yes yes [] [] {} 2015-12-03 2021-11-16 +r3d100011896 THEREDA eng [{"additionalName": "Thermodynamic Reference Database", "additionalNameLanguage": "eng"}, {"additionalName": "Thermodynamische Referenz-Datenbasis", "additionalNameLanguage": "deu"}] https://www.thereda.de [] ["https://www.thereda.de/de/impressum"] THEREDA (Thermodynamic Reference Database) is a joint project dedicated to the creation of a comprehensive, internally consistent thermodynamic reference database, to be used with suitable codes for the geochemical modeling of aqueous electrolyte solutions up to high concentrations. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.thereda.de/en/thereda-projekt [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Pitzer interaction coefficients", "actinides", "cement", "chemical-toxic elements", "oceanic salts", "radio-toxic elements", "thermodynamic data"] [{"institutionName": "Bundesamt f\u00fcr Strahlenschutz", "institutionAdditionalName": ["BfS", "Federal Office for Radiation Protection"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bfs.de/DE/home/home_node.html", "institutionIdentifier": ["ROR:02yvd4j36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bfs.de/DE/service/kontakt/kontakt_node.html"]}, {"institutionName": "Gesellschaft f\u00fcr Anlagen- und Reaktorsicherheit", "institutionAdditionalName": ["GRS", "Global Research for Safety"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.grs.de/", "institutionIdentifier": ["ROR:03sj2jc05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["helge.moog@grs.de"]}, {"institutionName": "Helmholtz-Zentrum Dresden-Rossendorf", "institutionAdditionalName": ["HZDR"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.hzdr.de/db/Cms?pNid=0", "institutionIdentifier": ["ROR:01zy2cs03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["v.brendler@hzdr.de"]}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruher Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Nukleare Entsorgung", "institutionAdditionalName": ["KIT, INE", "Karlsruhe Institute of Technology, Institute for Nuclear Waste Disposal"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ine.kit.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["marcus.altmaier@kit.edu"]}, {"institutionName": "Paul Scherrer Institut", "institutionAdditionalName": ["Institut Paul Scherrer", "PSI", "Paul Scherrer Institute"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.psi.ch/psi-home", "institutionIdentifier": ["ROR:03eh3y714"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Tres.thoenen@psi.ch"]}, {"institutionName": "Technische Universit\u00e4t Bergakademie Freiberg", "institutionAdditionalName": ["TU-BAF"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://tu-freiberg.de/", "institutionIdentifier": ["ROR:031vc2293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wolfgang.voigt@chemie.tu-freiberg.de"]}] [{"policyName": "Quality Management", "policyURL": "https://www.thereda.de/en/26-das-projekt/quality-management/19-qualitmanagement"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.thereda.de/en/datenschutzhinweis-disclaimer"}] restricted [] ["unknown"] yes {} [] [] yes yes [] [] {} 2015-12-07 2020-08-26 +r3d100011898 UWA Profiles and Research Repository eng [{"additionalName": "UWA Research Repository", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: RDO", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Research Data Online", "additionalNameLanguage": "eng"}] https://research-repository.uwa.edu.au/ [] ["help-repository@uwa.edu.au", "kate.croker@uwa.edu.au", "katina.toufexis@uwa.edu.au"] The UWA Profiles and Research Repository contains research publications, research datasets, theses, equipment, grants and activities created by researchers and postgraduates affiliated with the University of Western Australia (UWA). It is managed by the University Library and provides access to research datasets held at UWA. The information about each dataset has been provided by UWA research groups. Dataset metadata is harvested into Research Data Australia (RDA) https://researchdata.edu.au/. eng ["institutional"] {"size": "807 datasets", "updatedp": "2021-01-05"} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.library.uwa.edu.au/__data/assets/pdf_file/0003/2778114/University-Library-Strategic-Directions-2015-2020.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Western Australia, University Library", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uwa.edu.au/library/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uwa.edu.au/library/help-and-support/contact"]}] [{"policyName": "University Policy on: Code of Conduct", "policyURL": "https://www.uwa.edu.au/policy/home#Code"}, {"policyName": "University Policy on: Sustainability", "policyURL": "https://www.uwa.edu.au/policy/home#Sustainability"}, {"policyName": "University policies", "policyURL": "https://www.uwa.edu.au/policy/home"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.uwa.edu.au/library/help-and-support/support-for-uwa-researchers/uwa-profiles-and-research-repository-support-and-faqs#8_0"}] restricted [{"dataUploadLicenseName": "UWA Research Repository Guidelines for Submitters", "dataUploadLicenseURL": "https://www.uwa.edu.au/library/-/media/UWA-Library/Documents/Support-and-FAQs-for-UWA-Profiles-and-Repository/Research-Datasets/Guidelines-For-Use-2018-03-22.pdf"}] ["other"] no {} ["DOI"] https://www.uwa.edu.au/library/help-and-support/copyright-at-uwa [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The University Library has migrated all research datasets which were held in Research Data Online (RDO) to the UWA Research Repository. 2015-12-11 2021-01-05 +r3d100011900 Forschungsdatenzentrum PIAAC bei GESIS deu [{"additionalName": "FDZ PIAAC", "additionalNameLanguage": "deu"}, {"additionalName": "RDC PIAAC", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Center PIAAC at GESIS", "additionalNameLanguage": "eng"}] https://www.gesis.org/en/piaac/rdc/ ["doi:10.4232/1.12660"] ["info@gesis.org"] The Research Data Centre PIAAC grants scientifically interested users access to the German and international data of the Programme for the Assessment of Adult Competencies (PIAAC). The first wave of PIAAC was conducted in 2011 and 2012, initiated by the OECD. The survey was based on a representative population sample. First, a computer assisted interview was conducted, which was followed by a competency assessment, usually performed on the computer. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/piaac/piaac-home/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Problem Solving in Technology Rich Environments", "competencies in later life - CiLL", "literacy", "numeracy", "reading components"] [{"institutionName": "GESIS \u2013 Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home/", "institutionIdentifier": ["ROR:018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Programme for the International Assessment of Adult Competencies", "institutionAdditionalName": ["OECD Survey of Adult Skills", "PIAAC"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.oecd.org/skills/piaac/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oecd.org/skills/piaac/piaaccontactinformation.htm"]}] [{"policyName": "Erkl\u00e4rung zum Datenschutz und zur absoluten Vertraulichkeit \nIhrer Angaben bei pers\u00f6nlichen Interviews", "policyURL": "https://www.gesis.org/fileadmin/piaac/download/Datenschutzblatt_PIAAC_2011.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/piaac/download/Datenschutzblatt_PIAAC_2011.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/forschung/forschungsdatenmanagement/datenschutz-und-datensicherheit/"}] restricted [] [] no {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] yes yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} In addition to the primarily collected PIAAC data, there are additional para data available that will be provided to the scientific community. In Germany, PIAAC was also transferred into a panel, in which the respondents are surveyed over three consecutive years. Additionally, the national supplement study “Competencies in Later Life” (Cill) examines PIAAC among 66- to 80-year-olds. For the study on the relationship between skills and labor market prospects of low-skilled workers in Germany, additional data on 26- to 55-year-olds was collected. Both studies offer further potential for analyses. 2015-12-22 2021-11-10 +r3d100011901 Forschungsdatenzentrum des Deutschen Jugendinstituts deu [{"additionalName": "DJI Forschungsdatenbank", "additionalNameLanguage": "deu"}, {"additionalName": "FDZ DJI", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Center of the German Youth Institute", "additionalNameLanguage": "eng"}] https://surveys.dji.de [] ["fdz@dji.de", "https://surveys.dji.de/index.php?m=mlp,0&jumpin=re3data.org&#k"] The German Youth Institute is a leading non-university research institute. Since 1988, empirical studies about the growing up of children and young people and to life situations of adults and families were regularly conducted. The Research Data Centre is part of the department "Social Monitoring." It processes the data and provides data access for secondary analysis. eng ["disciplinary"] {"size": "", "updatedp": ""} 1986 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ratswd.de/fdz-dji [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Growing up in Germany - AID:A", "childcare study - KiF\u00f6G", "children panel", "family surveys", "political participation", "transition panel", "youth surveys"] [{"institutionName": "Deutsches Jugendinstitut e.V.", "institutionAdditionalName": ["DJI", "German Youth Institute"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dji.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dji.de/ueber-uns/kontakt.html"]}] [{"policyName": "Daten\u00fcberlassungs- und Datennutzungsvereinbarung", "policyURL": "https://surveys.dji.de/index.php?m=mlp,0&#top"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://surveys.dji.de/index.php?m=mlp,0&#top"}] restricted [] ["unknown"] no {} ["DOI"] [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2015-12-22 2019-11-06 +r3d100011902 SFB 882 Forschungsdatenzentrum deu [{"additionalName": "CRC 882 RDC", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ SFB882 \"Von Heterogenit\u00e4ten zu Ungleichheiten\"", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre of the Collaborative Research Centre SFB 882 \"From heterogeneities to inequalities\"", "additionalNameLanguage": "eng"}] https://sfb882.uni-bielefeld.de/de/fdz-sfb882.html [] ["fdz.sfb882@uni-bielefeld.de", "office.sfb882@uni-bielefeld.de", "sliebig@uni-bielefeld.de"] >>>!!!<<< This is an archived site (as of 30 June 2016) >>>!!!<<< The Research Data Center (RDC) of the Collaborative Research Center 882 "From heterogeneities to inequalities" at Bielefeld University provides external scientists access to the research data generated in the CRC 882. It provides access to both qualitative and quantitative data from the field of inequality research. The CRC 882 RDC supports external researchers who are reusing the data, as well as gives advice on data documentation and anonymization procedures to the researchers of the CRC to ensure high data quality. The datasets include, for example, a panel on youth crime, different series of interviews on ethnicity, paternal life and recalls of employees, as well as other panels, interview data and experimental data. In the further course of the Collaborative Research Center the database will be expanded with the data of future projects. External scientists can make an application for the scientific use of CRC 882 Research Data. In accordance with data privacy requirements, the access will be organized via controlled remote data access or via on-site use. For this purpose, the RDC provides workplaces for guest researchers. eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-11-04 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://sfb882.uni-bielefeld.de/de/program.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Interviews on ethnicity", "Interviews to Paternal lifestyle", "Recalls of employers", "inequality research", "qualitative data", "quantiatitve data", "youth crime"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/service/kontakt/index.html"]}, {"institutionName": "Universit\u00e4t Bielefeld, Sonderforschungsbereich 882 \"Von Heterogenit\u00e4ten zu Ungleichheiten\"", "institutionAdditionalName": ["University Bielefeld, Collaborative Research Centre SFB 882 \u201cFrom Heterogeneities to Inequalities\u201d"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sfb882.uni-bielefeld.de/de.1.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sfb882.uni-bielefeld.de/de/contact.html"]}] [{"policyName": "Impressum", "policyURL": "https://sfb882.uni-bielefeld.de/de/imprint.html"}, {"policyName": "Qualit\u00e4tssicherung der vom Rat f\u00fcr Sozial- und Wirtschaftsdaten RatSWD) akkreditierten Forschungsdatenzentren (FDZ)", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.uni-bielefeld.de/%28en%29/Universitaet/impressum.html"}] restricted [] [] no {"api": "https://pub.uni-bielefeld.de/docs/api", "apiType": "other"} ["DOI"] https://pub.uni-bielefeld.de/download/2490155/2490156 [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2015-12-22 2021-08-24 +r3d100011903 Repository for Open Data (RepOD) eng [{"additionalName": "Repository for Open Data", "additionalNameLanguage": "eng"}, {"additionalName": "Repozytorium Otwartych Danych", "additionalNameLanguage": "pol"}] https://repod.icm.edu.pl/ ["RRID:SCR_014697"] ["repod@icm.edu.pl"] RepOD is a general-purpose repository for open research data, offering all members of the academic community in Poland the possibility to deposit their work. It is intended for scientific data from all disciplines of knowledge and in all formats. The purpose of RepOD is to create a place where research data can be safely stored and openly shared with others. eng ["other"] {"size": "140+ datasets", "updatedp": "2021-04-28"} 2015-10-01 ["eng", "pol"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://repod.icm.edu.pl/info/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Interdisciplinary Centre for Mathematical and Computational Modelling, The University of Warsaw", "institutionAdditionalName": ["Interdyscyplinarne Centrum Modelowania Matematycznego i Komputerowego Uniwersytetu Warszawskiego"], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://icm.edu.pl/", "institutionIdentifier": ["https://ror.org/039bjqg32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://icm.edu.pl/en/about-icm/contact/", "info@icm.edu.pl", "ul. Tyniecka 15/17, 02-630 Warszawa Poland"]}, {"institutionName": "Open Science Platform", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://pon.edu.pl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Preservation policy", "policyURL": "https://repod.icm.edu.pl/info/?page_id=354"}, {"policyName": "Terms of Use", "policyURL": "https://repod.icm.edu.pl/terms-of-use-page.xhtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/bsd-3-clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/licenses.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT-license"}] restricted [] ["DataVerse"] yes {"api": "https://repod.icm.edu.pl/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ISNI", "ORCID", "other"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2015-12-22 2021-04-28 +r3d100011904 Allele Frequency Net Database eng [{"additionalName": "AFND", "additionalNameLanguage": "eng"}, {"additionalName": "Allele Frequencies in Worldwide populations", "additionalNameLanguage": "eng"}] http://www.allelefrequencies.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.2cfr4z", "OMICS_20466", "RRID:SCR_007259", "RRID:nif-0000-30079"] ["support@allelefrequencies.net"] The Allele Frequency Net Database (AFND) is a public database which contains frequency information of several immune genes such as Human Leukocyte Antigens (HLA), Killer-cell Immunoglobulin-like Receptors (KIR), Major histocompatibility complex class I chain-related (MIC) genes, and a number of cytokine gene polymorphisms. The Allele Frequency Net Database (AFND) provides a central source, freely available to all, for the storage of allele frequencies from different polymorphic areas in the Human Genome. Users can contribute the results of their work into one common database and can perform database searches on information already available. We have currently collected data in allele, haplotype and genotype format. However, the success of this website will depend on you to contribute your data. eng ["disciplinary"] {"size": "138.757 (HLA), 6.118 (KIR), 4.226 (Cytokine) and 854 (MIC) from 10.529.880 individuals", "updatedp": "2019-01-09"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Human Leukocyte Antigens - HLA", "Killer-cell Immunoglobulin-like Receptors - KIR", "Major histocompatibility complex class I chain-related - MIC", "cytokine", "histocompatibility", "human genome", "immune genes", "immunogenetics", "population datasets", "transplantation"] [{"institutionName": "EUROSTAM project", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eurostam.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://eurostam.eu/contact/"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "The Royal Liverpool and Broadgreen University Hospitals NHS Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rlbuht.nhs.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Derek.Middleton@rlbuht.nhs.uk"]}, {"institutionName": "University of Liverpool", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Andrew.Jones@liv.ac.uk", "f.galarza@liv.ac.uk", "louiseyu@liv.ac.uk"]}] [{"policyName": "Quality of Data in AFND", "policyURL": "http://www.allelefrequencies.net/quality.asp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.allelefrequencies.net/faqs.asp"}] restricted [{"dataUploadLicenseName": "Submission of primary genotyping data", "dataUploadLicenseURL": "http://www.allelefrequencies.net/submit/Default.aspx"}] [] yes {} ["none"] http://www.allelefrequencies.net/publications.asp [] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} is covered by Elsevier. 2015-12-22 2021-09-02 +r3d100011905 Leiden Open Variation Database eng [{"additionalName": "LOVD", "additionalNameLanguage": "eng"}] https://www.lovd.nl/3.0/home ["FAIRsharing_doi:10.25504/FAIRsharing.21tjj7", "OMICS_00275", "RRID:SCR_006566", "RRID:nif-0000-02998"] ["https://www.lovd.nl/3.0/contact"] LOVD portal provides LOVD software and access to a list of worldwide LOVD applications through Locus Specific Database list and List of Public LOVD installations. The LOVD installations that have indicated to be included in the global LOVD listing are included in the overall LOVD querying service, which is based on an API. eng ["disciplinary"] {"size": "79 LOVD installations; 1.249.018.389 variants; 5.485.001 individuals individuals", "updatedp": "2019-01-10"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.lovd.nl/3.0/LOVD_flyer_2013-06-06.pdf [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["DNA variations", "biology", "gene databases", "gene transcripts"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/200754", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "2013", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en#contact"]}, {"institutionName": "Leiden University Medical Center", "institutionAdditionalName": ["Leids Universitair Medisch Centrum"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lumc.nl/", "institutionIdentifier": ["ROR:05xvt9f17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lumc.nl/over-het-lumc/contact/"]}] [{"policyName": "LOVD 3.0 User Manual", "policyURL": "https://www.lovd.nl/3.0/docs/LOVD_manual_3.0.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.lovd.nl/3.0/docs/LOVD_manual_3.0.pdf"}] restricted [] ["other"] yes {"api": "https://www.lovd.nl/3.0/docs/LOVD_manual_3.0.pdf", "apiType": "other"} ["none"] https://www.lovd.nl/3.0/faq#FAQ00 [] unknown unknown [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} LOVD is a Human Variome Project Recommended System. List of public LOVD installations: https://www.lovd.nl/3.0/public_list Please note that the latest available build is always installed on our Leiden server. 2015-12-22 2021-11-22 +r3d100011906 FungiDB eng [{"additionalName": "The Fungal and Oomycete Genomics Resource", "additionalNameLanguage": "eng"}] http://www.fungidb.org/fungidb/ ["FAIRsharing_doi:10.25504/FAIRsharing.xf30yc", "OMICS_03103", "RRID:SCR_006013", "RRID:nlx_151401"] ["http://fungidb.org/fungidb/app/contact-us"] FungiDB belongs to the EuPathDB family of databases and is an integrated genomic and functional genomic database for the kingdom Fungi. FungiDB was first released in early 2011 as a collaborative project between EuPathDB and the group of Jason Stajich (University of California, Riverside). At the end of 2015, FungiDB was integrated into the EuPathDB bioinformatic resource center. FungiDB integrates whole genome sequence and annotation and also includes experimental and environmental isolate sequence data. The database includes comparative genomics, analysis of gene expression, and supplemental bioinformatics analyses and a web interface for data-mining. eng ["disciplinary"] {"size": "294 datasets", "updatedp": "2019-01-10"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.About [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ChIP", "ChIP - chip", "DNA", "FAIR", "RNA", "gene metrics", "genome sequences", "isolates", "metabolic pathways", "microarray", "organisms", "proteomics", "quantitative proteomics", "reagents", "strains"] [{"institutionName": "Burroughs Wellcome Fund", "institutionAdditionalName": ["BWF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bwfund.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bwfund.org/contact"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "University of California, Department of Microbiology and Plant Pathology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://plantpathmicro.ucr.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jason.stajich@ucr.edu"]}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://andromeda.galib.uga.edu/contact/?Welcome&Welcome"]}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.upenn.edu/about/comments"]}] [{"policyName": "Data Access Policy", "policyURL": "http://www.fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.About"}, {"policyName": "NIAID/Division of Microbiology and Infectious Diseases (DMID) Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.opensource.org/licenses/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.About"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] restricted [{"dataUploadLicenseName": "Data Submission and Release on EuPathDB Databases", "dataUploadLicenseURL": "http://fungidb.org/EuPathDB_datasubm_SOP.pdf"}] ["unknown"] yes {"api": "http://www.fungidb.org/fungidb/serviceList.jsp", "apiType": "REST"} ["none"] http://www.fungidb.org/fungidb/showXmlDataContent.do?name=XmlQuestions.About#citing [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.fungidb.org/releases.rss", "syndicationType": "RSS"} is covered by Elsevier. Fungi DB is a EuPathDB Project. University of Pennsylvania is one of Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. 2015-12-22 2021-09-02 +r3d100011907 Mouse Tumor Biology Database eng [{"additionalName": "MTB Database", "additionalNameLanguage": "eng"}] http://tumor.informatics.jax.org/mtbwi/index.do ["OMICS_03765", "RRID:SCR_006517", "RRID:nif-0000-03163"] ["http://www.informatics.jax.org/mgihome/support/mgi_inbox.shtml", "mgi-help@jax.org"] The Mouse Tumor Biology (MTB) Database supports the use of the mouse as a model system of hereditary cancer by providing electronic access to: Information on endogenous spontaneous and induced tumors in mice, including tumor frequency & latency data, Information on genetically defined mice (inbred, hybrid, mutant, and genetically engineered strains of mice) in which tumors arise, Information on genetic factors associated with tumor susceptibility in mice and somatic genetic-mutations observed in the tumors, Tumor pathology reports and images, References, supporting MTB data and Links to other online resources for cancer. eng ["disciplinary"] {"size": "over 80.000 tumor frequency records", "updatedp": "2019-01-10"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://tumor.informatics.jax.org/mtbwi/userHelp.jsp;jsessionid=0E6D2555E69B02BF59C68909FF351FFE#data [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["cancer", "gene expression", "genetics", "hereditary cancer", "inbred mouse strain", "knock out mouse", "pathology", "tumor"] [{"institutionName": "Jackson Laboratory, Mouse Genome Informatics", "institutionAdditionalName": ["JAX", "MGI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jax.org/contact-jax"]}, {"institutionName": "Nartional Instiutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancer.gov/contact"]}] [{"policyName": "Warranty Disclaimer and Copyright Notice", "policyURL": "http://tumor.informatics.jax.org/mtbwi/copyright.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://tumor.informatics.jax.org/mtbwi/copyright.jsp"}] restricted [] ["unknown"] yes {"api": "http://www.informatics.jax.org/batch_data.shtml", "apiType": "FTP"} ["none"] http://tumor.informatics.jax.org/mtbwi/citation.jsp [] unknown yes [] [] {} related online resources, including: Mouse Genome Informatics (MGI), Mouse Phenome Database (MPD), JAX® Mice, NCI Mouse Repository. 2016-01-07 2021-07-20 +r3d100011908 Scientific Data Repository eng [{"additionalName": "Data Repository. Interactive Analytics, Exploration & Visualization.", "additionalNameLanguage": "eng"}, {"additionalName": "MLVIS", "additionalNameLanguage": "eng"}] http://mlvis.com/ [] ["online@purdue.edu"] A machine learning data repository with interactive visual analytic techniques. This project is the first to combine the notion of a data repository with real-time visual analytics for interactive data mining and exploratory analysis on the web. State-of-the-art statistical techniques are combined with real-time data visualization giving the ability for researchers to seamlessly find, explore, understand, and discover key insights in a large number of public donated data sets. This large comprehensive collection of data is useful for making significant research findings as well as benchmark data sets for a wide variety of applications and domains and includes relational, attributed, heterogeneous, streaming, spatial, and time series data as well as non-relational machine learning data. All data sets are easily downloaded into a standard consistent format. We also have built a multi-level interactive visual analytics engine that allows users to visualize and interactively explore the data in a free-flowing manner. eng ["disciplinary"] {"size": "220 datasets; 4 data collections", "updatedp": "2018-02-21"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://mlvis.com/ [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["healthcare", "interactive data visualization", "multidisciplinary", "statistical methods", "visual analytics"] [{"institutionName": "Purdue University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://purdue.edu", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["online@purdue.edu"]}] [{"policyName": "Notice and Disclaimer/Limitation of Liability", "policyURL": "http://mlvis.com/page_terms_disclaimer.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://networkrepository.com/policy.php"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://networkrepository.com/policy.php"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://networkrepository.com/policy.php"}] restricted [] ["CKAN"] no {} ["DOI"] http://networkrepository.com/policy.php# ["none"] yes yes [] [] {} 2016-01-07 2021-08-25 +r3d100011909 Sheffield Hallam University Research Data Archive eng [{"additionalName": "SHU Research Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "SHURDA", "additionalNameLanguage": "eng"}] http://shurda.shu.ac.uk [] ["e.verbaan@shu.ac.uk", "shurda@shu.ac.uk"] The Sheffield Hallam University Research Data Repository (SHURDA) is an institutional catalogue of digital and non-digital datasets that are produced by researchers at SHU and preserved at the University or elsewhere. eng ["institutional"] {"size": "5 datasets", "updatedp": "2016-01-07"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://shurda.shu.ac.uk/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Sheffield Hallam University", "institutionAdditionalName": ["SHU"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.shu.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.shu.ac.uk/contact/"]}] [{"policyName": "Research data management", "policyURL": "https://blogs.shu.ac.uk/libraryresearchsupport/manage/rdm/?doing_wp_cron=1519134044.6761410236358642578125"}, {"policyName": "Research data management policy", "policyURL": "https://www.shu.ac.uk/research/ethics-integrity-and-practice/research-data-management-policy"}, {"policyName": "SHURDA Policies", "policyURL": "http://shurda.shu.ac.uk/information.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://shurda.shu.ac.uk/information.html"}] restricted [] ["EPrints"] no {"api": "http://shurda.shu.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://shurda.shu.ac.uk/cgi/latest_tool?output=RSS2", "syndicationType": "RSS"} The SHU Research Data Archive (SHURDA) is a repository for digital and non-digital research data produced by researchers at Sheffield Hallam University. SHURA (Sheffield Hallam University Research Archive) is an open access repository containing scholarly outputs and publications of researchers at Sheffield Hallam University. SHURDA uses Altmetric metrics. 2016-01-07 2018-02-20 +r3d100011910 Magnetics Information Consortium eng [{"additionalName": "MagIC", "additionalNameLanguage": "eng"}] https://www2.earthref.org/MagIC ["RRID:SCR_007098", "RRID:SciRes_000151", "RRID:nlx_154712", "biodbcore-001155"] ["https://www2.earthref.org/MagIC/contact", "njarboe@ucsd.edu"] The Magnetics Information Consortium (MagIC) improves research capacity in the Earth and Ocean sciences by maintaining an open community digital data archive for rock magnetic, geomagnetic, archeomagnetic (archaeomagnetic) and paleomagnetic (palaeomagnetic) data. Different parts of the website allow users access to archive, search, visualize, and download these data. MagIC supports the international rock magnetism, geomagnetism, archeomagnetism (archaeomagnetism), and paleomagnetism (palaeomagnetism) research and endeavors to bring data out of private archives, making them accessible to all and (re-)useable for new, creative, collaborative scientific and educational activities. The data in MagIC is used for many types of studies including tectonic plate reconstructions, geomagnetic field models, paleomagnetic field reversal studies, magnetohydrodynamical studies of the Earth's core, magnetostratigraphy, and archeology. MagIC is a domain-specific data repository and directed by PIs who are both producers and consumers of rock, geo, and paleomagnetic data. Funded by NSF since 2003, MagIC forms a major part of https://earthref.org which integrates four independent cyber-initiatives rooted in various parts of the Earth, Ocean and Life sciences and education. eng ["disciplinary"] {"size": "4.262 contributions", "updatedp": "2021-06-18"} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30201 Solid State and Surface Chemistry, Material Synthesis", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www2.earthref.org/MagIC/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["MagIC", "archeomagnetism", "geodynamics", "geomagnetism", "magnetic measurements", "magnetic reversals", "magnetohydrodynamics", "paleointensity", "paleomagnetism", "plate tectonics", "rock magnetism"] [{"institutionName": "EarthRef", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://earthref.org/#gsc.tab=0", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://earthref.org/contact.htm"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oregon State University, College of Earth, Ocean, and Atmospheric Sciences", "institutionAdditionalName": ["OSU-CEOAS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ceoas.oregonstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ceoas.oregonstate.edu/contact/"]}, {"institutionName": "UC San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["UCSD-SIO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://scripps.ucsd.edu/about/contact-us"]}] [{"policyName": "EarthRef Copyright Policy", "policyURL": "https://earthref.org/information/disclaimer.htm"}, {"policyName": "User and Data Policy", "policyURL": "https://earthref.org/MagIC/help:111/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] yes {} ["DOI"] [] yes yes [] [] {} 2016-01-08 2021-09-08 +r3d100011913 PAIN repository eng [{"additionalName": "Pain and Interoception Imaging Network Repository", "additionalNameLanguage": "eng"}] https://www.painrepository.org/repositories/ ["FAIRsharing_doi:10.25504/FAIRsharing.9fmyc7"] ["info@painrepository.org"] The PAIN Repository is a recently funded NIH initiative, which has two components: an archive for already collected imaging data (Archived Repository), and a repository for structural and functional brain images and metadata acquired prospectively using standardized acquisition parameters (Standardized Repository) in healthy control subjects and patients with different types of chronic pain. The PAIN Repository provides the infrastructure for storage of standardized resting state functional, diffusion tensor imaging and structural brain imaging data and associated biological, physiological and behavioral metadata from multiple scanning sites, and provides tools to facilitate analysis of the resulting comprehensive data sets. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.painrepository.org/repositories/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biology", "brain", "chronic pain", "diffusion tensor imaging, DTI", "fibromyalgia", "health problem", "interstitial cystitis", "irritable bowel syndrome", "neurology", "pain patient", "painful bladder syndrome", "physiology", "treatment", "vulvodynia"] [{"institutionName": "MAPP Research Network", "institutionAdditionalName": ["Multidisciplinary Approaches to Pelvic Pain Network"], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.mappnetwork.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Instititutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.niddk.nih.gov/Pages/contact-us.aspx"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Institutes of Health, National Center for Complementary and Alternative Medicine", "institutionAdditionalName": ["NCCAM"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nccih.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://nccih.nih.gov/tools/contact.htm"]}, {"institutionName": "National Institutes of Health, National Institute on Drug Abuse", "institutionAdditionalName": ["NIDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["https://www.drugabuse.gov/about-nida/contact-us"]}, {"institutionName": "University of California, Department of Medicine, Gail and Gerald Oppenheimer Family Center for Neurobiology of Stress", "institutionAdditionalName": ["UCLA OCNS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://uclacns.org/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["http://uclacns.org/about-cns/contact-us/", "http://uclacns.org/programs/pain-research-program/pain-repository/"]}] [{"policyName": "Membership Agreements", "policyURL": "https://www.painrepository.org/repositories/join-pain/membership-agreements/"}, {"policyName": "PAIN Repository Policies", "policyURL": "https://www.painrepository.org/repositories/join-pain/pain-repository-policies/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.painrepository.org/repositories/join-pain/data-sharing-agreements/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.painrepository.org/repositories/join-pain/data-use-agreements/"}] restricted [{"dataUploadLicenseName": "Confidentiality and Subject Protection", "dataUploadLicenseURL": "https://www.painrepository.org/repositories/join-pain/pain-repository-policies/"}] ["unknown"] {} [] https://www.painrepository.org/repositories/about/faq/ [] yes yes [] [{"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Although initially PAIN Repository data will be reserved for contributing members it is planned that the repository will be opened for wider access to all pain investigators after 3 years. Full access to qualified users will include acceptance of a Data Use Agreement and the submission of an online application form (including the investigator’s institutional affiliation and he proposed research to be conducted using PAIN data). Applications for PAIN data are reviewed by the PAIN Data Sharing and Publications Committee (PDSPC) to ensure investigator affiliation with a scientific or educational institution and on the basis of the proposed research. Incomplete applications or those without a clear research focus will not receive approval. 2016-01-21 2021-09-08 +r3d100011914 IDEAS eng [] https://ideas.repec.org/ [] ["https://ideas.repec.org/email.html", "repec@repec.org"] Welcome to the largest bibliographic database dedicated to Economics and available freely on the Internet. This site is part of a large volunteer effort to enhance the free dissemination of research in Economics, RePEc, which includes bibliographic metadata from over 1,800 participating archives, including all the major publishers and research outlets. IDEAS is just one of several services that use RePEc data. Authors are invited to register with RePEc to create an online profile. Then, anyone finding some of your research here can find your latest contact details and a listing of your other research. You will also receive a monthly mailing about the popularity of your works, your ranking and newly found citations. Besides that IDEAS provides software and public accessible data from Federal Reserve Bank. eng ["disciplinary", "institutional", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ideas.repec.org/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FRED data", "rankings"] [{"institutionName": "Federal Reserve Bank of St. Louis, Economic Research", "institutionAdditionalName": ["FRED"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://research.stlouisfed.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://research.stlouisfed.org/contactus/"]}, {"institutionName": "RePEc", "institutionAdditionalName": ["Research Papers in Economics"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://repec.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["repec@repec.org", "zimmermann@stlouisfed.org"]}] [{"policyName": "Get RePEc data", "policyURL": "https://ideas.repec.org/getdata.html"}, {"policyName": "Use of RePEc data", "policyURL": "http://repec.org/docs/RePEcDataUse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://research.stlouisfed.org/legal.html"}] restricted [] [] yes {"api": "ftp://ftp.repec.org/opt/amf/RePEc/", "apiType": "FTP"} ["DOI"] https://ideas.repec.org/ [] yes yes [] [] {} 2016-01-22 2019-01-10 +r3d100011915 Geothermal Data Repository eng [{"additionalName": "DOE Geothermal Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "GDR", "additionalNameLanguage": "eng"}] https://gdr.openei.org/ [] ["GDRHelp@ee.doe.gov"] The GDR is the submission point for all data collected from researchers funded by the U.S. Department of Energy's Geothermal Technologies Office. It was established to receive, manage, and make available all geothermal-relevant data generated from projects funded by the DOE Geothermal Technologies Office. This includes data from GTO-funded projects associated with any portion of the geothermal project life-cycle (exploration, development, operation), as well as data produced by GTO-funded research. eng ["disciplinary", "other"] {"size": "see https://gdr.openei.org/stats", "updatedp": "2021-08-02"} 2013-01-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://gdr.openei.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DOE", "Department of Energy", "NREL", "National Renewable Energy Lab", "exploration", "geochemistry", "geologic", "geological", "geology", "geophysics", "geothermal", "geothermal data", "groundwater", "hydrology", "well", "well data"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "OpenEI", "institutionAdditionalName": ["Open Energy Information"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://openei.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "U.S. Department of Energy's Geothermal Technologies Office", "institutionAdditionalName": ["DOE GTO"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/eere/geothermal/geothermal-energy-us-department-energy", "institutionIdentifier": ["ROR:00heb4d89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/eere/geothermal/geothermal-technologies-office-contacts-0"]}] [{"policyName": "Guidelines for Provision and Interchange of Geothermal Data Assets", "policyURL": "https://www.energy.gov/sites/prod/files/2016/02/f29/DataProvisionGuidelinesNGDS-GDR%202016_02_10%20Final.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://project-open-data.cio.gov/"}] restricted [] ["CKAN"] yes {"api": "https://www1.eere.energy.gov/geothermal/pdfs/ngds_data_provision_guidelines.pdf", "apiType": "NetCDF"} ["DOI"] https://openei.org/wiki/Help:Citations [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "other", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} OpenEI is growing into a global leader in the energy data realm - specifically analyses on renewable energy and energy efficiency. The platform is a wiki, similar to Wikipedia’s Wiki, with which many people are already familiar. Users can view, edit, and add data – and download data for free. We invite you to join our user community and get involved. With your help, we can provide the most current information needed to make informed decisions on energy, market investment, and technology development. Your data will also help create new businesses, build innovative tools and inspire new analyses. In addition to the Wiki, OpenEI provides a platform for sharing datasets. You can download data or upload your own, as well as rate and provide comments on the usefulness of the datasets. The GDR is one of many members of the Energy Department’s National Geothermal Data System (NGDS), which provides free access to millions of records of geothermal research and site demonstration data. As of July 2021, the GDR has 4,902 total resources, 19,434 total files, and 322.38 TB of submitted data residing within 958 publicly available submissions. The most up to date data statistics for the GDR can be found at: https://gdr.openei.org/stats 2016-01-22 2021-08-02 +r3d100011922 CLARIN.SI repository eng [{"additionalName": "Slovenian CLARIN repository", "additionalNameLanguage": "eng"}] https://www.clarin.si/repository/xmlui/ [] ["info@clarin.si.", "tomaz.erjavec@ijs.si"] CLARIN.SI is the Slovenian node of the European CLARIN (Common Language Resources and Technology Infrastructure) Centers. The CLARIN.SI repository is hosted at the Jožef Stefan Institute and offers long-term preservation of deposited linguistic resources, along with their descriptive metadata. The integration of the repository with the CLARIN infrastructure gives the deposited resources wide exposure, so that they can be known, used and further developed beyond the lifetime of the projects in which they were produced. Among the resources currently available in the CLARIN.SI repository are the multilingual MULTEXT-East resources, the CC version of Slovenian reference corpus Gigafida, the morphological lexicon Sloleks, the IMP corpora and lexicons of historical Slovenian, as well as many other resources for a variety of languages. Furthermore, several REST-based web services are provided for different corpus-linguistic and NLP tasks. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng", "slv"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40705 Human Factors, Ergonomics, Human-Machine Systems", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.clarin.si/repository/xmlui/page/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["computer science", "corpora", "digital language data", "grammars", "language models", "language technology", "linguistics"] [{"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium", "ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN.SI", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure, Slovenia", "Slovenska raziskovalna infrastruktura za jezikovne vire in tehnologije"], "institutionCountry": "SVN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.si/info/about/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Jo\u017eef Stefan Institute", "institutionAdditionalName": ["IJS", "Institut \"Jo\u017eef Stefan\""], "institutionCountry": "SVN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ijs.si/ijsw/V001/JSI", "institutionIdentifier": ["ROR:05060sz93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ijs.si/ijsw/People%2C%20contacts"]}, {"institutionName": "Ministry of Education, Science and Sport", "institutionAdditionalName": ["Ministrstvo za izobra\u017eevanje, znanost in \u0161port"], "institutionCountry": "SVN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.si/en/state-authorities/ministries/ministry-of-education-science-and-sport/", "institutionIdentifier": ["ROR:05tahaz79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gp.mizs@gov.si"]}] [{"policyName": "CLARIN standard recommendations", "policyURL": "https://www.clarin.eu/node/2320"}, {"policyName": "CLARIN.SI Repository and its Policies", "policyURL": "https://www.clarin.si/repository/xmlui/page/about"}, {"policyName": "CoreTrustSealAssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/09/CLARIN.SI_.pdf"}, {"policyName": "How to deposit", "policyURL": "https://www.clarin.si/repository/xmlui/page/deposit"}, {"policyName": "Terms of service", "policyURL": "https://www.clarin.si/repository/xmlui/page/terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://opensource.org/licenses/Apache-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/?lang=en"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.si/repository/xmlui/page/licenses"}] restricted [{"dataUploadLicenseName": "Distribution agreement", "dataUploadLicenseURL": "https://www.clarin.si/repository/xmlui/page/contract"}] ["DSpace"] yes {"api": "http://www.clarin.si/repository/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] https://www.clarin.si/repository/xmlui/page/cite [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {"syndication": "https://www.clarin.si/repository/xmlui/feed/rss_2.0/site", "syndicationType": "RSS"} Partners: http://www.clarin.si/info/partners/ The repository runs under the LINDAT/DSpace platform (available on GitHub), used by, and originaly developed for the Czech LINDAT/CLARIN repository at UFAL. In May CLARIN.SI, after many years, also joined CLARIN ERIC, becoming its 14th member. 2016-01-26 2021-03-24 +r3d100011923 VRP-REP eng [{"additionalName": "Vehicle routing problem repository", "additionalNameLanguage": "eng"}] http://www.vrp-rep.org [] ["admin@vrp-rep.org", "http://www.vrp-rep.org/contact.html"] The vehicle routing problem repository (VRP-REP) is an open data platform for sharing instances and solutions for vehicle routing problems. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.vrp-rep.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["operations research", "optimization", "vehicle routing problems"] [{"institutionName": "Univerisit\u00e9 Angers, Laboratoire Angevin de Recherche en Ing\u00e9nierie des Syst\u00e8me", "institutionAdditionalName": ["LARIS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://laris.univ-angers.fr/fr/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Angers", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.univ-angers.fr/fr/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.univ-angers.fr/fr/contact.html"]}, {"institutionName": "Universit\u00e9 Catholique de l'Ouest", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.uco.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["comm@uco.fr"]}, {"institutionName": "Universit\u00e9 Francois-Rabelais Tours", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.univ-tours.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.univ-tours.fr/infos-pratiques/contacts-1828.kjsp?RH=ACCUEIL_FR"]}, {"institutionName": "\u00c9cole des Mines de Nantes", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mines-nantes.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "VRP-REP FAQ", "policyURL": "http://www.vrp-rep.org/faq.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.opensource.org/licenses/mit-license.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.opensource.org/licenses/mit-license.php"}] restricted [] ["unknown"] yes {} ["none"] http://www.vrp-rep.org/faq.html [] yes unknown [] [] {} VRP-REP model files are hosted on Github https://github.com/VRP-REP/model 2016-01-27 2019-01-10 +r3d100011924 WorldWide Antimalarial Resistance Network eng [{"additionalName": "WWARN", "additionalNameLanguage": "eng"}] http://www.wwarn.org/ [] ["http://www.wwarn.org/contact", "info@wwarn.org"] The WorldWide Antimalarial Resistance Network (WWARN) is a collaborative platform generating innovative resources and reliable evidence to inform the malaria community on the factors affecting the efficacy of antimalarial medicines. Access to data is provided through diverse Tools and Resources: WWARN Explorer, Molecular Surveyor K13 Methodology, Molecular Surveyor pfmdr1 & pfcrt, Molecular Surveyor dhfr & dhps. eng ["disciplinary"] {"size": "186 clinical studies; 103 molecular studies", "updatedp": "2016-02-02"} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.wwarn.org/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ACT Artemisinine-based combination therapies", "NMFI Non-malarial febrile illness", "Plasmodium Vivax", "Plasmodium falciparum", "clinical trials", "drug quality", "malaria drug resistance", "medicine quality", "parasites"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@gatesfoundation.org"]}, {"institutionName": "ExxonMobil Foundation", "institutionAdditionalName": ["Exxon Mobil Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://corporate.exxonmobil.com/en/community/worldwide-giving/exxonmobil-foundation/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://corporate.exxonmobil.com/en/company/contact-us"]}, {"institutionName": "USAID", "institutionAdditionalName": ["United States Agency for International Development"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/", "institutionIdentifier": ["ROR:01n6e6j62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usaid.gov/comment"]}, {"institutionName": "United Kingdom, Department for International Development, UKaid", "institutionAdditionalName": ["DFID", "UK Aid"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.uk/international-development-funding/uk-aid-match", "institutionIdentifier": ["ROR:05rf29967"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["UKAidMatch@dfid.gov.uk"]}, {"institutionName": "University of Oxford, Centre for Tropical Medicine and Global Health, UK Centre", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tropicalmedicine.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tropicalmedicine.ox.ac.uk/about/contact", "philippe.guerin@wwarn.org"]}, {"institutionName": "World Health Organization, Special Programme for Research and Training in Tropical Diseases", "institutionAdditionalName": ["WHO, TDR"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.who.int/tdr/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.who.int/tdr/about/contact/en/"]}, {"institutionName": "WorldWide Antimalarial Resistance Network", "institutionAdditionalName": ["WWARN"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wwarn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publication policy", "policyURL": "http://www.wwarn.org/sites/default/files/attachments/documents/wwarn_publication_policy.pdf"}, {"policyName": "Terms of use", "policyURL": "http://www.wwarn.org/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.wwarn.org/terms-use"}] restricted [{"dataUploadLicenseName": "Terms of submission", "dataUploadLicenseURL": "http://www.wwarn.org/tools-resources/terms-submission"}] ["unknown"] {} ["none"] http://www.wwarn.org/sites/default/files/attachments/documents/wwarn_publication_policy.pdf [] unknown yes [] [] {} WWARN uses DMSAP - Data Management and Statistical Analytical Plan metadataStandards. 2016-01-29 2021-09-03 +r3d100011927 ECHO – Cultural Heritage Online eng [{"additionalName": "Open Access Infrastructure for a Future Web of Culture and Science", "additionalNameLanguage": "eng"}] http://echo.mpiwg-berlin.mpg.de/home [] ["echo@mpiwg-berlin.mpg.de", "rieger@mpiwg-berlin.mpg.de"] The ECHO initiative aims to create an infrastructure to bring cultural heritage on the Internet, and builds up a network of institutions, research projects and other users which provide content and technology for the common infrastructure, with the aim to enrich the "agora" and to create a future Web of Culture and Science. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "10801 History of Philosophy", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://echo.mpiwg-berlin.mpg.de/home/project [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary", "science history"] [{"institutionName": "ECHO Consortium", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://echo.mpiwg-berlin.mpg.de/home/project/pilotphase/partners", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Gesellschaft", "institutionAdditionalName": ["Max Planck Society"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/de", "institutionIdentifier": ["RRID:SCR_011366", "RRID:nlx_55250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpg.de/contact/requests"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Wissenschaftsgeschichte", "institutionAdditionalName": ["Max Planck Institute for the History of Science"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpiwg-berlin.mpg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpiwg-berlin.mpg.de/contact"]}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Charter of ECHO", "policyURL": "http://echo.mpiwg-berlin.mpg.de/policy/oa_basics/charter"}, {"policyName": "ECHO Open Access Policy", "policyURL": "http://echo.mpiwg-berlin.mpg.de/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [] ["unknown"] no {} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} 2016-02-01 2019-09-03 +r3d100011928 FAIRDOMHub eng [{"additionalName": "The SEEK datafiles", "additionalNameLanguage": "eng"}] https://fairdomhub.org/ ["FAIRsharing_doi:10.25504/fairsharing.nnvcr9", "OMICS_14213"] ["alan.r.williams@manchester.ac.uk", "support@fair-dom.org"] The FAIRDOMHub is built upon the SEEK software suite, which is an open source web platform for sharing scientific research assets, processes and outcomes. FAIRDOM (Web Site) will establish a support and service network for European Systems Biology. It will serve projects in standardizing, managing and disseminating data and models in a FAIR manner: Findable, Accessible, Interoperable and Reusable. FAIRDOM is an initiative to develop a community, and establish an internationally sustained Data and Model Management service to the European Systems Biology community. FAIRDOM is a joint action of ERA-Net EraSysAPP and European Research Infrastructure ISBE. eng ["disciplinary", "institutional"] {"size": "1.908 visible data files out of 3.026", "updatedp": "2020-12-11"} 2015-03 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://fair-dom.org/about-fairdom/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biotechnology", "metabolomics", "microbiology", "molecular biology", "proteomics", "systems biology", "transcriptomics"] [{"institutionName": "FAIRDOM", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://fair-dom.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://fair-dom.org/about-fairdom/contact-us/"]}, {"institutionName": "Heidelberg Institute for Theoretical Studies", "institutionAdditionalName": ["HITS", "Heidelberger Institut f\u00fcr Theoretische Studien"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.h-its.org/en/", "institutionIdentifier": ["ROR:01f7bcy98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wolfgang.mueller@h-its.org"]}, {"institutionName": "The University of Manchester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.manchester.ac.uk/", "institutionIdentifier": ["ROR:027m9bs27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["carole.goble@manchester.ac.uk"]}] [{"policyName": "SEEK user documentation", "policyURL": "https://docs.seek4science.org/help/user-guide/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://fair-dom.org/platform/seek/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://docs.seek4science.org/help/user-guide/licenses.html"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-by/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-odbl/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-pddl/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://seek.sysmo-db.org/presentations/205?version=2"}] restricted [{"dataUploadLicenseName": "FAIRDOM Commons for Systems Biology", "dataUploadLicenseURL": "https://seek.sysmo-db.org/presentations/205?version=2"}] ["other"] yes {} ["DOI"] https://fair-dom.org/publication/fairdomhub-a-repository-and-collaboration-environment-for-sharing-systems-biology-research/ ["ORCID"] unknown unknown [] [{"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} 2016-02-02 2020-12-11 +r3d100011929 AfDB Statistical Data Portal eng [{"additionalName": "Africa Information Highway", "additionalNameLanguage": "eng"}, {"additionalName": "African Development Bank Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "African Information Highway Portal", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Open data for Africa", "additionalNameLanguage": "eng"}] https://dataportal.opendataforafrica.org/ [] ["https://dataportal.opendataforafrica.org/rbbkmrc/contact-us"] The African Development Bank Group (AfDB) is committed to supporting statistical development in Africa as a sound basis for designing and managing effective development policies for reducing poverty on the continent. Reliable and timely data is critical to setting goals and targets as well as evaluating project impact. Reliable data constitutes the single most convincing way of getting the people involved in what their leaders and institutions are doing. It also helps them to get involved in the development process, thus giving them a sense of ownership of the entire development process. The AfDB has a large team of researchers who focus on the production of statistical data on economic and social situations. The data produced by the institution’s statistics department constitutes the background information in the Bank’s flagship development publications. Besides its own publication, the AfDB also finances studies in collaboration with its partners. The Statistics Department aims to stand as the primary source of relevant, reliable and timely data on African development processes, starting with the data generated from its current management of the Africa component of the International Comparison Program (ICP-Africa). The Department discharges its responsibilities through two divisions: The Economic and Social Statistics Division (ESTA1); The Statistical Capacity Building Division (ESTA2) eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataportal.opendataforafrica.org/qincldf/about-data-portal [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Africa", "agriculture", "business", "demographics", "food", "government", "health", "industry", "migration", "urbanization"] [{"institutionName": "African Development Bank Group", "institutionAdditionalName": ["AfDB Group", "Groupe de la BAD", "Groupe de la Banque africaine de d\u00e9veloppement"], "institutionCountry": "CIV", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.afdb.org/en/", "institutionIdentifier": ["ROR:05gqz0k77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.afdb.org/en/contact-us/"]}, {"institutionName": "Knoema", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://knoema.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://knoema.com/contact?returnUrl=%2Fatlas"]}, {"institutionName": "National Institute of Statistics - Tunisia", "institutionAdditionalName": ["INS", "Institut National de la Statistique - Tunisie"], "institutionCountry": "TUN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ins.tn/en/front", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["INS@ins.tn"]}] [{"policyName": "Knoema Terms of Use", "policyURL": "https://knoema.com/legal/termsofuse"}, {"policyName": "Terms of Use", "policyURL": "https://dataportal.opendataforafrica.org/legal/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataportal.opendataforafrica.org/legal/termsofuse"}] restricted [] ["unknown"] no {} ["none"] [] unknown yes [] [] {} Access to Open Data Portals within Africa: https://dataportal.opendataforafrica.org/ 2016-02-03 2021-09-03 +r3d100011931 Virus Pathogen Resource eng [{"additionalName": "ViPR", "additionalNameLanguage": "eng"}] https://www.viprbrc.org/brc/home.spg?decorator=vipr ["FAIRsharing_doi:10.25504/FAIRsharing.2qx8n8", "MIR:00000407", "OMICS_3087", "RRID:SCR_012983", "RRID:nif-0000-25312"] ["https://www.viprbrc.org/brc/problemReport.spg?decorator=vipr"] ViPR, the Virus Pathogen Resource, is a publicly available, NIAID-sponsored one-stop database and analysis resource that supports the research of viral pathogens in the NIAID Category A-C Priority Pathogen lists and those causing (re)emerging infectious diseases. ViPR integrates data from external sources (GenBank, UniProt, Immune Epitope Database, Protein Data Bank, etc.), direct submissions, and internal curation and analysis pipelines, and provides a suite of bioinformatics analysis and visualization tools to expedite virology research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.viprbrc.org/brcDocs/documents/ViPR_BROCHURE.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BLAST", "COVID-19", "Dengue", "Ebola", "Enterovirus D68", "Hepatitis C", "genes", "genomes", "host factor data", "immune epitopes", "influenza", "phylogenetic tree", "proteins", "sequence alignment", "sequence variation - SNP", "vaccine", "virus"] [{"institutionName": "J. Craig Venter Institute", "institutionAdditionalName": ["JCVI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jcvi.org//", "institutionIdentifier": ["ROR:049r1ts75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rscheuermann(AT)jcvi.org"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRCs"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "Northrop Grumman in Health IT", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.northropgrumman.com/cyber/northrop-grumman-in-health-it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.northropgrumman.com/who-we-are/contact-us/"]}, {"institutionName": "Vecna Technologies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vecna.com/", "institutionIdentifier": ["ROR:031r5nr48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@vecna.com"]}] [{"policyName": "NIAID Data Management and Sharing Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-guidelines"}, {"policyName": "NIH Data Sharing", "policyURL": "https://grants.nih.gov/policy/sharing.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/data-sharing-guidelines"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.viprbrc.org/brcDocs/documents/ViPR_BROCHURE.pdf"}] restricted [] ["unknown"] yes {} ["none"] https://www.viprbrc.org/brc/staticContent.spg?decorator=vipr&type=ViprInfo&subtype=Cite [] yes unknown [] [] {"syndication": "https://www.viprbrc.org/brc/rss.spg?method=rss&rssType=Releases&decorator=vipr", "syndicationType": "RSS"} Northrop Grumman is one of four Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. 2016-02-09 2021-09-08 +r3d100011932 Pathogen Portal eng [{"additionalName": "the Bioinformatics Resource Centers Portal", "additionalNameLanguage": "eng"}] https://github.com/cidvbi/PathogenPortal/wiki ["RRID:SCR_014603"] ["pathporthelp@vbi.vt.edu"] Pathogen Portal is a repository linking to the Bioinformatics Resource Centers (BRCs) sponsored by the National Institute of Allergy and Infectious Diseases (NIAID) and maintained by The Virginia Bioinformatics Institute. The BRCs are providing web-based resources to scientific community conducting basic and applied research on organisms considered potential agents of biowarfare or bioterrorism or causing emerging or re-emerging diseases. The Pathogen Portal supports and links to five Bioinformatics Resource Centers (BRCs). Each BRC specializes in a different group of pathogens, focusing on, but not limited to, pathogens causing (Re-)Emerging Infectious Diseases, and those in the NIAID Category A-C Priority Pathogen lists for biodefense research. The scope of the BRCs also includes Invertebrate Vectors of Human Disease. Pathogen Portal covers EuPathDB, IRD, PATRIC, VectorBase and ViPR. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["bacteria", "eukaryotic pathogen species", "genome", "host responses", "infectious diseases", "influenza virus", "viral families"] [{"institutionName": "Genome Sequencing Centers for Infectious Diseases", "institutionAdditionalName": ["GSCID"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://gcid.igs.umaryland.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases. Bioinformatics Resource Centers", "institutionAdditionalName": ["BRCs"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alison.yao@nih.gov"]}, {"institutionName": "Virginia Tech, Virginia Biocomplexity Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://biocomplexity.virginia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIAID/Division of Microbiology and Infectious Diseases (DMID) Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/systems-biology-consortium-resources-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/category"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/systems-biology-consortium-resources-data"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} 2016-02-10 2020-12-11 +r3d100011933 Kinsources.net eng [] https://www.kinsources.net/ ["ISSN 2495-9480"] ["annegf@college-de-france.fr", "https://www.kinsources.net/editorial/contact_us.xhtml"] Kinsources is an open and interactive platform to archive, share, analyze and compare kinship data used in scientific research. Kinsources is not just another genealogy website, but a peer-reviewed repository designed for comparative and collaborative research. The aim of Kinsources is to provide kinship studies with a large and solid empirical base. Kinsources combines the functionality of communal data repository with a toolbox providing researchers with advanced software for analyzing kinship data. The software Puck (Program for the Use and Computation of Kinship data) is integrated in the statistical package and the search engine of the Kinsources website. Kinsources is part of a research perspective that seeks to understand the interaction between genealogy, terminology and space in the emergence of kinship structures. Hosted by the TGIR HumaNum, the platform ensures both security and free access to the scientific data is validated by the research community. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.kinsources.net/editorial/about_Kinsources.xhtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["anthropology", "census", "ethnic", "genealogy", "history", "social network", "survey"] [{"institutionName": "CNRS", "institutionAdditionalName": ["Centre national de la recherche scientifique"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs.fr/en", "institutionIdentifier": ["ROR:02feahw73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre Roland Mousnier", "institutionAdditionalName": ["CRM"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.centrerolandmousnier.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.centrerolandmousnier.fr/214-2/"]}, {"institutionName": "Coll\u00e8ge de France", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.college-de-france.fr/site/college/index.htm", "institutionIdentifier": ["ROR:04ex24z53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.college-de-france.fr/site/pratique/index.htm"]}, {"institutionName": "Huma-Num", "institutionAdditionalName": ["La TGIR des humanit\u00e9s num\u00e9riques"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.huma-num.fr/informations-pratiques"]}, {"institutionName": "L'Agence Nationale de la Recherche", "institutionAdditionalName": ["ANR", "The French National Research Agency"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://anr.fr/", "institutionIdentifier": ["ROR:00rbzpz17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://anr.fr/fr/contact/nous-contacter/"]}, {"institutionName": "L'\u00c9cole des Hautes \u00c9tudes en Sciences Sociales", "institutionAdditionalName": ["EHESS"], "institutionCountry": "FRA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ehess.fr/fr", "institutionIdentifier": ["ROR:02d9dg697"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratoire de d\u00e9mographie et d'histoire sociale", "institutionAdditionalName": ["LaD\u00e9HiS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ladehis.ehess.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["parquet@ehess.fr"]}, {"institutionName": "Laboratoitre d'Anthropologie Sociale", "institutionAdditionalName": ["LAS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://las.ehess.fr/", "institutionIdentifier": ["ROR:05pm8ec76"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://las.ehess.fr/index.php?950"]}, {"institutionName": "Maison Arch\u00e9ologie & Ethnologie, Ren\u00e8-Ginouv\u00e8s, Laboratoire d\u2019Ethnologie et de Sociologie Comparative", "institutionAdditionalName": ["LESC"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lesc-cnrs.fr/fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Paris Ouest Nanterre La D\u00e9fense", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.parisnanterre.fr/", "institutionIdentifier": ["ROR:013bkhk48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.parisnanterre.fr/contacts/"]}, {"institutionName": "Universit\u00e9 de Paris-Sorbonne", "institutionAdditionalName": ["Lettres et civilisations", "Paris - Sorbonne University"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www-com.paris-sorbonne.fr/02_home_universite.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.kinsources.net/editorial/terms_of_use.xhtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "How to submit a dataset to Kinsources", "dataUploadLicenseURL": "https://www.kinsources.net/editorial/how_to_submit_a_dataset.xhtml"}] ["unknown"] {"api": "https://www.kinsources.net/editorial/terms_of_use.xhtml", "apiType": "OAI-PMH"} ["none"] https://www.kinsources.net/editorial/terms_of_use.xhtml ["none"] yes yes [] [] {"syndication": "https://www.kinsources.net/actulog/kinsources_news.xhtml", "syndicationType": "RSS"} 2016-02-11 2020-12-11 +r3d100011934 Natural Resources Conservation Service Soils eng [{"additionalName": "USDA NRCS Soils", "additionalNameLanguage": "eng"}, {"additionalName": "United States Department of Agriculture, Natural Resources Conservation Service Soils", "additionalNameLanguage": "eng"}] https://www.nrcs.usda.gov/wps/portal/nrcs/site/soils/home/ [] ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/contactus/"] Soils is part of the National Cooperative Soil Survey, an effort of Federal and State agencies, universities, and professional societies to deliver science-based soil information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nrcs.usda.gov/wps/portal/nrcs/detail/national/about/civilrights/?cid=stelprdb1043428 [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ecosystem", "soil biology", "soil quality", "soil survey", "soill health"] [{"institutionName": "National Information Technology Center, Data Center Operations", "institutionAdditionalName": ["NITC, DCO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ocio.usda.gov/about-ocio/data-center-operations-dco", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NITCServiceDesk@ocio.usda.gov"]}, {"institutionName": "United States Department of Agriculture, National Resources Conservation Service", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/site/national/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrcs.usda.gov/wps/portal/nrcs/main/national/contact/"]}] [{"policyName": "Policies, Manuals and Guidance", "policyURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/detailfull/national/about/civilrights/?cid=nrcs143_022466"}, {"policyName": "Policy and Procedure", "policyURL": "https://www.nrcs.usda.gov/wps/portal/nrcs/main/soils/ref/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usda.gov/policies-and-links"}] closed [] ["unknown"] yes {} [] https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcs142p2_053368 [] unknown yes [] [] {"syndication": "https://www.usda.gov/rss-feeds", "syndicationType": "RSS"} 2016-02-16 2017-09-19 +r3d100011936 DEPOD eng [{"additionalName": "DEPhOsphorylation Database", "additionalNameLanguage": "eng"}] http://depod.bioss.uni-freiburg.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.q9j2e3", "MIR:00000428", "OMICS_05959"] ["eipod@embl.org"] DEPOD - the human DEPhOsphorylation Database (version 1.1) is a manually curated database collecting human active phosphatases, their experimentally verified protein and non-protein substrates and dephosphorylation site information, and pathways in which they are involved. It also provides links to popular kinase databases and protein-protein interaction databases for these phosphatases and substrates. DEPOD aims to be a valuable resource for studying human phosphatases and their substrate specificities and molecular mechanisms; phosphatase-targeted drug discovery and development; connecting phosphatases with kinases through their common substrates; completing the human phosphorylation/dephosphorylation network. eng ["disciplinary"] {"size": "241 human active and 13 inactive phosphatases in total; 194 phosphatases have substrate data; 336 protein substrates; 83 non-protein substrates; 1.215dephosphorylation interactions; 299 KEGG pathways; 876 Reactome pathways", "updatedp": "2020-12-11"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://depod.bioss.uni-freiburg.de/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "enzyme", "non-protein substrates", "phosphatase", "protein substrates", "proteomics"] [{"institutionName": "EMBL", "institutionAdditionalName": ["European Molecular Biology Laboratory"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.embl.org/", "institutionIdentifier": ["ROR:03mstc592"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.embl.de/aboutus/contact/index.html"]}, {"institutionName": "EMBL Hamburg, Wilmanns Group", "institutionAdditionalName": ["European Molecular Biology Laboratory Hamburg, Wilmanns Group"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.embl-hamburg.de/research/unit/wilmanns/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.embl-hamburg.de/aboutus/contact/index.html"]}, {"institutionName": "EMBL-EBI, Thornton group", "institutionAdditionalName": ["European Molecular Biology Laboratory, European Bioinformatics Institute, Thornton group"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/research/thornton", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/research/thornton/contact"]}, {"institutionName": "European Commission, Marie Sk\u0142odowska-Curie Actions", "institutionAdditionalName": ["Marie Sk\u0142odowska-Curie Actions"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/mariecurieactions/node_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/research/mariecurieactions/contact_en"]}, {"institutionName": "European Molecular Biology Laboratory, Interdisciplinary Postdocs initiative", "institutionAdditionalName": ["EIPOD", "EMBL, Interdisciplinary Postdocs initiative"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de/training/postdocs/08-eipod/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eipod@embl.org"]}, {"institutionName": "University of Freiburg, BIOSS Centre for Biological Signalling Studies, K\u00f6hn Group", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bioss.uni-freiburg.de/intergrated-signalling-studies/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bioss.uni-freiburg.de/de/prof-dr-maja-koehn/"]}] [{"policyName": "DEPOD User manual", "policyURL": "http://depod.bioss.uni-freiburg.de/manual.php"}, {"policyName": "Principles of Service Provision", "policyURL": "https://www.ebi.ac.uk/services"}, {"policyName": "Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [] ["unknown"] yes {} ["none"] http://depod.bioss.uni-freiburg.de/about.php#cite ["none"] yes yes [] [] {} DEPOD was started as a part of the collaborative project between three groups: the Thornton Group (EMBL-EBI, Hinxton, UK), the Köhn Group (Faculty of Biology and BIOSS, University of Freiburg) and the Wilmanns Group (EMBL, Hamburg, Germany). The database is currently maintained and updated by Dr. Guangyou Duan, IMIA net based solutions and Köhn Group (Faculty of Biology and BIOSS, University of Freiburg). 2016-02-17 2021-08-24 +r3d100011937 PPBio Data Repository eng [{"additionalName": "Programa de Pesquisa em Biodiversidade Repositorio de Dados", "additionalNameLanguage": "por"}, {"additionalName": "Reposit\u00f3rio de Dados de Levantamentos Biol\u00f3gicos", "additionalNameLanguage": "por"}] https://ppbiodata.inpa.gov.br/metacatui/ [] ["gestaoppbio.ne@gmail.com"] The Biodiversity Research Program (PPBio) was created in 2004 with the aims of furthering biodiversity studies in Brazil, decentralizing scientific production from already-developed academic centers, integrating research activities and disseminating results across a variety of purposes, including environmental management and education. PPBio contributes its data to the DataONE network as a member node: https://search.dataone.org/#profile/PPBIO eng ["disciplinary"] {"size": "609 data files; 512 metadata files", "updatedp": "2018-04-17"} ["eng", "por"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ppbio.inpa.gov.br [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Brazil", "Western Amazon", "animals", "biodiversity", "fungi", "plants"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org", "institutionIdentifier": ["ROR:00hr5y405"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "INCT Centro de Estudos Integrados da Biodiversidade Amazonica", "institutionAdditionalName": ["Centre for Amazonian Biodiversity Studies", "INCT CENBAM", "PPBio", "Programa de Pesquisa em Biodiversidade Amazonia Ocidental", "Western Amazonian Biodiversity Research Program"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ppbio.inpa.gov.br/en/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Long Term Ecological Research Network", "institutionAdditionalName": ["LTER"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lternet.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lternet.edu/contact-us/", "jbrunt@lternet.edu"]}] [{"policyName": "Politica de dados", "policyURL": "https://ppbio.inpa.gov.br/politicadados"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [{"dataUploadLicenseName": "Getting started", "dataUploadLicenseURL": "https://ppbiodata.inpa.gov.br/metacatui/about"}] ["other"] yes {} ["DOI", "URN"] https://ppbio.inpa.gov.br/repositorio/como_citar [] unknown unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} 2016-02-17 2020-12-11 +r3d100011939 Openresearchdata, Platform Switzerland eng [{"additionalName": "ORD@CH", "additionalNameLanguage": "eng"}] https://sis.id.ethz.ch/researchdatamanagement/service-ordch.html [] ["info@openresearchdata.ch"] <<< openresearchdata.ch has been discontinued !!! >>> Openresearchdata.ch (ORD@CH) has been developed as a publication platform for open research data in Switzerland. It currently offers a metadata catalogue of the data available at the participating institutions (ETH Zurich Scientific IT Services, FORS Lausanne, Digital Humanities Lab at the University of Basel). In addition, metadata from other institutions is continuously added, with the goal to develop a comprehensive metadata infrastructure for open research data in Switzerland. The ORD@CH project is part of the program „Scientific information: access, processing and safeguarding“, initiated by the Rectors’ Conference of Swiss Universities (Program SUC 2013-2016 P-2). The portal is currently hosted and developed by ETH Zurich Scientific IT Services. eng ["institutional"] {"size": "7.867 datasets", "updatedp": "2016-02-19"} 2015-05-01 ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Switzerland", "humanities", "life sciences", "metadata", "social sciences"] [{"institutionName": "ETH Z\u00fcrich Scientific ID Scientific IT Services", "institutionAdditionalName": ["ID SIS"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sis.id.ethz.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brinn@ethz.ch", "hluetcke@ethz.ch", "https://www.ethz.ch/services/de/it-services.htmlsis-leitung.html"]}, {"institutionName": "FORS", "institutionAdditionalName": ["Swiss Foundation for Research in Social Sciences"], "institutionCountry": "CHE", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://forscenter.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://forscenter.ch/en/contact/"]}, {"institutionName": "University of Basel, Digital Humanities Lab", "institutionAdditionalName": ["Digital Humanities Lab"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dhlab.unibas.ch/#/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dhlab.unibas.ch/#contact", "sekretariat-dhlab@unibas.ch"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"}] restricted [] ["CKAN"] yes {} ["none"] [] no yes [] [] {} The ORD@CH project is part of the program „Scientific information: access, processing and safeguarding“, initiated by the Rectors’ Conference of Swiss Universities (Program SUC 2013-2016 P-2), and runs from July 2014 to December 2015. From 2016 onwards, the platform is planned to be continued as a permanent metadata infrastructure for open research data in Switzerland. The legal information on the conditions of use (licenses) is noted directly in the individual datasets. The conditions of use are defined by the authors or researchers individually for each dataset. 2016-02-17 2018-09-17 +r3d100011940 Linguistic Data Consortium eng [{"additionalName": "LDC", "additionalNameLanguage": "eng"}] https://www.ldc.upenn.edu/ [] ["https://www.ldc.upenn.edu/about/contact-ldc", "ldc@ldc.upenn.edu"] The Linguistic Data Consortium (LDC) is an open consortium of universities, libraries, corporations and government research laboratories. It was formed in 1992 to address the critical data shortage then facing language technology research and development. Initially, LDC's primary role was as a repository and distribution point for language resources. Since that time, and with the help of its members, LDC has grown into an organization that creates and distributes a wide array of language resources. LDC also supports sponsored research programs and language-based technology evaluations by providing resources and contributing organizational expertise. LDC is hosted by the University of Pennsylvania and is a center within the University’s School of Arts and Sciences. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.ldc.upenn.edu/about/mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora", "dialectic comprehension", "language recognition", "lexicon", "name transliteration", "speech", "text"] [{"institutionName": "University of Pennsylvania", "institutionAdditionalName": ["UPENN"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": ["ROR:00b30xv10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.upenn.edu/about/comments"]}] [{"policyName": "For-Profit membership Agreement", "policyURL": "https://catalog.ldc.upenn.edu/license/ldc-for-profit-membership.pdf"}, {"policyName": "Government entity membership agreement", "policyURL": "https://catalog.ldc.upenn.edu/license/ldc-government-membership.pdf"}, {"policyName": "LDC User Agreement for non-members", "policyURL": "https://catalog.ldc.upenn.edu/license/ldc-non-members-agreement.pdf"}, {"policyName": "LDC online User Agreement", "policyURL": "https://catalog.ldc.upenn.edu/signup"}, {"policyName": "Not-For-Profit membership Agreement", "policyURL": "https://catalog.ldc.upenn.edu/license/ldc-not-for-profit-membership.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://catalog.ldc.upenn.edu/signup"}, {"dataLicenseName": "other", "dataLicenseURL": "https://catalog.ldc.upenn.edu/signup"}] restricted [] ["other"] no {} ["none"] https://www.ldc.upenn.edu/data-management/citing ["none"] yes yes ["other"] [] {"syndication": "https://www.ldc.upenn.edu/rss.xml", "syndicationType": "RSS"} The LDC catalog is freely available, LDC online offers different access levels, registration and fees are required. Organization users must register their organization with LDC or indicate their affiliation with an existing organization. 2016-02-18 2022-01-03 +r3d100011941 Center of Estonian Language Resources eng [{"additionalName": "CELR META-SHARE", "additionalNameLanguage": "eng"}, {"additionalName": "Eesti Keeleressursside Keskus", "additionalNameLanguage": "est"}] https://keeleressursid.ee/en/resources [] ["info@keeleressursid.ee"] The goal of the Center of Estonian Language Resources (CELR) is to create and manage an infrastructure to make the Estonian language digital resources (dictionaries, corpora – both text and speech –, various language databases) and language technology tools (software) available to everyone working with digital language materials. CELR coordinates and organises the documentation and archiving of the resources as well as develops language technology standards and draws up necessary legal contracts and licences for different types of users (public, academic, commercial, etc.). In addition to collecting language resources, a system will be launched for introducing the resources to, informing and educating the potential users. The main users of CELR are researchers from Estonian R&D institutions and Social Sciences and Humanities researchers all over the world via the CLARIN ERIC network of similar centers in Europe. Access to data is provided through different sites: Public Repository https://entu.keeleressursid.ee/public-document , Language resources https://keeleressursid.ee/en/resources/corpora, and MetaShare CELR https://metashare.ut.ee/ eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng", "est"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Estonian", "corpora", "transcripts"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Center of Estonian Language Resources", "institutionAdditionalName": ["CELR", "EKRK", "Eesti Keeleressursside Keskus"], "institutionCountry": "EST", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://keeleressursid.ee/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institute of the Estonian Language", "institutionAdditionalName": ["Eesti Keele Instituut"], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.eki.ee/", "institutionIdentifier": ["ROR:041dzw371"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "META-NORD", "institutionAdditionalName": ["Baltic and Nordic Parts of the European Open Linguistic Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.meta-net.eu/projects/meta-nord/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tallinn University of Technology, Institute of Cybernetics", "institutionAdditionalName": ["TT\u00dc k\u00fcberneetika instituut", "TUT, Institute of Cybernetics", "Tallinna Technika\u00dclikool, K\u00fcberneetika instituut"], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://old.taltech.ee/instituut/kuberneetika-instituut", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://old.taltech.ee/instituut/kuberneetika-instituut/kontakt-321/"]}, {"institutionName": "University of Tartu", "institutionAdditionalName": ["Tartu \u00dclikool"], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/en", "institutionIdentifier": ["ROR:03z77qz90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ut.ee/en/contact"]}] [{"policyName": "Metashare User manual", "policyURL": "https://metashare.ut.ee/site_media/documentation.pdf"}, {"policyName": "Terms and conditions - Keeleressursside arhiveerimine ja haldamine", "policyURL": "https://keeleressursid.ee/et/teenused/keeleressursside-arhiveerimine-ja-haldamine"}, {"policyName": "User rights application form - Kasutaja\u00f5iguste taotlusvorm", "policyURL": "http://kasutajataotlus.keeleressursid.ee/#/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "RL", "dataLicenseURL": "https://opensource.org/licenses/MS-RL"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/lgpl-3.0.de.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://keeleressursid.ee/et/teenused/ligipaasu-tagamine"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.eu/content/licenses-and-clarin-categories#aca"}] restricted [] ["unknown"] {} ["DOI", "hdl"] [] yes yes ["CLARIN certificate B", "other"] [] {} 2016-02-19 2020-12-11 +r3d100011942 Palynological Database eng [{"additionalName": "PalDat", "additionalNameLanguage": "eng"}, {"additionalName": "an online publication on recent pollen", "additionalNameLanguage": "eng"}] https://www.paldat.org/ [] ["https://www.paldat.org/contact", "info@paldat.org"] PalDat provides a large amount of data from a variety of plant families. Each data entry ideally includes a detailed description of the pollen grain, images of each pollen grain (LM, SEM and TEM), images of the plant/inflorescence/flower and relevant literature. eng ["disciplinary"] {"size": "30.874 pictures; 3.620 species; 1. 563 genera", "updatedp": "2020-12-14"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.paldat.org/info/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["palynology", "pollen", "taxonomy"] [{"institutionName": "Society for the Promotion of Palynological Research in Austria", "institutionAdditionalName": ["AutPal", "Verein zur F\u00f6rderung der palynologischen Forschung in \u00d6sterreich"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://autpal.jimdofree.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Vienna, Division of Structural and Functional Botany", "institutionAdditionalName": ["SFB", "Universit\u00e4t Wien, Abteilung f\u00fcr Strukturelle und Funktionelle Botanik"], "institutionCountry": "AUT", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sfb.univie.ac.at/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Conditions", "policyURL": "https://www.paldat.org/static/paldat_terms_of_condition_march_2015.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.paldat.org/static/paldat_terms_of_condition_march_2015.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.paldat.org/info/copyright"}] restricted [{"dataUploadLicenseName": "Terms of Conditions", "dataUploadLicenseURL": "https://www.paldat.org/static/paldat_terms_of_condition_march_2015.pdf"}] ["unknown"] {} ["none"] https://www.paldat.org/info/copyright ["none"] unknown unknown [] [] {} contributors: https://www.paldat.org/info/contributors 2016-02-19 2021-07-02 +r3d100011943 META-SHARE eng [] http://metashare.elda.org/ [] ["helpdesk-legal@meta-share.eu", "helpdesk-metadata@meta-share.eu", "helpdesk-technical@meta-share.eu"] META-SHARE, the open language resource exchange facility, is devoted to the sustainable sharing and dissemination of language resources (LRs) and aims at increasing access to such resources in a global scale. META-SHARE is an open, integrated, secure and interoperable sharing and exchange facility for LRs (datasets and tools) for the Human Language Technologies domain and other applicative domains where language plays a critical role. META-SHARE is implemented in the framework of the META-NET Network of Excellence. It is designed as a network of distributed repositories of LRs, including language data and basic language processing tools (e.g., morphological analysers, PoS taggers, speech recognisers, etc.). Data and tools can be both open and with restricted access rights, free and for-a-fee. eng ["disciplinary"] {"size": "2.933 language resources", "updatedp": "2020-12-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["corpora", "lexica", "speech"] [{"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "META-SHARE Managing Nodes", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.meta-share.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Meta-Net", "institutionAdditionalName": ["T4ME Net"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dfki.de/web/forschung/projekte-publikationen/projekte-uebersicht/projekt/meta-net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["georg.rehm@dfki.de"]}] [{"policyName": "META-SHARE Terms of Service", "policyURL": "http://metashare.elda.org/site_media/terms_of_service_non_reg.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [] ["other"] {} ["DOI"] [] yes yes [] [] {} 2016-02-22 2020-12-14 +r3d100011945 Research Data Leeds Repository eng [{"additionalName": "RDL Repository", "additionalNameLanguage": "eng"}] https://archive.researchdata.leeds.ac.uk/ ["FAIRsharing_DOI:10.25504/FAIRsharing.nhVgNw"] ["https://archive.researchdata.leeds.ac.uk/contact.html", "researchdataenquiries@leeds.ac.uk"] Research Data Leeds is the institutional research data repository for the University of Leeds. The service aims to facilitate data discovery and data sharing. The repository houses data generated by researchers at the University of Leeds. eng ["institutional"] {"size": "", "updatedp": ""} 2015-10-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://archive.researchdata.leeds.ac.uk/information.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Leeds", "multidisciplinary"] [{"institutionName": "University of Leeds", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.leeds.ac.uk/", "institutionIdentifier": ["ISN:0000000419368403", "ROR:024mrxd33", "RRID:SCR_004863", "RRID:nlx_34628"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Research Data Leeds researchdata@leeds.ac.uk"]}] [{"policyName": "Copyrights", "policyURL": "https://library.leeds.ac.uk/terms"}, {"policyName": "University open access policies", "policyURL": "https://library.leeds.ac.uk/info/14061/open_access/13/open_access_policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] restricted [] ["EPrints"] {"api": "http://archive.researchdata.leeds.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] https://library.leeds.ac.uk/info/1402/referencing [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://archive.researchdata.leeds.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2016-02-25 2021-11-16 +r3d100011947 University of Bath Research Data Archive eng [] https://researchdata.bath.ac.uk/ [] ["research-data@bath.ac.uk."] The University of Bath Research Data Archive was established in 2015 to make data supporting our research discoverable and accessible. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://researchdata.bath.ac.uk/information.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Bath", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bath.ac.uk/", "institutionIdentifier": ["ROR:002h8g185", "RRID:SCR_011606", "RRID:nlx_151619"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://www.bath.ac.uk/guides/contacting-the-university/"]}] [{"policyName": "Data access statements", "policyURL": "https://library.bath.ac.uk/research-data/archiving-and-sharing/data-access-statements"}, {"policyName": "Licensing", "policyURL": "https://library.bath.ac.uk/research-data/archiving-and-sharing/sharing-data"}, {"policyName": "Repository Policies", "policyURL": "https://researchdata.bath.ac.uk/protocols/"}, {"policyName": "Research Data Policy guidance", "policyURL": "https://www.bath.ac.uk/guides/research-data-policy-guidance/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/gpl-3.0.html"}] restricted [{"dataUploadLicenseName": "Data Deposit Agreement", "dataUploadLicenseURL": "https://researchdata.bath.ac.uk/protocols/data-deposit-agreement/"}] ["EPrints"] yes {"api": "https://researchdata.bath.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] https://researchdata.bath.ac.uk/information.html [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://researchdata.bath.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} University of Bath Research Data Archive is covered by Thomson Reuters Data Citation Index. 2016-03-07 2021-07-02 +r3d100011948 Project Tycho: Data for Health eng [] https://www.tycho.pitt.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.jnzrt", "RRID:SCR_010489", "RRID:nlx_157982"] ["https://www.tycho.pitt.edu/#contact", "tycho@phdl.pitt.edu"] Project Tycho is a repository for global health, particularly disease surveillance data. Project Tycho currently includes data for 92 notifiable disease conditions in the US, and up to three dengue-related conditions for 99 countries. Project Tycho has compiled data from reputable sources such as the US Centers for Disease Control, the World Health Organization, and National health agencies for countries around the world. Project Tycho datasets are highly standardized and have rich metadata to improve access, interoperability, and reuse of global health data for research and innovation. eng ["disciplinary"] {"size": "360 datasets", "updatedp": ""} 2013-11-28 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.tycho.pitt.edu/#about-us [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MMWR", "Morbidity Mortality Weekly Report", "chickenpox", "dengue", "disease", "infectious disease", "influenza", "measles", "mortality", "polio", "prevalence", "public health surveillance", "vaccination"] [{"institutionName": "Bill and Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gatesfoundation.org/Who-We-Are/General-Information/Contact-Us"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Pittsburgh", "institutionAdditionalName": ["Pitt, Health Sciences"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.pitt.edu/", "institutionIdentifier": ["ROR:01an3r305"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pittsom@pitt.edu"]}] [{"policyName": "License agreement", "policyURL": "https://www.tycho.pitt.edu/license/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.tycho.pitt.edu/license/"}] closed [] [] yes {"api": "https://www.tycho.pitt.edu/dataset/api", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2016-03-08 2020-12-14 +r3d100011950 Virtual Liver Network eng [{"additionalName": "Netzwerk Virtuelle Leber", "additionalNameLanguage": "deu"}, {"additionalName": "VLN", "additionalNameLanguage": "eng"}] https://seek.virtual-liver.de/data_files [] ["https://seek.virtual-liver.de/home/imprint"] The Virtual Liver Network (VLN) represents a major research investment by the German Government focusing on work at the “bleeding edge” of Systems Biology and Systems Medicine. This Flagship Programme is tackling one of the major challenges in the life sciences: that is, how to integrate the wealth of data we have acquired post-genome, not just in a mathematical model, but more importantly in a series of models that are linked across scales to represent organ function. As the project is prototyping how to achieve true multi-scale modelling within a single organ and linking this to human physiology, it will be developing tools and protocols that can be applied to other systems, helping to drive forward the application of modelling and simulation to modern medical practice. It is the only programme of its type to our knowledge that bridges investigations from the sub-cellular through to ethically cleared patient and volunteer studies in an integrated workflow. As such, this programme is contributing significantly to the development of a new paradigm in biology and medicine. eng ["disciplinary"] {"size": "43 items", "updatedp": "2016-03-14"} 2010-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://seek.virtual-liver.de/help/faq [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "body", "cell", "disease", "health", "homo sapiens", "lobule", "organ", "systems biology"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/de/kontakt.php"]}, {"institutionName": "Heidelberger Institut f\u00fcr Theoretische Studien", "institutionAdditionalName": ["HITS gGmbH", "Heidelberg Institute for Theoretical Studies"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.h-its.org/de/", "institutionIdentifier": ["ROR:01f7bcy98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Manchester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.manchester.ac.uk/", "institutionIdentifier": ["ROR:027m9bs27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.manchester.ac.uk/connect/contact-us/"]}] [{"policyName": "Guidelines", "policyURL": "https://seek.virtual-liver.de/help/index"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://github.com/biojs/biojs/blob/master/LICENSE"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] closed [] ["other"] {} ["none"] ["none"] yes unknown [] [] {} 2016-03-09 2021-07-02 +r3d100011951 Morph·D·Base eng [{"additionalName": "MDB", "additionalNameLanguage": "eng"}, {"additionalName": "Morph D Base", "additionalNameLanguage": "eng"}, {"additionalName": "MorphDBase", "additionalNameLanguage": "eng"}, {"additionalName": "Morphological Description Data Base", "additionalNameLanguage": "eng"}] http://info(at)zfmk.de [] ["info(at)zfmk.de"] Morph·D·Base has been developed to serve scientific research and education. It provides a platform for storing the detailed documentation of all material, methods, procedures, and concepts applied, together with the specific parameters, values, techniques, and instruments used during morphological data production. In other words, it's purpose is to provide a publicly available resource for recording and documenting morphological metadata. Moreover, it is also a repository for different types of media files that can be uploaded in order to serve as support and empirical substantiation of the results of morphological investigations. Our long-term perspective with Morph·D·Base is to provide an instrument that will enable a highly formalized and standardized way of generating morphological descriptions using a morphological ontology that will be based on the web ontology language (OWL - http://www.w3.org/TR/owl-features/). This, however, represents a project that is still in development. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006-02 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.morphdbase.de/#tab_purpose [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["fungi", "molecules", "morphology", "phylogenetics", "plantae", "specimen", "taxa"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn, University Computer Center", "institutionAdditionalName": ["Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn, Hochschul-Rechen-Zentrum", "hrz"], "institutionCountry": "DEU", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hrz.uni-bonn.de/english-information", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info-hrz@uni-bonn.de"]}, {"institutionName": "Zoological Research Institute and Museum Alexander Koenig", "institutionAdditionalName": ["ZFMK", "Zoologisches Forschungsmuseum Alexander Koenig"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.zfmk.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.zfmk.de/en/zfmk/contact"]}] [{"policyName": "Accession Rights, Copyright and Citation Policy of Morph\u00b7D\u00b7Base", "policyURL": "https://www.morphdbase.de/#tab_manual"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.morphdbase.de/#tab_imprint"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.morphdbase.de/#tab_manual"}] restricted [{"dataUploadLicenseName": "Copyright and Citation Policy of Morph\u00b7D\u00b7Base", "dataUploadLicenseURL": "https://www.morphdbase.de/#tab_manual"}] ["MySQL"] yes {} ["none"] https://www.morphdbase.de/#Help_Button [] yes unknown [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} The eScience-Compliant Standards for Morphology project is part of the ongoing projects of the online morphological data repository Morph·D·Base: http://escience.biowikifarm.net/wiki/ 2016-03-10 2021-05-20 +r3d100011956 CARIBIC eng [{"additionalName": "Civil Aircraft for the Regular Investigation of the atmosphere Based on an Instrument Container", "additionalNameLanguage": "eng"}] https://www.caribic-atmospheric.com/ [] ["andreas.zahn@kit.edu"] CARIBIC is an innovative scientific project to study and monitor important chemical and physical processes in the Earth´s atmosphere. Detailed and extensive measurements are made during long distance flights. We deploy an airfreight container with automated scientific apparatus which are connected to an air and particle (aerosol) inlet underneath the aircraft. We use an Airbus A340-600 from Lufthansa since December 2004. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.caribic-atmospheric.com/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["AIRBUS A340-600", "Atmospheric mercury cycle", "Carbon dioxide cycle", "Halocarbon research", "Hydrocarbon chemistry", "Meteorology", "Nitrogen oxide budget", "Optical measurements", "Water vapor and ozone climatologies", "aerosol particles", "aircraft emissions", "climate change", "earth's atmosphere", "greenhouse gases", "oxygen measurements", "reactive gases"] [{"institutionName": "Deutsche Lufthansa AG", "institutionAdditionalName": ["DLH"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lufthansa.com/de/en/homepage", "institutionIdentifier": ["ROR:05hp2t033"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt e.V", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt e.V, Institut f\u00fcr Physik der Atmosph\u00e4re", "institutionAdditionalName": ["DLR", "German Aerospace Center, Institute of Atmospheric Physics"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/pa/en/desktopdefault.aspx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hans.schlager@dlr.de"]}, {"institutionName": "Helmholtz-Zentrum hereon GmbH", "institutionAdditionalName": ["hereon"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hereon.de/index.php.en", "institutionIdentifier": ["ROR:03qjp1d79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ralf.ebinghaus@hereon.de"]}, {"institutionName": "IAGOS", "institutionAdditionalName": ["In-Service Aircraft for a Global Observing System"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iagos.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Joint Research Center, Institute for Reference Materials and Measurements", "institutionAdditionalName": ["JRC-IRMM"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://crm.jrc.ec.europa.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Sergey.ASSONOV@ec.europa.eu"]}, {"institutionName": "Karlsruhe Institute of Technology, Institute for Meteorology and Climate Research", "institutionAdditionalName": ["IMK", "KIT", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imk-asf.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["andreas.zahn@kit.edu"]}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/english/index.php", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratoire des Sciences du Climat et de l'Environnement", "institutionAdditionalName": ["LSCE"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lsce.ipsl.fr/", "institutionIdentifier": ["ROR:03dsd0g48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["irene.Xueref@cea.fr"]}, {"institutionName": "Leibniz Institute for Tropospheric Research", "institutionAdditionalName": ["Leibniz-Institut f\u00fcr Troposph\u00e4renforschung", "TROPOS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tropos.de/", "institutionIdentifier": ["ROR:03a5xsc56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hermann@tropos.de"]}, {"institutionName": "Max-Planck-Institute for Chemistry", "institutionAdditionalName": ["MPIC", "Max-Planck-Institut f\u00fcr Chemie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpic.de/2285/en", "institutionIdentifier": ["ROR:02f5b7n18"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["carl.brenninkmeijer@mpic.de"]}, {"institutionName": "Royal Netherlands Meteorological Institute", "institutionAdditionalName": ["KNMI", "Koninklijk Nederlands Meteorologisch Instituut"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.knmi.nl/over-het-knmi/about", "institutionIdentifier": ["ROR:05dfgh554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["velthove@knmi.nl"]}, {"institutionName": "Ruprecht-Karls-Universit\u00e4t Heidelberg, Institut f\u00fcr Umweltphysik", "institutionAdditionalName": ["IUP", "Ruprecht-Karls-Universit\u00e4t Heidelberg, Institute of Environmental Physics"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iup.uni-heidelberg.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ulrich.platt@iup.uni-heidelberg.de"]}, {"institutionName": "University of Bern, Climate and Environmental Physics", "institutionAdditionalName": ["CEP", "U-Bern"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.climate.unibe.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["leuenberger@climate.unibe.ch"]}, {"institutionName": "University of East Anglia, Laboratory for Global Marine and Atmospheric Chemistry", "institutionAdditionalName": ["UEA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uea.ac.uk/about/school-of-environmental-sciences/research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["D.E.Oram@uea.ac.uk"]}, {"institutionName": "University of Lund, Nuclear Physics", "institutionAdditionalName": ["Lunds Universitetet, K\u00e4rnfysik"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nuclear.lu.se/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Bengt.martinsson@nuclear.lu.se"]}] [{"policyName": "CARIBIC DATA PROTOCOL", "policyURL": "https://www.caribic-atmospheric.com/downloads/DataProtocolCARIBIC_2019.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.caribic-atmospheric.com/downloads/DataProtocolCARIBIC_2019.pdf"}] restricted [] ["unknown"] yes {} ["DOI"] https://datacite.org/cite-your-data.html ["none"] yes unknown [] [] {} Public access to the data will be given three years after the end of the year in which the data were measured. The data sets are and remain password protected. A list of all CARIBIC Phase 1 (1997 - 2002) flights / "Experiments"as well as corresponding ECMWF meteorological parameters by KNMI are available at: https://cera-www.dkrz.de/WDCC/ui/cerasearch/ 2016-03-29 2021-04-06 +r3d100011957 Network for the Detection of Atmospheric Composition Change eng [{"additionalName": "NDACC", "additionalNameLanguage": "eng"}] http://www.ndaccdemo.org/ [] ["https://www.ndsc.ncep.noaa.gov/mail_admin/"] The Network for the Detection of Atmospheric Composition Change (NDACC), a major contributor to the worldwide atmospheric research effort, consists of a set of globally distributed research stations providing consistent, standardized, long-term measurements of atmospheric trace gases, particles, spectral UV radiation reaching the Earth's surface, and physical parameters, centered around the following priorities. eng ["disciplinary"] {"size": "", "updatedp": ""} 1991 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ndsc.ncep.noaa.gov/organize/ [{"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmopsheric trace gases", "atmospheric methane", "particles", "tropospheric ozone", "uv radiation"] [{"institutionName": "Belgian Institute for Space Aeronomy", "institutionAdditionalName": ["BIRA-IASB"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://accsatellites.aeronomie.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jean-christopher.lambert at aeronomie.be"]}, {"institutionName": "EubrewNet", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.eubrewnet.org/cost1207/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eubrewnet@aemet.es"]}, {"institutionName": "German Weather Service, Meteorological Observatory Hohenpeissenberg", "institutionAdditionalName": ["DWD"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dwd.de/EN/research/observing_atmosphere/composition_atmosphere/hohenpeissenberg/start_mohp_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wolfgang.steinbrecht@dwd.de"]}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute for Meteorology and Climate Research", "institutionAdditionalName": ["KIT IMK-ASF", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Meteorologie und Klimaforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imk-asf.kit.edu/english/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bjoern-martin.sinnhuber@kit.edu"]}, {"institutionName": "Koninklijk Belgisch Instituut voor Ruimte-Aeronomie", "institutionAdditionalName": ["BIRA-IASB", "Institut royal d'A\u00e9ronomie Spatiale de Belgique", "Royal Belgian Institute for Space Aeronomy"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aeronomie.be/", "institutionIdentifier": ["ROR:03vfw8w96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["michelv@oma.be"]}, {"institutionName": "NOAA National Weather Service", "institutionAdditionalName": ["NWS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.weather.gov/", "institutionIdentifier": ["ROR:00tgqzw13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Cooperation for Atmospheric Research, National Center for Atmospheric Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Berne", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unibe.ch/", "institutionIdentifier": ["ROR:02k7v4d05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["niklaus.kaempfer@iap.unibe.ch"]}, {"institutionName": "University of Wyoming", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uwyo.edu/atsc/", "institutionIdentifier": ["ROR:01485tq96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["deshler@uwyo.edu"]}, {"institutionName": "World Meteorological Organization, Dobson Forum", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.o3soft.eu/dobsonweb/welcome.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["stanek@chmi.cz"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.weather.gov/disclaimer"}, {"policyName": "NDACC Data Protocol", "policyURL": "https://www.ndsc.ncep.noaa.gov/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.weather.gov/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.weather.gov/disclaimer"}] restricted [] ["unknown"] {"api": "ftp://ftp.cpc.ncep.noaa.gov/ndacc/RD/", "apiType": "FTP"} ["none"] https://www.ndsc.ncep.noaa.gov/ ["none"] yes yes [] [] {} 2016-03-30 2021-04-01 +r3d100011958 HALO database eng [{"additionalName": "HALO-DB", "additionalNameLanguage": "eng"}, {"additionalName": "High Altitude and LOng Range database", "additionalNameLanguage": "eng"}] https://halo-db.pa.op.dlr.de/ ["biodbcore-001570"] ["halo-db [at] dlr.de"] HALO-DB is the web platform of a data retrieval and long-term archive system. The system was established to hold and to manage a wide range of data based on observations of the HALO research aircraft and data which are related to HALO observations. HALO (High-Altitude and LOng-range aircraft) is the new German research aircraft (German Science Community (DFG)). The aircraft, a Gulfstream GV-550 Business-Jet, is strongly modified for the application as a research platform. HALO offers several advantages for scientific campaigns, such as its high range of more than 10000 km, a high maximum altitude of more than 15 km, as well as a relatively high payload. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["climate", "cloud research", "earth observation", "geodesy", "geophysics", "global pollution", "missions", "polar research"] [{"institutionName": "Deutsches Zentrum fuer Luft- und Raumfahrt e. V.", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact-dlr [at] dlr.de"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HALO consortium", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://halo-db.pa.op.dlr.de/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.imk-asf.kit.edu/english/207.php", "institutionIdentifier": ["ROR:04t3en479", "RRID:SCR_001552", "RRID:nlx_48421"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["andreas.zahn@kit.edu"]}] [{"policyName": "Conventions", "policyURL": "https://halo-db.pa.op.dlr.de/conventions"}, {"policyName": "Terms and conditions", "policyURL": "https://halo-db.pa.op.dlr.de/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://halo-db.pa.op.dlr.de/license/3"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://halo-db.pa.op.dlr.de/terms"}] restricted [] ["unknown"] yes {"api": "https://halo-db.pa.op.dlr.de/format/20", "apiType": "NetCDF"} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} 2016-03-30 2021-11-17 +r3d100011959 TAMBORA eng [{"additionalName": "The climAte and environMental history collaBOrative ReseArch environment", "additionalNameLanguage": "eng"}, {"additionalName": "tambora.org", "additionalNameLanguage": "eng"}] https://www.tambora.org/ ["doi:10.6094/tambora.org"] ["michael.kahle@geographie.uni-freiburg.de", "ruediger.glaser@geographie.uni-freiburg.de"] The main focus of tambora.org is Historical Climatology. Years of meticulous work in this field in research groups around the world have resulted in large data collections on climatic parameters such as temperature, precipitation, storms, floods, etc. with different regional, temporal and thematic foci. tambora.org enables researchers to collaboratively interpret the information derived from historical sources. It provides a database for original text quotations together with bibliographic references and the extracted places, dates and coded climate and environmental information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tambora.org/index.php/site/page?view=about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["HISKLID", "Weikinn", "astronomical events", "climate", "flood marks", "geophysical events", "historial climatology", "precipitation", "storm", "temperature", "weather"] [{"institutionName": "Albert-Ludwigs-University Freiburg, Department of Physical Geography", "institutionAdditionalName": ["Albert-Ludwigs-Universit\u00e4t Freiburg, Institut f\u00fcr Umweltsozialwissenchaften und Geographie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.geographie.uni-freiburg.de/geostartpage?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.geographie.uni-freiburg.de/contact-info"]}, {"institutionName": "Albert-Ludwigs-University Freiburg, University Library", "institutionAdditionalName": ["Albert-Ludwigs-Universit\u00e4t Freiburg, Universit\u00e4tsbibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-freiburg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ub.uni-freiburg.de/kontakt/kontaktformular/"]}, {"institutionName": "Augsburg University, Institute of Geography", "institutionAdditionalName": ["Universit\u00e4t Augsburg, Institut f\u00fcr Geographie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geo.uni-augsburg.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@geo.uni-augsburg.de"]}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hochschule Esslingen", "institutionAdditionalName": ["University of Applied Sciences"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.hs-esslingen.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hs-esslingen.de/en/contact.html"]}, {"institutionName": "Leibniz Institute for Regional Geography", "institutionAdditionalName": ["IfL", "Leibniz-Institut f\u00fcr L\u00e4nderkunde"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ifl-leipzig.de/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ifl-leipzig.de/en/contact.html"]}] [{"policyName": "Terms of Site", "policyURL": "https://www.tambora.org/index.php/site/page?view=termsOfSite"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.tambora.org/index.php/site/page?view=termsOfSite"}] restricted [] ["Fedora"] no {"api": "https://www.tambora.org/index.php/visapi", "apiType": "REST"} ["DOI"] https://www.tambora.org/index.php/site/page?view=termsOfSite [] yes yes [] [] {} The system allows for the integration and sustainable storage of existing data collections, as well as the entry of new data. tambora.org already contains two large data collections (HISKLID and parts of Weikinn) and several smaller data collections. 2016-03-30 2019-01-21 +r3d100011961 POES Space Environment Monitor eng [{"additionalName": "POES/MetOp SEM", "additionalNameLanguage": "eng"}, {"additionalName": "Polar Orbiting Environmental Satellites", "additionalNameLanguage": "eng"}] https://www.ngdc.noaa.gov/stp/satellite/poes/index.html [] ["https://www.ngdc.noaa.gov/ngdcinfo/phone.html", "ncei.info@noaa.gov"] The POES satellite system offers the advantage of daily global coverage, by making nearly polar orbits 14 times per day approximately 520 miles above the surface of the Earth. The Earth's rotation allows the satellite to see a different view with each orbit, and each satellite provides two complete views of weather around the world each day. NOAA partners with the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT) to constantly operate two polar-orbiting satellites – one POES and one European polar-orbiting satellite called Metop. NOAA's Polar Orbiting Environmental Satellites (POES) carry a suite of instruments that measure the flux of energetic ions and electrons at the altitude of the satellite. This environment varies as a result of solar and geomagnetic activity. Beginning with the NOAA-15 satellite, an upgraded version of the Space Environment Monitor (SEM-2) has been flown. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998-07 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ngdc.noaa.gov/stp/satellite/poes/productinfo.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Medium Energy Proton and Electron Detector MEPED", "Total Energy Detector TED", "climate research", "forest fire detection", "geomagnetic activity", "global vegetation", "humidity", "ocean dynamic", "polar atmosphere", "solar activity", "solar-terrestrial physics", "space weather", "temperature", "volcanic eruption", "weather forecast"] [{"institutionName": "National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": ["ROR.04r0wrp59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncei.noaa.gov/contact"]}, {"institutionName": "National Environmental Satellite, Data and Information Service", "institutionAdditionalName": ["NESDIS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nesdis.noaa.gov/", "institutionIdentifier": ["ROR:007qwym43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nesdis.noaa.gov/about/contact-us"]}, {"institutionName": "National Oceanic and Atmospheric Administration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["ROR:02z5nhe81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.noaa.gov/contact-us"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ngdc.noaa.gov/ngdcinfo/privacy.html#copyright"}] closed [] ["unknown"] {"api": "ftp://satdat.ngdc.noaa.gov/sem/poes/", "apiType": "FTP"} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2016-04-06 2022-01-05 +r3d100011962 DataSTORRE eng [{"additionalName": "Stirling Online Repository for Research Data", "additionalNameLanguage": "eng"}] https://datastorre.stir.ac.uk/ [] ["repository.librarian@stir.ac.uk"] DataStorre is an online digital repository of multi-disciplinary research datasets produced at the University of Stirling. University of Stirling researchers who have produced research data associated with an existing or forthcoming publication, or which has potential use for other researchers, are invited to upload their dataset for sharing and safekeeping. A persistent identifier and suggested citation will be provided. eng ["institutional"] {"size": "118 results", "updatedp": "2022-01-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.stir.ac.uk/about/professional-services/information-services-and-library/current-students-and-staff/researchers/research-data/datastorre/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Stirling, Information Services", "institutionAdditionalName": ["University of Stirling, IS"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stir.ac.uk/about/professional-services/information-services-and-library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stir.ac.uk/about/contact-us/"]}] [{"policyName": "DataSTORRE Policies", "policyURL": "https://www.stir.ac.uk/media/stirling/services/internal/is/documents/DataSTORRE-Policies-GDPR.pdf"}, {"policyName": "UKRI Publishing your research findings", "policyURL": "https://www.ukri.org/manage-your-award/publishing-your-research-findings/making-your-research-data-open/"}, {"policyName": "https://www.stir.ac.uk/media/stirling/services/research/documents/DataSTORRE-deposit-Guide.pdf", "policyURL": "http://www.stir.ac.uk/media/services/is/DataSTORRE%20deposit%20guide%20final.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "DataSTORRE Deposit Guide", "dataUploadLicenseURL": "https://www.stir.ac.uk/media/stirling/services/research/documents/DataSTORRE-deposit-Guide.pdf"}] ["DSpace"] no {} ["hdl"] https://www.ukri.org/manage-your-award/publishing-your-research-findings/making-your-research-data-open/ [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://datastorre.stir.ac.uk/feed/atom_1.0/site", "syndicationType": "ATOM"} 2016-04-08 2022-01-17 +r3d100011965 Imperial College Research Computing Service Data Repository eng [] https://data.hpc.imperial.ac.uk/ ["FAIRsharing_doi:10.25504/FAIRsharing.LEtKjT"] ["h.rzepa@imperial.ac.uk", "w.peters@imperial.ac.uk"] A lightweight digital repository for data based on the concepts of collections of filesets. Both the collection and the fileset are assigned a DOI by the DataCite organisation which can be quoted in articles eng ["disciplinary", "institutional"] {"size": "10000 datasets", "updatedp": "2021-12-02"} 2016-01-07 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30101 Inorganic Molecular Chemistry", "scheme": "DFG"}, {"name": "30102 Organic Molecular Chemistry", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30201 Solid State and Surface Chemistry, Material Synthesis", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "30203 Theory and Modelling", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "30302 General Theoretical Chemistry", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "30401 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30501 Biological and Biomimetic Chemistry", "scheme": "DFG"}, {"name": "30502 Food Chemistry", "scheme": "DFG"}, {"name": "306 Polymer Research", "scheme": "DFG"}, {"name": "30601 Preparatory and Physical Chemistry of Polymers", "scheme": "DFG"}, {"name": "30602 Experimental and Theoretical Physics of Polymers", "scheme": "DFG"}, {"name": "30603 Polymer Materials", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.imperial.ac.uk/clinical-trials-unit/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["NMR Nuclear Magnetic Resonance", "mathematical", "medical", "scientific", "technical"] [{"institutionName": "Imperial College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imperial.ac.uk", "institutionIdentifier": ["ROR:041kmwe10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["m.j.harvey@imperial.ac.uk"]}] [{"policyName": "Policy guidance", "policyURL": "https://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/research-data-management/imperial-policy/guidance/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] [] yes {} ["DOI"] https://wiki.ch.ic.ac.uk/wiki/index.php?title=Rdm:data ["ORCID"] yes unknown [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} Imperial College High Performance Computing Service Data Repository is covered by Clarivate Data Citation Index. 2016-04-14 2021-12-02 +r3d100011966 coastDat eng [] https://www.coastdat.de/ [] ["ralf.weisse@hereon.de"] coastDat is a model based data bank developed mainly for the assessment of long-term changes in data sparse regions. A sequence of numerical models is employed to reconstruct all aspects of marine climate (such as storms, waves, surges etc.) over many decades of years relying only on large-scale information such as large-scale atmospheric conditions or bathymetry. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.coastdat.de/about_us/index.php.en [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["HIPOCAS", "Hindcast", "PELLETS-2D", "Re-analysis", "WASA"] [{"institutionName": "Deutsches Klimarechenzentrum GmbH", "institutionAdditionalName": ["DKRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.dkrz.de/dkrz-partner-for-climate-research?set_language=en&cl=en", "institutionIdentifier": ["ROR:03ztgj037"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dkrz.de/about-en/contact"]}, {"institutionName": "Helmholtz-Zentrum hereon GmbH", "institutionAdditionalName": ["hereon"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hereon.de/index.php.en", "institutionIdentifier": ["ROR:03qjp1d79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.coastdat.de/about_us/index.php.en"]}, {"institutionName": "International Council for Science, World Data System", "institutionAdditionalName": ["ICSU WDS", "ICSU World Data System"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.worlddatasystem.org/", "institutionIdentifier": ["Wikidata:Q17102557"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.worlddatasystem.org/contact-us"]}] [{"policyName": "Data Management stories at DKRZ", "policyURL": "https://www.dkrz.de/kommunikation/pub/dm-stories/de-DM-stories-at-DKRZ_coastDat.pdf?lang=en"}, {"policyName": "Helmholtz Open Access Inititative", "policyURL": "https://os.helmholtz.de/"}, {"policyName": "Impressum, Disclaimer, Copyright", "policyURL": "https://www.hereon.de/innovation_transfer/communication_media/imprint/index.php.en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/de/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://cera-www.dkrz.de/WDCC/ui/cerasearch/info?site=termsofuse"}] closed [] [] {} ["DOI"] https://cera-www.dkrz.de/WDCC/ui/cerasearch/ [] unknown yes [] [] {} coastDat clients: https://www.coastdat.de/client_list/ More information about coastDat applications: https://www.coastdat.de/applications/ As part of an international effort to set up domain specific data portals as a service for the scientific community, climate data are collected, stored at DKRZ and disseminated through the World Data Center Climate (WDCC). For a full listing of data and regions see: https://www.coastdat.de/data/ 2016-04-19 2021-04-06 +r3d100011967 Ancient Sundials eng [{"additionalName": "BSDP", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BSDP ["doi:10.17171/1-1"] ["elisabeth.rinner@topoi.org", "gerd.grasshoff@topoi.org"] The repository contains all digital data such as images, 3d models and analysis which were acquired in the Ancient Sundials Project. eng ["disciplinary"] {"size": "629 research objects; 241 images; 231 3Dmodels; 114 3D Point Selections; 59 computations; 4 RTI", "updatedp": "2016-04-2^1"} 2011 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.topoi.org/project/d-5-6/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["knowledge transfer", "mapping", "measuring", "sundials", "technology", "time"] [{"institutionName": "Einstein Foundation Berlin", "institutionAdditionalName": ["Einstein Stiftung Berlin"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.einsteinfoundation.de/de/start.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.einsteinfoundation.de/de/personen-projekte/einstein-visiting-fellows/liba-taub.html"]}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/project/d-5-6/", "sundials@topoi.org"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["elisabeth.rinner@hu-berlin.de"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/BSDP#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://repository.edition-topoi.org/collection/BSDP/metadata"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.edition-topoi.org/publishing_with_us/open-access"}] restricted [] [] {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} The aim of the project is to re-evaluate the 400 preserved ancient sundials on the basis of new extensive 3D-measurements. 3D-measurements of the sundials form the basis for the subsequent investigation of the building processes of the sundials. It will allow insights into the diffusion of knowledge in antiquity which enabled the production of sundials. Ancient Sundials is part of Edition Topoi Collections http://repository.edition-topoi.org/ 2016-04-20 2018-07-20 +r3d100011968 Motion Capture Database HDM05 eng [{"additionalName": "Mocap database HDM05", "additionalNameLanguage": "eng"}] http://resources.mpi-inf.mpg.de/HDM05/index.html [] ["dsb@gv.mpg.de"] It is the objective of our motion capture database HDM05 to supply free motion capture data for research purposes. HDM05 contains more than three hours of systematically recorded and well-documented motion capture data in the C3D as well as in the ASF/AMC data format. Furthermore, HDM05 contains for more than 70 motion classes in 10 to 50 realizations executed by various actors. eng ["disciplinary"] {"size": "more than 70 motion classes in 10 to 50 realizations", "updatedp": "2021-01-05"} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://resources.mpi-inf.mpg.de/HDM05/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["activity", "behavior recognition", "biomechanics", "biometrics", "human segmentation", "human tracking", "mocap systems", "movement", "sports sciences"] [{"institutionName": "Hochschule der Medien", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hdm-stuttgart.de/", "institutionIdentifier": ["ROR:022r03w28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eberhardt@hdm-stuttgart.de", "https://www.hdm-stuttgart.de/kontakt"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Informatik", "institutionAdditionalName": ["MPI-INF"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpi-inf.mpg.de/home/", "institutionIdentifier": ["ROR:01w19ak89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["HDM05@mpi-inf.RemoveMe.mpg.de", "info@mpi-inf.mpg.de"]}, {"institutionName": "Universit\u00e4t Bonn, Institut f\u00fcr Informatik", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.informatik.uni-bonn.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.informatik.uni-bonn.de/de/institut/kontakt"]}, {"institutionName": "Universit\u00e4t des Saarlandes", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-saarland.de/startseite.html", "institutionIdentifier": ["ROR:01jdpyv68"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] closed [] ["unknown"] {} ["none"] http://resources.mpi-inf.mpg.de/HDM05/index.html ["none"] unknown unknown [] [] {} 2016-04-20 2022-01-05 +r3d100011969 EPIC study eng [{"additionalName": "European Prospective Investigation into Cancer and Nutrition Study", "additionalNameLanguage": "eng"}] https://epic.iarc.fr/index.php [] ["epic@iarc.fr", "epicadmin@imperial.ac.uk", "https://epic.iarc.fr/contactus/contactus.php"] The European Prospective Investigation into Cancer and Nutrition (EPIC) study is one of the largest cohort studies in the world, with more than half a million (521 000) participants recruited across 10 European countries and followed for almost 15 years. EPIC was designed to investigate the relationships between diet, nutritional status, lifestyle and environmental factors, and the incidence of cancer and other chronic diseases. EPIC investigators are active in all fields of epidemiology, and important contributions have been made in nutritional epidemiology using biomarker analysis and questionnaire information, as well as genetic and lifestyle investigations. eng ["disciplinary"] {"size": "521.000 participants", "updatedp": "2022-01-05"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://epic.iarc.fr/access/missionstatement.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["EPIC-Elderly", "EPIC-Heart", "acrylamide", "biomarkers", "biostatistics", "cancer", "cardiovascular diseases", "diabetes - InterAct", "healthy ageing", "mortality", "neurodegeneration", "nutrition", "obesity - PANACEA", "osteoporosis and fractures"] [{"institutionName": "Imperial College London, School of Public Health", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www1.imperial.ac.uk/publichealth/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["e.riboli@imperial.ac.uk"]}, {"institutionName": "World Health Organization, International Agency for Research on Cancer", "institutionAdditionalName": ["IARC", "WHO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iarc.who.int/", "institutionIdentifier": ["ROR:00v452281"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brennanp@iarc.fr"]}] [{"policyName": "DATA TRANSFER AGREEMENT - DTA", "policyURL": "https://epic.iarc.fr/docs/CIRC71_DTA-out-EPIC.dot"}, {"policyName": "EPIC Access Policy", "policyURL": "https://epic.iarc.fr/docs/EPIC_Access_Policy_and_Guidelines.pdf"}, {"policyName": "IARC ethics questionnaire", "policyURL": "https://ethics.iarc.fr/project-submission/faqs-iec-2021.pdf"}, {"policyName": "Publication guidelines for EPIC related studies", "policyURL": "https://epic.iarc.fr/docs/EPIC_Publication%20Guidelines.pdf"}, {"policyName": "Reference documents", "policyURL": "https://epic.iarc.fr/access/ref_documents.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://epic.iarc.fr/docs/CIRC71_DTA-out-EPIC.dot"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} 2016-04-25 2022-01-05 +r3d100011971 UBIRA eData eng [{"additionalName": "University of Birmingham eData Repository", "additionalNameLanguage": "eng"}] https://edata.bham.ac.uk/ [] ["https://edata.bham.ac.uk/information.html", "research-data@contacts.bham.ac.uk"] The UBIRA eData repository is a multidisciplinary online service for the registration, preservation and publication of research datasets produced or collected at the University of Birmingham. It is part of the University of Birmingham Research Archive (UBIRA). eng ["institutional"] {"size": "", "updatedp": ""} 2018-05-29 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://edata.bham.ac.uk/policies.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Birmingham", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.birmingham.ac.uk/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Charging Policy for Freedom of Information Requests", "policyURL": "https://www.birmingham.ac.uk/Documents/university/legal/charging-policy.pdf"}, {"policyName": "Research Data Management Policy", "policyURL": "https://intranet.birmingham.ac.uk/as/libraryservices/library/research/rdm/Policies/Research-Data-Management-Policy.aspx"}, {"policyName": "Research policy and strategy", "policyURL": "https://www.birmingham.ac.uk/university/governance/publication-scheme/policies-and-procedures.aspx#research"}, {"policyName": "eData repository service guidelines", "policyURL": "https://edata.bham.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["EPrints"] {"api": "https://edata.bham.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://edata.bham.ac.uk/cgi/latest_tool?output=RSS2", "syndicationType": "RSS"} UBIRA eData repository includes research data datasets formerly hosted in 'epapers Repository Birmingham'. 2016-04-26 2021-09-09 +r3d100011972 University of Liverpool Research Data Catalogue eng [{"additionalName": "University of Liverpool DataCat", "additionalNameLanguage": "eng"}] https://datacat.liverpool.ac.uk/ [] ["https://www.liverpool.ac.uk/contacts"] The Data Catalogue is a service that allows University of Liverpool Researchers to create records of information about their finalised research data, and save those data in a secure online environment. The Data Catalogue provides a good means of making that data available in a structured way, in a form that can be discovered by both general search engines and academic search tools. There are two types of record that can be created in the Data Catalogue: A discovery-only record – in these cases, the research data may be held somewhere else but a record is provided to help people find it. A record is created that alerts users to the existence of the data, and provides a link to where those data are held. A discovery and data record – in these cases, a record is created to help people discover the data exist, and the data themselves are deposited into the Data Catalogue. This process creates a unique Digital Object identifier (DOI) which can be used in citations to the data. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://datacat.liverpool.ac.uk/information.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Liverpool", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/", "institutionIdentifier": ["ROR:04xs57h96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.liverpool.ac.uk/contacts/"]}] [{"policyName": "Open Access Guidelines for research results funded by the ERC", "policyURL": "https://erc.europa.eu/sites/default/files/document/file/ERC_Open_Access_Guidelines-revised_2014.pdf"}, {"policyName": "Open Access Libguide", "policyURL": "https://www.liverpool.ac.uk/open-research/open-access/"}, {"policyName": "Research Data Management Policy", "policyURL": "https://www.liverpool.ac.uk/media/livacuk/computingservices/research-data-management/researchdatamanagementpolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.liverpool.ac.uk/csd/research-data-management/sharing/copyright/"}] restricted [] ["EPrints"] {"api": "http://datacat.liverpool.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["none"] yes yes [] [] {"syndication": "http://datacat.liverpool.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2016-04-26 2022-01-17 +r3d100011973 NSF Arctic Data Center eng [] https://arcticdata.io ["FAIRsharing_DOI:10.25504/FAIRsharing.6QPjtA"] ["https://arcticdata.io/team/", "info@arcticdata.io", "support@arcticdata.io"] The Arctic Data Center is the primary data and software repository for the Arctic section of NSF Polar Programs. The Center helps the research community to reproducibly preserve and discover all products of NSF-funded research in the Arctic, including data, metadata, software, documents, and provenance that links these together. The repository is open to contributions from NSF Arctic investigators, and data are released under an open license (CC-BY, CC0, depending on the choice of the contributor). All science, engineering, and education research supported by the NSF Arctic research program are included, such as Natural Sciences (Geoscience, Earth Science, Oceanography, Ecology, Atmospheric Science, Biology, etc.) and Social Sciences (Archeology, Anthropology, Social Science, etc.). Key to the initiative is the partnership between NCEAS at UC Santa Barbara, DataONE, and NOAA’s NCEI, each of which bring critical capabilities to the Center. Infrastructure from the successful NSF-sponsored DataONE federation of data repositories enables data replication to NCEI, providing both offsite and institutional diversity that are critical to long term preservation. eng ["disciplinary"] {"size": "57 TB of data; 6.530 datasets; 21 replicas", "updatedp": "2021-09-06"} 2016-04-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://arcticdata.io/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Arctic"] [{"institutionName": "DataONE", "institutionAdditionalName": ["Data Observation Network for Earth"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["support@dataone.org"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "2016", "responsibilityEndDate": "2021", "institutionContact": ["https://www.nsf.gov/help/contact.jsp", "https://www.nsf.gov/news/news_summ.jsp?cntn_id=138066"]}, {"institutionName": "The National Oceanic and Atmospheric Administration, National Centers for Environmental Information", "institutionAdditionalName": ["NCEI", "NOAA, NCEI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncei.noaa.gov/", "institutionIdentifier": ["ROR:04r0wrp59"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["http://www.ncdc.noaa.gov/contact"]}, {"institutionName": "University of California Santa Barbara, National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS", "National Center for Ecological Analysis and Synthesis"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": ["ROR:0146z4r19"], "responsibilityStartDate": "2016-02-15", "responsibilityEndDate": "", "institutionContact": ["Matthew Jones "]}] [{"policyName": "ARC-programs data policy", "policyURL": "https://www.nsf.gov/pubs/2014/nsf14584/nsf14584.htm#grantcond"}, {"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/03/Arctic-Data-Center.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://arcticdata.io/submit/#license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://arcticdata.io/submit/#license"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://arcticdata.io/submit/#license"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://arcticdata.io/submit/#license"}] ["other"] yes {"api": "https://arcticdata.io/metacat/d1/mn/v2/", "apiType": "REST"} ["DOI"] ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}] {"syndication": "https://arcticdata.io/feed/", "syndicationType": "RSS"} NSF Arctic Data Center is covered by Clarivate Data Citation Index . The NSF Arctic Data Center will support this community with the release of a user-friendly, data-sharing platform built on an open-source search application developed at NCEAS, and used by multiple repositories and networks, including the KNB Data Repository, DataONE, and the Gulf of Alaska Data Portal. Data and metadata from ACADIS, the current platform supporting NSF Arctic research data, are currently being ingested into the NSF Arctic Data Center 2016-04-27 2021-11-16 +r3d100011975 Research Institute for Sustainable Humanosphere databases eng [{"additionalName": "Database for the humanosphere", "additionalNameLanguage": "eng"}, {"additionalName": "RISH databases", "additionalNameLanguage": "eng"}] http://www.rish.kyoto-u.ac.jp/organization_e/databases/ [] ["dbstaff@rish.kyoto-u.ac.jp"] Various information, such as xylarium data with wood specimens collected since 1944, atmospheric observation data using the MU radar and other instruments, space-plasma data observed with GEOTAIL satellite, are now combined as Database of Humanosphere and served for public use. Proposals for scientific and technological use are always welcome. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.rish.kyoto-u.ac.jp/mission_e/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Acacia Mangium", "Aurora Borealis", "Basidiomycetes", "EAR", "EST", "Indonesia", "PWI - Plasma Wave Instrument", "atmospheric radar", "equatorial atmosphere", "geotail", "global atmosphere", "satellite", "southpole", "space electromagnetic environment", "wood diversity", "xylarium"] [{"institutionName": "Japan Society for the Promotion of Science", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.jsps.go.jp", "institutionIdentifier": ["ROR:00hhkn466"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kyoto University, Research Institute for Sustainable Humanosphere", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rish.kyoto-u.ac.jp/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://database.rish.kyoto-u.ac.jp/index-e.html"}] restricted [] [] {} [] http://database.rish.kyoto-u.ac.jp/index-e.html ["none"] unknown yes ["WDS"] [] {} RISH is a regular member of ICSU World Data System 2016-04-27 2022-01-19 +r3d100011977 Babylonian Diaries eng [{"additionalName": "BDIA", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BDIA ["doi:10.17171/1-3"] ["michael.meyer@fu-berlin.de"] The Babylonian astronomical diaries comprise a group of cuneiform texts which record natural events in time spans from months to a whole year eng ["disciplinary"] {"size": "359 Research Objects", "updatedp": "2016-05-03"} 2015-03-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.edition-topoi.org/publishing_with_us/collections [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Babylon", "ancient astronomy", "cuneiform texts", "meterology"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://repository.edition-topoi.org/collection/BDIA/metadata"]}, {"institutionName": "TOPOI Excellence Cluster", "institutionAdditionalName": ["The Formation and Transformation of Space and Knowledge in Ancient Civilizations"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/BDIA/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.edition-topoi.org/publishing_with_us/imprint"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2016-05-03 2021-08-25 +r3d100011978 Cylinder Seals eng [{"additionalName": "VMRS", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/VMRS ["doi:10.17171/1-5"] ["edition@topoi.org", "https://www.edition-topoi.org/contact/"] In addition to the common documentation methods of cylinder seals by rolled impression and photography, this collection also offers 3D-models and digital impressions. The 3D-scans can be performed without impacting the objects, thus reducing the risks. This method allows even the most fragile of seals to be documented, including those too delicate to be used for a rolled impression. These scans offer a true-to-scale reproduction of the seals. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.topoi.org/home/impressum/ [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Mesopotamia", "Near East", "art", "knowledge transfer", "seals", "technology", "trade"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hu-berlin.de/de/service/kontakt/"]}, {"institutionName": "Staatliche Museen zu Berlin, Vorderasiatisches Museum", "institutionAdditionalName": ["Pergamon-Museum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.smb.museum/museen-und-einrichtungen/vorderasiatisches-museum/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.smb.museum/kontakt.html"]}] [{"policyName": "Conditions of use", "policyURL": "http://repository.edition-topoi.org/collection/VMRS#conditions_for_use"}, {"policyName": "Disclaimer", "policyURL": "http://www.topoi.org/home/impressum/"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] ["unknown"] yes {} ["DOI"] ["none"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} The Edition-Topoi research platform is an innovative, reliable information infrastructure. It serves the publication of citable research data such as 3D models, high-resolution pictures, data and databases. The content and its meta data are subject to peer review and made available on an Open Access basis. The published or publishable combination of citable research content and its technical and contextually relevant meta data is defined as Citable. The public data are generated via a cloud and can be directly connected with the individual computing environment. 2016-05-03 2021-10-08 +r3d100011979 Digital Pantheon eng [{"additionalName": "BDPP", "additionalNameLanguage": "eng"}, {"additionalName": "Bern Digital Pantheon project", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BDPP ["doi:10.17171/1-4"] ["edition@topoi.org"] Results of the complete scan of the Pantheon. eng ["disciplinary"] {"size": "78 Research Objects", "updatedp": "2016-05-03"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/BDPP#description [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3d scanning", "Pantheon", "architectural geometry"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hu-berlin.de/de/hu/impressum"]}, {"institutionName": "TOPOI Excellence Cluster", "institutionAdditionalName": ["The Formation and Transformation of Space and Knowledge in Ancient Civilizations"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Universit\u00e4t Bern", "institutionAdditionalName": ["University of Bern", "Universit\u00e9 de Berne"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unibe.ch/", "institutionIdentifier": [], "responsibilityStartDate": "2005", "responsibilityEndDate": "2008", "institutionContact": ["http://www.unibe.ch/contact/index_eng.html"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/BDPP/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.edition-topoi.org/publishing_with_us/imprint"}] closed [] [] yes {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The collection 'Digital Pantheon' is based on research data of the Bern Digital Pantheon project. This project created a digital 3d scan of the Pantheon in Rome using a laser scanner in several scanning campaigns. The collection 'Digital Pantheon' is further processing the research data. It provides long-term archiving of the data, which has been further analysed within the framework of the Excellence Cluster TOPOI, and makes it available to interested researchers and the public. 2016-05-03 2021-10-08 +r3d100011980 Medieval Diagrams eng [{"additionalName": "MAPD", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/MAPD ["doi:10.17171/1-2"] ["michael.meyer@fu-berlin.de"] Planetary phaenomena in early Medieval manuscripts eng ["disciplinary"] {"size": "835 objects", "updatedp": "2017-06-29"} 2015-03-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.edition-topoi.org/publishing_with_us/collections [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["astronomy", "diagrams", "history of science", "medieval", "planetary phaenomena"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://repository.edition-topoi.org/collection/MAPD/metadata"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Wissenschaftsgeschichte", "institutionAdditionalName": ["Max Planck Institute for the History of Science"], "institutionCountry": "DEU", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpiwg-berlin.mpg.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://repository.edition-topoi.org/collection/MAPD/metadata"]}, {"institutionName": "TOPOI Excellence Cluster", "institutionAdditionalName": ["The Formation and Transformation of Space and Knowledge in Ancient Civilizations"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/MAPD#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.edition-topoi.org/publishing_with_us/imprint"}] restricted [] ["unknown"] yes {} ["DOI"] ["none"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2016-05-03 2021-08-25 +r3d100011981 Canadian Environmental Sustainability Indicators eng [{"additionalName": "CESI", "additionalNameLanguage": "eng"}, {"additionalName": "ICDE", "additionalNameLanguage": "fra"}, {"additionalName": "Indicateurs canadiens de durabilit\u00e9 de l'environnement", "additionalNameLanguage": "fra"}] https://www.canada.ca/en/environment-climate-change/services/environmental-indicators.html [] ["ec.indicateurs-indicators.ec@canada.ca"] The Canadian Environmental Sustainability Indicators (CESI) program provides data and information to track Canada’s performance on key environmental sustainability issues including climate change and air quality, water quality and availability, and protected nature. The CESI website ensures that national, regional, local and international trends are readily accessible and transparently presented to all Canadians through the use of graphics, explanatory text, interactive maps and downloadable data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/environmental-indicators/about-sustainability.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["air quality", "climate change", "environment", "water quality"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement Climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ec.gc.ca/", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}] [{"policyName": "Terms and conditions of use", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/environment-climate-change/corporate/transparency.html"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} 2016-05-10 2021-02-16 +r3d100011982 Canine Inherited Disorders Database eng [{"additionalName": "CIDD", "additionalNameLanguage": "eng"}] https://cidd.discoveryspace.ca [] ["CIDD@upei.ca"] The Canine Inherited Disorders Database (CIDD) is a joint initiative of the Sir James Dunn Animal Welfare Centre at the Atlantic Veterinary College, University of Prince Edward Island, and the Canadian Veterinary Medical Association. The goals of the database are to reduce the incidence of inherited disorders in dogs by providing information to owners and breeders, and to facilitate the best management possible of these conditions by providing current information to veterinarians. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20711 Animal Husbandry, Breeding and Hygiene", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "20714 Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["breeds", "genetic disorders"] [{"institutionName": "Canadian Veterinary Medical Association", "institutionAdditionalName": ["ACMV", "Association Canadienne des M\u00e9decins V\u00e9t\u00e9rinaires", "CVMA"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canadianveterinarians.net/", "institutionIdentifier": ["ROR:01w2kt439"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Prince Edward Island, Sir James Dunn Animal Welfare Centre", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://awc.upei.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Responsible Conduct of Research, Scholarly and Creative Work", "policyURL": "https://www.upei.ca/policy/adm/ord/gnl/10004"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} 2016-05-10 2021-10-08 +r3d100011983 National Biodiversity Data Centre - Biodiversity Maps eng [{"additionalName": "MApping Ireland's Wildlife", "additionalNameLanguage": "eng"}] https://maps.biodiversityireland.ie/Home [] ["info@biodiversityireland.ie"] Biodiversity Maps provides access to high quality information on Ireland's biological diversity. Use the system to find out what is known about the different species that occur in Ireland, where our protected and threatened species occur, and who is recoding biodiversity. Also find out what is known about the biodiversity of your locality. The National Biodiversity Data Centre endeavours to provide high quality information through this data portal. eng ["disciplinary"] {"size": "4.573.057 records; 167 datasets; 16.912 species", "updatedp": "2022-02-04"} 2007 ["eng", "gle"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://maps.biodiversityireland.ie/About [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Ireland", "amphibians", "birds", "fishes", "fungi", "higher plants", "insects", "lower plants", "mammals", "reptiles"] [{"institutionName": "Compass Informatics", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://compass.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@compassinformatics.com"]}, {"institutionName": "Department of Arts, Heritage and the Gaeltacht", "institutionAdditionalName": ["An Roinn Ealaion, Oidhreachta agus Gaeltachta"], "institutionCountry": "IRL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.ie/en/organisation/department-of-tourism-culture-arts-gaeltacht-sport-and-media/?referrer=http://www.chg.gov.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ahg.gov.ie/about/contact/"]}, {"institutionName": "National Biodiversity Data Centre", "institutionAdditionalName": [], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.biodiversityireland.ie/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.biodiversityireland.ie/contact-us/"]}, {"institutionName": "The Heritage Council", "institutionAdditionalName": ["An Chomhairle Oidhreachta"], "institutionCountry": "IRL", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.heritagecouncil.ie/", "institutionIdentifier": ["ROR:0053vns10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mail@heritagecouncil.ie"]}] [{"policyName": "Data Use Agreement", "policyURL": "https://maps.biodiversityireland.ie/#/Map"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {} [] http://maps.biodiversityireland.ie/#/Map [] yes yes [] [] {"syndication": "http://wiki.biodiversityireland.ie/RSS.aspx", "syndicationType": "RSS"} The National Biodiversity Data Centre is a national organisation for the collection, collation, management, analysis and dissemination of data on the biological diversity of Ireland. The Data Centre has developed an online mapping system, Biodiversity Maps, which provides access to data on the distribution of Ireland’s biological diversity. 2016-05-10 2022-02-04 +r3d100011984 Canadian Ice Service Archive eng [{"additionalName": "Archives du Service canadien des glaces", "additionalNameLanguage": "fra"}, {"additionalName": "CISA", "additionalNameLanguage": "eng"}] http://www.ec.gc.ca/glaces-ice/default.asp?lang=En&n=0A70E5EB-1 [] ["enviroinfo@ec.gc.ca", "http://www.ec.gc.ca/glaces-ice/default.asp?lang=En&n=C096D8FE-1"] The Canadian Ice Service (CIS), a division of the Meteorological Service of Canada (MSC), is the leading authority for information about ice in Canada's navigable waters. The Canadian Ice Service Archive (CISA) allows online access to the following collections: Daily ice analysis charts (since 1999), Regional ice analysis charts, and Weekly ice thickness and on-ice snow depth measurements for Canadian stations. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cryosphere", "geosciences", "ice atlas", "ice climatology", "ice graph", "iceberg", "oil pollution monitoring"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement Climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Meteorological Service of Canada, Canadian Ice Service", "institutionAdditionalName": ["CIS", "MSC", "SCG", "SMC", "Service m\u00e9t\u00e9orologique du Canada, Service canadien des glaces"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ec.gc.ca/glaces-ice/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ec.gc.ca/glaces-ice/default.asp?lang=En&n=C096D8FE-1"]}] [{"policyName": "Acts, Regulations and Agreements", "policyURL": "http://www.ec.gc.ca/default.asp?lang=En&n=48D356C1-1"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} The North American Ice Service is a partnership between the Canadian Ice Service, the United States' National/Naval Ice Center, and the United States Coast Guard's International Ice Patrol. 2016-05-10 2016-08-08 +r3d100011985 Great Lakes Precipitation Network eng [{"additionalName": "GLPN", "additionalNameLanguage": "eng"}, {"additionalName": "RPGL", "additionalNameLanguage": "fra"}, {"additionalName": "R\u00e9seau des pr\u00e9cipitations des Grands Lacs", "additionalNameLanguage": "fra"}] http://www.ec.gc.ca/scitech/default.asp?lang=en&n=9ED7FDEC-1 [] ["GLPN-RPGL@ec.gc.ca"] The Great Lakes Precipitation Network holds a unique and extensive data set on chemical contaminants in precipitation for the Canadian Great Lakes Basin. The list of persistent chemical contaminants being monitored include: organochlorine pesticides, polyaromatic hydrocarbons, PCBs, flame retardants, and PFOS. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "Great Lakes", "PCBs", "PFOS", "climate", "environment", "flame retardants", "organochlorine pesticides", "polyaromatic hydrocarbons", "surveillance", "toxicology", "water quality", "weather"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement Climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enviroinfo@ec.gc.ca", "https://www.canada.ca/en/environment-climate-change/corporate/contact.html"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}, {"policyName": "Transparency: Environment and Climate Change Canada", "policyURL": "https://www.canada.ca/en/environment-climate-change/corporate/transparency.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/transparency/terms.html"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2016-05-10 2022-02-04 +r3d100011986 Experimental Lakes Area eng [{"additionalName": "IISD - ELA", "additionalNameLanguage": "eng"}] http://www.iisd.org/ela/ [] ["https://www.iisd.org/ela/contact/", "info@iisd-ela.org"] IISD Experimental Lakes Area is one of the world’s most influential freshwater research facilities. It features a collection of 58 small lakes and their watersheds in Northwestern Ontario, Canada, as well as a facility with accommodations and laboratories for up to 60 personnel. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014-04-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "20203 Inter-organismic Interactions of Plants", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iisd.org/ela/about/who-we-are/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["algae ecology", "aquaculture", "chemistry", "climate change", "ecology", "environment", "fish behaviour", "hydrology", "marine biology", "meteorology", "zooplankton"] [{"institutionName": "International Institute for Sustainable Development", "institutionAdditionalName": ["IISD"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iisd.org/", "institutionIdentifier": ["ROR:043zcks33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "http://www.iisd.org/ela/wp-content/uploads/2016/04/Data-Terms-And-Conditions.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.iisd.org/ela/wp-content/uploads/2016/04/Data-Terms-And-Conditions.pdf"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {"syndication": "https://www.iisd.org/ela/science-data/research/#", "syndicationType": "RSS"} IISD-Experimental Lakes Area is extremely grateful for all of the ongoing financial assistance we receive from our funders, supporters and friends. https://www.iisd.org/ela/about/supporters/ 2016-05-10 2021-09-03 +r3d100011987 Landmap eng [] http://catalogue.ceda.ac.uk/uuid/7f1280cf215da6f8001eae5c2f019fe8 [] ["gis@mcc.ac.uk", "support@ceda.ac.uk."] The Landmap Service provides web-based access to a range of spatial data for research, learning and teaching. The available spatial data includes: Optical Collection - Landsat, SPOT, Aerial Photography and TopSat, Radar Collection - ENVISAT and ERS, and Elevation Collection - SRTM and 25m DEM eng ["disciplinary"] {"size": "5 collections; 24 related datasets", "updatedp": "2016-05-11"} 1996 2014-06-31 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "dataProvider"] ["ALOS Phased Array type L-band Synthetic Aperture Radar - PALSAR", "Advanced Visible and Near InfraRed Radiometer type 2 - AVNIR-2", "Colour InfraRed - CIR", "Digital Terrain Model - DTM", "Disaster Monitoring Constellation - DMC", "ENVISAT Advanced Synthetic Aperture Radar - ASAR", "ERS satellites", "Geosciences", "UK and Kinematic GPS - KGPS", "high-resolution Digital Elevation Model - DEM", "radar", "thermal imagery"] [{"institutionName": "Centre for Environmental Data Analysis", "institutionAdditionalName": ["CEDA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ceda.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ceda.ac.uk/contact/"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "2013", "institutionContact": ["https://www.jisc.ac.uk/contact"]}, {"institutionName": "National Centre for Earth Observation", "institutionAdditionalName": ["NCEO"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nceo.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Science and Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.stfc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions for data and information provided by the NERC or STFC through the Centre for Environmental Data Analysis (CEDA)", "policyURL": "http://www.ceda.ac.uk/disclaimer/"}, {"policyName": "Terms and Conditions for use of the Licensed Material (Landmap Datasets) contained in the NEODC Landmap Archive", "policyURL": "http://www.neodc.rl.ac.uk/conditions/landmap.html"}, {"policyName": "policies", "policyURL": "http://cedadocs.badc.rl.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://badc.nerc.ac.uk/data/rules.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.neodc.rl.ac.uk/conditions/landmap.html"}] restricted [] ["EPrints"] {"api": "ftp://ftp.ceda.ac.uk/neodc/landmap/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} After removal of JISC funding in 2013, the Landmap service is no longer operational, with the data now held at the NEODC. This website contains detailed information on the datasets and training materials developed by commercial companies and members of the academic community. Please note that the website will not be maintained in any way by the NEODC and may go offline at some point in the future. The Centre for Environmental Data Analysis (CEDA) was established primarily to facilitate and curate both datasets needed for academic research and datasets produced by such research. CEDA is primarily funded by the Natural Environment Research Council, but it is also funded by DECC, and the missions differ slightly. 2016-05-10 2022-02-04 +r3d100011989 USGS Earthquake Hazards Program eng [{"additionalName": "United States Geological Survey Earthquake Hazards Program", "additionalNameLanguage": "eng"}] https://earthquake.usgs.gov/ [] ["https://www.usgs.gov/natural-hazards/earthquake-hazards/connect", "lisa@usgs.gov"] This web site is provided by the United States Geological Survey’s (USGS) Earthquake Hazards Program as part of our effort to reduce earthquake hazard in the United States. We are part of the USGS Hazards Mission Area and are the USGS component of the congressionally established, multi-agency National Earthquake Hazards Reduction Program (NEHRP). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://earthquake.usgs.gov/aboutus/mission.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earthquake", "geosciences", "hazard"] [{"institutionName": "National Earthquake Hazards Reduction Program", "institutionAdditionalName": ["NEHRP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nehrp.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nehrp.gov/contact/index.htm"]}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS", "United States Geological Survey"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www2.usgs.gov/laws/info_policies.html"}] restricted [] [] {"api": "http://earthquake.usgs.gov/fdsnws/event/1/application.wadl", "apiType": "other"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {"syndication": "http://earthquake.usgs.gov/earthquakes/feed/v1.0/atom.php", "syndicationType": "ATOM"} 2016-05-10 2021-10-08 +r3d100011990 Geoscience Data Repository for Geophysical Data eng [{"additionalName": "Entrep\u00f4t de donn\u00e9es g\u00e9oscientifiques pour les donn\u00e9es g\u00e9ophysiques", "additionalNameLanguage": "fra"}, {"additionalName": "GDR", "additionalNameLanguage": "eng"}] http://gdr.agg.nrcan.gc.ca/gdrdap/dap/search-eng.php [] ["canadagreenerhomesgrant-subventionmaisonsvertes@nrcan-rncan.gc.ca", "https://contact-contactez.nrcan-rncan.gc.ca/index.cfm?st=5&cat=-1&scat=-1&lang=eng"] The Geoscience Data Repository (GDR) is a collection of Earth Sciences Sector geoscience databases that is managed and accessed by a series of Information Services (GDRIS). This site allows you to discover, view and download information using these services. About 27 data resources are listed and many are also listed in the GeoConnections Discovery Portal. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aeromagnetic", "borehole", "geochemistry", "geosciences", "gravity", "marine geographics", "radioactivity"] [{"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Resources Canada", "institutionAdditionalName": ["NRCan", "Ressources naturelles Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nrcan.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://contact-contactez.nrcan-rncan.gc.ca/index.cfm?lang=eng&sid=7&context=earth-sciences"]}] [{"policyName": "Disclaimer", "policyURL": "http://gdr.agg.nrcan.gc.ca/gdrdap/dap/disclaimer-eng.php"}, {"policyName": "Government of Canada, Terms and Conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}, {"policyName": "Natural Resources Canada, Terms and Conditions", "policyURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://gdr.agg.nrcan.gc.ca/gdrdap/dap/disclaimer-eng.php"}] restricted [] ["unknown"] {} ["none"] http://gdr.agg.nrcan.gc.ca/gdrdap/dap/disclaimer-eng.php [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} In addition to this web browser application, the holdings of the Geoscience Data Repository for Geophysical Data (GDR) are available: http://gdr.agg.nrcan.gc.ca/gdrdap/dap/faq-eng.php#q11 2016-05-10 2021-10-08 +r3d100011991 GRIN-CA Taxonomy eng [{"additionalName": "Genetic Resource Information Network - Canadian Version Taxonomy", "additionalNameLanguage": "eng"}, {"additionalName": "Plant Gene Resources of Canada: GRIN-CA Taxonomy", "additionalNameLanguage": "eng"}, {"additionalName": "Ressources Phytog\u00e9n\u00e9tiques du Canada: Taxonomie de RIRGC (GRIN-CA)", "additionalNameLanguage": "fra"}] https://pgrc.agr.gc.ca/search_grinca-recherche_rirgc_e.html [] ["anissa.lybaert@canada.ca", "axel.diederichsen@canada.ca", "benoit.bizimungu@agr.gc.ca", "https://pgrc.agr.gc.ca/contact_e.html"] GRIN-CA taxonomic data provide the structure and nomenclature for the accessions of the Canadian National Plant Germplasm System (NPGS). Many plants are included in GRIN-CA taxonomy, especially economic plants. eng ["disciplinary"] {"size": "35.000 taxa; 13.000 genera", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://pgrc3.agr.gc.ca/mandate-mandat_e.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "genebank", "genetic diversity", "germplasm", "rejuvenation", "seed storage"] [{"institutionName": "Agriculture and Agri-Food Canada", "institutionAdditionalName": ["AAFC", "Agriculture et Agroalimentaire Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.agr.ca/eng/home/?id=1395690825741", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SMTA - Standard Material Transfer Agreemen", "policyURL": "http://pgrc3.agr.gc.ca/order-ordre_e.html"}, {"policyName": "Terms and conditions", "policyURL": "http://www.agr.gc.ca/eng/about-us/terms-and-conditions/?id=1367245286657#2"}, {"policyName": "Transparency", "policyURL": "http://www.agr.gc.ca/eng/about-us/transparency/?id=1360881288492"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.agr.gc.ca/eng/about-us/terms-and-conditions/?id=1367245286657"}] restricted [] ["unknown"] no {} ["none"] [] no unknown [] [] {} 2016-05-10 2021-10-08 +r3d100011992 The National Soil DataBase eng [{"additionalName": "BNDS", "additionalNameLanguage": "fra"}, {"additionalName": "Base nationale de donn\u00e9es sur les sols", "additionalNameLanguage": "fra"}, {"additionalName": "NSDB", "additionalNameLanguage": "eng"}] https://sis.agr.gc.ca/cansis/nsdb/index.html [] ["aafc.cansis-siscan.aac@canada.ca", "https://sis.agr.gc.ca/cansis/contact.html"] The NSDB is the set of computer readable files which contain soil, landscape, and climatic data for all of Canada. It serves as the national archive for land resources information that was collected by federal and provincial field surveys, or created by land data analysis projects. The NSDB includes GIS coverages at a variety of scales, and the characteristics of each named soil series. The principal types of NSDB data holdings (ordered by scale) are as follows: National Ecological Framework (EcoZones, EcoRegions, and EcoDistricts); Soil Map of Canada / Land Potential DataBase (LPDB); Agroecological Resource Areas (ARAs); Soil Landscapes of Canada (SLC); Canada Land Inventory (CLI); Detailed Soil Surveys. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "geosciences", "land resource", "soil resource"] [{"institutionName": "Agriculture and Agri-Food Canada", "institutionAdditionalName": ["Agriculture et Agroalimentaire Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.agr.gc.ca/eng/home/?id=1395690825741", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.canada.ca/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Ownership and Usage", "policyURL": "http://www.agr.gc.ca/eng/about-us/terms-and-conditions/?id=1367245286657#a17"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.agr.gc.ca/eng/about-us/terms-and-conditions/?id=1367245286657"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2016-05-10 2021-10-08 +r3d100011993 CDC WONDER eng [{"additionalName": "Centers for Disease Control and Prevention, Wide-ranging OnLine Data for Epidemiologic Research", "additionalNameLanguage": "eng"}] http://wonder.cdc.gov/ [] ["cwus@cdc.gov", "http://wonder.cdc.gov/contactUs.html"] CDC WONDER, developed by the Centers for Disease Control and Prevention (CDC), is an integrated information and communication system for public health. It allows you to access wide-ranging online data for epidemiologic research. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://wonder.cdc.gov/wonder/help/faq.html#1 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AIDS", "Tuberculosis", "births", "cancer", "environmental health", "health sciences", "hospital discharges", "morbidity", "mortality", "natality", "population census", "population survey", "vaccination"] [{"institutionName": "Centers for Disease Control and Prevention", "institutionAdditionalName": ["CDC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cwus@cdc.gov"]}, {"institutionName": "National Center for Health Statistics", "institutionAdditionalName": ["NCHS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.cdc.gov/nchs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://wonder.cdc.gov/ucd-icd10.html", "nchsquery@cdc.gov"]}, {"institutionName": "U.S. Department of Health and Human Services", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/email"]}] [{"policyName": "CDC Policies and Regulations", "policyURL": "http://www.cdc.gov/Other/policies.html"}, {"policyName": "NCHS Data Release Policy", "policyURL": "http://www.cdc.gov/nchs/about/policy/data_release.htm"}, {"policyName": "WONDER Data Use Restrictions", "policyURL": "http://wonder.cdc.gov/datause.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://wonder.cdc.gov/datause.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wonder.cdc.gov/wonder/help/faq.html#9"}] restricted [] ["unknown"] {"api": "http://wonder.cdc.gov/wonder/help/WONDER-API.html", "apiType": "other"} [] http://wonder.cdc.gov/wonder/help/QuickStart.html#Citation [] yes yes [] [] {"syndication": "http://www2c.cdc.gov/podcasts/rss.asp", "syndicationType": "RSS"} Many of these data sets, and additional data that are not included here, are also directly available to the general public from the National Center for Health Statistics. 2016-05-10 2019-08-06 +r3d100011994 Atmospheric Chemistry Experiment eng [{"additionalName": "ACE", "additionalNameLanguage": "eng"}, {"additionalName": "SCISAT", "additionalNameLanguage": "eng"}] https://www.ace.uwaterloo.ca/ [] ["bernath@uwaterloo.ca", "https://www.ace.uwaterloo.ca/contactus.php"] SCISAT, also known as the Atmospheric Chemistry Experiment (ACE), is a Canadian Space Agency small satellite mission for remote sensing of the Earth's atmosphere using solar occultation. The satellite was launched on 12 August 2003 and continues to function perfectly. The primary mission goal is to improve our understanding of the chemical and dynamical processes that control the distribution of ozone in the stratosphere and upper troposphere, particularly in the Arctic. The high precision and accuracy of solar occultation makes SCISAT useful for monitoring changes in atmospheric composition and the validation of other satellite instruments. The satellite carries two instruments. A high resolution (0.02 cm-¹) infrared Fourier transform spectrometer (FTS) operating from 2 to 13 microns (750-4400 cm-¹) is measuring the vertical distribution of trace gases, particles and temperature. This provides vertical profiles of atmospheric constituents including essentially all of the major species associated with ozone chemistry. Aerosols and clouds are monitored using the extinction of solar radiation at 1.02 and 0.525 microns as measured by two filtered imagers. The vertical resolution of the FTS is about 3-4 km from the cloud tops up to about 150 km. Peter Bernath of the University of Waterloo is the principal investigator. A dual optical spectrograph called MAESTRO (Measurement of Aerosol Extinction in the Stratosphere and Troposphere Retrieved by Occultation) covers the 400-1030 nm spectral region and measures primarily ozone, nitrogen dioxide and aerosol/cloud extinction. It has a vertical resolution of about 1-2 km. Tom McElroy of Environment and Climate Change Canada is the principal investigator. ACE data are freely available from the University of Waterloo website. SCISAT was designated an ESA Third Party Mission in 2005. ACE data are freely available through an ESA portal. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003-08-12 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ace.uwaterloo.ca/mission.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Arctic", "FTS Fourier Transform Spectrometer", "MAESTRO", "aerospace", "atmosphere", "chemical molecules", "earth's climate", "remote sensing", "space mission", "stratospheric chemistry"] [{"institutionName": "ACE Participants", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ace.uwaterloo.ca/participants.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Space Agency", "institutionAdditionalName": ["Agence spatiale canadienne"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.asc-csa.gc.ca/eng/Default.asp", "institutionIdentifier": ["ROR:03a1gte98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.asc-csa.gc.ca/fra/contact.asp"]}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": ["ROR:01h531d29", "RRID:SCR_013327", "RRID:nlx_39429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/ContactDirectory-RepertoiredeContact_eng.asp"]}, {"institutionName": "University of Waterloo, Science Society", "institutionAdditionalName": ["SOC"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://uwaterloo.ca/science-society/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://uwaterloo.ca/science-society/contact-us"]}] [{"policyName": "ACE Mission Information for Public Data Release", "policyURL": "http://www.ace.uwaterloo.ca/ACE-FTS_v2.2/ACEFTSPublicReleaseDocumentation.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ace.uwaterloo.ca/copyright.php"}] closed [] ["unknown"] yes {"api": "https://www.ace.uwaterloo.ca/climatology.php", "apiType": "NetCDF"} ["none"] https://subjectguides.uwaterloo.ca/c.php?g=695435&p=4931424 [] yes yes [] [] {} Participants: https://www.ace.uwaterloo.ca/participants.php 2016-05-10 2021-02-16 +r3d100011995 RADARSAT-1 eng [{"additionalName": "Canada's Earth Observation Satellite", "additionalNameLanguage": "eng"}] https://www.asc-csa.gc.ca/eng/satellites/radarsat1/default.asp [] ["asc.r-sat.csa@canada.ca", "https://www.asc-csa.gc.ca/eng/satellites/radarsat1/contact.asp"] Launched in November 1995, RADARSAT-1 provided Canada and the world with an operational radar satellite system capable of timely delivery of large amounts of data. Equipped with a powerful synthetic aperture radar (SAR) instrument, it acquired images of the Earth day or night, in all weather and through cloud cover, smoke and haze. RADARSAT-1 was a Canadian-led project involving the Canadian federal government, the Canadian provinces, the United States, and the private sector. It provided useful information to both commercial and scientific users in such fields as disaster management, interferometry, agriculture, cartography, hydrology, forestry, oceanography, ice studies and coastal monitoring. eng ["disciplinary"] {"size": "", "updatedp": ""} 1995-11-04 2013 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://mdacorporation.com/geospatial/international/satellites/RADARSAT-1 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Antarctic Mapping Mission - AMM", "aerospace", "cartography", "coastal monitoring", "disaster management", "earth observation", "forestry", "hydrology", "ice studies", "images", "interferometry", "observation satellite", "oceanography", "remote sensing", "synthetic aperture radar (SAR)"] [{"institutionName": "Canadian Space Agency", "institutionAdditionalName": ["Agence spatiale canadienne"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.asc-csa.gc.ca/eng/default.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.asc-csa.gc.ca/eng/satellites/radarsat1/contact.asp"]}, {"institutionName": "MDA, Geospatial Services", "institutionAdditionalName": ["MDA GSI", "MacDonald, Dettwiler and Associates Ltd"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://mdacorporation.com/geospatial/international", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://mdacorporation.com/geospatial/international/satellites/RADARSAT-1"]}] [{"policyName": "General Terms of Use", "policyURL": "http://mdacorporation.com/docs/default-source/general-terms-of-use/geospatial-services/gtu.pdf?sfvrsn=4"}, {"policyName": "RADARSAT-1 Data Products Specifications", "policyURL": "http://mdacorporation.com/docs/default-source/product-spec-sheets/geospatial-services/r1_prod_spec.pdf?sfvrsn=6"}, {"policyName": "RADARSAT-1 End User License Agreement", "policyURL": "http://mdacorporation.com/docs/default-source/licence-agreements/geospatial-services/radarsat-1-eula-2007.pdf?sfvrsn=6"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.asc-csa.gc.ca/eng/terms.asp#copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://mdacorporation.com/docs/default-source/general-terms-of-use/geospatial-services/gtu.pdf?sfvrsn=4"}] closed [] ["unknown"] {"api": "https://www.asf.alaska.edu/", "apiType": "other"} ["none"] https://www.asf.alaska.edu/sar-data/radarsat-1/how-to-cite/ [] unknown yes [] [] {} Access to data is provided by Canadian Space Agency, MDA and Alaska Satellite Facility Order Desk, in Fairbanks, Alaska http://www.asc-csa.gc.ca/eng/satellites/radarsat1/contact.asp . Canada Centre for Remote Sensing (CCRS) operates two satellite telemetry ground stations that provide North American reception coverage: the Prince Albert Satellite Station in Prince Albert, Saskatchewan, and the Gatineau Satellite Station located in Cantley, Quebec. Operating in a multi-mission environment, these stations receive Earth observation data from several satellites. They have created an archive in excess of 270 Terabytes of EO data. Certain data sets are delivered in near real time to support applications such as ice monitoring by the Canadian Ice Service, since 1991, and forest fire monitoring and mapping by the Canadian Forest Service, since 1999. These stations serve also as Canadian ground segment component of RADARSAT-1 operation. 2016-05-10 2021-10-08 +r3d100011996 Canadian Poisonous Plants Information System eng [{"additionalName": "Syst\u00e8me canadien d'information sur les plantes toxiques", "additionalNameLanguage": "fra"}] http://www.cbif.gc.ca/eng/species-bank/canadian-poisonous-plants-information-system/?id=1370403265036 [] ["aafc.cbif-scib.aac@canada.ca"] The Canadian Poisonous Plants Information System presents data on plants that cause poisoning in livestock, pets, and humans. The plants include native, introduced, and cultivated outdoor plants as well as indoor plants that are found in Canada. Some food and herbal plants that may cause potential poisoning problems are also included. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.cbif.gc.ca/eng/species-bank/canadian-poisonous-plants-information-system/introduction/intended-audience/?id=1370403266265 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["agriculture", "poison control", "species bank"] [{"institutionName": "Canadian Biodiversity Information Facility", "institutionAdditionalName": ["CBIF", "SCIB", "Syst\u00e8me canadien d'information sur la biodiversit\u00e9"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cbif.gc.ca/eng/home/?id=1370403266262", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cbif.gc.ca/eng/species-bank/canadian-poisonous-plants-information-system/copyright-droits-d-auteur/?id=1370403266270"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cbif.gc.ca/eng/about-us/terms-and-conditions/?id=1370403266258#copyright"}] restricted [{"dataUploadLicenseName": "Illustrations", "dataUploadLicenseURL": "http://www.cbif.gc.ca/eng/species-bank/canadian-poisonous-plants-information-system/introduction/illustrations/?id=1370403266268"}] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} 2016-05-10 2021-08-24 +r3d100011997 National Earthquake DataBase eng [{"additionalName": "BNDS", "additionalNameLanguage": "fra"}, {"additionalName": "Base Nationale de Donn\u00e9es Sismologiques", "additionalNameLanguage": "fra"}, {"additionalName": "NEDB", "additionalNameLanguage": "eng"}] http://www.earthquakescanada.nrcan.gc.ca/stndon/NEDB-BNDS/index-eng.php [] ["EarthquakeInfo@NRCan.gc.ca"] The National Earthquake DataBase (NEDB) comprises a number of separate databases that together act as the national repository for all raw seismograph data, measurements, and derived parameters arising from the Canadian National Seismograph Network (CNSN), the Yellowknife Seismological Array (YKA), previous regional telemetered networks in eastern and western Canada (ECTN, WCTN), local telemetered networks (CLTN, SLTN), the Regional Analogue Network, and the former Standard Seismograph Network (CSN). It supports the efforts of Earthquakes Canada in Canadian seismicity monitoring, global seismic monitoring, verification of the Comprehensive nuclear Test Ban Treaty, and international data exchange. It also supports the [Nuclear Explosion Monitoring project][NEM]. eng ["disciplinary", "disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthquakescanada.nrcan.gc.ca/stndon/NEDB-BNDS/bull-en.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["epicentral solutions", "geosciences", "hazard", "seismogram", "waveform"] [{"institutionName": "Government of Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}, {"institutionName": "Natural Resources Canada", "institutionAdditionalName": ["NRCan", "RNCan", "Ressources naturelles Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nrcan.gc.ca/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://contact-contactez.nrcan-rncan.gc.ca/index.cfm?lang=fra&sid=7&context=accueil"]}] [{"policyName": "Access to Information and Privacy", "policyURL": "http://www.nrcan.gc.ca/atip/1"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.earthquakescanada.nrcan.gc.ca/stndon/licence-en.php"}] restricted [] ["unknown"] {"api": "http://www.earthquakescanada.nrcan.gc.ca/api/earthquakes/index-en.html", "apiType": "other"} ["none"] http://www.earthquakescanada.nrcan.gc.ca/cite-en.php ["none"] unknown unknown [] [] {"syndication": "http://www.earthquakescanada.nrcan.gc.ca/index-en.php?tpl_region=canada&tpl_output=rss", "syndicationType": "RSS"} The National Earthquake DataBase contains all Canadian earthquake locations and derived parameters since the 1600's . The National WaveForm Archive (http://www.earthquakescanada.nrcan.gc.ca/stndon/NWFA-ANFO/index-en.php) contains digital waveform data acquired since 1975. The National Earthquake Database (NEDB) comprises a number of separate databases , all developed and administered under the INGRES Relational Database Management System. 2016-05-10 2016-05-25 +r3d100011999 National Harvest Survey eng [{"additionalName": "Enqu\u00eate nationale sur les prises", "additionalNameLanguage": "fra"}, {"additionalName": "NHS", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/environment-climate-change/services/bird-surveys/waterfowl/national-harvest.html [] ["enviroinfo@ec.gc.ca", "https://www.canada.ca/en/environment-climate-change/corporate/contact.html"] Surveys provide annual information on the total, seasonal and spatial harvest of ducks, geese and other game birds in Canada, on the ecological characteristics of waterfowl harvested in Canada and the hunter activity associated with that harvest. The survey covers all of Canada divided into 23 zones and has been carried out annually since 1966. The bilingual database currently contains 9,000,000+ records. eng ["disciplinary"] {"size": "more than 9.000.000 records", "updatedp": "2016-05-19"} 1966 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/bird-surveys/waterfowl/national-harvest/overview.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canadian Wildlife Service - CWS", "Murre Harvest Survey", "Wingbee", "bird", "bird population", "environment", "goose", "hunting zones", "seabird"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/environment-climate-change/corporate/contact.html"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/index.html", "institutionIdentifier": ["ROR:010q4q527"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A#copy"}] restricted [] ["unknown"] {} ["none"] http://ec.gc.ca/reom-mbs/enp-nhs/index.cfm?do=def&lang=e [] unknown unknown [] [] {} 2016-05-10 2021-10-08 +r3d100012000 Water Survey of Canada eng [{"additionalName": "RHC", "additionalNameLanguage": "fra"}, {"additionalName": "Relev\u00e9s hydrologiques du Canada", "additionalNameLanguage": "fra"}, {"additionalName": "WSC", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey.html [] ["https://wateroffice.ec.gc.ca/contactus/contact_us_e.html"] Real time and archival databases containing Canadian water information. These data include, archived hydrometric data, water level and streamflow statistics, daily and monthly mean flow, water level and sediment concentration for monitoring station across Canada. The Water Survey of Canada (WSC) is the national authority responsible for the collection, interpretation and dissemination of standardized water resource data and information in Canada. In partnership with the provinces, territories and other agencies, WSC operates over 2800 active hydrometric gauges across the country. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.canada.ca/en/environment-climate-change/services/water-overview/quantity/monitoring/survey/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["HYDAT", "Municipal Water and Wastewater Survey MWWS", "ecosystem", "environment", "historical station information", "sediment", "water quantity monitoring"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}] [{"policyName": "Disclaimer for hydrometric information", "policyURL": "https://wateroffice.ec.gc.ca/disclaimer_info_e.html"}, {"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wateroffice.ec.gc.ca/disclaimer_info_e.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.canada.ca/en/transparency/terms.html"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} 2016-05-10 2019-01-11 +r3d100012001 Illinois Data Bank eng [] https://databank.illinois.edu/ [] ["databank@library.illinois.edu", "https://databank.illinois.edu/help#contact"] The Illinois Data Bank is a public access data repository that collects, disseminates, and provides persistent and reliable access to the research data of faculty, staff, and students at the University of Illinois at Urbana-Champaign. Faculty, staff, graduate students can deposit their research data directly into the Illinois Data Bank and receive a DOI for citation purposes. eng ["institutional"] {"size": "", "updatedp": ""} 2016-05-10 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://databank.illinois.edu/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Illinois at Urbana-Champaign", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Illinois at Urbana-Champaign, University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.illinois.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["reflib@library.illinois.edu"]}, {"institutionName": "University of Illinois at Urbana-Champaign, University Library, Research Data Service", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.illinois.edu/rds/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["reflib@library.illinois.edu"]}] [{"policyName": "Illinois Data Bank Policy Framework and Definitions", "policyURL": "https://databank.illinois.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://databank.illinois.edu/policies#access_and_use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://databank.illinois.edu/help#license"}] restricted [{"dataUploadLicenseName": "ILLINOIS DATA BANK DEPOSIT AGREEMENT", "dataUploadLicenseURL": "https://databank.illinois.edu/policies#deposit_agreement"}] ["other"] yes {"api": "https://databank.illinois.edu/help#metadata", "apiType": "other"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2016-05-12 2019-01-11 +r3d100012002 International Plant Names Index eng [{"additionalName": "IPNI", "additionalNameLanguage": "eng"}] http://www.ipni.org/index.html ["biodbcore-001386"] ["ipnieditors@ipni.org", "ipnifeedback@ipni.org"] The International Plant Names Index (IPNI) is a database of the names and associated basic bibliographical details of seed plants, ferns and lycophytes. Its goal is to eliminate the need for repeated reference to primary sources for basic bibliographic information about plant names. The data are freely available and are gradually being standardized and checked. IPNI is a dynamic resource, depending on direct contributions by all members of the botanical community. IPNI is the product of a collaboration between The Royal Botanic Gardens, Kew, The Harvard University Herbaria, and the Australian National Herbarium. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.ipni.org/mission.html [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Australian Plant Names Index - APNI", "Gray Card Index - GCI", "Gray Herbarium Card Index", "Index Kewensis - IK", "Index Nominum Genericorum", "Kew Rule", "Melbourne Code", "taxonomy"] [{"institutionName": "Centre for Australian National Biodiversity Research, Australian National Herbarium", "institutionAdditionalName": ["CANB, ANH"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.anbg.gov.au/cpbr/herbarium/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.anbg.gov.au/cpbr/herbarium/about/"]}, {"institutionName": "Harvard University Herbaria", "institutionAdditionalName": ["HUH", "Harvard University Herbaria & Libraries"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://huh.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://huh.harvard.edu/pages/contact"]}, {"institutionName": "Royal Botanic Gardens, Kew", "institutionAdditionalName": ["Kew Gardens"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.kew.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kew.org/about-our-organisation/contact-us"]}] [{"policyName": "Conditions of use", "policyURL": "http://www.ipni.org/conditions_of_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ipni.org/copyright.html"}] restricted [] ["unknown"] yes {} ["URN"] http://www.ipni.org/how_to_cite_us.html [] unknown yes [] [] {} IPNI is no longer using mirrored servers. Sponsors: http://www.ipni.org/sponsors.html ; Acknowledgments: http://www.ipni.org/acknowledgments.html 2016-05-17 2021-11-16 +r3d100012003 University Hospital Medical Information Network Individual Case Data Repository eng [{"additionalName": "UMIN CTR", "additionalNameLanguage": "eng"}, {"additionalName": "UMIN Clinical Trials Registry", "additionalNameLanguage": "eng"}, {"additionalName": "UMIN-CTR", "additionalNameLanguage": "eng"}, {"additionalName": "UMIN-ICDR", "additionalNameLanguage": "eng"}] http://www.umin.ac.jp/ctr/index.htm ["biodbcore-001434"] ["https://www.umin.ac.jp/english/contact.htm"] The UMIN case data repository system was implemented by adding a function to the UMIN Clinical Trials Registry System. The aim of this system is to keep anonymized case data from clinical research conducted by individual researchers at the UMIN center, and to guarantee the content of the data to third parties. This system enables other researchers to inspect case data or to repeat statistical analyses eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.umin.ac.jp/icdr/index.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "ICMJE", "ICTRP", "WHO", "clinical trials", "patient study", "pharmaceuticals", "surgery"] [{"institutionName": "Ministry of Education, Culture, Science, Sports and Technology", "institutionAdditionalName": ["MEXT"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mext.go.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Hospital Medical Information Network", "institutionAdditionalName": ["UMIN"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.umin.ac.jp/english/whatisumin.htm", "institutionIdentifier": [], "responsibilityStartDate": "1989", "responsibilityEndDate": "", "institutionContact": ["https://www.umin.ac.jp/english/contact.htm"]}] [{"policyName": "User Manual", "policyURL": "https://www.umin.ac.jp/icdr/pdf/repository_e.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.umin.ac.jp/icdr/"}] restricted [] ["unknown"] yes {} ["none"] ["none"] yes yes [] [] {} 2016-05-22 2020-04-24 +r3d100012005 IDEADB eng [{"additionalName": "Innsbruck Dissociative Electron Attachment Database", "additionalNameLanguage": "eng"}] http://ideadb.uibk.ac.at [] ["support@vamdc.org"] The Innsbruck Dissociative Electron Attachment (DEA) DataBase node holds relative cross sections for dissociative electron attachment processes of the form: AB + e– –> A– + B, where AB is a molecule. It hence supports querying by various identifiers for molecules and atoms, such as chemical names, stoichiometric formulae, InChI (-keys) and CAS registry numbers. These identifiers are searched both in products and reactants of the processes. It then returns XSAMS files describing the processes found including numeric values for the relative cross sections of the processes. Alternatively, cross sections can be exported as plain ASCII files. eng ["disciplinary"] {"size": "about 340 data sets", "updatedp": "2019-01-11"} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Desethylamiodarons", "dissociative electron attachment", "molecular physics", "molecules"] [{"institutionName": "University of Innsbruck, Institute for Ion Physics and Applied Physics", "institutionAdditionalName": ["Universit\u00e4t Innsbruck, Institut f\u00fcr Ionenphysik undAngewandte Physik"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uibk.ac.at/ionen-angewandte-physik/index.html.en", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://ideadb.uibk.ac.at/contact/"]}, {"institutionName": "Virtual Atomic and Molecular Data Centre consortium", "institutionAdditionalName": ["VAMDC Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://vamdc.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@vamdc.org"]}] [{"policyName": "General disclaimer", "policyURL": "http://portal.vamdc.org/vamdc_portal/queryTree.seam"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ideadb.uibk.ac.at"}] open [] ["unknown"] {} ["none"] https://portal.vamdc.eu/vamdc_portal/citation.seam [] yes unknown [] [] {} The Virtual Atomic and Molecular Data Centre (VAMDC)is an EU-FP7 e-infrastructure project devoted to building a common electronic infrastructure for the exchange and distribution of atomic and molecular data. This database is part of a collaboration that has a created the RADAM portal at [http://radamdb.mbnresearch.com/]. 2016-05-23 2021-08-25 +r3d100012008 Mindboggle-101 eng [] https://dataverse.harvard.edu/dataverse/mindboggle101 ["RRID:SCR_002439", "RRID:nlx_155814"] ["arno@mindboggle.info"] The Mindboggle-101 data consist of three data sets: (1) individually labeled human brain surfaces and volumes, (2) templates (unlabeled images combining the individual brains, used for registration), and (3) atlases (anatomical labels combining the individual brains, used for labeling). eng ["disciplinary"] {"size": "3 datasets; 62 files", "updatedp": "2021-09-21"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://mindboggle.info/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["MRI", "anatomy", "computational neuroscience", "human brain", "labels", "magnetic resonance images", "neuroinformatics"] [{"institutionName": "Harvard University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["arno@binarybottle.com"]}, {"institutionName": "Harvard University, Institute of Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": ["The Dataverse Network Project"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gdurand@hmdc.harvard.ed", "support@dataverse.org"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "https://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_US"}] closed [] ["DataVerse"] {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://mindboggle.info/ [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Supplementary Website: http://www.mindboggle.info/data.html . ---- Data related to the Mindboggle project (example input, output, and test data, templates, atlases, papers, posters, etc.) are all available in Mindboggle's Open Science Framework page: https://osf.io/ydyxu/ 2016-05-26 2021-09-21 +r3d100012009 Huygens ING nld [{"additionalName": "Huygens Institute for the History of the Netherlands", "additionalNameLanguage": "eng"}, {"additionalName": "Huygens Instituut voor Nederlandse Geschiedenis", "additionalNameLanguage": "nld"}] https://www.huygens.knaw.nl/?lang=en [] ["info@huygens.knaw.nl"] By stimulating inspiring research and producing innovative tools, Huygens ING intends to open up old and inaccessible sources, and to understand them better. Huygens ING’s focus is on Digital Humanities, History, History of Science, and Textual Scholarship. Huygens ING pursues research in the fields of History, Literary Studies, the History of Science and Digital Humanities. Huygens ING aims to publish digital sources and data responsibly and with care. Innovative tools are made as widely available as possible. We strive to share the available knowledge at the institute with both academic peers and the wider public. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.huygens.knaw.nl/?lang=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Dutch language", "Netherlands", "arts", "culture", "historiography", "literature", "politics"] [{"institutionName": "CLARIAH-NL", "institutionAdditionalName": ["Common Lab Research Infrastructure for the Arts and Humanities"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.clariah.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clariah.nl/contact"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN-NL", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Netherlands"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.clarin.nl/contact", "j.odijk@uu.nl"]}, {"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/en/front-page?set_language=en", "institutionIdentifier": ["ROR:008pnp284"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dans.knaw.nl/en/contact", "info@dans.knaw.nl"]}, {"institutionName": "Huygens Institute for the History of the Netherlands of the Royal Netherlands Academy of Arts and Sciences", "institutionAdditionalName": ["Huygens ING - KNAW", "Huygens Instituut voor Nederlandse Geschiedenis - Koninklijke Nederlandse Akademie van Wetenschappen"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.huygens.knaw.nl/?lang=en", "institutionIdentifier": ["ROR:04x6kq749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@huygens.knaw.nl"]}, {"institutionName": "Royal Netherlands Academy of Arts and Sciences", "institutionAdditionalName": ["KNAW", "Koninklijke Nederlandse Akademie van Wetenschappen", "The Academy"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.knaw.nl/nl", "institutionIdentifier": ["ROR:043c0p156"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.knaw.nl/nl/topnavigatie/contact/overzicht"]}] [{"policyName": "Code of Conduct for the use of personal data in scientific research", "policyURL": "https://vsnu.nl/en_GB/code-personal-data"}, {"policyName": "Huygens ING - KNAW data policy", "policyURL": "https://en.huygens.knaw.nl/informatie/documenten/"}, {"policyName": "KNAW policy on open access and digital preservation", "policyURL": "https://www.knaw.nl/en/topics/openscience/open-access-and-digital-preservation/open-access/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/nl/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.huygens.knaw.nl/informatie/copyright-en-citeren/"}] restricted [{"dataUploadLicenseName": "Information about depositing data", "dataUploadLicenseURL": "https://www.dans.knaw.nl/en/deposit/information-about-depositing-data"}] ["unknown"] no {"api": "http://oaipmh.huygens.knaw.nl/oai", "apiType": "OAI-PMH"} ["hdl"] ["none"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Huygens ING has a DSA for eLaborate 4: eLaborate is an online work environment in which scholars can upload scans, transcribe and annotate text, and publish the results as on online text edition 2016-05-26 2021-05-25 +r3d100012010 Australian SuperSite Network Data Portal eng [{"additionalName": "SupeSites Data Portal", "additionalNameLanguage": "eng"}] https://www.supersites.net.au/knb/ [] ["info@supersites.net.au", "mirko.karan@jcu.edu.au"] The Australian SuperSite Network Data Portal presents data on vegetation, fauna, soil, water, daily meteorology and daily recorded soundscapes from 10 SuperSites across a diverse range of biomes, including tropical rainforest, grassland and savanna; wet and dry sclerophyll forest and woodland; and semi-arid grassland, woodland and savanna. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://supersites.tern.org.au/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["above ground biomass", "acoustics monitoring", "ants", "birds", "climate data", "coarse woody debris", "ecological data", "ecosystem observatory", "forest management", "leaf area index", "peri-urban ecosystems", "phenocamera", "phenology", "photopoint", "plant physiology", "recruitment", "soil chemistry", "soil microbes", "soundscape", "weather"] [{"institutionName": "Australian Terrestrial Ecosystem Research Network", "institutionAdditionalName": ["TERN"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://supersites.tern.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://supersites.tern.org.au/about-us/contacts"]}, {"institutionName": "James Cook University", "institutionAdditionalName": ["JCU"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.jcu.edu.au", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TERN Data Licensing", "policyURL": "https://www.tern.org.au/datalicence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://www.tern.org.au/TERN-s-Data-Licences-pg22188.html"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://tern.org.au/TERN-s-Data-Licences-pg22188.html"}] restricted [] ["unknown"] yes {"api": "https://www.supersites.net.au/knb/dataProvider", "apiType": "OAI-PMH"} ["none"] https://portal.tern.org.au/bird-survey-data-karawatha-2015/17124 [] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} Citation at any entry 2016-05-27 2019-01-11 +r3d100012011 Consortium of Pacific Herbaria eng [{"additionalName": "Supporting regional databases, digitization and data sharing of plant specimens", "additionalNameLanguage": "eng"}] http://www.pacificherbaria.org/ [] ["mbthomas@hawaii.edu"] The Consortium of Pacific Herbaria (CPH) supports the enhancement of research cyberinfrastructure within Hawai'i and the Pacific basin for implementing shared specimen data hosting of plant specimens. The CPH network is a regional node of the US Virtual Herbarium. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.researchgate.net/publication/280600812_Consortium_of_Pacific_Herbaria [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Fiji", "Micronesia", "Polynesia", "algae", "botany", "georeference", "pacific biogeography", "plant families", "plant specimens", "taxa", "vascular plants"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Hawai'i, Department of Botany, M\u0101noa's Joseph Rock Herbarium", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.botany.hawaii.edu/joseph-f-rock-herbarium-haw/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["http://www.botany.hawaii.edu/contact-us/", "mbthomas@hawaii.edu"]}, {"institutionName": "University of Hawai\u2018i M\u0101noa", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://manoa.hawaii.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://manoa.hawaii.edu/about/contact/", "https://manoa.hawaii.edu/news/article.php?aId=4142"]}] [{"policyName": "Policies", "policyURL": "http://hawaii.edu/policy/docs/temp/ep2.210.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://hawaii.edu/policy/?action=viewPolicy&policySection=ep&policyChapter=2&policyNumber=210"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.hawaii.edu/policy/docs/temp/ep2.210.pdf"}] restricted [] ["unknown"] {} [] http://www.pacificherbaria.org/index.php [] unknown yes [] [] {"syndication": "http://symbiota4.acis.ufl.edu/pacific/portal/webservices/dwc/rss.xml", "syndicationType": "RSS"} 2016-06-02 2019-01-11 +r3d100012013 TERN Data Discovery Portal eng [{"additionalName": "TDDP", "additionalNameLanguage": "eng"}, {"additionalName": "Terrestrial Ecosystem Research Network Data Discovery Portal", "additionalNameLanguage": "eng"}] https://portal.tern.org.au [] ["esupport@tern.org.au", "https://portal.tern.org.au/contact"] The TERN Data Discovery Portal (TDDP) is a gateway to search and access all the datasets published by the Australian Terrestrial Ecosystem Research Network. In the TERN data discovery portal, users can conduct textual and graphical searches on the metadata catalogue using a web interface with temporal, spatial, and eco science related controlled vocabulary keywords. Requests to download data discovered through different data services associated with TERN. Downloading, using and sharing data will be subjected to the TERN data licensing framework (https://www.tern.org.au/datalicence/). eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tern.org.au/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "animals", "climate", "ecology", "energy", "human-nature interactions", "land surface", "plants", "remote sensing", "soils", "terrestrial ecosystem", "vegetaton", "water"] [{"institutionName": "National Collaborative Research Infrastructure Strategy", "institutionAdditionalName": ["NCRIS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dese.gov.au/ncris", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Queensland, Terrestrial Ecosystem Research Network", "institutionAdditionalName": ["TERN"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tern.org.au/", "institutionIdentifier": ["ROR:03wxseg04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tern.org.au/contact/"]}] [{"policyName": "TERN Data Licensing Guide", "policyURL": "https://www.tern.org.au/datalicence/"}, {"policyName": "TERN Data Licensing Policy", "policyURL": "https://www.tern.org.au/wp-content/uploads/TERN-Data-Licensing-Policy-v3_0.pdf"}, {"policyName": "TERN Data Provider Deed", "policyURL": "https://www.tern.org.au/wp-content/uploads/TERN-Data-Provider-Deed-v1_7.docx"}, {"policyName": "Terms of use", "policyURL": "https://www.tern.org.au/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] yes {"api": "https://dap.tern.org.au/thredds/catalog/ecosystem_process/ozflux/catalog.html", "apiType": "NetCDF"} ["DOI", "other"] https://www.tern.org.au/datalicence/ [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2016-06-03 2021-11-10 +r3d100012014 HyperLeda eng [{"additionalName": "Database for physics of galaxies", "additionalNameLanguage": "eng"}, {"additionalName": "Leda", "additionalNameLanguage": "eng"}, {"additionalName": "Lyon-Meudon Extragalactic Database", "additionalNameLanguage": "eng"}] http://leda.univ-lyon1.fr/ ["ISSN 2497-5486"] ["leda@univ-lyon1.fr"] HyperLeda is an information system for astronomy: It consists in a database and tools to process that data according to the user's requirements. The scientific goal which motivates the development of HyperLeda is the study of the physics and evolution of galaxies. LEDA was created more than 20 years ago, in 1983, and became HyperLeda after the merging with Hypercat in 2000 eng ["disciplinary"] {"size": "5.377.511 objects", "updatedp": "2019-01-11"} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://leda.univ-lyon1.fr/intro.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astronomy", "astrophysics", "galaxy", "kinematics", "photometry", "spectrophotometry"] [{"institutionName": "European Virtual Observatory", "institutionAdditionalName": ["EURO-VO"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.euro-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.euro-vo.org/?q=about/contacts"]}, {"institutionName": "Lyon Astrophysics Research Center, Lyon Observatory", "institutionAdditionalName": ["CRAL, Lyon Observatory", "Centre de Recherche Astrophysique de Lyon, L\u2019Observatoire de Lyon"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://observatoire.univ-lyon1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["leda@univ-lyon1.fr"]}, {"institutionName": "Universit\u00e9 Claude Bernard Lyon 1", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univ-lyon1.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.univ-lyon1.fr/universite/nos-engagements/developpement-durable/contact-developpement-durable-936300.kjsp?RH=M2R-0"]}] [{"policyName": "Advanced User Guide", "policyURL": "http://leda.univ-lyon1.fr/advanced.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://leda.univ-lyon1.fr/intro.html"}] closed [] ["other"] {} ["none"] http://leda.univ-lyon1.fr/acknowledge.html ["none"] unknown yes [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {} Team and Mirrors: http://leda.univ-lyon1.fr/intro.html 2016-06-08 2019-01-11 +r3d100012015 GeneCards eng [{"additionalName": "The Human Gene Database", "additionalNameLanguage": "eng"}] https://www.genecards.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.g7jbvn", "OMICS_01652", "RRID:SCR_002773", "RRID:nif-0000-02879"] ["https://www.genecards.org/Guide/GeneCardsTeam", "support@lifemapsc.com."] GeneCards is a searchable, integrative database that provides comprehensive, user-friendly information on all annotated and predicted human genes. It automatically integrates gene-centric data from ~125 web sources, including genomic, transcriptomic, proteomic, genetic, clinical and functional information. eng ["disciplinary"] {"size": "148.055 GeneCards", "updatedp": "2019-01-15"} 1997 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.genecards.org/Guide/AboutGeneCards [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "biological pathway", "biology", "cell", "disease", "genetics", "genomics", "medicine", "protein"] [{"institutionName": "LifeMap Sciences", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.lifemapsc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lifemapsc.com/contact-us/", "sales@lifemapsc.com"]}, {"institutionName": "Weizmann Institute of Science, The Crown Human Gemome Center", "institutionAdditionalName": ["WIS", "\u05de\u05db\u05d5\u05df \u05d5\u05d9\u05e6\u05de\u05df \u05dc\u05de\u05d3\u05e2\u200e\u200e"], "institutionCountry": "ISR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.weizmann.ac.il/acadaff/Scientific_Activities/2010/crown_genome_center.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["academic.affairs@weizmann.ac.il", "https://www.weizmann.ac.il/pages/contact"]}, {"institutionName": "Yeda Research and Development Company Ltd", "institutionAdditionalName": ["YEDA"], "institutionCountry": "ISR", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.yedarnd.com/Overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.yedarnd.com/contact-us"]}] [{"policyName": "Limited License AGREEMENT", "policyURL": "https://www.genecards.org/AcadLicense.pdf"}, {"policyName": "Terms of Use", "policyURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.genecards.org/AcadLicense.pdf"}] closed [] ["unknown"] yes {} ["none"] https://www.genecards.org/Guide/Publications ["none"] unknown yes [] [] {} GeneCards is part of GeneCardsSuite 2016-06-09 2019-01-15 +r3d100012016 volare deu [{"additionalName": "Vorarlberger Landesrepositorium", "additionalNameLanguage": "eng"}] https://www.vorarlberg.at/volare [] ["info.vlb@vorarlberg.at"] Volare is the repository of the Vorarlberger Landesbibliothek (Vorarlberg State Library). Digital Objects are made end-user-friendly available and they are secured in a long term. Pupils, students, patrimonial researchers but also the general public can use the imagery for various purposes. Volare facilitates access to regional, social and cultural history research. Volare encourages those who rediscover their native place or their holiday desination or just generally want to browse in the past. deu ["disciplinary", "other"] {"size": "74553 Treffer", "updatedp": "2019-01-15"} 2015-09-01 ["deu"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://pid.volare.vorarlberg.at/?dest=1 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cultural heritage", "historical maps", "image databank", "images", "photo databank", "postcards"] [{"institutionName": "Univesit\u00e4t Wien", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univie.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["phaidra@univie.ac.at"]}, {"institutionName": "Vorarlberger Landesbibliothek", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://vlb.vorarlberg.at/index.php?id=2&no_cache=1", "institutionIdentifier": [], "responsibilityStartDate": "2015-09-01", "responsibilityEndDate": "", "institutionContact": ["https://vlb.vorarlberg.at/wer-sind-wir/"]}] [{"policyName": "Copyright", "policyURL": "https://pid.volare.vorarlberg.at/Sammlung/Nutzungsbedingungen.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.de"}] closed [] ["Fedora"] no {"api": "http://www.bodenseebibliotheken.de/tagungen/2016/TA_160915_Ueberlingen_volare_Eberle.pdf", "apiType": "FTP"} ["none"] [] unknown yes [] [] {} Im Zusammenspiel von ALEPH (Exlibris) und PHAIDRA (Universität Wien) werden über standardisierte Schnittstellen Metadaten und digitale Objekte im Bulkupload geladen, verknüpft und dauerhaft gespeichert. Die Recherche erfolgt über AQUABROWSER (ProQuest). 2016-06-10 2019-01-15 +r3d100012017 LifeMap Discovery eng [{"additionalName": "Embryonic development & stem cell Compendium", "additionalNameLanguage": "eng"}] https://discovery.lifemapsc.com/ [] ["https://discovery.lifemapsc.com/"] LifeMap Discovery® is a compendium of embryonic development for stem cell research and regenerative medicine, constructed by integrating extensive molecular, cellular, anatomical and medical data curated from scientific literature and high-throughput data sources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-11-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20521 Gynaecology and Obstetrics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.lifemapsc.com/products/lifemap-integrated-knowledgebase/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["Next Generation Sequencing NGS", "bioinformatics", "cell therapies", "disease", "embryo", "gene expression", "genetics", "healthcare", "stem cell differentiation", "tissue"] [{"institutionName": "BioTime", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.biotimeinc.com", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.biotimeinc.com/contact-us/"]}, {"institutionName": "LifeMap Sciences, Inc", "institutionAdditionalName": [], "institutionCountry": "ISR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.lifemapsc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lifemapsc.com/contact-us/", "re@lifemapsc.com", "support@lifemapsc.com"]}] [{"policyName": "Copyright", "policyURL": "https://discovery.lifemapsc.com/"}, {"policyName": "Terms of Use", "policyURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] closed [] ["unknown"] yes {} ["none"] https://discovery.lifemapsc.com/About ["none"] unknown yes [] [] {} LifeMap Sciences is part of GeneCards Suite 2016-06-13 2019-01-15 +r3d100012018 MalaCards eng [{"additionalName": "Human disease Database", "additionalNameLanguage": "eng"}] https://www.malacards.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.e4r5nj", "OMICS_04647", "RRID:SCR_005817", "RRID:nlx_149314"] ["https://www.malacards.org/pages/team"] MalaCards is an integrated database of human maladies and their annotations, modeled on the architecture and richness of the popular GeneCards database of human genes. MalaCards mines and merges varied web data sources to generate a computerized web card for each human disease. Each MalaCard contains disease specific prioritized annotative information, as well as links between associated diseases, leveraging the GeneCards relational database, search engine, and GeneDecks set-distillation tool. As proofs of concept of the search/distill/infer pipeline we find expected elucidations, as well as potentially novel ones. eng ["disciplinary"] {"size": "19.547 disease entries, consolidated from 76 sources", "updatedp": "2019-01-15"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.malacards.org/pages/info#whats_in_a_malacard [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["bioinformatics", "biology", "disease", "genetics", "human maladies", "medicine", "molecular function", "pathways", "phenotype", "symptomes"] [{"institutionName": "LifeMap Sciences", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.lifemapsc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lifemapsc.com/contact-us/", "sales@lifemapsc.com"]}, {"institutionName": "Weizmann Institute of Science", "institutionAdditionalName": ["WIS", "\u05de\u05db\u05d5\u05df \u05d5\u05d9\u05e6\u05de\u05df \u05dc\u05de\u05d3\u05e2\u200e\u200e"], "institutionCountry": "ISR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.weizmann.ac.il/pages/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["academic.affairs@weizmann.ac.il", "https://www.weizmann.ac.il/pages/contact"]}, {"institutionName": "Yeda Research and Development Company Ltd", "institutionAdditionalName": ["YEDA"], "institutionCountry": "ISR", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.yedarnd.com/Overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.yedarnd.com/contact-us"]}] [{"policyName": "Limited License AGREEMENT", "policyURL": "http://www.genecards.org/AcadLicense.pdf"}, {"policyName": "Terms and Condtions", "policyURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] closed [] ["other"] yes {} ["none"] ["none"] unknown yes [] [] {} MalaCard is part of GeneCards Suite 2016-06-13 2019-01-15 +r3d100012019 UCLanData eng [] http://uclandata.uclan.ac.uk/ [] ["rdmsupport@uclan.ac.uk"] Repository of research data sets created under the auspices of the University of Central Lancashire eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.uclan.ac.uk/research/index.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["anatomy", "cinematics", "culture studies", "dance", "design studies", "education", "fish farming", "health", "languages", "linguistics", "literature", "marketing", "music", "photography", "sport science", "veterinary medicine"] [{"institutionName": "University of Central Lancashire", "institutionAdditionalName": ["UCLan"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uclan.ac.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uclan.ac.uk/contact_us/index.php"]}] [{"policyName": "Research Data Management Policy", "policyURL": "http://uclandata.uclan.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.uclan.ac.uk/corporate_information/copyright.php"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "http://uclandata.uclan.ac.uk/policies.html"}] ["unknown"] {} ["DOI"] ["ORCID"] unknown unknown [] [] {} 2016-06-13 2019-01-15 +r3d100012020 CLARINO Bergen Center repository eng [] https://repo.clarino.uib.no/xmlui/ [] ["clarin@uib.no"] CLARINO Bergen Center repository is the repository of CLARINO, the Norwegian infrastructure project . Its goal is to implement the Norwegian part of CLARIN. The ultimate aim is to make existing and future language resources easily accessible for researchers and to bring eScience to humanities disciplines. The repository includes INESS the Norwegian Infrastructure for the Exploration of Syntax and Semantics. This infrastructure provides access to treebanks, which are databases of syntactically and semantically annotated sentences. eng ["disciplinary"] {"size": "58 records", "updatedp": "2021-05-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://repo.clarino.uib.no/xmlui/page/about#mission-statement [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Norwegian", "Saami", "corpora", "treebanks"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": ["Wikidata:Q2986825"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "CLARINO", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Norway"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.w.uib.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Council of Norway", "institutionAdditionalName": ["Norges Forskningsr\u00e5det"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.forskningsradet.no/en/", "institutionIdentifier": ["ROR:00epmv149"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitetet i Bergen", "institutionAdditionalName": ["University of Bergen"], "institutionCountry": "NOR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uib.no/", "institutionIdentifier": ["ROR:03zga2b32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About CLARINO Bergen repository and Policies", "policyURL": "https://repo.clarino.uib.no/xmlui/page/about"}, {"policyName": "Terms of service", "policyURL": "https://repo.clarino.uib.no/xmlui/page/terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://repo.clarino.uib.no/xmlui/page/licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.kielipankki.fi/support/clarin-eula/"}] restricted [{"dataUploadLicenseName": "Deposition License Agreement", "dataUploadLicenseURL": "https://repo.clarino.uib.no/xmlui/page/contract"}] ["DSpace"] yes {"api": "https://clarino.uib.no/oai", "apiType": "OAI-PMH"} ["hdl"] https://repo.clarino.uib.no/xmlui/page/about#citing-data-policy [] unknown yes ["CLARIN certificate B", "other"] [] {"syndication": "https://repo.clarino.uib.no/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} CLARINO is funded by the consortium partners: University of Bergen (LLE and UB),coordinator, University of Oslo (ILN and IFI), Norwegian School of Economics (NHH), University of Tromsø (UiT), Norwegian University of Science and Technology (NTNU), Uni Computing, a division in Uni Research AS, The National Library of Norway (NB) 2016-06-15 2022-01-03 +r3d100012021 CoCoON fra [{"additionalName": "COllections de COrpus Oraux Num\u00e9riques", "additionalNameLanguage": "fra"}] https://cocoon.huma-num.fr/exist/crdo/ ["ISSN 2495-943X"] ["cocoon_web@huma-num.fr"] Cocoon "COllections de COrpus Oraux Numériques" is a technical platform that accompanies the oral resource producers, create, organize and archive their corpus; a corpus can consist of records (usually audio) possibly accompanied by annotations of these records. The resources registered are first cataloged and stored while, and then, secondly archived in the archive of the TGIR Huma-Num. The author and his institution are responsible for filings and may benefit from a restricted and secure access to their data for a defined period, if the content of the information is considered sensitive. The COCOON platform is jointly operated by two joint research units: Laboratoire de Langues et civilisations à tradition orale (LACITO - UMR7107 - Université Paris3 / INALCO / CNRS) and Laboratoire Ligérien de Linguistique (LLL - UMR7270 - Universités d'Orléans et de Tours, BnF, CNRS). eng ["disciplinary"] {"size": "11,675 datasets", "updatedp": "2019-10-15"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://cocoon.huma-num.fr/exist/crdo/missions.htm [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Corpus de Fran\u00e7ais Parl\u00e9 Parisien des ann\u00e9es 2000 (CFPP2000)", "Corpus de la parole", "Enqu\u00eate Socio-Linguistique d'Orl\u00e9ans - eslo", "Pangloss", "corpora", "spoken corpora", "transcipts"] [{"institutionName": "CINES", "institutionAdditionalName": ["Centre Informatique National de l\u2019Enseignement Sup\u00e9rieur"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cines.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["Natioan Centre for Scientifc Research"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HUMA-NUM", "institutionAdditionalName": ["La TGIR (tr\u00e8s grande infrastructure de recherche) des humanit\u00e9s num\u00e9riques"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut National de Physique Nucl\u00e9aire et de Physique de Particules, Centre de Calcul", "institutionAdditionalName": ["CCIN2P3/CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cc.in2p3.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratoire Lig\u00e9rien de Linguistique", "institutionAdditionalName": ["LLL"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lll.cnrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratoire de Langues et civilisations \u00e0 tradition orale", "institutionAdditionalName": ["LACITO", "UMR7107"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lacito.vjf.cnrs.fr/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Lettre de mission", "policyURL": "https://cocoon.huma-num.fr/exist/crdo/doc/lettreDeMissions.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] {"api": "https://cocoon.huma-num.fr/crdo_servlet/oai-pmh?verb=Identify", "apiType": "OAI-PMH"} ["ARK", "PURL", "hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://cocoon.huma-num.fr/exist/crdo/cocoon_rss.xml", "syndicationType": "RSS"} CoCOon is part of the french CLARIN infrastructure and is a CLARIN Centre C type since 2015. formerly named: Centre de Ressources pour la Description de l'Oral (CRDO) - Groupe "Gestion documentaire et réservoir de données". CoCOon data are searchable via CLARIN Virtual Language Observatory (VLO) https://vlo.clarin.eu/search;jsessionid=B792F00464146FA23F27027E64E2FF68?0 and harvested by OLAC http://search.language-archives.org/search.html?q=archive_facet%3A%22COllections+de+COrpus+Oraux+Numeriques+%28CoCoON+ex-CRDO%29%22 2016-06-15 2020-02-14 +r3d100012023 PathCards eng [{"additionalName": "Pathway Unification Database", "additionalNameLanguage": "eng"}] http://pathcards.genecards.org/ ["OMICS_07645"] ["https://www.weizmann.ac.il/pages/contact"] PathCards is an integrated database of human biological pathways and their annotations. Human pathways were clustered into SuperPaths based on gene content similarity. Each PathCard provides information on one SuperPath which represents one or more human pathways. eng ["disciplinary"] {"size": "1.289 SuperPath entries, consolidated from 12 sources", "updatedp": "2019-01-15"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["biological pathways", "gene expresson", "genetics", "genomics", "metabolism", "molecular biology"] [{"institutionName": "LifeMap Sciences, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "http://www.lifemapsc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lifemapsc.com/contact-us/", "sales@lifemapsc.com"]}, {"institutionName": "Weizmann Institute of Science, Crown Human Genome Center", "institutionAdditionalName": ["WIS", "\u05de\u05db\u05d5\u05df \u05d5\u05d9\u05e6\u05de\u05df \u05dc\u05de\u05d3\u05e2\u200e\u200e"], "institutionCountry": "ISR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.weizmann.ac.il/acadaff/Scientific_Activities/2010/crown_genome_center.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["academic.affairs@weizmann.ac.il"]}, {"institutionName": "Yeda Research and Development Company Ltd.", "institutionAdditionalName": ["Yeda"], "institutionCountry": "ISR", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.yedarnd.com/Overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.yedarnd.com/contact-us"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.weizmann.ac.il/pages/terms-and-conditions"}, {"policyName": "Terms of Use", "policyURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lifemapsc.com/genecards-suite-terms-of-use/"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} PathCards is part of GeneCardsSuite 2016-06-20 2019-01-15 +r3d100012025 VMF Data Server eng [{"additionalName": "Vienna Mapping Functions Open Access Data", "additionalNameLanguage": "eng"}] https://vmf.geo.tuwien.ac.at/ [] ["vmf@tuwien.ac.at"] This website provides a collection of all troposphere models published by TU Wien as well as all related data files. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://vmf.geo.tuwien.ac.at/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["DORIS", "GNSS", "Global Mapping Functions (GMF)", "Global Pressure and Temperature (GPT)", "Horizontal troposphere gradients (GRAD)", "SLR", "VLBI", "Vienna Mapping Functions (VMF)", "troposphere", "weather"] [{"institutionName": "FWF - Der Wissenschaftsfonds", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fwf.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Office of Metrology and Surveying, Department for Control Survey", "institutionAdditionalName": ["BEV", "Bundesamt f\u00fcr Eich- und Vermessungswesen"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bev.gv.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "TU Wien, Department of Geodesy and Geoinformation", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://geo.tuwien.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://vmf.geo.tuwien.ac.at/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] no {} ["DOI"] ["none"] yes unknown [] [] {} 2016-06-20 2021-08-24 +r3d100012029 Environmental Monitoring System eng [{"additionalName": "British Columbia Environmental Monitoring System", "additionalNameLanguage": "eng"}, {"additionalName": "EMS", "additionalNameLanguage": "eng"}, {"additionalName": "Environmental Monitoring Databases", "additionalNameLanguage": "eng"}] https://www2.gov.bc.ca/gov/content/environment/research-monitoring-reporting/monitoring/environmental-monitoring-system [] ["EMSHelp@gov.bc.ca"] EMS is the BC Ministry of Environment's primary monitoring data repository. The system was designed to capture data covering physical/chemical and biological analyses performed on water, air, solid waste discharges and ambient monitoring sites throughout the province. It also contains related quality assurance data. Samples are collected by either ministry staff or permittees under the Environmental Management Act and then analyzed in public or private sector laboratories. The majority of such monitoring data is entered into EMS electronically via Electronic Data Transfer (EDT). EMS data is typically available in formatted hard copy reports or electronically in comma delimited (e.g., .csv) files as: Monitoring location-related data, Sample and results-related data. Direct access to EMS is restricted to ministry staff, however public access is available upon request through EMS Web Reporting. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Effluent Discharge Monitoring EDM", "Electronic Data Transfer EDT", "Environmental Management Act EMA", "Environmental Monitoring Databases"] [{"institutionName": "British Columbia, Ministry of Environment and Climate Change Strategy", "institutionAdditionalName": ["B.C. Ministry of Environment"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/environment-climate-change", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www2.gov.bc.ca/gov/content/home/get-help-with-government-services"]}] [{"policyName": "BC Employment & Assistance Policy & Procedure Manual", "policyURL": "https://www2.gov.bc.ca/gov/content/governments/policies-for-government/bcea-policy-and-procedure-manual"}, {"policyName": "FOIPPA Policy & Procedures Manual", "policyURL": "https://www2.gov.bc.ca/gov/content/governments/services-for-government/policies-procedures/foippa-manual"}, {"policyName": "Information Security Policy and Guidelines", "policyURL": "https://www2.gov.bc.ca/gov/content/governments/services-for-government/policies-procedures/information-security-policy-and-guidelines?keyword=Information&keyword=Security&keyword=Policy"}, {"policyName": "Services & Policies for Government and Broader Public Sector", "policyURL": "https://www2.gov.bc.ca/gov/content/governments/services-for-government"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www2.gov.bc.ca/gov/content/home/copyright"}] restricted [] [] {} ["none"] [] unknown yes [] [] {} EMS WR is an internet application that allows users to access information stored in the EMS database. The database is essentially an electronic information warehouse that includes: Physical, chemical, and biological test results for analyses performed on air, water, solid waste discharge, and ambient monitoring locations throughout B.C. Drinking water test results on samples collected by water purveyors and health authorities. External data requests should be directed to regional ministry staff or to the EMS help desk in Victoria (Email: EMSHELP@gov.bc.ca). 2016-06-21 2021-02-16 +r3d100012030 FactSage eng [] https://www.factsage.com/ [] ["crct@polymtl.ca"] FactSage is a fully integrated Canadian thermochemical database system which couples proven software with self-consistent critically assessed thermodynamic data. It currently contains data on over 5000 chemical substances as well as solution databases representing over 1000 non-ideal multicomponent solutions (oxides, salts, sulfides, alloys, aqueous, etc.). FactSage is available for use with Windows. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30203 Theory and Modelling", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.crct.polymtl.ca/factsage/fs_general.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["chemistry", "compounds", "light metal alloys", "metals", "oxides", "salt", "slags", "steels"] [{"institutionName": "GTT-Technologies", "institutionAdditionalName": ["Gesellschaft f\u00fcr Technische Thermochemie und -physik mbH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://gtt-technologies.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://gtt-technologies.de/company/contact/", "info@gtt-technologies.de"]}, {"institutionName": "\u00c9cole Polytechnique de Montr\u00e9al, G\u00e9nie chimique, CRCT", "institutionAdditionalName": ["Center for Research in Computational Thermochemistry", "Centre de Recherche en Calcul Thermochimique", "\u00c9cole Polytechnique de Montr\u00e9al, Chemical Engineering, CRCT"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.crct.polymtl.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["crct@polymtl.ca"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.crct.polymtl.ca/fact/facthelp/faq.htm#1.4"}] closed [] [] yes {} ["none"] http://www.crct.polymtl.ca/factsage/fs_publications.php [] yes unknown [] [] {} FactSage is the fusion of two software packages in the field of computational thermochemistry: FACT-Win (formerly FACT) and ChemSage (formerly SOLGASMIX). It consists of a series of modules that access and manipulate thermodynamic databases and perform various calculations. Some of the FactSage modules (Equilib, Phase Diagram, OptiSage) employ the Gibbs energy minimizer of ChemSage. Users have access to databases of thermodynamic data for thousands of compounds as well as to evaluated and optimized databases for hundreds of solutions of metals, liquid and solid oxide solutions, mattes, molten and solid salt solutions, aqueous solutions, etc. For detailed information on the various databases see the Database Documentation http://www.crct.polymtl.ca/fact/documentation/ The FACT-Web programs offer free but very limited interaction with FactSage: http://www.crct.polymtl.ca/factweb.php This service may be discontinued at any time without notice. The programs are offered for demonstration purposes only. Many of the features available in the full FactSage package have been removed or diluted. 2016-06-21 2020-12-14 +r3d100012031 National Contaminants Information System eng [{"additionalName": "NCIS", "additionalNameLanguage": "eng"}, {"additionalName": "SNIC", "additionalNameLanguage": "fra"}, {"additionalName": "Syst\u00e8me National d'Information sur les Contaminants", "additionalNameLanguage": "fra"}] https://dr-dn.cisti-icist.nrc-cnrc.gc.ca/eng/view/object/?id=bd73ecc4-2ba6-4462-a887-6b5fa08ed659 [] [] >>>!!!<<< 2021-03-19: The repository is no longer available >>>!!!<<< The National Contaminants Information System was begun as part of the Department's Green Plan. The NCIS is a computerized warehouse of information on toxic chemicals in fish, other aquatic life and their habitats. It was built to help manage the growing base of data and information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://dfo-mpo.gc.ca/about-notre-sujet/org/index-eng.htm [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Environment", "biota", "chemical contaminants", "chemistry samples", "dioxin", "meristics", "sediments"] [{"institutionName": "Government of Canada, Fisheries and Oceans Canada", "institutionAdditionalName": ["DFO", "Gouvernement du Canada, P\u00eaches et Oc\u00e9ans Canada", "MPO"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dfo-mpo.gc.ca/index-eng.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy for Scientific Data", "policyURL": "http://www.dfo-mpo.gc.ca/science/data-donnees/policy-politique/index-eng.html"}, {"policyName": "Processes, Policies, and Guidelines", "policyURL": "http://www.dfo-mpo.gc.ca/csas-sccs/process-processus/index-eng.html"}, {"policyName": "Social Media Terms of Use", "policyURL": "http://www.dfo-mpo.gc.ca/connect/terms-conditions-eng.htm"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"feeRequired\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.dfo-mpo.gc.ca/copyright-droits-eng.htm"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm#toc8"}] restricted [] [] {} ["none"] [] unknown yes [] [] {} NCIS is part of Oceanography and Scientific Data (OSD) Collection: Gateway to Research Data https://dr-dn.cisti-icist.nrc-cnrc.gc.ca/eng/home/collection/Gateway%20to%20Research%20Data/ 2016-06-21 2021-03-19 +r3d100012032 OGSEarth eng [] http://www.mndm.gov.on.ca/en/mines-and-minerals/applications/ogsearth [] ["http://www.mndm.gov.on.ca/en/forms/contact", "mediadesk.ndm@ontario.ca"] OGSEarth provides geoscience data, collected by the Mines and Minerals division, which can be viewed using user-friendly geographic information programs such as Google Earth™. OSGEarth provides data on Mining claims, Geology, Index maps, Administrative boundaries and Abandoned mines. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.mndm.gov.on.ca/en/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Geosciences", "Ontario", "mining claims"] [{"institutionName": "Minist\u00e8re de l'\u00c8nergie, du D\u00e9veloppement du Nord et des Mines", "institutionAdditionalName": ["Ministry of Energy, Northern Development and Mines"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mndm.gov.on.ca/en", "institutionIdentifier": ["ROR:033z7g133"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mndm.gov.on.ca/en/forms/contact"]}, {"institutionName": "Northern Ontario Heritage Fund Corporation", "institutionAdditionalName": ["NOHFC", "SGFPNO", "Soci\u00e9t\u00e9 de gestion du Fonds du patrimoine du Nord de l'Ontario"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nohfc.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nohfc.ca/en/pages/contact-us"]}] [{"policyName": "Ontario Public Service accessibility plans and policies", "policyURL": "https://www.ontario.ca/page/accessibility#section-1"}, {"policyName": "Terms of use", "policyURL": "https://www.ontario.ca/page/terms-use#section-4"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ontario.ca/page/copyright-information-c-queens-printer-ontario"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ontario.ca/page/terms-use#section-4"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} The Google Earth API is modeled after KML, so you should also consult Google's KML documentation. 2016-06-21 2021-07-02 +r3d100012033 Digital Rocks Portal eng [{"additionalName": "DRP", "additionalNameLanguage": "eng"}] https://www.digitalrocksportal.org/ [] ["masha@utexas.edu"] Digital Rocks is a data portal for fast storage and retrieval of images of varied porous micro-structures. It has the purpose of enhancing research resources for modeling/prediction of porous material properties in the fields of Petroleum, Civil and Environmental Engineering as well as Geology. This platform allows managing and preserving available images of porous materials and experiments performed on them, and any accompanying measurements (porosity, capillary pressure, permeability, electrical, NMR and elastic properties, etc.) required for both validation on modeling approaches and the upscaling and building of larger (hydro)geological models. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.digitalrocksportal.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["NMR", "geology", "geosciences", "material science", "microstructure", "petroleum engineering", "petroleum engineering", "porous material", "simulation"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Texas at Austin, Texas Advanced Computing Center", "institutionAdditionalName": ["TACC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tacc.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tacc.utexas.edu/education/stem-programs/digital-rocks"]}, {"institutionName": "University of Texas at Austin, Center for Subsurface Energy and the Environment", "institutionAdditionalName": ["CPGE", "formerly: University of Texas at Austin, Center for Petroleum and Geosystems Engineering"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://csee.engr.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://csee.engr.utexas.edu/about/contact-us/"]}] [{"policyName": "User Agreement", "policyURL": "https://www.digitalrocksportal.org/user-agreement/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1-0/"}] restricted [] ["other"] no {} ["DOI"] https://www.digitalrocksportal.org/about/ [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} The DRP is currently funded via federal grant and Users are charged no fees to use it. Beginning September 1, 2017, Users will be responsible for paying a storage fee of $258 per 1 TB of data per year, and portal maintenance fee according to the following schedule. 2016-06-21 2020-12-14 +r3d100012034 Natural Heritage Information Centre eng [{"additionalName": "CIPN", "additionalNameLanguage": "fra"}, {"additionalName": "Centre d'information sur le patrimoine naturel", "additionalNameLanguage": "fra"}, {"additionalName": "NHIC", "additionalNameLanguage": "eng"}] https://www.ontario.ca/page/natural-heritage-information-centre [] ["NHICrequests@ontario.ca", "https://www.ontario.ca/feedback/contact-us?id=43681&nid=46769"] The Ontario Natural Heritage Information Centre (NHIC) compiles, maintains and provides information on rare, threatened and endangered species and spaces in Ontario. This information is stored in a central repository composed of computerized databases, map files and an information library, which are accessible for conservation applications, land use development planning, park management, etc. Ministry of Natural Resources, Ontario. eng ["disciplinary"] {"size": "over 17.000 plants, animals and lichens in Ontario; 2.000 species, plant communities and wildlife concentration areas; over 9.000 natural areas in the province", "updatedp": "2020-12-22"} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ontario.ca/page/get-natural-heritage-information [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "biodiversity atlases", "biological sciences", "conservation data centre", "herbarium", "insect collection", "natural areas", "plant communities", "wildlife concentration areas"] [{"institutionName": "Government of Ontario", "institutionAdditionalName": ["Gouvernement de l\u2019Ontario"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/government-ontario", "institutionIdentifier": ["ROR:015pzp858"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Natural Resources and Forestry", "institutionAdditionalName": ["MNRF", "MRNF", "Minist\u00e8re des Richesses naturelles et des For\u00eats"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/ministry-natural-resources-and-forestry", "institutionIdentifier": ["ROR:02ntv3742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility", "policyURL": "https://www.ontario.ca/page/accessibility"}, {"policyName": "Social media Terms of Use", "policyURL": "https://www.ontario.ca/page/social-media-terms-use"}, {"policyName": "Terms of use", "policyURL": "https://www.ontario.ca/page/terms-use#"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ontario.ca/page/copyright-information-c-queens-printer-ontario"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ontario.ca/page/terms-use#section-4"}] restricted [] [] {} ["none"] [] unknown yes [] [] {} The NHIC is a member of NatureServe. 2016-06-21 2020-12-22 +r3d100012036 Controlled Fusion Atomic Data Center eng [{"additionalName": "Atomic Data for Fusion", "additionalNameLanguage": "eng"}, {"additionalName": "CFADC", "additionalNameLanguage": "eng"}] https://www.phy.ornl.gov/groups/atomic/atomic.html [] [] The repository is no longer available. >>>!!!<<< 2018-12-31: no more access to Controlled Fusion Atomic Data Center >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-12-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ADNDT", "ALADDIN", "APiP", "Astro", "ELASTIC", "ICAMDATA", "Ion-surface experiment", "MEIBEL", "MIRF", "PSIF", "REDBOOKS", "TAMOC", "astrophysics", "bibliography of atomic and molecular collision references", "crossed electron-ion beams experiment", "merged electron-ion beams energy-loss", "merged ion-atom beams experiment", "multicharged ion research facility", "physics"] [{"institutionName": "Oak Ridge National Laboratory, Physics Division, Controlled Fusion Atomic Data Center", "institutionAdditionalName": ["CFADC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.phy.ornl.gov/groups/atomic/atomic.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Science, Fusion Energy Sciences", "institutionAdditionalName": ["FES"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/fes/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "WEB Policies", "policyURL": "https://www.energy.gov/about-us/web-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} description: CFADC's mission is to compile, evaluate, recommend, and disseminate atomic and molecular collision data relevant to fusion energy research and development. Under different names, it has been a data center since 1958. Key features include a categorized bibliography of atomic and molecular collision references relevant to fusion energy and ALADDIN, a database management system accepted by the International Atomic Energy Agency for the exchange of atomic and molecular data. In 1970 the Atomic and Molecular Processes Information Center (AMPIC) became the Controlled Fusion Atomic Data Center (CFADC). Gateway to Research Data: http://dr-dn.cisti-icist.nrc-cnrc.gc.ca/eng/home/collection/Gateway%20to%20Research%20Data/ 2016-06-21 2019-01-07 +r3d100012037 North American Breeding Bird Survey eng [{"additionalName": "BBS", "additionalNameLanguage": "eng"}, {"additionalName": "NABBS", "additionalNameLanguage": "eng"}] https://www.pwrc.usgs.gov/bbs/index.cfm [] ["https://www.pwrc.usgs.gov/bbs/contactus/"] The BBS is a cooperative effort between the U.S. Geological Survey's Patuxent Wildlife Research Center and Environment Canada's Canadian Wildlife Service to monitor the status and trends of North American bird populations. Following a rigorous protocol, BBS data are collected by thousands of dedicated participants along thousands of randomly established roadside routes throughout the continent. Professional BBS coordinators and data managers work closely with researchers and statisticians to compile and deliver these population data and population trend analyses on more than 400 bird species, for use by conservation managers, scientists, and the general public. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.pwrc.usgs.gov/bbs/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Biological Sciences", "avian breeding", "avian point counts", "biodiversity", "bioinformatics", "bird monitoring", "bird occurrences", "bird taxa", "ornitology", "population", "population distribution"] [{"institutionName": "U.S. Geological Survey", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey, Patuxent Wildlife Research Center", "institutionAdditionalName": ["USGS Patuxent"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/centers/pwrc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Keith_Pardieck@usgs.gov", "webmaster@patuxent.usgs.gov"]}, {"institutionName": "United States Department of Agriculture - Animal and Plant Health Inspection Service, National Wildlife Research Center", "institutionAdditionalName": ["USDA-APHIS, NWRC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.aphis.usda.gov/aphis/ourfocus/wildlifedamage/programs/nwrc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["John_Sauer@usgs.gov"]}] [{"policyName": "Comments and Disclaimers", "policyURL": "https://www.mbr-pwrc.usgs.gov/bbs/intro10.html"}, {"policyName": "Terms of Use", "policyURL": "https://www.pwrc.usgs.gov/bbs/RawData/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions"}] restricted [] ["MySQL"] yes {} ["none"] https://www.pwrc.usgs.gov/BBS/help/Citations.cfm [] yes yes [] [] {} Some websites additionally in french and spanish 2016-06-21 2021-01-07 +r3d100012038 Androgen Receptor Mutations Database eng [{"additionalName": "AR Gene Mutations Database", "additionalNameLanguage": "eng"}] http://www.androgendb.mcgill.ca/ ["RRID:SCR_006887", "RRID:nif-0000-02547"] ["bruce.gottlieb@mcgill.ca"] Androgen Receptor Gene Mutations Database is for all who are interested in mutations of the Androgen Receptor Gene. In light of the difficulty in getting new AR mutations published the curator will now accept new mutations that have not been published, provided that it is from a reputable research or clinical laboratory. The curator also strongly suggests that where possible, particularly in the case of new unique mutations that an attempt be made to at least confirm the pathogenicity of the putatative mutation, by showing that the mutation when transfected into a suitable expression system produces a mutant androgen receptor protein. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://androgendb.mcgill.ca/intro.htm [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["AR - androgen receptor", "cancer", "gene mutation", "genetics", "mutation", "pathogenicity"] [{"institutionName": "McGill University", "institutionAdditionalName": ["McGill"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.mcgill.ca/", "institutionIdentifier": ["ROR:01pxwe438", "RRID:SCR_011388", "RRID:nlx_60719"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mcgill.ca/contact-us/"]}, {"institutionName": "McGill University, Jewish General Hospital, Lady Davis Institute for Medical Research", "institutionAdditionalName": ["ILD", "LDI", "Universit\u00e9 McGill, H\u00f4pital g\u00e9n\u00e9ral juif, Institut Lady Davis"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ladydavis.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright at McGill", "policyURL": "https://www.mcgill.ca/copyright/"}, {"policyName": "Licensing and conditions of use", "policyURL": "https://www.mcgill.ca/library/services/connect/licensing"}, {"policyName": "Limited use data product licence agreement", "policyURL": "https://www.mcgill.ca/library/files/library/fedlicence.pdf"}, {"policyName": "University Policies and Regulations", "policyURL": "https://www.mcgill.ca/secretariat/policies-and-regulations"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mcgill.ca/copyright/"}] restricted [] [] {} ["none"] http://androgendb.mcgill.ca/ [] yes yes [] [] {} 2016-06-21 2021-01-07 +r3d100012039 Bedford Institute of Oceanography - Oceanographic Databases eng [{"additionalName": "Institut oc\u00e9anographique de Bedford - Bases de donn\u00e9es oc\u00e9anographiques", "additionalNameLanguage": "fra"}] https://www.bio.gc.ca/science/data-donnees/base/index-en.php [] ["DataServicesDonnees@dfo-mpo.gc.ca", "https://www.bio.gc.ca/science/data-donnees/base/contact-en.php"] Databases maintained by Ocean Sciences at the Bedford Institute of Oceanography, including temperature-salinity profiles for the NW Atlantic, sea-surface temperature and chlorophyll from satellite, monthly statistics of ocean currents and other moored instruments, and daily temperature observations from coastal thermographs. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bio.gc.ca/general-generales/about-sujet-en.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["East Coast of Canada", "Northwest Atlantic", "Satellite derived", "chlorophyll", "climate", "coastal time series", "hydrographic", "temperature", "temperature-salinity profiles"] [{"institutionName": "Bedford Institute of Oceanography", "institutionAdditionalName": ["BIO", "IOB", "Institut oc\u00e9anographique de Bedford"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bio.gc.ca/index-en.php", "institutionIdentifier": ["ROR:03bz9t645"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["WebmasterBIO-IOB@dfo-mpo.gc.ca"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en.html", "institutionIdentifier": ["ROR:010q4q527"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright Act", "policyURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"policyName": "Terms and Conditions - Fisheries and Oceans Canada", "policyURL": "https://www.dfo-mpo.gc.ca/terms-conditions-avis-eng.htm"}, {"policyName": "Terms and conditions - Government of Canada", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wet-boew.github.io/wet-boew/License-en.html"}] restricted [] [] {} ["none"] [] unknown yes [] [] {} Databases: BioChem, Ocean Science Hydrographic Climate Database (Climate), Coastal Time Series (CTS) Application, Ocean Colour Database (OCDB), Ocean Data Inventory (ODI), Sea-surface Temperature (SST) Database Research partnerships: https://www.bio.gc.ca/info/collaborations/partnerships-partenariat-en.php 2016-06-21 2021-01-07 +r3d100012040 CASRdb eng [{"additionalName": "Calcium Sensing Receptor Database", "additionalNameLanguage": "eng"}] http://www.casrdb.mcgill.ca ["RRID:SCR_007581", "RRID:nif-0000-02638"] ["info@cihr-irsc.gc.ca"] The CASRdb site is dedicated to providing information on published mutations and polymorphisms of the calcium-sensing receptor (CASR). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mcgill.ca/about/intro/mission [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["human chromosome", "molecularbiology", "parathyroid hormone PTH", "protein coupled receptors"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@cihr-irsc.gc.ca"]}, {"institutionName": "Government of Canada, Networks of Centres of Excellence of Canada", "institutionAdditionalName": ["Gouvernement du Canada, R\u00e9seaux de centres d'excellence", "NCE", "RCE"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nce-rce.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kidney Foundation of Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.kidney.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kidney.ca/contact-us"]}, {"institutionName": "McGill University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.mcgill.ca/", "institutionIdentifier": ["RRID:SCR_011388", "RRID:nlx_60719"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mcgill.ca/contact-us/"]}, {"institutionName": "Network of Applied Genetic Medicine", "institutionAdditionalName": ["RMGA", "R\u00e9seau de m\u00e9decine g\u00e9n\u00e9tique appliqu\u00e9e"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.rmga.qc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright Act of Canada", "policyURL": "http://laws-lois.justice.gc.ca/eng/acts/C-42/Index.html"}, {"policyName": "Policy on Intellectual Property", "policyURL": "https://www.mcgill.ca/research/files/research/policyonintellectualproperty.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mcgill.ca/copyright/home"}] restricted [] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} CASRdb is regularly updated for new mutations and it also provides a mutation submission form to ensure up-to-date information. 2016-06-21 2021-08-24 +r3d100012041 Canadian Disaster Database eng [{"additionalName": "BDC", "additionalNameLanguage": "fra"}, {"additionalName": "Base de donn\u00e9es canadienne sur les catastrophes", "additionalNameLanguage": "fra"}, {"additionalName": "CDD", "additionalNameLanguage": "eng"}] https://www.publicsafety.gc.ca/cnt/rsrcs/cndn-dsstr-dtbs/index-en.aspx ["biodbcore-001303"] ["cdd-bdc@ps-sp.gc.ca."] The Canadian Disaster Database (CDD) contains detailed disaster information on more than 1000 natural, technological and conflict events (excluding war) that have happened since 1900 at home or abroad and that have directly affected Canadians. eng ["disciplinary"] {"size": "over 1.000 events", "updatedp": "2016-07-03"} 2001 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.publicsafety.gc.ca/cnt/bt/index-en.aspx [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Arson", "calamity", "catastrophe", "civil incident", "conflicts", "earthquake", "epidemic", "explosion", "fire", "flood", "hazardous chemicals", "health", "hijacking", "historical events", "infrastructure failure", "natural disasters", "safety", "space event", "terrorist", "transportation accident"] [{"institutionName": "Government of Canada, Public Safety Canada", "institutionAdditionalName": ["Gouvernement du Canada, S\u00e9curit\u00e9 publique Canada", "PS Canada", "SP Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.publicsafety.gc.ca/cnt/bt/rgnl-ffcs-en.aspx", "institutionIdentifier": ["ROR:032mgcs57"], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.publicsafety.gc.ca/cnt/bt/rgnl-ffcs-en.aspx", "https://www.publicsafety.gc.ca/cnt/nws/md-cntctcs-en.aspx"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.publicsafety.gc.ca/cnt/ntcs/trms-en.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] closed [] ["unknown"] yes {} ["none"] ["none"] unknown yes [] [] {} CDD Data Fields and Descriptions : https://www.publicsafety.gc.ca/cnt/rsrcs/cndn-dsstr-dtbs/index-en.aspx Reference Table for Symbols and Definitions: https://www.publicsafety.gc.ca/cnt/rsrcs/cndn-dsstr-dtbs/rfrnc-tbl-smbls-dfntns-en.aspx 2016-06-21 2021-11-16 +r3d100012043 Statistics Canada Data Tables eng [{"additionalName": "Statcan Data Tables", "additionalNameLanguage": "eng"}, {"additionalName": "Statistics Canada\u2019s main socioeconomic time series database", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CANSIM", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Canadian Socio-economic Information Management System", "additionalNameLanguage": "eng"}] https://www150.statcan.gc.ca/n1/en/type/data [] ["statcan.infostats-infostats.statcan@canada.ca"] CANSIM is Statistics Canada's key socioeconomic database. Updated daily, CANSIM provides fast and easy access to a large range of the latest statistics available in Canada. Before June 2018, the Data Tables collection was called CANSIM. That name was retired, but the content is still available. CANSIM tables have been given new numbers, but you can still search the Data Tables using the old CANSIM table and vector numbers (or use this Concordance to look up the new table number). eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.statcan.gc.ca/eng/about/website-help [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CHASS", "My StatCan", "census", "economic data", "household survey", "social data", "time series"] [{"institutionName": "Government of Canada, Statistics Canada", "institutionAdditionalName": ["Gouvernement du Canada, Statistique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.statcan.gc.ca/eng/start", "institutionIdentifier": ["ROR:05k71ja87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["STATCAN@canada.ca"]}] [{"policyName": "Statistics Act", "policyURL": "https://laws-lois.justice.gc.ca/eng/acts/S-19/FullText.html"}, {"policyName": "Statistics Canada Open Licence Agreement", "policyURL": "https://www.statcan.gc.ca/eng/reference/licence"}, {"policyName": "Statistics Canada Open Licence Agreement - FAQ", "policyURL": "https://www.statcan.gc.ca/eng/reference/licence-faq"}, {"policyName": "Terms and conditions", "policyURL": "https://www.statcan.gc.ca/eng/reference/terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.statcan.gc.ca/eng/reference/copyright"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.statcan.gc.ca/eng/reference/copyright"}] restricted [] [] yes {} ["none"] https://www150.statcan.gc.ca/n1/en/catalogue/12-591-X [] yes yes [] [] {} Other resources to help you find Statistics Canada data and information (https://www.statcan.gc.ca/eng/about/statcan): Summary tables, Census Profile, Census Data, Canadian International Merchandise Trade Database, NHS Profile, National Household Survey Data 2016-06-21 2021-08-25 +r3d100012044 Immigration, Refugees and Citizenship Canada Research and Statistics eng [{"additionalName": "Citoyennet\u00e9 et Immigration Canada Recherche et Statistiques", "additionalNameLanguage": "fra"}, {"additionalName": "IRCC", "additionalNameLanguage": "eng"}, {"additionalName": "Immigration, R\u00e9fugi\u00e9s et Citoyennet\u00e9 Canada Recherche et Statistiques", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: Citizenship and Immigration Canada Research and Statistics", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: CIC", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/immigration-refugees-citizenship/corporate/reports-statistics.html [] ["https://www.canada.ca/en/immigration-refugees-citizenship/corporate/contact-ircc.html"] Access analytical research reports and statistical information on citizenship and immigration trends. Research for Citizenship and Immigration Canada’s strategic research program furthers our understanding of the impact of immigration on Canadian society. Citizenship and Immigration Canada’s statistical publications provide information on permanent and temporary residents as well as immigration and citizenship programs. Older Research and Statistics reports from Library and Archives Canada. Key findings of external and internal projects related to public opinion. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.canada.ca/en/immigration-refugees-citizenship/corporate/mandate.html [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Immigration", "asylum", "citizenship", "refugees", "students", "visitors"] [{"institutionName": "Government of Canada, Immigration, Refugees and Citzizenship Canada", "institutionAdditionalName": ["Gouvernement du Canada, Immigration, R\u00e9fugi\u00e9s et Citoyennet\u00e9 Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/immigration-refugees-citizenship.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/immigration-refugees-citizenship/corporate/terms-conditions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/immigration-refugees-citizenship/corporate/terms-conditions.html#copyright"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "https://www.cic.gc.ca/rss/rss-publications-e.xml", "syndicationType": "RSS"} 2016-06-21 2021-01-08 +r3d100012045 Databank of Official Statistics on Quebec eng [{"additionalName": "BDSO", "additionalNameLanguage": "fra"}, {"additionalName": "Banque de donn\u00e9es des statistiques officielles sur le Qu\u00e9bec", "additionalNameLanguage": "fra"}] https://bdso.gouv.qc.ca/pls/ken/Ken211_Page_Accu.page_accu [] ["https://www.quebec.ca/en/how-to-reach-us/telephone/"] Databank of Official Statistics on Québec. A collaborative effort involving partner departments and agencies under the coordination of the Institut de la statistique du Québec. eng ["other"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CADRISQ", "economic data", "social data"] [{"institutionName": "Institut de la Statistique Quebec", "institutionAdditionalName": ["ISQ"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://statistique.quebec.ca/en", "institutionIdentifier": ["ROR:02nqgwy66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.droitauteur.gouv.qc.ca/en/copyright.php"}] closed [] [] yes {} ["none"] [] unknown unknown [] [] {} 2016-06-21 2021-01-08 +r3d100012046 ESA Earth Online eng [{"additionalName": "EO Data", "additionalNameLanguage": "eng"}, {"additionalName": "Earth Online", "additionalNameLanguage": "eng"}] https://earth.esa.int/eogateway/ [] ["https://esatellus.service-now.com/csp/"] The name Earth Online derives from ESA's Earthnet programme. Earthnet prepares and attracts new ESA Earth Observation missions by setting the international cooperation scheme, preparing the basic infrastructure, building the scientific and application Community and competency in Europe to define and set-up own European Programmes in consultation with member states. Earth Online is the entry point for scientific-technical information on Earth Observation activities by the European Space Agency (ESA). The web portal provides a vast amount of content, grown and collected over more than a decade: Detailed technical information on Earth Observation (EO) missions; Satellites and sensors; EO data products & services; Online resources such as catalogues and library; Applications of satellite data; Access to promotional satellite imagery. After 10 years of operations on distinct sites, the two principal portals of ESA Earth Observation - Earth Online (earth.esa.int) and the Principal Investigator's Portal (eopi.esa.int) have moved to a new platform. ESA's technical and scientific earth observation user communities will from now on be served from a single portal, providing a modern and easy-to-use interface to our services and data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.esa.int/About_Us/Corporate_news [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Atmosphere", "Copernicus", "CryoSat", "ERS-1", "ERS-2", "Envisat", "GOCE", "SMOS", "agriculture", "coasts", "earth science", "land", "natural disasters", "oceans", "satellite", "snow & ice", "water"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.esa.int/", "institutionIdentifier": ["ROR:03wd9za21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ESA Data Policy for ERS, Envisat and Earth Explorer missions", "policyURL": "https://earth.esa.int/c/document_library/get_file?folderId=296006&name=DLFE-3602.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "https://www.esa.int/Services/Terms_and_conditions"}, {"policyName": "Terms and Conditions for the Utilisation of Data under ESA\u2019s Third Party Missions scheme", "policyURL": "https://earth.esa.int/pi/esa?type=file&table=aotarget&cmd=image&alias=TPMterms"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://earth.esa.int/eogateway/terms-and-conditions"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.esa.int/Services/Terms_and_conditions"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earth.esa.int/c/document_library/get_file?folderId=296006&name=DLFE-3602.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://earth.esa.int/eogateway/documents/20142/1614553/Terms-and-Conditions-for-the-utilization-of-Data-provided-by-ESA.pdf"}] restricted [{"dataUploadLicenseName": "Guidelines for the submission of project proposals", "dataUploadLicenseURL": "https://earth.esa.int/pi/esa?type=file&table=aotarget&cmd=image&alias=guidelines"}] [] {} [] [] unknown unknown [] [] {} The ESA Earth Observation Users' Single Sign On will manage a unique user name and password for many activities. Before registering to individual services you have to register in the single sign on. If you have already registered in the single sign on (and weren't already logged in somewhere) then don't register again, just click “I'm already registered” and enter your user name/password. Discover and download the Earth observation data you need from the broad catalogue of missions the European Space Agency operate and support https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Data 2016-06-21 2021-01-12 +r3d100012051 Repositorio Institucional USIL spa [{"additionalName": "Archivos de Datos y Programas", "additionalNameLanguage": "spa"}, {"additionalName": "Repositorio de la Universidad San Ignacio de Loyola", "additionalNameLanguage": "spa"}] http://repositorio.usil.edu.pe/handle/123456789/11 [] ["repositorio.institucional@usil.edu.pe"] This database and dataset collection is part of the Institutional Repository of San Ignacio de Loyola University. The institutional repository of the Universidad San Ignacio de Loyola houses the academic papers of our study center and allows free access to them by researchers and the community in general, in addition to the exchange of information with all entities that produce Similar contents. Books, magazines, teaching materials, theses, files and databases, among others, are combined in a single space freely available. eng ["institutional"] {"size": "", "updatedp": ""} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Cineca", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.cineca.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad San Ignacio de Loyola", "institutionAdditionalName": ["USIL"], "institutionCountry": "PER", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://english.usil.edu.pe", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Directivas", "policyURL": "http://investigacion.usil.edu.pe/vri/nosotros/directivas/"}, {"policyName": "submit license", "policyURL": "http://repositorio.usil.edu.pe/help/index.html#formats"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.copyrighthistory.org/cam/tools/request/browser.php?view=language_record¶meter=Spanish&country=&core=all"}] restricted [] ["DSpace"] {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://repositorio.usil.edu.pe/feed/atom_1.0/123456789/11", "syndicationType": "ATOM"} 2016-06-22 2021-09-09 +r3d100012052 The Cancer Immunome Atlas eng [{"additionalName": "TCIA", "additionalNameLanguage": "eng"}, {"additionalName": "The Cancer Immunome Database", "additionalNameLanguage": "eng"}] https://tcia.at/home ["RRID:SCR_014508"] ["dietmar.rieder@i-med.ac.at", "https://tcia.at/contact", "zlatko.trajanoski@i-med.ac.at"] The Cancer Immunome Database (TCIA) provides results of comprehensive immunogenomic analyses of next generation sequencing data (NGS) data for 20 solid cancers from The Cancer Genome Atlas (TCGA) and other datasource. The Cancer Immunome Atlas (TCIA) was developed and is maintained at the Division of Bioinformatics (ICBI). The database can be queried for the gene expression of specific immune-related gene sets, cellular composition of immune infiltrates (characterized using gene set enrichment analyses and deconvolution), neoantigens and cancer-germline antigens, HLA types, and tumor heterogeneity (estimated from cancer cell fractions). Moreover it provides survival analyses for different types immunological parameters. TCIA will be constantly updated with new data and results. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-06-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://tcia.at/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["MHC", "cancer", "gesa", "immune system", "immunity", "immuno-oncology", "immunom", "immunophenogram", "immunophenotype", "oncology"] [{"institutionName": "APERIM", "institutionAdditionalName": ["Advanced Bioinformatics Platform for Personalised Cancer Immunotherapy"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://aperim.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://aperim.eu/contact"]}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cordis.europa.eu/projects/home_en.html"]}, {"institutionName": "Medical University of Innsbruck, Biocenter, Division of Bioinformatics", "institutionAdditionalName": ["ICBI", "Medizinische Universit\u00e4t Innsbruck, Sektion f\u00fcr Bioinformatik"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://icbi.i-med.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "2016/06/01", "responsibilityEndDate": "", "institutionContact": ["icbi@i-med.ac.at", "zlatko.trajanoski@i-med.ac.at"]}] [{"policyName": "Responsible Use of Data Generated by the TCGA Program", "policyURL": "https://cancergenome.nih.gov/abouttcga/policies/responsibleuse"}, {"policyName": "TCGA Policies and Guidelines", "policyURL": "https://cancergenome.nih.gov/abouttcga/policies/policiesguidelines"}, {"policyName": "TCGA Publication Guidelines", "policyURL": "https://cancergenome.nih.gov/publications/publicationguidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {} ["none"] https://tcia.at/about [] unknown unknown [] [] {} 2016-06-24 2021-09-03 +r3d100012053 UiT Open Research Data Dataverse eng [] http://opendata.uit.no/ [] [] !!! UiT Open Research Data is part of DataverseNO; re3data:https://doi.org/10.17616/R3TV17 eng [] {"size": "", "updatedp": ""} [] [] [] [] [] [] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [] [] yes {} [] [] unknown unknown [] [] {} 2016-06-24 2021-09-09 +r3d100012054 CLARIN service center of the Zentrum Sprache at the BBAW eng [{"additionalName": "CLARIN Center BBAW", "additionalNameLanguage": "eng"}, {"additionalName": "CLARIN-Servicezentrum am Zentrum Sprache der BBAW", "additionalNameLanguage": "deu"}] https://clarin.bbaw.de [] ["https://clarin.bbaw.de/de/kontakt/", "support@clarin-d.de"] The Berlin-Brandenburg Academy of Sciences and Humanities (BBAW) is a CLARIN partner institution and has been an officially certified CLARIN service center since June 20th, 2013. The CLARIN center at the BBAW focuses on historical text corpora (predominantly provided by the 'Deutsches Textarchiv'/German Text Archive, DTA) as well as on lexical resources (e.g. dictionaries provided by the 'Digitales Wörterbuch der Deutschen Sprache'/Digital Dictionary of the German Language, DWDS). eng ["disciplinary"] {"size": "currently 3.038 versioned objects", "updatedp": "2017-06-20"} 2013-06-13 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://clarin.bbaw.de/en/mission/ [{"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["digital humanities", "linguistics", "text corpora"] [{"institutionName": "BBAW", "institutionAdditionalName": ["Berlin-Brandenburg Academy of Sciences and Humanities", "Berlin-Brandenburgische Akademie der Wissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bbaw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "BMBF", "institutionAdditionalName": ["Bundesministerium f\u00fcr Bildung und Forschung", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin-d.de/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}] [{"policyName": "BBAW repository policy", "policyURL": "https://clarin.bbaw.de/repo/"}, {"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2018/10/CLARIN-Center-BBAW.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}] ["Fedora"] yes {"api": "https://vlo.clarin.eu/data/Berlin_Brandenburg_Academy_of_Sciences_and_Humanities_BBAW_.html", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} corpora from BBAW can also be searched in VLO - CLARIN Virtual Language Observatory https://vlo.clarin.eu/search;jsessionid=9D9F1F42187DE33387758ECA7114DB17?0&fq=organisation:Berlin-Brandenburgische+Akademie+der+Wissenschaften+%28BBAW%29 . 2016-06-27 2021-09-09 +r3d100012058 Biodiversity Exploratories Information System eng [{"additionalName": "BExIS", "additionalNameLanguage": "eng"}] https://www.bexis.uni-jena.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.6AmTXC"] ["bexis@listserv.uni-jena.de", "https://www.bexis.uni-jena.de/footer/contactus"] BExIS is the online data repository and information system of the Biodiversity Exploratories Project (BE). The BE is a German network of biodiversity related working groups from areas such as vegetation and soil science, zoology and forestry. Up to three years after data acquisition, the data use is restricted to members of the BE. Thereafter, the data is usually public available (https://www.bexis.uni-jena.de/ddm/publicsearch/index). eng ["disciplinary"] {"size": "Internal more than 1.500 datasets and more than 900 publications. Public more than 1.000 datasets.", "updatedp": "2021-07-27"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.biodiversity-exploratories.de/en/about-us/research-objectives-and-background/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Germany", "biodiversity", "botany", "climate data", "ecology", "ecosystem processes", "ecosystem services", "forest and grassland", "insects", "land-use", "microorganisms", "remote sensing", "resource management", "vertebrates"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Friedrich-Schiller-Universit\u00e4t Jena", "institutionAdditionalName": ["Friedrich Schiller University Jena"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-jena.de/", "institutionIdentifier": ["ROR:05qpz1x62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Imprint / Disclaimer", "policyURL": "https://www.bexis.uni-jena.de/footer/imprint"}, {"policyName": "Privacy policy", "policyURL": "https://www.bexis.uni-jena.de/footer/policy"}, {"policyName": "Public data agreement", "policyURL": "https://www.bexis.uni-jena.de/footer/termsandconditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "How to upload datasets and publications", "dataUploadLicenseURL": "https://github.com/bexis/Documents/blob/master/HowTo/HowToUpload.md"}] [] yes {"api": "https://www.bexis.uni-jena.de/apihelp/index", "apiType": "SOAP"} ["DOI"] https://github.com/bexis/Documents/blob/master/HowTo/HowToCreditData.md ["other"] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2016-07-05 2021-07-27 +r3d100012059 LabKey Open Research Portal eng [{"additionalName": "formerly: Zika Open-Research Portal", "additionalNameLanguage": "eng"}] https://openresearch.labkey.com/project/home/begin.view [] ["https://www.labkey.com/about/contact/"] In response to emerging pathogens, LabKey launched the Open Research Portal in 2016 to help facilitate collaborative research. It was initially created as a platform for investigators to make Zika research data, commentary and results publicly available in real-time. It now includes other viruses like SARS-CoV-2 where there is a compelling need for real-time data sharing. Projects are freely available to researchers. If you are interested in sharing real-time data through the portal, please contact LabKey to get started. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ZEST", "fetal abnormities", "microcephaly", "nonhuman primate model", "zika virus"] [{"institutionName": "Labkey", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.labkey.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.labkey.com/about/contact/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Washington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.washington.edu/", "institutionIdentifier": ["ROR:00cvxb145"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fullerdh@uw.edu", "greener@uw.edu"]}, {"institutionName": "University of Wisconsin-Madison, O'Connor Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dho.pathology.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dhoconno@wisc.edu"]}, {"institutionName": "University of Wisconsin-Madison, Wisconsin National Primate Research Center", "institutionAdditionalName": ["WNPRC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.primate.wisc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.primate.wisc.edu/wprc/orgchart.html"]}] [{"policyName": "Statement on Data Sharing in Public Health Emergencies", "policyURL": "https://openresearch.labkey.com/announcements/home/thread.view?rowId=1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://openresearch.labkey.com/project/home/begin.view?"}] restricted [] ["other"] {} [] [] yes unknown [] [] {} The colleagues at the Oregon National Primate Research Center are also making their Zika virus study results available in real-time: https://www.ohsu.edu/onprc 2016-07-05 2021-09-08 +r3d100012060 Wilson Center Digital Archive eng [] http://digitalarchive.wilsoncenter.org/ [] ["laura.deal@wilsoncenter.org"] The Wilson Center Digital Archive contains once-secret documents from governments all across the globe, uncovering new sources and providing fresh insights into the history of international relations and diplomacy. It contains newly declassified historical materials from archives around the world—much of it in translation and including diplomatic cables, high level correspondence, meeting minutes and more. It collects the research of three Wilson Center projects which focus on the interrelated histories of the Cold War, Korea, and Nuclear Proliferation. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://digitalarchive.wilsoncenter.org/about-us [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CWIHP", "NKIDP", "NPIHP", "cold war", "communism", "diplomacy", "foreign relations", "international history", "nuclear proliferation"] [{"institutionName": "Woodrow Wilson International Center for Scholars", "institutionAdditionalName": ["Cold War International History Project"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://wilsoncenter.org", "institutionIdentifier": ["ROR:00whzh260"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NKIDP@wilsoncenter.org", "NPIHP@wilsoncenter.org", "coldwar@wilsoncenter.org"]}] [{"policyName": "About us", "policyURL": "http://digitalarchive.wilsoncenter.org/about-us"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://digitalarchive.wilsoncenter.org/about-us"}] closed [] ["unknown"] {"api": "http://digitalarchive.wilsoncenter.org/srv/", "apiType": "other"} ["none"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://digitalarchive.wilsoncenter.org/documents/recent.xml", "syndicationType": "RSS"} 2016-07-07 2021-10-25 +r3d100012061 Genomic Data Commons eng [{"additionalName": "GDC", "additionalNameLanguage": "eng"}] https://gdc.nci.nih.gov/ ["RRID:SCR_014514"] ["https://gdc.nci.nih.gov/support", "support@nci-gdc.datacommons.io"] The NCI's Genomic Data Commons (GDC) provides the cancer research community with a unified data repository that enables data sharing across cancer genomic studies in support of precision medicine. The GDC obtains validated datasets from NCI programs in which the strategies for tissue collection couples quantity with high quality. Tools are provided to guide data submissions by researchers and institutions. eng ["disciplinary"] {"size": "262.293 files; 14.531 cases", "updatedp": "2016-09-19"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://gdc.nci.nih.gov/about-gdc [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CGCI", "TARGET", "TCGA", "cancer", "drugs", "genomic profiles", "mutations", "oncology", "patient data", "precision medicine", "tumor"] [{"institutionName": "Foundation Medicine Inc.", "institutionAdditionalName": ["FMI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.foundationmedicine.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NCI", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GDC policies", "policyURL": "https://gdc.nci.nih.gov/about-gdc/gdc-policies"}, {"policyName": "NCI Genomic Data Sharing Policy", "policyURL": "http://www.cancer.gov/grants-training/grants-management/nci-policies/genomic-data"}, {"policyName": "NIH Genomic Data Sharing Policy - GDS", "policyURL": "https://gds.nih.gov/03policy2.html"}, {"policyName": "dbGaP Application for Controlled Access Data", "policyURL": "https://dbgap.ncbi.nlm.nih.gov/aa/wga.cgi?page=login"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://github.com/NCIP/gdc-docs/blob/develop/README.md"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.cancer.gov/grants-training/grants-management/nci-policies/genomic-data/submission/nci-dsp.pdf"}] restricted [{"dataUploadLicenseName": "dbGaP Data Submission Procedures", "dataUploadLicenseURL": "http://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/GetPdf.cgi?document_name=HowToSubmit.pdf"}] ["unknown"] yes {"api": "https://gdc.nci.nih.gov/developers/gdc-application-programming-interface-api", "apiType": "REST"} ["none"] https://gdc.nci.nih.gov/about-gdc/gdc-faqs# [] yes yes [] [] {} The GDC supports several cancer genome programs at the NCI Center for Cancer Genomics (CCG), including The Cancer Genome Atlas (TCGA), Therapeutically Applicable Research to Generate Effective Treatments (TARGET), and the Cancer Genome Characterization Initiative (CGCI). 2016-07-08 2016-09-19 +r3d100012062 Secondary Analysis to Generate Evidence (SAGE) Dataverse eng [{"additionalName": "SAGE", "additionalNameLanguage": "eng"}, {"additionalName": "Secondary Analysis to Generate Evidence", "additionalNameLanguage": "eng"}] https://dataverse.library.ualberta.ca/dvn/dv/SAGE [] ["data@policywise.com", "info@policywise.com"] SAGE is a data and research platform that enables the secondary use of data related to child and youth development, health and well-being. It currently contains research data, and at a later stage we aim to also house administrative and community service delivery data. Technical infrastructure and governance processes are in place to ensure ethical use and the privacy of participants. This dataverse provides metadata for the various data holdings available in SAGE (Secondary Analysis to Generate Evidence), a research data repository based in Edmonton Alberta and an intiative of PolicyWise for Children & Families. In general, SAGE contains data holdings too sensitive for open access. Each study lists a security level which indicates the procedure required to access the data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://policywise.com/initiatives/sage/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["adults", "cohort study", "human ecology", "mental health", "nutrition", "survey"] [{"institutionName": "Policywise for Children & Families", "institutionAdditionalName": ["formerly: ACCFCR", "formerly: Alberta Centre for Child, Family and Community Research", "formerly: The Centre"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://policywise.com/", "institutionIdentifier": [], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["info@policywise.com"]}, {"institutionName": "University of Alberta Libraries", "institutionAdditionalName": ["UOFA"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.ualberta.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.library.ualberta.ca/research-support/data-management"]}] [{"policyName": "Community-norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Data Access Agreement", "policyURL": "https://policywise.com/wp-content/uploads/SAGE/2016-05MAY-25-SAGE-Data-Access-Agreement-2016.pdf"}, {"policyName": "Dataverse Guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "SAGE metadata Guide", "policyURL": "https://policywise.com/wp-content/uploads/2016/10/SAGE-Metadata-Guide-v-1.2.pdf"}, {"policyName": "UAL Dataverse Network Data Use Terms", "policyURL": "https://dataverse.library.ualberta.ca/dvn/faces/study/TermsOfUsePage.xhtml?studyId=652&versionNumber=1&fileId=6043&redirectPage=%2FFileDownload%2F%3FfileId%3D6043%26xff%3D0%26versionNumber%3D1&tou=download&vdcId=197"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://policywise.com/wp-content/uploads/2016/08/2016_SAGE_Secondary_Use_Grant_Terms_Conditions.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://policywise.com/wp-content/uploads/2016/10/Data-Access-Agreement-2016-05MAY-25v1.2.pdf"}] restricted [{"dataUploadLicenseName": "Data Deposit Agreement", "dataUploadLicenseURL": "https://policywise.com/wp-content/uploads/2016/10/Data-deposit-agreement-template-2016-06JUN-07.pdf"}] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["none"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Secondary Analysis to Generate Evidence (SAGE) Data Holdings Dataverse is part of the University of Alberta Libraries UAL Dataverse Network. The data are made available in the SAGE virtual research environment (VRE) to the data accessor. 2016-07-11 2019-03-05 +r3d100012064 University of Reading Research Data Archive eng [] https://researchdata.reading.ac.uk/ [] ["researchdata@reading.ac.uk"] The University of Reading Research Data Archive (the Archive) is a multidisciplinary online service for the registration, preservation and publication of research datasets produced or collected at the University of Reading. eng ["institutional"] {"size": "", "updatedp": ""} 2015-09-07 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://researchdata.reading.ac.uk/service_policy.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Reading", "multidisciplinary"] [{"institutionName": "University of Reading", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.reading.ac.uk/", "institutionIdentifier": ["ROR:05v62cm79", "RRID:SCR_007135", "RRID:nlx_99449"], "responsibilityStartDate": "2015-09-07", "responsibilityEndDate": "", "institutionContact": ["researchdata@reading.ac.uk"]}] [{"policyName": "Data Access Statements", "policyURL": "http://www.reading.ac.uk/reas-DataAccessStatements.aspx"}, {"policyName": "Terms and Conditions for Registered Users", "policyURL": "https://researchdata.reading.ac.uk/terms_conditions.html"}, {"policyName": "University of Reading Research Data Archive Policies", "policyURL": "https://researchdata.reading.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.en.html"}] restricted [{"dataUploadLicenseName": "University of Reading Research Data Archive Deposit Agreement", "dataUploadLicenseURL": "https://researchdata.reading.ac.uk/deposit_agreement.html"}] ["EPrints"] {"api": "https://researchdata.reading.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] http://www.reading.ac.uk/reas-DataAccessStatements.aspx [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://researchdata.reading.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} University of Reading Research Data Archive uses Altmetric metrics. University of Reading Research Data Archive is covered by Clarivate Data Citation Index. 2016-07-15 2020-02-18 +r3d100012065 Clinical data repository eng [{"additionalName": "CDR", "additionalNameLanguage": "eng"}, {"additionalName": "CDW", "additionalNameLanguage": "eng"}, {"additionalName": "Clinical Data Warehouse", "additionalNameLanguage": "eng"}] https://www.ctsi.umn.edu/researcher-resources/clinical-data-repository [] ["ctsi@umn.edu"] The data in the U of M’s Clinical Data Repository comes from the electronic health records (EHRs) of more than 2 million patients seen at 8 hospitals and more than 40 clinics. For each patient, data is available regarding the patient's demographics (age, gender, language, etc.), medical history, problem list, allergies, immunizations, outpatient vitals, diagnoses, procedures, medications, lab tests, visit locations, providers, provider specialties, and more. eng ["disciplinary"] {"size": "medical records of more than 2,5 million patients seen at 8 hospitals and more than 40 clinics", "updatedp": "2018-08-22"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ICD-9 codes", "demographics", "health", "hospital admission", "laboratory results", "pathology reports", "pharmacy information", "radiology", "sociology"] [{"institutionName": "Fairview Health Services", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fairview.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Center for Advancing Translational Sciences, Clinical and Translational Science Award program", "institutionAdditionalName": ["CTSA", "NCATS", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ncats.nih.gov/ctsa", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minnesota, Clinical and Translational Science Institute", "institutionAdditionalName": ["CTSI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ctsi.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ctsi@umn.edu"]}] [{"policyName": "Policy statement", "policyURL": "https://policy.umn.edu/operations/phi"}, {"policyName": "Protection of individual health information", "policyURL": "http://regents.umn.edu/sites/regents.umn.edu/files/policies/Health_Information.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://policy.umn.edu/it/dataclassification"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ctsi.umn.edu/consultations-and-services/data-access-and-informatics-consulting"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2016-07-18 2021-08-25 +r3d100012066 Shuttle Radar Topography Mission eng [{"additionalName": "SRTM", "additionalNameLanguage": "eng"}] https://www2.jpl.nasa.gov/srtm/index.html [] ["michael.kobrick@jpl.nasa.gov"] The Shuttle Radar Topography Mission, which flew aboard NASA's Space Shuttle Endeavour during an 11-day mission in 2000, made the first near-global topographical map of Earth, collecting data on nearly 80 percent of Earth's land surfaces. The instrument's design was essentially a modified version of the earlier Shuttle Imaging Radar instruments with a second antenna added to allow for topographic mapping using a technique similar to stereo photography. eng ["disciplinary"] {"size": "9 terabytes of raw data", "updatedp": "2016-07-19"} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www2.jpl.nasa.gov/srtm/mission.htm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["GIS geographic information systems", "digital elevation models", "images", "interferometric synthetic aperture radar", "remote sensing", "topography"] [{"institutionName": "Deutsches Zentrum f\u00fcr Luft- und Raumfahrt", "institutionAdditionalName": ["DLR", "German Aerospace Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dlr.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04bwf3e34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dlr.de/eoc/en/desktopdefault.aspx/tabid-5515/9214_read-17716/"]}, {"institutionName": "Jet Propulsion Laboratory", "institutionAdditionalName": ["JPL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alan.buis@jpl.nasa.gov", "http://www.jpl.nasa.gov/news/news.php?release=2014-321", "stephen.e.cole@nasa.gov"]}, {"institutionName": "U.S. National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nasa.gov/mission_pages/shuttle/shuttlemissions/archives/sts-99.html", "stephen.e.cole@nasa.gov"]}, {"institutionName": "U.S. National Geospatial-Intelligence Agency", "institutionAdditionalName": ["NGA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nga.mil/Pages/Default.aspx", "institutionIdentifier": ["ROR:02k4pxv54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nga.mil/About/Pages/Contact.aspx"]}, {"institutionName": "US Geological Survey, Earth Resources Observation and Science", "institutionAdditionalName": ["USGS, EROS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://eros.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["custserv@usgs.gov"]}, {"institutionName": "United States Geological Survey", "institutionAdditionalName": ["U.S. Geological Survey", "USGS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": ["ROR:035a68863"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Important Notices", "policyURL": "https://www.usgs.gov/policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://technology.nasa.gov/publicdomain"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.jpl.nasa.gov/imagepolicy/"}] closed [] ["unknown"] {"api": "https://dds.cr.usgs.gov/srtm/version2_1/SRTM30/", "apiType": "FTP"} ["none"] https://www.usgs.gov/centers/eros [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} The SRTM radar contained two types of antenna panels, C-band and X-band. The near-global topographic maps of Earth called Digital Elevation Models (DEMs) are made from the C-band radar data. These data were processed at the Jet Propulsion Laboratory and are being distributed through the United States Geological Survey's EROS Data Center (http://eros.usgs.gov/). Data from the X-band radar are used to create slightly higher resolution DEMs but without the global coverage of the C-band radar. The SRTM X-band radar data are being processed and distributed by the German Aerospace Center, DLR (http://www.dlr.de/eoc/en/desktopdefault.aspx/tabid-5515/9214_read-17716/). Several new web sites have posted SRTM data in different formats than available at the USGS site or the Seamless Server. Users may want to check the Global Land Cover Facility (http://glcf.umiacs.umd.edu/data/srtm/index.shtml) or the CGIAR Consortium for Spatial Information (http://srtm.csi.cgiar.org/) for SRTM data. 2016-07-19 2021-08-25 +r3d100012067 AlgaeBase eng [] https://www.algaebase.org/ [] ["https://www.algaebase.org/contact/", "michael.guiry@nuigalway.ie"] AlgaeBase is a database of information on algae that includes terrestrial, marine and freshwater organisms. At present, the data for the marine algae, particularly seaweeds, are the most complete. eng ["disciplinary"] {"size": "157.366 species and infraspecific names, 22.115 images, 60.819 bibliographic items, 456.221 distributional records.", "updatedp": "2020-01-23"} 1996-03-20 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.algaebase.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Chlorophyta", "Phaeophyceae", "Rhodophyta", "algae", "brackish", "diatoms", "flowering plants", "freshwater", "sea-grasses", "seaweed", "terrestrial"] [{"institutionName": "AlgaeBase project", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.algaebase.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["michael.guiry@nuigalway.ie"]}, {"institutionName": "British Phycological Society", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://brphycsoc.org/", "institutionIdentifier": ["Wikidata:Q67188071"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://brphycsoc.org/contact-us/"]}, {"institutionName": "Flanders Marine Institute", "institutionAdditionalName": ["VLIZ", "Vlaams Instituut voor de Zee"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.vliz.be/en/", "institutionIdentifier": ["ROR:0496vr396"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Phycological Society", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.intphycsoc.org/", "institutionIdentifier": ["Wikidata:Q3153290"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japanese Society of Phycology", "institutionAdditionalName": ["JSP"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://sourui.org/JSPEnglish/welcome.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ocean Harvest Technology", "institutionAdditionalName": ["OHT"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://oceanharvesttechnology.com/about/", "institutionIdentifier": ["ROR:0013pnn31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oceanharvesttechnology.com/contact-us"]}, {"institutionName": "Phycological Society of America", "institutionAdditionalName": ["PSA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.psaalgae.org/", "institutionIdentifier": ["ROR:00a4fk439"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.psaalgae.org/contact/"]}, {"institutionName": "The Korean Society of Phycology", "institutionAdditionalName": [], "institutionCountry": "KOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.e-algae.org/", "institutionIdentifier": ["Wikidata:Q67201849"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AlgaeBase content", "policyURL": "https://www.algaebase.org/content/"}, {"policyName": "Copyright and Intellectual Copyright", "policyURL": "https://www.algaebase.org/about/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.algaebase.org/copyright/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.algaebase.org/copyright/"}] restricted [] ["MySQL"] {} ["none"] https://www.algaebase.org/about/ [] yes yes [] [] {} AlgaeBase is often a compromise of taxonomic opinions that may or may not reflect your particular conclusions. It is also a work in progress, and is thus incomplete. Please note that AlgaeBase is purely meant as an aid to taxonomic studies and not a definitive source in its own right. You should always check the information included prior to use. Notulae Algarum is a on-line only journal published by AlgaeBase as part of its service to the Phycological Community. 2016-07-19 2021-09-03 +r3d100012068 Cranfield Online Research Data eng [{"additionalName": "CORD", "additionalNameLanguage": "eng"}] http://cranfield.figshare.com/ [] ["researchdata@cranfield.ac.uk"] CORD is Cranfield University's research data repository, for secure preservation of institutional research data outputs. Cranfield is an exclusively postgraduate university that is a global leader for transformational research in technology and management. We are focused on the specialist themes of aerospace, defence and security, energy and power, environment and agrifood, manufacturing, transport systems, and water. The Cranfield School of Management is world leader in management education and research. eng ["institutional"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.cranfield.ac.uk/business/benefit-from-our-facilities/data-sets [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aerospace", "agrifood", "defence", "energy", "environment", "management", "manufacturing", "power", "transport", "water"] [{"institutionName": "Cranfield University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cranfield.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://figshare.com/services/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://figshare.com/contact"]}] [{"policyName": "Data sets", "policyURL": "https://www.cranfield.ac.uk/business/benefit-from-our-facilities/data-sets"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.datacite.org/cite-your-data.html ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Cranfield Online Research Data is powered by figshare. Cranfield Online Research Data uses Altmetric metrics. Cranfield is an exclusively postgraduate university that is a global leader for education and transformational research in technology and management. We are focused on the specialist themes of aerospace, defence and security, energy and power, environment and agrifood, manufacturing, transport systems, and water. The Cranfield School of Management is world leader in management education and research. We are home to many world-class, large-scale facilities which enhance our teaching and research. We are the only university in the world to own and run an airport and to have airline status. 2016-07-19 2016-09-29 +r3d100012069 Top Down Proteomics Repository eng [{"additionalName": "Proteoform Repository", "additionalNameLanguage": "eng"}, {"additionalName": "TDPR", "additionalNameLanguage": "eng"}] http://repository.topdownproteomics.org/ [] ["http://www.topdownproteomics.org/about/contact-us", "joseph.greer@northwestern.edu"] This database will provide a central location for scientists to browse uniquely observed proteoforms and to contribute their own datasets. Top-down proteomics is a method of protein identification that uses an ion trapping mass spectrometer to store an isolated protein ion for mass measurement and tandem mass spectrometry analysis. eng ["disciplinary"] {"size": "70.817 Proteoforms; 17.270 Unique UniProt Accessions", "updatedp": "2016-07-25"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://topdownproteomics.org/data/item/publish-your-dataset-for-free-with-ctdp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA sequencing", "bioinformatics", "cells", "mass spectometry", "protein analysis"] [{"institutionName": "Bruker Scientific Instruments", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.bruker.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bruker.com/imprint.html"]}, {"institutionName": "Consortium for Top Down Proteomics", "institutionAdditionalName": ["CTDP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topdownproteomics.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@topdownproteomics.org"]}, {"institutionName": "ThermoFisher Scientific", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.thermoscientific.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.thermofisher.com/de/de/home/technical-resources/contact-us.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/"}] restricted [] ["unknown"] {} ["none"] [] yes yes [] [] {"syndication": "http://topdownproteomics.org/news/feeds?format=feed&type=rss", "syndicationType": "RSS"} 2016-07-19 2016-07-27 +r3d100012071 Open Core Data eng [{"additionalName": "OCD", "additionalNameLanguage": "eng"}] http://opencoredata.org [] ["dfils@oceanleadership.org", "gro.pihsredaelnaeco@slifd"] Open Core Data is a data infrastructure focused on making data from scientific continental and ocean drilling projects semantically discoverable, persistent, citable, and approachable to maximize their utility to present and future geoscience researchers. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://opencoredata.org/about.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["OpenCoreNotebooks", "deep sea", "scientific continental drilling", "scientific ocean drilling"] [{"institutionName": "EarthCube Council of Data Facilities", "institutionAdditionalName": ["CDF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthcube.org/group/council-data-facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Interdisciplinary Earth Data Alliance", "institutionAdditionalName": ["IEDA"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.iedadata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Core Data Community", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://opencoredata.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NSF Data Sharing Policy", "policyURL": "http://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}] restricted [] [] no {"api": "http://opencoredata.org/common/swagger-ui/", "apiType": "REST"} ["DOI"] [] unknown unknown [] [] {} Open Core Data is part of "NSF Facilities for Continental Scientific & Drilling & Coring" : https://www.re3data.org/repository/r3d100012874 2016-07-20 2018-10-23 +r3d100012072 ILL Data Portal eng [{"additionalName": "Institut Laue-Langevin Data Portal", "additionalNameLanguage": "eng"}] https://www.ill.eu/users/user-guide/after-your-experiment/data-management#c8867 [] ["data@ill.eu"] In order to control access to the experimental data obtained at the ILL in a coherent and secure fashion, the ILL has recently developed a single portal for consulting, downloading and managing your data. Here “data” is understood to mean raw data (i.e. numor files), processed data, and meta-data (e.g. log files or “logs”). eng ["disciplinary", "institutional"] {"size": "FAIRsharing_doi:10.25504/FAIRsharing.2dam97", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://data.ill.eu/doc [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["diffraction", "high resolution spectrometry", "neutron reflectometry", "nuclear physics", "spectrometers"] [{"institutionName": "Institut Max Von Laue\u2013Paul Langevin", "institutionAdditionalName": ["ILL", "Institut Laue Langevin"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ill.eu/", "institutionIdentifier": ["ROR:01xtjs520"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Institut Max Von Laue\u2013Paul Langevin (ILL) Scientific Data Policy", "policyURL": "https://www.ill.eu/users/user-guide/after-your-experiment/data-management#c8872"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ill.eu/users/user-guide/after-your-experiment/data-management#c8872"}] restricted [] [] {} ["DOI"] https://www.ill.eu/users/user-guide/after-your-experiment/after-your-experiment [] yes unknown [] [] {} ILL Data Portal is covered by Clarivate Data Citation Index. is covered by Elsevier. ILL Internet Data Access (IDA ) http://barns.ill.fr/cgi-bin/barns/nph-barns.pl?StartBarns=Ida&User=EVERY_bod192&Habib= , allows downloading of raw data files that predate the ILL Data Policy (i.e. before cycle 123 of Autumn 2012) explorer.ill.eu https://explorer.ill.eu/#0 is a browser-based tool for downloading files of any kind via your ILL computer account (ILL data, personal files …). 2016-07-22 2021-09-02 +r3d100012074 BindingDB eng [{"additionalName": "BDB", "additionalNameLanguage": "eng"}, {"additionalName": "The Binding Database", "additionalNameLanguage": "eng"}] http://bindingdb.org/bind/index.jsp ["FAIRsharing_doi:10.25504/FAIRsharing.3b36hk", "RRID:SCR_000390", "RRID:nif-0000-02603"] ["http://bindingdb.org/bind/sendmail.jsp", "mgilson@health.ucsd.edu"] BindingDB is a public, web-accessible knowledgebase of measured binding affinities, focusing chiefly on the interactions of proteins considered to be candidate drug-targets with ligands that are small, drug-like molecules. BindingDB supports medicinal chemistry and drug discovery via literature awareness and development of structure-activity relations (SAR and QSAR); validation of computational chemistry and molecular modeling approaches such as docking, scoring and free energy methods; chemical biology and chemical genomics; and basic studies of the physical chemistry of molecular recognition. BindingDB also includes a small collection of host-guest binding data of interest to chemists studying supramolecular systems. The data collection derives from a variety of measurement techniques, including enzyme inhibition and kinetics, isothermal titration calorimetry, NMR, and radioligand and competition assays. BindingDB includes data extracted from the literature and from US Patents by the BindingDB project, selected PubChem confirmatory BioAssays, and ChEMBL entries for which a well defined protein target ("TARGET_TYPE='PROTEIN'") is provided. eng ["disciplinary"] {"size": "2.100.000 binding data, 920.000 compounds, 8.200 proteins", "updatedp": "2020-12-15"} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["binding affinity", "chemical genomics", "drug", "drug discovery", "drug target", "interaction", "medicinal chemistry", "protein", "protein interaction", "small molecule", "small molecule-protein interaction"] [{"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": ["ROR:05xpvk416"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California at San Diego, Skaggs School of Pharmacy and Pharmaceutical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pharmacy.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://gilson.cloud.ucsd.edu/", "mgilson@ucsd.edu"]}] [{"policyName": "How to use BindingDB", "policyURL": "http://bindingdb.org/bind/FAQ2.jsp"}, {"policyName": "Introduction to BindingDB", "policyURL": "http://bindingdb.org/bind/BindingDB-Intro2a.pdf"}, {"policyName": "Reactome Users guide", "policyURL": "https://reactome.org/userguide/Usersguide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}] open [{"dataUploadLicenseName": "Data Deposition", "dataUploadLicenseURL": "https://www.bindingdb.org/bind/contributedata.jsp"}] ["other"] yes {"api": "https://www.bindingdb.org/bind/BindingDBRESTfulAPI.jsp", "apiType": "REST"} ["DOI"] [] yes yes [] [] {} is covered by Elsevier. 2016-07-25 2021-09-02 +r3d100012075 D-PLACE eng [{"additionalName": "Database of Places, Language, Culture and Environment", "additionalNameLanguage": "eng"}] https://d-place.org [] ["dplace@shh.mpg.de"] D-PLACE contains cultural, linguistic, environmental and geographic information for over 1400 human ‘societies’. A ‘society’ in D-PLACE represents a group of people in a particular locality, who often share a language and cultural identity. All cultural descriptions are tagged with the date to which they refer and with the ethnographic sources that provided the descriptions. The majority of the cultural descriptions in D-PLACE are based on ethnographic work carried out in the 19th and early-20th centuries (pre-1950). eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://d-place.org/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Binford Hunter-Gatherer", "Ethnographic Atlas (EA)", "Glottolog code", "anthropological", "archaeological", "cross-cultural", "cross-disciplinary", "cultural diversity", "cultural features", "evolution", "language family"] [{"institutionName": "Max Planck Institute for the Science of Human history", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Menschheitsgeschichte"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.shh.mpg.de/221977/dplacejuly2016", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Society", "institutionAdditionalName": ["Max-Planck-Gesellschaft"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Triangle Center for Evolutionary Medicine", "institutionAdditionalName": ["NESCent", "National Evolutionary Synthesis Center", "TriCEM"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://tricem.dreamhosters.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Sources", "policyURL": "https://d-place.org/source"}, {"policyName": "Imprint", "policyURL": "https://d-place.org/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://github.com/D-PLACE/dplace/blob/master/LICENSE"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}] restricted [] ["other"] {"api": "https://d-place.org/technology", "apiType": "REST"} ["none"] https://d-place.org/howtocite [] unknown yes [] [] {} While D-PLACE is designed to be expandable, most of the initial cultural data in D-PLACE were originally compiled by two anthropologists, George P. Murdock and Lewis R. Binford, each relying on hundreds of individual references. D-PLACE was developed by an international team of scientists interested in cross-cultural research. It includes researchers from Max Planck Institute for the Science of Human history in Jena Germany, University of Auckland, Colorado State University, University of Toronto, University of Bristol, Yale, Human Relations Area Files, Washington University in Saint Louis, and the University of Michigan. 2016-07-25 2016-07-28 +r3d100012076 The MaxQuant DataBase eng [{"additionalName": "MaxQB", "additionalNameLanguage": "eng"}] http://maxqb.biochem.mpg.de/mxdb/ [] ["pr@biochem.mpg.de"] MaxQB stores and displays collections of large proteomics projects and allows joint analysis and comparison. As a first dataset is contains proteome data of 11 different human cell lines. The 11 cell line proteomes together identify proteins expressed from more than half of all human genes. For each protein of interest, expression levels estimated by label-free quantification can be visualized across the cell lines. Similarly, the expression rank order and estimated amount of each protein within each proteome are plotted. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.mcponline.org/content/11/3/M111.014068.full.pdf [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["mass spectrometry", "peptide identifications", "protein identifications", "proteomics projects", "spectra"] [{"institutionName": "Max Planck Institute for Biochemistry", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Biochemie"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.biochem.mpg.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["schaab@biochem.mpg.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://maxqb.biochem.mpg.de/mxdb/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.mcponline.org/content/11/3/M111.014068.full.pdf"}] closed [] ["other"] yes {"api": "http://www.mcponline.org/content/11/3/M111.014068.full.pdf", "apiType": "SOAP"} ["none"] [] unknown yes [] [] {} We plan to implement an automatic submission of the experiments in MaxQB to PRIDE, so that MaxQB data are also available in the databases that are part of ProteomeXchange. But Additionally, MaxQB features a number of analysis tools that are not currently present in other databases. For example, we here introduced a procedure to adjust the required cutoff scores to keep the overall false positive rate constant when incremental proteome projects are added. These analysis tools can be used in MaxQB, but they could also be incorporated into other proteome databases. 2016-07-26 2021-08-24 +r3d100012077 Citrination eng [] https://www.citrination.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.x6y19r"] ["info@citrine.io"] Citrination is the premier open database and analytics platform for the world's material and chemical information. Here you can find tabulated materials property data, that users have contributed or Citrine has automatically extracted from literature. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.citrination.com/faq [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["analytics platform", "chemometrics", "material science"] [{"institutionName": "Citrine Informatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.citrine.io/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CITRINE INFORMATICS TERMS OF SERVICE", "policyURL": "https://www.citrination.com/tos"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.citrination.com/tos"}] restricted [{"dataUploadLicenseName": "CITRINE INFORMATICS TERMS OF SERVICE", "dataUploadLicenseURL": "https://www.citrination.com/tos"}] [] {} ["none"] https://www.citrination.com/datamanagement [] yes unknown [] [] {} is covered by Elsevier. 2016-07-26 2021-10-25 +r3d100012078 SOL Genomics Network eng [{"additionalName": "SGN", "additionalNameLanguage": "eng"}, {"additionalName": "Solanaceae Genomics Network", "additionalNameLanguage": "eng"}] https://solgenomics.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.3zqvaf", "RRID:SCR_004933", "RRID:nlx_89764"] ["https://solgenomics.net/contact/form"] The Sol Genomics Network (SGN) is a clade-oriented database dedicated to the biology of the Solanaceae family which includes a large number of closely related and many agronomically important species such as tomato, potato, tobacco, eggplant, pepper, and the ornamental Petunia hybrida. SGN is part of the International Solanaceae Initiative (SOL), which has the long-term goal of creating a network of resources and information to address key questions in plant adaptation and diversification eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://solgenomics.net/about/index.pl [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["EST", "Solanaceae", "chromosome", "eggplant", "gene", "mRNA", "molecular biology", "pepper", "potato", "protein", "sequencing", "tomato", "unigenes"] [{"institutionName": "Boyce Thompson Institute", "institutionAdditionalName": ["BTI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://btiscience.org/", "institutionIdentifier": ["RRID:SCR_010716", "RRID:nlx_89613"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SOL Genomics Network Community", "institutionAdditionalName": ["SGN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://solgenomics.net/search/people", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal", "policyURL": "https://solgenomics.net/legal.pl"}, {"policyName": "Tomato Genome Project - clone distribution policy", "policyURL": "https://solgenomics.net/help/clone_policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://solgenomics.net/legal.pl"}] restricted [{"dataUploadLicenseName": "Become SGN Editor", "dataUploadLicenseURL": "https://solgenomics.net/phenome/index.pl"}] ["other"] {"api": "ftp://ftp.sgn.cornell.edu/", "apiType": "FTP"} ["none"] https://solgenomics.net/help/index.pl [] yes unknown [] [] {} 2016-07-26 2021-10-08 +r3d100012079 Clinical Proteomic Tumor Analysis Consortium Data Portal eng [{"additionalName": "CPTAC Data Portal", "additionalNameLanguage": "eng"}] https://cptac-data-portal.georgetown.edu/cptac/aboutData/show?scope=about [] ["cptac.dcc.help@esacinc.com"] The CPTAC Data Portal is the centralized repository for the dissemination of proteomic data collected by the Proteome Characterization Centers (PCCs) for the CPTAC program. The portal also hosts analyses of the mass spectrometry data (mapping of spectra to peptide sequences and protein identification) from the PCCs and from a CPTAC-sponsored common data analysis pipeline (CDAP). eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://proteomics.cancer.gov/programs/cptacnetwork [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cancer biospecimens", "mass spectrometry", "proteins", "proteome"] [{"institutionName": "National Cancer Institute, Office of Cancer Clinical Proteomics Research", "institutionAdditionalName": ["NCI, OCCPR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://proteomics.cancer.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://proteomics.cancer.gov/global/contactus"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://cptac-data-portal.georgetown.edu/cptac/public"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cptac-data-portal.georgetown.edu/cptac/aboutData/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cptac-data-portal.georgetown.edu/cptac/aboutData/disclaimer"}] closed [] ["other"] {"api": "http://asperasoft.com/technology/transport/fasp/?L=0", "apiType": "other"} ["none"] https://cptac-data-portal.georgetown.edu/cptac/aboutData/disclaimer ["none"] yes yes [] [] {} CPTAC Proteome Characterization Center Principal Investigators: http://proteomics.cancer.gov/programs/cptacnetwork/cptacleadership 2016-07-27 2016-07-29 +r3d100012080 Materials Data Facility eng [{"additionalName": "MDF", "additionalNameLanguage": "eng"}] https://www.materialsdatafacility.org/ [] ["blaiszik@uchicago.edu"] The Materials Data Facility (MDF) is set of data services built specifically to support materials science researchers. MDF consists of two synergistic services, data publication and data discovery (in development). The production-ready data publication service offers a scalable repository where materials scientists can publish, preserve, and share research data. The repository provides a focal point for the materials community, enabling publication and discovery of materials data of all sizes. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["4D", "fatigue", "materials", "synchrotron", "x-ray computed tomography"] [{"institutionName": "Argonne National Laboratory", "institutionAdditionalName": ["ANL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.anl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Data Service", "institutionAdditionalName": ["NDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nationaldataservice.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@nationaldataservice.org"]}, {"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nist.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Northwestern University, Center for Hierarchical Materials Design", "institutionAdditionalName": ["CHiMaD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://chimad.northwestern.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Chicago", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uchicago.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "How to share data using Globus", "policyURL": "https://docs.globus.org/how-to/share-files/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [{"dataUploadLicenseName": "Globus data publication user guide", "dataUploadLicenseURL": "https://docs.globus.org/data-publication-user-guide/"}] ["other"] {} ["DOI", "hdl"] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} MDF is a pilot project funded by NIST, and serves as the first pilot community of the National Data Service. 2016-07-27 2016-07-30 +r3d100012081 GOBASE eng [{"additionalName": "The Organelle Genome Database", "additionalNameLanguage": "eng"}] http://gobase.bcm.umontreal.ca/searches/gene.php ["RRID:SCR_007692", "RRID:nif-0000-02917"] ["gobase@BCH.UMontreal.CA"] GOBASE is a taxonomically broad organelle genome database that organizes and integrates diverse data related to mitochondria and chloroplasts. GOBASE is currently expanding to include information on representative bacteria that are thought to be specifically related to the bacterial ancestors of mitochondria and chloroplasts eng ["disciplinary"] {"size": "", "updatedp": ""} 1996-06-22 2010-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://gobase.bcm.umontreal.ca/manual.html#UNIQUE [{"name": "Archived data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNA", "biochemistry", "bioninformatics", "enzyme", "genetics", "genomics", "mitochondrial nucleic acid sequences", "nucleotide sequences", "taxonomy"] [{"institutionName": "Canadian Institute for advanced research", "institutionAdditionalName": ["CIFAR", "ICRA", "Institut canadien de recherches avanc\u00e9es"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cifar.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRCH", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": ["http://www.cihr-irsc.gc.ca/"]}, {"institutionName": "Oracle and Sun Microsystems", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.oracle.com/sun/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Organelle Genome Megasequencing Program", "institutionAdditionalName": ["OGMP"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://megasun.bch.umontreal.ca/ogmp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "University of Oxford, Department of Physiology, Anatomy and Genetics, Medical Research Council Functional Genomics Unit, Computational Genomics Analysis and Training", "institutionAdditionalName": ["MRC, CGAT"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cgat.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Montr\u00e9al, Facult\u00e9 de m\u00e9decine, D\u00e9partement de biochimie et m\u00e9decine mol\u00e9culaire, Robert Cedergren Centre", "institutionAdditionalName": ["UdeM"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.centrerc.umontreal.ca/bienvenuea.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2010", "institutionContact": []}] [{"policyName": "International Nucleotide Sequence Database Collaboration Policy", "policyURL": "http://www.insdc.org/policy.html"}, {"policyName": "OGMP - Data Acquisition and Analysis", "policyURL": "http://megasun.bch.umontreal.ca/ogmp/analysis.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://gobase.bcm.umontreal.ca/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://secretariatgeneral.umontreal.ca/documents-officiels/reglements-et-politiques/recherche/#c3215"}] closed [] ["other"] yes {} ["none"] http://gobase.bcm.umontreal.ca/index.php [] unknown yes [] [] {} Unfortunately, funding for GOBASE has expired. Maintenance of GOBASE will cease at the end of August 2010 and the contact address gobase@bch.umontreal.ca will also become defunct at this time 2016-07-27 2017-04-20 +r3d100012083 Ocean Tracking Network eng [{"additionalName": "OTN", "additionalNameLanguage": "eng"}] http://oceantrackingnetwork.org/ [] ["otn@dal.ca"] Ocean Tracking Network (OTN) deploys Canadian, state of the art acoustic receivers and oceanographic monitoring equipment in key ocean locations. These are being used to document the movements and survival of marine animals carrying acoustic tags and to document how both are influenced by oceanographic conditions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://oceantrackingnetwork.org/about/#vision [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["acoustics", "animal movements", "fish migration patterns", "marine conditions", "marine ecology", "marine science", "oceanography", "sea animals", "telemetry"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "FCI", "Fondation canadienne pour l\u2019innovation", "INNOVATION.CA"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.innovation.ca/en/ContactUs"]}, {"institutionName": "Dalhousie University, Department of Oceanography", "institutionAdditionalName": ["Dal, Department of Oceanography"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.dal.ca/faculty/science/oceanography.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dal.ca/faculty/science/oceanography/people.html"]}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/ContactDirectory-RepertoiredeContact_eng.asp"]}, {"institutionName": "Social Sciences and Humanities Research Council of Canada", "institutionAdditionalName": ["CRSH", "Conseil de recherches en sciences humaines", "SSHRCC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.sshrc-crsh.gc.ca/home-accueil-eng.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sshrc-crsh.gc.ca/contact_us-contactez_nous/index-eng.aspx"]}] [{"policyName": "OTN Data Policy", "policyURL": "http://members.oceantrack.org/policies/otn-data-policy-ver-11-oct-30"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://members.oceantrack.org/policies/otn-data-policy-ver-11-oct-30"}] restricted [{"dataUploadLicenseName": "OTN Data Policy", "dataUploadLicenseURL": "http://members.oceantrack.org/policies/otn-data-policy-ver-11-oct-30"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2016-07-27 2018-01-15 +r3d100012084 Phenylalanine Hydroxylase Locus Knowledgebase eng [{"additionalName": "PAHdb", "additionalNameLanguage": "eng"}] http://www.pahdb.mcgill.ca [] ["pahdb@debelle.mcgill.ca"] This site provides users with access to up-to-date information about mutations at the phenylalanine hydroxylase locus. Here you will have access to the content of the database in the form of electronic reports. The database is updated manually off-line by the curators to assure that no erroneous information is appended. The curators now also accept data electronically via the submission form. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.pahdb.mcgill.ca/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cDNA", "gDNA", "genetics", "henylalanine hydroxylase enzyme", "human", "mutation"] [{"institutionName": "Canadian Inherited Metabolic Diseases Research Network", "institutionAdditionalName": ["CIMDRN", "RCRMMH", "R\u00e9seau canadien de recherche sur les maladies m\u00e9taboliques h\u00e9r\u00e9ditaires"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cimdrn.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["khangura@uottawa.ca"]}, {"institutionName": "Canadian Institutes of Health", "institutionAdditionalName": ["CHIR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada", "Medical Research Council"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "McGill University Health Centre", "institutionAdditionalName": ["CUSM", "Centre universitaire de sant\u00e9 McGill", "MUHC"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://muhc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://muhc.ca/homepage/page/contact-us"]}, {"institutionName": "Network of Applied Medical Genetics", "institutionAdditionalName": ["RMGA", "R\u00e9seau de M\u00e9decine G\u00e9n\u00e9tique Appliqu\u00e9e"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.rmga.qc.ca/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.rmga.qc.ca/en/contact.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.pahdb.mcgill.ca/?Topic=About&Section=Copyright&Page=0"}] open [] ["MySQL"] {} ["none"] http://www.pahdb.mcgill.ca/PahdbSearch.php [] yes yes [] [] {} 2016-07-27 2021-08-25 +r3d100012085 Protist EST Program Database eng [{"additionalName": "PEP Database", "additionalNameLanguage": "eng"}, {"additionalName": "PEPdb", "additionalNameLanguage": "eng"}, {"additionalName": "TBestDB", "additionalNameLanguage": "eng"}] http://megasun.bch.umontreal.ca/pepdb/ ["RRID:SCR_007962"] ["tbestdb@bch.umontreal.ca"] The taxonomically broad EST database TBestDB serves as a repository for EST data from a wide range of eukaryotes, many of which have previously not been thoroughly investigated. Most of the data contained in TBestDB has been generated by the labs of the Protist EST Program located in six universities across Canada. PEP is a large interdisciplinaryresearch project, involving six Canadian universities. PEP aims at the exploration of the diversity of eukaryotic genomes in a systematic, comprehensive and integrated way. The focus is on unicellular microbial eukaryotes, known as protists. Protistan eukaryotes comprise more than a dozen major lineages that, together, encompass more evolutionary, ecological and probably biochemical diversity than the multicellular kingdoms of animals, plants and fungi combined. PEP is a unique endeavor in that it is the first phylogenetically-broad genomic investigation of protists. eng ["disciplinary"] {"size": "About 50 protists", "updatedp": "2016-07-29"} 2002 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://megasun.bch.umontreal.ca/pepdb/pep.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["RNA", "cDNA", "cDNA libraries", "expressed sequence tag (EST) sequences", "gene", "gene-ontology", "genetics", "genomics", "pathway predictions", "protein-protein-interaction", "sequence annotations", "taxon"] [{"institutionName": "Dalhousie University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dal.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aroger@is.dal.ca", "mwgray@is.dal.ca"]}, {"institutionName": "Genome Atlantic", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://genomeatlantic.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@genomeatlantic.ca"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomecanada.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.genomecanada.ca/en/about-us/contact-us"]}, {"institutionName": "Genome Quebec", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomequebec.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.genomequebec.com/en/contact-us.html"]}, {"institutionName": "McMaster University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mcmaster.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["golding@mcmaster.ca"]}, {"institutionName": "University of British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pkeeling@interchange.ubc.ca"]}, {"institutionName": "University of Montreal", "institutionAdditionalName": ["Universit\u00e9 de Montr\u00e9al"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Franz.Lang@Umontreal.ca", "burgerg@bch.umontreal.ca"]}, {"institutionName": "University of New Brunswick", "institutionAdditionalName": ["UNB"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unb.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["durnford@unb.ca"]}, {"institutionName": "York University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.york.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ronp@yorku.ca"]}] [{"policyName": "EST processing in TBestDB", "policyURL": "http://tbestdb.bcm.umontreal.ca/docs/doc_pipeline.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://tbestdb.bcm.umontreal.ca/searches/login.php"}] closed [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} Is part of Evolutionary & Integrative Genomics at the Université de Montréal, http://megasun.bch.umontreal.ca/ 2016-07-27 2016-09-27 +r3d100012086 Pseudomonas Genome DB eng [{"additionalName": "PGD", "additionalNameLanguage": "eng"}, {"additionalName": "Pseudocap", "additionalNameLanguage": "eng"}, {"additionalName": "Pseudomonas Genome Database", "additionalNameLanguage": "eng"}] http://www.pseudomonas.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.mn5m1p", "MIR:00000180", "RRID:SCR_006590", "RRID:nif-0000-03369"] ["http://www.pseudomonas.com/contact", "pseudocap-mail@sfu.ca"] The Pseudomonas Genome Database collaborates with an international panel of expert Pseudomonas researchers to provide high quality updates to the PAO1 genome annotation and make cutting edge genome analysis data available. eng ["disciplinary"] {"size": "135 Complete Genomes; 2.199 Draft Genomes; 3.051 Manually-curated annotation updates; 4.206 Curated GO terms", "updatedp": "2016-08-01"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA", "InterPro annotation", "Pseudomonas Orthologs Group (POG)", "antibiotic resistance", "cosmid", "gene ontology annotation", "genetics", "pseudomonas aeruginosa"] [{"institutionName": "Cystic Fibrosis Foundation Therapeutics", "institutionAdditionalName": ["CFFT"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cff.org/Our-Research/Cystic-Fibrosis-Foundation-Therapeutics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cff.org/About-Us/About-the-Cystic-Fibrosis-Foundation/Contact-Us/", "info@cff.org"]}, {"institutionName": "Simon Fraser University", "institutionAdditionalName": ["SFU"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sfu.ca/contact/burnaby.html"]}, {"institutionName": "Simon Fraser University, Department of Molecular Biology and Biochemistry, Fiona Brinkman Laboratory", "institutionAdditionalName": ["SFU, MBB, Brinkman Lab"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.brinkman.mbb.sfu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brinkman@sfu.ca"]}, {"institutionName": "University of British Columbia, Department of Microbiology and Immunology, R.E. W. Hancock Laboratory", "institutionAdditionalName": ["Hancock Lab"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://cmdr.ubc.ca/bobh/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cmdr.ubc.ca/bobh/contact.html"]}] [{"policyName": "CFF Terms of Agreement", "policyURL": "https://www.cff.org/Terms-of-Agreement/"}, {"policyName": "Copyright at UBC", "policyURL": "http://copyright.ubc.ca/?utm_campaign=UBC%20CLF&utm_medium=CLF%20Global%20Footer&utm_source=http%3A%2F%2Fwww.ubc.ca%2F"}, {"policyName": "Directions for adding GO annotations to spreadsheet", "policyURL": "http://www.pseudomonas.com/static/docs/Instructions_for_GO.pdf"}, {"policyName": "SFU terms and conditions", "policyURL": "http://www.sfu.ca/contact/terms-conditions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.pseudomonas.com/acknowledgements"}] restricted [] [] {} ["none"] http://www.pseudomonas.com/acknowledgements [] unknown yes [] [] {} Current and previous funding and groups involved see: http://www.pseudomonas.com/funding. PseudoCAP was the first wholly Internet-based and community-based genome annotation project for analysis of a genome of a free-living organism http://www.pseudomonas.com/pseudocap 2016-07-27 2021-09-08 +r3d100012087 UNESCO Institute for Statistics, Data Centre eng [{"additionalName": "ISU Centre de donn\u00e9es", "additionalNameLanguage": "fra"}, {"additionalName": "Institut de statistique de l'UNESCO, Centre de donn\u00e9es", "additionalNameLanguage": "fra"}, {"additionalName": "UIS Data Centre", "additionalNameLanguage": "eng"}, {"additionalName": "UIS.stat", "additionalNameLanguage": "eng"}] http://data.uis.unesco.org/ [] ["uis.publications@unesco.org"] A primary source for cross-nationally comparable statistics on education, science and technology, culture, and communication for more than 200 countries and territories. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10901 General Education and History of Education", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://uis.unesco.org/en/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["communication", "culture", "education", "science", "technology"] [{"institutionName": "UNESCO Institute for Statistics", "institutionAdditionalName": ["Institut de statistique de l'UNESCO", "Organisation des Nations Unies pour l'\u00c9ducation la Science et la Culture", "UIS", "United Nations Educational, Scientific and Cultural Organization, Institut for Statistics"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://uis.unesco.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://uis.unesco.org/en/contact-us"]}, {"institutionName": "Universit\u00e9 de Montr\u00e9al, \u00c9cole des hautes \u00e9tudes commerciales", "institutionAdditionalName": ["HEC Montr\u00e9al"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.hec.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hec.ca/en/contact_us/index.html"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://uis.unesco.org/en/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://uis.unesco.org/en/terms-and-conditions"}] closed [] ["unknown"] yes {} ["none"] http://uis.unesco.org/en/terms-and-conditions [] yes yes [] [] {} Donors: http://uis.unesco.org/en/our-donors 2016-07-27 2021-03-16 +r3d100012088 Viral Bioinformatics Resource Center eng [{"additionalName": "VBRC", "additionalNameLanguage": "eng"}] http://virology.uvic.ca/ [] ["cupton@uvic.ca", "http://virology.uvic.ca/help/contact/"] Databases of viral genomic information (genes, gene families, and genomes), and software to perform comparative genomics analyses eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://virology.uvic.ca/virology-ca-our-goals/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["DNA", "bioinformatics", "disease control", "genetics", "genomics", "prevention", "viral genomic information", "virology", "virus orthologous clusters"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIH, NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.niaid.nih.gov/LabsAndResources/resources/dmid/brc/Pages/default.aspx"]}, {"institutionName": "University of Alabama at Birmingham, Microbiology Department", "institutionAdditionalName": ["UAB Department of Microbiology"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uab.edu/medicine/microbiology/research/virology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uab.edu/medicine/microbiology/contact"]}, {"institutionName": "University of Victoria, Centre of Biomedical Research", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://cbr.uvic.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cbr.uvic.ca/about-us-mainmenu/contact"]}] [{"policyName": "Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/LabsAndResources/resources/dmid/Pages/data.aspx"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://virology.uvic.ca/"}] restricted [] ["unknown"] {"api": "http://webcache.googleusercontent.com/search?q=cache:peypskC7WDMJ:www3.nd.edu/~vector/SWG2006/Vectorbase_SWG_Meeting_Nov2006_Valentina.ppt+&cd=6&hl=de&ct=clnk&gl=de", "apiType": "other"} [] http://virology.uvic.ca/ [] yes yes [] [] {} 2016-07-27 2016-08-04 +r3d100012089 Canadian Centre for Climate Modelling and Analysis eng [{"additionalName": "CCCma", "additionalNameLanguage": "eng"}, {"additionalName": "CCmaC", "additionalNameLanguage": "fra"}, {"additionalName": "Centre canadien de la mod\u00e9lisation et de l'analyse climatique", "additionalNameLanguage": "fra"}] http://www.ec.gc.ca/ccmac-cccma/ [] ["ec.cccma.info-info.ccmac.ec@canada.ca", "https://www.canada.ca/en/environment-climate-change/services/climate-change/science-research-data/modeling-projections-analysis/centre-modelling-analysis/contact-information.html"] CCCma has developed a number of climate models. These are used to study climate change and variability, and to understand the various processes which govern the climate system. They are also used to make quantitative projections of future long-term climate change (given various greenhouse gas and aerosol forcing scenarios), and increasingly to make initialized climate predictions on time scales ranging from seasons to decades. A brief description of these models and their corresponding references can be found: http://ec.gc.ca/ccmac-cccma/default.asp?lang=En&n=4A642EDE-1 eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ec.gc.ca/default.asp?lang=En&n=BD3CE17D-1 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Intergovernmental Panel on Climate Change (IPCC)", "World Climate Research Programme (WCRP)", "atmospheric science", "climate change", "global climate", "regional climate"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ec.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acts, Regulations and Agreements", "policyURL": "http://ec.gc.ca/default.asp?lang=En&n=48D356C1-1"}, {"policyName": "Terms and conditions", "policyURL": "http://ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://ec.gc.ca/default.asp?lang=En&xml=5830C36B-1773-4E3E-AF8C-B21F54633E0A#copy"}] closed [] ["unknown"] yes {} ["none"] ["none"] unknown yes [] [] {} 2016-07-27 2021-10-08 +r3d100012090 Canadian Climate Data and Scenarios eng [{"additionalName": "CCDS", "additionalNameLanguage": "eng"}, {"additionalName": "DSCC", "additionalNameLanguage": "fra"}, {"additionalName": "Donn\u00e9es et sc\u00e9narios climatiques canadiens", "additionalNameLanguage": "fra"}] https://climate-scenarios.canada.ca/?page=main [] ["enviroinfo@ec.gc.ca", "https://www.canada.ca/en/environment-climate-change/corporate/contact.html"] The CCDS is an interface for distributing climate change information. The goals of CCDS are to: Support climate change impact and adaptation research in Canada and other countries; Support stakeholders requiring scenario information for decision making and policy development. Provide access to Canadian research on the development of scenarios and adaptation research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2005 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://climate-scenarios.canada.ca/?page=important-information [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bioclimate profiles", "climate changes", "climate modelling", "precipitation", "rainfall", "snowfall", "temperature"] [{"institutionName": "Canadian Centre for Climate Modelling and Analysis", "institutionAdditionalName": ["CCCma"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change/services/climate-change/science-research-data/modeling-projections-analysis/centre-modelling-analysis.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/environment-climate-change/corporate/contact.html"]}, {"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "2005", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/environment-climate-change/corporate/contact.html"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["Canada.ca", "Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en.html", "institutionIdentifier": ["ROR:010q4q527"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}, {"institutionName": "WCRP's Working Group on Coupled Modelling, Coupled Model Intercomparison Project Phase 5", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.wcrp-climate.org/modelling-wgcm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wcrp-climate.org/contact-wcrp"]}] [{"policyName": "Canadian climate data and scenarios Important information", "policyURL": "https://climate-scenarios.canada.ca/?page=important-information"}, {"policyName": "Government of Canada Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laws-lois.justice.gc.ca/eng/acts/C-42/index.html"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://climate-modelling.canada.ca/data/license.shtml"}] closed [] ["unknown"] yes {} ["none"] [] yes yes [] [] {} 2016-07-27 2021-10-08 +r3d100012092 Autism Chromosome Rearrangement Database eng [{"additionalName": "ACRD", "additionalNameLanguage": "eng"}] http://projects.tcag.ca/autism/ ["RRID:SCR_006474", "RRID:nif-0000-00239"] ["crm@sickkids.ca"] The Autism Chromosome Rearrangement Database is a collection of hand curated breakpoints and other genomic features, related to autism, taken from publicly available literature: databases and unpublished data. The database is continuously updated with information from in-house experimental data as well as data from published research studies. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ASDs Autism spectrum disorders", "DNA", "children", "disease", "genetics", "genomics", "human health", "neurodevelopmental disorder"] [{"institutionName": "The Centre for Applied Genomics", "institutionAdditionalName": ["TCAG"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tcag.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tcag.ca/contact/index.html"]}, {"institutionName": "The Hospital for Sick Children", "institutionAdditionalName": ["SickKids"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.sickkids.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sickkids.ca/AboutSickKids/Contact-Us/index.html"]}, {"institutionName": "University of Toronto, Faculty of Medicine, McLaughlin Centre", "institutionAdditionalName": ["McLaughlin Centre"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mclaughlin.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mclaughlin.utoronto.ca/contact.htm"]}] [{"policyName": "TCAG Facilities Terms and Conditions", "policyURL": "http://www.tcag.ca/facilities/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] restricted [] ["other"] yes {"api": "http://projects.tcag.ca/bioxrt/docs/XRT_slides.pdf", "apiType": "SOAP"} ["none"] http://projects.tcag.ca/autism/ [] yes yes [] [] {} 2016-07-27 2016-08-07 +r3d100012093 Cystic Fibrosis Mutation Database eng [{"additionalName": "CFMDB", "additionalNameLanguage": "eng"}, {"additionalName": "CFTR1", "additionalNameLanguage": "eng"}] http://www.genet.sickkids.on.ca/cftr/app ["RRID:SCR_000685", "RRID:nif-0000-21105"] ["cftr.admin@genet.sickkids.on.ca", "http://www.genet.sickkids.on.ca/cftr/Contact.html"] The Cystic Fibrosis Mutation Database (CFTR1) was initiated by the Cystic Fibrosis Genetic Analysis Consortium in 1989 to increase and facilitate communications among CF researchers, and is maintained by the Cystic Fibrosis Centre at the Hospital for Sick Children in Toronto. The specific aim of the database is to provide up to date information about individual mutations in the CFTR gene. In a major upgrade in 2010, all known CFTR mutations and sequence variants have been converted to the standard nomenclature recommended by the Human Genome Variation Society. eng ["disciplinary"] {"size": "2.019 mutations", "updatedp": "2017-09-12"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.genet.sickkids.on.ca/cftr/ConsortiumBackgroundPage.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["CF", "CFMDB", "CFTR2", "disease", "dna sequence", "genetic variation", "genomics", "genotype", "mutation", "phenotype", "polymorphism"] [{"institutionName": "The Hospital for Sick Children, Cystic Fibrosis Centre", "institutionAdditionalName": ["SickKids"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sickkids.ca/Centres/Cystic-Fibrosis-Centre/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sickkids.ca/AboutSickKids/Contact-Us/index.html"]}, {"institutionName": "The Hospital for Sick Children, The Centre for Applied Genomics", "institutionAdditionalName": ["SickKids", "TCAG"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.tcag.ca/projects/databases.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines of Cystic Fibrosis Consortium", "policyURL": "http://www.genet.sickkids.on.ca/cftr/ConsortiumGuidelinesPage.html"}, {"policyName": "Notice and Disclaimer/Limitation of Liability of Database Use", "policyURL": "http://www.tcag.ca/projects/databaseDisclaimer.html"}, {"policyName": "TCAG Facilities Terms and Conditions", "policyURL": "http://www.tcag.ca/facilities/terms.html"}, {"policyName": "TCAG Facilities Terms and Conditions download", "policyURL": "http://www.tcag.ca/documents/terms-conditions_2016.pdf"}, {"policyName": "Terms and Conditions of Use", "policyURL": "http://www.sickkids.ca/AboutSickKids/terms-of-use-page.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] restricted [] [] {} ["none"] [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2016-07-27 2017-09-12 +r3d100012094 Adjusted and Homogenized Canadian Climate Data eng [{"additionalName": "AHCCD", "additionalNameLanguage": "eng"}, {"additionalName": "DCCAH", "additionalNameLanguage": "fra"}, {"additionalName": "Donn\u00e9es Climatiques Canadiennes Ajust\u00e9es et Homog\u00e9n\u00e9is\u00e9es", "additionalNameLanguage": "fra"}] https://www.canada.ca/en/environment-climate-change/services/climate-change/science-research-data/climate-trends-variability/adjusted-homogenized-canadian-data.html [] ["AHCCD@ec.gc.ca"] This web site provides adjusted and homogenized climate data for many climatological stations in Canada. These data were created for use in climate research including climate change studies. They incorporate a number of adjustments applied to the original station data to address shifts due to changes in instruments and in observing procedures. Sometimes the observations from several stations were joined to generate a long time series. The adjusted and homogenized data are provided for four climate elements: surface air temperature, precipitation, surface pressure, and surface wind speed. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["climatology", "meteorology", "precipitation", "surface air temperature", "surface pressure", "surface wind speed"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": ["ROR:026ny0e17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}] [{"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.canada.ca/en/environment-climate-change/corporate/transparency.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://open.canada.ca/en?lang=En&n=46D15882-1"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} These data are not the official Meteorological Service of Canada in situ station records and therefore should not be used for legal purposes. The official records can be obtained at the National Climate Data and Information Archive https://climate.weather.gc.ca/index_e.html 2016-07-27 2021-02-16 +r3d100012095 RAM Legacy Stock Assessment Database eng [] http://ramlegacy.org/ [] ["http://ramlegacy.org/contact/"] The RAM Legacy Stock Assessment Database is a compilation of stock assessment results for commercially exploited marine populations from around the world. The recently updated database offers many graphical and analytic tools to explore the data, as well as new data sets including; assessments from N.W. Africa, assessments from the Mediterranean Sea, assessments from Chile, data sets on Pacific salmon. The database is seeking collaborators to cover parts of the world that we are missing. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20304 Sensory and Behavioural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ramlegacy.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["SADB", "biological metrics", "exploited species", "global fisheries", "marine stocks", "meta-analytic techniques", "overfishisng", "population", "population dynamics", "time series"] [{"institutionName": "Dalhousie University, Department of Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.dal.ca/faculty/science/biology.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ricardd@mathstat.dal.ca"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://ramlegacy.org/fair-use-policy/"}] restricted [] ["other"] yes {} ["none"] http://ramlegacy.org/ [] yes yes [] [] {"syndication": "http://ramlegacy.org/feed/", "syndicationType": "RSS"} Funding: http://ramlegacy.org/ (Acknowledgments). The RAM Legacy Stock Assessment Database is a compilation of stock assessment results for commercially exploited marine populations from around the world. It is inspired by Dr. Ransom A. Myers' original stock-recruitment database http://www.mathstat.dal.ca/~myers/welcome.html which is no longer being updated. 2016-07-27 2016-08-10 +r3d100012097 Canadian Wildland Fire Information System eng [{"additionalName": "CWFIS", "additionalNameLanguage": "eng"}, {"additionalName": "SCIFV", "additionalNameLanguage": "fra"}, {"additionalName": "Syst\u00e8me canadien d'information sur les feux de v\u00e9g\u00e9tation", "additionalNameLanguage": "fra"}] http://cwfis.cfs.nrcan.gc.ca/home [] ["Mike.Flannigan@NRCan-RNCan.gc.ca", "john.little@canada.ca"] The Large Fire Database (LFDB) is a compilation of forest fire data from all Canadian agencies, including provinces, territories, and Parks Canada. The data set includes only fires greater than 200 hectares in final size; these represent only a few percent of all fires but account for most of the area burned (usually more than 97%). Therefore, the LFDB can be used for spatial and temporal analyses of landscape-scale fire impacts. For information on smaller fires (up to 200 ha in final size), please contact individual fire agencies. Links to other agencies can be found through the Canadian Interagency Forest Fire Centre (CIFFC). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Canadian Forest Fire Weather Index FWI", "Canadian National Fire Database", "North American Ensemble Forecast System NAEFS", "burn", "droughts", "fire behavior", "fuel moisture", "wildland fire"] [{"institutionName": "Canadian Interagency Forest Fire Centre", "institutionAdditionalName": ["CIFFC", "Centre interservices des feux de for\u00eat du Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ciffc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ciffc.ca/index.php?option=com_contact&Itemid=135"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["Canada.ca", "Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["john.little@canada.ca"]}, {"institutionName": "Natural Resources of Canada, Forests", "institutionAdditionalName": ["Ressources naturelles Canada, For\u00eats"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.nrcan.gc.ca/forests", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://contact-contactez.nrcan-rncan.gc.ca/index.cfm?lang=eng&sid=7&context=forests"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cwfis.cfs.nrcan.gc.ca/datamart/datarequest/lfdb"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] closed [] ["unknown"] {} [] [] yes yes [] [] {} 2016-07-27 2021-09-22 +r3d100012100 Water use data eng [{"additionalName": "Enqu\u00eate sur l'eau potable et les eaux us\u00e9es des municipalit\u00e9s", "additionalNameLanguage": "fra"}, {"additionalName": "Municipal Water and Wastewater Survey", "additionalNameLanguage": "eng"}, {"additionalName": "Utilisation municipale de l'eau", "additionalNameLanguage": "fra"}, {"additionalName": "WMMS", "additionalNameLanguage": "eng"}] http://ec.gc.ca/eau-water/default.asp?lang=En&n=ED7C2D33-1 [] ["h2o-info@ec.gc.ca"] !!!!! This page has been archived on the Web. Environment Canada has ended the Municipal Water and Wastewater Survey. !!!!! Environment and Climate Change Canada have had a water use database that includes information on all major water users obtained from national surveys on municipal water use, municipal water pricing and industrial water use. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ec.gc.ca/default.asp?lang=En&n=BD3CE17D-1 [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Municipal Water and Wastewater Survey - MWWS", "environment", "water", "water conservation", "water sources", "water use"] [{"institutionName": "Environment and Climate Change Canada", "institutionAdditionalName": ["ECCC", "Environnement et Changement climatique Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca"]}, {"institutionName": "Government of Canada", "institutionAdditionalName": ["GOC", "Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access to information and privacy", "policyURL": "https://www.canada.ca/en/environment-climate-change/corporate/transparency/access-information-privacy.html"}, {"policyName": "Terms and conditions", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://laws-lois.justice.gc.ca/eng/acts/C-42/"}] closed [] ["CKAN"] {} ["none"] ["AuthorClaim"] unknown unknown [] [] {} Information about water and environment: https://www.canada.ca/en/environment-climate-change/services/water-overview.html (20.4.2018) 2016-07-27 2019-01-15 +r3d100012101 University Information System RUSSIA eng [{"additionalName": "Databases and analytical publications", "additionalNameLanguage": "rus"}, {"additionalName": "UIS RUSSIA", "additionalNameLanguage": "eng"}] http://www-old.srcc.msu.ru/nivc/english/serv/uisrus1.htm [] ["uiswebmaster@srcc.msu.ru"] The University Information System RUSSIA (UIS RUSSIA) is a mutual project of Research Computing Center and Economic Faculty at Lomonosov Moscow State University. It was introduced in 2000 and has been designed as a digital library for research and educational purposes, primarily in the fields of economic and social sciences. Since then it was maintained to meet the growing interest and challenges of the Russian universities and educational community. Starting from 2003 our development team concentrated on statistical databases to build an infrastructure for educational courses, to assist broad Russian social and economic studies from regional to local and down to household level. Today profound knowledge of statistical data and ability to implement advanced modern methods of applied analysis are expected from successful university graduates and are in high demand among new specialists, particularly in economics, public administration and related areas. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "rus"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://uisrussia.msu.ru/db2007/ru/status_en.html#mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["children", "economic studies", "education", "public administration", "social studies", "statistics"] [{"institutionName": "Lomonosov Moscow State University, Research Computing Center and Economic Faculty", "institutionAdditionalName": ["\u041d\u0430\u0443\u0447\u043d\u043e-\u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0412\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0426\u0435\u043d\u0442\u0440 \u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u0438\u043c\u0435\u043d\u0438 \u041c. \u0412. \u041b\u043e\u043c\u043e\u043d\u043e\u0441\u043e\u0432\u0430"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.srcc.msu.ru/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["yudina@srcc.msu.ru"]}] [{"policyName": "Conditions and terms of use", "policyURL": "https://uisrussia.msu.ru/db2007/ru/status_en.html#terms"}, {"policyName": "UIS RUSSIA data processing", "policyURL": "https://uisrussia.msu.ru/db2007/ru/eng.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://uisrussia.msu.ru/db2007/ru/status_en.html#terms"}] restricted [] ["MySQL"] {} ["DOI"] https://uisrussia.msu.ru/db2007/ru/status_en.html#terms [] unknown yes ["DSA"] [] {} 2016-07-28 2019-05-07 +r3d100012102 NAKALA fra [] https://www.nakala.fr ["ISSN 2495-8972"] ["cogrid@huma-num.fr"] NAKALA allows research teams, who so request, to file their digital data (text files, sound, image, video) in a secure warehouse, with DOI, IIIF and which ensures both data availability and quotability time. NAKALA is a full Web application and a repository for humanities and social sciences. It's created and powered in France by Huma-Num, the french infrastructure for digital humanities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://www.huma-num.fr [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["arts and humanities", "data", "digital humanities", "humanities", "warehouse"] [{"institutionName": "HUMA-NUM", "institutionAdditionalName": ["La TGIR (Tr\u00e8s grande infrastructure de recherche) des humanit\u00e9s num\u00e9riques", "TGIR HUMA-NUM"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["contact@huma-num.fr"]}] [{"policyName": "Les services d\u2019acc\u00e8s aux donn\u00e9es", "policyURL": "https://www.huma-num.fr/services-et-outils/exposer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["unknown"] yes {"api": "https://documentation.huma-num.fr/content/14/141/en/how-to-use-nakala-.html", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://documentation.huma-num.fr/content/14/144/en/how-to-cite-data-stored-in-nakala.html [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2016-07-28 2021-01-07 +r3d100012103 NCCOR eng [{"additionalName": "National Collaborative on Childhood Obesity Research", "additionalNameLanguage": "eng"}] https://www.nccor.org/ [] ["https://www.nccor.org/contact/", "nccor@fhi360.org"] The National Collaborative on Childhood Obesity Research (NCCOR) brings together four of the nation's leading research funders — the Centers for Disease Control and Prevention (CDC), the National Institutes of Health (NIH), the Robert Wood Johnson Foundation (RWJF), and the U.S. Department of Agriculture (USDA) — to address the problem of childhood obesity in America. The Tools of the NCCOR are: Catalogue of Surveillance Systems, Measures Registry and Registry of Studies. eng ["institutional"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nccor.org/about/missions-goals/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CORD", "FLASHE study", "child obesity", "diet", "economics", "food pattern equivalent", "green health", "health care", "healthy food", "overweight", "physical activity", "school wellness", "surveys", "youth energy expenditure"] [{"institutionName": "Centers for Disease Control and Prevention", "institutionAdditionalName": ["CDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "JPB Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jpbfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Robert Wood Johnson Foundation", "institutionAdditionalName": ["RWJF"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rwjf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Membership guidelines", "policyURL": "https://nccor.org/about/membership-guidelines"}, {"policyName": "Social Media Policy", "policyURL": "https://nccor.org/social-media-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nccor.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://nccor.org/social-media-policy"}] restricted [] ["unknown"] {} ["none"] [] yes unknown [] [] {"syndication": "https://nccor.org/news/?feed=rss2", "syndicationType": "RSS"} 2016-07-28 2021-07-20 +r3d100012104 Signature Bank eng [{"additionalName": "Banque Signature", "additionalNameLanguage": "fra"}] http://www.iusmm.ca/research/signature-bank.html [] ["http://www.banquesignature.ca/contact/?lang=en", "nfrancois.iusmm@ssss.gouv.qc.ca", "signature.iusmm@ssss.gouv.qc.ca"] One of the world’s largest banks of biological, psychosocial and clinical data on people suffering from mental health problems. The Signature center systematically collects biological, psychosocial and clinical indicators from patients admitted to the psychiatric emergency and at four points throughout their journey in the hospital: upon arrival to the emergency room (state of crisis), at the end of their hospital stay, as well as at the beginning and the end of outpatient treatment. For all hospital clients who agree to participate, blood specimens are collected for the purpose of measuring metabolic, genetic, toxic and infectious biomarkers, while saliva samples are collected to measure sex hormones and hair samples are collected to measure stress hormones. Questionnaire has been selected to cover important dimensional aspects of mental illness such as Behaviour and Cognition (Psychosis, Depression, Anxiety, Impulsiveness, Aggression, Suicide, Addiction, Sleep),Socio-demographic Profile (Spiritual beliefs, Social functioning, Childhood experiences, Demographic, Family background) and Medical Data (Medication, Diagnosis, Long-term health, RAMQ data). On 2016, May there are more than 1150 participants and 400 for the longitudinal Follow-Up eng ["disciplinary"] {"size": "More than 1.400 participants and 520 for the longitudinal follow-up", "updatedp": "2018-04-23"} 2012-11-27 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11004 Differential Psychology, Clinical Psychology, Medical Psychology, Methodology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.iusmm.ca/research/signature-bank/managment-framework.html [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["behaviour and cognition", "biological signature", "developmental psychopathology", "environment biomarker", "human", "longitudinal study", "medical data", "mental health", "psychosocial data", "socio-demographic profile"] [{"institutionName": "Centre int\u00e9gr\u00e9 universitaire de sant\u00e9 et de services sociaux de l\u2019Est-de-l\u2019\u00cele-de-Montr\u00e9al", "institutionAdditionalName": ["CIUSSS de l\u2019Est-de-l\u2019\u00cele-de-Montr\u00e9al"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ciusss-estmtl.gouv.qc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://ciusss-estmtl.gouv.qc.ca/nous-joindre/"]}, {"institutionName": "Institut universitaire en sant\u00e9 mentale de Montr\u00e9al, Centre de recherche", "institutionAdditionalName": ["IUSMM"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.iusmm.ca/institut.html", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["http://www.iusmm.ca/coordonnees.html"]}] [{"policyName": "Access request procedure", "policyURL": "http://www.banquesignature.ca/demande-acces/procedure-de-demande-dacces/?lang=en"}, {"policyName": "MANAGEMENT FRAMEWORK", "policyURL": "http://www.iusmm.ca/documents/Management_framework.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\", \"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.iusmm.ca/documents/Management_framework.pdf"}] closed [] ["unknown"] {} ["none"] ["none"] unknown yes [] [] {} 2016-07-28 2019-01-15 +r3d100012108 mdw Repository eng [] https://repo.mdw.ac.at [] ["bodnar@mdw.ac.at", "repo@mdw.ac.at.", "staudinger@mdw.ac.at", "szepe@mdw.ac.at"] mdw Repository provides researchers with a robust infrastructure for research data management and ensures accessibility of research data during and after completion of research projects, thus, providing a quality boost to contemporary and future research. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}] https://repo.mdw.ac.at/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["arts", "film", "music", "performing arts", "theatre"] [{"institutionName": "University of Music and Performing Arts Vienna", "institutionAdditionalName": ["Universit\u00e4t f\u00fcr Musik und darstellende Kunst Wien", "mdw"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.mdw.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mdw.ac.at/230"]}] [{"policyName": "Accesssibility levels", "policyURL": "https://repo.mdw.ac.at/services/accessibility_levels.html"}, {"policyName": "Conditions of Data Use", "policyURL": "https://repo.mdw.ac.at/services/conditions_of_data_use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://rightsstatements.org/page/1.0/?language=en#rights-statements-for-in-copyright-objects"}, {"dataLicenseName": "other", "dataLicenseURL": "https://repo.mdw.ac.at/services/accessibility_levels.html"}] restricted [{"dataUploadLicenseName": "Depositors agreement", "dataUploadLicenseURL": "https://repo.mdw.ac.at/services/depositors_agreement.html"}] ["other"] yes {"api": "https://repo.mdw.ac.at/documentation/user/oai.html", "apiType": "OAI-PMH"} ["URN"] https://repo.mdw.ac.at/services/conditions_of_data_use.html ["AuthorClaim", "ORCID", "ResearcherID", "other"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2016-08-04 2019-01-29 +r3d100012109 Amsterdam Cohort Studies on HIV infection and AIDS eng [{"additionalName": "ACS", "additionalNameLanguage": "eng"}] https://www.cohortstudies.nl/ [] ["N.A.Kootstra@amc.uva.nl", "dloomans@ggd.amsterdam.nl"] >>>!!!<<< stated 26-02-2020: Amsterdam Cohort Studies on HIV infection and AIDS is no longer available online >>>!!!<<< The Amsterdam cohort study (ACS) on human immunodeficiency virus (HIV) infection and AIDS among homosexual men started in 1984 and was expanded to include drug users in 1985. Thus far, about 2100 homosexual men and 1630 (injecting) drug users have been included of whom approximately 700 homosexual men and 550 drug users are still in active follow-up. Every 3-6 months participants complete a standardized questionnaire to obtain medical, epidemiological and social scientific information and undergo a medical examination. In addition, they have blood drawn for virological and immunological tests and storage. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 2020-02-26 ["eng", "nld"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["AIDS", "HIV", "biomedicine", "drug users", "epidemiology", "homosexual men", "mortality", "social behaviour"] [{"institutionName": "DC-Clinics, HIV Focus Center", "institutionAdditionalName": ["DC Klinieken"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dcklinieken.nl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dcklinieken.nl/contact/contactformulier/"]}, {"institutionName": "GGD Amsterdam", "institutionAdditionalName": ["Public Health Service of Amsterdam"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ggd.amsterdam.nl/", "institutionIdentifier": ["ROR:042jn4x95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical Center Jan van Goyen", "institutionAdditionalName": ["Stichting Medisch Centrum Jan van Goyen"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.medischcentrumjanvangoyen.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Health, Welfare and Sport, National Institute for Public Health and the Environment, Center for Infectious Disease Control", "institutionAdditionalName": ["Ministerie van Volksgezondheid, Welzijn en Sport, Rijksinstituut voor Volksgezondheid en Milieu", "RIVM"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rivm.nl/en/about-rivm/organisation/centre-for-infectious-disease-control", "institutionIdentifier": ["ROR:01cesdt21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Netherlands HIV Monitoring Foundation", "institutionAdditionalName": ["Stichting HIV Monitoring"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hiv-monitoring.nl/english/", "institutionIdentifier": ["ROR:02w6k4f12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sanquin Blood Supply Foundation", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanquin.nl/", "institutionIdentifier": ["ROR:01fm2fv39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Amsterdam, Academic Medical Center", "institutionAdditionalName": ["AMC", "Academisch Medisch Centrum"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.amc.nl/web/Zorg.htm", "institutionIdentifier": ["ROR:03t4gr691"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Public Dataset description", "policyURL": "https://www.amsterdamcohortstudies.org/acsc/menu/publicdata/PublicDatasetDescription.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.amsterdamcohortstudies.org/acsc/menu/publicdata/PublicDatasetDescription.pdf"}] closed [] [] {} ["none"] https://www.amsterdamcohortstudies.org/acsc/menu/acknowledgement.asp [] yes yes [] [] {} Amsterdam Cohort Studies is covered by Clarivate Data Citation Index. 2016-08-09 2020-02-26 +r3d100012110 University of Auckland Data Repository eng [] https://auckland.figshare.com/ [] ["researchdata@auckland.ac.nz"] The FigShare service for University of Auckland, New Zealand was launched in January 2015 and allows researchers to store, share and publish research data. It helps the research data to be accessible by storing Metadata alongside datasets. Additionally, every uploaded item recieves a Digital Object identifier (DOI), which allows the data to be cited. If there are any ethical or copyright concerns about publishing a certain dataset, it is possible to publish the metadata associated with the dataset to help discoverability while sharing the data itself via a private channel through manual approval. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.eresearch.auckland.ac.nz/research-data/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological sciences", "family and household studies", "gender studies", "multidisciplinary", "sociology", "survey"] [{"institutionName": "University of Auckland", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.auckland.ac.nz/en.html", "institutionIdentifier": ["RRID:SCR_002615", "RRID:nlx_28115"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://figshare.com/services/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Research Data Management University of Auckland", "policyURL": "https://www.eresearch.auckland.ac.nz/research-data/"}, {"policyName": "Terms and conditions", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://figshare.com/terms"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Auckland Data Repository uses Altmetric metrics. 2016-08-10 2021-08-24 +r3d100012112 Cellular Phenotype database eng [] https://www.ebi.ac.uk/fg/sym ["OMICS_08187"] ["info@embl.de"] The Cellular Phenotype database stores data derived from high-throughput phenotypic studies and it is being developed as part of the Systems Microscopy Network of Excellence project. The aim of the Cellular Phenotype database is to provide easy access to phenotypic data and facilitate the integration of independent phenotypic studies. Through its interface, users can search for a gene of interest, or a collection of genes, and retrieve the loss-of-function phenotypes observed, in human cells, by suppressing the expression of the selected gene(s), through RNA interference (RNAi), across independent phenotypic studies. Similarly, users can search for a phenotype of interest and retrieve the RNAi reagents that have caused such phenotype and the associated target genes. Information about specific RNAi reagents can also be obtained when searching for a reagent ID. eng ["disciplinary"] {"size": "Total number of reagents: 93578", "updatedp": "2019-01-16"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebi.ac.uk/fg/sym/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNAi", "fruitfly", "gene", "homo sapiens", "reagent", "study"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/research/index.cfm?pg=contacts&origin=tools-contact"]}, {"institutionName": "European Molecular Biology Laboratory-European Bioinformatics Institute", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@embl.de"]}, {"institutionName": "Systems Microscopy Network of Excellence", "institutionAdditionalName": ["NoE"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.systemsmicroscopy.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gabriela.imreh@ki.se"]}] [{"policyName": "About us Terms of Use for EMBL-EBI Services", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] restricted [{"dataUploadLicenseName": "Submitting data to the Cellular Phenotype database", "dataUploadLicenseURL": "https://www.ebi.ac.uk/fg/sym/submit/"}] [] {"api": "ftp://ftp.ebi.ac.uk/pub/databases/microarray/data/cellph/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} Cellular Phenotype database is covered by Thomson Reuters Data Citation Index. 2016-08-12 2021-08-25 +r3d100012113 Climate Hazards Center Data Archive eng [{"additionalName": "CHC Data Archive", "additionalNameLanguage": "eng"}] https://chc.ucsb.edu/data [] ["chris@geog.ucsb.edu", "pete@geog.ucsb.edu"] Using a combination of remote sensing data and ground observations as inputs, CHC scientists have developed rainfall estimation techniques and other resources to support drought monitoring and predict crop performance in parts of the world vulnerable to crop failure. Policymakers within governments and non-governmental organizations rely on CHC decision-support products to make critical resource allocation decisions. The CHC's scientific focus is "geospatial hydroclimatology," with an emphasis on the early detection and forecasting of hydroclimatic hazards related to food-security droughts and floods. Basic research seeks an improved understanding of the climatic processes that govern drought and flood hazards in FEWS NET countries (https://fews.net/). The CHC develops better techniques, algorithms, and modeling applications in order to use remote sensing and other geospatial data for hazards early warning. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://chc.ucsb.edu/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["CHIRP", "CHIRPS", "CHPclim", "CenTrends", "FEWS.NET", "crop failure", "developing world", "droughts", "famine", "flood", "food security", "forecasting", "hydroclimatology", "rainfall", "statistical climatology"] [{"institutionName": "University of California Santa Barbara, Climate Hazards Center", "institutionAdditionalName": ["CHC", "UCSB", "formerly: CHG", "formerly: University of California Santa Barbara, Climate Hazards Group"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.chc.ucsb.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.chc.ucsb.edu/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0"}] closed [] [] yes {"api": "ftp://ftp.chc.ucsb.edu/pub/org/chc", "apiType": "FTP"} ["DOI"] https://wiki.chc.ucsb.edu/CHIRPS_FAQ [] yes unknown [] [] {} Climate Hazards Center Data Archive is covered by Thomson Reuters Data Citation Index. 2016-08-12 2021-06-08 +r3d100012114 Chapman University Digital Commons Datasets eng [] https://digitalcommons.chapman.edu/data.html ["ISSN 2572-1496"] ["laughtin@chapman.edu"] Chapman University Digital Commons is an open access digital repository and publication platform designed to collect, store, index, and provide access to the scholarly and creative output of Chapman University faculty, students, staff, and affiliates. In it are faculty research papers and books, data sets, outstanding student work, audiovisual materials, images, special collections, and more, all created by members of or owned by Chapman University. The datasets are listed in a separate collection. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://digitalcommons.chapman.edu/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Chapman University, Leathterby Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www1.chapman.edu/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright", "policyURL": "https://digitalcommons.chapman.edu/faq.html#faq-14"}, {"policyName": "Rights and Terms of Use", "policyURL": "https://digitalcommons.chapman.edu/termsofuse.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://chapman.libguides.com/copyright"}] restricted [{"dataUploadLicenseName": "Submission policy and guidelines", "dataUploadLicenseURL": "https://digitalcommons.chapman.edu/submissionpolicies.pdf"}] ["DigitalCommons"] {"api": "https://digitalcommons.chapman.edu/do/oai/", "apiType": "OAI-PMH"} ["none"] ["none"] yes unknown [] [] {"syndication": "https://digitalcommons.chapman.edu/recent.rss", "syndicationType": "RSS"} Chapman University Digital Commons is covered by Thomson Reuters Data Citation Index. 2016-08-12 2019-01-16 +r3d100012115 meereisportal.de deu [{"additionalName": "seaiceportel.de", "additionalNameLanguage": "eng"}] https://www.meereisportal.de/en/ [] ["info@meereisportal.de"] Satellite observations of sea ice concentration in the Arctic and the Antarctic are the backbone of www.meereisportal.de since its launch in April 2013. Since then, daily maps and data sets are published on the information and data portal. Time series and trends are updated daily, representing the status of the sea ice cover on hemispheres. meereisportal.de/seaiceportal.de was laid out as an open portal and shall serve scientific groups performing research on sea ice as a platform for communicating the results of their research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013-04 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.meereisportal.de/en/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Cryo Sat-2", "Polarstern", "SIDARUS", "SMOS", "buoy data", "cryosphere", "freeze", "ice tethered platforms", "sea ice concentration", "sea ice drift", "sea ice observation", "sea ice thickness"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz-Verbund Regionale Klima\u00e4nderungen", "institutionAdditionalName": ["Helmholtz Climate Initiative REKLIM", "REKLIM"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.reklim.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.reklim.de/en/services/contact/"]}, {"institutionName": "University of Bremen, Institute of Environmental Physics", "institutionAdditionalName": ["Universit\u00e4t Bremen, Institut f\u00fcr Umweltphysik"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iup.uni-bremen.de/deu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Urheberrecht", "policyURL": "https://www.meereisportal.de/de/metanavi/impressum/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.awi.de/en/about-us/service/media-centre.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.meereisportal.de/metanavi/impressum/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.awi.de/en/about-us/service/media-centre.html"}] closed [] [] yes {"api": "ftp://sidads.colorado.edu/pub/DATASETS/NOAA/G01359/", "apiType": "FTP"} ["DOI"] https://data.seaiceportal.de/gallery/index_new.php?lang=en_US [] unknown yes [] [] {} Access to the AWI Moored ULS Data, Weddell Sea (1990-1998), Version 1 is unrestricted, but users are encouraged to register for the data. Registered users will receive e-mail notification about any product changes: https://nsidc.org/data-set/g01359/form 2016-08-15 2020-08-18 +r3d100012116 Comparative Welfare Entitlements Dataset eng [{"additionalName": "CWED", "additionalNameLanguage": "eng"}] http://cwed2.org/ [] ["info@cwed2.org"] The Comparative Welfare Entitlements Dataset (CWED) contains information about the structure and generosity of social insurance benefits in 33 countries around the world. The data contained here are an updated and extended version of CWED 1, which has been available since 2004. This web site allows you to download customized portions of the CWED 2 data, browse the Working Paper Series or access documentary material. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://cwed2.org/about.php [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["income replacement rates", "replacement rate", "social insurance", "social security program", "standard and minimum pensions", "unemployment and sickness insurance", "welfare policies", "work and welfare"] [{"institutionName": "Ernst Moritz Arndt Universit\u00e4t Greifswald, Institut f\u00fcr Politik- und Kommunikationswissenschaft", "institutionAdditionalName": ["IPK"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ipk.uni-greifswald.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["djahn@uni-greifswald.de"]}, {"institutionName": "University of Connecticut", "institutionAdditionalName": ["UConn"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://polisci.uconn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lyle.scruggs@uconn.edu"]}] [{"policyName": "General policies", "policyURL": "http://cwed2.org/wpaper.php#3"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://cwed2.org/wpaper.php#3"}] restricted [{"dataUploadLicenseName": "How to submit", "dataUploadLicenseURL": "http://cwed2.org/wpaper.php#5"}] [] yes {} ["none"] http://cwed2.org/wpaper.php#5 [] yes unknown [] [] {} Comparative Welfare Entitlements Dataset (CWED) is covered by Thomson Reuters Data Citation Index. 2016-08-16 2019-01-16 +r3d100012117 BrainMaps.org eng [] http://www.brainmaps.org/index.php ["RRID:SCR_006878", "RRID:nif-0000-00093"] ["http://www.brainmaps.org/index.php?p=feedback", "jsjohnson@ucdavis.edu"] BrainMaps.org, launched in May 2005, is an interactive multiresolution next-generation brain atlas that is based on over 20 million megapixels of sub-micron resolution, annotated, scanned images of serial sections of both primate and non-primate brains and that is integrated with a high-speed database for querying and retrieving data about brain structure and function over the internet. Currently featured are complete brain atlas datasets for various species, including Macaca mulatta, Chlorocebus aethiops, Felis catus, Mus musculus, Rattus norvegicus, and Tyto alba. eng ["disciplinary"] {"size": "13.547 brain images", "updatedp": "2021-09-21"} 2005-05 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ucdavis.edu/news/brain-maps-online [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["histochemical data", "immunocytochemical data", "tracer connectivitiy data"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Davis", "institutionAdditionalName": ["UC Davis"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucdavis.edu/", "institutionIdentifier": ["ROR:05rrcem69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.brainmaps.org/index.php?p=termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.brainmaps.org/index.php?p=termsofuse"}] restricted [] ["MySQL"] {"api": "http://brainmaps.org/index.php?p=brain-maps-api", "apiType": "other"} [] http://www.brainmaps.org/index.php?p=citing-brainmaps [] yes unknown [] [] {} 2016-08-16 2021-09-21 +r3d100012118 eBird eng [] https://ebird.org/home [] ["ebird@cornell.edu"] eBird is among the world’s largest biodiversity-related science projects, with more than 1 billion records, more than 100 million bird sightings contributed annually by eBirders around the world, and an average participation growth rate of approximately 20% year over year. A collaborative enterprise with hundreds of partner organizations, thousands of regional experts, and hundreds of thousands of users, eBird is managed by the Cornell Lab of Ornithology. eBird data document bird distribution, abundance, habitat use, and trends through checklist data collected within a simple, scientific framework. Birders enter when, where, and how they went birding, and then fill out a checklist of all the birds seen and heard during the outing. Data can be accessed from the Science tab on the website. eng ["disciplinary"] {"size": "more than 1 billion records and more than 100 million bird sightings contributed each year", "updatedp": "2021-06-11"} 2002 ["eng", "eng", "fra", "por", "spa", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ebird.org/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bird count", "bird sightings", "birds"] [{"institutionName": "Audubon", "institutionAdditionalName": ["National Audubon Society"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.audubon.org/", "institutionIdentifier": ["ROR:039bbm920"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.audubon.org/contact-us"]}, {"institutionName": "DataONE", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dataone.org/", "institutionIdentifier": ["ROR:00hr5y405", "RRID:SCR_003999", "RRID:nlx_158410"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Cornell Lab of Ornithology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.birds.cornell.edu/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bls42@cornell.edu", "https://www.birds.cornell.edu/home/contact-us"]}] [{"policyName": "Privacy Policy", "policyURL": "https://www.birds.cornell.edu/home/privacy"}, {"policyName": "Terms of Use", "policyURL": "https://www.birds.cornell.edu/home/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://confluence.cornell.edu/display/CLOISAPI/eBird+API+Terms+of+Use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://support.ebird.org/en/support/solutions/articles/48001078113-how-can-your-ebird-data-be-used-"}] restricted [{"dataUploadLicenseName": "eBird Media licensing agreement", "dataUploadLicenseURL": "https://support.ebird.org/en/support/solutions/articles/48000960529-ebird-media-upload-faq"}] [] yes {"api": "https://documenter.getpostman.com/view/664302/S1ENwy59?version=latest", "apiType": "other"} ["none"] https://ebird.org/about/citation/ [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} eBird is covered by Thomson Reuters Data Citation Index. eBird data are part of the Avian Knowledge Network (AKN), which integrates observational data on bird populations across the western hemisphere. 2016-08-16 2021-06-11 +r3d100012119 Trinity River Restoration Program Online Data Portal eng [{"additionalName": "TRRP ODP", "additionalNameLanguage": "eng"}, {"additionalName": "TRRP Online Data Portal", "additionalNameLanguage": "eng"}] http://odp.trrp.net [] ["ebpeterson@usbr.gov", "http://www.trrp.net/contact-us/", "odp@trrp.net"] The Online Data Portal (ODP) is an evolving project to support collaborative river restoration projects, such as the TRRP. The goal is to provide a centralized clearing house of documents and data for program partners, stakeholders, and the public. The functionality and data holdings will continue to be expanded over the next few years. The ability to store Data Packages is new as of Fall 2011 and holdings should expand substantially in the months afterward. A project to scan many older documents also began in December 2011. Simple time-series datasets have long been stored in the ODP, but holdings of these data are likely to increase as TRRP implements an upcoming Data Management and Utility Plan. Major upgrades to the Interactive Map are expected to start in winter and spring of 2012. The long term vision is that many data resources will be accessible both by text searches and via the Interactive Map. The ODP will be available for use by other river restoration programs. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41006 Geotechnics, Hydraulic Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.trrp.net/program-structure/background/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Trinity River Task Force", "fish", "flows", "gravel restoration", "river restoration projects", "wildlife"] [{"institutionName": "ESSA Technologies Ltd", "institutionAdditionalName": ["ESSA"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://essa.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://essa.com/contact-us/"]}, {"institutionName": "North Arrow Research Ltd.", "institutionAdditionalName": ["NAR"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.northarrowresearch.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.northarrowresearch.com/#contact-us", "info@northarrowresearch.com"]}, {"institutionName": "Trinity River Restoration Program", "institutionAdditionalName": ["TRRP"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.trrp.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.trrp.net/contact-us/"]}, {"institutionName": "Utah State University, College of Engineering, Utah Water Research Laboratory", "institutionAdditionalName": ["USU, UWRL"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://uwrl.usu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://uwrl.usu.edu/contact/index"]}] [{"policyName": "All data are available for public use and provided following the intent of the U.S. Department of Interior disclaimer", "policyURL": "https://www.doi.gov/disclaimer.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.doi.gov/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.doi.gov/disclaimer"}] restricted [] [] yes {} [] [] unknown unknown [] [] {} TRRP is a multi-agency program with eight Partners forming as the Trinity Management Council (TMC), plus numerous other collaborators. The main office is located in Weaverville, CA (contact) although various Partner offices include staff working in the program. 2016-08-16 2019-05-14 +r3d100012120 Allen Brain Atlas eng [{"additionalName": "Data Portal", "additionalNameLanguage": "eng"}] http://www.brain-map.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.3kfn3j", "RRID:SCR_005984", "RRID:nlx_151358"] ["http://allins.convio.net/site/PageServer?pagename=send_us_a_message"] The Allen Brain Atlas provides a unique online public resource integrating extensive gene expression data, connectivity data and neuroanatomical information with powerful search and viewing tools for the adult and developing brain in mouse, human and non-human primate eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-03 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.brain-map.org/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["RNA sequencing data", "cell", "electrophysiology", "genomics", "human brain", "morphology", "mouse brain", "neurology", "neuroscience", "primate brain"] [{"institutionName": "Allen Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.alleninstitute.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://allins.convio.net/site/PageServer?pagename=send_us_a_message"]}, {"institutionName": "Allen Institute for Cell Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://alleninstitute.org/what-we-do/cell-science/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://allins.convio.net/site/PageServer?pagename=send_message_ai"]}, {"institutionName": "Allen Institute for Brain Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://alleninstitute.org/what-we-do/brain-science/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://allins.convio.net/site/PageServer?pagename=send_message_ai"]}, {"institutionName": "Paul G. Allen Frontiers Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://alleninstitute.org/what-we-do/frontiers-group/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://alleninstitute.org/what-we-do/frontiers-group/about/programs-funding/"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.alleninstitute.org/legal/terms-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.alleninstitute.org/legal/terms-use/"}] closed [] ["other"] yes {"api": "http://help.brain-map.org/display/api/RESTful+Model+Access+(RMA)#RESTfulModelAccess(RMA)-RESTfulResources", "apiType": "REST"} ["none"] https://www.alleninstitute.org/legal/citation-policy/ [] yes unknown [] [] {} 2016-08-17 2021-05-25 +r3d100012121 Square Kilometre Array eng [{"additionalName": "SKA Telescope", "additionalNameLanguage": "eng"}] https://www.skatelescope.org/ska-site-raw-data/ [] ["enquiries@skatelescope.org", "https://www.skatelescope.org/contact/"] The Square Kilometre Array (SKA) is a radio telescope with around one million square metres of collecting area, designed to study the Universe with unprecedented speed and sensitivity. The SKA is not a single telescope, but a collection of various types of antennas, called an array, to be spread over long distances. The SKA will be used to answer fundamental questions of science and about the laws of nature, such as: how did the Universe, and the stars and galaxies contained in it, form and evolve? Was Einstein’s theory of relativity correct? What is the nature of ‘dark matter’ and ‘dark energy’? What is the origin of cosmic magnetism? Is there life somewhere else in the Universe? eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.skatelescope.org/project/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Australia", "HI galaxy science", "Shared Sky", "Southern Africa", "cosmology", "galaxy", "heliospheric physics", "high energy cosmic particles", "ionospheric physics", "pulsars", "radio astronomy", "solar physics"] [{"institutionName": "Australian Government, Department of Industry and Science, Australian SKA Office", "institutionAdditionalName": ["SKA Australia"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ska.gov.au/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ska.gov.au/Pages/Contact.aspx"]}, {"institutionName": "Jodrell Bank Observatory, Square Kilometre Array Headquater", "institutionAdditionalName": ["SKA HQ"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.skatelescope.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.skatelescope.org/contact/"]}, {"institutionName": "National Research Foundation, SKA South Africa", "institutionAdditionalName": ["SKA Africa", "SKA SA", "SKA South Africa"], "institutionCountry": "ZAF", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ska.ac.za/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ska.ac.za/contact/"]}, {"institutionName": "SKA Organisation", "institutionAdditionalName": ["SKAO"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.skatelescope.org/participating-countries/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.skatelescope.org/contact/"]}] [{"policyName": "SKA Intellectual Property", "policyURL": "https://www.skatelescope.org/wp-content/uploads/2011/03/SKA-GOV.POL-SKO-POL-001_IPpolicyRevX.pdf"}, {"policyName": "Terms of use for multimedia data", "policyURL": "https://www.skatelescope.org/copyright/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.skatelescope.org/copyright/"}] closed [] [] {} ["none"] [] unknown unknown [] [] {"syndication": "http://feeds.feedburner.com/SkaTelescope", "syndicationType": "RSS"} The description and theory of the approach used to calibrate the data for the site selection process is available: https://www.skatelescope.org/wp-content/uploads/2012/06/78_SKAmon.main_v0.5.pdf 2016-08-18 2021-07-20 +r3d100012122 ExAC Browser eng [{"additionalName": "Exome Aggregation Consortium Browser", "additionalNameLanguage": "eng"}] http://exac.broadinstitute.org/ ["OMICS_14216", "RRID:SCR_004068", "RRID:nlx_158505", "biodbcore-001219"] ["exomeconsortium@gmail.com", "http://exac.broadinstitute.org/contact"] The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a wide variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data set provided on this website spans 60,706 unrelated individuals sequenced as part of various disease-specific and population genetic studies. eng ["disciplinary"] {"size": "60.706 unrelated individuals", "updatedp": "2018-01-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://exac.broadinstitute.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Copy Number Variation (CNV)", "GATK Variant Quality Score Recalibration (VQSR)", "GRCh37/hg19", "cancer", "exome", "genotype", "high-throughput sequencing (HTS)", "phenotype", "tumor"] [{"institutionName": "Broad Institute", "institutionAdditionalName": ["Eli and Edythe L. Broad Institute"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.broadinstitute.org/", "institutionIdentifier": ["RRID:SCR_007073", "RRID:nif-0000-31438"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.broadinstitute.org/contact"]}, {"institutionName": "Exome Aggregation Consortium", "institutionAdditionalName": ["ExAC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://exac.broadinstitute.org/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIH NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niddk.nih.gov/about-niddk/contact-us"]}, {"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIH NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}] [{"policyName": "Fort Lauerdale Agreement - Sharing Data from Large-scale \nBiological Research Projects", "policyURL": "https://www.genome.gov/pages/research/wellcomereport0303.pdf"}, {"policyName": "GATK Best Practices", "policyURL": "https://software.broadinstitute.org/gatk/best-practices/"}, {"policyName": "Terms and Data Information", "policyURL": "http://exac.broadinstitute.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}] closed [] [] yes {"api": "ftp://ftp.broadinstitute.org/pub/ExAC_release", "apiType": "FTP"} ["none"] http://exac.broadinstitute.org/terms [] unknown unknown [] [] {} 2016-08-18 2021-09-08 +r3d100012123 Monash Bridges eng [{"additionalName": "monash.figshare (formerly)", "additionalNameLanguage": "eng"}] https://bridges.monash.edu/ [] ["https://www.monash.edu/library/researchers/researchdata/bridges/contact-us", "researchdata@monash.edu"] Bridges is Monash University's repository for research data, collections, and research activity outputs. It is also the home of the University's online archive of PhD and Masters by Research theses. eng ["institutional"] {"size": "2.318 datasets", "updatedp": "2020-07-31"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.monash.edu/library/researchers/researchdata/bridges/monash.figshare [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["research data", "research outputs"] [{"institutionName": "Monash University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.monash.edu/", "institutionIdentifier": ["ROR:02bfwt286", "RRID:SCR_001088", "RRID:nlx_77388"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["researchdata@monash.edu"]}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://figshare.com/services/institutions", "institutionIdentifier": ["ROR:041mxqs23", "RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "How to Use", "policyURL": "https://www.monash.edu/library/researchers/researchdata/bridges/how-to-use"}, {"policyName": "Monash University Research Data Management Policy", "policyURL": "https://www.monash.edu/__data/assets/pdf_file/0011/797339/Research-Data-Management-Policy.pdf"}, {"policyName": "Research data management at Monash", "policyURL": "https://www.monash.edu/library/researchers/researchdata/about"}, {"policyName": "Terms and conditions", "policyURL": "https://www.monash.edu/library/researchers/researchdata/bridges/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org.au/learn/licences/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://figshare.com/terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://knowledge.figshare.com/articles/item/how-to-share-cite-or-embed-your-data ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://bridges.monash.edu/rss/portal/monash", "syndicationType": "RSS"} Monash University Data Repository uses Altmetric metrics. 2016-08-18 2020-07-31 +r3d100012124 ORDA - The University of Sheffield Research Data Catalogue and Repository eng [{"additionalName": "Discover research from The University of Sheffield", "additionalNameLanguage": "eng"}] https://orda.shef.ac.uk/ [] ["rdm@sheffield.ac.uk"] The figshare service for the University of Sheffield allows researchers to store, share and publish research data. It helps the research data to be accessible by storing Metadata alongside datasets. Additionally, every uploaded item receives a Digital Object identifier (DOI), which allows the data to be citable and sustainable. If there are any ethical or copyright concerns about publishing a certain dataset, it is possible to publish the metadata associated with the dataset to help discoverability while sharing the data itself via a private channel through manual approval. eng ["institutional"] {"size": "", "updatedp": ""} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.sheffield.ac.uk/library/rdm/orda [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Sheffield", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sheffield.ac.uk/", "institutionIdentifier": ["RRID:SCR_008056", "RRID:nlx_151620"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Sheffield, University Library", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sheffield.ac.uk/library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Good Research & Innovation Practices (GRIP) Policy", "policyURL": "https://www.sheffield.ac.uk/polopoly_fs/1.356709!/file/GRIPPolicySenateapproved.pdf"}, {"policyName": "Research Data Management Policy", "policyURL": "https://www.sheffield.ac.uk/polopoly_fs/1.553350!/file/GRIPPolicyextractRDM.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://figshare.com/terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/"}] restricted [{"dataUploadLicenseName": "Register, upload and publish datasets using ORDA", "dataUploadLicenseURL": "https://www.sheffield.ac.uk/library/rdm/orda1"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://knowledge.figshare.com/articles/item/how-to-share-cite-or-embed-my-data ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ORDA (Online Research Data) is the hub for managing and sharing University of Sheffield research data, powered by figshare. ORDA - The University of Sheffield Research Data Catalogue and Repository uses Altmetric metrics. 2016-08-19 2019-05-13 +r3d100012125 Water Isotope System for Data Analysis, Visualization and Electronic Retrieval eng [{"additionalName": "WISER", "additionalNameLanguage": "eng"}] http://www-naweb.iaea.org/napc/ih/IHS_resources_isohis.html [] ["ihs@iaea.org"] WISER is a self-service platform for data of the Global Networks of Isotopes in Precipitation (GNIP) and Rivers (GNIR), hosted within the IAEA's repository for technical resources (NUCLEUS). GNIP in WISER currently contains over 130,000 records, and stable isotopes are current to the end of 2013, and will be updated as verified data comes in. Parts of the GNIR water isotope data is online as well (synoptic/time series), although we are still in process of verifying and completing GNIR data uploads and for other isotopic parameters over the next year. Check back occasionally for GNIR updates. Tritium data after 2009 is in the process of being updated in the next year. eng ["disciplinary"] {"size": "over 100 IAEA scientific, technical and regulatory information resources", "updatedp": "2019-01-18"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www-naweb.iaea.org/napc/ih/IHS_resources_isohis.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Tritium", "isotopes", "precipitation", "rain", "rivers", "snow"] [{"institutionName": "Global Networks of Isotopes in Precipitation", "institutionAdditionalName": ["GNIP"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www-naweb.iaea.org/napc/ih/IHS_resources_gnip.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Global Networks of Isotopes in Rivers", "institutionAdditionalName": ["GNIR"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www-naweb.iaea.org/napc/ih/IHS_resources_gnir.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Atomic Energy Agency", "institutionAdditionalName": ["IAEA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iaea.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NUCLEUS", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://nucleus.iaea.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nucleus.iaea.org/pages/others/contact-us.aspx"]}] [{"policyName": "Terms of Use", "policyURL": "https://nucleus.iaea.org/Pages/Others/Terms-Of-Use.aspx"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nucleus.iaea.org/Pages/Others/Terms-Of-Use.aspx"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} WISER is covered by Thomson Reuters Data Citation Index. 2016-08-19 2019-01-18 +r3d100012129 Pain Genes Database eng [{"additionalName": "Pain Genes DB", "additionalNameLanguage": "eng"}, {"additionalName": "PainGenesdb", "additionalNameLanguage": "eng"}] http://www.jbldesign.com/jmogil/enter.html ["RRID:SCR_004771", "RRID:nlx_77039"] ["jeffrey.mogil@mcgill.ca"] The Pain Genes Database is an interactive web-based data browser of pain-related transgenic knockout studies. It is designed to allow easy access to and analysis of the published pain-related phenotypes of mutant mice (over 200 different mutants at the date of submission). The database features two levels of exploration, one allowing the identification of genes by name, acronym, genomic position or "summary" phenotype, and the other allowing in-depth browsing, paper-by-paper, of specific phenotypes and test parameters. Hosted by the Department of Psychology and Centre for Research on Pain at McGill University. eng ["disciplinary"] {"size": "430 genes", "updatedp": "2016-08-31"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://pubmed.ncbi.nlm.nih.gov/17574758/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["analgesia", "bioinformatic", "genomics", "hypersensitivity", "mouse", "nociception", "pain processing"] [{"institutionName": "Louise and Alan Edwards Foundation", "institutionAdditionalName": ["La Fondation Louise Et Alan Edwards"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://opengovca.com/corporation/3680274", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["l.e.edwardsfoundation@bellnet.ca"]}, {"institutionName": "McGill University, The Alan Edwards Centre for Research on Pain, Pain Genetics Lab", "institutionAdditionalName": ["AECRP", "Pain Genetics Lab", "Universit\u00e9 McGill, Le Centre Alan-Edwards de Recherche sur la Douleur"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://painresearchcenter.mcgill.ca/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://painresearchcenter.mcgill.ca/contacts.php", "jeffrey.mogil@mcgill.ca"]}] [{"policyName": "General Policies and Information", "policyURL": "https://www.mcgill.ca/study/2020-2021/university_regulations_and_resources/undergraduate/gi_gen_policies_info"}, {"policyName": "University Policies and Regulations", "policyURL": "https://www.mcgill.ca/secretariat/policies-and-regulations"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mcgill.ca/study/2018-2019/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.mcgill.ca/study/2020-2021/university_regulations_and_resources/undergraduate/gi_policy_concerning_access_records"}] closed [] ["unknown"] {} ["none"] http://www.jbldesign.com/jmogil/enter.html ["none"] no yes [] [] {} 2016-08-22 2021-01-12 +r3d100012131 Northern Ontario Plant Database eng [{"additionalName": "NOPD", "additionalNameLanguage": "eng"}] http://www.northernontarioflora.ca/ [] ["herbaria@NRCan.gc.ca", "http://www.northernontarioflora.ca/contact.cfm"] The Northern Ontario Plant Database (NOPD) is a website that provides free public access to records of herbarium specimens housed in northern Ontario educational and government institutions. A herbarium is an archival collection of plants that have been pressed, dried, mounted, and labelled. It also provides up-to-date and accurate information on the flora of northern Ontario. eng ["disciplinary"] {"size": "over 55.000 records", "updatedp": "2016-09-05"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.northernontarioflora.ca/history.cfm [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Ontario", "flora", "habitat", "herbarium", "species"] [{"institutionName": "Great Lakes Forestry Centre", "institutionAdditionalName": ["CFGL", "Centre de foresterie des Grands Lacs", "GLFC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/science-data/research-centres-labs/forestry-research-centres/great-lakes-forestry-centre/13459", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["herbaria@NRCan.gc.ca"]}] [{"policyName": "Information currently on the website", "policyURL": "http://www.northernontarioflora.ca/whatinfo.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.northernontarioflora.ca/"}] restricted [] ["other"] {} ["none"] http://www.northernontarioflora.ca/websiteinformation.cfm ["none"] unknown yes [] [] {} 2016-08-22 2021-01-12 +r3d100012132 Ontario Reptile and Amphibian Atlas eng [] https://ontarionature.org/programs/citizen-science/reptile-amphibian-atlas/ [] ["https://ontarionature.org/about/contact/"] Reptiles and amphibians are collectively known as herpetofauna and are a unique part of Ontario’s biodiversity. An earlier atlas, called the Ontario Herpetofaunal Summary Atlas, provided extensive information about where many of the province’s reptiles and amphibians occurred. The Atlas is transitioning into a new era, with Ontario Nature wrapping-up the data collection phase of this project as of December 1, 2019. Now that we have discontinued our app and online form, we encourage you to continue submitting any future observations through the ‘Herps of Ontario’ project (https://www.inaturalist.org/projects/herps-of-ontario) on iNaturalist or directly to the Natural Heritage Information Centre (nhicrequests@ontario.ca) for species at risk. To learn more about the transition, read our blog (https://ontarionature.org/ontario-reptile-and-amphibian-atlas-changes/) eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ontarionature.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["amphibian", "biodiversity", "biogeography", "frog", "herpetofauna", "lizard", "nature study", "reptile", "salamander", "snake", "toads", "turtle"] [{"institutionName": "Eastern Ontario Model Forest", "institutionAdditionalName": ["EOMF"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eomf.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eomf.on.ca/contact-us"]}, {"institutionName": "Environment Canada, Habitat Stewardship Program", "institutionAdditionalName": ["HSP", "PIH", "Programme d'intendance de l'habitat"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/environment-climate-change/services/environmental-funding/programs.html#toc7", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ec.enviroinfo.ec@canada.ca."]}, {"institutionName": "Natural Heritage Information Centre", "institutionAdditionalName": ["Centre d'information sur le patrimoine naturel", "NHIC"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/natural-heritage-information-centre", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NHICrequests@ontario.ca"]}, {"institutionName": "Ontario Nature", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ontarionature.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ontarionature.org/about/contact/"]}] [{"policyName": "Privacy and Security Policy", "policyURL": "https://ontarionature.org/privacy-policy/"}, {"policyName": "Provincial Policy Statement", "policyURL": "https://www.ontario.ca/page/provincial-policy-statement-2020"}, {"policyName": "Survey Guidelines Policies and Procedures", "policyURL": "https://ontarionature.org/programs/citizen-science/reptile-amphibian-atlas/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ontarionature.org/programs/citizen-science/reptile-amphibian-atlas/policies/"}] restricted [{"dataUploadLicenseName": "Policies and Procedures", "dataUploadLicenseURL": "https://ontarionature.org/programs/citizen-science/reptile-amphibian-atlas/policies/"}] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2016-08-22 2021-02-16 +r3d100012133 Fungal Mitochondrial Genome Project eng [{"additionalName": "FMGP", "additionalNameLanguage": "eng"}] https://megasun.bch.umontreal.ca/People/lang/FMGP/FMGP.html [] [] The goals of FMGP are to: (i) sequence complete mitochondrial genomes from all major fungal lineages, (ii) infer a robust fungal phylogeny, (iii) define the origin of the fungi, their protistan ancestors, and their specific phylogenetic link to the animals, (iv) investigate mitochondrial gene expression, introns, RNAse P RNA structures, mobile elements. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://megasun.bch.umontreal.ca/People/lang/FMGP/FMGP.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["fungus", "genetics"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada", "MRC", "Medical Research Council of Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ROR:01gavpb45"]}, {"institutionName": "Universit\u00e9 de Montr\u00e9al", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.umontreal.ca/en/", "institutionIdentifier": ["ROR:0161xgx34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gertraud.burger@umontreal.ca"]}] [{"policyName": "Terms and conditions", "policyURL": "https://cihr-irsc.gc.ca/e/14202.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://megasun.bch.umontreal.ca/"}] closed [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} Is part of Evolutionary & Integrative Genomics at the Université de Montréal https://megasun.bch.umontreal.ca/ 2016-08-22 2021-01-13 +r3d100012135 The Lafora Progressive Myoclonus Epilepsy Mutation and Polymorphism Database eng [{"additionalName": "The Lafora Database", "additionalNameLanguage": "eng"}] http://projects.tcag.ca/lafora ["OMICS_06020"] ["jmacdonald@sickkids.ca"] A curated database of mutations and polymorphisms associated with Lafora Progressive Myoclonus Epilepsy. The Lafora progressive myoclonus epilepsy mutation and polymorphism database is a collection of hand curated mutation and polymorphism data for the EPM2A and EPM2B (NHLRC1) from publicly available literature: databases and unpublished data. The database is continuously updated with information from in-house experimental data as well as data from published research studies. eng ["disciplinary"] {"size": "190 mutation entries", "updatedp": "2020-01-13"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.oxfordjournals.org/our_journals/nar/database/summary/753 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Progressive Myoclonus Epilepsy - PME", "disease", "genetics", "heterozygous", "homozygous", "human genes", "nucleotide", "polymorphism"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": ["G\u00e9nome Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/en/", "institutionIdentifier": ["ROR:029s29983"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about/contact-us"]}, {"institutionName": "Howard Hughes Medical Institute", "institutionAdditionalName": ["HHMI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhmi.org/", "institutionIdentifier": ["ROR:006w34k90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhmi.org/contact-us"]}, {"institutionName": "The HSC Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hschealth.org/foundation", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://hschealth.org/foundation/contact"]}, {"institutionName": "The Hospital for Sick Children, The Centre for Applied Genomics", "institutionAdditionalName": ["HSC, TCAG", "SickKids, TCAG"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.tcag.ca/index.html", "institutionIdentifier": ["RRID:SCR_001840", "RRID:nif-0000-12519"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tcag.ca/contact/index.html"]}] [{"policyName": "SickKids terms of use", "policyURL": "https://www.sickkids.ca/en/about/terms-of-use/"}, {"policyName": "TCAG Facilities Terms and Conditions", "policyURL": "http://tcag.ca/facilities/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.sickkids.ca/en/about/terms-of-use/"}] open [{"dataUploadLicenseName": "TCAG Facilities Terms and Conditions", "dataUploadLicenseURL": "http://tcag.ca/facilities/terms.html"}] ["other"] {} ["none"] [] yes unknown [] [] {} 2016-08-22 2021-01-13 +r3d100012136 The Chromosome 7 Annotation Project eng [] http://www.chr7.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.rkq0vj", "OMICS_17579", "RRID:SCR_007134", "RRID:nif-0000-03550"] ["jmacdonald@sickkids.ca"] The objective of this project is to generate the most comprehensive description of human chromosome 7 to facilitate biological discovery, disease gene research and medical genetic applications. In our vision, the DNA sequence of chromosome 7 should be made available in a user-friendly manner having every biological and medically relevant feature annotated along its length. We have established this website and database as one step towards this goal. In addition to being a primary data source we foresee this site serving as a "weighing station" for testing community ideas and information to produce highly curated data to be submitted to other databases such as NCBI, Ensembl, and UCSC. Therefore, any useful data submitted to us will be curated and shown in this database. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.chr7.org/project.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA sequenzes", "chromosomal abnormalities", "disease", "human genetics"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["ROR:01gavpb45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "MaRS", "institutionAdditionalName": ["Medical and Related Sciences"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.marsdd.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.marsdd.com/contact/"]}, {"institutionName": "Ontario Genomics", "institutionAdditionalName": ["OGI", "Ontario Genomics Institute"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontariogenomics.ca/", "institutionIdentifier": ["ROR:00c68jz96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ontariogenomics.ca"]}, {"institutionName": "The Hospital for Sick Children, The Centre for Applied Genomics", "institutionAdditionalName": ["SickKids, TCAG"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.tcag.ca/", "institutionIdentifier": ["RRID:SCR_001840", "RRID:nif-0000-12519"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.tcag.ca/contact/index.html"]}] [{"policyName": "TCAG Facilities Terms and Conditions", "policyURL": "http://www.tcag.ca/facilities/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] restricted [{"dataUploadLicenseName": "TCAG Facilities Terms and Conditions", "dataUploadLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] ["unknown"] {} ["none"] http://www.chr7.org/ [] yes yes [] [] {} 2016-08-22 2021-01-14 +r3d100012138 TERRA eng [{"additionalName": "Terra: The EOS Flagship", "additionalNameLanguage": "eng"}] https://terra.nasa.gov/ [] ["https://terra.nasa.gov/people", "tassia.owen@nasa.gov"] On February 24, 2000, Terra began collecting what will ultimately become a new, 15-year global data set on which to base scientific investigations about our complex home planet. Together with the entire fleet of EOS spacecraft, Terra is helping scientists unravel the mysteries of climate and environmental change. TERRA's data collection instruments include: Advanced Spaceborne Thermal Emission and Reflection Radiometer (ASTER), Clouds and the Earth's Radiant Energy System (CERES), Multi-angle Imaging Spectro-Radiometer (MISR), Moderate-resolution Imaging Spectroradiometer (MODIS), Measurement of Pollution in the Troposphere (MOPITT) eng ["disciplinary"] {"size": "", "updatedp": ""} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://terra.nasa.gov/wp-content/uploads/2014/04/Terra-Science-Writer-Guide-terra_sw_guide.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["NASA''s Earth Observing System", "aerospace", "atmosphere", "carbon cycle", "climate change", "earth science", "remote sensing", "satellite", "water", "weather"] [{"institutionName": "Atmospheric Science Data Center", "institutionAdditionalName": ["ASDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://asdc.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://asdc.larc.nasa.gov/contact-us"]}, {"institutionName": "Land Processes Distributed Active Archive Center", "institutionAdditionalName": ["LPDAAC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lpdaac.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lpdaac.usgs.gov/lpdaac-contact-us/"]}, {"institutionName": "Level 1 and Atmosphere Archive and Distribution System", "institutionAdditionalName": ["LAADS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://earthdata.nasa.gov/eosdis/daacs/laads", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NASA Ocean Color Web", "institutionAdditionalName": ["OceanColor Web"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://oceancolor.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://oceancolor.gsfc.nasa.gov/contact/"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": ["RRID:SCR_002220", "RRID:nlx_154742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsidc.org/about/contact.html", "https://nsidc.org/data/modis/data_versions.html"]}] [{"policyName": "Media Usage Guidelines", "policyURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}] closed [] ["other"] yes {} ["ARK"] https://asdc.larc.nasa.gov/citing-data [] no yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2016-08-22 2021-07-02 +r3d100012139 The Centre for Applied Genomics Databases eng [{"additionalName": "TCAG Databases", "additionalNameLanguage": "eng"}] http://www.tcag.ca/databases/index.html [] ["http://www.tcag.ca/contact/index.html"] The Centre for Applied Genomics hosts a variety of databases related to ongoing supported projects. Curation of these databases is performed in-house by TCAG Bioinformatics staff. The Autism Chromosome Rearrangement Database, The Cystic Fibrosis Mutation Database, TThe Lafora Progressive Myoclonus Epilepsy Mutation and Polymorphism Database are included. Large Scale Genomics Research resources include, the Database of Genomic Variants, The Chromosome 7 Annotation Project, The Human Genome Segmental Duplication Database, and the Non-Human Segmental Duplication Database eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.tcag.ca/index.html [{"name": "Databases", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biobanking", "cytogenomics", "genetic analysis", "human genetics", "informatics", "microarray analysis", "statistical analysis"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "FCI", "Fondation canadienne pour l\u2019innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:nlx_144042", "RRID:nlx_144042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.innovation.ca/about/contact/address-and-directory"]}, {"institutionName": "Hospital for Sick Children, The Centre for Applied Genomics", "institutionAdditionalName": ["SickKids", "SickKids, TCAG"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.sickkids.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sickkids.ca/en/about/contact/"]}, {"institutionName": "Ontario Genomics", "institutionAdditionalName": ["OGI", "Ontario Genomics Institute"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontariogenomics.ca/", "institutionIdentifier": ["ROR:00c68jz96", "RRID:SCR_013156", "RRID:nif-0000-32038", "RRID:nif-0000-32038"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ontariogenomics.ca"]}, {"institutionName": "SicKkids Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sickkidsfoundation.com/#/", "institutionIdentifier": ["ROR:04374qe70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sickkidsfoundation.com/aboutus/contactus"]}, {"institutionName": "University of Toronto, McLaughlin Centre", "institutionAdditionalName": ["McLaughlin Centre"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mclaughlin.utoronto.ca/home.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mclaughlin.utoronto.ca/contact.htm"]}] [{"policyName": "TCAG Facilities Terms and Conditions", "policyURL": "http://www.tcag.ca/facilities/terms.html"}, {"policyName": "Terms of use", "policyURL": "https://www.sickkids.ca/en/about/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.tcag.ca/databases/databaseDisclaimer.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.sickkids.ca/en/about/terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] restricted [{"dataUploadLicenseName": "TCAG Facilities Terms and Conditions", "dataUploadLicenseURL": "http://www.tcag.ca/facilities/terms.html"}] [] {} ["none"] [] unknown unknown [] [] {} See individual database pages for correct citation 2016-08-22 2021-01-19 +r3d100012140 Brunel figshare eng [{"additionalName": "Brunel research data repository & registry", "additionalNameLanguage": "eng"}] https://brunel.figshare.com/ [] ["researchdata@brunel.ac.uk"] Brunel Figshare (brunel.figshare.com) is a Data Repository where Brunel’s researchers can deposit their digital Research Data, to make it available in a citable, shareable and discoverable manner. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.brunel.ac.uk/life/library/documents/pdf/Brunel-Figshare-User-Guide.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["environmental sciences", "health sciences", "information sciences", "meta science"] [{"institutionName": "Brunel University London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.brunel.ac.uk/", "institutionIdentifier": ["ROR:00dn4t376"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://figshare.com/", "institutionIdentifier": ["ROR:041mxqs23", "RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Brunel Research Data Management", "policyURL": "https://www.brunel.ac.uk/life/library/SCO/Research-Data-Management"}, {"policyName": "Brunel Research Data Repository & Registry User Guide", "policyURL": "https://www.brunel.ac.uk/life/library/documents/pdf/Brunel-Figshare-User-Guide.pdf"}, {"policyName": "Funder open access and data policies", "policyURL": "https://www.brunel.ac.uk/life/library/SCO/Funder-open-access-and-data-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.datacite.org/cite-your-data.html ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Brunel figshare uses the Altmetric metrics. 2016-08-23 2021-01-19 +r3d100012141 climate4impact eng [] https://climate4impact.eu/impactportal/general/index.jsp [] ["https://climate4impact.eu/impactportal/help/contactexpert.jsp"] Climate4impact: a dedicated interface to ESGF for the climate impact community The portal Climate4impact, part of the ENES Data Infrastructure, provides access to data and quick looks of global and regional climate models and downscaled higher resolution climate data. The portal provides data transformation tooling and mapping & plotting capabilities, guidance, documentation, FAQ and examples. The Climate4Impact portal will be further developedduring the IS-ENES3 project(2019-2023)and moved to a different environment.Meanwhile the portal at https://climate4impact.euwill remain available, but no new information or processing options will be included.When the new portal will become availablethis will be announced on https://is.enes.org/. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://climate4impact.eu/impactportal/general/about.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CLIPC", "CMIP5", "CORDEX", "SPECS", "climate change", "energy", "marine coastal", "nature biodiversity", "tourism", "urban infrastructure", "water management"] [{"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme - FP7, IS-ENES 2", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/312979", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Infrastructure for the European Network for Earth System Modelling", "institutionAdditionalName": ["IS-ENES"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://is.enes.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://climate4impact.eu/impactportal/general/index.jsp?q=disclaimer"}, {"policyName": "Terms of use agreement for CMIP5 model output", "policyURL": "https://pcmdi.llnl.gov/mips/cmip5/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://climate4impact.eu/impactportal/general/index.jsp?q=disclaimer"}] restricted [] [] yes {"api": "https://climate4impact.eu/impactportal/help/faq.jsp?q=climate_data_format", "apiType": "NetCDF"} ["DOI"] https://pcmdi.llnl.gov/mips/cmip5/citation.html [] unknown unknown [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "CIM - Common Information Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cim-common-information-model"}] {} Partners supporting climate4impact: https://climate4impact.eu/impactportal/general/about.jsp 2016-08-24 2021-10-06 +r3d100012143 Loughborough Data Repository eng [{"additionalName": "Loughborough University Data Repository", "additionalNameLanguage": "eng"}] https://repository.lboro.ac.uk/ [] ["rdm@lboro.ac.uk"] Loughborough Data Repository is the research data repository of Loughborough University powered by figshare. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["design", "drama", "health sciences", "publishing", "sport and exercise science"] [{"institutionName": "Loughborough University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lboro.ac.uk/", "institutionIdentifier": ["RRID:SCR_011350", "RRID:nlx_158227"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["rdm@lboro.ac.uk"]}] [{"policyName": "Research Data Archiving", "policyURL": "https://www.lboro.ac.uk/research/support/publishing/archiving-your-data/"}, {"policyName": "Research Data Management Policy", "policyURL": "https://www.lboro.ac.uk/media/wwwlboroacuk/content/library/downloads/researchsupport/2016_09_21_ResearchDataManagementPolicy.pdf"}, {"policyName": "Research Data takedown policy", "policyURL": "https://www.lboro.ac.uk/media/media/research/support/documents/data_repo_takedown_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}] restricted [{"dataUploadLicenseName": "Research Data Repository deposit license", "dataUploadLicenseURL": "https://www.lboro.ac.uk/media/media/research/support/documents/Data_Repository_Licence.pdf"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://help.figshare.com/article/how-to-share-cite-or-embed-your-data ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Loughborough Data Repository uses Altmetric metrics. 2016-08-25 2021-01-19 +r3d100012144 University of Salford Data Repository eng [] https://salford.figshare.com/ [] ["researchdata@salford.ac.uk"] Figshare is the University of Salford Data Repository for archiving and publishing research data, in accordance with EPSRC expectations, and to increase the impact of the research. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.salford.ac.uk/research/research-integrity/research-data-management [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["acoustics", "built environment and design", "earth sciences", "environmental sciences", "health sciences", "information sciences", "meta science"] [{"institutionName": "University of Salford Manchester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.salford.ac.uk/", "institutionIdentifier": ["ROR:01tmqtf75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.salford.ac.uk/research/research-integrity/research-data-management", "researchdata@salford.ac.uk"]}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Research data Management Plan", "policyURL": "https://www.salford.ac.uk/library/open-research/open-data/research-data-management/data-management-plan"}, {"policyName": "Research data Management Policy", "policyURL": "https://www.salford.ac.uk/sites/default/files/2020-05/ResearchDataManagementPolicy2016.pdf"}, {"policyName": "Research data Management Salford", "policyURL": "https://www.salford.ac.uk/research/research-integrity/research-data-management"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Terms and conditions", "dataUploadLicenseURL": "https://figshare.com/terms"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Salford Data Repository is powered by figshare. Long term storage is covered by the addition of Arkivum. University of Salford Data Repository uses Altmetric metrics. 2016-08-26 2021-01-27 +r3d100012145 melbourne.figshare.com eng [{"additionalName": "University of Melbourne data repository", "additionalNameLanguage": "eng"}] https://melbourne.figshare.com/ [] ["research-data@unimelb.edu.au"] melbourne.figshare.com is a specialised service that has been tailored according to specific needs and requirements of the University and our community of researchers. The service offered at the University is free to use, provides 100GB of data, and stores all data on the University's storage system. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://gateway.research.unimelb.edu.au/resources/platforms-infrastructure-and-equipment/doing-data-better/figshare/figshare-comparison-table [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["creative arts and writing", "earth sciences", "environmental sciences", "human society", "information sciences", "meta science"] [{"institutionName": "University of Melbourne", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unimelb.edu.au/", "institutionIdentifier": ["RRID:SCR_000999", "RRID:nlx_20770"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["research-data@unimelb.edu.au"]}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Copyright & Research", "policyURL": "https://copyright.unimelb.edu.au/information/copyright-and-research"}, {"policyName": "Management of Research Data and Records Policy", "policyURL": "https://policy.unimelb.edu.au/MPF1242#policy%20link"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://copyright.unimelb.edu.au/__data/assets/pdf_file/0008/1773809/introguideblue.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/mit-license.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Melbourne data repository uses Altmetric metrics. 2016-08-30 2021-01-27 +r3d100012146 St. Edward's University institutional repository eng [{"additionalName": "St. Edward\u2019s University Figshare", "additionalNameLanguage": "eng"}] https://stedwards.figshare.com/ [] ["rgibbs@stedwards.edu"] Additionally to the institutional repository, current St. Edward's faculty have the option of uploading their work directly to their own SEU accounts on stedwards.figshare.com. Projects created on Figshare will automatically be published on this website as well. For more information, please see documentation eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ir.stedwards.edu/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["military academy", "ozone project"] [{"institutionName": "St. Edwards University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stedwards.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "St. Edwards University, Munday Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.stedwards.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["institutions@digital-science.com"]}] [{"policyName": "St. Edward's Imoversoty copyright and file-sharig policy", "policyURL": "https://stedwards.app.box.com/s/2sa439336u6gvhquxlns45nphhmb4l41"}, {"policyName": "St. Edward's University Policy Website", "policyURL": "https://www.stedwards.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://stedwards.app.box.com/s/2sa439336u6gvhquxlns45nphhmb4l41"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} St. Edward's University institutional repository uses Altmetric metrics. 2016-08-31 2021-02-01 +r3d100012147 Stockholm University Figshare Repository eng [] https://su.figshare.com/ [] [] Researchers at Stockholm University have access to a repository for data through the Figshare Services via su.figshare.com. eng ["institutional"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.stockholmuniversitypress.se/site/research-integrity/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "information sciences", "meta science"] [{"institutionName": "Stockholm University", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.su.se/english/", "institutionIdentifier": ["ROR:05f0yaq80", "RRID:SCR_011543", "RRID:nlx_19836"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stockholm University Press", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stockholmuniversitypress.se/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stockholmuniversitypress.se/site/contact/"]}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["institutions@figshare.com"]}] [{"policyName": "Checklist for deposits at su.figshare.com", "policyURL": "https://www.su.se/polopoly_fs/1.491398.1584713434!/menu/standard/file/ChecklistENcut.pdf"}, {"policyName": "SU Research data policy", "policyURL": "https://www.su.se/staff/organisation-governance/governing-documents-rules-and-regulations/research/research-data-policy-1.387809"}, {"policyName": "SU Rules for research data management", "policyURL": "https://www.su.se/staff/organisation-governance/governing-documents-rules-and-regulations/research/rules-for-research-data-management-1.387814"}, {"policyName": "SU research data policies and guidelines", "policyURL": "https://pp-prod-admin.it.su.se/preview/www/2.153/2.213/2.30381/2.38402/2.49278/2.53087"}, {"policyName": "Terms and conditions", "policyURL": "https://www.stockholmuniversitypress.se/site/t-and-c/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Stockholm University Figshare repository uses Altmetric metrics. 2016-08-31 2021-10-25 +r3d100012148 Bath Spa University figshare eng [{"additionalName": "BathSPAdata", "additionalNameLanguage": "eng"}] https://data.bathspa.ac.uk/ [] ["researchsupportoffice@bathspa.ac.uk"] The University research data repository – BathSPAdata – enables staff to upload their research data into a secure space, and to share this data publicly where appropriate, or where funders or publishers require this as part of their conditions. Resources and toolkits for external use can be made available through this forum, and can be used by Schools, policy makers, business and industry, and the cultural sector. eng ["institutional"] {"size": "161 items; 11 collections", "updatedp": "2021-02-01"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bathspa.ac.uk/about-us/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["creative arts and writing", "electronic media art"] [{"institutionName": "Bath Spa University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bathspa.ac.uk/", "institutionIdentifier": ["ROR:0038jbq24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["researchsupportoffice@bathspa.ac.uk"]}] [{"policyName": "Bath Spa open access policy", "policyURL": "https://www.bathspa.ac.uk/about-us/governance/policies/open-access-policy/"}, {"policyName": "Bath Spa research data policy", "policyURL": "https://www.bathspa.ac.uk/about-us/governance/policies/research-data-policy/"}, {"policyName": "Bath Spa software management policy", "policyURL": "https://www.bathspa.ac.uk/about-us/governance/policies/software-management-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bathspa.ac.uk/about-us/governance/policies/copyright/"}] restricted [] ["other"] {} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://figshare.com/rss/portal/bathspa", "syndicationType": "RSS"} 2016-08-31 2021-02-01 +r3d100012149 DataHub eng [{"additionalName": "DEEDS DataHub", "additionalNameLanguage": "eng"}, {"additionalName": "DataCenterHub", "additionalNameLanguage": "eng"}, {"additionalName": "Digital Environment for Enabling Data-Driven Science DataHub", "additionalNameLanguage": "eng"}] https://datacenterhub.org/ [] ["spujol@purdue.edu"] We offer a public platform to help researchers organize, share, and explore their research data. DataCenterHub provides a simple, standardized yet flexible platform to preserve and share data. In the future, this platform will offer data visualization tools and the ability to compare directly data from different sources. eng ["institutional"] {"size": "nearly 6.000 experiments; 30 TB of data", "updatedp": "2016-09-05"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41004 Sructural Engineering, Building Informatics, Construction Operation", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://datacenterhub.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agronomy", "earthquake", "engineering", "gene", "generalist", "science", "structural"] [{"institutionName": "American Concrete Institute", "institutionAdditionalName": ["ACI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.concrete.org/", "institutionIdentifier": ["ROR:02a207p76"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.concrete.org/contactus.aspx"]}, {"institutionName": "Carnegie Mellon University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/", "institutionIdentifier": ["ROR:05x2bcf33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ldz@cmu.edu"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.org/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Purdue University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.purdue.edu/", "institutionIdentifier": ["ROR:02dqehb95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Nebraska-Lincoln", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unl.edu/", "institutionIdentifier": ["ROR:043mer456"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["csim@unl.edu"]}] [{"policyName": "Terms of Use", "policyURL": "https://datacenterhub.org/aboutus/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["other"] yes {"api": "https://datacenterhub.org/app/site/media/articles/sftp-instructions.pdf", "apiType": "FTP"} ["none"] ["none"] unknown unknown [] [] {} 2016-09-05 2021-02-02 +r3d100012151 Grouplens Datasets eng [] https://grouplens.org/datasets/ [] ["grouplens-info@cs.umn.edu", "https://grouplens.org/about/contact-us/"] GroupLens is a research lab in the Department of Computer Science and Engineering at the University of Minnesota, Twin Cities specializing in recommender systems, online communities, mobile and ubiquitous technologies, digital libraries, and local geographic information systems. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11101 Sociological Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://grouplens.org/about/what-is-grouplens/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["Book-Crossing", "EachMovie", "HetRec 2011", "Jester", "Movielens", "WikiLens", "hetrec2011-movielens-2k", "ml-100K", "ml-1m", "movie recommender", "recommender system"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minnesota, Department of Computer Science and Engineering", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cs.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "FURTHER INFORMATION ABOUT THE GROUPLENS RESEARCH PROJECT ml-100K", "policyURL": "http://files.grouplens.org/datasets/movielens/ml-100k-README.txt"}, {"policyName": "FURTHER INFORMATION ABOUT THE GROUPLENS RESEARCH PROJECT ml-1m", "policyURL": "http://files.grouplens.org/datasets/movielens/ml-1m-README.txt"}, {"policyName": "MovieLens + IMDb/Rotten Tomatoes (hetrec2011-movielens-2k)", "policyURL": "http://files.grouplens.org/datasets/hetrec2011/hetrec2011-movielens-readme.txt"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://files.grouplens.org/datasets/movielens/ml-20m-README.html"}] restricted [] [] {} ["none"] http://files.grouplens.org/datasets/movielens/ml-100k-README.txt [] unknown unknown [] [] {"syndication": "http://grouplens.org/feed/", "syndicationType": "RSS"} GroupLens is covered by Thomson Reuters Data Citation Index. 2016-09-12 2021-09-09 +r3d100012152 FooDB eng [{"additionalName": "Food Database", "additionalNameLanguage": "eng"}] http://foodb.ca/ [] ["http://foodb.ca/w/contact"] FooDB is the world’s largest and most comprehensive resource on food constituents, chemistry and biology. It provides information on both macronutrients and micronutrients, including many of the constituents that give foods their flavor, color, taste, texture and aroma. eng ["disciplinary"] {"size": "Over 26.500 food compounds and food associations", "updatedp": "2016-09-13"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30502 Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://foodb.ca/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "food additives", "groceries", "metabolomics", "physiology", "phytochemistry"] [{"institutionName": "Genome Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomealberta.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.genomealberta.ca/contact-us/"]}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomebc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.genomebc.ca/index.php?cID=73"]}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.genomecanada.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.genomecanada.ca/en/about-us/contact-us"]}, {"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.metabolomicscentre.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.metabolomicscentre.ca/contact"]}, {"institutionName": "University of Alberta, Faculty of Science", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ualberta.ca/science", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["david.wishart@ualberta.ca"]}] [{"policyName": "Freely available resource", "policyURL": "http://foodb.ca/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://foodb.ca/about"}] closed [] ["unknown"] yes {} ["none"] http://foodb.ca/about#cite [] yes yes [] [] {} 2016-09-12 2016-09-15 +r3d100012153 Exposome-Explorer eng [{"additionalName": "Exposome-Explorer database", "additionalNameLanguage": "eng"}] http://exposome-explorer.iarc.fr/ [] ["http://exposome-explorer.iarc.fr/contact"] Exposome-Explorer is the first database dedicated to biomarkers of exposure to environmental risk factors for diseases. It contains detailed information on the nature of biomarkers, populations and subjects where measured, samples analyzed, methods used for biomarker analyses, concentrations in biospecimens, correlations with external exposure measurements, and biological reproducibility over time. eng ["disciplinary"] {"size": "489 dietary and pollutant biomarkers, 10.510 concentration values measured in blood, urine and other biospecimens, 8.034 correlation values between dietary biomarker levels and food intake", "updatedp": "2016-09-13"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.iarc.fr/en/about/index.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biology", "biomarker", "cancer", "epidemiology", "metabolomics"] [{"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/index_en.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/contact_en"]}, {"institutionName": "FOODBALL", "institutionAdditionalName": ["Food Biomarkers Alliance"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://foodmetabolome.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Tweets by @foodmetabolome"]}, {"institutionName": "University of Alberta, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["david.wishart@ualberta.ca"]}, {"institutionName": "World Health Organization, International Agency for Research on Cancer", "institutionAdditionalName": ["CIRC", "IARC", "Organisation mondiale de la Sant\u00e9, Centre international de Recherche sur le Cancer"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.iarc.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://exposome-explorer.iarc.fr/credits"]}] [{"policyName": "Privacy", "policyURL": "http://www.iarc.fr/en/privacy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.iarc.fr/en/copyright.php"}] closed [] ["unknown"] {} ["none"] http://exposome-explorer.iarc.fr/citing [] yes yes [] [] {"syndication": "http://www.iarc.fr/en/feeds/news/feeds.xml", "syndicationType": "RSS"} 2016-09-13 2016-09-16 +r3d100012155 ACU Research Bank eng [{"additionalName": "Australian Catholic University Research Bank", "additionalNameLanguage": "eng"}] https://acuresearchbank.acu.edu.au/ [] [] ACU Research Bank is the Australian Catholic University's institutional research repository. It serves to collect, preserve, and showcase the research publications and outputs of ACU staff and higher degree students. Where possible and permissible, a full text version of a research output is available as open access. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "10702 Roman Catholic Theology", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://acuresearchbank.acu.edu.au/about#what-is-research-bank [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["arts", "attender survey", "business", "education", "interview transcripts", "law", "national church life survey", "philosophy", "theology"] [{"institutionName": "Australian Catholic University", "institutionAdditionalName": ["ACU"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.acu.edu.au/", "institutionIdentifier": ["ROR:04cxm4j25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.acu.edu.au/contact-us"]}] [{"policyName": "Open Access for ACU Research", "policyURL": "https://policies.acu.edu.au/library/open-access-for-acu-research"}, {"policyName": "Research Publication Policy", "policyURL": "https://policies.acu.edu.au/research/general_policies/research_publication_policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.acu.edu.au/copyright"}] restricted [] ["other"] yes {} ["DOI"] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ACU Research Bank is covered by Clarivate Data Citation Index 2016-09-15 2021-09-04 +r3d100012156 Open Research Data Online eng [{"additionalName": "ORDO", "additionalNameLanguage": "eng"}, {"additionalName": "The Open University Data Repository", "additionalNameLanguage": "eng"}] https://ordo.open.ac.uk/ ["biodbcore-001689"] ["https://www.open.ac.uk/libraryservices/forms/research-support-contact"] The figshare service for The Open University was launched in 2016 and allows researchers to store, share and publish research data. It helps the research data to be accessible by storing metadata alongside datasets. Additionally, every uploaded item receives a Digital Object Identifier (DOI), which allows the data to be citable and sustainable. If there are any ethical or copyright concerns about publishing a certain dataset, it is possible to publish the metadata associated with the dataset to help discoverability while sharing the data itself via a private channel through manual approval. eng ["institutional"] {"size": "449 records", "updatedp": "2021-03-18"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.open.ac.uk/library-research-support/research-data-management/open-research-data-online [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "The Open University", "institutionAdditionalName": ["OU"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.open.ac.uk/", "institutionIdentifier": ["ROR:05mzfcs16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.open.ac.uk/contact"]}] [{"policyName": "Conditions of use (Open University)", "policyURL": "http://www.open.ac.uk/about/main/management/policies-and-statements/conditions-use-open-university-websites"}, {"policyName": "Policies and statements (Open University)", "policyURL": "http://www.open.ac.uk/about/main/management/policies-and-statements"}, {"policyName": "Policies on the use of ORDO", "policyURL": "http://www.open.ac.uk/library-research-support/research-data-management/ordo-system-information"}, {"policyName": "Research plan and policies (Open University)", "policyURL": "http://www.open.ac.uk/research/main/about/plan-and-policies"}, {"policyName": "Terms & Conditions (figshare)", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "ORDO Depositor Agreement", "dataUploadLicenseURL": "http://www.open.ac.uk/library-research-support/sites/www.open.ac.uk.library-research-support/files/files/ORDO-Depositor-Agreement.pdf"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://help.figshare.com/article/how-to-share-cite-or-embed-your-data ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2016-09-15 2021-11-17 +r3d100012157 Fairdata IDA Research Data Storage Service eng [{"additionalName": "Fairdata IDA - Tutkimusdatan s\u00e4ilytyspalvelu", "additionalNameLanguage": "fin"}, {"additionalName": "IDA Research Data Storage Service", "additionalNameLanguage": "eng"}] https://ida.fairdata.fi/login [] ["servicedesk@csc.fi"] Fairdata IDA is a research data storage service that provides secure storage for research data. The Fairdata services are a group of nationally developed Finnish ICT services for managing research data, especially in the later phases of the research life cycle (sharing, publishing, and preserving). Development of research data management infrastructure has been identified as an important step in enabling implementation of the FAIR principles. The Fairdata services are funded by the Finnish Ministry of Education and Culture, and developed and maintained by CSC IT Center for Science. The services consist of the following service components: IDA – Research Data Storage; Etsin – Research Data Finder; Qvain – Research Dataset Metadata Tool; Metax – Metadata Warehouse; AVAA – Dynamic Data Publishing Platform and the Digital Preservation Service for Research Data (including management and packaging). The services also provide means for applying for and granting permits to use restricted access datasets. The service is offered free of charge for its users. The services are available to the research community in accordance with the applicable usage policy. Minedu offers access to research data storage service IDA to Finnish higher education institutions, state research institutes and projects funded by the Academy of Finland. Minedu may also grant separate access or storage capacity to the service. Finnish higher education institutions and research institutes may distribute IDA storage capacity to actors within the Finnish research system, within the limits of their usage shares. The service is intended for storing research data and materials related to it. The data stored in the service is available to all project users. The users mark their data to be persistently stored (“Frozen”) in the service. All project members may make the “Frozen” data and related metadata publicly accessible by using the other aforementioned Fairdata services. The data in the service is stored in Finland. IDA service stores the data stored by organisations projects continuously or until it’s transferred to digital preservation, provided that the Terms of Use are met. The owners of the data decide on the openness and usage policies for their own data. User organisations are offered support and guidance on using the service. eng ["other"] {"size": "", "updatedp": ""} 2012-09-20 ["eng", "fin", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.fairdata.fi/en/services/ida/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AVAA", "Aila", "Digital Preservation Service for Research Data", "Doria", "Etsin", "FAIR", "Fairdata PAS", "Qvain"] [{"institutionName": "Academy of Finland", "institutionAdditionalName": ["Finlands Akademi", "Suomen Akatemia"], "institutionCountry": "FIN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.aka.fi/en/", "institutionIdentifier": ["ROR:05k73zm37", "RRID:SCR_007394", "RRID:nif-0000-00434", "RRID:nlx_27306"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CSC - IT Center for Science Ltd", "institutionAdditionalName": ["CSC -Tieteen tietotekniikan keskus"], "institutionCountry": "FIN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.csc.fi/", "institutionIdentifier": ["ROR: 04m8m1253"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["servicedesk@csc.fi"]}, {"institutionName": "Ministry of Education and Culture", "institutionAdditionalName": [], "institutionCountry": "FIN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://minedu.fi/OPM/", "institutionIdentifier": ["ROR: 02w52zt87"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Contracts and Privacy", "policyURL": "https://www.fairdata.fi/en/contracts-and-privacy/"}, {"policyName": "Research Data Storage Service Terms of Use", "policyURL": "https://www.fairdata.fi/en/ida-research-data-storage-service-terms-of-use/"}, {"policyName": "Terms and Policies", "policyURL": "https://www.fairdata.fi/en/terms-and-policies/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.fairdata.fi/en/terms-and-policies/"}] restricted [] ["other"] yes {} ["DOI", "URN"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Linked to the Fairdata metadata services and digital preservation service. 2016-09-19 2020-07-14 +r3d100012158 Etsin Research Data Finder eng [{"additionalName": "Etsin - tutkimusaineistojen hakupalvelu", "additionalNameLanguage": "fin"}] https://etsin.fairdata.fi/ [] ["servicedesk@csc.fi"] Etsin is a research data finder that contains descriptive information – that is, metadata – on research datasets. In the service you can search and find data from various fields of research. A researcher, research group or organisation can use Etsin to publish information on their datasets and offer them for wider use. The metadata contained in Etsin makes it easy for anyone to discover the datasets. Etsin assigns a permanent URN identifier to datasets, making it possible to link to the dataset and gather merit through its publication and use. The metadata enables users to search for datasets and evaluate the potential for reuse. Etsin includes a description of the dataset, keywords and various dataset identifiers. The dataset information includes, for example, its subject, language, author, owner and how it is licensed for reuse. Good description of data plays an important role in its discoverability and visibility. Etsin encourages comprehensive descriptions by adapting a common set of discipline independent metadata fields and by making it easy to enter metadata. Etsin only collects metadata on datasets, not the data themselves. Anyone may browse and read the metadata. Etsin can be used with a browser or through an open interface (API). The service is discipline independent and free to use. Etsin is a service provided by the Ministry of Education and Culture to actors in the Finnish research system. The service is produced by CSC – IT Center for Science (CSC). Customer service contacts and feedback is available through servicedesk@csc.fi. The service maintenance window is on the fourth Monday of every month between 4 and 6 PM (EET). During that time, the service will be out of use. eng ["other"] {"size": "10.143 datasets", "updatedp": "2020-11-26"} 2013 ["eng", "fin"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.fairdata.fi/en/etsin/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["AILA", "AVAA", "Doria", "Finto", "IDA", "Language", "Language Bank of Finland", "Tuuli"] [{"institutionName": "CSC - IT Center for Science Ltd", "institutionAdditionalName": ["CSC - Tieteen tietotekniikan keskus"], "institutionCountry": "FIN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.csc.fi/", "institutionIdentifier": ["ROR:04m8m1253"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://www.csc.fi/contact-info"]}, {"institutionName": "Ministry of Education and Culture", "institutionAdditionalName": [], "institutionCountry": "FIN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://minedu.fi/OPM/?lang=en", "institutionIdentifier": ["ROR:02w52zt87"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility Statement for Fairdata Etsin", "policyURL": "https://www.fairdata.fi/en/etsin-accessibility/"}, {"policyName": "Fairdata Terms and Policies", "policyURL": "https://www.fairdata.fi/en/terms-and-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] ["CKAN"] yes {"api": "https://www.fairdata.fi/en/metax/apis/", "apiType": "REST"} ["URN"] https://www.fairdata.fi/en/etsin/ ["ORCID"] unknown yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Supports any PID type, provides only URNs. Supports any research identifier, e.g. ORCID. Metadata schema follows the national standard for research data, follows Dublin Core and DCat 2016-09-19 2021-09-09 +r3d100012160 ChemBio Hub eng [] https://github.com/thesgc/chembiohub_ws/wiki [] [] The ChemBio Hub vision is to provide the tools that will make it easier for Oxford University scientists to connect with colleagues to improve their research, to satisfy funders that the data they have paid for is being managed according to their policies, and to make new alliances with pharma and biotech partners. Funding and development of the ChemBio Hub was ending on the 30th June 2016. Please be reassured that the ChemBio Hub system and all your data will continue to be secured on the SGC servers for the foreseeable future. You can continue to use the services as normal. More information see: http://staging.chembiohub.ox.ac.uk/blog/ eng ["disciplinary", "institutional"] {"size": "50 active projects", "updatedp": "2016-09-26"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30501 Biological and Biomimetic Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://github.com/thesgc/chembiohub_ws/wiki#what [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ChemiReg", "InventoryReg", "compound registration", "consumables", "laboratory organisation", "peptides", "vectors"] [{"institutionName": "Higher Education Funding Council of England", "institutionAdditionalName": ["HEFCE"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://webarchive.nationalarchives.gov.uk/20180322112445/http://www.hefce.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018-03", "institutionContact": []}, {"institutionName": "University of Oxford", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford, Nuffield Department of Medicine, Medical Sciences Division", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ndm.ox.ac.uk/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ndm.ox.ac.uk/contact"]}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "ChemBio Hub Platform Documentation", "policyURL": "https://github.com/thesgc/chembiohub_ws/wiki"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.de.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gatesfoundation.org/how-we-work/general-information/open-access-policy"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} The ChemBio Hub Search API and its configuration: https://github.com/thesgc/chembiohub_ws/wiki/The-ChemBio-Hub-Search-API-and-its-configuration 2016-09-20 2021-05-19 +r3d100012161 Gran Telescopio CANARIAS Public Archive eng [{"additionalName": "GRANTECAN Archivo de datos", "additionalNameLanguage": "spa"}, {"additionalName": "GTC Public Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Gran Telescopio CANARIAS Archivo de datos", "additionalNameLanguage": "spa"}] http://gtc.sdc.cab.inta-csic.es/gtc/index.jsp [] ["gtc-support@cab.inta-csic.es"] This data server provides access to the GTC Public Archive. GTC data become public once the proprietary (1 year) is over. The Gran Telescopio CANARIAS (GTC), is a 10.4m telescope with a segmented primary mirror. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://gtc.sdc.cab.inta-csic.es/gtc/help/overview.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CANARICAM", "CIRCE", "La Palma", "OSIRIS", "multi-object spectroscopy (MOS)", "telescope"] [{"institutionName": "Centro de Astrobiolog\u00eda, Instituto Nacional de T\u00e9cnica Aeroespacial", "institutionAdditionalName": ["CAB, INTA", "CSIC/INTA"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://cab.inta.es/en/inicio", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cab.inta.es/en/contacto"]}, {"institutionName": "European Regional Development Fund", "institutionAdditionalName": ["FEDER"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/regional_policy/en/funding/erdf/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/regional_policy/en/contact/"]}, {"institutionName": "GRANTECAN S.A.", "institutionAdditionalName": ["Gran Telescopio Canarias S.A."], "institutionCountry": "ESP", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.gtc.iac.es", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gtc [at] gtc.iac.es"]}, {"institutionName": "Instituto Nacional de Astrof\u00edsica, \u00d3ptica y Electr\u00f3nica", "institutionAdditionalName": ["INAOE"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.inaoep.mx/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Instituto de Astrof\u00edsica de Canarias", "institutionAdditionalName": ["IAC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iac.es/index.php?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Nacional Aut\u00f3noma de M\u00e9xico, Instituto de Astronom\u00eda", "institutionAdditionalName": ["IA-UNAM"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.astroscu.unam.mx/IA/index.php?lang=es", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Florida, Department of Astronomy", "institutionAdditionalName": ["UF Astronomy"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.astro.ufl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "aviso legal", "policyURL": "http://www.gtc.iac.es/gtc/legal_es.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.iac.es/copyright.php"}] restricted [] [] {} ["none"] http://gtc.sdc.cab.inta-csic.es/gtc/index.jsp [] unknown unknown [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} The project is actively supported by the Spanish Government and the Local Government from the Canary Islands through the European Funds for Regional Development (FEDER) provided by the European Union. 2016-09-21 2021-09-09 +r3d100012162 LibraData eng [{"additionalName": "University of Virginia Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.lib.virginia.edu/ [] ["libra@virginia.edu"] LibraData is a place for UVA researchers to share data publicly. It is UVA's local instance of Dataverse. LibraData is part of the Libra Scholarly Repository suite of services which includes works of UVA scholarship such as articles, books, theses, and data. eng ["institutional"] {"size": "29 dataverses, 278 datasets, 11.580 files", "updatedp": "2021-11-29"} 2016-03-29 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.virginia.edu/libra/datasets/#about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arts and humanities", "earth and environmental sciences", "engineering", "law", "social sciences"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": ["RRID:SCR_001997", "RRID:nif-0000-00316"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "University of Virginia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.virginia.edu/libra/", "institutionIdentifier": ["RRID:SCR_011743", "RRID:nlx_57553"], "responsibilityStartDate": "2016-03-29", "responsibilityEndDate": "", "institutionContact": ["libra@virginia.edu"]}] [{"policyName": "About datasets", "policyURL": "https://www.library.virginia.edu/libra/datasets/"}, {"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Guides", "policyURL": "http://uvalib.github.io/dataverse-docs/"}, {"policyName": "Terms of Use", "policyURL": "https://www.library.virginia.edu/libra/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [{"dataUploadLicenseName": "Libra Data Public Deposit License", "dataUploadLicenseURL": "https://www.library.virginia.edu/libra/datasets/public-dataset-license/"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes no [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} LibraData is covered by Clarivate Data Citation Index. We’re using the Dataverse software developed by Harvard; Libra Data is UVA’s local instance of Dataverse with all data resides on servers physically located on the UVA Grounds. Libra Data is a place for UVA researchers to publish final research data for sharing publicly. 2016-09-21 2021-12-03 +r3d100012163 Precipitation Measurement Missions eng [{"additionalName": "PMM", "additionalNameLanguage": "eng"}] https://gpm.nasa.gov/ [] ["bert.ulrich@nasa.gov", "https://gpm.nasa.gov/contact"] NASA’s Precipitation Measurement Missions – TRMM and GPM – provide advanced information on rain and snow characteristics and detailed three-dimensional knowledge of precipitation structure within the atmosphere, which help scientists study and understand Earth's water cycle, weather and climate. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["GPM", "TRMM", "agriculture", "climate dynamics", "climate prediction", "cyclones", "extreme weather", "floods", "freshwater", "global water cycle", "landslides", "microphysics", "tropical storm"] [{"institutionName": "NASA's Goddard Space Flight Center", "institutionAdditionalName": ["GSFC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TRMM & GPM Data Policy", "policyURL": "https://pmm.nasa.gov/index.php?q=data-access/#data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://trmm.gsfc.nasa.gov/publications_dir/imagepol.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nasa.gov/offices/ogc/ip/1210.html"}] closed [] ["unknown"] {"api": "ftp://pps.gsfc.nasa.gov/", "apiType": "FTP"} ["none"] https://www.ametsoc.org/ams/index.cfm/publications/authors/journal-and-bams-authors/journal-and-bams-authors-guide/data-archiving-and-citation/ [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {} 2016-09-22 2021-09-09 +r3d100012164 Global Precipitation Measurement eng [{"additionalName": "GPM", "additionalNameLanguage": "eng"}] https://gpm.nasa.gov/missions/GPM [] ["bert.ulrich@nasa.gov", "https://gpm.nasa.gov/contact"] The Global Precipitation Measurement (GPM) mission is an international network of satellites that provide the next-generation global observations of rain and snow. Building upon the success of the Tropical Rainfall Measuring Mission (TRMM), the GPM concept centers on the deployment of a “Core” satellite carrying an advanced radar / radiometer system to measure precipitation from space and serve as a reference standard to unify precipitation measurements from a constellation of research and operational satellites. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://pmm.nasa.gov/GPM/science-objectives [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Numerical Weather Prediction - NWP", "climate modeling", "climate prediction", "energy cycle", "extreme weather", "flight project", "freshwater", "ground validation", "water cycle"] [{"institutionName": "NASA's Goddard Space Flight Center", "institutionAdditionalName": ["GSFC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/goddard/home/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TRMM & GPM Data Policy", "policyURL": "https://pmm.nasa.gov/index.php?q=data-access/#data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://trmm.gsfc.nasa.gov/publications_dir/imagepol.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nasa.gov/offices/ogc/ip/1210.html"}] closed [] [] {"api": "ftp://arthurhou.pps.eosdis.nasa.gov/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} GPM is a part of the NASA Goddard Precipitation Measurement Missions - PMM. 2016-09-22 2021-09-09 +r3d100012165 STITCH 4.0 eng [{"additionalName": "Search Tool for Interactions of Chemicals", "additionalNameLanguage": "eng"}] http://stitch.embl.de/ ["OMICS_01589", "RRID:SCR_007947", "RRID:nif-0000-03499"] ["mering@imls.uzh.ch", "mkuhn@embl.de"] The Database explores the interactions of chemicals and proteins. It integrates information about interactions from metabolic pathways, crystal structures, binding experiments and drug-target relationships. Inferred information from phenotypic effects, text mining and chemical structure similarity is used to predict relations between chemicals. STITCH further allows exploring the network of chemical relations, also in the context of associated binding proteins. eng ["disciplinary"] {"size": "Stitch contains interactions for between 300.000 small molecules and 2.6 million proteins from 1.133 organisms.", "updatedp": "2016-09-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biochemical processes", "chemical models", "chemical-protein interactions", "pharmaceutical preparations", "protein interaction mapping", "proteins", "stereoisomerism"] [{"institutionName": "European Molecular Biology Laboratory", "institutionAdditionalName": ["EMBL", "Europ\u00e4isches Laboratorium f\u00fcr Molekularbiologie", "Laboratoire Europ\u00e9en de Biologie Mol\u00e9culaire"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.embl.de/aboutus/contact/index.html"]}, {"institutionName": "NNF Center for Protein Research", "institutionAdditionalName": ["Novo Nordisk Foundation, Center for Protein Research"], "institutionCountry": "DNK", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.cpr.ku.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["christian.vonmering@sib.swiss", "damian.szklarczyk@sib.swiss", "milan.simonovic@sib.swiss"]}, {"institutionName": "Technische Universit\u00e4t Dresden, Biotechnology Center", "institutionAdditionalName": ["TU Dresden, Biotechnologisches Zentrum", "Technische Universit\u00e4t Dresden, Biotechnologisches Zentrum", "biotec"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.biotec.tu-dresden.de/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.biotec.tu-dresden.de/contact.html"]}, {"institutionName": "University of Copenhagen, Faculty of Health and Medical Sciences", "institutionAdditionalName": ["K\u00f8benhavns Universitet, Det Sundhedsvidenskabelige Fakultet", "UCPH"], "institutionCountry": "DNK", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://healthsciences.ku.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://introduction.ku.dk/contact/"]}, {"institutionName": "University of Zurich", "institutionAdditionalName": ["UZH", "Universit\u00e4t Z\u00fcrich"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uzh.ch/cmsssl/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alexander.roth@imls.uzh.ch", "http://www.uzh.ch/de/contact.html", "mering@imls.uzh.ch"]}] [{"policyName": "License of STITCH for Scientific Purposes", "policyURL": "http://stitch.embl.de/download/STITCHacademiclicense.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://stitch.embl.de/download/STITCHacademiclicense.pdf"}] restricted [] ["unknown"] yes {"api": "http://stitch-beta.embl.de/cgi/access.pl?&footer_active_subpage=apis", "apiType": "REST"} ["none"] [] unknown yes [] [] {} Sister projects: String and eggNOG // The previous versions, STITCH 3.1, 2.0 and 1.0, are still accessible. 2016-09-23 2020-10-02 +r3d100012166 Database for Hydrological Time Series of Inland Waters eng [{"additionalName": "DAHITI", "additionalNameLanguage": "eng"}] http://dahiti.dgfi.tum.de/en/ [] ["christian.schwatke@tum.de"] The Database for Hydrological Time Series of Inland Waters (DAHITI) was developed by the Deutsches Geodätisches Forschungsinstitut der Technischen Universität München (DGFI-TUM) in 2013. DAHITI provides water level time series of lakes, reservoirs, rivers, and wetlands derived from multi-mission satellite altimetry for hydrological applications. All water level time series are free available for the user community after a short registration process. eng ["disciplinary", "institutional"] {"size": "374 Water Level Time Series of Inland Waters", "updatedp": "2016-09-26"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Africa", "Asia", "Australia", "Europe", "Kalman filter", "North America", "South America", "altimetry", "inland water levels", "lakes", "rivers", "wetlands"] [{"institutionName": "Technische Universit\u00e4t M\u00fcnchen, Deutsches Geod\u00e4tisches Forschungsinstitut", "institutionAdditionalName": ["DGFI-TUM"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dgfi.tum.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://dahiti.dgfi.tum.de/en/register/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}] closed [] [] {"api": "http://dahiti.dgfi.tum.de/en/api/doc/", "apiType": "other"} ["none"] http://dahiti.dgfi.tum.de/en/register/ [] unknown unknown [] [] {} 2016-09-25 2016-09-28 +r3d100012167 Sound and Vision eng [{"additionalName": "Beeld en Geluid", "additionalNameLanguage": "nld"}] https://www.beeldengeluid.nl/en [] ["klantcontactcentrum@beeldengeluid.nl"] Sound and Vision has one of the largest audiovisual archives in Europe. The institute manages over 70 percent of the Dutch audiovisual heritage. The collection contains more than a million hours of television, radio, music and film from the beginning in 1898 until today. All programs of the Dutch public broadcasters come in digitally every day. Individuals and institutions entrust their collection to Sound and Vision as well. The institute ensures that the material is optimally preserved for (re)use. Broadcasters, producers and editors use the archive for the creation of new programs. The collection is also used to develop products and services for a wide audience, such as exhibitions, iPhone applications, DVD boxes and various websites. The collection of Sound and Vision contains the complete radio and television archives of the Dutch public broadcasters; films of virtually every leading Dutch documentary maker; newsreels; the national music depot; various audiovisual corporate collections; advertising, radio and video material of cultural and social organizations, of scientific institutes and of all kinds of educational institutions. There are also collections of images and articles from the history of Dutch broadcasting itself, like the elaborate collection of historical television sets. eng ["other"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10303 Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.beeldengeluid.nl/en/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["broadcast", "documentary", "film", "media", "movie", "music", "radio", "tv"] [{"institutionName": "Netherlands Institute for Sound and Vision", "institutionAdditionalName": ["NISV", "Nederlands Instituut voor Beeld en Geluid"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.beeldengeluid.nl/", "institutionIdentifier": ["ROR:025ae8628"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["klantcontactcentrum@beeldengeluid.nl"]}] [{"policyName": "Algemene voorwaarden - Terms and conditions", "policyURL": "https://www.beeldengeluid.nl/algemene-voorwaarden"}, {"policyName": "Collection Policy", "policyURL": "http://files.beeldengeluid.nl/pdf/collectionpolicy_december2015.pdf"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/12/Netherlands-Institute-for-Sound-and-Vision.pdf"}, {"policyName": "Digital Preservation Sound and Vision: Policy, Standards and Procedures", "policyURL": "https://publications.beeldengeluid.nl/pub/679/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/nl/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://files.beeldengeluid.nl/pdf/collectionpolicy_december2015.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.beeldengeluid.nl/disclaimer"}] restricted [{"dataUploadLicenseName": "Handleiding voor het Maken van de Submisson Argreement en Order Agreement", "dataUploadLicenseURL": "https://publications.beeldengeluid.nl/pub/400/"}] [] no {} ["URN"] [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2016-09-26 2021-02-10 +r3d100012168 PROFILES Registry eng [] http://www.profilesregistry.nl/ [] ["N.Horevoorts@iknl.nl", "info@profilesregistry.nl"] Patient Reported Outcomes Following Initial treatment and Long term Evaluation of Survivorship (PROFILES)’ is a registry for the study of the physical and psychosocial impact of cancer and its treatment from a dynamic, growing population-based cohort of both short and long-term cancer survivors. Researchers from the Netherlands Comprehensive Cancer Centre and Tilburg University in Tilburg, The Netherlands, work together with medical specialists from national hospitals in order to setup different PROFILES studies, collect the necessary data, and present the results in scientific journals and (inter)national conferences. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.profilesregistry.nl/Goals [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Hodgkin Lymphoma", "PROFIEL studies", "cancer", "melanoma"] [{"institutionName": "Integral Kankercentrum Nederland", "institutionAdditionalName": ["IKNL", "Netherlands Comprehensive Cancer Centre"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iknl.nl/over-iknl/about-iknl", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@iknl.nl"]}, {"institutionName": "Tilburg University", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tilburguniversity.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tilburguniversity.edu/contact/"]}] [{"policyName": "DSA Assessment", "policyURL": "https://assessment.datasealofapproval.org/assessment_110/seal/html/"}, {"policyName": "Data Archive Manual", "policyURL": "http://www.profilesregistry.nl/dataarchive/manual/index.html"}, {"policyName": "Rules and conditions", "policyURL": "http://www.profilesregistry.nl/RulesConditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.rijksoverheid.nl/documenten/kamerstukken/2006/06/22/copyright-act"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.profilesregistry.nl/Dissemination"}] restricted [{"dataUploadLicenseName": "How to submit proposals", "dataUploadLicenseURL": "http://www.profilesregistry.nl/Submit"}] [] yes {} ["URN"] http://www.profilesregistry.nl/RulesConditions [] yes yes ["DSA"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2016-09-26 2016-11-09 +r3d100012169 NONCODE eng [] http://www.noncode.org/index.php ["FAIRsharing_doi:10.25504/FAIRsharing.hmb1f4", "RRID:SCR_007822", "RRID:nif-0000-03195"] ["biozy@ict.ac.cn"] NONCODE is an integrated knowledge database dedicated to non-coding RNAs (excluding tRNAs and rRNAs). Now, there are 16 species in NONCODE(human, mouse, cow, rat, chicken, fruitfly, zebrafish, celegans, yeast, Arabidopsis, chimpanzee, gorilla, orangutan, rhesus macaque, opossum and platypus).The source of NONCODE includes literature and other public databases. We searched PubMed using key words ‘ncrna’, ‘noncoding’, ‘non-coding’,‘no code’, ‘non-code’, ‘lncrna’ or ‘lincrna. We retrieved the new identified lncRNAs and their annotation from the Supplementary Material or web site of these articles. Together with the newest data from Ensembl , RefSeq, lncRNAdb and GENCODE were processed through a standard pipeline for each species. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.noncode.org/introduce.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biology", "genetics", "non-coding RNA"] [{"institutionName": "Chinese Academy of Sciences, Institute of Computing Technology", "institutionAdditionalName": ["\u4e2d\u56fd\u79d1\u5b66\u9662\u8ba1\u7b97\u6280\u672f\u7814\u7a76\u6240"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.ict.cas.cn/", "institutionIdentifier": ["RRID:SCR_012797", "RRID:nlx_47801"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["office@ict.ac.cn"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] closed [] ["unknown"] yes {"api": "http://www.bioinfo.org/NONCODEv4/soapApi.php", "apiType": "SOAP"} ["none"] ["none"] unknown yes [] [] {} Old URL: http://bioinfo.ibp.ac.cn/NONCODE/index.htm 2016-09-26 2021-11-09 +r3d100012171 REBASE eng [{"additionalName": "The Restriction Enzyme Database", "additionalNameLanguage": "eng"}] http://rebase.neb.com/rebase/rebase.html ["RRID:SCR_007886", "RRID:nif-0000-03391"] ["http://rebase.neb.com/rebase/rebstaff.html"] The Restriction Enzyme Database is a collection of information about restriction enzymes, methylases, the microorganisms from which they have been isolated, recognition sequences, cleavage sites, methylation specificity, the commercial availability of the enzymes, and references - both published and unpublished observations (dating back to 1952). REBASE is updated daily and is constantly expanding. eng ["disciplinary"] {"size": "12.715 Bacteria, 315 Archaea, 13 Eukaryota, 4 Virus, 1 Unclassified", "updatedp": "2016-04-2016"} 1980 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://rebase.neb.com/rebase/rebhelp.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA methyltransferases", "crystals", "endonuclease", "enzymes", "genetics", "genomics", "proteins", "sequences"] [{"institutionName": "Northeastern University, New England Biolabs", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.neb.com/", "institutionIdentifier": ["RRID:SCR_013517", "RRID:nlx_152420"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["roberts@neb.com"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://rebase.neb.com/rebase/rebhelp.html"}] open [] ["unknown"] yes {"api": "http://rebase.neb.com/rebase/rebase.ftp.html", "apiType": "FTP"} ["DOI"] http://rebase.neb.com/rebase/rebcit.html [] unknown unknown [] [] {} 2016-09-27 2017-11-21 +r3d100012173 FlyCircuit eng [{"additionalName": "A Database of Drosophila Brain Neurons", "additionalNameLanguage": "eng"}] http://www.flycircuit.tw/ ["RRID:SCR_006375", "RRID:nif-0000-07738"] ["http://www.flycircuit.tw/modules.php?name=Feedback&parent=help"] FlyCircuit is a public database for online archiving, cell type inventory, browsing, searching, analysis and 3D visualization of individual neurons in the Drosophila brain. The FlyCircuit Database currently contains about 30,000 high resolution 3D brain neural images of the drosophila fruit fly brain that are combined into a neural circuitry network that researchers can use as a blueprint to further explore how the brain of a fruit fly processes external sensory signals (i.e. how vision, hearing, and smell are transmitted to the central nerve system). eng ["disciplinary"] {"size": "about 30.000 images", "updatedp": "2016-09-28"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.nchc.org.tw/en/inner.php?CONTENT_ID=524 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["animal behavior", "circuits", "genes"] [{"institutionName": "Brain Research Center", "institutionAdditionalName": ["BRC"], "institutionCountry": "TWN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://brc.life.nthu.edu.tw/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://brc.life.nthu.edu.tw/contactus.html"]}, {"institutionName": "National Center for High-performance Computing", "institutionAdditionalName": ["NARLabs", "NCHC", "National Applied Research Laboratories"], "institutionCountry": "TWN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nchc.org.tw/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nchc.org.tw/en/inner.php?CONTENT_ID=576"]}] [{"policyName": "Big Data", "policyURL": "http://www.nchc.org.tw/en/inner.php?CONTENT_ID=704"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.flycircuit.tw/modules.php?name=introduction&parent=introduction&op=introduction"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} FlyCircuits is hosted on github, https://gist.github.com/jefferis/bbaf5d53353b3944c090 2016-09-28 2017-04-20 +r3d100012174 GeoPortal.rlp eng [] http://www.geoportal.rlp.de/portal/en/ [] ["http://www.geoportal.rlp.de/portal/kontakt.html", "kontakt@geoportal.rlp.de"] The GeoPortal.rlp allows the central search and visualization of geo data. Inside the geo data infrastructure of Rhineland-Palatinate the GeoPortal.rlp inherit the central duty a service orientated branch exchange between user and offerer of geo data. The GeoPortal.rlp establishes the access to geo data over the electronic network. The GeoPortal.rlp was brought on line on January, 8th 2007 for the first time, on February, 2nd 2011 it occured a site-relaunch. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007-01-08 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geoportal.rlp.de/portal/en/information/about-us.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Rheinland-Pfalz", "Rhineland-Palatinate", "boundaries", "elevation", "environment", "farming", "geoscientific information", "land-use plan", "location", "planning cadastre", "society"] [{"institutionName": "Landesamt f\u00fcr Vermessung und Geobasisinformation Rheinland-Pfalz, Geodateninfrastruktur-RP", "institutionAdditionalName": ["GDI-RP", "LA for Geo Information Rhineland-Palatinate in the Ministry of the Interior and Sports, Central Office GDI-RP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lvermgeo.rlp.de/de/geodaten/geodateninfrastruktur-rheinland-pfalz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Landesregierung Rheinland-Pfalz", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rlp.de/de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rlp.de/de/kontakt/"]}] [{"policyName": "Disclaimer", "policyURL": "https://lvermgeo.rlp.de/de/geodaten/opendata/gewaehrleistung-haftung/"}, {"policyName": "INSPIRE guideline", "policyURL": "http://www.geoportal.rlp.de/mediawiki/index.php/INSPIRE-Richtlinie"}, {"policyName": "LGDIG - Landesgeodateninfrastrukturgesetz", "policyURL": "http://www.geoportal.rlp.de/mediawiki/index.php/LGDIG"}, {"policyName": "LGDIGDVO - Landesverordnung zur Durchf\u00fchrungsverordnung des Landesgeodateninfrastrukturgesetzes in Rheinland-Pfalz", "policyURL": "http://www.geoportal.rlp.de/mediawiki/index.php/LGDIGDVO"}, {"policyName": "Tutorials", "policyURL": "http://www.geoportal.rlp.de/mediawiki/index.php/Tutorials"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/dl-de/by-2-0"}] closed [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://www.geoportal.rlp.de/mediawiki/index.php/Informationen_zu_INSPIRE_Downloaddiensten#Rheinland-Pfalz", "syndicationType": "ATOM"} 2016-09-29 2016-10-02 +r3d100012176 Dog Genome SNP Database eng [{"additionalName": "DoGSD", "additionalNameLanguage": "eng"}] http://dogsd.big.ac.cn/snp/index.jsp [] ["wangyanqing@big.ac.cn"] Dog Genome SNP Database (DoGSD) is a data container for the variation information of dog/wolf genomes. It was designed and constructed as an SNPs detector and visualization tool to provide the research community a useful resource for the study of dog's population, evolution, phenotype and life habit. eng ["disciplinary"] {"size": "DoGSD contains 19 millions non-redundant SNPs retrived from dbSNP (ver 139) and called from 77 individual smaples", "updatedp": "2016-10-04"} 2014 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://bigd.big.ac.cn/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["canidae", "dog", "genetics", "genomics", "grey wolf", "single nucleotide polymorphism"] [{"institutionName": "Chinese Academy of Sciences, Beijing Institute of Genomics, BIG Data Center", "institutionAdditionalName": ["BIG Data Center", "BIGD", "\u4e2d\u56fd\u79d1\u5b66\u9662\u5317\u4eac\u57fa\u56e0\u7ec4\u7814\u7a76\u6240, \u751f\u547d\u4e0e\u5065\u5eb7\u5927\u6570\u636e\u4e2d\u5fc3", "\u751f\u547d\u4e0e\u5065\u5eb7\u5927\u6570\u636e\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://bigd.big.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://bigd.big.ac.cn/contact"]}, {"institutionName": "Chinese Academy of Sciences, Kunming Institute of Zoology", "institutionAdditionalName": ["KIZ", "Kunming Institute of Zoology", "\u4e2d\u56fd\u79d1\u5b66\u9662\u6606\u660e\u52a8\u7269\u7814\u7a76\u6240"], "institutionCountry": "CHN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://english.kiz.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@mail.kiz.ac.cn"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dogsd.big.ac.cn/snp/index.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "http://bigd.big.ac.cn/mission"}] open [] ["unknown"] {"api": "ftp://download.big.ac.cn/dogsd/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} 2016-10-04 2016-10-12 +r3d100012177 JenAge Ageing Factor Database eng [{"additionalName": "AgeFactDB", "additionalNameLanguage": "eng"}] http://agefactdb.jenage.de/ [] ["info@leibniz-fli.de"] The JenAge Ageing Factor Database AgeFactDB is aimed at the collection and integration of ageing phenotype and lifespan data. Ageing factors are genes, chemical compounds or other factors such as dietary restriction, for example. In a first step ageing-related data are primarily taken from existing databases. In addition, new ageing-related information is included both by manual and automatic information extraction from the scientific literature. Based on a homology analysis, AgeFactDB also includes genes that are homologous to known ageing-related genes. These homologs are considered as candidate or putative ageing-related genes. eng ["disciplinary"] {"size": "Aging factors 16.599, observations 9.611", "updatedp": "2016-10-12"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://agefactdb.jenage.de/about.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ageing", "ageing phenotype data", "homo sapiens", "lifespan", "research into ageing", "systems biology"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "German Ministry for Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "2014", "institutionContact": ["https://www.bmbf.de/de/kontakt.php"]}, {"institutionName": "JenAge Information Centre", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://info-centre.jenage.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@leibniz-fli.de"]}, {"institutionName": "Leibniz-Institut f\u00fcr Alternsforschung - Fritz-Lipmann-Institut", "institutionAdditionalName": ["FLI", "Fritz-Lipmann-Institut", "Leibniz Institute for Age Research", "Leibniz Institute on Aging \u2013 Fritz Lipmann Institute", "Leibniz-Institut f\u00fcr Altersforschung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.leibniz-fli.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@leibniz-fli.de", "jsuehnel@fli-leibniz.de", "rhuehne@fli-leibniz.de", "thalheim@fli-leibniz.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://agefactdb.jenage.de/upper-menu/imprint.html"}] restricted [] ["unknown"] {} ["none"] http://agefactdb.jenage.de/ [] unknown unknown [] [] {} Sources: GenAge, GenDR, GPSDB, HomoloGene; Lifespan Oberservations Database, NCBI Gene, UniProtKB 2016-10-06 2016-10-15 +r3d100012178 Cancer Genome Anatomy Project eng [{"additionalName": "CGAP", "additionalNameLanguage": "eng"}] https://cgap.nci.nih.gov/cgap_mitelman_retire_notice.html ["RRID:SCR_003072", "RRID:nif-0000-30468"] ["ncicbiit@mail.nih.gov"] >>>!!!<<< Noticed 26.08.2020: The NCI CBIIT instance of the CGAP no longer exist on this website. The Mitelman Database of Chromosome Aberrations and Gene Fusions in Cancer has a new home at the NCI-funded Institute for Systems Biology Cancer Genomics Cloud available at the following location: https://mitelmandatabase.isb-cgc.org >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 1997 2020-08-26 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["RNAI", "Tumor Gene Index", "chromosomes", "cytogenetics", "expressed sequence tags (ESTs)", "gene expression patterns", "genes", "genomics", "pathway", "single nucleotide polymorphisms (SNPs)"] [{"institutionName": "National Institutes of Health, National Cancer Institute", "institutionAdditionalName": ["NIH National Cancer Institute", "NIH, NCI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81", "RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ocg.cancer.gov/about-ocg/data-policies"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.genome.jp/kegg/legal.html"}] closed [] ["unknown"] {} ["none"] [] yes yes [] [] {} description (outdated): The NCI’s Cancer Genome Anatomy Project (CGAP) is an online resource designed to provide the scientific community with detailed characterization of gene expression in biological tissues. By characterizing normal, pre-cancer and cancer cells, CGAP aims to improve detection, diagnosis and treatment for the patient. Moreover, CGAP provides access to cDNA clones to the research community through a variety of distributors. CGAP provides a wide range of genomic data and resources 2016-10-07 2021-04-20 +r3d100012179 Ag-Analytics.org eng [] https://www.ag-analytics.org [] ["support@analytics.ag"] Ag-Analytics is an online open source database of various economic and environmental data. It automates the collection, formatting, and processing of several different commonly used datasets, such as the National Agricultural Statistics Service (NASS), the Agricultural Marketing Service (AMS), Risk Management agency (RMA), the PRISM weather database, and the U.S. Commodity Futures Trading Commission (CFTC). All the data have been cleaned and well-documented to save users the inconvenience of scraping and cleaning the data themselves. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ag-analytics.org/AgRiskManagement/About [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CO2 Calculator", "Crop Insurance", "Crop Yield", "Grape Cost", "Spot Price", "agricultural and development finance", "agriculture", "census", "climate change", "economics", "finance", "financial analytics", "insurance data", "market shocks", "weather"] [{"institutionName": "Cornell University, Charles H. Dyson School of Applied Economics and Management", "institutionAdditionalName": ["Cornell University, Dyson School"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dyson.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cornell.edu/contact/"]}] [{"policyName": "Ag-Analytics.Org Terms of Use and Copyright Notice", "policyURL": "https://www.ag-analytics.org/AgRiskManagement/Documents/Terms_Copyright.pdf"}, {"policyName": "Summary of Terms", "policyURL": "https://www.ag-analytics.org/AgRiskManagement/Terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.ag-analytics.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ag-analytics.org/AgRiskManagement/Documents/Terms_Copyright.pdf"}] closed [] [] {"api": "https://www.ag-analytics.org/AgRiskManagement/APIdocs", "apiType": "REST"} ["none"] https://www.ag-analytics.org/AgRiskManagement/Documents/Terms_Copyright.pdf [] yes yes [] [] {} Ag-Analytics GitHub repository: https://github.com/woodardjoshua/Ag-Analytics 2016-10-07 2021-08-25 +r3d100012181 Brain-CODE eng [{"additionalName": "Brain-Centre for Ontario Data Exploration", "additionalNameLanguage": "eng"}] https://www.braincode.ca/ [] ["help@braincode.ca"] Brain-CODE is a large-scale informatics platform that manages the acquisition and storage of multidimensional data collected from participants with a variety of brain disorders. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.braininstitute.ca/braincode/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["animal", "brain disorders", "cerebral palsy", "demography", "depression", "epilepsy", "genomics", "human", "imaging (MRI, EEG, MEG, DTI, Ocular)", "neurodegenerative diseases", "proteomics"] [{"institutionName": "Ontario Brain Institute", "institutionAdditionalName": ["IOC", "Institut Ontarien du Cerveau", "OBI"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.braininstitute.ca/homepage", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.braininstitute.ca/contact-us"]}] [{"policyName": "BRAIN-CODE INFORMATICS GOVERNANCE POLICY", "policyURL": "https://www.braincode.ca/sites/default/files/about/OBI-Governance-v2-2016-02-03.pdf#page=9&zoom=auto,69,720"}, {"policyName": "Platform Terms of Use Agreement", "policyURL": "https://www.braincode.ca/content/platform-terms-use-agreement"}, {"policyName": "Security Policies", "policyURL": "https://www.braincode.ca/sites/default/files/about/BrainCODE_SecurityPolicies_v1_4_20140509_TopLevel-PUBLIC_0.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.braincode.ca/sites/default/files/about/OBI-Governance-v2-2016-02-03.pdf#page=9&zoom=auto,69,720"}] restricted [{"dataUploadLicenseName": "BRAIN-CODE INFORMATICS GOVERNANCE POLICY", "dataUploadLicenseURL": "https://www.braincode.ca/sites/default/files/about/OBI-Governance-v2-2016-02-03.pdf#page=9&zoom=auto,69,720"}] ["other"] yes {} ["none"] https://www.braincode.ca/sites/default/files/about/OBI-Governance-v2-2016-02-03.pdf#page=9&zoom=auto,69,720 [] unknown yes [] [] {} Brain-CODE attracts investment in Ontario from a global neuroscience industry worth $300 billion a year 2016-10-14 2016-10-22 +r3d100012182 OASIS eng [{"additionalName": "Open Access Series of Imaging Studies", "additionalNameLanguage": "eng"}] https://www.oasis-brains.org/ ["RRID:SCR_007385", "RRID:nif-0000-00387"] ["dmarcus@wustl.edu"] OASIS-3 is the latest release in the Open Access Series of Imaging Studies (OASIS) that aimed at making neuroimaging datasets freely available to the scientific community. By compiling and freely distributing this multi-modal dataset, we hope to facilitate future discoveries in basic and clinical neuroscience. Previously released data for OASIS-Cross-sectional (Marcus et al, 2007) and OASIS-Longitudinal (Marcus et al, 2010) have been utilized for hypothesis driven data analyses, development of neuroanatomical atlases, and development of segmentation algorithms. OASIS-3 is a longitudinal neuroimaging, clinical, cognitive, and biomarker dataset for normal aging and Alzheimer’s Disease. The OASIS datasets hosted by central.xnat.org provide the community with open access to a significant database of neuroimaging and processed imaging data across a broad demographic, cognitive, and genetic spectrum an easily accessible platform for use in neuroimaging, clinical, and cognitive research on normal aging and cognitive decline. All data is available via www.oasis-brains.org. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.oasis-brains.org/#about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["MRI", "PET", "Positron Emission Tomography", "aging", "alzheimer's disease", "brain", "gender", "lifespan", "magnetic resonance imaging", "neuroimaging"] [{"institutionName": "Alzheimer\u2019s Association", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.alz.org/", "institutionIdentifier": ["ROR:0375f4d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://action.alz.org/PersonifyEbusiness/Default.aspx?TabID=1500"]}, {"institutionName": "Harvard University, Howard Hughes Medical Institute", "institutionAdditionalName": ["HHMI", "Howard Hughes Medical Institute"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hhmi.org/", "institutionIdentifier": ["ROR:006w34k90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhmi.org/contact-us", "randy_buckner@harvard.edu"]}, {"institutionName": "James S. McDonnell Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jsmf.org/", "institutionIdentifier": ["ROR:03dy4aq19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@jsmf.org"]}, {"institutionName": "Mental Illness and Neuroscience Discovery Institute", "institutionAdditionalName": ["MIND Institute"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nmr.mgh.harvard.edu/martinos/ctrFunding/MIND.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["julieg@nmr.mgh.harvard.edu"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Washington University School of Medicine, Department of Neurology, Charles F. and Joanne Knight Alzheimer's Disease Research Center", "institutionAdditionalName": ["Charles F. and Joanne Knight Alzheimer's Disease Research Center", "Knight ADRC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://knightadrc.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://knightadrc.wustl.edu/ContactUs/Phone.htm"]}, {"institutionName": "Washington University School of Medicine, Neuroinformatics Research Group", "institutionAdditionalName": ["NRG", "Neuroinformatics Research Group"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nrg.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nrg.wustl.edu/contact-us/"]}] [{"policyName": "OASIS Data Usage Agreement - DUA", "policyURL": "https://www.oasis-brains.org/#access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.oasis-brains.org/#access"}] closed [] ["other"] yes {"api": "ftp://ftp.nrg.wustl.edu/data/", "apiType": "FTP"} ["none"] https://www.oasis-brains.org/#access [] unknown unknown [] [] {} OASIS is covered by Thomson Reuters Data Citation Index. The OASIS website is powered by XNAT. XNAT is an open source imaging informatics platform developed by the Neuroinformatics Research Group at Washington University. 2016-10-14 2021-09-21 +r3d100012183 CMU Graphics Lab Motion Capture Database eng [{"additionalName": "Carnegie Mellon University Motion Capture Database", "additionalNameLanguage": "eng"}] http://mocap.cs.cmu.edu/ [] ["jkh+mocap@cs.cmu.edu"] Collection of various motion capture recordings (walking, dancing, sports, and others) performed by over 140 subjects. The database contains free motions which you can download and use. There is a zip file of all asf/amc's on the FAQs page. eng ["disciplinary"] {"size": "2.605 trials in 6 categories and 23 subcategories", "updatedp": "2016-10-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://mocap.cs.cmu.edu/info.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ViconIQ", "biomechanics", "coordination", "human interaction", "locomotion", "motion"] [{"institutionName": "Carnegie Mellon University", "institutionAdditionalName": ["CMU"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cmu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cmu.edu/directory-contact/index.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2000-09-01", "responsibilityEndDate": "2006-04-30", "institutionContact": []}] [{"policyName": "How can I use this data", "policyURL": "http://mocap.cs.cmu.edu/faqs.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://mocap.cs.cmu.edu/"}] closed [] ["unknown"] {} ["none"] http://mocap.cs.cmu.edu/ ["none"] unknown unknown [] [] {} The collection of the data in this database was supported by NSF Grant #0196217. Starting in June 2016, KIT has integrated motion recordings from the CMU Graphics Lab Motion Capture Database as a subset into the KIT Whole-Body Human Motion Database (https://motion-database.humanoids.kit.edu/). These motions can be found by filtering the list of motions for the "Carnegie Mellon University (CMU)" institution. The motion recordings are provided as C3D files and as the corresponding MMM representations. 2016-10-17 2021-10-08 +r3d100012184 KIT Whole-Body Human Motion Database eng [] https://motion-database.humanoids.kit.edu/ [] ["https://motion-database.humanoids.kit.edu/contact/", "motiondatabase@lists.kit.edu"] With the KIT Whole-Body Human Motion Database, we aim to provide a simple way of sharing high-quality motion capture recordings of human whole-body motion. In addition, with the Motion Annotation Tool (https://motion-annotation.humanoids.kit.edu/ ), we aim to collect a comprehensive set of whole-body motions along with natural language descriptions of these motions (https://motion-annotation.humanoids.kit.edu/dataset/). eng ["disciplinary"] {"size": "1.529 motion experiments; 210 subjects; 98 objects", "updatedp": "2019-05-15"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://h2t.anthropomatik.kit.edu/english/1040.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Motion Annotation Tool", "Motion Description Tree (MDT)", "anthropometric", "whole-body motions"] [{"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Department of Informatics, Institute for Anthropomatics and Robotics, High Performance Humanoid Technologies", "institutionAdditionalName": ["KIT, IAR, H\u00b2T", "Karlsruher Institut f\u00fcr Technologie, Fakult\u00e4t f\u00fcr Informatik, Institut f\u00fcr Anthropomatik und Robotik, Hochperformante Humanoide Technologien"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://h2t.anthropomatik.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://h2t.anthropomatik.kit.edu/english/530.php"]}] [{"policyName": "KIT policy", "policyURL": "http://www.rdm.kit.edu/downloads/KIT-FDM-Policy.pdf"}, {"policyName": "Legals", "policyURL": "https://www.informatik.kit.edu/english/impressum.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://motion-database.humanoids.kit.edu/faq/#register"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.sle.kit.edu/downloads/AmtlicheBekanntmachungen/2014_AB_056.pdf"}] restricted [] [] {"api": "https://motion-database.humanoids.kit.edu/faq/#access_methods", "apiType": "other"} ["other"] https://motion-database.humanoids.kit.edu/faq/#cite [] unknown unknown [] [] {} The KIT Whole-Body Human Motion Database is used within the European projects KoroiBot (grant agreement no. 611909), WALK-MAN (grant agreement no. 611832), Xperience (grant agreement no. 270273) funded by the European Union Seventh Framework Programme, SecondHands (grant agreement no. 643950), TimeStorm (grant agreement no. 641100), I-SUPPORT (grant agreement no. 643666) funded by the European Union H2020 Programme, PACO-PLUS (grant agreement no. 027657) funded by the European Union Sixth Framework Programme, and the Collaborative Research Project on Humanoid Robots (SFB 588) funded by the German Research Foundation (DFG). 2016-10-17 2021-10-08 +r3d100012185 Birkbeck Research Data eng [{"additionalName": "BiRD", "additionalNameLanguage": "eng"}, {"additionalName": "Birkbeck Data Repository", "additionalNameLanguage": "eng"}] http://researchdata.bbk.ac.uk [] ["researchdata@bbk.ac.uk"] BiRD is a pilot service, run by the library. It allows all researchers at Birkbeck to upload data, and get a DOI. It allows long term storage of Birkbeck's high quality research data, supporting publications. eng ["institutional"] {"size": "38 Datasets", "updatedp": "2021-07-20"} 2016-10-24 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://researchdata.bbk.ac.uk/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["interviews", "multidisciplinary", "psychology", "survey", "task-switching", "visual methodologies"] [{"institutionName": "Birkbeck, University of London", "institutionAdditionalName": ["BBK"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bbk.ac.uk", "institutionIdentifier": ["ROR:02mb95055", "RRID:SCR_011119", "RRID:nlx_78440"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BiRD Repository Policies", "policyURL": "https://researchdata.bbk.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["EPrints"] {} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://researchdata.bbk.ac.uk/cgi/search/archive/simple/export_bbkdr_Atom.xml?screen=Search&dataset=archive&_action_export=1&output=Atom&exp=0%7C1%7C%7Carchive%7C-%7Cq%3Aabstract%2Fbounding_box_east_edge%2Fbounding_box_north_edge%2Fbounding_box_south_edge%2Fbounding_box_west_edge%2Fcollection_date_date_from%2Fcollection_date_date_to%2Fcreators_name%2Fdate%2Fdocuments%2Fgeographic_cover%2Fgrant%2Flanguage%2Flegal_ethical%2Fmetadata_language%2Foriginal_publisher%2Fprovenance%2Frelated_resources_title%2Frelated_resources_type%2Frelated_resources_url%2Frestrictions%2Ftemporal_cover_date_from%2Ftemporal_cover_date_to%2Ftitle%3AALL%3AIN%3Aapi%7C-%7Ceprint_status%3Aeprint_status%3AANY%3AEQ%3Aarchive%7Cmetadata_visibility%3Ametadata_visibility%3AANY%3AEQ%3Ashow&n=", "syndicationType": "ATOM"} Data in the Birkbeck Data Repository is stored on an Arkivum server. 2016-10-18 2021-07-20 +r3d100012186 SilkPathDB eng [{"additionalName": "A Comprehensive Resource for Silkworm Pathogens", "additionalNameLanguage": "eng"}, {"additionalName": "Silkworm Pathogen Database", "additionalNameLanguage": "eng"}] http://silkpathdb.swu.edu.cn/ [] ["https://people.biodb.org/contact"] Silkworm Pathogen Database (SilkPathDB) is a comprehensive resource for studying on pathogens of silkworm, including microsporidia, fungi, bacteria and virus. SilkPathDB provides access to not only genomic data including functional annotation of genes and gene products, but also extensive biological information for gene expression data and corresponding researches. SilkPathDB will be help with researches on pathogens of silkworm as well as other Lepidoptera insects. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://silkpathdb.swu.edu.cn/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bombys mandarina", "Bombyx mori Dazao", "Lepidoptera insects", "Papilio", "Pieris rapae", "bacteria infection", "fungi infection", "microsporidia infection", "virus infection"] [{"institutionName": "Southwest University, State Key Laboratory of Silkworm Genome Biology", "institutionAdditionalName": ["SWU, SKLSGB", "\u5bb6\u8695\u57fa\u56e0\u7ec4\u751f\u7269\u5b66\u56fd\u5bb6\u91cd\u70b9\u5b9e\u9a8c\u5ba4"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://sklsgb.swu.edu.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://silkpathdb.swu.edu.cn/?q=contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://silkpathdb.swu.edu.cn/"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2016-10-19 2021-10-08 +r3d100012187 SilkDB 3.0 eng [{"additionalName": "SilkWorm", "additionalNameLanguage": "eng"}, {"additionalName": "Silkworm Genome Database", "additionalNameLanguage": "eng"}] https://silkdb.bioinfotoolkits.net/ ["RRID:SCR_007926", "RRID:nif-0000-03462"] ["xiaqy@swu.edu.cn", "yiwang28@swu.edu.cn", "zezhang@swu.edu.cn"] SilkDB is a database of the integrated genome resource for the silkworm, Bombyx mori. This database provides access to not only genomic data including functional annotation of genes, gene products and chromosomal mapping, but also extensive biological information such as microarray expression data, ESTs and corresponding references. SilkDB will be useful for the silkworm research community as well as comparative genomics eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://silkdb.bioinfotoolkits.net/main/help/-1 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "expression data", "functional annotation mapping", "functional chromosome mapping", "genes", "genomics", "sequences"] [{"institutionName": "Southwest University", "institutionAdditionalName": ["SWU"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.swu.edu.cn/", "institutionIdentifier": ["ROR:01kj4z117"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://academic.oup.com/nar/article/48/D1/D749/5603220"}] restricted [] ["unknown"] {} ["none"] https://silkdb.bioinfotoolkits.net/main/species-info/BMSK0001209 ["none"] yes yes [] [] {} Mirror servers: SilkDB at COU, SilkDB at SWU, SilkDB at BGI 2016-10-19 2021-09-22 +r3d100012188 Research Data Exchange Platform - Johanna Mestorf Academy eng [{"additionalName": "Research Data Exchange Platform - JMA", "additionalNameLanguage": "eng"}] https://www.jma.uni-kiel.de/en/research-projects/data-exchange-platform [] ["https://www.jma.uni-kiel.de/en/research-projects/data-exchange-platform/pagefeedback"] The Johanna Mestorf Academy provides data from several archaeology related projects. JMA supports open access/open data and open formats. The JMA promotes research and education pertaining to the field of ‘Societal, Environmental, Cultural Change’ (Kiel SECC), which is one of the four research foci of CAU. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.jma.uni-kiel.de/en/about-JMA [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Aves vigilantes", "Denghoog", "Gabriele Symeoni", "Grus vigilans", "Mesolithikum", "Okoli\u0161te", "Paolo Giovio", "QGIS", "RADON", "RADON-B", "SHKR", "correspondance-analysis", "early modern period", "emblem studies", "imprese", "landscapes", "network-analysis", "trademark"] [{"institutionName": "Christian-Albrechts-Universit\u00e4t zu Kiel, Johanna Mestorf Academy", "institutionAdditionalName": ["CAU, JMA"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jma.uni-kiel.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.jma.uni-kiel.de/en/contact"]}] [{"policyName": "Hinweise und Regeln zum verantwortlichen Umgang mit Forschungsfreiheit und Forschungsrisiken", "policyURL": "http://www.uni-kiel.de/gf-praesidium/de/recht/interne-richtlinien/forschungsfreiheit-und-forschungsrisiken.pdf"}, {"policyName": "Leitlinien zur F\u00f6rderung von Open Access an der CAU", "policyURL": "https://www.praesidium.uni-kiel.de/de/dokumente/leitlinien-der-cau-zu-open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.praesidium.uni-kiel.de/de/dokumente/leitlinien-der-cau-zu-open-access"}] restricted [] [] {} ["none"] [] yes yes [] [] {} 2016-10-19 2021-10-07 +r3d100012189 T3DB eng [{"additionalName": "Toxic Exposome Database", "additionalNameLanguage": "eng"}, {"additionalName": "Toxin and Toxin Target Database", "additionalNameLanguage": "eng"}] http://www.t3db.ca/ ["RRID:OMICS_01592", "RRID:SCR_002672", "RRID:nif-0000-22933"] ["http://www.t3db.ca/w/contact"] The Toxin and Toxin Target Database is a unique bioinformatics resource that combines detailed toxin data with comprehensive toxin target information. The focus of the T3DB is on providing mechanisms of toxicity and target proteins for each toxin. This dual nature of the T3DB, in which toxin and toxin target records are interactively linked in both directions, makes it unique from existing databases. eng ["disciplinary"] {"size": "3,673 toxins described by 41,733 synonyms", "updatedp": "2016-10-19"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.t3db.ca/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "bioinformatics", "cellular interactions", "chemical structure", "drugs", "food toxins", "medicine", "molecular interactions", "pesticides", "pollutants", "toxic exposome"] [{"institutionName": "Alberta Innovates Health Solutions", "institutionAdditionalName": ["AIHS"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.aihealthsolutions.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.aihealthsolutions.ca/contact/general-inquiries/"]}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Genome Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://genomealberta.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://genomealberta.ca/contact-us/"]}, {"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.metabolomicscentre.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.metabolomicscentre.ca/contact"]}, {"institutionName": "University of Alberta, Faculty of Science, Departments of Biological Sciences and Computing Science, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Wishart Lab @WishartLab"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.t3db.ca/downloads"}] closed [] ["unknown"] {} ["none"] http://www.t3db.ca/ ["none"] unknown unknown [] [] {} Each toxin record (ToxCard) contains over 90 data fields and holds information such as chemical properties and descriptors, toxicity values, molecular and cellular interactions, and medical information. 2016-10-19 2021-09-22 +r3d100012190 ZBW Journal Data Archive eng [{"additionalName": "Leibniz Information Centre for Economics Journal Data Archive", "additionalNameLanguage": "eng"}] http://journaldata.zbw.eu ["FAIRsharing_doi:10.25504/FAIRsharing.Z1Y4J2"] ["journaldata @ zbw.eu", "s.vlaeminck@zbw.eu"] The ZBW Journal Data Archive is a service for editors of journals in economics and management. The Journal Data Archive offers the possibility for journal authors of papers that contain empirical work, simulations or experimental work to store the data, programs, and other details of computations, to make these files publicly available and to support confirmability and replicability of their published research papers. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-09-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://journaldata.zbw.eu/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["economics", "management", "statistics"] [{"institutionName": "ZBW - Leibniz Information Centre for Economics", "institutionAdditionalName": ["Deutsche Zentralbibliothek f\u00fcr Wirtschaftswissenschaften", "German National Library of Economics", "ZBW Leibniz-Informationszentrum Wirtschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.zbw.eu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["journaldata@zbw.eu"]}] [{"policyName": "User Manual", "policyURL": "http://www.edawax.de/2542-2/"}, {"policyName": "ZBW Journal Data Archive - Deposit License", "policyURL": "http://www.edawax.de/wp-content/uploads/2016/07/Deposit-License_ZBW_JDA_EN-2016-07-21-final.pdf"}, {"policyName": "ZBW Journal Data Archive Kooperationsvertrag", "policyURL": "http://www.edawax.de/wp-content/uploads/2016/10/Mustervereinbarung_Nutzung_ZBW_Journal-Data-Archive_2016-10-18.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["CKAN"] {"api": "http://journaldata.zbw.eu/dataset", "apiType": "REST"} ["DOI"] ["ORCID", "other"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} The ZBW Journal Data Archive has been developed in the course of the DFG-funded project EDaWaX ('European Data Watch Extended') between 2011 and 2016. 2016-10-20 2021-11-16 +r3d100012191 CMU Multi-Modal Activity Database - Kitchen Capture eng [{"additionalName": "CMU-MMAC Database", "additionalNameLanguage": "eng"}, {"additionalName": "Carnegie Mellon University Multi-Modal Activity Database", "additionalNameLanguage": "eng"}, {"additionalName": "Grand Challenge Data Collection", "additionalNameLanguage": "eng"}] http://kitchen.cs.cmu.edu/ [] ["jkh+mocap@cs.cmu.edu"] The CMU Multi-Modal Activity Database (CMU-MMAC) database contains multimodal measures of the human activity of subjects performing the tasks involved in cooking and food preparation. The CMU-MMAC database was collected in Carnegie Mellon's Motion Capture Lab. A kitchen was built and to date twenty-five subjects have been recorded cooking five different recipes: brownies, pizza, sandwich, salad, and scrambled eggs. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.cmu.edu/qolt/Research/projects/current-projects/grand-challenge.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["calibration", "human activity", "kitchen", "motion capture", "multimodal measures", "synchronization", "teleoperator"] [{"institutionName": "Carnegie Mellon University, Qualiy of Life Technologies Center", "institutionAdditionalName": ["CMU, QoLT Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/qolt/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cmu.edu/qolt/Contact/index.html"]}, {"institutionName": "Carnegie Mellon University, Robotics Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ri.cmu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ri.cmu.edu/ri_static_content.html?menu_id=248"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://nsf.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "How to load data", "policyURL": "http://kitchen.cs.cmu.edu/Tools/Howtoloaddata.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://kitchen.cs.cmu.edu/index.php"}] closed [] ["other"] {} ["none"] http://kitchen.cs.cmu.edu/index.php [] unknown unknown [] [] {} The data used in this paper was obtained from kitchen.cs.cmu.edu and the data collection was funded in part by the National Science Foundation under Grant No. EEEC-0540865. 2016-10-20 2016-10-26 +r3d100012192 NCBI SARS-CoV eng [{"additionalName": "SARS-CoV", "additionalNameLanguage": "eng"}, {"additionalName": "Severe Acute Respiratory Syndrome Coronavirus", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/genomes/SARS/SARS.html [] ["genomes@ncbi.nlm.nih.gov"] This Web resource provides data and information relevant to SARS coronavirus. It includes links to the most recent sequence data and publications, to other SARS related resources, and a pre-computed alignment of genome sequences from various isolates. The genome of SARS-CoV consists of a single, positive-strand RNA that is approximately 29,700 nucleotides long. The overall genome organization of SARS-CoV is similar to that of other coronaviruses. The reference genome includes 13 genes, which encode at least 14 proteins. Two large overlapping reading frames (ORFs) encompass 71% of the genome. The remainder has 12 potential ORFs, including genes for structural proteins S (spike), E (small envelope), M (membrane), and N (nucleocapsid). Other potential ORFs code for unique putative SARS-CoV-specific polypeptides that lack obvious sequence similarity to known proteins. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "RNA", "SARS", "genomics", "nucleotides", "sequences"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncbi.nlm.nih.gov/home/about/contact.shtml"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States National Library of Medicine", "institutionAdditionalName": ["NLM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies.shtml"}] closed [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2016-10-21 2020-04-23 +r3d100012193 GUDMAP eng [{"additionalName": "GenitoUrinary Development Molecular Anatomy Project", "additionalNameLanguage": "eng"}] https://www.gudmap.org/index.html ["RRID:SCR_001554", "RRID:nif-0000-33426", "RRID:nlx_152871"] ["https://www.gudmap.org/contact/"] The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) is a consortium of laboratories working to provide the scientific and medical community with tools to facilitate research. The key components are: (1) a molecular atlas of gene expression for the developing organs of the GenitoUrinary (GU) tract; (2) a high resolution molecular anatomy that highlights development of the GU system; (3) mouse strains to facilitate developmental and functional studies within the GU system; (4) tutorials describing GU organogenesis; and (5) rapid access to primary data via the GUDMAP database. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.gudmap.org/About/Goal.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "biology", "gene expression", "microarray gene expression", "mouse", "nus muculus", "ontology", "stem cells", "transgenic mouse"] [{"institutionName": "Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD", "National Institute of Child Health and Human Development"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/Pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nichd.nih.gov/Pages/Contact.aspx"]}, {"institutionName": "HHS.gov", "institutionAdditionalName": ["HHS.gov U.S. Department of Health & Human Services"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hhs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hhs.gov/about/contact-us/index.html"]}, {"institutionName": "NIH National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niddk.nih.gov/Pages/contact-us.aspx"]}, {"institutionName": "National Insitutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.gudmap.org/About/Usage.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.gudmap.org/index.html"}] restricted [] ["unknown"] {} ["none"] http://www.gudmap.org/About/Usage.html [] unknown unknown [] [] {} 2016-10-21 2021-10-07 +r3d100012194 CKAN @ IoT Lab eng [] http://ckan.iotlab.eu/ [] ["mhazan@mandint.org"] IoT Lab is a research platform exploring the potential of crowdsourcing and Internet of Things for multidisciplinary research with more end-user interactions. IoT Lab is a European Research project which aims at researching the potential of crowdsourcing to extend IoT testbed infrastructure for multidisciplinary experiments with more end-user interactions. It addresses topics such as: - Crowdsourcing mechanisms and tools; - “Crowdsourcing-driven research”; - Virtualization of crowdsourcing and testbeds; - Ubiquitous Interconnection and Cloudification of testbeds; - Testbed as a Service platform; - Multidisciplinary experiments; - End-user and societal value creation; - Privacy and personal data protection. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40802 Communication, High-Frequency and Network Technology, Theoretical Electrical Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://ckan.iotlab.eu/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["F-Interop", "actuators", "historical", "humidity", "live", "luminance", "meteo", "motion", "nanoscience", "performance test tools", "relay", "sensors", "temperature"] [{"institutionName": "IoT Lab", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iotlab.eu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iotlab.eu/IOTLabProject/Contact"]}, {"institutionName": "Mandat International", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mandint.org/", "institutionIdentifier": ["ROR:01r0w2t07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mandint.org/en/contact"]}] [{"policyName": "Terms and conditions of the IOT Lab Project", "policyURL": "http://www.iotlab.eu/IOTLabProject/PrivacyRulesAndGuidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://www.opendefinition.org/licenses/cc-by-sa"}] restricted [] ["CKAN"] {"api": "http://docs.ckan.org/en/ckan-2.4.1/api/", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2016-10-24 2021-09-03 +r3d100012195 SuperTarget eng [] http://bioinformatics.charite.de/supertarget/ ["FAIRsharing_doi:10.25504/FAIRsharing.se4zhk", "OMICS_01591", "RRID:SCR_002696", "RRID:nif-0000-00416"] ["robert.preissner@charite.de"] SUPERTARGET is a database developed in the first place to collect informations about drug-target relations. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://bioinformatics.charite.de/supertarget/index.php?site=about#faq2 [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biomedicine", "biomolecule", "biotechnology", "chemical structure", "cheminformatics", "compound", "drug metabolism", "molecular biology", "pathway", "pharmaceutical", "pharmacology", "protein-protein interaction"] [{"institutionName": "Charit\u00e9-Universit\u00e4tsmedizin Berlin, Institute for Physiology, Structural Bioinformatics Group", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://bioinf-apache.charite.de/main/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://bioinf-apache.charite.de/main/contact.php"]}] [{"policyName": "Frequently asked questions", "policyURL": "http://bioinformatics.charite.de/supertarget/index.php?site=about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.charite.de/en/service/legal_notices/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://bioinf-apache.charite.de/main/web_data.php"}] closed [] ["other"] {} ["none"] [] no unknown [] [] {} 2016-10-24 2018-08-22 +r3d100012196 ibeetle eng [{"additionalName": "A database of Tribolium RNAi phenotypes", "additionalNameLanguage": "eng"}] http://ibeetle-base.uni-goettingen.de/ [] ["http://ibeetle-base.uni-goettingen.de/help/contact"] The iBeetle-Base stores gene related information for all genes of the official gene set (red box). Among others, RNA and protein sequences can be downloaded and links lead to the respective annotation in the genome browser. Further, the Drosophila orthologs are displayed including links to FlyBase. Wherever available, the phenotypic data gathered in the iBeetle screen is displayed below the gene information in separate sections for the pupal and larval screening parts (yellow box). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://ibeetle-base.uni-goettingen.de/help/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Red Flour Beetle", "Tribolium Castaneum", "larvae", "metamorphosis", "morphological defects", "proteins", "pupation", "transcripts"] [{"institutionName": "Georg-August Universit\u00e4t G\u00f6ttingen, Department of Evolutionary Developmental Genetics", "institutionAdditionalName": ["Georg-August-University , Department of Evolutionary Developmental Genetics"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-goettingen.de/de/434385.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gbucher1@uni-goettingen.de"]}] [{"policyName": "ibeetle Help", "policyURL": "http://ibeetle-base.uni-goettingen.de/help/completeHelp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/deed.en_US"}] restricted [] [] {"api": "http://ibeetle-base.uni-goettingen.de/ibp/index.html", "apiType": "REST"} ["none"] http://ibeetle-base.uni-goettingen.de/help/about [] unknown unknown [] [] {} 2016-10-24 2017-12-23 +r3d100012197 Phenol-Explorer eng [{"additionalName": "Database on Polyphenol Content in Foods", "additionalNameLanguage": "eng"}] http://phenol-explorer.eu/ ["RRID:SCR_008647", "RRID:nif-0000-32996"] ["http://phenol-explorer.eu/contact"] Phenol-Explorer is the first comprehensive database on polyphenol content in foods eng ["disciplinary"] {"size": "The database contains more than 35,000 content values for 500 different polyphenols in over 400 foods", "updatedp": "2016-10-25"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://phenol-explorer.eu/methods_used [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["antioxidants", "bioactive phytochemicals", "chemistry", "epidemiology", "food composition", "food processing", "metabolome", "nutrition"] [{"institutionName": "Agence nationale de s\u00e9curit\u00e9 sanitaire de l\u2019alimentation, de l\u2019environnement et du travail", "institutionAdditionalName": ["French Agency for Food, Environmental and Occupational Health & Safety", "anses"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.anses.fr/en", "institutionIdentifier": ["ROR:0471kz689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.anses.fr/fr"]}, {"institutionName": "Danone (France)", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.danone.com/en/#", "institutionIdentifier": ["ROR:00aj77a24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.danone.com/en/connect/"]}, {"institutionName": "French National Cancer Institute", "institutionAdditionalName": ["INCa", "Institut International du Cancer"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.e-cancer.fr/", "institutionIdentifier": ["ROR:03m8vkq32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://en.e-cancer.fr/Contact-us"]}, {"institutionName": "Gouvernement.fr", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.gouvernement.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gouvernement.fr/contact/contactez-nous"]}, {"institutionName": "Institut national de la recherche agronomique", "institutionAdditionalName": ["French National Institute for Agricultural Research", "INRA"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://institut.inra.fr/en", "institutionIdentifier": ["ROR:05y503v71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://institut.inra.fr/en/Organisation/Find-us"]}, {"institutionName": "International Agency for Research on Cancer", "institutionAdditionalName": ["CIRC", "Centre International de Recherche sur le Cancer", "IARC"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iarc.fr/indexfr.php", "institutionIdentifier": ["ROR:00v452281"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.iarc.fr/en/contact-us/index.php"]}, {"institutionName": "Nestl\u00e9", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.nestle.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nestle.com/info/contactus/contactus"]}, {"institutionName": "Unilever", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.unilever.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.unilever.com/contact/media-contacts/"]}, {"institutionName": "University of Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ualberta.ca/", "institutionIdentifier": ["ROR:0160cpw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ualberta.ca/about/contact"]}, {"institutionName": "University of Barcelona", "institutionAdditionalName": ["Universitat de Barcelona"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ub.edu/web/ub/ca/", "institutionIdentifier": ["ROR:021018s57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ub.edu/web/ub/en/menu_peu/contacte/contacte.html"]}] [{"policyName": "Methods Used To Create Phenol-Explorer", "policyURL": "http://phenol-explorer.eu/methods_used"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://phenol-explorer.eu/downloads"}] restricted [] ["unknown"] yes {} ["none"] http://phenol-explorer.eu/cite_us ["none"] unknown unknown [] [] {} Food definition and classification A specific food ontology was built, based on the LanguaL system (2). LanguaL is a food description thesaurus that provides a standardized language using facetted classification. Each food is described by a set of controlled terms, such as the botanical origin, food processing including cooking and conservation. The exact identity of the foods described in the original sources was checked and botanical names added using botanical databases and other resources (3, 4, 5). It was sometimes necessary to separate some specific groups of cultivars because of their clearly different polyphenol profiles (e.g. blond orange and blood orange). However, for other foods, cultivars were not differentiated due to the lack of sufficient analytical data. 2016-10-24 2021-10-07 +r3d100012198 ScienceData eng [{"additionalName": "Data repository by DeiC - the Danish e-infrastructure Cooperation", "additionalNameLanguage": "eng"}, {"additionalName": "DeiC data (formerly)", "additionalNameLanguage": "eng"}] https://sciencedata.dk [] ["frederik.orellana@deic.dk", "martin.bech@deic.dk"] sciencedata.dk is a research data service provided by the Danish e-Infrastructure Cooperation (DeIC), specifically aimed at researchers and scientists at Danish academic institutions. The service is intended for working with and sharing active research data as well as for safekeeping of large datasets. The data can be accessed and manipulated via a web interface, synchronization clients, file transfer clients or the command line. The service is built on and with open-source software from the ground up: FreeBSD, ZFS, Apache, PHP, ownCloud/Nextcloud. DeIC is actively engaged in community efforts on developing research-specific functionality for data stores. Our servers are attached directly to the 10-Gigabit backbone of "Forskningsnettet" (the National Research and Education Network of Denmark) - implying that up and download speed from Danish academic institutions is in principle comparable to those of an external USB hard drive. eng ["institutional"] {"size": "", "updatedp": ""} 2012-04-19 ["dan", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://sciencedata.dk/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["data management", "data sharing", "e-Infrastructure", "e-science", "metadata", "storage"] [{"institutionName": "Danish Ministry of Higher Education and Science", "institutionAdditionalName": [], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ufm.dk/en/the-ministry/organisation/the-ministry", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DeIC", "institutionAdditionalName": ["Danish e-Infrastructure Cooperation"], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.deic.dk/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.deic.dk/en/contact"]}] [{"policyName": "Terms and conditions", "policyURL": "https://sciencedata.dk/terms"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sciencedata.dk/sites/user/user_agreement.pdf"}] restricted [{"dataUploadLicenseName": "Data processor agreement regarding the storageservice sciencedata.dk", "dataUploadLicenseURL": "https://sciencedata.dk/sites/operator/data_processor_agreement.pdf"}] [] no {"api": "https://sciencedata.dk/sites/developer/", "apiType": "REST"} [] ["none"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2016-10-25 2020-03-18 +r3d100012199 European Data Portal eng [{"additionalName": "EDP", "additionalNameLanguage": "eng"}, {"additionalName": "Europ\u00e4isches Datenportal", "additionalNameLanguage": "deu"}, {"additionalName": "Portail europ\u00e9en de donn\u00e9es", "additionalNameLanguage": "fra"}, {"additionalName": "formerly: publicdata.eu", "additionalNameLanguage": "eng"}] https://www.europeandataportal.eu/en ["biodbcore-001444"] ["help@europeandataportal.eu", "https://www.europeandataportal.eu/en/feedback/form?type=1"] The European Data Portal harvests the metadata of Public Sector Information available on public data portals across European countries. Information regarding the provision of data and the benefits of re-using data is also included. eng ["other"] {"size": "904.056 datasets", "updatedp": "2018-08-20"} 2016-02 ["ces", "deu", "eng", "fin", "fra", "hrv", "hun", "ita", "nld", "pol", "por", "ron", "spa", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.europeandataportal.eu/en/what-we-do [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "multidisciplinary"] [{"institutionName": "European Union", "institutionAdditionalName": ["Europ\u00e4ische Union"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europa.eu/european-union/contact_en"]}] [{"policyName": "European Data portal User Manual", "policyURL": "https://www.europeandataportal.eu/sites/default/files/edp_s1_man_portal-version_2.0-user-manual_0.pdf"}, {"policyName": "copyright notice and rules related to personal data protection", "policyURL": "https://www.europeandataportal.eu/en/legal-notice"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.europeandataportal.eu/en/legal-notice"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2011:330:0039:0042:EN:PDF"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opendefinition.org/od/2.1/en/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.etalab.gouv.fr/licence-ouverte-open-licence"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/dl-de/by-2-0"}] restricted [] ["CKAN"] {"api": "http://www.europeandataportal.eu/data/en/api/3", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {"syndication": "https://www.europeandataportal.eu/data/en/feeds/custom.atom", "syndicationType": "ATOM"} This Portal is developed by the European Commission with the support of a consortium led by Capgemini, including INTRASOFT International, Fraunhofer Fokus, con terra, Sogeti, the Open Data Institute, Time.Lex and the University of Southampton. 2016-10-26 2021-11-17 +r3d100012200 IBICT Cariniana Dataverse Network por [{"additionalName": "Instituto Brasileiro de Informa\u00e7\u00e3o em Ci\u00eancia e Tecnologia Cariniana Dataverse Network", "additionalNameLanguage": "por"}] https://repositoriopesquisas.ibict.br/ [] ["miguel@ibict.br"] IBICT is providing a research data repository that takes care of long-term preservation and archiving of good practices, so that researchers can share, maintain control and get recognition for your data. The repository supports research data sharing with Quote persistent data, allowing them to be played. The Dataverse is a large open data repository of all disciplines, created by the Institute for Quantitative Social Science at Harvard University. IBICT the Dataverse repository provides a means available for free to deposit and find specific data sets stored by employees of the institutions participating in the Cariniana network. por ["institutional"] {"size": "67 Dataverses; 180 Conjunto de dados; 477 arquivos", "updatedp": "2021-04-23"} 2015 ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Dataverse Network Project", "institutionAdditionalName": ["DVN"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Instituto Brasileiro de Informa\u00e7\u00e3o em Ci\u00eancia e Tecnologia, Rede Cariniana", "institutionAdditionalName": ["Brazilian Digital Preservation Services Network", "IBICT, Cariniana Network"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cariniana.ibict.br/", "institutionIdentifier": ["ROR:006c42y96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Minist\u00e9rio da Ci\u00eancia, Tecnologia e Inova\u00e7\u00f5es", "institutionAdditionalName": ["MCTI"], "institutionCountry": "BRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.br/mcti/pt-br", "institutionIdentifier": ["ROR:050zdnc69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Guides", "policyURL": "https://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2016-10-27 2021-04-23 +r3d100012201 Historical Atlas of Sydney eng [{"additionalName": "City of Sydney Archives - collections", "additionalNameLanguage": "eng"}] http://atlas.cityofsydney.nsw.gov.au/ [] ["archives@cityofsydney.nsw.gov.au"] The Historical Atlas of Sydney contains digital versions of maps and associated documents. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://atlas.cityofsydney.nsw.gov.au/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Sydney", "atlas", "history", "plan"] [{"institutionName": "City of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cityofsydney.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["archives@cityofsydney.nsw.gov.au"]}] [{"policyName": "Conditions of access", "policyURL": "https://www.cityofsydney.nsw.gov.au/learn/history/archives/using-the-archives/conditions-of-access"}, {"policyName": "Open access information", "policyURL": "https://www.cityofsydney.nsw.gov.au/council/our-responsibilities/access-to-information/open-access-information"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.legislation.nsw.gov.au/#/view/act/2009/52"}] closed [] ["unknown"] {} ["none"] https://www.cityofsydney.nsw.gov.au/learn/history/archives/using-the-archives/citations ["none"] no unknown [] [] {} 2016-10-28 2019-01-18 +r3d100012203 ICOS Carbon Portal eng [{"additionalName": "Integrated Carbon Observation System", "additionalNameLanguage": "eng"}] https://www.icos-cp.eu/ [] ["alex.vermeulen@icos-cp.eu", "info@icos-cp.eu"] ICOS Carbon Portal is the data portal of the Integrated Carbon Observation System. It provides observational data from the state of the carbon cycle in Europe and the world. The Carbon Portal is the data center of the ICOS infrastructure. ICOS will collect greenhouse gas concentration and fluxes observations from three separate networks, all these observations are carried out to support research to help us understand how the Earth’s greenhouse gas balance works, because there are still many and large uncertainties! eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.icos-cp.eu/observations/carbon-portal [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["GPP", "NEE", "NEP", "NPP", "Net ecosystem exchange", "Net primary productivity", "WDCGG", "atmosphere", "atmospheric composition", "climate", "ecosystem", "greenhouse gas", "gross primary productivity", "isotopic composition", "latent hetaflux", "net ecosystem productivity", "ocean", "sensible heatflux"] [{"institutionName": "ICOS ERIC", "institutionAdditionalName": ["Integrated Carbon Observation System - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icos-cp.eu", "institutionIdentifier": [], "responsibilityStartDate": "26-11-2015", "responsibilityEndDate": "", "institutionContact": ["https://www.researchgate.net/profile/Werner_Leo_Kutsch"]}, {"institutionName": "Lund University", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lunduniversity.lu.se/home", "institutionIdentifier": [], "responsibilityStartDate": "2013-09-01", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wageningen University & Research", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.wur.nl/en.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wur.nl/en/Contact-Wageningen-University-Research.htm"]}] [{"policyName": "Fair use", "policyURL": "https://data.icos-cp.eu/licence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] yes {"api": "https://meta.icos-cp.eu/sparql", "apiType": "SPARQL"} ["DOI"] https://data.icos-cp.eu/licence [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} ICOS Carbon Portal is covered by Clarivate Data Citation Index. 2016-10-31 2021-10-14 +r3d100012204 FlyReactome eng [{"additionalName": "a curated knowledgebase of drosophila melanogaster pathways", "additionalNameLanguage": "eng"}] https://fly.reactome.org/ ["OMICS_02692"] ["help@reactome.org.", "mgw29@gen.cam.ac.uk"] ----<<<<< This repository is no longer available. This record is out dated >>>>>----- The aim of FlyReactome, based in the Department of Genetics, University of Cambridge, is to develop a curated repository for Drosophila melanogaster pathways and reactions. The information in this database is authored by biological researchers with expertise in their fields, maintained by the FlyReactome staff. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "gene function", "genetics", "molecular biology", "pathways", "protein-protein interaction", "proteins"] [{"institutionName": "European Bioinformatics Institute,", "institutionAdditionalName": ["EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/travel"]}, {"institutionName": "Gene Ontology Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://geneontology.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://geneontology.org/form/contact-go"]}, {"institutionName": "New York University, Langone Medical Center, School of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.med.nyu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nyulangone.org/contact-us"]}, {"institutionName": "Ontario Institute for Cancer Research , Cold Spring Harbor Laboratory", "institutionAdditionalName": ["CSHL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cshl.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cshl.edu/about-us/contact-us/"]}, {"institutionName": "University of Cambridge, Department of Genetics", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gen.cam.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mgw29@gen.cam.ac.uk"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://fly.reactome.org/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://fly.reactome.org/"}] restricted [] ["MySQL"] yes {"api": "http://fly.reactome.org/download/index.html", "apiType": "SOAP"} ["none"] http://fly.reactome.org/citation.html ["none"] yes unknown [] [] {} 2016-11-02 2019-01-18 +r3d100012205 HITRAN online eng [{"additionalName": "HITRAN database", "additionalNameLanguage": "eng"}, {"additionalName": "HIgh resolution TRANsmission molecular absorption database", "additionalNameLanguage": "eng"}] https://hitran.org/ [] ["LRothman@cfa.harvard.edu", "info@hitran.org"] HITRAN is an acronym for high-resolution transmission molecular absorption database. The HITRAN compilation of the SAO (HIgh resolution TRANmission molecular absorption database) is used for predicting and simulating transmission and emission of light in atmospheres. It is the world-standard database in molecular spectroscopy. The journal article describing it is the most cited reference in the geosciences. There are presently about 5000 HITRAN users world-wide. Its associated database HITEMP (high-temperature spectroscopic absorption parameters) is accessible by the HITRAN website. eng ["disciplinary"] {"size": "", "updatedp": ""} 1960 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://hitran.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Fourier transform spectrometry", "Lambert-Beers law of transmission", "infrared properties", "microwaves", "molecular transitions", "planetary atmosphere", "pollutants", "satellite missions"] [{"institutionName": "Harvard Smithsonian Center for Astrophysics, Atomic and Molecular Physics Division", "institutionAdditionalName": ["AMP", "CFA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cfa.harvard.edu/amp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cfa.harvard.edu/about/contact"]}] [{"policyName": "Converting Intensities between the JPL/CDMS Catalogs and HITRAN", "policyURL": "https://hitran.org/docs/jpl-cdms-conversion/"}, {"policyName": "HITRAN parameters - Definitions and units", "policyURL": "https://hitran.org/docs/definitions-and-units/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://hitran.org/hapi/"}] closed [] [] yes {"api": "ftp://cfa-ftp.harvard.edu/pub/HITEMP-2010/", "apiType": "FTP"} ["none"] https://hitran.org/hapi/ [] unknown unknown [] [] {} HITRAN online is covered by Thomson Reuters Data Citation Index. The database is a long-running project started by the Air Force Cambridge Research Laboratories (AFCRL) in the late 1960s in response to the need for detailed knowledge of the infrared properties of the atmosphere. HITRAN on the Web: http://hitran.iao.ru/home HITRAN - Harvard-Smithsonian Center for Astrophysics: https://www.cfa.harvard.edu/hitran/ 2016-11-04 2019-01-18 +r3d100012206 ICTWSS database eng [{"additionalName": "Database on Institutional Characteristics of Trade Unions, Wage Setting, State Intervention and Social Pacts in 51 countries between 1960 and 2014", "additionalNameLanguage": "eng"}] http://uva-aias.net/en/ictwss [] ["Jelle.Visser@uva.nl"] The ICTWSS database covers four key elements of modern political economies: trade unionism, wage setting, state intervention and social pacts. The database contains annual data for all OECD and EU member states - Australia; Austria; Belgium; Bulgaria; Canada; Chile, Cyprus, the Czech Republic; Denmark; Estonia; Germany; Greece; Finland; France; Hungary; Iceland; Ireland; Israel, Italy; Japan; Korea, Latvia; Lithuania; Luxembourg; Malta; Mexico; the Netherlands; New Zealand; Norway; Poland; Portugal; Romania; Spain; Slovakia; Slovenia; Sweden; Switzerland; Turkey; the United Kingdom; and the United States – with some additional data for emerging economies Brazil; China; India; Indonesia; Russia; and South Africa; and it runs from 1960 till 2014. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://uva-aias.net/en/research [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["social pacts", "state intervention", "trade unions", "wage settings"] [{"institutionName": "University of Amsterdam, Amsterdam Institute for Advanced Labour Studies", "institutionAdditionalName": ["AIAS", "Universiteit van Amsterdam, Amsterdams Instituut voor ArbeidsStudies"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uva-aias.net/nl/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aias@uva.nl"]}] [{"policyName": "Codebook", "policyURL": "https://aias.s3-eu-central-1.amazonaws.com/website/uploads/1475058325774ICTWSS-Codebook_Version-5.1_20160926.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://uva-aias.net/en/ictwss"}] closed [] [] yes {} ["none"] http://www.uva-aias.net/nl/ictwss [] unknown unknown [] [] {} ICTWSS database is covered by Thomson Reuters Data Citation Index. 2016-11-04 2019-01-18 +r3d100012207 JaLTER MetaCat Service eng [{"additionalName": "JaLTER Database Systems", "additionalNameLanguage": "eng"}, {"additionalName": "Japan Long-Term Ecological Research Network MetaCat Service", "additionalNameLanguage": "eng"}] http://db.cger.nies.go.jp/JaLTER/ [] ["yuuri.sakai@db.soc.i.kyoto-u.ac.jp"] The vision of the JaLTER is to provide scientific knowledge which contributes to conservation, advancement and sustainability of environment, ecosystem services, productivity and biodiversity for a society by conducting long-term and interdisciplinary research in ecological science including human dimensions. The JaLTER is closely linked with the International Long-Term Ecological Research Network (ILTER Network). eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.jalter.org/en/about/?content_id=1 [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "biomass", "ecology", "ecosystems", "flux", "hydrology", "meteorology", "phenology", "water quality"] [{"institutionName": "Japan Long-Term Ecological Research Network", "institutionAdditionalName": ["JaLTER"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.jalter.org/index.php?ml_lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Environmental Studies, Center for Global Environmental Research", "institutionAdditionalName": ["CGER", "NIES", "\u56fd\u7acb\u7814\u7a76\u958b\u767a\u6cd5\u4eba \u56fd\u7acb\u74b0\u5883\u7814\u7a76\u6240 \u3012"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cger.nies.go.jp/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "JaLTER Database Terms of use", "policyURL": "http://db.cger.nies.go.jp/JaLTER/termsofuse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://db.cger.nies.go.jp/JaLTER/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://db.cger.nies.go.jp/JaLTER/datalicense.html"}] restricted [] ["other"] {} ["none"] http://db.cger.nies.go.jp/JaLTER/datalicense.html [] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} JaLTER is covered by Thomson Reuters Data Citation Index. 2016-11-04 2021-08-25 +r3d100012208 Korean Labor & Income Panel Study eng [{"additionalName": "KLIPS", "additionalNameLanguage": "eng"}] https://www.kli.re.kr/klips_eng/index.do [] ["klips@kli.re.kr"] KLIPS (Korean Labor & Income Panel Study) is a longitudinal survey of the labor market / income activities of households and individuals residing in urban areas. The 1st Wave of the KLIPS was launched by the KLI (Korea Labor Institute) in 1998, amid an unprecedented economic crisis and labor market turmoil. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng", "kor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.kli.re.kr/klips_eng/contents.do?key=254 [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Cross-National Equivalent File - CNEF", "Korea", "census", "income", "labor", "microdata"] [{"institutionName": "Korea Labor Institute", "institutionAdditionalName": ["KLI"], "institutionCountry": "KOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kli.re.kr/kli_eng/index.do", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Employment and Labor", "institutionAdditionalName": ["MOEL"], "institutionCountry": "KOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.moel.go.kr/english/main.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Users's guide", "policyURL": "https://www.kli.re.kr/klips_eng/selectBbsNttList.do?bbsNo=71&key=257"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kli.re.kr/klips_eng/index.do"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} KLIPS is covered by Thomson Reuters Data Citation Index. KLIPS is part of the CNEF User Package, read more: https://cnef.ehe.osu.edu/data/ 2016-11-04 2019-01-18 +r3d100012211 City of Sydney - Research and statistics eng [] https://www.cityofsydney.nsw.gov.au/learn/research-and-statistics [] ["council@cityofsydney.nsw.gov.au", "opendata@cityofsydney.nsw.gov.au."] Sydney has a constantly updated bank of information for historians, researchers and demographers. eng ["other"] {"size": "", "updatedp": ""} ["ara", "eng", "fra", "ind", "kor", "rus", "spa", "tha", "vie", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.cityofsydney.nsw.gov.au/about-us [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Australia", "Sydney 2030", "census", "city monitoring", "community", "economic development", "history", "population", "statistics", "town", "wellbeing"] [{"institutionName": "City of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cityofsydney.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cityofsydney.nsw.gov.au/council/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org.au/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.legislation.nsw.gov.au/#/view/act/2009/52"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cityofsydney.nsw.gov.au/council/our-responsibilities/access-to-information"}, {"dataLicenseName": "other", "dataLicenseURL": "https://home.id.com.au/legal-notices/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://home.id.com.au/terms-of-use/"}] closed [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {"syndication": "http://www.cityofsydney.nsw.gov.au/subscribe/rss-feeds", "syndicationType": "RSS"} 2016-11-07 2019-01-22 +r3d100012212 City of Sydney - Historians and archivists eng [] https://www.cityofsydney.nsw.gov.au/library-information-services/access-open-data [] ["https://www.cityofsydney.nsw.gov.au/contact-us"] Sydney’s history is all around us. Discover the rich, vivid history of Sydney from early Aboriginal life through to the modern global city. Our history and archives teams are here to help. eng ["other"] {"size": "", "updatedp": ""} ["ara", "fra", "ind", "kor", "rus", "spa", "tha", "vie", "zho"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.cityofsydney.nsw.gov.au/learn/history [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cards", "history", "photographs", "street cards", "texts"] [{"institutionName": "City of Sydney", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cityofsydney.nsw.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cityofsydney.nsw.gov.au/council/contact-us"]}] [{"policyName": "Policy register", "policyURL": "https://www.cityofsydney.nsw.gov.au/council/our-responsibilities/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org.au"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.sydneyoralhistories.com.au/copyright/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.legislation.nsw.gov.au/#/view/act/2009/52"}] closed [] ["unknown"] {} ["none"] https://www.cityofsydney.nsw.gov.au/learn/history/archives/using-the-archives/citations ["none"] unknown unknown [] [] {} 2016-11-07 2021-06-30 +r3d100012213 freeBIRD eng [{"additionalName": "free Bank of Injury and Emergency Research Data", "additionalNameLanguage": "eng"}] https://ctu-app.lshtm.ac.uk/freebird/ [] ["CTU@Lshtm.ac.uk", "https://ctu-app.lshtm.ac.uk/freebird/index.php/contact/"] The FREEBIRD website aims to facilitate data sharing in the area of injury and emergency research in a timely and responsible manner. It has been launched by providing open access to anonymised data on over 30,000 injured patients (the CRASH-1 and CRASH-2 trials). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ctu-app.lshtm.ac.uk/freebird/index.php/about/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["controlled clinical trial", "emergency", "head injury", "health research", "impaired consciousness", "medical knowledge", "patient care", "trauma"] [{"institutionName": "BUPA Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bupaukfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bupaukfoundation.org/page/contact/"]}, {"institutionName": "J P Moulton Charitable Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.perscitusllp.com/moulton-charitable-foundation/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["helen@jonmoulton.gg"]}, {"institutionName": "London School of Hygiene and Tropical Medicine, Clinical Trials Unit", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ctu.lshtm.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ctu@lshtm.ac.uk"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mrc.ac.uk/about/contact/"]}, {"institutionName": "Pfizer", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.pfizer.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pfizer.com/contact/contact_us_support"]}] [{"policyName": "ICH Good Clinical Practice Guidelines", "policyURL": "http://www.crash2.lshtm.ac.uk/ICHGCP/TableOfContents.htm"}, {"policyName": "Policies and guidance for researchers", "policyURL": "https://www.mrc.ac.uk/research/policies-and-guidance-for-researchers/"}, {"policyName": "Terms and Conditions", "policyURL": "https://ctu-app.lshtm.ac.uk/freebird/index.php/about/terms-conditions/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ctu-app.lshtm.ac.uk/freebird/index.php/about/terms-conditions/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.lshtm.ac.uk/aboutus/organisation/data-protection"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} CRASH-1: Corticosteroid Randomisation After Significant Head Injury // CRASH-2: Clinical Randomisation of an Antifibrinolytic in Significant Haemorrhage 2016-11-08 2019-01-22 +r3d100012214 Mammalian Transcriptomic Database eng [{"additionalName": "MTD", "additionalNameLanguage": "eng"}] http://mtd.cbi.ac.cn/index.php ["OMICS_11215", "biodbcore-001412"] ["http://mtd.cbi.ac.cn/contact.php", "junyu@big.ac.cn", "xiaojingfa@big.ac.cn"] MTD is focused on mammalian transcriptomes with a current version that contains data from humans, mice, rats and pigs. Regarding the core features, the MTD browses genes based on their neighboring genomic coordinates or joint KEGG pathway and provides expression information on exons, transcripts, and genes by integrating them into a genome browser. We developed a novel nomenclature for each transcript that considers its genomic position and transcriptional features. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://bigd.big.ac.cn/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["RNA", "RNA-seq", "Sequence Read Archive (SRA)", "cell lines", "gene expression", "genetics", "genomics", "human", "mouse", "pig", "rat", "tissues"] [{"institutionName": "Chinese Academy of Sciences, Beijing Institute of Genomics, Big Data Center", "institutionAdditionalName": ["BIGD", "CAS, BIGD", "\u4e2d\u56fd\u79d1\u5b66\u9662\u5317\u4eac\u57fa\u56e0\u7ec4\u7814\u7a76\u6240\u751f\u547d\u4e0e\u5065\u5eb7\u5927\u6570\u636e\u4e2d\u5fc3", "\u5927\u6570\u636e\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://bigd.big.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://bigd.big.ac.cn/contact"]}, {"institutionName": "Chinese Academy of Sciences, Beijing Institute of Genomics, CAS Key Laboratory of Genome Sciences & Information", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sourcedb.big.cas.cn/yw/pl/fs/BIG_GSI/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://english.big.cas.cn/au/ct/"]}, {"institutionName": "National Natural Science Foundation of China", "institutionAdditionalName": ["NSFC"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsfc.gov.cn/publish/portal1/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/cn/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://bigd.big.ac.cn/mission"}] closed [] ["unknown"] yes {} ["none"] http://mtd.cbi.ac.cn/faq.php#que7 ["none"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} other link to MTD: http://bigd.big.ac.cn/mtd/index.php 2016-11-08 2021-11-16 +r3d100012215 PRO-ACT eng [{"additionalName": "Pooled Resource Open-Access ALS Clinical Trials Database", "additionalNameLanguage": "eng"}] https://nctu.partners.org/ProACT/ [] ["https://nctu.partners.org/ProACT/Document/DisplayLatest/8"] The PRO-ACT platform houses the largest ALS clinical trials dataset ever created. It is a powerful tool for biomedical researchers, statisticians, clinicians, or anyone else interested in "Big Data." PRO-ACT merges data from existing public and private clinical trials, generating an invaluable resource for the design of future ALS clinical trials. The database will also contribute to the identification of unique observations, novel correlations, and patterns of ALS disease progression, as well as a variety of still unconsidered analyses. More than 600,000 people around them world are battling ALS. The disease strikes indiscriminately, and typically patients will die within 2-5 years following diagnosis. Currently, there are no effective treatments or a cure for ALS. Users of PRO-ACT are helping to accelerate the discovery, development, and delivery of ALS treatments, which will provide hope to patients and their families. eng ["disciplinary"] {"size": "over 8500 ALS patient records from multiple completed clinical trials", "updatedp": "2019-01-22"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://nctu.partners.org/ProACT/Document/DisplayLatest/5 [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Amyotrophic Lateral Sclerosis", "Lou Gehrig's disease", "clinical trial", "neurodegenerative illness", "psychometric assessment"] [{"institutionName": "ALS Therapy Alliance", "institutionAdditionalName": ["ATA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://alstherapyalliance.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://alstherapyalliance.org/index.php/contact-us.html"]}, {"institutionName": "Massachusetts General Hospital, Neurological Clinical Research Institute", "institutionAdditionalName": ["NCRI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncrinstitute.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ALSresearch@partners.org"]}, {"institutionName": "Northeast ALS Consortium", "institutionAdditionalName": ["NEALS", "Northeast Amyotrophic Lateral Scierois Consortium"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.neals.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.neals.org/about-us/contact-us"]}, {"institutionName": "Novartis", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.novartis.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.novartis.com/about-us/contact"]}, {"institutionName": "Prize4Life", "institutionAdditionalName": [], "institutionCountry": "ISR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.prize4life.org.il/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://prize4life.org.il/en/contact/"]}, {"institutionName": "Regeneron Pharmaceuticals, Inc", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.regeneron.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.regeneron.com/contact"]}, {"institutionName": "Sanofi", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://en.sanofi.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://en.sanofi.com/contact/contact.aspx"]}, {"institutionName": "Teva Pharmaceutical Industries, Ltd", "institutionAdditionalName": ["TEVA"], "institutionCountry": "ISR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.tevapharm.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tevapharm.com/contact_us/"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://nctu.partners.org/ProACT/Document/DisplayLatest/1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://nctu.partners.org/ProACT/Document/DisplayLatest/1"}] closed [] ["unknown"] {} ["none"] https://nctu.partners.org/ProACT/Document/DisplayLatest/6 ["none"] unknown unknown [] [] {} 2016-11-08 2019-01-22 +r3d100012216 Cornell Activity Datasets: CAD-60 & CAD-120 eng [] http://pr.cs.cornell.edu/humanactivities/data.php [] ["asaxena@cs.cornell.edu", "hema@ cs.cornell.edu"] >>>!!!<<< The repository is no longer available. >>>!!!<<< The CAD-60 and CAD-120 data sets comprise of RGB-D video sequences of humans performing activities which are recording using the Microsoft Kinect sensor. Being able to detect human activities is important for making personal assistant robots useful in performing assistive tasks. Our CAD dataset comprises twelve different activities (composed of several sub-activities) performed by four people in different environments, such as a kitchen, a living room, and office, etc. Tested on robots reactively responding to the detected activities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 2021-12-97 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40701 Automation, Control Systems, Robotics, Mechatronics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://pr.cs.cornell.edu/humanactivities/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["3D human action recognition", "RGBD sensor", "artificial intelligence", "human activity detection", "humans performing activities", "maximum entropy Markov model (MEMM),", "robotics", "skeleton viszualization", "supervised learning"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": ["Sloan Research Fellowship"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/fellowships", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact"]}, {"institutionName": "Cornell University, Computer Science Department, Robot Learning Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://pr.cs.cornell.edu/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cs.cornell.edu/information/contactus"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cornell.edu/copyright.cfm"}] closed [] ["unknown"] {} ["none"] http://pr.cs.cornell.edu/humanactivities/data/README_CAD60.txt ["none"] no no [] [] {} 2016-11-10 2021-12-07 +r3d100012217 WDC for geophysics, Beijing eng [{"additionalName": "WDC\u4e2d\u56fd\u5730\u7403\u7269\u7406\u5b66\u79d1\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] http://www.geophys.ac.cn/ [] ["zxk@mail.iggcas.ac.cn"] Among the basic tasks of WDC for Geophysics, Beijing there is collection, handling and storage of science data and giving access to it for usage both in science research and study process. That includes remote access to own information resources for the scientists from the universities and institutions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.geophys.ac.cn/About.asp [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GNSS", "Seismic Array Observation System", "Solar-Terrestrial Environment Research Network (STERN)", "Space Environment Exploration System", "geoelectric field", "geomagnetic field", "ionosonde", "ionosphere", "magnetosphere", "meteor radar", "meteor radar", "seismograph", "upper atmosphere"] [{"institutionName": "Chinese Academy of Sciences, Institute of Geology and Geophysics", "institutionAdditionalName": ["IGGCAS"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.igg.cas.cn/", "institutionIdentifier": ["ROR:030vmwa78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://english.igg.cas.cn/au/ct/"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/07/WDS-for-Geophysics-Beijing.pdf"}, {"policyName": "Data Policy", "policyURL": "http://www.geophys.ac.cn/data_policy.asp"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "http://www.icsu-wds.org/organization/constitution_and_bylaws"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.geophys.ac.cn/data_policy.asp"}] restricted [] [] {} ["DOI"] http://www.geophys.ac.cn/data_policy.asp [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} WDC for Geophysics, Beijing is a Regular Member of ICSU-WDS since September 2016. Advisory members: http://www.geophys.ac.cn/Advisory.asp IGGCAS have two observation systems, Space Environment Exploration System and Seismic Array Observation System, which are the main data sources of WDC for Geophysics, Beijing. Space Environment Exploration System focuses on continuous observations of the geomagnetic field, geoelectric field and some parameters in the upper atmosphere, ionosphere and magnetosphere. The Seismic Array Observation System is for array seismological experiments to collect seismic data of earthquakes and man-made sources. Moreover, we have also set up the mirror sites of Madrigal http://madrigal.iggcas.ac.cn/madrigal/ and DIDBase (http://ulcar.uml.edu/DIDBase/). These data have been open to the public. 2016-11-10 2022-01-03 +r3d100012218 Global Change Research Data Publishing and Repository eng [{"additionalName": "GCdataPR", "additionalNameLanguage": "eng"}, {"additionalName": "PRdataGC", "additionalNameLanguage": "eng"}] http://www.geodoi.ac.cn/WebEn/Default.aspx [] ["geodb@igsnrr.ac.cn"] Global Change Research Data Publishing and Repository (GCdataPR) is an open data infrastructure on earth science, particular on the global environmental changes. The GCdataPR’ management policies following the international common understanding to the data sharing principles and guidelines is the key to make the qualified data publishing and sharing smoothly and successfully. The data management policies including dataset submission for publishing policy, peer review policy data quality control policy data long-term preservation policy, data sharing policy, 10% rule for identify original dataset policy, claim discovery with both data and paper policy, and data service statistics policy. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate", "ecosystems"] [{"institutionName": "Chinese Academy of Sciences, Institute of Geographical Sciences and Natural Resources Research", "institutionAdditionalName": ["CAS", "IGSNRR", "\u4e2d\u56fd\u79d1\u5b66\u9662\u5730\u7406\u79d1\u5b66\u4e0e\u8d44\u6e90\u7814\u7a76\u6240 \u7248\u6743\u6240\u6709 \u5907\u6848\u5e8f\u53f7:\u4eacICP\u590705002838\u53f7 \u6587\u4fdd\u7f51\u5b89\u5907"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.igsnrr.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://english.igsnrr.cas.cn/ai/cu/"]}, {"institutionName": "Geographical Society of China", "institutionAdditionalName": ["GSC", "\u4e2d\u56fd\u5730\u7406\u5b66\u4f1a"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gsc.org.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gsc@igsnrr.ac.cn"]}] [{"policyName": "Policy", "policyURL": "http://www.geodoi.ac.cn/WebEn/NewsList.aspx?ID=6"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.geodoi.ac.cn/WebEn/Agreement.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Terms and conditions of submission", "dataUploadLicenseURL": "http://www.geodoi.ac.cn/WebEn/Agreement.aspx"}] [] {} ["DOI"] http://www.geodoi.ac.cn/WebEn/NewsInfo.aspx?ID=37 [] yes yes ["WDS"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Global Change Research Data Publishing and Repository is a regular memeber of ICSU World Data System. GCdataPR is covered by Thomson Reuters Data Citation Index. 2016-11-10 2019-01-22 +r3d100012220 Alaska Science Center eng [{"additionalName": "ASC", "additionalNameLanguage": "eng"}] https://alaska.usgs.gov/index.php [] ["ascweb@usgs.gov", "https://alaska.usgs.gov/staff/index.php"] The USGS Alaska Region has the largest geographic extent of the seven regional units within the USGS and represents a dynamic landscape of great natural wonder. It is a transforming landscape shaped by volcanoes, earthquakes, major rivers, and glaciers and a strategic landscape of yet untapped mineral and energy resources. The Region conducts research to help inform management of the extensive national parks and wildlife refuges of the far north and the international birds, fish, and marine mammals that migrate to these lands and waters; informs national Arctic energy policy through research on the National Petroleum Reserve-Alaska and the U.S. Outer Continental Shelf; and provides science to understand, help respond to and mitigate impacts from natural hazards. This work is accomplished in part by the Region's two Science Centers headquartered in Anchorage, the Alaska Science Center and the Volcano Science Center. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://alaska.usgs.gov/index.php [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate monitoring", "earthquake", "ecosystem", "environmental health", "geospatial data", "natural hazards", "permafrost"] [{"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usgs.gov/about/congressional/contacts"]}, {"institutionName": "USA.gov", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usa.gov/contact"]}] [{"policyName": "Accessibility and the U.S. Geological Survey", "policyURL": "https://www.usgs.gov/accessibility-and-us-geological-survey"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits"}] restricted [] ["other"] {} ["DOI"] https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2016-11-16 2021-09-22 +r3d100012221 Cross-National TimeSeries Data Archive eng [{"additionalName": "CNTS Data Archive", "additionalNameLanguage": "eng"}] https://www.cntsdata.com/ ["ISSN 2412-8082"] ["support@databanksinternational.com"] The Cross-National Time-Series Data Archive (CNTS) was initiated by Arthur S. Banks in 1968 with the aim of assembling, in machine readable, longitudinal format, certain of the aggregate data resources of The Statesman’s Yearbook. The CNTS offers a listing of international and national country-data facts. The dataset contains statistical information on a range of countries, with data entries ranging from 1815 to the present. eng ["disciplinary"] {"size": "", "updatedp": ""} 1968 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.cntsdata.com/the-data [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["area", "business", "communications", "computer usage", "domestic conflict events", "economics", "education", "energy", "history", "legislation", "military data", "political data", "population", "sociology"] [{"institutionName": "Databanks International", "institutionAdditionalName": ["kenwilson@cntsdata.com"], "institutionCountry": "ISR", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.cntsdata.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@databanksinternational.com"]}] [][] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cntsdata.com/license-agreement"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cntsdata.com/subscription-license"}] closed [] ["unknown"] yes {} ["none"] https://www.cntsdata.com/citations ["none"] unknown unknown [] [] {} 2016-11-16 2021-10-19 +r3d100012222 Résif Seismological Data Portal eng [{"additionalName": "R\u00e9seau sismologique et g\u00e9od\u00e9sique francais", "additionalNameLanguage": "fra"}] https://seismology.resif.fr/ [] ["https://seismology.resif.fr/contact/"] The Résif-EPOS Seismic data repository hosts and distributes seismological data from permanent and temporary seismic networks operated all over the world by French research institutions and international partners, to support research on source processes and imaging of the Earth's interior at all scales. Résif-EPOS (French seismologic and geodetic network) is a French national equipment for the observation and understanding of the solid Earth. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://seismology.resif.fr/resif-information-system/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GEOSCOPE", "LDG", "OBS", "RAP", "RLBP", "SISMOB", "VOLCANO", "earthquake", "environmental data", "field experimentation", "geodetic", "ocean bottom seismometer", "seismology"] [{"institutionName": "ALLENVI", "institutionAdditionalName": ["Alliance nationale de Recherche pour l'Environnement", "National Alliance for Environmental Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.allenvi.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@allenvi.fr"]}, {"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS", "French National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs.fr/", "institutionIdentifier": ["ROR:02feahw73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut National des Sciences de l'Univers", "institutionAdditionalName": ["INSU", "National Institute for Earth Sciences and Astronomy"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.insu.cnrs.fr/fr/insu", "institutionIdentifier": ["ROR:04kdfz702"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Higher Education, Research and Innovation", "institutionAdditionalName": ["MESR", "Minist\u00e8re de l'Enseignement sup\u00e9rieur et de la Recherche et de l'Innovation"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.enseignementsup-recherche.gouv.fr/", "institutionIdentifier": ["ROR:03sjk9a61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Minist\u00e8re de la Transition \u00c9cologique", "institutionAdditionalName": ["MEEM (formerly)", "Ministry of Ecological Transition", "Ministry of environment, energy and sea (formerly)", "Minist\u00e8re de L'Environnement, de L'Energie et de la Mer (formerly)"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ecologie.gouv.fr/#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RESIF Consortium", "institutionAdditionalName": ["French seismological and geodetic network", "R\u00e9seau sismologique et g\u00e9od\u00e9sique fran\u00e7ais"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.resif.fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bureau@resif.fr"]}] [{"policyName": "Data policy", "policyURL": "https://seismology.resif.fr/data-policy/"}, {"policyName": "RESIF data description", "policyURL": "https://seismology.resif.fr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] no {"api": "http://ws.resif.fr", "apiType": "other"} ["DOI"] https://seismology.resif.fr/citation-guidelines/ [] unknown yes [] [] {} RESIF is a consortium of French research bodies and academic establishments. Coordinated by the CNRS-INSU, this network relies on the Observatoires des Sciences de l’Univers which are present throughout the whole of France. It is composed of seismographs (velocity meters and accelerometers), geodetic instruments (GNSS) and gravimeters. Read more https://www.resif.fr/presentation/organisation/?article65 2016-11-17 2022-01-04 +r3d100012223 MatDat.com eng [{"additionalName": "Material Properties Database and Estimation Tools", "additionalNameLanguage": "eng"}] https://www.matdat.com/ [] ["https://www.matdat.com/MainMenuItem.aspx?idM=6", "info@matdat.com"] Over 1000 detailed, fully referenced and verified datasets for steels, aluminium and titanium alloys, cast irons/steels, weld metals. Materials can be searched according to a number of different criteria. Initial search results are presented in the form of a table from which they can be selected for presentation in form of detailed report or for comparison overview (up to 5 materials). In addition to material information and values of properties/parameters, images of microstructure, specimens and those of stress-strain, stress- and strain-life curves (if available) can be reviewed as well. eng ["disciplinary"] {"size": "over 1.500 detailed datasets", "updatedp": "2018-05-28"} 2011-04-26 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.matdat.com/MainMenuItem.aspx?idM=1&subM=29 [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aluminium alloys", "cast irons", "cast steels", "copper alloys", "high-alloy steels", "low-alloy steels", "material", "steel", "titanium alloys", "unalloyed steels", "weld materials"] [{"institutionName": "University of Rijeka, Faculty of Civil Engineering", "institutionAdditionalName": ["Sveu\u010dili\u0161te u Rijeci , Tehni\u010dki Fakultet"], "institutionCountry": "HRV", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.riteh.uniri.hr/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gradri.uniri.hr/en/contacts.html"]}] [{"policyName": "License Agreement", "policyURL": "https://www.matdat.com/Statements.aspx?idS=1"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.matdat.com/Statements.aspx?idS=1"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} Sponsors: https://www.matdat.com/MainMenuItem.aspx?idM=2&subM=7 // Matdat is covered by Thomson Reuters Data Citation Index. 2016-11-18 2019-01-23 +r3d100012224 MorphoSource eng [] https://www.morphosource.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.7mFpMg"] ["morphosource@duke.edu"] MorphoSource is a data repository specialized for 3D representing physical objects used in research in education (e.g., from museum or laboratory collections). It allows researchers and museum collection staff to store and organize, share, and distribute their own 3d data. Furthermore any registered user can immediately search for and download 3d morphological data sets that have been made accessible through the consent of data authors. eng ["disciplinary"] {"size": "144,000 3D datasets (represents 45,000 physical objects; 15,000 biological species); Specimens come from 650 museums, created at 300 different scanning facilities; 14,000 registered users; 1,500 contributing users", "updatedp": "2021-08-27"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.morphosource.org/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["3D data", "Computed Tomography (CT)", "Magnetic Resonance Imaging (MRI)", "Synchotron imaging", "amphibia", "anthropology", "archaeology", "arts", "botany", "cultural heritage", "geology", "laser scan", "mammalia", "paleontology", "photogrammetry", "structured light"] [{"institutionName": "Duke University, Trinity College of Arts & Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://trinity.duke.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms for Contributors", "policyURL": "https://www.morphosource.org/contributor_terms"}, {"policyName": "Terms for Users", "policyURL": "https://www.morphosource.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://docs.google.com/document/d/1kYDS9e57dKK1tUUxKWZytxmBt_2r5AWo4d3Tjm0nK4s/edit?usp=sharing"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://docs.google.com/document/d/1kYDS9e57dKK1tUUxKWZytxmBt_2r5AWo4d3Tjm0nK4s/edit?usp=sharing"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://docs.google.com/document/d/1kYDS9e57dKK1tUUxKWZytxmBt_2r5AWo4d3Tjm0nK4s/edit?usp=sharing"}] restricted [] ["Fedora"] no {"api": "https://docs.google.com/document/d/1dejyve3HOKCQEPm3S0nY85jHtHTmbzhOkhriCC0HAIw/edit?usp=sharing", "apiType": "REST"} ["ARK", "DOI"] https://www.morphosource.org/docs/citation ["ORCID"] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}] {} MorphoSource is covered by Thomson Reuters Data Citation Index. GitHub: https://github.com/MorphoSource 2016-11-18 2021-08-27 +r3d100012225 EPPO Global Database eng [{"additionalName": "European and Mediterranean Plant Protection Organization Global Database", "additionalNameLanguage": "eng"}, {"additionalName": "containing \"Pitt Quantum Repository\"", "additionalNameLanguage": "eng"}] https://gd.eppo.int/ [] ["https://www.eppo.int/contact"] The aim of the EPPO Global Database is to provide in a single portal for all pest-specific information that has been produced or collected by EPPO. The full database is available via the Internet, but when no Internet connection is available a subset of the database called ‘EPPO GD Desktop’ can be run as a software (now replacing PQR). eng ["disciplinary"] {"size": "more than 82.000 species; more than 1650 pest species", "updatedp": "2018-05-28"} 2018 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.eppo.int/index [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Euro-Mediterranean", "agriculture", "chemistry", "forestry", "molecular structures", "molecular visualization", "pests", "plant protection", "pllant health"] [{"institutionName": "Camille and Henry Dreyfus Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dreyfus.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2017", "institutionContact": ["admin@dreyfus.org"]}, {"institutionName": "European Union", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/business/finance-funding_en", "institutionIdentifier": [], "responsibilityStartDate": "2017-12-16", "responsibilityEndDate": "2018-12-15", "institutionContact": ["https://europa.eu/european-union/contact/write-to-us_en"]}, {"institutionName": "European and Mediterranean Plant Protection Organization", "institutionAdditionalName": ["Organisation Europ\u00e9enne et M\u00e9diterran\u00e9enne pour la Protection des Plantes"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eppo.int/", "institutionIdentifier": [], "responsibilityStartDate": "2018-07", "responsibilityEndDate": "", "institutionContact": ["https://www.eppo.int/contact"]}, {"institutionName": "University of Pittsburgh Department of Chemistry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.chem.pitt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018-06", "institutionContact": ["https://www.chem.pitt.edu/"]}, {"institutionName": "University of Pittsburgh, Kenneth P. Dietrich School of Arts and Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.asundergrad.pitt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2018-06", "institutionContact": ["undergraduate@as.pitt.edu"]}] [{"policyName": "EPPO Codes OPEN DATA LICENCE", "policyURL": "https://data.eppo.int/media/Open_Licence.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://pqr.pitt.edu/news/2015-07-01-open-data/"}] restricted [] ["unknown"] yes {"api": "https://data.eppo.int/", "apiType": "REST"} ["DOI"] https://gd.eppo.int/ [] unknown unknown [] [] {} Since July 2018, PQR is replaced by EPPO GD Desktop. -- To install and update GD Desktop, an Internet connection will be needed in the EPPO Global Database: https://gd.eppo.int/ . -- The EPPO Secretariat plans to release updates of GD Desktop every 3 months. It should be reminded to all users, that as GD Desktop cannot be updated in real-time, the online version (EPPO Global Database) should be used to obtain the latest information. -- Pitt Quantum Repository ws covered by Thomson Reuters Data Citation Index. 2016-11-18 2019-03-19 +r3d100012226 EM-DAT eng [{"additionalName": "Emergency Events Database", "additionalNameLanguage": "eng"}, {"additionalName": "The International Disaster Database", "additionalNameLanguage": "eng"}] https://www.emdat.be/ [] ["contact@emdat.be", "http://emdat.be/contact", "regina.below@uclouvain.be"] EM-DAT is a global database on natural and technological disasters, containing essential core data on the occurrence and effects of more than 22,000 disasters in the world, from 1900 to present. EM-DAT provides geographical, temporal, human and economic information on disasters at the country level. The database is compiled from various sources, including UN agencies, non-governmental organisations, insurance companies, research institutes and press agencies. eng ["disciplinary"] {"size": "22.000 mass disasters", "updatedp": "2016-11-21"} 1999 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.emdat.be/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biology", "climatology", "earthquake", "economic damage estimates", "epidemic", "extreme temperature", "hazard", "humanitarian action", "hydrology", "industrial accident", "meteorology", "natural disaster", "space weather", "technological disaster", "volcanic activity"] [{"institutionName": "United States Agency for International Development, Office of U.S. Foreign Disaster Assistance", "institutionAdditionalName": ["OFDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ofdajobs.net/portal/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ofdajobs.net/portal/contact.aspx"]}, {"institutionName": "Universit\u00e9 catholique de Louvain, School of Public Health, Centre for Research on the Epidemiology of Disasters", "institutionAdditionalName": ["CRED"], "institutionCountry": "BEL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cred.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@emdat.be", "regina.below@uclouvain.be"]}, {"institutionName": "World Health Organisation", "institutionAdditionalName": ["WHO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.who.int/en/", "institutionIdentifier": ["ROR:01f80g185"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.who.int/about/who-we-are/contact-us"]}, {"institutionName": "belgium.be", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.belgium.be/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.emdat.be/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://emdat.be/copyright-privacy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wipolex.wipo.int/en/text/125254"}] restricted [] ["other"] {} ["none"] ["none"] unknown unknown [] [] {} Collaborations and Parternships: https://www.emdat.be/collaborations-parternships 2016-11-21 2021-02-02 +r3d100012227 ResearchGate Data eng [] https://www.researchgate.net/search/data ["RRID:SCR_006505", "RRID:nlx_143849"] ["data@researchgate.net", "https://www.researchgate.net/contact"] ResearchGate is a network where 15+ million scientists and researchers worldwide connect to share their work. Researchers can upload data of any type and receive DOIs, detailed statistics and real-time feedback. In Data discovery Section of ResearchGate you can explore the added datasets. eng ["other"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.researchgate.net/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary", "science network", "social network"] [{"institutionName": "ResearchGate GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.researchgate.net", "institutionIdentifier": ["RRID:SCR_006505", "RRID:nlx_143849"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@researchgate.net"]}] [{"policyName": "Intellectual Property Policy", "policyURL": "https://www.researchgate.net/ip-policy"}, {"policyName": "Terms of Service", "policyURL": "https://www.researchgate.net/terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] [] yes {} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Metrics: h-index and RG Score 2016-11-21 2021-02-03 +r3d100012228 The USH1C mutations database eng [] http://www.umd.be/USH1C/ [] ["david.baux@inserm.fr"] >>> !!! the repository is offline !!! The current successor is https://www.lovd.nl/USH1C. <<< The database contains all the variants published as pathogenic mutations in the international literature up to November 2007. In addition, unpublished Usher mutations and non-pathogenic variants from the laboratory of Montpellier have been included. eng ["disciplinary"] {"size": "9 references; 109 mutations", "updatedp": "2017-10-11"} 2021 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.umd.be/USH1C/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] [] ["deafness", "gene", "phenotype-genotype", "polymorphism", "protein", "rare deseases", "retinitis pigmentosa", "usher syndrome"] [{"institutionName": "Montpellier University Hospital", "institutionAdditionalName": ["Centre Hospitalier Universitaire de Montpellier"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://neuro-2.iurc.montp.inserm.fr/group/diag_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://neuro-2.iurc.montp.inserm.fr/group/find_us.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.umd.be/USH1C/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.umd.be/USH1C/gene.shtml"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2016-11-22 2021-09-06 +r3d100012230 GallusReactome eng [] [] ["galluseditorial@reactome.org"] >>>!!!<<< 29.01.2020: Gallus.Reactome is offline >>>!!!<<< eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-01.29 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "metabolism", "pathway"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "NYU Langone Health, NYU School of Medicine", "institutionAdditionalName": ["NYU School of Medicine"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://med.nyu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://med.nyu.edu/our-community/contact-us"]}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/10002900/contact-nhgri/"]}, {"institutionName": "U.S. Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usda.gov/contact-us"]}, {"institutionName": "University of Delaware", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.udel.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.udel.edu/home/contact-ud/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [] closed [] ["MySQL"] yes {} ["DOI"] [] unknown unknown [] [] {} former description: GallusReactome is a free, online, open-source, curated resource of core pathways and reactions in chicken biology. Information is authored by expert biological researchers, maintained by the GallusReactome editorial staff and cross-referenced to the NCBI Entrez Gene, Ensembl and UniProt databases, the KEGG and ChEBI small molecule databases, PubMed, and the Gene Ontology (GO). 2016-11-23 2020-01-29 +r3d100012231 Quality of Government Institute's Data eng [{"additionalName": "QoG Institute's data", "additionalNameLanguage": "eng"}] https://www.gu.se/en/quality-government/qog-data [] ["https://www.gu.se/en/quality-government/about-us-0/contact"] The main objective of our research is to address the theoretical and empirical problem of how political institutions of high quality can be created and maintained. A second objective is to study the effects of Quality of Government on a number of policy areas, such as health, the environment, social policy, and poverty. eng ["institutional"] {"size": "", "updatedp": ""} 2004 ["eng", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gu.se/en/quality-government/about-us-0 [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["economic development", "environment", "health", "human development", "politics", "poverty", "social development", "social policy", "survey"] [{"institutionName": "7th Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wayback.archive-it.org/12090/20191127213419/https:/ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cordis@publications.europa.eu"]}, {"institutionName": "University of Gothenburg, The Quality of Government Institute", "institutionAdditionalName": ["QoG Institute"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gu.se/en/quality-government", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gu.se/korruption-samhallsstyrning/om-oss/kontakt"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gu.se/en/quality-government/qog-data/data-extras/gdpr-regulations"}] closed [] [] {} ["none"] https://www.gu.se/en/quality-government/qog-data/data-downloads/basic-dataset [] unknown unknown [] [] {} QoG Institute's data is covered by Thomson Reuters Data Citation Index. 2016-11-23 2021-10-25 +r3d100012232 Surrey Research Insight eng [{"additionalName": "SRI", "additionalNameLanguage": "eng"}] https://epubs.surrey.ac.uk/ [] ["sriopenaccess@surrey.ac.uk"] Surrey Research Insight (SRI) is an open access resource that hosts, preserves and disseminates the full text of scholarly papers produced by members of the University of Surrey. Its main purpose is to help Surrey authors make their research more widely known; their ideas and findings readily accessible; and their papers more frequently read and cited. Surrey Research Insight (formerly Surrey Scholarship Online) was developed in line with the Open Access Initiative, promoting free access to scholarship for the benefit of authors and scholars. It is one of many open access repositories around the world that operate on agreed standards to ensure wide and timely dissemination of research. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://epubs.surrey.ac.uk/information.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Surrey", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.surrey.ac.uk/", "institutionIdentifier": ["RRID:SCR_001001", "RRID:nlx_157977"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.surrey.ac.uk/visit-university/contact"]}] [{"policyName": "Repository policies", "policyURL": "https://epubs.surrey.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://epubs.surrey.ac.uk/policies.html#4"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://epubs.surrey.ac.uk/copyright.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://epubs.surrey.ac.uk/policies.html#5"}] restricted [{"dataUploadLicenseName": "Deposit Guide", "dataUploadLicenseURL": "http://epubs.surrey.ac.uk/depositguide.html"}] ["EPrints"] yes {"api": "https://epubs.surrey.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes unknown [] [] {} SRI is covered by Thomson Reuters Data Citation Index. 2016-11-23 2021-02-03 +r3d100012233 County-level measure of social capital eng [] https://aese.psu.edu/nercrd/community/social-capital-resources [] ["https://aese.psu.edu/nercrd/contact", "nercrd@psu.edu"] Here you will find data on the estimated stock of social capital in each US county for the years 1990, 1997, 2005, 2009, and 2014 eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://aese.psu.edu/nercrd/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["U.S.", "counties", "economic growth", "social capital"] [{"institutionName": "Pennsylvania State University, Department of Agricultural Economics, Sociology, and Education, Northeast Regional Center for Rural Development", "institutionAdditionalName": ["Penn State, AESE, NERCRD"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://aese.psu.edu/nercrd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://aese.psu.edu/about/contact"]}] [{"policyName": "PennState Policies", "policyURL": "https://policy.psu.edu/policies/"}, {"policyName": "Privacy and Legal Statements", "policyURL": "https://www.psu.edu/legal-statements/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://policy.psu.edu/policies/ad95"}, {"dataLicenseName": "other", "dataLicenseURL": "https://policy.psu.edu/policies/ad96"}] closed [] ["unknown"] {} ["none"] https://aese.psu.edu/nercrd/community/social-capital-resources ["none"] no no [] [] {} County-level measure of social capital is covered by Thomson Reuters Data Citation Index. 2016-11-23 2021-06-30 +r3d100012234 Worldpop eng [] https://www.worldpop.org/ [] ["https://www.worldpop.org/contactus", "info@worldpop.org"] High spatial resolution, contemporary data on human population distributions are a prerequisite for the accurate measurement of the impacts of population growth, for monitoring changes and for planning interventions. The WorldPop project aims to meet these needs through the provision of detailed and open access population distribution datasets built using transparent approaches. The WorldPop project was initiated in October 2013 to combine the AfriPop, AsiaPop and AmeriPop population mapping projects. It aims to provide an open access archive of spatial demographic datasets for Central and South America, Africa and Asia to support development, disaster response and health applications. The methods used are designed with full open access and operational application in mind, using transparent, fully documented and peer-reviewed methods to produce easily updatable maps with accompanying metadata and measures of uncertainty. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013-10 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.worldpop.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Africa", "Asia", "South America", "census", "demography", "population dynamics", "satellite data", "socioeconomics", "world events"] [{"institutionName": "University Southhamption, GeoData Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.geodata.soton.ac.uk/geodata/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.geodata.soton.ac.uk/geodata/contacts/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {"api": "http://maps.worldpop.org.uk/#/", "apiType": "other"} ["none"] https://www.worldpop.org/faq ["none"] unknown yes [] [] {} WorldPop datasets have been downloaded by researchers and policy makers from countries across the World, including 95% of the countries mapped by the project, resulting in valuable feedback and improvements to products. The data have been downloaded and used by a wide range of governments agencies, including for example, the Zimbabwe Parks and Wildlife Management Authority (Zimbabwe), SNLS (Guinea Bissau), The Regional Center for Mapping of Resources for Development (Kenya), Programme National de Développement Participatif (Cameroon), National Emergency Management Agency (Nigeria), Ministère des travaux public (Benin), Somaliland National Aids Commission (Somalia), Kerala Sustainable Urban Development Programme (India), Central Agency for Public Mobilization and Statistics (Egypt), and the Ministère de l'Environnement et des ressources forestières (Togo). Many international organizations, foundations and agencies have obtained and utilized WorldPop outputs, including: UNDP, UNEP, FAO, WHO, The World Bank, WFP, WWF, CDC, MSF, Population Council, Bill & Melinda Gates Foundation, Clinton Health Access Initiative, DFID, USGS, Red Cross International, UNOCHA and MapAction // WorldPop datasets are contributed to the Global Earth Observation Sistema of Systems (GEOSS) as GEOSS Data Collection of Open resources for Everyone(GEOSS Data CORE). // Funders: https://www.worldpop.org/acknowledgements // Worldpop is covered by Thomson Reuters Data Citation Index. 2016-11-23 2021-06-30 +r3d100012235 YODA Project eng [{"additionalName": "Yale University Open Data Access", "additionalNameLanguage": "eng"}] https://yoda.yale.edu/ [] ["https://yoda.yale.edu/about/contact-us"] The YODA Project is an effort by a group of academically-based clinical researchers to facilitate access to participant-level clinical research data and/or comprehensive reports of clinical research, such as full Clinical Study Reports (CSRs), a level of detail not customarily found in journal publications, with the aim of promoting scientific research that may advance science or lead to improvements in individual and public health and healthcare delivery. The YODA Project is guided by the following core principles, which reflect the overall mission of the project to promote open science by: Promoting the sharing of clinical research data to advance science and improve public health and healthcare, Promoting the responsible conduct of research, Ensuring good stewardship of clinical research data, and Protecting the rights of research participants eng ["disciplinary"] {"size": "398 trials", "updatedp": "2021-02-03"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://yoda.yale.edu/roles-responsibilities [{"name": "Raw data", "scheme": "parse"}] ["serviceProvider"] ["biomedicine", "clinical trial", "data availability", "health", "patients", "transparency"] [{"institutionName": "Yale University, Center for Outcomes Research & Evaluation", "institutionAdditionalName": ["CORE"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://medicine.yale.edu/core/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://medicine.yale.edu/core/about/contact.aspx"]}] [{"policyName": "Policies and Procedures to Guide External Investigator Access to Clinical Trial Data", "policyURL": "https://yoda.yale.edu/policies-procedures-guide-external-investigator-access-clinical-trial-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://yoda.yale.edu/data-use-agreement"}, {"dataLicenseName": "other", "dataLicenseURL": "https://yoda.yale.edu/sites/default/files/files/YODA%20Project%20J%26J%20Medical%20Device%20DUA%20February%202016.pdf"}] restricted [{"dataUploadLicenseName": "Procedures to Guide External Investigator Access to Clinical Trial Data", "dataUploadLicenseURL": "https://yoda.yale.edu/sites/default/files/files/YODA%20Project%20Data%20Release%20Procedures%20June%202016.pdf"}] ["unknown"] {} ["none"] [] no unknown [] [] {} YODA Project is covered by Thomson Reuters Data Citation Index. 2016-11-23 2021-09-21 +r3d100012236 Agricultural and Environmental Data Archive eng [{"additionalName": "AEDA", "additionalNameLanguage": "eng"}] http://www.environmentdata.org/ [] ["dis@fba.org.uk"] The Agricultural and Environmental Data Archive (AEDA) is the direct result of a project managed by the Freshwater Biological Association in partnership with the Centre for e-Research at King's College London, and funded by the Department for the Environment, Food & Rural Affairs (Defra). This project ran from January 2011 until December 2014 and was called the DTC Archive Project, because it was initially related to the Demonstration Test Catchments Platform developed by Defra. The archive was also designed to hold data from the GHG R&D Platform (www.ghgplatform.org.uk). After the DTC Archive Project was completed the finished archive was renamed as AEDA to reflect it's broader remit to archive data from any and all agricultural and environmental research activities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.environmentdata.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "emission", "greenhouse", "hydrology", "pollution", "sediments", "seismic", "water quality", "weather"] [{"institutionName": "Department for Environment Food & Rural Affairs", "institutionAdditionalName": ["Defra"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.uk/government/organisations/department-for-environment-food-rural-affairs", "institutionIdentifier": ["ROR:00tnppw48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gov.uk/contact"]}, {"institutionName": "Freshwater Biological Association", "institutionAdditionalName": ["FBA"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fba.org.uk/", "institutionIdentifier": ["ROR:02j85cg51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fba.org.uk/contact-us"]}, {"institutionName": "King's College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kcl.ac.uk/", "institutionIdentifier": ["ROR:0220mzb33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "King's College London, Research Portal", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://kclpure.kcl.ac.uk/portal/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "The Data Publication Process", "policyURL": "http://mydata.environmentdata.org/data-publication-process"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.environmentdata.org/"}] restricted [] [] yes {} ["DOI"] http://www.environmentdata.org/archive/fbaia:2654 [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} AEDA is covered by Thomson Reuters Data Citation Index. The Archive contains many different types of information ranging from, scientific datasets, grey literature, images, video, library catalogue records and a variety of other information. All of this information is stored in an appropriate format for long-term digital curation purposes and adheres to various data standards such as those of the ISO 19100 series and EU Inspire Directive. 2016-11-23 2021-02-10 +r3d100012238 Maddison Project eng [] https://www.rug.nl/ggdc/historicaldevelopment/maddison/ [] ["j.bolt@rug.nl", "maddison@rug.nl"] Maddison's work contains the Project Dataset with estimates of GDP per capita for all countries in the world between 1820 and 2010 in a format amenable to analysis in R. The database was last updated in January 2013. The update incorporates much of the latest research in the field, and presents new estimates of economic growth in the world economic between AD 1 and 2010 The Maddison Project database presented builts on Angus Maddison's original dataset. The original estimates are kept intact, and only revised or adjusted when there is more and better information available. Angus Maddison's unaltered final dataset remains available on the Original Maddison Homepage https://www.rug.nl/ggdc/historicaldevelopment/maddison/original-maddison eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Gross domestic product", "economic performance", "international comparisons", "living standards", "macroeconomics", "market value"] [{"institutionName": "University of Groningen, Groningen Growth and Development Centre, Faculty of Economics and Business", "institutionAdditionalName": ["GGDC", "Rijksuniversiteit Groningen, Faculteit Economie en Bedrijfskunde"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.rug.nl/ggdc/aboutus/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rug.nl/ggdc/aboutus/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {} ["none"] https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-project-database-2020 ["none"] unknown unknown [] [] {} The Maddison Project has launched an updated version of the original Maddison dataset in January 2013. The update incorporates much of the latest research in the field, and presents new estimates of economic growth in the world economic between AD 1 and 2010. The new estimates are presented and discussed in Bolt and Van Zanden (2014). The Maddison Project: collaborative research on historical national accounts. The Economic History Review, 67 (3): 627–651. // Maddison Project is covered by Thomson Reuters Data Citation Index. 2016-11-24 2021-02-10 +r3d100012239 Supreme Court Database eng [{"additionalName": "SCDB", "additionalNameLanguage": "eng"}, {"additionalName": "U.S. Supreme Court Database", "additionalNameLanguage": "eng"}] http://supremecourtdatabase.org/ [] ["http://supremecourtdatabase.org/contact.php"] The Supreme Court Database is the definitive source for researchers, students, journalists, and citizens interested in the U.S. Supreme Court. The Database contains over two hundred pieces of information about each case decided by the Court between the 1791 and 2015 terms. Examples include the identity of the court whose decision the Supreme Court reviewed, the parties to the suit, the legal provisions considered in the case, and the votes of the Justices. The project started with Spaeth's original database. The analysis tools allow you to select and summarize cases from the Modern or Legacy Database based on your needs. eng ["disciplinary"] {"size": "247 pieces of information for each case", "updatedp": "2021-02-12"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11302 Private Law", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "11304 Criminal Law and Law of Criminal Procedure", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://supremecourtdatabase.org/about.php [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Case Centered data", "Harold J. Spaeth", "Justice Centered data", "court", "jurisdiction", "numerical studies", "reliability analyses"] [{"institutionName": "HeinOnline", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://home.heinonline.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://home.heinonline.org/contact/"]}, {"institutionName": "Michigan State University, College of Law", "institutionAdditionalName": ["MSU Law"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.law.msu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.law.msu.edu/contact_us.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Stony Brook University, Department of Political Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stonybrook.edu/polsci/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stonybrook.edu/commcms/polisci/about_us/contact.php"]}, {"institutionName": "University of Michigan, College of Literature, Science, and the Arts, Department of Political Science", "institutionAdditionalName": ["U-M LSA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lsa.umich.edu/polisci/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["polisci@umich.edu"]}, {"institutionName": "University of Pennsylvania, School of Law", "institutionAdditionalName": ["Penn Law"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.law.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.law.upenn.edu/administration/contact.php"]}, {"institutionName": "University of Wisconsin-Milwaukee, Department of Political Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://uwm.edu/political-science/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://uwm.edu/political-science/contact-us/"]}, {"institutionName": "Washington University in St.Louis, School of Law", "institutionAdditionalName": ["WashULaw"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://law.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://law.wustl.edu/home/contact-us/"]}, {"institutionName": "Washington University in St.Louis, School of Law, Center for Empirical Research in the Law", "institutionAdditionalName": ["CERL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://cerl.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cerl@law.wustl.edu"]}] [{"policyName": "Download and Use Instructions", "policyURL": "http://supremecourtdatabase.org/data.php?s=3"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}] closed [] [] {} ["none"] http://supremecourtdatabase.org/documentation.php?var=cite [] unknown yes [] [] {} Supreme Court Database is covered by Thomson Reuters Data Citation Index. The Supreme Court Database is updated at least once a year. http://supremecourtdatabase.org/data.php?s=2 contains links to all previously released versions of the database to allow for replication. 2016-11-24 2021-02-12 +r3d100012240 World Christian Database eng [{"additionalName": "WCD", "additionalNameLanguage": "eng"}] https://worldchristiandatabase.org/ ["ISSN 1874-6551"] ["info@globalchristianity.org"] The World Christian Database provides comprehensive statistical information on world religions, Christian denominations, and people groups. The World Christian Database transforms current religious statistics into a real-time analysis tool that takes just minutes to perform even detailed research. This comprehensive database brings together a fully updated and cohesive religious data set with a world-class database architecture. The result is a simple, yet powerful database tool that enables users to customize reports and download data for in use in charts, tables, and graphs eng ["disciplinary"] {"size": "9.000 Christian denominations; 13.000 ethnolinguistic peoples; 5.000 cities, 3.000 provinces; 234 countries", "updatedp": "2021-02-12"} 2007 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "10701 Protestant Theology", "scheme": "DFG"}, {"name": "10702 Roman Catholic Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://brill.com/view/db/wcdo [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Adventist", "Roman Catholic church", "Vatican\u2019s Catholic Church", "census", "christianity", "ethnicity", "evangelization", "religion", "theology"] [{"institutionName": "Brill", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.brillonline.com/", "institutionIdentifier": ["VIAF:144427345"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Gordon-Conwell, Theological Seminary", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gordonconwell.edu/", "institutionIdentifier": ["ROR:032hvdr57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Methodology of the World Christian Database", "policyURL": "https://worldchristiandatabase.org/wcd/about/WCD_Methodology.pdf"}, {"policyName": "Online User and Order Help", "policyURL": "https://brill.com/page/OnlineUserandOrderHelp/online-user-and-order-help"}, {"policyName": "Policies", "policyURL": "https://brill.com/page/Policies/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://worldchristiandatabase.org/"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} World Christian Database is covered by Thomson Reuters Data Citation Index. The World Religion Database (WRD) complements the WCD with detailed source material of religious affiliation including censuses, surveys and religious freedom data to the Province level. 2016-11-24 2021-02-12 +r3d100012241 World Religion Database eng [{"additionalName": "WRD", "additionalNameLanguage": "eng"}] https://worldreligiondatabase.org/ ["ISSN 1876-1410"] ["https://referenceworks.brillonline.com/pages/contact-us"] The World Religion Database (WRD) contains detailed statistics on religious affiliation for every country of the world. It provides source material, including censuses and surveys, as well as best estimates for every religion to offer a definitive picture of international religious demography. It offers best estimates at multiple dates for each of the world’s religions for the period 1900 to 2050. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010-01-05 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://brill.com/view/db/wrdo [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["census", "christianity", "ethnicity", "evangelization", "hinduism", "muslim", "religion", "theology"] [{"institutionName": "Boston University, Pardee School of Global Studies, Institute on Culture, Religion & World Affairs", "institutionAdditionalName": ["CURA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bu.edu/cura/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bu.edu/cura/contact-us/"]}, {"institutionName": "Brill", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://brill.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://brill.com/page/Contact/contact"]}] [{"policyName": "Methodology of the World Christian Database", "policyURL": "https://worldchristiandatabase.org/wcd/about/WCD_Methodology.pdf"}, {"policyName": "Online User and Order Help", "policyURL": "https://brill.com/page/OnlineUserandOrderHelp/online-user-and-order-help"}, {"policyName": "Policies", "policyURL": "https://brill.com/page/Policies/policies"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\", \"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://worldreligiondatabase.org/"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} World religion database is covered by Thomson Reuters Data Citation Index. The World Christian Database complements the WRD by providing detailed demographic information on all aspects of global Christianity, including every Christian denomination. 2016-11-24 2021-07-26 +r3d100012242 Worldwide Governance Indicators Project eng [{"additionalName": "WGI Project", "additionalNameLanguage": "eng"}] http://info.worldbank.org/governance/wgi/#home [] ["akraay@worldbank.org", "daniel@kaufmanndata.net"] The Worldwide Governance Indicators, reporting estimates of six dimensions of governance for over 200 countries based on close to 40 data sources produced by over 30 organizations worldwide between 1996 and 2019, have become widely used among policymakers and academics. The six dimensions of governance: Voice and Accountability - Political Stability and Absence of Violence - Government Effectiveness - Regulatory Quality - Rule of Law - Control of Corruption. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://info.worldbank.org/governance/wgi/#home [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["anticorruption measures", "economics", "governance indicators", "mathematics", "national governance", "political corruption", "statistics"] [{"institutionName": "Brookings Institution", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.brookings.edu/", "institutionIdentifier": ["ROR:04aj4sh46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Resource Governance Institute", "institutionAdditionalName": ["NRGI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://resourcegovernance.org/", "institutionIdentifier": ["ROR:02egwd952"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://resourcegovernance.org/about-us/contact-us"]}, {"institutionName": "World Bank Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.worldbank.org/en/about", "institutionIdentifier": ["ROR:02md09461"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["akraay@worldbank.org", "mmastruzzi@worldbank.org", "research@worldbank.org"]}] [{"policyName": "The World Bank Legal", "policyURL": "https://www.worldbank.org/en/about/legal"}, {"policyName": "The World Bank Terms and Conditions", "policyURL": "https://www.worldbank.org/en/about/legal/terms-and-conditions"}, {"policyName": "The World Bank Terms of Use for Datasets", "policyURL": "https://www.worldbank.org/en/about/legal/terms-of-use-for-datasets"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.worldbank.org/en/about/legal/terms-of-use-for-datasets"}] closed [] ["unknown"] {} ["none"] https://openknowledge.worldbank.org/terms-of-use ["none"] unknown unknown [] [] {} Worldwide Governance Indicators Project is covered by Thomson Reuters Data Citation Index. 2016-11-24 2021-02-12 +r3d100012244 OHSU Digital Commons eng [{"additionalName": "OHSU Digital Collections", "additionalNameLanguage": "eng"}] https://digitalcollections.ohsu.edu/ [] ["https://digitalcollections.ohsu.edu/contact?locale=en"] OHSU Digital Commons is a repository for the scholarly and creative work of Oregon Health & Science University. Developed by the OHSU Library, Digital Commons provides the university community with a platform for publishing and accessing content produced by students, faculty, and staff. OHSU Digital Commons documents the history and growth of the university, as well as current progress in education, research, and health care. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ohsu.edu/about/ohsu-vision-mission-and-values [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["brain", "gastrointestional endoscopy", "health", "homeopathy", "hygiene", "interview", "naturopathy", "nutrition", "thalamus", "university history"] [{"institutionName": "Oregon Health & Science University, Library", "institutionAdditionalName": ["OHSU Library"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ohsu.edu/library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright at OHSU", "policyURL": "https://libguides.ohsu.edu/copyright"}, {"policyName": "OHSU Digital Commons Copyright and Publication Policy", "policyURL": "https://www.ohsu.edu/library/ohsu-digital-commons-copyright-and-publication-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ohsu.edu/library/ohsu-digital-commons-copyright-and-publication-policy"}] restricted [] ["unknown"] {} ["DOI"] ["none"] unknown unknown [] [] {} OHSU Digital Commons is covered by Thomson Reuters Data Citation Index. 2016-11-24 2021-06-22 +r3d100012246 Penn World Table eng [{"additionalName": "PWT", "additionalNameLanguage": "eng"}] https://www.rug.nl/ggdc/productivity/pwt/ ["doi:10.15141/S5J01T"] ["pwt@rug.nl"] PWT version 10.0 is a database with information on relative levels of income, output, input and productivity, covering 183 countries between 1950 and 2019. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.rug.nl/ggdc/aboutus/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["capital", "employment", "global economic indicators", "gross domestic product GDP", "income", "population", "prices", "productivity", "real national accounts data", "welfare economics"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of California, Davis, Department of Economics, Center for International Data", "institutionAdditionalName": ["UCDAVIS, CID"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cid.econ.ucdavis.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cid.econ.ucdavis.edu/contact.html"]}, {"institutionName": "University of Groningen, Faculty of Economics and Business, Groningen Growth and Development Centre", "institutionAdditionalName": ["GGDC", "Rijksuniversiteit Groningen, Faculteit Economie en Bedrijfskunde, Groningen Growth and Development Centre"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rug.nl/ggdc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.rug.nl/ggdc/aboutus/contact"]}] [{"policyName": "Rights and obligations", "policyURL": "https://www.rug.nl/info/disclaimer-copyright?lang=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.rug.nl/info/disclaimer-copyright?lang=en"}] closed [] ["unknown"] yes {} [] https://www.rug.nl/ggdc/productivity/pwt/ ["none"] unknown unknown [] [] {} PWT Versions: https://www.rug.nl/ggdc/productivity/pwt/earlier-releases // All information that was previously hosted by the Center for International Comparisons at the University of Pennsylvania // Penn World Table is covered by Thomson Reuters Data Citation Index. 2016-11-24 2021-02-12 +r3d100012247 J-Global eng [{"additionalName": "JCSD", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Japan Chemical Substance Dictionary Nikkaji", "additionalNameLanguage": "eng"}] https://jglobal.jst.go.jp/en ["FAIRsharing_doi:10.25504/FAIRsharing.vd25jp"] ["helpdesk@jsp.go.jp", "https://jglobal.jst.go.jp/en/info/contact"] J-GLOBAL is a service based on the concept of Linking, Expanding, and Sparking, linking science and technology information which hitherto stood alone to support the generation of ideas. By linking the information entered, we provide opportunities to make unexpected discoveries and obtain knowledge from dissimilar fields from high-quality science and technology information within and outside JST. eng [] {"size": "60.000 geme; 3.750.000 chemical substance", "updatedp": "2021-09-22"} ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://jglobal.jst.go.jp/en/aboutus/home [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemical entity", "chemical substance", "gene", "material", "molecular structure"] [{"institutionName": "Japan Science and Technology Agency", "institutionAdditionalName": ["JST"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jst.go.jp/", "institutionIdentifier": ["ROR:00097mb19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "J-GLOBAL Service Terms of Use", "policyURL": "https://jglobal.jst.go.jp/en/terms_of_use/jglobal"}, {"policyName": "Link policy", "policyURL": "https://jglobal.jst.go.jp/en/terms_of_use/link"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://jglobal.jst.go.jp/en/terms_of_use/jglobal"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} J-Global is covered by Clarivate Data Citation Index. Partners: https://jglobal.jst.go.jp/en/aboutus/partner 2016-11-24 2021-09-24 +r3d100012248 Comparative Political Data Set eng [{"additionalName": "CPDS", "additionalNameLanguage": "eng"}] https://www.cpds-data.org/index.php [] ["https://www.cpds-data.org/index.php/team", "virginia.wenger@uzh.ch"] The Comparative Political Data Set 1960-2018 (CPDS) is a collection of political and institutional data which have been assembled in the context of the research projects “Die Handlungsspielräume des Nationalstaates” and “Critical junctures. An international comparison” directed by Klaus Armingeon and funded by the Swiss National Science Foundation. This data set consists of (mostly) annual data for 36 democratic OECD and/or EU-member coun-tries for the period of 1960 to 2018. In all countries, political data were collected only for the democratic periods. The data set is suited for cross-national, longitudinal and pooled time-series analyses. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.cpds-data.org/images/Update2020/Codebook_CPDS_1960-2018_Update_2020.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["demography", "economy", "elections", "government", "income inequality", "macroeconomy", "social expenditure", "socio-economiy", "trade unions"] [{"institutionName": "Swiss National Science Foundation", "institutionAdditionalName": ["FNS", "FNS", "Fondo nazionale svizzero", "Fonds national suisse", "SNF", "SNSF", "Schweizerischer Nationalfonds"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.snf.ch/en/FKhU9kAtfXx7w9AI/page/home", "institutionIdentifier": ["ROR:00yjd3n13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Berne, Institute of Political Science", "institutionAdditionalName": ["IPS", "IPW", "Universit\u00e4t Bern, Institut f\u00fcr Politikwissenschaft"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipw.unibe.ch/index_eng.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2020", "institutionContact": []}, {"institutionName": "University of Zurich, Institute of Political Science", "institutionAdditionalName": ["IPS", "IPW", "Universit\u00e4t Z\u00fcrich, Institut f\u00fcr Politikwissenschaft"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipz.uzh.ch/de.html", "institutionIdentifier": [], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Codebook", "policyURL": "https://www.cpds-data.org/images/Update2020/Codebook_CPDS_1960-2018_Update_2020.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.unibe.ch/legal_notice/index_eng.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.uzh.ch/cmsssl/en/privacy.html#11._Validity"}] closed [] [] yes {} ["none"] https://www.cpds-data.org/index.php [] no yes [] [] {} Comparative Political Data Set is covered by Thomson Reuters Data Citation Index. For more in-depth sources of these data, see the online databases of the OECD, Eurostat or AMECO. The CPDS is suited for cross-national, longitudinal and pooled time-series analyses. 2016-11-24 2021-08-24 +r3d100012249 Constituency-Level Elections Archive eng [{"additionalName": "CLEA", "additionalNameLanguage": "eng"}] http://www.electiondataarchive.org/ [] ["http://www.electiondataarchive.org/contact.html"] The Constituency-Level Elections Archive (CLEA) is a repository of detailed election results at the constituency level for lower house legislative elections from around the world. Our motivation is to preserve and consolidate these valuable data in one comprehensive and reliable resource that is ready for analysis and publicly available at no cost. This public good is expected to be of use to a range of audiences for research, education, and policy-making. eng ["disciplinary"] {"size": "1.900 elections from 170 countries", "updatedp": "2021-03-19"} 2004-09-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.electiondataarchive.org/about.phtml [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["election data"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Taiwan Foundation for Democracy", "institutionAdditionalName": ["TFD"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.tfd.org.tw/opencms/english/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Agency for International Development", "institutionAdditionalName": ["USAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/", "institutionIdentifier": ["ROR:01n6e6j62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.usaid.gov/comment"]}, {"institutionName": "University of Michigan", "institutionAdditionalName": ["UMICH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://umich.edu/", "institutionIdentifier": ["ROR:00jmfr291"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Center for Southeast Asian Studies", "institutionAdditionalName": ["CSEAS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ii.umich.edu/cseas/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cseas@umich.edu"]}, {"institutionName": "University of Michigan, Institute for Social Research", "institutionAdditionalName": ["ISR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["umisr-info@umich.edu"]}, {"institutionName": "University of Michigan, Institute for Social Research, Center for Political Studies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://cps.isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cps-center@umich.edu"]}, {"institutionName": "University of Michigan, Office of Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://research.umich.edu/research-u-m/office-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://research.umich.edu/contact-us"]}] [{"policyName": "What principles have you used to construct CLEA?", "policyURL": "http://www.electiondataarchive.org/faq.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.electiondataarchive.org/"}] restricted [] ["unknown"] yes {} ["none"] http://www.electiondataarchive.org/cite.phtml ["none"] unknown yes [] [] {} Constituency-Level Elections Archive is covered by Thomson Reuters Data Citation Index. Besides CLEA is grateful for support received from the many contributors who provide election results and expertise, read more: http://www.electiondataarchive.org/contributors.html 2016-11-24 2021-03-22 +r3d100012250 Correlates of War Project eng [{"additionalName": "COW", "additionalNameLanguage": "eng"}] https://correlatesofwar.org/ [] ["correlates-of-war@psu.edu", "https://correlatesofwar.org/contact-info", "zmaoz@ucdavis.edu"] COW seeks to facilitate the collection, dissemination, and use of accurate and reliable quantitative data in international relations. Key principles of the project include a commitment to standard scientific principles of replication, data reliability, documentation, review, and the transparency of data collection procedures. More specifically, we are committed to the free public release of data sets to the research community, to release data in a timely manner after data collection is completed, to provide version numbers for data set and replication tracking, to provide appropriate dataset documentation, and to attempt to update, document, and distribute follow-on versions of datasets where possible. We intend to use our website as the center of our data distribution efforts, to serve as central site for collection of possible error information and questions, to provide a forum for interaction with users of Correlates of War data, and as a way for the international relations community to contribute to the continuing development of the project. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://correlatesofwar.org/history [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bilateral trade", "colonial dependency", "diplomatic exchange", "formal alliances", "militarized interstate disputes", "territorial change", "world religion"] [{"institutionName": "Correlates of War Project Advisory Board and Data Hosts", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://correlatesofwar.org/people", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["correlates-of-war@psu.edu"]}, {"institutionName": "Pennsylvania State University", "institutionAdditionalName": ["Penn State"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.psu.edu/", "institutionIdentifier": ["ROR:04p491231"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["correlates-of-war@psu.edu"]}, {"institutionName": "University of Califonria, Davis", "institutionAdditionalName": ["UC Davis"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucdavis.edu/", "institutionIdentifier": ["ROR:05rrcem69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["zmaoz@ucdavis.edu"]}] [{"policyName": "Terms and conditons", "policyURL": "https://correlatesofwar.org/data-sets"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://correlatesofwar.org/data-sets"}] restricted [] ["other"] yes {} ["none"] https://correlatesofwar.org/faq [] unknown unknown [] [] {} Correlates of War Project  is covered by Thomson Reuters Data Citation Index. 2016-11-24 2021-09-22 +r3d100012251 RAMEDIS eng [{"additionalName": "Rare Metabolic Diseases Database", "additionalNameLanguage": "eng"}] https://agbi.techfak.uni-bielefeld.de/ramedis/htdocs/eng/index.php [] ["https://agbi.techfak.uni-bielefeld.de/ramedis/htdocs/eng/staff.php"] The RAMEDIS system is a platform independent, web-based information system for rare metabolic diseases based on filed case reports. It was developed in close cooperation with clinical partners to allow them to collect information on rare metabolic diseases with extensive details, e.g. about occurring symptoms, laboratory findings, therapy and molecular data. eng ["disciplinary"] {"size": "818 patients have been published with 93 different genetic metabolic diseases", "updatedp": "2016-11-28"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://agbi.techfak.uni-bielefeld.de/ramedis/htdocs/eng/index.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "disease", "genetics", "laboratory findings", "metabolic findings", "metabolic symtoms", "metabolism", "symptoms laboratory findings", "therapy"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Universit\u00e4t Bielefeld, Informationsmanagement in der Biotechnologie", "institutionAdditionalName": ["IMBio"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.imbio.de/imbio/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bjsommer@techfak.uni-bielefeld.de", "ralf.hofestaedt@uni-bielefeld.de"]}, {"institutionName": "Universit\u00e4t Bielefeld, Technische Fakult\u00e4t, AG Bioinformatik", "institutionAdditionalName": ["Bielefeld University, Bioinformatics and Medical Informatics Department"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.techfak.uni-bielefeld.de/ags/bi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ttoepel@uni-bielefeld.de"]}, {"institutionName": "Universit\u00e4t T\u00fcbingen, Klinik f\u00fcr Kinder- und Jugendmedizin", "institutionAdditionalName": ["University of Tuebingen, School of Medicine, Childrens Hospital of Reutlingen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.medizin.uni-tuebingen.de/kinderklinik/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Trefz@metagene.de", "grn.kkh-rt@t-online.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://agbi.techfak.uni-bielefeld.de/ramedis/htdocs/eng/staff.php"}] restricted [] ["unknown"] yes {} ["none"] https://agbi.techfak.uni-bielefeld.de/ramedis/htdocs/eng/index.php [] unknown unknown [] [] {} 2016-11-25 2016-12-01 +r3d100012252 Forschungsdaten- und Servicezentrum der Bundesbank deu [{"additionalName": "FDSZ Bundesbank", "additionalNameLanguage": "deu"}, {"additionalName": "RDSC Deutsche Bundesbank", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data and Service Centre Deutsche Bundesbank", "additionalNameLanguage": "eng"}] https://www.bundesbank.de/de/bundesbank/forschung/fdsz [] ["fdsz-data@bundesbank.de", "https://www.bundesbank.de/Navigation/EN/Service/Contact/contact.html?contact_id=331554"] The RDSC provides researchers access to selected microdata from the Bundesbank's data records for independent and non-commercial scientific research projects on basis of the legal requirements. The RDSC is the mediator between the Bundesbank’s wide range of different micro data in various departments and – on the other side – researchers or analysts. In connection with this, the RDSC is responsible for the methodological improvement, the access of and the comprehensive documentation of the high-quality microdata. It also offers additional consultancy and support services to existing and prospective data users and satisfies data protection requirements. English version see: https://www.bundesbank.de/en/bundesbank/research/rdsc/research-data-and-service-centre-rdsc--869492 eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bundesbank.de/en/bundesbank/research [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["MFI interest rate statistics - ZISTA", "Panel on Household Finances - PHF", "balance sheet statistics - BISTA", "banks", "corporate balances sheets - Ustan", "enterprises", "external position of banks - AUSTA", "households", "microdata", "microdatabase direct investment - MiDi", "quarterly borrowers statistics - VJKRE", "securities", "securities holdings statistics - SHS-base", "statistics of the banks profit and loss account - GuV", "statistics on inernational trad in services - SITS"] [{"institutionName": "Deutsche Bundesbank", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bundesbank.de/en", "institutionIdentifier": ["ROR:03jvfq589"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access", "policyURL": "https://www.bundesbank.de/en/bundesbank/research/rdsc/research-data-and-service-centre-rdsc--869492"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bundesbank.de/en/bundesbank/research/rdsc/research-data-and-service-centre-rdsc--869492"}] closed [] [] {} [] https://www.bundesbank.de/en/bundesbank/research/rdsc/research-data-and-service-centre-rdsc--869492 [] yes yes ["RatSWD"] [] {} 2016-11-25 2021-10-25 +r3d100012253 Forschungsdatenzentrum IWH deu [{"additionalName": "FDZ-IWH", "additionalNameLanguage": "deu"}, {"additionalName": "Forschungsdatenzentrum des Leibniz-Instituts f\u00fcr Wirtschaftsforschung Halle", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Centre Halle Institute for Economic Research", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Centre IWH", "additionalNameLanguage": "eng"}] https://www.iwh-halle.de/en/research/data-and-analysis/research-data-centre/ [] ["fdz@iwh-halle.de"] The IWH Research Data Centre provides external scientists with data for non-commercial research. The research data centre of the IWH was accredited by RatSWD. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.iwh-halle.de/en/about-the-iwh/the-institute/at-a-glance/ [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["IWH FDI Micro Database", "International Banking Library", "Management-Buy-Outs (MBO)", "construction survey", "economic situation", "financial markets", "growth", "industry survey", "market economy", "volatility"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "2015", "institutionContact": []}, {"institutionName": "Leibniz Asscociation", "institutionAdditionalName": ["Leibniz Gemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-gemeinschaft.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.leibniz-gemeinschaft.de/en/about-us/organisation/headquarters/contact-persons.html"]}, {"institutionName": "Leibniz-Institut f\u00fcr Wirtschaftsforschung Halle", "institutionAdditionalName": ["Halle Institute for Economic Research", "IWH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iwh-halle.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iwh-halle.de/en/contact/"]}] [{"policyName": "Antrag auf Datennutzung", "policyURL": "https://www.iwh-halle.de/fileadmin/user_upload/data/Antrag_Datenzentrum.pdf"}, {"policyName": "Benutzerordnung", "policyURL": "https://www.iwh-halle.de/fileadmin/user_upload/data/benutzerordnung_iwh-fdz_feb-19.pdf"}, {"policyName": "Policy relevance", "policyURL": "https://www.iwh-halle.de/en/research/data-and-analysis/research-data-centre/iwh-fdi-micro-database/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iwh-halle.de/fileadmin/user_upload/data/terms_of_use_RDC_IWH.pdf"}] closed [] ["unknown"] {} ["DOI"] [] unknown unknown ["RatSWD"] [] {} 2016-11-25 2019-11-06 +r3d100012254 CLARIN-LT eng [{"additionalName": "CLARIN-LT Repository", "additionalNameLanguage": "eng"}] http://clarin-lt.lt/?lang=en [] ["andrius.utka@vdu.lt", "dspace@clarin.vdu.lt", "info@clarin.vdu.lt"] Lithuania became a full member of CLARIN ERIC in January of 2015 and soon CLARIN-LT consortium was founded by three partner universities: Vytautas Magnus University, Kaunas Technology University and Vilnius University. The main goal of the consortium is to become a CLARIN B centre, which will be able to serve language users in Lithuania and Europe for storing and accessing language resources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng", "lit"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://clarin.vdu.lt/xmlui/page/about#mission-statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Delfi", "Lithuanian language", "NLP", "corpora", "social media", "syntactic analysis", "treebank"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "Kaunas University of Technology", "institutionAdditionalName": ["KTU", "Kauno Technologijos Universitetas"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ktu.edu/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ktu@ktu.lt"]}, {"institutionName": "Vilnius University", "institutionAdditionalName": ["VU", "Vilniaus Universitetas"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.vu.lt/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Vytautas Magnus University, Centre of Computational Linguistics", "institutionAdditionalName": ["CCL", "VDU", "VMU", "Vytauto Did\u017eiojo universitetas"], "institutionCountry": "LTU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://tekstynas.vdu.lt/locale.xhtml;jsessionid=0E179E1ABB6B0122B45FE15DB527362A?method=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["a.utka@hmf.vdu.lt"]}] [{"policyName": "CLARIN-LT TERMS OF USE", "policyURL": "https://clarin.vdu.lt/licenses/CLARIN-LT_Terms-of-Service_EN-LT.htm"}, {"policyName": "CLARIN-LT repository About and Legal Information", "policyURL": "https://clarin.vdu.lt/xmlui/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "http://creativecommons.org/about/cc0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.vdu.lt/licenses/eula/ACA_CLARIN-LT_End-User-Licence-Agreement_EN-LT.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.vdu.lt/licenses/eula/PUB_CLARIN-LT_End-User-Licence-Agreement_EN-LT.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.vdu.lt/licenses/eula/RES_CLARIN-LT_End-User-Licence-Agreement_EN-LT.htm"}] restricted [{"dataUploadLicenseName": "DISTRIBUTION LICENCE AGREEMENT", "dataUploadLicenseURL": "https://clarin.vdu.lt/licenses/CLARIN-LT-Distribution_Licence_EN-LT.htm"}] ["DSpace"] yes {"api": "https://vlo.clarin.eu/data/CLARIN_LT_digital_library_in_the_Republic_of_Lithuania.html", "apiType": "OAI-PMH"} ["hdl"] https://clarin.vdu.lt/xmlui/page/cite [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://clarin.vdu.lt/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} CLARIN-LT data can be Searched in CLARIN Virtual Language Observatory https://vlo.clarin.eu/?0-1.ILinkListener-searchContainer-selections-facets-container-facets-1-facet-facetValues-allValues-bodyContent-facetValuesContainer-facetValue-528-facetSelect . 2016-11-28 2020-02-14 +r3d100012256 National Library of Norway | Språkbanken nor [{"additionalName": "Speech & Language Data Bank", "additionalNameLanguage": "eng"}, {"additionalName": "Spr\u00e5kbankens ressurskatalog", "additionalNameLanguage": "nor"}] https://www.nb.no/sprakbanken/en/sprakbanken/ [] ["https://www.nb.no/en/organisation-and-management-team/", "nb@nb.no"] Språkbanken is a collection of Norwegian language technology resources, and a national infrastructure for language technology and research. Our mandate is to collect and develop language resources, and to make these available for researchers, students and the ICT industry which works with the development of language-based ICT solutions. Språkbanken was established as a language policy initiative, designed to ensure that language technology solutions based on the Norwegian language will be developed, and thereby prevent domain loss of Norwegian in technology-dependent areas, cf. Mål og meining (Report 35, 2007 – 2008). As of today the collection contains resources in both Norwegian Bokmål and Nynorsk, as well as in Swedish, Danish and Norwegian Sign Language (NTS). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Danish language", "Norwegian Bokm\u00e5l", "Norwegian language", "Norwegian newspapers", "Nynorsk", "Swedish language", "corpora"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "CLARINO", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Norway"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.b.uib.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nasjonalbiblioteket, Spr\u00e5kbanken", "institutionAdditionalName": ["National Library of Norway, Speech & Language Data Bank"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nb.no/sprakbanken/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] [] no {"api": "http://www.nb.no/clarino/oai", "apiType": "OAI-PMH"} ["URN", "hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2016-11-28 2021-10-20 +r3d100012257 PolMine eng [{"additionalName": "PolMine Project", "additionalNameLanguage": "eng"}] https://polmine.github.io/ [] ["andreas.blaette@uni-due.de", "http://polmine.sowi.uni-due.de/polmine/index.php/contact/"] The focus of PolMine is on texts published by public institutions in Germany. Corpora of parliamentary protocols are at the heart of the project: Parliamentary proceedings are available for long stretches of time, cover a broad set of public policies and are in the public domain, making them a valuable text resource for political science. The project develops repositories of textual data in a sustainable fashion to suit the research needs of political science. Concerning data, the focus is on converting text issued by public institutions into a sustainable digital format (TEI/XML). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://polmine.sowi.uni-due.de/polmine/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["German Bundestag", "corpora", "parliamentarism", "parliamentary protocols", "policy", "politics", "subcorpora", "text mining"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "Institut f\u00fcr Deutsche Sprache", "institutionAdditionalName": ["IDS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www1.ids-mannheim.de/kl/projekte/korpora/archiv/pp.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NRW School of Governance", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nrwschool.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nrwschool.de/service-2/directions-contact/"]}, {"institutionName": "University of Duisburg-Essen, Faculty of the Social Sciences, Institute of Political Science", "institutionAdditionalName": ["UDE, IfP", "Universit\u00e4t Duisburg-Essen, Fakult\u00e4t f\u00fcr Gesellschaftswissenschaften, Institut f\u00fcr Politikwissenschaft"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-due.de/politik/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://polmine.sowi.uni-due.de/andreasblaette/?page_id=74"]}] [{"policyName": "Guidelines for Electronic Text Encoding and Interchange", "policyURL": "http://clarin.ids-mannheim.de/standards/views/view-spec.xq;jsessionid=1myykrkzlnu8kpgkohvajofaa?id=SpecTei"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://polmine.github.io/corpora/"}] restricted [] [] yes {"api": "http://polmine.sowi.uni-due.de:8080/oai/provider", "apiType": "OAI-PMH"} ["none"] [] unknown unknown [] [] {"syndication": "https://polmine.github.io/feed.xml", "syndicationType": "RSS"} The PolMine Project is now a registered CLARIN centre, i.e. it is listed here: https://www.clarin.eu/content/overview-clarin-centres. As a category C CLARIN centre, we offer metadata for the data resulting from the PolMine project that can be harvested by a web service. Most importantly, our data can now be explored through the Virtual Language Observatory (VLO) https://vlo.clarin.eu/search?5&fq=collection:PolMine+Repo . The data itself is available for registered academic users through our GitLab server (https://gitlab.sowi.uni-due.de). •PolMine-repositories at GitHub: https://github.com/PolMine Login to PolMine: https://gitlab.sowi.uni-due.de/users/sign_in 2016-11-28 2017-01-07 +r3d100012258 Spanish CLARIN K-Centre eng [{"additionalName": "Centro-K CLARIN", "additionalNameLanguage": "eng"}, {"additionalName": "Spanish CLARIN Knowledge Centre", "additionalNameLanguage": "eng"}] http://www.clarin-es-lab.org/index-es.html [] ["iulatrl@upf.edu"] Competence Centre IULA-UPF-CC CLARIN manages, disseminates and facilitates this catalogue, which provides access to reference information on the use of language technology projects and studies in different disciplines, especially with regard to Humanities and Social Sciences. The Catalog relates information that is organized by Áreas, (disciplines and research topics), Projects (of research that use or have used language technologies), Tasks (that make the tools), Tools (of language technology), Documentation (articles regarding the tools and how they are used) and resources such as Corpora (collections of annotated texts) and Lexica (collections of words for different uses). eng ["disciplinary"] {"size": "", "updatedp": ""} ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Spanish language", "corpora", "lexica"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "Generalitat de Catalunya, Departament d'Economia i Coneixement", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://web.gencat.cat/ca/temes/economia/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IULA - UPF - Centro de competencias CLARIN", "institutionAdditionalName": ["IULA-UPF-CC-CLARIN", "Universitat Pompeu Fabra, Institut Universitari de Ling\u00fc\u00edstica Aplicada, Centro de competencias CLARIN"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://services.iula.upf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["santiago.bel@upf.edu"]}, {"institutionName": "Universitat Pompeu Fabra, Department of Humanities", "institutionAdditionalName": ["UPF HDLab", "Universitat Pompeu Fabra, Departament d'Humanitas"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upf.edu/huma/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["humanitats@upf.edu"]}, {"institutionName": "Universitat Pompeu Fabra, Institut Universitari de Ling\u00fc\u00edstica Aplicada, grup de Tecnologies dels Recursos Ling\u00fc\u00edstics", "institutionAdditionalName": ["upf iula gruptrl"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iula.upf.edu/trl/rpresca.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CLARIN Centre K certificate", "policyURL": "https://www.clarin.eu/sites/default/files/K-Certificate-EBNNB_0.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/gpl-3.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/copyleft/fdl.html"}] restricted [] [] {"api": "https://vlo.clarin.eu/data/IULA_UPF_OAI_Archive.html", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["other"] [] {} Distributed CLARIN K Centre consisting of CLARIN Competence Center IULA-UPF and HDLab@UPF-Department of Humanities (Barcelona), UNED – LINHD: Laboratorio de innovación en Humanidades Digitales (Madrid), and UPV – Grupo IXA (San Sebastián). 2016-11-28 2017-03-09 +r3d100012259 Repository CLARIN-D Centre CEDIFOR deu [{"additionalName": "Centre for the Digital Foundation of Research in the Humanities, Social, and Educational Sciences", "additionalNameLanguage": "eng"}, {"additionalName": "Centrum f\u00fcr Digitale Forschung in den Geistes-, Sozial- und Bildungswissenschaften", "additionalNameLanguage": "deu"}] https://www.cedifor.de/repository-clarin-d-centre-cedifor-2/ [] ["support@clarin-d.de"] The CLARIN-D Centre CEDIFOR provides a repository for long-term storage of resources and meta-data. Resources hosted in the repository stem from research of members as well as associated research projects of CEDIFOR. This includes software and web-services as well as corpora of text, lexicons, images and other data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cuneiform scripts", "digital humanities", "educational research", "epigraphic monuments", "multilingual stemmatology", "qualitative research", "semantics", "teaching interaction"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["German Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin-d.net/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "Centre for the Digital Foundation of Research in the Humanities, Social, and Educational Sciences", "institutionAdditionalName": ["Centrum f\u00fcr Digitale Forschung in den Geistes-, Sozial- und Bildungswissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cedifor.de/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "DIPF | Leibniz-Institut f\u00fcr Bildungsforschung und Bildungsinformation", "institutionAdditionalName": ["DIPF", "DIPF | Leibniz Institute for Research and Information in Education"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dipf.de/de/dipf-aktuell/aktuelles", "institutionIdentifier": ["ROR:0327sr118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dipf.de/en/dipf-news"]}, {"institutionName": "Goethe-Universit\u00e4t Frankfurt", "institutionAdditionalName": ["Goethe University Frankfurt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uni-frankfurt.de/de?locale=de", "institutionIdentifier": ["ROR:04cvxnb49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Darmstadt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tu-darmstadt.de/", "institutionIdentifier": ["ROR:05n911h24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Protection Declaration", "policyURL": "https://www.cedifor.de/en/data-protection-declaration-2/"}, {"policyName": "Research workflows", "policyURL": "https://www.cedifor.de/en/ehumanities-forschungs-workflows-2/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/legalcode"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/legalcode"}, {"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}] [] {"api": "https://oai.cedifor.de/?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2016-11-28 2021-08-24 +r3d100012260 Tekstlaboratoriet nor [{"additionalName": "The Text Laboratory", "additionalNameLanguage": "eng"}, {"additionalName": "tekstlab", "additionalNameLanguage": "nor"}] http://www.hf.uio.no/iln/english/about/organization/text-laboratory/ [] ["tekstlab-post@iln.uio.no"] The Text Laboratory provides assistance with databases, word lists, corpora and tailored solutions for language technology. We also work on research and development projects alone or in cooperation with others - locally, nationally and internationally. Services and tools: Word and frequency lists, Written corpora, Speech corpora, Multilingual corpora, Databases, Glossa Search Tool, The Oslo-Bergen Tagger, GREI grammar games, Audio files: dialects from Norway and America etc., Nordic Atlas of Language Structures (NALS) Journal, Norwegian in America, NEALT, Ethiopian Language Technology, Access to Corpora eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.hf.uio.no/iln/english/about/organization/text-laboratory/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Glossa", "MultiLing", "NALS", "NEALT", "Scandinavian literature", "corpora", "languages", "multilingualism"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://clarin.eu/contact"]}, {"institutionName": "CLARINO", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure Norway"], "institutionCountry": "NOR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://clarin.b.uib.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitetet i Oslo, Det humanistiske fakultet, Institutt for lingvistiske og nordiske studier", "institutionAdditionalName": ["UiO, Faculty of Humanities, Department of Linguistics and Scandinavian Studies", "university of Oslo, Faculty of Humanities, Department of Linguistics and Scandinavian Studies"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uio.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use and Disclaimer", "policyURL": "http://www.clarin.eu/node/3760"}, {"policyName": "UiO Ethical guidelines", "policyURL": "http://www.uio.no/english/about/regulations/ethical-guidelines/index.html"}, {"policyName": "UiO Regulations and guidelines", "policyURL": "http://www.uio.no/english/about/regulations/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.clarin.eu/content/licenses-agreements-legal-terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://kitwiki.csc.fi/twiki/bin/view/FinCLARIN/ClarinEulaAca?ID=1&AFFIL=EDU&BY=1&NC=1&NORED=1"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} github: https://github.com/textlab At the Text Laboratory, University of Oslo, we are currently developing a new version of our corpus search and post-processing tool Glossa. Glossa allows a user to search a text corpus, or a set of corpora, for one or more words, phrases or grammatical constructions. 2016-11-28 2017-01-14 +r3d100012262 ILC-CNR for CLARIN-IT repository eng [{"additionalName": "CLARIN-IT Repository", "additionalNameLanguage": "eng"}, {"additionalName": "ILC4CLARIN", "additionalNameLanguage": "eng"}] https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/ [] ["Alessandro.Enea@ilc.cnr.it", "dspace-clarin-it-ilc-help@ilc.cnr.it"] ILC-CNR for CLARIN-IT repository is a library for linguistic data and tools. Including: Text Processing and Computational Philology; Natural Language Processing and Knowledge Extraction; Resources, Standards and Infrastructures; Computational Models of Language Usage. The studies carried out within each area are highly interdisciplinary and involve different professional skills and expertises that extend across the disciplines of Linguistics, Computational Linguistics, Computer Science and Bio-Engineering. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/about?locale-attribute=en [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Ancient Greek", "Italian Language", "bioengineering", "computational linguistics", "computational philology", "corpora", "treebanks"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN-IT", "institutionAdditionalName": ["l'Infrastruttura Comune Italiana per le Risorse e le Tecnologie Linguistiche", "the Italian Common Language Resources and Technology Infrastructure"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin-it.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.clarin-it.it/contact"]}, {"institutionName": "CNR-ILC", "institutionAdditionalName": ["Consiglio Nazionale delle Ricerche, Istituto di Linguistica Computazionale \u00abA. Zampolli\u00bb", "ILC", "National Research Council of Italy, Institute for Computational Linguistics \"Antonio Zampolli\""], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ilc.cnr.it/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ilc.cnr.it/en/contact"]}, {"institutionName": "Cnr", "institutionAdditionalName": ["Consiglio Nazionale delle Ricerche", "Italy's National Research Council"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cnr.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cnr.it/en/contatti"]}] [{"policyName": "CLARIN-IT Terms of Service", "policyURL": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/terms-of-service"}, {"policyName": "ILC-CNR for CLARIN-IT repository\nAbout and Policies", "policyURL": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/about?locale-attribute=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "RL", "dataLicenseURL": "https://opensource.org/licenses/MS-PL"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/licenses"}] restricted [{"dataUploadLicenseName": "Distribution License Agreement", "dataUploadLicenseURL": "https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/contract"}] ["DSpace"] no {"api": "http://dspace-clarin-it.ilc.cnr.it/repository/oai/openaire_data", "apiType": "OAI-PMH"} ["hdl"] https://dspace-clarin-it.ilc.cnr.it/repository/xmlui/page/cite [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Searchable by CLARIN Virtual Language Observatory (VLO) facted search (ILC data & tools): https://vlo.clarin.eu/search?5&fq=organisation:Istituto+di+Linguistica+Computazionale+%E2%80%9CA.+Zampolli%E2%80%9D+-+Consiglio+Nazionale+delle+Ricerche+%28ILC-CNR%29&fqType=organisation:or 2016-11-28 2022-01-03 +r3d100012263 Faces Of Fungi database eng [{"additionalName": "Facesoffungi", "additionalNameLanguage": "eng"}, {"additionalName": "FoF", "additionalNameLanguage": "eng"}] https://www.facesoffungi.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.jr31ex"] ["facesoffungi@gmail.com", "kdhyde3@gmail.com"] This database host for fungi data related to new classification with morphology, molecular and other important data. This fungal database allows deposition of taxonomic data, phenotypic details and other useful data, which will enhance our current taxonomic understanding and ultimately enable mycologists to gain better and updated insights into the current fungal classification system. In addition, the database will also allow access to comprehensive metadata including descriptions of voucher and type specimens. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.facesoffungi.org/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["electrical conductivity", "mycelial biomass", "mycelial growth rate", "osmotic pressure"] [{"institutionName": "Mae Fah Luang University, School of Science", "institutionAdditionalName": ["MFO, SoS"], "institutionCountry": "THA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://en.mfu.ac.th/schools/schoolofscience.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["science@mfu.ac.th"]}, {"institutionName": "Mushroom Research Center", "institutionAdditionalName": ["MRC"], "institutionCountry": "THA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://mushroomresearchcentre.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mushroomresearchcentre.com/contactus.php"]}, {"institutionName": "Mushroom Research Foundation", "institutionAdditionalName": ["MRF"], "institutionCountry": "THA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mushroomresearchcentre.com/about-the-mushroom-research-foundation.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.facesoffungi.org/"}] restricted [{"dataUploadLicenseName": "Submit Additions to Faces Of Fungi Phyla", "dataUploadLicenseURL": "https://www.facesoffungi.org/submit-additions-faces-fungi-phyla/"}] [] yes {} ["other"] https://www.facesoffungi.org/ [] unknown unknown [] [] {} 2016-11-28 2021-10-15 +r3d100012265 CryptoDB eng [] https://cryptodb.org/cryptodb/app ["FAIRsharing_doi:10.25504/FAIRsharing.t3nprm", "MIR:00000149", "RRID:SCR_013455"] ["https://cryptodb.org/cryptodb/app/contact-us"] CryptoDB is an integrated genomic and functional genomic database for the parasite Cryptosporidium and other related genera. CryptoDB integrates whole genome sequence and annotation along with experimental data and environmental isolate sequences provided by community researchers. The database includes supplemental bioinformatics analyses and a web interface for data-mining. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "FAIR", "enzyme", "genetic", "immunology", "metabolic pathways", "metabolomics", "ontology", "protein expression", "terminology"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.niaid.nih.gov/labsandresources/resources/dmid/brc/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "http://cryptodb.org/cryptodb/showXmlDataContent.do?name=XmlQuestions.About"}, {"policyName": "Data Submission Policy", "policyURL": "http://eupathdb.org/EuPathDB_datasubm_SOP.pdf"}, {"policyName": "NIAID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://cryptodb.org/cryptodb/showXmlDataContent.do?name=XmlQuestions.About"}] restricted [{"dataUploadLicenseName": "Data Submission Policy.", "dataUploadLicenseURL": "http://cryptodb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] {"api": "http://cryptodb.org/cryptodb/serviceList.jsp", "apiType": "REST"} ["none"] http://cryptodb.org/cryptodb/showXmlDataContent.do?name=XmlQuestions.About#citing ["none"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. CryptoDB is a member of pathogen-databases that are housed under the NIAID-funded EuPathDB Bioinformatics Resource Center (BRC) umbrella. 2016-11-29 2021-09-09 +r3d100012266 ToxoDB eng [] https://toxodb.org/toxo/app ["FAIRsharing_doi:10.25504/FAIRsharing.a08mtc", "MIR:00000153", "OMICS_03168", "RRID:SCR_013453", "RRID:nif-0000-03572"] ["https://toxodb.org/toxo/app/contact-us"] ToxoDB is a genome database for the genus Toxoplasma, a set of single-celled eukaryotic pathogens that cause human and animal diseases, including toxoplasmosis. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://toxodb.org/toxo/showXmlDataContent.do?name=XmlQuestions.About [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "bioinformatics", "gene models", "immunology", "protein", "toxoplasma"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": ["UPenn"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "http://toxodb.org/toxo/showXmlDataContent.do?name=XmlQuestions.About#use"}, {"policyName": "Data Submission Policy", "policyURL": "http://toxodb.org/EuPathDB_datasubm_SOP.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://toxodb.org/toxo/showXmlDataContent.do?name=XmlQuestions.About#use"}] restricted [{"dataUploadLicenseName": "Data Submission Policy", "dataUploadLicenseURL": "http://toxodb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "http://toxodb.org/toxo/serviceList.jsp", "apiType": "REST"} [] http://toxodb.org/toxo/showXmlDataContent.do?name=XmlQuestions.About [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://toxodb.org/news.rss", "syndicationType": "RSS"} is covered by Elsevier. ToxoDB is a member of pathogen-databases that are housed under the NIAID-funded EuPathDB Bioinformatics Resource Center (BRC) umbrella. University of Pennsylvania is one of four Bioinformatics Resource Centers awarded by NIAID to provide data, tools and services which can be accessed through publicly available sites. EupathDB project includes: AmoebaDB, CryptoDB, FungiDB, GiardiaDB, MicrosporidiaDB, PiroplasmaDB, PlasmoDB, ToxoDB , TrichDB, TriTrypDB andOrthoMCL. 2016-11-29 2021-09-09 +r3d100012267 Cross-national Equivalent File eng [{"additionalName": "CNEF", "additionalNameLanguage": "eng"}] https://cnef.ehe.osu.edu/ ["RRID:SCR_008935", "RRID:nlx_151820"] ["cnef@osu.edu"] The Cross-National Equivalent File (CNEF) contains population panel data from Australia, Canada, Germany, Great Britain, Korea, Russia, Switzerland and the United States. Each of these countries undertakes a longitudinal household economic survey. The data are made equivalent, providing a reference dataset which cross-links each of the individual studies and allowing cross-national comparisons. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://cnef.ehe.osu.edu/data/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["economics", "economy", "population", "social statistics", "statistics", "survey"] [{"institutionName": "National Institutes of Health, National Institute for Aging", "institutionAdditionalName": ["NIA", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nia.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ohio State University, College of Education and Human Ecology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ehe.osu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ehe.osu.edu/human-sciences/directory/?id=lillard.13"]}] [{"policyName": "Access Procedures", "policyURL": "https://cnef.ehe.osu.edu/data/access-procedures/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cnef.ehe.osu.edu/files/2017/04/SOEP_CNEF_access_procedures.pdf"}] closed [] ["unknown"] {} ["none"] ["none"] yes unknown [] [] {} Cross-national Equivalent File is covered by Thomson Reuters Data Citation Index. Prepared by Dean Lillard at the Department of Human Sciences at the Ohio State University in collaboration with: read more: https://cnef.ehe.osu.edu/ 2016-11-29 2017-11-21 +r3d100012268 Curtin University Research Data Collection eng [] https://researchdata.ands.org.au/contributors/curtin-university [] ["researchdata@curtin.edu.au"] Curtin University has 2758 data records in Research Data Australia, which cover 527 subjects areas including EARTH SCIENCES, GEOLOGY and MINERAL EXPLORATION and involve 64 group(s). eng ["institutional"] {"size": "2758 data records", "updatedp": "2021-05-19"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://researchdata.ands.org.au/page/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "emerging technologies", "energy", "health", "information communication technology ICT", "minerals"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ands.org.au/contact-us"]}, {"institutionName": "Curtin University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.curtin.edu.au/", "institutionIdentifier": ["ROR:02n415q13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Curtin University Library", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.curtin.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ResearchData@curtin.edu.au"]}, {"institutionName": "Curtin University, Digital and Technology Solutions", "institutionAdditionalName": ["DTS"], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dts.curtin.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Data Australia contributors", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://researchdata.ands.org.au/contributors", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Australian Code for the Responsible Conduct of Research", "policyURL": "https://www.nhmrc.gov.au/about-us/publications/australian-code-responsible-conduct-research-2018"}, {"policyName": "Curtin Research Data Collection", "policyURL": "https://library.curtin.edu.au/about/research-data-collection/"}, {"policyName": "Research Data and Primary Materials Policy", "policyURL": "https://policies.curtin.edu.au/local/docs/policy/Research_Data_and_Primary_Materials_Policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org.au/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://policies.curtin.edu.au/local/docs/policy/Research_Data_and_Primary_Materials_Policy.pdf"}] restricted [{"dataUploadLicenseName": "Publishing data", "dataUploadLicenseURL": "https://www.ands.org.au/working-with-data/publishing-and-reusing-data/publishing"}] [] {"api": "https://researchdata.ands.org.au/registry/services/oai", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [] {} Curtin University Research Data Collection is covered by Thomson Reuters Data Citation Index. Curtin University Research Data Collection is part of Research Data Australia. 2016-11-29 2021-10-25 +r3d100012269 Integrated Resource for Reproducibility in Macromolecular Crystallography eng [{"additionalName": "IRRMC", "additionalNameLanguage": "eng"}] https://proteindiffraction.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.kqbg3s"] [] The Integrated Resource for Reproducibility in Macromolecular Crystallography includes a repository system and website designed to make the raw data of protein crystallography more widely available. Our focus is on identifying, cataloging and providing the metadata related to datasets, which could be used to reprocess the original diffraction data. The intent behind this project is to make the resulting three dimensional structures more reproducible and easier to modify and improve as processing methods advance. eng ["disciplinary"] {"size": "6245 datasets; 3280 projects", "updatedp": "2017-03-28"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "30101 Inorganic Molecular Chemistry", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "310 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://proteindiffraction.org/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "beamlines", "crystal structure", "macromolecular crystallography", "protein structure", "synchrotrons"] [{"institutionName": "National Institutes of Health, Targeted Software Development", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://datascience.nih.gov/bd2k/funded-programs/software", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Virginia, Minor Lab", "institutionAdditionalName": ["University of Virginia, Wladek Minor Laboratory"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://med.virginia.edu/faculty/faculty-listing/wm4n/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["wladek@iwonka.med.virginia.edu"]}] [{"policyName": "Usage Policies", "policyURL": "https://proteindiffraction.org/about/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "Public Domain Dedication", "dataUploadLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] [] {} ["DOI"] https://proteindiffraction.org/ ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} Integrated Resource for Reproducibility in Macromolecular Crystallography is covered by Thomson Reuters Data Citation Index. This project is being funded by the Targeted Software Development award 1 U01 HG008424-01 as part of the BD2K (Big Data to Knowledge) program of the National Institutes of Health. 2016-11-29 2021-10-25 +r3d100012270 Land Information New Zealand Data Service eng [{"additionalName": "LINZ Data Service", "additionalNameLanguage": "eng"}] https://data.linz.govt.nz/ [] ["customersupport@linz.govt.nz", "linzdataservice@linz.govt.nz"] The LINZ Data Service provides free online access to New Zealand’s most up-to-date land and seabed data. The data can be searched, browsed and downloaded. The LINZ web services can be also integrated into other applications. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.linz.govt.nz/data/linz-data-service [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["New Zealand", "maps"] [{"institutionName": "Land Information New Zealand", "institutionAdditionalName": ["LINZ", "Toitu te whenua"], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.linz.govt.nz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Koordinates terms of use", "policyURL": "https://koordinates.com/terms-of-use/"}, {"policyName": "Terms of Use", "policyURL": "https://data.linz.govt.nz/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://data.linz.govt.nz/license/attribution-3-0-new-zealand/"}] restricted [] ["other"] yes {"api": "https://help.koordinates.com/using-data/web-services-apis-and-applications/find-and-use-web-services/", "apiType": "other"} ["none"] http://www.linz.govt.nz/data/licensing-and-using-data/attributing-linz-data [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} LINZ is covered by Thomson Reuters Data Citation Index. 2016-11-29 2017-09-29 +r3d100012273 SASBDB eng [{"additionalName": "Small Angle Scattering Biological Data Bank", "additionalNameLanguage": "eng"}] https://www.sasbdb.org/ ["OMICS_10449"] ["info@sasbdb.org"] Small angle scattering (SAS) of X-ray and neutrons provides structural information on biological macromolecules in solution at a resolution of 1-2 nm. SASBDB is a fully searchable curated repository of freely accessible and downloadable experimental data, which are deposited together with the relevant experimental conditions, sample details, derived models and their fits to the data. eng ["disciplinary"] {"size": "1422 experimental data sets; 2250 models", "updatedp": "2020-01-30"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.sasbdb.org/aboutSASBDB/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Petra III", "SAS", "SAXS beamline P12", "Small Angle Scattering", "small angle X-ray scattering"] [{"institutionName": "European Molecular Biology Laboratory, Biological Small Angle Scattering Group, Hamburg Outstation", "institutionAdditionalName": ["BioSAXS", "EMBL"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.embl-hamburg.de/biosaxs/", "institutionIdentifier": ["GRID:475756.2", "ISNI: 0000000404445410", "ROR:050589e39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SASBDB contents", "policyURL": "https://www.sasbdb.org/help/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.sasbdb.org/aboutSASBDB/"}] restricted [{"dataUploadLicenseName": "SADB deposition guide", "dataUploadLicenseURL": "https://www.sasbdb.org/media/SASBDB_deposition_guide.pdf"}] [] {"api": "https://www.sasbdb.org/rest-api/docs/#!/summary/list_path", "apiType": "REST"} [] https://www.sasbdb.org/ [] yes yes [] [] {} SASBDB is covered by Thomson Reuters Data Citation Index. 2016-11-29 2021-09-22 +r3d100012274 Smithsonian Research Online eng [{"additionalName": "SRO", "additionalNameLanguage": "eng"}] https://repository.si.edu/ ["OpenDOAR:1122", "ROAR:6428", "hdl:10088/27849"] ["https://repository.si.edu/contact", "hutchinsona@si.edu"] The Smithsonian Repository is a digital service that collects, preserves, and disseminates research materials via several communities including Research Data Sets. It preserves and protects the organization's legacy... eng ["institutional"] {"size": "62 datasets", "updatedp": "2019-05-14"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://repository.si.edu/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Biology", "Demography", "Genetics", "Geology", "Geophysical phenomena", "Population biology"] [{"institutionName": "Smithsonian Institution, Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.si.edu/", "institutionIdentifier": [], "responsibilityStartDate": "1846", "responsibilityEndDate": "", "institutionContact": ["https://library.si.edu/contact", "info@si.edu"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.si.edu/Termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://research.si.edu/srb_faq.cfm#5"}, {"dataLicenseName": "other", "dataLicenseURL": "https://interdisciplinary.si.edu/collaboration-highlights/public-access/"}] restricted [] ["DSpace"] no {} ["DOI", "hdl"] https://repository.si.edu/handle/10088/27850 ["none"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://repository.si.edu/feed/atom_1.0/site", "syndicationType": "ATOM"} 2016-11-29 2021-09-21 +r3d100012275 Biogeographic Information and Observation System eng [{"additionalName": "BIOS", "additionalNameLanguage": "eng"}] https://wildlife.ca.gov/Data/BIOS [] ["BIOS@wildlife.ca.gov"] BIOS is a system designed to enable the management, visualization, and analysis of biogeographic data collected by the California Department of Fish and Wildlife and its partner organizations. BIOS integrates GIS, relational database management, and ESRI's ArcGIS Server technology to create a statewide, integrated information management tool that can be used on any computer with access to the Internet. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wildlife.ca.gov/Data/BIOS/About [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Biogeographic", "California", "Habitat", "MarineBIOS", "Timberland Conservation Program", "renewable energy"] [{"institutionName": "California Department of Fish and Wildlife", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wildlife.ca.gov/", "institutionIdentifier": ["ROR:02v6w2r95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["BDB@wildlife.ca.gov"]}] [{"policyName": "Conditions of use", "policyURL": "https://wildlife.ca.gov/Conditions-of-Use"}, {"policyName": "Submitting Data to BIOS", "policyURL": "https://wildlife.ca.gov/Data/BIOS/Submitting-Data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wildlife.ca.gov/Conditions-of-Use#disclose"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.foia.gov/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.thefirstamendment.org/media/publicrecordsact.pdf"}] restricted [] [] {} ["none"] https://wildlife.ca.gov/Data/BIOS/Citing-BIOS [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} BIOS is covered by Clarivate Data Citation Index 2016-11-29 2020-02-19 +r3d100012276 RUresearch Data Portal eng [{"additionalName": "RUcore", "additionalNameLanguage": "eng"}, {"additionalName": "Rutgers University Research Data Portal", "additionalNameLanguage": "eng"}] https://rucore.libraries.rutgers.edu/research/ ["RRID:SCR_006382", "RRID:nlx_152163"] ["https://rucore.libraries.rutgers.edu/research/"] RUresearch Data Portal is a subset of RUcore (Rutgers University Community Repository), provides a platform for Rutgers researchers to share their research data and supplementary resources with the global scholarly community. This data portal leverages all the capabilities of RUcore with additional tools and services specific to research data. It provides data in different clusters (research-genre) with excellent search facility; such as experimental data, multivariate data, discrete data, continuous data, time series data, etc. However it facilitates individual research portals that include the Video Mosaic Collaborative (VMC), an NSF-funded collection of mathematics education videos for Teaching and Research. Its' mission is to maintain the significant intellectual property of Rutgers University; thereby intended to provide open access and the greatest possible impact for digital data collections in a responsible manner to promote research and learning. eng ["institutional"] {"size": "About 120 records", "updatedp": "2017-09-26"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://rucore.libraries.rutgers.edu/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Cognitive science", "Computer science", "Environmental engineering", "Mathematics", "Political science", "Statistics"] [{"institutionName": "Rutgers University, Libraries", "institutionAdditionalName": ["Rutgers, The State University of New Jersey"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.libraries.rutgers.edu/", "institutionIdentifier": ["RUcore"], "responsibilityStartDate": "1766", "responsibilityEndDate": "", "institutionContact": ["cmmills@libraries.rutgers.edu", "krisellen.maloney@rutgers.edu", "minglu@rutgers.edu", "rwomack@libraries.rutgers.edu"]}] [{"policyName": "Data Management and RUresearch", "policyURL": "https://rucore.libraries.rutgers.edu/collab/ref/prs_steering_data_management.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rucore.libraries.rutgers.edu/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [] ["Fedora"] yes {"api": "https://rucore.libraries.rutgers.edu/api/oai-pmh", "apiType": "OAI-PMH"} ["DOI"] https://rucore.libraries.rutgers.edu/research/about/#access ["none"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} RUcore is covered by Thomson Reuters Data Citation Index. RUresearch Data Portal is part of the Rutgers University Community Repository RUcore. 2016-11-29 2017-09-28 +r3d100012277 SWATHAtlas eng [{"additionalName": "SWATH Atlas", "additionalNameLanguage": "eng"}] http://www.swathatlas.org/ ["OMICS_19910"] ["http://www.openswath.org/en/latest/docs/swathatlas.html"] SWATHAtlas is a repository of mass spectrometry data of the human proteome. The repository provides open access to libraries of SWATH-MS (Sequential Windowed Acquisition of All Theoretical Fragment Ion Mass Spectra) datasets. SWATH-MS is a method which combines both data-independent acquisition (DIA) and targeted data analysis techniques for the collection and storage of fragmentation spectra of peptides. Compared to techniques of selected reaction monitoring (SRM), SWATH-MS allows for a more extensive throughput of proteins in a sample to be targeted. The spectra collected in SWATHAtlas can be interpreted with the help of software such as OpenSWATH or Peakview. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.swathatlas.org/background.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["immunology", "immunopeptiodome", "mass spectrometry", "metabolomics", "proteomics"] [{"institutionName": "ETH Zurich, Department of Biology, Institute of Molecular Systems Biology", "institutionAdditionalName": ["ETH Z\u00fcrich, D-Biol, IMSB", "Eidgen\u00f6ssische Technische Hochschule Z\u00fcrich, Departement Biologie, Institut f\u00fcr Molekulare Systembiologie"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imsb.ethz.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["aebersold@imsb.biol.ethz.ch", "caron@imsb.biol.ethz.ch"]}, {"institutionName": "Institute for Systems Biology", "institutionAdditionalName": ["ISB"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.systemsbiology.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.swathatlas.org/contributors.php"}] restricted [] [] {} ["none"] [] yes unknown [] [] {} SWATHAtlas is covered by Thomson Reuters Data Citation Index. 2016-11-29 2017-10-11 +r3d100012278 MORPHYLL eng [{"additionalName": "Acquisition of ecophysiologically relevant morphometric data of fossil leaves", "additionalNameLanguage": "eng"}] http://www.morphyll.naturkundemuseum-bw.de ["biodbcore-001724"] ["anita.rothnebelsick@smns-bw.de"] The database MORPHYLL contains quantitative and qualitative morphometric data of fossil angiosperm leaves from the Paleogene. The data are compiled from different fossil sites housed in various European Natural History Museums. eng ["disciplinary"] {"size": "~ 6000 datasets", "updatedp": "2016-11-30"} 2016-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.morphyll.naturkundemuseum-bw.de/goals.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["fossil plants", "leaf architecture", "leaf morphology", "paleobotany", "plant leaves", "plant traits"] [{"institutionName": "Deutsche Forschungsgemeinschaft, Wissenschaftliche Literaturversorgungs- und Informationssysteme", "institutionAdditionalName": ["DFG, LIS", "German Research Foundation, Scientific Library Services and Information Systems"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/research_funding/programmes/infrastructure/lis/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/research_funding/programmes/infrastructure/lis/contact/index.html"]}, {"institutionName": "Staatliches Museum f\u00fcr Naturkunde Stuttgart", "institutionAdditionalName": ["SMNS", "State Museum of Natural History Stuttgart"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.naturkundemuseum-bw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["anita.rothnebelsick@smns-bw.de", "museum@smns-bw.de", "traiser@smns-bw.de"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.morphyll.naturkundemuseum-bw.de/terms_of_use.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] ["other"] yes {} ["none"] http://www.morphyll.naturkundemuseum-bw.de/goals.php [] unknown unknown [] [] {} 2016-11-29 2021-11-16 +r3d100012281 UWE Research Data Repository eng [{"additionalName": "University of West England Research Data Repository", "additionalNameLanguage": "eng"}] http://www1.uwe.ac.uk/library/searchforthingsa-z/researchdatarepository.aspx [] ["eprints@uwe.ac.uk"] The UWE Research Data Repository holds research data and metadata associated with existing or forthcoming EPSRC-funded publications, produced by UWE Bristol researchers. eng ["institutional"] {"size": "", "updatedp": ""} 2011-10-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://eprints.uwe.ac.uk/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.epsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epsrc.ac.uk/about/contactus/"]}, {"institutionName": "Joint Information Systems Committee", "institutionAdditionalName": ["JISC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.jisc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["customerservices@jisc.ac.uk.", "https://www.jisc.ac.uk/contact"]}, {"institutionName": "University of the West of England Bristol", "institutionAdditionalName": ["UWE Bristol"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uwe.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www1.uwe.ac.uk/about/contactus.aspx"]}] [{"policyName": "Research Repository policies", "policyURL": "http://www1.uwe.ac.uk/library/searchforthingsa-z/researchrepository/help/furtherinformation/repositorypolicies.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www1.uwe.ac.uk/library/searchforthingsa-z/researchrepository/help/furtherinformation/howtodepositfaq/copyrightadvice.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www1.uwe.ac.uk/library/usingthelibrary/researchers/manageyourresearchdata/managingresearchdata/guidance/contacts.aspx"}] restricted [{"dataUploadLicenseName": "Deposit Agreement", "dataUploadLicenseURL": "http://www1.uwe.ac.uk/library/searchforthingsa-z/uweresearchdatarepository/help/furtherinformationdepositor.aspx"}, {"dataUploadLicenseName": "Submission policy", "dataUploadLicenseURL": "http://www1.uwe.ac.uk/library/searchforthingsa-z/researchrepository/help/furtherinformation/repositorypolicies.aspx"}] ["EPrints"] yes {"api": "http://eprints.uwe.ac.uk/cgi/oai2?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] http://www1.uwe.ac.uk/library/searchforthingsa-z/researchrepository/help/furtherinformation/generalrepositoryfaq/answers.aspx#waytocite [] yes yes [] [] {} 2016-12-01 2017-07-20 +r3d100012282 4DGenome eng [{"additionalName": "Chromatin Interaction Database", "additionalNameLanguage": "eng"}] http://4dgenome.research.chop.edu/ [] ["4dgenome@gmail.com", "kai-tan@uiowa.edu"] 4DGenome is a public database that archives and disseminates chromatin interaction data. Currently, 4DGenome contains over 8,038,248 interactions curated from both experimental studies (high throughput and individual studies) and computational predictions. It covers five organisms, Homo sapiens, Mus musculus, Drosophila melanogaster, Plasmodium falciparum, and Saccharomyces cerevisiae. eng ["disciplinary"] {"size": "4.433.071 experimentally-derived interactions; 3.605.176 computationally-predicted interactions", "updatedp": "2021-09-21"} 2014-08-15 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://4dgenome.research.chop.edu/About.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA", "Drosophila melanogaster", "Homo sapiens", "Mus musculus", "Plasmodium falciparum", "Saccharomyces cerevisiae", "chromosomes", "epigenomics", "gene expression", "histone", "systems bioloby"] [{"institutionName": "Children's Hospital of Philadelphia, Division of Oncology, Department of Pediatrics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.chop.edu/centers-programs/cancer-center", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kai-tan@uiowa.edu"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Pennsylvania, Perelman School of Medicine, Department of Pediatrics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.med.upenn.edu/pediatrics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["MySQL"] {} ["none"] https://4dgenome.research.chop.edu/Download.html [] unknown yes [] [] {} 2016-12-05 2021-09-21 +r3d100012284 CARMEN eng [{"additionalName": "Code analysis, repository & modelling for e-neuroscience", "additionalNameLanguage": "eng"}] http://www.carmen.org.uk/ ["RRID:SCR_002795", "RRID:nif-0000-00442"] ["http://www.carmen.org.uk/?page_id=94"] >>> !!!!! The Portal is no longer available. !!!! >>> The CARMEN pilot project seeks to create a virtual laboratory for experimental neurophysiology, enabling the sharing and collaborative exploitation of data, analysis code and expertise. This study by the DCC contributes to an understanding of the data curation requirements of the eScience community, through its extended observation of the CARMEN neurophysiology community’s specification and selection of solutions for the organisation, access and curation of digital research output. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006-10-01 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20504 Physiology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.carmen.org.uk/?page_id=251 [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Central Nervous System CNS", "electrophysiology", "neural activity", "neuroinformatics", "neurophysiology", "virtual laboratory"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bbsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bbsrc.ac.uk/about/contact/"]}, {"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.epsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.epsrc.ac.uk/about/contactus/"]}, {"institutionName": "Newcastle University, School of Medical Education", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncl.ac.uk/sme/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["alastair.knowles@ncl.ac.uk", "c.d.ingram@ncl.ac.uk"]}, {"institutionName": "University of York, Department of Computer Science", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cs.york.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cs.york.ac.uk/contactus/"]}] [{"policyName": "Use policy", "policyURL": "https://www.york.ac.uk/media/it-services/docs/policy/policies/ylaup.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.york.ac.uk/media/it-services/docs/policy/policies/ylaup.pdf"}] restricted [] ["unknown"] {"api": "http://www.carmen.org.uk/?page_id=338", "apiType": "other"} ["none"] [] yes yes [] [] {} Collaboration: http://www.carmen.org.uk/wp-content/uploads/2014/09/carmen-factsheet.pdf 2016-12-07 2018-08-07 +r3d100012285 Aston Data Explorer eng [] http://researchdata.aston.ac.uk/ [] ["researchdata@aston.ac.uk"] Aston Data Explorer is Aston University's repository for our research datasets. It is one of three services providing information about Aston University’s research. Aston Publications Explorer holds Aston's Open Access publications and Aston Research Explorer has broader information about Aston's research work including research staff, awards and activities, projects and research groups. eng ["institutional"] {"size": "307 datasets", "updatedp": "2016-12-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://researchdata.aston.ac.uk/information.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Aston University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.aston.ac.uk/", "institutionIdentifier": ["ROR:05j0ve876"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of London, CoSector", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cosector.com/what-we-do/digital-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data Management Policy", "policyURL": "https://www2.aston.ac.uk/library/support-for-research/open-research-data"}, {"policyName": "Research strategy and policy", "policyURL": "https://www.aston.ac.uk/research/research-strategy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["EPrints"] {} [] ["ORCID"] unknown yes [] [] {"syndication": "http://researchdata.aston.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} Aston Data Explorer is covered by Clarivate Data Citation Index. 2016-12-12 2021-05-05 +r3d100012287 BowPed TRPS Data eng [] http://repository.edition-topoi.org/collection/TRPS ["doi:10.17171/2-5"] ["edition@topoi.org"] Based on Bowerman & Pederson’s Topological Relations Picture Series (TRPS), the author has researched the semantic space of static spatial prepositions of Hieroglyphic Ancient Egyptian (Egyptian, Afro-Asiatic), Arabic, English, French, German, Hebrew, Italian, Russian, and Spanish. This repository publication publishes the raw data. eng ["institutional"] {"size": "", "updatedp": ""} 2016-12-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Arabic", "BowPed", "Egyptian (Ancient)", "English", "French", "German", "Hebrew", "Italian", "Russian", "Spanish", "TRPS", "Topological Relations Picture Series", "Tunisian"] [{"institutionName": "Edition|topoi collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}, {"institutionName": "Excellence Cluster 264 Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Arch\u00e4ologie und Kulturgeschichte Nordostafrikas", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.archaeologie.hu-berlin.de/de/aegy_anoa/index_html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/TRPS/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}] closed [] [] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} This data collection consists of PDF print-outs of the raw Topological Relations Picture Series (TRPS) data on the modern languages (Tunisian) Arabic, English, French, German, Hebrew, Italian, Russian, and Spanish. The data was collected mostly by the way of questionnaires (PPT or PDF) between 2009 and early 2011. The questionnaires are also included in the collection. The call for data was distributed via academic mailing lists, especially via the Egyptologists’ Electronic Forum. 2016-12-16 2021-10-06 +r3d100012288 CCCA Data Centre eng [{"additionalName": "Climate Change Centre Austria Data Centre", "additionalNameLanguage": "eng"}] https://data.ccca.ac.at/ [] ["datenzentrum@ccca.ac.at.", "https://data.ccca.ac.at/contact"] The Climate Change Centre Austria - Data Centre provides the central national archive for climate data and information. The data made accessible includes observation and measurement data, scenario data, quantitative and qualitative data, as well as the measurement data and findings of research projects. eng ["disciplinary"] {"size": "78 datasets", "updatedp": "2016-12-01"} 2016-12-01 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.ccca.ac.at/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate indices", "climate information", "models", "temperature"] [{"institutionName": "Climate Change Centre Austria", "institutionAdditionalName": ["CCCA"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ccca.ac.at/de/home/", "institutionIdentifier": [], "responsibilityStartDate": "2015-02-02", "responsibilityEndDate": "", "institutionContact": ["https://www.ccca.ac.at/en/service/contact/", "info@ccca.ac.at"]}, {"institutionName": "Zentralanstalt f\u00fcr Meteorologie und Geodynamik", "institutionAdditionalName": ["ZAMG"], "institutionCountry": "AUT", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.zamg.ac.at/cms/de/aktuell", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.zamg.ac.at/cms/en/topmenu/contact-us"]}] [{"policyName": "About CCCA Data Centre", "policyURL": "https://data.ccca.ac.at/about"}, {"policyName": "Open definition", "policyURL": "http://opendefinition.org/od/2.0/en/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.de.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://www.opendefinition.org/licenses/cc-by"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://www.opendefinition.org/licenses/cc-by-sa"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://www.opendefinition.org/licenses/cc-zero"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.ccca.ac.at/disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "http://opendefinition.org/od/2.0/en/"}] restricted [] ["CKAN"] yes {"api": "https://data.ccca.ac.at/api/3", "apiType": "REST"} ["hdl"] https://data.ccca.ac.at/about/citation [] unknown yes [] [] {} For upcoming development, Persistent Identifiers (PID) will be implemented. 2016-12-20 2016-12-23 +r3d100012290 Media Repository Humboldt-Universität zu Berlin eng [{"additionalName": "Medien-Repositorium Humboldt-Universit\u00e4t zu Berlin", "additionalNameLanguage": "deu"}] https://media.hu-berlin.de/ [] ["https://www.cms.hu-berlin.de/en/dl-en/multimedia-en/bereiche-en/medienrepositorium-en/standardseite-en#contact", "mr-support@cms.hu-berlin.de"] The Media Repository is a web-based digital asset management system to store, organize and share digital media files. Not only images and documents are directly supported – audio and video content is supported as well. The data can be re-used in other systems. The system manages a variety of file formats and metadata schemes. It stores and organizes media data and helps to manage workflows with them. Public web presentations are possible as well as collaborative work in restricted groups. The Media Repository helps both small teams and larger research projects in the management of media assets and their long-term storage. eng ["institutional"] {"size": "143 projects; 36 with open access content", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.cms.hu-berlin.de/en/dl-en/multimedia-en/bereiche-en/medienrepositorium-en/standardseite-en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["audio", "digital asset management", "image", "multidisciplinary", "video"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Computer- und Medienservice", "institutionAdditionalName": ["CMS", "Humboldt-Universit\u00e4t zu Berlin, Computer and Media Service"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cms.hu-berlin.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hu-berlin.de/de/service/kontakt"]}] [{"policyName": "FAQ - Rechte und Lizenzen", "policyURL": "https://www.cms.hu-berlin.de/de/dl/multimedia/bereiche/medienrepositorium/faq/rechte-lizenzen"}, {"policyName": "Service Description", "policyURL": "https://www.cms.hu-berlin.de/en/dl-en/multimedia-en/bereiche-en/medienrepositorium-en/standardseite-en#service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] yes no [] [] {} Based on the open source software ResourceSpace. 2016-12-21 2021-10-06 +r3d100012291 Norwegian Polar Data Centre eng [{"additionalName": "NPDC", "additionalNameLanguage": "eng"}] https://data.npolar.no/home/ [] [] The Norwegian Polar Institute is a governmental institution for scientific research, mapping and environmental monitoring in the Arctic and the Antarctic. The institute’s Polar Data Centre (NPDC) manages and provides access to scientific data, environmental monitoring data, and topographic and geological map data from the polar regions. The scientific datasets are ranging from human field observations, through in situ and moving sensor data, to remote sensing products. The institute's data holdings also include photographic images, audio and video records. eng ["disciplinary"] {"size": "399 datasets", "updatedp": "2020-02-11"} ["eng", "nor"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.npolar.no/en/about-us/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Norwegian polar region", "Svalbard", "environmental management", "environmental monitoring", "polar management", "seabird tracking", "vessels"] [{"institutionName": "Norwegian Polar Institute", "institutionAdditionalName": ["Norsk Polarinstitutt"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.npolar.no/en/", "institutionIdentifier": ["ROR:03avf6522"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["post@npolar.no"]}] [{"policyName": "Data Policy", "policyURL": "https://data.npolar.no/policy/NPI-data-policy-en_GB.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {"api": "https://api.npolar.no/", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} NPDC is covered by Clarivate Data Citation Index 2016-12-21 2020-02-11 +r3d100012295 Alaska Native Language Archive eng [{"additionalName": "ANLA", "additionalNameLanguage": "eng"}, {"additionalName": "Michael E. Krauss Alaska Native Language Archive", "additionalNameLanguage": "eng"}] http://www.uaf.edu/anla/ [] ["anla@alaska.edu"] The Alaska Native Language Archive houses documentation of the various Native languages of Alaska and helps to preserve and cultivate this unique heritage for future generations. As the premier repository worldwide for information relating to the Native languages of Alaska, the Archive serves researchers, teachers and students, as well as members of the broader community. The collection includes both published and unpublished materials in or on all of the Alaska Native languages and related languages. The collection has enduring cultural, historic, and intellectual value, particularly for Alaska Native language speakers and their descendants eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://www.uaf.edu/anla/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Alaska Native Languages", "Eyak Language Collection", "Haida language", "Indian Languages", "Inuit-Yupik-Unangan Languages", "Knut Bergsland Special Collection", "Tsimshian language"] [{"institutionName": "University of Alaska Fairbanks", "institutionAdditionalName": ["UAF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.uaf.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alaska Fairbanks, Alaska Native Language Center", "institutionAdditionalName": ["ANLC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uaf.edu/anlc/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alaska Fairbanks, College of Liberal Arts", "institutionAdditionalName": ["CLA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.uaf.edu/cla/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alaska Fairbanks, Elmer E. Rasmuson Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.uaf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Gift policy", "policyURL": "http://www.uaf.edu/anla/about/deposit/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/us/"}] restricted [{"dataUploadLicenseName": "Deed of gift", "dataUploadLicenseURL": "http://www.uaf.edu/files/anla/deed_of_gift.pdf"}] [] no {} ["none"] [] unknown unknown [] [] {"syndication": "http://anlarchive.blogspot.com/feeds/posts/default", "syndicationType": "ATOM"} 2017-01-07 2017-01-12 +r3d100012296 Research Data Portal FDAT eng [{"additionalName": "Forschungdatenportal FDAT", "additionalNameLanguage": "deu"}, {"additionalName": "formerly: Research Data Repository of the University of Tuebingen", "additionalNameLanguage": "eng"}] http://fdat.escience.uni-tuebingen.de/portal [] ["https://fdat.escience.uni-tuebingen.de/portal/#/contact"] This research data repository denots a central facility of the University of Tübingen to offer services and technical facilities to local researchers. Services include long term archive storage and data preservation activities for research data as well as an online access system. The repository has a focus on research data from the field of humanities without being limited to it. eng ["institutional"] {"size": "2 projects", "updatedp": "2018-10-02"} 2017 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://fdat.escience.uni-tuebingen.de/portal/#/policies [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FDAT", "archaeology"] [{"institutionName": "Eberhard Karls Universit\u00e4t T\u00fcbingen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-tuebingen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Eberhard Karls Universit\u00e4t T\u00fcbingen, Informations-, Kommunikations- und Medienzentrum", "institutionAdditionalName": ["IKM"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://uni-tuebingen.de/einrichtungen/zentrale-einrichtungen/informations-kommunikations-und-medienzentrum-ikm.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["matthias.lang@uni-tuebingen.de"]}] [{"policyName": "Disclaimer", "policyURL": "https://fdat.escience.uni-tuebingen.de/portal/#/disclaimer"}, {"policyName": "Policies and Services for the Repository at the IKM", "policyURL": "https://fdat.escience.uni-tuebingen.de/portal/#/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Archive Storage Of Your Research Data", "dataUploadLicenseURL": "https://fdat.escience.uni-tuebingen.de/portal/#/deposit"}] ["Fedora"] {"api": "http://fdat.escience.uni-tuebingen.de/portal/rest/oai", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-01-07 2022-01-03 +r3d100012297 GESDB eng [{"additionalName": "Genetic Epidemiology Simulation Database", "additionalNameLanguage": "eng"}] http://gesdb.nhri.org.tw/ ["FAIRsharing_doi:10.25504/FAIRsharing.rbba3x", "OMICS_11980"] ["rchung@nhri.org.tw"] GESDB is a platform for sharing simulation data and discussion of simulation techniques for human genetic studies. The database contains simulation scripts, simulated data, and documentations from published manuscripts. The forum provides a platform for Q&A for the simulated data and exchanging simulation ideas. GESDB aims to promote transparency and efficiency in simulation studies for human genetic studies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["genetic epidemiology", "genetic study", "simulation", "statistical genetics"] [{"institutionName": "National Health Research Institutes", "institutionAdditionalName": ["NHRI"], "institutionCountry": "TWN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nhri.org.tw", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] ["MySQL"] {"api": "ftp://gesdb.nhri.org.tw/", "apiType": "FTP"} ["none"] [] yes yes [] [] {} Yao PJ, Chung RH: GESDB: a platform of simulation resources for genetic epidemiology studies http://dx.doi.org/10.1093/database/baw082 2017-01-10 2021-09-08 +r3d100012298 Chorotree eng [{"additionalName": "database for chorology of trees and shrubs", "additionalNameLanguage": "eng"}] http://www.chorotree.de [] ["christopher.traiser@uni-tuebingen.de", "http://www.chorotree.de/content_kontakt"] Detailed information about global distributions of plants is fundamental for various research projects in plant systematics, palaeo ecology and palaeo climatology. Unfortunately, such information has not yet been publically available in an user-friendly manner. To remedy this, Chorotree has been set up as an data store and information system for worldwide distributional data of trees and shrubs. It aims to provide the data and information in a way that is both useful and accessible to the specialist and non-specialist alike. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011-04-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.chorotree.de/content_about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Coniferophytina", "Liliopsida", "Magnoliopsida", "Pteridophyta", "distribution maps", "palaeo climatology", "palaeo ecology", "plant chorology", "plant systematics", "species range maps"] [{"institutionName": "University of T\u00fcbingen, Institute for Geoscience, Invertebrate Palaeontology and Palaeoclimatology", "institutionAdditionalName": ["Eberhard Karls Universit\u00e4t T\u00fcbingen, Institut f\u00fcr Geowissenschaften, Invertebraten-Pal\u00e4ontologie und Pal\u00e4oklimatologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geo.uni-tuebingen.de/arbeitsgruppen/palaeobiologie/forschungsbereich/invertebraten-palaeontologie/arbeitsgruppe.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["christopher.traiser@uni-tuebingen.de"]}, {"institutionName": "in medias res - Gesellschaft f\u00fcr Informationstechnologie mbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.webgis.de/home/index_html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@webgis.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.chorotree.de/content_impressum"}] closed [] ["unknown"] {} ["none"] [] yes unknown [] [] {} 2017-01-13 2017-01-19 +r3d100012300 ErythronDB eng [{"additionalName": "Erythron Database", "additionalNameLanguage": "eng"}] https://www.cbil.upenn.edu/ErythronDB/ [] ["https://www.cbil.upenn.edu/ErythronDB/contactus.jsp"] The Erythron Database is a resource dedicated to facilitating better understanding of the cellular and molecular underpinnings of mammalian erythropoiesis. The resource is built upon a searchable database of gene expression in murine primitive and definitive erythroid cells at progressive stages of maturation. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cbil.upenn.edu/tempErythronDB [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "biomedical research", "blood", "gene expression", "hematology,", "mammalian erythropoiesis", "mus muculus"] [{"institutionName": "National Institute of Diabetes and Digestive Kidney Diseases", "institutionAdditionalName": ["NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niddk.nih.gov/about-niddk/contact-us"]}, {"institutionName": "University of Pennsylvania, Perelman School of Medicine, Computational Biology and Informatics Laboratory", "institutionAdditionalName": ["CBIL", "Stoeckert Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cbil.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.med.upenn.edu/apps/faculty/index.php/g306/c404/p6403", "stoeckrt@upenn.edu"]}, {"institutionName": "University of Rochester Medical Center, Department of Pediatrics, Center for Pediatric Biomedical Research", "institutionAdditionalName": ["URMC, Palis Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.urmc.rochester.edu/pediatrics/palis-lab.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.urmc.rochester.edu/pediatrics/palis-lab.aspx"]}] [{"policyName": "Academic Information and Policies", "policyURL": "https://www.med.upenn.edu/bgs/current_students_policies.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://provost.upenn.edu/policies/faculty-handbook/information-policies/v-a"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.isc.upenn.edu/information-security-policies-procedures"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.upenn.edu/about/disclaimer"}] closed [] ["other"] yes {} [] https://www.cbil.upenn.edu/ErythronDB/ [] unknown unknown [] [] {} 2017-01-23 2021-08-24 +r3d100012302 Physical Sciences Data-Science Service eng [{"additionalName": "PSDS", "additionalNameLanguage": "eng"}, {"additionalName": "formerly name: CDS National Chemical Database Service", "additionalNameLanguage": "eng"}] https://www.psds.ac.uk/ [] ["support@psds.ac.uk"] The PSDS is an EPSRC-funded National Research Facility provided by the University of Southampton, and Science and Technology Facilities Council. Its purpose is to provide a common access point to data resources within the Physical Sciences to all staff, students and other members of UK academic institutions. By providing a common point of access, free at the point of use, the service aims to provide benefit to the research community by maximising the use of resources via common acedemic licencing, and adding value as a common hub for aggregating and integrating data resources for the Physical Sciences. eng ["institutional"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.psds.ac.uk/introduction [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}] ["serviceProvider"] ["chemistry", "crystallography", "materials"] [{"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://epsrc.ukri.org/", "institutionIdentifier": ["ROR:0439y7842", "RRID:SCR_013495", "RRID:nlx_10253"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Je-SHelp@rcuk.ac.uk"]}, {"institutionName": "Science & Technology Facilities Council, Scientific Computing Department", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.scd.stfc.ac.uk/Pages/home.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scd.stfc.ac.uk/Pages/Contact-Us.aspx"]}, {"institutionName": "University of Southampton, School of Chemistry", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.southampton.ac.uk/chemistry/index.page?", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.southampton.ac.uk/contact.page"]}] [{"policyName": "Terms and Conditions of Use", "policyURL": "https://www.psds.ac.uk/termsandconditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.psds.ac.uk/termsandconditions"}] restricted [] ["unknown"] {} [] [] unknown unknown [] [] {} 2017-01-24 2021-04-06 +r3d100012304 Dipòsit Digital de la Universitat de Barcelona Dades cat [{"additionalName": "DD Dip\u00f2sit Digital", "additionalNameLanguage": "eng"}] http://diposit.ub.edu/dspace/handle/2445/56364 [] ["dipositdigital@ub.edu", "http://diposit.ub.edu/dspace/feedback"] The Universitat de Barcelona Digital Repository is an institutional resource containing open-access digital versions of publications related to the teaching, research and institutional activities of the UB's teaching staff and other members of the university community, including research data. eng ["institutional"] {"size": "", "updatedp": ""} ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://diposit.ub.edu/dspace/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Dialectologia", "Mallorqui language", "Spoken Catalan", "corpora"] [{"institutionName": "Universitat de Barcelona", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.edu/web/ub/en/index.html?", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ub.edu/web/ub/en/menu_peu/contacte/contacte.html"]}] [{"policyName": "Instruccions per publicar", "policyURL": "http://crai.ub.edu/ca/que-ofereix-el-crai/publicar-repositoris-ub/instruccions"}, {"policyName": "Pol\u00edtica d'acc\u00e9s obert a la Universitat de Barcelona", "policyURL": "http://diposit.ub.edu/dspace/handle/2445/27709"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/es/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://diposit.ub.edu/dspace/handle/2445/102243"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://diposit.ub.edu/dspace/handle/2445/97521"}] restricted [] ["DSpace"] {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://diposit.ub.edu/dspace/feed/rss_2.0/site", "syndicationType": "RSS"} 2017-01-27 2019-01-23 +r3d100012305 Centre for Environmental Data Analysis eng [{"additionalName": "CEDA", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Centre for Environmental Data Archival", "additionalNameLanguage": "eng"}] https://www.ceda.ac.uk/ [] ["https://www.ceda.ac.uk/contact/", "support@ceda.ac.uk"] The Centre for Environmental Data Analysis (CEDA) serves the environmental science community through managing data centres, data analysis environments, and participation in a host of relevant research projects. We aim to support environmental science, further environmental data archival practices, and develop and deploy new technologies to enhance access to data. Additionally we provide services to aid large scale data analysis. The CEDA Archive operates the atmospheric and earth observation data centre functions on behalf of NERC for the UK atmospheric science and earth observation communities. It covers climate, composition, observations and NWP data as well as various earth observation datasets, including airborne and satellite data and imagery. Prior to November 2016 these functions were operted by CEDA under the titles of the British Atmospheric Data Centre (BADC) and the NERC Earth Observation Data Centre (NEODC). CEDA also operates the UK Solar System Data Centre (UKSSDC), which curates and provides access to archives of data from the upper atmosphere, ionosphere and Earth's solar environment. eng ["disciplinary"] {"size": "6.218 datasets; 626 dataset collections", "updatedp": "2020-02-05"} 2005 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ceda.ac.uk/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["atmospheric sciences", "climate", "earth observation", "environment", "meterology", "weather"] [{"institutionName": "Centre for Environmental Data Analysis", "institutionAdditionalName": ["CEDA"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceda.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@ukssdc.ac.uk"]}, {"institutionName": "National Centre for Atmospheric Science", "institutionAdditionalName": ["NCAS"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncas.ac.uk/en/", "institutionIdentifier": ["ROR:01wwwe276"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ncas.ac.uk/index.php/en/contact"]}, {"institutionName": "National Centre for Earth Observation", "institutionAdditionalName": ["NCEO"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nceo.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nceo.ac.uk/contact-us/"]}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:015byt818", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nerc.ukri.org/about/enquiries/contacts/"]}, {"institutionName": "Science and Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://stfc.ukri.org/", "institutionIdentifier": ["ROR:057g20z61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://stfc.ukri.org/about-us/contact-us/"]}] [{"policyName": "Disclaimer", "policyURL": "https://help.ceda.ac.uk/article/4642-disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://licences.ceda.ac.uk/image/data_access_condition/quest.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://help.ceda.ac.uk/article/98-accessing-data"}, {"dataLicenseName": "other", "dataLicenseURL": "https://nerc.ukri.org/research/sites/data/policy/datapolicy-guidance/"}] restricted [{"dataUploadLicenseName": "Open government licence", "dataUploadLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] ["unknown"] {"api": "https://help.ceda.ac.uk/article/280-ftp", "apiType": "FTP"} ["DOI"] https://nerc.ukri.org/research/sites/data/policy/datapolicy-guidance/ [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://www.ceda.ac.uk/blog/feeds/atom/", "syndicationType": "ATOM"} CEDA is covered by Clarivate Data Citation Index. 2017-01-27 2020-02-05 +r3d100012307 RADAR Luke eng [{"additionalName": "Luke research data descriptions", "additionalNameLanguage": "eng"}, {"additionalName": "Luonnonvarakeskuksen tutkimusaineistokuvausten hakupalvelu", "additionalNameLanguage": "fin"}, {"additionalName": "Research data descriptions discovery service of Natural Resources Institute Finland", "additionalNameLanguage": "eng"}] http://radar.luke.fi/catalog/search/search.page [] ["sirpa.suonpaa@luke.fi"] RADAR service offers the ability to search for research data descriptions of the Natural Resources Institute Finland (Luke). The service includes descriptions of research data for agriculture, forestry and food sectors, game management, fisheries and environment. The public web service aims to facilitate discovering subjects of natural resources studies. In addition to Luke's research data descriptions one can search metadata of the Finnish Environment Institute (SYKE). The interface between Luke and SYKE metadata services combines Luke's research data descriptions and SYKE's descriptions of spatial datasets and data systems into a unified search service. eng ["institutional"] {"size": "888 records", "updatedp": "2019-01-23"} ["eng", "fin", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://radar.luke.fi/catalog/content/about.page [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "economics", "fisheries", "forestry", "game", "nutrition", "statistics"] [{"institutionName": "Esri Geoportal Server", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.esri.com/en-us/arcgis/products/geoportal-server/overview", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, EASME, Life programme", "institutionAdditionalName": ["Life+"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/environment/life/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/easme/en/section/life/life-national-contact-points"]}, {"institutionName": "Natural Resources Institute Finland", "institutionAdditionalName": ["Luke", "Luonnonvarakeskus", "Naturresursinstitutet"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.luke.fi/en/luke-3/", "institutionIdentifier": [], "responsibilityStartDate": "2015-01-01", "responsibilityEndDate": "", "institutionContact": ["Eero.Mikkola@luke.fi"]}] [{"policyName": "Code of conduct", "policyURL": "https://www.luke.fi/en/luke-3/strategy/code-of-conduct/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.fi"}] restricted [] [] {"api": "http://metatieto.ymparisto.fi:8080/geoportal/webhelp/en/geoportal/index.html#//00t000000030000000.htm", "apiType": "REST"} ["none"] [] yes yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-01-29 2019-01-23 +r3d100012308 DesignSafe-CI Data Depot Repository eng [{"additionalName": "A Repository Infrastructure for Natural Hazards Datasets", "additionalNameLanguage": "eng"}, {"additionalName": "DDR", "additionalNameLanguage": "eng"}] https://www.designsafe-ci.org/ [] ["https://www.designsafe-ci.org/help/new-ticket/"] The DesignSafe Data Depot Repository (DDR) is the platform for curation and publication of datasets generated in the course of natural hazards research. The DDR is an open access data repository that enables data producers to safely store, share, organize, and describe research data, towards permanent publication, distribution, and impact evaluation. The DDR allows data consumers to discover, search for, access, and reuse published data in an effort to accelerate research discovery. It is a component of the DesignSafe cyberinfrastructure, which represents a comprehensive research environment that provides cloud-based tools to manage, analyze, curate, and publish critical data for research to understand the impacts of natural hazards. DesignSafe is part of the NSF-supported Natural Hazards Engineering Research Infrastructure (NHERI), and aligns with its mission to provide the natural hazards research community with open access, shared-use scholarship, education, and community resources aimed at supporting civil and social infrastructure prior to, during, and following natural disasters. It serves a broad national and international audience of natural hazard researchers (both engineers and social scientists), students, practitioners, policy makers, as well as the general public. It has been in operation since 2016, and also provides access to legacy data dating from about 2005. These legacy data were generated as part of the NSF-supported Network for Earthquake Engineering Simulation (NEES), a predecessor to NHERI. Legacy data and metadata belonging to NEES were transferred to the DDR for continuous preservation and access. eng ["disciplinary"] {"size": "Multi-petabyte data", "updatedp": "2019-01-23"} 2016-07-03 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41004 Sructural Engineering, Building Informatics, Construction Operation", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.designsafe-ci.org/community/cyberinfrastructure/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["computational modeling tools", "cyberinfrastructure", "data dictionaries", "earthquake", "experiments", "field research", "hazard", "hybrid simulations", "natural hazard event reports", "research protocols", "simulations", "social sciences", "storm surge", "wind engineering", "windstorm"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSf"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Texas Advanced Computing Center", "institutionAdditionalName": ["TACC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tacc.utexas.edu/", "institutionIdentifier": ["Wikidata:Q7707491"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tacc.utexas.edu/about/contact"]}, {"institutionName": "University of Texas at Austin", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utexas.edu/", "institutionIdentifier": ["ROR:00hj54h04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Curation and Publication Policies", "policyURL": "https://www.designsafe-ci.org/rw/user-guides/curating-publishing-projects/policies/"}, {"policyName": "DDR Governance", "policyURL": "https://www.designsafe-ci.org/rw/user-guides/curating-publishing-projects/policies/governance/"}, {"policyName": "Data Management Plan Guidance", "policyURL": "https://www.designsafe-ci.org/rw/user-guides/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1-0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.gnu.org/licenses/gpl-3.0.html"}] restricted [] ["Fedora"] yes {"api": "https://www.designsafe-ci.org/media/cms_page_media/263/Getting-Started-API_jWcryuW.pdf", "apiType": "REST"} ["DOI"] https://www.designsafe-ci.org/rw/user-guides/citing-designsafe/ [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}] {} 2017-01-30 2021-05-06 +r3d100012309 Humanities Commons eng [{"additionalName": "CORE, Open Access for the Humanities", "additionalNameLanguage": "eng"}, {"additionalName": "Commons Open Repository Exchange", "additionalNameLanguage": "eng"}] https://hcommons.org/core/ [] ["commons@mla.org", "hello@hcommons.org"] CORE is a full-text, interdisciplinary, non-profit social repository designed to increase the impact of work in the Humanities. Commons Open Repository Exchange, a library-quality repository for sharing, discovering, retrieving, and archiving digital work. CORE provides Humanities Commons members with a permanent, open access storage facility for their scholarly output, facilitating maximum discoverability and encouraging peer feedback. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://hcommons.org/core/what-is-core/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["American literature", "archaeology", "art history", "digital humanities", "film studies", "syllabus"] [{"institutionName": "Andrew W. Mellon Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mellon.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Columbia University Libraries, Digital Scholarship", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.columbia.edu/services/digital-scholarship.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humanities Commons", "institutionAdditionalName": ["HC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://hcommons.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Modern Language Association", "institutionAdditionalName": ["MLA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mla.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Endowment for the Humanities", "institutionAdditionalName": ["NEH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.neh.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for participation", "policyURL": "https://hcommons.org/guidelines/"}, {"policyName": "Terms of Service", "policyURL": "https://hcommons.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["Fedora"] yes {} ["DOI"] https://hcommons.org/core/faq/ ["ORCID"] unknown unknown [] [] {"syndication": "https://hcommons.org/feed/", "syndicationType": "RSS"} 2017-01-30 2019-01-23 +r3d100012310 Humanities Data Centre eng [{"additionalName": "HDC", "additionalNameLanguage": "eng"}] http://humanities-data-centre.de/ [] ["http://humanities-data-centre.de/?page_id=20"] Das Projekt Humanities Data Centre (HDC) erarbeitet eine Designstudie für ein Datenzentrum zur langfristigen Verfügbarkeit und Nachnutzbarkeit geisteswissenschaftlicher Forschungsdaten. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-08-01 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://humanities-data-centre.de/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["AdWG", "Berliner Klassik", "Gottfried Wilhelm Leibniz", "International migration flows - MPI MMG", "Johann Friedrich Blumenbach", "Kant Opus Postumum"] [{"institutionName": "Gesellschaft f\u00fcr wissenschaftliche Datenverarbeitung mbH G\u00f6ttingen", "institutionAdditionalName": ["GWDG"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gwdg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jwettla@gwdg.de", "support@gwdg.de", "tbode1@gwdg.de"]}, {"institutionName": "Humanities Data Center Partner", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://humanities-data-centre.de/?page_id=36", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://humanities-data-centre.de/?page_id=20"]}, {"institutionName": "Nieders\u00e4chsische Staats- und Universit\u00e4tsbibliothek G\u00f6ttingen", "institutionAdditionalName": ["SUB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/sub-aktuell/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sub.uni-goettingen.de/projekte-forschung/projektdetails/projekt/humanities-data-centre/"]}] [{"policyName": "Erkl\u00e4rung zum Aufbau und Betrieb eines geisteswissenschaftlichen Forschungsdatenzentrums am Standort G\u00f6ttingen", "policyURL": "http://humanities-data-centre.de/wp-content/uploads/2016/08/HDC_Erkl%C3%A4rung-Aufbau-Forschungsdatenzentrum_2016-07-27_gez.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://berlinerklassik.bbaw.de/BK/impressum.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://kant.bbaw.de/impressum"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.blumenbach-online.de/impressum/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://humanities-data-centre.de/?page_id=24"}] restricted [] [] {} ["hdl"] [] unknown unknown [] [] {} 2017-02-01 2019-01-23 +r3d100012311 Metlin eng [{"additionalName": "The original and most comprehensive MS/MS metabolite database", "additionalNameLanguage": "eng"}] https://metlin.scripps.edu/landing_page.php?pgcontent=mainPage ["OMICS_02633", "RRID:SCR_010500", "RRID:nlx_158116"] ["http://xcmsonline.scripps.edu/landing_page.php?pgcontent=contact", "xcmsonline@gmail.com"] METLIN represents the largest MS/MS collection of data with the database generated at multiple collision energies and in positive and negative ionization modes. The data is generated on multiple instrument types including SCIEX, Agilent, Bruker and Waters QTOF mass spectrometers. eng ["disciplinary"] {"size": "961.829 molecules; over 14.000 metabolites have been individually analyzed; another 200.000 metabolites has in silico MS/MS data", "updatedp": "2019-01-23"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://metlin.scripps.edu/landing_page.php?pgcontent=mainPage [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biomarker", "chemical formula", "genomics", "mass spectrometry", "metabolism", "molecular biology", "phenotype", "proteomics", "tandem"] [{"institutionName": "Scripps Research Institute, Scripps Center for Metabolomics and Mass Spectrometry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://masspec.scripps.edu/landing_page.php?pgcontent=mainPage", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["masspec@scripps.edu"]}] [{"policyName": "METLIN Terms of Use", "policyURL": "https://metlin.scripps.edu/landing_page.php?pgcontent=termsOfUse"}, {"policyName": "XCMS Online Usage Instructions", "policyURL": "http://xcmsonline.scripps.edu/landing_page.php?pgcontent=documentation"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://metlin.scripps.edu/landing_page.php?pgcontent=termsOfUse"}] restricted [] ["MySQL"] yes {"api": "https://xcmsonline.scripps.edu/faq/index.php?action=artikel&cat=2&id=4&artlang=en&highlight=netcdf", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} XCMS Online: a web-based platform to process untargeted metabolomic data. // You have also access to IsoMetlin. The isoMETLIN Metabolite Database is a database designed for isotope-based metabolomics. Specifically, isoMETLIN facilitates the identification of metabolites incorporating isotopic labels. isoMETLIN enables users to search all computed isotopologues (>1 million) derived from METLIN on the basis of mass-to-charge values and specified isotopes of interest, such as 13C or 15N. 2017-02-01 2019-01-23 +r3d100012313 mzCloud eng [{"additionalName": "Advanced mass spectral database", "additionalNameLanguage": "eng"}] https://www.mzcloud.org/ ["OMICS_14329", "RRID:SCR_014669"] ["ms@highchem.com"] mzCloud is an extensively curated database of high-resolution tandem mass spectra that are arranged into spectral trees. MS/MS and multi-stage MSn spectra were acquired at various collision energies, precursor m/z, and isolation widths using Collision-induced dissociation (CID) and Higher-energy collisional dissociation (HCD). Each raw mass spectrum was filtered and recalibrated giving rise to additional filtered and recalibrated spectral trees that are fully searchable. Besides the experimental and processed data, each database record contains the compound name with synonyms, the chemical structure, computationally and manually annotated fragments (peaks), identified adducts and multiply charged ions, molecular formulas, predicted precursor structures, detailed experimental information, peak accuracies, mass resolution, InChi, InChiKey, and other identifiers. mzCloud is a fully searchable library that allows spectra searches, tree searches, structure and substructure searches, monoisotopic mass searches, peak (m/z) searches, precursor searches, and name searches. mzCloud is free and available for public use online. eng ["disciplinary"] {"size": "7.500 compounds, more than 22.689 trees, 3.941.078 spectra,707.074 QM models", "updatedp": "2019-01-25"} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.highchem.com/index.php/about-us [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "chromatography", "forensic", "mass spectrometry", "metabolomics", "pharmaceutics", "small molecules", "spectral trees", "tandem mass spectra", "toxicology"] [{"institutionName": "HighChem LLC", "institutionAdditionalName": [], "institutionCountry": "SVK", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.highchem.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.highchem.com/index.php/contact"]}, {"institutionName": "Palack\u00fd University, University Hospital Olomouc , Institute of Molecular and Translational Medicine, Laboratory for inherited metabolic disorders", "institutionAdditionalName": ["Univerzita Palack\u00e9ho v Olomouci, Fakultn\u00ed Nemocnice Olomouc, \u00dastav molekul\u00e1rn\u00ed a transla\u010dn\u00ed medic\u00edny, Laborato\u0159 d\u011bdi\u010dn\u00fdch metabolick\u00fdch poruch"], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ldmp.upol.cz/indexeng.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ldmp.upol.cz/contact.php"]}, {"institutionName": "Slovak Academy of Sciences, Institute of Chemistry", "institutionAdditionalName": ["Chemick\u00fd \u00fastav SAV"], "institutionCountry": "SVK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.chem.sk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.chem.sk/contact/"]}, {"institutionName": "Swiss Federal Institute of Aquatic Science and Technology, Department Environmental Chemistry", "institutionAdditionalName": ["Eawag D\u00e9partement Chimie de l'environnement", "Eawag Environmental Chemistry", "Eawag Uchem", "Eidgen\u00f6ssische Anstalt f\u00fcr Wasserversorgung, Abwasserreinigung und Gew\u00e4sserschutz, Umweltchemie"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eawag.ch/en/department/uchem/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eawag.ch/en/contact/"]}, {"institutionName": "Thermo Fisher Scientific Inc.", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.thermofisher.com/de/de/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.thermofisher.com/de/de/home/technical-resources/contact-us.html"]}, {"institutionName": "University of Athens, Department of Chemistry", "institutionAdditionalName": ["\u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u0391\u03b8\u03b7\u03bd\u03ce\u03bd, \u03a4\u03bc\u03ae\u03bc\u03b1 \u03a7\u03b7\u03bc\u03b5\u03af\u03b1\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.chem.uoa.gr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.chem.uoa.gr/"]}, {"institutionName": "University of Birmingham, School of Biosciences", "institutionAdditionalName": ["School of Biosciences"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.birmingham.ac.uk/schools/biosciences/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.birmingham.ac.uk/visit/index.aspx"]}, {"institutionName": "University of California - Davis, Fiehn Laboratory", "institutionAdditionalName": ["UC Fiehn Lab"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://fiehnlab.ucdavis.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://fiehnlab.ucdavis.edu/"]}, {"institutionName": "University of North Texas, College of Arts and Sciences, Department of Biological Sciences", "institutionAdditionalName": ["Department of Biological Sciences"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biology.unt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biology.unt.edu/"]}, {"institutionName": "University of Vienna, Faculty for Life Sciences, Molecular Systems Biology", "institutionAdditionalName": ["Molecular Systems Biology"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univie.ac.at/mosys/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.univie.ac.at/mosys/impressum.html"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.mzcloud.org/Terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.mzcloud.org/Terms"}] closed [] ["other"] {} [] [] unknown yes [] [] {} 2017-02-06 2021-08-25 +r3d100012314 UCSD Metabolomics Workbench eng [{"additionalName": "Metabolomics Workbench", "additionalNameLanguage": "eng"}] http://www.metabolomicsworkbench.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.xfrgsf", "RRID:SCR_013794"] ["help@metabolomicsworkbench.org", "http://www.metabolomicsworkbench.org/about/contact.php"] With the creation of the Metabolomics Data Repository managed by Data Repository and Coordination Center (DRCC), the NIH acknowledges the importance of data sharing for metabolomics. Metabolomics represents the systematic study of low molecular weight molecules found in a biological sample, providing a "snapshot" of the current and actual state of the cell or organism at a specific point in time. Thus, the metabolome represents the functional activity of biological systems. As with other ‘omics’, metabolites are conserved across animals, plants and microbial species, facilitating the extrapolation of research findings in laboratory animals to humans. Common technologies for measuring the metabolome include mass spectrometry (MS) and nuclear magnetic resonance spectroscopy (NMR), which can measure hundreds to thousands of unique chemical entities. Data sharing in metabolomics will include primary raw data and the biological and analytical meta-data necessary to interpret these data. Through cooperation between investigators, metabolomics laboratories and data coordinating centers, these data sets should provide a rich resource for the research community to enhance preclinical, clinical and translational research. eng ["disciplinary"] {"size": "over 60.000 entries", "updatedp": "2019-01-25"} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.metabolomicsworkbench.org/about/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "cell", "cellular biology", "chemical fingerprints", "health", "magnetic resonance spectrometry", "mass spectrometry", "metabolism", "physiology"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of California, San Diego, San Diego Supercomputer Center, Metabolomics Program's Data Repository and Coordinating Center", "institutionAdditionalName": ["DRCC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sdsc.edu/News%20Items/PR101112_metabolomics.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["froelich@sdsc.edu", "https://www.sdsc.edu/about_sdsc/contacts_leadership.html", "jzverina@sdsc.edu"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.metabolomicsworkbench.org/about/termsofuse.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.metabolomicsworkbench.org/about/termsofuse.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.metabolomicsworkbench.org/nihmetabolomics/datasharing.html"}] restricted [] ["unknown"] yes {"api": "ftp://www.metabolomicsworkbench.org/", "apiType": "FTP"} [] http://www.metabolomicsworkbench.org/about/howtocite.php [] unknown yes [] [] {} Regional Comprehensive Metabolomics Resource Cores (RCMRC)s are expected to address the need for increasing metabolomics research capacity by providing national leadership in metabolomics research, training, and knowledge dissemination. 2017-02-07 2021-10-25 +r3d100012315 LIPID MAPS Lipidomics Gateway eng [{"additionalName": "LIPID Metabolites And Pathways Strategy", "additionalNameLanguage": "eng"}] http://www.lipidmaps.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.cpneh8", "OMICS_02529", "RRID:SCR_006579", "RRID:nif-0000-00368"] ["http://www.lipidmaps.org/about/contact.php"] Tthe Lipidomics Gateway - a free, comprehensive website for researchers interested in lipid biology, provided by the LIPID MAPS (Lipid Metabolites and Pathways Strategy) Consortium. The LIPID MAPS Lipidomics Gateway provides a rich collection of information and resources to help you stay abreast of the latest developments in this rapidly expanding field. LIPID Metabolites And Pathways Strategy (LIPID MAPS®) is a multi-institutional effort created in 2003 to identify and quantitate, using a systems biology approach and sophisticated mass spectrometers, all of the major — and many minor — lipid species in mammalian cells, as well as to quantitate the changes in these species in response to perturbation. The ultimate goal of our research is to better understand lipid metabolism and the active role lipids play in diabetes, stroke, cancer, arthritis, Alzheimer's and other lipid-based diseases in order to facilitate development of more effective treatments. Since our inception, we have made great strides toward defining the "lipidome" (an inventory of the thousands of individual lipid molecular species) in the mouse macrophage. We have also worked to make lipid analysis easier and more accessible for the broader scientific community and to advance a robust research infrastructure for the international research community. We share new lipidomics findings and methods, hold annual meetings open to all interested investigators, and are exploring joint efforts to extend the use of these powerful new methods to new applications eng ["disciplinary"] {"size": "over 43,000 entries", "updatedp": "2019-01-25"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20517 Endocrinology, Diabetology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.lipidmaps.org/about/index.php [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Lipid Classification System", "biochemistry", "lipid metabolism", "lipid-based disease", "lipids", "mammalian cells", "mass spectrometry", "metabolite", "metabolomics", "molecule", "pathway", "pathways"] [{"institutionName": "NIH National Institute of General Medical Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "University of California San Diego", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ucsd.edu/about/contact.html"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "Data sharing agreement", "policyURL": "http://www.lipidmaps.org/about/data_sharing_agreement.pdf"}, {"policyName": "Terms of use", "policyURL": "http://www.lipidmaps.org/about/termsofuse.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.lipidmaps.org/about/termsofuse.php"}] restricted [] ["unknown"] yes {"api": "http://www.lipidmaps.org/resources/REST/index.php", "apiType": "REST"} [] http://www.lipidmaps.org/about/howtocite.php ["none"] unknown yes [] [] {} Lipidomics Gateway LIPID MAPS databases: LIPID MAPS Structure Database (LMSD) (is comprised of structures and annotations of biologically relevant lipids, and includes representative examples from each category of the LIPID MAPS Lipid Classification system. ) LIPID MAPS Proteome Database (LMPD) (is an object-relational database of lipid-associated genes and proteins. It contains data for over 8,500 genes and over 12,000 proteins from Homo sapiens, Mus musculus, Rattus norvegicus, Saccharomyces cerevisiae, Caenorhabditis elegans, Escherichia coli, Macaca mulata, Drosophila melanogaster, Arabidopsis thaliana and Danio rerio. ) 2017-02-08 2019-01-25 +r3d100012316 e-cienciaDatos spa [{"additionalName": "cienciaDatos", "additionalNameLanguage": "spa"}] https://edatos.consorciomadrono.es ["FAIRsharing_DOI:10.25504/FAIRsharing.lone3g"] ["eciencia@consorciomadrono.es", "informatico@consorciomadrono.es", "webmaster@consorciomadrono.es"] e-cienciaDatos is a multidisciplinary data repository that houses the scientific datasets of researchers from the public universities of the Community of Madrid and the UNED, members of the Consorcio Madroño, in order to give visibility to these data, to ensure its preservation And facilitate their access and reuse. e-cienciaDatos is structured as a system constituted by different communities that collects datasets of each of the individual universities. e-cienciaDatos offers the deposit and publication of datasets, assigning a digital object identifier DOI to each of them. The association of a dataset with a DOI will facilitate data verification, dissemination, reuse, impact and long-term access. In addition, the repository provides a standardized citation for each dataset, which contains sufficient information so that it can be identified and located, including the DOI. eng ["institutional"] {"size": "10 dataverses; 457 datasets, 2366 files", "updatedp": "2020-01-22"} 2016-11-01 ["eng", "fra", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.consorciomadrono.es/en/acerca-de/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "Consorcio Madro\u00f1o", "institutionAdditionalName": ["Consorcio de Universidades de la Comunidad de Madrid y de la UNED para la Cooperaci\u00f3n Bibliotecaria", "Consortium of Universities of the Region of Madrid and the UNED for Library Cooperation"], "institutionCountry": "ESP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.consorciomadrono.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eciencia@consorciomadrono.es"]}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Universidad Aut\u00f3noma de Madrid", "institutionAdditionalName": ["UAM"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uam.es/UAM/Home.htm?language=es", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Carlos III de Madrid", "institutionAdditionalName": ["UC3M"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uc3m.es/Home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Nacional de Educaci\u00f3n a Distancia", "institutionAdditionalName": ["National Distance Education University", "UNED"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uned.es/universidad/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Polit\u00e9cnica de Madrid", "institutionAdditionalName": ["UPM"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.upm.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Rey Juan Carlos", "institutionAdditionalName": ["URJC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.urjc.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad de Alcal\u00e1", "institutionAdditionalName": ["UAH", "University of Alcal\u00e1"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uah.es/es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "C\u00f3mo usar e-cienciaDatos", "policyURL": "https://edatos.consorciomadrono.es/resources/txt/guiaEcienciaDatos.pdf"}, {"policyName": "Pol\u00edticas de e-cienciaDatos", "policyURL": "http://www.consorciomadrono.es/en/investigam/politicas/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] restricted [{"dataUploadLicenseName": "Deposit License", "dataUploadLicenseURL": "http://www.consorciomadrono.es/en/investigam/licencias/"}] ["DataVerse"] yes {"api": "https://edatos.consorciomadrono.es/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-02-08 2021-11-16 +r3d100012318 MoNA eng [{"additionalName": "MassBank of North America", "additionalNameLanguage": "eng"}] http://mona.fiehnlab.ucdavis.edu/ ["OMICS_13585", "RRID:SCR_015536"] ["http://fiehnlab.ucdavis.edu/staff/fiehn"] MassBank of North America (MoNA) is a metadata-centric, auto-curating repository designed for efficient storage and querying of mass spectral records. It intends to serve as a the framework for a centralized, collaborative database of metabolite mass spectra, metadata and associated compounds. MoNA currently contains over 200,000 mass spectral records from experimental and in-silico libraries as well as from user contributions. eng ["disciplinary"] {"size": "260.675 spectral records", "updatedp": "2019-01-25"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://mona.fiehnlab.ucdavis.edu/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["analytical chemistry", "biochemistry", "compounds", "metabolism", "metabolite mass spectra"] [{"institutionName": "University of California Davis, Genome Center, West Coast Metabolomics Center", "institutionAdditionalName": ["WCMC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://metabolomics.ucdavis.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://fiehnlab.ucdavis.edu/staff/fiehn"]}] [{"policyName": "Licensing of Content and Source Code in MoNA", "policyURL": "http://mona.fiehnlab.ucdavis.edu/documentation/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://mona.fiehnlab.ucdavis.edu/documentation/license"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://mona.fiehnlab.ucdavis.edu/documentation/license"}] restricted [] ["unknown"] {"api": "http://mona.fiehnlab.ucdavis.edu/documentation/query", "apiType": "REST"} ["none"] ["none"] unknown unknown [] [] {} 2017-02-10 2019-01-25 +r3d100012319 Forenames_histHub eng [{"additionalName": "Dal 200 a.C. al 2016: pi\u00f9 di 2200 anni di prenomi in Svizzera", "additionalNameLanguage": "ita"}, {"additionalName": "De 200 av. J.-C. \u00e0 2016 : Plus de 2200 ans de pr\u00e9noms en Suisse", "additionalNameLanguage": "fra"}, {"additionalName": "From 200 BC to 2016: Over 2200 years of first names in Switzerland", "additionalNameLanguage": "eng"}, {"additionalName": "Von 200 v. Chr. bis 2016: \u00dcber 2200 Jahre Vornamen der Schweiz", "additionalNameLanguage": "deu"}, {"additionalName": "histHub", "additionalNameLanguage": "eng"}] https://thesaurus.histhub.ch/forenames/en [] ["info@histhub.ch", "pascale.sutter@ssrq-sds-fds.ch"] The vocabulary of forenames is a simple, multilingual vocabulary (i.e. without hierarchies etc.) in which the forenames of the project partners’ persons and the forenames’ spelling variants, both historical and dialectal, are documented with references or passages. As a rule, each forename is assigned one or more persons bearing that name. There is a hit list of the most frequent forenames between 200 BC and AD 2016 as well as a visualisation in word clouds and the occurrences in a timeline. eng ["disciplinary"] {"size": "2.359 records of forenames", "updatedp": "2019-01-25"} 2016-08-01 ["deu", "eng", "fra", "ita", "roh"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://thesaurus.histhub.ch/forenames/en/project [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Switzerland", "forenames", "main forms"] [{"institutionName": "Diplomatische Dokumente der Schweiz", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.dodis.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Historisches Lexikon der Schweiz", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.hls-dhs-dss.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jonas.schneider@dhs.ch"]}, {"institutionName": "Rechtsquellenstiftung des Schweizerischen Juristenvereins", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ssrq-sds-fds.ch", "institutionIdentifier": [], "responsibilityStartDate": "01.08.2016", "responsibilityEndDate": "", "institutionContact": ["pascale.sutter@ssrq-sds-fds.ch"]}, {"institutionName": "Schweizerisches Idiotikon", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.idiotikon.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swissuniversities", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.swissuniversities.ch/de/organisation/projekte-und-programme/p-5/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.swissuniversities.ch/de/service-menu/kontakt/"]}, {"institutionName": "histHub", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://histhub.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Explanation of Terms", "policyURL": "https://thesaurus.histhub.ch/forenames/en/project#/3"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [{"dataUploadLicenseName": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} 2017-02-10 2021-09-03 +r3d100012320 Sammlung Schweizerischer Rechtsquellen online eng [{"additionalName": "Collana Fonti del diritto svizzero online", "additionalNameLanguage": "ita"}, {"additionalName": "Collection des sources du droit suisse online", "additionalNameLanguage": "fra"}, {"additionalName": "FDS-online", "additionalNameLanguage": "ita"}, {"additionalName": "SDS-online", "additionalNameLanguage": "fra"}, {"additionalName": "SSRQ-online", "additionalNameLanguage": "deu"}] https://www.ssrq-sds-fds.ch/projekte/ssrq-online/ [] ["pascale.sutter@ssrq-sds-fds.ch"] Since 1898 the Swiss Lawyers Society edits a collection of law sources which had been created on Swiss territory up to 1798, the Collection of Swiss Law Sources. The Collection contains material from the early middle ages until early modern times (1798). Over 100 volumes, or more than 70,000 pages of source material and comments from all language regions of Switzerland have been published so far. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["deu", "fra", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ssrq-sds-fds.ch/online/overview.html [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Law Sources", "Sources", "Swiss Law Sources", "history of law"] [{"institutionName": "Rechtsquellenstiftung des Schweizerischen Juristenvereins", "institutionAdditionalName": ["Fondation des sources du droit de la Soci\u00e9t\u00e9 suisse des juristes", "Fondazione per le fonti giuridiche della Societ\u00e0 svizzera dei giuristi", "Law Sources Foundation of the Swiss Lawyers Society"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ssrq-sds-fds.ch/home/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["pascale.sutter@ssrq-sds-fds.ch"]}, {"institutionName": "Schweizerischen Nationalfonds zur F\u00f6rderung der Wissenschaftlichen Forschung", "institutionAdditionalName": ["FNS", "Fondo nazionale svizzero per la ricerca scientifica", "Fonds national suisse de la recherche scientifique", "SNF", "Swiss National Science Foundation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.snf.ch/de/Seiten/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.snf.ch/de/derSnf/kontakt-lageplan/Seiten/default.aspx"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] closed [] ["unknown"] {} ["none"] https://www.ssrq-sds-fds.ch/online/overview.html ["none"] unknown yes [] [] {} In a project supported by the Swiss National Science Foundation and the Friedrich-Emil-Welti Foundation, the Law Sources Foundation has digitized all volumes published so far and makes them available online here. 2017-02-10 2019-01-25 +r3d100012321 Carbohydrate-Active enZYmes Database eng [{"additionalName": "CAZy", "additionalNameLanguage": "eng"}] http://www.cazy.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.ntyq70", "OMICS_01677", "RRID:SCR_012909", "nif-0000-02642"] ["cazy@afmb.univ-mrs.fr", "http://www.afmb.univ-mrs.fr/Bernard-Henrissat?lang=fr"] CAZy is a specialist database dedicated to the display and analysis of genomic, structural and biochemical information on Carbohydrate-Active Enzymes (CAZymes). CAZy data are accessible either by browsing sequence-based families or by browsing the content of genomes in carbohydrate-active enzymes. New genomes are added regularly shortly after they appear in the daily releases of GenBank. New families are created based on published evidence for the activity of at least one member of the family and all families are regularly updated, both in content and in description. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.afmb.univ-mrs.fr/cazy-bioinformatic-platform [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CAZymes", "carbohydrate", "carbohydrate binding module", "carbohydrate esterase", "catalytic binding", "enzyme", "glycosidic bond", "glycosidic hydrolase", "glycosyl transferase", "polysaccharide lyase"] [{"institutionName": "Universit\u00e9 d'Aix-Marseille, Laboratoire Architecture et Fonction des Macromol\u00e9cules Biologiques", "institutionAdditionalName": ["AFMB"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.afmb.univ-mrs.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.afmb.univ-mrs.fr/Bernard-Henrissat?lang=fr", "http://www.afmb.univ-mrs.fr/adressfr"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cazy.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.afmb.univ-mrs.fr/mentions-legalen"}] restricted [] ["MySQL"] yes {} [] http://www.cazy.org/Citing-CAZy.html [] unknown unknown [] [] {} 2017-02-14 2019-01-25 +r3d100012322 eCommons - Cornell's digital repository eng [] https://ecommons.cornell.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.N0nNXm", "OpenDOAR:69", "ROAR:477"] ["https://ecommons.cornell.edu/page/contact"] eCommons is a service of the Cornell University Library that provides long-term access to a broad range of Cornell-related digital content of enduring value. eCommons accepts both educational and research-oriented content, including pre- and post-publication papers, datasets, technical reports, theses and dissertations, books, lectures, presentations and more. eng ["institutional"] {"size": "97.428 items; 236 Data Sets", "updatedp": "2021-09-09"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://guides.library.cornell.edu/ecommons/home [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Cornell University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.cornell.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "eCommons Policies", "policyURL": "https://guides.library.cornell.edu/ecommons/policy"}, {"policyName": "eCommons for sharing and preserving data", "policyURL": "https://data.research.cornell.edu/content/ecommons-sharing-and-preserving-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://guides.library.cornell.edu/ecommons/copyright"}] restricted [{"dataUploadLicenseName": "Data Deposit Policy", "dataUploadLicenseURL": "https://guides.library.cornell.edu/ecommons/datapolicy"}] ["DSpace"] yes {} ["DOI", "hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://ecommons.cornell.edu/feed/atom_1.0/site", "syndicationType": "ATOM"} RSS feeds are available at the Community and Collection levels. 2017-02-14 2021-09-09 +r3d100012325 PharmGKB eng [{"additionalName": "Pharmacogenomics Knowledgebase", "additionalNameLanguage": "eng"}] https://www.pharmgkb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.t7yckc", "OMICS_01586", "RRID:SCR_002689", "nif-0000-00414"] ["feedback@pharmgkb.org"] PharmGKB is a comprehensive resource that curates knowledge about the impact of genetic variation on drug response for clinicians and researchers. PharmGKB brings together the relevant data in a single place and adds value by combining disparate data on the same relationship, making it easier to search and easier to view the key aspects and by interpreting the data.PharmGKB provide clinical interpretations of this data, curated pathways and VIP summaries which are not found elsewhere. eng ["disciplinary"] {"size": "650 drugs, 135 pathways, 101 dosing guidelines, 509 drug labels", "updatedp": "2019-01-25"} 2000-01-06 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.pharmgkb.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biology", "drug response", "drug pathway", "genetics", "human", "microarray", "pharmacogenetics", "pharmacogenomics"] [{"institutionName": "National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stanford.edu/contact/"]}] [{"policyName": "Notice of privacy practices for protected health information", "policyURL": "https://www.hhs.gov/sites/default/files/ocr/privacy/hipaa/understanding/coveredentities/notice.pdf"}, {"policyName": "PharmGKB Policies", "policyURL": "https://www.pharmgkb.org/page/policies"}, {"policyName": "Terms and Conditions of Use", "policyURL": "https://www.pharmgkb.org/page/dataUsagePolicy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] ["unknown"] {"api": "https://api.pharmgkb.org/swagger/", "apiType": "REST"} ["none"] https://www.pharmgkb.org/page/citingPharmgkb ["none"] unknown yes [] [] {"syndication": "http://pharmgkb.blogspot.com/feeds/posts/default", "syndicationType": "RSS"} PharmGKB relies on many different sources of data: https://www.pharmgkb.org/page/acknowledgements 2017-02-23 2019-01-25 +r3d100012326 SowiDataNet deu [] [] [] >>>!!!<<< 08.11.2019: SowidataNet has moved ; you can now access the SowiDataNet service at https://data.gesis.org/sharing/#!Home >>>!!!<<< eng [] {"size": "", "updatedp": ""} 2018 2019-11-08 ["deu", "eng"] [] [] [] [] [{"institutionName": "GESIS Data Archive for the Social Sciences", "institutionAdditionalName": ["DAS", "GESIS Datenarchiv f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/institute/departments/data-archive-for-the-social-sciences/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GESIS Leibniz Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["GESIS Leibniz Institute for the Social Science"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [] [] [] ["unknown"] {} [] [] unknown unknown [] [] {} 2017-03-14 2021-03-12 +r3d100012327 SIP-Archiv deu [{"additionalName": "SIP Archive", "additionalNameLanguage": "eng"}, {"additionalName": "das Archiv f\u00fcr Spektral Induzierte Polarisation", "additionalNameLanguage": "deu"}] https://www.sip-archiv.de/ [] ["matthias.halisch@leibniz-liag.de"] SIP-Archiv is an Internet based archive and database for petrophysical data derived by Spectral Induced Polarization (SIP) measurements on sediments and consolidated rocks, building materials, man-made materials and wood. It is open for all SIP related working Groups, and the usage is free of charge for scientific purposes. Nevertheless, a simple registration is needed for both, the users and the user's institution. More details can be found on the website. eng ["disciplinary"] {"size": "1.210 samples; 2.331 measurements", "updatedp": "2020-12-14"} 2017-03-15 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.sip-archiv.de/Start/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["SIP", "Spectral Induced Polarization", "complex electrical rock properties", "geoelectrics", "geophysics", "measurements", "petrophysics"] [{"institutionName": "Leibniz-Institut f\u00fcr Angewandte Geophysik", "institutionAdditionalName": ["LIAG"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.leibniz-liag.de/", "institutionIdentifier": ["ROR:05txczf44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsregeln", "policyURL": "https://www.sip-archiv.de/Start/regeln"}, {"policyName": "Sicherung guter wissenschaftlicher Praxis", "policyURL": "https://www.dfg.de/download/pdf/dfg_im_profil/reden_stellungnahmen/download/empfehlung_wiss_praxis_1310.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.sip-archiv.de/Start/regeln"}] restricted [{"dataUploadLicenseName": "Nutzungsregeln", "dataUploadLicenseURL": "https://www.sip-archiv.de/Start/regeln"}] ["unknown"] yes {} ["DOI"] https://www.sip-archiv.de/Start/regeln [] unknown unknown [] [] {} 2017-03-15 2021-03-22 +r3d100012328 NMDB eng [{"additionalName": "Neutron Monitor Database", "additionalNameLanguage": "eng"}] http://www.nmdb.eu [] ["http://www01.nmdb.eu/contact/", "questions@nmdb.eu"] Real-Time Database for high-resolution Neutron Monitor measurements. NMDB provides access to Neutron Monitor measurements from stations around the world. The goal of NMDB is to provide easy access to all Neutron Monitor measurements through an easy to use interface. NMDB provides access to real-time as well as historical data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www01.nmdb.eu/data/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["atmosphere", "cosmic ray", "energy", "galaxy", "heliospheric physics", "solar physics", "stellar explosion", "sun", "supernova"] [{"institutionName": "Christian-Albrechts-Universit\u00e4t zu Kiel, Mathematisch-Naturwissenschaftliche Fakult\u00e4t, Sektion Physik, Institut f\u00fcr Experimentelle und Angewandte Physik", "institutionAdditionalName": ["CAU, IEAP", "Christian-Albrechts-Universit\u00e4t zu Kiel, Faculty of Mathematics and Natural Sciences, Department of Physics, Institute of Experimental and Applied Physics"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.physik.uni-kiel.de/de/institute/ieap", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation/funding/funding-opportunities/funding-programmes-and-open-calls_en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en#contact"]}] [{"policyName": "Guidelines for data acquisition", "policyURL": "http://www.nmdb.eu/?q=node/34"}, {"policyName": "Impressum, Legal Notice and Disclaimer, Copyright", "policyURL": "http://www.nmdb.eu/?q=node/458"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nmdb.eu/?q=node/458"}] restricted [] ["MySQL"] {"api": "http://www.nmdb.eu/nest/", "apiType": "other"} ["none"] [] unknown unknown [] [] {"syndication": "http://www.nmdb.eu/?q=rss.xml", "syndicationType": "RSS"} The Real-time database for high-resolution neutron monitor measurements (NMDB) was created by teams from 12 different countries. Whoever is interested will find public outreach information (in 12 languages): http://www.nmdb.eu/?q=node/129 2017-03-16 2021-03-25 +r3d100012329 STRENDA DB eng [{"additionalName": "Standards for Reporting Enzymology Data", "additionalNameLanguage": "eng"}] https://www.beilstein-strenda-db.org/strenda/ ["FAIRsharing_doi:10.25504/FAIRsharing.ekj9zx", "RRID:SCR_017422"] ["https://www.beilstein-institut.de/en/projects/strenda/contact/", "strenda-db-service@beilstein-institut.de"] STRENDA DB is a storage and search platform supported by the Beilstein-Institut that incorporates the STRENDA Guidelines in a user-friendly, web-based system. If you are an author who is preparing a manuscript containing functional enzymology data, STRENDA DB provides you the means to ensure that your data sets are complete and valid before you submit them as part of a publication to a journal. Data entered in the STRENDA DB submission form are automatically checked for compliance with the STRENDA Guidelines; users receive warnings informing them when necessary information is missing. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.beilstein-institut.de/en/projects/strenda/aims [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "bioinformatics", "enzyme", "mechanistic enzymology", "nomenclature", "systems biology", "theoretical biology"] [{"institutionName": "Beilstein-Institut zur F\u00f6rderung der Chemischen Wissenschaften", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.beilstein-institut.de/", "institutionIdentifier": ["ROR:05jdrrw50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@beilstein-institut.de"]}, {"institutionName": "STRENDA Commission", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.beilstein-institut.de/en/projects/strenda/commission/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.beilstein-strenda-db.org/strenda/termsConditions.xhtml"}, {"policyName": "User Guide for Data Input into STRENDA DB", "policyURL": "https://www.beilstein-strenda-db.org/strenda/help/STRENDA_DB_UserGuide_v0.92.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.beilstein-strenda-db.org/strenda/termsConditions.xhtml"}] restricted [] [] {} ["DOI"] [] unknown yes [] [] {} 2017-03-17 2021-03-25 +r3d100012330 RADAR deu [{"additionalName": "Research Data Repository", "additionalNameLanguage": "eng"}] https://www.radar-service.eu/en [] ["info@radar-service.eu"] RADAR offers researchers at publicly funded universities and non-academic research institutions in Germany a customized and user-friendly repository for archiving and publication of research data independent of discipline and format. The administration of the service, the individual workflows for uploading, organising and annotating the research data with metadata as well as the curation of the datasets and optional quality assurance through peer review are the responsibility of the using institution. For data archiving, data providers can flexibly choose retention periods (5, 10, 15 years) and define access rights. Published datasets are kept for at least 25 years, they are always assigned a DOI via DataCite and can thus be internationally identified and cited. RADAR is operated exclusively on servers in Germany. The data are stored in three copies at two locations. All contracts are subject to German law. eng ["other"] {"size": "", "updatedp": ""} 2017-03-16 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://radar.products.fiz-karlsruhe.de/en/radarabout/ueber-radar [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "FIZ Karlsruhe - Leibniz Institute for Information Infrastructure", "institutionAdditionalName": ["FIZ Karlsruhe", "FIZ Karlsruhe - Leibniz-Institut f\u00fcr Informationsinfrastruktur GmbH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fiz-karlsruhe.de/", "institutionIdentifier": ["ROR:0387prb75"], "responsibilityStartDate": "2017-03-16", "responsibilityEndDate": "", "institutionContact": ["felix.bach@fiz-karlsruhe.de", "kerstin.soltau@fiz-karlsruhe.de"]}] [{"policyName": "RADAR License and User Instructions for Data Providers", "policyURL": "https://radar.products.fiz-karlsruhe.de/sites/default/files/radar/docs/terms/RADAR_License_and_User_Instructions_for_Data_Providers.pdf"}, {"policyName": "RADAR Service Agreement (in German)", "policyURL": "https://radar.products.fiz-karlsruhe.de/sites/default/files/radar/docs/terms/Dienstvertrag-RADAR.pdf"}, {"policyName": "RADAR Terms for Data Users", "policyURL": "https://radar.products.fiz-karlsruhe.de/sites/default/files/radar/docs/terms/RADAR_Terms_for_Data_Users.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "RADAR License and User Instructions for Data Providers", "dataUploadLicenseURL": "https://radar.products.fiz-karlsruhe.de/sites/default/files/radar/docs/terms/RADAR_License_and_User_Instructions_for_Data_Providers.pdf"}] ["eSciDoc"] {"api": "https://radar.products.fiz-karlsruhe.de/en/radarfeatures/radar-oai-provider", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} RADAR was established by an experienced consortium to develop an infrastructure that facilitates the preservation, publication and traceability of research data. The project was funded by the German Research Foundation (DFG) from 2013 to 2016 within the programme “Scientific Library Services and Information Systems (LIS)”. The technical infrastructure of RADAR was provided by the FIZ Karlsruhe – Leibniz Institute for Information Infrastructure and the Steinbuch Centre for Computing (SCC). The Ludwig-Maximilians-Universität Munich (LMU), Faculty for Chemistry and Pharmacy, and the Leibniz Institute of Plant Biochemistry (IPB) provided the scientific specification for data management services. The German National Library of Science and Technology (TIB) considered the sustainable management and publication of research data. 2017-03-17 2022-01-31 +r3d100012332 Clinical Genomic Database eng [{"additionalName": "CGD", "additionalNameLanguage": "eng"}] https://research.nhgri.nih.gov/CGD/ ["OMICS_09755", "RRID:SCR_006427", "RRID:nlx_152872"] ["https://research.nhgri.nih.gov/CGD/templates/contact.shtml"] Clinical Genomic Database (CGD) is a manually curated database of conditions with known genetic causes, focusing on medically significant genetic data with available interventions. eng ["disciplinary"] {"size": "4.175 genes", "updatedp": "2021-03-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://research.nhgri.nih.gov/CGD/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["adult human", "clinical categorization", "genetics", "genomic sequencing", "genomics", "pathogenic mutation", "pediatric", "young human"] [{"institutionName": "National Institutes of Health, National Human Genome Research Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["ROR:00baak391"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["solomonb@mail.nih.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.genome.gov/copyright.cfm"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://research.nhgri.nih.gov/CGD/templates/notice.shtml"}] closed [] ["unknown"] {} ["none"] https://research.nhgri.nih.gov/CGD/templates/notice.shtml ["none"] yes unknown [] [] {} 2017-03-21 2021-03-18 +r3d100012333 DataDOI eng [] https://datadoi.ee [] ["datadoi@datadoi.ee"] DataDOI is an institutional research data repository managed by University of Tartu Library. DataDOI gathers all fields of research data and stands for encouraging open science and FAIR (Findable, Accessible, Interoperable, Reusable) principles. DataDOI is made for long-term preservation of research data. Each dataset is given a DOI (Digital Object Identifier) through DataCite Estonia Concortium. eng ["institutional"] {"size": "280 items", "updatedp": "2021-12-17"} ["eng", "est"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biology", "chemistry", "computer science", "ecology", "economics", "education", "history", "language", "law", "literature", "pharmacy", "physics", "politics", "psychology", "theology"] [{"institutionName": "University of Tartu", "institutionAdditionalName": ["Tartu \u00fclikool", "Universitas Tartuensis"], "institutionCountry": "EST", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/en", "institutionIdentifier": ["ROR:03z77qz90", "RRID:SCR_011710", "RRID:nlx_49099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ut.ee/en/contact"]}] [{"policyName": "Data Protection Policy (University of Tartu)", "policyURL": "https://www.ut.ee/en/data-protection-policy"}, {"policyName": "DataDOI Policy", "policyURL": "https://datadoi.ee/page/policy"}, {"policyName": "Privacy Policy of DataDOI Repository", "policyURL": "https://datadoi.ee/page/dataprotection"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["DSpace"] yes {"api": "https://datadoi.ee/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["none"] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://datadoi.ee/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-03-22 2021-12-17 +r3d100012335 GFZ Data Services eng [] https://dataservices.gfz-potsdam.de/portal/ ["biodbcore-001573"] ["https://dataservices.gfz-potsdam.de/portal/about.html", "kelger@gfz-potsdam.de"] Since 2004, the GFZ German Research Centre for Geosciences assigns Digital Object Identifiers (DOI) to datasets. These datasets are archived by and published through GFZ Data Services and cover all geoscientific disciplines. They range from large dynamic datasets deriving from data intensive global monitoring networks with real-time data acquisition to the full suite of highly variable datasets collected by individual researchers or small teams. These highly variable data (‘long-tail data’) are small in size, but represent an important part of the total scientific output. eng ["disciplinary"] {"size": "6.897 datasets", "updatedp": "2020-03-18"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataservices.gfz-potsdam.de/portal/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Earth Science data", "agriculture", "atmosphere", "biosphere", "cryosphere", "geoscience", "hazard", "ocean", "paleoclimate"] [{"institutionName": "GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["Deutsches GeoForschungsZentrum GFZ", "Helmholtz Centre Potsdam GFZ German Research Centre for Geosciences", "Helmholtz Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/startseite/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gfz-potsdam.de/kontakt/"]}] [{"policyName": "Terms of Use", "policyURL": "https://dataservices.gfz-potsdam.de/portal/about.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["eSciDoc"] {"api": "http://doidb.wdc-terra.org/oaip/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataservices.gfz-potsdam.de/portal/about.html [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} is covered by Elsevier. GFZ German Research Centre for Geosciences is covered by Clarivate Data Citation Index. GFZ Data Services publishes Earth Science data of GFZ members and collaboration partners. 2017-03-23 2021-09-02 +r3d100012336 EBAS eng [] http://ebas.nilu.no/ ["biodbcore-001574"] ["kt@nilu.no"] EBAS is a database hosting observation data of atmospheric chemical composition and physical properties. EBAS hosts data submitted by data originators in support of a number of national and international programs ranging from monitoring activities to research projects. EBAS is developed and operated by the Norwegian Institute for Air Research (NILU). We hope the information found on the web-site is self explanatory, and we would particularly ask you to consider the text found in the data disclaimer and in the “info” pages associated to the filter criteria. eng ["disciplinary"] {"size": "124.867 datasets", "updatedp": "2021-03-18"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.nilu.no/projects/ccc/ebas_online/ebas_online_project_description.pdf [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "chemical composition", "near-real-time data", "physical properties", "weather"] [{"institutionName": "AMAP", "institutionAdditionalName": ["Austrian Map online"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.austrianmap.at/amap/index.php?SKN=1&XPX=637&YPX=492", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Monitoring and Evaluation Programme", "institutionAdditionalName": ["EMEP"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.emep.int/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Norwegian Institute for Air Research", "institutionAdditionalName": ["NILU", "Norsk institutt for luftforskning"], "institutionCountry": "NOR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nilu.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nilu.no/OmNILU/Kontaktoss/tabid/80/Default.aspx"]}, {"institutionName": "Research Council of Norway", "institutionAdditionalName": ["NOK"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.forskningsradet.no/en/Home_page/1177315753906", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy and restrictions", "policyURL": "http://ebas.nilu.no/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://ebas.nilu.no/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ebas.nilu.no/"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "http://ebas-submit-tool.nilu.no"}] ["unknown"] {"api": "http://www.nilu.no/projects/ccc/ebas_online/ebas_online_project_description.pdf", "apiType": "NetCDF"} [] [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} For decades the Norwegian Institute for Air Research (NILU) has been storing atmospheric data from a large number of international monitoring activities and research projects in its EBAS database. Now this database is to be upgraded to EBAS Online, with superior archiving solutions and improved accessibility for users worldwide 2017-03-27 2021-11-17 +r3d100012338 Data Buoy Cooperation Panel eng [{"additionalName": "DBCP", "additionalNameLanguage": "eng"}] http://www.jcommops.org/dbcp/ [] ["http://www.jcommops.org/dbcp/community/contacts.html"] The DBCP is an international program coordinating the use of autonomous data buoys to observe atmospheric and oceanographic conditions, over ocean areas where few other measurements are taken. eng ["disciplinary"] {"size": "over 1250 drifting buoys; 400 moored buoys", "updatedp": "2017-30-03"} 1985 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.jcommops.org/dbcp/overview/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["air pressure", "air temperature", "forecasts", "humidity", "marine safety", "meterology", "ocean current velocity", "oceanography", "sea surface temperature", "wave characteristics", "wind velocity"] [{"institutionName": "JCOMMOPS", "institutionAdditionalName": ["JCOMM in-situ Observing Programmes Support Centre", "Joint Technical Commission for Oceanography and Marine Meteorology in-situ Observing Programmes Support Centre"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ocean-ops.org/board?t=oceanops", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@jcommops.org"]}, {"institutionName": "UNESCO, Intergovernmental Oceanographic Commission", "institutionAdditionalName": ["IOC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ioc.unesco.org/", "institutionIdentifier": [], "responsibilityStartDate": "1985", "responsibilityEndDate": "", "institutionContact": ["https://ioc.unesco.org/contact"]}, {"institutionName": "WMO-IOC Joint Technical Commission for Oceanography and Marine Meteorology", "institutionAdditionalName": ["JCOMM"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uk-ioc.org/JCOMM", "institutionIdentifier": [], "responsibilityStartDate": "1999", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Meteorological Organization", "institutionAdditionalName": ["WMO"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://public.wmo.int/en", "institutionIdentifier": ["ROR:011pjwf87"], "responsibilityStartDate": "1985", "responsibilityEndDate": "", "institutionContact": ["https://public.wmo.int/en/about-us/contact-us"]}] [{"policyName": "CLIVAR Data Policy", "policyURL": "http://www.clivar.org/resources/data/data-policy"}, {"policyName": "Data policy", "policyURL": "http://www.jcommops.org/dbcp/data/access.html"}, {"policyName": "IOC Oceanographic Data Exchange Policy", "policyURL": "http://www.iode.org/index.php?option=com_oe&task=viewDocumentRecord&docID=251"}, {"policyName": "WMO policy", "policyURL": "http://www.wmo.int/pages/prog/www/ois/Operational_Information/Publications/Congress/Cg_XII/res40_en.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.jcommops.org/dbcp/doc/DBCP_Operating-Principles.pdf"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown yes [] [] {} 2017-03-30 2021-03-19 +r3d100012339 APID eng [{"additionalName": "APID Interactomes", "additionalNameLanguage": "eng"}, {"additionalName": "Agile Protein Interactomes DataServer", "additionalNameLanguage": "eng"}] http://cicblade.dep.usal.es:8080/APID/init.action ["FAIRSharing_doi:10.25504/fairsharing.8ye60e", "RID:nlx_149321", "RRID:SCR_008871"] [] APID Interactomes is a database that provides a comprehensive collection of protein interactomes for more than 400 organisms based in the integration of known experimentally validated protein-protein physical interactions (PPIs). Construction of the interactomes is done with a methodological approach to report quality levels and coverage over the proteomes for each organism included. In this way, APID provides interactomes from specific organisms that in 25 cases have more than 500 proteins. As a whole APID includes a comprehensive compendium of 90,379 distinct proteins and 678,441 singular interactions. The analytical and integrative effort done in APID unifies PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. In this way, 8,388 structures have been analyzed to find specific protein-protein interactions reported with details of their molecular interfaces. APID also includes a new data visualization web-tool that allows the construction of sub-interactomes using query lists of proteins of interest and the visual exploration of the corresponding networks, including an interactive selection of the properties of the interactions (i.e. the reliability of the "edges" in the network) and an interactive mapping of the functional environment of the proteins (i.e. the functional annotations of the "nodes" in the network). eng ["disciplinary"] {"size": "400 organisms", "updatedp": "2017-03-30"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://cicblade.dep.usal.es:8080/APID/init.action#tabr4 [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Interactome", "cell biology", "molecular biology", "proteins interactions", "proteome"] [{"institutionName": "Centro de Investigacion del Cancer, Instituto Biologia Molecular y Celular del Cancer", "institutionAdditionalName": ["Cancer Research Center, Bioinformatics and Functional Genomics Research Group", "CiC-IBMCC"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.usal.es/instituto-universitario-de-biologia-molecular-y-celular-del-cancer-ibmcc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consejo Superior de Investigaciones Cientificas", "institutionAdditionalName": ["CSIC"], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.csic.es/", "institutionIdentifier": ["ROR:02gfc7t72", "RRID:SCR_011534", "RRID:nlx_156803"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Instituto de Salud Carlos III", "institutionAdditionalName": ["ISC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isciii.es/Paginas/Inicio.aspx", "institutionIdentifier": ["ROR:00ca2c886", "RRID:SCR_011312"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad de Salamanca", "institutionAdditionalName": ["USAL"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usal.es/", "institutionIdentifier": ["ROR:02f40zc51", "RRID:SCR_007833", "RRID:nlx_149149"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About APID", "policyURL": "http://cicblade.dep.usal.es:8080/APID/init.action#tabr4"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] closed [] [] yes {} ["none"] http://cicblade.dep.usal.es:8080/APID/init.action#subtab3 [] yes unknown [] [] {} APID server was built with a protein and proteome-centered strategy, using UniProt database (http://www.uniprot.org) as the main guide to identify and handle all the proteins and to map them into the reference proteomes of each species (based on the new proteomes resource that UniProt has recently developed: http://www.uniprot.org/proteomes/). 2017-03-30 2021-09-09 +r3d100012340 SAHFOS eng [{"additionalName": "Sir Alister Hardy Foundation for Ocean Science", "additionalNameLanguage": "eng"}] https://www.cprsurvey.org/about-us/sir-alister-hardy-and-the-continuous-plankton-recorder-cpr-survey/ [] ["cprsurvey@mba.ac.uk"] SAHFOS is an internationally funded independent research non-profit organisation responsible for the operation of the Continuous Plankton Recorder (CPR) Survey. As a large-scale global survey, it provides the scientific and policy communities with a basin-wide and long-term measure of the ecological health of marine plankton. Established in 1931, the CPR Survey is the longest running, most geographically extensive marine ecological survey in the world. It has a considerable database of marine plankton and associated metadata that is used by researchers and policy makers to examine strategically important science pillars such as climate change, human health, fisheries, biodiversity, pathogens, invasive species, ocean acidification and natural capital. eng ["disciplinary"] {"size": "258.305 Total Samples Analysed", "updatedp": "2017-30-03"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.sahfos.ac.uk/research/our-science/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["CPR Continuous Plankton Recorder", "North Atlantic", "North Pacific", "South Atlantic", "biology", "climate change", "ecology", "marine biodiversity", "marine plankton"] [{"institutionName": "SAHFOS", "institutionAdditionalName": ["Sir Alister Hardy Foundation for Ocean Science", "The Laboratory"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sahfos.ac.uk/", "institutionIdentifier": ["ROR:01b1y2d10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sahfos@sahfos.ac.uk"]}] [{"policyName": "TERMS AND CONDITIONS", "policyURL": "https://www.sahfos.ac.uk/data/data-licence-agreement/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.sahfos.ac.uk/data/data-policy/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.sahfos.ac.uk/data/our-data/"}] closed [] ["unknown"] {} ["DOI"] https://www.sahfos.ac.uk/data/data-policy/ [] no yes [] [] {} Enquiries for access to CPR data and samples should be made via the Data Request Form 2017-03-30 2021-08-25 +r3d100012341 Codex eng [{"additionalName": "A comprehensive and functional compendium of Next Generation Sequencing experiments.", "additionalNameLanguage": "eng"}] http://codex.stemcells.cam.ac.uk/ ["OMICS_05871"] ["https://go.fluidigm.com/ContactUs"] CODEX is a database of NGS mouse and human experiments. Although, the main focus of CODEX is Haematopoiesis and Embryonic systems, the database includes a large variety of cell types. In addition to the publically available data, CODEX also includes a private site hosting non-published data. CODEX provides access to processed and curated NGS experiments. To use CODEX: (i) select a specialized repository (HAEMCODE or ESCODE) or choose the whole compendium (CODEX), then (ii) filter by organism and (iii) choose how to explore the database. eng ["disciplinary"] {"size": "Public experiments 1.742; Private experiments 145; Unique factors 292; Unique cell types 147", "updatedp": "2021-03-26"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://codex.stemcells.cam.ac.uk/about.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["Chip-Seq", "DNase-Seq", "RNA-Seq", "bioinformatics", "embryonic systems", "haematopoiesis", "next generation sequencing NGS", "stem cell"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "Blood Cancer", "institutionAdditionalName": ["formerly: Leukaemia & Lymphoma Research", "formerly: bloodwise"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bloodcancer.org.uk", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://secure.bloodcancer.org.uk/contact"]}, {"institutionName": "Cambridge Institute for Medical Research, Haematopoietic Stem Cell Laboratory", "institutionAdditionalName": ["Gottgens lab", "HSCL - Bertie Gottgens", "Haematopoietic Stem Cell Lab - Bertie Gottgens"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fluidigm.com/articles/the-haematopoietic-stem-cell-laboratory-at-the-cambridge-institute-for-medical-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://go.fluidigm.com/ContactUs"]}, {"institutionName": "Cancer Research UK", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancerresearchuk.org/", "institutionIdentifier": ["ROR:054225q67", "RRID:SCR_004041", "RRID:nlx_143542"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cancerresearchuk.org/about-us/contact-us"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": ["ROR:03x94j517"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mrc.ac.uk/about/contact/"]}, {"institutionName": "Wellcome Trust, Medical Research Council, Cambridge Stem Cell Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.stemcells.cam.ac.uk/", "institutionIdentifier": ["ROR:05nz0zp31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sci-coordinator@stemcells.cam.ac.uk"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://codex.stemcells.cam.ac.uk/doc_pipeline.php"}] restricted [] ["unknown"] {} [] http://codex.stemcells.cam.ac.uk/about.php ["none"] unknown yes [] [] {} 2017-03-31 2021-03-26 +r3d100012342 Genome Sequence Archive eng [{"additionalName": "GSA", "additionalNameLanguage": "eng"}] https://ngdc.cncb.ac.cn/gsa/ ["FAIRsharing_doi:10.25504/FAIRsharing.tdhkc6", "OMICS_20961"] ["gsa@big.ac.cn", "https://ngdc.cncb.ac.cn/contact"] GSA is a data repository specialized for archiving raw sequence reads. It supports data generated from a variety of sequencing platforms ranging from Sanger sequencing machines to single-cell sequencing machines and provides data storing and sharing services free of charge for worldwide scientific communities. In addition to raw sequencing data, GSA also accommodates secondary analyzed files in acceptable formats (like BAM, VCF). Its user-friendly web interfaces simplify data entry and submitted data are roughly organized as two parts, viz., Metadata and File, where the former can be further assorted into BioProject, BioSample, Experiment and Run, and the latter contains raw sequence reads. eng ["disciplinary"] {"size": "1.886 items", "updatedp": "2021-06-22"} 2015-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ngdc.cncb.ac.cn/mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "RNA", "genes", "genome", "raw sequences", "samples"] [{"institutionName": "Beijing Institute of Genomics, Chinese Academy of Sciences, China National Center for BioInformation), National Genomics Data Center", "institutionAdditionalName": ["CAS, BIG, BIGD, NGDC"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ngdc.cncb.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bigd.big.ac.cn/contact"]}] [{"policyName": "Data Usage Policies", "policyURL": "https://ngdc.cncb.ac.cn/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://ngdc.cncb.ac.cn/policies"}] restricted [] ["unknown"] {"api": "ftp://submit.big.ac.cn", "apiType": "FTP"} [] https://ngdc.cncb.ac.cn/gsa/documents#43 [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. 2017-04-01 2021-09-02 +r3d100012343 Service Centre of the Federal Government for Geo-Information and Geodesy - Open Data eng [{"additionalName": "Dienstleistungszentrum des Bundes f\u00fcr Geoinformation und Geod\u00e4sie", "additionalNameLanguage": "deu"}] https://gdz.bkg.bund.de/ [] ["dlz@bkg.bund.de"] The Service Centre of the Federal Government for Geo-Information and Geodesy (Dienstleistungszentrum des Bundes für Geoinformation und Geodäsie - DLZ) provides geodetic and geo-topographic reference data of the Federal Government centrally to federal institutions, public administrations, economy, science and citizens. The establishment of the Service Centre is based on the Federal Geographic Reference Data Act (Bundesgeoreferenzdatengesetz − BGeoRG), which came into effect on 1 November 2012. This act regulates use, quality and technology of the geodetic and geo-topographic reference systems, networks and data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bkg.bund.de/DE/Ueber-das-BKG/ueber-das-bkg.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["cartography", "digital Orthophotots DOP", "digital landscape models DLM", "digital terrain models DGM", "digital topographic maps DTK", "geodesy", "topography"] [{"institutionName": "Bundesamt f\u00fcr Kartographie und Geod\u00e4sie, Dienstleistungszentrum", "institutionAdditionalName": ["BKG Service Center", "Federal Agency for Cartography and Geodesy Service Centre, Service Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bkg.bund.de/EN/About-BKG/Service-Center/service-center.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dlz@bkg.bund.de"]}, {"institutionName": "Bundesamt f\u00fcr Kartographie und Geod\u00e4sie, Geodatenzentrum", "institutionAdditionalName": ["BKG", "Federal Government for Geo-Information and Geodesy, Central Office for Geotopography"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bkg.bund.de/SharedDocs/Kurzmeldungen/BKG/DE/M-2015/150120-ZSGT.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dlz@bkg.bund.de"]}] [{"policyName": "Act on Access to Digital Spatial Data (Spatial Data Access Act) (Gesetz \u00fcber den Zugang zu digitalen Geodaten \u2013 Geo-datenzugangsgesetz \u2013 GeoZG)", "policyURL": "http://www.gesetze-im-internet.de/geonutzv/index.html"}, {"policyName": "Ordinance to Determine the Conditions for Use for the Provision of Spatial Data of the Federation (Verordnung zur Festlegung der Nutzungsbestimmungen f\u00fcr die Bereitstellung on Geodaten des Bundes \u2013 GeoNutzV )", "policyURL": "https://www.bmu.de/themen/bildung-beteiligung/umweltinformation/umweltinformationsgesetz/uebersicht-der-geodatenzugangsgesetze-der-bundeslaender/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.bmu.de/themen/bildung-beteiligung/umweltinformation/umweltinformationsgesetz/uebersicht-der-geodatenzugangsgesetze-der-bundeslaender/"}] closed [] ["unknown"] {} ["none"] ["none"] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-04-05 2021-03-26 +r3d100012344 BioPortal eng [{"additionalName": "the world\u2019s most comprehensive repository of biomedical ontologies", "additionalNameLanguage": "eng"}] http://bioportal.bioontology.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.4m97ah", "MIR:00000187", "OMICS_09873", "RRID:SCR_002713", "RRID:nif-0000-23346"] ["http://bioportal.bioontology.org/feedback", "https://www.bioontology.org/project-team"] BioPortal is an open repository of biomedical ontologies, a service that provides access to those ontologies, and a set of tools for working with them. BioPortal provides a wide range of such tools, either directly via the BioPortal web site, or using the BioPortal web service REST API. BioPortal also includes community features for adding notes, reviews, and even mappings to specific ontologies. BioPortal has four major product components: the web application; the API services; widgets, or applets, that can be installed on your own site; and a Virtual Appliance version that is available for download or through Amazon Web Services machine instance (AMI). There is also a beta release SPARQL endpoint. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.bioontology.org/mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "biomedicine", "ontology mapping"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "Stanford Biomedical Informatics Research, National Center for Biomedical Ontology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bioontology.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bioontology.org/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.bioontology.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bioontology.org/terms"}] restricted [] ["unknown"] yes {"api": "http://data.bioontology.org/documentation", "apiType": "REST"} [] https://www.bioontology.org/wiki/index.php/NCBO_FAQ#How_do_I_cite_BioPortal.3F ["none"] unknown yes [] [] {} 2017-04-06 2018-09-13 +r3d100012345 SAMD eng [{"additionalName": "Archive for Standardized Atmospheric Measurement Dat", "additionalNameLanguage": "eng"}, {"additionalName": "Standardized Atmospheric Measurement Data", "additionalNameLanguage": "eng"}] https://www.cen.uni-hamburg.de/en/icdc/research/samd.html [] ["https://www.cen.uni-hamburg.de/en/icdc/research/samd/about-samd/contact.html", "icdc.cen@lists.uni-hamburg.de"] SAMD is a repository for Standardized Atmospheric Measurement Data: Central Europe is a region with one of the most comprehensive networks for cloud and precipitation observations worldwide. To unify these observations, establish the infrastructure to store it and make it accessible to the research community is the goal of SAMD. SAMD is one result of the project "High Definition of Clouds and Precipitation in advancing Climate Prediction" (HD(CP)²). eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.cen.uni-hamburg.de/en/icdc/research/samd/about-samd.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Observational Data Archive", "atmosphere", "climate model", "long-term observation", "meteorology"] [{"institutionName": "FONA", "institutionAdditionalName": ["Forschung f\u00fcr nachhaltige Entwicklung", "Research for Sustainable Development"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fona.de/en/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fona.de/en/contact"]}, {"institutionName": "German Ministry of Education and Research", "institutionAdditionalName": ["Bundesministerium f\u00fcr Bildung und Forschung,"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cologne, Regional Computing Centre", "institutionAdditionalName": ["RRZK", "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://rrzk.uni-koeln.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Hamburg, Center for Earth System Research and Sustainability, Integrated Climate Data Center", "institutionAdditionalName": ["CEN, ICDC", "Universit\u00e4t Hamburg, Centrum f\u00fcr Erdsystemforschung und Nachhaltigkeit, ICDC Datenzentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cen.uni-hamburg.de/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access", "policyURL": "https://www.cen.uni-hamburg.de/en/icdc/service/data-center-structure/access.html"}, {"policyName": "Data policy", "policyURL": "https://www.cen.uni-hamburg.de/icdc/research/samd/about-samd/samd-data-policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cen.uni-hamburg.de/icdc/research/samd/about-samd/samd-data-policy.html"}] restricted [] [] yes {"api": "https://icdc.cen.uni-hamburg.de/thredds/catalog/ftpthredds/samd/catalog.html", "apiType": "OpenDAP"} ["none"] http://hdcp2.eu/index.php?id=3761 [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} SAMD is one result of the project "High Definition of Clouds and Precipitation in advancing Climate Prediction" (HD(CP)². The data, provided by the web portal are in NetCDF format, quality checked, and have standardized names, variables and meta data. SAMD is open to other projects on the precondition that the data format is following the SAMD data standard and the data policy. 2017-04-06 2021-07-14 +r3d100012347 ²Dok[§] deu [{"additionalName": "Inter-Zwei-Dok", "additionalNameLanguage": "deu"}] https://intr2dok.vifa-recht.de/content/index.xml [] ["christian.mathieu@sbb.spk-berlin.de", "intR2dok@sbb.spk-berlin.de"] As Germany’s first disciplinary repository in the field of international and interdisciplinary legal scholarship ²Dok offers to all academic scholars currently affiliated with a university, college or research institute the opportunity to self-archive their quality-assured research data, research papers, pre-prints and previously published articles by means of open access. The disciplinary repository ²Dok is a service offer provided by the Scientific Information Service for International and Interdisciplinary Legal Research (Fachinformationsdienst für internationale und interdisziplinäre Rechtsforschung) established at Berlin State Library (Staatsbibliothek zu Berlin) and funded by the German Research Foundation (Deutsche Forschungsgemeinschaft). eng ["disciplinary"] {"size": "over 2.000 documents", "updatedp": "2017-11-06"} 2015 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://intr2dok.vifa-recht.de/content/brand/who.xml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["European law", "German language law", "interdisciplinary law", "interdisciplinary law research", "international law", "legal history", "legal philosophy", "sociology of law"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fachinformationsdienst f\u00fcr internationale und interdisziplin\u00e4re Rechtsforschung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://staatsbibliothek-berlin.de/recherche/fachgebiete/rechtswissenschaft/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatsbibliothek zu Berlin - Preu\u00dfischer Kulturbesitz", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://staatsbibliothek-berlin.de/", "institutionIdentifier": ["ROR:02ysgg478"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://staatsbibliothek-berlin.de/die-staatsbibliothek/kontakt/"]}, {"institutionName": "Verbundzentrale des Gemeinsamen Bibliotheksverbundes der L\u00e4nder Bremen, Hamburg, Mecklenburg-Vorpommern, Niedersachsen, Sachsen-Anhalt, Schleswig-Holstein, Th\u00fcringen und der Stiftung Preu\u00dfischer Kulturbesitz", "institutionAdditionalName": ["VZG", "Verbundzentrale des GBV"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gbv.de/", "institutionIdentifier": ["ROR:048vdhs48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Urheberrecht", "policyURL": "https://intr2dok.vifa-recht.de//content/rights/rights.xml"}, {"policyName": "Wer wir sind", "policyURL": "https://intr2dok.vifa-recht.de//content/brand/who.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] restricted [{"dataUploadLicenseName": "Publikationsvertrag", "dataUploadLicenseURL": "http://intr2dok.vifa-recht.de/content/rights/vertrag.pdf"}] ["other"] {"api": "http://intr2dok.vifa-recht.de/servlets/OAIDataProvider", "apiType": "OAI-PMH"} ["DOI", "URN"] [] yes yes ["DINI Certificate"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ²Dok also supports metadata standard MODS. Name of repository software: MyCoRe. 2017-04-12 2021-09-03 +r3d100012348 ANPERSANA eus [{"additionalName": "biblioth\u00e8que num\u00e9rique", "additionalNameLanguage": "fra"}] https://anpersana.iker.univ-pau.fr [] ["https://anpersana.iker.univ-pau.fr/contact"] ANPERSANA is the digital library of IKER (UMR 5478), a research centre specialized in Basque language and texts. The online library platform receives and disseminates primary sources of data issued from research in Basque language and culture. As of today, two corpora of documents have been published. The first one, is a collection of private letters written in an 18th century variety of Basque, documented in and transcribed to modern standard Basque. The discovery of the collection, named Le Dauphin, has enabled the emerging of new questions about the history and sociology of writing in the domain of minority languages, not only in France, but also among the whole Atlantic Arc. The second of the two corpora is a selection of sound recordings about monodic chant in the Basque Country. The documents were collected as part of a PhD thesis research work that took place between 2003 and 2012. It's a total of 50 hours of interviews with francophone and bascophone cultural representatives carried out at either their workplace of the informers or in public areas. ANPERSANA is bundled with an advanced search engine. The documents have been indexed and geo-localized on an interactive map. The platform is engaged with open access and all the resources can be uploaded freely under the different Creative Commons (CC) licenses. eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eus", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://anpersana.iker.univ-pau.fr/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Basque culture", "Basque language", "history of the Basque Country", "letter", "music", "oral narrative"] [{"institutionName": "Centre de recherche sur la langue et les textes basques CNRS IKER", "institutionAdditionalName": ["IKER UMR 5478"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iker.cnrs.fr/?lang=fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.horizon2020.gouv.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Pau et des Pays de l'Adour", "institutionAdditionalName": ["UPPA"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.univ-pau.fr/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "\u00c0 propos", "policyURL": "https://anpersana.iker.univ-pau.fr/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://anpersana.iker.univ-pau.fr/about"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "other", "dataLicenseURL": "https://anpersana.iker.univ-pau.fr/about"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org"}] ["MySQL"] {} ["none"] https://anpersana.iker.univ-pau.fr/items/show/93 ["none"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://anpersana.iker.univ-pau.fr/items/browse?page=2&output=atom", "syndicationType": "ATOM"} 2017-04-12 2021-06-16 +r3d100012349 jPOSTrepo eng [{"additionalName": "Japan ProteOme STandard Repository/Database", "additionalNameLanguage": "eng"}] https://repository.jpostdb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.p899f7"] ["https://repository.jpostdb.org/contact"] jPOSTrepo (Japan ProteOme STandard Repository) is a repository of sharing MS raw/processed data. It consists of a high-speed file upload process, flexible file management system and easy-to-use interfaces. Users can release their "raw/processed" data via this site with a unique identifier number for the paper publication. Users also can suspend (or "embargo") their data until their paper is published. The file transfer from users’ computer to our repository server is very fast (roughly ten times faster than usual file transfer) and uses only web browsers – it does not require installing any additional software. eng ["disciplinary"] {"size": "238 projects registered; 124 projects opened; 2.6697 files amount to 6.2 TB; 26 species", "updatedp": "2017-10-17"} 2016-05-02 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "30401 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://repository.jpostdb.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["amino acids", "mass spectra", "mass spectrometry", "peptide identification", "protein identification", "proteomics", "sequencing"] [{"institutionName": "Database Center for Life Science", "institutionAdditionalName": ["DBCLS"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dbcls.rois.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dbcls.rois.ac.jp/en/contact"]}, {"institutionName": "Kumamoto University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ewww.kumamoto-u.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kyoto University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kyoto-u.ac.jp/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kyushu University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kyushu-u.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Bioscience Database Center", "institutionAdditionalName": ["NBDC"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://biosciencedbc.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biosciencedbc.jp/en/contact-us"]}, {"institutionName": "Niigata University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.niigata-u.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "https://repository.jpostdb.org/privacy"}, {"policyName": "Terms of use", "policyURL": "https://repository.jpostdb.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Data Submission Guidelines for the ProteomeXchange Consortium", "dataUploadLicenseURL": "http://www.proteomexchange.org/docs/guidelines_px.pdf"}] [] {} ["DOI"] https://repository.jpostdb.org/help ["ORCID"] yes yes [] [] {"syndication": "http://jpostdb.org/feed/", "syndicationType": "RSS"} jPOST is a member of the ProteomeXchange consortium. 2017-04-13 2021-09-09 +r3d100012350 FORSbase deu [{"additionalName": "Fondation suisse pour la recherche en sciences sociales base", "additionalNameLanguage": "fra"}, {"additionalName": "Your research information and data access portal in Switzerland", "additionalNameLanguage": "eng"}] https://forsbase.unil.ch/ [] ["dataservice@fors.unil.ch"] FORSbase is an online platform that enables you to access data and obtain information about social science studies in Switzerland. You can register your own research projects, as well as store and share your own data. eng ["disciplinary", "institutional"] {"size": "more than 600 datasets", "updatedp": "2018-11-12"} ["deu", "eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://forscenter.ch/about-fors/mission/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "politics", "qualitative data", "quantitative data", "social science", "survey"] [{"institutionName": "FORS - Swiss Centre of Expertise in the Social Sciences", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://forscenter.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@forscenter.ch"]}] [{"policyName": "Open Access to data and publications of FORS", "policyURL": "https://forscenter.ch/wp-content/uploads/2018/10/openaccess_guidelinesfors.pdf"}, {"policyName": "Policies", "policyURL": "https://forscenter.ch/about-fors/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://forsbase.unil.ch/base/faqs/#5.2"}] restricted [{"dataUploadLicenseName": "Deposit contract", "dataUploadLicenseURL": "https://forsbase.unil.ch/base/faqs/#5.6"}] ["Fedora", "Nesstar", "other"] yes {} ["DOI"] https://forscenter.ch/wp-content/uploads/2018/10/openaccess_guidelinesfors.pdf ["AuthorClaim"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FORS conducts surveys on a wide array of social science topics. Surveys include the Swiss Household Panel (SHP) and the Swiss Electoral Studies (Selects), as well as the Swiss components of various international surveys, such as the European Social Survey (ESS), the International Social Survey Programme (ISSP), and the European Values Survey (EVS). 2017-04-13 2019-01-17 +r3d100012351 Hardwood Genomics Project eng [{"additionalName": "Genomic resources for hardwood trees", "additionalNameLanguage": "eng"}, {"additionalName": "HWG", "additionalNameLanguage": "eng"}] https://www.hardwoodgenomics.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.srgkaf"] ["https://www.hardwoodgenomics.org/contact"] This database serves forest tree scientists by providing online access to hardwood tree genomic and genetic data, including assembled reference genomes, transcriptomes, and genetic mapping information. The web site also provides access to tools for mining and visualization of these data sets, including BLAST for comparing sequences, Jbrowse for browsing genomes, Apollo for community annotation and Expression Analysis to build gene expression heatmaps. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.hardwoodgenomics.org/content/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["genome", "sequence", "transcriptome"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsf.gov/awardsearch/showAward?AWD_ID=1443040", "https://www.nsf.gov/awardsearch/showAward?AWD_ID=1444573&HistoricalAwards"]}, {"institutionName": "University of Tennessee, Institute of Agriculture, Department of Entomology and Plant Pathology", "institutionAdditionalName": ["EPP", "UTIA"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ag.tennessee.edu/EPP/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NSF BIODMP Guidance", "policyURL": "https://www.nsf.gov/bio/pubs/BIODMP_Guidance.pdf"}, {"policyName": "NSF Data Sharing Policy", "policyURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://github.com/tripal/tripal/blob/7.x-2.x/LICENSE.txt"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nsf.gov/pubs/policydocs/pappguide/nsf15001/aag_6.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.hardwoodgenomics.org/chinese-chestnut-genome"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] open [] ["other"] {} ["none"] [] yes unknown [] [] {} All original sequence data is being deposited in NCBI's Sequence Read Archive and the genetic linkage maps and associated marker data will be available at the Dendrome database: http://dendrome.ucdavis.edu/ --- This website was originally developed to house data from the Comparative Genomics of Environmental Stress Responses in North American Hardwoods. 2017-04-18 2021-09-09 +r3d100012352 TreeGenes eng [{"additionalName": "A forest tree genome database", "additionalNameLanguage": "eng"}, {"additionalName": "Dendrome", "additionalNameLanguage": "eng"}] https://treegenesdb.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.lCVfCv"] ["treegenesdb@gmail.com"] TreeGenes is a genomic, phenotypic, and environmental data resource for forest tree species. The TreeGenes database and Dendrome project provide custom informatics tools to manage the flood of information.The database contains several curated modules that support the storage of data and provide the foundation for web-based searches and visualization tools. GMOD GUI tools such as CMAP for genetic maps and GBrowse for genome and transcriptome assemblies are implemented here. A sample tracking system, known as the Forest Tree Genetic Stock Center, sits at the forefront of most large-scale projects. Barcode identifiers assigned to the trees during sample collection are maintained in the database to identify an individual through DNA extraction, resequencing, genotyping and phenotyping. DiversiTree, a user-friendly desktop-style interface, queries the TreeGenes database and is designed for bulk retrieval of resequencing data. CartograTree combines geo-referenced individuals with relevant ecological and trait databases in a user-friendly map-based interface. ---- The Conifer Genome Network (CGN) is a virtual nexus for researchers working in conifer genomics. The CGN web site is maintained by the Dendrome Project at the University of California, Davis. eng ["disciplinary"] {"size": "", "updatedp": ""} 1992 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://treegenesdb.org/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["SNPs", "bioinformatics", "genetic maps", "genome assembly", "genomics", "phenomics", "phenotypics"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "U.S. Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Califonia at Davis, Department of Plant sciences, College of Agricultural and Environmental Sci\u00e9nces", "institutionAdditionalName": ["CA&ES"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://caes.ucdavis.edu/research/facilities", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Califonia at Davis, Department of Plant sciences, Neale Lab", "institutionAdditionalName": ["Neale Lab"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nealelab.ucdavis.edu/staff/david-neale/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dbneale@ucdavis.edu"]}, {"institutionName": "University of Connecticut, Institute for Systems Genomics, Computational Biology Core", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://bioinformatics.uconn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": ["http://bioinformatics.uconn.edu/contact-us/"]}] [{"policyName": "NSF BIODMP Guidance", "policyURL": "https://www.nsf.gov/bio/pubs/BIODMP_Guidance.pdf"}, {"policyName": "NSF Data Sharing Policy", "policyURL": "https://www.nsf.gov/bfa/dias/policy/dmp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/pddl/1-0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://treegenesdb.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://treegenesdb.org/"}] open [] ["other"] yes {"api": "https://treegenesdb.org/FTP/", "apiType": "FTP"} [] https://treegenesdb.org/ [] yes yes [] [] {} 2017-04-19 2021-09-09 +r3d100012353 Centre for Astronomical Data of the Institute of Astronomy of the Russian Academy of Sciences eng [{"additionalName": "CAD INASAN", "additionalNameLanguage": "eng"}] http://www.inasan.ru/en/divisions/dpss/cad/ [] ["olgad@inasan.ru"] CAD INASAN was established in 1980 as a branch regional center of the Centre de Donnes Stellaire (CDS). Since that time, the CAD has been working to distribute, create and store astronomical data according to the requirements of time, specifics of techniques and requests of the Russian astronomical community. At present, the staff of the CAD is maintaining mirrors of several major astronomical data resources, keeping a record of Russian astronomical data resources, and is working to create new astronomical data resources. Since 2002, we are the important part of the Russian Virtual Observatory project (member of the International Virtual Observatory Alliance - IVOA). The CAD archive is based on astronomical catalogues received from Strasbourg since 1980. Several well known astronomical archives and databases are also stored at INASAN (e.g. VizieR, ADS, INES, VALD). At present CAD coordinates work on the Russian Virtual Observatory (RVO) project eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "rus"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.inasan.ru/en/divisions/dpss/cad/#napravlenie [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Astrophysics Data System - ADS", "Binary and multiple stars DataBase - BDB", "Catalogue of Eclipsing Variables - CEV", "GCVS", "INASAN Zvenigorod observatory photoplates database", "Russian Virtual Observatory", "VALD", "VizieR"] [{"institutionName": "Institute of Astronomy of the Russian Academy of Sciences", "institutionAdditionalName": ["INASAN", "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0430\u0441\u0442\u0440\u043e\u043d\u043e\u043c\u0438\u0438 \u0410\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u043d\u0430\u0443\u043a CCCP"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.inasan.ru/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.inasan.ru/en/main/contacts/"]}] [{"policyName": "Certification of WDS Members", "policyURL": "http://www.icsu-wds.org/services/certification"}, {"policyName": "ICSU World Data System Constitution", "policyURL": "https://www.icsu-wds.org/organization/constitution_and_bylaws/constitution"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.icsu-wds.org/services/data-sharing-principles"}] restricted [] [] {} [] [] unknown unknown ["WDS"] [] {"syndication": "http://www.inasan.ru/en/feed/", "syndicationType": "RSS"} 2017-04-24 2017-05-18 +r3d100012354 DNASU plasmid repository eng [{"additionalName": "DNASU", "additionalNameLanguage": "eng"}] https://dnasu.org/DNASU/Home.do ["FAIRsharing_doi:10.25504/FAIRsharing.qqc7zw", "OMICS_08729", "RRID:SCR_012185", "RRID:SciEx_10298"] ["dnasuhelp@asu.edu", "https://dnasu.org/DNASU/Contactus.jsp"] DNASU is a central repository for plasmid clones and collections. Currently we store and distribute over 200,000 plasmids including 75,000 human and mouse plasmids, full genome collections, the protein expression plasmids from the Protein Structure Initiative as the PSI: Biology Material Repository (PSI : Biology-MR), and both small and large collections from individual researchers. We are also a founding member and distributor of the ORFeome Collaboration plasmid collection. eng ["disciplinary"] {"size": "over 200.000 plasmids; including 75.000 human and mouse plasmids", "updatedp": "2018-08-28"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://dnasu.org/DNASU/About.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "bacterial genome", "biology", "biomedicine", "computational biology", "genetics", "genomics", "human", "mouse", "nucleic acid", "plasmids", "proteins"] [{"institutionName": "Arizona State University, The Biodesign Institute", "institutionAdditionalName": ["ASU, The Biodesign Institute"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "commercial", "institutionURL": "https://biodesign.asu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://biodesign.asu.edu/contact"]}] [{"policyName": "Accessing the Policies and Procedures Manuals", "policyURL": "https://www.asu.edu/aad/manuals/"}, {"policyName": "DNASU Terms of Use and Purchase", "policyURL": "https://dnasu.org/DNASU/Purchase.jsp"}, {"policyName": "Standard Material Transfer Agreement", "policyURL": "https://dnasu.org/DNASU/documents/Standard%20Material%20Transfer%20Agreement%20DNASU.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.asu.edu/copyright/"}] restricted [{"dataUploadLicenseName": "Plasmid Deposit Agreement", "dataUploadLicenseURL": "https://dnasu.org/DNASU/documents/PSI%20Depositor%20Agreement%20ASU%202014.pdf"}] ["unknown"] {} [] https://dnasu.org/DNASU/FAQ.jsp [] yes no [] [] {} Partners: https://dnasu.org/DNASU/History.jsp ; Good description: http://psimr.asu.edu/documents/DNASU%20Overview.swf 2017-04-28 2021-09-09 +r3d100012355 PeanutBase eng [{"additionalName": "Genetic and genomic data to enable more rapid crop improvement in peanut", "additionalNameLanguage": "eng"}] https://peanutbase.org ["FAIRsharing_DOI:10.25504/FAIRsharing.fYFurb"] ["https://peanutbase.org/contact"] PeanutBase is a peanut community resource providing genetic, genomic, gene function, and germplasm data to support peanut breeding and molecular research. This includes molecular markers, genetic maps, QTL data, genome assemblies, germplasm records, and traits. Data is curated from literature and submitted directly by researchers. Funding for PeanutBase is provided by the Peanut Foundation with in-kind contributions from the USDA-ARS. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://peanutbase.org/help#about_peanutbase [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Arachis", "Arachis durenensis", "Arachis hypogea", "Arachis ipaensis", "bioinformatics", "disease resistance", "genetics", "genomics", "germplasm", "groundnut", "plant breeding", "ploidy"] [{"institutionName": "American Peanut Council", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.peanutsusa.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Iowa State University", "institutionAdditionalName": ["PGC funds"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.news.iastate.edu/news/2014/04/23/peanutgenome"]}, {"institutionName": "National Center for Genome Resources", "institutionAdditionalName": ["NCGR"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ncgr.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ncgr.org/index.php/contact"]}, {"institutionName": "The Peanut Foundation", "institutionAdditionalName": ["TPF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://peanutfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USDA-ARS Ames, IA", "institutionAdditionalName": ["United States Department of Agriculture, Agricultural Research Service, Ames Iowa"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/midwest-area/ames/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["steven.cannon@ars.usda.gov"]}] [{"policyName": "Statements and Disclaimers", "policyURL": "https://www.ars.usda.gov/statements-and-disclaimers/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public_domain_in_the_United_States"}] restricted [] ["unknown"] {} ["none"] https://peanutbase.org/ ["none"] yes yes [] [] {} 2017-05-01 2021-11-16 +r3d100012356 Electron Microscopy Public Image Archive eng [{"additionalName": "EMDB Public Image Archive", "additionalNameLanguage": "eng"}, {"additionalName": "EMPIAR", "additionalNameLanguage": "eng"}, {"additionalName": "Electron Microscopy Data Bank Public Image Archive", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: Electron Microscopy Pilot Image ARchive", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/empiar/ ["OMICS_11376", "biodbcore-001140"] ["empdep-help@ebi.ac.uk"] EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw, 2D electron microscopy images. Here, you can browse, upload, download and reprocess the thousands of raw, 2D images used to build a 3D structure. The purpose of EMPIAR is to provide an easy access to the state-of-the-art raw data to facilitate methods development and validation, which will lead to better 3D structures. It complements the Electron Microscopy Data Bank (EMDB), where 3D images are stored, and uses the fault-tolerant Aspera platform for data transfers eng ["disciplinary"] {"size": "268 entries", "updatedp": "2020-01-30"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ebi.ac.uk/pdbe/emdb/empiar/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["2D crystallography", "micrograph", "particle", "tilt-series"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bbsrc.ukri.org/about/contact/"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["GRID:225360.0", "ISNI:0000000097097726", "ROR:02catss52", "Wikidata:Q1341845"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mrc.ac.uk/", "institutionIdentifier": ["Crossref Funder ID:501100000265", "GRID:14105.31", "ISNI:0000000122478951", "ROR:03x94j517", "Wikidata:Q746879"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mrc.ac.uk/about/contact/"]}, {"institutionName": "Protein Data Bank in Europe", "institutionAdditionalName": ["PDBe"], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/pdbe/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}] [{"policyName": "EMBL-EBI\u2019s Terms of Use", "policyURL": "http://www.ebi.ac.uk/about/terms-of-use"}, {"policyName": "wwPDB Processing Procedures and Policies Document", "policyURL": "http://www.wwpdb.org/documentation/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.ebi.ac.uk/pdbe/emdb/empiar/about"}] restricted [{"dataUploadLicenseName": "EMPIAR deposition manual", "dataUploadLicenseURL": "https://www.ebi.ac.uk/pdbe/emdb/empiar/deposition/manual/"}] ["other"] yes {"api": "https://www.ebi.ac.uk/emdb/api/", "apiType": "REST"} ["DOI"] https://www.ebi.ac.uk/pdbe/emdb/empiar/about#accessionCodes ["ORCID"] yes yes [] [] {} EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw, 2D electron microscopy images related to 3DEM experiments. The EMPIAR Deposition System can be used to deposited data to EMPIAR. However prior to depositing data to EMPIAR, the associated 3DEM reconstructions must be deposited to EMDB. 2017-05-02 2021-09-08 +r3d100012358 National Marine Mammal Data Portal eng [{"additionalName": "NMMDB", "additionalNameLanguage": "eng"}] https://data.marinemammals.gov.au/ [] ["http://www.marinemammals.gov.au/about/contact"] The Australian Marine Mammal Centre has developed database applications to support marine mammal conservation and policy initiatives. eng ["disciplinary"] {"size": "2.083.663 records", "updatedp": "2017-05-09"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20304 Sensory and Behavioural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://data.marinemammals.gov.au/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Australasian Right Whale Photo-Identification Catalogue (ARWPIC)", "cetacean", "entanglement", "incident", "injury", "ship strike", "sighting", "stranding"] [{"institutionName": "Australian Antarctic Data Centre", "institutionAdditionalName": ["AADC", "Data management and spatial data services"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://data.aad.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://data.aad.gov.au/aadc/about/contact_aadc.cfm"]}, {"institutionName": "Australian Government, Department of the Environment and Energy, Australian Antarctic Division", "institutionAdditionalName": ["AAD"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.antarctica.gov.au/", "institutionIdentifier": ["ROR:05e89k615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.antarctica.gov.au/about-us/contact#src-hm-hd"]}, {"institutionName": "Australian Marine Mammal Centre", "institutionAdditionalName": ["AMMC"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.marinemammals.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.marinemammals.gov.au/about/contact"]}, {"institutionName": "International Whaling Commission", "institutionAdditionalName": ["IWC"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://iwc.int/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://iwc.int/contact"]}, {"institutionName": "Southern Ocean Research Partnership", "institutionAdditionalName": ["IWC-SORP"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://iwc.int/sorp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sorp@aad.gov.au"]}] [{"policyName": "Data Availability", "policyURL": "https://iwc.int/data-availability"}, {"policyName": "Terms and Conditions", "policyURL": "http://ammcf.org.au/terms-conditions/"}, {"policyName": "Terms of Use", "policyURL": "https://data.marinemammals.gov.au/arwpic/index.php?route=information/information&information_id=14"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.marinemammals.gov.au/copyright"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.marinemammals.gov.au/arwpic/index.php?route=information/information&information_id=14"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} 2017-05-03 2021-09-06 +r3d100012359 Human Intermediate Filament Database eng [{"additionalName": "HIFD", "additionalNameLanguage": "eng"}] http://www.interfil.org/index.php ["RRID:SCR_007744", "RRID:nif-0000-03034"] ["enquiries@imb.a-star.edu.sg"] The Intermediate Filament Database will function as a continuously updated review of the intermediate filament field and it is hoped that users will contribute to the development and expansion of the database on a regular basis. Contributions may include novel variants, new patients with previously discovered sequence and allelic variants. Suggestions on ways to improve the database are also welcome. eng ["disciplinary"] {"size": "", "updatedp": ""} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.interfil.org/aboutDB.php [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cytoskeleton", "disease phenotypes", "filament types", "genetics", "intermediate filament protein", "keratin genes"] [{"institutionName": "Bioinformatics Institute", "institutionAdditionalName": ["BII"], "institutionCountry": "SGP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bii.a-star.edu.sg/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["http://www.bii.a-star.edu.sg/contact_us.php"]}, {"institutionName": "Institute of Medical Biology", "institutionAdditionalName": ["IMB"], "institutionCountry": "SGP", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.a-star.edu.sg/imb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.a-star.edu.sg/imb/Organisation/IMB-Administration.aspx"]}, {"institutionName": "University of Dundee, Human Genetics Unit", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://humangenetics.org.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2001", "responsibilityEndDate": "", "institutionContact": ["https://humangenetics.org.uk/"]}] [{"policyName": "Term of Use", "policyURL": "http://www.interfil.org/termOfUse.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.interfil.org/termOfUse.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.interfil.org/termOfUse.php"}] restricted [] ["unknown"] {} ["none"] http://www.interfil.org/index.php ["none"] unknown unknown [] [] {} 2017-05-04 2021-08-24 +r3d100012360 eFish eng [{"additionalName": "Genomic Database Repository", "additionalNameLanguage": "eng"}] http://www.molecularfisherieslaboratory.com.au/efish/ [] ["data@library.uq.edu.au"] The project aims to examine and index the genomic diversity through the generation of complete mitochondrial and nuclear genome sequences of sharks and rays of the Pacific Rim. There is a huge diversity of elasmobranch fishes in this region, but many species are under threat because of poor management and conservation measures in many countries. It is absolutely critical that species’ identities are correct for conservation and fisheries management purposes. This project will provide this clarity of identity for both charismatic and commercially important species through the inclusion of ‘genetypes’ (ie., BioVouchers) and the application of genetic tools that utilize whole mitochondrial and nuclear genome sequences. eng ["disciplinary"] {"size": "more than 120 million sequences", "updatedp": "2021-10-08"} 2015-02 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.molecularfisherieslaboratory.com.au/efish/#templatemo_about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Chlamydoselachus anguineus", "Pacific Rim", "elasmobranch fishes", "genetics", "genome sequencing", "genomics", "zoology"] [{"institutionName": "Universidad Austral de Chile", "institutionAdditionalName": ["UACh"], "institutionCountry": "CHL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uach.cl/", "institutionIdentifier": ["ROR:029ycp228"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uach.cl/inicio-uach/contacto"]}, {"institutionName": "University of Queensland, Molecular Fisheries Laboratory", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.molecularfisherieslaboratory.com.au/?s=efish&submit=", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["c.bustamantediaz@uq.edu.au", "http://www.molecularfisherieslaboratory.com.au/contact-us/"]}, {"institutionName": "University of Queensland, Queensland Brain Institute", "institutionAdditionalName": ["QBI"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://qbi.uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["qbi@uq.edu.au"]}, {"institutionName": "University of Quensland", "institutionAdditionalName": ["UQ"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.uq.edu.au/", "institutionIdentifier": ["ROR:https://ror.org/03ad39j10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["c.bustamantediaz@uq.edu.au"]}] [{"policyName": "grant permission free-of-charge", "policyURL": "http://www.molecularfisherieslaboratory.com.au/efish-the-first-genomic-database-repository-for-marine-fishes/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.molecularfisherieslaboratory.com.au/efish/#templatemo_about"}] restricted [] ["unknown"] {} ["DOI"] http://www.molecularfisherieslaboratory.com.au/efish/#templatemo_about [] yes unknown [] [] {} 2017-05-05 2021-10-08 +r3d100012361 IANUS Datenportal deu [{"additionalName": "Digitale Forschungsdaten aus Arch\u00e4ologie & Altertumswissenschaften", "additionalNameLanguage": "deu"}] http://datenportal.ianus-fdz.de/ [] ["ianus@dainst.de"] IANUS is a DFG-funded project to set up a national research data center for archeology and ancient science in Germany. eng ["disciplinary"] {"size": "5 data collections", "updatedp": "2017-05-08"} 2014 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://datenportal.ianus-fdz.de/pages/information.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["anthropology", "archaeobotany", "archaeology", "archaeozoology", "contruction research", "history", "philology", "prehistory", "renovation", "restoration"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact_imprint/visitors_information/index.html"]}, {"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": ["DAI", "German Archaeological Institute"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.dainst.org/dai/meldungen", "institutionIdentifier": ["ROR:023md1f53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Ortwin.Dally@dainst.de", "praesidentin@dainst.de"]}, {"institutionName": "IANUS Forschungsdatenzentrum", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ianus-fdz.de", "institutionIdentifier": ["hdl.handle.net/11858/00-1780-0000-0022-DBE6-A"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen", "policyURL": "http://datenportal.ianus-fdz.de/resources/documents/Nutzungsbedingungen.pdf"}, {"policyName": "Safeguarding Good Scientific Practice", "policyURL": "http://www.dfg.de/download/pdf/dfg_im_profil/reden_stellungnahmen/download/empfehlung_wiss_praxis_1310.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/choose/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}] restricted [{"dataUploadLicenseName": "Creative Commons (CC-BY, CC-SA, CC-NC etc.)", "dataUploadLicenseURL": "https://creativecommons.org/choose/"}] ["other"] {} ["DOI"] ["none"] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Akteure: RZ-DAI-IANUS-flyer_Final_web_2013-10-17.pdf 2017-05-08 2022-01-22 +r3d100012362 VIPERdb eng [{"additionalName": "Virus Particle Explorer database", "additionalNameLanguage": "eng"}] http://viperdb.scripps.edu/index.php ["RRID:SCR_007970", "RRID:nif-0000-03630", "biodbcore-001425"] ["http://viperdb.scripps.edu/contact.php", "reddyv@scripps.edu"] VIPERdb is a database for icosahedral virus capsid structures . The emphasis of the resource is on providing data from structural and computational analyses on these systems, as well as high quality renderings for visual exploration. In addition, all virus capsids are placed in a single icosahedral orientation convention, facilitating comparison between different structures. The web site includes powerful search utilities , links to other relevant databases, background information on virus capsid structure, and useful database interface tools. eng ["disciplinary"] {"size": "574 viruses", "updatedp": "2017-05-10"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://viperdb.scripps.edu/main.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "Phi-Psi diagrams", "computational biology", "icosahedral virus capsid structures", "macromolecular structure", "structural virology", "virus structure analysis"] [{"institutionName": "NIH Research Resource Center for the Development of Multiscale Modelling Tools for Structural Biology", "institutionAdditionalName": ["MMTSB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mmtsb.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Scripps Research Institute", "institutionAdditionalName": ["TSRI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.scripps.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and Copyright", "policyURL": "http://viperdb.scripps.edu/disclaimer.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://viperdb.scripps.edu/disclaimer.php"}] restricted [] ["MySQL", "other"] {"api": "http://viperdb.scripps.edu/API2/", "apiType": "other"} ["none"] http://viperdb.scripps.edu/acknowledge.php ["none"] yes unknown [] [] {} The site is being developed as part of the training, service and dissemination component of the NIH Research Resource: Multiscale Modeling Tools for Structural Biology (MMTSB). 2017-05-09 2020-04-24 +r3d100012363 GrainGenes eng [{"additionalName": "A Database for Triticeae and Avena", "additionalNameLanguage": "eng"}] https://wheat.pw.usda.gov/GG3/ ["RRID:SCR_007696", "RRID:nif-0000-02925"] ["grains@graingenes.org"] GrainGenes is a digital platform that serves small grains research communities as their central data repository and as a facilitator for community activities. eng ["disciplinary"] {"size": "2.778.253 records in 29 classes", "updatedp": "2017-05-09"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://wheat.pw.usda.gov/GG3/node/238 [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["agriculture", "agriculture", "avena", "barley", "farming", "gene expression", "gene sequences", "oats", "plant genome", "rye", "wheat"] [{"institutionName": "GrainGenes team", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://wheat.pw.usda.gov/GG3/node/238", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wheat.pw.usda.gov/GG3/feedback/"]}, {"institutionName": "U.S. Department of Agriculture, Agricultural Research Service", "institutionAdditionalName": ["USDA, ARS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ars.usda.gov/contact-us/?modeCode=20-30-05-15"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ars.usda.gov/research/project/?accnNo=425427&fy=2015"}] restricted [] ["MySQL"] {} ["none"] https://wheat.pw.usda.gov/GG3/citation [] unknown yes [] [] {"syndication": "https://wheat.pw.usda.gov/GG3/rss.xml", "syndicationType": "RSS"} 2017-05-09 2017-05-13 +r3d100012366 Comparative RNA Web eng [{"additionalName": "CRW", "additionalNameLanguage": "eng"}] http://www.rna.icmb.utexas.edu/ [] ["http://www.rna.icmb.utexas.edu/AI/General/contact.php"] The Comparative RNA Web (CRW) Site disseminates information about RNA structure and evolution that has been determined using comparative sequence analysis. We present both raw (sequences, structure models, metadata) and processed (analyses, evolution, accuracy) data, organized into four main sections. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.tacc.utexas.edu/research-development/tacc-projects/comparative-rna-analysis [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["RNA evolution", "RNA function", "RNA sequences", "RNA structure", "biological cell", "molecular biology", "protein biosynthesis", "transcription", "translation"] [{"institutionName": "Ionis Pharmaceuticals", "institutionAdditionalName": ["formerly: Isis Pharmaceuticals"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ionispharma.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ionispharma.com/about/contact/"]}, {"institutionName": "Microsoft Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.microsoft.com/en-us/research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.microsoft.com/en-us/research/search/?q=Comparative+RNA+Web&content-type=groups"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.research.gov/research-portal/appmanager/base/desktop?_nfpb=true&_pageLabel=research_contact_us"]}, {"institutionName": "The Welch Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.welch1.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.welch1.org/about/contact"]}, {"institutionName": "University of Texas at Austin, Center for Computational Biology and Bioinformatics", "institutionAdditionalName": ["CCBB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ccbb.biosci.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ccbb.biosci.utexas.edu/"]}, {"institutionName": "University of Texas at Austin, Department of Integrative Biology, College of Natural Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://integrativebio.utexas.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://integrativebio.utexas.edu/component/cobalt/category-items/1-directory/7-integrative-biology?Itemid=1224"]}, {"institutionName": "University of Texas at Austin, Gutell Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mbp.ices.utexas.edu/index.php/faculty-gutell/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["robin.gutell@mail.utexas.edu"]}, {"institutionName": "University of Texas at Austin, Institute for Computational and Engineering Sciences", "institutionAdditionalName": ["ICES"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ices.utexas.edu/about/welcome/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for Data Usage", "policyURL": "http://www.rna.icmb.utexas.edu/AI/General/aup"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.rna.icmb.utexas.edu/AI/General/aup"}] closed [] ["MySQL"] yes {} ["none"] http://www.rna.icmb.utexas.edu/AI/General/aup ["none"] unknown unknown [] [] {} 2017-05-10 2017-05-26 +r3d100012368 Life Science Database Archive eng [{"additionalName": "LSDB Archive", "additionalNameLanguage": "eng"}] https://dbarchive.biosciencedbc.jp/index-e.html ["FAIRsharing_doi:10.25504/FAIRsharing.dq46p7"] ["dbarchive@biosciencedbc.jp"] The Life Science Database Archive maintains and stores the datasets generated by life scientists in Japan in a long-term and stable state as national public goods. The Archive makes it easier for many people to search datasets by metadata (description of datasets) in a unified format, and to access and download the datasets with clear terms of use. In addition, the Archive provides datasets in forms friendly to different types of users in public and private institutions, and thereby supports further contribution of each research to life science. eng ["disciplinary"] {"size": "62 databaes", "updatedp": "2017-05-11"} 2009 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://dbarchive.biosciencedbc.jp/contents-en/about/about.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA sequenzing", "drugs", "experimental data", "gene", "molecular data", "pathways", "pharmacology"] [{"institutionName": "Japan Science and Technology Agency, National Bioscience Database Center", "institutionAdditionalName": ["JST, NBDC"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biosciencedbc.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "2011-04-01", "responsibilityEndDate": "", "institutionContact": ["support@biosciencedbc.jp"]}] [{"policyName": "Site policies", "policyURL": "https://biosciencedbc.jp/en/sitepolicies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/deed.en"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://biosciencedbc.jp/en/sitepolicies"}] restricted [] [] yes {} ["DOI"] https://dbarchive.biosciencedbc.jp/contents-en/doi/list.html ["other"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-05-11 2018-09-13 +r3d100012369 Code Ocean eng [{"additionalName": "CO", "additionalNameLanguage": "eng"}] https://codeocean.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.thskvr", "RRID:SCR_015532"] ["contact@codeocean.com", "support@codeocean.com"] Code Ocean is a cloud-based computational reproducibility platform that provides researchers an easy way to share, discover and run code published in academic journals and conferences. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://codeocean.com/about [{"name": "Configuration data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["algorithm", "bioinformatics", "earth sciences", "mathematics", "multidisciplinary"] [{"institutionName": "Code Ocean", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://codeocean.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://codeocean.com/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://codeocean.com/legal/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://codeocean.com/legal/terms-of-use.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://codeocean.com/legal/terms-of-use.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] [] yes {} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Code Ocean is covered by Clarivate Data Citation Index. Code Ocean provides you with limited capacity to use the Site for free, which is 1 hour per month for users who sign up with their personal accounts, and 10 hours per month for users with academic email accounts. 2017-05-11 2020-02-05 +r3d100012372 RDP eng [{"additionalName": "Ribosomal Database Project", "additionalNameLanguage": "eng"}] http://rdp.cme.msu.edu/index.jsp ["RRID:OMICS_01513", "RRID:SCR_006633", "RRID:nif-0000-03404"] ["http://rdp.cme.msu.edu/misc/contacts.jsp", "rdpstaff@msu.edu"] RDP provides quality-controlled, aligned and annotated Bacterial and Archaeal 16S rRNA sequences, and Fungal 28S rRNA sequences, and a suite of analysis tools to the scientific community. eng ["disciplinary"] {"size": "3.356.809 aligned and annotated 16S rRNA sequences; 125.525 Fungal 28S rRNA sequences", "updatedp": "2019-05-13"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://rdp.cme.msu.edu/index.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Archaea sequences", "Bacteria sequences", "deoxyribonucleic acid", "microbiome", "phylogenetic trees", "protein biosynthesis", "rRNA sequences"] [{"institutionName": "Michigan State University, Center for Microbial Ecology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cme.msu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://rdp.cme.msu.edu/misc/contacts.jsp"]}, {"institutionName": "NIH Human Microbiome Project", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hmpdacc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hmpdacc.org/outreach/feedback.php"]}, {"institutionName": "NIH, National Institute of Environmental Health Sciences, Superfund Research Program", "institutionAdditionalName": ["NIEHS, SRP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niehs.nih.gov/research/supported/centers/srp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niehs.nih.gov/about/od/ocpl/contact/"]}, {"institutionName": "U.S. Department of Energy, Biological and Environmental Research Program", "institutionAdditionalName": ["U.S. DOE, BER"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://science.energy.gov/ber/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "http://rdp.cme.msu.edu/misc/disclaimer.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] restricted [] ["unknown"] yes {"api": "http://rdp.cme.msu.edu/help/webServices.jsp", "apiType": "SOAP"} ["none"] http://rdp.cme.msu.edu/misc/citation.jsp [] unknown yes [] [] {} 2017-05-23 2021-09-09 +r3d100012374 Data and Service Center for the Humanities eng [{"additionalName": "DaSCH", "additionalNameLanguage": "eng"}] https://meta.dasch.swiss/ [] ["https://dasch.swiss/contact/", "info@dasch.swiss"] Since 2021 the Data and Service Center for the Humanities DaSCH is a Swiss national data infrastructure that is primarily funded by the Swiss National Science Foundation (SNSF). Its main task is to operate a platform for humanities research data that ensures long-term access to this data, the DaSCH Service Platform (DSP). Furthermore, the linking of data with other databases is promoted (linked open data), in order to create added value for further research and the interested public. In addition to the repository, DaSCH also offers other services (support and training) and tools for researchers to assist them with research data life cycle management. The services of DaSCH are best suited for research projects with mainly qualitative data. Furthermore, DARIAH’s activities in Switzerland are coordinated by DaSCH and DaSCH is acting as DARIAH-CH Coordination Office. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://dasch.swiss [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Data Management Plan", "FAIR", "Linked Open Data", "Semantic Web", "film", "humanities", "manuscripts", "objects", "photography", "qualitative data"] [{"institutionName": "Data and Service Center for the Humanities", "institutionAdditionalName": ["DaSCH"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dasch.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swiss National Science Foundation", "institutionAdditionalName": ["FNS", "Fonds national suisse", "SNF", "SNSF", "Schweizerischer Nationalfonds"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.snf.ch/de", "institutionIdentifier": ["ROR:00yjd3n13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["desk@snf.ch"]}, {"institutionName": "University of Basel", "institutionAdditionalName": ["Universit\u00e4t Basel"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.unibas.ch/en.html", "institutionIdentifier": ["ROR:02s6k3f65"], "responsibilityStartDate": "2017-01-01", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Services", "policyURL": "https://dasch.swiss/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"}] restricted [] ["other"] yes {"api": "https://docs.dasch.swiss/DSP-API/03-apis/", "apiType": "REST"} ["ARK"] [] yes yes [] [] {} 2017-05-29 2021-09-27 +r3d100012375 CosmoSim eng [{"additionalName": "CosmoSim database", "additionalNameLanguage": "eng"}] https://www.cosmosim.org/ [] ["https://www.cosmosim.org/contact"] The CosmoSim database provides results from cosmological simulations performed within different projects: the MultiDark and Bolshoi project, and the CLUES project. The CosmoSim webpage provides access to several cosmological simulations, with a separate database for each simulation. Simulations overview: https://www.cosmosim.org/cms/simulations/simulations-overview/ . CosmoSim is a contribution to the German Astrophysical Virtual Observatory. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BigMD", "Bolshoi", "CLUES", "MultiDark", "MultiDark-Planck - MDPL", "cosmology", "dark matter", "galaxy", "halo", "simulation projects", "warm dark matter"] [{"institutionName": "German Astrophysical Virtual Observatory", "institutionAdditionalName": ["GAVO"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.g-vo.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.g-vo.org/pmwiki/About/Impressum"]}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["AIP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.aip.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.aip.de/en/institute/contact"]}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam, Supercomputing and E-Science", "institutionAdditionalName": ["AIP, E-Science Group"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.aip.de/en/research/research-area-drt/research-groups-and-projects-1/e-science?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.aip.de/en/institute/contact"]}] [{"policyName": "Data access", "policyURL": "https://www.cosmosim.org/cms/documentation/data-access/"}, {"policyName": "Imprint & Data Protection Statement", "policyURL": "https://www.cosmosim.org/cms/imprint/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.aip.de/en/impressum"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.aip.de/de/institut/facilities/it-service/richtlinien/usage-of-the-data-access-service"}] restricted [] ["MySQL"] {"api": "https://www.cosmosim.org/cms/documentation/data-access/access-via-uws/", "apiType": "other"} ["other"] https://www.cosmosim.org/cms/documentation/introduction/links-and-references/ [] yes yes [] [] {} The following links to external pages may be useful for further information: MultiDark Project Homepage http://projects.ift.uam-csic.es/multidark/, Bolshoi Simulation http://hipacc.ucsc.edu/Bolshoi/, GAVO web site http://www.g-vo.org/, MUSIC Simulation Database http://music.ft.uam.es/, Millennium Simulation Database 2017-05-30 2017-06-02 +r3d100012376 Unisa Institutional Repository eng [{"additionalName": "UnisaIR", "additionalNameLanguage": "eng"}, {"additionalName": "University of South Africa Institutional Repository", "additionalNameLanguage": "eng"}] http://uir.unisa.ac.za [] ["http://uir.unisa.ac.za/feedback", "uir@unisa.ac.za"] An open digital archive of scholarly, intellectual and research outputs of the University of South Africa. The UnisaIR contains and preserves theses and dissertations, research articles, conference papers, rare and special materials and many other digital assets. With special collections from the Documentation Center for African Studies including manuscripts, photos, political posters and other archival materials about the history of South Africa. eng ["institutional"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Africana", "Doke family", "Gandhi family", "Nelson Mandela", "Zachariah Keodirelang Matthews", "history of South Africa", "multidisciplinary"] [{"institutionName": "Unisa Library", "institutionAdditionalName": ["University of South Africa Library"], "institutionCountry": "ZAF", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.unisa.ac.za/sites/corporate/default/Library", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of South Africa", "institutionAdditionalName": ["UNISA"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unisa.ac.za/sites/corporate/default", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "http://www.unisa.ac.za/sites/corporate/default/About/Legislation/Terms-and-Conditions"}, {"policyName": "Unisa Institutional Repository Guidelines: archiving policies, copyright and open access", "policyURL": "http://uir.unisa.ac.za/handle/10500/21705"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://uir.unisa.ac.za/handle/10500/21705"}] restricted [] ["DSpace"] {} ["hdl"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://uir.unisa.ac.za/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-05-30 2017-06-02 +r3d100012377 B2FIND eng [] http://b2find.eudat.eu [] ["https://www.eudat.eu/support-request", "info@eudat.eu"] B2FIND is a discovery service based on metadata steadily harvested from research data collections from EUDAT data centres and other repositories. The service offers faceted browsing and it allows in particular to discover data that is stored through the B2SAFE and B2SHARE services. The B2FIND service includes metadata that is harvested from many different community repositories. eng ["other"] {"size": "484.805 datasets", "updatedp": "2017-06-06"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://eudat.eu/services/b2find [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "B2FIND Communities", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://b2find.eudat.eu/group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "EUDAT", "institutionAdditionalName": ["European Data Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eudat.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eudat.eu/contact"]}, {"institutionName": "European Union, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ec.europa.eu/research/participants/portal/desktop/en/support/research_enquiry_service.html"]}] [{"policyName": "B2FIND Usage", "policyURL": "https://eudat.eu/services/userdoc/b2find-usage"}, {"policyName": "Legal notice", "policyURL": "https://eudat.eu/legal-notice"}, {"policyName": "Policy", "policyURL": "https://eudat.eu/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.eudat.eu/services/userdoc/license-selector"}] restricted [] ["CKAN"] {"api": "https://eudat.eu/services/userdoc/b2find-usage#B2FIND_API", "apiType": "REST"} ["DOI", "hdl"] [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-06-01 2021-10-06 +r3d100012378 Analysis and Policy Observatory eng [{"additionalName": "APO", "additionalNameLanguage": "eng"}] http://apo.org.au [] ["admin@apo.org.au"] The Analysis & Policy Observatory is an award-winning research collection and information service curating key resources to support evidence-informed policy and practice. Open access public policy and practice repository for grey literature and data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://apo.org.au/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["city planning", "economics", "greenhous gases", "health", "immigrants", "justice", "low carbon living", "politics", "refugees", "sustainability", "tourism", "urban development"] [{"institutionName": "Analysis & Policy Observatory", "institutionAdditionalName": ["APO"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://apo.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swinburne University of Technology, Institute for Social Research", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.swinburne.edu.au/research/urban-transitions/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Australian Policy Online", "policyURL": "http://www.swinburne.edu.au/research/urban-transitions/our-research/apo/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.swinburne.edu.au/copyright-disclaimer/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2017-06-06 2021-09-22 +r3d100012379 Senckenberg (meta) data portal eng [{"additionalName": "Senckenberg (meta) data catalog", "additionalNameLanguage": "eng"}] http://dataportal.senckenberg.de/ [] ["thomas.hickler@senckenberg.de"] This is the (meta) data catalog of Senckenberg Nature Research Society. eng ["institutional"] {"size": "200 datasets", "updatedp": "2020-12-22"} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://dataportal.senckenberg.de/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Metacat", "Morpho", "Nagoya Protocol", "Undesert", "biodiversity", "biomass", "taxconomy"] [{"institutionName": "Biodiversit\u00e4t und Klima - Forschungszentrum", "institutionAdditionalName": ["BIK-F", "SBIK-F", "Senckenberg Biodiversity and Climate Research Centre", "Senckenberg Biodiversit\u00e4t und Klima Forschungszentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.senckenberg.de/en/institutes/sbik-f/", "institutionIdentifier": ["ROR:01amp2a31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Good research practice", "policyURL": "https://www.senckenberg.de/en/science/research/good-research-practice/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.senckenberg.de/en/imprint/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-by/"}] restricted [] ["CKAN"] {} [] [] unknown unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} The Data & Modelling Center has become a member of DataCite. 2017-06-06 2020-12-22 +r3d100012380 Integrated Interactions Database eng [{"additionalName": "IID", "additionalNameLanguage": "eng"}] http://iid.ophid.utoronto.ca/ ["OMICS_11127"] ["http://iid.ophid.utoronto.ca/#help_tab", "iid@ai.utoronto.ca"] IID (Integrated Interaction Database) is an on-line database of known and predicted eukaryotic protein-protein interactions, in 30 tissues of model organisms and humans. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://iid.ophid.utoronto.ca/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["fly", "human", "mouse", "organisms", "protein", "rat", "worm", "yeast"] [{"institutionName": "University of Toronto", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.utoronto.ca/", "institutionIdentifier": ["ROR:03dbr7087", "RRID:SCR_011733", "RRID:nlx_15536"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of download and use", "policyURL": "http://dcv.uhnres.utoronto.ca/iid/Download/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] closed [] [] {} ["none"] http://iid.ophid.utoronto.ca/ [] unknown unknown [] [] {} 2017-06-08 2021-10-06 +r3d100012381 Host - Pathogen Interaction Database eng [{"additionalName": "HPIDB", "additionalNameLanguage": "eng"}] https://hpidb.igbb.msstate.edu/ [] ["hpidb@igbb.msstate.edu"] HPIDB is a public resource, which integrates experimental PPIs from various databases into a single database. The Host-Pathogen Interaction Database (HPIDB) is a genomics resource devoted to understanding molecular interactions between key organisms and the pathogens to which they are susceptible. eng ["disciplinary"] {"size": "69.787 unique protein interactions", "updatedp": "2021-02-26"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4930832/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["infectious desease", "pathogen", "protein interactions"] [{"institutionName": "Mississippi State University, College of Veterinary Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vetmed.msstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Agriculture, National Institute of Food and Agriculture", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/", "institutionIdentifier": ["ROR:05qx3fv49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}] [{"policyName": "Database Disclaimer", "policyURL": "https://hpidb.igbb.msstate.edu/about.html#citing"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hpidb.igbb.msstate.edu/about.html"}] restricted [] ["other"] yes {} ["none"] https://hpidb.igbb.msstate.edu/about.html#citing [] yes yes [] [] {} 2017-06-08 2021-02-26 +r3d100012383 OceanSITES eng [{"additionalName": "Taking the pulse of the global ocean", "additionalNameLanguage": "eng"}] http://www.oceansites.org/index.html [] ["http://www.oceansites.org/contact.html", "info@oceansites.org", "projectoffice@oceansites.org"] OceanSITES is a worldwide system of long-term, deepwater reference stations measuring dozens of variables and monitoring the full depth of the ocean from air-sea interactions down to 5,000 meters. Since 1999, the international OceanSITES science team has shared both data and costs in order to capitalize on the enormous potential of these moorings. The growing network now consists of about 30 surface and 30 subsurface arrays. Satellite telemetry enables near real-time access to OceanSITES data by scientists and the public. OceanSITES moorings are an integral part of the Global Ocean Observing System. They complement satellite imagery and ARGO float data by adding the dimensions of time and depth. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.oceansites.org/documents/OceanSITES_Mission_statement_V1.0.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["atmospheric variables", "biogeochemical variables", "carbon", "climate", "ecosystem", "forecasting", "ocean reference station", "ocean state validation", "physical variables", "sea surface", "seafloor", "time series"] [{"institutionName": "Global Ocean Observing System", "institutionAdditionalName": ["GOOS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.goosocean.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.goosocean.org/index.php?option=com_content&view=article&id=36&Itemid=134"]}, {"institutionName": "Scripps Institution of Oceanography", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["usend@ucsd.edu"]}, {"institutionName": "WMO-IOC Joint Technical Commission for Oceanography and Marine Meteorology in-situ Observing Programmes Support Centre.", "institutionAdditionalName": ["JCOMMOPS"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jcommops.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["projectoffice@oceansites.org"]}, {"institutionName": "Woods Hole Oceanographic Institution", "institutionAdditionalName": ["WHOI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.whoi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rweller@whoi.edu"]}] [{"policyName": "Policies", "policyURL": "http://www.whoi.edu/virtual/oceansites/documents/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.clivar.org/resources/data/data-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.whoi.edu/virtual/oceansites/documents/index.html"}] restricted [{"dataUploadLicenseName": "OceanSITES Data Providers\u2019 Guide", "dataUploadLicenseURL": "http://www.oceansites.org/docs/OceanSITES_DataProvidersGuide%20_2015Feb22_V1.1.pdf"}] ["unknown"] yes {"api": "ftp://ftp.ifremer.fr/ifremer/oceansites/", "apiType": "FTP"} ["none"] [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} For more information or to coordinate your research with the OceanSITES program, please contact the NOAA Cooperative Institute for Climate and Oceans Research at the Woods Hole Oceanographic Institution: cicor@whoi.edu. 2017-06-14 2017-06-18 +r3d100012384 CaltechDATA eng [{"additionalName": "California Institute of Technology Research Data Repository", "additionalNameLanguage": "eng"}] https://data.caltech.edu ["FAIRsharing_doi:10.25504/FAIRsharing.S09se7"] ["data@caltech.edu"] CaltechDATA is an institutional data repository for Caltech. Caltech library runs the repository to preserve the accomplishments of Caltech researchers and share their results with the world. Caltech-associated researchers can upload data, link data with their publications, and assign a permanent DOI so that others can reference the data set. The repository also preserves software and has automatic Github integration. All files present in the repository are open access or embargoed, and all metadata is always available to the public. eng ["institutional"] {"size": "1.014 records", "updatedp": "2019-05-06"} 2017-06-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.caltech.edu/resources/caltechdata [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Caltech", "institutionAdditionalName": ["California Institute of Technology"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Caltech Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Caltech Open Access Policy", "policyURL": "http://libguides.caltech.edu/c.php?g=512634&p=3503114"}, {"policyName": "Terms", "policyURL": "https://data.caltech.edu/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0.html"}, {"dataLicenseName": "BSD", "dataLicenseURL": "http://data.caltech.edu/license"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.en.html"}] restricted [] ["other"] yes {"api": "https://data.caltech.edu/oai2d", "apiType": "OAI-PMH"} ["DOI"] ["ISNI", "ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} CaltechDATA is covered by Clarivate Data Citation Index 2017-06-15 2021-08-10 +r3d100012385 Texas Data Repository eng [{"additionalName": "TDR", "additionalNameLanguage": "eng"}] https://data.tdl.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.wqsxtg"] ["https://data.tdl.org/help/", "support@tdl.org"] The Texas Data Repository is a platform for publishing and archiving datasets (and other data products) created by faculty, staff, and students at Texas higher education institutions. The repository is built in an open-source application called Dataverse, developed and used by Harvard University. The repository is hosted by the Texas Digital Library, a consortium of academic libraries in Texas with a proven history of providing shared technology services that support secure, reliable access to digital collections of research and scholarship. For a list of TDL participating institutions, please visit: https://www.tdl.org/members/. eng ["institutional"] {"size": "314 Dataverses; 660 Datasets; 19.450 Files", "updatedp": "2020-03-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/289144946/About [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Texas Digital Library", "institutionAdditionalName": ["TDL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tdl.org/", "institutionIdentifier": ["ROR:018pahb94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tdl.org/contact/"]}] [{"policyName": "General TDL Rules", "policyURL": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/289079299/Terms+of+Use"}, {"policyName": "Policies", "policyURL": "https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/287965267/Policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://data.tdl.org/user-guide/licensing-and-permissions/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://texasdigitallibrary.atlassian.net/wiki/spaces/TDRUD/pages/292094101/Community+Norms [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Texas Data Repository is covered by Clarivate Data Citation Index 2017-06-20 2021-08-11 +r3d100012386 SIOR eng [{"additionalName": "Social Impact of Science", "additionalNameLanguage": "eng"}] https://www.ub.edu/sior/ [] ["https://www.ub.edu/sior/contactus.php"] SIOR (Social Impact Open Repository) is an open access repository to display, share and store the social impact of research results. Achieving impact is a growing demand from society to science and to scientists, but this information had not yet been systematically gathered and registered. SIOR is the first open access worldwide registry on social impact, a non-profit initiative to enhance scientific research with social impact. eng ["disciplinary"] {"size": "22 projects", "updatedp": "2017-06-23"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://sior.ub.edu/jspui/sior.jsp [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["social impact of science"] [{"institutionName": "University of Barcelona", "institutionAdditionalName": ["Universitat de Barcelona"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ub.edu/web/ub/ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "http://sior.ub.edu/jspui/policies.jsp"}, {"policyName": "criteria", "policyURL": "http://www.ub.edu/sior/criteria.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://sior.ub.edu/jspui/policies.jsp"}] restricted [{"dataUploadLicenseName": "Upload Project", "dataUploadLicenseURL": "http://www.ub.edu/sior/upload.php"}] ["DSpace"] {} [] ["ORCID"] yes yes [] [] {"syndication": "http://sior.ub.edu/jspui/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-06-21 2021-10-06 +r3d100012388 GlyTouCan eng [{"additionalName": "International Glycan Repository", "additionalNameLanguage": "eng"}] https://glytoucan.org/ ["FAIRsharing_DOI:10.25504/FAIRsharing.5Pze7l"] ["http://code.glytoucan.org/contact/", "support@glytoucan.org"] GlyTouCan is the international glycan structure repository. This repository is a freely available, uncurated registry for glycan structures that assigns globally unique accession numbers to any glycan independent of the level of information provided by the experimental method used to identify the structure(s). Any glycan structure, ranging in resolution from monosaccharide composition to fully defined structures can be registered as long as there are no inconsistencies in the structure. eng ["disciplinary"] {"size": "111.476 Glycans; 61 Motifs; 800 Monosaccharides", "updatedp": "2019-01-30"} 2015 ["deu", "eng", "fra", "jpn", "rus", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://code.glytoucan.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aglycons", "carbohydrate", "glycan", "glycobiology", "glycoconjugates", "glycomics", "monosaccharide"] [{"institutionName": "GlySpace Project", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.glycome-db.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Education, Culture, Sports, Science and Technology of Japan, Integrated Database Project", "institutionAdditionalName": ["LSDB", "MEXT Integrated Database Project"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://lifesciencedb.jp/?lng=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Soka University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.soka.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Noguchi Institute", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.noguchi.or.jp/index.php?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Site Policy", "policyURL": "http://code.glytoucan.org/sitePolicy/"}, {"policyName": "Terms and Conditions", "policyURL": "http://code.glytoucan.org/termsAndConditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://code.glytoucan.org/sitePolicy/"}] restricted [] [] {"api": "https://api.glytoucan.org/swagger-ui.html", "apiType": "REST"} ["none"] http://code.glytoucan.org/FAQ/ [] yes unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} GlyTouCan Partner Program: http://code.glytoucan.org/partner/ Current members of the GlyTouCan Partner Program: http://code.glytoucan.org/partner/list/ GlyTouCan on github: https://github.com/glytoucan 2017-06-28 2021-11-16 +r3d100012389 Ancient Steelyards eng [{"additionalName": "BSYP", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BSYP ["doi:10.17171/1-6"] ["topoi_d_5_5@topoi.org"] The repository contains all digital data such as images, 3d models and analysis which were acquired in the Ancient Steelyards Project. eng ["disciplinary"] {"size": "203 images; 53 3D models;", "updatedp": "2017-06-29"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/BSYP/overview#abstract [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["balances", "innovation", "knowledge transfer"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jochen.buettner@topoi.org", "topoi_d_5_5@topoi.org"]}, {"institutionName": "Max-Planck-Institut f\u00fcr Wissenschaftsgeschichte", "institutionAdditionalName": ["Max Planck Institute for the History of Science"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.mpiwg-berlin.mpg.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpiwg-berlin.mpg.de/de/content/Kontakt"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact.com"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/BSYP/overview#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://repository.edition-topoi.org/collection/BSYP/metadata"}] restricted [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Due to copyright reasons, some images cannot yet be displayed online. For restricted access to the database for soley scientific and research purposes, please contact topoi_d_5_5(at)topoi.org. 2017-06-29 2018-07-20 +r3d100012390 Architectural Fragments from Magnesia on the Maeander eng [{"additionalName": "MAGN", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/MAGN ["doi:10.17171/2-3"] ["edition@topoi.org"] Methods of digital architectural documentation/polychromy (pilot project). Three architectural fragments were recorded with photography, architectural drawings by hand, different techniques of 3D scanning, and Reflectance Transformation Imaging (RTI). eng ["disciplinary"] {"size": "3 research objects", "updatedp": "2017-07-06"} 2015-10 2015-12 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://edition-topoi.org/pdf/20160418_Edition_Topoi_Mission-Statement2016.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Magnesia on the Maeander", "ancient architecture polychromy", "architectural documentation", "architectural fragments", "building research"] [{"institutionName": "Berliner Antike-Kolleg", "institutionAdditionalName": ["BAK"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.berliner-antike-kolleg.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.berliner-antike-kolleg.org/"]}, {"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/dai/meldungen", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Einstein Stiftung Berlin", "institutionAdditionalName": ["Einstein Foundation Berlin"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.einsteinfoundation.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.einsteinfoundation.de/en/header/contact/"]}, {"institutionName": "Excellence Cluster TOPOI", "institutionAdditionalName": ["Excellence Cluster 264 Topoi", "The Formation and Transformation of Space and Knowledge in Ancient Civilizations"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.topoi.org/people/contact/"]}, {"institutionName": "Freie Universit\u00e4t Berlin, Institut f\u00fcr Klassische Arch\u00e4ologie", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.geschkult.fu-berlin.de/e/klassarch/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatliche Mueseen zu Berlin - Antikensammlung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.smb.museum/museen-und-einrichtungen/antikensammlung/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service@smb.de"]}, {"institutionName": "Staatliche Museen zu Berlin - Rathgen-Forschungslabor", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.smb.museum/museen-und-einrichtungen/rathgen-forschungslabor/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Berlin, Fachgebiet Historische Bauforschung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://bauforschung-denkmalpflege.de/das-fachgebiet/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Berlin Declaration", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}, {"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode"}] closed [] ["other"] yes {} ["DOI"] http://repository.edition-topoi.org/collection/MAGN [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Research Concept of the Excellence Cluster Topoi: http://www.topoi.org/research/research-concept/ 2017-06-29 2021-08-24 +r3d100012391 Hagia Sophia 3D eng [{"additionalName": "HASO", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/HASO ["doi:10.17171/2-6"] [] The repository contains the complete model of the Bern campaign; only the upper part of the vault could not be measured due to renovation works carried out on the dome at the time of the campaign. eng ["disciplinary"] {"size": "10 research objects", "updatedp": "2017-06-29"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3d scanning", "architectural geometry"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}, {"institutionName": "Universit\u00e4t Bern", "institutionAdditionalName": ["University of Bern", "Universit\u00e9 de Berne"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unibe.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unibe.ch/kontakt/index_ger.html"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://edition-topoi.org/publishing_with_us/contact", "http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/HASO/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-06-29 2018-07-20 +r3d100012392 Inscriptiones Christianae Graecae lat [{"additionalName": "ICG", "additionalNameLanguage": "lat"}] http://repository.edition-topoi.org/collection/ICG ["doi:10.17171/1-8"] [] A digital collection of Early Christian Greek Inscriptions from Asia Minor and Greece. eng ["disciplinary"] {"size": "3.553 Research Objects", "updatedp": "2017-06-30"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["authority", "early christianity", "epigraphy", "identity", "inscriptions", "knowledge"] [{"institutionName": "Berlin-Brandenburgische Akademie der Wissenschaften", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bbaw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bbaw.de/kontakt"]}, {"institutionName": "Edition | Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://edition-topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://edition-topoi.org/publishing_with_us/contact"]}, {"institutionName": "Excellence Cluster TOPOI", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/project/b-5-3/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/ICG/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://repository.edition-topoi.org/collection/ICG/overview"}] restricted [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-06-29 2018-07-20 +r3d100012393 Rock Paintings in Indonesia eng [{"additionalName": "PIND", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/PIND ["doi:10.17171/1-7"] [] Published data is based on the drawings from three books published by Wäfler and Marschall. Rock paintings in Indonesia were recorded during three short excursions by Markus Wäfler and Wolfgang Marschall. Threatened by environmental changes and human interventions and activities, these rock paintings represent the latest specimen of early drawings in that region. eng ["disciplinary"] {"size": "6 research objects;", "updatedp": "2017-06-29"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/PIND/overview#description [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Indonesia", "rock paintings"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/project/d-5-6/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/PIND/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-06-29 2018-07-20 +r3d100012394 IST Austria Research Explorer eng [{"additionalName": "IST REx", "additionalNameLanguage": "eng"}] https://research-explorer.app.ist.ac.at/ [] ["repository.manager@ist.ac.at"] IST Research Explorer is an online digital repository of multi-disciplinary research datasets as well as publications produced at IST Austria, hosted by the Library. IST Austria researchers who have produced research data associated with an existing or forthcoming publication, or which has potential use for other researches, are invited to upload their dataset for sharing and safekeeping. A persistent identifier and suggested citation will be provided. eng ["institutional"] {"size": "50 datasets", "updatedp": "2018-08-28"} 2015-07 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Markov decision process", "counterexample explanation", "decision tree", "ecology", "engineering", "evolution", "fluid mechanics", "genetics", "life sciences", "liquid mechanics", "microorganisms", "probabilistic verification"] [{"institutionName": "Institute of Science and Technology Austria", "institutionAdditionalName": ["IST Austria"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ist.ac.at/en/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IST Research ExplorerTerms of Use", "policyURL": "https://research-explorer.app.ist.ac.at/info/terms_of_use.pdf"}, {"policyName": "Open Access Policy", "policyURL": "https://library.pages.ist.ac.at/#policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] {"api": "https://research-explorer.app.ist.ac.at/oai", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} IST Austria Research Explorer is the new institutional repository at IST Austria which combines the former IST PubRep, IST PubList and IST DataRep within one repository. 2017-06-29 2020-02-18 +r3d100012396 Triticeae Toolbox eng [{"additionalName": "T3", "additionalNameLanguage": "eng"}] https://triticeaetoolbox.org ["FAIRsharing_doi:10.25504/FAIRsharing.55ev2y"] ["https://triticeaetoolbox.org/wheat/feedback.php"] A database for plant breeders and researchers to combine, visualize, and interrogate the wealth of phenotype and genotype data generated by the Triticeae Coordinated Agricultural Project (TCAP). eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://triticeaetoolbox.org/wheat/about.php [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA marker", "T3/Barley", "T3/Oat", "T3/Wheat", "The Hordeum Toolbox - THT", "breeders datafarm", "causal polymorphisms", "genome", "genotype", "phenotype"] [{"institutionName": "United States Department of Agriculture, National Institute of Food and Agriculture", "institutionAdditionalName": ["USDA, NIFA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nifa.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nifa.usda.gov/contact-us"]}, {"institutionName": "WheatCAP", "institutionAdditionalName": ["Wheat Coordinated Agricultural Project"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.triticeaecap.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.triticeaecap.org/about/t-cap-directory/"]}] [{"policyName": "Data Usage Policy", "policyURL": "https://triticeaetoolbox.org/toronto.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://triticeaetoolbox.org/wheat/docs/LICENSE"}] restricted [] ["MySQL"] {} ["none"] [] unknown yes [] [] {} The T3 software is open source and available under the GNU General Public License and may be downloaded from GitHub https://github.com/TriticeaeToolbox/T3 2017-07-05 2021-10-06 +r3d100012397 brainlife eng [{"additionalName": "brain life", "additionalNameLanguage": "eng"}, {"additionalName": "brainlife.io", "additionalNameLanguage": "eng"}] https://brainlife.io ["FAIRsharing_doi:10.25504/FAIRsharing.by3p8p", "RRID:SCR_020940"] ["brlife@iu.edu", "pestilli@utexas.edu"] Brainlife promotes engagement and education in reproducible neuroscience. We do this by providing an online platform where users can publish code (Apps), Data, and make it "alive" by integragrate various HPC and cloud computing resources to run those Apps. Brainlife also provide mechanisms to publish all research assets associated with a scientific project (data and analyses) embedded in a cloud computing environment and referenced by a single digital-object-identifier (DOI). The platform is unique because of its focus on supporting scientific reproducibility beyond open code and open data, by providing fundamental smart mechanisms for what we refer to as “Open Services.” eng ["disciplinary"] {"size": "354 datasets; 161 apps", "updatedp": "2020-02-10"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://brainlife.io [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "biomedical engineering", "brain imaging", "cognitive neuroscience", "human brain", "informatics and computing", "neuroinformatics", "neuroradiology", "ophthalmology", "optometry", "psychology", "statistics"] [{"institutionName": "Github", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://github.com/brainlife", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brlife@iu.edu"]}, {"institutionName": "Indiana University, Pervasive Technology Institute, Jetstream", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://jetstream-cloud.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Microsoft Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.microsoft.com/en-us/research/academic-program/microsoft-azure-for-research/#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Texas at Austin", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.utexas.edu/", "institutionIdentifier": ["ROR:00hj54h04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Texas at Austin, Department of Psychology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://liberalarts.utexas.edu/psychology/faculty/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pestilie@utexas.edu"]}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://brainlife.io/docs/aup/"}, {"policyName": "Privacy Policy", "policyURL": "https://brainlife.io/docs/privacy/"}, {"policyName": "brainlife Documentation", "policyURL": "https://brainlife.io/docs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/public_domain"}] restricted [] [] yes {"api": "https://brainlife.io/docs/technical/api/", "apiType": "REST"} ["DOI"] ["ORCID"] yes yes [] [] {} Partners: http://www.brain-life.org/ is covered by Clarivate Data Citation Index. Publication records at brainlife.io/pubs are preserved for at least ten years since latest use using the Scholarly Data Archive: https://kb.iu.edu/d/aiyi 2017-07-05 2021-09-01 +r3d100012398 The Neolithic in the Nile Delta eng [{"additionalName": "MRMD", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/MRMD ["doi:10.17171/1-9"] ["https://www.topoi.org/project/a-2-4/"] The aim of the research project TOPOI II A-2-4 was to re-evaluate archaeological records and finds resulting from earlier investigations within the context of recent and ongoing research across the region. eng ["disciplinary"] {"size": "1.704 Research Objects", "updatedp": "2019-01-21"} 2017-05-31 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Egypt", "Hermann Junker", "Merimde Beni Salama", "West Nile Delta", "ancient architecture", "bifacial", "bone tools", "food production", "grinding stones", "lithics", "neolithic", "pottery"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Christine.Petry@DFG.de", "Hans-Dieter.Bienert@dfg.de"]}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/"]}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hauke.ziemssen@fu-berlin.de"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/MRMD/metadata"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/MRMD [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-07-11 2021-09-03 +r3d100012399 Digibug spa [{"additionalName": "Repositorio Institucional de la Universidad de Granada", "additionalNameLanguage": "spa"}, {"additionalName": "University of Granada Institutional Repository", "additionalNameLanguage": "eng"}] https://digibug.ugr.es/ ["ROAR:437"] ["digibug@ugr.es", "mangelesgarcia@ugr.es"] DIGIBUG aims to collect, compile and organise the scientific, teaching and institutional digital documents produced by the University of Granada to support research, teaching and learning. eng ["institutional"] {"size": "", "updatedp": ""} 2009 ["eng", "fra", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://digibug.ugr.es/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad de Granada", "institutionAdditionalName": ["University of Granada"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ugr.es/", "institutionIdentifier": ["ROR:04njjy449", "RRID:SCR_011648", "RRID:nlx_22932"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Digibug. Derechos de Autor", "policyURL": "https://digibug.ugr.es/page/faq_derechos"}, {"policyName": "Pol\u00edtica Institucional de acceso abierto de la\nUniversidad de Granada", "policyURL": "http://secretariageneral.ugr.es/bougr/pages/bougr112/_doc/acg11216"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/es/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/es/"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/es/"}] ["DSpace"] {} ["hdl"] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digibug.ugr.es/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-07-11 2021-09-06 +r3d100012400 Ancient Columns eng [{"additionalName": "CLMN", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/CLMN/ ["doi:10.17171/2-2"] [] Collections of digital resources to ancient columns eng ["disciplinary"] {"size": "122 Research Objects", "updatedp": "2019-01-25"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/CLMN/#description [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ancient architecture", "architectural geometry", "columns", "entasis", "spolia"] [{"institutionName": "Excellence Cluster TOPOI", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/project/b-5-3/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/CLMN/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-07-11 2021-08-26 +r3d100012402 BioGPS eng [{"additionalName": "Biological Gene Portal Services", "additionalNameLanguage": "eng"}] http://biogps.org/#goto=welcome ["OMICS_03291", "RRID:SCR_006433", "RRID:nif-0000-10168"] ["help@biogps.org", "http://biogps.org/about/"] BioGPS is a gene portal built with two guiding principles in mind -- customizability and extensibility. It is a complete resource for learning about gene and protein function. A free extensible and customizable gene annotation portal, a complete resource for learning about gene and protein function. eng ["disciplinary"] {"size": "5951 data sets", "updatedp": "2019-01-29"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://biogps.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["RNA", "bioinformatics", "gene annotation", "gene expression", "genomics", "human", "mammalian gene", "mouse", "pig", "rat"] [{"institutionName": "National Institutes of Health, National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.scripps.edu/contact/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nigms.nih.gov/Pages/ContactUs.aspx"]}, {"institutionName": "The Scripps Research Institute", "institutionAdditionalName": ["TSRI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scripps.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.scripps.edu/contact/index.html"]}] [{"policyName": "Terms of Use", "policyURL": "http://biogps.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://biogps.org/terms/"}] restricted [] ["other"] {"api": "http://biogps.org/api/", "apiType": "REST"} [] http://biogps.org/downloads/#citation ["none"] unknown unknown [] [] {"syndication": "http://biogps.org/rss/plugins/", "syndicationType": "RSS"} The entire BioGPS application is now completely hosted in Amazon's Elastic Compute Cloud (EC2). 2017-07-14 2021-08-25 +r3d100012403 TCCON Data Archive eng [{"additionalName": "Total Carbon Column Observing Network Data Archive", "additionalNameLanguage": "eng"}] https://tccondata.org [] ["tccon_help@gps.caltech.edu"] TCCON is a network of ground-based Fourier Transform Spectrometers recording direct solar spectra in the near-infrared spectral region. From these spectra, accurate and precise column-averaged abundance of CO2, CH4, N2O, HF, CO, H2O, and HDO are retrieved. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tccon-wiki.caltech.edu/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["CH4", "CO", "CO2", "FTIR spectroscopy", "N2O", "atmospheric trace gases", "column-averaged dry-air mole fractions", "remote sensing"] [{"institutionName": "California Institute of Technology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2017-09-30", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Caltech Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.library.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2017-09-30", "responsibilityEndDate": "", "institutionContact": ["data@caltech.edu"]}, {"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2017-09-30", "institutionContact": []}, {"institutionName": "Total Carbon Column Observing Network", "institutionAdditionalName": ["TCCON"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tccon.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Policy", "policyURL": "https://tccon-wiki.caltech.edu/Network_Policy/Data_Use_Policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://tccon-wiki.caltech.edu/Network_Policy/Data_Use_Policy#Data_Protocol"}] restricted [] ["other"] yes {"api": "https://tccon-wiki.caltech.edu/Network_Policy/Data_Use_Policy/Data_Description/NetCDF_File_Header_Example", "apiType": "NetCDF"} ["DOI"] https://tccon-wiki.caltech.edu/Network_Policy/Data_Use_Policy#TCCON_Acknowledgement [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} TCCON Data Archive is covered by Thomson Reuters Data Citation Index. The TCCON is closely affiliated with the Network for the Detection of Atmospheric Composition Change Infrared Working Group (NDACC-IRWG), that produces vertical profiles of the concentrations of many of the same gases and several others. For more information see the NDACC website: https://www2.acom.ucar.edu/irwg 2017-07-14 2019-01-29 +r3d100012404 FDZ-DZHW eng [{"additionalName": "Forschungsdatenzentrum f\u00fcr Hochschul- und Wissenschaftsforschung", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Centre for Higher Education Research and Science Studies", "additionalNameLanguage": "eng"}] https://fdz.dzhw.eu/en/ [] ["fdz-feedback@dzhw.eu", "https://fdz.dzhw.eu/kontakt/index_html"] The Research Data Center for Higher Education Research and Science Studies (FDZ-DZHW) at the German Centre for Higher Education Research and Science Studies (DZHW) in Hannover provides the scientific community with quantitative and qualitative research data from the field of higher education and science studies for research and teaching purposes. The data pool of the Research Data Centre is based on two sources: Firstly, it contains the current surveys of the panels conducted in-house (especially DZHW Graduate Panel, Social Survey, DZHW Panel Study of School Leavers with a Higher Education Entrance Qualification, DZHW Scientists Survey), which are integrated by default. Secondly, the Research Data Centre constantly processes, documents and integrates inventory data of the DZHW and its prior organisations. External data from the research area is also integrated into the FDZ data pool. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-06-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://fdz.dzhw.eu/about/index_html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["educational trajectories", "empirical social research", "family history", "higher education studies", "microdata", "secondary use of data", "survey", "university research"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "2015-03-01", "responsibilityEndDate": "2017-05-31", "institutionContact": []}, {"institutionName": "Deutsches Zentrum f\u00fcr Hochschul- und Wissenschaftsforschung", "institutionAdditionalName": ["DZHW", "German Centre for Higher Education Research and Science Studies"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dzhw.eu/index_html", "institutionIdentifier": ["ROR:01n8j6z65"], "responsibilityStartDate": "2017-06-01", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data use & Research", "policyURL": "https://fdz.dzhw.eu/en/datennutzung/index_html"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://fdz.dzhw.eu/datennutzung/index_html"}] restricted [{"dataUploadLicenseName": "Datenaufnahme", "dataUploadLicenseURL": "https://fdz.dzhw.eu/datenaufnahme/index_html"}] [] {} ["DOI"] [] unknown yes ["RatSWD"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-07-19 2021-08-25 +r3d100012405 Research Data at Essex eng [{"additionalName": "University of Essex Research Data Repository", "additionalNameLanguage": "eng"}] http://researchdata.essex.ac.uk/ [] ["repository@essex.ac.uk"] The Research Data Repository is the University of Essex's online data repository where research data resulting from research taking place within the university can be deposited, published and made accessible to the research community. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://researchdata.essex.ac.uk/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Engineering and Physical Sciences Research Council", "institutionAdditionalName": ["EPSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.epsrc.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Data Service ReShare", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://reshare.ukdataservice.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://reshare.ukdataservice.ac.uk/contact/index.html"]}, {"institutionName": "University of Essex", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.essex.ac.uk/", "institutionIdentifier": ["RRID:SCR_014725"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "RDR Policies", "policyURL": "http://researchdata.essex.ac.uk/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://researchdata.essex.ac.uk/policies.html"}, {"dataLicenseName": "ODC", "dataLicenseURL": "http://researchdata.essex.ac.uk/policies.html"}] restricted [{"dataUploadLicenseName": "RDR help guidance", "dataUploadLicenseURL": "http://researchdata.essex.ac.uk/how-to-deposit.html"}] ["EPrints"] yes {"api": "http://researchdata.essex.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://researchdata.essex.ac.uk/cgi/latest_tool?output=RSS2", "syndicationType": "RSS"} 2017-07-19 2019-01-29 +r3d100012406 Spiral eng [{"additionalName": "Spiral digital repository", "additionalNameLanguage": "eng"}] http://spiral.imperial.ac.uk/ [] ["openaccess@imperial.ac.uk", "rdm-enquiries@imperial.ac.uk"] The Spiral Digital Repository is the Imperial College London institutional open access repository. This system allows you, as an author, to make your research documents open access without incurring additional publication costs. When you self-archive a research document in Spiral it becomes free for anyone to read. You can upload copies of your publications to Spiral using Symplectic Elements. All deposited content becomes searchable online. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.imperial.ac.uk/admin-services/ict/self-service/research-support/research-support-systems/spiral/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "Imperial College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imperial.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Depositing in Spiral", "policyURL": "http://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/open-access/spiral/"}, {"policyName": "Imperial's research data management policy", "policyURL": "http://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/research-data-management/imperial-policy/"}, {"policyName": "Spiral licences and policies", "policyURL": "http://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/open-access/spiral/licences-and-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/open-access/spiral/licences-and-policies/#"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.mozilla.org/en-US/MPL/2.0/"}] restricted [{"dataUploadLicenseName": "Deposit License", "dataUploadLicenseURL": "http://www.imperial.ac.uk/research-and-innovation/support-for-staff/scholarly-communication/open-access/spiral/licences-and-policies/"}] ["other"] yes {} ["DOI", "hdl"] [] unknown unknown [] [] {} 2017-07-19 2019-01-29 +r3d100012407 Lincoln repository eng [] http://eprints.lincoln.ac.uk/ [] ["eprints@lincoln.ac.uk"] The University of Lincoln's Institutional Repository is for the permanent deposit of research outputs produced by the University. Repository content can be browsed or searched through this website or through searching the internet. Wherever possible, repository content is freely available for download and use according to our Copyright and Use Notice. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://eprints.lincoln.ac.uk/information.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Lincoln", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lincoln.ac.uk/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lincoln.ac.uk/home/contactus/"]}] [{"policyName": "Repository Policies", "policyURL": "http://eprints.lincoln.ac.uk/policies.html"}, {"policyName": "University Regulations and Policies", "policyURL": "http://lincoln.ac.uk/home/abouttheuniversity/governance/universitypolicies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://eprints.lincoln.ac.uk/policies.html"}, {"dataLicenseName": "other", "dataLicenseURL": "http://secretariat.blogs.lincoln.ac.uk/information-compliance/data-protection/"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "http://eprints.lincoln.ac.uk/policies.html"}] ["EPrints"] {"api": "https://eprints.lincoln.ac.uk/policies.html", "apiType": "OAI-PMH"} [] https://eprints.lincoln.ac.uk/policies.html [] unknown unknown [] [] {"syndication": "http://eprints.lincoln.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2017-07-19 2019-01-29 +r3d100012408 NCL Data eng [{"additionalName": "Newcastle University Data", "additionalNameLanguage": "eng"}] https://rdm.ncl.ac.uk/ [] ["rdm@ncl.ac.uk", "rdm@newcastle.ac.uk"] A digital repository for Newcastle University’s research data. Please note that currently the catalogue is a pilot for EPSRC funded data only. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://research.ncl.ac.uk/rdm/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Newcastle University", "institutionAdditionalName": ["NCL"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncl.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Code of Good Practice", "policyURL": "https://www.ncl.ac.uk/research/researchgovernance/goodpractice/"}, {"policyName": "Research Data Management Policy Principles & Code of Good Practice", "policyURL": "https://www.ncl.ac.uk/res/assets/documents/ResearchDataManagementPolicyPrinciplesCodeofGoodPractice220816.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [{"dataUploadLicenseName": "ODbL - Open Database License", "dataUploadLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] [] {} ["DOI"] https://rdm.ncl.ac.uk/landing/pages/10.17634/021706-1 [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-07-19 2019-01-29 +r3d100012409 Nottingham Research Data Management Repository eng [] https://rdmc.nottingham.ac.uk/ [] ["https://www.nottingham.ac.uk/contacting/", "researchdata@nottingham.ac.uk"] The online digital research data repository of multi-disciplinary research datasets produced at the University of Nottingham, hosted by Information Services and managed and curated by Libraries, Research & Learning Resources. University of Nottingham researchers who have produced research data associated with an existing or forthcoming publication, or which has potential use for other researchers, are invited to upload their dataset. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.nottingham.ac.uk/fabs/rgs/Research-Data-Management/index.aspx [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Nottingham", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nottingham.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data management", "policyURL": "https://www.nottingham.ac.uk/fabs/rgs/Research-Data-Management/index.aspx"}, {"policyName": "Research data management policies", "policyURL": "https://www.nottingham.ac.uk/fabs/rgs/research-data-management/creating-data/policies.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Posting rules", "dataUploadLicenseURL": "https://www.nottingham.ac.uk/utilities/posting-rules.aspx"}] ["DSpace"] {} ["DOI", "hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://rdmc.nottingham.ac.uk/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-07-19 2019-01-29 +r3d100012410 QMU eData Repository eng [{"additionalName": "Queen Margaret University eData Repository", "additionalNameLanguage": "eng"}] https://eresearch.qmu.ac.uk/handle/20.500.12289/4 [] ["eResearch@qmu.ac.uk", "gharvie@qmu.ac.uk"] eData is a data repository where QMU researchers can store finished project data that, where appropriate, can be accessed and potentially re-used by other researchers. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.academia.edu/199504/eResearch_the_institutional_repository_experience_at_Queen_Margaret_University_Edinburgh [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["clinical linguistic", "clinical phonetic", "health", "language", "speech"] [{"institutionName": "Queen Margaret University, Edinburgh", "institutionAdditionalName": ["QMU"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://qmu.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.qmu.ac.uk/footer/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.qmu.ac.uk/footer/terms-of-use/"}] restricted [] ["EPrints"] yes {} [] [] unknown yes [] [] {"syndication": "https://eresearch.qmu.ac.uk/feed/atom_1.0/20.500.12289/4", "syndicationType": "ATOM"} 2017-07-19 2019-01-29 +r3d100012411 St Andrews Research portal - Research Data eng [] https://risweb.st-andrews.ac.uk/portal/en/datasets/index.html [] ["ris@st-andrews.ac.uk"] The St Andrews research portal features the research activities within the University of St Andrews. eng ["institutional"] {"size": "1.179 datasets", "updatedp": "2019-01-29"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.st-andrews.ac.uk/research/university/pooling/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of St Andrews", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://www.st-andrews.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research funders' policies", "policyURL": "https://www.st-andrews.ac.uk/library/services/researchsupport/openaccess/funderpolicies/"}, {"policyName": "University of St Andrews Open Access Policy", "policyURL": "https://www.st-andrews.ac.uk/library/services/researchsupport/openaccess/oapolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] {} ["DOI"] ["ORCID"] yes unknown [] [] {"syndication": "https://risweb.st-andrews.ac.uk/portal/en/datasets/search.rss", "syndicationType": "RSS"} 2017-07-19 2021-10-25 +r3d100012412 University of Strathclyde KnowledgeBase Datasets eng [] https://pureportal.strath.ac.uk/en/datasets/ [] ["https://pureportal.strath.ac.uk/en/contact/index/", "pure@strath.ac.uk"] The KnowledgeBase of the University of Strathclyde includes research data from the staff and students of the university. eng ["institutional"] {"size": "1.311 results", "updatedp": "2021-09-09"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Strathclyde, Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.strath.ac.uk/", "institutionIdentifier": ["ROR:00n3w3b69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.strath.ac.uk/contactus/"]}] [{"policyName": "Data Protection", "policyURL": "https://www.strath.ac.uk/professionalservices/dataprotection/"}, {"policyName": "Data protection policy", "policyURL": "https://www.strath.ac.uk/professionalservices/media/ps/strategyandpolicy/DP_Policy_v3.0.pdf.pagespeed.ce.etM5_ZfAy1.pdf"}, {"policyName": "Research Code of Practice", "policyURL": "https://www.strath.ac.uk/search/?collection=uos-meta&query=Research+Code+of+Practice"}, {"policyName": "Research Data Policy", "policyURL": "https://www.strath.ac.uk/media/ps/cs/gmap/academicaffairs/policies/Research_Data_Policy_v1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.strath.ac.uk/openaccess/licencescopyright/"}] restricted [{"dataUploadLicenseName": "Research Data Deposit policy", "dataUploadLicenseURL": "https://www.strath.ac.uk/media/ps/cs/gmap/academicaffairs/policies/Research_Data_Policy_for_website.pdf"}] ["other"] {} ["DOI"] [] yes yes [] [] {} 2017-07-20 2021-09-09 +r3d100012413 University of the Arts London Data Repository eng [] http://researchdata.arts.ac.uk/ [] ["researchdata@arts.ac.uk"] This Repository holds research data for all research projects where there is a need to store and share the supporting research. According to current Research Data Policy these records will include all data from projects funded by RCUK funders and in particular the AHRC. eng ["institutional"] {"size": "6 datasets", "updatedp": "2017-09-14"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://researchdata.arts.ac.uk/information.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Creative Arts", "Design", "Fashion", "Mathematics"] [{"institutionName": "University of the Arts London", "institutionAdditionalName": ["ual"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.arts.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["researchdata@arts.ac.uk"]}] [{"policyName": "Assets", "policyURL": "http://researchdata.arts.ac.uk/assets.html"}, {"policyName": "UAL Research Data Management Policy", "policyURL": "http://ualresearchdata.myblog.arts.ac.uk/files/2014/07/UAL-Research-Data-Management-Policy-2014.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.arts.ac.uk/students/library-services/customer-services/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "http://ualresearchdata.myblog.arts.ac.uk/files/2014/07/UAL-Research-Data-Management-Policy-2014.pdf"}] restricted [{"dataUploadLicenseName": "UAL Research Data Management Planning Procedure", "dataUploadLicenseURL": "https://www.arts.ac.uk/__data/assets/pdf_file/0021/43329/UAL-RDM-Policy-2014-Annex-A.pdf"}] ["EPrints"] {} [] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://researchdata.arts.ac.uk/cgi/exportview/year/NULL/Atom/NULL.xml", "syndicationType": "ATOM"} 2017-07-20 2019-01-30 +r3d100012414 UEL Research Repository eng [{"additionalName": "formerly: data.uel", "additionalNameLanguage": "eng"}] https://repository.uel.ac.uk [] ["repository@uel.ac.uk", "researchdata@uel.ac.uk"] UEL Research Repository: the institutional repository of open access publications and research data at the University of East London. As a research archive, it preserves and disseminates scholarly work created by members of the University of East London. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["architecture", "arts", "biosciences", "health", "law", "library sciences", "sports"] [{"institutionName": "University of East London", "institutionAdditionalName": ["UEL"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uel.ac.uk/", "institutionIdentifier": ["ROR:057jrqr44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["k.roy-chowdhury@uel.ac.uk"]}] [{"policyName": "Freedom of information", "policyURL": "https://www.uel.ac.uk/about/governance/freedom-information"}, {"policyName": "UEL Research Data Management Policy", "policyURL": "https://dx.doi.org/10.15123/PUB.8084"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0"}] restricted [] ["other"] yes {"api": "https://repository.uel.ac.uk/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} software: Haplo 2017-07-20 2022-01-04 +r3d100012415 WRAP eng [{"additionalName": "Warwick Research Archive Portal", "additionalNameLanguage": "eng"}] http://wrap.warwick.ac.uk/ [] ["publications@warwick.ac.uk"] The Warwick Research Archive Portal (WRAP) is the home of the University's full text, open access research content and contains, journal articles, Warwick doctoral dissertations, book chapters, conference papers, working papers and more. eng ["institutional"] {"size": "178 datasets", "updatedp": "2019-01-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://wrap.warwick.ac.uk/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Warwick", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://warwick.ac.uk/#Rankings", "institutionIdentifier": ["RRID:SCR_011748", "RRID:nlx_144168"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["researchdata@warwick.ac.uk"]}] [{"policyName": "Research Data Management Policy", "policyURL": "https://warwick.ac.uk/services/ris/research_integrity/code_of_practice_and_policies/research_code_of_practice/datacollection_retention/research_data_mgt_policy"}, {"policyName": "WRAP policies", "policyURL": "https://warwick.ac.uk/services/library/staff/warwick-research-publications/policies"}, {"policyName": "Warwicks OA policy", "policyURL": "https://warwick.ac.uk/services/library/staff/open-access/open-access-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/quick-guide-gplv3.html"}] restricted [{"dataUploadLicenseName": "Deposit research data", "dataUploadLicenseURL": "https://www2.warwick.ac.uk/services/library/staff/research/research-data/deposit-research-data"}] ["EPrints"] no {"api": "http://wrap.warwick.ac.uk/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://wrap.warwick.ac.uk/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2017-07-20 2019-01-30 +r3d100012417 UCL Discovery eng [] http://discovery.ucl.ac.uk/ [] ["discovery@ucl.ac.uk"] UCL Discovery is UCL's open access repository, showcasing and providing access to UCL research publications. UCL Discovery accepts small scale datasets associated with publications. eng ["institutional"] {"size": "131 datasets", "updatedp": "2019-01-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University College of London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open access", "policyURL": "https://www.ucl.ac.uk/library/open-access/ref"}, {"policyName": "Research Data Management", "policyURL": "https://www.ucl.ac.uk/library/research-support/research-data-management"}, {"policyName": "UCL Research Data Policy", "policyURL": "https://www.ucl.ac.uk/isd/services/research-it/research-data-services/research-data-services-objectives-and-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/licensing-types-examples/"}] restricted [] ["EPrints"] {"api": "http://discovery.ucl.ac.uk/cgi/oai2?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://discovery.ucl.ac.uk/latest.xml", "syndicationType": "ATOM"} 2017-07-21 2019-01-30 +r3d100012418 DART Data eng [{"additionalName": "Detection of Archaeological Residues using Remote-sensing Techniques", "additionalNameLanguage": "eng"}] http://dartportal.leeds.ac.uk/ ["biodbcore-001554"] [] >>> the repository is offline <<< The Detection of Archaeological Residues using Remote-sensing Techniques (DART) project was initiated in 2010 in order to investigate the ability of various sensors to detect archaeological features in ‘difficult’ circumstances. Concluding in September 2013, DART had the overall aim of developing analytical methods for identifying and quantifying gradual changes and dynamics in sensor responses associated with surface and near-surface archaeological features under different environmental and land-management conditions. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://dartportal.leeds.ac.uk/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Remote sensing", "monitoring", "soil moisture"] [{"institutionName": "University of Leeds", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.leeds.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Definition", "policyURL": "https://opendefinition.org/od/2.0/en/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}] restricted [] ["CKAN"] yes {} ["none"] ["ORCID"] unknown unknown ["other"] [] {} 2017-07-21 2021-11-16 +r3d100012419 DIAS eng [{"additionalName": "Data Integration and Analysis System", "additionalNameLanguage": "eng"}] https://diasjp.net/en/ [] ["dias-office@diasjp.net"] DIAS aims at collecting and storing earth observation data; analyzing such data in combination with socio-economic data, and converting data into information useful for crisis management with respect to global-scale environmental disasters, and other threats; and to make this information available within Japan and overseas. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010-10-01 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://diasjp.net/en/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "atmosphere", "biodiversity", "climate", "climate change", "climatology", "disaster risk management", "ecology", "ecosystem", "energy", "health", "hydrology", "in-situ data", "meteorology", "model output", "multidisciplinary", "oceanography", "remote sensing", "urban", "water", "weather"] [{"institutionName": "Administration and Member Institutions", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://diasjp.net/en/about/administration/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japan Agency for Marine-Earth Science and Technology", "institutionAdditionalName": ["JAMSTEC"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jamstec.go.jp/e/", "institutionIdentifier": ["ROR:059qg2m13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Tokyo, Earth Observation Data Integration & Fusion Research Initiative", "institutionAdditionalName": ["EDITORIA", "Earth Observation Data Integration & Fusion Research Initiative"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.editoria.u-tokyo.ac.jp/index-e.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DIAS Terms of Service", "policyURL": "https://diasjp.net/en/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://diasjp.net/en/terms#i7"}, {"dataLicenseName": "other", "dataLicenseURL": "https://diasjp.net/en/terms#i6"}] restricted [] ["other"] no {} ["DOI"] [] no yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://www.diasjp.net/en/feed/", "syndicationType": "RSS"} Member institutions: https://diasjp.net/en/about/administration/ Paratners: https://diasjp.net/en/about/partners/ 2017-07-24 2021-07-05 +r3d100012420 SeedMe eng [{"additionalName": "Stream, Encode, Explore and Disseminate My Experiments", "additionalNameLanguage": "eng"}] https://www.seedme.org/ [] ["https://help@SeedMe.org"] >>> !!! All user content from this site has been deleted. Visit SeedMeLab (https://seedmelab.org/) project as a new option for data hosting. >>> !!! SeedMe is a result of a decade of onerous experience in preparing and sharing visualization results from supercomputing simulations with many researchers at different geographic locations using different operating systems. It’s been a labor–intensive process, unsupported by useful tools and procedures for sharing information. SeedMe provides a secure and easy-to-use functionality for efficiently and conveniently sharing results that aims to create transformative impact across many scientific domains. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.seedme.org/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["agriculture", "data-sharing", "ecosystem", "surface observation", "visualization", "weather", "wind speed"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, San Diego Supercomputer Center", "institutionAdditionalName": ["UC San Diego, SDSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sdsc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.seedme.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.seedme.org/terms"}] restricted [] ["other"] yes {"api": "https://www.seedme.org/help/use/get-apikey", "apiType": "other"} ["none"] https://www.seedme.org/cite [] yes unknown [] [] {} 2017-07-24 2021-09-09 +r3d100012421 LINCS Data Portal eng [{"additionalName": "Library of Integrated Network-based Signatures Data Portal", "additionalNameLanguage": "eng"}] http://lincsportal.ccs.miami.edu/dcic-portal/ ["FAIRsharing_doi:10.25504/FAIRsharing.fb0r2g", "RRID:SCR_014939"] ["support@lincs-dcic.org"] LINCS Data Portal provides access to LINCS data from various sources. The program has six Data and Signature Generation Centers: Drug Toxicity Signature Generation Center, HMS LINCS Center, LINCS Center for Transcriptomics, LINCS Proteomic Characterization Center for Signaling and Epigenetics, MEP LINCS Center, and NeuroLINCS Center. eng ["disciplinary"] {"size": "396 datasets", "updatedp": "2019-01-30"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.lincsproject.org/LINCS/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["KINOMEscan", "L1000 assay", "P100 assay", "RNA-seq", "biochemical assays", "cell biological assays", "cellular signatures", "imaging assays", "phenotype assays", "proteomics", "transcriptomics"] [{"institutionName": "Big Data to Knowledge - Library of Integrated Network-based Cellular Signatures, Data Coordination and Integration Center", "institutionAdditionalName": ["BD2K - LINCS DCIC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://lincs-dcic.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@lincs-dcic.org"]}, {"institutionName": "National Institutes of Health, Library of Integrated Network-based Cellular Signatures Program", "institutionAdditionalName": ["NIH, LINCS Program"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.lincsproject.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIH Genomic Data Sharing Policy", "policyURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}, {"policyName": "Terms of use", "policyURL": "http://lincsportal.ccs.miami.edu/dcic-portal/#/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.lincsproject.org/LINCS/data/release-policy"}] closed [] ["unknown"] {} ["other"] http://lincsportal.ccs.miami.edu/dcic-portal/#/terms [] yes yes [] [{"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}, {"metadataStandardName": "MIBBI - Minimum Information for Biological and Biomedical Investigations", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/mibbi-minimum-information-biological-and-biomedical-investigations"}] {} The LINCS Data and Signature Generation Centers produce a variety of data for the library. For such data to be standardized, integrated, and coordinated in a manner that promotes consistency and allows comparison across different cell types, assays and conditions, the BD2K-LINCS DCIC together with the DSGCs develop and employ data standards. Once collected, LINCS data is made available to the research community in various formats so that it can be used in different types of analyses. 2017-07-26 2021-09-09 +r3d100012422 TOAR Surface Observation Database eng [{"additionalName": "Surface station data from J\u00fclich database", "additionalNameLanguage": "eng"}, {"additionalName": "TOAR Surface Observation Database Version 1", "additionalNameLanguage": "eng"}, {"additionalName": "TOAR Surface Observation Database Version 2", "additionalNameLanguage": "eng"}, {"additionalName": "TOAR Surface Stations Database", "additionalNameLanguage": "eng"}, {"additionalName": "Tropospheric Ozone Assessment Report database of global surface observations", "additionalNameLanguage": "eng"}] https://toar-data.fz-juelich.de/ [] ["support@toar-data.org"] The Tropospheric Ozone Assessment Report (TOAR) database of global surface observations is the world's most extensive collection of surface ozone measurements and includes also data on other air pollutants and on weather for some regions. Measurements from 1970 to 2019 (Version 1) have been collected in a relational database, and are made available via a graphical web interface, a REST service (https://toar-data.fz-juelich.de/api/v1) and as aggregated products on PANGAEA (https://doi.pangaea.de/10.1594/PANGAEA.876108). Measurements from 1970 to present (Version 2) are being collected in a relational database, and are made available via a REST service (https://toar-data.fz-juelich.de/api/v2). eng ["disciplinary"] {"size": "13000 time series; 7000 stations; 1TB", "updatedp": "2021-08-18"} 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://igacproject.org/activities/TOAR [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "air pollution", "atmospheric composition", "atmospheric science", "climate impacts", "health impacts", "ozone", "troposphere", "vegetation impacts"] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich Gmbh, J\u00fclich Supercomputing Centre", "institutionAdditionalName": ["JSC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/ias/jsc/EN/Home/home_node.html", "institutionIdentifier": ["Wikidata:Q55342974"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["m.schultz@fz-juelich.de"]}, {"institutionName": "Tropospheric Ozone Assessment Report", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://igacproject.org/activities/TOAR", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://toar-data.fz-juelich.de/footer/terms-of-use.html"}, {"policyName": "The TOAR Database User Guide", "policyURL": "https://toar-data.fz-juelich.de/documentation/TOAR_UG_Vol03_Database.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] yes {"api": "https://toar-data.fz-juelich.de/api/v2/", "apiType": "REST"} ["DOI"] https://toar-data.fz-juelich.de/footer/terms-of-use.html [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} TOAR Data Portal with links: https://toar-data.org/ 2017-07-27 2021-08-19 +r3d100012426 OMICtools eng [] https://omictools.com/ ["RRID:SCR_002250", "RRID:nlx_155571"] ["https://omictools.com/contact"] >>>!!!<<< OMICtools is no longer online >>>!!!<<< We founded OMICtools in 2012 with the vision to drive progress in life science. We wanted to empower life science practitioners all over the world to achieve breakthroughs by getting data to talk. While we made tremendous progress over the past three years, developing a bioinformatics database of software and dynamic protocols, attracting more than 1.5M visitors a year, we lacked the financial support we needed to continue. We certainly gave it our all. We'd like to thank everyone who believed in us and supported us on this journey: all our users, our community, our friends, families and employees (who we consider as our extended family!). omicX will probably shut down its operations within the next few weeks. The team and I remain firmly committed to our vision, particularly at this very difficult time. It is now, more than ever before, that researchers need access to a resource that pools collective scientific intelligence. We have accumulated an awful lot of experience which we are keen to share. If your institution would be interested in taking over our website and database, to provide researchers with continued access to the platform, or you simply want to stay in touch with the omicX team, contact us at contact@omictools.com or at carine.toutain@fhbx.eu. eng ["disciplinary"] {"size": "19.200 software and databases", "updatedp": "2017-07-31"} 2012 2020 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20601 Molecular Neuroscience and Neurogenetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/pubmed/25024350 [{"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bioinformatics", "epigenomics", "genomics", "metabolomics", "metadatabase", "phenomics", "proteomics", "research software", "transcriptomics"] [{"institutionName": "Financial and Institutional Partners", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://omictools.com/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "omicX", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://omictools.com/terms-of-use", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://omictools.com/contact"]}] [{"policyName": "Contribute to accelerating research", "policyURL": "https://omictools.com/community"}, {"policyName": "Terms of Use of the OMICTOOLS Database", "policyURL": "https://omictools.com/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://omictools.com/terms-of-use"}] restricted [] ["unknown"] {} ["other"] [] unknown yes [] [] {} Description: A community-based search platform. OMICtools bridges the gap between researchers and tool developers. OMICtools brings together an interactive worldwide user community, linking expert curators who submit, review and categorize tools, to users who strengthen the interface by bringing feedback and reviews. Community: https://omictools.com/community 2017-07-31 2021-07-06 +r3d100012427 AgBase eng [] https://agbase.arizona.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.kn4ycg", "OMICS_03223", "RRID:SCR_007547", "RRID:nif-0000-02537"] ["agbase@email.arizona.edu.", "https://agbase.arizona.edu/cgi-bin/contact.pl"] AgBase is a curated, open-source, Web-accessible resource for functional analysis of agricultural plant and animal gene products. Our long-term goal is to serve the needs of the agricultural research communities by facilitating post-genome biology for agriculture researchers and for those researchers primarily using agricultural species as biomedical models. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agricultural plants", "animals", "microbes", "parasites", "post-genome"] [{"institutionName": "University of Arizona", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.arizona.edu/", "institutionIdentifier": ["ROR:03m2x1q45", "RRID:SCR_012646", "RRID:SciEx_653"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://agbase.arizona.edu/AgBase_TOU.pdf"}] restricted [] [] yes {} ["none"] https://agbase.arizona.edu/AgBase_TOU.pdf [] unknown unknown [] [] {} 2017-08-03 2021-06-16 +r3d100012429 Birdbase eng [{"additionalName": "A database of avian genes & genomes", "additionalNameLanguage": "eng"}] http://birdbase.arizona.edu/birdbase/ [] ["webmaster@igbb.msstate.edu"] The sequencing of several bird genomes and the anticipated sequencing of many more provided the impetus to develop a model organism database devoted to the taxonomic class: Aves. Birds provide model organisms important to the study of neurobiology, immunology, genetics, development, oncology, virology, cardiovascular biology, evolution and a variety of other life sciences. Many bird species are also important to agriculture, providing an enormous worldwide food source worldwide. Genomic approaches are proving invaluable to studying traits that affect meat yield, disease resistance, behavior, and bone development along with many other factors affecting productivity. In this context, BirdBase will serve both biomedical and agricultural researchers. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://birdbase.arizona.edu/birdbase/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Model Organism Database", "agricultural research", "biomedical research", "bird species", "birds", "chicken", "gene expression", "gene nomenclature", "genetics", "genomics", "model organisms", "ontology development", "pathways", "turkey", "zebrafinch"] [{"institutionName": "Mississippi State University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.msstate.edu/", "institutionIdentifier": ["ROR:0432jq872", "RRID:SCR_000361", "RRID:nlx_23152"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["burgess@igbb.msstate.edu", "fionamcc@igbb.msstate.edu", "pc79@igbb.msstate.edu"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": ["ROR:01na82s61", "RRID:SCR_011486"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Arizona, College of Medicine Tucson, Cellular & molecular medizine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://cmm.arizona.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pba@email.arizona.edu", "sdavey@email.arizona.edu"]}, {"institutionName": "University of Delaware", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.udel.edu/", "institutionIdentifier": ["ROR:01sbq1a82", "RRID:SCR_011629", "RRID:nlx_75835"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["decker@cis.udel.edu", "schmidtc@udel.edu", "vijay@cis.udel.edu"]}] [{"policyName": "NIH Genomic Data Sharing", "policyURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://birdbase.arizona.edu/birdbase/abstract.jsp"}, {"dataLicenseName": "other", "dataLicenseURL": "https://grants.nih.gov/grants/policy/data_sharing/"}] restricted [] ["other"] {} ["none"] ["none"] unknown unknown [] [] {} 2017-08-03 2021-08-25 +r3d100012430 AIRS/Aqua Observations of Gravity Waves eng [{"additionalName": "Atmospheric Infrared Sounder / Aqua Observations of Gravity Waves", "additionalNameLanguage": "eng"}] https://datapub.fz-juelich.de/slcs/airs/gravity_waves [] ["slcs_jsc@fz-juelich.de"] This data repository provides access to gravity wave observations of the Atmospheric Infrared Sounder (AIRS) aboard NASA's Aqua satellite. Information on stratospheric gravity wave activity is derived from radiance measurements in the 4.3 and 15 micron CO2 fundamental bands. The repository provides browse images and netCDF data files for the years 2002 to 2017 and is frequently updated. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datapub.fz-juelich.de/slcs/airs/gravity_waves [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Earth Observing System - EOS", "atmospheric dynamics", "atmospheric science", "climate science", "gravity waves", "stratosphere"] [{"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.htm", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["slcs_jsc@fz-juelich.de"]}] [{"policyName": "Data access, Legal notes", "policyURL": "https://datapub.fz-juelich.de/slcs/airs/gravity_waves/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] {"api": "https://datapub.fz-juelich.de/slcs/airs/gravity_waves/data/", "apiType": "NetCDF"} ["none"] [] unknown yes [] [] {} The gravity wave data sets provided on this web site have been created using AIRS/Aqua L1B Infrared (IR) geolocated and calibrated radiances V005 distributed by the NASA Goddard Earth Sciences Data and Information Services Center (GES DISC). Please see the GES DISC website for further information: https://disc.gsfc.nasa.gov/datasets/AIRIBRAD_005/summary More information about AIRS: https://airs.jpl.nasa.gov/ 2017-08-04 2020-08-26 +r3d100012431 Atmospheric Infrared Sounder eng [{"additionalName": "AIRS", "additionalNameLanguage": "eng"}] https://airs.jpl.nasa.gov/data/about-the-data/processing/ ["biodbcore-001556"] ["https://airs.jpl.nasa.gov/data/support/ask-airs/submit-a-question/", "https://airs.jpl.nasa.gov/feedback/"] AIRS moves climate research and weather prediction into the 21st century. AIRS is one of six instruments on board the Aqua satellite, part of the NASA Earth Observing System. AIRS along with its partner microwave instrument the Advanced Microwave Sounding Unit AMSU-A, represents the most advanced atmospheric sounding system ever deployed in space. Together these instruments observe the global water and energy cycles, climate variation and trends, and the response of the climate system to increased greenhouse gases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://airs.jpl.nasa.gov/mission_and_instrument/overview [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["AMSU", "Aqua satellite", "Earth Observing System - EOS", "HSB", "atmosphere", "atmospheric dynamics", "atmospheric science", "climate science", "gravity", "stratosphere"] [{"institutionName": "California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["Caltech, JPL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": ["ROR:027k65916"], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["https://www.jpl.nasa.gov/jpl-and-the-community/directions-and-maps"]}, {"institutionName": "Goddard Earth Sciences Data and Information Services Center", "institutionAdditionalName": ["GES DISC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://disc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "2002", "responsibilityEndDate": "", "institutionContact": ["https://disc.gsfc.nasa.gov/contact"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "Claimed Copyright Infringement", "policyURL": "https://www.caltech.edu/claimed-copyright-infringement"}, {"policyName": "GES DISC Data Policy", "policyURL": "https://daac.gsfc.nasa.gov/citing"}, {"policyName": "JPL Image Use Policy", "policyURL": "https://www.jpl.nasa.gov/imagepolicy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/copyrights.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://daac.gsfc.nasa.gov/citing"}] closed [] ["unknown"] {"api": "https://disc.gsfc.nasa.gov/information/news/584f29e6e01b045faee882a0/open-dap-allows-users-more-options-for-airs-data-access", "apiType": "OpenDAP"} ["none"] https://daac.gsfc.nasa.gov/citing [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-08-04 2021-11-17 +r3d100012432 GabiPD eng [{"additionalName": "GABI Primary Database", "additionalNameLanguage": "eng"}, {"additionalName": "Genomanalyse im biologischen System Pflanze", "additionalNameLanguage": "deu"}, {"additionalName": "Genome Analysis of the Plant Biological System", "additionalNameLanguage": "eng"}] https://www.gabipd.org/ ["MIR:00000164", "OMICS_03230", "RRID:SCR_002755", "RRID:nif-0000-02866"] ["gabipd@gmail.com"] GABI, acronym for "Genomanalyse im biologischen System Pflanze", is the name of a large collaborative network of different plant genomic research projects. Plant data from different ‘omics’ fronts representing more than 10 different model or crop species are integrated in GabiPD. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.gabipd.org/information/about.shtml [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["gene expression", "metabolomics", "molecular plant physiology,", "plant genomics", "proteomics", "proteomics", "transcriptomics"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMFT", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Institut f\u00fcr Molekulare Pflanzenphysiologie", "institutionAdditionalName": ["MPI-MP", "Max-Planck-Institute of Molecular Plant Physiology"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.mpimp-golm.mpg.de/2168/en", "institutionIdentifier": ["ROR:01fbde567", "RRID:SCR_011368", "RRID:nlx_56371"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data submission and access to the data", "policyURL": "https://www.gabipd.org/information/about.shtml#submission"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://www.gabipd.org/registration/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gabipd.org/imprint.shtml"}] restricted [] ["unknown"] {} ["none"] https://www.gabipd.org/ ["none"] unknown unknown [] [] {"syndication": "https://www.gabipd.org/cgi-bin/News.pl.cgi?type=rss&time=current", "syndicationType": "RSS"} 2017-08-07 2021-08-25 +r3d100012433 Human Genetic Variation Repository eng [{"additionalName": "HGVD", "additionalNameLanguage": "eng"}] https://www.hgvd.genome.med.kyoto-u.ac.jp/index.html ["OMICS_11833"] ["hgvd@genome.med.kyoto-u.ac.jp", "https://www.hgvd.genome.med.kyoto-u.ac.jp/contact.html"] The Human Genetic Variation Database (HGVD) aims to provide a central resource to archive and display Japanese genetic variation and association between the variation and transcription level of genes. The database currently contains genetic variations determined by exome sequencing of 1,208 individuals and genotyping data of common variations obtained from a cohort of 3,248 individuals. eng ["disciplinary"] {"size": "1.208 samples of exome sequencing data", "updatedp": "2017-08-09"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Japanese", "genetics", "genomics", "human", "next-generation sequencers", "pathogenic variations"] [{"institutionName": "Kyoto University", "institutionAdditionalName": ["KU", "\u4eac\u90fd\u5927\u5b66"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kyoto-u.ac.jp/en", "institutionIdentifier": ["ROR:02kpeqv85", "RRID:SCR_004108", "RRID:nlx_60798"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Health, Labour and Welfare", "institutionAdditionalName": ["\u539a\u751f\u52b4\u50cd\u7701"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mhlw.go.jp/english/", "institutionIdentifier": ["ROR:03mwa7s65", "RRID:SCR_011326", "RRID:nlx_152042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Child Health and Development", "institutionAdditionalName": ["NCCHD", "\u56fd\u7acb\u5150\u7ae5\u885b\u751f\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncchd.go.jp/en/", "institutionIdentifier": ["ROR:03fvwxc59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Tokyo", "institutionAdditionalName": ["UT", "\u6771\u4eac\u5927\u5b66"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.u-tokyo.ac.jp/en/", "institutionIdentifier": ["ROR:057zh3y96", "RRID:SCR_011731", "RRID:nlx_97187"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tohoku University", "institutionAdditionalName": ["TU", "\u6771\u5317\u5927\u5b66"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tohoku.ac.jp/en/", "institutionIdentifier": ["ROR:01dq60k83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Yokohama City University", "institutionAdditionalName": ["YCU", "\u6a2a\u6d5c\u5e02\u7acb\u5927\u5b66"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.yokohama-cu.ac.jp/en/", "institutionIdentifier": ["ROR:0135d1r83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Content and Organization", "policyURL": "http://www.hgvd.genome.med.kyoto-u.ac.jp/repository.html"}, {"policyName": "Terms of Service", "policyURL": "http://www.hgvd.genome.med.kyoto-u.ac.jp/about.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.hgvd.genome.med.kyoto-u.ac.jp/repository.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.hgvd.genome.med.kyoto-u.ac.jp/about.html"}] closed [] ["unknown"] yes {} ["none"] http://www.hgvd.genome.med.kyoto-u.ac.jp/about.html ["none"] unknown unknown [] [] {} 2017-08-09 2021-06-16 +r3d100012435 Image Data Resource eng [{"additionalName": "IDR", "additionalNameLanguage": "eng"}] https://idr.openmicroscopy.org/about/ ["FAIRsharing_doi:10.25504/FAIRsharing.6wf1zw", "OMICS_13850", "RRID:SCR_017421"] ["idr@openmicroscopy.org"] The IDR makes datasets that have never previously been accessible publicly available, allowing the community to search, view, mine and even process and analyze large, complex, multidimensional life sciences image data. Sharing data promotes the validation of experimental methods and scientific conclusions, the comparison with new data obtained by the global scientific community, and enables data reuse by developers of new analysis and processing tools. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://idr.openmicroscopy.org/about/about.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["bioimage", "digital pathology", "gene networks", "high-content screening", "multi-dimensional microscopy"] [{"institutionName": "Dundee University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dundee.ac.uk/", "institutionIdentifier": ["ROR:03h2bxq36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Microscopy Environment", "institutionAdditionalName": ["OME"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.openmicroscopy.org/", "institutionIdentifier": ["RRID:SCR_008849", "RRID:nlx_146268"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Euro-BioImaging - ELIXIR Image Data Strategy", "policyURL": "http://www.eurobioimaging.eu/content-news/euro-bioimaging-elixir-image-data-strategy"}, {"policyName": "Submission of datasets", "policyURL": "https://idr.openmicroscopy.org/about/submission.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] {"api": "https://idr.openmicroscopy.org/about/api.html", "apiType": "other"} ["DOI"] https://idr.openmicroscopy.org/about/submission.html [] yes yes [] [] {} is covered by Elsevier. 2017-08-10 2021-09-02 +r3d100012436 Biobank of blood donors eng [{"additionalName": "Biobank der Blutspender", "additionalNameLanguage": "deu"}, {"additionalName": "Blood Donor BIOBANK", "additionalNameLanguage": "eng"}] http://www.bio-bank.de/en/biobank.php [] ["biobank@blutspendedienst.com", "http://www.bio-bank.de/de/kontakt.php"] With its “Blood Donor BIOBANK”, the Bavarian Red Cross (BRK) Blood Donor Service offers a unique and innovative resource for biomarker research: the world’s first blood donor based biobank. Biobanks as collections of biological material together with associated medical data open new possibilities for the development of new targeted diagnostics and therapies. The BRK Blood Donor Service maintains a unique collection of over 3 million blood samples, making it one of the largest sample collections worldwide. Every working day 2,000 new samples are added to the collection. eng ["disciplinary"] {"size": "over 3 million samples", "updatedp": "2017-08-11"} 2006 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.bio-bank.de/en/data-protection.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biomarker", "blood donation", "blood sample", "diagnostics", "early detection", "epidemiology", "medical research", "prognostics", "therapy"] [{"institutionName": "Blutspendedienst des Bayerischen Roten Kreuzes gemeinn\u00fctzige GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.blutspendedienst.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["obank@blutspendedienst.com"]}, {"institutionName": "Universit\u00e4tsklinikum W\u00fcrzburg, Interdisziplin\u00e4re Biomaterial- und Datenbank W\u00fcrzburg", "institutionAdditionalName": ["University Hospital of W\u00fcrzburg, Interdisciplinary Bank of Biomaterials and Data W\u00fcrzburg", "idbw"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ibdw.ukw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ibdw@ukw.de"]}] [{"policyName": "Copyright", "policyURL": "http://www.bio-bank.de/en/copyright.php"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.bio-bank.de/en/copyright.php"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bio-bank.de/en/copyright.php"}] closed [] ["unknown"] {} ["none"] ["none"] no unknown ["other"] [] {} 2017-08-11 2021-08-25 +r3d100012437 Nationale Kohorte deu [{"additionalName": "GNC", "additionalNameLanguage": "eng"}, {"additionalName": "German National Cohort", "additionalNameLanguage": "eng"}, {"additionalName": "Gesundheitsstudie", "additionalNameLanguage": "deu"}, {"additionalName": "NAKO", "additionalNameLanguage": "deu"}] https://nako.de/ [] ["https://nako.de/allgemeines/kontakt/"] The German National Cohort (NAKO) has been inviting men and women aged between 20 and 69 to 18 study centers throughout Germany since 2014. The participants are medically examined and questioned about their living conditions. The GNC’s aim is to investigate the causes of chronic diseases, such as cancer, diabetes, cardiovascular diseases, rheumatism, infectious diseases, and dementia in order to improve prevention, early diagnoses and treatment of these very widely spread diseases. eng ["disciplinary"] {"size": "200.000 people in the age of 20-69", "updatedp": "2017-08-11"} 2014 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://nako.de/informationen-auf-englisch/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cancer", "cardiovascular disease", "chronic infections", "cohort study", "dementia illness", "diabetes", "life-style factors", "mobility impairments", "socio-economics factors"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bmbf.de/en/contact.php"]}, {"institutionName": "Deutsches Krebsforschungszentrum", "institutionAdditionalName": ["DKFZ", "German Cancer Research Center"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dkfz.de/en/index.html", "institutionIdentifier": ["ROR:04cdgtt98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Krebsforschungszentrum, Epidemiologie von Krebserkrankungen", "institutionAdditionalName": ["DKFZ, Epidemiologie von Krebserkrankungen", "Deutsches Krebsforschungszentrum, Division of Cancer Epidemiology"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.dkfz.de/en/epidemiologie-krebserkrankungen/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dkfz.de/de/epidemiologie-krebserkrankungen/mitarbeiter/kontakt/epidemiologie_krebserk.php"]}, {"institutionName": "Ernst-Moritz-Arndt-Universit\u00e4t Greifswald, Universit\u00e4tsmedizin Greifswald, Institut f\u00fcr Community Medicine", "institutionAdditionalName": ["Ernst-Moritz-Arndt-University of Greifswald, University Hospital, Institute for Community Medicine"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www2.medizin.uni-greifswald.de/icm/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nako@uni-greifswald.de"]}, {"institutionName": "Helmholtz Zentrum M\u00fcnchen", "institutionAdditionalName": ["German Research Center for Environmental Health"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/en/helmholtz-zentrum-muenchen/index.html", "institutionIdentifier": ["ROR:00cfam450", "RRID:SCR_011282", "RRID:nlx_152050"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz-Zentrum M\u00fcnchen, Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt (GmbH), Institut f\u00fcr Epidemiologie II", "institutionAdditionalName": ["Helmholtz Zentrum M\u00fcnchen - German Research Center for Environmental Health EPI II Epidemiology II"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-muenchen.de/epi/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.helmholtz-muenchen.de/en/ueber-uns/service/kontakt/index.html"]}, {"institutionName": "Verein NAKO e.V.", "institutionAdditionalName": ["GNC", "German National Cohort"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nako.de/impressum/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["geschaeftsstelle@nako.de"]}] [{"policyName": "Datenschutz in der NAKO", "policyURL": "https://nako.de/allgemeines/was-ist-die-nako-gesundheitsstudie/datenschutz-in-der-nako/"}, {"policyName": "Use and Access Policy", "policyURL": "https://nako.de/wp-content/uploads/2015/07/Nutzungsordnung-zur-Nutzung-von-Daten-und-Probenmaterial-der-Nationalen-Kohorte.pdf"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://nako.de/wp-content/uploads/2015/07/Nutzungsordnung-zur-Nutzung-von-Daten-und-Probenmaterial-der-Nationalen-Kohorte.pdf"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nako.de/wp-content/uploads/2015/07/Nutzungsordnung-zur-Nutzung-von-Daten-und-Probenmaterial-der-Nationalen-Kohorte.pdf"}] closed [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [] {} Central Biorepository : https://nako.de/allgemeines/der-verein-nako-e-v/organisationseinheiten/zentrale-bioprobenbank/ 2017-08-11 2021-02-26 +r3d100012438 Historic Environment Scotland eng [{"additionalName": "Arainneadchd eachdraidheil alba", "additionalNameLanguage": "gla"}, {"additionalName": "HES", "additionalNameLanguage": "eng"}, {"additionalName": "Historic Scotland (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Royal Commission on the Ancient and Historical Monuments of Scotland (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "The National Record of the Historic Environment", "additionalNameLanguage": "eng"}] https://www.historicenvironment.scot/ [] ["archives@hes.scot", "https://www.historicenvironment.scot/about-us/contact-us/"] Historic Environment Scotland was formed in October 2015 following the merger between Historic Scotland and The Royal Commission on the Ancient and Historical Monuments of Scotland. Historic Environment Scotland is the lead public body established to investigate, care for and promote Scotland’s historic environment. We lead and enable Scotland’s first historic environment strategy Our Place in Time, which sets out how our historic environment will be managed. It ensures our historic environment is cared for, valued and enhanced, both now and for future generations. eng ["disciplinary"] {"size": "1.1 million digital assets; 1.6 million catalogue records; totalling 40TB", "updatedp": "2022-01-03"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.historicenvironment.scot/about-us/who-we-are/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ancient monuments", "archaeology", "architecture", "culture", "heritage", "historic environment", "historical monuments", "history", "non-departmental public body", "scottish natural heritage"] [{"institutionName": "Historic Environment Scotland", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.historicenvironment.scot/", "institutionIdentifier": ["ROR:01h5xyq84"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.historicenvironment.scot/about-us/contact-us/"]}] [{"policyName": "Assessment Information CoreTrustSeal Requirements 2020\u20132022", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/10/historic-environment-scotland_2021-10-12.pdf"}, {"policyName": "Availability of records", "policyURL": "https://www.historicenvironment.scot/access-to-information/availability-of-records/"}, {"policyName": "Historic Environment Scotland Data Protection Policy", "policyURL": "https://www.historicenvironment.scot/privacy-notice"}, {"policyName": "Terms & conditions", "policyURL": "https://www.historicenvironment.scot/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://www.gov.scot/publications/open-data-strategy/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] closed [] ["unknown"] {} ["none"] [] no yes ["other"] [{"metadataStandardName": "MIDAS-Heritage", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/midas-heritage"}] {"syndication": "https://inspire.hes.scot/AtomService/HES_AtomService.atom.en.xml", "syndicationType": "ATOM"} Grants and fundings: https://www.historicenvironment.scot/grants-and-funding/grants-awarded-by-us/ The Historic Environment Scotland website has been built to comply with World Wide Web Consortium (W3C) Web Accessibility Initiative double AA standards. 2017-08-11 2022-01-04 +r3d100012439 GIN eng [{"additionalName": "G-Node Data Infrastructure Services", "additionalNameLanguage": "eng"}] https://web.gin.g-node.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.nv6mrg", "RRID:SCR_015864"] ["https://web.gin.g-node.org/G-Node/Info/wiki/contact", "info@g-node.org"] The German Neuroinformatics Node's data infrastructure (GIN) services provide a platform for comprehensive and reproducible management and sharing of neuroscience data. Building on well established versioning technology, GIN offers the power of a web based repository management service combined with a distributed file storage. The service addresses the range of research data workflows starting from data analysis on the local workstation to remote collaboration and data publication. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20602 Cellular Neuroscience", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://gin.g-node.org/G-Node/Info/wiki/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["neuroscience"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Rechenzentrum der Bayerischen Akademie der Wissenschaften", "institutionAdditionalName": ["LRZ", "Leibniz Supercomputing Centre of the Bavarian Academy of Sciences and Humanities"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lrz.de/", "institutionIdentifier": ["ROR:05558nw16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Department Biologie II, Division of Neurobiology", "institutionAdditionalName": ["LMU Munich, Department of Biology II"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://neuro.bio.lmu.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://web.gin.g-node.org/G-Node/Info/wiki/Terms+of+Use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] yes {"api": "https://github.com/G-Node/gndata-api", "apiType": "other"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-08-11 2021-03-05 +r3d100012440 DR-NTU (Data) eng [{"additionalName": "Data repository - Nanyang Technological University", "additionalNameLanguage": "eng"}] https://researchdata.ntu.edu.sg/ [] ["library@ntu.edu.sg"] DR-NTU (Data) is the institutional open access research data repository for Nanyang Technological University (NTU), Singapore. NTU researchers are encouraged to use DR-NTU (Data) to deposit, publish and archive their final research data in order to make their research data discoverable, accessible and reusable. eng ["institutional"] {"size": "423 Dataverses; 654 Datasets; 19,211 Files", "updatedp": "2021-03-04"} 2017-08-14 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.ntu.edu.sg/drntudataguidespolicies [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Nanyang Technological University", "institutionAdditionalName": ["NTU"], "institutionCountry": "SGP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ntu.edu.sg/Pages/home.aspx", "institutionIdentifier": ["ROR:02e7b5302", "RRID:SCR_011376", "RRID:nlx_149224"], "responsibilityStartDate": "2017-04-014", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nanyang Technological University Centre for IT Services", "institutionAdditionalName": ["CITS"], "institutionCountry": "SGP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ntu.edu.sg/cits/pages/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nanyang Technological University Library", "institutionAdditionalName": ["NTU Library"], "institutionCountry": "SGP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ntu.edu.sg/library/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library@ntu.edu.sg"]}] [{"policyName": "DR-NTU (Data) Policies", "policyURL": "https://libguides.ntu.edu.sg/drntudataguidespolicies/policies"}, {"policyName": "DR-NTU (Data) User Guides", "policyURL": "https://libguides.ntu.edu.sg/drntudataguidespolicies/userguides"}, {"policyName": "NTU Research Data Policy", "policyURL": "https://www.ntu.edu.sg/research/ntu-research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {} DR-NTU (Data) is covered by Clarivate Data Citation Index. Metadata references: https://blogs.ntu.edu.sg/lib-datamanagement/files/2017/03/DRNTUData_SupportedMetadataReferences-2e09yn2.pdf 2017-08-18 2022-01-25 +r3d100012441 Alzheimer Disease & Frontotemporal Dementia Mutation Database eng [{"additionalName": "AD & FTD Mutation Database", "additionalNameLanguage": "eng"}] http://www.molgen.vib-ua.be/ADMutations/ ["OMICS_16526", "RRID:SCR_008286", "RRID:nif-0000-23934"] ["pdmutdb@molgen.vib-ua.be"] The Alzheimer Disease & Frontotemporal Dementia Mutation Database (AD&FTDMDB) aims at collecting all known mutations in the genes related to Alzheimer disease (AD) and fromtotemporal dementias (FTD). Mutations are collected from the literature and from presentations at scientific meetings. In addition, mutations can be submitted to AD&FTDMDB at this web site. eng ["disciplinary"] {"size": "", "updatedp": ""} 1999-09 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.molgen.vib-ua.be/Public/About/Mission.cfm [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["dementia", "gene", "genome", "mutation", "neurodegenerative disease"] [{"institutionName": "Human Genome Variation Society", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hgvs.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Antwerp, VIB - Center for Molecular Neurology, Neurodegenerative Brain Diseases Group", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.molgen.vib-ua.be/Public/Research/ResearchGroups/NBD.cfm?id=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Antwerp, VIB-Center for Molecular Neurology, Department of Molecular Genetics", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uantwerpen.be/en/rg/molecular-neurogenomics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines", "policyURL": "http://www.hgvs.org/content/guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.uantwerpen.be/en/library/about-us/rules/legal-framework/"}] restricted [] [] {} [] http://www.molgen.vib-ua.be/ADMutations/default.cfm?MT=3&ML=1&Page=Cite [] yes unknown [] [] {} see also: http://www.molgen.ua.ac.be/ADMutations/ 2017-08-23 2021-08-25 +r3d100012442 Environmental Information Platform eng [{"additionalName": "CEH-EIP", "additionalNameLanguage": "eng"}, {"additionalName": "Centre for Ecology & Hydrology - Environmental Information Platform", "additionalNameLanguage": "eng"}] https://eip.ceh.ac.uk/ [] ["https://eip.ceh.ac.uk/contact"] The Environmental Information Platform provides enhanced access to CEH's key data holdings via web-based tools, programming interfaces and a data catalogue. It enables you to visualise and interrogate some of the diverse environmental datasets held by CEH. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://eip.ceh.ac.uk/about/aboutEIP [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["atmosphere", "biodiversity", "drought", "hydrological summaries", "meteorology", "rainfall", "water resources"] [{"institutionName": "Centre for Ecology & Hydrology", "institutionAdditionalName": ["CEH"], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceh.ac.uk/", "institutionIdentifier": ["ROR:00pggkr55"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509", "RRID:SCR_012850", "RRID:nlx_27406"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datalicensing@ceh.ac.uk"]}] [{"policyName": "Licence, Terms and Conditions", "policyURL": "https://eidc.ceh.ac.uk/licences/wms/plain"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://eidc.ceh.ac.uk/licences/wms/plain"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://eidc.ceh.ac.uk/licences/OGL/plain"}] restricted [{"dataUploadLicenseName": "deposit data", "dataUploadLicenseURL": "https://eidc.ac.uk/deposit"}] [] {} ["DOI"] https://eip.ceh.ac.uk/chess/info#citation [] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-08-23 2021-03-05 +r3d100012443 Open IFC Model Repository eng [] http://openifcmodel.cs.auckland.ac.nz/ [] ["http://openifcmodel.cs.auckland.ac.nz/Home/Contact"] The aim of this repository is for it to be a location from which a wide variety of well analysed IFC-based data files can be sourced. It is planned that over time the number of data files will expand to provide significant coverage of the major aspects that would need to be tested for interoperability. eng ["disciplinary"] {"size": "130 models", "updatedp": "2021-03-05"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://openifcmodel.cs.auckland.ac.nz/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["architecture", "building information modeling"] [{"institutionName": "University of Auckland, Department of Computer Science", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cs.auckland.ac.nz/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["trebor@cs.auckland.ac.nz"]}] [{"policyName": "The aim of this repository", "policyURL": "http://openifcmodel.cs.auckland.ac.nz/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [{"dataUploadLicenseName": "CC-by-3.0", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}] ["other"] yes {} [] [] unknown unknown [] [] {} 2017-08-24 2021-09-09 +r3d100012444 Psi Open Data eng [] https://open-data.spr.ac.uk/ [] ["adrian.ryan@greyheron1.plus.com"] Psi Open Data is an open repository for parapsychology research data, operated by the Society for Psychical Research. The datasets may be freely used, modified, and shared by anyone – subject, at most, to the requirement to attribute and/or share-alike (see the license attached to each dataset for details). eng ["disciplinary"] {"size": "21 results", "updatedp": "2021-03-05"} 2017-06 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.spr.ac.uk/news/adrian-ryan-present-psi-open-data-parapsychological-association [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Psi", "anima", "metaphysics", "phenomenon", "philosophy", "psyche", "psychokinesis", "telepathy"] [{"institutionName": "Society for Psychical Research", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.spr.ac.uk/", "institutionIdentifier": ["ROR:00egtf878"], "responsibilityStartDate": "2017-07", "responsibilityEndDate": "", "institutionContact": ["adrian.ryan@greyheron1.plus.com"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/"}] restricted [] ["CKAN"] {} ["none"] [] unknown yes [] [] {} Publishers : https://open-data.spr.ac.uk/publishers - Citations: See the datasets 2017-08-26 2021-09-06 +r3d100012445 Rotterdam Ophthalmic Data Repository eng [{"additionalName": "ROD-REP", "additionalNameLanguage": "eng"}] http://www.rodrep.com/ [] ["http://www.rodrep.com/contact-us.html"] The Rotterdam Ophthalmic Data Repository (ROD-Rep) contains data sets related to ophthalmology that the Rotterdam Ophthalmic Institute has made freely available for researchers worldwide. This portal is an initiative of the Rotterdam Ophthalmic Institute, which is the research institute of the Rotterdam Eye Hospital. It provides the datasets from ophthalmic research (includes measurements such as visual fields and various imaging modalities, grades, etc.) for sharing and re-use to accelerate multi-disciplinary research, resulting in better ophthalmic care. The portal is the successor of the ORGIDS (or Open Rotterdam Glaucoma Imaging Data Sets site); which was an initiative of Koen Vermeer, Hans Lemij and Netty Dorrestijn and initial financial support was provided by Stichting Glaucoomfonds (The Netherlands). eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.rodrep.com/rationale.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Corneal microscopy", "Diabetic retinopathy", "Eye", "Glaucomatous", "Ophthalmology", "Retinopathy"] [{"institutionName": "Rotterdam Ophthalmic Institute", "institutionAdditionalName": ["ROI", "Rotterdams Oogheelkundig Instituut"], "institutionCountry": "NLD", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://roi.eyehospital.nl/", "institutionIdentifier": ["RRID:SCR_009776", "RRID:nlx_157653"], "responsibilityStartDate": "2009", "responsibilityEndDate": "", "institutionContact": ["A.Kleijn@eyehospital.nl (Secretary, Aletta Kleijn)", "K.Vermeer@eyehospital.nl (Director, Dr. ir. Koen Vermeer)", "https://roi.eyehospital.nl/en/node/2"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.rodrep.com/longitudinal-diabetic-retinopathy-screening---description.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://data.rodrep.com/license.html"}] restricted [] ["unknown"] no {} ["none"] http://www.rodrep.com/longitudinal-glaucomatous-vf-data---description.html ["none"] yes yes [] [{"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}] {} 2017-08-28 2021-03-05 +r3d100012447 MIDAS lit [{"additionalName": "Mokslo Duomen\u0173 Archyvas", "additionalNameLanguage": "lit"}, {"additionalName": "Nacionalinis atviros prieigos mokslini\u0173 tyrim\u0173 duomen\u0173 archyvas", "additionalNameLanguage": "lit"}, {"additionalName": "National Open Access Scientific Data Archive Information System", "additionalNameLanguage": "eng"}] https://www.midas.lt/public-app.html#/midas?lang=en [] ["https://www.midas.lt/public-app.html#/contact?lang=en", "ruta.mazonaite@ittc.vu.lt", "zibute.petrauskiene@mb.vu.lt"] MIDAS is national research data archive. The aim of the MIDAS is to collect, process, store and analyse scientific research data and other relevant information in all fields of knowledge, enabling free, easy and convenient access to it via the Internet. MIDAS provides services for registered and not-registered users: students, listeners, academics, researchers, scientific workers, research data evaluation and quality assurance experts, other participants in a science and studies system as well as individuals interested in research data. MIDAS consists of 2 parts: MIDAS portal (all users) and user account (internal portal for registered users).The Vilnius University is controller and main processor of MIDAS system. eng ["other"] {"size": "324 elements", "updatedp": "2021-03-12"} 2015 ["eng", "lit"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.midas.lt/public-app.html#/apie-midas?lang=en [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Lithuania", "Vilnius university", "health care", "multidisciplinary", "research data"] [{"institutionName": "Vilniaus universitetas", "institutionAdditionalName": ["Vilnius university"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vu.lt/en/", "institutionIdentifier": ["ROR:03nadee84", "RRID:SCR_011764", "RRID:nlx_149431"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ruta.mazonaite@ittc.vu.lt", "zibute.petrauskiene@mb.vu.lt"]}, {"institutionName": "Vilniaus universiteto Ligonine, Santaros Klinikos", "institutionAdditionalName": ["Vilnius University Hospital Santaros Clinics"], "institutionCountry": "LTU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://santa.lt/index.php?option=com_content&view=article&id=107&Itemid=379", "institutionIdentifier": ["ROR:0590pq693"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Rules and Regulations for the Handling of Research Data in MIDAS", "policyURL": "https://www.midas.lt/media/Tvarkos/Mokslini%C5%B3_tyrim%C5%B3_duomen%C5%B3_tvarkymo_MIDAS_taisykl%C4%97s.pdf"}, {"policyName": "Terms of use", "policyURL": "https://www.midas.lt/media/Tvarkos/Naud_taisykl%C4%97s.docx"}, {"policyName": "User Guide", "policyURL": "https://www.midas.lt/media/Tvarkos/VU-MIDAS-NVA.docx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.midas.lt/media/Tvarkos/Mokslini\u0173_tyrim\u0173_duomen\u0173_tvarkymo_MIDAS_taisykl\u0117s.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.midas.lt/media/Tvarkos/Naud_taisykl%C4%97s.docx"}] restricted [] ["other"] yes {} ["DOI"] https://www.midas.lt/media/Tvarkos/Naud_taisykl%C4%97s.docx [] yes yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-08-29 2021-09-06 +r3d100012448 MPDS eng [{"additionalName": "Materials Platform for Data Science", "additionalNameLanguage": "eng"}, {"additionalName": "PAULING FILE", "additionalNameLanguage": "eng"}] https://mpds.io/#start [] ["admin@mpds.io", "support@tilde.pro"] Online materials database (known as PAULING FILE project) with nearly 2 million entries: physical properties, crystal structures, phase diagrams, available via API, ready for modern data-intensive applications. The source of these entries are about 300,000 peer-reviewed publications in materials science, processed during the last 16 years by an international team of PhD editors. The results are presented online with a quick search interface. The basic access is provided for free. eng ["disciplinary"] {"size": "more than 20 M data points", "updatedp": "2021-03-12"} 2017-03 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://paulingfile.com/index.php?p=scope [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["PAULING FILE", "crystalline structures", "crystallography", "materials platform", "phase diagrams", "physical properties"] [{"institutionName": "Materials Platform for Data Science O\u00dc", "institutionAdditionalName": [], "institutionCountry": "EST", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://ariregister.rik.ee/lihtparing?lang=eng&search=1&rkood=14224849", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2017-03-20", "institutionContact": ["admin@mpds.io", "support@tilde.pro"]}, {"institutionName": "University of Geneva, Laboratory of Crystallography", "institutionAdditionalName": ["Universit\u00e9 de Gen\u00e8ve, Laboratoire de Cristallographie"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dqmp.unige.ch/cerny/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://dqmp.unige.ch/cerny/find-us/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://mpds.io/#formal/terms"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://mpds.io/#formal/terms"}] closed [] ["other"] yes {"api": "http://developer.mpds.io", "apiType": "REST"} [] [] unknown yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}] {} Software publishing: Materials Platform for Data Science OÜ, Sepapaja tn 6, Lasnamäe district, Tallinn city, Harju county, 15551, Estonia, European Union 2017-08-29 2021-09-03 +r3d100012449 MIPAS/Envisat Observations of Polar Stratospheric Clouds eng [] https://datapub.fz-juelich.de/slcs/mipas/psc/ [] ["r.spang@fz-juelich.de"] This data repository provides access to the climatology of polar stratospheric clouds (PSC) observations of Michelson Interferometer for Passive Atmospheric Sounding (MIPAS) onboard the Envisat satellite of the European Space Agency (ESA). The MIPAS instrument operated from July 2002 until April 2012. The infrared limb emission measurements provide a unique dataset of day and night observations of polar stratospheric clouds (PSCs) up to both poles. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-08-30 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datapub.fz-juelich.de/slcs/mipas/psc/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["ozone hole", "polar stratospheric clouds", "stratosphere"] [{"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "2017-08-30", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Space Science Institute, Polar Stratospheric Cloud Initiative", "institutionAdditionalName": ["ISSI", "PSCi"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.issibern.ch/teams/psci/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Climate Research Programme, Stratosphere-troposphere Processes And their Role in Climate", "institutionAdditionalName": ["SPARC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sparc-climate.org/", "institutionIdentifier": ["Wikidata:Q7622247"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sparc-climate.org/about/sparc-office/"]}] [{"policyName": "Legal notes", "policyURL": "https://datapub.fz-juelich.de/slcs/mipas/psc/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] yes {"api": "https://datapub.fz-juelich.de/slcs/mipas/psc/data", "apiType": "NetCDF"} [] https://datapub.fz-juelich.de/slcs/mipas/psc/ [] unknown yes [] [] {} 2017-08-30 2020-09-11 +r3d100012451 ISER Centres and Surveys eng [{"additionalName": "Institute for Social and Economic Research", "additionalNameLanguage": "eng"}] https://www.iser.essex.ac.uk/ [] ["https://www.iser.essex.ac.uk/contact", "iser@essex.ac.uk"] Originally established in 1989 at the University of Essex to house the British Household Panel Survey (BHPS), ISER has grown into a leading centre for the production and analysis of longitudinal studies. It encompasses the ESRC Research Centre on Micro-Social Change and the successor to the BHPS, Understanding Society. As well as providing unrivalled postgraduate study opportunities, ISER also houses an internationally-renowned Microsimulation Unit which develops and runs the tax and benefit model, EUROMOD. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.iser.essex.ac.uk/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["British Household Panel Survey - BHPS", "ECASS", "ESec", "EUROMOD", "Living in Newham", "Microsocial change - MiSoC", "NSSEC", "Understanding Society - UKHLS"] [{"institutionName": "Economic and Social Research Council", "institutionAdditionalName": ["ESRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://esrc.ukri.org/", "institutionIdentifier": ["RRID:SCR_011204", "RRID:nlx_64401"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Essex, Institute for Social and Economic Research", "institutionAdditionalName": ["ISER"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iser.essex.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iser.essex.ac.uk/contact"]}] [{"policyName": "Information Security Policy", "policyURL": "https://www.iser.essex.ac.uk/info-sec"}, {"policyName": "ULSC standards", "policyURL": "https://www.iser.essex.ac.uk/ulsc/standards"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iser.essex.ac.uk/bhps/acquiring-the-data"}] closed [] [] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2017-08-31 2021-10-08 +r3d100012455 clarin:el inventory of language resources and services eng [] https://inventory.clarin.gr/ [] ["https://www.clarin.gr/en/support/helpdesks", "legal-helpdesk@clarin.gr", "metadata-helpdesk@clarin.gr"] clarin:el is the Greek national network of language resources, a nation-wide Research Infrastructure devoted to the sustainable storage, sharing, dissemination and preservation of language resources. CLARIN EL infrastructure, which is a Greek nation-wide Research Infrastructure devoted to the sustainable storage, sharing, dissemination and preservation of language resources (LRs) and aims at increasing access to and augmentation of such resources at a national scale and beyond. It is an open, integrated, secure and interoperable storage, sharing and processing infrastructure for LRs (datasets, tools and processing services) for all domains domains and disciplines where language plays a critical role, notably. CLARIN EL is implemented in the framework of the CLARIN Attiki, national project in support of ESFRI/2006 Research Infrastructures. eng ["disciplinary"] {"size": "593 language resources", "updatedp": "2021-02-10"} ["ell", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://inventory.clarin.gr/info/#clarinel_services [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ATHENA Repo", "AUTh Repo", "CGL Repo", "Hosted LRs Repo", "Ionian U. Repo", "NCSR- D Repo", "U. Aegean Repo", "Uo A Repo"] [{"institutionName": "Aristotle University of Thessaloniki", "institutionAdditionalName": ["\u0391\u03c1\u03b9\u03c3\u03c4\u03bf\u03c4\u03ad\u03bb\u03b5\u03b9\u03bf \u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.auth.gr/en", "institutionIdentifier": ["ROR:02j61yw88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Athena Research & Innovation Information Technologies", "institutionAdditionalName": ["\"\u0391\u03b8\u03b7\u03bd\u03ac\" - \u0395\u03c1\u03b5\u03c5\u03bd\u03b7\u03c4\u03b9\u03ba\u03cc \u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u039a\u03b1\u03b9\u03bd\u03bf\u03c4\u03bf\u03bc\u03af\u03b1\u03c2 \u03c3\u03c4\u03b9\u03c2 \u03a4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03af\u03b5\u03c2 \u03c4\u03b7\u03c2 \u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1\u03c2, \u03c4\u03c9\u03bd \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03b9\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c4\u03b7\u03c2 \u0393\u03bd\u03ce\u03c3\u03b7\u03c2", "Athena RC"], "institutionCountry": "GRC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.athena-innovation.gr/en.html", "institutionIdentifier": ["ROR:0576by029"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre for the Greek Language", "institutionAdditionalName": ["\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae\u03c2 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://greeklanguage.gr/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "GRNET", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://grnet.gr/en", "institutionIdentifier": ["ROR:05tcasm11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ionian University. Laboratory on Digital Libraries and Electronic Publishing", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dlib.ionio.gr/portal/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Centre for Scientific Research \"Demokritos\"", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.demokritos.gr/?lang=en", "institutionIdentifier": ["ROR:038jp4m40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["NCSR Demokritos"]}, {"institutionName": "National and Kapodistrian University of Athens", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.uoa.gr/", "institutionIdentifier": ["ROR:04gnjpq42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Panteion University", "institutionAdditionalName": ["\u03a0\u0391\u039d\u03a4\u0395\u0399\u039fN \u03a0\u0391\u039d\u0395\u03a0\u0399\u03a3\u03a4\u0397\u039c\u0399\u039f"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.panteion.gr/index.php/en/", "institutionIdentifier": ["ROR:056ddyv20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of the Aegean", "institutionAdditionalName": ["\u039b\u03cc\u03c6\u03bf\u03c2 \u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03af\u03bf\u03c5"], "institutionCountry": "GRC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www1.aegean.gr/aegean2/index.html", "institutionIdentifier": ["ROR:03zsp3p94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "clarin:el", "institutionAdditionalName": [], "institutionCountry": "GRC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.clarin.gr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.clarin.gr/en/content/contact-0"]}] [{"policyName": "clarin:el Terms of Service", "policyURL": "https://auth.clarin.gr/site_media/Terms_Of_Service.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/bsd-license.php"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/gpl-license.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/fdl-1.3.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.html"}] restricted [] [] {} ["hdl"] [] unknown yes [] [] {} 2017-09-01 2021-09-09 +r3d100012457 AmoebaDB eng [] https://amoebadb.org/amoeba/app ["FAIRsharing_doi:10.25504/FAIRsharing.swbypy", "MIR:00000148", "OMICS_03152"] ["https://amoebadb.org/amoeba/app/contact-us"] AmoebaDB belongs to the EuPathDB family of databases and is an integrated genomic and functional genomic database for Entamoeba and Acanthamoeba parasites. In its first iteration (released in early 2010), AmoebaDB contains the genomes of three Entamoeba species (see below). AmoebaDB integrates whole genome sequence and annotation and will rapidly expand to include experimental data and environmental isolate sequences provided by community researchers . The database includes supplemental bioinformatics analyses and a web interface for data-mining. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://amoebadb.org/amoeba//showXmlDataContent.do?name=XmlQuestions.About [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "bioinformatics", "cDNA/EST", "genetic variation", "genomes", "genomics", "microarray expression", "protein", "sequences"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIAID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}, {"policyName": "NIH Genomic Data Sharing", "policyURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://amoebadb.org/amoeba//showXmlDataContent.do?name=XmlQuestions.About#use"}] restricted [{"dataUploadLicenseName": "Data Submission and Release on EuPathDB Databases", "dataUploadLicenseURL": "http://amoebadb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "https://eupathdb.org/eupathdb/serviceList.jsp", "apiType": "REST"} ["none"] http://amoebadb.org/amoeba/showXmlDataContent.do?name=XmlQuestions.About [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-05 2021-09-09 +r3d100012458 GiardiaDB eng [] http://giardiadb.org/giardiadb/ ["FAIRsharing_doi:10.25504/FAIRsharing.e7skwg", "MIR:00000151", "OMICS_03161", "RRID:SCR_013377", "RRID:nif-0000-02908"] ["http://giardiadb.org/giardiadb//contact.do"] Giardia lamblia is a significant, environmentally transmitted, human pathogen and an amitochondriate protist. It is a major contributor to the enormous worldwide burden of human diarrheal diseases, yet the basic biology of this parasite is not well understood. No virulence factor has been identified. The Giardia lamblia genome contains only 12 million base pairs distributed onto five chromosomes. Its analysis promises to provide insights about the origins of nuclear genome organization, the metabolic pathways used by parasitic protists, and the cellular biology of host interaction and avoidance of host immune systems. Since the divergence of Giardia lamblia lies close to the transition between eukaryotes and prokaryotes in universal ribosomal RNA phylogenies, it is a valuable, if not unique, model for gaining basic insights into genetic innovations that led to formation of eukaryotic cells. In evolutionary terms, the divergence of this organism is at least twice as ancient as the common ancestor for yeast and man. A detailed study of its genome will provide insights into an early evolutionary stage of eukaryotic chromosome organization as well as other aspects of the prokaryotic / eukaryotic divergence. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://giardiadb.org/giardiadb//showXmlDataContent.do?name=XmlQuestions.About [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Giardia lamblia", "Trichomonas vaginalis", "diarrhea", "gene ontology", "genomics", "metabolic pathway", "parasites", "pathogene", "sequences"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["oharb@pcbi.upenn.edu"]}] [{"policyName": "NIAID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}, {"policyName": "NIH Genomic Data Sharing", "policyURL": "https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://giardiadb.org/giardiadb//showXmlDataContent.do?name=XmlQuestions.About"}] restricted [{"dataUploadLicenseName": "Data Submission and Release on EuPathDB Databases", "dataUploadLicenseURL": "http://giardiadb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "https://eupathdb.org/eupathdb/serviceList.jsp", "apiType": "REST"} ["none"] http://giardiadb.org/giardiadb//showXmlDataContent.do?name=XmlQuestions.About#citingproviders ["none"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} GiardiaDB is a member of pathogen-databases that are housed under the NIAID-funded EuPathDB Bioinformatics Resource Center (BRC) umbrella. 2017-09-05 2018-12-17 +r3d100012459 MicrosporidiaDB eng [] http://microsporidiadb.org/micro/ ["FAIRsharing_doi:10.25504/FAIRsharing.vk0ax6", "MIR:00000152", "OMICS_03153"] ["http://microsporidiadb.org/micro/contact.do"] MicrosporidiaDB belongs to the EuPathDB family of databases and is an integrated genomic and functional genomic database for the phylum Microsporidia. In its first iteration (released in early 2010), MicrosporidiaDB contains the genomes of two Encephalitozoon species (see below). MicrosporidiaDB integrates whole genome sequence and annotation and will rapidly expand to include experimental data and environmental isolate sequences provided by community researchers. The database includes supplemental bioinformatics analyses and a web interface for data-mining. eng ["disciplinary"] {"size": "50 data sets", "updatedp": "2017-12-06"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://microsporidiadb.org/micro/showXmlDataContent.do?name=XmlQuestions.About [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Chip sequencing", "DNA", "FAIR", "RNA", "genetics", "microarray", "proteomics"] [{"institutionName": "National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Centers", "institutionAdditionalName": ["BRC", "NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ned.nih.gov/search/ViewDetails.aspx?NIHID=2001097136"]}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gla.ac.uk/connect/contact/"]}, {"institutionName": "University of Liverpool", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.liverpool.ac.uk/contacts/"]}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["droos@sas.upenn.edu"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "Data Access Policy", "policyURL": "http://microsporidiadb.org/micro//showXmlDataContent.do?name=XmlQuestions.About"}, {"policyName": "NIAID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://microsporidiadb.org/micro/showXmlDataContent.do?name=XmlQuestions.About"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "http://microsporidiadb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "http://microsporidiadb.org/micro/serviceList.jsp", "apiType": "REST"} ["none"] http://microsporidiadb.org/micro/showXmlDataContent.do?name=XmlQuestions.About#citingproviders [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-05 2018-12-17 +r3d100012460 PiroplasmaDB eng [] https://piroplasmadb.org/piro/app ["MIR:00000351", "OMICS_06546"] ["https://piroplasmadb.org/piro/app/contact-us"] A genome database for the genus Piroplasma. PiroplasmaDB is a member of pathogen-databases that are housed under the NIAID-funded EuPathDB Bioinformatics Resource Center (BRC) umbrella. eng ["disciplinary", "disciplinary"] {"size": "31 data sets", "updatedp": "2017-12-07"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://piroplasmadb.org/piro/showXmlDataContent.do?name=XmlQuestions.About [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["FAIR", "epigenomics", "genomics"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID", "NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Georgia", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Liverpool", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": ["UPenn"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "http://piroplasmadb.org/piro/showXmlDataContent.do?name=XmlQuestions.About"}, {"policyName": "NIAID Data Sharing and Reslease Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://piroplasmadb.org/piro/showXmlDataContent.do?name=XmlQuestions.About#use"}] restricted [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "http://piroplasmadb.org/piro/dataSubmission.jsp"}] ["CKAN"] {"api": "http://piroplasmadb.org/piro/serviceList.jsp", "apiType": "REST"} ["none"] http://piroplasmadb.org/piro/showXmlDataContent.do?name=XmlQuestions.About#citing [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-05 2021-09-09 +r3d100012461 TrichDB eng [{"additionalName": "Trichomonas vaginalis Sequence Database", "additionalNameLanguage": "eng"}] http://trichdb.org/trichdb/ ["FAIRsharing_doi:10.25504/FAIRsharing.pv0ezt", "MIR:00100199", "OMICS_03162"] ["http://trichdb.org/trichdb/contact.do", "oharb@pcbi.upenn.edu"] TrichDB integrated genomic resources for the eukaryotic protist pathogens Trichomonas vaginalis. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://trichdb.org/trichdb//showXmlDataContent.do?name=XmlQuestions.About [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["FAIR", "diarrhea", "human pathogen", "protist"] [{"institutionName": "Burroughs Wellcome Fund", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bwfund.org/", "institutionIdentifier": ["RRID:SCR_005772", "RRID:nlx_149371"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bwfund.org/contact"]}, {"institutionName": "J. Craig Venter Institute, The Institute for Genomic Research", "institutionAdditionalName": ["TIGR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jcvi.org//", "institutionIdentifier": ["RRID:SCR_011269", "RRID:nlx_42542"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["RRID:SCR_012740", "RRID:nlx_inv_1005100"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}, {"institutionName": "National Institute of Allergy and Infectious Diseases, Bioinformatics Resource Center", "institutionAdditionalName": ["NIAID, BRC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/research/bioinformatics-resource-centers", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Lawrence Ellison Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ellisonfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ellisonfoundation.org/contact"]}, {"institutionName": "University of Georgia, USA", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uga.edu/", "institutionIdentifier": ["RRID:SCR_004954", "RRID:nlx_44218"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Glasgow", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gla.ac.uk/", "institutionIdentifier": ["RRID:SCR_011646", "RRID:nlx_29645"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Liverpool", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/", "institutionIdentifier": ["RRID:SCR_005424", "RRID:nlx_50695"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.liverpool.ac.uk/contacts/"]}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": ["RRID:SCR_011784", "RRID:nlx_91258"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sanger.ac.uk/about/who-we-are/sanger-institute/contact-us"]}] [{"policyName": "Data Access Policy", "policyURL": "http://trichdb.org/trichdb//showXmlDataContent.do?name=XmlQuestions.About#use"}, {"policyName": "NIAID Data Sharing and Release Guidelines", "policyURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://trichdb.org/trichdb//showXmlDataContent.do?name=XmlQuestions.About"}] restricted [{"dataUploadLicenseName": "Data Submission on EuPathDB Databases", "dataUploadLicenseURL": "http://trichdb.org/EuPathDB_datasubm_SOP.pdf"}, {"dataUploadLicenseName": "Submit Your Data to TrichDB", "dataUploadLicenseURL": "http://trichdb.org/trichdb//dataSubmission.jsp"}] ["CKAN"] {} ["none"] http://trichdb.org/trichdb//showXmlDataContent.do?name=XmlQuestions.About#citing [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-05 2018-12-17 +r3d100012462 OrthoMCL eng [{"additionalName": "Ortholog Groups of Protein Sequences", "additionalNameLanguage": "eng"}] http://orthomcl.org/orthomcl/ ["OMICS_05343", "RRID:SCR_007839", "RRID:nif-0000-03230"] ["help@orthomcl.org", "http://orthomcl.org/orthomcl/contact.do"] OrthoMCL is a genome-scale algorithm for grouping orthologous protein sequences. It provides not only groups shared by two or more species/genomes, but also groups representing species-specific gene expansion families. So it serves as an important utility for automated eukaryotic genome annotation. OrthoMCL starts with reciprocal best hits within each genome as potential in-paralog/recent paralog pairs and reciprocal best hits across any two genomes as potential ortholog pairs. Related proteins are interlinked in a similarity graph. Then MCL (Markov Clustering algorithm,Van Dongen 2000; www.micans.org/mcl) is invoked to split mega-clusters. This process is analogous to the manual review in COG construction. MCL clustering is based on weights between each pair of proteins, so to correct for differences in evolutionary distance the weights are normalized before running MCL. eng ["disciplinary"] {"size": "150 Genomes, 1.398.546 Protein Sequences, 124.740 Ortholog Groups", "updatedp": "2018-04-27"} 2005-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://orthomcl.org/orthomcl/about.do#background [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["BLAST", "FAIR", "protein structure"] [{"institutionName": "National Institutes of Health, National Institute of Allergy and Infectious Diseseases, Department of Health and Human Services", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pennsylvania, Penn Institute for Biomedical Informatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://upibi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.niaid.nih.gov/research/data-sharing-and-release-guidelines"}] restricted [{"dataUploadLicenseName": "Data Submission Policy", "dataUploadLicenseURL": "https://eupathdb.org/EuPathDB_datasubm_SOP.pdf"}] ["CKAN"] yes {"api": "https://eupathdb.org/eupathdb/serviceList.jsp", "apiType": "REST"} [] https://eupathdb.org/eupathdb/showXmlDataContent.do?name=XmlQuestions.About#citing [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-05 2021-10-25 +r3d100012463 ADS eng [{"additionalName": "Arctic Data archive System", "additionalNameLanguage": "eng"}] https://ads.nipr.ac.jp/portal/index.action ["FAIRsharing_doi:10.25504/FAIRsharing.WDGf1A"] ["ads-info@nipr.ac.jp"] The arctic data archive system (ADS) collects observation data and modeling products obtained by various Japanese research projects and gives researchers to access the results. By centrally managing a wide variety of Arctic observation data, we promote the use of data across multiple disciplines. Researchers use these integrated databases to clarify the mechanisms of environmental change in the atmosphere, ocean, land-surface and cryosphere. That ADS will be provide an opportunity of collaboration between modelers and field scientists, can be expected. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://ads.nipr.ac.jp/portal/index.action [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agricultuer", "antarctic", "arctic", "climate", "climatology", "ecosystem", "forestry", "geography", "hydrology", "in-situ data", "meteorology", "model output", "oceanography", "remote sensing", "water", "weather"] [{"institutionName": "Ministry of Education, Culture, Sports, Science and Technology", "institutionAdditionalName": ["MEXT"], "institutionCountry": "JPN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mext.go.jp/en/", "institutionIdentifier": ["ROR:048rj2z13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Polar Research", "institutionAdditionalName": ["NIPR", "\u56fd\u7acb\u6975\u5730\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nipr.ac.jp/english/", "institutionIdentifier": ["ROR:05k6m5t95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ADS Privacy Policy", "policyURL": "https://ads.nipr.ac.jp/portal/public/pdf/PrivacyPolicy.pdf"}, {"policyName": "Arctic Data archive System Data Policy", "policyURL": "https://ads.nipr.ac.jp/portal/public/pdf/aboutus/ADSDataPolicy_en.pdf"}, {"policyName": "GRENE Data Guidelines", "policyURL": "https://ads.nipr.ac.jp/portal/public/pdf/aboutus/GRENEArcticProjectFinal_en.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://ads.nipr.ac.jp/portal/public/pdf/aboutus/ADSDataPolicy_en.pdf"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] yes {"api": "https://ads.nipr.ac.jp/portal/kiwa/OaiReference.action", "apiType": "OAI-PMH"} ["DOI"] https://ads.nipr.ac.jp/portal/public/pdf/aboutus/ADSDataPolicy_en.pdf [] yes no [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-07 2021-09-08 +r3d100012464 GeneWeaver.org eng [{"additionalName": "ODE", "additionalNameLanguage": "eng"}, {"additionalName": "The Ontological Discovery Environment", "additionalNameLanguage": "eng"}] http://beta.geneweaver.org/ ["RRID:OMICS_02232", "RRID:SCR_003009", "RRID:nif-0000-00517"] ["Elissa.Chesler@jax.org", "Erich_Baker@baylor.edu", "geneweaver@gmail.com"] GeneWeaver combines cross-species data and gene entity integration, scalable hierarchical analysis of user data with a community-built and curated data archive of gene sets and gene networks, and tools for data driven comparison of user-defined biological, behavioral and disease concepts. Gene Weaver allows users to integrate gene sets across species, tissue and experimental platform. It differs from conventional gene set over-representation analysis tools in that it allows users to evaluate intersections among all combinations of a collection of gene sets, including, but not limited to annotations to controlled vocabularies. There are numerous applications of this approach. Sets can be stored, shared and compared privately, among user defined groups of investigators, and across all users. eng ["disciplinary"] {"size": "130.196 public geneSets; 1986743 genes", "updatedp": "2017-09-13"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://beta.geneweaver.org/help/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "functional genomics experiments", "gene", "genomic data"] [{"institutionName": "National Institute of Alcohol Abuse and Alcoholism, Integrative Neuroscience Initiative on Alcoholism", "institutionAdditionalName": ["INIA Stress", "NIAAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.iniastress.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": ["JAX"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.jax.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Datasharing", "policyURL": "http://beta.geneweaver.org/datasharing"}, {"policyName": "NIH Data Sharing Policy", "policyURL": "https://grants.nih.gov/grants/policy/data_sharing/"}, {"policyName": "Policies", "policyURL": "http://beta.geneweaver.org/help/#policies"}, {"policyName": "Usage", "policyURL": "http://beta.geneweaver.org/usage"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.5/"}] restricted [{"dataUploadLicenseName": "Share my data", "dataUploadLicenseURL": "http://geneweaver.org/wiki/index.php?title=Interactive_Help#Upload_.2F_Share_my_data"}] ["MySQL"] {"api": "https://geneweaver.org/api/", "apiType": "REST"} [] http://beta.geneweaver.org/help/#faq ["ORCID"] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://geneweaver.org/wiki/index.php?title=Special:RecentChanges&feed=atom", "syndicationType": "ATOM"} former website is http://www.geneweaver.org/ 2017-09-07 2017-09-20 +r3d100012465 ESA Planetary Science Archive eng [{"additionalName": "PSA", "additionalNameLanguage": "eng"}] https://archives.esac.esa.int/psa/#!Home%20View [] ["https://www.cosmos.esa.int/web/psa/contact-us"] The European Space Agency's Planetary Science Archive (PSA) is the central repository for all scientific and engineering data returned by ESA's Solar System missions: currently including Giotto, Huygens, Mars Express, Venus Express, Rosetta, SMART-1 and ExoMars 16, as well as several ground-based cometary observations. Future missions hosted by the PSA will be Bepi Colombo, ExoMars Rover and Surface Platform and Juice. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.cosmos.esa.int/web/psa/psa-introduction [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Bepi Colombo", "ESA solar system missions", "ExoMars 16", "ExoMars Rover", "Giotto", "Huygens", "Juice", "Mars Express", "Rosetta", "SMART-1", "Surface Platform", "Venus Express", "ground-based cometary observations"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/ESA", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.esa.int/Services/Contacts"]}] [{"policyName": "PSA user guide", "policyURL": "https://www.cosmos.esa.int/documents/772136/977578/PSA_UG_v5.0.pdf/c61fd369-d246-4b83-841b-01bf4695b88e"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://psa.esa.int"}] closed [] [] yes {"api": "ftp://psa.esac.esa.int/pub/mirror/", "apiType": "FTP"} ["none"] https://www.cosmos.esa.int/web/psa/psa-acknowledgement [] unknown unknown [] [] {} 2017-09-08 2021-09-09 +r3d100012467 OpenAgrar deu [{"additionalName": "OA", "additionalNameLanguage": "eng"}] https://www.openagrar.de/content/index.xml?lang=en [] ["https://www.openagrar.de/content/below/contact.xml"] OpenAgrar publication server now also features research data. Creators support further development as claimed on the Open-Access Days 2017 (Dresden, Germany) eng ["disciplinary"] {"size": "15 datasets", "updatedp": "2018-03-16"} 2017 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.openagrar.de/content/brand/register.xml [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "agriculture", "avian", "crop", "grapes", "plants", "wine"] [{"institutionName": "Bundesanstalt f\u00fcr Landwirtschaft und Ern\u00e4hrung", "institutionAdditionalName": ["BLE", "Federal Office for Agriculture and Food"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ble.de/DE/Startseite/startseite_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["helmut.michels@ble.de", "openagar@bmel-forschung.de"]}, {"institutionName": "Bundesinstitut f\u00fcr Risikobewertung, Bibliothek", "institutionAdditionalName": ["BfR", "German Federal Institute for risk assessment"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bfr.bund.de/de/bibliothek-6902.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliothek@bfr.bund.de"]}, {"institutionName": "Bundesministerium f\u00fcr Ern\u00e4hrung und Landwirtschaft", "institutionAdditionalName": ["BMEL", "Federal Ministry of Food and Agriculture"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmel.de/DE/Startseite/startseite_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Biomasseforschungszentrum gemeinn\u00fctzige GmbH", "institutionAdditionalName": ["DBFZ", "German Biomass Research Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dbfz.de/aktuelles.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Friedrich-L\u00f6ffler-Institut, Bundesforschungsinstitut f\u00fcr Tiergesundheit", "institutionAdditionalName": ["FLI", "Friedrich-L\u00f6ffler-Institut, Federal Research Institute for Animal Health"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fli.de/de/startseite/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliothek.riems@fli.de"]}, {"institutionName": "Julius-K\u00fchn-Institut, Informationszentrum und Bibliothek", "institutionAdditionalName": ["Bundesforschungsinstitut f\u00fcr Kulturpflanzen", "Federal Research Centre for Cultivated Plants", "JKI"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/ib/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["IB@julius-kuehn.de"]}, {"institutionName": "Max Rubner-Institut, Bibliothek, Information und Dokumentation", "institutionAdditionalName": ["MRI"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mri.bund.de/de/service/bibliothek/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["openagrar@mri.bund.de"]}, {"institutionName": "Th\u00fcnen-Institut", "institutionAdditionalName": ["Th\u00fcnen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.thuenen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["zi@thuenen.de"]}] [{"policyName": "Registrieren", "policyURL": "https://www.openagrar.de/content/brand/register.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] {} ["DOI"] ["other"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Open AGrar uses altmetric metrics. OpenAgrar uses MyCoRe repository software. 2017-09-12 2019-04-10 +r3d100012468 Digital Collections ULB Düsseldorf eng [{"additionalName": "Digitale Sammlungen Heinrich Heine Universit\u00e4t D\u00fcsseldorf", "additionalNameLanguage": "deu"}] http://digital.ub.uni-duesseldorf.de/?lang=en [] ["ULB-digi-vorschlag@ulb.hhu.de", "http://digital.ub.uni-duesseldorf.de/doc/page/contact"] In the digital collections, you can take a look at the digitized prints from the holdings of the ULB Düsseldorf free of cost. In special collections, the ULB unites rare, valuable and unique parts of holdings that are installed as an ensemble. Deposita, unpublished works, donations, acquisition of rare books etc. were and are an important source for the constant growth of the library. These treasures and specialties - beyond their academic value - also contribute substantially to the profile of the ULB. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.ulb.hhu.de/en/researching-and-exploring.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Heinrich Heine Universit\u00e4t D\u00fcsseldorf, Universit\u00e4ts- und Landesbibliothek", "institutionAdditionalName": ["ULB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ulb.hhu.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Service", "policyURL": "http://digital.ub.uni-duesseldorf.de/doc/page/service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/4.0/deed.de"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/mark/1.0/"}] restricted [] ["other"] {"api": "http://digital.ub.uni-duesseldorf.de/oai/", "apiType": "OAI-PMH"} ["URN"] [] no yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://digital.ub.uni-duesseldorf.de/rss", "syndicationType": "RSS"} 2017-09-12 2021-09-09 +r3d100012469 Verbund Forschungsdaten Bildung deu [{"additionalName": "German Network for Educational Research Data", "additionalNameLanguage": "eng"}, {"additionalName": "VerbundFDB", "additionalNameLanguage": "deu"}] https://www.forschungsdaten-bildung.de [] ["https://www.forschungsdaten-bildung.de/kontakt", "verbund@forschungsdaten-bildung.de"] To target the multidisciplinary, broad scale nature of empirical educational research in the Federal Republic of Germany, a networked research data infrastructure is required which brings together disparate services from different research data providers, delivering services to researchers in a usable, needs-oriented way. The Verbund Forschungsdaten Bildung (Educational Research Data Alliance, VFDB) therefore aims to cooperate with relevant actors from science, politics and research funding institutes to set up a powerful infrastructure for empirical educational research. This service is meant to adequately capture specific needs of the scientific communities and support empirical educational research in carrying out excellent research. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11003 Social Psychology, Industrial and Organisational Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.dipf.de/en/research/projects/research-data-education-alliance-setup-and-design-of-a-research-data-infrastructure-for-empirical-educational-research-2nd-funding-phase?set_language=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["education", "pedagogy", "qualitative data", "quantitative data", "social sciences", "survey data"] [{"institutionName": "DIPF | Leibniz-Institut f\u00fcr Bildungsforschung und Bildungsinformation", "institutionAdditionalName": ["DIPF", "DIPF | Leibniz Institute for Research and Information in Education"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.dipf.de/en/dipf-news", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "2019", "institutionContact": []}, {"institutionName": "GESIS - Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS", "GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gesis.org/kontakt/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Institute for Educational Quality Improvement", "institutionAdditionalName": ["Humboldt-Universit\u00e4t zu Berlin, Institut zur Qualit\u00e4tsentwicklung im Bildungswesen", "IQB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iqb.hu-berlin.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iqb.hu-berlin.de/institut/staff"]}, {"institutionName": "Rat f\u00fcr Sozial- und Wirtschaftsdaten", "institutionAdditionalName": ["RatSWD"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ratswd.de/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Verbund Forschungsdaten Bildung", "institutionAdditionalName": ["VerbundFDB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.forschungsdaten-bildung.de/ueber-verbund", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Datenkuratierung bei den FDZ", "policyURL": "https://www.forschungsdaten-bildung.de/datenkuratierung?la=de"}, {"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten der Allianz der deutschen Wissenschaftsorgnisationen", "policyURL": "http://www.allianzinitiative.de/de/handlungsfelder/forschungsdaten/grundsaetze.html"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/download/publikationen_rat/RatSWD_FDZKriterien.PDF"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.forschungsdaten-bildung.de/get_files.php?action=get_file&file=VFDB_AGB_V1_20170725.pdf"}] restricted [{"dataUploadLicenseName": "Daten teilen", "dataUploadLicenseURL": "https://www.forschungsdaten-bildung.de/daten-teilen"}] ["other"] {} ["DOI"] [] unknown yes ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} FDZ Bildung am DIPF is part of Forschungsdaten Bildung. 2017-09-19 2021-09-21 +r3d100012470 Edition Topoi Collections eng [{"additionalName": "edition|topoi", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/ [] ["edition@topoi.org", "https://edition-topoi.org/publishing_with_us/contact"] The Edition Topoi research platform is an innovative, reliable information infrastructure. It serves the publication of citable research data such as 3D models, high-resolution pictures, data and databases. The content and its meta data are subject to peer review and made available on an Open Access basis. The published or publishable combination of citable research content and its technical and contextually relevant meta data is defined as Citable. The public data are generated via a cloud and can be directly connected with the individual computing environment. eng ["disciplinary"] {"size": "10 collections; 6 bags; 2 notebooks", "updatedp": "2017-09-21"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/#by_type=collection;page=1 [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["archaeology", "architecture", "astronomy", "epigraphy", "history of science", "near east studies", "prehistory", "religious studies"] [{"institutionName": "Edition | Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://edition-topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://edition-topoi.org/publishing_with_us/contact"]}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}] [{"policyName": "Berlin Declaration edition | topoi", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}, {"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://edition-topoi.org/publishing_with_us/open-access"}] restricted [{"dataUploadLicenseName": "edition | topoi Copyright Guidelines", "dataUploadLicenseURL": "http://www.topoi.org/wp-content/uploads/2010/12/EdT_Leitfaden-Urheberrecht_en_201608.pdf"}] ["unknown"] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes ["other"] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} partners: http://edition-topoi.org/publishing_with_us/our-partners 2017-09-20 2021-09-09 +r3d100012471 data.world eng [] https://data.world/ ["FAIRsharing_DOI:10.25504/FAIRsharing.pP4ALT"] ["hello@data.world"] A data repository and social network so that researchers can interact and collaborate, also offers tutorials and datasets for data science learning. "data.world is designed for data and the people who work with data. From professional projects to open data, data.world helps you host and share your data, collaborate with your team, and capture context and conclusions as you work." eng ["other"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.world/benefit-statement/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "data.world, inc", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://data.world/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Community guidelines", "policyURL": "https://data.world/policy/community-guidelines/"}, {"policyName": "data.world copyright and intellectual property rights policy", "policyURL": "https://data.world/policy/dmca/"}, {"policyName": "data.world terms of use", "policyURL": "https://data.world/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/share-your-work/licensing-types-examples/public-domain/pdm/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://opendatacommons.org/licenses/pddl/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://help.data.world/hc/en-us/articles/115006114287-Supported-license-types"}] restricted [] ["CKAN"] yes {"api": "https://dwapi.api-docs.io/v0/sparql", "apiType": "SPARQL"} ["none"] [] unknown unknown [] [] {"syndication": "https://meta.data.world/feed", "syndicationType": "ATOM"} 2017-09-20 2021-11-16 +r3d100012473 Map collection Charles University Faculty of Science eng [{"additionalName": "Digit\u00e1lni mapov\u00e1 sbirka", "additionalNameLanguage": "ces"}, {"additionalName": "Mapov\u00e1 sb\u00edrka P\u0159\u00edrodov\u011bdeck\u00e9 fakulty UK", "additionalNameLanguage": "ces"}] https://www.natur.cuni.cz/geography/map-collection?set_language=en [] ["mapcol@natur.cuni.cz"] The Map Collection at the Faculty of Science CU (formerly the State Map Collection) belongs to one of the most extensive university map collections in Central and East Europe. The map collection is digitized as part of the Czech Ministry of Culture's project NAKI. eng ["disciplinary", "institutional"] {"size": "60.364 datasets; 130.000 map sheets; around 3.000 atlases; 60 globes", "updatedp": "2017-09-22"} ["ces", "deu", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.natur.cuni.cz/geography/map-collection/catalogue-of-the-map-collection-1 [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Czech cartographers", "Czech maps", "history of cartography", "military maps", "scientific maps"] [{"institutionName": "Charles University, Faculty of Science", "institutionAdditionalName": ["Univerzita Karlova, P\u0159\u00edrodov\u011bdeck\u00e1 fakulta"], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.natur.cuni.cz/eng", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dekan@natur.cuni.cz"]}] [{"policyName": "DSA Assessment", "policyURL": "https://assessment.datasealofapproval.org/assessment_184/seal/html/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://assessment.datasealofapproval.org/assessment_184/seal/pdf/"}] restricted [{"dataUploadLicenseName": "Submission agreement", "dataUploadLicenseURL": "https://knihovna.cuni.cz/wp-content/uploads/SKMBT_C55014112512590.pdf"}] [] no {} ["none"] [] unknown yes ["DSA"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} The Map Collection is part of Digitální univerzitní repozitár. The Map Collection has undergone DRAMBORA self-audit and SPOT analysis. 2017-09-21 2017-09-27 +r3d100012474 Parkinson Disease Mutation Database eng [{"additionalName": "PDmutDB", "additionalNameLanguage": "eng"}] http://www.molgen.vib-ua.be/PDMutDB/ [] ["pdmutdb@molgen.vib-ua.be"] The Parkinson disease Mutation Database (PDmutDB) aims at collecting all known mutations in the genes related to Parkinson disease (PD). Mutations are collected from the literature and from presentations at scientific meetings. In addition, mutations can be submitted to PDmutDB at this web site. eng ["disciplinary"] {"size": "535 different DNA variations; and 2.084 families", "updatedp": "2017-08-23"} 2009-11 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.molgen.vib-ua.be/Public/About/Mission.cfm [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["brain disease", "dementia", "disease", "genome", "mutation"] [{"institutionName": "Human Genome Variation Society", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hgvs.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Antwerp, VIB - Center for Molecular Neurology, Neurodegenerative Brain Diseases Group", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.molgen.vib-ua.be/Public/Research/ResearchGroups/NBD.cfm?id=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Antwerp, VIB-Center for Molecular Neurology, Department of Molecular Genetics", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uantwerpen.be/en/rg/molecular-neurogenomics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines", "policyURL": "http://www.hgvs.org/content/guidelines"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.uantwerpen.be/en/library/about-us/rules/legal-framework/"}] restricted [] [] {} ["none"] http://www.molgen.vib-ua.be/ADMutations/default.cfm?MT=3&ML=1&Page=Cite [] yes unknown [] [] {} 2017-08-07 2021-08-25 +r3d100012476 Biogrid Australia eng [] https://www.biogrid.org.au/ ["RRID:SCR_006334", "RRID:nlx_152036"] ["https://www.biogrid.org.au/page/2/contact-us"] BioGrid Australia Limited operates a federated data sharing platform for collaborative translational health and medical research providing a secure infrastructure that advances health research by linking privacy-protected and ethically approved data among a wide network of health collaborators. BioGrid links real-time de-identified health data across institutions, jurisdictions and diseases to assist researchers and clinicians improve their research and clinical outcomes. The web-based infrastructure provides ethical access while protecting both privacy and intellectual property. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.biogrid.org.au/page/5/our-vision-and-mission [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["cancer", "diabetes", "epilepsy", "genetics", "radiotherapy", "rare tumours", "stroke"] [{"institutionName": "BioGrid Australia Ltd Board", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.biogrid.org.au/page/7/biogrid-australia-ltd-board", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Melbourne Hospital", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.thermh.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["helpdeskrelay@mh.org.au"]}] [{"policyName": "Terms and Conditions", "policyURL": "http://www.biogrid.org.au/page/45/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.biogrid.org.au/page/45/terms-and-conditions#a3"}] restricted [] ["unknown"] {} [] [] unknown unknown [] [] {} 2017-09-29 2021-09-22 +r3d100012477 Biosearch eng [{"additionalName": "Marine Biodiversity Database of India", "additionalNameLanguage": "eng"}] http://www.biosearch.in/ [] [] The database has its focus on observing and understanding special oceanographic characteristics of the Indian Ocean. eng ["disciplinary"] {"size": "19.760 organism records", "updatedp": "2017-12-01"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.nio.org/index/option/com_subcategory/task/show/title/Mission/Mandate/tid/1/sid/117/thid/120 [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["India", "Indian Ocean", "coastal water", "marine biodiversity", "oceanography"] [{"institutionName": "Council of Scientific & Industrial Research - National Institute of Oceanography", "institutionAdditionalName": ["CSIR - NIO"], "institutionCountry": "IND", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nio.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nio.org/index/option/com_contactus/task/show/title/Specific%20Purpose/tid/93/sid/102"]}, {"institutionName": "National Institute of Oceanography, Bioinformatics Centre", "institutionAdditionalName": ["NIO, Bioinformatics Centre"], "institutionCountry": "IND", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.niobioinformatics.in/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.niobioinformatics.in/feedback.php"]}] [{"policyName": "Data Use Agreement", "policyURL": "http://www.niobioinformatics.in/data.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.niobioinformatics.in/data.php"}] closed [] ["unknown"] {} ["none"] http://www.niobioinformatics.in/data.php ["none"] yes unknown [] [] {} 2017-09-29 2021-08-25 +r3d100012478 Institut d'Astronomie et d'Astrophysique Databases eng [{"additionalName": "Institut d'Astronomie et d'Astrophysique Bases de Donn\u00e9es", "additionalNameLanguage": "fra"}] http://www.astro.ulb.ac.be/pmwiki/IAA/Databases [] ["http://www.astro.ulb.ac.be/pmwiki/IAA/Staff"] The following databases are maintained at IAA-ULB: Nuclear Database (BRUSLIB - A collection of nuclear data (masses, fission barriers, E1 strength functions, nuclear level densities, partition functions, reaction rates) of interest for nuclear astrophysics, stellar evolution and nucleosynthesis), Nuclear Network Generator NetGen (A tool for generating nuclear-reaction rates on user-defined networks), NACRE II (An update of the Nuclear Astrophysics Compilation of Reaction Rates (NACRE) including the evaluation of 34 reactions on stable targets with mass numbers A<16), The Ninth Catalogue of Orbits of Spectroscopic Binaries (SB9), The Henize sample of S stars, The radial-velocity monitoring of barium and S stars, Molecular linelist (Molecular linelists for stellar spectra), and Stellar models (Pre-main-sequence and super-AGB phases). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] http://www.astro.ulb.ac.be/pmwiki/Research/HomePage [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Catalogue of Orbits of Spectroscopic Binaries - SB9", "Henize S stars", "Molecular linelist", "NACRE II", "Radial-velocity monitoring of Ba and S stars", "Stellar models", "nuclear astrophysics", "nuclear database - BRUSLIB", "nuclear network generator - NetGen"] [{"institutionName": "Universit\u00e9 Libre de Bruxelles, Institut d'Astronomie et d'Astrophyique", "institutionAdditionalName": ["IAA", "ULB", "Universit\u00e9 Libre de Bruxelles, Institute of Astronomy and Astrophysics"], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.astro.ulb.ac.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Introductory note for SB9", "policyURL": "http://sb9.astro.ulb.ac.be/intro.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://opendefinition.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://research.ulb.ac.be/wp-content/uploads/2015/11/AtelierULB-OpenDataManagementPlan.pdf"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} 2017-09-29 2021-10-06 +r3d100012479 JPL OurOcean Portal eng [{"additionalName": "JET Propulsion Laboratory OurOcean Portal", "additionalNameLanguage": "eng"}] https://ourocean.jpl.nasa.gov/ [] [] <<>>!!!>>> The website is archived: https://web.archive.org/web/20161118010932/http:/ourocean.jpl.nasa.gov/ You can follow links to navigate further into archived content from that site. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://science.jpl.nasa.gov/projects/OurOcean/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["California Coastal Ocean", "Salinity Processes", "cruises", "data assimilation models", "satellite data"] [{"institutionName": "California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["Caltech"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caltech.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://science.jpl.nasa.gov/people/XWang/", "https://science.jpl.nasa.gov/people/ZLi/"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/copyrights.php"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.jpl.nasa.gov/imagepolicy/"}] closed [] [] {"api": "ftp://podaac-ftp.jpl.nasa.gov/OceanTemperature/ghrsst/data/L4/GLOB/JPL_OUROCEAN/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} Description: The goal of this web site is to enable users to easily access ocean science data, run data assimilation models, and visualize both data and models. The concept of OurOcean is to allow users with minimal resource requirements to access data and interact with models. 2017-09-29 2021-10-19 +r3d100012480 NASA Life Sciences Data Archive eng [{"additionalName": "LSDA", "additionalNameLanguage": "eng"}] https://lsda.jsc.nasa.gov/ [] ["https://lsda.jsc.nasa.gov/Common/Feedback"] LSDA contains information, data, studies and materials from medical and biological experiments from the Mercury Project (1961) to current flight, flight analog and ground research. LSDA includes data from NASA's Human Research Program (HRP), NASA’s Space Biology Program (SP), The Human Health and Performance Directorate (HH&P) , and Lifetime Surveillance of Astronaut Health (LSAH) eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://lsda.jsc.nasa.gov/Home/Database [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Human Health and Performance Directorate - HH&P", "Human Research Program - HRP", "Lifetime Surveillance of Astronaut Health - LSAH", "Space Biology Program - SP", "international space station", "medical capability", "psychosocial and behavioral health", "space biology", "space physics", "space radiation"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "NASA IRB", "policyURL": "https://irb.nasa.gov/pfr/pfrApplicationGuide.aspx"}, {"policyName": "User\u2019s Guide for Requesting NASA Life Sciences Data and Biospecimens", "policyURL": "https://lsda.jsc.nasa.gov/Request/dataRequestFAQ"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/offices/ogc/ip/1210.html"}] closed [] [] {} ["none"] [] unknown unknown [] [] {} 2017-09-29 2021-10-06 +r3d100012481 National Database for Clinical Trials Related to Mental Illness eng [{"additionalName": "NDCT", "additionalNameLanguage": "eng"}] https://data-archive.nimh.nih.gov/ndct/ ["FAIRsharing_doi:10.25504/FAIRsharing.1h7t5t", "OMICS_15205", "RRID:SCR_013795"] ["NDAHelp@mail.nih.gov"] !!! >>> integrated in https://www.re3data.org/repository/r3d100012653 <<< !!! The National Database for Clinical Trials Related to Mental Illness (NDCT) is an informatics platform for the sharing of human subjects data from all clinical trials funded by the National Institute of Mental Health (NIMH). eng ["disciplinary"] {"size": "", "updatedp": ""} 2021-10-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["EEG", "EGG", "clinical trials", "eye tracking", "fMRI", "human subject"] [{"institutionName": "National Institutes of Health, National Institute of Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["RRID:SCR_011431", "RRID:nlx_inv_1005109"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nimhinfo@nih.gov"]}] [{"policyName": "Data Sharing Regimen", "policyURL": "https://ndar.nih.gov/contribute_data_sharing_regimen.html"}, {"policyName": "Policy for the NIMH Data Archive (NDA)", "policyURL": "https://data-archive.nimh.nih.gov/ndct/s/sharedcontent/about/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://data-archive.nimh.nih.gov/ndct/s/sharedcontent/about/policy.html"}] restricted [{"dataUploadLicenseName": "NIMH Data Archive, Data Submission \nAgreement", "dataUploadLicenseURL": "https://ndar.nih.gov/ndarpublicweb/Documents/NDAR+Submission+Request.pdf"}] [] no {} ["DOI"] https://ndar.nih.gov/ndarpublicweb/Documents/NDAR+Submission+Request.pdf [] unknown yes [] [] {} The National Institute of Mental Health Data Archive (NDA) is a collection of research data repositories including the National Database for Autism Research (NDAR), the Research Domain Criteria Database (RDoCdb), the National Database for Clinical Trials related to Mental Illness (NDCT), and the NIH Pediatric MRI Repository (PedsMRI). The NDA infrastructure was established initially to support NDAR, but has grown into an informatics platform that facilitates data sharing across all of mental health and other research communities. 2017-09-29 2021-10-08 +r3d100012482 National Genomic Resources Repository eng [] http://www.nbpgr.ernet.in:8080/repository/home.htm [] ["repository@nbpgr.ernet.in"] National Genomic Resources Repository is established as an institutional framework for methodical and centralized efforts to collect, generate, conserve and distribute genomic resources for agricultural research. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.nbpgr.ernet.in:8080/repository/introduction.htm [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agricultural research", "plant genomics"] [{"institutionName": "Government of India, Ministry of Agriculture, Indian Council of Agricultural Research, National Bureau of Plant Genetics Resources", "institutionAdditionalName": ["ICAR", "NBPGR"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nbpgr.ernet.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nbpgr.ernet.in/Contact_Us.aspx", "support.it@icar.gov.in"]}] [{"policyName": "MTA - NON-COMMERCIAL MATERIAL TRANSFER AGREEMENT FO R DNA SAMPLES", "policyURL": "http://www.nbpgr.ernet.in:8080/repository/form_D2.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nbpgr.ernet.in:8080/repository/deposit.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.nbpgr.ernet.in:8080/repository/form_D2.pdf"}] restricted [] [] {} ["none"] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-09-29 2018-05-05 +r3d100012483 National Park Service Geographic Information Systems eng [{"additionalName": "I&M GIS", "additionalNameLanguage": "eng"}, {"additionalName": "Inventory & Monitoring Geopgraphic Information Systems", "additionalNameLanguage": "eng"}] https://www.nps.gov/gis/index.html [] ["https://www.nps.gov/aboutus/contact-form.htm?o=4A96D0B58DC08FB284A85DA8F601&r=/aboutus/contactus.htm"] The I&M GIS group of NPS manages the collection, analysis, and distribution of I&M, NPS, and related geospatial data to I&M networks, the NPS, and the public. Develops, collects, and shares helpful GIS tools, extensions, and applications with I&M networks, the NPS, and the public. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["GIS data", "GIS tools", "geospatial data"] [{"institutionName": "U.S Department of the Interior, National Park Service", "institutionAdditionalName": ["NPS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nps.gov/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Inventory and Monitoring Division Database Standards", "policyURL": "https://www.nps.gov/im/upload/IMD_Database_Standards_2015.pdf"}, {"policyName": "Managing Science Data", "policyURL": "https://www.nps.gov/im/data.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nps.gov/aboutus/disclaimer.htm"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nps.gov/aboutus/disclaimer.htm"}] closed [] [] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-09-29 2021-10-06 +r3d100012485 Natural Resources Canada Earth Sciences Data eng [{"additionalName": "Ressources naturelles Canada Donn\u00e9es Sciences de la Terre", "additionalNameLanguage": "fra"}] http://www.nrcan.gc.ca/earth-sciences/resources/data/10788 [] ["canadagreenerhomesgrant-subventionmaisonsvertes@nrcan-rncan.gc.ca", "https://contact-contactez.nrcan-rncan.gc.ca/index.cfm?st=-1&cat=-1&scat=-1&lang=eng"] Natural Resources Canada (NRCan) seeks to enhance the responsible development and use of Canada’s natural resources and the competitiveness of Canada’s natural resources products. We are an established leader in science and technology in the fields of energy, forests, and minerals and metals and use our expertise in earth sciences to build and maintain an up-to-date knowledge base of our landmass. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.nrcan.gc.ca/department [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "environment", "flora", "nature", "plants", "water balance", "wildlife"] [{"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Resource Canada", "institutionAdditionalName": ["NRCan", "Ressources naturelles Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions Government of Canada", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}, {"policyName": "Terms and conditions Natural Resources Canada", "policyURL": "http://www.nrcan.gc.ca/terms-conditions/10847"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-09-29 2021-10-06 +r3d100012486 SimTK eng [] https://simtk.org ["RRID:SCR_002680", "RRID:nif-0000-23302"] ["https://simtk.org/feedback.php"] SimTK is a free project-hosting platform for the biomedical computation community that enables researchers to easily share their software, data, and models and provides the infrastructure so they can support and grow a community around their projects. It has over 62,000 members, hosts more than 960 projects from researchers around the world, and has had more than 500,000 files downloaded from it. Individuals have created SimTK projects to meet publisher and funding agencies’ software and data sharing requirements, run scientific challenges, create a collection of their community’s resources, and much more. eng ["disciplinary"] {"size": "989 projects", "updatedp": "2017-10-02"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20532 Biomedical Technology and Medical Physics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://simtk.org/whatIsSimtk.php [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNA", "cardiovascular system", "cell", "myosin", "neuromuscular system", "protein", "tissue"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Simbios", "institutionAdditionalName": ["NIH Center for Biomedical Computation at Stanford"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://simbios.stanford.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://simbios.stanford.edu/contact.htm"]}] [{"policyName": "Our pledge and your responsibility", "policyURL": "https://simtk.org/pledge.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://simtk.org/faq.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}] restricted [] [] yes {} ["DOI"] [] yes unknown [] [] {} SimTK is maintained through Grant R01 GM107340 from the National Institutes of Health (NIH). It was initially developed as part of the Simbios project funded by the NIH as part of the NIH Roadmap for Medical Research, Grant U54 GM072970. 2017-09-29 2021-10-06 +r3d100012487 South African Environmental Observation Network Data Portal eng [{"additionalName": "SAEON Data Portal", "additionalNameLanguage": "eng"}] https://catalogue.saeon.ac.za/ ["biodbcore-001552"] ["curation@saeon.nrf.ac.za"] The South African Environmental Observation Network (SAEON) Open Data Platform (ODP) is a metadata repository that facilitates the publication, discovery, dissemination, and preservation of earth observation and environmental data in South Africa. SAEON is a long-term environmental observation and research facility of the National Research Foundation (NRF). eng ["disciplinary"] {"size": "3.305 records", "updatedp": "2021-05-07"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ulwazi.saeon.ac.za/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["SA Bioenergy atlas", "SA carbon sinks atlas", "SA risk and vulnerability atlas", "South Africa", "South African biomes", "biodiversity", "climate change", "cruises", "ecological modelling", "ecosystem research", "global change"] [{"institutionName": "National Research Foundation", "institutionAdditionalName": ["NRF"], "institutionCountry": "ZAF", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nrf.ac.za/", "institutionIdentifier": ["ROR:05s0g1g46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrf.ac.za/contact"]}, {"institutionName": "SAEON uLwazi Node", "institutionAdditionalName": [], "institutionCountry": "ZAF", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ulwazi.saeon.ac.za/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["curation@saeon.ac.za"]}, {"institutionName": "South African Environmental Observation Network", "institutionAdditionalName": ["SAEON"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.saeon.ac.za/", "institutionIdentifier": ["ROR:041j42q70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.saeon.ac.za/contact-us"]}] [{"policyName": "Disclaimer", "policyURL": "https://catalogue.saeon.ac.za/disclaimer"}, {"policyName": "Terms & conditions", "policyURL": "https://catalogue.saeon.ac.za/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] [] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2017-10-02 2021-11-30 +r3d100012488 WBG Open Finances eng [{"additionalName": "World Bank Group Finances Open Finances", "additionalNameLanguage": "eng"}] https://finances.worldbank.org/ [] ["wbfinances@worldbank.org"] WBG Finances is a World Bank Group digital platform that provides our clients and partners access to public financial data and portfolio information from across all Group entities in one place. WBG Finances simplifies the presentation of financial information in an ‘easy to consume’ and in the context of Country and Portfolio across WBG. Open Finances makes World Bank Group’s financials available for everybody to explore. All the data presented is available to everybody to analyze, visualize, and share with others. We invite you to explore the numerous tools, build your own visualizations or download the data in multiple formats. If you are a developer, connect to it through the APIs associated with all the datasets. eng ["institutional"] {"size": "84 datasets; 1 external dataset", "updatedp": "2018-05-07"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://financesapp.worldbank.org/en/about/ [{"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FIFs", "budget", "financial reporting", "microloans", "procurement", "shareholder equity", "trust funds"] [{"institutionName": "World Bank, World Bank Group Finances", "institutionAdditionalName": ["WBG"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://financesapp.worldbank.org/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://financesapp.worldbank.org/en/terms/"}, {"policyName": "Terms of Use for Datasets", "policyURL": "http://www.worldbank.org/en/about/legal/terms-of-use-for-datasets"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/igo/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://financesapp.worldbank.org/en/terms/"}] restricted [] ["other"] {"api": "https://finances.worldbank.org/resource/sqie-nwuc.json", "apiType": "REST"} ["none"] [] unknown unknown [] [] {"syndication": "https://finances.worldbank.org/catalog.rss", "syndicationType": "RSS"} 2017-10-02 2018-05-11 +r3d100012489 Open Data Portal Russia eng [{"additionalName": "Open Data Portal of the Russian Federation", "additionalNameLanguage": "eng"}, {"additionalName": "Open Data Russia", "additionalNameLanguage": "eng"}] http://data.gov.ru/?language=en [] ["mineconom@economy.gov.ru"] The open data portal is designed to achieve the following goals: providing centralized access to information resources presented in the form of open data; creation of an information platform for interaction with the general public on the issues of the formation, publication and use of public data; formation and implementation of a unified technological policy in the field of open government data. The main suppliers of open data are public authorities of all levels of government: federal, regional and municipal. Moreover, other organizations can also serve as a supplier of open data which are interested in starting their own activities. eng ["other"] {"size": "20.309 datasets", "updatedp": "2018-05-23"} ["eng", "rus"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://data.gov.ru/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Ministry of Economic Development of the Russian Federation", "institutionAdditionalName": ["\u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438"], "institutionCountry": "RUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://economy.gov.ru/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mineconom@economy.gov.ru"]}] [{"policyName": "Open Data Publication Guide", "policyURL": "http://data.gov.ru/open-data-publication-guide"}, {"policyName": "Publication of public data sets to the open data portal of the Russian Federation", "policyURL": "http://data.gov.ru/sites/default/files/documents/instrukciya_dlya_sotrudnika_gosudarstvennogo_organa_23.07.2014.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://data.gov.ru/faq#link-14951"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.gov.ru/open-data-publication-guide"}] restricted [] ["unknown"] yes {"api": "http://data.gov.ru/sparql", "apiType": "SPARQL"} ["none"] [] unknown unknown [] [] {"syndication": "http://data.gov.ru/rss.xml", "syndicationType": "RSS"} 2017-10-02 2021-08-25 +r3d100012490 Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations eng [{"additionalName": "CALIPSO", "additionalNameLanguage": "eng"}] https://www-calipso.larc.nasa.gov/ ["biodbcore-001310"] ["Charles.R.Trepte@nasa.gov", "https://www-calipso.larc.nasa.gov/resources/faq.php"] The CALIPSO satellite provides new insight into the role that clouds and atmospheric aerosols play in regulating Earth's weather, climate, and air quality. CALIPSO combines an active lidar instrument with passive infrared and visible imagers to probe the vertical structure and properties of thin clouds and aerosols over the globe. CALIPSO was launched on April 28, 2006, with the CloudSat satellite. CALIPSO and CloudSat are highly complementary and together provide new, never-before-seen 3D perspectives of how clouds and aerosols form, evolve, and affect weather and climate. CALIPSO and CloudSat fly in formation with three other satellites in the A-train constellation to enable an even greater understanding of our climate system. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nasa.gov/mission_pages/calipso/main/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["A-train", "aerosols", "air quality", "climate", "clouds", "weather"] [{"institutionName": "Centre national d'\u00e9tudes spatiales", "institutionAdditionalName": ["CNES"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cnes.fr/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jacques.pelon@aero.jussieu.fr"]}, {"institutionName": "NASA Langley Research Center, Atmospheric Science Data Center", "institutionAdditionalName": ["LaRC ASDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://eosweb.larc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Charles.R.Trepte@nasa.gov", "David.M.Winker@nasa.gov"]}] [{"policyName": "CALIPSO Data User Guide", "policyURL": "https://www-calipso.larc.nasa.gov/resources/calipso_users_guide/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.usa.gov/government-works"}] open [] [] yes {"api": "https://www-calipso.larc.nasa.gov/resources/calipso_users_guide/tools/idl/readNCDF.pro", "apiType": "NetCDF"} ["DOI"] https://eosweb.larc.nasa.gov/citing-asdc-data [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-10-04 2021-11-16 +r3d100012491 NASA GEWEX Surface Radiation Budget eng [{"additionalName": "NASA GEWEX SRB", "additionalNameLanguage": "eng"}] https://gewex-srb.larc.nasa.gov/ [] ["Paul.W.Stackhouse@nasa.gov", "j.c.mikovitz@nasa.gov"] The NASA/GEWEX SRB project is a major component of the GEWEX radiation research. The objective of the NASA/GEWEX SRB project is to determine surface, top-of-atmosphere (TOA), and atmospheric shortwave (SW) and longwave (LW) radiative fluxes with the precision needed to predict transient climate variations and decadal-to-centennial climate trends. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://gewex-srb.larc.nasa.gov/common/php/SRB_about.php [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["atmospheric longwave", "atmospheric shortwave", "climate change", "earth radiation budget", "hydrometeorology"] [{"institutionName": "Global Energy and Water Exchanges", "institutionAdditionalName": ["GEWEX"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gewex.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration, Langley Research Center", "institutionAdditionalName": ["LARC", "NASA Langley Research Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/langley", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["larc-asdc-uds@lists.nasa.gov"]}] [{"policyName": "Data Usage Acknowledgement", "policyURL": "https://gewex-srb.larc.nasa.gov/common/php/SRB_acknowledgements.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://gewex-srb.larc.nasa.gov/common/php/SRB_acknowledgements.php"}] closed [] ["unknown"] {"api": "https://eosweb.larc.nasa.gov/project/srb/3hourly_shortwave_netcdf_table", "apiType": "NetCDF"} ["none"] https://gewex-srb.larc.nasa.gov/common/php/SRB_acknowledgements.php [] unknown unknown [] [] {} 2017-10-04 2018-05-30 +r3d100012492 National Center for Health Statistics eng [{"additionalName": "NCHS", "additionalNameLanguage": "eng"}] https://www.cdc.gov/nchs/index.htm ["RRID:SCR_001078", "RRID:nlx_151844"] ["https://wwwn.cdc.gov/dcs/contactus/form"] The mission of NCHS is to provide statistical information that will guide actions and policies to improve the health of the American people. As the Nation's principal health statistics agency, NCHS is responsible for collecting accurate, relevant, and timely data. NCHS' mission, and those of its counterparts in the Federal statistics system, focuses on the collection, analysis, and dissemination of information that is of use to a broad range of us. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.cdc.gov/nchs/about/policy/data_release.htm [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["Longitudinal Studies of Aging (LSOA)", "National Ambulatory Medical Care Survey (NAMCS)", "National Death Index", "National Health Interview Survey", "National Health and Nutrition Examination Survey (NHANES)", "National Home and Hospice Care Survey (NHHCS)", "National Hospital Ambulatory Medical Care Survey (NHAMCS)", "National Hospital Discharge Survey (NHDS)", "National Immunization Survey (NIS)", "National Nursing Assistant Survey (NNAS)", "National Nursing Home Survey (NNHS)", "National Survey of Ambulatory Surgery (NSAS)", "National Survey of Family Growth (NSFG)", "SPACE Program", "State and Local Area Integrated Telephone Survey (SLAITS)", "biomedicine", "disability", "diseases", "family life", "health care and insurance", "health policy", "immune", "infectious", "mortality"] [{"institutionName": "Centers for Disease Control and Prevention, National Center for Health Statistics", "institutionAdditionalName": ["CDC", "NCHS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cdc.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Release Policy", "policyURL": "https://www.cdc.gov/nchs/about/policy/data_release.htm"}, {"policyName": "Data User Agreement", "policyURL": "https://www.cdc.gov/nchs/data_access/restrictions.htm"}, {"policyName": "NCHS Data Access and Resources", "policyURL": "https://www.cdc.gov/nchs/data/data_access_and_resources_booklet_web.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cdc.gov/nchs/about/policy/data_release.htm"}] closed [] [] {"api": "ftp://ftp.cdc.gov/pub/Health_Statistics/NCHS/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} 2017-10-04 2021-10-06 +r3d100012493 Project on Human Development in Chicago Neighborhoods eng [{"additionalName": "PHDCN", "additionalNameLanguage": "eng"}] https://www.icpsr.umich.edu/icpsrweb/PHDCN/index.jsp [] ["phdcn@icpsr.umich.edu"] The Project on Human Development in Chicago Neighborhoods (PHDCN) is a large-scale, interdisciplinary study of how families, schools, and neighborhoods affect child and adolescent development. It was designed to advance the understanding of the developmental pathways of both positive and negative human social behaviors. In particular, the project examined the causes and pathways of juvenile delinquency, adult crime, substance abuse, and violence. At the same time, the project also provided a detailed look at the environments in which these social behaviors take place by collecting substantial amounts of data about urban Chicago, including its people, institutions, and resources. Nearly all PHDCN data require an individual application with supporting materials to obtain the data. Applications are handled by the the National Archive of Criminal Justice Data (NACJD). Further instructions will appear on the study home page (linked from search results), where relevant. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.icpsr.umich.edu/icpsrweb/PHDCN/about.jsp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Social Science Variables Database", "adolescent devlopment", "adult crime", "antisocial behavior", "child development", "human social behaviors", "juvenile delinquency", "quantitative data", "substance abuse", "urban Chicago", "violence"] [{"institutionName": "Inter University Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/", "institutionIdentifier": ["RRID:SCR_003194", "RRID:nif-0000-00615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Archive of Criminal Justice Data", "institutionAdditionalName": ["NACJD"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/icpsrweb/content/NACJD/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Justice", "institutionAdditionalName": ["NIJ"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nij.gov/Pages/welcome.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Bylaws", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/about/governance/bylaws.html"}, {"policyName": "Conditions of Use", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/membership/or/metadata/index.html#conditions"}, {"policyName": "Terms of use", "policyURL": "https://www.icpsr.umich.edu/icpsrweb/content/shared/ICPSR/faqs/terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/us/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/20460/terms"}] restricted [] ["unknown"] yes {"api": "https://www.icpsr.umich.edu/icpsrweb/ICPSR/oai/citations", "apiType": "OAI-PMH"} ["DOI"] https://www.icpsr.umich.edu/icpsrweb/PHDCN/citation.jsp [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-10-04 2019-08-20 +r3d100012494 Tropospheric Emission Spectrometer eng [{"additionalName": "TES", "additionalNameLanguage": "eng"}] https://tes.jpl.nasa.gov/data/ ["biodbcore-001533"] ["Scott.Gluck@jpl.nasa.gov"] TES is the first satellite instrument to provide simultaneous concentrations of carbon monoxide, ozone, water vapor and methane throughout Earth’s lower atmosphere. This lower atmosphere (the troposphere) is situated between the surface and the height at which aircraft fly, and is an important part of the atmosphere that we often impact with our activities. eng ["disciplinary"] {"size": "", "updatedp": ""} 2004-07-15 2018-01-31 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tes.jpl.nasa.gov/mission/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FTIR", "Fourier Transfer Infrared Spectrometer", "air pollution", "carbon monoxide", "carbon monoxide", "greenhouse gases", "methane", "nitric acid", "nitrogene dioxide", "ozone", "stratosphere", "troposphere", "water vapor"] [{"institutionName": "Aura Validation Data Center", "institutionAdditionalName": ["AVDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://avdc.gsfc.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "California Institute of Technology, Jet Propulsion Laboratory", "institutionAdditionalName": ["JET"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jpl.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html#508"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://eosweb.larc.nasa.gov/copyright-information"}] closed [] ["CKAN"] yes {"api": "https://avdc.gsfc.nasa.gov/pub/data/satellite/Aura/TES/", "apiType": "FTP"} [] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} TES will be using the HDF-EOS5 file format to store the scientific standard and special observation products at Level 2. The scientific discovery mission of Tropospheric Emission Spectrometer has concluded. However, a final full TES dataset (v008) will be generated from an algorithm update to the base Ground Data System software and will be made available to the scientific community in the next two years. 2017-10-04 2021-11-17 +r3d100012495 Liverpool John Moores University Research Data Repository eng [{"additionalName": "LJMU Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "LJMU Research Data Repository", "additionalNameLanguage": "eng"}] http://opendata.ljmu.ac.uk/ [] ["researchonline@ljmu.ac.uk"] The LJMU Research Data Repository is the University's institutional repository where researchers can safely deposit and store research data on an Open Access basis. Data stored in the LJMU Research Data Repository can be made freely available to anyone online and located by users of web search engines. eng ["institutional"] {"size": "2 datasets", "updatedp": "2018-06-15"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ljmu.ac.uk/microsites/library/research-support-and-outputs/open-access/ljmu-data-repository [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Liverpool John Moores University", "institutionAdditionalName": ["LJMU"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ljmu.ac.uk", "institutionIdentifier": ["RRID:SCR_000975", "RRID:nlx_158057"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data repository policies", "policyURL": "http://opendata.ljmu.ac.uk/policies.html"}, {"policyName": "Research ethics", "policyURL": "https://www2.ljmu.ac.uk/RGSO/93042.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {} ["DOI"] [] unknown unknown [] [] {} 2017-10-04 2021-12-27 +r3d100012496 GESIS Data Archive eng [] https://www.gesis.org/en/services/archiving-and-registering/data-archiving/ [] ["jonas.recker@gesis.org"] GESIS preserves quantitative social research data to make it available to the scientific research community. All data are preserved for the long-term and documented to international standards. Data is free to archive, and free to access. Data Catalogue Search https://dbk.gesis.org/dbksearch/index.asp?db=e eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/services/archiving-and-registering/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["election data", "international surveys", "national surveys", "polls", "social change"] [{"institutionName": "GESIS - Leibniz-Institut f\u00fcr Sozialwissenschaften", "institutionAdditionalName": ["GESIS - Leibniz-Institute for the Social Sciences"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gesis.org/kontakt/"]}] [{"policyName": "Collection policy", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/2013-07-08_Was_wir_sammeln.pdf"}, {"policyName": "Data Use Agreement", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/secure_data_center/GESIS_Data_Use_Agreement_Off-Site.pdf"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/DAS_Preservation_Policy_eng_1.4.8.pdf"}, {"policyName": "Empfehlungen zur Anonymisierung quantitativer Daten", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/Anonymisierung_quantitiativer_Daten-0150512.pdf"}, {"policyName": "Good Scientific Practice", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/leitbild/Gute_Praxis_GESIS_engl.pdf"}, {"policyName": "Implementation of the CoreTrustSeal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2017/10/GESIS.pdf"}, {"policyName": "Leaflet on secure handling of research data", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/secure_data_center/GESIS_Leaflet_Secure_Data_Handling.pdf"}, {"policyName": "Usage regulations", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/en/services/archiving-and-registering/data-archiving/legal-aspects/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/Usage_regulations.pdf"}] restricted [{"dataUploadLicenseName": "Archive agreement", "dataUploadLicenseURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/Archivierungsvertrag_GESIS_Datenarchiv_v9__englisch.pdf"}] [] {"api": "https://dbk.gesis.org/dbkoai/?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2017-10-05 2021-11-10 +r3d100012497 EOS-EarthData eng [] http://eos-earthdata.sr.unh.edu/ [] ["Annette.Schloss@unh.edu", "Mike.Routhier@unh.edu", "http://eos-earthdata.sr.unh.edu/help/userSupport.jsp"] EOS-EarthData provides free, customized Earth Science data. All data are freely available. EOS-WEBSTER has been replaced by EOS-Earthdata. EOS-Earthdata offers much simpler access to data, and does not require you to register or login. eng ["disciplinary"] {"size": "over 1.000.000 data products", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://eos-earthdata.sr.unh.edu/help/about.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "climate", "ecosystem", "hydrology", "temperature", "vegetation"] [{"institutionName": "Earth Science Information Parners", "institutionAdditionalName": ["ESIP"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://esipfed.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Hampshire", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unh.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Openness, Access, and Participation in Research and Scholarly Activites", "policyURL": "https://www.usnh.edu/policy/unh/viii-research-policies/openness-access-and-participation-research-and-scholarly-activities"}, {"policyName": "Terms of Use", "policyURL": "https://www.usnh.edu/about/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://eos-earthdata.sr.unh.edu/"}] closed [] ["unknown"] {"api": "http://eos-earthdata.sr.unh.edu/data/outputFormats.jsp", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} 2017-10-06 2018-10-19 +r3d100012498 CESM Experiments eng [{"additionalName": "Comnunity Earth System Model Experiments", "additionalNameLanguage": "eng"}] https://www.cesm.ucar.edu/experiments/ [] ["fair@ucar.edu", "https://www.cesm.ucar.edu/about/contact.html", "webhelp@cgd.ucar.edu"] CESM is a fully-coupled, community, global climate model that provides state-of-the-art computer simulations of the Earth's past, present, and future climate states. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.cesm.ucar.edu/about/mission.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Community Climate Model - CCM", "atmospheric", "climate model", "earth", "forecasting", "geoengeneering", "ice", "land surface", "ocean", "simulation"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "University Corporation for Atmospheric Research - National Center for Atmospheric Research, Climate and Global Dynamics Laboratory", "institutionAdditionalName": ["UCAR - NCAR, CGD"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.cgd.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cesm.ucar.edu/about/contact.html"]}] [{"policyName": "CESM Development Project Policies and Terms of Use", "policyURL": "http://www.cgd.ucar.edu/cseg/development-code.html"}, {"policyName": "Ownership Rights and Responsibilities for CESM\n Data", "policyURL": "http://www.cesm.ucar.edu/management/docs/data.mgt.plan.2011.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www2.ucar.edu/notification-copyright-infringement-digital-millennium-copyright-act"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cesm.ucar.edu/management/docs/data.mgt.plan.2011.pdf"}] closed [] ["unknown"] yes {"api": "http://www.cesm.ucar.edu/models/cesm1.0/cesm/cesm_doc_1_0_4/x42.html", "apiType": "NetCDF"} ["none"] ["none"] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} 2017-10-06 2021-10-06 +r3d100012499 NCAR Climate Analysis Section Data Catalog eng [{"additionalName": "CAS Data Catalog", "additionalNameLanguage": "eng"}] http://www.cgd.ucar.edu/cas/catalog/ [] ["cas_data@cgd.ucar.edu"] The CAS Data Catalog contains a variety of atmospheric and oceanic energy budget calculations derived from satellites and Reanalysis products. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.cgd.ucar.edu/cas/catalog/intro.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "climate", "meteorology", "ocean", "satellite", "surface"] [{"institutionName": "National Center for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmosheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cgd.ucar.edu/cas/catalog/"}] closed [] ["unknown"] {"api": "http://www.cgd.ucar.edu/pubsoft/", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} To request data, please email: CAS Data Manager, cas_data@cgd.ucar.edu 2017-10-06 2018-11-05 +r3d100012500 NCAR UCAR Climate Data Guide eng [] https://climatedataguide.ucar.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.4vsxkr"] ["https://climatedataguide.ucar.edu/content/suggestcontact"] Search and access 201 data sets covering the Atmosphere, Ocean, Land and more. Explore climate indices, reanalyses and satellite data and understand their application to climate model metrics. This is the only data portal that combines data discovery, metadata, figures and world-class expertise on the strengths, limitations and applications of climate data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30203 Theory and Modelling", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://climatedataguide.ucar.edu/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate", "earth science", "meteorology", "temperature", "troposhere", "weather"] [{"institutionName": "National Center for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ucar.edu/who-we-are/contact-us"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.ucar.edu/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/notification-copyright-infringement-digital-millenium-copyright-act"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/terms-of-use"}] restricted [] ["unknown"] {"api": "https://climatedataguide.ucar.edu/climate-data-tools-and-analysis/netcdf-overview", "apiType": "NetCDF"} [] [] unknown yes [] [] {"syndication": "https://climatedataguide.ucar.edu/climate-data/feed", "syndicationType": "RSS"} 2017-10-06 2019-01-30 +r3d100012501 Visible earth eng [] https://visibleearth.nasa.gov/ [] ["https://visibleearth.nasa.gov/contact.php"] A catalog of NASA images and animations of our home planet. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.nasa.gov/audience/foreducators/k-4/features/F_Visible_Earth.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agriculture", "atmosphere", "biosphere", "cryosphere", "human dimensions", "hydrosphere", "land surface", "oceans", "paleoclimate", "solar physics", "solid earth", "sun-earth interactions"] [{"institutionName": "NASA Goddard Space Flight Center", "institutionAdditionalName": ["Goddard Space Flight Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/goddard", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/content/contact-goddard"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "Media Usage Guidelines", "policyURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://visibleearth.nasa.gov/useterms.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://visibleearth.nasa.gov/useterms.php"}] closed [] ["unknown"] yes {} [] [] unknown yes [] [] {"syndication": "https://visibleearth.nasa.gov/rss.php", "syndicationType": "RSS"} 2017-10-09 2019-01-30 +r3d100012502 Gateway to Astronaut Photography of earth eng [] https://eol.jsc.nasa.gov/ [] ["jsc-earthweb@mail.nasa.gov"] The Gateway to Astronaut Photography of Earth hosts the best and most complete online collection of astronaut photographs of the Earth from 1961 through the present. This service is provided by the International Space Station program and the JSC Earth Science & Remote Sensing Unit, ARES Division, Exploration Integration Science Directorate. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["capital cities", "craters", "earth observatory", "glaciers", "historical data", "image composites", "infrared data", "remote sensing imagery", "space", "volcanoes"] [{"institutionName": "NASA Johnson Space Center, Earth Science and Remote Sensing Unit", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://eol.jsc.nasa.gov/esrs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["jsc-earthweb@mail.nasa.gov"]}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "Conditions of use of astronaut photographs", "policyURL": "https://eol.jsc.nasa.gov/FAQ/"}, {"policyName": "Media Usage Guidelines", "policyURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"policyName": "NASA Image Use Policy", "policyURL": "https://pmm.nasa.gov/image-use-policy"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://eol.jsc.nasa.gov/FAQ/default.htm#terms"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://eol.jsc.nasa.gov/FAQ/default.htm#terms"}] closed [] ["unknown"] {} ["none"] https://eol.jsc.nasa.gov/FAQ/default.htm#terms [] unknown yes [] [] {} 2017-10-09 2019-01-30 +r3d100012503 NASA Image and Video Library eng [] https://images.nasa.gov [] ["brittany.a.brown@nasa.gov", "https://www.nasa.gov/about/contact/index.html"] NASA officially has launched a new resource to help the public search and download out-of-this-world images, videos and audio files by keyword and metadata searches from NASA.gov. The NASA Image and Video Library website consolidates imagery spread across more than 60 collections into one searchable location. NASA Image and Video Library allows users to search, discover and download a treasure trove of more than 140,000 NASA images, videos and audio files from across the agency’s many missions in aeronautics, astrophysics, Earth science, human spaceflight, and more. Users can browse the agency’s most recently uploaded files, as well as discover historic and the most popularly searched images, audio files and videos. Other features include: Automatically scales the interface for mobile phones and tablets Displays the EXIF/camera data that includes exposure, lens used, and other information, when available from the original image Allows for easy public access to high resolution files All video includes a downloadable caption file NASA Image and Video Library’s Application Programmers Interface (API) allows automation of imagery uploads for NASA, and gives members of the public the ability to embed content in their own sites and applications. This public site runs on NASA’s cloud native “infrastructure-as-a-code” technology enabling on-demand use in the cloud. eng ["disciplinary"] {"size": "more than 140.000 NASA images, videos and audio files", "updatedp": "2019-01-30"} 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.v-studios.com/casestudy_nasa-avail.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["cosmos", "earth sience", "exploration", "human spaceflight", "natural sciences", "photography"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}] [{"policyName": "Freedom of Information Act (FOIA)", "policyURL": "https://www.nasa.gov/FOIA/index.html"}, {"policyName": "NASA Media Usage Guidelines", "policyURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/multimedia/guidelines/index.html"}] closed [] ["unknown"] {"api": "https://images.nasa.gov/docs/images.nasa.gov_api_docs.pdf", "apiType": "REST"} [] https://www.nasa.gov/multimedia/guidelines/index.html [] unknown unknown [] [] {} 2017-10-10 2021-08-24 +r3d100012504 OpenAltimetry eng [] https://www.openaltimetry.org [] ["https://openaltimetry.org/contact.html", "info@openaltimetry.org"] NASA funded OpenAltimetry facilitates the advanced discovery, processing, and visualization services for ICESat and ICESat-2 altimeter data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://openaltimetry.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Geoscience Laser Altimeter System - GLAS", "ICESat", "ICESat2", "altimetry", "cryosphere", "elevation"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nasa.gov/about/contact/index.html"]}, {"institutionName": "National Snow and Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": ["RRID:SCR_002220", "RRID:nlx_154742", "Wikidata:Q1216646"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://nsidc.org/research/bios/khalsa.html"]}, {"institutionName": "San Diego Supercomputer Center", "institutionAdditionalName": ["SDSC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sdsc.edu/", "institutionIdentifier": ["ROR:04mg3nk07", "RRID:SCR_001856", "RRID:nif-0000-10418"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://users.sdsc.edu/~viswanat/"]}, {"institutionName": "Scripps Institution of Oceanography", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://scripps.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://scrippsscholars.ucsd.edu/aborsa"]}, {"institutionName": "UNAVCO", "institutionAdditionalName": ["University NAVSTAR Consortium"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unavco.org/", "institutionIdentifier": ["ROR:02n9tn974", "RRID:SCR_006706", "RRID:nlx_154719"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage Policy", "policyURL": "https://openaltimetry.org/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://nsidc.org/about/policies"}] closed [] ["unknown"] {"api": "https://openaltimetry.org/data/swagger-ui/", "apiType": "REST"} ["none"] https://openaltimetry.org/policy.html [] unknown unknown [] [] {} All open source software and tools developed by OpenAltimetry are distributed via its GitHub space at github.com/OpenAltimetry. More information about the ICESat data: https://nsidc.org/data/GLAH06/versions/34/print/ 2017-10-11 2021-09-21 +r3d100012505 ORDaR eng [{"additionalName": "OTELo Research Data Repository", "additionalNameLanguage": "eng"}] https://ordar.otelo.univ-lorraine.fr/accueil [] ["https://ordar.otelo.univ-lorraine.fr/terms"] ORDaR is a data repository for research data in geoscience. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-06-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ordar.otelo.univ-lorraine.fr/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["climate", "earth environment", "earth surface", "soil evolution"] [{"institutionName": "National Center for Scientific Research", "institutionAdditionalName": ["CNRS", "Centre national de la recherche scientifique"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cnrs.fr/en/home/contacts.htm"]}, {"institutionName": "Observatoire Terre Environnement de Lorraine", "institutionAdditionalName": ["Lorraine Earth and Environment Observatory", "OTELo"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://ensg.univ-lorraine.fr/english/research/otelo/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["otelo-contact@univ-lorraine.fr"]}, {"institutionName": "University of Lorraine", "institutionAdditionalName": ["Universit\u00e9 de Lorraine"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.univ-lorraine.fr", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://ordar.otelo.univ-lorraine.fr/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"other\"]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/?lang=en"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/?lang=en"}] restricted [] ["other"] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-10-17 2019-01-30 +r3d100012506 DURAARK datasets eng [{"additionalName": "DURAARK", "additionalNameLanguage": "eng"}, {"additionalName": "Data.DURAARK (formerly)", "additionalNameLanguage": "eng"}, {"additionalName": "Durable Architectural Knowledge", "additionalNameLanguage": "eng"}] http://data.duraark.eu/ [] ["contact@duraark.eu", "http://duraark.eu/contact/", "martin.tamke@kadk.dk"] >>>!!!<<< stated 13.02.2020: the repository is offline >>>!!!<<< Data.DURAARK provides a unique collection of real world datasets from the architectural profession. The repository is unique, as it provides several different datatypes, such as 3d scans, 3d models and classifying Metadata and Geodata, to real world physical buildings.domain. Many of the datasets stem from architectural stakeholders and provide the community in this way with insights into the range of working methods, which the practice employs on large and complex building data. eng ["disciplinary"] {"size": "4TB", "updatedp": "2019-02-01"} 2013-02 2020-02-13 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://duraark.eu/project-flyer/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["Building Information Models (BIM)", "Industry Foundation Classes (IFC)", "architecture", "building industry", "laserscans", "urban planning"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wayback.archive-it.org/12090/20191127213419/https:/ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2013-02", "responsibilityEndDate": "2016-01", "institutionContact": []}, {"institutionName": "Technische Informationsbibliothek", "institutionAdditionalName": ["Leibniz Information Centre for Science and Technology, University Library", "TIB"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tib.eu/en/", "institutionIdentifier": ["ROR:04aj4c181"], "responsibilityStartDate": "2015-01-01", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Royal Danish Academy of Fine Arts, Schools of Architecture, Design and Conservation, Centre for Information Technology and Architecture", "institutionAdditionalName": ["CITA"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://kadk.dk/en/CITA", "institutionIdentifier": [], "responsibilityStartDate": "2015-01-01", "responsibilityEndDate": "", "institutionContact": ["Martin.Tamke@kadk.dk"]}] [{"policyName": "Objectives", "policyURL": "http://duraark.eu/objectives/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] closed [] [] {"api": "http://data.duraark.eu/sparql", "apiType": "SPARQL"} ["none"] [] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "http://duraark.eu/comments/feed/", "syndicationType": "RSS"} In the project, technologies and tools will be developed that allow the long term preservation of semantically enriched building models. This includes devising new methods to enrich interoperable 3D models in the form of the Industry Foundation Classes (IFC) with arbitrary vocabularies provided in the Resource Description Format (RDF) . See also: https://github.com/bfetahu/focused_crawler 2017-10-17 2021-08-24 +r3d100012509 GEISHA eng [{"additionalName": "Gallus Expression in Situ Hybridization Analysis", "additionalNameLanguage": "eng"}] http://geisha.arizona.edu/geisha/index.jsp ["OMICS_03312", "RRID:SCR_007440", "RRID:nif-0000-01251"] ["http://geisha.arizona.edu/geisha/contact.jsp", "pba@email.arizona.edu"] GEISHA is the online repository of in situ hybridization and corresponding metadata for genes expressed in the chicken embryo during the first six days of development. eng ["disciplinary"] {"size": "91 annotated bird genomes", "updatedp": "2019-02-01"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20106 Developmental Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://geisha.arizona.edu/geisha/about.jsp [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Phasianidae", "animals", "gallus gallus", "gene expression", "genetics", "genomics", "in situ hybridization ISH", "mRNA expression", "transcriptomics"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nichd.nih.gov/contact"]}, {"institutionName": "University of Arizona, Department of Cellular and Molecular Medicine, Molecular Cardiovascular Research Program", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cmm.arizona.edu/profile/parker-b-antin-phd", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pba@email.arizona.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://geisha.arizona.edu/geisha/about.jsp"}] closed [] ["unknown"] {} ["other"] http://geisha.arizona.edu/geisha/about.jsp [] unknown unknown [] [] {} 2017-10-19 2019-02-01 +r3d100012511 Monitor of Settlement and Open Space Development eng [{"additionalName": "I\u00d6R-Monitor", "additionalNameLanguage": "eng"}, {"additionalName": "Monitor der Siedlungs- und Freiraumentwicklung", "additionalNameLanguage": "deu"}] https://www.ioer-monitor.de [] ["monitor@ioer.de"] The IOER Monitor is a research data infrastructure of the Leibniz Institute of Ecological Urban and Regional Development (IOER). It provides various information on land use structure and its development as well as on landscape quality for the Federal Republic of Germany. eng ["disciplinary"] {"size": "100 GByte", "updatedp": "2017-10-24"} 2008 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.ioer-monitor.de/service/faq/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agriculture", "forest", "fragmentation", "hemerobie", "land cover", "land use", "open space", "settlement density"] [{"institutionName": "Leibniz-Institut f\u00fcr \u00f6kologische Raumentwicklung", "institutionAdditionalName": ["IOER", "I\u00d6R", "Leibniz Institute for Ecological Urban and Regional Development"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ioer.de/home/", "institutionIdentifier": ["ROR:02t26g637"], "responsibilityStartDate": "1992", "responsibilityEndDate": "", "institutionContact": ["https://www.ioer.de/1/contact/"]}] [{"policyName": "Data Protection Statement", "policyURL": "https://www.ioer.de/1/data-protection-statement/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ioer.de/1/imprint/"}] closed [] [] {"api": "https://monitor.ioer.de/monitor_api/", "apiType": "REST"} ["DOI"] https://www.ioer-monitor.de/service/faq/ [] unknown unknown ["RatSWD"] [] {} Every map, table or figure from the IOER Monitor may be published. However, data must be marked with the copyright notice “IOER-Monitor©Leibniz Institute of Ecological Urban and Regional Development”. Search for data provided by all RDCs of RatSWD at https://www.ratswd.de/en/researchdata/search 2017-10-23 2021-03-17 +r3d100012512 SFU Radar eng [{"additionalName": "SFU's Research Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Simon Fraser University's research data repository", "additionalNameLanguage": "eng"}] https://researchdata.sfu.ca/node/6 [] ["data-services@sfu.ca"] Radar, Simon Fraser University's research data repository, contains data collections created by SFU researchers and supports data curation activities including long term access. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Simon Fraser University", "institutionAdditionalName": ["SFU"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sfu.ca/", "institutionIdentifier": ["ROR:0213rcc28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://researchdata.sfu.ca/node/4"}, {"policyName": "Tri-Agency Statement of Principles on Digital Data Management (RDM)", "policyURL": "https://www.lib.sfu.ca/help/publish/research-data-management"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://www.lib.sfu.ca/help/academic-integrity/copyright/public-domain"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.lib.sfu.ca/help/academic-integrity/copyright/authors/data-copyright"}] restricted [{"dataUploadLicenseName": "Deposit Terms", "dataUploadLicenseURL": "https://researchdata.sfu.ca/node/4"}] ["other"] yes {"api": "http://researchdata.sfu.ca/oai2?verb=ListSets", "apiType": "OAI-PMH"} ["DOI"] https://www.lib.sfu.ca/help/publish/research-data-management/data-management-faqs#how-do-i-cite-my-or-someone-elses-data [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} SFU Radar is covered by Clarivate Data Citation Index. 2017-10-25 2020-02-17 +r3d100012513 DataSpace eng [{"additionalName": "DataSpace at Princeton University", "additionalNameLanguage": "eng"}] https://dataspace.princeton.edu/jspui/ [] ["dspadmin@princeton.edu"] DataSpace is a digital repository meant for both archiving and publicly disseminating digital data which are the result of research, academic, or administrative work performed by members of the Princeton University community. DataSpace will promote awareness of the data and address concerns for ensuring the long-term availability of data in the repository. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dataspace.princeton.edu/jspui/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Princeton University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.princeton.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Princeton University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.princeton.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rdmteam@princeton.edu"]}] [{"policyName": "DataSpace Policies and Guidelines", "policyURL": "https://dataspace.princeton.edu/jspui/about/DataSpacePnG.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataspace.princeton.edu/jspui/"}] restricted [{"dataUploadLicenseName": "Deposit License", "dataUploadLicenseURL": "https://dataspace.princeton.edu/jspui/about/DataSpacePnG.pdf"}] ["DSpace"] {} ["ARK", "DOI", "hdl"] https://dataspace.princeton.edu/jspui/help/index.html#handles [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-10-26 2021-09-03 +r3d100012514 MetPetDB eng [{"additionalName": "MPD", "additionalNameLanguage": "eng"}] http://metpetdb.com/ ["OMICS_02721", "RRID:SCR_002208", "RRID:nlx_154722"] ["https://science.rpi.edu/earth/faculty/frank-spear", "spearf@rpi.edu"] MetPetDB is a database for metamorphic petrology that is being designed and built by a global community of metamorphic petrologists in collaboration with computer scientists at Rensselaer Polytechnic Institute as part of the National Cyberinfrastructure Initiative and supported by the National Science Foundation. eng ["institutional"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tw.rpi.edu/web/project/MetPetDB [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["earth crust", "geology", "minerals", "petrology", "rock", "samples"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0949318", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rensselaer Polytechnic Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.rpi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["spearf@rpi.edu"]}] [{"policyName": "EarthScope Data and Sample Policies", "policyURL": "http://www.earthscope.org/assets/uploads/pages/earthscope-data-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.earthscope.org/assets/uploads/pages/earthscope-data-policy.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wiki.cs.rpi.edu/trac/metpetdb/wiki/DataClasses"}] restricted [] ["other"] yes {"api": "https://tw.rpi.edu//web/project/MetPetDB/webservices", "apiType": "REST"} ["other"] ["none"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2017-10-26 2021-09-03 +r3d100012515 ResearchWorks Archive University of Washington eng [] https://digital.lib.washington.edu/researchworks/ [] ["rworks@uw.edu"] ResearchWorks Archive is the University of Washington’s digital repository (also known as “institutional repository”) for disseminating and preserving scholarly work. ResearchWorks Archive can accept any digital file format or content (examples include numerical datasets, photographs and diagrams, working papers, technical reports, pre-prints and post-prints of published articles). eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.lib.washington.edu/dataservices/tools/researchworks-archive [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Washington, University libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lib.washington.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access Restriction Policy", "policyURL": "http://digital.lib.washington.edu/policy-accessrestriction.html"}, {"policyName": "Archive Digital Collection Policy", "policyURL": "http://digital.lib.washington.edu/policy-collection.html"}, {"policyName": "Digital Preservation Policy", "policyURL": "http://www.lib.washington.edu/preservation/preservation_services/digital-preservation-policy"}, {"policyName": "Withdrawal policy", "policyURL": "http://digital.lib.washington.edu/policy-withdrawal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://digital.lib.washington.edu/policy-copyright-authorrights.html"}] restricted [{"dataUploadLicenseName": "Depositing your work", "dataUploadLicenseURL": "http://digital.lib.washington.edu/faq.html#depositing"}] ["DSpace"] {} ["DOI", "hdl"] http://guides.lib.uw.edu/research/faq/citationstyle [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digital.lib.washington.edu/researchworks/feed/atom_1.0/site", "syndicationType": "ATOM"} 2017-10-26 2021-09-03 +r3d100012516 PlasmID eng [{"additionalName": "Plasmid Information Database", "additionalNameLanguage": "eng"}] https://plasmid.med.harvard.edu/PLASMID/Home.xhtml ["FAIRsharing_doi:10.25504/FAIRsharing.k9ptv7", "OMICS_08730"] ["https://plasmid.med.harvard.edu/PLASMID/Contactus.jsp", "plasmidhelp@hms.harvard.edu"] The Plasmid Information Database (PlasmID) was established in 2004 to curate, maintain, and distribute cDNA and ORF constructs for use in basic molecular biological research. The materials deposited at our facility represent the culmination of several international collaborative efforts from 2004 to present: Beth Israel Deaconess Medical Center, Boston Children's Hospital, Brigham and Women's Hospital, Dana-Farber Cancer Institute, Harvard Medical School, Harvard School of Public Health, and Massachusetts General Hospital. eng ["disciplinary"] {"size": "about 350.000 plasmids", "updatedp": "2019-02-01"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://plasmid.med.harvard.edu/PLASMID/AboutUs.jsp [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA sequencing", "cDNA", "cancer", "human", "molecule", "mouse", "plasmid clones", "shRNA"] [{"institutionName": "Harvard Medical School", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hms.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard Medical School, Dana-Faber/Harvard Cancer Center", "institutionAdditionalName": ["DF/HCC", "High-Throughput DNA Sequencing Core (Formerly)"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://dnaseq.med.harvard.edu/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dnaseq.med.harvard.edu/contactus.html", "stephanie_mohr@hms.harvard.edu"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}] [{"policyName": "Terms and Conditons", "policyURL": "https://plasmid.med.harvard.edu/PLASMID/TermAndCondition.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://plasmid.med.harvard.edu/PLASMID/TermAndCondition.jsp"}] restricted [{"dataUploadLicenseName": "Depositor Agreement", "dataUploadLicenseURL": "https://plasmid.med.harvard.edu/PLASMID/PSI_Depositor_Agreement_OCT2007_final_generic.pdf"}] ["unknown"] {} ["none"] ["none"] no unknown [] [] {} 2017-10-27 2019-02-01 +r3d100012517 Animal Genome Size Database eng [] http://www.genomesize.com ["FAIRsharing_doi:10.25504/FAIRsharing.efp5v2", "OMICS_16749", "RRID:SCR_007551", "RRID:nif-0000-02548"] ["database@genomesize.com"] Welcome to the Animal Genome Size Database, Release 2.0, a comprehensive catalogue of animal genome size data. eng ["disciplinary"] {"size": "6222 species (3793 vertebrates, 2429 non-vertebrates) based on 8004 records from 786 published sources", "updatedp": "2019-02-01"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.genomesize.com/faq.php#_6 [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["amphibians", "annelids", "arachnids", "biodiversity", "birds", "chordates", "crustaceans", "echinoderms", "fishes", "flatworms", "genomics", "haploid DNA", "insects", "invertebrates", "mammals", "molluscs", "nematodes", "reptiles", "sequencing"] [{"institutionName": "University of Guelph, Department of Integrative Biology", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uoguelph.ca/ib/", "institutionIdentifier": ["RRID:SCR_011651", "RRID:nlx_77169"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rgregory@uoguelph.ca"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.genomesize.com/faq.php#_7"}] restricted [] ["unknown"] yes {} ["none"] http://www.genomesize.com/faq.php#_7 ["none"] no unknown [] [] {} 2017-10-27 2019-02-01 +r3d100012518 AmphibiaWeb eng [] https://amphibiaweb.org/index.html ["OMICS_14883", "RRID:SCR_001612", "RRID:nlx_153878"] ["https://amphibiaweb.org/about/contacts.html"] AmphibiaWeb is an online system enabling any user to search and retrieve information relating to amphibian biology and conservation. This site was motivated by the global declines of amphibians, the study of which has been hindered by the lack of multidisplinary studies and a lack of coordination in monitoring, in field studies, and in lab studies. We hope AmphibiaWeb will encourage a shared vision to collaboratively face the challenge of global amphibian declines and the conservation of remaining amphibians and their habitats. eng ["disciplinary"] {"size": "7.969 species. We have 3.280 species accounts for 2.61 species, 7.301 literature references, 806 sound files, 120 video files, and 38.884 photos of 4.489 different amphibian species.", "updatedp": "2019-02-01"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://amphibiaweb.org/amphibian/amph_index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["amphibian", "biology", "caecilians", "frog", "salamander"] [{"institutionName": "Berkeley Natural History Museums", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://bnhm.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://bnhm.berkeley.edu/about/contact-and-directions/"]}, {"institutionName": "University of California, Berkeley", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.berkeley.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://amphibiaweb.org/about/contacts.html"]}] [{"policyName": "AmphibiaWeb Data Use Policy", "policyURL": "https://amphibiaweb.org/data/datause.html"}, {"policyName": "AmphibiaWeb and its Data Sources", "policyURL": "https://amphibiaweb.org/data.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://calphotos.berkeley.edu/use.html"}] open [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/"}, {"dataUploadLicenseName": "Public Domain", "dataUploadLicenseURL": "https://creativecommons.org/share-your-work/public-domain/"}] ["unknown"] yes {} ["none"] https://amphibiaweb.org/amphibian/amph_index.html ["none"] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Contributers: https://amphibiaweb.org/about/acknowledgements.html ; Citing photos: https://calphotos.berkeley.edu/use.html#linking ; Sponsors: https://amphibiaweb.org/about/sponsors.html ; AmphibiaWeb Songs: https://amphibiaweb.org/about/singasong.html 2017-10-27 2019-02-01 +r3d100012519 Avibase eng [{"additionalName": "the world bird database", "additionalNameLanguage": "eng"}] https://avibase.bsc-eoc.org/avibase.jsp?lang=EN&pg=home ["OMICS_22513"] ["dlepage@bsc-eoc.org"] Avibase is an extensive database information system about all birds of the world, containing over 19 million records about 10,000 species and 22,000 subspecies of birds, including distribution information, taxonomy, synonyms in several languages and more. This site is managed by Denis Lepage and hosted by Bird Studies Canada, the Canadian copartner of Birdlife International. Avibase has been a work in progress since 1992 and I am now pleased to offer it as a service to the bird-watching and scientific community. eng ["disciplinary"] {"size": "24.762.664 records about 10.000 species and 22.000 subspecies of birds", "updatedp": "2019-01-06"} 1992 ["afr", "cat", "ces", "deu", "eng", "fin", "fra", "hun", "ind", "isl", "ita", "lav", "nld", "pol", "por", "rus", "slk", "spa", "swe", "ukr"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://avibase.bsc-eoc.org/avibase.jsp [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bird-watching", "birds", "ornithology", "synonyms", "taxonomy"] [{"institutionName": "Birdlife International, Bird Studies Canada", "institutionAdditionalName": ["Bird Studies Canada", "\u00c9tudes d'Oiseaux Canada"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.birdscanada.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Avibase privacy policy", "policyURL": "https://avibase.bsc-eoc.org/privacy.jsp"}, {"policyName": "Integrated Accessibility Standard Regulation Policy", "policyURL": "https://www.bsc-eoc.org/download/IASRPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://avibase.bsc-eoc.org/privacy.jsp"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://avibase.bsc-eoc.org/privacy.jsp"}] restricted [] ["unknown"] yes {"api": "https://www.flickr.com/services/api/", "apiType": "other"} ["none"] https://avibase.bsc-eoc.org/citations.jsp ["none"] unknown unknown [] [] {} 2017-10-27 2019-02-01 +r3d100012521 HunCLARIN eng [] http://clarin.hu/content/hunclarin-tagjai [] ["info@clarin.hu"] HunCLARIN is a strategic research infrastructure of Hungary’s leading knowledge centres involved in R&D in speech- and language processing. It contains linguistic resources and tools that form the basis of research. The infrastructure has obtained an “SKI” qualification (Strategic Research Infrastructure) in 2010, and has been significantly expanded since. Currently comprising 36 members, the infrastructure includes several general- and specific-purpose text corpora, different language processing tools and analysers, linguistic databases as well as ontologies. RIL HAS was a co-founder of the European CLARIN project, which aims at supporting humanities and social sciences research with the help of language technology and by making digital linguistic resources more easily available. In accordance with these goals HunClarin makes the research infrastructures developed by the respective centres directly accessible for researchers through a common network entry point. A general goal of the infrastructure is to realise the interoperability of the collected research infrastructures and to enable comparing the performance of the respective alternatives and to coordinate different foci in R&D. The coordinator and contact person of the infrastructure is Tamás Váradi, RIL HAS. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "hun"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://corpus.nytud.hu/hunclarin/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Hungarian language", "Hunghlish", "morphology", "natural language processing", "speech technology"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "HAS RIL", "institutionAdditionalName": ["Hungarian Academy of Sciences, Research Institute for Linguistics", "Magyar Tudom\u00e1nyos Akad\u00e9mia, Nyelvtudom\u00e1nyi Int\u00e9zet"], "institutionCountry": "HUN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.nytud.hu/eng/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nytud.hu/contact_eng.html", "varadi.tamas[kukac]nytud.mta.hu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] restricted [] [] {"api": "ftp://ftp.mokk.bme.hu/", "apiType": "FTP"} ["none"] [] unknown unknown [] [] {} members: http://clarin.hu/content/hunclarin-tagjai 2017-11-03 2019-02-05 +r3d100012522 CLARIN-UK eng [] https://www.clarin.ac.uk/ [] ["martin.wynne@bodleian.ox.ac.uk"] CLARIN-UK is a consortium of centres of expertise involved in research and resource creation involving digital language data and tools. The consortium includes the national library, and academic departments and university centres in linguistics, languages, literature and computer science. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.clarin.ac.uk/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["CLAWS - Constituent Likelihood Automatic Word-tagging System", "CLiC - Corpus Linguistics in Cheshire", "CQPweb - Corpus Query Processor", "DECTE - Diachronic Electronic Corpus of Tyneside English", "ELAR - Endangered Language ARchive", "English language", "GATE - General Architecture for Text Engineering", "GraphColl", "IntelliText - Intelligent Tools for Creating and Analysing Electronic Text Corpora for Humanities Research", "Mapping Metaphor", "Oxford Text Archive", "Scottish Corpus of Texts and Speech", "The Hansard Corpus", "VARD", "Wmatrix", "Wordtree"] [{"institutionName": "Arts and Humanities Research Council", "institutionAdditionalName": ["AHRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ahrc.ukri.org/", "institutionIdentifier": ["ROR:0505m1554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure for Language Resources and Technology"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://clarin.eu/contact"]}, {"institutionName": "CLARIN-UK Centres", "institutionAdditionalName": ["Infrastructure for Digital Language Resources and Tools"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.ac.uk/centres", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford, Oxford e-Research Centre", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.oerc.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Licenses and CLARIN categories", "policyURL": "https://www.clarin.eu/content/licenses-and-clarin-categories"}, {"policyName": "Terms of use and Disclaimer", "policyURL": "https://www.clarin.eu/node/3760"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.clarin.eu/content/clarin-licensing-framework"}] restricted [{"dataUploadLicenseName": "Deposition License Agreements", "dataUploadLicenseURL": "https://www.clarin.eu/content/clarin-licensing-framework"}] [] {} ["none"] [] unknown unknown [] [] {} 2017-11-03 2021-08-25 +r3d100012523 ARCHE eng [{"additionalName": "A Resource Centre for the HumanitiEs", "additionalNameLanguage": "eng"}] https://arche.acdh.oeaw.ac.at/browser/ [] ["acdh@oeaw.ac.at"] ARCHE (A Resource Centre for the HumanitiEs) is a service aimed at offering stable and persistent hosting as well as dissemination of digital research data and resources for the Austrian humanities community. ARCHE welcomes data from all humanities fields. ARCHE is the successor of the Language Resources Portal (LRP) and acts as Austria’s connection point to the European network of CLARIN Centres for language resources. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10604 Islamic Studies, Arabian Studies, Semitic Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://arche.acdh.oeaw.ac.at/browser/about-service [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Austria", "FAIR", "corpora", "human culture", "human society", "linguistics"] [{"institutionName": "Austrian Centre for Digital Humanities and Cultural Heritage", "institutionAdditionalName": ["ACDH", "ACDH-CH"], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/acdh", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIAH-AT", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://digital-humanities.at/de/dha/clariah-at", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://homepage.univie.ac.at/karlheinz.moerth/"]}, {"institutionName": "CLARIN ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "\u00d6sterreichische Akademie der Wissenschaften", "institutionAdditionalName": ["Austrian Academy of Sciences", "\u00d6AW"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/oesterreichische-akademie-der-wissenschaften/", "institutionIdentifier": ["ROR:03anc3s24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Collection policy", "policyURL": "https://arche.acdh.oeaw.ac.at/browser/collection-policy"}, {"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/07/20210709-ARCHE-CTS_Certification_2020-2022.pdf"}, {"policyName": "FAIR Data principles", "policyURL": "https://www.force11.org/group/fairgroup/fairprinciples"}, {"policyName": "Preservation Policy", "policyURL": "https://arche.acdh.oeaw.ac.at/browser/preservation-policy"}, {"policyName": "Terms of use", "policyURL": "https://arche.acdh.oeaw.ac.at/browser/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://arche.acdh.oeaw.ac.at/browser/deposition-agreement"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "other", "dataLicenseURL": "https://vocabs.acdh.oeaw.ac.at/arche_licenses/en/"}] restricted [{"dataUploadLicenseName": "Deposition agreement", "dataUploadLicenseURL": "https://arche.acdh.oeaw.ac.at/browser/deposition-agreement"}] ["other"] yes {"api": "https://arche.acdh.oeaw.ac.at/oaipmh/", "apiType": "OAI-PMH"} ["hdl"] https://arche.acdh.oeaw.ac.at/browser/faq#citation [] unknown yes ["CLARIN certificate B", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} ARCHE is the successor of a repository project established in 2014 as CLARIN Centre Vienna / Language Resources Portal (CCV/LRP). The mission of CCV/LRP was to provide depositing services and easy and sustainable access to digital language resources created in Austria. ARCHE replaces CCV/LRP and extends its mission by offering an advanced and reliable data management and depositing service open to a broader range of humanities fields in Austria. 2017-11-06 2021-07-19 +r3d100012525 Lund University Humanities Lab corpus server eng [{"additionalName": "Humanities Lab corpus server", "additionalNameLanguage": "eng"}] https://corpora.humlab.lu.se/ [] ["corpman@humlab.lu.se"] As a member of SWE-CLARIN, the Humanities Lab will provide tools and expertise related to language archiving, corpus and (meta)data management, with a continued emphasis on multimodal corpora, many of which contain Swedish resources, but also other (often endangered) languages, multilingual or learner corpora. As a CLARIN K-centre we provide advice on multimodal and sensor-based methods, including EEG, eye-tracking, articulography, virtual reality, motion capture, av-recording. Current work targets automatic data retrieval from multimodal data sets, as well as the linking of measurement data (e.g. EEG, fMRI) or geo-demographic data (GIS, GPS) to language data (audio, video, text, annotations). We also provide assistance with speech and language technology related matters to various projects. A primary resource in the Lab is The Humanities Lab corpus server, containing a varied set of multimodal language corpora with standardised metadata and linked layers of annotations and other resources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.humlab.lu.se/facilities/corpus-server [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["EEG", "Swedish language", "articulography", "av-recording", "endangered languages", "eye-tracking", "motion capture", "multimodal corpora", "transcriptions", "virtual reality"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN - European Research Infrastructure for Language Resources and Technology"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "Lund University, Lund University Humanities Lab", "institutionAdditionalName": ["Lundlab", "SWE-HUMLAB"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.humlab.lu.se/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Maja.Petersson@humlab.lu.se", "sweclarin_lund@humlab.lu.se."]}, {"institutionName": "SWE-CLARIN", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sweclarin.se/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sweclarin.se/swe/kontakt"]}] [{"policyName": "Corpus Server User Information", "policyURL": "https://www.humlab.lu.se/facilities/corpus-server/user-information"}, {"policyName": "G\u00c9ANT Data Protection Code of Conduct for Service Providers", "policyURL": "https://geant3plus.archive.geant.net/uri/dataprotection-code-of-conduct/v1/Pages/default.aspx"}, {"policyName": "Lund University Humanities Lab - User Guidelines", "policyURL": "https://www.humlab.lu.se/fileadmin/user_upload/humlab/typo3/About/documents/humlab_user_guidelines_OCT2018.pdf"}, {"policyName": "Policy documents", "policyURL": "https://www.humlab.lu.se/about/policy-documents/"}, {"policyName": "Research ethics", "policyURL": "https://www.researchethics.lu.se/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.humlab.lu.se/facilities/corpus-server/general-information/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.humlab.lu.se/facilities/corpus-server/user-information/"}] restricted [] ["other"] yes {} ["hdl"] https://corpora.humlab.lu.se/ds/asv/?0 [] unknown yes ["other"] [] {} Lund University Humanities Lab has been officially recognized as a CLARIN C Centre. 2017-11-06 2021-07-19 +r3d100012526 Maison méditerranéenne des sciences de l'homme, Phonothèque fra [{"additionalName": "MMSH Phonoth\u00e8que", "additionalNameLanguage": "fra"}, {"additionalName": "Mediterranean Research Centre for the Humanities", "additionalNameLanguage": "eng"}] http://phonotheque.mmsh.huma-num.fr/ [] ["veronique.ginouves@univ-amu.fr"] A place of living memory, the Phonotheque of the MMSH aims to bring together recordings of the sound heritage that have the value of ethnological, linguistic, historical, musicological or literary information on the Mediterranean area. It documents fields little covered by conventional sources, or completes them with the point of view of actors or witnesses. The collection holds more than 8000 hours of audio archives recorded since the late 1950s concerning all the humanities sciences. eng ["disciplinary"] {"size": "8000 hours of audio records", "updatedp": "2018-08-03"} ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://phonotheque.mmsh.huma-num.fr/ [{"name": "Audiovisual data", "scheme": "parse"}] ["dataProvider"] ["Mediterranean area", "cultural anthropology", "dialectology", "oral tradition"] [{"institutionName": "Aix-Marseille University, Maison M\u00e9diterran\u00e9enne des Sciences de l\u2019Homme", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mmsh.univ-aix.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Huma-Num", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "http://phonotheque.mmsh.huma-num.fr/dyn/portal/index.xhtml?page=MMSH_Ethique&"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://phonotheque.mmsh.huma-num.fr/dyn/portal/index.xhtml?page=MMSH_Ethique&"}] closed [] ["unknown"] no {} ["none"] ["none"] no unknown [] [] {} Huma-Num coordinates the participation of France in CLARIN. 2017-11-06 2021-01-29 +r3d100012527 Phonogrammarchiv deu [{"additionalName": "PhA", "additionalNameLanguage": "deu"}] https://www.oeaw.ac.at/phonogrammarchiv/ [] ["https://www.oeaw.ac.at/phonogrammarchiv/phonogrammarchiv/team/", "pha@oeaw.ac.at"] The Phonogrammarchiv is a multi-disciplinary research sound and video archive, covering holdings from all continents. Since its foundation in 1899 the Phonogrammarchiv has been building up its holdings by cooperating with Austrian scholars and archiving their collected material, or by fieldwork conducted by staff members on special topics exploring new fields of methods and contents. The main tasks comprise the production, annotation, cataloguing and long-term preservation of audio-visual field recordings, making the cultural heritage available for future generations and enabling the dissemination of the recordings as well as technical developments in the field of AV recording and storage. Thus the Phonogrammarchiv adds to infrastructural performance valuable to both the scholarly community and the public at large. eng ["disciplinary"] {"size": "75.500 items (total playing time: ca. 14.000 h, including ca. 1.700 h video recordings)", "updatedp": "2018-07-20"} 1899 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.oeaw.ac.at/en/phonogrammarchiv/phonogrammarchiv/mission-statement/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["cultural anthropology", "dialectology", "endangered languages", "ethnomusicology", "lingustics", "musicology", "oral tradition"] [{"institutionName": "Austrian Academy of Sciences", "institutionAdditionalName": ["\u00d6AW", "\u00d6sterreichische Akademie der Wissenschaften"], "institutionCountry": "AUT", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/en/", "institutionIdentifier": ["ROR:03anc3s24", "RRID:SCR_000953", "RRID:nlx_99930"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN K(nowledge)-Centres", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/content/knowledge-centres", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}] [{"policyName": "Rahmenbedingungen zur Unterst\u00fctzung eines phonographischen/videographischen \nForschungsprojektes durch das Phonogra\nmmarchiv (PhA) der \u00d6sterreichischen \nAkademie der Wissenschaften (\u00d6AW)", "policyURL": "https://www.oeaw.ac.at/fileadmin/Institute/PHA/PDF/Rahmenbedingungen.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.oeaw.ac.at/phonogrammarchiv/phonogrammarchiv/clarin-k-centre/"}, {"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.oeaw.ac.at/phonogrammarchiv/phonogrammarchiv/clarin-k-centre/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.oeaw.ac.at/phonogrammarchiv/phonogrammarchiv/clarin-k-centre/"}] restricted [] ["unknown"] no {} ["other"] ["none"] yes unknown ["other"] [] {} The Phonogrammarchiv is part of the Austrian CLARIN consortium. The Phonogrammarchiv has been officially recognized as aCLARIN K (Knowledge) Centre. And it's get an Clarin K-Centre Certificate . - Partner intitutions: https://www.oeaw.ac.at/en/phonogrammarchiv/phonogrammarchiv/partner-institutions-cooperations/ 2017-11-06 2021-01-29 +r3d100012528 Canadian Open Genetics Repository eng [{"additionalName": "COGR", "additionalNameLanguage": "eng"}] http://opengenetics.ca/ [] ["cogr@opengenetics.ca", "http://opengenetics.ca/contact/"] The Canadian Open Genetics Repository is a collaborative effort for the collection, storage, sharing and robust analysis of variants reported by medical diagnostics laboratories across Canada. As clinical laboratories adopt modern genomics technologies, the need for this type of collaborative framework is increasingly important. If you want to join COGR project and get data please send an email at cogr@opengenetics.ca and the introduction to the project will be arranged. eng ["disciplinary", "other"] {"size": "2.921 matching variants", "updatedp": "2017-11-06"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://opengenetics.ca/about/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["BRCA1", "BRCA2", "Canadian laboratories", "clinical genetics", "data sharing", "diagnostics", "genetic counselling", "genetic screening", "human genetics"] [{"institutionName": "Government of Canada, Genome Canada", "institutionAdditionalName": ["Genome Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/", "institutionIdentifier": ["ROR:029s29983"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about/contact-us"]}, {"institutionName": "Ontario Genomics", "institutionAdditionalName": ["formerly: Ontario Genomics Institute"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ontariogenomics.ca/", "institutionIdentifier": ["ROR:00c68jz96", "RRID:SCR_013156", "RRID:nif-0000-32038"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sinai Health System, Mount Sinai Hospital Toronto, Department of Microbiology", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mountsinai.on.ca/care/microbiology", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Jordan.Lerner-Ellis@sinaihealthsystem.ca", "mlebo@partners.orgMatthew Lebo"]}] [{"policyName": "Policies / guidelines", "policyURL": "http://opengenetics.ca/policiesguidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://opengenetics.ca/policiesguidelines/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://opengenetics.ca/policiesguidelines/"}] restricted [] ["unknown"] {} [] https://www.nature.com/gim/journal/vaop/ncurrent/full/gim201780a.html [] unknown unknown [] [] {} Collaborators: http://opengenetics.ca/communities/ ---- More information: http://www.mountsinai.on.ca/about_us/news/2015-news/personalized-medicine-gets-real-with-the-canadian-open-genetics-repository 2017-11-06 2021-01-29 +r3d100012529 ImmPort eng [{"additionalName": "Immunology Database and Analysis Portal", "additionalNameLanguage": "eng"}] https://www.immport.org/shared/home ["FAIRsharing_doi:10.25504/FAIRsharing.bpkzqp", "OMICS_16756", "RRID:SCR_012804", "RRID:nlx_152691"] ["ImmPort_Helpdesk@immport.org"] The Immunology Database and Analysis Portal (ImmPort) archives clinical study and trial data generated by NIAID/DAIT-funded investigators. Data types housed in ImmPort include subject assessments i.e., medical history, concomitant medications and adverse events as well as mechanistic assay data such as flow cytometry, ELISA, ELISPOT, etc. --- You won't need an ImmPort account to search for compelling studies, peruse study demographics, interventions and mechanistic assays. But why stop there? What you really want to do is download the study, look at each experiment in detail including individual ELISA results and flow cytometry files. Perhaps you want to take those flow cytometry files for a test drive using FLOCK in the ImmPort flow cytometry module. To download all that interesting data you will need to register for ImmPort access. eng ["disciplinary"] {"size": "Shared Data: 462 studies; 62.793 subjects; 1.851 experiments; 1.621 protocols; 5.936.500 total results", "updatedp": "2021-02-03"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.immport.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "allergy", "clinical research", "clinical trials", "cytometry", "data service", "immunology", "infectious disease", "ontology", "proteomics", "transcriptomics", "transplantation", "vaccine"] [{"institutionName": "National Institute of Allergy and Infectious Diseases, Division of Allergy, Immunology, and Transplantation", "institutionAdditionalName": ["NIAID, DAIT"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/about/dait", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/about/division-allergy-immunology-transplantation-contacts"]}, {"institutionName": "Northrop Grumman Health Solutions", "institutionAdditionalName": ["NGHS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://grantome.com/grant/NIH/316201200036W-0-0-1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["morgan.crafts@ngc.com"]}, {"institutionName": "United States Department of Health and Human Services", "institutionAdditionalName": ["HHS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["ROR:033jnv181"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California San Francisco", "institutionAdditionalName": ["UC San Francisco", "UCSF"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucsf.edu/", "institutionIdentifier": ["ROR:043mz5j54", "RRID:SCR_010605"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Atul.Butte@ucsf.edu"]}] [{"policyName": "User Agreement for the NIAID Immunology Database and Analysis Portal (ImmPort)i", "policyURL": "https://www.immport.org/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.immport.org/agreement"}] restricted [{"dataUploadLicenseName": "Data Upload", "dataUploadLicenseURL": "https://www.immport.org/dataUpload"}] ["MySQL", "other"] yes {"api": "https://docs.immport.org/", "apiType": "REST"} ["DOI"] https://www.immport.org/cite [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. ImmPort is a regular member of the World Data System - WDS. 2017-11-07 2021-09-09 +r3d100012530 University of Amsterdam / Amsterdam University of Applied Sciences figshare eng [{"additionalName": "UvA / AUAS figshare", "additionalNameLanguage": "eng"}] https://uvaauas.figshare.com/ [] ["https://www.amsterdamuas.com/library/contact/contact.html"] The University of Amsterdam (UvA) and the Amsterdam University of Applied Sciences (AUAS/HvA) cooperate to connect academic research with the insights and experiences from professional practice, and together the UvA and AUAS offer students a wide range of education pathways. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://rdm.uva.nl/en/uva-auas-figshare/introduction.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Amsterdam University of Applied Sciences", "institutionAdditionalName": ["AUAS", "Hogeschool van Amsterdam"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.amsterdamuas.com/", "institutionIdentifier": ["ROR:00y2z2s03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Amsterdam", "institutionAdditionalName": ["Universiteit van Amsterdam", "UvA"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uva.nl/", "institutionIdentifier": ["ROR:04dkp9463", "RRID:SCR_002385", "RRID:nlx_19684"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rdm-support@uva.nl"]}] [{"policyName": "Manuals", "policyURL": "http://rdm.uva.nl/en/uva-auas-figshare/manuals/manuals.html"}, {"policyName": "RDM policy", "policyURL": "http://rdm.uva.nl/en/programme/rdm-policy"}, {"policyName": "support", "policyURL": "http://rdm.uva.nl/en/support/uva-auas-figshare/introduction.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] {} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2017-11-07 2021-06-16 +r3d100012531 University of Adelaide figshare eng [] https://adelaide.figshare.com/ [] ["https://www.adelaide.edu.au/figshare/contact/", "researchsupport@adelaide.edu.au"] Figshare has been chosen as the University of Adelaide's official data and digital object repository with unlimited local storage. All current staff and HDR students can access and publish research data and digital objects on the University of Adelaide's Figshare site. Because Figshare is cloud-based, you can access it anywhere and at any time. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.adelaide.edu.au/figshare/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Adelaide", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.adelaide.edu.au/", "institutionIdentifier": ["ROR:00892tw58", "RRID:SCR_001075"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "RDM", "policyURL": "https://www.adelaide.edu.au/figshare/"}, {"policyName": "Research Data and Primary Materials Policy", "policyURL": "https://www.adelaide.edu.au/policies/4043/"}, {"policyName": "Research Data management", "policyURL": "https://www.adelaide.edu.au/library/library-services/services-for-researchers"}, {"policyName": "Responsible conduct of research", "policyURL": "https://www.adelaide.edu.au/policies/96/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/GPL-compatibility.html"}, {"dataLicenseName": "BSD", "dataLicenseURL": "http://www.ausgoal.gov.au/BSD-and-Other-Software-Licences"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://knowledge.figshare.com/articles/item/what-is-the-most-appropriate-license-for-my-data"}, {"dataLicenseName": "other", "dataLicenseURL": "http://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/quick-guide-gplv3.html"}] restricted [] ["other"] {"api": "https://docs.figshare.com/#oai_pmh", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {} University of Adelaide figshareData are discoverable via Research Data Australia. 2017-11-07 2021-02-05 +r3d100012532 kilthub figshare eng [] https://kilthub.figshare.com/ [] ["KiltHub@andrew.cmu.edu", "https://kilthub.cmu.edu/f/contact"] Provided by the University Libraries, KiltHub is the comprehensive institutional repository and research collaboration platform for research data and scholarly outputs produced by members of Carnegie Mellon University and their collaborators. KiltHub collects, preserves, and provides stable, long-term global open access to a wide range of research data and scholarly outputs created by faculty, staff, and student members of Carnegie Mellon University in the course of their research and teaching. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.cmu.edu/kilthub/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Carnegie Mellon University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmu.edu/", "institutionIdentifier": ["ROR:05x2bcf33", "RRID:SCR_011138", "RRID:nlx_42483"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://figshare.com/services/institutions", "institutionIdentifier": ["RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://figshare.com/contact"]}] [{"policyName": "Deposit Agreement", "policyURL": "https://www.library.cmu.edu/kilthub/deposit-agreement"}, {"policyName": "Terms of Use", "policyURL": "https://www.library.cmu.edu/kilthub/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2017-11-07 2021-08-26 +r3d100012534 IMGT/LIGM-DBI eng [{"additionalName": "ImMunoGeneTics/LIGM-DB", "additionalNameLanguage": "eng"}, {"additionalName": "International ImMunoGeneTics information system / Laboratoire d'ImmunoG\u00e9n\u00e9tique Mol\u00e9culaire-Database", "additionalNameLanguage": "eng"}] http://www.imgt.org/ligmdb/ ["RRID:SCR_006931", "RRID:nif-0000-03015"] ["Joumana.Michaloud@igh.cnrs.fr", "Marie-Paule.Lefranc@igh.cnrs.fr", "Patrice.Duroux@igh.cnrs.fr"] IMGT/LIGM-DB is a comprehensive database of Immunoglobulins (IG) and T cell Receptors (TR) from human and other vertebrates, with translation for fully annotated sequences. eng ["disciplinary"] {"size": "196471 sequences; 355 species", "updatedp": "2020-02-05"} 1995 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.imgt.org/ligmdb/documentation#h1_0 [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Major Histocompatibility Complex (MHC)", "gDNA", "immunogenetics", "immunoinformatics", "nucleotide sequences", "sDNA", "vertebrates"] [{"institutionName": "Centre national de la recherche scientifique", "institutionAdditionalName": ["CNRS", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php", "institutionIdentifier": ["ROR:02feahw73", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Research and Innovation", "institutionAdditionalName": ["EU, Research and Innovation"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/info/research-and-innovation_en", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Montpellier, Laboratoire d'ImmunoG\u00e9n\u00e9tique Mol\u00e9culaire", "institutionAdditionalName": ["LIGM"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imgt.org/IMGTinformation/#autority", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Marie-Paule.Lefranc@igh.cnrs.fr", "http://www.imgt.org/about/aboutus.php#LIGM"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.imgt.org/about/termsofuse.php"}] closed [] ["unknown"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/imgt/", "apiType": "FTP"} ["none"] http://www.imgt.org/ligmdb/ ["none"] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.imgt.org/rss/", "syndicationType": "RSS"} IMGT/LIGM-DB is part of IMGT, the international ImMunoGeneTics information system® http://www.imgt.org 2017-11-08 2021-02-19 +r3d100012535 IMGT/PRIMER-DB eng [{"additionalName": "ImMunoGeneTics/PRIMER-DB", "additionalNameLanguage": "eng"}, {"additionalName": "International ImMunoGeneTics information system/PRIMER-Database", "additionalNameLanguage": "eng"}] http://www.imgt.org/IMGTPrimerDB/ [] ["Geraldine.Folch@igh.cnrs.fr", "Marie-Paule.Lefranc@igh.cnrs.fr", "Patrice.Duroux@igh.cnrs.fr"] The IMGT/PRIMER-DB database provides standardized information on oligonucleotides or primers of the immunoglobulins (IG) and T cell receptors (TR). eng ["disciplinary"] {"size": "1.864 entries", "updatedp": "2017-11-09"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.imgt.org/IMGTPrimerDB/PrimerDB_Help.pl [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["RPI", "antigen", "biochemistry", "molecular biology", "oligonucleotides", "protein chain", "sequences", "vertebrates"] [{"institutionName": "Centre national de la recherche scientifique", "institutionAdditionalName": ["CNRS", "National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/index.php", "institutionIdentifier": ["ROR:00675rp98", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "EUROGENTEC", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://secure.eurogentec.com/life-science.html", "institutionIdentifier": ["ROR:03mav6487"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["m.lemaitre@eurogentec"]}, {"institutionName": "Universit\u00e9 Montpellier", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.umontpellier.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Julien.Bertrand@unige.ch"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.imgt.org/about/termsofuse.php#copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.imgt.org/about/termsofuse.php#copyright"}] closed [] ["unknown"] yes {} ["other"] http://www.imgt.org/genedb/ ["none"] unknown unknown ["other"] [] {"syndication": "http://www.imgt.org/rss/", "syndicationType": "RSS"} IMGT/PRIMER-DB is part of IMGT, the international ImMunoGeneTics information system® http://www.imgt.org 2017-11-09 2021-02-19 +r3d100012536 IMGT/GENE-DB eng [{"additionalName": "ImMunoGeneTics / Gene-DB", "additionalNameLanguage": "eng"}, {"additionalName": "International ImMunoGeneTics information system/Gene-DB", "additionalNameLanguage": "eng"}] http://www.imgt.org/genedb/ ["RRID:SCR_006964", "RRID:nif-0000-03012"] ["Marie-Paule.Lefranc@igh.cnrs.fr.", "Veronique.Giudicelli@igh.cnrs.fr"] IMGT/GENE-DB is the IMGT genome database for IG and TR genes from human, mouse and other vertebrates. IMGT/GENE-DB provides a full characterization of the genes and of their alleles: IMGT gene name and definition, chromosomal localization, number of alleles, and for each allele, the IMGT allele functionality, and the IMGT reference sequences and other sequences from the literature. IMGT/GENE-DB allele reference sequences are available in FASTA format (nucleotide and amino acid sequences with IMGT gaps according to the IMGT unique numbering, or without gaps). eng ["disciplinary"] {"size": "DB contains 8280 genes 10926 alleles from 31 species", "updatedp": "2021-02-11"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.imgt.org/genedb/doc [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["T cell receptor", "alleles", "gene expression", "genome analysis", "genomics", "human", "immunogenetics", "immunoglobulin", "immunoinformatics", "mouse", "vertebrates"] [{"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": ["ROR:00675rp98", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Marie-Paule.Lefranc@igh.cnrs.fr."]}, {"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International ImMunoGeneTics information system", "institutionAdditionalName": ["IMGT"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imgt.org/", "institutionIdentifier": ["RRID:SCR_012780", "RRID:nif-0000-03011"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Montpellier", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.umontpellier.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Marie-Paule.Lefranc@igh.cnrs.fr", "http://www.imgt.org/IMGTinformation/Contact.php"]}] [{"policyName": "IMGT Documentation", "policyURL": "http://www.imgt.org/genedb/doc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.imgt.org/about/termsofuse.php#copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.imgt.org/about/termsofuse.php#copyright"}] closed [] ["unknown"] yes {"api": "http://www.imgt.org/genedb/directlinks", "apiType": "other"} ["none"] http://www.imgt.org/IMGTindex/CitingIMGT.php ["none"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.imgt.org/rss/", "syndicationType": "RSS"} IMGT/GENE-DB is part of the IMGT®, the international ImMunoGeneTics information system® http://www.imgt.org/ 2017-11-09 2021-02-19 +r3d100012537 Dash eng [] https://cdlib.org/services/uc3/ ["FAIRsharing_DOI:10.25504/FAIRsharing.v1knrj"] ["uc3@ucop.edu"] >>>!!!<<< Stated 2019-10-30: Dash is no longer available. Researchers are advised to store their research data at Dryad https://www.re3data.org/repository/r3d100000044 >>>!!!<<>> merged with https://www.re3data.org/repository/r3d100012653 <<< !!! RDoCdb is an informatics platform for the sharing of human subjects data generated by investigators as part of the NIMH's Research Domain Criteria initiative, and to support this initiative's aims. It also accepts and shares appropriate data related to mental health from other sources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-10-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20604 Systemic Neuroscience, Computational Neuroscience, Behaviour", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://data-archive.nimh.nih.gov/#rdocdb-anchor [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["EEG", "EGG", "cognition", "emotion", "eye tracking", "fMRI", "human behavior", "mental disorders", "motivation", "neurosignal recording", "valence systems"] [{"institutionName": "National Institutes of Health, National Institute of Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["RRID:SCR_011431", "RRID:nlx_inv_1005109"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Mental Health, Research Domain Criteria Initiative", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/research-priorities/rdoc/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIMH Data Archive Data Sharing Terms and Conditions", "policyURL": "https://ndar.nih.gov/ndarpublicweb/Documents/historical_terms_and_conditions/NIMH%20Data%20Archive%20Data%20Sharing%20Terms%20Effective%2007012015.pdf"}, {"policyName": "Policy for the NIMH Data Archive (NDA)", "policyURL": "https://data-archive.nimh.nih.gov/ndct/s/sharedcontent/about/policy.html"}, {"policyName": "Privacy policy", "policyURL": "https://data-archive.nimh.nih.gov/rdocdb/footer/privacy-policy.html"}, {"policyName": "Research Domain Criteria Database (RDoCdb) Data Sharing Plan", "policyURL": "https://ndar.nih.gov/ndarpublicweb/Documents/historical_terms_and_conditions/RDoCdb%20Data%20Sharing%20Terms%20and%20Conditions%20Final%2009152014%20to%2006302015.pdf"}, {"policyName": "Your collection", "policyURL": "https://data-archive.nimh.nih.gov/rdocdb/s/sharedcontent/plan/your-collection.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://data-archive.nimh.nih.gov/rdocdb/footer/disclaimer.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://data-archive.nimh.nih.gov/rdocdb/footer/disclaimer.html"}] restricted [{"dataUploadLicenseName": "Share Data", "dataUploadLicenseURL": "https://data-archive.nimh.nih.gov/rdocdb/share"}] [] {} ["none"] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} RDoCdb is part of NIMH Data Archive 2018-04-30 2021-10-08 +r3d100012655 Pediatric MRI Data Repository eng [{"additionalName": "NIH Pediatric MRI Repository", "additionalNameLanguage": "eng"}, {"additionalName": "PedsMRI", "additionalNameLanguage": "eng"}] https://pediatricmri.nih.gov/nihpd/info/index.html ["OMICS_15204", "RRID:SCR_003394", "RRID:nif-0000-00201"] ["pedsmri@mail.nih.gov"] !!! >>> integrated in https://www.re3data.org/repository/r3d100012653 >>> !!! This site provides information about the NIH MRI Study of Normal Brain Development (Pediatric MRI Study) and resulting Pediatric MRI Data Repository. This website serves as the portal through which data can be obtained by qualified researchers. The overarching goal of the Pediatric MRI Study is to foster a better understanding of normal brain maturation as a basis for understanding atypical brain development associated with a variety of disorders and diseases. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021-10-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://pediatricmri.nih.gov/nihpd/info/project_overview.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biomedicine", "disease", "magnetic resonance study", "neurology", "pediatrics", "psychiatric", "structured psychiatric interviews"] [{"institutionName": "National Database for Autism Research", "institutionAdditionalName": ["NDAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ndar.nih.gov/", "institutionIdentifier": ["RRID:SCR_004434", "RRID:nlx_143735"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Health, National Institute of Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["RRID:SCR_011431", "RRID:nlx_inv_1005109"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Health, National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": ["RRID:SCR_013116", "RRID:nlx_inv_1005110"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute on Drug Abuse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": ["RRID:SCR_011440", "RRID:nlx_inv_1005115"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://pediatricmri.nih.gov/nihpd/info/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://pediatricmri.nih.gov/nihpd/info/data_access.html"}] closed [] ["unknown"] {"api": "https://pediatricmri.nih.gov/nihpd/info/faqs.html", "apiType": "FTP"} ["ARK"] [] unknown yes [] [] {} 2018-04-30 2021-10-08 +r3d100012656 ABCD Data Repository eng [{"additionalName": "Adolescent Brain Cognitive Development", "additionalNameLanguage": "eng"}] https://data-archive.nimh.nih.gov/abcd [] ["NDAHelp@mail.nih.gov", "https://data-archive.nimh.nih.gov/abcd/footer/contact-us.html"] The ABCD Data Repository houses all data generated by the Adolescent Brain Cognitive Development (ABCD) Study. The ABCD Study is supported by NIH partners (the National Institute on Drug Abuse, the National Institute on Alcohol Abuse and Alcoholism, the National Cancer Institute, the Eunice Kennedy Shriver National Institute of Child Health and Human Development, the National Institute of Mental Health, the National Institute on Minority Health and Health Disparities, the National Institute of Neurological Disorders and Stroke, the NIH Office of Behavioral and Social Sciences Research, and the NIH Office of Research on Women’s Health), as well as the Centers for Disease Control and Prevention – Division of Adolescent and School Health. This repository will store data generated by ABCD investigators, serve as a collaborative platform for harmonizing these data, and share those data with qualified researchers. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://data-archive.nimh.nih.gov/abcd/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aggression", "depression", "diagnostic", "emotions", "neurophysiology", "pain", "social competence", "suicide"] [{"institutionName": "Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NIH Office of Behavioral and Social Sciences Research", "institutionAdditionalName": ["OBSSR"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://obssr.od.nih.gov/", "institutionIdentifier": ["RRID:SCR_006554", "RRID:nif-0000-22618"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NIH Office of Research on Women\u2019s Health", "institutionAdditionalName": ["ORWH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://orwh.od.nih.gov/", "institutionIdentifier": ["RRID:SCR_000986", "RRID:nlx_152796"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Heart, Lung, and Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": ["RRID:SCR_011413", "RRID:nlx_inv_1005097"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Mental Health", "institutionAdditionalName": ["NIMH"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nimh.nih.gov/index.shtml", "institutionIdentifier": ["RRID:SCR_011431", "RRID:nlx_inv_1005109"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Neurological Disorders and Stroke", "institutionAdditionalName": ["NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ninds.nih.gov/", "institutionIdentifier": ["RRID:SCR_013116", "RRID:nlx_inv_1005110"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute on Alcohol Abuse and Alcoholism", "institutionAdditionalName": ["NIAAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaaa.nih.gov/", "institutionIdentifier": ["RRID:SCR_011439", "RRID:nlx_inv_1005113"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute on Drug Abuse", "institutionAdditionalName": ["NIDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.drugabuse.gov/", "institutionIdentifier": ["RRID:SCR_011440", "RRID:nlx_inv_1005115"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute on Minority Health and Health Disparities", "institutionAdditionalName": ["NIMHD"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nimhd.nih.gov/", "institutionIdentifier": ["RRID:SCR_011441", "RRID:nlx_inv_1005095"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIMH Data Archive Data Use Certification", "policyURL": "https://ndar.nih.gov/ndarpublicweb/Documents/NDAR+Data+Access+Request+DUC+FINAL.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data-archive.nimh.nih.gov/abcd/footer/disclaimer.html"}] restricted [{"dataUploadLicenseName": "NIMH Data Archive Data Submission Agreement", "dataUploadLicenseURL": "https://s3.amazonaws.com/NDARExternalResources/Documents/NDAR+Submission+Request.pdf"}] ["unknown"] {"api": "https://data-archive.nimh.nih.gov/abcd/query/api.html", "apiType": "REST"} ["DOI"] https://data-archive.nimh.nih.gov/abcd/results [] unknown unknown [] [] {} 2018-04-30 2019-01-23 +r3d100012657 CCF eng [{"additionalName": "Connectome Coordination Facility", "additionalNameLanguage": "eng"}] https://data-archive.nimh.nih.gov/ccf [] ["https://data-archive.nimh.nih.gov/ccf/footer/contact-us.html"] The Connectome Coordination Facility (CCF) houses and distributes public research data for a series of studies that focus on the connections within the human brain. These are known as Human Connectome Projects. he Connectome Coordination Facility (CCF) was chartered to help coordinate myriad research projects, harmonize their data, and facilitate the dissemination of results. eng ["disciplinary"] {"size": "20 studies", "updatedp": "2019-01-23"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://data-archive.nimh.nih.gov/ccf/about [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["behavioral data", "clinical assessments", "demography", "diseases", "human brain"] [{"institutionName": "Human Connectome Project", "institutionAdditionalName": ["HCP"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.humanconnectomeproject.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@humanconnectome.org"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "HCP Data Use Agreement", "policyURL": "http://www.humanconnectomeproject.org/wp-content/uploads/2010/01/HCP_Data_Agreement.pdf"}, {"policyName": "Policy for the NIMH Data Archive (NDA)", "policyURL": "https://data-archive.nimh.nih.gov/ccf/s/sharedcontent/about/policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data-archive.nimh.nih.gov/ccf/footer/disclaimer.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://data-archive.nimh.nih.gov/ccf/footer/disclaimer.html"}] restricted [] ["unknown"] {} [] http://www.humanconnectomeproject.org/data/ [] unknown unknown [] [] {} 2018-04-30 2019-01-27 +r3d100012661 Telangana Open Data Portal eng [{"additionalName": "Open Data Telangana", "additionalNameLanguage": "eng"}] http://data.telangana.gov.in/ [] ["http://data.telangana.gov.in/contact-us", "opendata@telangana.gov.in"] The Open Data Platform supports the 'Open Data Policy' of the Government of Telangana. The portal will be the central repository of all the datasets of the Government of Telangana that should be in the public domain. The portal will house datasets form the various departments and organizations of the Government of Telangana. The portal could be used by a variety of stakeholders and will enhance transparency in the working of the government apart from triggering innovative solutions to various problems. eng ["other"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://data.telangana.gov.in/about-open-data-telangana [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary", "statistics"] [{"institutionName": "Government of Telangana", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.telangana.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.telangana.gov.in/Contact-Us"]}] [{"policyName": "Telangana Open Data Policy", "policyURL": "http://it.telangana.gov.in/telangana-open-data-policy-2016/"}, {"policyName": "Website Policies", "policyURL": "http://data.telangana.gov.in/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://datameet.org/2016/09/19/data-policies-in-telangana/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://it.telangana.gov.in/telangana-open-data-policy-2016/"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} 2018-05-11 2018-05-16 +r3d100012662 Open Government Data Portal of Sikkim eng [] https://sikkim.data.gov.in/ [] ["https://sikkim.data.gov.in/contact-us-sk", "t.samdup@nic. in"] Open Government Data Portal of Sikkim–sikkim.data.gov.in - is a platform for supporting Open Data initiative of Government of Sikkim. The portal is intended to be used by Departments/Organizations of Government of Sikkim to publish datasets, documents, services, tools and applications collected by them for public use. It intends to increase transparency in the functioning of the state Government and also open avenues for many more innovative uses of Government Data to give different perspective. Open Government Data Portal of Sikkim is designed and developed by the Open Government Data Division of National Informatics Centre (NIC), Department of Electronics and Information Technology (DeitY), Government of India. The portal has been created under Software as A Service (SaaS) model of Open Government Data (OGD) Platform India of NIC. The data available in the portal are owned by various Departments/Organization of Government of Sikkim. Open Government Data Portal of Sikkim has following modules: Data Management System (DMS) – Module for contributing data catalogs by various state government agencies for making those available on the front end website after a due approval process through a defined workflow. Content Management System (CMS) – Module for managing and updating various functionalities and content types of Open Government Data Portal of Sikkim. Visitor Relationship Management (VRM) – Module for collating and disseminating viewer feedback on various data catalogs. Communities – Module for community users to interact and share their zeal and views with others, who share common interests as that of theirs. eng ["other"] {"size": "102 datasets", "updatedp": "2018-05-15"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://sikkim.data.gov.in/about-portal [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["India", "education", "governmental", "health", "rural"] [{"institutionName": "Government of Sikkim", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sikkim.gov.in/portal", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Informatics Center", "institutionAdditionalName": ["NIC"], "institutionCountry": "IND", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Data Implementation Guidelines", "policyURL": "https://data.gov.in/sites/default/files/NDSAP_Implementation_Guidelines_2.2.pdf"}, {"policyName": "Policies", "policyURL": "https://sikkim.data.gov.in/policies"}, {"policyName": "Sikkim Open Data Acquisition and Accessibility Policy (SODAAP)", "policyURL": "https://sikkim.data.gov.in/sites/default/files/SODAAP-Policy-Document-Sikkim.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://sikkim.data.gov.in/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://sikkim.data.gov.in/policies"}] restricted [] ["unknown"] {"api": "http://vocab.nic.in/", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2018-05-11 2021-09-09 +r3d100012663 Open Data DK eng [] http://www.opendata.dk/ [] ["info@opendata.dk"] Open Data DK has established a governance model to ensure that the members perceive the association as open, equal and result-creating. Open Data DK is a union with a board and teams. The Board is the general and strategic forum and consists of a chairman and five board members. The General Assembly is the Association's decision-making body and highest authority. The individual teams coordinate efforts within specific focus areas. Governance model with teams must support the need to coordinate the work as well as possible while taking into account the autonomy that the individual teams have in terms of the democratic basic element on which the association is based. The gain of using this form of organization is a joint work across the members of the association. eng ["other"] {"size": "", "updatedp": ""} ["dan"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.opendata.dk/om/hvad-er-open-data-dk [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Aarhus Kommune", "institutionAdditionalName": [], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aarhus.dk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Foreningen Open Data DK", "institutionAdditionalName": [], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.opendata.dk/om/vedtaegter", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.opendata.dk/kontakt"]}] [{"policyName": "Code of Conduct", "policyURL": "http://www.opendata.dk/om/code-conduct"}, {"policyName": "Vejledninger og analyser", "policyURL": "http://www.opendata.dk/viden-om/vejledninger-og-analyser"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://portal.opendata.dk/dataset/open-data-dk-licens"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.opendata.dk/"}] closed [] ["CKAN"] {} ["none"] [] unknown unknown [] [] {} other data portals in Danmaerk: http://www.opendata.dk/dataplatform/oevrige 2018-05-11 2021-09-22 +r3d100012664 B-Clear eng [{"additionalName": "Bloomington Clear", "additionalNameLanguage": "eng"}, {"additionalName": "City of Bloomington Data Portal", "additionalNameLanguage": "eng"}] https://data.bloomington.in.gov/ [] [] “B-Clear” stands for Bloomington Clear, or Be Clear about what we’re up to. B-Clear is a one-stop place to build an ever-growing assembly of useful data. We’re organizing it as open, accessible data so everyone can see and use it and manipulate it. eng ["institutional"] {"size": "141 Datasets", "updatedp": "2018-05-14"} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}] https://data.bloomington.in.gov/about [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["business", "city", "housing", "public safety", "transportation", "water"] [{"institutionName": "City of Bloomington, Indiana", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://bloomington.in.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "What Makes a Good Dataset?", "policyURL": "https://docs.google.com/document/d/1B3pHS5rjSoQ1rHz7YJlQCtR54onY9na9ojpDYQm85L4/edit"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://opendefinition.org/licenses/cc-by/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://opendefinition.org/od/2.0/en/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1-0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendefinition.org/licenses/odc-pddl/"}] restricted [] ["CKAN"] {} ["none"] [] unknown unknown [] [] {} 2018-05-11 2018-05-16 +r3d100012665 Migration data portal eng [{"additionalName": "IOM's Global Migration Data Portal", "additionalNameLanguage": "eng"}] https://migrationdataportal.org/?i=stock_abs_&t=2017 [] ["https://migrationdataportal.org/contact"] The Portal aims to serve as a unique access point to timely, comprehensive migration statistics and reliable information about migration data globally. The site is designed to help policy makers, national statistics officers, journalists and the general public interested in the field of migration to navigate the increasingly complex landscape of international migration data, currently scattered across different organisations and agencies. Especially in critical times, such as those faced today, it is essential to ensure that responses to migration are based on sound facts and accurate analysis. By making the evidence about migration issues accessible and easy to understand, the Portal aims to contribute to a more informed public debate. The Portal was launched in December 2017 and is managed and developed by IOM’s Global Migration Data Analysis Centre (GMDAC), with the guidance of its Advisory Board, and was supported in its conception by the Economist Intelligence Unit (EIU). The Portal is supported financially by the Governments of Germany, the United States of America and the UK Department for International Development (DFID). eng ["disciplinary"] {"size": "", "updatedp": ""} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://migrationdataportal.org/iom-data [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["emigration", "migrant flow", "migration governance", "migration health", "migration policy", "resettlement"] [{"institutionName": "IOM's Global Migration Analysis Center", "institutionAdditionalName": ["GMDAC"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://gmdac.iom.int/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gmdac@iom.int"]}, {"institutionName": "International Organization for Migration", "institutionAdditionalName": ["IOM", "OIM", "Organisation Internationale pour la Migration", "Organizaci\u00f3n Internacional para las Migraciones"], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "non-profit", "institutionURL": "http://www.iom.int/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://migrationdataportal.org/disclaimer"}, {"policyName": "Terms of use", "policyURL": "https://migrationdataportal.org/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://migrationdataportal.org/terms-use"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2018-05-11 2018-05-18 +r3d100012666 Conservation Genome Resource Bank for Korean Wildlife eng [{"additionalName": "CGRB", "additionalNameLanguage": "eng"}] http://www.cgrb.org/ [] ["cgrb@cgrb.org"] Genome resource samples of wild animals, particularly those of endangered mammalian and avian species, are very difficult to collect. In Korea, many of these animals such as tigers, leopards, bears, wolves, foxes, gorals, and river otters, are either already extinct, long before the Korean biologists had the opportunity to study them, or are near extinction. Therefore, proposal for a systematic collection and preservation of genetic samples of these precious animals was adopted by Korea Science & Engineering Foundation (KOSEF). As an outcome, Conservation Genome Resource Bank for Korean Wildlife (CGRB; www.cgrb.org) was established in 2002 at the College of Veterinary Medicine, Seoul National University as one of the Special Research Materials Bank supported by the Scientific and Research Infrastructure Building Program of KOSEF. CGRB operates in collaboration with Seoul Grand Park Zoo managed by Seoul Metropolitan Government, and has offices and laboratories at both Seoul National University and Seoul Grand Park, where duplicate samples are maintained, thereby assuring a long-term, safe preservation of the samples. Thus, CGRB is the first example of the collaborative scientific infrastructure program between university and zoo in Korea. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["eng", "kor"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.cgrb.org/index_e.htm [{"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA", "biochemistry", "biodiversity", "biosphere", "blood", "ecology", "species protection", "wildlife population"] [{"institutionName": "Korea Science & Engineering Foundation", "institutionAdditionalName": ["KOSEF"], "institutionCountry": "KOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.university-directory.eu/Korea-Republic/Korea-Science-and-Engineering-Foundation.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Seoul National University, College of Veterinary Medicine", "institutionAdditionalName": ["SNU"], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://vet.snu.ac.kr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Regulationship", "policyURL": "http://www.cgrb.org/regulations.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cgrb.org/regulations.php"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.cgrb.org/index.php"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2018-05-12 2021-09-22 +r3d100012667 Cotton EST database eng [] http://150.216.56.64/index.php ["RRID:SCR_003301"] ["http://150.216.56.64/contactus.php"] >>>!!!<<< The repository is no longer available. >>>!!!<<< Database platform for cotton expressed sequence tag (EST)-related information, covering assembled contigs, function annotation, analysis of GO and KEGG, SNP, miRNA, SSR-related marker information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30501 Biological and Biomimetic Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://150.216.56.64/methodology.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BLASTP", "BLASTX", "G. arboreum", "G. barbadense", "G. herbaceum", "GO", "Gossypium hirsutum L.", "KEGG", "miRBase", "miRNA", "upland cotton"] [{"institutionName": "East Carolina University", "institutionAdditionalName": ["ECU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ecu.edu/", "institutionIdentifier": ["RRID:SCR_011199", "RRID:nif-0000-01939"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "East Carolina University, Department of Biology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ecu.edu/biology/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.ecu.edu/cs-cas/biology/zhang_baohong.cfm"]}] [{"policyName": "University Policy Manual", "policyURL": "http://www.ecu.edu/prr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://150.216.56.64/"}] closed [] ["MySQL"] {} ["none"] http://150.216.56.64/datadownload.php [] unknown unknown [] [] {} 2018-05-12 2021-09-10 +r3d100012668 CottonGen eng [{"additionalName": "Cotton Database Resources", "additionalNameLanguage": "eng"}] https://www.cottongen.org/ ["biodbcore-001056"] ["https://www.cottongen.org/cottongen_contact"] CottonGen is a new cotton community genomics, genetics and breeding database being developed to enable basic, translational and applied research in cotton. It is being built using the open-source Tripal database infrastructure. CottonGen consolidates and expands the data from CottonDB and the Cotton Marker Database, providing enhanced tools for easy querying, visualizing and downloading research data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.cottongen.org/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["breeding", "crop science", "genetics", "genomics", "gossypium"] [{"institutionName": "Bayer CropScience", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.cropscience.bayer.de/de-de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cotton Incorporated", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "http://www.cottoninc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Monsanto", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://monsanto.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Phytogen", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://phytogencottonseed.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Southern Association of Agricultural Experiment Station Directors", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://saaesd.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USDA-ARS Crop Germplasm Research Unit at College Station", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ars.usda.gov/plains-area/college-station-tx/southern-plains-agricultural-research-center/crop-germplasm-research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington State University, Mainlab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bioinfo.wsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington State University.", "institutionAdditionalName": ["WSU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wsu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User manual", "policyURL": "https://www.cottongen.org/userManual"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.cottongen.org/disclaimer"}] open [{"dataUploadLicenseName": "Data Submission", "dataUploadLicenseURL": "https://www.cottongen.org/data/submission"}] ["unknown"] {} [] https://www.cottongen.org/reference [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} CottonGen will initially consolidate the data from CottonDB and the Cotton Marker Database, which includes sequences, genetic and physical maps, genotypic and phenotypic markers and polymorphisms, 2018-05-12 2021-09-09 +r3d100012669 Cotton Functional Genomics Database eng [{"additionalName": "CottonFGD", "additionalNameLanguage": "eng"}] https://cottonfgd.org/ [] ["taozhu@mail.bnu.edu.cn"] Cotton Functional Genomics Database (CottonFGD) integrates with modern genomic/transcriptomic data and earch/analysis/visualization modules. It aims at providing an easy, quick and visualized data analysis platform for cotton (Gossypium spp) researchers and other functional genomic researches. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://cottonfgd.org/about/help/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Gossypium arboreum", "Gossypium barbadense", "Gossypium hirsutum", "Gossypium raimondii", "chromosome"] [{"institutionName": "Chinese Academy of Agricultural Sciences, Biotechnology Research Institute", "institutionAdditionalName": ["CAAS, BRI"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.caas.cn/en/administration/research_institutes/research_institutes_beijing/77921.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.caas.cn/en/about_caas/contact/index.shtml"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://cottonfgd.org/about/download.html"}] closed [] ["MySQL"] {} ["none"] https://cottonfgd.org/about/download.html [] unknown unknown [] [] {} Data Provider see: https://cottonfgd.org/about/acknowledgement.html 2018-05-12 2018-05-18 +r3d100012670 National Cotton Database eng [{"additionalName": "USDA AMS Cotton Program NDB", "additionalNameLanguage": "eng"}] https://www.ams.usda.gov/datasets/national-cotton-database [] ["CottonIT@usda.gov"] The USDA Agricultural Marketing Service (AMS) Cotton Program maintains a National Database (NDB) in Memphis, Tennessee for owner access to cotton classification data. The NDB is computerized telecommunications system which allows owners or authorized agents of owners to retrieve classing data from the current crop and/or the previous four crops. The NDB stores classing information from all 10 regional classing offices. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.ams.usda.gov/sites/default/files/media/NationalDatabase-Overview.pdf [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Gin Bale Number", "Gin Code Number", "classification data"] [{"institutionName": "United States Department of Agriculture, Agricultural Marketing Service", "institutionAdditionalName": ["USDA AMS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ams.usda.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AMS our Mission", "policyURL": "https://www.ams.usda.gov/about-ams"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ams.usda.gov/sites/default/files/media/NationalDatabase-NewUserApplication.pdf"}] closed [] ["unknown"] {} ["none"] [] unknown yes [] [] {} 2018-05-12 2018-05-19 +r3d100012671 ICAC World Cotton Database eng [] https://icac.gen10.net/ [] ["statistician@icac.org"] This interactive database provides complete access to statistics on seasonal cotton supply and use for each country and each region in the world, from 1920/21 to date. This project is part of ICAC’s efforts to improve the transparency of world cotton statistics. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cotton statistics"] [{"institutionName": "International Cotton Advisory Committee", "institutionAdditionalName": ["Comit\u00e9 Consultivo Internacional del Algod\u00f3n", "Comit\u00e9 consultatif International du coton", "ICAC"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icac.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://icac.gen10.net/login/register"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://icac.gen10.net/login/register"}] closed [] ["other"] {} ["none"] [] unknown unknown [] [] {} 2018-05-12 2018-05-20 +r3d100012672 Wolfram Data Repository eng [] https://datarepository.wolframcloud.com/ [] ["https://datarepository.wolframcloud.com/contact-us"] The Wolfram Data Repository is a public resource that hosts an expanding collection of computable datasets, curated and structured to be suitable for immediate use in computation, visualization, analysis and more. Building on the Wolfram Data Framework and the Wolfram Language, the Wolfram Data Repository provides a uniform system for storing data and making it immediately computable and useful. With datasets of many types and from many sources, the Wolfram Data Repository is built to be a global resource for public data and data-backed publication. eng ["other"] {"size": "806 items", "updatedp": "2021-05-06"} 2017-04-20 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://reference.wolfram.com/language/guide/WolframDataRepository.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Wolfram Cloud", "Wolfram Language", "Wolfram|Alpha", "multidisciplinary", "software"] [{"institutionName": "Wolfram", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.wolfram.com/?source=nav", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wolfram.com/company/contact/?source=nav"]}] [{"policyName": "Wolfram Policies", "policyURL": "https://www.wolfram.com/legal/?source=footer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.wolfram.com/legal/?source=footer"}] restricted [] ["other"] {} ["DOI"] [] unknown unknown [] [] {} 2018-05-12 2021-05-06 +r3d100012673 Data INRAE eng [{"additionalName": "Portail Data INRAE", "additionalNameLanguage": "fra"}] https://data.inrae.fr/ ["FAIRsharing_doi:10.25504/fairsharing.178bmt"] ["datainrae@inrae.fr", "esther.dzale-yeumo@inrae.fr"] INRAE is the world’s first organisation specialized on agricultural, food and environmental sciences. Data INRAE is offered by INRAE as part of its mission to open the results of its research. Data INRAE will share research data in relation with food, nutrition, agriculture and environment. It includes experimental, simulation and observation data, omic data, survey and text data. Only data produced by or in collaboration with INRAE will be hosted in the repository, but anyone can access the metadata and the open data. eng ["institutional"] {"size": "212 Dataverses; 81.901 Datasets; 13.712 Files", "updatedp": "2021-07-29"} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20711 Animal Husbandry, Breeding and Hygiene", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www6.inrae.fr/datapartage/Gerer/Rediger-un-plan-de-gestion [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["OMICS", "aquaculture", "fishes", "food science", "food security", "microorganisms", "plant breeding", "plant products"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Harvard Dataverse", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.harvard.edu/", "institutionIdentifier": ["FAIRsharing_doi:10.25504/FAIRsharing.t2e1ss"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut national de recherche pour l\u2019agriculture, l\u2019alimentation et l\u2019environnement", "institutionAdditionalName": ["French National Institute for Agricultural Research", "INRAE"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.inrae.fr/", "institutionIdentifier": ["ROR:01x3gbx83", "RRID:SCR_011299", "RRID:nlx_58306"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datainra@inrae.fr"]}] [{"policyName": "Conditions d'utilisation du portail Data Inra", "policyURL": "https://www6.inra.fr/datapartage/Gerer/Stocker/Portail-Data-Inra/Data-Inra-CGU"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/fr/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.etalab.gouv.fr/licence-ouverte-open-licence"}] restricted [] ["DataVerse"] yes {"api": "https://data.inrae.fr/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} 2018-05-17 2021-07-29 +r3d100012674 NODC Italian Oceanographic Data Centre eng [{"additionalName": "NODC-OGS", "additionalNameLanguage": "eng"}] http://nodc.ogs.trieste.it/nodc/data/access [] ["nodc@ogs.trieste.it"] OGS is recognised as the Italian National Oceanographic Data Centre (OGS-NODC) within the International Oceanographic Data Exchange System of the UNESCO Intergovernmental Oceanographic Commission (IOC) since 27/6/2002. OGS is also listed in EurOcean (Marine Research Infrastructures Database) and in EDMO (European Directory of Marine Organisations). OGS as part of the IOC's network of National Oceanographic Data Centres has designated responsibility for the coordination of data and information management at national level. The oceanographic database covers the fields of marine physics, chemical, biological, underway geophysics and general information on Italian oceanographic cruises and data sets. The main objectives are (revision IODE-XXII, March 2013): -Facilitate and promote the discovery, exchange of, and access to, marine data and information including metadata, products and information in real-time, near real time and delayed mode, through the use of international standards, and in compliance with the IOC Oceanographic Data Exchange Policy for the ocean research and observation community and other stakeholders; - Encourage the long term archival, preservation, documentation, management and services of all marine data, data products, and information; - Develop or use existing best practices for the discovery, management, exchange of, and access to marine data and information, including international standards, quality control and appropriate information technology; - Assist Member States to acquire the necessary capacity to manage marine research and observation data and information and become partners in the IODE network; - Support international scientific and operational marine programmes, including the Framework for Ocean Observing for the benefit of a wide range. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.ogs.trieste.it/en/content/research [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bathymetry", "chemistry", "climatology", "climatology", "european seas", "interpolated maps", "marine data", "plankton", "salinity"] [{"institutionName": "Istituto Nazionale di Oceanografia e di Geofisica Sperimentale", "institutionAdditionalName": ["National Institute of Oceanography and Applied Geophysics", "OGS"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ogs.trieste.it", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Istituto Nazionale di Oceanografia e di Geofisica Sperimentale, Centro Nazionale di Dati Oceanografici", "institutionAdditionalName": ["NODC", "National Institute of Oceanography and Applied Geophysics, National Oceanographic Data Centre"], "institutionCountry": "ITA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.ogs.trieste.it/en/content/nodc-national-oceanographic-data-center", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "OGS copyright and data policy", "policyURL": "http://nodc.ogs.trieste.it/cocoon/data/doc-policyOGSen.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nodc.ogs.trieste.it/nodc/about/datapolicy"}] restricted [] ["other"] {} ["DOI"] http://nodc.ogs.trieste.it/nodc/metadata/doi [] unknown yes [] [] {"syndication": "http://nodc.ogs.trieste.it/feed/News.xml", "syndicationType": "RSS"} 2018-05-18 2018-11-02 +r3d100012676 CSISA Data Repository eng [{"additionalName": "Cereal Systems Initiative for South Asia (CSISA) Research Data", "additionalNameLanguage": "eng"}] https://data.cimmyt.org/dataverse/csisadvn [] ["cimmyt-csisa@cgiar.org", "https://data.cimmyt.org/dataverse/csisadvn#"] In keeping with the open data policies of the U.S. Agency for International Development (USAID) and Bill & Melinda Gates Foundation, the Cereal Systems Initiative for South Asia (CSISA) has launched the CSISA Data Repository to ensure public accessibility to key data sets, including crop cut data- directly observed, crop yield estimates, on-station and on-farm research trial data and socioeconomic surveys. CSISA is a science-driven and impact-oriented regional initiative for increasing the productivity of cereal-based cropping systems in Bangladesh, India and Nepal, thus improving food security and farmers’ livelihoods. CSISA generates data that is of value and interest to a diverse audience of researchers, policymakers and the public. CSISA’s data repository is hosted on Dataverse, an open source web application developed at Harvard University to share, preserve, cite, explore and analyze research data. CSISA’s repository contains rich datasets, including on-station trial data from 2009–17 about crop and resource management practices for sustainable future cereal-based cropping systems. Collection of this data occurred during the long-term, on-station research trials conducted at the Indian Council of Agricultural Research – Research Complex for the Eastern Region in Bihar, India. The data include information on agronomic management for the sustainable intensification of cropping systems, mechanization, diversification, futuristic approaches to sustainable intensification, long-term effects of conservation agriculture practices on soil health and the pest spectrum. Additional trial data in the repository includes nutrient omission plot technique trials from Bihar, eastern Uttar Pradesh and Odisha, India, covering 2012–15, which help determine the indigenous nutrient supplying ability of the soil. This data helps develop precision nutrient management approaches that would be most effective in different types of soils. CSISA’s most popular dataset thus far includes crop cut data on maize in Odisha, India and rice in Nepal. Crop cut datasets provide ground-truthed yield estimates, as well as valuable information on relevant agronomic and socioeconomic practices affecting production practices and yield. A variety of research data on wheat systems are also available from Bangladesh and India. Additional crop cut data will also be coming online soon. Cropping system-related data and socioeconomic data are in the repository, some of which are cross-listed with a Dataverse run by the International Food Policy Research Institute. The socioeconomic datasets contain baseline information that is crucial for technology targeting, as well as to assess the adoption and performance of CSISA-supported technologies under smallholder farmers’ constrained conditions, representing the ultimate litmus test of their potential for change at scale. Other highly interesting datasets include farm composition and productive trajectory information, based on a 20-year panel dataset, and numerous wheat crop cut and maize nutrient omission trial data from across Bangladesh. eng ["disciplinary"] {"size": "24 datasets; 276 files", "updatedp": "2021-10-06"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20703 Plant Nutrition", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://csisa.org/about-csisa/overview/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Bangladesh", "Bihar", "Eastern Uttar Pradesh", "India", "Nepal", "Odisha", "agricultural risk management", "maize", "mechanization", "rice", "seed markets", "seed systems", "soil fertility management", "wheat"] [{"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/de/", "institutionIdentifier": ["RRID:SCR_006346", "RRID:nlx_152065"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cereal Systems Inititative for South Asia", "institutionAdditionalName": ["CSISA"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://csisa.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Food Policy Research Institute", "institutionAdditionalName": ["IFPRI"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ifpri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Maize and Wheat Improvement Center", "institutionAdditionalName": ["CIMMYT", "Centro Internacional de Mejoramiento de Ma\u00edz y Trigo"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cimmyt.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Rice Research Institute", "institutionAdditionalName": ["IRRI"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://irri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "USAID", "institutionAdditionalName": ["U.S. Agency for International Development", "United States Agency for International Development"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usaid.gov/", "institutionIdentifier": ["RRID:SCR_012846", "RRID:nlx_152008"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse Project Terms", "policyURL": "http://guides.dataverse.org/en/4.7.1/user/dataset-management.html#terms"}, {"policyName": "Terms of use", "policyURL": "https://data.cimmyt.org/dataset.xhtml?persistentId=hdl:11529/11111#datasetForm:tabView:termsTab"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://csisa.org/check-out-csisas-data-repository/"}] restricted [] ["DataVerse"] yes {} ["hdl"] https://dataverse.org/best-practices/data-citation ["none"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} CSISA Data Repository is part of CIMMYT Research Data & Software Repository Network 2018-05-19 2021-10-06 +r3d100012677 Censusindia eng [{"additionalName": "Census India", "additionalNameLanguage": "eng"}] http://www.censusindia.gov.in/ [] ["http://www.censusindia.gov.in/AboutUs/Contactus/Contactus.html"] The Indian Census is the largest single source of a variety of statistical information on different characteristics of the people of India. With a history of more than 130 years, this reliable, time tested exercise has been bringing out a veritable wealth of statistics every 10 years, beginning from 1872 when the first census was conducted in India non-synchronously in different parts. To scholars and researchers in demography, economics, anthropology, sociology, statistics and many other disciplines, the Indian Census has been a fascinating source of data. The rich diversity of the people of India is truly brought out by the decennial census which has become one of the tools to understand and study India The responsibility of conducting the decennial Census rests with the Office of the Registrar General and Census Commissioner, India under Ministry of Home Affairs, Government of India. It may be of historical interest that though the population census of India is a major administrative function; the Census Organisation was set up on an ad-hoc basis for each Census till the 1951 Census. The Census Act was enacted in 1948 to provide for the scheme of conducting population census with duties and responsibilities of census officers. The Government of India decided in May 1949 to initiate steps for developing systematic collection of statistics on the size of population, its growth, etc., and established an organisation in the Ministry of Home Affairs under Registrar General and ex-Officio Census Commissioner, India. This organisation was made responsible for generating data on population statistics including Vital Statistics and Census. Later, this office was also entrusted with the responsibility of implementation of Registration of Births and Deaths Act, 1969 in the country. eng ["disciplinary"] {"size": "", "updatedp": ""} 1872 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.censusindia.gov.in/2011census/workstation.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["Indian census", "anthropology", "demography", "economics", "people", "sociology", "statistics"] [{"institutionName": "Digital India", "institutionAdditionalName": ["Power ot Empower"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://digitalindia.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://digitalindia.gov.in/content/contact-us"]}, {"institutionName": "Government of India, Ministry of Home Affairs, Office of the Registrar General & Census Commissioner, India", "institutionAdditionalName": ["ORGI"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.censusindia.gov.in/2011-Common/AboutUs2017.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.censusindia.gov.in/AboutUs/Contactus/Contactus.html", "rgoffice.rgi@nic.in"]}, {"institutionName": "Ministry of Home Affairs", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mha.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mha.gov.in/contactus"]}, {"institutionName": "My Gov", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mygov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mygov.in/simple-page/contact-us/"]}, {"institutionName": "data.gov in", "institutionAdditionalName": ["Open government Data (OGD) Platform India"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://data.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://data.gov.in/connect-with-us"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.censusindia.gov.in/Footer_Menus/Disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.censusindia.gov.in/Footer_Menus/Disclaimer.html"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/government-open-data-license-india"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/sites/default/files/Gazette_Notification_OGDL.pdf"}] closed [] ["unknown"] {} [] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-05-19 2018-07-08 +r3d100012678 Survey of India eng [] https://surveyofindia.gov.in/ [] ["helpdesk.soi@gov.in"] Survey of India, The National Survey and Mapping Organization of the country under the Department of Science & Technology, is the OLDEST SCIENTIFIC DEPARTMENT OF THE GOVT. OF INDIA. It was set up in 1767 and has evolved rich traditions over the years. In its assigned role as the nation's Principal Mapping Agency, Survey of India bears a special responsibility to ensure that the country's domain is explored and mapped suitably, provide base maps for expeditious and integrated development and ensure that all resources contribute with their full measure to the progress, prosperity and security of our country now and for generations to come. The history of the Survey of India dates back to the 18th Century. Forerunners of army of the East India Company and Surveyors had an onerous task of exploring the unknown. Bit by bit the tapestry of Indian terrain was completed by the painstaking efforts of a distinguished line of Surveyors such as Mr. Lambton and Sir George Everest. It is a tribute to the foresight of such Surveyors that at the time of independence the country inherited a survey network built on scientific principles. The great Trigonometric series spanning the country from North to South East to West are some of the best geodetic control series available in the world. The scientific principles of surveying have since been augmented by the latest technology to meet the multidisciplinary requirement of data from planners and scientists. Organized into only 5 Directorates in 1950, mainly to look after the mapping needs of Defense Forces in North West and North East, the Department has now grown into 22 Directorates spread in approx. all parts (states) of the country to provide the basic map coverage required for the development of the country. Its technology, latest in the world, has been oriented to meet the needs of defense forces, planners and scientists in the field of geo-sciences, land and resource management. Its expert advice is being utilized by various Ministries and undertakings of Govt. of India in many sensitive areas including settlement of International borders, State boundaries and in assisting planned development of hitherto under developed areas. Faced with the requirement of digital topographical data, the department has created three Digital Centers during late eighties to generate Digital Topographical Data Base for the entire country for use in various planning processes and creation of geographic information system. Its specialized Directorates such as Geodetic and Research Branch, and Indian Institute of Surveying & Mapping (erstwhile Survey Training Institute) have been further strengthened to meet the growing requirement of user community. The department is also assisting in many scientific programs of the Nation related to the field of geo-physics, remote sensing and digital data transfers. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "hin"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.surveyofindia.gov.in/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["geological data", "geophysical data", "large-scale cities", "photogrammetry", "spatial data", "survey", "topographical data"] [{"institutionName": "Ministry of Science and Technology, Department of Science & Technology", "institutionAdditionalName": ["DST"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://dst.gov.in/survey-of-india-zone", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Uttarakhand", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "http://uk.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for implementing National Map Policy", "policyURL": "http://www.surveyofindia.gov.in/files/nmp/Guidlines%20for%20Implementing%20National%20Map%20policy.pdf"}, {"policyName": "National Data Sharing and Accessibility Policy (NDSAP) - 2012", "policyURL": "http://www.surveyofindia.gov.in/pages/display/136-national-data-sharing-and-accessibility-policy-(ndsap)---2012"}, {"policyName": "National Map Policy - 2005", "policyURL": "http://www.surveyofindia.gov.in/files/nmp/National%20Map%20Policy.pdf"}, {"policyName": "Service Tax Policy on Survey of India Products - 2005", "policyURL": "http://www.surveyofindia.gov.in/pages/display/143-service-tax-policy-on-survey-of-india-products---2005"}, {"policyName": "Terms & Conditions", "policyURL": "http://www.surveyofindia.gov.in/pages/display/28-terms-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.surveyofindia.gov.in/files/nmp/Guidlines%20for%20Implementing%20National%20Map%20policy.pdf"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.surveyofindia.gov.in/pages/display/136-national-data-sharing-and-accessibility-policy-(ndsap)---2012"}] closed [] ["unknown"] {} [] [] unknown unknown [] [] {} 2018-05-19 2021-10-06 +r3d100012679 Open Government Data Portal of Surat City eng [{"additionalName": "Surat Municipal Corporation Open Data Initiative", "additionalNameLanguage": "eng"}] https://surat.data.gov.in/ [] ["amar.s@nic.in"] It is a platform (designed and developed by the National Informatics Centre (NIC), Government of India) for supporting Open Data initiative of Surat Municipal Corporation, intended to publish government datasets for public use. The portal has been created under Software as A Service (SaaS) model of Open Government Data (OGD) Platform, thus gives avenues for resuing datasets of the City in different perspective. This Portal has numerious modules; (a) Data Management System (DMS) for contributing data catalogs by various departments for making those available on the front end website after a due approval process through a defined workflow; (b) Content Management System (CMS) for managing and updating various functionalities and content types of Open Government Data Portal of Surat City; (c) Visitor Relationship Management (VRM) for collating and disseminating viewer feedback on various data catalogs; and (d) Communities module for community users to interact and share their zeal and views with others, who share common interests as that of theirs. eng ["other"] {"size": "119 resources", "updatedp": "2018-05-23"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://community.data.gov.in/surat-open-government-data-portal/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Open Government Data (OGD)", "Surat City", "Surat Municipal Corporation", "birth and death rate", "citizen facilities", "professional tax registration", "property tax", "public administration", "vehicle registration", "weather information"] [{"institutionName": "National Informatics Centre (NIC), Ministry of Electronics & Information Technology, Government of India", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nic.in/contact-us/"]}, {"institutionName": "Surat Municipal Corporation", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.suratmunicipal.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.suratmunicipal.gov.in/Home/SMCOfficials"]}] [{"policyName": "Content Moderation & Approval Policy(CMAP)", "policyURL": "https://surat.data.gov.in/content-moderation-approval-policy"}, {"policyName": "Content Review Policy(CRP)", "policyURL": "https://surat.data.gov.in/content-review-policy"}, {"policyName": "Open Government Data Portal of Surat City Policy", "policyURL": "https://surat.data.gov.in/policies"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://surat.data.gov.in/about-portal"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://surat.data.gov.in/policies"}] restricted [] ["other"] no {"api": "http://vocab.nic.in/", "apiType": "REST"} ["none"] [] no unknown [] [] {} 2018-05-19 2021-08-25 +r3d100012680 Maharashtra State Data Bank eng [] https://mahasdb.maharashtra.gov.in/home.do [] ["mahasdb@maharashtra.gov.in", "sdb.support@maharashtra.gov.in"] This data platform initiated by Government of Maharastra (India) maintained by Mastek Ltd. (for Directorate of Economics and Statistics, Planning Department) to consolidate and collate data sets available with the various state departments. Objectively it creates a decision support system which will also serve as a knowledge repository for various information seekers such as researchers, academicians and general public. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://mahasdb.maharashtra.gov.in/login.do [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Agriculture", "Community services", "Economic services", "Education", "Energy", "Environment", "Flood control", "Industry", "Irrigation", "Minerals", "Public health", "Rural development", "Science and technology", "Socio-economic data", "Statistical data", "Transport"] [{"institutionName": "Directorate of Economics and Statistics (DES), Planning Department, Government of Maharastra", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://mahades.maharashtra.gov.in/home.do?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Maharashtra State Government", "institutionAdditionalName": ["Government of Maharashtra"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.maharashtra.gov.in/1125/Home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "https://mahasdb.maharashtra.gov.in/home.do#"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/sites/default/files/NDSAP.pdf"}] restricted [] ["other"] no {} [] [] unknown unknown [] [] {} 2018-05-20 2021-10-25 +r3d100012681 Pune Datastore eng [{"additionalName": "PMC Open Data Store", "additionalNameLanguage": "eng"}, {"additionalName": "Pune Municipal Corporation Open Data Store", "additionalNameLanguage": "eng"}] http://opendata.punecorporation.org/Citizen/User/Index [] ["feedback@punecorporation.org\u200b"] It collects, processes, and generates a large amount of data made available publicly in an open format to facilitate use, reuse and redistribute for social, economic and developmental purposes. This data portal of the Pune Municipal Corporation (designed and developed by the Benchmark IT Solutions) is free from any license or any other mechanism of control; thus opening up of government data (municipal level) would enhance transparency and accountability while encouraging public engagement. Keeping the need of seamless data availability and efficient sharing of data among intra-governmental agencies along with data standards and interoperable systems; Pune DataStore endorses government of India’s Open Government Data (OGD) Platform in which supports Open Data initiative of Government of India. eng ["other"] {"size": "349 Datasets; 76 Suggested Datasets", "updatedp": "2018-06-26"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://opendata.punecorporation.org/Citizen/DataStore/Aboutus [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Air pollution", "Biochemical demand", "Birth rate", "Hawkers/ Vendors", "Library details in pune", "Mortality", "Municipal data", "Noise pollution", "OGD", "Open Municipal Corporation Data", "Pune datastore", "Rainfall", "Registered vehicles", "Social welfare", "Socio-economic Data", "Water pollution", "Water tax"] [{"institutionName": "Pune Municipal Corporation (PMC)", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pmc.gov.in/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@punecorporation.org"]}] [{"policyName": "Open Data Policy", "policyURL": "http://opendata.punecorporation.org/Citizen/DataStore/Introduction"}, {"policyName": "Pune Datastore Policy", "policyURL": "http://opendata.punecorporation.org/Citizen/DataStore/Policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/sites/default/files/NDSAP_Implementation_Guidelines_2.2.pdf"}] restricted [] ["other"] no {} [] [] no unknown [] [] {} 2018-05-20 2018-06-26 +r3d100012682 Open Government Data Portal of Tamil Nadu eng [] https://tn.data.gov.in/ ["biodbcore-001589"] ["tnogd@elcot.in"] Open Government Data Portal of Tamil Nadu is a platform (designed by the National Informatics Centre), for Open Data initiative of the Government of Tamil Nadu. The portal is intended to publish datasets collected by the Tamil Nadu Government for public uses in different perspective. It has been created under Software as A Service (SaaS) model of Open Government Data (OGD) and publishes dataset in open formats like CSV, XLS, ODS/OTS, XML, RDF, KML, GML, etc. This data portal has following modules, namely (a) Data Management System (DMS) for contributing data catalogs by various state government agencies for making those available on the front end website after a due approval process through a defined workflow; (b) Content Management System (CMS) for managing and updating various functionalities and content types; (c) Visitor Relationship Management (VRM) for collating and disseminating viewer feedback on various data catalogs; and (d) Communities module for community users to interact and share their views and common interests with others. It includes different types of datasets generated both in geospatial and non-spatial data classified as shareable data and non-shareable data. Geospatial data consists primarily of satellite data, maps, etc.; and non-spatial data derived from national accounts statistics, price index, census and surveys produced by a statistical mechanism. It follows the principle of data sharing and accessibility via Openness, Flexibility, Transparency, Quality, Security and Machine-readable. eng ["other"] {"size": "530 resources in 92 catalogs", "updatedp": "2018 (28/05/2018)"} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://tn.data.gov.in/about-portal [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Agriculture", "Economics and statistcs", "Energy", "Family welfare", "Geosciences", "Industrial development", "Medical education", "Municipal data", "Public Health", "Rural development", "Social welfare", "Socio-economic data", "Tamil Nadu", "Technical education", "Tourism", "Transport"] [{"institutionName": "Government of Tamil Nadu", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tn.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content Moderation & Approval Policy(CMAP)", "policyURL": "https://tn.data.gov.in/content-moderation-approval-policy"}, {"policyName": "Content Review Policy(CRP)", "policyURL": "https://tn.data.gov.in/content-review-policy"}, {"policyName": "Open Data Policy of India (NDSAP)", "policyURL": "https://data.gov.in/sites/default/files/NDSAP.pdf"}, {"policyName": "Open Government Data Portal of Tamil Nadu Policy", "policyURL": "https://tn.data.gov.in/policies"}, {"policyName": "Tamil Nadu Open Data Policy (TNODAP)", "policyURL": "https://tn.data.gov.in/sites/default/files/NDSAP.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://tn.data.gov.in/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://data.gov.in/sites/default/files/Gazette_Notification_OGDL.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/sites/default/files/NDSAP_Implementation_Guidelines_2.2.pdf"}] restricted [] ["other"] no {"api": "http://vocab.nic.in/", "apiType": "REST"} [] [] no unknown [] [] {"syndication": "https://tn.data.gov.in/faqs", "syndicationType": "ATOM"} 2018-05-20 2021-11-17 +r3d100012683 National Data Repository eng [{"additionalName": "NDR - National Data Repository India", "additionalNameLanguage": "eng"}, {"additionalName": "National Data Repository India", "additionalNameLanguage": "eng"}] https://www.ndrdgh.gov.in/NDR/ [] ["https://www.ndrdgh.gov.in/NDR/?page_id=8", "indr@dghindia.gov.in"] National Data Repository (NDR) is a reliable and integrated data repository of Exploration and Production (E&P) data of Indian sedimentary basins. It offers a unique platform to all concerns of E&P with provisions for seamless access to reliable geo-scientific data for India. Streamlining all associated procedures, policies and workflows pertaining to data submission, data management, data retrieval for all concerned pertaining to government agencies, academia and research communities with restrictions. NDR is owned by the Government of India, hosted at Directorate General of Hydrocarbons (DGH), Ministry of Petroleum and Natural Gas (MoPNG). Objectively it operates with geological data, petrophysical data, natural gas, seismic data, well & log data, spatial data, Reservoir data, Gravity & Magnetic data. NDR maintains and preserve hydrocarbon exploration & production data in a standard and reusable manner, but can't made available to entitled users freely. One cannot get access independently. eng ["institutional"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "40401 Energy Process Engineering", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] https://www.ndrdgh.gov.in/NDR/?page_id=503 [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Coal", "Gravity and Magnetic data", "Hydrocarbons", "Natural gas", "Petroleum", "Reservoir data", "Sedimentary basins", "Seismic data", "Well and logs"] [{"institutionName": "Directorate General of Hydrocarbons (DGH), Ministry of Petroleum and Natural Gas, Government of India", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.dghindia.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["dg@dghindia.gov.in"]}] [{"policyName": "NDR Policy and Guideline", "policyURL": "https://www.ndrdgh.gov.in/NDR/?page_id=585"}, {"policyName": "Policy for Exploration & Production (E&P) data", "policyURL": "https://www.ndrdgh.gov.in/NDR/pdf/data_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ndrdgh.gov.in/NDR/?page_id=589"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ndrdgh.gov.in/NDR/pdf/data_policy.pdf"}] restricted [] ["unknown"] no {"api": "https://www.ndrdgh.gov.in/NDRTWS/system/mainframe.asp", "apiType": "other"} [] ["none"] no yes [] [] {"syndication": "https://www.ndrdgh.gov.in/NDR/?feed=rss2", "syndicationType": "RSS"} 2018-05-21 2019-05-15 +r3d100012684 Open Government Data Portal of Odisha eng [{"additionalName": "Odisha Open Government Data Portal", "additionalNameLanguage": "eng"}] https://odisha.data.gov.in/ [] ["https://odisha.data.gov.in/datacontrollers", "ndsap@gov.in"] It is a platform for supporting Open Data initiative of Government of Odisha, intends to publish datasets collected by them for public use. It also supports widely used file formats that are suitable for machine processing, thus gives avenues for many more innovative uses of Government Data in different perspective. This portal has been created under Software as A Service (SaaS) model of Open Government Data (OGD) Platform India of NIC. The data available in the portal are owned by various Departments/Organization of Government of Odisha. It follows principles on which data sharing and accessibility need to be based include: Openness, Flexibility, Transparency, Quality, Security and Machine-readable. eng ["other"] {"size": "17 resources; 10 Catalogues", "updatedp": "2018-01-15"} 2017 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://odisha.data.gov.in/about-portal [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Agriculture", "Art and culture", "Crime report", "Education", "Environment", "Family welfare", "Forest", "Government data", "Health and family", "Housing", "Industries", "Labour and employment", "Mining", "Odisha government data", "Open government data", "Power and energy", "Safety and security"] [{"institutionName": "Government of Odisha", "institutionAdditionalName": [], "institutionCountry": "IND", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://odisha.gov.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Informatic Centre (NIC) of the Government of India", "institutionAdditionalName": ["Government of Odisha"], "institutionCountry": "IND", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "1976", "responsibilityEndDate": "", "institutionContact": ["wim@nic.in", "wim[at]nic[dot]in"]}] [{"policyName": "National Data Sharing and Accessibility Policy (NDSAP)", "policyURL": "https://data.gov.in/sites/default/files/NDSAP_Implementation_Guidelines_2.2.pdf"}, {"policyName": "Odisha State Data Accessibility Statement", "policyURL": "https://odisha.data.gov.in/accessibility-statement"}, {"policyName": "Odisha State Data Content Moderation & Approval Policy (CMAP)", "policyURL": "https://odisha.data.gov.in/content-moderation-approval-policy"}, {"policyName": "Odisha State Data Content Review Policy (CRP)", "policyURL": "https://odisha.data.gov.in/content-review-policy"}, {"policyName": "Odisha State Data Hyperlinking Policy", "policyURL": "https://odisha.data.gov.in/policies"}, {"policyName": "Odisha State Data Policy", "policyURL": "https://data.gov.in/sites/default/files/State-data-policy-Odisha.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://odisha.data.gov.in/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.in/government-open-data-license-india"}] restricted [] ["other"] no {"api": "http://vocab.nic.in/", "apiType": "REST"} ["none"] ["none"] no unknown [] [] {} Open datafiles could be useful for socio-economic research in different perspectives. 2018-05-21 2018-08-14 +r3d100012685 Cotton Database eng [] http://www.cicr.org.in/Database.html [] ["sabesh23@gmail.com"] The Cotton Database is provided by the Central Institute for Cotton Research in India. The database includes data on cotton production, protection, improvement, economy, and industry. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}] ["dataProvider"] ["Cotton", "India", "State-level data"] [{"institutionName": "ICAR- Central Institute for Cotton Research", "institutionAdditionalName": ["CICR"], "institutionCountry": "IND", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cicr.org.in/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms & Conditions", "policyURL": "http://www.cicr.org.in/terms_conditions.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cicr.org.in/copyright_statement.html"}] closed [] [] {} [] [] no unknown [] [] {} 2018-05-21 2018-06-22 +r3d100012687 JKU Magnetic Oxides Data Repository eng [{"additionalName": "Johannes Kepler University Magnetic Oxides Data Repository", "additionalNameLanguage": "eng"}] https://ord.fkp.jku.at/ [] ["https://ord.fkp.jku.at/de/about"] The ord.fkp.jku.at portal offers a Data Repository of the JKUs Magnetic Oxides Group and provides access to the latest research data of the Magnetic Oxide research group of the Johannes Kepler University in Linz, Austria. The Repository contains Datasets in the following research areas: Dilute magnetic semiconductors and oxides, Ferromagnetic thin films and nanoparticles, X-ray absorption spectroscopy, Element-selective structure and magnetism, Functional heterostructures and interfaces, and Frequency-dependent magnetic resonance. eng ["disciplinary"] {"size": "65 datasets", "updatedp": "2021-10-06"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "30701 Experimental Condensed Matter Physics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://ord.fkp.jku.at/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["SQUID magnetometry", "dilute magnetic semiconductors", "ferromagnetic resonance", "magnetic oxides", "magnetism", "optical lithography"] [{"institutionName": "Fonds zur F\u00f6rderung der wissenschaftlichen Forschung", "institutionAdditionalName": ["FWF"], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fwf.ac.at/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johannes Kepler University, Institute of Semiconductor and Solid State Physics", "institutionAdditionalName": ["Johannes Kepler Universit\u00e4t Linz, Institut f\u00fcr Halbleiter- und Festk\u00f6rperphysik"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jku.at/en/institute-of-semiconductor-and-solid-state-physics/", "institutionIdentifier": ["RRID:SCR_011333", "RRID:nlx_156101"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access and Users", "policyURL": "https://ord.fkp.jku.at/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["CKAN"] {} ["none"] https://ord.fkp.jku.at/about [] unknown yes [] [] {} 2018-05-25 2021-10-06 +r3d100012688 NCBI Assembly eng [] https://www.ncbi.nlm.nih.gov/assembly ["OMICS_10736"] ["https://www.ncbi.nlm.nih.gov/home/about/contact/", "pubmedcentral@ncbi.nlm.nih.gov"] A database providing information on the structure of assembled genomes, assembly names and other meta-data, statistical reports, and links to genomic sequence data. eng ["disciplinary"] {"size": "", "updatedp": ""} [] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bacterial genomes", "genes", "proteins", "viral genomes"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, U.S. National Library of Medicine", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nlm.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Assembly Submission Guidelines", "policyURL": "https://www.ncbi.nlm.nih.gov/assembly/docs/submission/"}, {"policyName": "NCBI Website and Data Usage Policies and Disclaimers", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["unknown"] {"api": "ftp://ftp.ncbi.nlm.nih.gov/genomes/", "apiType": "FTP"} ["none"] [] yes unknown [] [] {} 2018-05-28 2021-08-24 +r3d100012689 Japanese Genotype-phenotype Archive eng [{"additionalName": "JGA", "additionalNameLanguage": "eng"}] https://www.ddbj.nig.ac.jp/jga/index-e.html ["FAIRsharing_doi:10.25504/FAIRsharing.pwgf4p", "RRID:SCR_003118", "RRID:nlx_156741"] ["https://www.ddbj.nig.ac.jp/contact-e.html"] The Japanese Genotype-phenotype Archive (JGA) is a service for permanent archiving and sharing of all types of individual-level genetic and de-identified phenotypic data resulting from biomedical research projects. The JGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the JGA. Once processed, all data are encrypted. Users can contact the JGA team from here. JGA services are provided in collaboration with National Bioscience Database Center (NBDC) of Japan Science and Technology Agency. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ddbj.nig.ac.jp/jga/index-e.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biomedical", "genetic"] [{"institutionName": "DNA Data Bank of Japan", "institutionAdditionalName": ["DDBJ"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ddbj.nig.ac.jp/index-e.html", "institutionIdentifier": ["OMICS_01644", "RRID:SCR_002359", "RRID:nif-0000-02740"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Database Center for Life Science", "institutionAdditionalName": ["DBCLS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dbcls.rois.ac.jp/index-en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Japan alliance for Bioscience Information", "institutionAdditionalName": ["JBIportal"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://jbioinfo.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Bioscience Database Center", "institutionAdditionalName": ["NBDC"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biosciencedbc.jp/en/", "institutionIdentifier": ["RRID:SCR_000814", "RRID:nlx_151485"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Genetics", "institutionAdditionalName": ["NIG"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nig.ac.jp/nig/", "institutionIdentifier": ["RRID:SCR_010836", "RRID:nlx_92390"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Protein Data Bank Japan", "institutionAdditionalName": ["PDBJ"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pdbj.org/", "institutionIdentifier": ["RRID:SCR_008912", "RRID:nlx_151484"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Research Organization of Information and Systems", "institutionAdditionalName": ["ROIS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rois.ac.jp/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage Policies and Disclaimers for Website, Data and Services", "policyURL": "https://www.ddbj.nig.ac.jp/policies-e.html#disclaimer"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ddbj.nig.ac.jp/policies-e.html#disclaimer"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ddbj.nig.ac.jp/jga/index-e.html"}] restricted [{"dataUploadLicenseName": "Submission Guide", "dataUploadLicenseURL": "https://www.ddbj.nig.ac.jp/jga/submission-e.html"}] ["unknown"] {"api": "ftp://ftp.ddbj.nig.ac.jp/", "apiType": "FTP"} ["none"] https://www.ddbj.nig.ac.jp/ddbj/submission-e.html#right [] unknown unknown [] [] {"syndication": "https://www.ddbj.nig.ac.jp/announcements-e.html", "syndicationType": "RSS"} 2018-05-28 2019-03-09 +r3d100012690 Network Data Exchange eng [{"additionalName": "NDEx", "additionalNameLanguage": "eng"}] https://home.ndexbio.org/index/ ["FAIRsharing_doi:10.25504/FAIRsharing.8nq9t6", "OMICS_29036", "RRID:SCR_003943", "RRID:nlx_158334"] ["https://home.ndexbio.org/contact-us/"] The NDEx Project provides an open-source framework where scientists and organizations can share, store, manipulate, and publish biological network knowledge. The NDEx Project maintains a free, public website; alternatively, users can also decide to run their own copies of the NDEx Server software in cases where the stored networks must be kept in a highly secure environment (such as for HIPAA compliance) or where high application load is incompatible with a shared public resource. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://home.ndexbio.org/about-ndex/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "biological networks", "cancer", "molecular interaction", "pathway model"] [{"institutionName": "NDEx Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://home.ndexbio.org/index/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Regents of the University of California, The Cytoscape Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cytoscape.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nature Scientific Data - Data Policies", "policyURL": "https://www.nature.com/sdata/policies/data-policies"}, {"policyName": "Quick Start guide", "policyURL": "https://home.ndexbio.org/quick-start/"}, {"policyName": "Terms, License and Sources", "policyURL": "https://home.ndexbio.org/disclaimer-license/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "BSD", "databaseLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://opensource.org/licenses/Apache-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://home.ndexbio.org/disclaimer-license/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/CDDL-1.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/EPL-1.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/GPL-3.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/LGPL-3.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MPL-2.0"}] restricted [{"dataUploadLicenseName": "Publishing in NDEx", "dataUploadLicenseURL": "https://home.ndexbio.org/publishing-in-ndex/"}] ["other"] yes {"api": "https://home.ndexbio.org/using-the-ndex-server-api/", "apiType": "REST"} ["DOI"] https://home.ndexbio.org/about-ndex/ [] yes unknown [] [] {} NDEx – The Network Data Exchange is covered by Clarivate Data Citation Index . NDEx is a Scientific Data - Nature Reommended Data Repository. 2018-05-28 2021-08-11 +r3d100012691 Tilburg University Dataverse eng [] https://dataverse.nl/dataverse/tiu [] ["dataverse@tilburguniversity.edu"] TiU Dataverse is the central online repository for research data at Tilburg University. The TiU Dataverse is managed by the Research Data Office (RDO) at Library and IT Services (LIS). TiU Dataverse takes part of the DataverseNL network. DataverseNL is a shared data service of several Dutch universities and institutions. The data management is in the hands of the member organizations, while the national organization Data Archiving and Networked Services (DANS) manages the network eng ["institutional"] {"size": "19 dataverses; 124 datasets; 1,663 files", "updatedp": "2020-08-26"} 2012 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.tilburguniversity.edu/research/dataverse [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["business", "management", "public health"] [{"institutionName": "DANS", "institutionAdditionalName": ["Data Archiving and Networked Services"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dans.knaw.nl/nl", "institutionIdentifier": ["RRID:SCR_000904", "RRID:nlx_156902"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Tilburg University", "institutionAdditionalName": ["TiU"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tilburguniversity.edu/", "institutionIdentifier": ["ROR:04b8v1s79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Preparing data for sharing", "policyURL": "https://dans.knaw.nl/nl/over/organisatie-beleid/Publicaties/DANSpreparingdataforsharing.pdf"}, {"policyName": "Tilburg University Data policy", "policyURL": "https://www.tilburguniversity.edu/intranet/research-support-portal/dataverse-nl"}, {"policyName": "Tilburg University Research Data Management Regulations", "policyURL": "https://www.tilburguniversity.edu/sites/default/files/download/Research%20Data%20Management%20Regulation%20%28version%20April2020%29.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Instructions for depositing data in Tilburg UniversityDataverse", "dataUploadLicenseURL": "https://www.tilburguniversity.edu/research/dataverse"}] ["DataVerse"] yes {} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-05-28 2020-12-21 +r3d100012692 Scholars' Mine eng [] http://scholarsmine.mst.edu/ ["FAIRsharing_doi:10.25504/FAIRsharing.SWMYY2"] ["scholarsmine@mst.edu"] Scholars' Mine is an online collection of scholarly and creative works produced by the faculty, staff, and students of the Missouri University of Science and Technology. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://scholarsmine.mst.edu/about.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Missouri University of Science and Technology, Curtis Laws Wilson Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.mst.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library@mst.edu"]}, {"institutionName": "Missouri University of Science and TechnologyLibrary", "institutionAdditionalName": ["Missouri S&T"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mst.edu/", "institutionIdentifier": ["RRID:SCR_011396", "RRID:nlx_144159"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines", "policyURL": "http://libguides.mst.edu/scholarsmine/supportdocuments"}, {"policyName": "Policy - Scholars\u2019 Mine Access and Use", "policyURL": "http://scholarsmine.mst.edu/cgi/viewcontent.cgi?article=1016&context=scpro_guidelines"}, {"policyName": "Scholars' Mine Policies, Procedures and Guidelines", "policyURL": "http://scholarsmine.mst.edu/scpro_guidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://scholarsmine.mst.edu/faq.html#Q4"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/title17/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}] restricted [{"dataUploadLicenseName": "Policy - Scholars' Mine Deposit License", "dataUploadLicenseURL": "http://scholarsmine.mst.edu/cgi/viewcontent.cgi?article=1007&context=scpro_guidelines"}] ["DigitalCommons"] yes {} ["none"] [] unknown yes ["other"] [] {"syndication": "http://scholarsmine.mst.edu/recent.rss", "syndicationType": "RSS"} 2018-05-28 2022-01-03 +r3d100012693 OpenICPSR eng [] https://www.openicpsr.org/openicpsr/ ["FAIRsharing_doi:10.25504/FAIRsharing.nvwz0x"] ["deposit@icpsr.umich.edu", "https://www.openicpsr.org/openicpsr/contactUs", "icpsr-help@umich.edu"] It is a common platform to deposit, store and share the research data in the area of social and behavioral sciences. openICPSR is undergoing development commiting international archiving standard and is currently free for all users to share their data up to a 2GB limit. It has a distribution network of over 760 institutions, governed by the Attribution 4.0 Creative Commons License and its' data catalog indexed by major search engines. OpenICPSR is a research data-sharing service that allows depositors to rapidly self-publish research data, enabling the public to access the data without charge. Otherwise via standard ICPSR deposits, one can publish and preserve reseach data with restricted-use having nominal charge. ICPSR is part of the Institute for Social Research at the University of Michigan. eng ["disciplinary"] {"size": "5.567 results", "updatedp": "2021-10-05"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.openicpsr.org/openicpsr/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "gender issues", "health behaviour", "immigration", "political parties", "racial and ethnic"] [{"institutionName": "Inter-university Consortium for Political and Social Research", "institutionAdditionalName": ["ICPSR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icpsr.umich.edu/web/pages/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Michigan, Institute for Social Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://isr.umich.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://umich.edu/contact/"]}] [{"policyName": "Confidentiality and Copyright", "policyURL": "https://www.openicpsr.org/openicpsr/about"}, {"policyName": "Privacy Policy", "policyURL": "https://www.openicpsr.org/openicpsr/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.openicpsr.org/openicpsr/about"}] restricted [{"dataUploadLicenseName": "Creative Commons License", "dataUploadLicenseURL": "https://www.openicpsr.org/openicpsr/faqs"}] ["other"] yes {} ["DOI"] https://www.openicpsr.org/openicpsr/faqs ["none"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} There is no cost to deposit or access data in openICPSR. Rates to host an openICPSR Repository are based on the number of annual deposits, size of deposits, workflow complexity, and/or other implementation features. 2018-05-29 2021-10-05 +r3d100012694 ALSGENE eng [] http://www.alsgene.org/ ["OMICS_04618"] ["doris.meissle@gv.mpg.de"] The publicly available database, which houses findings from genetic-association studies in amyotrophic lateral sclerosis, showcases meta-analyses of GWAS data and allows researchers to compare their own unpublished results to those already integrated within the database. Released originally in December 2013, the new version of ALSGene now contains interactive data on thousands of genetic polymorphisms garnered from large genome-wide association studies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.alsgene.org/methods [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AlzGene", "Genome-wide meta-analysis results GWAS", "PDGene", "amyotrophic lateral sclerosis", "genetics", "risk", "systems biology"] [{"institutionName": "Max-Planck Institute for Molecular Genetics, Neuropsychiatric Genetics Group", "institutionAdditionalName": ["Msx-Planck-Institut f\u00fcr Molekulare Genetik, Abteilung Vertebraten Genomik"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.molgen.mpg.de/156350/Team", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lbertram@molgen.mpg.de"]}, {"institutionName": "Max-Planck-Gesellschaft zur F\u00f6rderung der Wissenschaften e.V.", "institutionAdditionalName": ["Max Planck Society for the Advancement of Science"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mpg.de/de", "institutionIdentifier": ["RRID:SCR_011366", "RRID:nlx_55250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mpg.de/de/kontakt/ansprechpartner-kommunikation"]}, {"institutionName": "Prize4Life", "institutionAdditionalName": [], "institutionCountry": "ISR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.prize4life.org/", "institutionIdentifier": ["RRID: nif-0000-00493", "RRID:SCR_006558"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.prize4life.org/page/contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.alsgene.org/disclaimer"}] closed [] ["unknown"] {} ["none"] http://www.alsgene.org/citing [] yes unknown [] [] {} 2018-06-05 2021-08-25 +r3d100012695 ALSoD eng [{"additionalName": "ALS Online Database", "additionalNameLanguage": "eng"}, {"additionalName": "Amyotrophic Lateral Sclerosis Online genetics Database", "additionalNameLanguage": "eng"}] https://alsod.ac.uk/ ["RRID:SCR_018075"] ["ammar.al-chalabi@kcl.ac.uk"] ALSoD is a freely available database that has been transformed from a single gene storage facility recording mutations in the SOD1 gene to a multigene ALS bioinformatics repository and analytical instrument combining genotype, phenotype, and geographical information with associated analysis tools. These include a comparison tool to evaluate genes side by side or jointly with user configurable features, a pathogenicity prediction tool using a combination of computational approaches to distinguish variants with nonfunctional characteristics from disease-associated mutations with more dangerous consequences, and a credibility tool to enable ALS researchers to objectively assess the evidence for gene causation in ALS. Furthermore, integration of external tools, systems for feedback, annotation by users, and two-way links to collaborators hosting complementary databases further enhance the functionality of ALSoD. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ALS", "Amyotrophic Lateral Sclerosis", "HGMD Cardiff nomenclature", "SOD1 genetic mutations", "bioinformatics", "clinical details", "familiy details", "genetics", "neuropathology"] [{"institutionName": "Institute of Psychiatry, Psychology & Neuroscience", "institutionAdditionalName": ["IoPPN"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kcl.ac.uk/ioppn", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "King's College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kcl.ac.uk/", "institutionIdentifier": ["ROR:0220mzb33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Ethics at King's", "policyURL": "https://www.kcl.ac.uk/innovation/research/support/ethics/about/index.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://alsod.iop.kcl.ac.uk/home.aspx"}] restricted [] ["unknown"] yes {} [] [] yes unknown [] [] {} 2018-06-05 2020-11-25 +r3d100012696 DataShare: the Open Data Repository of Iowa State University eng [{"additionalName": "DataShare", "additionalNameLanguage": "eng"}, {"additionalName": "ISU's Open Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Iowa State University\u2019s DataShare", "additionalNameLanguage": "eng"}] https://iastate.figshare.com/ [] ["datashare@iastate.edu"] Iowa State University’s DataShare is an open access repository for sharing and publishing research data created by Iowa State University scholars and researchers. eng ["institutional"] {"size": "97 items; 4 collections", "updatedp": "2021-02-26"} 2018-06-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://instr.iastate.libguides.com/datashare [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Iowa", "Iowa State University", "multidisciplinary", "research data"] [{"institutionName": "Iowa State University", "institutionAdditionalName": ["ISU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iastate.edu/", "institutionIdentifier": ["ROR:04rswrd78", "RRID:SCR_000972", "RRID:SCR_000972"], "responsibilityStartDate": "2018-06-01", "responsibilityEndDate": "", "institutionContact": ["contact@iastate.edu"]}, {"institutionName": "figshare for institutions", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["institutions@digital-science.com"]}] [{"policyName": "ISU Institutional Research Data Repository Terms of Use", "policyURL": "https://instr.iastate.libguides.com/datashare/TOU"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The repository is administered by the University Library in partnership with Office of the Vice President of Research and Information Technology. 2018-06-07 2021-02-26 +r3d100012698 Repositorio Institucional UCASAL spa [] http://bibliotecas.ucasal.edu.ar/opac_css/index.php?lvl=cmspage&pageid=16 [] ["lmrosado@ucasal.edu.ar"] The Repository stores in digital format all the academic and scientific documentation (Theses, Articles, Papers) generated by the institution. Its main objectives are to promote open access to the scientific-technological production generated by the Institution. It is organized by collections: Thesis and Final Works, Research, Institutional History and Photographic Archive. spa ["institutional"] {"size": "600 items", "updatedp": "2018-06-20"} 2016-01-10 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "10702 Roman Catholic Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40901 Theoretical Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://bibliotecas.ucasal.edu.ar/opac_css/index.php?lvl=cmspage&pageid=16 [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad Cat\u00f3lica de Salta", "institutionAdditionalName": [], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucasal.edu.ar/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lmrosado@ucasal.edu.ar"]}] [{"policyName": "Implementaci\u00f3n de Repositorio Institucional", "policyURL": "http://bibliotecas.ucasal.edu.ar/opac_css/doc_num_data.php?explnum_id=1084"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/ar/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/2.5/ar/"}] restricted [] ["other"] yes {"api": "http://bibliotecas.ucasal.edu.ar/ws/oai2_7", "apiType": "OAI-PMH"} [] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "http://bibliotecas.ucasal.edu.ar/opac_css/index.php?lvl=rss_see&id=5", "syndicationType": "RSS"} 2018-06-08 2018-06-29 +r3d100012700 ALlele FREquency Database eng [{"additionalName": "ALFRED", "additionalNameLanguage": "eng"}] https://alfred.med.yale.edu/alfred/index.asp ["FAIRsharing_doi:10.25504/FAIRsharing.y2yct1", "OMICS_20460", "RRID:SCR_001730", "RRID:nif-0000-02541"] ["https://alfred.med.yale.edu/alfred/alfredstaff.asp"] ALFRED is a free, web-accessible, curated compilation of allele frequency data on DNA sequence polymorphisms in anthropologically defined human populations. ALFRED is distinct from such databases as dbSNP, which catalogs sequence variation. eng ["disciplinary"] {"size": "664.708 polymorphisms, 762 populations and 66.726.252 frequency tables", "updatedp": "2019-02-07"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://alfred.med.yale.edu/alfred/AboutALFRED.asp [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["chromosome", "dna polymorphism", "genetics", "genomics", "haplotype", "human population", "pathway"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nsf.org/contact-us/"]}, {"institutionName": "Yale University, Department of Genetics, Yale School of Medicine, Kidd Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://medicine.yale.edu/lab/kidd/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://medicine.yale.edu/contact.aspx"]}, {"institutionName": "Yale University, Yale Center for Medical Informatics", "institutionAdditionalName": ["YCMI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://medicine.yale.edu/ycmi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://medicine.yale.edu/contact.aspx"]}] [{"policyName": "Overview", "policyURL": "https://alfred.med.yale.edu/alfred/AboutALFRED.asp#use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://alfred.med.yale.edu/alfred/fullcopyrightpage.asp"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://alfred.med.yale.edu/alfred/ALFREDpreview.asp"}] restricted [{"dataUploadLicenseName": "data Submission - guidelines", "dataUploadLicenseURL": "https://alfred.med.yale.edu/alfred/AboutALFRED.asp"}] ["other"] yes {} [] https://alfred.med.yale.edu/alfred/ALFRED_FAQ.asp#cite [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} PowerPoint presentation: https://medicine.yale.edu/lab/kidd/research/alfred/ALFREDpresentation_237220_29495_v1.ppt 2018-06-12 2019-02-07 +r3d100012701 Donders Repository eng [] https://data.donders.ru.nl/ ["FAIRsharing_doi:10.25504/FAIRsharing.1sfhp3"] ["datasupport@donders.ru.nl"] The repository of the Donders Institute for Brain, Cognition and Behaviour at the Radboud University is used to manage, share and publish neuroscience and neuroimaging data, including MRI, EEG, MEG and other types of research data. eng ["disciplinary"] {"size": "107 data sharing collections", "updatedp": "2020-05-15"} 2017-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ru.nl/donders/research/research-data-management/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["EEG", "FAIR", "MEG", "MRI", "behaviour", "neuroimaging", "neuroscience"] [{"institutionName": "Radboud University", "institutionAdditionalName": ["Radboud Universiteit"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ru.nl/", "institutionIdentifier": ["ROR:016xsfp80", "RRID:SCR_011489", "RRID:nlx_79396"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Radboud University, Donders Institute for Brain, Cognition and Behaviour", "institutionAdditionalName": ["Donders Institute"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ru.nl/donders/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@donders.ru.nl"]}] [{"policyName": "Data Use Agreements", "policyURL": "https://data.donders.ru.nl/doc/dua/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.donders.ru.nl/doc/dua/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] restricted [] ["unknown"] yes {} ["hdl"] https://www.ru.nl/library/services/research/literature-research/citing/ ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-06-13 2021-08-03 +r3d100012702 Immune Epitope Database eng [{"additionalName": "IEDB", "additionalNameLanguage": "eng"}, {"additionalName": "Immune Epitope Database and Analysis Resource", "additionalNameLanguage": "eng"}] https://www.iedb.org/home_v3.php ["FAIRsharing_doi:10.25504/FAIRsharing.c886cd", "OMICS_05907", "RRID: nif-0000-03017", "RRID:SCR_006604"] ["https://help.iedb.org/hc/en-us", "https://help.iedb.org/hc/en-us/requests/new"] IEDB offers easy searching of experimental data characterizing antibody and T cell epitopes studied in humans, non-human primates, and other animal species. Epitopes involved in infectious disease, allergy, autoimmunity, and transplant are included. The IEDB also hosts tools to assist in the prediction and analysis of B cell and T cell epitopes. eng ["disciplinary"] {"size": "Peptidic Epitopes 537.670 Non-Peptidic Epitopes 2.737 T Cell Assays 345.165 B Cell Assays 473.052 MHC Ligand Assays 1.084.314 Epitope Source Organisms 3.667 Restricting MHC Alleles 779 References 19.999", "updatedp": "2019-02-07"} 2004 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://help.iedb.org/hc/en-us/articles/114094147671-IEDB-User-Documentation-Release-3 [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "allergenes", "alloantigenes", "autoimmune diseases", "immune epotopes", "immunology", "infectious diseases", "major histocompatibility complex MHC", "pathogens", "transplant"] [{"institutionName": "La Jolla Institute for Allergy and Immunology", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lji.org/", "institutionIdentifier": ["RRID:SCR_014845"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lji.org/contact/"]}, {"institutionName": "National Institute of Allergy and Infectious Disease", "institutionAdditionalName": ["NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["RRID:SCR_012740", "RRID:nlx_inv_1005100"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["JBREEN@niaid.nih.gov", "adeckhut@niaid.nih.gov"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "United States Department of Health and Human Services", "institutionAdditionalName": ["HHS.gov"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.hhs.gov/", "institutionIdentifier": ["RRID:SCR_009983", "RRID:nlx_inv_1005043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hhs.gov/about/contact-us/index.html"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.iedb.org/terms_of_use_v3.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.iedb.org/terms_of_use_v3.php"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.iedb.org/terms_of_use_v3.php"}] restricted [] ["unknown"] yes {} ["none"] https://www.iedb.org/citation_v3.php [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-06-13 2020-04-24 +r3d100012704 Arquivo.pt - the Portuguese web-archive eng [{"additionalName": "Arquivo.pt - pesquise p\u00e1ginas do passado", "additionalNameLanguage": "por"}] https://arquivo.pt/ [] ["contacto@arquivo.pt", "https://sobre.arquivo.pt/pt/contacto/"] Arquivo.pt is a research infrastructure that preserves millions of files collected from the web since 1996 and provides a public search service over this information. It contains information in several languages. Periodically it collects and stores information published on the web. Then, it processes the collect data to make it searchable, providing a “Google-like” service that enables searching the past web (English user interface available at https://arquivo.pt/?l=en). This preservation workflow is performed through a large-scale distributed information system and can also accessed through API (https://arquivo.pt/api). eng ["other"] {"size": "10 billion files; collected from 27 million websites", "updatedp": "2019-02-07"} 2007 ["eng", "por"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://sobre.arquivo.pt/en/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "FCT - Funda\u00e7\u00e3o para a Ci\u00eancia e a Teconlogia", "institutionAdditionalName": ["Foundation for Science and Technology"], "institutionCountry": "PRT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.fccn.pt/", "institutionIdentifier": ["ROR:00snfqn58"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://sobre.arquivo.pt/en/about/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://sobre.arquivo.pt/en/about/terms-and-conditions/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://sobre.arquivo.pt/en/about/terms-and-conditions/"}] restricted [] ["CKAN"] yes {"api": "https://arquivo.pt/api", "apiType": "REST"} [] [] unknown yes [] [] {"syndication": "https://sobre.arquivo.pt/en/feed/", "syndicationType": "RSS"} GitHub: https://github.com/arquivo/ 2018-06-14 2021-04-20 +r3d100012705 Kaggle eng [{"additionalName": "Your home for data science", "additionalNameLanguage": "eng"}] https://www.kaggle.com/datasets [] ["https://www.kaggle.com/contact"] Kaggle is a platform for predictive modelling and analytics competitions in which statisticians and data miners compete to produce the best models for predicting and describing the datasets uploaded by companies and users. This crowdsourcing approach relies on the fact that there are countless strategies that can be applied to any predictive modelling task and it is impossible to know beforehand which technique or analyst will be most effective. eng ["other"] {"size": "14.376 datasets", "updatedp": "2019-02-07"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.kaggle.com/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["analytics companies", "campetition platforms", "competitions", "competitive programming", "crowdsourcing", "data science"] [{"institutionName": "Alphabet Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://abc.xyz/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Google", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.google.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kaggle Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.kaggle.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kaggle.com/contact"]}] [{"policyName": "A Guide to Open Data Publishing & Analytics", "policyURL": "http://blog.kaggle.com/2016/10/21/a-guide-to-open-data-publishing-analytics/"}, {"policyName": "Terms of Use", "policyURL": "https://www.kaggle.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.de.html"}] restricted [] ["unknown"] yes {"api": "https://github.com/Kaggle/kaggle-api#api-credentials", "apiType": "other"} [] [] unknown unknown [] [] {} Description: https://en.wikipedia.org/wiki/Kaggle . Founder: Anthony Goldbloom 2018-06-18 2019-02-07 +r3d100012708 Land Portal eng [{"additionalName": "Land Portal Foundation", "additionalNameLanguage": "eng"}] https://www.landportal.org [] ["hello@landportal.info"] The Land Portal is the leading online resource for land governance issues. It collects metadata from statistical datasets relating to land, peer-reviewed articles and other research reports, national laws and policies, grey literature but also news, blogs and organization profiles. eng ["disciplinary"] {"size": "35 datasets; 650 indicators", "updatedp": "2019-02-07"} 2009 ["eng", "fra", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://landportal.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["land governance", "land rights", "land tenure", "property rights"] [{"institutionName": "Land Data Providers", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://landportal.org/book/sources", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Land Portal Foundation", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://landportal.org/about/foundation", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://landportal.org/about/contact-us"]}, {"institutionName": "University of Groningen", "institutionAdditionalName": ["Rijksuniversiteit Groningen"], "institutionCountry": "NLD", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rug.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions of use", "policyURL": "https://landportal.org/about/terms-and-conditions-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://landportal.org/voc/license"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://landportal.org/voc/license/creative-commons-zero-public-domain"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://landportal.org/voc/license/all-rights-reserved"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://landportal.org/voc/license/open-data-commons-attribution-license"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}] ["unknown"] {"api": "https://landportal.org/book/reuse", "apiType": "SPARQL"} [] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}, {"metadataStandardName": "SDMX - Statistical Data and Metadata Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange"}] {} 2018-06-22 2019-02-07 +r3d100012712 Epidat deu [{"additionalName": "Datenbank zur j\u00fcdischen Grabsteinepigraphik", "additionalNameLanguage": "deu"}, {"additionalName": "The Database of Jewish epigraphy", "additionalNameLanguage": "eng"}] http://www.steinheim-institut.de/cgi-bin/epidat?lang=de [] ["steinheim@steinheim-institut.org"] Epidat provides the inventory, documentation, editions and presentation of epigraphical collections. eng ["disciplinary"] {"size": "198 digital editions with 35.440 epitaphs (69.393 image files)", "updatedp": "2019-02-12"} 2006 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://forschungslizenzen.de/steinheim-institut-epidat-datenbank/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Germany", "art studies", "cultural heritage", "epigraphic", "genealogy", "history", "inscriptions", "jewish", "jewish cemeteries", "jews", "monument perservation", "tombs"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Salomon Ludwig Steinheim-Institut", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.steinheim-institut.de/wiki/index.php/Hauptseite", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kol@steinheim-institut.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] yes {} [] ["other"] unknown yes [] [] {"syndication": "http://steinheim-institut.de/daten/rss.xml", "syndicationType": "RSS"} Epidat uses DARIAH-DE services. - In close cooperation with Judaica Europeana and Athena Plus work has been done to transfer the epidat collection to europeana. 2018-06-26 2021-08-25 +r3d100012713 Alzforum eng [{"additionalName": "Networking for a cure", "additionalNameLanguage": "eng"}] https://www.alzforum.org/ ["RRID:SCR_006416", "RRID:nif-0000-00095"] ["contact@alzforum.org", "https://www.alzforum.org/contact-us"] Alzforum is an independent research project to develop an online community resource to manage scientific knowledge, information, and data about Alzheimer disease (AD). eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.alzforum.org/about-us/mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["alzheimer's disease", "antibodies", "biomarker", "brain", "dementia", "genetics", "human", "neurological disorder", "therapeutics"] [{"institutionName": "Fidelity Management and Research Limited Liability Company, F-Prime Biomedical Research Initiative", "institutionAdditionalName": ["FMR LLC, FBRI LLC"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "commercial", "institutionURL": "https://fprimecapital.com/fbri", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://fprimecapital.com/team-members/stacie-weninger/", "sweninger@fbri.com"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.alzforum.org/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.alzforum.org/about-us/termspolicieslegal/copyright"}] restricted [] ["unknown"] {} [] https://www.alzforum.org/how-to-cite [] yes yes [] [] {} 2018-06-27 2021-10-06 +r3d100012714 WebGIS Universität Münster eng [] http://en.wadi-abu-dom.de/webgis/ [] ["wadiprojekt@uni-muenster.de"] Here you find our web GIS. It was developed in close cooperation with the Institute for Geoinformatics of the WWU Münster. Here, the raw data of the survey project “Wadi Abu Dom Itinerary” are presented to the public. At the moment, this presentation platform is shared with the research project “Doliche” of the research center Asia Minor at the WWU Münster. In future, the integration of other research projects is planned. eng ["disciplinary"] {"size": "2 databases", "updatedp": "2019-12-05"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Asia Minor", "Bayuda", "Doliche", "D\u00fcl\u00fck Baba Tepesi", "Kommagene", "Sudan", "W.A.D.I. - Wadi Abu Dom Itinerary"] [{"institutionName": "Georg-August Universit\u00e4t G\u00f6ttingen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.uni-goettingen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institutions and Partners", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.wadi-abu-dom.de/institutionen-und-partners/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Corporation of Antiquities and Museums, Sudan", "institutionAdditionalName": [], "institutionCountry": "SDN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Qatar-Sudan Archaeological Project", "institutionAdditionalName": ["QSAP"], "institutionCountry": "SDN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.qsap.org.qa/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.uni-muenster.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster, Institut f\u00fcr Geoinformatik", "institutionAdditionalName": ["WWU", "ifgi"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-muenster.de/Geoinformatics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster, Institut f\u00fcr \u00c4gyptologie und Koptologie", "institutionAdditionalName": ["IAEK"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-muenster.de/IAEK/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data submission", "policyURL": "http://en.wadi-abu-dom.de/webgis/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://wadi-abu-dom.de/impressum/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.doliche.de/impressum/"}] restricted [] ["other"] {} [] [] yes unknown [] [] {} 2018-06-27 2020-01-10 +r3d100012715 enviPath eng [{"additionalName": "The enironmental contaminant biotransormation pathway resource", "additionalNameLanguage": "eng"}, {"additionalName": "including: Biocatalysis/Biodegradation Database EAWAG PPS Rules", "additionalNameLanguage": "eng"}] https://envipath.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.g0c5qn", "OMICS_11129"] ["admin@envipath.org"] enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.datamining.informatik.uni-mainz.de/dfg-snf-envipath/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Switzerland", "biotransformation pathways", "microbial biotransformation", "organic environmental contaminants", "pathways", "swiss"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Johannes Gutenberg Universit\u00e4t Mainz, Institut of Computer Science", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["sponsoring", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cs.uni-mainz.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cs.uni-mainz.de/people/"]}, {"institutionName": "Schweizerischer Nationalfonds zur F\u00f6rderung der wissenschaftlichen Forschung", "institutionAdditionalName": ["SNSF", "Swiss National Science Foundation"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.snf.ch/en/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "eawag aquatic research", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.eawag.ch/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://envipath.org/licence"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}] open [] ["unknown"] {"api": "https://wiki.envipath.org/index.php/Main_Page#REST_API", "apiType": "REST"} [] https://wiki.envipath.org/index.php/Main_Page#Cite [] unknown unknown [] [] {} Contributers: https://envipath.org/contributors 2018-06-27 2019-02-12 +r3d100012716 Portal de datos de Biodiversidad spa [{"additionalName": "Sistema Nacional de Datos Biol\u00f3gicos - Portal de datos", "additionalNameLanguage": "spa"}] http://datos.sndb.mincyt.gob.ar/ [] ["sndb@mincyt.gob.ar"] The Portal de datos de Biodiversidad is the biodiversity data portal of the National System of Biological Data (Sistema Nacional de Datos Biológicos, SNDB). It provides georeferenced data, published data sets, and information about biodiversity collections of the SNDB. eng ["disciplinary"] {"size": "233 datasets", "updatedp": "2019-02-12"} ["spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20201 Plant Systematics and Evolution", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://wiki.envipath.org/index.php/Main_Page#Database [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Fauna", "Insects", "Microorganisms", "Natural History", "Plants", "Specimens"] [{"institutionName": "National System of Biological Data", "institutionAdditionalName": ["SNDB", "Sistema Nacional de Datos Biol\u00f3gicos"], "institutionCountry": "ARG", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.datosbiologicos.mincyt.gob.ar/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.ala.org.au/who-we-are/terms-of-use/#TOUusingcontent"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] closed [] [] {} [] [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}] {} 2018-06-28 2019-02-12 +r3d100012717 Portal de Datos del Mar - SNDM spa [{"additionalName": "Ocean Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "Portal Argentino de Datos del Mar", "additionalNameLanguage": "spa"}] http://portal.mincyt.gob.ar/portal/ [] ["sndm@mincyt.gob.ar"] The portal is an initiative of the National Data System of the Sea (SNDM) of the Ministry of Science, Technology and Productive Innovation of Argentina. It allows easy discovery and Open Access to marine and coastal data generated as a result of research funded by the National State, in addition to favoring the standardization of data produced by the different institutions related to the SNDM. spa ["disciplinary"] {"size": "98 entries", "updatedp": "2020-06-02"} ["eng", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biogeochemistry", "hydrography", "marine science", "meteorology", "zooplankton"] [{"institutionName": "Argentina, Ministerio de Ciencia, Tecnolog\u00eda e Innovaci\u00f3n Productiva", "institutionAdditionalName": ["MINCYT", "Ministry of Science, Technology and Productive Innovation"], "institutionCountry": "ARG", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.argentina.gob.ar/ciencia?p=", "institutionIdentifier": ["ROR:02h503d38"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sistema Nacional de Datos del Mar", "institutionAdditionalName": ["National Data System of the Sea", "SNDM"], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.argentina.gob.ar/ciencia/sistemasnacionales/datos-del-mar", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://portal.mincyt.gob.ar/odp2/resource?id=AR_INIDEP_09"}] restricted [] [] {} [] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Available for general disclosure; Exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor. 2018-06-28 2020-06-02 +r3d100012718 UvaDOC - Fonda Antiguo spa [{"additionalName": "University of Valladolid Documentary Repository - Fonda Antiguo", "additionalNameLanguage": "eng"}] https://uvadoc.uva.es/handle/10324/150 [] ["repositorio@uva.es"] Fondo Antiguo is part of UVaDOC Repositorio Documental de la Universidad de Valladolid. It contains ancient printed documents. spa ["disciplinary"] {"size": "1465 items", "updatedp": "2019-02-12"} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "10503 European and American Literature", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://uvadoc.uva.es/help/uvadocObjetivo.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Colegio Mayor de Santa Cruz", "incunabula", "manuscripts", "rare prints"] [{"institutionName": "Universidad de Valladolid", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uva.es", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["repositorio@uva.es"]}] [{"policyName": "Pol\u00edtica institucional de acceso abierto a la producci\u00f3n cient\u00edfica y acad\u00e9mica de la Universidad de Valladoli", "policyURL": "http://uvadoc.blogs.uva.es/files/2017/01/PoliticaAccesoAbierto.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://uvadoc.blogs.uva.es/files/2017/01/PoliticaAccesoAbierto.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [] ["DSpace"] yes {"api": "https://wiki.duraspace.org/display/DSDOC5x/OAI", "apiType": "OAI-PMH"} ["hdl"] http://uvadoc.uva.es/handle/10324/30197?mode=full [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://uvadoc.uva.es/feed/atom_1.0/10324/150", "syndicationType": "ATOM"} 2018-06-29 2019-02-12 +r3d100012721 TopFIND eng [{"additionalName": "Termini oriented protein Function Inferred Database", "additionalNameLanguage": "eng"}] http://clipserve.clip.ubc.ca/topfind/ ["FAIRsharing_doi:10.25504/FAIRsharing.rkpmhn", "OMICS_10578", "RRID:SCR_008918", "RRID:nlx_151607"] ["topfind.clip@gmail.com"] TopFIND is a protein-centric database for the annotation of protein termini currently in its third version. Non-canonical protein termini can be the result of multiple different biological processes, including pre-translational processes such as alternative splicing and alternative translation initiation or post-translational protein processing by proteases that cleave proteases as part of protein maturation or as a regulatory modification. Accordingly, protein termini evidence in TopFIND is inferred from other databases such as ENSEMBL transcripts, TISdb for alternative translation initiation, MEROPS for protein cleavage by proteases, and UniProt for canonical and protein isoform start sites. eng ["disciplinary"] {"size": "More than 290.000 N- and C-termini; more than 33.000 cleavages listed", "updatedp": "2018-07-06"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://clipserve.clip.ubc.ca/topfind/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "polypeptide chain", "protease", "proteins", "proteomics"] [{"institutionName": "University of British Columbia", "institutionAdditionalName": ["UBC"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "License & Disclaimer", "policyURL": "http://clipserve.clip.ubc.ca/topfind/license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/3.0/"}] restricted [{"dataUploadLicenseName": "Data contribution", "dataUploadLicenseURL": "http://clipserve.clip.ubc.ca/topfind/downloads/TopFIND%20%E2%80%93%20HowTo%20contribute%20your%20data.pdf"}] ["unknown"] yes {"api": "http://clipserve.clip.ubc.ca/topfind/api", "apiType": "other"} [] http://clipserve.clip.ubc.ca/topfind/about [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-07-04 2018-08-16 +r3d100012722 PhenoM eng [{"additionalName": "Phenomics of yeast Mutants", "additionalNameLanguage": "eng"}] http://phenom.ccbr.utoronto.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.bp5hpt", "OMICS_03109", "RRID:SCR_006970", "RRID:nlx_151489"] ["ccbr.info@utoronto.ca"] PhenoM (Phenomics of yeast Mutants) stores, retrieves, visualises and data mines the quantitative single-cell measurements extracted from micrographs of temperature-sensitive mutant cells. eng ["disciplinary"] {"size": "1.909.914 cells; 78.194 morphological images; 775 temperature-sensitive mutants; 491 different essential genes", "updatedp": "2019-02-13"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biomolecular research", "evolutionary genomics", "functional genomics", "molcecular medicine", "proteomics", "systems biology"] [{"institutionName": "University of Toronto", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Toronto, Donnelly Centre for Cellular and Biomolecular Research", "institutionAdditionalName": ["CCBR", "Terrence Donnelly Centre for Cellular and Biomolecular Research"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://tdccbr.med.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ccbr.info@utoronto.ca"]}, {"institutionName": "University of Toronto, Donnelly Centre for Cellular and Biomolecular Research, Boone Lab", "institutionAdditionalName": ["Boone Lab"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sites.utoronto.ca/boonelab/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["charlie.boone@utoronto.ca"]}, {"institutionName": "University of Toronto, Donnelly Centre for Cellular and Biomolecular Research, Brenda Andrews Research Lab", "institutionAdditionalName": ["Andrews Lab"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sites.utoronto.ca/andrewslab/index.shtml", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brenda.andrews@utoronto.ca"]}, {"institutionName": "University of Toronto, Donnelly Centre for Cellular and Biomolecular Research, Zhang Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://sites.utoronto.ca/zhanglab/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["zhaolei.zhang@utoronto.ca"]}] [{"policyName": "Download", "policyURL": "http://phenom.ccbr.utoronto.ca/DownloadHelp.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://phenom.ccbr.utoronto.ca/index.jsp"}] closed [] [] {} [] [] unknown unknown [] [] {} 2018-07-04 2021-08-25 +r3d100012723 Database for Bacterial Group II Introns eng [{"additionalName": "Group II introns database", "additionalNameLanguage": "eng"}] http://webapps2.ucalgary.ca/~groupii/ ["FAIRsharing_doi:10.25504/FAIRsharing.710xh8", "OMICS_16429"] ["http://webapps2.ucalgary.ca/~groupii/html/static/contact.php", "zimmerly@ucalgary.ca"] Database for identification and cataloguing of group II introns. All bacterial introns listed are full-length and appear to be functional, based on intron RNA and IEP characteristics. The database names the full-length introns, and provides information on their boundaries, host genes, and secondary structures. In addition, the website provides tools for analysis that may be useful to researchers who encounter group II introns in DNA sequences. Intron data can be downloaded in FASTA format. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://webapps2.ucalgary.ca/~groupii/html/static/intro.php [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["DNA", "algae", "bacteria", "fungi", "genome", "plants", "protein", "protists"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Calgary, Department of Biological Sciences", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://bio.ucalgary.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "http://www.cihr-irsc.gc.ca/e/14202.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cihr-irsc.gc.ca/e/14202.html"}] closed [] [] {} [] http://webapps2.ucalgary.ca/~groupii/html/static/cite.php ["AuthorClaim"] unknown unknown [] [] {} 2018-07-04 2019-02-13 +r3d100012724 BacMap eng [{"additionalName": "BacMap Genome Atlas", "additionalNameLanguage": "eng"}] http://bacmap.wishartlab.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.z6rbe3", "MIR:00100539", "OMICS_20942", "RRID:SCR_006988", "RRID:nif-0000-02591"] ["http://bacmap.wishartlab.com/contact_us"] BacMap is a picture atlas of annotated bacterial genomes. It is an interactive visual database containing hundreds of fully labeled, zoomable, and searchable maps of bacterial genomes. eng ["disciplinary"] {"size": "maps for 2.989 bacterial chromosomes across 1.790 bacterial organisms", "updatedp": "2019-02-13"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://bacmap.wishartlab.com/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bacteria", "chromosome", "gene annotation", "gene sequence", "genomes", "prokaryotic species"] [{"institutionName": "University of Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ualberta.ca/", "institutionIdentifier": ["RRID:SCR_001853", "RRID:nlx_10148"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alberta, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/"}] closed [] [] {} ["none"] http://bacmap.wishartlab.com/ [] unknown unknown [] [] {} 2018-07-04 2019-02-13 +r3d100012725 iRefWeb eng [{"additionalName": "Interaction Reference Index Web Interface", "additionalNameLanguage": "eng"}] http://wodaklab.org/iRefWeb/ ["FAIRsharing_doi:10.25504/FAIRsharing.t31wcb", "OMICS_02922", "RRID:SCR_008118", "RRID:nif-0000-20861"] ["support@wodaklab.org"] iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID. eng ["disciplinary"] {"size": "509.876 results", "updatedp": "2019-02-13"} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://wodaklab.org/iRefWeb/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["IMEx", "PPI", "PSI-MI", "biogrid", "bioinformatics", "interactions", "macromulecules", "protein-ligand", "protein-protein"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.cihr-irsc.gc.ca/e/9833.html"]}, {"institutionName": "Donaldson Research", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://donaldsonresearch.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ian@donaldsonresearch.com"]}, {"institutionName": "SickKids Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sickkidsfoundation.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sickkidsfoundation.com/faqs"]}, {"institutionName": "University of Toronto", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.utoronto.ca/contacts"]}, {"institutionName": "Wodak Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://wodaklab.org/ws/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@wodaklab.org"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wodaklab.org/iRefWeb/"}] open [] ["other"] yes {} [] http://irefindex.org/wiki/index.php?title=iRefIndex_Citations [] unknown unknown [] [] {} 2018-07-04 2019-02-13 +r3d100012726 Bacteriome.org eng [{"additionalName": "Bacterial Protein Interaction Database", "additionalNameLanguage": "eng"}] http://compsysbio.org/bacteriome/ ["FAIRsharing_doi:10.25504/FAIRsharing.mx5cxe", "OMICS_01899", "RRID:SCR_001934", "RRID:nif-0000-02592"] ["jparkin@sickkids.ca"] Bacteriome.org is a database integrating physical (protein-protein) and functional interactions within the context of an E. coli knowledgebase. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://compsysbio.org/bacteriome/projectdetail.php [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["PPI protein-protein interaction", "bacterial infections", "escherichia coli E.coli", "genetics", "genomics", "gram-negative bacteria"] [{"institutionName": "Canadian Institute of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": ["RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.canada.ca/en/contact.html"]}, {"institutionName": "SickKids", "institutionAdditionalName": ["Hospital for Sick Children"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sickkids.ca/index.html", "institutionIdentifier": ["ROR:057q4rt57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.sickkids.ca/AboutSickKids/Contact-Us/index.html"]}, {"institutionName": "University of Toronto, Department of Molecular Genetics", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.moleculargenetics.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.moleculargenetics.utoronto.ca/undergraduate/#contact"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://compsysbio.org/bacteriome/download.php"}] closed [] ["unknown"] {} ["none"] ["none"] no unknown [] [] {} 2018-07-04 2021-11-09 +r3d100012727 Comprehensive Antibiotic Resistance Database eng [{"additionalName": "CARD", "additionalNameLanguage": "eng"}] https://card.mcmaster.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.9dbmwg", "OMICS_04932"] ["card@mcmaster.ca"] A bioinformatic database of antimicrobial resistance genes, their products and associated phenotypes. eng ["disciplinary"] {"size": "4.550 Ontology Terms; 3.735 Reference Sequences; 1.704 SNPs; 2.735 AMR Detection Models;", "updatedp": "2020-12-15"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://card.mcmaster.ca/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AMR", "ARO", "DNA sequence data", "RGI", "antibiotic resistance ontology", "antimicrobial resistance", "gene", "ontology", "resistance gene identifier"] [{"institutionName": "Canada Foundation for Innovation", "institutionAdditionalName": ["CFI", "FCI", "Fondation Canadienne pour l'Innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:nlx_144042"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cisco Systems Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.cisco.com/c/en_ca/index.html", "institutionIdentifier": ["ROR:02af0qw97"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cisco.com/c/en_ca/about/contact-cisco.html"]}, {"institutionName": "McMaster University, Department of Biochemistry and Biomedical Sciences", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://fhs.mcmaster.ca/biochem/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517", "RRID:SCR_011018", "RRID:nlx_inv_1005080"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": ["ROR:01h531d29", "RRID:SCR_013327", "RRID:nlx_39429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Research Fund", "institutionAdditionalName": ["Fonds pour la recherche en Ontario"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/ontario-research-fund", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use for Non-Commercial, Research or Academic Reproduction and Terms of Use for Commercial or Non-Academic Organizations", "policyURL": "https://card.mcmaster.ca/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://card.mcmaster.ca/about"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://card.mcmaster.ca/"}] restricted [] ["other"] yes {} ["none"] https://card.mcmaster.ca/ [] unknown yes [] [] {} URLs for all the ontologies in CARD: Antibiotic resistance Ontology (ARO): /aro/accession e.g https://card.mcmaster.ca/aro/3003689 Relationship Ontology (RO): /ro/accession e.g https://card.mcmaster.ca/ro/is_a Model Ontology (MO): /mo/accession e.g https://card.mcmaster.ca/mo/0000009 NCBI Taxonomy Ontology (NCBITaxon): /ncbitaxon/accession e.g https://card.mcmaster.ca/ncbitaxon/570 Gene Ontology (GO): /go/accession e.g https://card.mcmaster.ca/go/0022804 2018-07-04 2021-09-03 +r3d100012728 OrtholugeDB eng [{"additionalName": "The Ortholog Database", "additionalNameLanguage": "eng"}] http://www.pathogenomics.sfu.ca/ortholugedb/ ["FAIRsharing_doi:10.25504/FAIRsharing.675y92", "OMICS_05345"] ["http://www.pathogenomics.sfu.ca/ortholugedb/?page=contact", "ortholugedb-mail@sfu.ca"] OrtholugeDB contains Ortholuge-based orthology predictions for completely sequenced bacterial and archaeal genomes. It is also a resource for reciprocal best BLAST-based ortholog predictions, in-paralog predictions (recently duplicated genes) and ortholog groups in Bacteria and Archaea. The Ortholuge method improves the specificity of high-throughput orthology prediction. eng ["disciplinary"] {"size": "Orthologs 1.952.508.049; Distinct Genomes 2.069; Distinct Genes 6.602.687", "updatedp": "2016-04-18"} 2012-06-20 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.pathogenomics.sfu.ca/ortholugedb/?page=about [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bacteria", "computational methods", "genetics", "genomics", "phylogenomics", "sequenzing"] [{"institutionName": "Cystic Fibrosis Foundation Therapeutics Inc.", "institutionAdditionalName": ["CFFT"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cff.org/News/News-Archive/2017/CFFT-Activities-Transferred-to-the-CF-Foundation/", "institutionIdentifier": ["ROR:00ax59295"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cff.org/email-opt-in/"]}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": ["Genome BC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomebc.ca/", "institutionIdentifier": ["ROR:03gne5057"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/", "institutionIdentifier": ["ROR:029s29983", "RRID:SCR_000966", "RRID:nlx_151964"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about/contact-us"]}, {"institutionName": "Simon Fraser University, Department of Molecular Biology and Biochemistry, Fiona Brinkman Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.brinkman.mbb.sfu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["brinkman@sfu.ca"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.pathogenomics.sfu.ca/ortholugedb/"}] closed [] ["other"] yes {} [] [] unknown unknown [] [] {} 2018-07-04 2021-09-03 +r3d100012729 CLAE eng [{"additionalName": "Characterized Lignocellulose-Active Proteins of Fungal Origin", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: mycoCLAP", "additionalNameLanguage": "eng"}] https://clae.fungalgenomics.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.ezp87", "OMICS_07832"] ["csfg-helpdesk@concordia.ca", "https://clae.fungalgenomics.ca/contact/"] Formerly known as mycoCLAP, CLAE is a curated database of Characterized Lignocellulose-Active Enzymes eng ["disciplinary"] {"size": "3.708 entries", "updatedp": "2020-12-21"} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20205 Plant Biochemistry and Biophysics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://clae.fungalgenomics.ca/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "carbohydrate esterases", "decomposition", "enzymes", "fungal glycoside hydrolases", "fungi", "genomics", "plant biomass", "polysaccharide lyases"] [{"institutionName": "CBioN", "institutionAdditionalName": ["Cellulosic Biofuel Network", "R\u00e9seau sur les Biocarburants Cellulosiques"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.concordia.ca/research/genomics/projects/past-projects/national-cellulosic-biofuels.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2020", "institutionContact": []}, {"institutionName": "Concordia University, Bioinformatics, Centre for Structural and Functional Genomics", "institutionAdditionalName": ["CSFG"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.concordia.ca/research/genomics/facilities-instruments/bioinformatics.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome Canada", "institutionAdditionalName": ["G\u00e9nome Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomecanada.ca/", "institutionIdentifier": ["ROR:029s29983", "RRID:SCR_000966", "RRID:nlx_151964"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomecanada.ca/en/about/contact-us"]}, {"institutionName": "Genome Quebec", "institutionAdditionalName": ["G\u00e9nome Qu\u00e9bec"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomequebec.com/en/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genomequebec.com/en/contact-us/"]}, {"institutionName": "NSERC - bioconversion Network", "institutionAdditionalName": [], "institutionCountry": "IDN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsercbioconversion.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal Services", "policyURL": "https://www.concordia.ca/about/administration-governance/legal.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://spectrum.library.concordia.ca/982241/"}] restricted [] ["unknown"] {} ["none"] https://clae.fungalgenomics.ca/ ["none"] yes unknown [] [] {} 2018-07-04 2021-06-16 +r3d100012730 SCRIPDB eng [{"additionalName": "Syntheses, Chemicals, and Reactions In Patents", "additionalNameLanguage": "eng"}] http://dcv.uhnres.utoronto.ca/SCRIPDB ["FAIRsharing_doi:10.25504/FAIRsharing.sncr74", "OMICS_10794", "RRID:SCR_008922", "RRID:nlx_151638"] ["SCRIPDB@cs.toronto.edu"] SCRIPDB is a chemical structure database designed to make patent metadata accessible. We index public-domain chemical information contained in U.S. patents, and provide the full patent text, reactions, and relationships described within any individual patent, as well as the original CDX, MOL, and TIFF files. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://dcv.uhnres.utoronto.ca/SCRIPDB [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["agricultural", "biological", "chemical", "medical", "molecules", "syntheses"] [{"institutionName": "Ontario Ministry of Health and Long Term Care", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.health.gov.on.ca/en/", "institutionIdentifier": ["ROR:00tjpb250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Toronto Western Hospital, Krembil Research Institute, Jurisica Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cs.toronto.edu/~juris/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["juris@ai.utoronto.ca"]}, {"institutionName": "University of Toronto, Department of Computer Science", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://web.cs.toronto.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://web.cs.toronto.edu/contact-us/contact-info"]}] [{"policyName": "Terms of Use", "policyURL": "http://dcv.uhnres.utoronto.ca/SCRIPDB"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cs.toronto.edu/~aheifets/"}] closed [] [] {} [] http://dcv.uhnres.utoronto.ca/SCRIPDB [] unknown unknown [] [] {} 2018-07-04 2020-12-21 +r3d100012731 Pathway Commons eng [] https://www.pathwaycommons.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.5y3gdd", "OMICS_02761", "RRID:SCR_002103", "RRID:nif-0000-20884"] ["https://groups.google.com/forum/#!forum/pathway-commons-help/join"] Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases. Information is sourced from public pathway databases and is readily searched, visualized, and downloaded. The data is freely available under the license terms of each contributing database. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.pathwaycommons.org/pc/about.do [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DNA", "RNA", "biochemistry", "cell-to-cell communication", "genetic interations", "genetics", "genomics", "metabolic pathways", "molecular interactions", "molecules", "protein", "proteomics", "signaling pathways", "system biology"] [{"institutionName": "Harvard Medical School, Dana-Farber Cancer Institute, Sander Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanderlab.org/#/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sanderlab.org/#/contact"]}, {"institutionName": "Oregon Health & Science University", "institutionAdditionalName": ["OHSU"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ohsu.edu/xd/", "institutionIdentifier": ["ROR:009avj582", "RRID:SCR_009665"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ohsu.edu/xd/about/contact-us/"]}, {"institutionName": "University of Toronto, Bader Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://baderlab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://baderlab.org/"]}, {"institutionName": "University of Toronto, Memorial Sloan-Kettering Cancer Center , Computational Biology Center", "institutionAdditionalName": ["MSKCC, cBio"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://cbio.mskcc.org/about/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://cbio.mskcc.org/contact-cbio/index.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.pathwaycommons.org/"}] restricted [] ["other"] yes {"api": "http://www.pathwaycommons.org/pc2/home", "apiType": "REST"} ["other"] ["none"] unknown yes [] [] {"syndication": "http://groups.google.com/group/pathway-commons-announcements/feed/rss_v2_0_msgs.xml", "syndicationType": "RSS"} Pathway Commons software is build in GitHub: https://github.com/PathwayCommons/pcviz/ 2018-07-04 2021-06-16 +r3d100012732 iReceptor eng [] http://ireceptor.irmacs.sfu.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.ekdqe5"] ["support@ireceptor.org"] A data repository for the storage and sharing of Adaptive Immune Receptor Repertoire data. Primary public repository for the iReceptor Platform and Scientific Gateway. Further URL for the repository: http://www.ireceptor.org eng ["disciplinary"] {"size": "4 billion sequences; 6013 repertoires", "updatedp": "2020-12-18"} 2016 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://ireceptor.irmacs.sfu.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["B cell receptor complex", "BCR", "COVID-19", "MIARR", "T cell receptor", "TCR", "adaptive immune receptor repertoire", "antibody", "cancer", "immunotherapy"] [{"institutionName": "Adaptive Immune Receptor Repertoire Comunity", "institutionAdditionalName": ["AIRR Community"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.antibodysociety.org/the-airr-community/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "B.C. Knowledge Development Fund", "institutionAdditionalName": ["BCKDF", "British Columbia Knowledge Development Fund"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/governments/about-the-bc-government/technology-innovation/bckdf", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CANARIE", "institutionAdditionalName": ["CFI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canarie.ca/?referral=home", "institutionIdentifier": ["ROR:01nztpc84"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "INNOVATION.CA", "institutionAdditionalName": ["CFI", "Canada Foundation for Innovation", "Fondation Canadienne pour l'innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": ["ROR:000az4664", "RRID:SCR_005054", "RRID:SCR_011134", "RRID:nlx_144042", "RRID:nlx_144043"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Simon Fraser University", "institutionAdditionalName": ["SFU"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sfu.ca/", "institutionIdentifier": ["ROR:0213rcc28", "RRID:SCR_011529", "RRID:nlx_81338"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Simon Fraser University, IRMACS Centre, iReceptor", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://ireceptor.irmacs.sfu.ca/node/28", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "iReceptor Documentation", "policyURL": "http://ireceptor.irmacs.sfu.ca/platform/doc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://ireceptor.irmacs.sfu.ca/"}] closed [] [] {"api": "http://ipa5.ireceptor.org/v2/samples", "apiType": "REST"} [] [] unknown yes [] [] {} Both the iReceptor Public Archive (IPA) (Simon Fraser University/Compute Canada) and VDJServer (University of Texas Southwestern Medical School) repositories are available. Researchers can use the iReceptor Scientific Gateway by applying for an account and logging in to the web interface at https://gateway.ireceptor.org/login. 2018-07-04 2020-12-18 +r3d100012733 The Yeast Metabolome Database eng [{"additionalName": "YMDB", "additionalNameLanguage": "eng"}] http://www.ymdb.ca/ ["FAIRsharing_doi:10.25504/FAIRsharing.tawpg2", "OMICS_04807", "RRID:SCR_005890"] ["@WishartLab (Twitter)"] The Yeast Metabolome Database (YMDB) is a manually curated database of small molecule metabolites found in or produced by Saccharomyces cerevisiae (also known as Baker’s yeast and Brewer’s yeast). This database covers metabolites described in textbooks, scientific journals, metabolic reconstructions and other electronic databases. eng ["disciplinary"] {"size": "16.042 small molecule metabolites with 909 associated enzymes and 149 associated transporters", "updatedp": "2019-05-15"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.ymdb.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["S. cerevisiae", "Saccharomyces cerevisiae", "baker's yeast", "brewer's yeast", "enzyme", "protein"] [{"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.metabolomicscentre.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@metabolomicscentre.ca"]}, {"institutionName": "University of Alberta, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://feedback.wishartlab.com/"]}] [{"policyName": "Terms of Use", "policyURL": "http://www.ymdb.ca/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.ymdb.ca/downloads"}] closed [] [] yes {} [] http://www.ymdb.ca/about [] yes yes [] [] {} 2018-07-04 2020-12-21 +r3d100012747 Gemma eng [{"additionalName": "Tools and database for meta-analysis of functional genomics data", "additionalNameLanguage": "eng"}] https://gemma.msl.ubc.ca/home.html ["FAIRsharing_doi:10.25504/FAIRsharing.t98nav", "OMICS_27257", "RRID:SCR_008007", "RRID:nif-0000-08127"] ["https://pavlidislab.github.io/Gemma/#contact", "pavlab-support@msl.ubc.ca."] Gemma is a database for the meta-analysis, re-use and sharing of genomics data, currently primarily targeted at the analysis of gene expression profiles. Gemma contains data from thousands of public studies, referencing thousands of published papers. Users can search, access and visualize co-expression and differential expression results. eng ["disciplinary"] {"size": "Over 10000 expression studies", "updatedp": "2020-12-21"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://pavlidislab.github.io/Gemma/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Geeq", "fly", "functional genomics", "gene expression", "gene expression experiment quality", "genomics", "human", "mouse", "rat", "worm", "zebrafish"] [{"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": ["ROR:01gavpb45", "RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genome British Columbia", "institutionAdditionalName": ["Genome BC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genomebc.ca/", "institutionIdentifier": ["ROR:03gne5057"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Government of Canada, Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Gouvernement du Canada, Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nserc-crsng.gc.ca/", "institutionIdentifier": ["ROR:01h531d29", "RRID:SCR_013327", "RRID:nlx_39429"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "INNOVATION.CA", "institutionAdditionalName": ["CFI", "Canada Foundation for Innovation", "Fondation Canadienne pour l'innovation"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.innovation.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kids Brain Health Network", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.neurodevnet.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Michael Smith Foundation for Health Research", "institutionAdditionalName": ["MSFHR"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.msfhr.org/", "institutionIdentifier": ["ROR:020x39229"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Health & Human Services, National Institutes of Health", "institutionAdditionalName": ["HHS, NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia, Pavlidis lab", "institutionAdditionalName": ["UBC, Pavlidis lab"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://pavlab.msl.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms And Conditions", "policyURL": "https://pavlidislab.github.io/Gemma/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://pavlidislab.github.io/Gemma/terms.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://pavlidislab.github.io/Gemma/terms.html#3-ownership-and-use-restriction"}] restricted [{"dataUploadLicenseName": "Uploading Data to the Gemma Website", "dataUploadLicenseURL": "https://pavlidislab.github.io/Gemma/terms.html#5-uploading-data-to-the-gemma-website"}] ["unknown"] yes {"api": "https://gemma.msl.ubc.ca/resources/restapidocs/", "apiType": "REST"} ["none"] https://pavlidislab.github.io/Gemma/ [] yes yes [] [] {"syndication": "https://gemma.msl.ubc.ca/rssfeed", "syndicationType": "RSS"} Gemma on GitHub: https://github.com/PavlidisLab/Gemma 2018-07-05 2021-06-16 +r3d100012752 BenchSCI eng [{"additionalName": "A.I. Driven Antibody Search", "additionalNameLanguage": "eng"}] https://www.benchsci.com/ ["FAIRsharing_doi:10.25504/fairsharing.fwg0qf", "OMICS_19629"] ["https://www.benchsci.com/contact", "mcook@benchsci.com"] BenchSci is a free platform designed to help biomedical research scientists quickly and easily identify validated antibodies from publications. Using various filters including techniques, tissue, cell lines, and more, scientists can find out published data along with the antibody that match specific experimental contexts within seconds. Free registration & access for academic research scientists. eng ["disciplinary"] {"size": "2.191.100 antibody usages, 3.415.146 images", "updatedp": "2018-08-13"} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.benchsci.com/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["antibody", "biological compounds", "cell ine", "clone ID", "disease", "gene", "machine learning", "protein", "reagent failure"] [{"institutionName": "BenchSCI", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.benchsci.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.benchsci.com/contact"]}] [{"policyName": "BenchSci Terms of Use", "policyURL": "https://www.benchsci.com/legal/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.benchsci.com/about"}] closed [] [] {} ["none"] https://blog.benchsci.com/reproducibility-in-science-how-proper-antibody-citation-can-make-a-difference [] unknown unknown [] [] {} Advisors, Investors & Incubators: https://www.benchsci.com/about/#advisors 2018-07-05 2021-09-10 +r3d100012753 Small Molecule Pathway Database eng [{"additionalName": "SMPDB", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: PathBank", "additionalNameLanguage": "eng"}] http://smpdb.ca/ ["FAIRsharing_doi:10.25504/fairsharing.y1zyaq", "MIR:00000104", "OMICS_02777", "RRID:SCR_004844", "RRID:nlx_143926"] ["https://smpdb.ca/contact"] The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram. eng ["disciplinary"] {"size": "Pathways 98.632", "updatedp": ""} 2009 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://smpdb.ca/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemoinformatics", "drug-action pathway", "metabolic disease pathway", "metabolic pathway", "metabolite signaling pathway", "metabolomics", "molecular biology", "proteomics", "systems biology", "transcriptomics"] [{"institutionName": "Alberta Innovates", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://albertainnovates.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/", "institutionIdentifier": ["RRID:SCR_012838", "RRID:nlx_45689"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Metabolomics Innovation Centre", "institutionAdditionalName": ["TMIC"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.metabolomicscentre.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": ["RRID:SCR_001853", "RRID:nlx_10148"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alberta, Departments of Computing Science and Biological Sciences, Wishart Research Group", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.wishartlab.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.wishartlab.com/contact"]}] [{"policyName": "What is SMPDB?", "policyURL": "http://smpdb.ca/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "http://smpdb.ca/about#citing"}] closed [] ["unknown"] yes {} ["none"] http://smpdb.ca/about#citing [] unknown unknown [] [] {} Each small molecule is hyperlinked to detailed descriptions contained in the Human Metabolome Database - HMDB or DrugBank and each protein_complex or enzyme complex is hyperlinked to UniProt. A pathway drawing tool called PathWhiz (http://smpdb.ca/pathwhiz) is available for public use. SMP-MAP can be used for multiple entity highlighting and mapping. 2018-07-05 2021-09-10 +r3d100012754 Health Canada Drug Product Database eng [{"additionalName": "BDPP", "additionalNameLanguage": "fra"}, {"additionalName": "Base de donn\u00e9es sur les produits pharmaceutiques", "additionalNameLanguage": "fra"}, {"additionalName": "DPD", "additionalNameLanguage": "eng"}, {"additionalName": "Drug Product Database", "additionalNameLanguage": "eng"}, {"additionalName": "HC DPD", "additionalNameLanguage": "eng"}] https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/drug-product-database.html ["FAIRsharing_doi:10.25504/fairsharing.tyyn81", "MIR:00100351"] ["https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/drug-product-database/contact-us.html"] The Health Canada Drug Product Database contains product specific information on drugs approved for use in Canada. The database is managed by Health Canada and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. It contains approximately 15,000 products which companies have notified Health Canada as being marketed. eng ["disciplinary"] {"size": "50.440 entries", "updatedp": "2018-08-16"} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/drug-product-database/more-info.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["animals", "biological drugs", "disinfectants", "humans", "product monograph - PM", "radiopharmaceutical drugs"] [{"institutionName": "Government of Canada", "institutionAdditionalName": ["Gouvernement du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Health Canada", "institutionAdditionalName": ["Sant\u00e9 Canada"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.hc-sc.gc.ca/", "institutionIdentifier": ["RRID:SCR_011274", "RRID:nlx_152114"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Government of Canada Treaties, laws and regulations", "policyURL": "https://www.canada.ca/en/government/system/laws.html"}, {"policyName": "Health Canada Terms and Conditions", "policyURL": "http://www.hc-sc.gc.ca/home-accueil/important-eng.php"}, {"policyName": "Notice of Compliance - Drug Products", "policyURL": "https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/notice-compliance.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.hc-sc.gc.ca/home-accueil/important-eng.php#a74"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] closed [] ["unknown"] {} ["other"] [] no yes [] [] {"syndication": "https://www.canada.ca/content/dam/hc-sc/migration/hc-sc/rss/dhp-mps/cesg-pcde-eng.xml", "syndicationType": "RSS"} A DIN (Drug Identification Number) lets the user know that the product has undergone and passed a review of its formulation, labeling and instructions for use. Drug Product Database (DPD) Data Extract - Health Canada: The data extract is a series of compressed UTF-8 text files of the database https://www.canada.ca/en/health-canada/services/drugs-health-products/drug-products/drug-product-database/what-data-extract-drug-product-database.html 2018-07-05 2018-08-18 +r3d100012755 BACTIBASE eng [{"additionalName": "a database dedicated to bacteriocins", "additionalNameLanguage": "eng"}] http://bactibase.hammamilab.org/main.php ["FAIRsharing_doi:10.25504/FAIRsharing.5f5mfm", "OMICS_05726", "RRID:SCR_006694", "RRID:nlx_54530"] ["http://bactibase.hammamilab.org/contacts.php", "ismail.fliss@fsaa.ulaval.ca"] BACTIBASE contains calculated or predicted physicochemical properties of bacteriocins produced by both Gram-positive and Gram-negative bacteria. The information in this database is very easy to extract and allows rapid prediction of relationships structure/function and target organisms of these peptides and therefore better exploitation of their biological activity in both the medical and food sectors. eng ["disciplinary"] {"size": "230 bacteriocins", "updatedp": "2018-18-13"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20505 Nutritional Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://bactibase.hammamilab.org/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bacterial antimicrobial peptides", "eubacteria", "microbiology", "peptide sequence", "physicochemistry"] [{"institutionName": "Natural Sciences and Engineering Research Council of Canada", "institutionAdditionalName": ["CRSNG", "Conseil de recherches en sciences naturelles et en g\u00e9nie du Canada", "NSERC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nserc-crsng.gc.ca/index_eng.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nserc-crsng.gc.ca/ContactUs-ContactezNous/ContactDirectory-RepertoiredeContact_eng.asp"]}, {"institutionName": "University of Ottawa, Faculty of Health Sciences, School of Nutrition Sciences, Dr. Riadh Hammami Laboratory", "institutionAdditionalName": ["Hammami Lab", "Universit\u00e9 d'Ottawa, Facult\u00e9 des sciences de la sant\u00e9, \u00c9cole des Sciences de la Nutrition, Laboratoire du Dr Riadh Hammami"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.hammamilab.org/research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.hammamilab.org/contact", "riadh.hammami@uottawa.ca"]}] [{"policyName": "Terms of use", "policyURL": "http://bactibase.hammamilab.org/terms.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://bactibase.hammamilab.org/terms.php"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] restricted [{"dataUploadLicenseName": "Submit a new bacteriome", "dataUploadLicenseURL": "http://bactibase.hammamilab.org/submit_sequence.php"}] ["MySQL"] {} [] [] unknown unknown [] [] {"syndication": "http://bactibase.hammamilab.org/news.php", "syndicationType": "RSS"} 2018-07-05 2019-11-25 +r3d100012756 The Chemical Probes Portal eng [] https://new.chemicalprobes.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.yrkkbt"] ["amy.donner@chemprobes.org", "contact@chemprobes.org"] The Chemical Probes Portal is an online open access catalog of annotated small molecule inhibitors, agonists and other chemical tools for biological research and preclinical drug discovery. Annotations for are extensive and distinguish between activity in cells and model organisms. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-06-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://new.chemicalprobes.org/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biochemical studies", "biomedical research", "chemical biology", "drug discovery", "medicinal chemistry", "pharmacology", "protein interactions"] [{"institutionName": "Institute of Cancer Research", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icr.ac.uk/", "institutionIdentifier": ["ROR:043jzw605"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Structural Genomics Consortium", "institutionAdditionalName": ["SGC"], "institutionCountry": "GBR", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": ["ROR:04jzps455"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of North Carolina, Eshelman School of Pharmacy", "institutionAdditionalName": ["UNC"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://pharmacy.unc.edu/", "institutionIdentifier": ["VIAF:125901203", "Wikidata:Q7865226"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://new.chemicalprobes.org/disclaimer"}, {"policyName": "Submit probes", "policyURL": "https://www.chemicalprobes.org/submit-probes"}, {"policyName": "The Chemical Probes Portal SAB Conflict of Interest Policy", "policyURL": "https://www.chemicalprobes.org/chemical-probes-portal-sab-conflict-interest-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}] [] {} ["other"] [] unknown yes [] [] {} SAB rating: Drawing from their experience and expertise, SAB members review the data in a probe's submission form as well as the publication reporting the probe and rate the probe for its use in cellular and/or in vivo model systems (e.g., mice). 2018-07-05 2021-09-29 +r3d100012757 RODARE eng [{"additionalName": "Rossendorf Data Repository", "additionalNameLanguage": "eng"}] https://rodare.hzdr.de [] ["https://rodare.hzdr.de/support", "rodare@hzdr.de"] Rodare is the institutional research data repository at HZDR (Helmholtz-Zentrum Dresden-Rossendorf). Rodare allows HZDR researchers to upload their research software and data and enrich those with metadata to make them findable, accessible, interoperable and retrievable (FAIR). By publishing all associated research software and data via Rodare research reproducibility can be improved. Uploads receive a Digital Object Identfier (DOI) and can be harvested via a OAI-PMH interface. eng ["institutional"] {"size": "102 items", "updatedp": "2020-08-26"} 2018-04-25 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://rodare.hzdr.de/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Helmholtz-Center Dresden-Rossendorf", "institutionAdditionalName": ["HZDR", "Helmholtz-Zentrum Dresden-Rossendorf"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hzdr.de", "institutionIdentifier": ["ROR:01zy2cs03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kontakt@hzdr.de"]}] [{"policyName": "Policies", "policyURL": "https://rodare.hzdr.de/about/policies/"}, {"policyName": "Terms of Use", "policyURL": "https://rodare.hzdr.de/about/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://rodare.hzdr.de/about/policies/"}] restricted [] ["other"] yes {"api": "https://rodare.hzdr.de/oai2d", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Rodare is based on the Invenio 3 library framework. 2018-07-06 2020-08-26 +r3d100012760 CEDAP Research Data Repository - research data eng [{"additionalName": "Centro de Documenta\u00e7\u00e3o e Acervo Digital da Pesquisa - Dados de Pesquisa", "additionalNameLanguage": "por"}] https://cedap.ufrgs.br/jspui/handle/2050011959/90 [] ["cedap@ufrgs.br", "cha@ufrgs.br"] The Centro de Documentação e Pesquisa Digital de Pesquisa (CEDAP) of the Universidade Federal do Rio Grande do Sul (UFRGS) aims to gather the scientific data used in research, classified as long syllable, in the various areas of knowledge. The Scientific Data Repository of Research of CEDAP aims to gather the scientific data used in the researches, with the provision of documentation, in order to provide an environment of study of methodologies of use and reuse of research data. Maintained in partnership with the Data Processing Center (CPD) of UFRGS for the development of policies, planning, management, description, evaluation, storage, dissemination and reuse of research data. Created in June 2017, the Research Data Repository meets the sharing needs in Brazil. eng ["institutional"] {"size": "", "updatedp": ""} 2017-07 ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ufrgs.br/cedap/projetos/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidade Federal do Rio Grande do Sul", "institutionAdditionalName": ["UFRGS"], "institutionCountry": "BRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.ufrgs.br", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [] ["DSpace"] {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-07-09 2018-07-22 +r3d100012761 The Book of Caverns in Theban Tomb 33: Arbeitsphotos eng [{"additionalName": "BOCA", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BOCA ["doi:10.17171/2-8"] ["edition@topoi.org", "http://www.topoi.org/person/werning-daniel-a/"] The collection contains computed images (ortho-photos), camera photos, and wall plans of the textual witness of the Egyptian Netherworld Book, "Book of Caverns", in the tomb of Petamenophis in the necropolis of Thebes in Egypt (TT 33). eng ["disciplinary"] {"size": "185 research objects", "updatedp": "2018-07-20"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Book of Caverns", "Egypt", "Egyptian", "Netherworld Book", "Petamenopohis", "TT 33", "Thebes", "tomb"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Edition | Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://edition-topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://edition-topoi.org/publishing_with_us/contact"]}, {"institutionName": "Excellence Cluster Topoi EXC 264", "institutionAdditionalName": ["Cluster of Excellence 264", "Topoi - The Formation and Transformation of Space and Knowledge in Ancient Civilizations"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut fran\u00e7ais d\u2019arch\u00e9ologie orientale - Le Caire", "institutionAdditionalName": ["IFAO", "Mission \u00c9pigraphique Fran\u00e7aise dans la Tombe de Padiam\u00e9nop\u00e9, Tombe th\u00e9baine n\u00b0 33 (TT 33)"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ifao.egnet.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://tombett33.hypotheses.org/"]}, {"institutionName": "Universit\u00e9 Paul Val\u00e9ry - Montpellier 3, ASM - Arch\u00e9ologie des Soci\u00e9t\u00e9s M\u00e9diterran\u00e9ennes, UMR5140", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univ-montp3.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://univ-montp3.academia.edu/Departments/ASM_Arch%C3%A9ologie"]}, {"institutionName": "Universit\u00e9 de Strasbourg, 7044 Archim\u00e8de", "institutionAdditionalName": ["UMR 7044"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://archimede.unistra.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}, {"policyName": "Metadata", "policyURL": "http://repository.edition-topoi.org/collection/BOCA/metadata"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/citeproc/citeproc.html?doi=10.17171/2-8-136 [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-07-12 2021-09-10 +r3d100012762 Roman Water Law eng [{"additionalName": "RMWR", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/RMWR ["doi:10.17171/1-10"] ["https://www.topoi.org/person/moeller-cosima/"] Database of ancient sources concerning Roman Water Law. Specific legal sources, e.g. from the Corpus Iuris Civilis or the Codex Theodosianus, and literary sources, for example from Cicero, Frontinus, Hyginus, Siculus Flaccus or Vitruvius, were collected to give an overview of water related legal problems in ancient Rome. Furthermore, the aim of the database is to classify these sources into different legal topics, in order to facilitate the research for sources concerning specific questions regarding Roman Water Law. eng ["disciplinary"] {"size": "572 entries", "updatedp": "2018-07-18"} 2018-04-30 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/RMWR/metadata [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["Rome", "ancient history", "aqueduct", "archeology", "flumen", "geopraphy", "prohibition", "slavery", "written sources"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fu-berlin.de/sites/inu/research/clusters-alt/topoi/index.html", "https://www.topoi.org/person/schneider-gerwulf/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.topoi.org/person/grasshoff-gerd/"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://repository.edition-topoi.org/#by_type=collection;page=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["edition@topoi.org"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/RMWR"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://repository.edition-topoi.org/collection/RMWR/overview"}] closed [] [] {} ["DOI"] http://repository.edition-topoi.org/collection/RMWR ["none"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Excellence Cluster Topoi EXC 264 2018-07-12 2021-10-25 +r3d100012763 OpenStreetMap eng [{"additionalName": "OSM", "additionalNameLanguage": "eng"}, {"additionalName": "Planet.osm", "additionalNameLanguage": "eng"}] https://planet.openstreetmap.org/ [] ["data@openstreetmap.org"] OpenStreetMap (https://www.openstreetmap.org/export#map=6/51.324/10.426) is built by a community of mappers that contribute and maintain data about roads, trails, cafés, railway stations, and much more, all over the world. Planet.osm is the OpenStreetMap data in one file. eng ["disciplinary"] {"size": "over 940 GB uncompressed", "updatedp": "2018-07-01"} 2006 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://wiki.openstreetmap.org/wiki/Planet.osm [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["crowdsourcing", "geodata", "topography", "vector", "vgi"] [{"institutionName": "Bytemark", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.bytemark.co.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Imperial College London", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imperial.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "OpenStreetMap Foundation", "institutionAdditionalName": ["OSMF"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wiki.osmfoundation.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data@osmfoundation.org."]}, {"institutionName": "University College London, The Bartlett", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/bartlett/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://wiki.openstreetmap.org/wiki/Acceptable_Use_Policy"}, {"policyName": "Copyright and License", "policyURL": "https://www.openstreetmap.org/copyright/en"}, {"policyName": "OpenStreetMap Foundation Licence", "policyURL": "https://wiki.osmfoundation.org/wiki/Licence"}, {"policyName": "OpenStreetMap Foundation Policies and other Documents", "policyURL": "https://wiki.osmfoundation.org/wiki/Policies_and_other_Documents"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.openstreetmap.org/copyright"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://www.opendatacommons.org/licenses/odbl/"}] restricted [] ["other"] yes {"api": "https://wiki.openstreetmap.org/wiki/API_v0.6", "apiType": "REST"} ["none"] https://www.openstreetmap.org/copyright [] no unknown [] [] {} OpenStreetMap (OSM) is a collaborative project to create a free editable map of the world. organisations support OpenStreetMap: https://hardware.openstreetmap.org/thanks/ Planet.osm mirrors: https://wiki.openstreetmap.org/wiki/Planet.osm#Planet.osm_mirrors OpenStreetMap datasets: https://archive.org/details/osmdata http://openstreetmapdata.com/data There are also files called Extracts which contain OpenStreetMap Data for individual continents, countries, and metropolitan areas: BBBike https://download.bbbike.org/osm/, Geofabrik http://download.geofabrik.de/ 2018-07-18 2021-08-25 +r3d100012765 Ecosounds eng [{"additionalName": "Queensland University of Technology", "additionalNameLanguage": "eng"}] https://www.ecosounds.org/ [] ["https://www.ecosounds.org/contact_us"] Ecosounds is a repository of environmental audio recordings. This website facilitates the management, access, visualization, and analysis of environmental acoustic data. It uses the Acoustic Workbench software which is open source and available from GitHub. The website is run by the QUT Ecoacoustics Research Group to support bioacoustics and ecoacoustics research. eng ["disciplinary"] {"size": "135 projects; 523.750 audio recordings", "updatedp": "2018-07-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20102 Biophysics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ecosounds.org/ethics_statement [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["Australia", "acoustic indices", "acoustic sampling", "anvironmental acoustic monitoring", "bioacoustics", "biodiversity monitoring", "ecoacoustics", "environmental science", "species monitoring"] [{"institutionName": "Queensland University of Technology, QUT Ecoacoustics Research Group", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.qut.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["p.roe@qut.edu.au"]}] [{"policyName": "Ethics statement", "policyURL": "https://www.ecosounds.org/ethics_statement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://research.ecosounds.org/"}] restricted [] [] {} [] [] unknown unknown [] [] {} 2018-07-25 2018-07-29 +r3d100012766 NetSlim eng [] http://www.netpath.org/netslim/ ["OMICS_21069"] ["help@ibioinformatics.org"] NetSlim is a resource of high-confidence signaling pathway maps derived from NetPath pathway reactions. 40-60% of the molecules and their reactions in NetPath pathways are available in NetSlim. eng ["disciplinary"] {"size": "10 immune signaling and 10 cancer signaling pathways", "updatedp": "2018-08-01"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.netpath.org/netslim/faq.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "biology", "gene expression", "gene ontology", "protein-protein interaction", "signal transduction", "signaling maps"] [{"institutionName": "Institute of Bioinformatics", "institutionAdditionalName": ["IOB"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ibioinformatics.org/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@ibioinformatics.org"]}, {"institutionName": "Johns Hopkins University, Pandey Lab", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://pandeylab.igm.jhmi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://pandeylab.igm.jhmi.edu/contact.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.5/"}] restricted [] ["unknown"] {"api": "https://www.wikipathways.org/index.php/Help:WikiPathways_Sparql_queries", "apiType": "SPARQL"} ["none"] http://www.netpath.org/netslim/index.html ["none"] unknown unknown [] [] {} NetPath: https://www.re3data.org/repository/r3d100012558 2018-07-25 2021-08-25 +r3d100012768 Wissenschaftliche Sammlungen deu [{"additionalName": "Wissenschaftliche Sammlungen in Deutschland und ihre Digitalisierung", "additionalNameLanguage": "eng"}] https://portal.wissenschaftliche-sammlungen.de/ [] ["kontakt@wissenschaftliche-sammlungen.de", "support@wissenschaftliche-sammlungen.de"] The portal "Wissenschaftliche Sammlungen" is a project of the Coordination Office for Academic University Collections in Germany in cooperation with the Academic University and University Collections. Together we create a platform that makes information on scientific collections, activities and actors as well as metadata and digitised objects visible, searchable and scientifically usable via a web portal. The data will be freely and openly accessible via technical interfaces in standard formats and fed into national reference systems such as the German Digital Library. eng ["other"] {"size": "1019 collections from 87 universities", "updatedp": "2017-07-01"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://wissenschaftliche-sammlungen.de/index.php?cID=861 [{"name": "Databases", "scheme": "parse"}] ["serviceProvider"] ["Germany", "archaeology", "arts", "cultural history", "engineering", "history", "medicine", "natural history", "natural sciences", "nature studies", "scientific collections"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["information@bmbf.bund.de"]}, {"institutionName": "Hermann von Helmholtz-Zentrum f\u00fcr Kulturtechnik , Koordinierungsstelle f\u00fcr wissenschaftliche Universit\u00e4tssammlungen in Deutschland", "institutionAdditionalName": ["Coordination Centre for Scientific University Collections in Germany"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wissenschaftliche-sammlungen.de/de/", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["https://wissenschaftliche-sammlungen.de/en/uber-uns/contact/"]}] [{"policyName": "Empfehlungen zum Umgang mit wissenschaftlichen Sammlungen an Universit\u00e4ten", "policyURL": "https://wissenschaftliche-sammlungen.de/files/6614/8767/2151/Empfehlungen_Web.pdf"}, {"policyName": "Recommendations on Scientific Collections as Research Infrastructures (2011)", "policyURL": "https://wissenschaftliche-sammlungen.de/files/3613/7112/8178/WR_Empfehlungen_en.pdf"}, {"policyName": "Universit\u00e4tssammlungen und Urheberrecht", "policyURL": "https://wissenschaftliche-sammlungen.de/files/3515/1749/2647/HR_Leitfaden-Universitaetssammlungen-und-Urheberrecht_201802.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://portal.wissenschaftliche-sammlungen.de/info"}] restricted [] ["unknown"] {"api": "https://portal.wissenschaftliche-sammlungen.de/info", "apiType": "other"} ["none"] ["none"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-07-27 2018-08-01 +r3d100012769 Catalogues des données CDSP fra [{"additionalName": "Catalogues Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Catalogues des donn\u00e9es - Centre de donn\u00e9es socio-politiques", "additionalNameLanguage": "fra"}] https://catalogues.cdsp.sciences-po.fr/ [] ["info.cdsp@sciencespo.fr"] The aim of the CDSP is to provide quantitative data for research and teaching: Questionnaire surveys, databases produced by researchers and the results of political elections. Since 2010, the CDSP has been preserving, documenting and disseminating qualitative surveys in the social sciences. eng ["disciplinary"] {"size": "11 Dataverses; 223 datasets; 5 files", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR"] [{"institutionName": "Sciences Po, Centre de donn\u00e9es socio-politiques", "institutionAdditionalName": ["CDSP"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cdsp.sciences-po.fr/fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info.cdsp@sciences-po.fr"]}] [{"policyName": "Commander des donn\u00e9es", "policyURL": "https://cdsp.sciences-po.fr/fr/commander-des-donnees/"}, {"policyName": "Conditions g\u00e9n\u00e9rales d'utilisation", "policyURL": "https://cdsp.sciences-po.fr/fr/conditions-generales-dutilisation/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "http://opendatacommons.org/licenses/odbl/1.0/"}] restricted [{"dataUploadLicenseName": "D\u00e9poser des donn\u00e9es", "dataUploadLicenseURL": "https://cdsp.sciences-po.fr/fr/deposer-des-donnees/"}] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["ISNI"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2018-07-27 2019-03-05 +r3d100012770 CIRAD Dataverse eng [{"additionalName": "Donn\u00e9es de recherche du CIRAD", "additionalNameLanguage": "fra"}] https://dataverse.cirad.fr/ [] ["dataverse@cirad.fr"] The range of CIRAD's research has given rise to numerous datasets and databases associating various types of data: primary (collected), secondary (analysed, aggregated, used for scientific articles, etc), qualitative and quantitative. These "collections" of research data are used for comparisons, to study processes and analyse change. They include: genetics and genomics data, data generated by trials and measurements (using laboratory instruments), data generated by modelling (interpolations, predictive models), long-term observation data (remote sensing, observatories, etc), data from surveys, cohorts, interviews with players. eng ["institutional"] {"size": "52 Dataverses, 246 Datasets", "updatedp": "2021-09-20"} 2018-01-31 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://revelecist.cirad.fr/dataverse/guide [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["arts and humanities", "earth sciences", "environment", "health", "mathematical sciences", "medicine", "territorial management"] [{"institutionName": "CIRAD", "institutionAdditionalName": ["Centre de coop\u00e9ration internationale en recherche agronomique pour le d\u00e9veloppement", "French Agricultural Research Centre for International Development"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cirad.fr/", "institutionIdentifier": ["RRID:SCR_011153", "RRID:nlx_158285"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CIRAD research data", "policyURL": "https://www.cirad.fr/en/publications-resources/cirad-data"}, {"policyName": "Guide Dataverse Cirad", "policyURL": "https://collaboratif.cirad.fr/alfresco/s/d/workspace/SpacesStore/ffde1744-04a6-4f10-ad9f-dea4259c1398/2017-12-DataverseAdministrerCiradv51.pdf"}, {"policyName": "G\u00e9rer les donn\u00e9es de la recherche", "policyURL": "https://coop-ist.cirad.fr/gerer-des-donnees"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-07-27 2021-09-20 +r3d100012771 CIFOR Harvested Dataverse eng [{"additionalName": "Center for International Forestry Research Harvested Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/cifor_harvested [] ["cifor-rdm-support@cgiar.org"] The Center for International Forestry Research (CIFOR) envisions a more equitable world where forestry and landscapes enhance the environment and well-being for all. The Center for International Forestry Research (CIFOR) is committed to advancing human well-being, equity and environmental integrity by conducting innovative research, developing partners’ capacity and actively engaging in dialogue with all stakeholders to inform policies and practices that affect forests and people. eng ["disciplinary", "institutional"] {"size": "106 datasets; 1.220 files;", "updatedp": "2019-03-04"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["SWAMP", "agriculture", "forestry"] [{"institutionName": "Center for International Forestry Research", "institutionAdditionalName": ["CIFOR"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cifor.org/", "institutionIdentifier": [], "responsibilityStartDate": "1993", "responsibilityEndDate": "", "institutionContact": ["https://www.cifor.org/about-cifor/contact-us/"]}] [{"policyName": "CIFOR Research Data Management Guidelines and Procedures", "policyURL": "http://www.cifor.org/fileadmin/downloads/CIFOR_RDM_Guidelines.pdf"}, {"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Dataverse guides", "policyURL": "http://guides.dataverse.org/en/4.11/user/"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.cifor.org/fileadmin/downloads/CIFOR_RDM_Guidelines.pdf"}] restricted [] ["DataVerse"] {"api": "http://guides.dataverse.org/en/4.11/api/sword.html", "apiType": "SWORD"} ["DOI"] http://guides.dataverse.org/en/4.11/user/find-use-data.html#cite-data [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} CIFOR Dataverse is covered by Clarivate Data Citation Index: https://data.cifor.org/ 2018-07-27 2021-09-10 +r3d100012773 DataSpace@HKUST eng [] https://dataspace.ust.hk/ [] ["lbds@ust.hk"] Created and managed by the Library, DataSpace@HKUST is the data repository and workspace service for HKUST research community. Faculty members and research postgraduate students can use the platform to store, share, organize, preserve and publish research data. It is built on Dataverse, an open source web application developed at Harvard’s Institute for Quantitative Social Science. Using Dataverse architecture, the repository hosts multiple "dataverses". Each dataverse contains datasets; while each dataset may contain multiple data files and the corresponding descriptive metadata. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://dataspace.ust.hk/ds/service/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Hong Kong University of Science and Technology", "institutionAdditionalName": [], "institutionCountry": "HKG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ust.hk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hong Kong University of Science and Technology Library", "institutionAdditionalName": [], "institutionCountry": "HKG", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.ust.hk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User guide", "policyURL": "http://guides.dataverse.org/en/latest/user/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/"}] restricted [] ["DataVerse"] yes {} ["DOI"] [] yes yes [] [] {} 2018-07-27 2019-08-01 +r3d100012775 Fudan University Social Science Data Repository eng [{"additionalName": "\u590d\u65e6\u5927\u5b66\u793e\u4f1a\u79d1\u5b66 Dataverse", "additionalNameLanguage": "zho"}] https://dvn.fudan.edu.cn/dataverse.xhtml [] ["dvn@fudan.edu.cn", "https://dvn.fudan.edu.cn/dataverse.xhtml"] Open for Fudan University affiliated researchers to deposit data. zho ["institutional"] {"size": "148 dataverses; 639 datasets; 2.441 files", "updatedp": "2018-10-26"} 2012 ["zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://dvn.fudan.edu.cn/home/static/profile.jsp [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Chinese population", "Earth and Environmental Sciences", "World Bank", "Yangtze River", "surveys", "urbanization"] [{"institutionName": "Fudan University", "institutionAdditionalName": [], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fudan.edu.cn/2016/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["dvn@fudan.edu.cn"]}] [{"policyName": "Platform introduction", "policyURL": "https://dvn.fudan.edu.cn/home/static/relink.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["DataVerse"] yes {} ["hdl"] ["ORCID"] unknown unknown [] [] {} 2018-07-27 2018-10-28 +r3d100012777 RIN Data Repository eng [{"additionalName": "LIPI Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Lembaga Ilmu Pengetahuan Indonesia (LIPI) Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "RIN Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Repositori Ilmiah Nasional (RIN)", "additionalNameLanguage": "eng"}] https://rin.lipi.go.id [] ["rin@mail.lipi.go.id"] The Repositori Ilmiah Nasional (RIN) is a means for storing, preserving, citing, analyzing and sharing research data. RIN acts as an online media in managing, storing and sharing research data. Researchers, data writers, publishers, data distributors, and affiliated institutions all receive academic credit and web visibility. Researchers, agencies, and funders have full control over research data. eng ["other"] {"size": "319 Dataverses; 3.955 Datasets; 14.294 Files", "updatedp": "2020-01-14"} ["eng", "ind"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://rin.lipi.go.id/upload/KebijakanRIN.pdf [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Indonesia", "Java", "Sulawesi", "Sumatra", "conservation", "diversity", "multi-disciplinary", "new species", "taxonomy"] [{"institutionName": "Lembaga Ilmu Pengetahuan Indonesia, Pusat Data dan Dokumentasi Ilmiah", "institutionAdditionalName": ["Indonesian Institute of Sciences, Indonesian National Scientific Documentation Center", "LIPI, PDDI"], "institutionCountry": "IDN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://lipi.go.id/", "institutionIdentifier": ["ROR:03d7c1451"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Management Policy", "policyURL": "http://rin.lipi.go.id/upload/KebijakanRIN.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"dataLicenseName": "other", "dataLicenseURL": "http://rin.lipi.go.id/upload/KebijakanRIN.pdf"}] restricted [{"dataUploadLicenseName": "Dataverse Creation Form", "dataUploadLicenseURL": "http://bit.ly/FormDepositRIN"}, {"dataUploadLicenseName": "Management Policy", "dataUploadLicenseURL": "http://rin.lipi.go.id/upload/KebijakanRIN.pdf"}, {"dataUploadLicenseName": "Open Data Availability Form at the National Scientific Repository", "dataUploadLicenseURL": "http://rin.lipi.go.id/upload/Form_Kesediaan_Open_Data.docx"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/4.14/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "SDMX - Statistical Data and Metadata Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange"}] {} Regarding the security of systems and infrastructure: RIN is currently in the process of being submitted to obtain ISO 270001 on Information Security Management Systems. OAI-PMH API should be available, but URL not determinable. 2018-07-27 2020-01-25 +r3d100012778 Maine Dataverse Network eng [] http://dataverse.acg.maine.edu/dvn/ [] ["chris.wilson@maine.edu", "http://dataverse.acg.maine.edu/dvn/faces/ContactUsPage.xhtml"] The Maine Dataverse Network is a cloud-based data repository intended to act as a long-term archive and to facilitate data sharing among the research community in accordance with NSF, NIH, NASA and other granting authority data management plan requirements. The Maine Dataverse Network offers a convenient and secure method of sharing and archiving data and is made available to the Maine research community at no cost. eng ["institutional"] {"size": "78 dataverses; 83 studies; 1.152 files", "updatedp": "2020-03-12"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://acg.umaine.edu/maine-dataverse-network/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary", "supercomputing"] [{"institutionName": "University of Maine, Advanced Computing Group", "institutionAdditionalName": ["UMaine ACG"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://acg.umaine.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://acg.umaine.edu/acg/request-more-information/"]}] [{"policyName": "ACG Dataverse Guide", "policyURL": "http://acg.umaine.edu/wp-content/uploads/2014/05/DataverseGuide.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nsf.gov/pubs/policydocs/gc1/feb14.pdf"}] [] ["DataVerse"] yes {} [] http://best-practices.dataverse.org/data-citation/ [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2018-07-27 2020-03-15 +r3d100012783 MEROPS eng [] https://www.ebi.ac.uk/merops/ ["FAIRsharing_doi: 10.25504/FAIRsharing.2s4n8r", "OMICS_02685", "RRID:SCR_007777", "RRID:nif-0000-03112"] ["merops@ebi.ac.uk"] The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. eng ["disciplinary"] {"size": "more than 4.000 individual peptidases", "updatedp": "2018-07-30"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ebi.ac.uk/merops/about/merops.shtml [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["amino acid sequence", "biology", "biotechnology", "cell lines", "classification scheme", "genomics", "hydrolytic cleavage", "inhibitors", "nucleic acid sequence", "peptidase", "protease", "protein", "proteinase", "proteolytic enzyme", "proteolytic enzymes"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://wellcome.ac.uk/about-us/contact-us"]}, {"institutionName": "Wellcome Trust Sanger Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.sanger.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2012", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/copyleft/lgpl.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.gnu.org/copyleft/lgpl.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}] closed [] ["MySQL"] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/merops/current_release/", "apiType": "FTP"} ["other"] https://www.ebi.ac.uk/merops/about/citing.shtml [] yes yes [] [] {} In 1993 Neil D. Rawlings and Alan J. Barett introduced a new classification scheme, called MEROPS, which takes into account structural aspects and evolutionary relationships based on the amino acid sequence. Files to Download from MEROPS: https://www.ebi.ac.uk/merops/download_list.shtml 2018-07-30 2021-08-25 +r3d100012785 New York Brain Bank eng [{"additionalName": "NYBB", "additionalNameLanguage": "eng"}] http://www.nybb.hs.columbia.edu/index.htm ["RRID:SCR_007142", "RRID:nlx_43593"] ["http://nybb.hs.columbia.edu/staff.htm"] The New York Brain Bank (NYBB) at Columbia University was established to collect postmortem human brains to meet the needs of neuroscientists investigating specific psychiatric and neurological disorders. eng ["disciplinary"] {"size": "", "updatedp": ""} 2002 ["deu", "eng", "fra", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20605 Comparative Neurobiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.cumc.columbia.edu/dept/taub/res-investigation.html [{"name": "other", "scheme": "parse"}] ["dataProvider"] ["alzheimer disease", "central nervous system disorder", "histology", "huntington's disease", "neurological disorder", "neuropathology", "neuroscience", "parkinson's disease", "proteinopathy", "psychiatry", "tissue samples"] [{"institutionName": "Columbia University, Taub Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.cumc.columbia.edu/dept/taub/index.html", "institutionIdentifier": ["RRID:SCR_008802", "RRID:nlx_144343"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nybb@columbia.edu"]}, {"institutionName": "Hereditary Disease Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hdfoundation.org/", "institutionIdentifier": ["RRID:SCR_006088", "RRID:nlx_151560"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cures@hdfoundation.org"]}] [{"policyName": "Sample information sheet", "policyURL": "http://nybb.hs.columbia.edu/pdf/NYBB_time_record.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.nybb.hs.columbia.edu/pdf/NYBB_paperwork.pdf"}] closed [] ["unknown"] {} ["none"] http://www.nybb.hs.columbia.edu/pdf/NYBB_paperwork.pdf ["none"] unknown unknown [] [] {} 2018-08-01 2018-08-04 +r3d100012786 Language Archive Cologne eng [{"additionalName": "KA\u00b3 Language Archive Cologne", "additionalNameLanguage": "eng"}, {"additionalName": "LAC", "additionalNameLanguage": "eng"}] https://lac.uni-koeln.de [] ["https://lac.uni-koeln.de", "lac-helpdesk@uni-koeln.de", "lac-manager@uni-koeln.de"] The Language Archive Cologne (LAC) is a research data repository for the linguistics and all humanities disciplines working with audiovisual data. The archive forms a cluster of the Data Center for Humanities in cooperation with the Institute of Linguistics of the University of Cologne. The LAC is an archive for language resources, which is freely available via a web-based access. In addition, concrete technical and methodological advice is offered in the research data cycle - from the collection of the data, their preparation and archiving, to publication and reuse. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://lac.uni-koeln.de/docs/mission-statement.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["language research"] [{"institutionName": "CLARIN-D", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - D"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin-d.net/de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin-feedback@sfs.uni-tuebingen.de", "https://www.clarin-d.net/de/kontakt-impressum"]}, {"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cologne, Data Center for the Humanities", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dch.phil-fak.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["lac-manager@uni-koeln.de"]}] [{"policyName": "CLARIN Terms of Service", "policyURL": "https://lac.uni-koeln.de/docs/terms-of-use.html"}, {"policyName": "LAC Submission Guidelines", "policyURL": "https://lac.uni-koeln.de/docs/submission-guidelines.html"}, {"policyName": "LAC User Guide", "policyURL": "https://lac.uni-koeln.de/docs/user-guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://lac.uni-koeln.de/docs/data-user-agreement.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lac.uni-koeln.de/docs/depositor-agreement.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://lac.uni-koeln.de/docs/terms-of-use.html"}] restricted [{"dataUploadLicenseName": "CLARIN Deposition & License Agreement", "dataUploadLicenseURL": "https://lac.uni-koeln.de/docs/depositor-agreement.html"}] ["other"] {"api": "https://lac.uni-koeln.de/docs/archive-setup.html", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [] {} The metadata is publicly accessible via the CLARIN Virtual Language Observatory (VLO) https://vlo.clarin.eu/ 2018-08-01 2021-10-05 +r3d100012787 Gambling Research Exchange Dataverse eng [{"additionalName": "GREO", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/GREO [] ["dataset@greo.ca", "https://www.greo.ca/en/about-us/contact-us.aspx?_mid_=9492"] Gambling Research Exchange Ontario (GREO) is a knowledge translation and exchange organization that aims to eliminate harm from gambling. Our goal is to support evidence-informed decision making in responsible gambling policies, standards and practices. In line with this mandate, datasets curated in this archive relate to gambling and reducing gambling related harms. eng ["disciplinary"] {"size": "1 Dataverse; 25 datasets; 130 files", "updatedp": "2020-07-07"} 2014 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.greo.ca/en/about-us/mission-vision-and-values.aspx [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canadian Problem Gambling Index - CPGI", "gambling harms", "gambling involvement", "prevalence", "problem gambling"] [{"institutionName": "Gambling Research Exchange Ontario", "institutionAdditionalName": ["GREO"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.greo.ca/en/index.aspx", "institutionIdentifier": ["ROR:047mprv74"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["info@greo.ca"]}, {"institutionName": "Government of Ontario, Ministry of Health and Long-Term Care", "institutionAdditionalName": ["Gouvernement de l\u2019Ontario, Minist\u00e8re de la Sant\u00e9 et des Soins de longue dur\u00e9e", "MOHLTC", "MSSLD"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.health.gov.on.ca/en/", "institutionIdentifier": ["ROR:00tjpb250"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.health.gov.on.ca/en/common/"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": ["ROR:028215596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Scholars Portal Dataverse User Guides", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}, {"policyName": "Terms of Use", "policyURL": "http://www.greo.ca/en/greo-resource/resources/Documents/Policy_Dataset_Terms_of_Use_Agreement-Update-EC-2018.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.greo.ca/en/greo-resource/service-level-definition.aspx"}] restricted [{"dataUploadLicenseName": "Depositor Agreement", "dataUploadLicenseURL": "http://www.greo.ca/en/greo-resource/resources/Documents/Policy_Dataset_Depositor_Update_MAY2018.pdf"}] ["DataVerse"] yes {} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Gambling Research Exchange Ontario Dataverse is part of Scholars Portal Dataverse. GREO was formerly known as Ontario Problem Gambling Research Centre (OPGRC). 2018-08-01 2020-07-07 +r3d100012788 ArkDB eng [] http://www.thearkdb.org/arkdb/ ["OMICS_20036", "RRID:SCR_001838", "RRID:nif-0000-02568"] ["info@thearkdb.org"] ArkDB is a generic, species-independent database built to capture the state of published information on genome mapping in a given species. It stores details of references, markers and loci and genetic linkage and cytogenetic maps which can be drawn using the online map-drawing application. Data from linkage maps held within the ArkDB system can be drawn alongside their corresponding genome sequence maps (extracted from ENSEMBL). eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.thearkdb.org/arkdb/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "chat", "chicken", "cow", "deer", "duck", "farm animals", "genetics", "genomics", "horse", "pig", "quail", "salmon", "sea bass", "sequences", "sheep", "turkey"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BSSRC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["RRID:SCR_011118", "RRID:nlx_inv_1005015"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Edinburgh, The Roslin Institute", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/roslin", "institutionIdentifier": ["RRID:SCR_006533", "RRID:nlx_83761"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@thearkdb.org"]}] [{"policyName": "Legal information", "policyURL": "https://www.ed.ac.uk/about/website/privacy/legal-information"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.thearkdb.org/arkdb/privacy.jsp"}] restricted [] ["unknown"] {"api": "http://rest.ensembl.org/", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} ArkMAP is ArkDB's downloadable Map Drawing Application which can display maps retrieved from ArkDB and Ensembl. 2018-08-02 2018-08-08 +r3d100012789 Wiki-Pi eng [] http://severus.dbmi.pitt.edu/wiki-pi/ ["OMICS_02991"] ["http://severus.dbmi.pitt.edu/wiki-pi/index.php/contact", "madhavi@pitt.edu"] Wiki-Pi is a wiki resource centered on human protein-protein interactions. Wiki-Pi's intuitive search functionality allows you to retrieve and discover interactions effectively. eng ["institutional"] {"size": "5.306 interactions", "updatedp": "2018-08-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://severus.dbmi.pitt.edu/wiki-pi/index.php/about [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["cancer", "disease", "drug", "gene", "protein-protein interaction - PPI"] [{"institutionName": "University of Pittsburgh, Department of Biomedical Informatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dbmi.pitt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General Terms & Conditions and Instructions", "policyURL": "https://cfo.pitt.edu/pexpress/documents/terms.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0049029"}] closed [] ["MySQL"] {} ["none"] https://hagrid.dbmi.pitt.edu/wiki-pi/index.php/about [] unknown unknown [] [] {} The official released URL to the Wiki-Pi website is http://severus.dbmi.pitt.edu/wiki-pi/ . We recently moved our website to the new server hence it redirects to https://hagrid.dbmi.pitt.edu/wiki-pi 2018-08-03 2020-01-22 +r3d100012790 Future Network & Communication Repository eng [] http://prof.pusan.ac.kr/user/indexSub.action?codyMenuSeq=9872&siteId=uc [] [] >>>!!!<<< The repository is no longer available. >>>!!!<<< eng ["institutional"] {"size": "", "updatedp": ""} 2018 2021 ["eng", "kor"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://prof.pusan.ac.kr/user/indexSub.action?codyMenuSeq=9215&siteId=uc [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["5G technology", "SDN", "communication technology", "intelligent services", "network technology"] [{"institutionName": "Pusan National University", "institutionAdditionalName": ["Busan National University", "PNU"], "institutionCountry": "KOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.pusan.ac.kr/eng/Main.do", "institutionIdentifier": ["RRID:SCR_000277", "RRID:nlx_156774"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "data protection policy", "policyURL": "http://prof.pusan.ac.kr/new_pusan/index/privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://fnc.pusan.ac.kr"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {"syndication": "http://prof.pusan.ac.kr/rssList.jsp?siteId=uc&boardId=2635", "syndicationType": "RSS"} Description: The research data in the Future Network & Communication Laboratory. 2018-08-07 2021-10-05 +r3d100012791 SIDER eng [{"additionalName": "Side Effect Resource", "additionalNameLanguage": "eng"}] http://sideeffects.embl.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.zzaykv", "OMICS_04950", "RRID:SCR_004321", "RRID:nlx_33359"] [] SIDER contains information on marketed medicines and their recorded adverse drug reactions. The information is extracted from public documents and package inserts. The available information include side effect frequency, drug and side effect classifications as well as links to further information, for example drug–target relations. eng [] {"size": "Side effects: 5.868; drugs: 1.430; drug-SE pairs: 139.756", "updatedp": "2018-08-09"} 2010 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://sideeffects.embl.de/about/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["adverse drug reactions (ADRs)", "computational biology", "drug indications", "drug reactions", "health", "homo sapiens", "marketed medicines", "medicine", "therapeutic mechanism"] [{"institutionName": "European Molecular Biology Laboratory Heidelberg", "institutionAdditionalName": ["EMBL Heidelberg"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.embl.de/", "institutionIdentifier": ["RRID:SCR_004473", "RRID:nlx_46173"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bork@embl.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] closed [] ["unknown"] {"api": "ftp://xi.embl.de/SIDER/", "apiType": "FTP"} [] http://sideeffects.embl.de/about/ [] yes unknown [] [] {} Version: Sider 4.1 see also: https://github.com/dhimmel/SIDER4 For commercial use or customized versions, please contact biobyte solutions GmbH http://www.biobyte.de/index.html 2018-08-09 2021-11-09 +r3d100012793 Brock University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/brock [] ["libhelp@brocku.ca."] Brock University Dataverse, housed under the Ontario Council of University Libraries’ Scholars Portal Dataverse, is the central online repository for research data at Brock University. eng ["institutional"] {"size": "4 dataverses; 11 datasets; 45 files", "updatedp": "2018-08-14"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://brocku.ca/brock-news/2018/08/admin-team-co-ordinating-brocks-response-to-national-research-data-management-policy/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["business", "earth and environmental sciences", "management", "multidisciplinary"] [{"institutionName": "Brock University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://brocku.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.8.6/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Brock University Dataverse is part of Scholars Portal Dataverse 2018-08-10 2021-08-25 +r3d100012794 Carleton University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/carleton [] ["dataverse@library.carleton.ca"] The Carleton University Data Repository Dataverse is the research data repository for Carleton University. It is managed by the MacOdrum Library Systems Department in conjunction with Data Services. eng ["institutional"] {"size": "40 Datasets; 4 Dataverses", "updatedp": "2018-08-16"} 2015 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Carleton University, MacOdrum Library Systems Department", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.carleton.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@library.carleton.ca"]}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}] [{"policyName": "Data", "policyURL": "https://library.carleton.ca/find/data/available-data/online-data-repositories"}, {"policyName": "Dataverse", "policyURL": "https://library.carleton.ca/services/dataverse"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.carleton.ca/content/copyright-carleton"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://learn.scholarsportal.info/all-guides/dataverse/usingdata/ ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Carleton University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2018-08-29 +r3d100012795 Lakehead University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/lakehead [] ["dataverse@scholarsportal.info"] Lakehead University Dataverse is the central online repository for research data at Lakehead University. eng ["institutional"] {"size": "Dataverses (1); Datasets (2)", "updatedp": "2018-08-21"} 2016 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "earth sciences", "multidisciplinary", "statistics"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Lakehead University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lakeheadu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact", "https://ocul.on.ca/spstaff", "ocul@ocul.on.ca"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": ["Scholars Portal Research Data Platform"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Lakehead University store share and find", "policyURL": "https://libguides.lakeheadu.ca/c.php?g=613282&p=4276405"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.8.6/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Lakehead University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012796 Laurentian University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/laurentian [] [] Laurentian University Dataverse is an institutional research data repository for research data produced at Laurentian University. eng ["institutional"] {"size": "1 Dataverse, 3 Datasets", "updatedp": "2018-08-21"} 2016 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Labour Force Survey", "earth science", "ecology", "environmental science"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laurentian University", "institutionAdditionalName": ["Universit\u00e9 Laurentienne"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://laurentian.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.statcan.gc.ca/eng/reference/licence"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [] {} Laurentian University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012797 McMaster University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/mcmaster [] ["rdmgmt@mcmaster.ca"] The McMaster University Dataverse is a central location for research at McMaster University and a service of the Ontario Council of University Libraries. eng ["institutional"] {"size": "7 Dataverses, 22 Datasets", "updatedp": "2018-08-22"} 2016 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "McMaster University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mcmaster.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mcmaster.ca/opr/html/opr/contact_us/main/contact_us.html"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} McMaster University Dataverse is part of Scholars Portal Dataverse 2018-08-10 2019-03-05 +r3d100012800 Queen's University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/queens [] [] Queen's University Dataverse is the institutional open access research data repository for Queen's University, featuring Queen's University Biological Station (QUBS) which includes research related to ecology, evolution, resource management and conservation, GIS, climate data, and environmental science. eng ["institutional"] {"size": "9 Dataverses; 91 Datasets, 894 files", "updatedp": "2019-02-15"} 2013 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Queen's University Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.queensu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Research Data Management, Collection Development Policy", "policyURL": "https://library.queensu.ca/madgic/rdm/RDM-Collection-Policy-Nov2015.pdf"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {} ["DOI", "hdl"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [] {} Queen's University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012801 Ryerson University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/ryerson [] ["dataverse@scholarsportal.info"] A data repository for researchers affiliated with Ryerson University. This resource is part of the Scholar's Portal Dataverse which is a service provided by the Ontario Council of University Libraries. eng ["institutional"] {"size": "3 Dataverses; 7 Datasets; 85 files", "updatedp": "2019-02-15"} 2016 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact", "https://ocul.on.ca/spstaff", "ocul@ocul.on.ca"]}, {"institutionName": "Ryerson University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ryerson.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ryerson.ca/contact/student/"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": ["Scholars Portal Research Data Platform"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] open [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.8.6/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Ryerson University Dataverse is part of Scholars Portal Dataverse 2018-08-10 2019-03-05 +r3d100012803 University of Guelph Research Data Repository Dataverse eng [{"additionalName": "University of Guelph Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/ugrdr [] ["lib.research@uoguelph.ca"] The University of Guelph Library maintains two research data repositories to preserve and provide access to datasets and other research materials resulting from University of Guelph research projects. The Agri-environmental Research Data repository preserves and provides access to agricultural and environmental data. The University of Guelph Research Data Repository houses research data from all other disciplines. eng ["institutional"] {"size": "14 Dataverses; 35 Datasets; 1.114 files", "updatedp": "2019-02-15"} 2012 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10402 Individual Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "University of Guelph, Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lib.uoguelph.ca/get-assistance/maps-gis-data/research-data-management/preserving-sharing-data/preserving-your-data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lib.uoguelph.ca/get-assistance/maps-gis-data/book-appointments"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Guelph Research Data Repository Dataverse is part of the University of Guelph Dataverse at Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012805 University of Ottawa Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/ottawa [] ["dataverse@scholarsportal.info"] The University of Ottawa Dataverse is the research data repository for the faculty and scholars of University of Ottawa. eng ["institutional"] {"size": "8 Dataverses, 14 Datasets, 113 files", "updatedp": "2019-02-15"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "University of Ottawa, Library", "institutionAdditionalName": ["Universit\u00e9 d'Ottawa, Biblioth\u00e8que"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uottawa.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliolibrary@uOttawa.ca"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Ottawa Dataverse is part of Scholars Portal Dataverse 2018-08-10 2019-03-05 +r3d100012806 University of Toronto Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/toronto [] ["dylanne.dearborn@utoronto.ca"] The University of Toronto network of Dataverse includes the University of Toronto Mississuaga Library Dataverse, University of Toronto Scarborough Library Dataverse, and the Map & Data Library Dataverse. The Map & Data Library Dataverse contains both microdata and aggregated statistical tables. While much of this collection is openly available, some of these datasets are licensed and restricted for noncommercial use by the University of Toronto community. eng ["institutional"] {"size": "23 Dataverses; 483 Datasets; 6.933 files", "updatedp": "2019-02-15"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://onesearch.library.utoronto.ca/mission-statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Toronto, Libraries", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://onesearch.library.utoronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data Management Policy", "policyURL": "http://www.science.gc.ca/eic/site/063.nsf/eng/h_97610.html"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "Terms of Use", "policyURL": "https://mdl.library.utoronto.ca/citing-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://mdl.library.utoronto.ca/citing-data [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Toronto Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2021-07-28 +r3d100012807 University of Windsor Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/windsor [] ["https://dataverse.scholarsportal.info/dataverse/windsor"] The University of Windsor Dataverse is the institutional open access research data repository for the University of Windsor. eng ["institutional"] {"size": "2 Dataverses, 6 Datasets, 13 files", "updatedp": "2019-02-15"} 2017 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": ["dataverse@scholarsportal.info"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "University of Windsor", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uwindsor.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uwindsor.ca/contact"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Research Data Management at the University of Windsor", "policyURL": "http://leddy.uwindsor.ca/research-data-management-university-windsor"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Windso Dataverse is part of Scholars Portal Dataverse 2018-08-10 2019-03-05 +r3d100012808 University of Waterloo Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/waterloo [] ["https://dataverse.scholarsportal.info/dataverse/waterloo"] The University of Waterloo Database is the institutional open access research data repository for the University of Waterloo. eng ["institutional"] {"size": "31 Dataverses; 152 datasets; 1.614 files", "updatedp": "2020-12-17"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": ["ROR:028215596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}, {"institutionName": "University of Waterloo", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://uwaterloo.ca/", "institutionIdentifier": ["ROR:01aff2v68"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://uwaterloo.ca/about/how-find-us/contact-waterloo"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI", "hdl", "other"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Universityof Waterloo Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2020-12-17 +r3d100012809 Western University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/westernu [] ["rsclib@uwo.ca"] Western University Dataverse is Western University’s research data repository. eng ["institutional"] {"size": "5 Dataverses; 9 datasets; 53 files", "updatedp": "2019-02-15"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ethnic origins", "family", "federal elections", "fertility history", "religion", "survey"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/node/135", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Western University, Social Science Technology Services", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ssts.uwo.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ssts-help@uwo.ca"]}, {"institutionName": "Western University, Western Libraries", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lib.uwo.ca/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lib.uwo.ca/contact/index.html"]}] [{"policyName": "Research Data Management Policy", "policyURL": "http://www.science.gc.ca/eic/site/063.nsf/eng/h_97610.html"}, {"policyName": "Terms of Use", "policyURL": "http://www.science.gc.ca/eic/site/063.nsf/eng/h_97610.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.5/api/sword.html", "apiType": "SWORD"} ["hdl"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Western University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2021-07-28 +r3d100012810 Wilfrid Laurier University Dataverse eng [{"additionalName": "WLU Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/laurier [] ["msteeleworthy@wlu.ca"] The Wilfrid Laurier University Dataverse is a research data repository for our faculty, students, and staff. Files are held in a secure environment on Canadian servers. eng ["institutional"] {"size": "19 Dataverses; 86 datasets; 701 files", "updatedp": "2019-02-15"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "mulitdisciplinary"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Wilfrid Laurier University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wlu.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gashoughian@wlu.ca", "https://www.wlu.ca/news/news-releases/2017/march/laurier-works-with-ipsos-and-ontario-council-of-university-libraries-to-make-national-polling-data-freely-available.html"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Laurier Library Research data management", "policyURL": "https://library.wlu.ca/services/research-data-management"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Wilfrid Laurier University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012812 York University Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/york [] [] York University Libraries makes available Scholars Portal Dataverse for despositing data . Scholars Portal Dataverse is a an instance of Dataverse hosted by The Ontario Council of University Libraries, of which York University Libraries is a member. eng ["institutional"] {"size": "6 Dataverses;19 Datasets; 66 files", "updatedp": "2019-02-19"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.yorku.ca/web/open/overview/securedata/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["LibQUAL", "arts", "mental effort", "multidisciplinary", "survey", "twitter"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.iq.harvard.edu/contact-us"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/contact"]}, {"institutionName": "York University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.yorku.ca/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["researchdata@le.ac.uk"]}] [{"policyName": "Data storage, sharing, security, and preservation", "policyURL": "https://www.library.yorku.ca/web/open/overview/securedata/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "http://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.library.yorku.ca/web/open/overview/data-licensing/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "SWORD"} ["DOI", "hdl"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} York University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012813 Dalhousie University Dataverse @ Scholars Portal eng [] https://dataverse.scholarsportal.info/dataverse/dal [] ["data.management@dal.ca"] The Dalhousie University Dataverse is a research data repository for our faculty, students, and staff. Files are held in a secure environment on Canadian servers, hosted by Scholars Portal. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://dal.ca.libguides.com/rdm/repositories [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Canada", "multidisciplinary"] [{"institutionName": "Dalhousie University, Libraries", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://libraries.dal.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data.management@dal.ca"]}, {"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact", "support@dataverse.org"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Help & Support", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/help/"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "User guide", "policyURL": "https://dataverse.scholarsportal.info/guides/en/4.5/user/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/2.5/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"dataUploadLicenseName": "User Guide", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/4.7/api/sword.html", "apiType": "SWORD"} ["DOI"] https://dataverse.scholarsportal.info/guides/en/4.8.6/user/find-use-data.html#cite-data ["ORCID"] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Dalhousie University Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2020-10-22 +r3d100012814 University of Alberta Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/ualberta ["doi:10.5683/sp3", "doi:10.7939/dvn"] ["https://www.library.ualberta.ca/research-support/data-management"] University of Alberta Dataverse is a service provided by the University of Albert Library to help researchers publish, analyze, distribute, and preserve data and datasets. Open for University of Alberta-affiliated researchers to deposit data. eng ["institutional"] {"size": "523 datasets; 12.716 files", "updatedp": "2021-11-19"} 2014-04 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.library.ualberta.ca/about-us/vision/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": ["RRID:SCR_001997", "RRID:nif-0000-00316"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca/", "institutionIdentifier": ["ROR:028215596"], "responsibilityStartDate": "2021-11-01", "responsibilityEndDate": "", "institutionContact": ["https://ocul.on.ca/spstaff"]}, {"institutionName": "University of Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ualberta.ca/", "institutionIdentifier": ["ROR:0160cpw27", "grid.17089.37"], "responsibilityStartDate": "2014-04", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alberta Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.ualberta.ca/", "institutionIdentifier": [], "responsibilityStartDate": "2014-04", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Scholars Portal Dataverse Account Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}, {"policyName": "Tri-Agency Statement of Principles on Digital Data Management", "policyURL": "https://science.gc.ca/eic/site/063.nsf/eng/h_83F7624E.html?OpenDocument"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/sword.html", "apiType": "SWORD"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ISNI", "ORCID", "ResearcherID", "other"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} University of Alberta Dataverse is part of Scholars Portal Dataverse. As such, it is included in Harvard Dataverse, FRDR-DFDR Discovery Service, and Clarivate Data Citation Index. 2018-08-10 2021-12-08 +r3d100012815 UNB Libraries Dataverse eng [{"additionalName": "University of New Brunswick Libraries Dataverse Research Data Repository", "additionalNameLanguage": "eng"}] https://dataverse.lib.unb.ca/ [] ["https://lib.unb.ca/help/ask.php"] UNB Dataverse is repository for research data collected by researchers and organizations primarily affiliated with the University of New Brunswick. The repository allows researchers to deposit, share, analyze, cite, and explore data. Dataverse is an open source application developed by the Institute for Quantitative Social Science (IQSS) at Harvard University. eng ["institutional"] {"size": "6 Dataverses; 9 Datasets; 89 files", "updatedp": "2019-02-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.lib.unb.ca/rdm/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["business", "cadastral maps", "chemistry", "earth", "environment", "management", "multidisciplinary", "survey"] [{"institutionName": "Harvard University, Institute for Quantitative Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "University of New Brunswick, Libaries", "institutionAdditionalName": ["UNB Libraries"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lib.unb.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rdm.services@unb.ca"]}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Storing and Sharing your data", "policyURL": "https://www.lib.unb.ca/rdm/sharing-data.php"}, {"policyName": "User Guide", "policyURL": "http://guides.dataverse.org/en/4.10.1/user/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://geonb.snb.ca/documents/license/geonb-odl_en.pdf"}] open [{"dataUploadLicenseName": "User Guide", "dataUploadLicenseURL": "http://guides.dataverse.org/en/4.10.1/user/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/4.7/api/index.html", "apiType": "SWORD"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} UNB Libraries Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012816 University of Manitoba Dataverse eng [{"additionalName": "University of Manitoba Libraries Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.lib.umanitoba.ca/ [] ["Dataverse@umanitoba.ca"] UM Dataverse is part of the Dataverse Project conceived of by Harvard University. It is an open source repository to assist researchers in the creation, management and dissemination of their research data. UM Dataverse allows for the creation of multiple collaborative environments containing datasets, metadata and digital objects. UM Dataverse provides formal scholarly data citations and can help with data requirements from publishers and funders. eng ["institutional"] {"size": "15 Dataverses; 32 Datasets; 61 files", "updatedp": "2019-02-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://libguides.lib.umanitoba.ca/facultyhelp/dataverse [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["engineering", "history", "library buildings", "signboards", "signs", "solar"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "University of Manitoba, Libraries", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://umanitoba.ca/libraries/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of Access", "policyURL": "http://www.umanitoba.ca/libraries/services/conditions_of_access.html"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "User Submission Data Usage License Agreement", "dataUploadLicenseURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] ["DataVerse"] {"api": "http://guides.dataverse.org/en/4.7/api/index.html", "apiType": "SWORD"} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Manitoba Dataverse is part of Scholars Portal Dataverse. 2018-08-10 2019-03-05 +r3d100012818 Spectrum Research Repository eng [] https://spectrum.library.concordia.ca/ [] [] Spectrum, Concordia University's open access research repository, provides access to and preserves research created at Concordia. By depositing in Spectrum, Concordia scholars provide free and immediate access to their work and thus increase the visibility of both their own research and their university's intellectual output. Open access leads to the increased research profile and impact of scholars by bringing about greater levels of readership and citation of their publications. eng ["institutional"] {"size": "17 datasets", "updatedp": "2020-02-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://spectrum.library.concordia.ca/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["art", "british", "crime", "decision-making", "intertemporal choice", "middle ages", "painters", "politics", "reinforcement", "research diary", "sanctuary"] [{"institutionName": "Concordia University, Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.concordia.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Concordia University Research Repository Non-Exclusive Licence", "policyURL": "https://spectrum.library.concordia.ca/SpectrumLicense.pdf"}, {"policyName": "Guidelines", "policyURL": "https://spectrum.library.concordia.ca/policies.html"}, {"policyName": "Senate Resolution on Open Access", "policyURL": "http://library.concordia.ca/research/openaccess/SenateResolutiononOpenAccess.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "http://www.concordia.ca/web/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://spectrum.library.concordia.ca/"}] restricted [] ["unknown"] {"api": "https://spectrum.library.concordia.ca/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown unknown [] [] {"syndication": "https://spectrum.library.concordia.ca/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} Spectrum Research Repository is covered by Clarivate Data Citation Index. 2018-08-10 2020-02-17 +r3d100012820 Progenetix eng [] https://www.progenetix.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.65tdnz", "MIR:00000600", "OMICS_02591"] ["cancer genome data @ progenetix.org", "michael.baudis@imls.uzh.ch"] The Progenetix database provides an overview of copy number abnormalities in human cancer from currently 32548 array and chromosomal Comparative Genomic Hybridization (CGH) experiments, as well as Whole Genome or Whole Exome Sequencing (WGS, WES) studies. The cancer profile data in Progenetix was curated from 1031 articles and represents 366 different cancer types, according to the International classification of Diseases in Oncology (ICD-O). eng ["disciplinary"] {"size": "32.548 array and chromosomal Comparative Genomic Hybridization (CGH) experiments as well as Whole Genome or Whole Exome Sequencing (WGS, WES) studies; 366 different cancer types; from 1.031 articles", "updatedp": "2019-02-19"} 2001 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA sequences", "Diffuse Intrinsic Pontine Glioma (DIPG)", "Skin Cancer Genomics (CNHL)", "abnormalities", "bioinformatics", "cancer genome", "chromosomal aberration", "computational genomics", "gene expression data", "genomics", "homo sapiens", "malignancies"] [{"institutionName": "University of Zurich, Institute of Molecular Life Sciences", "institutionAdditionalName": ["UZH, IMLS", "Universit\u00e4t Z\u00fcrich, Institut f\u00fcr Molekulare Biologie"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.imls.uzh.ch/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imls.uzh.ch/en/research/baudis/"]}] [{"policyName": "Licensing", "policyURL": "https://info.progenetix.org/citation.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] ["unknown"] yes {"api": "https://info.progenetix.org/howto/2018/07/20/api-examples.html", "apiType": "other"} [] httsp://info.progenetix.org/citation/index.html [] yes unknown [] [] {} 2018-08-13 2019-02-19 +r3d100012822 ConsensusPathDB eng [{"additionalName": "CPDB", "additionalNameLanguage": "eng"}] http://cpdb.molgen.mpg.de/CPDB ["OMICS_01903", "RRID:SCR_002231"] ["kamburov@molgen.mpg.de"] ConsensusPathDB integrates interaction networks in humans (and in the model organisms - yeast and mouse) including binary and complex protein-protein, genetic, metabolic, signaling, gene regulatory and drug-target interactions, as well as biochemical pathways. Data originate from public resources for interactions and interactions curated from the literature. The interaction data are integrated in a complementary manner to avoid redundancies. eng ["disciplinary"] {"size": "unique physical entities: 172.559; unique interactions: 660.318; pathways: 5.436", "updatedp": "2019-02-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://cpdb.molgen.mpg.de/CPDB [{"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Homo sapiens", "Mus musculus", "Saccharomyces cerevisiae", "interaction database"] [{"institutionName": "Max Planck Institute for Molecular Genetics", "institutionAdditionalName": ["MPIMG", "Max-Planck-Institut f\u00fcr molekulare Genetik"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.molgen.mpg.de/2168/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.molgen.mpg.de/150183/Kontakt"]}] [{"policyName": "Licensing Information", "policyURL": "http://cpdb.molgen.mpg.de/MCPDB/tutorial#moreinfo.lic"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://cpdb.molgen.mpg.de/MCPDB/tutorial#moreinfo.lic"}] closed [] [] yes {"api": "http://cpdb.molgen.mpg.de/MCPDB", "apiType": "SOAP"} [] [] yes yes [] [] {} 2018-08-22 2019-02-22 +r3d100012823 Vivli eng [{"additionalName": "A global clinical research data sharing platform", "additionalNameLanguage": "eng"}] https://vivli.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.uovQrT", "OMICS_18399", "RRID:SCR_018080"] ["contact@vivli.org", "https://vivli.org/contact/"] Vivli is a non-profit organization working to advance human health through the insights and discoveries gained by sharing and analyzing data. It is home to an independent global data-sharing and analytics platform which serves all elements of the international research community. The platform includes a data repository, in-depth search engine and cloud-based analytics, and harmonizes governance, policy and processes to make sharing data easier. Vivli acts as a neutral broker between data contributor and data user and the wider data sharing community. eng ["disciplinary"] {"size": "6.200 clinical trials", "updatedp": "2021-10-11"} 2018-07-19 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://vivli.org/about/overview/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["clinical trial", "clinical trials", "data discovery methods", "health care", "individual participant-level data (IPD)", "medical treatments", "patients", "studies"] [{"institutionName": "Arnold Ventures", "institutionAdditionalName": ["formerly: Laura and John Arnold Foundation"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arnoldventures.org/", "institutionIdentifier": ["ROR:04hqxh742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.arnoldventures.org/contact"]}, {"institutionName": "Doris Duke Charitable Foundation", "institutionAdditionalName": ["DDCF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ddcf.org/", "institutionIdentifier": ["ROR:04n65rp89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmsley Charitable Trust", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://helmsleytrust.org/", "institutionIdentifier": ["ROR:011x6n313"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["grants@helmsleytrust.org", "https://helmsleytrust.org/contact/"]}, {"institutionName": "Lyda Hill Foundation", "institutionAdditionalName": ["LHF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://lydahillfoundation.org/", "institutionIdentifier": ["ROR:032sf2845"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Multi-Regional Clinical Trials", "institutionAdditionalName": ["MRCT Center"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://mrctcenter.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mrctcenter.org/contact-mrct/", "mrct@bwh.harvard.edu"]}, {"institutionName": "PhRMA", "institutionAdditionalName": ["Pharmaceutical Research and Manufacturers of America"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.phrma.org/", "institutionIdentifier": ["ROR:01z88k350"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.phrma.org/contact-us"]}] [{"policyName": "Additional policies", "policyURL": "https://vivli.org/vivli-eea-disclosure/#personaldata"}, {"policyName": "Data use agreement", "policyURL": "https://vivli.org/vivliwp/wp-content/uploads/2018/07/Vivli-Data-Use-Agreement-v1.1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://vivli.org/vivliwp/wp-content/uploads/2018/07/Vivli-Data-Use-Agreement-v1.1.pdf"}] open [{"dataUploadLicenseName": "How to share data", "dataUploadLicenseURL": "https://vivli.org/about/share-data/"}] ["unknown"] {} ["DOI"] https://vivli.org/vivliwp/wp-content/uploads/2018/07/Vivli-Data-Use-Agreement-v1.1.pdf [] unknown unknown [] [] {} Vivli is covered by Clarivate Data Citation Index. Vivli members: https://vivli.org/members/ourmembers/ . --- Vivli — adapted from the Greek “vivliothiki,” (library) and the Latin root “viv,” (life). 2018-08-22 2021-10-11 +r3d100012824 Repositorio de datos del Ministerio de Educación del Perú spa [{"additionalName": "Repository of Open Data of the Ministry of Education", "additionalNameLanguage": "eng"}] http://datos.minedu.gob.pe/ [] ["repositorio@minedu.gob.pe"] The Repositorio de datos del Ministerio de Educación del Perú provides the scientific community with a series of data sets for its reuse. The MINEDU Data Repository is integrated into the Digital National Repository of Science, Technology and Innovation of Open Access - ALICIA (http://alicia.concytec.gob.pe) managed and administrated by CONCYTEC. spa ["institutional"] {"size": "", "updatedp": ""} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://datos.minedu.gob.pe/acerca-de [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Peru Ministry of Education", "government data"] [{"institutionName": "CONCYTEC", "institutionAdditionalName": ["Consejo nacional de ciencia, tecnologia e innovacion tecnologica", "National Council for Science, Technology and Technological Innovation"], "institutionCountry": "PER", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://portal.concytec.gob.pe/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["comunicacion@concytec.gob.pe"]}] [{"policyName": "DIRECTRICES PARA EL PROCESAMIENTO DE INFORMACI\u00d3N EN LOS REPOSITORIOS INSTITUCIONALES", "policyURL": "http://portal.concytec.gob.pe/images/documentos/alicia/directrices_repositorio.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}] restricted [] [] {} [] [] unknown unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {} 2018-08-23 2019-02-22 +r3d100012825 Forschungsdaten-Repositorium der LUH deu [{"additionalName": "Research Data Repository", "additionalNameLanguage": "eng"}] https://data.uni-hannover.de [] ["forschungsdaten@uni-hannover.de", "ticket@fdm.uni-hannover.de"] Researcher of the Leibniz Universität Hannover can publish and archive research related data in this repository. eng ["institutional"] {"size": "14 datasets", "updatedp": "2019-02-22"} 2018-08-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.uni-hannover.de/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidsciplinary"] [{"institutionName": "Gottfried Wilhelm Leibniz Universit\u00e4t Hannover", "institutionAdditionalName": ["Leibniz Universit\u00e4t Hannover"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-hannover.de/de/impressum/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for handling research data at Leibniz University Hannover", "policyURL": "https://www.uni-hannover.de/en/universitaet/profil/objectives-policies/guidelines-for-handling-research-data-at-leibniz-universitaet-hannover/"}, {"policyName": "LUIS terms of usage", "policyURL": "https://www.luis.uni-hannover.de/regelungen.html"}, {"policyName": "Open Definition", "policyURL": "https://opendefinition.org/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://data.uni-hannover.de/legal"}] restricted [] ["CKAN"] yes {"api": "http://docs.ckan.org/en/2.7/api/#", "apiType": "REST"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-08-23 2019-02-22 +r3d100012827 BEI Resource eng [{"additionalName": "BEI Resource Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Biodefense & Emerging Infections Research Resources Repository", "additionalNameLanguage": "eng"}, {"additionalName": "supporting infectious disease research", "additionalNameLanguage": "eng"}] https://www.beiresources.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.gcxmpf", "OMICS_08731", "RRID:SCR_013698"] ["contact@beiresources.org", "https://www.beiresources.org/ContactUs.aspx"] BEI Resources was established by the National Institute of Allergy and Infectious Diseases (NIAID) to provide reagents, tools and information for studying Category A, B, and C priority pathogens, emerging infectious disease agents, non-pathogenic microbes and other microbiological materials of relevance to the research community. BEI Resources acquires authenticates, and produces reagents that scientists need to carry out basic research and develop improved diagnostic tests, vaccines, and therapies. By centralizing these functions within BEI Resources, access to and use of these materials in the scientific community is monitored and quality control of the reagents is assured eng ["disciplinary"] {"size": "", "updatedp": ""} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.beiresources.org/About/BEIResources.aspx [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Malaria", "Tuberculosis", "antiviral research", "bacteria", "infections disease", "microorganisms", "organisms", "reagents", "vectors"] [{"institutionName": "American Type Culture Collection", "institutionAdditionalName": ["ATCC"], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.lgcstandards-atcc.org/", "institutionIdentifier": ["ROR:03thhhv76", "RRID:SCR_001672", "RRID:nif-0000-10159"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.lgcstandards-atcc.org/en/Support/LGC_Contact_Us.aspx"]}, {"institutionName": "National Institute of Health, National Institute of Allergy and Infectious Diseases", "institutionAdditionalName": ["NIH, NIAID"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niaid.nih.gov/", "institutionIdentifier": ["ROR:043z4tv69", "RRID:SCR_012740", "RRID:nlx_inv_1005100"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.niaid.nih.gov/global/contact-us"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.beiresources.org/TermsofUse.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.beiresources.org/AccessibilityPolicy.aspx"}] restricted [{"dataUploadLicenseName": "Deposit Information", "dataUploadLicenseURL": "https://www.beiresources.org/Deposits/DepositInformation.aspx"}] ["unknown"] {} ["none"] https://www.beiresources.org/KBDetail.aspx?QuestionId=176 ["none"] unknown unknown [] [] {} 2018-08-27 2020-12-08 +r3d100012828 BioSample eng [{"additionalName": "BioSample at the NCBI", "additionalNameLanguage": "eng"}] https://www.ncbi.nlm.nih.gov/biosample/ ["FAIRsharing_doi:10.25504/FAIRsharing.qr6pqk", "OMICS_01024", "RRID:SCR_004854", "RRID:nlx_143929"] ["biosamplehelp@ncbi.nlm.nih.gov"] The BioSample database contains descriptions of biological source materials used in experimental assays. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/home/about/mission/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["cell line", "genotype", "phenotype"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Policies", "policyURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] ["unknown"] yes {"api": "https://ftp.ncbi.nlm.nih.gov/biosample/", "apiType": "FTP"} [] https://www.ncbi.nlm.nih.gov/biosample/docs/submission/faq/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-08-27 2020-05-15 +r3d100012832 Community Coordinated Modeling Center eng [{"additionalName": "CCMC", "additionalNameLanguage": "eng"}] https://ccmc.gsfc.nasa.gov/ [] ["gsfc-ccmc-support@lists.hq.nasa.gov", "https://ccmc.gsfc.nasa.gov/ComQues/submitFeedback.php", "https://ccmc.gsfc.nasa.gov/staff/index.php"] The Community Coordinated Modeling Center (CCMC) is a multi-agency partnership based at the NASA Goddard Space Flight Center in Greenbelt, Maryland and a component of the National Space Weather Program. The CCMC provides, to the international research community, access to modern space science simulations. In addition, the CCMC supports the transition to space weather operations of modern space research models. eng [] {"size": "over 20.000 model run results", "updatedp": "2019-12-20"} 1998 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ccmc.gsfc.nasa.gov/CONOPS_final.pdf [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["heliosphere", "ionosphere", "magnetosphere", "solar", "space science", "space weather", "thermosphere"] [{"institutionName": "Air Force Materiel Command", "institutionAdditionalName": ["AFMC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.afmc.af.mil/", "institutionIdentifier": ["VIAF:305307839"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Air Force Research Laboratory", "institutionAdditionalName": ["AFRL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.afrl.hpc.mil", "institutionIdentifier": ["ROR:02e2egq70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Air Force Weather Agency", "institutionAdditionalName": ["557th Weather Wing"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": ["VIAF:155116235"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Administration, Space Weather Prediction Center", "institutionAdditionalName": ["NOAA SEC", "Space Environment Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.swpc.noaa.gov/", "institutionIdentifier": ["VIAF:149320869"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Office of Naval Research", "institutionAdditionalName": ["ONR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.onr.navy.mil/", "institutionIdentifier": ["ROR:00rk2pe57", "RRID:SCR_004366", "RRID:nlx_144142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Air Force, Office of Scientific Research", "institutionAdditionalName": ["AFOSR\u200f \u200e"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wpafb.af.mil/afrl/afosr/", "institutionIdentifier": ["VIAF:154163999"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Air Force, Space and Missile Systems Center", "institutionAdditionalName": ["USAF SMC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.losangeles.af.mil/", "institutionIdentifier": ["VIAF:122915039"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CCMC Publications Policy", "policyURL": "https://ccmc.gsfc.nasa.gov/PubPolicy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ccmc.gsfc.nasa.gov/CONOPS_final.pdf"}] restricted [{"dataUploadLicenseName": "Data Input", "dataUploadLicenseURL": "https://ccmc.gsfc.nasa.gov/CONOPS_final.pdf"}, {"dataUploadLicenseName": "Rules of the Road", "dataUploadLicenseURL": "https://ccmc.gsfc.nasa.gov/submissions/CCMC_Rules.doc"}] [] yes {} ["none"] https://ccmc.gsfc.nasa.gov/PubPolicy.php ["none"] unknown yes [] [{"metadataStandardName": "SPASE Data Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model"}] {} The two APIs present are rather for research to operations (DONKI, iSWA) rather than for main model run results, FTP access is possible upon request. 2018-08-27 2021-06-21 +r3d100012834 Deep Carbon Observatory Data Portal eng [{"additionalName": "DCO Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "DCO-VIVO", "additionalNameLanguage": "eng"}] https://info.deepcarbon.net/vivo/ ["biodbcore-001654"] ["web@deepcarbon.net"] The Deep Carbon Observatory (DCO) is a global community of multi-disciplinary scientists unlocking the inner secrets of Earth through investigations into life, energy, and the fundamentally unique chemistry of carbon. Deep Carbon Observatory Digital Object Registry (“DCO-VIVO”) is a centrally-managed digital object identification, object registration and metadata management service for the DCO. Digital object registration includes DCO-ID generation based on the global Handle System infrastructure and metadata collection using VIVO. Users will be able to deposit their data into the DCO Data Repository and have that data discoverable and accessible by others. eng ["disciplinary"] {"size": "223 datasets", "updatedp": "2020-12-04"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "310 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "31001 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://deepcarbon.net/index.php/data-portal [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["abiogenic", "astrobiology", "biogeochemistry", "carbon at high pressures", "carbon cycling", "carbonates", "deep biospheres", "deep energy", "earth and planetary science", "earth sciences", "eeep life", "extreme environments", "extreme physics and chemistry", "fluid-Rock interactions", "geodynamics", "mantle magmas and volatiles", "microbiology", "mineral physics", "petrology", "reservoirs and fluxes", "volcanology"] [{"institutionName": "Alfred P. Sloan Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://sloan.org/", "institutionIdentifier": ["ROR:052csg198", "VIAF:159077464"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://sloan.org/about/contact"]}, {"institutionName": "Deep Carbon Observatory", "institutionAdditionalName": ["DCO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://deepcarbon.net/index.php/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://deepcarbon.net/about/contact-dco"]}] [{"policyName": "DCO Open Access and Data Policies", "policyURL": "https://deepcarbon.net/page/dco-open-access-and-data-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/deed.en"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "DCO Open Access and Data Policies", "dataUploadLicenseURL": "https://deepcarbon.net/page/dco-open-access-and-data-policies"}] ["CKAN", "other"] yes {"api": "https://docs.ckan.org/en/2.8/api/index.html", "apiType": "other"} ["DOI", "hdl"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Task Force 2020 is exploring ways to keep this burgeoning field of deep carbon science going beyond the culmination of the DCO in 2019 after ten years. 2018-08-27 2021-11-17 +r3d100012835 Seamount Catalog eng [{"additionalName": "SC", "additionalNameLanguage": "eng"}] https://earthref.org/SC/ ["biodbcore-001612"] ["webdb@sdsc.edu", "webmaster@earthref.org"] The Seamount Catalog is a digital archive for bathymetric seamount maps from all the oceans that can be viewed and downloaded in various formats. This catalog contains morphological data, sample information, related grid and multibeam data files, as well as user-contributed files that all can be downloaded. eng ["disciplinary"] {"size": "more than 1.800 seamounts", "updatedp": "2020-12-04"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://earthref.org/SBN/goals.philosophy.htm [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["bathymetry", "ocean bottom", "sea mount", "seafloor topography", "submarine geology"] [{"institutionName": "EarthRef, Seamount Biogeosciences Network", "institutionAdditionalName": ["SBN"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://earthref.org/SBN/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://earthref.org/SBN/contact.htm"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oregon State University, College of Earth, Ocean, and Atmospheric Sciences", "institutionAdditionalName": ["OSU-CEOAS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ceoas.oregonstate.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ceoas.oregonstate.edu/contact/"]}, {"institutionName": "UC San Diego, Scripps Institution of Oceanography", "institutionAdditionalName": ["UCSD-SIO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://sio.ucsd.edu/", "institutionIdentifier": ["ROR:04v7hvq31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://scripps.ucsd.edu/about/contact-us"]}] [{"policyName": "EarthRef Copyright Policy", "policyURL": "https://earthref.org/information/disclaimer.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {} [] [] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-08-27 2021-11-17 +r3d100012836 EyeGENE eng [{"additionalName": "The National Ophthalmic Genotyping and Phenotyping Network", "additionalNameLanguage": "eng"}] https://eyegene.nih.gov/ ["FAIRsharing_doi.:10.25504/FAIRsharing.5nnxqn", "OMICS_05773", "RRID:SCR_004523", "RRID:nif-0000-00229"] ["eyegeneinfo@nei.nih.gov"] The eyeGENE® Research Resource is open for approved research studies. Application details here Researchers and clinicians are actively developing gene-based therapies to treat ophthalmic genetic diseases that were once considered untreatable. eng ["disciplinary"] {"size": "", "updatedp": ""} 2006 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20611 Clinical Neurosciences III - Ophthalmology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://eyegene.nih.gov/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DNA samples", "cataracts", "clinical trial", "corneal dystrophies", "data informatics", "genetics", "genotypes", "glaucoma", "health care", "medicine", "ocular disease", "pathways to treatments", "phenotypes", "retinal degenerations", "strabismus"] [{"institutionName": "National Institutes of Health, National Eye Institute", "institutionAdditionalName": ["NIH, NEI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://nei.nih.gov/", "institutionIdentifier": ["ROR:03wkg3b53", "RRID:SCR_011411", "RRID:nlx_inv_1005096"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nei.nih.gov/contact-us"]}] [{"policyName": "Material Transfer Agreement For Access to Biomaterials and /or Data", "policyURL": "https://eyegene.nih.gov/sites/eyegene.cit.nih.gov.nei/files/inline-files/Master-eyeGENE-Stage-2-Master-MTA-v2-clean.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://eyegene.nih.gov/sites/eyegene.cit.nih.gov.nei/files/inline-files/Master-eyeGENE-Stage-2-Master-MTA-v2-clean.pdf"}] restricted [] ["unknown"] {} ["other"] ["none"] no unknown [] [] {} BRICS - Biomedical Research Informatics Computing System is a dynamic, expanding, and easily reproducible informatics ecosystem developed to create secure, centralized biomedical databases to support research efforts to accelerate scientific discovery, by aggregating and sharing data using Web-based clinical report form generators and a data dictionary of Clinical Data Elements. BRICS has been used so far to support multiple neurobiological studies, including the National Ophthalmic Disease Genotyping and Phenotyping Network (eyeGENE). 2018-08-27 2020-12-08 +r3d100012837 Federal Interagency Traumatic Brain Injury Research Informatics System eng [{"additionalName": "FITBIR", "additionalNameLanguage": "eng"}] https://fitbir.nih.gov/ ["FAIRsharing_doi:10.25504/fairsharing.rz7h29", "RRID:SCR_006856", "RRID:nlx_151755"] ["FITBIR-ops@mail.nih.gov", "https://fitbir.nih.gov/content/contact-us"] The Federal Interagency Traumatic Brain Injury Research (FITBIR) informatics system was developed to share data across the entire TBI research field and to facilitate collaboration between laboratories, as well as interconnectivity with other informatics platforms. Sharing data, methodologies, and associated tools, rather than summaries or interpretations of this information, can accelerate research progress by allowing re-analysis of data, as well as re-aggregation, integration, and rigorous comparison with other data, tools, and methods. This community-wide sharing requires common data definitions and standards, as well as comprehensive and coherent informatics approaches. eng ["disciplinary"] {"size": "63.496 Subjects; 128 Studies", "updatedp": "2020-08-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20608 Clinical Neurosciences I - Neurology, Neurosurgery", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://fitbir.nih.gov/content/about [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Traumatic brain injury - TBI"] [{"institutionName": "General Dynamics Information Technology", "institutionAdditionalName": ["GDIT"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.gdit.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, Center for Information Technology", "institutionAdditionalName": ["CIT"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://cit.nih.gov", "institutionIdentifier": ["ROR:03jh5a977"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Matthew.McAuliffe@nih.gov"]}, {"institutionName": "National Institutes of Health, National Institute of Neurological Disorders & Stroke", "institutionAdditionalName": ["NINDS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ninds.nih.gov", "institutionIdentifier": ["ROR:01s5ya894"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["patrick.frostbellgowan@nih.gov"]}, {"institutionName": "Publicis Sapient", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.publicissapient.com/", "institutionIdentifier": ["Wikidata:Q1602881"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Army Medical Research and Development Command, Combat Casuality Care Research Program", "institutionAdditionalName": ["CCCRP", "MCMR-RTC", "USAMRDC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ccc.amedd.army.mil", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/08/The-Federal-Interagency-Traumatic-Brain-Injury-Research-FITBIR-Informatics-System.pdf"}, {"policyName": "FITBIR policies", "policyURL": "https://fitbir.nih.gov/content/policies-and-procedures"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://fitbir.nih.gov/content/policies-and-procedures"}] restricted [{"dataUploadLicenseName": "FITBIR Data Submission Request", "dataUploadLicenseURL": "https://fitbir.nih.gov/sites/default/files/inline-files/FITBIR_Submission_Request.pdf"}] [] no {} ["DOI", "other"] https://fitbir.nih.gov/sites/default/files/inline-files/FITBIR_Data_Access_Request_DUC.pdf ["ORCID"] yes yes ["other"] [] {} 2018-08-27 2020-12-04 +r3d100012840 Laboratory of Neuroimaging Image & Data Archive eng [{"additionalName": "IDA", "additionalNameLanguage": "eng"}, {"additionalName": "LONI Image & Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Laboratory of Neuroimaging Database", "additionalNameLanguage": "eng"}] https://ida.loni.usc.edu/login.jsp ["FAIRsharing_doi:10.25504/FAIRsharing.r4ph5f", "OMICS_13882", "RRID:SCR_001922", "RRID:nif-0000-10494"] ["http://loni.usc.edu/about_loni/contact_us", "ida@loni.usc.edu"] LONI’s Image and Data Archive (IDA) is a secure data archiving system. The IDA uses a robust infrastructure to provide researchers with a flexible and simple interface for de-identifying, searching, retrieving, converting, and disseminating their biomedical data. With thousands of investigators across the globe and more than 21 million data downloads to data, the IDA guarantees reliability with a fault-tolerant network comprising multiple switches, routers, and Internet connections to prevent system failure. eng ["disciplinary"] {"size": "Data on 43.185 subjects from 118 studies", "updatedp": "2018-10-226"} 2002 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ida.loni.usc.edu/services/Menu/About.jsp?project= [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["aging", "brain", "cerebral metabolism", "clinical research studies", "clinical trials", "human health", "neuroimaging", "neuromedicine", "neurosciences"] [{"institutionName": "Alzheimer's Disease Neuroimaging Initiative", "institutionAdditionalName": ["ADNI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://adni.loni.usc.edu/", "institutionIdentifier": ["ROR:01j20wc74", "RRID:SCR_003007", "RRID:ScrRes_000144", "RRID:nif-0000-00516"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://adni.loni.usc.edu/about/contact-us/"]}, {"institutionName": "Michael J. Fox Foundation for Parkinson's Research, Parkinson's Progression Markers Initiative", "institutionAdditionalName": ["PPMI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ppmi-info.org/", "institutionIdentifier": ["RRID:SCR_006183"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ppmi-info.org/contact-us/"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "University of Southern California, Keck School of Medicine, USC Mark and Mary Stevens Neuroimaging and Informatics Institute, Laboratory of Neuro Imaging", "institutionAdditionalName": ["LONI", "USC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://loni.usc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://loni.usc.edu/about_loni/contact_us"]}] [{"policyName": "LONI Policies & Procedures", "policyURL": "https://loni.usc.edu/docs/resources/LONI_Policy.pdf"}, {"policyName": "Terms of use", "policyURL": "http://loni.usc.edu/loni/termsofuse"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://loni.usc.edu/loni/licenseagreement"}] restricted [] ["other"] yes {} ["ARK"] ["AuthorClaim"] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-08-27 2020-12-04 +r3d100012841 New Mexico Bureau of Geology & Mineral Resources Data Repository eng [] https://geoinfo.nmt.edu/repository/ ["biodbcore-001596"] ["NMBG-webmaster@nmt.edu"] Archiving data and housing geological collections is an important role the Bureau of Geology plays in improving our understanding of the geology of New Mexico. Aside from our numerous publications, several datasets are available to the public. Data in this repository supplements published papers in our publications. Please refer to both the published material and the repository documentation before using this data. Please cite repository data as shown in each repository listing. eng ["disciplinary"] {"size": "20 items", "updatedp": "2018-08-12"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://geoinfo.nmt.edu/repository/help.cfml [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["State of New Mexico", "geological survey", "hydrogeology", "minerals", "mining", "topography"] [{"institutionName": "New Mexico Institute of Mining and Technology", "institutionAdditionalName": ["NM Tech", "NMT", "New Mexico Tech"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://nmt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://nmt.edu/contact.php"]}, {"institutionName": "New Mexico Institute of Mining and Technology, New Mexico Bureau of Geology & Mineral Resources", "institutionAdditionalName": ["New Mexico Tech, New Mexico Bureau of Geology & Mineral Resources", "formerly: New Mexico Tech, New Mexico Bureau of Mines & Mineral Resources"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://geoinfo.nmt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Notice of Right to Inspect Public Records", "policyURL": "https://geoinfo.nmt.edu/about/publicrecords.html"}, {"policyName": "Terms of Use", "policyURL": "https://geoinfo.nmt.edu/about/termsofuse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://geoinfo.nmt.edu/publications/about/copyright.html"}] restricted [] ["unknown"] {} ["none"] https://geoinfo.nmt.edu/repository/ [] unknown unknown [] [] {} see also Archives & Collections: https://geoinfo.nmt.edu/libraries/home.html 2018-08-27 2021-11-16 +r3d100012842 NeuroVault eng [] https://neurovault.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.rm14bx"] [] A place where researchers can publicly store and share unthresholded statistical maps, parcellations, and atlases produced by MRI and PET studies. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://doi.org/10.3389/fninf.2015.00008 [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MNI", "OpenNeuro", "biomedical science", "brain imaging", "fMRI", "functional magnetic resonanz imaging", "gene", "neuroimaging studies"] [{"institutionName": "Gesellschaft f\u00fcr wissenschaftliche DatenverarbeitungmbH G\u00f6ttingen", "institutionAdditionalName": ["GWDG"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gwdg.de/home", "institutionIdentifier": ["ROR:00cd95c65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Neuroinformatics Coordinating Facility", "institutionAdditionalName": ["INCF"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.incf.org/", "institutionIdentifier": ["ROR:02y5xjh56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute for Human Cognitive and Brain Sciences", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Kognitions- und Neurowissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cbs.mpg.de/en", "institutionIdentifier": ["ROR:0387jng26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@cbs.mpg.de"]}, {"institutionName": "Nudge-it", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nudge-it.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": ["ROR:00f54p054"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "What license is the data distributed under", "policyURL": "https://neurovault.org/FAQ"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] [] {"api": "https://neurovault.org/api-docs", "apiType": "REST"} ["other"] https://neurovault.org/cite [] yes unknown [] [] {} is covered by Elsevier. GitHub:https://github.com/NeuroVault 2018-08-28 2021-09-09 +r3d100012845 NIDDK Information Network eng [{"additionalName": "National Institute of Diabetes and Digestive and Kidney Disease Information Network", "additionalNameLanguage": "eng"}, {"additionalName": "dkNET", "additionalNameLanguage": "eng"}] https://dknet.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.1mapgk", "RRID:SCR_001606", "RRID:nlx_153866"] ["info@dknet.org"] The NIDDK Information Network (dkNET) serves the needs of basic and clinical investigators by providing seamless access to large pools of data and research resources relevant to the mission of The National Institute of Diabetes Digestive and Kidney Diseases (NIDDK). eng ["disciplinary"] {"size": "857.342.699 results from 278 data sources", "updatedp": "2021-09-08"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://dknet.org/about/product_info [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["diabestes", "digestive disease", "endocrine disease", "kidney disease", "metabolic disease", "obesity", "urologic disease"] [{"institutionName": "National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases", "institutionAdditionalName": ["NIH, NIDDK"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.niddk.nih.gov/", "institutionIdentifier": ["ROR:00adh9b73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, San Diego", "institutionAdditionalName": ["UCSD"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ucsd.edu/", "institutionIdentifier": ["ROR:0168r3w48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://dknet.org/page/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] [] {} ["other"] [] unknown unknown [] [] {} alternate URL: https://scicrunch.org/dknet 2018-08-28 2021-09-10 +r3d100012849 Cardiovascular Research Grid eng [{"additionalName": "CVRG", "additionalNameLanguage": "eng"}] https://www.cvrgrid.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.x80z26", "OMICS_20739", "RRID:SCR_004472", "RRID:nlx_143758"] ["https://www.cvrgrid.org/contact.html", "sgranite@jhu.edu"] The CardioVascular Research Grid (CVRG) project is creating an infrastructure for secure seamless access to study data and analysis tools. CVRG tools are developed using the Software as a Service model, allowing users to access tools through their browser, thus eliminating the need to install and maintain complex software. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20526 Cardiothoracic Surgery", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://cvrgrid.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biomedical science", "coronary artery disease", "heart deseases", "homo sapiens", "modeling", "simulation", "sudden cardiac death"] [{"institutionName": "Emory University, Comprehensive Informatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.bmi.emory.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.emory.edu/home/contact-emory/index.html"]}, {"institutionName": "Johns Hopkins University, Institute for Computational Medicine", "institutionAdditionalName": ["ICM"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://icm.jhu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://icm.jhu.edu/about/contactvisit-us/"]}, {"institutionName": "Johns Hopkins University, National Heart Lung & Blood Institute", "institutionAdditionalName": ["NHLBI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nhlbi.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nhlbi.nih.gov/about/contact"]}, {"institutionName": "Stony Brook University, College of Engineering and Applied Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stonybrook.edu/ceas/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.stonybrook.edu/commcms/ceas/about/office-of-the-dean/contactinfo.php"]}, {"institutionName": "UNC Charlotte, College of Computing and Informatics", "institutionAdditionalName": ["CCI", "The University of North Carolina at Charlotte, College of Computing and Informatics"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cci.uncc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cci.uncc.edu/contact"]}, {"institutionName": "University of Chicago, Computation Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ci.uchicago.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ci.uchicago.edu/contact"]}, {"institutionName": "Vanderbilt University Medical Center, Department of Biomedical Informatics", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vumc.org/dbmi/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Waveform Terms of Use", "policyURL": "http://wiki.cvrgrid.org/index.php/CVRG_Waveform_Terms_of_Use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://cvrgrid.org/about"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://wiki.cvrgrid.org/index.php/CVRG_Waveform_Terms_of_Use"}] closed [] ["unknown"] {} ["none"] http://cvrgrid.org/about?q=citing-cvrg-tools ["none"] no unknown [] [] {} 2018-08-28 2021-06-21 +r3d100012850 Pfam Protein Families eng [{"additionalName": "Pfam", "additionalNameLanguage": "eng"}] http://pfam.xfam.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.y3scf6", "OMICS_01696", "RRID:SCR_004726"] ["pfam-help@ebi.ac.uk"] The Pfam database is a large collection of protein families, each represented by multiple sequence alignments and hidden Markov models (HMMs). eng ["disciplinary"] {"size": "18.259 entries", "updatedp": "2020-12-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["clans", "protein", "protein families", "protein sequence", "proteomes"] [{"institutionName": "European Molecular Biology Laboratory - European Bioinformatics Institute", "institutionAdditionalName": ["EMBL", "EMBL-EBI", "European Molecular Biology Laboratory"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52", "RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": ["Wellcome Trust Sanger Institute"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy statement", "policyURL": "http://pfam.xfam.org/help#tabview=tab14"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/"}] closed [] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/Pfam", "apiType": "FTP"} [] http://pfam.xfam.org/help?tab=helpReferencesBlock#tabview=tab7 [] unknown yes [] [] {"syndication": "https://xfam.wordpress.com/tag/pfam/feed/", "syndicationType": "RSS"} Pfam family annotations are now pulled from Wikipedia, so users can contribute to Pfam by creating and editing Wikipedia entries (http://pfam.xfam.org/help#tabview=tab8). Pfam is part of the ELIXIR infrastructure 2018-08-28 2020-12-15 +r3d100012851 Radiation Belt Storm Probes Ion Composition Experiment eng [{"additionalName": "RBSPICE", "additionalNameLanguage": "eng"}, {"additionalName": "Van Allen Probes Radiation Belt Storm Probes Ion Composition Experiment", "additionalNameLanguage": "eng"}] http://rbspice.ftecs.com/Data.html [] ["Manweiler@ftecs.com", "information@ftecs.com"] Originally named the Radiation Belt Storm Probes (RBSP), the mission was re-named the Van Allen Probes, following successful launch and commissioning. For simplicity and continuity, the RBSP short-form has been retained for existing documentation, file naming, and data product identification purposes. The RBSPICE investigation including the RBSPICE Instrument SOC maintains compliance with requirements levied in all applicable mission control documents. eng ["disciplinary", "institutional"] {"size": "17 TB of NASA Level 0 (Telemetry) through NASA Level 3 (Scientifically usable) Data", "updatedp": "2021-05-19"} 2012-10-30 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://rbspice.ftecs.com/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Van Allen Probes", "magnetosphere ring current instrument", "ring current", "space science", "space weather", "time of flight"] [{"institutionName": "Fundamental Technologies, LLC", "institutionAdditionalName": ["FTECS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://www.ftecs.com/", "institutionIdentifier": [], "responsibilityStartDate": "1997-08-18", "responsibilityEndDate": "", "institutionContact": ["Manweiler@ftecs.com"]}] [{"policyName": "RBSPICE Team Data Use Policies", "policyURL": "http://rbspice.ftecs.com/DataRulesofRoad.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://rbspice.ftecs.com/RBSPICE%20Data%20Handbook_Rev_e.pdf"}] closed [] ["other"] yes {"api": "http://rbspicea.ftecs.com", "apiType": "FTP"} ["none"] http://rbspice.ftecs.com/DataRulesofRoad.htm ["none"] unknown yes [] [{"metadataStandardName": "SPASE Data Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model"}] {} 2018-08-28 2021-05-19 +r3d100012857 Medienarchiv der Künste deu [] https://medienarchiv.zhdk.ch/ [] ["rolf.wolfensberger@zhdk.ch"] The Media Archive of the Arts is the platform for collaborative work, sharing and archiving of media at the ZHdK. It is available to students, lecturers and staff. The areas of application of the media archive are mainly focused on teaching and research, but the ZHdK departments archive and university communication also benefit. The media archive manages a wide range of visual and audiovisual content and supports collaborative forms of working. eng [] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.zhdk.ch/miz/archive-1387/madek/madek-aufgaben-und-strategie [german] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["art education", "dance", "design", "film", "fine arts", "music", "theatre"] [{"institutionName": "Z\u00fcrcher Hochschule der K\u00fcnste", "institutionAdditionalName": ["Zurich University of Arts"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zhdk.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hs.admin@zhdk.ch"]}] [{"policyName": "terms of use", "policyURL": "https://wiki.zhdk.ch/madek-hilfe/doku.php?id=terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wiki.zhdk.ch/madek-hilfe/doku.php?id=terms"}, {"dataLicenseName": "other", "dataLicenseURL": "https://wiki.zhdk.ch/madek-hilfe/doku.php?id=terms"}] restricted [] ["other"] {"api": "https://medienarchiv.zhdk.ch/api/browser/", "apiType": "other"} ["none"] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-08-29 2018-09-09 +r3d100012858 Mass Spectrometry Interactive Virtual Environment eng [{"additionalName": "MassIVE", "additionalNameLanguage": "eng"}] https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp ["RRID:SCR_013665"] ["ccms-web@cs.ucsd.edu", "https://massive.ucsd.edu/ProteoSAFe/contact.jsp"] MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data. MassIVE datasets can be assigned ProteomeXchange accessions to satisfy publication requirements. eng ["disciplinary"] {"size": "10.546 Public Datasets", "updatedp": "2020-09-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://massive.ucsd.edu/ProteoSAFe/help.jsp [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "CoronaMassKB", "biochemical methods", "bioinformatics", "peptide", "protein", "proteomics"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/"]}, {"institutionName": "UC San Diego", "institutionAdditionalName": ["UCSD", "University of California at San Diego"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ucsd.edu/", "institutionIdentifier": ["ROR:0168r3w48", "RRID:SCR_011625", "RRID:nlx_71933"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Computer Science and Engineering, Center for Computational Mass Spectrometry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://proteomics.ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ccms-web@cs.ucsd.edu"]}] [{"policyName": "ProteomeXchange collaborative agreement", "policyURL": "http://www.proteomexchange.org/pxcollaborativeagreement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["unknown"] {"api": "ftp://massive.ucsd.edu/", "apiType": "FTP"} [] ["none"] unknown yes [] [] {} Mass Spectrometry Interactive Virtual Environment is covered by Clarivate Data Citation Index. MassIVE is a full member of the Proteomexchange consortium. 2018-08-29 2021-09-10 +r3d100012860 Eurac Research CLARIN Centre eng [{"additionalName": "ERCC", "additionalNameLanguage": "eng"}] https://clarin.eurac.edu/ [] ["clarin@eurac.edu"] The Eurac Research CLARIN Centre (ERCC) is a dedicated repository for language data. It is hosted by the Institute for Applied Linguistics (IAL) at Eurac Research, a private research centre based in Bolzano, South Tyrol. The Centre is part of the Europe-wide CLARIN infrastructure, which means that it follows well-defined international standards for (meta)data and procedures and is well-embedded in the wider European Linguistics infrastructure. The repository hosts data collected at the IAL, but is also open for data deposits from external collaborators. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-06-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10401 General and Applied Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://clarin.eurac.edu/repository/xmlui/page/about?locale-attribute=en#mission-statement [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Italian language", "computer-mediated communication", "corpora", "language learner data"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.clarin.eu/contact"]}, {"institutionName": "CLARIN-IT", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.clarin-it.it", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.clarin-it.it/en/contact"]}, {"institutionName": "Eurac Research", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.eurac.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@eurac.edu"]}, {"institutionName": "Eurac Research, Institute for Applied Linguistics", "institutionAdditionalName": ["IAL"], "institutionCountry": "ITA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.eurac.edu/en/research/autonomies/commul/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@eurac.edu"]}] [{"policyName": "ERCC About and Policies", "policyURL": "https://clarin.eurac.edu/repository/xmlui/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/licenses"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/licenses"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/licenses"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://artisticlicence.com/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/"}] restricted [{"dataUploadLicenseName": "Distribution License Agreement", "dataUploadLicenseURL": "https://clarin.eurac.edu/repository/xmlui/page/contract"}] ["DSpace"] yes {"api": "http://clarin.eurac.edu/repository/oai/", "apiType": "OAI-PMH"} ["hdl"] https://clarin.eurac.edu/repository/xmlui/page/cite [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://clarin.eurac.edu/repository/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} Eurac Research CLARIN Centre (ERCC) is a category C CLARIN centre. 2018-08-31 2018-09-05 +r3d100012861 Virtuelles Skriptorium St. Matthias deu [] http://stmatthias.uni-trier.de/ [] ["kompetenzzentrum@uni-trier.de"] This repository contains about 500 medieval codices and manuscripts (dated from 8th to 18th century), which were a part of the BMBF-funded project eCodicology. The collection and database contains descriptional data about the manuscripts in TEI conformant XML format as well as digitized images of every codex page. eng ["disciplinary"] {"size": "526 codices", "updatedp": "2018-09-04"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "10501 Medieval German Literature", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://stmatthias.uni-trier.de/index.php?l=n&s=projekt [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Abbey St. Matthias", "Abtei St. Matthias", "Trier", "codex", "liturgical manuscript", "medieval manuscript"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/index.php", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Darmstadt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tu-darmstadt.de/index.en.jsp", "institutionIdentifier": ["ROR:05n911h24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Trier, HKFZ", "institutionAdditionalName": ["Historisch-Kulturwissenschaftliche Forschungszentrum"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.hkfz.uni-trier.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Trier, Trier Center for Digital Humanities", "institutionAdditionalName": ["Kompetenzzentrum f\u00fcr elektronische Erschlie\u00dfungs- und Publikationsverfahren in den Geisteswissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://kompetenzzentrum.uni-trier.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Trier, Zentrum f\u00fcr Informations-, Medien- und Kommunikationstechnologie", "institutionAdditionalName": ["ZIMK"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-trier.de/index.php?id=14595", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutungsbedingungen f\u00fcr Digitalisate von Handschriften der Trierer Dombibliothek", "policyURL": "http://stmatthias.uni-trier.de/index.php?l=n&s=nutzung_db"}, {"policyName": "Nutzungsbedingungen f\u00fcr die Digitalisate aus Stadtbibliothek/Stadtarchiv Trier", "policyURL": "http://stmatthias.uni-trier.de/index.php?l=n&s=nutzung_sb"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://stmatthias.uni-trier.de/index.php?l=n&s=nutzung_db"}, {"dataLicenseName": "other", "dataLicenseURL": "http://stmatthias.uni-trier.de/index.php?l=n&s=nutzung_sb"}] [] [] {} [] [] unknown unknown [] [] {} 2018-09-04 2020-09-30 +r3d100012862 Carbohydrate Structure Database eng [{"additionalName": "CSDB", "additionalNameLanguage": "eng"}] http://csdb.glycoscience.ru/database/ ["FAIRsharing_doi:10.25504/FAIRsharing.dkbt9j", "OMICS_09727"] ["http://glycoscience.ru/Knirel/", "http://toukach.ru/"] This is CSDB version 1 merged from Bacterial (BCSDB) and Plant&Fungal (PFCSDB) databases. This database aims at provision of structural, bibliographic, taxonomic, NMR spectroscopic and other information on glycan and glycoconjugate structures of prokaryotic, plant and fungal origin. It has been merged from the Bacterial and Plant&Fungal Carbohydrate Structure Databases (BCSDB+PFCSDB). The key points of this service are: High coverage. The coverage for bacteria (up to 2016) and archaea (up to 2016) is above 80%. Similar coverage for plants and fungi is expected in the future. The database is close to complete up to 1998 for plants, and up to 2006 for fungi. Data quality. High data quality is achieved by manual curation using original publications which is assisted by multiple automatic procedures for error control. Errors present in publications are reported and corrected, when possible. Data from other databases are verified on import. Detailed annotations. Structural data are supplied with extended bibliography, assigned NMR spectra, taxon identification including strains and serogroups, and other information if available in the original publication. Services. CSDB serves as a platform for a number of computational services tuned for glycobiology, such as NMR simulation, automated structure elucidation, taxon clustering, 3D molecular modeling, statistical processing of data etc. Integration. CSDB is cross-linked to other glycoinformatics projects and NCBI databases. The data are exportable in various formats, including most widespread encoding schemes and records using GlycoRDF ontology. Free web access. Users can access the database for free via its web interface (see Help). The main source of data is retrospective literature analysis. About 20% of data were imported from CCSD (Carbbank, University of Georgia, Athens; structures published before 1996) with subsequent manual curation and approval. The current coverage is displayed in red on the top of the left menu. The time lag between the publication of new data and their deposition into CSDB is ca. 1 year. In the scope of bacterial carbohydrates, CSDB covers nearly all structures of this origin published up to 2016. Prokaryotic, plant and fungal means that a glycan was found in the organism(s) belonging to these taxonomic domains or was obtained by modification of those found in them. Carbohydrate means a structure composed of any residues linked by glycosidic, ester, amidic, ketal, phospho- or sulpho-diester bonds in which at least one residue is a sugar or its derivative. eng ["disciplinary"] {"size": "8.418 publications; 22.374 compounds; 11.009 organisms", "updatedp": "2020-02-05"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://csdb.glycoscience.ru/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["carbohydrates", "fungi", "glycobiology", "glycoinformatics", "glycomics", "plants", "prokaryotes"] [{"institutionName": "Russian Academy of Sciences, N.D. Zelinsky Institute of Organic Chemistry", "institutionAdditionalName": ["\u0418\u041e\u0425 \u0420\u0410\u041d", "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u043e\u0440\u0433\u0430\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0445\u0438\u043c\u0438\u0438 \u0438\u043c. \u041d.\u0414.\u0417\u0435\u043b\u0438\u043d\u0441\u043a\u043e\u0433\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0430\u043a\u0430\u0434\u0435\u043c\u0438\u0438 \u043d\u0430\u0443\u043a"], "institutionCountry": "RUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://zioc.ru/?lang=en", "institutionIdentifier": ["ROR:007phxq15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["SECRETARY@ioc.ac.ru"]}] [{"policyName": "CSDB usage: basic operations", "policyURL": "http://csdb.glycoscience.ru/database/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://csdb.glycoscience.ru/database/index.html"}] restricted [] ["unknown"] {"api": "http://csdb.glycoscience.ru/database/core/help.php?db=database&topic=extras#rdf", "apiType": "other"} ["none"] http://csdb.glycoscience.ru/database/index.html?help=credits#citations [] unknown unknown [] [{"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Carbohydrate structure datatabase is covered by Clarivate Data Citation Index. 2018-09-11 2020-02-05 +r3d100012863 hPSCreg eng [{"additionalName": "human Pluripotent Stem Cell registry", "additionalNameLanguage": "eng"}] https://hpscreg.eu/ ["FAIRsharing_doi:10.25504/FAIRsharing.7C0aVE", "MIR:00000674", "OMICS_10086"] ["https://hpscreg.eu/contact"] The human pluripotent stem cell registry (hPSCreg) is a public registry and data portal for human embryonic and induced pluripotent stem cell lines (hESC and hiPSC). The Registry provides comprehensive and standardized biological and legal information as well as tools to search and compare information from multiple hPSC sources and hence addresses a translational research need. To facilitate unambiguous identification over different resources, hPSCreg automatically creates a unique standardized name for each cell line registered. In addition to biological information, hPSCreg stores extensive data about ethical standards regarding cell sourcing and conditions for application and privacy protection. hPSCreg is the first global registry that holds both, manually validated scientific and ethical information on hPSC lines, and provides access by means of a user-friendly, mobile-ready web application. eng ["disciplinary"] {"size": "3.493 lines; 794 validated hESC lines; 2.699 validated hiPSC lines; 77 clinical studies", "updatedp": "2021-05-07"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://hpscreg.eu/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["cell data referencing", "cell line", "cell line authentication", "cell line nomenclature", "clinical studies", "embryonic stem cell", "induced pluripotent stem cell", "pluripotentstem cell"] [{"institutionName": "European Union", "institutionAdditionalName": ["EU", "Europ\u00e4ische Union", "UE", "Union Europ\u00e9en"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": ["ROR:019w4f821", "RRID:SCR_011219", "RRID:nlx_67420"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europa.eu/european-union/contact_en"]}, {"institutionName": "Fraunhofer-Institut f\u00fcr Biomedizinische Technik", "institutionAdditionalName": ["Fraunhofer IBMT", "Fraunhofer Institute for Biomedical Engineering"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ibmt.fraunhofer.de/", "institutionIdentifier": ["ROR:05tpsgh61", "RRID:SCR_011236", "RRID:nlx_158601", "RRID:nlx_158601"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["https://www.ibmt.fraunhofer.de/de/kontakt.html"]}] [{"policyName": "Terms of Use", "policyURL": "https://hpscreg.eu/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hpscreg.eu/about/documents-and-governance"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://hpscreg.eu/terms"}] restricted [{"dataUploadLicenseName": "Cell Line Registration Quick-Start Guide", "dataUploadLicenseURL": "https://hpscreg.eu/docs/downloads/QuickStartGuideCellLineRegistration.pdf"}] ["unknown"] {"api": "https://hpscreg.eu/about/api", "apiType": "REST"} ["other"] [] yes yes [] [] {} Partners and Collaborators: https://hpscreg.eu/about/structures-and-partners European Bank of induced pluripotent Stem Cells (EBiSC) is a not-for-profit iPSC banking initiative to store and distribute iPSC lines (https://www.ebisc.org/). If you chose to register your lines in EBiSC, they will also automatically be registered in hPSCreg. 2018-09-12 2021-09-09 +r3d100012864 KBase eng [{"additionalName": "KBase: The U.S. Department of Energy Systems Biology Knowledgebase", "additionalNameLanguage": "eng"}] https://www.kbase.us/ ["FAIRsharing_doi:10.25504/FAIRsharing.jsxqrk", "OMICS_13621"] ["engage@kbase.us", "https://www.kbase.us/support/"] The Department of Energy Systems Biology Knowledgebase (KBase) is a software and data platform designed to meet the grand challenge of systems biology: predicting and designing biological function. KBase integrates data and tools in a unified graphical interface so users do not need to access them from numerous sources or learn multiple systems in order to create and run sophisticated systems biology workflows. Users can perform large-scale analyses and combine multiple lines of evidence to model plant and microbial physiology and community dynamics. KBase is the first large-scale bioinformatics system that enables users to upload their own data, analyze it (along with collaborator and public data), build increasingly realistic models, and share and publish their workflows and conclusions. KBase aims to provide a knowledgebase: an integrated environment where knowledge and insights are created and multiplied. eng ["disciplinary"] {"size": "90.279 genomes; 358.269.132 genome geatures; 1.554.540 taxonomy; 27.692 biochemical species; 34.696 Reactions; 20.551 Roles; 522 Media; 75 Metabolic Maps; 1.470 Metabolic Pathways", "updatedp": "2018-09-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.kbase.us/about/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Sequence reads and assemblies", "biochemistry", "metabolic modeling", "metabolic pathways", "metabolite", "metabolomes", "pangenomes", "plant", "predictive biology", "prokaryotic genomes", "species trees", "taxonomic profiles"] [{"institutionName": "United States, Department of Energy", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:org/01bj3aw27", "RRID:SCR_012841", "RRID:nlx_86742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States, Department of Energy, Office of Science, Biological and Environmental Research", "institutionAdditionalName": ["BER"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/ber/biological-and-environmental-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy and Sources", "policyURL": "https://www.kbase.us/data-policy-and-sources/"}, {"policyName": "KBase User Agreement", "policyURL": "http://www.kbase.us/user-agreement/"}, {"policyName": "Privacy Policy", "policyURL": "https://www.kbase.us/privacy-policy/"}, {"policyName": "Terms and conditions", "policyURL": "http://www.kbase.us/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://github.com/kbase/project_guides/blob/master/LICENSE"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kbase.us/data-policy-and-sources/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.kbase.us/data-policy-and-sources/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.kbase.us/data-policy-and-sources/"}] restricted [] ["unknown"] {} ["none"] https://www.kbase.us/acknowledgements/ [] yes unknown [] [] {} 2018-09-12 2021-09-10 +r3d100012866 CU Scholar eng [{"additionalName": "University of Colorado Boulder's institutional repository", "additionalNameLanguage": "eng"}] https://scholar.colorado.edu/ ["https://scholar.colorado.edu/"] ["cuscholaradmin@colorado.edu"] CU Scholar is a digital repository supporting the research and teaching mission of the University of Colorado Boulder. It is intended to serve as a platform for preserving the research activities of members of the CU-Boulder community, and for promoting that research to the general public. CU Scholar is maintained by the University Libraries as a service to the community of scholars worldwide. eng ["institutional"] {"size": "Approximately 9.000 items", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://scholar.colorado.edu/policies.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Colorado Boulder", "institutionAdditionalName": ["CU-Boulder", "UC Boulder"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.colorado.edu/", "institutionIdentifier": ["RRID:SCR_003114", "RRID:nlx_10266"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.colorado.edu/contact-us"]}, {"institutionName": "University of Colorado Boulder, University Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.colorado.edu/libraries/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.colorado.edu/libraries/contact-us"]}] [{"policyName": "CU Scholar policies", "policyURL": "https://scholar.colorado.edu/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://scholar.colorado.edu/policies.html"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/"}, {"dataUploadLicenseName": "Submission Guidelines", "dataUploadLicenseURL": "https://scholar.colorado.edu/about.html"}] ["DigitalCommons"] yes {"api": "https://scholar.colorado.edu/do/oai/", "apiType": "OAI-PMH"} ["DOI"] https://support.datacite.org/docs/data-citation [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://scholar.colorado.edu/recent.rss", "syndicationType": "RSS"} The collection is part of the Digital Commons Network™ https://network.bepress.com/ 2018-09-14 2018-09-16 +r3d100012867 EBiSC catalogue eng [{"additionalName": "European Bank for induced pluripotent Stem Cells catalogue", "additionalNameLanguage": "eng"}] https://cells.ebisc.org/ [] ["http://www.ebisc.org/contact/contact-us.php", "https://ebisc.org/contact"] The EBiSC Catalogue is a collection of human iPS cells being made available to academic and commercial researchers for use in disease modelling and other forms of preclinical research. The initial collection has been generated from a wide range of donors representing specific disease backgrounds and healthy controls. As the collection grows, more isogenic control lines will become available which will add further to the collection’s appeal. eng ["disciplinary"] {"size": "801 cell lines", "updatedp": "2018-09-17"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ebisc.org/the-ebisc-catalogue/about-the-ebisc-catalogue.php [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cell lines", "hiPSC lines", "human iPS cells", "human induced pluripotent stem cells", "iPSC lines", "induced pluripotent stem cells"] [{"institutionName": "European Bank for induced pluripotent Stem Cells project", "institutionAdditionalName": ["EBiSC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": ["RRID:SCR_003856", "RRID:nlx_158178"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, Community Research and Development Information Service, Seventh Framework Programme", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/guidance/archive_en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Innovative Medicines Initiative", "institutionAdditionalName": ["IMI"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.imi.europa.eu/", "institutionIdentifier": ["RRID:SCR_003754", "RRID:nlx_157984"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.imi.europa.eu/contact"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ebisc.org/legal-notes.php"}] restricted [{"dataUploadLicenseName": "Cell Line Registration Quick-Start Guide", "dataUploadLicenseURL": "https://hpscreg.eu/docs/downloads/QuickStartGuideCellLineRegistration.pdf"}] ["unknown"] {} ["other"] [] no unknown [] [] {} EBiSC is a not-for-profit iPSC banking initiative to store and distribute iPSC lines. If you chose to register your lines in EBiSC, they will also automatically be registered in human Pluripotent Stem Cell registry (hPSCreg) https://hpscreg.eu/ A mirror bank holding a smaller quantity of each cell line is held at the Fraunhofer Institute for Biomedical Engineering (IBMT) in Sulzbach, Germany. 2018-09-17 2021-09-10 +r3d100012868 Roman Villa of Capo di Sorrento eng [] http://repository.edition-topoi.org/collection/SORR/ ["doi:10.17171/2-4"] [] Digital resources of the excavations campaigns since 2015. eng ["disciplinary"] {"size": "9 Research Objects", "updatedp": "2018-09-27"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/SORR/#abstract [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Cape of Sorento", "Gulf of Naples", "Roman villegiatura", "architecture", "pars rustica"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin, Kultur-, Sozial- und Bildungswissenschaftliche Fakult\u00e4t, Winckelmann-Institut", "institutionAdditionalName": ["Humboldt-Universit\u00e4t zu Berlin, Faculty of Humanities and Social Sciences, Winckelmann-Institut"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.archaeologie.hu-berlin.de/de/lehrbereich_klarcho/winckelmann", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.archaeologie.hu-berlin.de/de/lehrbereich_klarcho/winckelmann/projekte/aktuelle-projekte/neue-forschungen-zur-roemischen-luxusvilla-von-capo-di-sorrento", "winckelmann@culture.hu-berlin.de"]}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://repository.edition-topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["edition@topoi.org"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/SORR/#conditions_for_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-09-21 2018-09-30 +r3d100012869 Maya Image Archive eng [] https://classicmayan.kor.de.dariah.eu/ [] ["diederichs@uni-bonn.de"] The Maya Image Archive is intended to host research materials provided by various scholars, such as Karl Herbert Mayer, Berthold Riese, Stephan Merk and the members of the project among others. Comprising image collections with photographs, drawings, notes and manuscripts, the Maya Image Archive allows the user to browse through the results of several decades of research trips through the entire Maya region. eng ["disciplinary"] {"size": "6.892 entities; 882 artefacts", "updatedp": "2018-10-18"} 2018-08 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://classicmayan.kor.de.dariah.eu/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["South American advanced civilizations", "artefacts", "drawings", "manuscripts", "notes", "photographs"] [{"institutionName": "Universit\u00e4t Bonn, Abteilung f\u00fcr Altamerikanistik, Arbeitsstelle der NRW Akademie der Wissenschaften und der K\u00fcnste , Textdatenbank und W\u00f6rterbuch des Klassischen Maya", "institutionAdditionalName": ["TWKM"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://mayawoerterbuch.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["diederichs@uni-bonn.de"]}] [{"policyName": "Terms of use", "policyURL": "https://classicmayan.kor.de.dariah.eu/static/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://classicmayan.kor.de.dariah.eu/static/about"}] restricted [] ["other"] yes {} [] https://classicmayan.kor.de.dariah.eu/static/legal ["none"] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} In cooperation with the Digital Research Infrastructure DARIAH-DE, the database is made accessible as a DARIAH-DE Web Service via the DARIAH network login. The login is available to all users with a DARIAH account. Registration in the database is also possible on request. --- Digitized content of the Maya Image Archive is provided by Textdatenbank und Wörterbuch des Klassischen Maya (TWKM) 2018-09-28 2018-10-24 +r3d100012870 Earthworks.stanford.edu eng [] https://earthworks.stanford.edu/ [] ["https://earthworks.stanford.edu/feedback"] EarthWorks is a discovery tool for geospatial (a.k.a. GIS) data. It allows users to search and browse the GIS collections owned by Stanford University Libraries, as well as data collections from many other institutions. Data can be searched spatially, by manipulating a map; by keyword search; by selecting search limiting facets (e.g., limit to a given format type); or by combining these options. eng ["disciplinary", "other"] {"size": "over 70.000 resources; from more than 20 institutions", "updatedp": "2018-10-02"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://library.stanford.edu/blogs/digital-library-blog/2015/04/introducing-earthworks-stanfords-new-gis-data-discovery [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["California", "census"] [{"institutionName": "Stanford Libraries", "institutionAdditionalName": ["Stanford University Libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://library.stanford.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.stanford.edu/site/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://earthworks.stanford.edu/"}] restricted [] ["other"] {"api": "https://geowebservices.stanford.edu/geoserver/wfs", "apiType": "other"} ["DOI", "PURL", "other"] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2018-09-28 2018-10-09 +r3d100012871 Portal de Datos Genómicos del SNDG spa [{"additionalName": "Sistema Nacional de Datos Gen\u00f3micos - Portal de datos", "additionalNameLanguage": "spa"}] http://datos.sndg.mincyt.gob.ar/ [] ["sact@mincyt.gob.ar"] The Portal of Genomic Data is an initiative of the National System of Genomic Data (SNDG) of the Ministry of Science, Technology and Productive Innovation of Argentina whose purpose is to visualize, share, disseminate and return to society the primary data that are generated as a result of the investigations financed by the National State. The site allows access to the unified national database of genomic information for all species of ecological, agricultural, biotechnological and health interest; have information from the centers affiliated to the SNDG and their data sets and tools; know the main SNDG statistics; and visualize and / or download the available resources. spa ["disciplinary", "other"] {"size": "144 genomes; 786.911 proteines; 138.712 structures; 93.700 assembled sequences; 95.061 barcodes", "updatedp": "2018-10-01"} ["spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Argentina", "bacteria", "biotechnology", "eukarya", "public health", "virus"] [{"institutionName": "Ministerio de Educacion, Cultura, Ciencia y Tecnologia, Ciencia, Tecnolog\u00eda e Innovaci\u00f3n Productiva", "institutionAdditionalName": [], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.argentina.gob.ar/ciencia?p=", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@mincyt.gob.ar"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["unknown"] {} ["none"] [] no unknown [] [] {} 2018-10-01 2018-10-06 +r3d100012872 USN Research Data Archive eng [{"additionalName": "USN RDA", "additionalNameLanguage": "eng"}, {"additionalName": "University of South-Eastern Norway Figshare", "additionalNameLanguage": "eng"}] https://usn.figshare.com/ [] ["forskningsdata@usn.no"] The USN Research Data Archive is an institutional archive where research data produced and collected by University of South-East Norway's reseachers can be stored, made visible and accessible. The researcher can apply the necessary licenses and possibly put embargo and access restrictions on the research data. eng ["institutional"] {"size": "42 datasets", "updatedp": "2020-01-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://bibliotek.usn.no/publishing/research-data/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["FAIR", "economics", "health", "humanities", "information science", "mathematics and natual science", "meta science", "multidisciplinary", "natural sciences", "pedagogy", "sports", "technology"] [{"institutionName": "University of South-Eastern Norway", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usn.no/", "institutionIdentifier": ["ROR:05ecg5h20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for the management of research data at University of South-Eastern Norway", "policyURL": "https://bibliotek.usn.no/guidelines-for-the-management-of-research-data/category32813.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-10-02 2020-01-28 +r3d100012873 Norwegian Marine Data Center eng [{"additionalName": "NMD", "additionalNameLanguage": "nno"}, {"additionalName": "Norsk marint datasenter", "additionalNameLanguage": "nno"}] https://www.hi.no/en/hi/forskning/research-groups-1/the-norwegian-marine-data-centre-nmd [] ["helge@hi.no"] The Norwegian Marine Data Centre (NMD) at the Institute of Marine Research was established as a national data centre dedicated to the professional processing and long-term storage of marine environmental and fisheries data and production of data products. The Institute of Marine Research continuously collects large amounts of data from all Norwegian seas. Data are collected using vessels, observation buoys, manual measurements, gliders – amongst others. NMD maintains the largest collection of marine environmental and fisheries data in Norway. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "nno"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["MAREANO", "Norway", "Norwegian reference fleet", "Sj\u00f8mil", "aquaculture", "buoys", "climatology", "cod", "cruises", "environmental sciences", "fishery", "gliders", "lumpfish", "mackerel", "marine mammals", "research vessels", "seafood", "seal", "whale", "zooplankton"] [{"institutionName": "Institute of Marine Research", "institutionAdditionalName": ["HI", "Havforskningsinstituttet", "IMR"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hi.no/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hi.no/en/hi/about-us/kontaktinformasjon"]}] [{"policyName": "Data Policy for the Institute of Marine Research", "policyURL": "https://www.hi.no/filarkiv/2016/09/hi-datapolicy-revised2016-final-eng.pdf/en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://data.norge.no/nlod/en/1.0"}] restricted [] ["unknown"] {} ["none"] [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.hi.no/nyheter.rss/en", "syndicationType": "RSS"} Norwegian Marine Data Center is a regular member of ICSU World Data System - WDS. 2018-10-04 2022-01-03 +r3d100012874 NSF Facilities for Continental Scientific & Drilling & Coring eng [] https://csdco.umn.edu [] ["brad0311@umn.edu", "noren021@umn.edu"] US National Science Foundation (NSF) facility to support drilling and coring in continental locations worldwide. Drill core metadata and data, borehole survey data, geophysical site survey data, drilling metadata, software code. CSDCO offers several repositories with samples, data, publications and reference collections about drilling and coring: LacCore Core Repository, Open Core Data, Index to Marine and Lacustrine Geological Samples. For " Botanical Reference Collections" contact the LacCore Curator for details. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://csdco.umn.edu/about [{"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["earth sciences", "infrastructure", "initial core description ICD", "litology", "petrography", "scientific drilling"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Minnesota, Continental Scientific Drilling Coordination Office", "institutionAdditionalName": ["CSDCO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://csdco.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["csdco@umn.edu", "https://csdco.umn.edu/forms/contact-csdco"]}] [{"policyName": "NSF Policy and Guidance", "policyURL": "https://www.nsf.gov/bfa/dias/policy/grants.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] closed [] ["unknown"] {} ["none"] ["none"] unknown yes [] [] {} The repositories an included in re3data: OpenCore Data: https://www.re3data.org/repository/r3d100012071 ; Index to Marine and Lacustrine Geological Samples: https://www.re3data.org/repository/r3d100011045 ; LacCore: https://www.re3data.org/repository/r3d100011880 Partners: https://csdco.umn.edu/about/partners 2018-10-04 2018-10-24 +r3d100012875 RESPECT eng [{"additionalName": "Environmental changes in biodiverstiy hotspot ecosystems of South Ecuador: RESPonse and feedback effECTs", "additionalNameLanguage": "eng"}] http://www.tropicalmountainforest.org/ [] ["bendix@geo.uni-marburg.de", "maik.dobbermann@geo.uni-marburg.de"] RESPECT aims to unveil for the mountain rain forest in South Ecuador how major ecosystem functions, (i) ecosystem biomass production, and (ii) water fluxes, are affected by ongoing and future environmental changes through alterations in response and effect traits of relevant biota. The research question is addressed with two approaches: (i) A newest generation Land Surface Model (LSM) and (ii) a statistical response–effect framework (REF). By including (i) specific Plant Functional Types (PFTs) for the megadiverse biodiversity hotspot, (ii) introducing trait diversity, (iii) new modules for tree hydraulics and (iv) new modules of focal biological processes (seed dispersal and PFT establishment, herbivory) we will conduct a biodiversification of LSMs. eng ["disciplinary"] {"size": "626 datasets", "updatedp": "2018-10-08"} 2017 ["deu", "eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["Ecuador", "South Ecuador", "air temperature", "biodiversity", "rain forest", "tree growth", "tropical mountain forest"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Philipps-University of Marburg, Laboratory for Climatology and Remote Sensing", "institutionAdditionalName": ["LCRS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lcrs.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Agreement", "policyURL": "http://vhrz669.hrz.uni-marburg.de/tmf_respect/files/generalinformation/Data_Use_Agreement_PAK.pdf"}, {"policyName": "Data User Agreement", "policyURL": "http://vhrz669.hrz.uni-marburg.de/tmf_respect/files/generalinformation/Data_User_Agreement_external.pdf"}, {"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten", "policyURL": "https://www.wissenschaftsrat.de/download/archiv/Allianz_Grundsaetze_Forschungsdaten.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://vhrz669.hrz.uni-marburg.de/tmf_respect/UserFiles/File/respect/generalinformations/RESPECT_data_use_agreement_approved.pdf"}] restricted [] [] {} ["DOI"] http://vhrz669.hrz.uni-marburg.de/tmf_respect/content_htmlcode_pre.do?pageid=3#UPC [] unknown unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} Tropical mountain forest data warehouse (TMFdw) 2018-10-05 2019-01-21 +r3d100012879 Tropical Data Hub Research Data repository eng [{"additionalName": "James Cook University Research Data repository", "additionalNameLanguage": "eng"}] https://research.jcu.edu.au/researchdata [] ["researchdata@jcu.edu.au"] The Tropical Data Hub (TDH) Research Data repository makes data collections and datasets generated by James Cook University researchers searchable and accessible. This increases their visibility and facilitates sharing and collaboration both within JCU and externally. Services provided include archival storage, access controls (open access preferred), metadata review and DOI minting. eng ["institutional"] {"size": "2.526 records", "updatedp": "2018-10-23"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://research.jcu.edu.au/researchdata/default/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "James Cook University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jcu.edu.au/", "institutionIdentifier": ["RRID:SCR_001420", "nlx_62328"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "JCU Research Data Terms of Use", "policyURL": "https://research.jcu.edu.au/researchdata/default/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://research.jcu.edu.au/researchdata/default/terms"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://tdh-research-data-user-guide.readthedocs.io/en/latest/creating_a_research_record.html#licence"}] restricted [] ["other"] {} ["DOI"] [] unknown yes [] [] {"syndication": "https://research.jcu.edu.au/researchdata/default/feed/atom", "syndicationType": "ATOM"} 2018-10-11 2018-10-27 +r3d100012880 LacCore eng [{"additionalName": "National Lacustrine Core Facility", "additionalNameLanguage": "eng"}] http://lrc.geo.umn.edu/laccore/index.html ["RRID:SCR_002215", "RRID:nlx_154737"] ["http://lrc.geo.umn.edu/laccore/contact.html"] LacCore curates cores and samples from continental coring and drilling expeditions around the world, and also archives metadata and contact information for cores stored at other institutions. eng ["disciplinary"] {"size": "", "updatedp": ""} 2000 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://lrc.geo.umn.edu/laccore/repository.html [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cores", "drilling", "lacustrine sediments", "limnology", "petrography", "rocks", "samples", "sediment cores"] [{"institutionName": "Continental Scientific Drilling Coordination Office", "institutionAdditionalName": ["CSDCO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://csdco.umn.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["noren021@umn.edu"]}, {"institutionName": "NOAA's National Centers for Environmental Information", "institutionAdditionalName": ["NCEI", "NGDC, formerly", "National Geophysical Data Center, formerly"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ngdc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ngdc.noaa.gov/ngdcinfo/phone.html"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "University of Minnesota", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://twin-cities.umn.edu/", "institutionIdentifier": ["RRID:SCR_011674", "RRID:nlx_77683"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://lrc.geo.umn.edu/laccore/contact.html", "https://twin-cities.umn.edu/contact-us"]}] [{"policyName": "NSF Policy and Guidance", "policyURL": "https://www.nsf.gov/bfa/dias/policy/grants.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] closed [] ["unknown"] {} ["none"] http://lrc.geo.umn.edu/laccore/citation.html ["none"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} LaCore is part of "NSF Facilities for Continental Scientific & Drilling & Coring" : https://www.re3data.org/repository/r3d100012874 2018-10-11 2018-10-24 +r3d100012882 DIAMM eng [{"additionalName": "Digital Image Archive of Medieval Music", "additionalNameLanguage": "eng"}] https://www.diamm.ac.uk/ [] ["https://www.diamm.ac.uk/about/contact-us/"] DIAMM (the Digital Image Archive of Medieval Music) is a leading resource for the study of medieval manuscripts. We present images and metadata for thousands of manuscripts on this website. We also provide a home for scholarly resources and editions, undertake digital restoration of damaged manuscripts and documents, publish high-quality facsimiles, and offer our expertise as consultants. eng ["disciplinary"] {"size": "55.541 Images; 3.939 Manuscript records; 3,794 Person records; 693 Place records; 687 Organization records; 634 Archive records", "updatedp": "2018-10-18"} 1998 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.diamm.ac.uk/about/project-description/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["European polyphony", "middle ages", "photographs", "plainchant", "polyphonic music manuscripts", "printed facsimiles"] [{"institutionName": "University of Oxford, Faculty of Music", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.music.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["diamm@music.ox.ac.uk"]}] [{"policyName": "Licence to deliver images via the DIAMM website portal", "policyURL": "https://www.diamm.ac.uk/about/copyright/"}, {"policyName": "License to Digitise and Archive Primary Sources", "policyURL": "https://www.diamm.ac.uk/about/copyright/"}, {"policyName": "Website Access Agreement", "policyURL": "https://www.diamm.ac.uk/about/copyright/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.diamm.ac.uk/about/copyright/"}] restricted [] ["unknown"] yes {} ["none"] https://www.diamm.ac.uk/about/copyright/ ["none"] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Depositors: https://www.diamm.ac.uk/about/depositors/ -- Partners/Sponsors: https://www.diamm.ac.uk/about/partners-sponsors/ 2018-10-18 2018-10-24 +r3d100012883 International Institute of Tropical Agriculture datasets eng [{"additionalName": "IITA", "additionalNameLanguage": "eng"}, {"additionalName": "International Institute of Tropical Agriculture CKAN repository", "additionalNameLanguage": "eng"}] http://data.iita.org/ [] ["iita@cgiar.org"] IITA conducts research on the following thematic areas: Biotechnology and genetic improvement, Natural resource management, Social science and agribusiness, and Plant production and plant health. eng ["disciplinary"] {"size": "216 datasets", "updatedp": "2018-10-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20702 Plant Cultivation", "scheme": "DFG"}, {"name": "20703 Plant Nutrition", "scheme": "DFG"}, {"name": "20705 Plant Breeding", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] http://www.iita.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biotechnology", "food science", "genetic improvement", "natural resource management", "plant health", "social science and agribusiness"] [{"institutionName": "International Institute of Tropical Agriculture", "institutionAdditionalName": ["IITA"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iita.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "http://data.iita.org/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["CKAN"] {"api": "http://data.iita.org/pages/api", "apiType": "REST"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-10-24 2018-10-31 +r3d100012884 Kinder Institute Urban Data Platform eng [{"additionalName": "UDP", "additionalNameLanguage": "eng"}] https://www.kinderudp.org/#/ [] ["https://www.kinderudp.org/#/contactUs/generalInquiries"] The Kinder Institute Urban Data Platform is a secure data repository and an analytical computing environment that provides research-ready urban data for the Greater Houston Area. The UDP facilitates cross-disciplinary research and community studies to advance knowledge and information about Houston's people, government, and built environment. eng ["institutional"] {"size": "238 datasets", "updatedp": "2021-07-08"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.kinderudp.org/#/faq [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Houston", "census", "crime", "economy", "education", "environment", "health", "housing", "infrastructure", "land use", "urban research"] [{"institutionName": "Houston Endowment", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.houstonendowment.org/", "institutionIdentifier": ["ROR:03k77k104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.houstonendowment.org/about/contact/"]}, {"institutionName": "Rice University", "institutionAdditionalName": ["Rice"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rice.edu/", "institutionIdentifier": ["ROR:008zs3103"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rice, Kinder Institute for Urban Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://kinder.rice.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["kinder@rice.edu"]}] [{"policyName": "University Policies", "policyURL": "https://policy.rice.edu/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [{"dataUploadLicenseName": "Request to Submit Data", "dataUploadLicenseURL": "https://www.kinderudp.org/#/contactUs/submitData"}] [] {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Kinder Institute Urban Data Platform is covered by Clarivate Data Citation Index. Some datasets in this repository can be downloaded from the repository's website. Some datasets are not downloadable but can be easily accessed once access to the secure computing environment is granted. Finally, some datasets can only be accessed when a specific data usage agreement is signed and/or approval is given by Rice University's Institutional Review Board. 2018-10-24 2021-07-08 +r3d100012888 Universitat Oberta de Catalunya O2 Dades cat [{"additionalName": "L'Oberta en Obert: Dades", "additionalNameLanguage": "eng"}, {"additionalName": "UOC O2 Dades", "additionalNameLanguage": "eng"}] http://openaccess.uoc.edu/webapps/o2/handle/10609/70405 ["hdl:10609/70405"] ["sgiorgis@uoc.edu"] O2 is the UOC's institutional repository. Section 'Dades' contains primary data accompanying documents published in the Research and Institutional communities. eng ["institutional"] {"size": "2 datasets", "updatedp": "2018-11-02"} ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://biblioteca.uoc.edu/en/resources/uocs-institutional-repository-o2 [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universitat Oberta de Catalunya", "institutionAdditionalName": ["UOC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uoc.edu/portal/en/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sgiorgis@uoc.edu"]}] [{"policyName": "Open Access Institutional Policy", "policyURL": "http://openaccess.uoc.edu/webapps/o2/handle/10609/4966"}, {"policyName": "Open Access at UOC", "policyURL": "http://biblioteca.uoc.edu/en/resources/open-access"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/es/"}] restricted [] [] {"api": "https://openaccess.uoc.edu/webapps/dspace_rei_oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2018-10-31 2018-11-08 +r3d100012889 edoc-Server - Forschungsdaten deu [{"additionalName": "Open-Access-Publikationsserver der Humboldt-Universit\u00e4t zu Berlin", "additionalNameLanguage": "eng"}, {"additionalName": "edoc-Server Open-Access Institutional Repository of the Humboldt-Universit\u00e4t zu Berlin", "additionalNameLanguage": "eng"}] https://edoc.hu-berlin.de/handle/18452/19149 [] ["edoc@hu-berlin.de"] The edoc-Server, start 1998, is the Institutional Repository of the Humboldt-Universität zu Berlin and offers the posibility of text- and data-publications. Every item is published for Open-Access with an optional embargo period of up to five years. Data publications since 01.01.2018. eng ["institutional"] {"size": "23 research data sets", "updatedp": ""} 2018-01-01 2018-11-08 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://edoc-info.hu-berlin.de/de/nutzung/nutzung_leitlinien/nutzung_leit [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": ["HU Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://edoc.hu-berlin.de/contact"]}] [{"policyName": "Leitlinien f\u00fcr den edoc-Server", "policyURL": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_leitlinien/nutzung_leit"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.de"}, {"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_bedingungen"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_bedingungen"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-2-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.de"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://edoc-info.hu-berlin.de/de/nutzung/nutzung_bedingungen"}] restricted [] ["DSpace"] yes {"api": "https://edoc.hu-berlin.de/oai/", "apiType": "OAI-PMH"} ["DOI", "URN"] [] yes yes ["DINI Certificate"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://edoc.hu-berlin.de/feed/atom_1.0/site", "syndicationType": "ATOM"} 2018-11-01 2018-11-16 +r3d100012890 World Ocean Atlas eng [{"additionalName": "WOA", "additionalNameLanguage": "eng"}] https://www.nodc.noaa.gov/OC5/woa18/ [] ["OCL.help@noaa.gov"] The World Ocean Atlas (WOA) contains objectively analyzed climatological fields of in situ temperature, salinity, oxygen, and other measured variables at standard depth levels for various compositing periods for the world ocean. Regional climatologies were created from the Atlas, providing a set of high resolution mean fields for temperature and salinity. The World Ocean Atlas 2018 (WOA18) release September 30, 2018 updates previous versions of the World Ocean Atlas to include approximately 3 million new oceanographic casts added to the World Ocean Database (WOD) and renewed and updated quality control. The WOA18 temperature and salinity fields are being released as preliminary in order to take advantage of community-wide quality assurance. WOA follows the World Ocean Database - WOD periodic major releases and quarterly updates to those releases. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["ocean climatology"] [{"institutionName": "NOAA National Centers for Environmental Information", "institutionAdditionalName": ["NCEI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nodc.noaa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NOAA National Centers for Environmental Information, Ocean Climate Laboratory", "institutionAdditionalName": ["NCEI", "OCL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Oceanic and Atmospheric Adminstration", "institutionAdditionalName": ["NOAA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.noaa.gov/", "institutionIdentifier": ["RRID:SCR_011426", "RRID:nlx_156904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NCEI Data Collecting Policy", "policyURL": "https://www.nodc.noaa.gov/submit/data-policy.html"}, {"policyName": "NCEI Data Submission Guidelines", "policyURL": "https://www.nodc.noaa.gov/submit/submit-guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://data.nodc.noaa.gov/woa/WOD/DOC/wod_intro.pdf"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.nodc.noaa.gov/about/faq.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nodc.noaa.gov/OC5/WOD/wod-woa-faqs.html#WOA18"}] open [{"dataUploadLicenseName": "Submit your data", "dataUploadLicenseURL": "https://www.nodc.noaa.gov/submit/index.html"}] ["unknown"] yes {"api": "https://data.nodc.noaa.gov/woa/WOA18/DATA", "apiType": "FTP"} ["none"] https://www.nodc.noaa.gov/OC5/WOD/wod-woa-faqs.html#WOA18 [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} 2018-11-02 2018-11-17 +r3d100012891 APPLAUSE eng [{"additionalName": "Archives of Photographic PLates for Astronomical USE", "additionalNameLanguage": "eng"}] https://www.plate-archive.org/applause/ [] ["https://www.plate-archive.org/contact/", "info@aip.de"] German astronomical observatories own considerable collection of photographic plates. While these observations lead to significant discoveries in the past, they are also of interest for scientists today and in the future. In particular, for the study of long-term variability of many types of stars, these measurements are of immense scientific value. There are about 85000 plates in the archives of Hamburger Sternwarte, Dr. Karl Remeis-Sternwarte Bamberg, and Leibniz-Institut für Astrophysik Potsdam (AIP). The plates are digitized with high-resolution flatbed scanners. In addition, the corresponding plate envelopes and observation logbooks are digitized, and further metadata are entered into the database. The work is carried out within the project “Digitalisierung astronomischer Fotoplatten und ihre Integration in das internationale Virtual Observatory”, which is funded by the DFG. eng ["disciplinary"] {"size": "85.000 plates", "updatedp": "2018-11-08"} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.plate-archive.org/applause/project/description/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["Potsdam-Telegrafenberg air temperature plot", "astronomical photographic plates", "raw lightcurve"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dr. Remeis Sternwarte Bamberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sternwarte.uni-erlangen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hamburger Sternwarte", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hs.uni-hamburg.de/index.php?lang=de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["AIP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.aip.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Th\u00fcringer Landessternwarte Tautenburg, Karl-Schwarzschild-Observatorium", "institutionAdditionalName": ["TLS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tls-tautenburg.de/TLS/index.php?id=3&L=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://www.plate-archive.org/applause/project/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] yes {"api": "https://www.plate-archive.org/applause/", "apiType": "OAI-PMH"} ["DOI"] https://www.plate-archive.org/applause/project/disclaimer/ [] unknown unknown [] [{"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}] {} 2018-11-02 2021-10-05 +r3d100012892 BAOBAB fra [{"additionalName": "Base Afrique de l'Ouest Beyond AMMA Base", "additionalNameLanguage": "fra"}] http://baobab.sedoo.fr/?lang=en [] ["baobab-contact@sedoo.fr"] The projects include airborne, ground-based and ocean measurements, social science surveys, satellite data use, modelling studies and value-added product development. Therefore, the BAOBAB data portal enables to access a great amount and a large variety of data: - 250 local observation datasets, that have been collected by operational networks since 1850, long term monitoring research networks and intensive scientific campaigns; - 1350 outputs of a socio-economics questionnaire; - 60 operational satellite products and several research products; - 10 output sets of meteorological and ocean operational models and 15 of research simulations. Data documentation complies with metadata international standards, and data are delivered into standard formats. The data request interface takes full advantage of the database relational structure and enables users to elaborate multicriteria requests (period, area, property…). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AEROCLO", "AMMA", "Africa", "DACCIWA", "FENNEC", "IMPETUS", "QWECI", "agroecology", "monsoon", "satellite"] [{"institutionName": "African Monsoon Multidisciplinary Analyses programme", "institutionAdditionalName": ["AMMA", "Analyses Multidisciplinaires de la Mousson Africaine"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.amma-international.org/spip.php?rubrique1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ESPRI Data Centre", "institutionAdditionalName": ["Centre de Donn\u00e9es ESPRI", "ESPRI"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cds-espri.ipsl.upmc.fr/etherTypo/index.php?id=1450&L=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Observatoire Midi-Pyr\u00e9n\u00e9es", "institutionAdditionalName": ["OMP"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SErvice de DOnn\u00e9es de l\u2019OMP", "institutionAdditionalName": ["SEDOO"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.obs-mip.fr/Services-communs-OMP/sedoo", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AEROCLO Data Policy", "policyURL": "http://baobab.sedoo.fr/AEROCLO/Data-Policy/AEROCLO_DataPolicy.pdf"}, {"policyName": "AMMA Data and Publication Policy", "policyURL": "http://baobab.sedoo.fr/AMMA/Data-Policy/AMMA_DataPolicy.pdf"}, {"policyName": "DACCIWA Data and Publication Policy", "policyURL": "http://baobab.sedoo.fr/DACCIWA/Data-Policy/DACCIWA_DataPolicy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://baobab.sedoo.fr/AMMA/Data-Policy/AMMA_DataPolicy.pdf"}] restricted [] ["unknown"] {} ["none"] http://baobab.sedoo.fr/AMMA/Data-Policy/AMMA_DataPolicy.pdf [] unknown unknown [] [] {} The ongoing DACCIWA (Dynamics-Aerosol-Chemistry-Cloud Interactions over West Africa) project uses the BAOBAB portal to distribute its data: http://baobab.sedoo.fr/DACCIWA/. 30 datasets are already available: - Local observation from DACCIWA-supersites at Savé (Benin), Kumasi (Ghana), and Ile-Ife (Nigeria); - Radiosonde data from stations in Benin, Cameroon, Côte d'Ivoire, Ghana and Nigeria. During the June-July 2016 DACCIWA campaign, a day-to-day chart display software has been designed and operated in order to monitor meteorological and environment information and to meet the observational team needs: - Quickooks from DACCIWA-supersites instruments; - Atmospheric and chemical models outputs; - Satellite products (Eumetsat, TERRA-MODIS...). This website (http://dacciwa.sedoo.fr) constitutes now a synthetic view on the campaign and a preliminary investigation tool for researchers. Similar websites are still online for past campaigns : AMMA 2006 (http://aoc.amma-international.org) and FENNEC 2011 (http://fenoc.sedoo.fr). Since 2011, the same software enables a group of French and Senegalese researchers and forecasters to exchange in near real-time physical indices and diagnosis calculated from numerical weather operational forecasts, satellite products and in situ operational observations along the monsoon season, in order to better assess, understand and anticipate the monsoon intraseasonal variability (http://misva.sedoo.fr). Another similar website is dedicated to heat waves diagnosis and monitoring (http://acasis.sedoo.fr). It aims at becoming an operational component for national early warning systems. Every scientist is invited to make use of the BAOBAB online tools and data. Scientists or project leaders who have management needs for existing or future datasets concerning West Africa are welcome to use the BAOBAB framework . 2018-11-06 2021-08-25 +r3d100012893 vegetweb deu [{"additionalName": "das Vegetationsportal f\u00fcr Deutschland", "additionalNameLanguage": "deu"}] https://www.vegetweb.de/#!startseite [] ["dekan.auf@uni-rostock.de", "https://www.vegetweb.de/#!kontakt"] Database and data handling portal for vegetation data from Germany. eng ["disciplinary"] {"size": "117.451 plots; 2.472.601 observations;", "updatedp": "2018-11-12"} 2014 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.floraweb.de/vegetation/aufnahmen.html [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biological diversity", "habitat of plants", "nature conservation"] [{"institutionName": "Bundesamt f\u00fcr Naturschutz", "institutionAdditionalName": ["BfN", "Federal Agency for Nature Conservation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bfn.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bundesministerium f\u00fcr Umwelt, Naturschutz und nukleare Sicherheit", "institutionAdditionalName": ["BMU", "Federal Ministry for the Environment, Nature Conservation and Nuclear Safety"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmu.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Zentrum f\u00fcr integrative Biodiversit\u00e4tsforschung (iDiv) Halle-Jena-Leipzig", "institutionAdditionalName": ["German Centre for Integrative Biodiversity Research (iDiv) Halle-Jena-Leipzig"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.idiv.de/de.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hochschule Weihenstephan-Triesdorf", "institutionAdditionalName": ["Weihenstephan-Triesdorf University of Applied Sciences"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "https://www.hswt.de/", "responsibilityEndDate": "", "institutionContact": ["https://www.hswt.de/person/wf/joerg-ewald.html"]}, {"institutionName": "Martin-Luther-Universit\u00e4t Halle-Wittenberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-halle.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Greifswald", "institutionAdditionalName": ["University of Greifswald"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-greifswald.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Rostock", "institutionAdditionalName": ["University of Rostock"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-rostock.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen", "policyURL": "https://www.vegetweb.de/#!nutzungsbedingungen"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.vegetweb.de/home#!licenses_view"}] restricted [] ["unknown"] {} ["none"] https://www.vegetweb.de/home#!nutzungsbedingungen [] unknown unknown [] [] {} 2018-11-08 2021-10-05 +r3d100012894 LinkedEarth Wiki eng [] http://wiki.linked.earth ["biodbcore-001736"] ["linkedearth@gmail.com"] LinkedEarth is an EarthCube-funded project aiming to better organize and share Earth Science data, especially paleoclimate data. LinkedEarth facilitates the work of scientists by empowering them to curate their own data and to build new tools centered around those. eng ["disciplinary"] {"size": "700 data sets", "updatedp": "2018-11-16"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "31401 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://linked.earth/aboutus/governance/charter/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmosphere", "biosphere", "climate changes", "climatology", "corals", "earth history", "ice sheets", "microfossils", "paleoclimate data standards", "paleoclimatology", "physical geography", "rocks", "sediments", "shells", "tree rings"] [{"institutionName": "EarthCube", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": ["https://www.earthcube.org/contact/General-Inquiries"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Northern Arizona University, School of Earth Sciences and Environmental Sustainability", "institutionAdditionalName": ["NAU, School of Earth Sciences and Environmental Sustainability"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nau.edu/ses/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Nicholas.Mckay@nau.edu"]}, {"institutionName": "University of Southern California, Department of Earth Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://dornsife.usc.edu/earth/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["julieneg@usc.edu", "khider@usc.edu"]}, {"institutionName": "University of Southern California, Information Science Institute", "institutionAdditionalName": ["USC, Information Science Institute"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isi.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dgarijo@isi.edu", "https://www.isi.edu/contact/"]}] [{"policyName": "LinkedEarth Charter", "policyURL": "http://linked.earth/aboutus/governance/charter/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://wiki.linked.earth/Main_Page"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/us/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "http://wiki.linked.earth/Main_Page"}] restricted [{"dataUploadLicenseName": "Getting your data into LiPD", "dataUploadLicenseURL": "http://wiki.linked.earth/Linked_Paleo_Data"}] ["other"] yes {"api": "http://wiki.linked.earth/Dataset_discovery", "apiType": "other"} ["none"] http://wiki.linked.earth/PAGES2k ["ORCID"] yes yes [] [] {} 2018-11-09 2021-11-17 +r3d100012898 eHOMD eng [{"additionalName": "expanded Human Oral Microbiome Database", "additionalNameLanguage": "eng"}] http://www.homd.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.v3jf2q", "OMICS_29834", "RRID:SCR_012770", "RRID:nlx_22198"] ["fdewhirst@forsyth.org", "http://www.homd.org/modules.php?name=Article&toc=1&sid=27", "tchen@forsyth.org"] The goal of creating the Human Oral Microbiome Database (HOMD) is to provide the scientific community with comprehensive information o­n the approximately 700 prokaryote species that are present in the human oral cavity. Approximately 49% are officially named, 17% unnamed (but cultivated) and 34% are known o­nly as uncultivated phylotypes. The HOMD presents a provisional naming scheme for the currently unnamed species so that strain, clone, and probe data from any laboratory can be directly linked to a stably named reference scheme. The HOMD links sequence data with phenotypic, phylogenetic, clinical, and bibliographic information. Genome sequences for oral bacteria determined as part of this project, the Human Microbiome Project, and other sequencing projects are being added to the HOMD as they become available. Genomes for 315 oral taxa (46% of taxa o­n HOMD) are currently available o­n HOMD. The HOMD site offers easy to use tools for viewing all publically available oral bacterial genomes. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.homd.org/index.php [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ADT", "genomic data", "human aerpdogestove tract", "microbiota", "oral microbiome"] [{"institutionName": "Forsyth Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.forsyth.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Dental and Craniofacial Research", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nidcr.nih.gov/", "institutionIdentifier": ["RRID:SCR_012904", "RRID:nlx_inv_1005105"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "HOMD User Documentation", "policyURL": "http://www.homd.org/index.php?name=Article"}, {"policyName": "Hands on Guide to HOMD", "policyURL": "http://www.homd.org/download/guide/Hands_on_Guide_to_HOMD_20090330.ppt"}, {"policyName": "Research Focus", "policyURL": "https://forsyth.org/research-focus"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.homd.org/index.php"}] [] ["unknown"] yes {"api": "http://www.homd.org/ftp/", "apiType": "FTP"} ["none"] http://www.homd.org/index.php?name=Article&toc=1&sid=89 [] unknown unknown [] [] {} eHOMD is covered by Thomson Reuters Data Citation Index. 2018-11-13 2021-10-05 +r3d100012899 MODES eng [{"additionalName": "Modal view of atmospheric circulation", "additionalNameLanguage": "eng"}] http://modes.fmf.uni-lj.si [] ["fizika@fmf.uni-lj.si"] MODES focuses on the representation of the inertio-gravity circulation in numerical weather prediction models, reanalyses, ensemble prediction systems and climate simulations. The project methodology relies on the decomposition of global circulation in terms of 3D orthogonal normal-mode functions. It allows quantification of the role of inertio-gravity waves in atmospheric varibility across the whole spectrum of resolved spatial and temporal scales. MODES is compiled by using gfortran although other options have been succesfully tested. The application requires the use of the netcdf and (optionally) grib-api libraries. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.uni-lj.si/research_and_development/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Kelvin wave energetics", "circulation maps", "hovm\u00f6ller diagrams", "polar maps", "tropical zonal winds"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/280153", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "2016", "institutionContact": []}, {"institutionName": "University of Ljubljana, Faculty of Mathematics and Physics", "institutionAdditionalName": [], "institutionCountry": "SVN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-lj.si/study/bachelor/fmf/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["fizika@fmf.uni-lj.si", "matematika@fmf.uni-lj.si"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://modes.fmf.uni-lj.si"}] closed [] ["other"] {} ["none"] https://www.geosci-model-dev.net/8/1169/2015/gmd-8-1169-2015.html [] unknown unknown [] [] {} 2018-11-15 2021-08-24 +r3d100012900 Biofilm-active AMPs database eng [{"additionalName": "BaAMPs", "additionalNameLanguage": "eng"}] http://www.baamps.it/ ["OMICS_10516"] ["gpmaccari@gmail.com", "mariagrazia.diluca@nano.cnr.it"] BaAMPs is the first database dedicated to antimicrobial peptides (AMPs) specifically tested against microbial biofilms. The aim of this project is to provide useful resources for the study of AMPs against biofilms to microbiologist, bioinformatics researcher and medical scientist working in this field in an open-access framework. eng ["disciplinary"] {"size": "221 peptides; 1022 experimental data; 116 target microorganisms", "updatedp": "2019-02-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.baamps.it/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["AMP", "CLSM imaging", "antimoicrobial peptide", "biofilm", "peripheral membrane proteins"] [{"institutionName": "Consiglio Nazionale delle Ricerche, Istituto Nanoscienze", "institutionAdditionalName": ["CNR NANO"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nano.cnr.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Istituto Italiano di Tecnologia, Center for Nanotechnology Innovation", "institutionAdditionalName": ["IIT"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cni.iit.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scuola Normale Superiore, NEST", "institutionAdditionalName": ["National Enterprise for nanoScience and nanoTechnology", "SNS"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.laboratorionest.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e0 di Pisa", "institutionAdditionalName": ["University of Pisa"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.unipi.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "http://www.baamps.it/"}] restricted [] ["MySQL"] {} [] http://www.baamps.it/ [] yes unknown [] [] {} 2018-11-16 2019-02-26 +r3d100012901 Antimicrobial Peptide Database eng [{"additionalName": "APD", "additionalNameLanguage": "eng"}] http://aps.unmc.edu/AP/main.php ["FAIRsharing_doi:10.25504/FAIRsharing.ctwd7b", "OMICS_05706", "RRID:SCR_006606", "RRID:nif-0000-02553"] ["gwang@unmc.edu", "http://aps.unmc.edu/AP/contact.php"] The Antimicrobial Peptide Database (APD) was originally created by a graduate student, Zhe Wang, as his master's thesis in the laboratory of Dr. Guangshun Wang. The project was initiated in 2002 and the first version of the database was open to the public in August 2003. It contained 525 peptide entries, which can be searched in multiple ways, including APD ID, peptide name, amino acid sequence, original location, PDB ID, structure, methods for structural determination, peptide length, charge, hydrophobic content, antibacterial, antifungal, antiviral, anticancer, and hemolytic activity. Some results of this bioinformatics tool were reported in the 2004 database paper. The peptide data stored in the APD were gleaned from the literature (PubMed, PDB, Google, and Swiss-Prot) manually in over a decade. eng ["disciplinary"] {"size": "APD contains 3.058 antimicrobial peptides from six kingdoms (337 bacteriocins/peptide antibiotics from bacteria,5 from archaea, 8 from protists, 18 from fungi, 346 from plants, and 2.264 from animals, including some synthetic peptides)", "updatedp": "2019-02-26"} 2003 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://aps.unmc.edu/AP/about.php [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal", "bacteria", "fungus", "host defense peptides", "immune system", "plant", "protozoa"] [{"institutionName": "University of Nebraska Medical Center, Department of Pathology and Microbiology", "institutionAdditionalName": ["UNMC, Department of Pathology and Microbiology"], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unmc.edu/pathology/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://aps.unmc.edu/AP/contact.php"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://aps.unmc.edu/AP/about.php"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://aps.unmc.edu/AP/about.php"}] restricted [] ["unknown"] yes {} ["other"] http://aps.unmc.edu/AP/FAQ.php [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2018-11-16 2019-02-26 +r3d100012902 ArachnoServer eng [] http://www.arachnoserver.org/mainMenu.html ["FAIRsharing_doi:10.25504/FAIRsharing.c54ywe", "MIR:00000193", "OMICS_03117"] ["support@arachnoserver.org"] ArachnoServer is a manually curated database containing information on the sequence, three-dimensional structure, and biological activity of protein toxins derived from spider venom. Spiders are the largest group of venomous animals and they are predicted to contain by far the largest number of pharmacologically active peptide toxins (Escoubas et al., 2006). ArachnoServer has been custom-built so that a wide range of biological scientists, including neuroscientists, pharmacologists, and toxinologists, can readily access key data relevant to their discipline without being overwhelmed by extraneous information. eng ["disciplinary"] {"size": "1.561 toxins; 1.443 curated toxins; 100 species", "updatedp": "2019-02-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["spider toxins"] [{"institutionName": "EMBL Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.emblaustralia.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "QFAB BIOINFORMATICS", "institutionAdditionalName": ["Queensland Facility for Advanced Bioinformatics"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://qfab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Queensland, Institute for Molecular Bioscience", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://imb.uq.edu.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Manual", "policyURL": "http://www.arachnoserver.org/docs/ArachnoServerUserManual.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}] closed [] ["unknown"] {} ["other"] http://www.arachnoserver.org/mainMenu.html [] unknown yes [] [] {} Data from ArachnoServer is now being used to assist the curators at UniProtKB/Swiss‐Prot to provide the most up‐to‐date descriptions for spider toxin characterisation. The rational toxin names recommended in ArachnoServer are also being adopted by UniProtKB/Swiss‐Prot, and are directly searchable from their interface. 2018-11-16 2019-02-26 +r3d100012903 Antimicrobial Combination Networks eng [] http://www.sing-group.org/antimicrobialCombination/networks/view ["OMICS_14444"] ["http://www.sing-group.org/antimicrobialCombination/pages/about#support"] The database aims to bridge the gap between agent repositories and studies documenting the effect of antimicrobial combination therapies. Most notably, our primary aim is to compile data on the combination of antimicrobial agents, namely natural products such as AMP. To meet this purpose, we have developed a data curation workflow that combines text mining, manual expert curation and graph analysis and supports the reconstruction of AMP-Drug combinations. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.sing-group.org/antimicrobialCombination/pages/history [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["antimicrobial peptides (AMP)", "candida albicans", "drug", "escherichia coli", "gene", "listeria monocytogenes", "pathogenic organisms", "pseudomonas aeruginosa", "staphylococcus aureuas", "virulence mechanism"] [{"institutionName": "Sing Group", "institutionAdditionalName": ["Next Generation Computer Systems Group", "Sistemas Inform\u00e1ticos de Nueva Generaci\u00f3n"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.sing-group.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Minho, Centre of Biological Engineering", "institutionAdditionalName": ["CEB", "Universidade do Minho, Centro de Engenharia Biol\u00f3gica"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ceb.uminho.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ceb@ceb.uminho.pt"]}] [{"policyName": "License and disclaimer", "policyURL": "http://www.sing-group.org/antimicrobialCombination/pages/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.sing-group.org/antimicrobialCombination/pages/about"}] closed [] ["MySQL"] {} ["none"] http://www.sing-group.org/antimicrobialCombination/pages/about [] unknown unknown [] [] {} 2018-11-16 2019-02-26 +r3d100012909 Bjerknes Climate Data Centre eng [{"additionalName": "BCDC", "additionalNameLanguage": "eng"}] https://www.bcdc.no ["biodbcore-001592"] ["benjamin.pfeil@uib.no", "https://www.bcdc.no/contact.html"] The BCDC serves the research data obtained, and the data syntheses assembled, by researchers within the Bjerknes Centre for Climate Research. Furthermore it is open for all interested scientists independent of institution. All data from the different disciplines (e.g. geology, oceanography, biology, model community) will be archived in a long-term repository, interconnected and made publicly available by the BCDC. BCDC has collaborations with many international data repositories and actively archives metadata and data at those ensuring quality and FAIRness. BCDC has it's main focus on services for data management for external and internal funded projects in the field of climate research, provides data management plans and ensures that data is archived accordingly according to the best practices in the field. The data management services rank from project work for small external funded project to top-of-the-art data management services for research infrastructures on the ESFRI roadmap (e.g. RI ICOS – Integrated Carbon Observation System) and for provides products and services for Copernicus Marine Environmental Monitoring Services. In addition BCDC is advising various communities on data management services e.g. IOC UNESCO, OECD, IAEA and various funding agencies. BCDC will become an Associated Data Unit (ADU) under IODE, International Oceanographic Data and Information Exchange, a worldwide network that operates under the auspices of the Intergovernmental Oceanographic Commission of UNESCO and aims at becoming a part of ICSU World Data System. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.bcdc.no/about.html [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "climate change", "natural science", "research data"] [{"institutionName": "Havforskningsinstituttet", "institutionAdditionalName": ["Institute of Marine Research"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imr.no/nb-no", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["post@hi.no"]}, {"institutionName": "Nansen Environmental and Remote Sensing Center", "institutionAdditionalName": ["NERSC"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nersc.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Uni Research", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://uni.no/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://uni.no/en/contact-uni-research/"]}, {"institutionName": "University of Bergen, Bjerknes Centre for Climate Research", "institutionAdditionalName": ["Universitetet i Bergen, Bjerknessenteret for klimaforskning"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://bjerknes.uib.no/en/", "institutionIdentifier": [], "responsibilityStartDate": "2015-01-01", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Bergen, Bjerknes Climate Data Centre", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bcdc.no", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["post@bcdc.uib.no"]}] [{"policyName": "Data submission", "policyURL": "https://www.bcdc.no/submit.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Data submission", "dataUploadLicenseURL": "https://www.bcdc.no/submit.html"}] ["unknown"] {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2018-11-27 2021-11-16 +r3d100012910 DEIMS-SDR eng [{"additionalName": "Dynamic Ecological Information Management System - Site and Dataset Registry", "additionalNameLanguage": "eng"}] https://deims.org [] ["christoph.wohner@umweltbundesamt.at", "johannes.peterseil@umweltbundesamt.at"] DEIMS-SDR (Dynamic Ecological Information Management System - Site and dataset registry) is an information management system that allows you to discover long-term ecosystem research sites around the globe, along with the data gathered at those sites and the people and networks associated with them. DEIMS-SDR describes a wide range of sites, providing a wealth of information, including each site’s location, ecosystems, facilities, parameters measured and research themes. It is also possible to access a growing number of datasets and data products associated with the sites. All sites and dataset records can be referenced using unique identifiers that are generated by DEIMS-SDR. It is possible to search for sites via keyword, predefined filters or a map search. By including accurate, up to date information in DEIMS, site managers benefit from greater visibility for their LTER site, LTSER platform and datasets, which can help attract funding to support site investments. The aim of DEIMS-SDR is to be the globally most comprehensive catalogue of environmental research and monitoring facilities, featuring foremost but not exclusively information about all LTER sites on the globe and providing that information to science, politics and the public in general. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20710 Basic Forest Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://deims.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["catalogue of environmental research facilities", "long term observation", "long term research"] [{"institutionName": "Centre for Ecology & Hydrology", "institutionAdditionalName": ["CEH"], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceh.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ceh.ac.uk/about"]}, {"institutionName": "Umweltbundesamt", "institutionAdditionalName": ["Environment Agency Austria"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.umweltbundesamt.at/", "institutionIdentifier": [], "responsibilityStartDate": "2018-10-01", "responsibilityEndDate": "", "institutionContact": ["christoph.wohner@umweltbundesamt.at", "johannes.peterseil@umweltbundesamt.at"]}] [{"policyName": "DEIMS-SDR Terms of use", "policyURL": "https://deims.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [{"dataUploadLicenseName": "Data are shared openly", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] ["unknown"] yes {"api": "https://deims.org/pycsw/csw.py?mode=oaipmh&verb=Identify", "apiType": "OAI-PMH"} ["other"] https://deims.org/docs/deimsid.html#using-your-deims-id [] unknown unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Site information is shared using the INSPIRE EF data application schema. DEIMS-SDR is part of the eLTER Information System. Partner and funder: https://deims.org/about 2018-11-27 2019-02-27 +r3d100012911 RWTH Publications Research Data eng [{"additionalName": "RWTH Publications Forschungsdaten", "additionalNameLanguage": "deu"}] https://publications.rwth-aachen.de/collection/ResearchData?ln=de [] ["direktion@ub.rwth-aachen.de"] RWTH Publications Research Data offers all RWTH Aachen University affiliates the organizational and technical means to electronically document and publish research data at this institutional repository. Certainly, researchers are encouraged to prefer a subject specific repository whenever appropriate and available. RWTH Aachen University is the largest technical university in Germany and one of nine 'German Universities of Excellence' (elite university). The University library Aachen operates the repository as a member of the join community. eng ["institutional"] {"size": "319 research datasets", "updatedp": "2019-02-28"} 2015 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.rwth-aachen.de/cms/root/Forschung/Forschungsdatenmanagement/Forschungsdatenmanagement-an-der-RWTH/~ncfw/Leitlinie-zum-Forschungsdatenmanagement/?lidx=1 [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "RWTH Aachen, University Library", "institutionAdditionalName": ["RWTH Aachen UB", "RWTH Aachen, Universit\u00e4tsbibliothek", "RWTH UB"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ub.rwth-aachen.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policy des Dokumentenservers \"RWTH Publications\"", "policyURL": "http://www.ub.rwth-aachen.de/cms/~jeuy"}, {"policyName": "RWTH Publications Policy and Terms of Use", "policyURL": "http://www.ub.rwth-aachen.de/cms/UB/Forschung/Wissenschaftliches-Publizieren/RWTH-Publications/~jeuy/Policy-des-Dokumentenservers-RWTH-Publi/?lidx=1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.ub.rwth-aachen.de/cms/~jeuy"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://www.hbz-nrw.de/produkte/open-access/dipp/lizenzen/dppl/"}] restricted [] ["unknown"] yes {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2018-11-28 2021-07-28 +r3d100012912 National Coronial Information System eng [{"additionalName": "NCIS", "additionalNameLanguage": "eng"}] http://www.ncis.org.au/ ["FAIRsharing_DOI:10.25504/FAIRsharing.U9GXhB"] ["http://www.ncis.org.au/contact-us/general-enquiries/", "ncis@ncis.org.au"] The NCIS is a national database of information on every death reported to a coroner in Australia and New Zealand. It contains demographic information on the deceased, contextual information on the nature of the fatality and medico-legal documents including the coroner's finding, autopsy and toxicology reports and the police notification of death report. eng ["disciplinary"] {"size": "about 385.000 coronial case records", "updatedp": "2019-02-28"} 2000-07-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20512 Cardiology, Angiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ncis.org.au/ [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["causes of Death", "coronial data", "death", "death prevention", "mortality", "public health"] [{"institutionName": "Australian Commonwealth, Department of Health", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.health.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.health.gov.au/internet/main/publishing.nsf/Content/health-central.htm"]}, {"institutionName": "National Coronial Information", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ncis.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ncis@ncis.org.au"]}, {"institutionName": "Victoria State Government, Department of Justice and Regulation", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.justice.vic.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.justice.vic.gov.au/contact-us"]}] [{"policyName": "Request System Access \u2013 Researchers", "policyURL": "http://www.ncis.org.au/data-access/request-system-access/"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncis.org.au/about-us/copyright/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.ncis.org.au/data-access/data-privacy-protocols/"}] closed [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2018-11-29 2021-11-16 +r3d100012915 Data and Specimen Hub eng [{"additionalName": "DASH", "additionalNameLanguage": "eng"}, {"additionalName": "NICHD DASH", "additionalNameLanguage": "eng"}] https://dash.nichd.nih.gov/ ["FAIRsharing_DOI:10.25504/FAIRsharing.dYSI4O", "RRID:SCR_016314"] ["SupportDASH@mail.nih.gov"] The Eunice Kennedy Shriver National Institute of Child Health and Human Development (NICHD) Data and Specimen Hub (DASH) is a centralized resource that allows researchers to share and access de-identified data from studies funded by NICHD. DASH also serves as a portal for requesting biospecimens from selected DASH studies. eng ["disciplinary", "institutional"] {"size": "9,395 results", "updatedp": "2020-07-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "20521 Gynaecology and Obstetrics", "scheme": "DFG"}, {"name": "20522 Reproductive Medicine/Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://dash.nichd.nih.gov/Resource/Tutorial#overview [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["HIV/AIDS", "biomedical science", "biospecimens", "clinical studies", "critical care medicine", "data governance", "data management", "data submission, annotation, and curation", "demographics", "drug", "environmental samples", "medical trials", "musculoskeletal medicine", "obstetrics", "reproductive health"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, Eunice Kennedy Shriver National Institute of Child Health and Human Development", "institutionAdditionalName": ["NICHD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nichd.nih.gov/", "institutionIdentifier": ["ROR:04byxyr05", "RRID:SCR_011429", "RRID:nlx_inv_1005104"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NICHD Data and Specimen Hub \u2013 Policy and Procedures", "policyURL": "https://dash.nichd.nih.gov/resource/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://dash.nichd.nih.gov/resource/DASHUserAgreement"}] restricted [{"dataUploadLicenseName": "Submit Studies", "dataUploadLicenseURL": "https://dash.nichd.nih.gov/resource/submission"}] ["unknown"] {} [] [] yes yes [] [] {} 2018-12-05 2021-11-16 +r3d100012917 China National GeneBank DataBase eng [{"additionalName": "CNGBdb", "additionalNameLanguage": "eng"}, {"additionalName": "\u56fd\u5bb6\u57fa\u56e0\u5e93\u751f\u547d\u5927\u6570\u636e\u5e73\u53f0", "additionalNameLanguage": "zho"}] https://db.cngb.org/ ["FAIRsharing_doi: 10.25504/FAIRsharing.9btRvC"] ["NGB_DC@genomics.cn"] China National GeneBank DataBase (CNGBdb) is a unified platform built for biological big data sharing and application services to the research community. Based on the big data and cloud computing technologies, it provides data services such as archive, analysis, knowledge search, management authorization, and visualization. At present, CNGBdb has integrated large amounts of internal and external molecular data and other information from CNGB, NCBI, EBI, DDBJ, etc., indexed by search, covering 10 data structures. Moreover, CNGBdb correlates living sources, biological samples and bioinformatic data to realize the traceability of comprehensive data. CNGB Sequence Archive (CNSA) is a convenient and efficient archiving system of multi-omics data in life science of CNGBdb, which provides archiving services for raw sequencing reads and further analyzed results. CNSA follows the international data standards for omics data, and supports online and batch submission of multiple data types such as Project, Sample, Experiment/Run, Assembly, Variation, Metabolism, Single cell, Sequence. Its data submission service can be used as a supplement to the literature publishing process to support early data sharing. eng ["disciplinary"] {"size": "2.731 projects; 430.353 samples submitted by 120 institutions; 3937.9 TB", "updatedp": "2021-03"} 2018-10-25 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://db.cngb.org/about/ [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BLAST", "CDCP", "CNSA", "Cell-omics Data Coordinate Platform", "Codeplot", "Nucleotide Sequence Archive", "Scientific Research Application Databases", "Security Multi-Party Computation", "Virus Data Integration Platform", "VirusDIP", "animal database", "biological cloud computing", "data submission", "disease database", "genetic data", "genetic data security", "genome", "microbiome database", "plant database", "single cell", "virus database"] [{"institutionName": "China National GeneBank", "institutionAdditionalName": ["CNGB", "\u56fd\u5bb6\u57fa\u56e0\u5e93"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cngb.org/", "institutionIdentifier": ["ROR:03n9hr695"], "responsibilityStartDate": "2011-10", "responsibilityEndDate": "", "institutionContact": ["NGB_DC@genomics.cn"]}] [{"policyName": "Protection for data sharing, data security policy", "policyURL": "https://db.cngb.org/user_notice/"}, {"policyName": "Terms and conditions", "policyURL": "https://db.cngb.org/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://db.cngb.org/download/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://db.cngb.org/terms/"}] restricted [{"dataUploadLicenseName": "CNGB data access", "dataUploadLicenseURL": "https://db.cngb.org/data_access/"}] ["unknown"] {"api": "ftp://ftp.cngb.org/pub/CNSA/", "apiType": "FTP"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} is covered by Elsevier. Data standard: CNGBdb integrates data structures and standards of international omics, health, and medicine, such as The International Nucleotide Sequence Database Collaboration (INSDC), The Global Alliance for Genomics and Health GA4GH (GA4GH), Global Genome Biodiversity Network (GGBN), American College of Medical Genetics and Genomics (ACMG), and constructs standardized data standards and structures with wide compatibility. 2018-12-13 2021-09-02 +r3d100012918 KWTRP Research Data Repository Dataverse eng [{"additionalName": "KWTRP Research Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Kemri Wellcome Trust Research Programme Research Data Repository Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Kenya medical Research Institute Wellcome Trust Research Programme Research Data Repository Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/kwtrp [] ["https://dataverse.harvard.edu/dataverse/kwtrp"] This data repository hosts source and replication datasets for the Kemri Wellcome Trust Research Programme (KWTRP). eng ["institutional"] {"size": "6 dataverses; 34 datasets; 215 files", "updatedp": "2019-03-05"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20513 Pneumology, Clinical Infectiology Intensive Care Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bacteriums", "bioscience", "infectious diseases", "pneumonia", "population health", "rotavirus vaccination", "salmonella infection", "viral pathogens"] [{"institutionName": "KEMRI", "institutionAdditionalName": ["Kenya Medical Research Institute"], "institutionCountry": "KEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kemri.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kemri.org/index.php/ccr-overview/599-contact-us"]}, {"institutionName": "KEMRI Wellcome Trust", "institutionAdditionalName": ["Kenya Medical Research Institute Wellcome Trust"], "institutionCountry": "KEN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://kemri-wellcome.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://kemri-wellcome.org/contact/"]}, {"institutionName": "The Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}] [{"policyName": "Dataverse 4.8.3 guides", "policyURL": "http://guides.dataverse.org/en/latest/"}, {"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}, {"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} is part of Scholars Portal Dataverse. 2018-12-14 2019-03-05 +r3d100012920 Water Quality Portal eng [{"additionalName": "WQP", "additionalNameLanguage": "eng"}] https://www.waterqualitydata.us/ ["biodbcore-001698"] ["STORET@epa.gov", "https://www.waterqualitydata.us/contact_us/"] The Water Quality Portal (WQP) is a cooperative service sponsored by the United States Geological Survey (USGS), the Environmental Protection Agency (EPA) and the National Water Quality Monitoring Council (NWQMC) that integrates publicly available water quality data from the USGS National Water Information System (NWIS) the EPA STOrage and RETrieval (STORET) Data Warehouse, and the USDA ARS Sustaining The Earth’s Watersheds - Agricultural Research Database System (STEWARDS) . It serves water quality data collected by over 400 state, federal, tribal, and local agencies in the United States. As of July 2015, over 265 million results from over 2.2 million monitoring locations are currently accessible through the portal. The portal reports samples and results collected from each location since the beginning of the databases. eng ["disciplinary", "other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.waterqualitydata.us/wqp_description/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["USEPA STORET", "USGS NWIS", "water quality"] [{"institutionName": "National Water Quality Monitoring Council", "institutionAdditionalName": ["NWQMC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://acwi.gov/monitoring/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Geological Survey", "institutionAdditionalName": ["USGS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usgs.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Environmental Protection Agency", "institutionAdditionalName": ["EPA", "U.S. Environmental Protection Agency"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.epa.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Water Quality Portal User Guide", "policyURL": "https://www.waterqualitydata.us/portal_userguide/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.waterqualitydata.us/apps_using_portal/"}] restricted [{"dataUploadLicenseName": "Deposit", "dataUploadLicenseURL": "https://www.waterqualitydata.us/upload_data/"}] [] {"api": "https://www.waterqualitydata.us/webservices_documentation/", "apiType": "REST"} [] [] unknown yes [] [] {} 2018-12-18 2021-11-16 +r3d100012922 eLabour eng [{"additionalName": "FDZ eLabour", "additionalNameLanguage": "eng"}, {"additionalName": "Interdisciplinary center for qualitative research data from the sociology of work (eLabour)", "additionalNameLanguage": "eng"}, {"additionalName": "Interdisziplin\u00e4res Zentrum f\u00fcr qualitative arbeitssoziologische Forschungsdaten (FDZ eLabour)", "additionalNameLanguage": "deu"}] http://elabour.de/ [] ["http://elabour.de/kontakt/"] A number of sociological research institutions have worked together with partners from IT and the information sciences to establish a new research data infrastructure for qualitative research, the interdisciplinary center for qualitative research data from the sociology of work (eLabour). The infrastructure will be fully operational in early 2019. In addition, the center will expand its qualitative data pool and open up to external scientists. At the same time, IT-based processes and tools for qualitative data management are being developed to establish a competence center for professional qualitative research data management, which can provide support and services for a variety of scientific user groups. Research data are available as Scientific Use Files (SUF) and Campus Files (CF). List of available research data at 'Projects' page: http://elabour.de/sekundaeranalysen/projekte/ eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["microdata", "qualitative data", "qualitative studies"] [{"institutionName": "FDZ-BO am Deutschen Institut f\u00fcr Wirtschaftsforschung", "institutionAdditionalName": ["FDZ-BO at DIW"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://portal.fdz-bo.diw.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["TGebel@diw.de"]}, {"institutionName": "Forschungszentrum L3S", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.l3s.de/de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Niederee@l3s.de"]}, {"institutionName": "Friedrich-Schiller-Universit\u00e4t Jena, Institut f\u00fcr Soziologie", "institutionAdditionalName": ["IfS Jena"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.soziologie.uni-jena.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Jakob.Koester@uni-jena.de"]}, {"institutionName": "GWDG", "institutionAdditionalName": ["Gesellschaft f\u00fcr wissenschaftliche Datenverarbeitung mbH G\u00f6ttingen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gwdg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Philipp.Wieder@gwdg.de"]}, {"institutionName": "Institut f\u00fcr Sozialwissenschaftliche Forschung", "institutionAdditionalName": ["ISF M\u00fcnchen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.isf-muenchen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Sarah.Nies@isf-muenchen.de", "Wolfgang.Dunkel@isf-muenchen.de"]}, {"institutionName": "Nieders\u00e4chsische Staats- und Universit\u00e4tsbibliothek G\u00f6ttingen", "institutionAdditionalName": ["SUB G\u00f6ttingen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/sub-aktuell/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Brase@sub.uni-goettingen.de"]}, {"institutionName": "Soziologisches Forschungsinstitut G\u00f6ttingen", "institutionAdditionalName": ["SOFI"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.sofi.uni-goettingen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sofi@sofi.uni-goettingen.de"]}, {"institutionName": "Technische Universit\u00e4t Dortmund, Sozialforschungsstelle Dortmund", "institutionAdditionalName": ["sfs Dortmund"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sfs.tu-dortmund.de/cms/de/Aktuelles/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Hilf@sfs-dortmund.de"]}] [{"policyName": "Criteria of the German Data Forum (RatSWD) for the Establishment of Research Data Infrastructure", "policyURL": "http://www.share-project.org/fileadmin/pdf_documentation/RatSWD_FDZCriteria_1_.pdf"}, {"policyName": "Elabour Datenschutz", "policyURL": "http://elabour.de/forschung-und-entwicklung/datenschutz/"}, {"policyName": "Elabour Datenschutzkonzept", "policyURL": "http://elabour.de/wp-content/uploads/2017/10/Datenschutzkonzept_eLabour_V03_220319-oeffentlich.pdf"}, {"policyName": "Kriterien des RatSWD", "policyURL": "https://www.ratswd.de/dl/RatSWD_Output8_Qualitaetssicherung-FDZ.pdf#page=6"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://elabour.de/wp-content/uploads/2017/10/Datenschutzkonzept_eLabour_V03_220319-oeffentlich.pdf"}] restricted [{"dataUploadLicenseName": "Import", "dataUploadLicenseURL": "http://elabour.de/forschung-und-entwicklung/it-gestuetzte-qualitative-methoden-der-sekundaeranalyse/import/"}] [] {} ["none"] [] unknown unknown ["RatSWD"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-01-11 2019-11-08 +r3d100012923 Data Publication Server Forschungszentrum Jülich eng [{"additionalName": "Data Server", "additionalNameLanguage": "eng"}, {"additionalName": "DataPub Server", "additionalNameLanguage": "eng"}] https://datapub.fz-juelich.de [] ["ds-support@fz-juelich.de"] Data Publication Server Forschungszentrum Juelich is a web server for providing large data sets to the general public. It's main application is publishing data belonging to scientific publications. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.fz-juelich.de/ias/jsc/EN/AboutUs/Organisation/FederatedSystemsandData/DataServicesAndInfrastructure/_node.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Simulation Laboratory Climate Science SLCS", "Simulation Laboratory Terrestrial Systems SLTS", "climate change", "data simulation", "earth ecosystem", "earth observation", "supercomputing"] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@fz-juelich.de"]}, {"institutionName": "J\u00fclich Supercomputing Centre", "institutionAdditionalName": ["JSC"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de/ias/jsc/EN/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publish Data", "policyURL": "http://www.fz-juelich.de/ias/jsc/EN/AboutUs/Organisation/FederatedSystemsandData/DataServicesAndInfrastructure/_node.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] {} [] [] unknown unknown [] [] {} 2019-01-17 2020-09-02 +r3d100012924 Cancer in Young People in Canada eng [{"additionalName": "CCJC", "additionalNameLanguage": "fra"}, {"additionalName": "CYP-C", "additionalNameLanguage": "eng"}, {"additionalName": "Cancer Chez les Jeunes au Canada", "additionalNameLanguage": "fra"}] http://www.c17.ca/index.php?cID=70 [] ["Randy.Barber@ahs.ca"] The Cancer in Young People in Canada (CYP-C) surveillance program collects in-depth data concerning risk factors, health outcomes, quality and accessibility of care, and late effects among children and youth with cancer. CYP-C represents a collaboration involving the C17 Council, Canadian Partnerships Against Cancer (CPAC), Public Health Agency of Canada (PHAC), provincial and territorial cancer registries, Statistics Canada and non-governmental organizations. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20519 Dermatology", "scheme": "DFG"}, {"name": "20527 Traumatology and Orthopaedics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.canada.ca/en/public-health/services/chronic-diseases/cancer/cancer-young-people-canada-program.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["blood disorders", "health", "hematology", "leukemia", "oncology"] [{"institutionName": "C17-Council", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.c17.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.c17.ca/index.php?cID=77"]}, {"institutionName": "Canadian Partnership Against Cancer Corporation", "institutionAdditionalName": ["Partenariat canadien contre le cancer"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.partnershipagainstcancer.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.partnershipagainstcancer.ca/contact/"]}, {"institutionName": "Government of Canada, Public Health Agency of Canada", "institutionAdditionalName": ["Gouvernement du Canada, Agence de la sant\u00e9 publique du Canada", "PHAC"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.canada.ca/en/public-health.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CYP-C Data Use and Publication Guidelines", "policyURL": "http://www.c17.ca/files/7314/6558/5484/Pages%20from%20Full%20Executed_PHAC%20CYP-C_2Jan14.pdf"}, {"policyName": "Terms and conditions Government of Canada", "policyURL": "https://www.canada.ca/en/transparency/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.c17.ca/files/7314/6558/5484/Pages%20from%20Full%20Executed_PHAC%20CYP-C_2Jan14.pdf"}] restricted [] ["unknown"] {} ["none"] http://www.c17.ca/files/7314/6558/5484/Pages%20from%20Full%20Executed_PHAC%20CYP-C_2Jan14.pdf [] unknown yes [] [] {} partners: http://www.c17.ca/index.php?cID=73 2019-01-17 2019-03-05 +r3d100012925 Arch eng [{"additionalName": "Research and Data Repository", "additionalNameLanguage": "eng"}] http://arch.library.northwestern.edu/ ["ISSN: 2572-5653"] ["chris-diaz@northwestern.edu;", "digitalscholarship@northwestern.edu"] Arch is an open access repository for the research and scholarly output of Northwestern University. Log in with your NetID to deposit, describe, and organize your research for public access and long-term preservation. We'll use our expertise to help you curate, share, and preserve your work. eng ["institutional"] {"size": "", "updatedp": ""} 2017-01-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://arch.library.northwestern.edu/about?locale=en [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Northwestern University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.northwestern.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["digitalscholarship@northwestern.edu"]}] [{"policyName": "Data Management", "policyURL": "http://libguides.northwestern.edu/datamanagement"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://www.library.northwestern.edu/about/administration/policies/digital-preservation-policy.html"}, {"policyName": "Terms of Use", "policyURL": "http://arch.library.northwestern.edu/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/page/InC/1.0/?language=en"}] restricted [{"dataUploadLicenseName": "Submission Agreement", "dataUploadLicenseURL": "http://arch.library.northwestern.edu/agreement"}] ["Fedora", "other"] yes {} ["DOI"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-01-17 2019-03-05 +r3d100012926 Korea Polar Data Center eng [{"additionalName": "KPDC", "additionalNameLanguage": "eng"}] https://kpdcopen.kopri.re.kr [] ["kpdc@kopri.re.kr"] The Korea Polar Data Center (KPDC) is an organization dedicated for managing different types of data acquired during scientific research that South Korea carries out in Antarctic and Arctic regions. South Korea, as an Antarctic Treaty Consultative Party (ATCP) and an accredited member of the Scientific Committee on Antarctic Research (SCAR) established the Center in 2003 as part of its effort to joint international Antarctic research. eng ["disciplinary"] {"size": "28.402 datasets", "updatedp": "2020-07-24"} 2018-12-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://kpdcopen.kopri.re.kr/about/intro [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["antarctic region", "arctic region", "microorganisms", "polar data", "weather"] [{"institutionName": "Korea Polar Research Institute", "institutionAdditionalName": ["KOPRI"], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kopri.re.kr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Disclosure and Utilization", "policyURL": "https://kpdcopen.kopri.re.kr/policy/data-disclosure"}, {"policyName": "General provisions", "policyURL": "https://kpdcopen.kopri.re.kr/policy/general-provisions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"other\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://kpdc.kopri.re.kr/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://kpdc.kopri.re.kr/"}] restricted [] ["DSpace"] yes {} ["DOI"] https://kpdcopen.kopri.re.kr/policy/data-disclosure [] unknown unknown [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2019-01-18 2020-07-24 +r3d100012927 Data Commons eng [{"additionalName": "Explore, access and share: Penn State research data, big data, and metadata", "additionalNameLanguage": "eng"}, {"additionalName": "datacommons@psu", "additionalNameLanguage": "eng"}] http://www.datacommons.psu.edu/default.html [] ["datacommons@psu.edu", "http://www.datacommons.psu.edu/contact.html"] The datacommons@psu was developed in 2005 to provide a resource for data sharing, discovery, and archiving for the Penn State research and teaching community. Access to information is vital to the research, teaching, and outreach conducted at Penn State. The datacommons@psu serves as a data discovery tool, a data archive for research data created by PSU for projects funded by agencies like the National Science Foundation, as well as a portal to data, applications, and resources throughout the university. The datacommons@psu facilitates interdisciplinary cooperation and collaboration by connecting people and resources and by: Acquiring, storing, documenting, and providing discovery tools for Penn State based research data, final reports, instruments, models and applications. Highlighting existing resources developed or housed by Penn State. Supporting access to project/program partners via collaborative map or web services. Providing metadata development citation information, Digital Object Identifiers (DOIs) and links to related publications and project websites. Members of the Penn State research community and their affiliates can easily share and house their data through the datacommons@psu. The datacommons@psu will also develop metadata for your data and provide information to support your NSF, NIH, or other agency data management plan. eng ["institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20301 Systematics and Morphology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.datacommons.psu.edu/about.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "Penn State Institute for CyberScience", "institutionAdditionalName": ["ICS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ics.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ics@psu.edu"]}, {"institutionName": "Penn State Institutes of Energy & Environment", "institutionAdditionalName": ["IEE"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iee.psu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["iee@psu.edu"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}] restricted [] ["unknown"] {"api": "http://www.datacommons.psu.edu/questions.pdf", "apiType": "FTP"} ["DOI"] http://www.datacommons.psu.edu/commonswizard/FullMetadataDisplay.aspx?file=Metabolomics_Coralpos.xml [] unknown yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2019-01-21 2020-07-24 +r3d100012928 MicroScope eng [{"additionalName": "Microbial Genome Annotation & Analysis Platform", "additionalNameLanguage": "eng"}] http://www.genoscope.cns.fr/agc/microscope/home/index.php ["FAIRsharing_DOI: 10.25504/FAIRsharing.3t5qc3"] ["mage@genoscope.cns.fr"] The MicroScope platform is an informatics infrastructure dedicated to the annotation and comparative analysis of microbial genomes and metagenomes. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.genoscope.cns.fr/agc/microscope/about/index.php?&wwwpkgdb=c76cfb2d02a51046820e7bef31dccd21 [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["MicroCyc", "PkGDB, Prokaryotic Genome Database", "bioinformatics", "comperative genomics", "expression analysis", "microbiology", "nucleid sequences", "protein -coding genes", "systems biology"] [{"institutionName": "Centre national de la recherche scientifique", "institutionAdditionalName": ["CNRS", "French National Centre for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": ["ROR:02feahw73", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Genopole", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://join-the-biocluster.genopole.fr/A-Business-Accelerator.html?lang=fr#.XH56xPVCeUk", "institutionIdentifier": ["ROR:0380k9k47", "RRID:SCR_004333", "RRID:nlx_35123"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Infrastructures en Biologie Sant\u00e9 et Agronomie", "institutionAdditionalName": ["IBISA"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ibisa.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de biologie Fran\u00e7ois Jacob", "institutionAdditionalName": ["Fran\u00e7ois Jacob Institute of biology"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.cea.fr/drf/ifrancoisjacob", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Laboratory of Bioinformatics Analyses for Genomics and Metabolism", "institutionAdditionalName": ["LABGeM", "Laboratoire d'Analyses Bioinformatiques pour Genomique et le Metabolisme"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://labgem.genoscope.cns.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Minist\u00e8re de l\u02bcEnseignement sup\u00e9rieur, de la Recherche et de l\u02bcInnovation", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.enseignementsup-recherche.gouv.fr/", "institutionIdentifier": ["ROR:03sjk9a61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "MicroScope Charter", "policyURL": "http://www.genoscope.cns.fr/agc/microscope/about/microscopecharter.php"}, {"policyName": "Terms of Use", "policyURL": "http://www.genoscope.cns.fr/agc/microscope/about/termsofuse.php"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] {} ["none"] http://www.genoscope.cns.fr/agc/microscope/about/microscopecharter.php [] unknown unknown ["other"] [] {"syndication": "https://microscope.readthedocs.io/en/stable/content/overview/latestnews.html", "syndicationType": "RSS"} 2019-01-22 2020-07-29 +r3d100012929 Oxford Brookes University: RADAR eng [] https://radar.brookes.ac.uk/radar [] ["radar@brookes.ac.uk."] RADAR (Research And Digital Assets Repository) is the institutional repository of Oxford Brookes University. The role of RADAR is to share the intellectual product of Oxford Brookes freely and openly with the staff and students of Oxford Brookes or with the global academic and public community. ​RADAR has a variety of research collections (primarily containing original research publications) and teaching collections (primarily containing resources that support teaching at Oxford Brookes University). Some of the collections​ and resources on RADAR are freely accessible to the general public and other collections​ and resources are only accessible by current Oxford Brookes staff and students. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://doi.org/10.24384/g2k3-sm81 [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Oxford Brookes University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.brookes.ac.uk/", "institutionIdentifier": ["ROR:04v2twj65", "RRID:SCR_011481", "RRID:nlx_158288"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publishing research data", "policyURL": "https://www.brookes.ac.uk/library/research/publishing-research-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] yes {"api": "https://radar.brookes.ac.uk/radar/oai", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes unknown [] [] {} 2019-01-22 2020-10-07 +r3d100012930 SinMin eng [] https://osf.io/a5quv/ [] ["nisansa@cse.mrt.ac.lk"] Sinmin contains texts of different genres and styles of the modern and old Sinhala language. The main sources of electronic copies of texts for the corpus are online Sinhala newspapers, online Sinhala news sites, Sinhala school textbooks available in online, online Sinhala magazines, Sinhala Wikipedia, Sinhala fictions available in online, Mahawansa, Sinhala Blogs, Sinhala subtitles and Sri lankan gazette. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://github.com/CenterForOpenScience/cos.io/blob/master/PRIVACY_POLICY.md [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["CORPUS LINGUISTICS", "LOCALISATION", "NATURAL LANGUAGE PROCESSING", "RESOURCE POOR LANGUAGE", "SINHALA CORPUS", "language corpus", "language patterns"] [{"institutionName": "Center for Open Science", "institutionAdditionalName": ["COS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://cos.io/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cos.io/contact/"]}, {"institutionName": "Open Science Framework", "institutionAdditionalName": ["OSF"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://osf.io/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@osf.io"]}, {"institutionName": "University of Moratuwa, Department of Computer Science and Engineering", "institutionAdditionalName": ["CSE"], "institutionCountry": "LKA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cse.mrt.ac.lk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "TERMS AND CONDITIONS OF USE", "policyURL": "https://github.com/CenterForOpenScience/cos.io/blob/master/TERMS_OF_USE.md"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://osf.io/a5quv/"}] closed [] ["other"] {"api": "https://api.osf.io/v2/", "apiType": "REST"} [] https://osf.io/a5quv/ ["ORCID"] no unknown [] [] {} https://de.slideshare.net/cdwijayarathna/sinmin-sinhala-corpus-project-thesis. --- Source codes of the each components we developed are available at Github at https://github.com/sinmin/core. 2019-01-23 2020-09-10 +r3d100012931 IISH Dataverse eng [{"additionalName": "International Institute of Social History Dataverse", "additionalNameLanguage": "eng"}] https://datasets.iisg.amsterdam/ [] ["https://socialhistory.org/en/contact"] The IISH Dataverse contains micro-, meso-, and macro-level datasets on social and economic history. eng ["disciplinary"] {"size": "40 dataverses; 244 datasets; 4.218 files", "updatedp": "2020-07-29"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://iisg.amsterdam/en/about [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["historical gis", "labour relations", "labour unions", "strikes", "work"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Institute of Social History", "institutionAdditionalName": ["IISG", "Internationaal Instituut voor Sociale Geschiedenis"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://iisg.amsterdam/nl", "institutionIdentifier": ["ROR:05dq4pp56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["richard.zijdeman@iisg.nl", "rombert.stapel@iisg.nl"]}] [{"policyName": "Copyrights", "policyURL": "https://iisg.amsterdam/en/collections/using/reproductions#copyrights"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/07/International-Institute-of-Social-History-IISH.pdf"}, {"policyName": "Rules concerning consultation", "policyURL": "https://iisg.amsterdam/en/collections/using/rules-concerning-consultation?back-link=1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://iisg.amsterdam/en/collections/using/reproductions#copyrights"}] restricted [] ["DataVerse"] yes {"api": "http://api.socialhistoryservices.org/solr/all/oai?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2019-01-28 2022-01-03 +r3d100012932 IIASA DARE eng [] https://dare.iiasa.ac.at/ [] ["repository@iiasa.ac.at"] IIASA DARE is the institutional repository for publishing open research data produced by all researchers affiliated with IIASA - International Institute for Applied Systems Analysis. IIASA has been implemented to help scientists fulfill the requirements from funding bodies and to meet the growing impact of publishing research data. The deposited data will receive a persistent, citable link and it will be openly accessible and stored for the long term. eng ["disciplinary"] {"size": "20 items", "updatedp": "2020-10-07"} 2019-02-04 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["air quality", "ecosystems", "energy", "greenhouse gases", "world population"] [{"institutionName": "International Institute for Applied Systems Analaysis", "institutionAdditionalName": ["IIASA"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.iiasa.ac.at/", "institutionIdentifier": ["ROR:02wfhk785"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Repository Policies", "policyURL": "https://dare.iiasa.ac.at/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://dare.iiasa.ac.at/policies.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"}] restricted [{"dataUploadLicenseName": "Repository policies - Submission Policy", "dataUploadLicenseURL": "https://dare.iiasa.ac.at/policies.html"}] ["EPrints"] yes {"api": "http://dare.iiasa.ac.at/cgi/oai2", "apiType": "OAI-PMH"} [] [] yes unknown [] [] {"syndication": "https://dare.iiasa.ac.at/cgi/latest_tool", "syndicationType": "RSS"} 2019-01-29 2021-09-03 +r3d100012934 DWB BioCASe Data Publication pipeline and RDF service deu [{"additionalName": "Bavarian Natural History Collections - occurrence data", "additionalNameLanguage": "eng"}, {"additionalName": "SNSB", "additionalNameLanguage": "deu"}] http://www.snsb.info/dwb_biocase.html [] ["it-center@snsb.de", "triebel@snsb.de"] Our research focuses mainly on the past and present bio- and geodiversity and the evolution of animals and plants. The Information Technology Center of the Staatliche Naturwissenschaftliche Sammlungen Bayerns is the institutional repository for scientific data of the SNSB. Its major tasks focus on the management of bio- and geodiversity data using different kinds of information technological structures. The facility guarantees a sustainable curation, storage, archiving and provision of such data. eng ["institutional"] {"size": "53 datasources or datasets", "updatedp": "2020-10-07"} 2006-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.snsb.info/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["Diversity Workbench", "anthropology", "biodiversity", "botany", "geodiversity", "geology", "mineralogy", "mycology", "paleoanatomy", "paleontology", "zoology"] [{"institutionName": "German Federation for Biological Data", "institutionAdditionalName": ["GFBio", "Gesellschaft f\u00fcr Biologische Daten e.V."], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfbio.org/gfbio_ev", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["info@gfbio.org"]}, {"institutionName": "Global Biodiversity Information Facility", "institutionAdditionalName": ["GBIF"], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.gbif.org/", "institutionIdentifier": ["ROR:05fjyn938"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": ["helpdesk@gbif.org"]}, {"institutionName": "Staatliche Naturwissenschaftliche Sammlungen Bayerns, SNSB IT-Zentrum", "institutionAdditionalName": ["SNSB IT Center"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.snsb.info/", "institutionIdentifier": [], "responsibilityStartDate": "2006", "responsibilityEndDate": "", "institutionContact": ["it-center@snsb.de"]}] [{"policyName": "Impressum", "policyURL": "http://www.snsb.info/Impressum.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://search.creativecommons.org/"}] restricted [] ["other"] yes {} ["DOI", "URN"] https://www.gbif.org/citation-guidelines [] unknown yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} With that pipeline more than 14 million data records with UnitIDs are accessible through the GBIF portal, https://www.gbif.org/ The BioCASe Downloads Counter for GBIF lists the downloads of data from GBIF data publishers with BioCASe software installation. 2015-10-27 2020-10-07 +r3d100012935 EURO-CORDEX 1989-2018 using TerrSysMP eng [{"additionalName": "EUR-11 evaluation simulations with TerrSysMP", "additionalNameLanguage": "eng"}] https://datapub.fz-juelich.de/slts/cordex/index.html [] ["c.furusho@fz-juelich.de", "https://datapub.fz-juelich.de/slts/cordex/index.html#contact"] Applying the Terrestrial Systems Modeling Platform, TerrSysMP, this dataset consists of the first simulated long-term (1989-2018), high-resolution (~12.5km) terrestrial system climatology over Europe, which comprises variables from groundwater across the land surface to the top of atmosphere (G2A). This data set constitutes a near-natural realization of the European terrestrial system, which cannot be obtained from observations, and can, thus, serve as a reference for global change simulations including human water use and climate change. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://datapub.fz-juelich.de/slts/index.html [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["SLTS", "Simulation Laboratory 'Terrestrial Systems'", "TSMP", "Terrestrial Systems Modeling Platform", "atmosphere", "climatology", "groundwater", "land-surface", "simulation"] [{"institutionName": "Centre of Excellence HPSC TerrSys, Simulation Laboratory Terrestrial Systems", "institutionAdditionalName": ["SLTS", "SimLab TerrSys"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/hpsc-terrsys/EN/Home/simulation_lab/simlab_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["FZ J\u00fclich"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fz-juelich.de/portal/EN/AboutUs/get-in-touch/_node.html"]}, {"institutionName": "Forschungszentrum J\u00fclich, Institute for Advanced Simulation, J\u00fclich Supercomputing Centre", "institutionAdditionalName": ["IAS, JSC"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/ias/jsc/EN/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fz-juelich.de/ias/jsc/EN/AboutUs/Contacts/contacts_node.html"]}] [{"policyName": "Data Protection", "policyURL": "https://www.fz-juelich.de/portal/EN/dataprotection/_node.html"}, {"policyName": "Legal notes", "policyURL": "https://datapub.fz-juelich.de/slts/cordex/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] {"api": "https://datapub.fz-juelich.de/slts/cordex/data/", "apiType": "NetCDF"} ["none"] [] unknown unknown [] [] {} The data from EUR-11 are stored in "Data Publication Server Forschungszentrum Jülich" https://www.re3data.org/repository/r3d100012923 About Jülich Supercomputing Centre see: https://www.fz-juelich.de/ias/jsc/EN/AboutUs/Organisation/FederatedSystemsandData/DataServicesAndInfrastructure/_node.html About CORDEX data see: https://cordex.org/data-access/how-to-access-the-data/ About EURO-CORDEX data see: https://www.euro-cordex.net/060378/index.php.en 2019-02-05 2021-06-16 +r3d100012936 IOWDB eng [{"additionalName": "Die ozeanographische Datenbank des IOW", "additionalNameLanguage": "deu"}, {"additionalName": "The Oceanographic Database of IOW", "additionalNameLanguage": "eng"}] https://www.io-warnemuende.de/en_iowdb.html [] ["odin@io-warnemuende.de"] The IOWDB was designed for the particular requirements of the Leibniz Institute for Baltic Sea Research. It is aimed at the management of historical and recent measurement of the IOW (to some extend of other data, too) and to provide them in a user-friendly way via the research tool ODIN (Oceanographic Database research with Interactive Navigation). eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-11 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.io-warnemuende.de/en_iowdb.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Baltic Sea", "MARNET", "ODIN 2", "atmosphere", "climate", "environment", "geographic areas", "hydrography", "meteorology", "ocean salinity", "temperature"] [{"institutionName": "Leibniz-Institut f\u00fcr Ostseeforschung Warnem\u00fcnde", "institutionAdditionalName": ["IOW", "Leibniz-Institute for Baltic Sea Research"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.io-warnemuende.de/", "institutionIdentifier": ["ROR:03xh9nq73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.io-warnemuende.de/kontakt.html"]}] [{"policyName": "IOW Data Policy", "policyURL": "https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Data Access and Licenses", "dataUploadLicenseURL": "https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf"}] ["unknown"] {"api": "https://www.io-warnemuende.de/en_iowdb.html", "apiType": "NetCDF"} ["DOI"] https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf [] yes unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-02-06 2020-10-07 +r3d100012937 IOW Data Portal eng [{"additionalName": "IOW Datenportal", "additionalNameLanguage": "deu"}] https://www.io-warnemuende.de/data-portal.html ["biodbcore-001597"] ["https://www.io-warnemuende.de/contact.html"] Data are the key to successful scientific work. A sophisticated data management will guarantee the long-term availability of observational data and metadata, and will allow for an easy data search and retrieval, to supplement the international data exchange and to provide data products for scientific, political, industrial and public stakeholders. eng ["institutional"] {"size": "62.187 datasets;", "updatedp": "2020-10-08"} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.io-warnemuende.de/research-programme.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["Baltic sea", "biological oceanography", "marine biology", "marine chemistry", "marine geology", "physical oceanography", "phyto- and zooplankton", "vessels"] [{"institutionName": "Leibniz-Institut f\u00fcr Ostseeforschung Warnem\u00fcnde", "institutionAdditionalName": ["IOW", "Leibniz Institute for Baltic Sea Research Warnem\u00fcnde"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.io-warnemuende.de/", "institutionIdentifier": ["ROR:03xh9nq73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "IOW Data Policy", "policyURL": "https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] {"api": "https://www.io-warnemuende.de/en_iowdb.html", "apiType": "NetCDF"} ["DOI"] https://www.io-warnemuende.de/tl_files/forschung/mediathek/iowdb/IOWDataPolicy_20180411.pdf [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-02-06 2021-11-16 +r3d100012938 Nova Scotia Government's Open Data Portal eng [] https://data.novascotia.ca/ [] ["https://novascotia.ca/opendata/contact-us/"] Making government data easier to access for individuals, businesses, and researchers. eng ["other"] {"size": "", "updatedp": ""} 2016-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["business", "community", "economy", "environment", "government administration", "nature", "social services"] [{"institutionName": "Government of Nova Scotia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://beta.novascotia.ca/", "institutionIdentifier": ["ROR:03zx5da06"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://beta.novascotia.ca/contact-us"]}, {"institutionName": "Socrata", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "commercial", "institutionURL": "https://socrata.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://socrata.com/contact-us/"]}] [{"policyName": "Nova Scotia Government Terms of Use", "policyURL": "https://novascotia.ca/terms/"}, {"policyName": "Socrata Platform Terms of Service", "policyURL": "https://socrata.com/terms-of-service/"}, {"policyName": "The Government of Nova Scotia Open Data Portal Terms of Use", "policyURL": "https://novascotia.ca/opendata/terms.asp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://novascotia.ca/opendata/licence.asp"}] restricted [] ["unknown"] {"api": "https://dev.socrata.com/publishers/", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-02-07 2021-06-16 +r3d100012939 Prince Edward Island Government Open Data Portal eng [] https://data.princeedwardisland.ca/browse [] ["opendata@gov.pe.ca"] Making government data available, accessible, and re-usable. eng ["other"] {"size": "203 results", "updatedp": "2020-10-08"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.princeedwardisland.ca/en/information/finance/open-data-principles [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["community", "education", "environment", "food", "health", "transportation"] [{"institutionName": "Prince Edward Island Government", "institutionAdditionalName": ["Gouvernement de l'\u00cele-du-Prince-\u00c9douard", "PEI"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.princeedwardisland.ca/en", "institutionIdentifier": ["ROR:03px70152"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.princeedwardisland.ca/en/information/contact-us"]}] [{"policyName": "Ten Principles For Opening Up Government Information", "policyURL": "https://sunlightfoundation.com/policy/documents/ten-open-data-principles/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://www.princeedwardisland.ca/en/information/finance/open-government-licence-prince-edward-island"}] closed [] ["CKAN"] {"api": "https://open.canada.ca/en/working-data#toc92", "apiType": "REST"} ["none"] https://www.princeedwardisland.ca/en/information/finance/open-government-licence-prince-edward-island [] no unknown [] [] {} 2019-02-07 2020-10-08 +r3d100012940 Newfoundland and Labrador Open Data eng [] https://opendata.gov.nl.ca/ [] ["OPE@gov.nl.ca"] The Newfoundland and Labrador Open Data repository increases access to government information and data. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://open.gov.nl.ca/commitment.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["census", "demographics", "government information", "justice", "law", "public health", "public safety", "transportation"] [{"institutionName": "Government of Newfoundland and Labrador", "institutionAdditionalName": ["TNL", "Terre-Neuve Labrador"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gov.nl.ca/", "institutionIdentifier": ["ROR:01jet5b79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@gov.nl.ca"]}] [{"policyName": "Disclaimer", "policyURL": "https://opendata.gov.nl.ca/public/opendata/page/?page-id=disclaimer"}, {"policyName": "Open Government Initiative Framework", "policyURL": "https://open.gov.nl.ca/pdf/OpenGovernmentInitiativeFramework.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://opendata.gov.nl.ca/public/opendata/page/?page-id=licence"}] restricted [] [] yes {} ["none"] [] unknown yes [] [] {} 2019-02-07 2020-10-08 +r3d100012941 Données Québec fra [] https://www.donneesquebec.ca/recherche/fr/dataset [] ["https://www.donneesquebec.ca/contact/"] An open data sharing platform resulting from collaboration between cities and the Government of Quebec. eng ["other"] {"size": "", "updatedp": ""} 2016 ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.donneesquebec.ca/fr/en-savoir-plus/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["business", "culture", "education", "employment", "environment", "family", "finance", "health", "justice", "natural resources", "public safety", "town"] [{"institutionName": "Qu\u00e9bec", "institutionAdditionalName": ["Gouvernement du Qu\u00e9bec"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.quebec.ca/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines on the dissemination of open data", "policyURL": "https://www.donneesquebec.ca/fr/lignes-directrices-sur-la-diffusion-de-donnees-ouvertes/"}, {"policyName": "Standards established for the dissemination of open data by Qu\u00e9bec Data partners", "policyURL": "https://www.donneesquebec.ca/fr/normes-etablies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.donneesquebec.ca/fr/licence/"}] restricted [] ["CKAN"] {"api": "https://www.donneesquebec.ca/recherche/api/3/action/package_search?q=pompier", "apiType": "REST"} [] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {"syndication": "https://www.donneesquebec.ca/recherche/fr/feeds/custom.atom?sort=metadata_created+desc", "syndicationType": "ATOM"} Paticipants: https://www.donneesquebec.ca/recherche/fr/organization 2019-02-07 2021-06-16 +r3d100012943 Ontario Open Government Data eng [] https://www.ontario.ca/search/data-catalogue [] ["https://www.ontario.ca/feedback/contact-us"] This purpose of this repository is to share Ontario's government data sets online to increase transparency and accountability. We're adding to the hundreds of records we’ve released so far to create an inventory of known government data. Data will either be open, restricted, under review or in the process of being made open, depending on the sensitivity of the information. eng ["other"] {"size": "2.746 results, more than 800 open data sets", "updatedp": "2020-10-14"} 2016-04 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.ontario.ca/page/sharing-government-data [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["arts", "benefits", "community", "culture", "driving", "education", "employment", "energy", "environment", "government", "health", "jobs", "law", "recreation", "roads", "rural area", "safety", "taxes", "travel", "wellness"] [{"institutionName": "Ministry of Government and Consumer Services", "institutionAdditionalName": ["Minist\u00e8re des Services gouvernementaux et des Services aux consommateurs"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/ministry-government-and-consumer-services", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ontario.ca/feedback/contact-us?id=26922&nid=72703"]}, {"institutionName": "Ontario Public Service", "institutionAdditionalName": ["FPO", "OPS", "fonction publique de l\u2019Ontario"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/page/about-ontario-public-service", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Ontario\u2019s Open Data Directive", "policyURL": "https://www.ontario.ca/page/ontarios-open-data-directive"}, {"policyName": "Open Data Charter", "policyURL": "https://opendatacharter.net/"}, {"policyName": "Open Data Guidebook", "policyURL": "https://www.ontario.ca/document/open-data-guidebook-guide-open-data-directive-2015"}, {"policyName": "Terms of use", "policyURL": "https://www.ontario.ca/page/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ontario.ca/page/copyright-information-c-queens-printer-ontario"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.ontario.ca/page/open-government-licence-ontario"}] closed [] ["unknown"] {} ["none"] ["none"] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-02-07 2021-06-16 +r3d100012944 Government of Alberta Open Datasets eng [{"additionalName": "Alberta Open Data", "additionalNameLanguage": "eng"}] https://open.alberta.ca/opendata [] ["https://www.alberta.ca/contact.cfm", "jsg.servicehmq@gov.ab.ca"] The open government portal is a collection of datasets and publications by government departments and agencies. The public can use and access this data freely to learn more about how government works, carry out research or build web apps. The portal functions as both a library for current publications and as an archive for old publications which have historic value. eng ["other"] {"size": "2.783 results", "updatedp": "2020-10-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.alberta.ca/open-government-program.aspx [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "arts", "business", "community", "culture", "demography", "economy", "employment", "energy resources", "finance", "history", "industry", "labour", "natural resources", "population", "statistics"] [{"institutionName": "Alberta Government", "institutionAdditionalName": ["Government of Alberta"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.alberta.ca/index.aspx", "institutionIdentifier": ["ROR:006b2g567"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.alberta.ca/contact.cfm"]}] [{"policyName": "Open Government Licence - Adoption Guidelines", "policyURL": "https://open.alberta.ca/documentation/open-government-licence-adoption-guidelines"}, {"policyName": "Open Government Licence \u2013 Alberta", "policyURL": "https://open.alberta.ca/documentation/ogp-licence"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://open.alberta.ca/licence"}] restricted [] ["CKAN"] no {"api": "http://open.alberta.ca/api", "apiType": "FTP"} ["none"] https://open.alberta.ca/licence [] unknown unknown [] [] {"syndication": "https://open.alberta.ca/feeds/custom.atom?", "syndicationType": "ATOM"} 2019-02-07 2021-08-24 +r3d100012945 DataBC eng [{"additionalName": "British Columbia Data Catalogue", "additionalNameLanguage": "eng"}] https://data.gov.bc.ca/ [] ["NRSApplications@gov.bc.ca", "https://forms.gov.bc.ca/databc-contact-us/"] The B.C. Data Catalogue provides the easiest access to government's data holdings, as well as applications and web services. Thousands of the datasets discoverable in the Catalogue are available under the Open Government License - British Columbia. eng ["other"] {"size": "3045 datasets", "updatedp": "2020-10-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www2.gov.bc.ca/gov/content/data/about-data-management/databc [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["economy", "environment", "historic trail", "mineral", "wildlife"] [{"institutionName": "British Columbia", "institutionAdditionalName": ["gov.bc.ca"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.gov.bc.ca/gov/content/home", "institutionIdentifier": ["ROR:011e3e176"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Government Licence - British Columbia", "policyURL": "https://www2.gov.bc.ca/gov/content/data/open-data/open-government-licence-bc"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://www2.gov.bc.ca/gov/content/data/open-data/open-government-licence-bc?keyword=open&keyword=government&keyword=license"}] restricted [] ["CKAN"] {"api": "https://docs.ckan.org/en/latest/api/index.html#api-examples", "apiType": "REST"} [] https://www2.gov.bc.ca/gov/content/data/open-data/open-government-licence-bc?keyword=open&keyword=government&keyword=license [] unknown unknown [] [] {"syndication": "https://catalogue.data.gov.bc.ca/feeds/recent.rss", "syndicationType": "RSS"} DataBC is covered by Clarivate Data Citation Index. 2019-02-07 2021-08-24 +r3d100012946 BAliBASE eng [{"additionalName": "Benchmark Alignment dataBASE", "additionalNameLanguage": "eng"}] http://lbgi.fr/balibase/ ["FAIRsharing_doi:10.25504/FAIRsharing.sed5tq", "OMICS_00971", "RRID:SCR_001940", "RRID:nif-0000-02594"] ["thompson@unistra.fr"] A collection of high quality multiple sequence alignments for objective, comparative studies of alignment algorithms. The alignments are constructed based on 3D structure superposition and manually refined to ensure alignment of important functional residues. A number of subsets are defined covering many of the most important problems encountered when aligning real sets of proteins. It is specifically designed to serve as an evaluation resource to address all the problems encountered when aligning complete sequences. The first release provided sets of reference alignments dealing with the problems of high variability, unequal repartition and large N/C-terminal extensions and internal insertions. Version 2.0 of the database incorporates three new reference sets of alignments containing structural repeats, trans-membrane sequences and circular permutations to evaluate the accuracy of detection/prediction and alignment of these complex sequences. Within the resource, users can look at a list of all the alignments, download the whole database by ftp, get the "c" program to compare a test alignment with the BAliBASE reference (The source code for the program is freely available), or look at the results of a comparison study of several multiple alignment programs, using BAliBASE reference sets. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multiple alignments", "structural genomics"] [{"institutionName": "University of Strasbourg", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unistra.fr/index.php?id=accueil", "institutionIdentifier": ["ROR:00pg6eq24", "RRID:SCR_011704"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/pubmed/16044462"}] restricted [] ["other"] yes {} [] [] unknown unknown [] [] {} 2019-02-11 2021-10-25 +r3d100012948 Halifax Open Data eng [] http://catalogue-hrm.opendata.arcgis.com/ [] ["opendata@halifax.ca"] As part of Halifax Regional Municipality’s commitment to improving citizen engagement and enhancing transparency and accountability to its residents, the municipality is pleased to provide public access to its data. Open Data is a permanent service provided to citizens and businesses to access data free of charge in machine readable format. eng ["other"] {"size": "298 datasets", "updatedp": "2020-12-03"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["LiDAR DEM", "Pre-Amalgamation Boundaries", "city government", "culture", "development", "finance", "infrastructure", "planning", "society"] [{"institutionName": "Halifax Regional Municipality", "institutionAdditionalName": ["HRM"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.halifax.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Data Administrative Order", "policyURL": "https://www.halifax.ca/sites/default/files/documents/city-hall/legislation-by-laws/AO-2014-006-ADM.pdf"}, {"policyName": "Open Data licence Disclaimer", "policyURL": "https://www.halifax.ca/home/open-data/open-data-license"}, {"policyName": "Privacy", "policyURL": "https://www.halifax.ca/home/terms/privacy"}, {"policyName": "the Freedom of Information & Protection of Privacy provisions of Part XX of the Municipal Government Act", "policyURL": "https://www.halifax.ca/sites/default/files/documents/city-hall/accountability-transparency/mgapartXX.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.halifax.ca/home/open-data/open-data-license"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-02-14 2020-12-03 +r3d100012949 City of Toronto Open Data Portal eng [] https://open.toronto.ca/ [] ["opendata@toronto.ca"] Explore the City of Toronto's open data catalogue, including datasets from a wide range of City divisions. eng ["other"] {"size": "292 datasets; 1.329 data files;", "updatedp": "2019-02-27"} 2018 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://wx.toronto.ca/inter/it/newsrel.nsf/11476e3d3711f56e85256616006b891f/39b743d2573055968525828200473b02?OpenDocument [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Toronto", "business", "city government", "culture", "environment", "finance", "garbage", "health", "infrastructure", "mapping", "parks", "public safety", "recycling", "tourism", "transportation", "water"] [{"institutionName": "Toronto", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.toronto.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.toronto.ca/home/contact-us/"]}] [{"policyName": "Open Government Licence \u2013 Toronto", "policyURL": "https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.toronto.ca/wp-content/uploads/2017/11/969b-open_data_policy.pdf"}] closed [] ["CKAN"] {"api": "https://www.toronto.ca/home/311-toronto-at-your-service/open311-api-and-mobile-apps/", "apiType": "other"} ["none"] https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/ ["none"] unknown unknown [] [] {} We plan to have the former catalogue decommissioned once all datasets have been migrated over to the new Portal: https://portal0.cf.opendata.inter.sandbox-toronto.ca/ 2019-02-14 2020-12-08 +r3d100012950 Open Data Ottawa eng [] https://open.ottawa.ca [] ["311@ottawa.ca", "https://ottawa.ca/en/3-1-1"] This website is a source of data released by the City of Ottawa for free use by the public. eng ["other"] {"size": "378 datasets", "updatedp": "2020-12-03"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ottawa.ca/en/city-hall/get-know-your-city/open-data [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["business", "citizen science", "city hall", "demographics", "development", "economy", "enivironment", "geography", "health", "living", "safety", "transportation"] [{"institutionName": "City of Ottawa", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ottawa.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://ottawa.ca/en/disclaimer"}, {"policyName": "Open Data", "policyURL": "https://ottawa.ca/en/city-hall/get-know-your-city/open-data#open-data-licence-version-2-0"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://ottawa.ca/en/city-hall/get-know-your-city/open-data#open-data-licence-version-2-0"}] restricted [] ["CKAN"] {"api": "https://ottawa.ca/en/city-hall/get-know-your-city/open-data#city-ottawa-open311-api-terms-service", "apiType": "other"} ["none"] [] unknown unknown [] [] {} 2019-02-14 2021-06-15 +r3d100012951 Montréal Portail Donnees Ouvertes fra [] http://donnees.ville.montreal.qc.ca/ [] ["https://donnees.montreal.ca/nous-joindre"] By opening its data to everyone, Ville de Montréal allows it to be reused for various purposes, including commercial ones. The results of this reuse can then be shared in the community, creating a multiplier effect. The data released and reused thus generate benefits in the economic, cultural, social and technological spheres. eng ["other"] {"size": "324 Datasets", "updatedp": "2019-03-06"} ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://donnees.ville.montreal.qc.ca/portail/city-of-montreal-directive-on-data-governance/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["agriculture", "demographics", "education", "geospatial data", "government information", "justice", "law", "open government data", "population", "public health", "public safety", "transportation"] [{"institutionName": "Ville de Montreal", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ville.montreal.qc.ca/portal/page?_pageid=5798,85041649&_dad=portal&_schema=PORTAL", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://ville.montreal.qc.ca/portal/page?_pageid=5798,139375630&_dad=portal&_schema=PORTAL"]}] [{"policyName": "City of Montreal Open Data Policy", "policyURL": "http://donnees.ville.montreal.qc.ca/portail/city-of-montreal-open-data-policy/"}, {"policyName": "Directive sur la gouvernance des donn\u00e9es de la Ville de Montr\u00e9al", "policyURL": "http://donnees.ville.montreal.qc.ca/portail/directive-sur-la-gouvernance-des-donnees/"}, {"policyName": "Politique de donn\u00e9es ouvertes de la Ville de Montr\u00e9al", "policyURL": "http://donnees.ville.montreal.qc.ca/portail/politique-de-donnees-ouvertes/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "http://donnees.ville.montreal.qc.ca/portail/licence/"}] closed [] [] {"api": "http://donnees.ville.montreal.qc.ca/api/3", "apiType": "other"} [] [] unknown unknown [] [] {} 2019-02-14 2021-09-10 +r3d100012952 City of Winnipeg Open Data Portal eng [] https://data.winnipeg.ca/ [] ["311@winnipeg.ca", "https://www.winnipeg.ca/shared/mailforms/311/contact.asp"] Free access to open data and information from the City of Winnipeg. eng ["other"] {"size": "82 datasets", "updatedp": "2019-02-28"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["census", "city planning", "economics", "finance", "governance"] [{"institutionName": "City of Winnipeg", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.winnipeg.ca/interhom/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Data Policy", "policyURL": "http://clkapps.winnipeg.ca/dmis/ViewPdf.asp?SectionId=312124"}, {"policyName": "Open Government Policy", "policyURL": "http://clkapps.winnipeg.ca/DMIS/ViewPdf.asp?SectionId=461408"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://data.winnipeg.ca/stories/s/Open-Data-Licence/rwzh-4ijx/"}] restricted [] ["other"] {"api": "https://dev.socrata.com/docs/endpoints.html", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-02-14 2021-09-10 +r3d100012953 City of Regina Open Data eng [] http://open.regina.ca/dataset [] ["http://open.regina.ca/contact"] Open Data reflects a commitment to open, accountable and transparent government. Open Data is a practice that makes data/information freely available to everyone to use and republish. eng ["other"] {"size": "325 datasets", "updatedp": "2019-02-27"} 2017-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}] http://open.regina.ca/pages/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["budget", "citizen science", "financial", "parking"] [{"institutionName": "City of Regina", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.regina.ca/residents/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://open.regina.ca/pages/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] restricted [] ["unknown"] {"api": "https://opengis.regina.ca/arcgis/rest/services/OpenData/Pathways/MapServer", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-02-14 2019-03-14 +r3d100012954 Edmonton Open Data eng [{"additionalName": "City of Edmonton Open Data", "additionalNameLanguage": "eng"}] https://data.edmonton.ca/browse [] ["opendata@edmonton.ca"] This data, from across the city's departments and branches is freely available here in a single place - the Open Data Portal. eng ["other"] {"size": "1.043 datasets", "updatedp": "2019-02-27"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://data.edmonton.ca/stories/s/qcsu-n5wv/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["citizen science", "multicisciplinary"] [{"institutionName": "City of Edmonton", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.edmonton.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.edmonton.ca/contactus.aspx"]}] [{"policyName": "Open Data Terms of Use", "policyURL": "https://data.edmonton.ca/stories/s/City-of-Edmonton-Open-Data-Terms-of-Use/msh8-if28/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://data.edmonton.ca/stories/s/City-of-Edmonton-Open-Data-Terms-of-Use/msh8-if28/"}] restricted [] [] {"api": "https://dev.socrata.com/docs/verbs.html", "apiType": "REST"} [] https://data.edmonton.ca/stories/s/City-of-Edmonton-Open-Data-Terms-of-Use/msh8-if28/ [] unknown unknown [] [] {} 2019-02-14 2019-03-14 +r3d100012955 Research Data Unipd eng [] http://researchdata.cab.unipd.it/ ["doi:10.25430/researchdataunipd"] ["http://bibliotecadigitale.cab.unipd.it/aiuto"] Research Data Unipd is a data archive and supports research produced by the members of the University of Padova. The service aims to facilitate data discovery, data sharing, and reuse, as required by funding institutions (eg. European Commission). Datasets published in the archive have a set of metadata that ensure proper description and discoverability. eng ["institutional"] {"size": "", "updatedp": ""} 2018-12-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://bibliotecadigitale.cab.unipd.it/bd/archivi-istituzionali-1/archivi-istituzionali-ad-accesso-aperto-per-pubblicazioni-e-dati-di-ricerca [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Padova", "institutionAdditionalName": ["Universit\u00e0 degli Studi di Padova"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.unipd.it", "institutionIdentifier": ["RRID:SCR_006374", "RRID:nlx_49809"], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["dilip@cab.unipd.it"]}] [{"policyName": "Metadata policy", "policyURL": "http://researchdata.cab.unipd.it/information.html"}, {"policyName": "Research Data Policy", "policyURL": "https://www.unipd.it/sites/unipd.it/files/2018/policy%20dati%20ricerca.pdf"}, {"policyName": "Submission policy", "policyURL": "http://researchdata.cab.unipd.it/submission_policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.it.html#GPL"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/"}, {"dataUploadLicenseName": "Submission policy", "dataUploadLicenseURL": "http://researchdata.cab.unipd.it/submission_policy.html"}] ["EPrints"] yes {"api": "http://researchdata.cab.unipd.it/cgi/oai2", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] no yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://researchdata.cab.unipd.it/cgi/latest_tool?output=Atom", "syndicationType": "ATOM"} 2019-02-20 2021-09-10 +r3d100012961 PDX Finder eng [{"additionalName": "PDX-Finder", "additionalNameLanguage": "eng"}, {"additionalName": "Patients-derived tumor xenograft finder", "additionalNameLanguage": "eng"}] http://www.pdxfinder.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.j3y6a0", "OMICS_28328"] ["helpdesk@pdxfinder.org"] Patients-derived tumor xenograft (PDX) mouse models are an important oncology research platform to study tumor evolution, drug response and personalised medicine approaches. eng ["disciplinary"] {"size": "2.063 model", "updatedp": "2019-03-01"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.pdxfinder.org/about/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cancer", "chemotherapeutics", "disease", "drug", "genomics", "histopathology", "medications", "patient care", "tumor histology"] [{"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/about", "institutionIdentifier": ["RRID:SCR_004727", "RRID:nlx_72386"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/people/terry-meehan"]}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://itcr.cancer.gov/node/228", "institutionIdentifier": ["RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nciitcr@mail.nih.gov"]}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "The Jackson Laboratory", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/research-and-faculty/research-labs/the-bult-lab#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jax.org/contact-jax"]}] [{"policyName": "Terms of use", "policyURL": "http://www.pdxfinder.org/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.jax.org/terms-of-use"}] restricted [{"dataUploadLicenseName": "PDX data submission", "dataUploadLicenseURL": "http://www.pdxfinder.org/pdx-data-submission-integration-and-distribution/"}] ["unknown"] {"api": "http://www.pdxfinder.org/pdx-data-submission-integration-and-distribution/", "apiType": "other"} ["none"] http://www.pdxfinder.org/pdx-finder-publication/ [] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-02-28 2021-08-25 +r3d100012962 Phaidra at the Library System of the University of Padova ita [{"additionalName": "Digital collections of the University of Padova", "additionalNameLanguage": "eng"}] https://phaidra.cab.unipd.it/ ["doi.org/10.25430/phaidra"] ["http://bibliotecadigitale.cab.unipd.it/en/helpline", "https://phaidra.cab.unipd.it/"] Phaidra (Permanent Hosting, Archiving and Indexing of Digital Resources and Assets) is the University of Padova Library System’s platform for long-term archiving of digital collections. Phaidra hosts various types of digital object (antiquarian books, manuscripts, photographs, wallcharts, maps, learning objects, films, archive material and museum objects). Phaidra offers a search facility to identify specific objects, and each object can be viewed, downloaded, used and reused to the extent permitted by law and by its associated licences. The objects in the digital collections on the Phaidra platform are sourced from libraries (in large part due to the digitisation projects promoted by the Library System itself), museums and archives at the University of Padova and other institutions, including the Ca’ Foscari University and the Università Iuav in Venice. eng ["institutional"] {"size": "415.000 digital objects", "updatedp": "2020-08-07"} 2010-12-17 ["deu", "eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] http://bibliotecadigitale.cab.unipd.it/bd/archivi-istituzionali-1/archivi-istituzionali-ad-accesso-aperto-per-pubblicazioni-e-dati-di-ricerca [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Italy", "academic", "cultural heritage", "digital preservation", "libraries", "museums"] [{"institutionName": "University of Padova", "institutionAdditionalName": ["Universit\u00e0 degli Studi di Padova"], "institutionCountry": "ITA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unipd.it/", "institutionIdentifier": ["ROR:00240q980"], "responsibilityStartDate": "2010", "responsibilityEndDate": "", "institutionContact": ["phaidra@cab.unipd.it"]}] [{"policyName": "Editorial policies", "policyURL": "https://phaidra.cab.unipd.it/help/editorial_policies"}, {"policyName": "Terms of use", "policyURL": "https://phaidra.cab.unipd.it/terms_of_use/show_terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.interlex.it/testi/l41_633.htm"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.it.html#GPL"}] restricted [] ["Fedora"] yes {"api": "https://fc.cab.unipd.it/oaiprovider/", "apiType": "OAI-PMH"} ["PURL", "hdl"] ["ISNI", "ORCID"] no yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Phaidra adopts a modified LOM schema (Learning Object Metadata), with the option of using alternative metadata schemas (MODS – Metadata Object Description Schema, ICCD standards for museums…). Dublin Core metadata are generated from LOM or MODS schemas, with the possibility of other mapping systems integration. Moreover, Phaidra adopts various classification systems (Dewey Decimal Classification, PACS, EuroVoc, ACM), offering the option for the adoption of other systems. See "PHAIDRA_DC Metadata Element Set": https://phaidra.cab.unipd.it/static/phaidra_dc-metadata-element-set.pdf 2019-02-28 2021-09-03 +r3d100012965 IFREMER-SISMER Portail de données marines fra [{"additionalName": "French Research Institute for Exploitation of the Sea - Scientific Information Systems for the Sea, Oceanographic Data", "additionalNameLanguage": "eng"}, {"additionalName": "Institut fran\u00e7ais de recherche pour l'exploitation de la mer - Syst\u00e8mes d\u2019informations scientifiques de la Mer, Portail des donn\u00e9es marines", "additionalNameLanguage": "fra"}] http://data.ifremer.fr/ [] ["http://en.data.ifremer.fr/SISMER/Contacts", "sismer@ifremer.fr"] SISMER (Scientific Information Systems for the Sea) is Ifremer's service in charge of managing numerous marine databases and information systems which Ifremer is responsible for implementing. The information systems managed by SISMER range from CATDS (SMOS satellite data) to geoscience data (bathymetry, seismics, geological samples), not forgetting water column data (physics and chemistry, data for operational oceanography – Coriolis - Copernicus CMEMS), fisheries data (Harmonie), coastal environment data (Quadrige 2) and deep-sea environment data (Archimède). SISMER therefore plays a pivotal role in marine database management both for Ifremer and for many national, European and international projects. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://data.ifremer.fr/Tout-savoir-sur-les-donnees [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["aquaculture", "bathymetry", "biogeochemistry", "biology", "coastal environment", "deep-sea environment", "fisheries", "geology", "geophysics", "meteorology", "physics", "remote sensing", "satellite", "seismics", "water column"] [{"institutionName": "Ifremer", "institutionAdditionalName": ["French Research Institute for Exploitation of the Sea", "Institut fran\u00e7ais de recherche pour l'exploitation de la mer"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wwz.ifremer.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions d'acc\u00e8s aux donn\u00e9es", "policyURL": "http://en.data.ifremer.fr/Tout-savoir-sur-les-donnees/Conditions-d-acces-aux-donnees"}, {"policyName": "CoreTrustSeal asssessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/11/IFREMER-SISMER.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://en.data.ifremer.fr/All-about-data/Cadre-juridique-de-diffusion"}, {"dataLicenseName": "other", "dataLicenseURL": "http://en.data.ifremer.fr/Contenus-caches/Legal-mentions"}] restricted [{"dataUploadLicenseName": "Submit / Archive data", "dataUploadLicenseURL": "http://en.data.ifremer.fr/Submit-Archive-data"}] ["unknown"] {"api": "http://en.data.ifremer.fr/All-about-data/Data-management/Formats/NetCDF", "apiType": "NetCDF"} ["DOI", "other"] ["ORCID"] unknown yes ["other"] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-03-06 2022-01-03 +r3d100012966 OpARA eng [{"additionalName": "Open Access Repository and Archive", "additionalNameLanguage": "eng"}] https://opara.zih.tu-dresden.de/xmlui/ [] ["https://opara.zih.tu-dresden.de/xmlui/contact", "servicedesk@tu-dresden.de"] OpARA (Open Access Repository and Archive) is the repository for digital research data of the TU Dresden (TUD) and the TU Bergakademie Freiberg (TUBAF). It offers researchers the possibility of archiving their digital research data and optionally making it accessible to third parties under an Open Access license. eng ["institutional"] {"size": "", "updatedp": ""} 2018-02-07 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://opara.zih.tu-dresden.de/xmlui/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Technische Universit\u00e4t Bergakademie Freiberg, Universit\u00e4tsrechenzentrum", "institutionAdditionalName": ["TU Bergakademie Freiberg, University Computer Centre", "TUBAF, UCC", "TUBAF, URZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://tu-freiberg.de/en/urz", "institutionIdentifier": ["ROR:031vc2293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Dresden", "institutionAdditionalName": ["TU Dresden", "TUD"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://tu-dresden.de/", "institutionIdentifier": ["ROR:ror.org/042aqky30", "RRID:SCR_004799", "RRID:nlx_53167"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Dresden, Zentrum f\u00fcr Informationsdienste und Hochleistungsrechnen", "institutionAdditionalName": ["TUD, ZIH", "Technical University of Dresden, Centre for Information Services and High Performance Computing"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://tu-dresden.de/zih?set_language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General privacy policy of the TU Dresden", "policyURL": "https://tu-dresden.de/impressum#ck_datenschutz"}, {"policyName": "OpARA terms of use", "policyURL": "https://opara.zih.tu-dresden.de/xmlui/terms?locale-attribute=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/?lang=en"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["DSpace"] {} ["DOI"] https://datacite.org/cite-your-data.html [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {"syndication": "https://opara.zih.tu-dresden.de/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} Standardized interfaces: OAI-PMH, REST, RDF, SWORD 2019-03-07 2020-04-02 +r3d100012967 City of Victoria Open Data Portal eng [] http://opendata.victoria.ca/ [] ["engage@victoria.ca", "vicmap@victoria.ca"] The City of Victoria’s Open Data Portal allows you to explore and download open data, discover and analyze datasets using maps, and develop new web and mobile applications. eng ["other"] {"size": "", "updatedp": ""} 2013-02-22 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.victoria.ca/EN/meta/news/news-archives/2013-archive/city-introduces-open-data-catalogue-and-opens-city-hall-to-host-open-data-day-hackathon.html [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["GIS apping", "census", "development", "emergency services", "financial", "land", "parking", "parks", "permit and licence", "planning", "transportation", "underground utilities"] [{"institutionName": "City of Victoria", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.victoria.ca/#", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://opendata.victoria.ca/pages/open-data-licence"}] closed [] ["unknown"] {"api": "http://opendata.victoria.ca/datasets/a52138f08f8748e1a5972f222ddfa42e_23/geoservice", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-07 2019-03-14 +r3d100012968 Open Calgary eng [] https://data.calgary.ca/browse [] ["opendata@calgary.ca"] The City of Calgary’s Open Data Catalogue provides public access to information and data managed by The City. The Open Data Catalogue contains hundreds of datasets which are available in multiple file formats and can be downloaded for free. The data may be used for any purpose subject to the Open Data Catalogue Terms of Use. By providing public access to City data, we are not only promoting transparency in government, but also innovation within our community. eng ["other"] {"size": "156 Datasets", "updatedp": "2019-03-13"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://data.calgary.ca/stories/s/About/mgd4-4snb [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Calgary", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.calgary.ca/SitePages/cocis/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://www.calgary.ca/General/Pages/Terms-of-Use.aspx?redirect=/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://data.calgary.ca/stories/s/Open-Calgary-Terms-of-Use/u45n-7awa"}] closed [] ["unknown"] {"api": "https://dev.socrata.com/publishers/getting-started.html", "apiType": "REST"} [] ["none"] unknown unknown [] [] {} 2019-03-07 2019-03-16 +r3d100012969 Open Hamilton eng [] http://open.hamilton.ca/ [] ["opendata@hamilton.ca"] Open data for the City of Hamilton. Open Hamilton is designed to enable the community to better explore, visualize and download City data. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.hamilton.ca/city-initiatives/strategies-actions/open-data-program [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["business", "census", "city services", "culture", "demography", "economy", "health", "infrastructure", "savety"] [{"institutionName": "City of Hamilton", "institutionAdditionalName": ["Hamilton"], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.hamilton.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hamilton.ca/government-information/site-policies/contact-us"]}] [{"policyName": "Strategies & Actions", "policyURL": "https://www.hamilton.ca/city-initiatives/strategies-actions/"}, {"policyName": "Terms of Use", "policyURL": "https://www.hamilton.ca/government-information/site-policies/terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.hamilton.ca/city-initiatives/strategies-actions/open-data-licence-terms-and-conditions"}] closed [] ["unknown"] {"api": "https://developers.arcgis.com/rest/services-reference/query-feature-service-layer-.htm", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-07 2019-04-02 +r3d100012970 Kitchener GeoHub eng [{"additionalName": "City of Kitchener Open Data", "additionalNameLanguage": "eng"}] http://open-kitchenergis.opendata.arcgis.com/ [] ["OpenData@Kitchener.ca", "https://www.kitchener.ca/en/city-services/connect-with-us.aspx"] The City of Kitchener is committed to supporting citizen engagement and enhancing transparency and accountability to its residents by providing public access to its data. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.kitchener.ca/en/city-services/open-data.aspx# [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Kitchener", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kitchener.ca/en/index.aspx#9", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open data", "policyURL": "https://www.kitchener.ca/en/city-services/open-data.aspx#"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.kitchener.ca/en/city-services/open-data.aspx#ODLicence"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.teranet.ca/registry-solutions/teranet-ontario/"}] restricted [] ["other"] {"api": "https://services1.arcgis.com/qAo1OsXi67t7XgmS/ArcGIS/rest/services", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-03-07 2019-03-17 +r3d100012971 Region of Waterloo - Open Data eng [] https://rowopendata-rmw.opendata.arcgis.com/ ["biodbcore-001579"] ["gis@regionofwaterloo.ca"] Public access to open data from the Regional Municipality of Waterloo (the cities of Kitchener, Cambridge, and Waterloo, and the townships of Wellesley, Woolwich, Wilmot, and North Dumfries). eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Waterloo", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.waterloo.ca/en/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Statement", "policyURL": "https://www.regionofwaterloo.ca/en/regional-government/website-privacy-statement.aspx?_mid_=28841"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.regionofwaterloo.ca/en/regional-government/open-data.aspx"}] restricted [] ["unknown"] {"api": "https://gis.region.waterloo.on.ca/arcgis/rest/services/Public/OpenData/FeatureServer", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-03-07 2021-11-17 +r3d100012972 Open Data Kingston eng [] https://opendatakingston.cityofkingston.ca/pages/welcome/ [] ["https://www.cityofkingston.ca/city-hall/contact-us"] The Open Data Kingston Portal provides access to the City's open datasets. eng ["other"] {"size": "37 datasets", "updatedp": "2019-03-15"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["demographics", "education", "environment", "governance", "neighbourhood", "public health", "recreation", "shelter", "transportation", "urban planning"] [{"institutionName": "City of Kingston", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cityofkingston.ca/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.cityofkingston.ca/city-hall/contact-us"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cityofkingston.ca/general/privacy-policy"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.cityofkingston.ca/documents/10180/144997/CityofKingston_OpenDataLicense.pdf"}] closed [] ["unknown"] {"api": "https://opendatakingston.cityofkingston.ca/api/datasets/1.0/search/", "apiType": "REST"} [] ["none"] no unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {"syndication": "https://opendatakingston.cityofkingston.ca/api/v2/catalog/exports/rss?sort=-modified", "syndicationType": "RSS"} 2019-03-07 2019-03-17 +r3d100012973 City of Barrie Data Portal eng [{"additionalName": "City\u2019s Open GIS Data Portal", "additionalNameLanguage": "eng"}] http://public-barrie.opendata.arcgis.com/ [] ["servicebarrie@barrie.ca"] This Open GIS Data Portal provides residents, visitors, business owners and investors a means to easily find, access and view information through the use of maps and mapping technology. eng ["other"] {"size": "43 Data", "updatedp": "2019-03-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["administrative boundaries", "infrastructure", "land use planung", "natural environment", "parks", "planning", "recreation", "transportation"] [{"institutionName": "Barrie", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.barrie.ca/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["servicebarrie@barrie.ca"]}] [{"policyName": "Engineering Standards, Policies & Guidelines", "policyURL": "https://www.barrie.ca/City%20Hall/Planning-and-Development/Engineering-Resources/Pages/Engineering-Standards-Policies-Guidelines.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.barrie.ca/Online%20Services/PublishingImages/OpenData_Images/COB_DataLicense.pdf"}] closed [] ["other"] {"api": "https://www.esri.com/en-us/arcgis/products/arcgis-open-data", "apiType": "other"} ["none"] ["none"] unknown unknown [] [] {} 2019-03-07 2019-03-22 +r3d100012974 Guelph Open Data Portal eng [] http://data.open.guelph.ca/ [] ["http://data.open.guelph.ca/contact", "opengov@guelph.ca"] Searchable public data from the City of Guelph. eng ["other"] {"size": "53 datasets", "updatedp": "2019-03-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://data.open.guelph.ca/pages/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["city government", "community servies", "economics", "energy", "environment", "finance", "health", "infrastructure", "land use", "recreation", "transportation"] [{"institutionName": "City of Guelph", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://guelph.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://guelph.ca/city-hall/contact-us/", "info@guelph.ca", "opengov@guelph.ca"]}] [{"policyName": "Terms of Use", "policyURL": "http://data.open.guelph.ca/pages/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://data.open.guelph.ca/pages/open-government-licence"}, {"dataLicenseName": "other", "dataLicenseURL": "http://data.open.guelph.ca/pages/open-government-licence"}] restricted [] ["CKAN"] no {} ["none"] ["none"] unknown unknown [] [] {"syndication": "http://data.open.guelph.ca/feeds/dataset.atom", "syndicationType": "ATOM"} 2019-03-07 2019-03-27 +r3d100012975 The City of Saint John Open Data eng [] http://catalogue-saintjohn.opendata.arcgis.com/ [] [] Find open data for the City of Saint John via their Open Data catalogue. eng ["other"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.saintjohn.ca/en/home/cityhall/legislativeservices/informationtechnology/opendata/faqs.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["administration", "air photos", "development", "environment", "historic maps", "parks", "recreation", "statistics", "topography", "transportation"] [{"institutionName": "City of Saint John", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.saintjohn.ca/en/home/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service@saintjohn.ca"]}] [{"policyName": "Open Data Policy Guidelines", "policyURL": "https://sunlightfoundation.com/opendataguidelines/"}, {"policyName": "Open Government Licence - Canada", "policyURL": "https://open.canada.ca/en/open-government-licence-canada"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ago-item-storage.s3.us-east-1.amazonaws.com/2b0da92076ce4cf48cda63a86fdc316f/Open_Data_Policy-2015-v.01-MAR-02.pdf?X-Amz-Security-Token=FQoGZXIvYXdzEFEaDLITsbr1VaZgJnkYoSK3A6il7Ubm4C6mXPKSHuym5ni7%2F1vxwb1O%2BKk2H6b44xAaHdBF%2BDGLIkwogHtQShRKQkojIeTX02xWU%2FpV%2Bc9HrfGfIqP0k1BHqHJp%2FSgsEmCZQypLaoXAqfrX3FsUn3JclKMLsMtYfj50feJgVaJLOY2hnAfV8lOjSQDr6XW%2BiWHenRZyh7UlWn%2F9sNvpaxGyqqjxpoRbSpuvbXAcowP0fGkBCBcD2AoveSK1Qy0pisNvlwFkEtCWKShc%2BZPRBE3CLXSj6Ro0ivAIU4LnlUrclmmEvJCVFIyxtkEBXRcXwjd77fcRD9XhTdGgFUkxtlIYnth5VzQSfSnu%2Bshf2DEra3ZrLjJfNoPlCgnqyDIJiZbtuZES76i6NOf7neM%2Fn11CNfFLUdDhV2RBBJaEGCe2LErwZh3BfRnweEtdiVPpvyjzj33DIdBE4TrPtm6EDHCmFk8RAVYPiwAfuXkt3LsbKH6duUduy%2F0MbOeI8ak5gFLiB0jxzxiVo%2FWKnzEs3xoPh3fhI1TPPP0T%2FoBDFGXMl5bLLNFVpzmSGhkxMJhn6p5NUWj9PdxQYpRePzM%2FcCuiABLWpNVT2rYoprPn5AU%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20190326T085913Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Credential=ASIAYZTTEKKE2JBPVNWV%2F20190326%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=26132c3925d9ff0431884eb6cc1fdae51a7996f59ffaa39f797fb7f6145b2796"}] restricted [] ["unknown"] {} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-03-09 2021-08-24 +r3d100012976 Open Data Catalogue - City of Lethbridge eng [] http://opendata.lethbridge.ca/ [] ["opendata@lethbridge.ca"] Free and open data from the City of Lethbridge. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.lethbridge.ca/Pages/OpenDataFAQs.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["land", "local government", "parks", "property", "public facilites", "public safety", "recreation", "tourism", "transportation"] [{"institutionName": "City of Lethbridge", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lethbridge.ca/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lethbridge.ca/Service/Pages/default.aspx"]}] [{"policyName": "Legal Disclaimers", "policyURL": "https://www.lethbridge.ca/Pages/LegalDisclaimers.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.lethbridge.ca/Pages/OpenDataLicense.aspx"}] restricted [] ["unknown"] {"api": "http://gis.lethbridge.ca/lethwebgisarcgis/rest/services/OpenData", "apiType": "REST"} ["none"] ["none"] unknown unknown [] [] {} 2019-03-09 2019-03-28 +r3d100012977 Open Data Portal - City of Kelowna eng [] http://opendata.kelowna.ca/ [] ["opendata@kelowna.ca"] This is Kelowna's Open Data Portal. This is the community's public platform for exploring and downloading open data, discovering and building apps. You can analyze and combine Open Datasets using maps, as well as develop new web and mobile applications. Search and download open datasets at no cost. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.kelowna.ca/city-services/city-maps-open-data/open-data-catalogue [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["boundaries", "cadastral plans", "culture", "environemental", "property", "recreaton", "regulated land use", "transportation", "utilitites"] [{"institutionName": "City of Kelowny", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kelowna.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["opendata@kelowna.ca"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://apps.kelowna.ca/images/opendata/OpenGovernmentLicence.pdf"}] open [] ["unknown"] {"api": "https://geo.kelowna.ca/arcgis/rest/services/OpenData/MapServer/56/query?outFields=*&where=1%3D1", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-09 2019-03-31 +r3d100012978 City of Burlington's Open Data Catalogue eng [{"additionalName": "Navigate Burlington data", "additionalNameLanguage": "eng"}] https://navburl-burlington.opendata.arcgis.com/pages/data [] ["https://webforms.burlington.ca/Capital-Works/Burlington-Maps-Feedback-Form"] Search and explore the City of Burlington's open data. The Open Data service makes raw city data available for public use and new application development. The Open Data service is just one of the innovative ways we are evolving our customer service practices using online technology. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://navburl-burlington.opendata.arcgis.com/pages/data [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["culture", "infrastructure", "land use", "natural feature", "open budget", "property", "recreation", "transportation"] [{"institutionName": "City of Burlington", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.burlington.ca/en/index.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["city@burlington.ca", "https://webforms.burlington.ca/Capital-Works/Burlington-Maps-Feedback-Form"]}] [{"policyName": "Municipal Freedom of Information and Protection of Privacy Act (MFIPPA)", "policyURL": "https://www.ontario.ca/laws/statute/90m56"}, {"policyName": "Terms of Use for Open Data Burlington", "policyURL": "https://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/OpenDataBurlingtonTermsOfUseSeptember192011.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.burlington.ca/en/services-for-you/resources/Ongoing_Projects/Open_Data/OpenDataBurlingtonTermsOfUseSeptember192011.pdf"}] closed [] ["unknown"] {"api": "https://navburl-burlington.opendata.arcgis.com/pages/data", "apiType": "FTP"} ["none"] ["none"] unknown unknown [] [] {} 2019-03-09 2021-08-24 +r3d100012979 City of Greater Sudbury Open Data Portal eng [] http://opendata.greatersudbury.ca/ [] ["opendata@greatersudbury.ca"] This portal provides access to available open data from the City of Greater Sudbury. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://opendata.greatersudbury.ca/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["boundaries", "business", "community", "culture", "economy", "environment", "facilities", "government", "infrastructure", "land use", "recreation", "transportation"] [{"institutionName": "City of Greater Sudbury", "institutionAdditionalName": ["La Ville du Grand Sudbury"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.greatersudbury.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["311@greatersudbury.ca"]}] [{"policyName": "Municipal Freedom of Information and Protection of Privacy Act - MFIPPA", "policyURL": "https://www.ontario.ca/laws/statute/90m56"}, {"policyName": "Open Data Policy for the City of Greater Sudbury", "policyURL": "https://www.greatersudbury.ca/city-hall/open-government/open-data/policy/"}, {"policyName": "Personal Health Information Protection Act - PHIPA", "policyURL": "https://www.ontario.ca/laws/statute/04p03"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.greatersudbury.ca/city-hall/open-government/open-data/licence/"}] restricted [] ["unknown"] {"api": "https://developers.arcgis.com/rest/services-reference/query-feature-service-layer-.htm", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-09 2019-04-05 +r3d100012980 City of Oshawa Open Data eng [] https://city-oshawa.opendata.arcgis.com/ [] ["opendata@oshawa.ca"] This Open Data catalogue allows users to search, explore, and download the City of Oshawa's available open data. eng ["other"] {"size": "101 datasets", "updatedp": "2019-04-10"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.oshawa.ca/city-hall/open-data.asp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "City of Oshawa", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oshawa.ca/index.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oshawa.ca/city-hall/Contact-Us.asp"]}] [{"policyName": "Terms of Use", "policyURL": "https://www.oshawa.ca/city-hall/Website-Terms-of-Use.asp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://map.oshawa.ca/OpenData/Open%20Government%20Licence%20version%202.0%20-%20Oshawa.pdf"}] restricted [] [] {"api": "https://map.oshawa.ca/arcgis/rest/services/Operational/PopularLayers/MapServer/15/query?outFields=*&where=1%3D1", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-03-09 2019-04-13 +r3d100012981 Niagara Open Data eng [] https://niagaraopendata.ca/ [] ["https://niagaraopendata.ca/contact"] Access and download datasets of information from the City of Niagara. eng ["other"] {"size": "314 datasets", "updatedp": "2019-04-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://niagaraopendata.ca/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Niagara Region", "institutionAdditionalName": ["Regional Municipality of Niagara"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.niagararegion.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://niagarafalls.ca/services/open/terms-and-conditions.aspx"}, {"policyName": "Terms of Use", "policyURL": "https://niagaraopendata.ca/pages/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://niagaraopendata.ca/pages/open-government-license-2-0-niagara-region"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://opendefinition.org/od/2.1/en/"}] restricted [] ["CKAN"] {"api": "https://docs.ckan.org/en/ckan-2.4.3/api/index.html", "apiType": "other"} ["none"] [] unknown unknown [] [] {} 2019-03-09 2019-04-19 +r3d100012986 City of Cambridge GeoHub eng [] http://geohub.cambridge.ca/ [] ["gis@cambridge.ca"] This website provides access to published open map data from the City of Cambridge. eng ["other"] {"size": "80 entries", "updatedp": "2019-04-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://geohub.cambridge.ca/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Cambridge", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cambridge.ca/en/index.aspx#1/3", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Esri", "institutionAdditionalName": ["Environmental Systems Research Institute"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.esri.com/de-de/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://maps.cambridge.ca/images/opendata/Open%20data%20licence.pdf"}] restricted [] [] {"api": "https://developers.arcgis.com/javascript/latest/guide/get-api/", "apiType": "other"} [] [] unknown unknown [] [] {} 2019-03-14 2019-04-20 +r3d100012987 City of Surrey Open Data eng [{"additionalName": "data.surrey.ca", "additionalNameLanguage": "eng"}] https://data.surrey.ca/ [] ["https://data.surrey.ca/contact"] Freely explore the City of Surrey's datasets via their Open Data website. Data.surrey.ca provides one-stop access to the City of Surrey’s searchable open data and open information, together with open dialogue, as part of Surrey’s commitment to enhance transparency and accountability. We encourage the participation of all citizens to make data.surrey.ca better. eng ["other"] {"size": "364 datasets", "updatedp": "2019-04-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.surrey.ca/pages/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Surrey", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.surrey.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "OpenNorth", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.opennorth.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "City of Surrey Open Data Policy", "policyURL": "http://data.surrey.ca/dataset/356763d1-1d94-4927-9f7a-0802adc88dba/resource/8477084a-9db7-484e-92e3-9f3d79c164b1/download/cityofsurreyopendatapolicyplcr-28.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://data.surrey.ca/pages/open-government-licence-surrey"}] restricted [] ["CKAN"] {"api": "http://data.surrey.ca/pages/city-of-surrey-open-data-api", "apiType": "REST"} ["none"] [] unknown unknown [] [] {"syndication": "http://data.surrey.ca/feeds/dataset.atom", "syndicationType": "ATOM"} 2019-03-14 2019-04-26 +r3d100012989 City of Brantford Open Data Catalogue eng [] http://data-brantford.opendata.arcgis.com/ [] ["opendata@brantford.ca"] This catalogue allows users to search, browse, and download open data about the City of Brantford. eng ["other"] {"size": "47 datasets", "updatedp": "2019-05-15"} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://data-brantford.opendata.arcgis.com/pages/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "city of Brantford", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.brantford.ca/en/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://data-brantford.opendata.arcgis.com/pages/licence"}] restricted [] ["unknown"] {"api": "https://services.arcgis.com/aji2lCmjXt0KpGzI/arcgis/rest/services/OP_Polling_Division/FeatureServer/0/query?outFields=*&where=1%3D1", "apiType": "REST"} ["none"] [] unknown yes [] [] {} City of Brantford Open Data Catalogue uses ISO 19139. 2019-03-14 2019-05-19 +r3d100012990 Nanaimo Data Catalogue eng [] https://www.nanaimo.ca/open-data-catalogue/ [] ["webmaster@nanaimo.ca"] Easy access to open information about the City of Nanaimo. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.nanaimo.ca/your-government/maps-data/open-data-catalogue/about-the-open-data-catalogue [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Nanaimo", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nanaimo.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Freedom of Information and Protection of Privacy", "policyURL": "https://www.nanaimo.ca/your-government/freedom-of-information"}, {"policyName": "Legal Disclaimer", "policyURL": "https://www.nanaimo.ca/legal-disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.nanaimo.ca/your-government/maps-data/open-data-catalogue/open-data-catalogue-licence"}] restricted [] ["unknown"] {} ["none"] https://www.nanaimo.ca/your-government/maps-data/open-data-catalogue/open-data-catalogue-licence [] unknown unknown [] [] {"syndication": "https://www.nanaimo.ca/crimereporting/api/incidents.atom?$top=1000&$orderby=ReportedTime%20desc", "syndicationType": "RSS"} 2019-03-14 2019-05-19 +r3d100012991 Open Data Prince George eng [] http://data-cityofpg.opendata.arcgis.com/ [] ["gisinfo@princegeorge.ca"] This Open Data portal provides access to data and information about the city of Prince George. eng ["other"] {"size": "172 datasets", "updatedp": "2019-05-20"} 2009 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://princegeorge.ca/Things%20to%20Do/Pages/LearnaboutPrinceGeorge.aspx [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Prince George", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.princegeorge.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.princegeorge.ca/City%20Hall/Pages/ContactUs.aspx"]}] [{"policyName": "Privacy and Terms of Use", "policyURL": "https://princegeorge.ca/City%20Hall/Pages/PrivacyandTermsofUse.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://princegeorge.ca/City%20Hall/Pages/PrivacyandTermsofUse.aspx"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://pgmap.princegeorge.ca/opendata/CityofPrinceGeorge_Open_Government_License_Open_Data.pdf"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-03-14 2019-05-24 +r3d100012992 City of Grand Prairie Open Data Catalogue eng [] https://data.cityofgp.com/browse [] ["https://www.cityofgp.com/contact-us", "info@cityofgp.com"] Public access to the City of Grand Prairie`s open data catalogue. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Grande Prairie", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cityofgp.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Freedom of Information and Protection of Privacy", "policyURL": "http://www.servicealberta.ca/foip/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.cityofgp.com/website-terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://www.cityofgp.com/index.aspx?page=2332"}] restricted [{"dataUploadLicenseName": "Freedom of Information and Protection of Privacy", "dataUploadLicenseURL": "http://www.servicealberta.ca/foip/"}] ["other"] {"api": "https://socratadiscovery.docs.apiary.io/#", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-14 2021-10-05 +r3d100012993 City of Kamloops Open Data Catalog eng [] http://mydata-kamloops.opendata.arcgis.com/?agree=0 [] ["gisinfo@kamloops.ca"] This catalogue provides public access to open data managed by the City of Kamloops. eng ["other"] {"size": "106 datasets", "updatedp": "2019-05-23"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Kamloops", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kamloops.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.kamloops.ca/node/29807"}] restricted [] ["unknown"] {"api": "https://geoprodsvr.kamloops.ca/arcgis3/rest/services/OpenData/OpenDataDownload/MapServer/1/query?outFields=*&where=1%3D1", "apiType": "REST"} ["none"] [] no unknown [] [] {} 2019-03-14 2019-05-25 +r3d100012994 Dataverse UNIMI eng [{"additionalName": "Dataverse Universit\u00e0 degli Studi di Milano", "additionalNameLanguage": "ita"}] https://dataverse.unimi.it/ [] ["paola.galimberti@unimi.it"] Dataverse UNIMI is a data repository runned by the University of Milan. The service aims at facilitating data discovery, data sharing, and reuse, as required by funding institutions (eg. European Commission). Datasets published in the archive have a set of metadata that ensure proper description and discoverability. eng ["institutional"] {"size": "24 Dataverses, 16 Datasets", "updatedp": "2019-03-18"} 2019 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "4science", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.4science.it/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Milan", "institutionAdditionalName": ["Universit\u00e0 degli Studi di Milano"], "institutionCountry": "ITA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.unimi.it/en", "institutionIdentifier": ["ROR:00wjc7c48", "RRID:SCR_011671", "RRID:nlx_157965"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@unimi.it"]}] [{"policyName": "Harvard Dataverse Policies", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-policies"}, {"policyName": "UNIMI Legal Notes", "policyURL": "https://www.unimi.it/en/node/7394"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2019-03-17 2020-08-18 +r3d100012997 Strathcona County's Open Data eng [] https://data.strathcona.ca/ [] ["https://data.strathcona.ca/stories/s/ekgb-t4jn", "support.opendata@strathcona.ca"] Open Data Strathcona is designed to allow the public to explore and access open City data. eng ["other"] {"size": "56 datasets", "updatedp": "2019-05-27"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.strathcona.ca/stories/s/594m-7ahy [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Strathcona County", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.strathcona.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Data Policy", "policyURL": "https://www.strathcona.ca/files/files/at-lls-gov-002-034_open_data_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.strathcona.ca/files/files/at-lls-gov-002-034_open_data_policy.pdf"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://data.strathcona.ca/stories/s/bxnd-tfzb"}] restricted [] [] {} [] [] unknown unknown [] [] {} 2019-03-21 2021-10-05 +r3d100012998 City of Brandon Open Data eng [] http://opengov.brandon.ca/catalog.php [] ["https://www.texthelp.com/en-gb/contact/", "info@texthelp.com"] The open data catalogue for the City of Brandon. eng ["other"] {"size": "30 datasets", "updatedp": "2019-05-27"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.brandon.ca/we-are-online [] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Brandon", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://opengov.brandon.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access to Information", "policyURL": "http://brandon.ca/corporate-information/privacy-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://opendata.brandon.ca/terms.aspx"}] restricted [] [] {} [] [] unknown unknown [] [] {} 2019-03-21 2021-10-05 +r3d100012999 Town of Oakville Open Data eng [] https://portal-exploreoakville.opendata.arcgis.com/ [] ["opendata@oakville.ca"] Open data portal for the town of Oakville allows users to search, explore, and download open data. eng ["other"] {"size": "106 datasets", "updatedp": "2019-06-03"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.oakville.ca/townhall/g-gen-009-003.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multisdisciplinary"] [{"institutionName": "Town of Oakville", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oakville.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal Information", "policyURL": "https://www.oakville.ca/legal-information.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.oakville.ca/data/open_data_licence.html"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.oakville.ca/data/open_data_licence.html"}] restricted [] [] {"api": "https://services5.arcgis.com/QJebCdoMf4PF8fJP/ArcGIS/rest/services", "apiType": "REST"} [] https://www.arcgis.com/sharing/rest/content/items/b5913c203b7e46e3aa6c5b89c2527d42/info/metadata/metadata.xml?format=default&output=html [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-21 2019-06-05 +r3d100013000 New Westminster Open Data eng [] http://opendata.newwestcity.ca [] ["http://opendata.newwestcity.ca/contact"] Open datasets from the City of New Westminster. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.newwestcity.ca/services/public-safety/fire-and-rescue-services/about-new-westminster-fire-and-rescue-services/articles/4086.php [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of New Westminster", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.newwestcity.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://opendata.newwestcity.ca/licence"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-06-20 +r3d100013001 York Region Open Data eng [] https://insights-york.opendata.arcgis.com/ [] ["open.data@york.ca"] Access to the York Region open data catalogue. Explore, combine, and download open data from York Region. eng ["other"] {"size": "188 datasets", "updatedp": "2019-06-03"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.york.ca/wps/portal/yorkhome/yorkregion/yr/statisticsanddata/opendata/opendata/!ut/p/a1/tZFdT8IwGIV_CxdcLn3Xbqy7rFPZRhgmaNx2Q8q-GLIPRiXir7egMRKDiKm9at-cPjnnPShGIYprvi0LLsqm5qv9Ox7MPDb0XHcE_sSgDjCYMB9bFOjIkoJICuDEYXDu_yOKUZzUohULFO26WdLUIqtFH3ZN9yQfG1GK58Ng0VTZ-7jLCumuDxshbUpBsuF1mnLB-9C0WX182_PbpExRlANOMUmwZlMDa8aAzLU5pqClYGdpkhPL1jnyfxEYd2NnXEgsFwutrPMGhd-soPDTwJcbisrleh0zGXmf80Wg8F8yH7Yqc2BsDFzdAR_cCQXv1rozr6mrg2OeEYzwh-CHZiNZvXVyVVMdTS_c_RmgpRiIsWqgqRqoOrL311J8DxydSeCQ3BBg2HPoFfFpEIBqh0QxkKlumamOzC5vua0eKkrMVUGF7S3Ndvt6n1fVLAg0PqdAjgYR6_XeAI8hMF8!/dl5/d5/L2dBISEvZ0FBIS9nQSEh/#.XPTozPXgqUk [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "York Region", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.york.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility", "policyURL": "https://www.york.ca/wps/portal/yorkhome/yorkregion/yr/accessibility/!ut/p/a1/rZFLU8IwFIV_jctObh4lYRmr0hYBZ9CRdsOE0kKUPiiREX-9Ad2wQESTXe6cfDnnHpSiCUortdULZXRdqdX-nnamkexFYdiHeMREABJGMiZcgOhzK0isAE4cCefeP6MUpVllGrNEya6dZnVl8spcwa5uX-1lY7R5OwyWdZl_jdt8Yd1dgcqyfLPRM73SZrfnNJmeoyTvkm6BC-ZlmBYe44x4inHqzflMFX6HYcy6KP5FMNIOgsHCYpVZeroqajQ5_tJq9Mt6nUobYe_73aDJvzIctmF9EcI6IQ4ghnAkILrjD_6NCDEE_hlBn3wLfmgksZXxk9HHGI0v3OUZIHcMJMQ10HcNdB05-mspcQQBlhbYo7cUJIkCcU1jMRyCa4fUMVC6blm6jiwvb7kpn0pB_dX2vhhHnpoJoH6z_XgsynI6HB4PPgGORfLu/dl5/d5/L2dBISEvZ0FBIS9nQSEh/#.XPTpEfXgqUk"}, {"policyName": "Open Data", "policyURL": "https://www.york.ca/wps/portal/yorkhome/yorkregion/yr/statisticsanddata/opendata/opendata/!ut/p/a1/tZFdT8IwGIV_CxdcLn3Xbqy7rFPZRhgmaNx2Q8q-GLIPRiXir7egMRKDiKm9at-cPjnnPShGIYprvi0LLsqm5qv9Ox7MPDb0XHcE_sSgDjCYMB9bFOjIkoJICuDEYXDu_yOKUZzUohULFO26WdLUIqtFH3ZN9yQfG1GK58Ng0VTZ-7jLCumuDxshbUpBsuF1mnLB-9C0WX182_PbpExRlANOMUmwZlMDa8aAzLU5pqClYGdpkhPL1jnyfxEYd2NnXEgsFwutrPMGhd-soPDTwJcbisrleh0zGXmf80Wg8F8yH7Yqc2BsDFzdAR_cCQXv1rozr6mrg2OeEYzwh-CHZiNZvXVyVVMdTS_c_RmgpRiIsWqgqRqoOrL311J8DxydSeCQ3BBg2HPoFfFpEIBqh0QxkKlumamOzC5vua0eKkrMVUGF7S3Ndvt6n1fVLAg0PqdAjgYR6_XeAI8hMF8!/dl5/d5/L2dBISEvZ0FBIS9nQSEh/#.XPTozPXgqUk"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.york.ca/wps/portal/yorkhome/yorkregion/yr/privacyanddisclaimer/websitetermsofuse/disclaimerstermsofuseandcopyrights/!ut/p/a1/rVFdb4IwFP01PpJeqEB5rLgJGHGbW1ReTK0VG-UjUDXu16_OJWbZnLrQt3t67sk596AETVCSs51MmZJFzjbHOXFmIe2FQdCHaNgmPlAY0shyCZC-qwlTTYALj8K1_TFKUMJzVaoVmh6qGS9yJXLVgkNRrfVQK6m2n8CqyMQJrkSq3bWgrOSO8QPLFwtZ8w2TmahasBfzWiqhRJXVxXJb66Xzd32G9RovykMl05Wqjy5KLhdoipnLTY-7BnEwNtqOiQ1GXM_wsGDOXHBn7nEU3XAWqxr4g1TLMrUyZL4s0OQ3w2jywzCa3GB43EGJibt79ny6ofZjWW0nMH2IIBgSCB_dJ7tLAhN8-wqhb30R_uhxqot2L0YemWh05w2vCLoNC1pW04J204JNRw7_W0oUgm9SLdjDDxioFfqkgyMSx9C0Q9ywIG26Zdp0ZHp_y2X2lhFsb1JirF8IYLvcvb8us2wWxwabfwMGH1Ur5i0!/dl5/d5/L2dBISEvZ0FBIS9nQSEh/#.XPToXfXgqUk"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://ago-item-storage.s3.us-east-1.amazonaws.com/78cc02388af248c0b7a30eda6adfade0/Open_Data_Licence.pdf?X-Amz-Security-Token=AgoJb3JpZ2luX2VjENP%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCXVzLWVhc3QtMSJHMEUCIFy9CfXKqIpUvE79qw3ZUme8W%2F6LQ8n4eFXZ7PDVe9GSAiEA0EtEx%2BmQgzkiydAeKqkJ%2FdYoxVHRCLiMbKZd3R%2Bfz1Yq2gMIfBAAGgw2MDQ3NTgxMDI2NjUiDMxEEQ3kv9HBvba1dCq3Azep1sAUZRkbbbomTstgMejMfVj%2FMSo6ilvZBmzFR%2FcYSLTEj3jMVDO4uN4bhwqlXGkjmeJ6dXohHGu0fw41PO3nUm2%2FMhx%2FYwDJMDey4FSENTGEejbPXjedAJKtTXoz%2FubDnv3SSEgRM1ZUvfIFYZ4L071%2BHO%2BiOthdVSiDtestS4gG2m0Ybs6sPjNt9VpkF1nHBXg8X3b1FAXkv7NHDbfRW24Aw%2BAHlzpiTadnXCXqPjxy8OLm16si00tnuqIkU6dwRzriUnqoXNLV8YhOtx%2BXrsyFkDkW4q5uiGIxE9r2s%2FnI2fKLBhFeEwxq%2FjjzW8662sPU4rdbeoCxAG6tJMOSpw49UBE2hJxILPuhdPpAYIym1UokVxpQSjBDgV1RHLSGVY7npMfuccnZkY7I5HVMxM2so8Mnwbh6JiAbYMGpJy%2BV2B8A7sXt9WYUIy8pIIuE2Eud8BeNALCnNOw1JoYKDv8rYgZWxAQRNNA8b4Y0hlTTEIuNYqx6nK7GWfXpzXGXpjmqxOqjOZ0JWuOOuUeBvK%2FC41HBNNFeTHFr6Kh6yXeTWo8ZUdt6rrkCbyHjPD6W1xUlze8w87zP5AU6tAHTn%2FOwD6sPpnQl1WlnABIEpDqhWVgPuognx1qhl%2Fl6ucFEJlda7LRybJsu13MNm77LC%2Be5l8W2n%2Bj7HY0HEQaJkmxDbeAsO1uj6v%2F3ZIPl1FB5Z3lhFpNo%2F%2FXHuqUb63LOr3MZ%2B0peU9ZL69Vcm9rfRxASs3ffOvwpINQZo4GeZN2z4GIk%2FeYvIk9Lvefb7AwqNDEkXrwSwWJDKTvkdYpG2SZFZb2HcokFonA6fr0UjcGFAi4%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20190321T194808Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Credential=ASIAYZTTEKKE7EQMHQJG%2F20190321%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=985c9f9be09b13f046042dcd778712833a4f09c94edbdd53000e19e05b47f0f6"}] restricted [] [] {"api": "https://services1.arcgis.com/GzvOwaQBbX7KLiuG/ArcGIS/rest/services", "apiType": "REST"} [] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-21 2019-06-05 +r3d100013002 Niagara Falls Open Data eng [] https://niagarafalls.ca/services/open/data [] ["opendata@niagarafalls.ca"] This Open Data catalogue is the public platform for the City of Niagara Falls. eng ["other"] {"size": "114 entries", "updatedp": "2019-06-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Niagara Falls", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://niagarafalls.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://niagarafalls.ca/services/open/terms-and-conditions.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://niagarafalls.ca/terms-and-conditions.aspx"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://niagarafalls.ca/terms-and-conditions.aspx"}] restricted [] ["unknown"] no {} ["none"] https://niagarafalls.ca/services/open/terms-and-conditions.aspx [] unknown unknown [] [] {"syndication": "https://niagarafalls.ca/rss/open-data.xml", "syndicationType": "RSS"} 2019-03-21 2019-06-21 +r3d100013003 City of Brampton Open Data eng [] http://geohub.brampton.ca/pages/data/ [] ["open@brampton.ca"] Discover, analyze, and download Brampton's Open Data via this portal. eng ["other"] {"size": "434 entries; 226 open data", "updatedp": "2019-06-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "City of Brampton", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.brampton.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "City of Brampton Open Data Terms of Use", "policyURL": "http://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Terms-of-Use.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.brampton.ca/EN/City-Hall/OpenGov/Open-Data-Catalogue/Pages/Terms-of-Use.aspx"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-06-21 +r3d100013004 Township of Langley Open Data Portal eng [] https://data-tol.opendata.arcgis.com/ [] ["opendata@tol.ca"] This portal provides open data sourced directly from the Township of Langley. eng ["other"] {"size": "57 datasets", "updatedp": "2019-06-25"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Township of Langley", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tol.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.tol.ca/connect/talk-to-us/freedom-of-information/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.tol.ca/connect/talk-to-us/freedom-of-information/open-data-license/"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-06-27 +r3d100013005 Town of Canmore Open Data eng [] http://opendata-canmore.opendata.arcgis.com/ [] ["gis@canmore.ca"] Town of Canmore Open Data Catalogue is a publicly available data sharing in ArcGIS Online portal where anyone can access and utilize data relating to the Town of Canmore, Alberta, Canada. You can browse, search, preview, and download a variety of municipal geospatial datasets. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["hydro line", "land use", "vegetation"] [{"institutionName": "Town of Canmore", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://canmore.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Planning Policy Documents", "policyURL": "https://canmore.ca/municipal-services/residents-development-planning/planning-reference/planning-policy-documents"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://s3.amazonaws.com/canmoregis/OpenData/Town+of+Canmore+Open+Data+Licence.pdf"}] restricted [] ["unknown"] {"api": "https://services.arcgis.com/USaXRc3mZF0nhsUu/ArcGIS/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-06-28 +r3d100013006 County of Grande Prairie Open Data eng [] http://opendata.countygp.ab.ca/ [] ["OpenData@countygp.ab.ca"] The County of Grande Prairie public platform for exploring and downloading open data, discovering and building apps, and engaging to solve important local issues. You can analyze and combine Open Datasets using maps, as well as develop new web and mobile applications. eng ["other"] {"size": "42 entries", "updatedp": "2019-07-08"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://opendata.countygp.ab.ca/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "County of Grande Prairie", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.countygp.ab.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://www.countygp.ab.ca/EN/main/community/maps-gis/disclaimer.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.countygp.ab.ca/EN/main/community/maps-gis/open-data/open-data-licence.html"}] closed [] [] {"api": "https://giswebservices.countygp.ab.ca/public/rest/services/Open-Data", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-03-21 2019-07-21 +r3d100013007 Squamish Open Data eng [] http://data.squamish.ca/ [] ["gis@squamish.ca"] This catalogue provides access to published open data from the District of Squamish. eng ["other"] {"size": "59 datasets", "updatedp": "2019-07-08"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://squamish.ca/our-services/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "District of Squamish", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://squamish.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions of Use", "policyURL": "https://squamish.ca/discover-squamish/maps-and-data/open-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://squamish.ca/discover-squamish/maps-and-data/open-data/"}] restricted [] [] {"api": "https://services.arcgis.com/YCM10gnCAvCoAhpj/ArcGIS/rest/services", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-03-21 2019-07-24 +r3d100013008 Town of Huntsville Open Data eng [] https://huntsville-muskoka.opendata.arcgis.com/ [] ["https://www.huntsville.ca//Modules/email/emailattachment.aspx?CV2=j5lA5HnX5lA5HEOgY5eILLPlUsFmwiPXAeQuAleQuAl&ref=https://www.huntsville.ca/en/home-property-and-planning/maps.aspx?_mid_=9048&lang=en"] Open data (including maps and applications) for the Town of Huntsville. eng ["other"] {"size": "34 datasets", "updatedp": "2019-07-09"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.huntsville.ca/en/council-and-administration/open-government.aspx [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Town of Huntsville", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.huntsville.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.huntsville.ca/en/council-and-administration/online-terms-of-use.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.huntsville.ca/en/open-government-licence.aspx"}] restricted [] [] {"api": "https://services1.arcgis.com/5Av2OaC0epjp7wD3/ArcGIS/rest/services", "apiType": "REST"} [] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-03-21 2019-07-24 +r3d100013009 Grey County Open Data eng [] https://maps.grey.ca/pages/open-data [] ["https://www.grey.ca/contact-us?edit%5Bsubmitted%5D%5Brecipient%5D=gis"] This is Grey's public hub for exploring and Downloading Open Data, Learning about Grey's Stories and Analyzing and Combining Open Datasets to tell your own story. eng ["other"] {"size": "57 datasets", "updatedp": "2019-07-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://maps.grey.ca/pages/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Grey County", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://maps.grey.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "http://maps.grey.ca/pages/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://maps.grey.ca/pages/terms"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-08-01 +r3d100013010 Haldimand County Open Data eng [] http://opendata.haldimandcounty.on.ca/ [] ["gistickets@haldimandcounty.on.ca"] This is Haldimand County's public platform for exploring and downloading open data, discovering and building apps, and engaging to solve important local issues. You can analyze and combine Open Datasets using maps, as well as develop new web and mobile applications. eng ["other"] {"size": "32 datasets", "updatedp": "2019-07-30"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Haldimand County", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.haldimandcounty.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Information Technology Backup and Data Recovery Policy", "policyURL": "https://www.haldimandcounty.ca/wp-content/uploads/2018/10/Information-Technology-Backup-and-Data-Recovery-Policy-2009-05.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://opendata.haldimandcounty.on.ca/"}] restricted [] ["unknown"] {"api": "https://maps.haldimandcounty.on.ca/arcgis/rest/services/VersionFourWebMap/ThematicData/MapServer/43/query?outFields=*&where=1%3D1", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-21 2019-08-04 +r3d100013011 Town of Ajax Open Data eng [{"additionalName": "Ajax Open Data", "additionalNameLanguage": "eng"}] http://opendata.ajax.ca/ [] ["GISServices@ajax.ca"] Free and open access to data from the Town of Ajax. This website includes downloadable data, interactive maps, and more. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["community services", "education", "housing", "planning and development", "recreation", "transportation"] [{"institutionName": "Town of Ajax", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ajax.ca/en/index.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Engage and collaborate", "policyURL": "https://doc.arcgis.com/de/hub/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://townofajax.maps.arcgis.com/sharing/rest/content/items/22e2d8e248724d7cb0310dc2db675abd/data"}] restricted [] ["other"] {"api": "https://exploreajax.ajax.ca/mapajax/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-21 2019-08-16 +r3d100013012 SENSOR eng [{"additionalName": "SENSOR.awi.de", "additionalNameLanguage": "eng"}] https://sensor.awi.de [] ["sensor@awi.de"] SENSOR.awi.de is a repository for metadata information on research platforms/devices/sensors used to acquire scientific data. It supports item versionning including minting of PIDs. All items are cite-enabled. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://sensor.awi.de/videos/14.09.2018-BestPractices.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PANGAEA", "device", "fluorescence sensor", "heterogeneous platform", "oxygen sensor", "salinity sensor", "software", "towed system", "vessel"] [{"institutionName": "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "awi"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}] [{"policyName": "SENSOR User Best Practices and Infos", "policyURL": "https://sensor.awi.de/videos/14.09.2018-BestPractices.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] restricted [] ["other"] yes {} ["none"] [] unknown unknown [] [] {} 2019-03-22 2020-08-18 +r3d100013014 Share_it deu [{"additionalName": "Open Access und Forschungsdaten-Repositorium der Hochschulbibliotheken in Sachsen-Anhalt", "additionalNameLanguage": "deu"}] https://opendata.uni-halle.de [] ["roberto.cozatl@bibliothek.uni-halle.de", "shareit.admin@bibliothek.uni-halle.de"] This is an institutional repository which hosts the publications and research output of higher and further education institutions in Sachsen-Anhalt, Germany. The interface of the repository is available in German and English. Most of the content is in German. eng ["institutional"] {"size": "7 research data", "updatedp": "2019-03-08"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://opendata.uni-halle.de/Leitlinien.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Martin-Luther-Universit\u00e4t Halle-Wittenberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-halle.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-halle.de/impressum.php?id=1"]}] [{"policyName": "Open Access Policy OVGU", "policyURL": "https://www.ub.ovgu.de/Publizieren+_+Open+Access/Open+Access/Policy.html"}, {"policyName": "Research Data Management Policy MLU", "policyURL": "http://wcms.itz.uni-halle.de/download.php?down=48148&elem=3101893"}, {"policyName": "Share_it Policy", "policyURL": "https://opendata.uni-halle.de/Leitlinien.pdf"}, {"policyName": "Terms and Conditions", "policyURL": "https://opendata.uni-halle.de/Allgemeine%20Bedingungen.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.de"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://opendata.uni-halle.de/Leitlinien.pdf"}] restricted [{"dataUploadLicenseName": "Deposite license - research data", "dataUploadLicenseURL": "https://opendata.uni-halle.de/Deposit-Lizenz-Share_it_Forschungsdaten.pdf"}] ["DSpace"] {} ["DOI", "hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://opendata.uni-halle.de/feed/atom_1.0/1981185920/13820", "syndicationType": "ATOM"} Partners: https://opendata.uni-halle.de/Kontakt.jsp 2019-03-27 2019-03-30 +r3d100013015 Project Data Sphere eng [{"additionalName": "PDS", "additionalNameLanguage": "eng"}] https://www.projectdatasphere.org/projectdatasphere/html/home ["RRID:SCR_003726", "RRID:nlx_157911"] ["https://www.projectdatasphere.org/projectdatasphere/html/contactUs", "info@projectdatasphere.org"] Project Data Sphere, LLC, operates a free digital library-laboratory where the research community can broadly share, integrate and analyze historical, de-identified, patient-level data from academic and industry cancer Phase II-III clinical trials. These patient-level datasets are available through the Project Data Sphere platform to researchers affiliated with life science companies, hospitals and institutions, as well as independent researchers, at no cost and without requiring a research proposal. eng ["disciplinary"] {"size": "189 datasets", "updatedp": "2021-03-04"} 2014-04-08 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20514 Hematology, Oncology, Transfusion Medicine", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.projectdatasphere.org/projectdatasphere/html/about [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cancer", "clinical", "data sharing", "oncology", "patients", "studies", "treatment", "trials", "tumor"] [{"institutionName": "CEO Rountable on cancer", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ceoroundtableoncancer.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ceoroundtableoncancer.org/contact"]}, {"institutionName": "SAS", "institutionAdditionalName": ["SAS Institute"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.sas.com/en_us/home.html", "institutionIdentifier": ["ROR:01093z329"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.sas.com/en_us/contact.html"]}] [{"policyName": "Terms of Use", "policyURL": "https://data.projectdatasphere.org/projectdatasphere/html/termsOfUse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://data.projectdatasphere.org/projectdatasphere/html/resources/PDF/DATA_USER_AGREEMENT"}] restricted [] ["unknown"] {} ["none"] https://data.projectdatasphere.org/projectdatasphere/html/resources/PDF/DATA_USER_AGREEMENT [] unknown yes [] [] {} 2019-03-27 2021-03-04 +r3d100013016 West Parry Sound Open Data Portal eng [] http://data-wpsgn.opendata.arcgis.com/ [] ["info@wpsgn.ca"] This catalogue provides access to open government data for the sub-region of West Parry Sound. eng ["other"] {"size": "9 datasets", "updatedp": "2019-08-13"} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["civic address", "island names", "island numbers", "municipal boundary line", "road centreline"] [{"institutionName": "West Parry Sound Geography Network", "institutionAdditionalName": ["WPSGN", "wpsgn.ca"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sites.google.com/view/wpsgnca/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://wpsgn.ca/OpenGovernmentLicense%E2%80%93TownshipofTheArchipelago.pdf"}] restricted [] ["unknown"] {"api": "http://data-wpsgn.opendata.arcgis.com/datasets/road-centreline/geoservice", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-28 2021-07-28 +r3d100013017 City of Airdrie Open Data eng [] http://data-airdrie.opendata.arcgis.com/ [] ["gis@airdrie.ca"] Open data sourced from the City of Airdrie. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.airdrie.ca/index.cfm?serviceID=10 [{"name": "Configuration data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["LiDAR", "boundaries", "geocoding", "geoconnection", "maps", "roads"] [{"institutionName": "City of Airdrie", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.airdrie.ca/index.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.airdrie.ca/index.cfm?serviceID=411"]}] [{"policyName": "Conditions of use", "policyURL": "https://www.airdrie.ca/index.cfm?serviceID=804"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://data-airdrie.opendata.arcgis.com/pages/our-open-licence"}] restricted [] ["other"] {"api": "https://services1.arcgis.com/bctnJobT0aahg98G/ArcGIS/rest/services", "apiType": "REST"} ["none"] http://data-airdrie.opendata.arcgis.com/ [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-03-28 2019-08-16 +r3d100013018 Alberta Geological Survey Open Data Portal eng [{"additionalName": "AGS Open Data Portal", "additionalNameLanguage": "eng"}] https://geology-ags-aer.opendata.arcgis.com/ ["biodbcore-001593"] ["AGS-Info@aer.ca"] The Alberta Geological Survey (AGS) Open Data Portal features a subset of GIS data related to the geology of the province of Alberta and published by the AGS. The AGS delivers geoscience in several key areas; including surficial mapping, bedrock mapping, geological modelling, resource evaluation (hydrocarbons, minerals), groundwater, and geological hazards. eng ["other"] {"size": "26 collections", "updatedp": "2019-08-13"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ags.aer.ca/about-the-ags/what-we-do [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Hydrogeology", "bedrock geology", "ninerals", "seismic", "surficial geology"] [{"institutionName": "Alberta Geological Survey", "institutionAdditionalName": ["AGS"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ags.aer.ca/", "institutionIdentifier": ["ISNI:0000 0001 0742 7080", "RRID:SCR_003402", "RRID:nlx_157758"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.alberta.ca/licence"}] restricted [] ["unknown"] {"api": "https://services2.arcgis.com/jQV6VMr2Loovu7GU/arcgis/rest/services/Industrial_Mineral_Occurrence_(v2_2016_Jun_17)/FeatureServer/0/query?outFields=*&where=1%3D1", "apiType": "REST"} ["none"] https://ags.aer.ca/copyright-legal-disclaimers.htm#credit [] unknown yes [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2021-11-16 +r3d100013019 Sunshine Coast Regional District Open Data eng [{"additionalName": "SCRD Open Data", "additionalNameLanguage": "eng"}] http://data-myscrd.opendata.arcgis.com/ [] ["scrdmapping@is.scrd.ca"] This open data portal provides access to the geospatial datasets of the Sunshine Coast Regional District (SCRD). eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.scrd.ca/data-download [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["boundaries", "eelgrass", "landuse", "parks", "planning", "water"] [{"institutionName": "Sunshine Coast Regional District", "institutionAdditionalName": ["SCRD"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.scrd.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@scrd.ca"]}] [{"policyName": "Terms and Conditions of Use Open Government License", "policyURL": "https://www.scrd.ca/scrd_disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.scrd.ca/files/File/Corporate/GIS_Files/DataDownLoad/OpenDataLicenseAgreement.pdf"}] restricted [] ["other"] {"api": "http://www2.scrd.ca/arcgis/rest/services/OpenData", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2019-08-18 +r3d100013020 District of Peachland Open Data eng [] https://peachland2017-01-16t194902237z-rdco.opendata.arcgis.com/ [] ["gis.support@cord.bc.ca"] Search, explore, and download open datasets sourced from the District of Peachland. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["PCH", "cadastre", "legal plans", "linework", "locations", "roads"] [{"institutionName": "District of Peachland", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.peachland.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.peachland.ca/contact"]}, {"institutionName": "Regional District of Central Okanagan", "institutionAdditionalName": ["RDCO"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.regionaldistrict.com/your-services/mapping-gis.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.regionaldistrict.com/about-the-rdco/contact-us.aspx"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.regionaldistrict.com/your-services/mapping-gis/disclaimer.aspx"}] restricted [] ["other"] {"api": "https://www.rdcogis.com/arcgis/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2019-08-21 +r3d100013021 Westbank First Nation Open Data eng [{"additionalName": "WFN Open Data", "additionalNameLanguage": "eng"}] https://wfn-open-data-rdco.opendata.arcgis.com/ [] ["gis.support@cord.bc.ca"] This open data portal includes datasets related to Westbank First Nation. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["land use", "legal plans", "locations", "roads", "storm"] [{"institutionName": "Regional District of Central Okanagan", "institutionAdditionalName": ["RDCO"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.regionaldistrict.com/your-services/mapping-gis.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.regionaldistrict.com/about-the-rdco/contact-us.aspx"]}, {"institutionName": "Westbank First Nation", "institutionAdditionalName": ["WFN"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wfn.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wfn.ca/contact-us.htm?RD=1"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.regionaldistrict.com/your-services/mapping-gis/disclaimer.aspx"}] restricted [] ["other"] {"api": "https://www.rdcogis.com/arcgis/rest/services/DataDownload/WFN_DataDownload/MapServer", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2019-08-22 +r3d100013022 Central Lake Ontario Conservation Open Data Portal eng [{"additionalName": "CLOCA Open Data Portal", "additionalNameLanguage": "eng"}] https://cloca-camaps.opendata.arcgis.com/ [] ["https://cloca-camaps.opendata.arcgis.com/pages/contact-us"] Explore and download open data from the Central Lake Ontario Conservation (CLOCA) Open Data Portal. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["aquatics", "boundary", "conservation", "flood forecasting", "groundwater", "hydrology"] [{"institutionName": "Central Lake Ontario Conservation", "institutionAdditionalName": ["CLOCA"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cloca.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mail@cloca.com"]}] [{"policyName": "About Licensing", "policyURL": "http://cloca-camaps.opendata.arcgis.com/pages/open-data-license"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "http://cloca-camaps.opendata.arcgis.com/pages/open-data-license"}, {"dataLicenseName": "other", "dataLicenseURL": "http://cloca-camaps.opendata.arcgis.com/pages/open-data-license"}] restricted [] ["other"] {"api": "https://clocagis.cloca.com/int/rest/services/OpenData_CLOCA", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2019-08-22 +r3d100013023 Quinte West Open GIS Data Portal eng [] http://geodata-quintewest.opendata.arcgis.com/ ["biodbcore-001594"] ["stevew@quintewest.ca"] Free access to open GIS data from the city of Quinte West. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["maps", "roads", "urban areas"] [{"institutionName": "City of Quinte West", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.quintewest.ca/en/index.asp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "http://www.quintewestmaps.com/maps/QuinteWestOpenDataLicence1.pdf"}] restricted [] ["other"] {"api": "https://services3.arcgis.com/cpi3xYswHz1VWunb/ArcGIS/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [{"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} 2019-03-28 2021-11-16 +r3d100013025 East Hants Open Data eng [] http://newdata-easthants.opendata.arcgis.com/ [] ["planning@easthants.ca"] This portal provides free access to GIS data from the Municipality of East Hants, Nova Scotia. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.easthants.ca/government/municipal-departments/planning-development-2/interactive-east-hants/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Bay of Fundy", "Metro Halifax", "citizen engagement", "maps", "trails"] [{"institutionName": "Municipality of East Hants", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.easthants.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.easthants.ca/government/contact/"]}] [{"policyName": "Strategic Plan Achievements, Key Strategies", "policyURL": "https://www.easthants.ca/government/council/reports/strategic-plan-achievements/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] restricted [] ["other"] {"api": "https://services.arcgis.com/mrvsguor7fEXSaqM/ArcGIS/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-03-28 2019-08-22 +r3d100013027 Dementias Platform UK Data Portal eng [{"additionalName": "DPUK Data Portal", "additionalNameLanguage": "eng"}] https://portal.dementiasplatform.uk/ [] ["https://portal.dementiasplatform.uk/Home/Contact", "info@dementiasplatform.uk"] The DPUK Data Portal brings together records of over 2 million people in a free-to-access resource. Researchers can identify which cohorts are relevant to them, apply for access to the data and then analyse it in a secure, remote environment with a complete data linkage and analysis package. eng ["disciplinary"] {"size": "45 cohorts; records of over 3 million peoples", "updatedp": "2020-06-04"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.dementiasplatform.uk/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cohort data", "cure", "degenerative disease", "dementia", "prevention", "treatment"] [{"institutionName": "Medical Research Council", "institutionAdditionalName": ["MRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mrc.ukri.org/", "institutionIdentifier": ["ROR:03x94j517", "RRID:SCR_011018", "RRID:nlx_inv_1005080"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford, Department of Psychiatry, Warneford Hospital", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.psych.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dpuk@psych.ox.ac.uk", "https://www.psych.ox.ac.uk/about/contact-us"]}] [{"policyName": "Data Management Policy", "policyURL": "https://portal.dementiasplatform.uk/Apply/DataManagementPolicy"}, {"policyName": "Freedom of Information Act 2000", "policyURL": "http://www.admin.ox.ac.uk/councilsec/compliance/foi/"}, {"policyName": "Researcher Intellectual Property Policy", "policyURL": "https://portal.dementiasplatform.uk/Apply/ResearcherIntellectualPropertyPolicy"}, {"policyName": "Terms & Conditions", "policyURL": "https://portal.dementiasplatform.uk/Home/TermsAndConditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://portal.dementiasplatform.uk/Apply/DataAccessPolicy"}] closed [] ["unknown"] {} ["none"] https://portal.dementiasplatform.uk/Home/AccessAgreement [] yes yes [] [] {} DPUK Data Portal is part of the UK Secure eResearch Platform (UKSeRP) based at Swansea University. Partners: https://www.dementiasplatform.uk/about/introducing-dementias-platform-uk-dpuk. 2019-04-03 2020-06-25 +r3d100013028 BBMRI-ERIC Directory eng [{"additionalName": "Biobanking and BioMolecular resources Research Infrastructure - European Research Infrastructure Consortium Directory", "additionalNameLanguage": "eng"}, {"additionalName": "Directory of Biobanks", "additionalNameLanguage": "eng"}] https://directory.bbmri-eric.eu/menu/main/app-molgenis-app-biobank-explorer/biobankexplorer ["FAIRsharing_doi:10.25504/FAIRsharing.q9VUYM"] ["contact@bbmri-eric.eu"] BBMRI-ERIC is a European research infrastructure for biobanking. We bring together all the main players from the biobanking field – researchers, biobankers, industry, and patients – to boost biomedical research. To that end, we offer quality management services, support with ethical, legal and societal issues, and a number of online tools and software solutions. Ultimately, our goal is to make new treatments possible. The Directory is a tool to share aggregate information about the biobanks that are willing external collaboration. It is based on the MIABIS 2.0 standard, which describes the samples and data in the biobanks at an aggregated level. eng ["disciplinary"] {"size": "515 biobanks with over 60 million biological samples;", "updatedp": "2019-04-05"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://directory.bbmri-eric.eu/menu/main/background# [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "FAIR", "blood", "cdna", "cell", "clinical data", "dna", "health", "plasma", "rna"] [{"institutionName": "BBMRI-ERIC", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bbmri-eric.eu/", "institutionIdentifier": ["ROR:00pwncn89", "RRID:SCR_004226", "RRID:nlx_24389"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.bbmri-eric.eu/contact/"]}] [{"policyName": "BBMRI-ERIC Quality Management", "policyURL": "http://www.bbmri-eric.eu/services/quality-management/"}, {"policyName": "GDPR Code of Conduct", "policyURL": "http://code-of-conduct-for-health-research.eu/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://directory.bbmri-eric.eu/menu/main/background"}] restricted [] ["other"] yes {"api": "https://directory.bbmri-eric.eu/menu/main/references", "apiType": "REST"} ["none"] https://directory.bbmri-eric.eu/menu/main/references [] unknown yes [] [] {} BBMRI-ERIC is a European organisation established under the ERIC legal framework, funded by yearly membership fees paid by the Member States. National Nodes and contact for Local Bioabanks: http://www.bbmri-eric.eu/national-nodes/ 2019-04-03 2020-06-25 +r3d100013029 TUdatalib eng [{"additionalName": "TUdatalib Repositorium", "additionalNameLanguage": "deu"}, {"additionalName": "TUdatalib Repository", "additionalNameLanguage": "eng"}] https://tudatalib.ulb.tu-darmstadt.de [] ["tudata@tu-darmstadt.de"] TUdatalib is the institutional repository of the TU Darmstadt for research data. It enables the structured storage of research data and descriptive metadata, long-term archiving (at least 10 years) and, if desired, the publication of data including DOI assignment. In addition there is a fine granular rights and role management. eng ["institutional"] {"size": "", "updatedp": ""} 2019-02 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.tu-darmstadt.de/tudata/tudata/forschungsdaten_archivieren_und_veroeffentlichen/index.de.jsp [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Technische Universit\u00e4t Darmstadt", "institutionAdditionalName": ["TU Darmstadt"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tu-darmstadt.de/index.en.jsp", "institutionIdentifier": ["ROR:05n911h24"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": ["https://www.tu-darmstadt.de/kontakt_1/index.en.jsp"]}] [{"policyName": "Leitfaden und Informationen zu TUdatalib f\u00fcr Administratoren", "policyURL": "https://tudatalib.ulb.tu-darmstadt.de/handle/tudatalib/1958.8?locale-attribute=en_US"}, {"policyName": "Leitlinien zum Umgang mit digitalen Forschungsdaten an der TU Darmstadt", "policyURL": "https://www.ulb.tu-darmstadt.de/fdm-leitlinien"}, {"policyName": "Nutzungsvereinbarung f\u00fcr TUdatalib", "policyURL": "https://www.tu-darmstadt.de/tudata/tudata/tudatalib/inhalt_mit_marginalienspalte_327.de.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DSpace"] yes {"api": "https://tudatalib.ulb.tu-darmstadt.de/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} TUdatalib is operated jointly by ULB and HRZ under the umbrella of TUdata: https://www.tu-darmstadt.de/tudata 2019-04-04 2020-06-26 +r3d100013030 RiuNet spa [{"additionalName": "Repositorio Institucional UPV", "additionalNameLanguage": "spa"}, {"additionalName": "Repositorio Institucional de la Universitat Polit\u00e8cnica de Val\u00e8ncia", "additionalNameLanguage": "spa"}] https://riunet.upv.es/handle/10251/55048 ["hdl:10251/55048"] ["riunet@bib.upv.es"] RiuNet is intended to save the University community's production, personal or institutional, in collections. These can be made up of different types of documents such as Objects of learning (Polimedia, virtual labs and educational articles), theses, journal articles, maps, scholary works, creative works, institutional heritage, multimedia, teaching material, institutional production, electronic journals, conference proceedings and research data. eng ["institutional"] {"size": "", "updatedp": ""} ["cat", "eng", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://riunet.upv.es/?locale=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universitat Polit\u00e8cnica de Val\u00e8ncia", "institutionAdditionalName": ["Polytechnic University of Valencia", "UPV"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.upv.es/index-en.html", "institutionIdentifier": ["RRID:SCR_000255", "RRID:nlx_157969"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.upv.es/otros/contacto-en.html"]}, {"institutionName": "Universitat Polit\u00e8cnica de Val\u00e8ncia, Servicio de Biblioteca y Documentaci\u00f3n Cient\u00edfica", "institutionAdditionalName": ["Polytechnic University of Valencia, Library and Scientific Documentation Office"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.upv.es/entidades/ABDC/index-es.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica institucional de la Universitat Polit\u00e8cnica de Val\u00e8ncia sobre Acceso Abierto", "policyURL": "https://riunet.upv.es/handle/10251/11342"}, {"policyName": "RiuNet's Policies", "policyURL": "https://riunet.upv.es/help/politicacol"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/es/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/es/"}] restricted [{"dataUploadLicenseName": "Pol\u00edtica de dep\u00f3sito", "dataUploadLicenseURL": "https://riunet.upv.es/help/politicacol#6"}] ["DSpace"] yes {"api": "https://riunet.upv.es/oai/", "apiType": "OAI-PMH"} ["DOI", "hdl"] http://www.upv.es/entidades/ABDC/infoweb/bg/info/975713normali.html ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {"syndication": "https://riunet.upv.es/feed/atom_1.0/site", "syndicationType": "RSS"} 2019-04-08 2020-07-08 +r3d100013031 AIDA Data Hub eng [{"additionalName": "AIDA Dataset Register", "additionalNameLanguage": "eng"}, {"additionalName": "Analytic Imaging Diagnostics Arena Data Hub", "additionalNameLanguage": "eng"}] https://datasets.aida.medtech4health.se/ [] ["claes.lundstrom@liu.se", "joel.hedlund@liu.se"] The AIDA data hub is a place where researchers can collaboratively gather, annotate, share and enrich large volumes of research data for machine learning in medical imaging diagnostics. eng ["disciplinary"] {"size": "4.32 TB and growing", "updatedp": "2019-11-26"} 2019-01-01 ["eng", "swe"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20506 Pathology and Forensic Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://medtech4health.se/aida/datahub/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["FAIR", "artificial intelligence", "pathology", "radiology"] [{"institutionName": "Analytic Imaging Diagnostics Arena", "institutionAdditionalName": ["AIDA"], "institutionCountry": "SWE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://medtech4health.se/aida/", "institutionIdentifier": [], "responsibilityStartDate": "2018-10-01", "responsibilityEndDate": "", "institutionContact": ["claes.lundstrom@liu.se", "joel.hedlund@liu.se"]}, {"institutionName": "Link\u00f6ping University, Centre for Medical Image science and Visualization", "institutionAdditionalName": ["CMIV"], "institutionCountry": "SWE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://liu.se/cmiv", "institutionIdentifier": [], "responsibilityStartDate": "2018-10-01", "responsibilityEndDate": "", "institutionContact": ["anders.s.persson@liu.se", "joel.hedlund@liu.se"]}, {"institutionName": "Region \u00d6sterg\u00f6tland", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.regionostergotland.se/", "institutionIdentifier": [], "responsibilityStartDate": "2018-10-01", "responsibilityEndDate": "", "institutionContact": ["Dennis.Carlsson@regionostergotland.se"]}, {"institutionName": "Sectra AB", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.sectra.com/", "institutionIdentifier": [], "responsibilityStartDate": "2018-10-01", "responsibilityEndDate": "", "institutionContact": ["claes.lundstrom@sectra.com", "daniel.forsberg@sectra.com"]}] [{"policyName": "AIDA GDPR policy", "policyURL": "https://docs.google.com/document/d/1TvjTeoUiqaafnBQGaJDjHcFCUBfhiKmUTWJG_bkGIWs/edit"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://datasets.aida.medtech4health.se/10.23698/aida/drbr#license"}] restricted [] ["other"] {"api": "https://datasets.aida.medtech4health.se/api/1.0/metadata.json", "apiType": "REST"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} API url to human readable page with links to versioned APIs: https://datasets.aida.medtech4health.se/api/ 2019-04-08 2019-11-26 +r3d100013033 Copernicus' Heliograph eng [{"additionalName": "COPS", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/COPS ["DOI:10.17171/2-7"] ["gerd.grasshoff@hu-berlin.de"] The measured values of the panel form the basis for a 3D reconstruction of the panel, which was calculated using photos taken by Gerd Graßhoff and Joanna Pruszynska with kind support of the Museum Warmii in autumn 2016. This repository contains the photos, the models, and the research data derived from them. eng ["disciplinary"] {"size": "5 Research Objects;", "updatedp": "2018-04-10"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/COPS/overview [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Astronomic heliograph", "Copernicus", "Olsztyn"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de", "institutionIdentifier": ["ROR:01hcx6992", "RRID:SCR_005626", "RRID:nlx_41554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Museum of Warmia & Mazury", "institutionAdditionalName": ["Museum von Ermland und Masuren", "Muzeum Warmii i Mazur w Olsztynie", "\u041c\u0443\u0437\u0435\u0439 \u0412\u0430\u0440\u043c\u0438\u0438 \u0438 \u041c\u0430\u0437\u0443\u0440"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://muzeum.olsztyn.pl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://repository.edition-topoi.org/#by_type=collection;page=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/COPS#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-04-10 2020-07-08 +r3d100013034 Construction Drawings eng [{"additionalName": "ACDC", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/ACDC [] ["gerd.grasshoff@hu-berlin.de"] In the Hellenistic and Roman period, many buildings and material objects were constructed using structural geometrical specifications. Ancient sundials were built using basic geometrical forms of very few construction types taking also into account the astronomical dimensions. In architectural drawings, comparable proportions can be found. The tower of the winds merges all these geometrical principles of construction. The construction drawings of this collection comprise geometrical drafts used for the construction of buildings. They differ from simple geometrical forms in that they present the general layout of the lines indicating objects and geometrical areas. Their geometrical dimensions are constructed according to the principles of proportional relations and were implemented in – sometimes very complex – work processes in which artefacts of the original objects were constructed. Construction drawings from the pillars of Didyma, which were discovered by Lothar Haselberger, serve as a paradigmatic model for these architectural drawings. eng ["disciplinary"] {"size": "4 datasets", "updatedp": "2019-04-12"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Aphrodisias", "ancient walls", "architectural geometry", "construction drawings"] [{"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/dai/meldungen", "institutionIdentifier": ["ROR:05wps8h17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": ["ROR:01hcx6992", "RRID:SCR_005626", "RRID:nlx_41554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}, {"institutionName": "edition | topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.edition-topoi.org/publishing_with_us/contact"]}] [{"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}, {"policyName": "edition | topoi Publizieren Digitaler Forschungsdaten", "policyURL": "https://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/ACDC/overview [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-04-10 2020-07-08 +r3d100013035 CMO Editionen und Quellen-Katalog deu [{"additionalName": "CMO Edisyonlar\u0131 ve Kaynak Katalo\u011fu", "additionalNameLanguage": "tur"}, {"additionalName": "CMO Editions and Catalogue", "additionalNameLanguage": "eng"}, {"additionalName": "Corpus Musicae Ottomanicae Editionen und Quellen-Katalog", "additionalNameLanguage": "deu"}] https://corpus-musicae-ottomanicae.de/content/index.xml [] ["cmo@uni-muenster.de"] CMO is a long-term project for the critical edition of Near Eastern music manuscripts. The project focusing on manuscripts of Ottoman music written in Hampartsum and staff notations during the nineteenth century, is funded by the German Research Foundation (DFG). This platform provides access to the online versions of both music and text editions, as well as the source catalogue, which is a comprehensive database of printed, manuscript and online sources. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng", "tur"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.uni-muenster.de/CMO-Edition/en/index.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "music manuscript sources", "transcription", "vocal music"] [{"institutionName": "Max Weber Stiftung, Deutsche Geisteswissenschaftliche Institute im Ausland", "institutionAdditionalName": ["MWS", "Max Weber Foundation, German Humanities Institutes Abroad"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.maxweberstiftung.de/startseite.html", "institutionIdentifier": ["ISNI: 0000 0000 8651 2795"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.maxweberstiftung.de/en/ueber-uns/organisation/geschaeftsstelle/kontakt-anfahrt.html"]}, {"institutionName": "Orient-Institut Istanbul", "institutionAdditionalName": [], "institutionCountry": "TUR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.oiist.org/", "institutionIdentifier": ["ISNI: 0000 0000 8190 0334"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.oiist.org/impressum-2/"]}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster, Institut f\u00fcr Arabistik und Islamwissenschaft", "institutionAdditionalName": ["University of M\u00fcnster, Institute for Arabic and Islamic Studies", "WWU M\u00fcnster, Institut f\u00fcr Arabistik und Islamwissenschaft"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-muenster.de/ArabistikIslam/", "institutionIdentifier": ["ISNI: 0000 0004 0454 9471"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["arabist@uni-muenster.de"]}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster, Institut f\u00fcr Musikwissenschaft", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["ISNI: 0000 0001 2096 9829", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "2015", "responsibilityEndDate": "2021-09-30", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Westf\u00e4lische Wilhelms-Universit\u00e4t M\u00fcnster, Institut f\u00fcr Musikwissenschaft", "institutionAdditionalName": ["University of M\u00fcnster, Institute for Musicology", "WWU M\u00fcnster, Institut f\u00fcr Musikwissenschaft"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-muenster.de/Musikwissenschaft/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["musik@uni-muenster.de"]}] [{"policyName": "Legal notice, License", "policyURL": "https://corpus-musicae-ottomanicae.de/content/below/imprint.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.opendatacommons.org/licenses/pddl/1-0/index.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.de"}] restricted [] ["other"] {} ["other"] [] unknown unknown [] [] {} Project and Cooperation partners: https://corpus-musicae-ottomanicae.de/content/below/contributors.xml?lang=en 2019-04-10 2020-07-09 +r3d100013036 LIVIVO eng [{"additionalName": "ZB MED Suchportal Lebenswissenschaften", "additionalNameLanguage": "deu"}, {"additionalName": "ZB MED Search Portal for Life Sciences", "additionalNameLanguage": "eng"}] https://www.livivo.de [] ["https://www.livivo.de/app/misc/contact", "livivo@zbmed.de"] LIVIVO is an interdisciplinary search engine for literature and information in the field of life sciences. It is run by ZB MED – Information Centre for Life Sciences. LIVIVO automatically searches for the terms you enter in a central index of all the databases. The ZB MED Searchportal already provides a large amount of research data from DataCite data centres (e.g. Beijing Genomics Institute, Natural Environment Research Council) in the field of life sciences. These can be searched directly using the "Documenttype=research data" filter. A further integration of data from life science data repositories is planned. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.livivo.de/app/misc/help/about [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["agriculture", "environment", "health", "medicine", "nutrition"] [{"institutionName": "ZB MED - Information Centre for Life Sciences", "institutionAdditionalName": ["ZB MED - Informationszentrum Lebenswissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.zbmed.de/en/", "institutionIdentifier": ["ROR:0259fwx54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.zbmed.de/en/legal-notice/"]}] [{"policyName": "Disclaimer", "policyURL": "https://www.livivo.de/app/misc/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.livivo.de/app/misc/help/about#Copyright_Notice"}] restricted [] ["unknown"] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} LIVIVO combines the former ZB MED search portals MEDPILOT (2003 to 2015) and GREENPILOT (2009 to 2015), both of which were funded by the German Research Foundation (DFG). These two projects also formed part of the Pact for Research and Innovation run by the German Federal Ministry of Education and Research (BMBF). LIVIVO builds upon the technology and content of these two projects to create an even better search experience. Available databases: https://www.livivo.de/app/misc/dbinfo 2019-04-10 2021-06-15 +r3d100013037 Phaidra Vetmeduni Vienna deu [] https://phaidra.vetmeduni.ac.at/ [] ["bibliothekinfo@vetmeduni.ac.at", "support.phaidra@univie.ac.at"] Phaidra Vetmeduni Vienna is the Universitys platform for long-term archiving of digital collections such as Thesis and Research Data. In two years we would enlarge the collection for archive materials such as fotos, books an dias f.e. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng", "ita"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20713 Basic Veterinary Medical Science", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.vetmeduni.ac.at/forschung/forschungsstrategie [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["animals", "endocrinology"] [{"institutionName": "Veterin\u00e4rmedizinische Universit\u00e4t Wien", "institutionAdditionalName": ["University of Veterinary Medicine Vienna", "VUW", "Vetmeduni"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.vetmeduni.ac.at/universitaet", "institutionIdentifier": ["ROR:01w6qp003"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://phaidra.vetmeduni.ac.at/terms_of_use/show_terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=10001848"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-04-10 2021-10-01 +r3d100013039 Toronto Police Service Public Safety Data Portal eng [{"additionalName": "Toronto Police Service Open Data Portal", "additionalNameLanguage": "eng"}] https://data.torontopolice.on.ca/pages/open-data [] ["https://www.torontopolice.on.ca/contact.php"] This online portal provides access to open data sourced from the Toronto Police Service. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.torontopolice.on.ca/pages/frequently-asked-questions [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Major Crime Indicators - MCI", "crime", "fatal traffic collision", "homicide", "robbery", "shootings", "traffic"] [{"institutionName": "Toronto Police Service", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.torontopolice.on.ca/", "institutionIdentifier": ["ISNI: 0000 0000 9267 6964"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.torontopolice.on.ca/contact.php"]}] [{"policyName": "Terms of Use", "policyURL": "https://data.torontopolice.on.ca/pages/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://data.torontopolice.on.ca/pages/licence"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.ontario.ca/page/open-government-licence-ontario"}] restricted [] ["other"] {"api": "https://services.arcgis.com/S9th0jAJ7bqgIRjw/ArcGIS/rest/services", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2019-04-11 2020-07-10 +r3d100013040 Employment Ontario Geo Hub eng [] http://www.eo-geohub.com/ [] ["EO.Analytics@ontario.ca"] This public platform provides access to Employment Ontario open data. eng ["other"] {"size": "44 entries", "updatedp": "2019-04-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.eo-geohub.com/pages/collaboration-and-data-discovery [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Government of Ontario", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ontario.ca/", "institutionIdentifier": ["ROR:015pzp858"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Collaboration and Data Discovery", "policyURL": "http://www.eo-geohub.com/pages/collaboration-and-data-discovery"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://www.ontario.ca/page/open-government-licence-ontario"}] restricted [] ["other"] {"api": "https://developers.arcgis.com/rest/", "apiType": "REST"} [] [] unknown unknown [] [] {} 2019-04-11 2020-07-10 +r3d100013043 UN Data Catalog eng [{"additionalName": "United Nations System Data Catalog", "additionalNameLanguage": "eng"}] https://undatacatalog.org/ [] ["https://undatacatalog.org/#contact"] This website is the result a working group made up of focal points from UN system organizations and aims to establish a commonly accessible UN System Data Catalog. The purpose of the the Data Catalog is to promote the sharing and publishing of open data, so as to improve the availability and accessibility of information across the organizations and entities that comprise the UN system. As our organizations face growing demands with increasingly reducing resources, we absolutely must become more revolutionary in our approaches to meeting our mandates. This includes utilizing information and communications technology (ICT) to the fullest extent possible, by implementing initiatives that improve and enhance analytical capacity and decision support capabilities. The Data Catalog is uniquely placed to provide a single interface for finding, analyzing and working with UN data. While there are several other data platforms, many of which host United Nations data, the catalogue exclusively brings together all open UN data collections in one place, even though they may be published elsewhere. Anyone searching for UN data today has to look in many places and make separate searches on several different platforms. eng ["institutional"] {"size": "2.980 datasets; 51 themes", "updatedp": "2020-07-10"} 2016-03-31 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://undatacatalog.org/#about [{"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Office of Information and Communications Technology", "institutionAdditionalName": ["OICT"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://unite.un.org/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UN System Chief Executives Board", "institutionAdditionalName": ["CEB", "United Nations System Chief Executives Board for Coordination"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unsystem.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United Nations", "institutionAdditionalName": ["UN"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.un.org/en/", "institutionIdentifier": ["ROR:006kxhp52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions of Use", "policyURL": "https://undatacatalog.org/terms-and-conditions-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://undatacatalog.org/copyright-notice"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/copyleft/fdl.html"}] restricted [] ["CKAN"] {} ["none"] https://undatacatalog.org/copyright-notice [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "SDMX - Statistical Data and Metadata Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/sdmx-statistical-data-and-metadata-exchange"}] {} Datasets from the following organizations are referenced on the UN Data Catalog: https://undatacatalog.org/publishers 2019-04-23 2021-06-15 +r3d100013044 ILO Microdata Repository eng [] https://www.ilo.org/dyn/isinventory/inventsheet.display?p_id=1037&p_lang=en [] [] ILO Microdata Repository, an on-line microdata library eng ["disciplinary"] {"size": "1.404 studies; 618.695 variables", "updatedp": "2019-11-13"} 2014-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://undatacatalog.org/dataset/ilo-microdata-repositroy [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["administrative register", "child labour", "enterprise", "establishment", "household income expenditure", "labour force", "population census"] [{"institutionName": "International Labour Organisation", "institutionAdditionalName": ["ILO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ilo.org/global/lang--en/index.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ILOSTAT Microdata Processing Quick Guide", "policyURL": "https://www.ilo.org/wcmsp5/groups/public/---dgreports/---stat/documents/publication/wcms_651746.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/igo/deed.en_US"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ilo.org/global/copyright/lang--en/index.htm"}] closed [] ["unknown"] {} ["none"] https://ilostat.ilo.org/about/dissemination-and-analysis/ [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} 2019-04-23 2021-09-03 +r3d100013045 Czech National Corpus eng [{"additionalName": "CNC", "additionalNameLanguage": "eng"}, {"additionalName": "CNK", "additionalNameLanguage": "ces"}, {"additionalName": "\u010cesk\u00fd n\u00e1rodn\u00ed korpus", "additionalNameLanguage": "ces"}] https://korpus.cz/ [] ["cnk@korpus.cz"] The aim of the project is systematic mapping of Czech and other languages in comparison with Czech. CNC corpora are accessible to everybody interested in studying the language after free registration. eng ["disciplinary"] {"size": "", "updatedp": ""} ["ces", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://wiki.korpus.cz/doku.php/start [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Czech language"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN European Research Infrastructure Consortium, Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Charles University, Faculty of Arts, Institute of the Czech National Corpus", "institutionAdditionalName": ["Univerzita Karlova, Filozofick\u00e1 fakulta, \u00dastav \u010cesk\u00e9ho n\u00e1rodn\u00edho korpusu"], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ucnk.ff.cuni.cz/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "LINDAT/CLARIN Centre for Language Research Infrastructure", "institutionAdditionalName": [], "institutionCountry": "CZE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://lindat.mff.cuni.cz/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "KonText interface manual", "policyURL": "http://wiki.korpus.cz/doku.php/en:manualy:kontext:index"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] ["unknown"] yes {} ["none"] http://wiki.korpus.cz/doku.php/en:cnk:uvod?rev=1545307114&vecdo=cite [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Czech National Corpus is a K certified CLARIN Centre and part of the LINDAT-CLARIN consortium 2019-04-25 2020-07-10 +r3d100013046 PORTULAN CLARIN repository eng [] https://portulanclarin.net/ [] ["https://portulanclarin.net/contact/"] PORTULAN CLARIN Research Infrastructure for the Science and Technology of Language, belonging to the Portuguese National Roadmap of Research Infrastructures of Strategic Relevance, and part of the international research infrastructure CLARIN ERIC eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "por"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://portulanclarin.net/rationale/#mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Portuguese language", "corpora"] [{"institutionName": "Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium", "institutionAdditionalName": ["CLARIN-ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidade de Lisboa, Faculdade de Ci\u00eancias da Universidade de Lisboa, Departamento de Inform\u00e1tica", "institutionAdditionalName": [], "institutionCountry": "PRT", "responsabilityType": ["general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://ciencias.ulisboa.pt/pt/di", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "PORTULAN CLARIN Terms of Service", "policyURL": "https://portulanclarin.net/legal/#terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://portulanclarin.net/agreement/#licensing"}] restricted [{"dataUploadLicenseName": "Resource Deposit Agreement", "dataUploadLicenseURL": "https://portulanclarin.net/agreement/"}] ["other"] yes {"api": "https://portulanclarin.net/repository/oaipmh/?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "hdl"] [] unknown yes ["CLARIN certificate B", "other"] [] {} PORTULAN CLARIN repository is a C certified CLARIN Centre. PORTULAN CLARIN repository can be searched by VLO - Virtual Language Observatory https://vlo.clarin.eu/?0-1.ILinkListener-searchContainer-selections-facets-container-facets-2-facet-facetValues-valuesContainer-valuesList-5-facetValues-0-facetSelect . 2019-04-25 2022-01-03 +r3d100013047 South African Centre for Digital Language Resources eng [{"additionalName": "SADiLaR", "additionalNameLanguage": "eng"}] https://www.sadilar.org/ [] ["info@sadilar.org"] The South African Centre for Digital Language Resources (SADiLaR) is a national centre supported by the Department of Science and Technology (DST). SADiLaR has an enabling function, with a focus on all official languages of South Africa, supporting research and development in the domains of language technologies and language-related studies in the humanities and social sciences. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.sadilar.org/index.php/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Afrikaans", "English", "Sesotho", "Sesotho sa Leboa", "Setswana", "Siswati", "South African Languages", "Tshivenda", "Xitsonga", "isiNdebele", "isiXhosa", "isiZulu", "speech corpora"] [{"institutionName": "North-West University, Faculty of Humanities, South African Centre for Digital Language Resources", "institutionAdditionalName": ["SADiLaR"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sadilar.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Republic of South Africa, Department: Science & Technology", "institutionAdditionalName": ["DST"], "institutionCountry": "ZAF", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dst.gov.za/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policy", "policyURL": "https://www.sadilar.org/index.php/guidelines-standards/data-access-policy"}, {"policyName": "Digitisation guidelines", "policyURL": "https://www.sadilar.org/index.php/guidelines-standards/digitization-procedures"}, {"policyName": "Terms of use", "policyURL": "https://www.sadilar.org/index.php/guidelines-standards/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["DSpace"] no {"api": "https://repo.sadilar.org/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] https://www.sadilar.org/index.php/guidelines-standards/data-citation [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} SADiLaR is a C certified CLARIN Centre. SADiLaR can be searched by the CLARIN VLO - Virtual Language Observatory https://vlo.clarin.eu/?0-1.ILinkListener-searchContainer-selections-facets-container-facets-2-facet-facetValues-valuesContainer-valuesList-6-facetValues-0-facetSelect . 2019-04-25 2020-07-22 +r3d100013048 CLARIN Knowledge Centre for the Languages of Sweden eng [{"additionalName": "Clarin kunskapscentrum", "additionalNameLanguage": "swe"}, {"additionalName": "SWELANG", "additionalNameLanguage": "eng"}] http://www.sprakochfolkminnen.se/om-oss/forskning/sprakbanken-sam/clarin-kunskapscentrum/swelang.html [] ["Swe-clarin@sprakochfolkminnen.se"] The knowledge centre is an information service offering advice on the use of digital language resources and tools for Swedish and other languages in Sweden, as well as other parts of the intangible cultural heritage of Sweden. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Nationella spr\u00e5kbanken", "Spr\u00e5kbanken Sam", "Swedish dialects", "Swedish minority languages", "Swedish sign language", "languages of Sweden"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN - European Research Infrastructure for Language Resources and Technology Common Language Resources and Technology Infrastructure - European Research Infrastructure Consortium"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["clarin@clarin.eu"]}, {"institutionName": "Institute for Language and Folklore", "institutionAdditionalName": ["ISOF", "Institutet f\u00f6r spr\u00e5k och folkminnen"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sprakochfolkminnen.se/om-oss/verksamhet/about-the-institute.html", "institutionIdentifier": ["ROR:00e4n7b29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SWE-CLARIN", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sweclarin.se/eng/home", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Spr\u00e5kr\u00e5det", "institutionAdditionalName": ["Institute of Language and Folklore in Stockholm, Uppsala and G\u00f6teborg", "The Language Council of Sweden"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sprakochfolkminnen.se/om-oss/kontakt/sprakradet/in-english.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SWE-CLARIN Handbok", "policyURL": "https://sweclarin.se/swe/handbok"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["unknown"] {} ["none"] [] unknown yes [] [] {} SWELANG is a K certified CLARIN Centre and part of SWE-CLARIN consortium 2019-04-25 2020-07-22 +r3d100013049 PermaSense High-Alpine Permafrost Data eng [] http://data.permasense.ch [] ["alain.geiger@geod.baug.ethz.ch", "andreas.vieli@geo.uzh.ch"] Data from high-alpine mountain permafrost research sites. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tec.ee.ethz.ch/research/networked-embedded-systems/permasense.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Dirruhorn", "Jungfraujoch", "Matterhorn", "Permos", "Saastal", "on-site weather", "sensor network"] [{"institutionName": "ETH Z\u00fcrich, Dept. of Information Technology and Electrical Engineering, Computer Engineering & Networks Lab", "institutionAdditionalName": ["ETH Z\u00fcrich, Departement Informationstechnologie und Elektrotechnik, Computer Engineering Group", "ETH Z\u00fcrich, TEC"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tec.ee.ethz.ch/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tec.ee.ethz.ch/utils/contact.html"]}, {"institutionName": "PermaSense Consortium", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.permasense.ch/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.permasense.ch/en/people.html"]}] [{"policyName": "PermaSense Data Management", "policyURL": "https://www.tec.ee.ethz.ch/research/networked-embedded-systems/permasense.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.tec.ee.ethz.ch/footer/copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.permasense.ch/en/publicdataaccess.html"}] restricted [] ["other"] {} ["none"] https://www.tec.ee.ethz.ch/footer/copyright.html [] unknown unknown [] [] {} 2019-04-26 2021-06-15 +r3d100013050 The Tree Atlas Project eng [{"additionalName": "NBRI Tree Atlas Project", "additionalNameLanguage": "eng"}, {"additionalName": "Namibian Tree Atlas", "additionalNameLanguage": "eng"}, {"additionalName": "National Botanical Research Institute Tree Atlas Project", "additionalNameLanguage": "eng"}] http://treeatlas.biodiversity.org.na/index.php [] [] The Tree Atlas Project is focused on the trees and shrubs of Namibia. The project gathered and recorded information about the distribution, abundance and general biology of woody plants, which are an important resource in Namibia. The information was collected over 6 years (October 1997-December 2003) and entered into a database housed at the National Botanical Research Institute. This web site was made possible, and remains online, through the continued kind support of the Namibian Tree Atlas Project. Online version active since paper version launch date, 2005. This page last modified on: 11 February 2018, at 08:42 am (Namibian time). Site design, layout and coding by John Irish. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Africa", "Namibia", "Shrubs", "Trees", "Woody Plants"] [{"institutionName": "National Botanical Research Institute", "institutionAdditionalName": ["NBRI"], "institutionCountry": "NAM", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nbri.org.na/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.nbri.org.na/contact-us"]}] [{"policyName": "Tree atlas", "policyURL": "https://www.namibiana.de/namibia-information/literaturauszuege/titel/tree-atlas-of-namibia-barbara-curtis-coleen-mannheimer-blythe-loutit-9991668063.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://biodiversity.org.na/faq.php?a=3"}] closed [] [] no {} [] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} PDF FILES can be downloaded for each species and the book is also available on CD. see also: http://www.biodiversity.org.na/index.php 2019-04-26 2021-06-15 +r3d100013051 ENCODE eng [{"additionalName": "ENCODE Encyclopedia", "additionalNameLanguage": "eng"}, {"additionalName": "Encyclopedia of DNA Elements", "additionalNameLanguage": "eng"}] https://www.encodeproject.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.7ykpy5", "MIR:00000662", "OMICS_00532", "RRID:SCR_015482"] ["encode-help@lists.stanford.edu", "https://www.encodeproject.org/help/contacts/"] The ENCODE Encyclopedia organizes the most salient analysis products into annotations, and provides tools to search and visualize them. The Encyclopedia has two levels of annotations: Integrative-level annotations integrate multiple types of experimental data and ground level annotations. Ground-level annotations are derived directly from the experimental data, typically produced by uniform processing pipelines. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.encodeproject.org/data/annotations/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "Epigenetics", "Epigenomics", "GWAS", "Genome-wide Association Studies", "RNA", "cREs", "candidate Regulatory Elements", "chromatin", "rDHSs"] [{"institutionName": "ENCODE Consortium", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.encodeproject.org/about/contributors/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Human Genome Research Institute", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["OMICS_01554", "RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.genome.gov/about-nhgri/Contact"]}, {"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": ["RRID:SCR_011538", "RRID:nlx_44253"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Current ENCODE Consortium Data Release Policy", "policyURL": "https://www.genome.gov/Pages/Research/ENCODE/ENCODE_Data_Use_Policy_for_External_Users_03-07-14.pdf"}, {"policyName": "ENCODE Data Policy", "policyURL": "http://genome.ucsc.edu/ENCODE/terms.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://genome.ucsc.edu/ENCODE/terms.html"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.encodeproject.org/help/citing-encode/"}] closed [] ["unknown"] yes {"api": "ftp://hgdownload.soe.ucsc.edu/goldenPath/hg19/encodeDCC/", "apiType": "FTP"} ["none"] http://genome.ucsc.edu/ENCODE/terms.html [] unknown yes [] [] {} see also: https://www.genome.gov/Funded-Programs-Projects/ENCODE-Project-ENCyclopedia-Of-DNA-ElementsThe data generated by projects and participants in the pilot phase were submitted, processed, and released by the UCSC Genome Browser. The data from the pilot phase are still accessible from the pilot phase repository at UCSC http://genome.ucsc.edu/ENCODE/pilot.html See also: https://www.genome.gov/Funded-Programs-Projects/ENCODE-Project-ENCyclopedia-Of-DNA-Elements 2019-04-26 2021-09-10 +r3d100013052 data.enanomapper eng [{"additionalName": "eNanoMapper prototype database", "additionalNameLanguage": "eng"}] https://data.enanomapper.net/ ["FAIRsharing_doi:10.25504/FAIRsharing.r18yt0"] ["support@ideaconsult.net"] A substance database for nanomaterial safety information eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://www.enanomapper.net/enm [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biomedicine", "chemical compounds", "chemical structures", "chemical substances", "environmental health", "nanoinformatics", "nanomaterials", "toxicology"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://cordis.europa.eu/project/id/604134", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/departments/research-and-innovation_en"]}, {"institutionName": "eNanoMapper", "institutionAdditionalName": ["enmp"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://data.enanomapper.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Quick user guide", "policyURL": "http://ambit.sourceforge.net/enanomapper_usage.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://echa.europa.eu/web/guest/legal-notice"}] open [{"dataUploadLicenseName": "Nanomaterial characterisation and bioassays data entry templates", "dataUploadLicenseURL": "http://ambit.sourceforge.net/enanomapper/templates/"}] ["unknown"] {"api": "http://enanomapper.github.io/API/", "apiType": "REST"} ["none"] ["ORCID"] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-04-26 2021-05-17 +r3d100013053 ZFDM repository eng [{"additionalName": "FDR@UHH", "additionalNameLanguage": "eng"}] https://www.fdm.uni-hamburg.de/en/fdm.html [] ["https://www.fdm.uni-hamburg.de/en/kontakt.html", "repository.fdm@uni-hamburg.de"] Research Data Repository of the Universität Hamburg eng ["institutional"] {"size": "696 datasets", "updatedp": "2020-10-09"} 2019-04-08 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.fdr.uni-hamburg.de/record/105#.XMhAGfXgqUk [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3dimensional", "FAIR", "aquaculture", "climate change", "fisheries", "manuscript research", "sign language", "spoken language"] [{"institutionName": "Universit\u00e4t Hamburg, Center for Sustainable Research Data Management", "institutionAdditionalName": ["Universit\u00e4t Hamburg, Zentrum f\u00fcr nachhaltiges Forschungsdatenmanagement", "ZFDM"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fdm.uni-hamburg.de/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Hamburg, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZ"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rrz.uni-hamburg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Documents of Universit\u00e4t Hamburg", "policyURL": "https://www.fdm.uni-hamburg.de/en/service/materialien.html"}, {"policyName": "Nutzungsbedingungen und Lizenz f\u00fcr das Forschungsdatenrepositorium (FDR) der Universit\u00e4t Hamburg (UHH)", "policyURL": "https://www.fdr.uni-hamburg.de/terms"}, {"policyName": "Open Access Policy", "policyURL": "https://www.oa.uni-hamburg.de/openaccess/oa-policy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The repository software uses the software Invenio. 2019-04-30 2021-11-24 +r3d100013057 SUITS Data Repository eng [{"additionalName": "S-ODR", "additionalNameLanguage": "eng"}, {"additionalName": "SUITS DaRe", "additionalNameLanguage": "eng"}, {"additionalName": "SUITS Open Data Repository", "additionalNameLanguage": "eng"}] https://dare.suits-project.eu [] ["info@sboing.net"] The Open Data Repository of the H2020/CIVITAS/SUITS Project (www.suits-project.eu) is used to store large volumes of crowdsourced traffic data, useful for SUMP implementations by local authorities of small-medium cities. eng ["disciplinary"] {"size": "3 TBytes", "updatedp": "2020-01-14"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] http://www.suits-project.eu/project/ [{"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["SUMP", "logistics", "traffic", "transport", "urban planning"] [{"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SUITS Project", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.suits-project.eu/project/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SUITS terms of use", "policyURL": "https://www.suits-project.eu/disclaimer/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.suits-project.eu/disclaimer/"}] restricted [] ["unknown"] {} ["hdl"] [] unknown unknown [] [] {} The partners of S-ODR are listed on this page: https://dare.suits-project.eu/ 2019-05-06 2020-01-14 +r3d100013058 TInnGO Open Data Repository eng [{"additionalName": "T-ODR", "additionalNameLanguage": "eng"}, {"additionalName": "TInnGO ODR", "additionalNameLanguage": "eng"}, {"additionalName": "Transport Innovation Gender Observatory Open Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "formerly: GO-DaRe", "additionalNameLanguage": "eng"}] https://tinngo.sboing.net/#repository [] ["https://tinngo.sboing.net/#contact", "liotop@sboing.net"] The Data Repository of the H2020/TINNGO Project (https://www.tinngo.eu/) is used to store large volumes of gender-related transport data, acquired from 10 national hubs of a pan-European Gender Observatory. eng ["disciplinary"] {"size": "3 TBytes", "updatedp": "2020-02-21"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "40705 Human Factors, Ergonomics, Human-Machine Systems", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.tinngo.eu/observatory/national-hubs/ [{"name": "Plain text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["experimental data", "geospatial data", "smart mobility", "socio-cultural norms", "time series"] [{"institutionName": "Coventry University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.coventry.ac.uk/", "institutionIdentifier": ["ROR:01tgmhj36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "TInnGO", "institutionAdditionalName": ["Transport Innovation Gender Observatory"], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.tinngo.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tinngo.eu/contact/"]}] [{"policyName": "Legal Notice, Privacy Notice", "policyURL": "http://www.tinngo.eu/legal-notice/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.tinngo.eu/legal-notice/"}] restricted [] ["unknown"] {} ["hdl"] [] unknown unknown [] [] {} TInnGO DaRe is part of the TInnGO project, funded by the Horizon 2020 framework. Information about TinnGO: https://cordis.europa.eu/project/id/824349 and http://www.itene.com/en/open-dissemination-projects/i/12865/56/tinngo Partners: https://www.tinngo.eu/about-us/partners/ 2019-05-06 2020-02-24 +r3d100013060 BacDive eng [{"additionalName": "Bacterial Diversity Metadatabase", "additionalNameLanguage": "eng"}] https://bacdive.dsmz.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.aSszvY", "MIR:00000676", "OMICS_10161"] ["contact@bacdive.de"] BacDive is a bacterial metadatabase that provides strain-linked information about bacterial and archaeal biodiversity. The database is a resource for different kind of phenotypic data like taxonomy, morphology, physiology, environment and molecular-biology. The majority of data is manually annotated and curated. With the release in April 2019 BacDive offers information for 80,584 strains. The database is hosted by the Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures GmbH and is part of de.NBI the German Network for Bioinformatics Infrastructure. eng ["disciplinary"] {"size": "80.584 bacterial and archaeal strains", "updatedp": "2019-05-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://idw-online.de/de/news714667 [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "analytical profile index (API)", "antibiotic susceptibility", "bacterial diversity", "cultivation conditions", "fatty acid profile", "isolation source", "metabolism", "morphology", "taxonomy"] [{"institutionName": "Leibniz Institute DSMZ - German Collection of Microorganisms and Cell Cultures GmbH", "institutionAdditionalName": ["Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen GmbH"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dsmz.de/", "institutionIdentifier": ["RRID:SCR_001711", "RRID:nif-0000-10209"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@dsmz.de"]}] [{"policyName": "Licence agreement for users of BacDive", "policyURL": "https://bacdive.dsmz.de/about"}, {"policyName": "Terms of use", "policyURL": "https://bacdive.dsmz.de/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://bacdive.dsmz.de/about"}] restricted [] ["unknown"] yes {"api": "https://bacdive.dsmz.de/api/", "apiType": "REST"} ["DOI"] https://bacdive.dsmz.de/about [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} BacDive uses Culture collection numbers and INSDC sequence accession. BacDive is covered by Clarivate Data Citation Index 2019-05-08 2021-08-10 +r3d100013062 Data Univ Gustave Eiffel eng [{"additionalName": "Donn\u00e9es de recherche de l'Universit\u00e9 Gustave Eiffel", "additionalNameLanguage": "fra"}, {"additionalName": "Universit\u00e9 Gustave Eiffel Dataverse", "additionalNameLanguage": "eng"}] https://data.univ-gustave-eiffel.fr/ [] ["research-data@univ-eiffel.fr"] Data Univ Gustave Eiffel is an institutional repository for research data of university Gustave Eiffel : it catalogues multidisciplinary research data. eng ["institutional"] {"size": "15 dataverses, 19 datasets", "updatedp": "2021-09-29"} 2021 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.univ-gustave-eiffel.fr/en/research/openness-to-society/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["computer and information science", "earth", "environmental sciences", "physics"] [{"institutionName": "Universit\u00e9 Gustave Eiffel", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univ-gustave-eiffel.fr/", "institutionIdentifier": ["ROR:03x42jk29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["research-data@univ-eiffel.fr"]}] [{"policyName": "La gestion des donn\u00e9es de recherche \u00e0 l\u2019IFSTTAR", "policyURL": "https://www.ifsttar.fr/fileadmin/redaction/5_ressources-en-ligne/politiques/politique_data_web.pdf"}, {"policyName": "La politique de gestion des donn\u00e9es de l\u2019Ifsttar", "policyURL": "https://www.ifsttar.fr/en/online-resources/our-knowledge-dissemination-policies/research-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2019-05-15 2021-11-17 +r3d100013064 SciCat eng [{"additionalName": "SciCat Data Catalog System", "additionalNameLanguage": "eng"}, {"additionalName": "SciCat ESS", "additionalNameLanguage": "eng"}] https://scicat.esss.se/login?returnUrl=%2Fdatasets [] ["henrik.johansson@ess.eu", "tobias.richter@esss.se"] Scicat allows users to access the metadata of raw and derived data which is taken at experiment facilities. Scientific datasets are linked to proposals and samples. Scientific datasets are can be linked to publications (DOI, PID). SciCat helps keeping track of data provenance (i.e. the steps leading to the final results). Scicat allows users to find data based on the metadata (both your own data and other peoples’ public data). In the long term, SciCat will help to automate scientific analysis workflows. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://scicat.esss.se/about [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["diffraction", "hdf5", "imaging", "neutron", "nexus", "reflectometry", "spallation"] [{"institutionName": "European Spallation Source ERIC", "institutionAdditionalName": ["ESS"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://europeanspallationsource.se/", "institutionIdentifier": ["ROR:01wv9cn34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://europeanspallationsource.se/contact"]}] [{"policyName": "Access Conditions, Terms of Use", "policyURL": "https://scicat.esss.se/about"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] {} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [] {} More information: https://icatproject.org/wp-content/uploads/2017/12/ICAT_F2F_2017_PSI.pdf SciCat Project: A collaboration between PSI and ESS (and MaxIV) to create a data catalog management system. sciCat on GitHub: https://github.com/SciCatProject 2019-05-16 2021-02-23 +r3d100013068 Freshwater Research and Environmental Database eng [{"additionalName": "FRED", "additionalNameLanguage": "eng"}] https://fred.igb-berlin.de [] ["adrian@igb-berlin.de", "fred@igb-berlin.de"] The Freshwater Research and Environmental Database is the central data repository for IGB. It is where we store and share environmental data from observations of lakes, rivers, peatlands and other freshwater habitats. In FRED you can find continuous data collected over several decades from our long-term research programme at the lakes Müggelsee, Stechlinsee, Arendsee and the river Spree, as well as environmental data derived from short-term projects in aquatic ecosystems. All data include detailed metadata descriptions in text form to allow reuse of the data. The database can be searched for a range of aspects, such as ecosystem types or abiotic and biotic variables. Data use, where not freely accessible, shall be granted after consulting with the contact person given in the database, and is subject to the IGB Data Policy. eng [] {"size": "around 400 datapackages", "updatedp": "2019-05-23"} 2017 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://fred.igb-berlin.de/datapolicy/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["freshwater", "limnology", "longterm data"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institute for Freshwater Ecology and Inland Fisheries", "institutionAdditionalName": ["IGB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.igb-berlin.de", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["adrian@igb-berlin.de"]}] [{"policyName": "IGB data policy for environmental field data", "policyURL": "https://www.igb-berlin.de/sites/default/files/media-files/download-files/IGB%20data%20policy%20for%20environmental%20field%20data%202016.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.igb-berlin.de/sites/default/files/media-files/download-files/IGB%20data%20policy%20for%20environmental%20field%20data%202016.pdf"}] restricted [{"dataUploadLicenseName": "IGB data policy for environmental field data", "dataUploadLicenseURL": "https://www.igb-berlin.de/sites/default/files/media-files/download-files/IGB%20data%20policy%20for%20environmental%20field%20data%202016.pdf"}] ["other"] yes {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} EML will be aviable with the next Release of the Software. 2019-05-23 2019-05-25 +r3d100013071 NCI Data Portal eng [{"additionalName": "NCI Catalogue", "additionalNameLanguage": "eng"}] http://geonetwork.nci.org.au [] ["datacollections@nci.org.au", "help@nci.org.au"] The NCI National Research Data Collection is Australia’s largest collection of research data, encompassing more than 10 PB of nationally and internationally significant datasets. eng ["disciplinary"] {"size": "792 datasets", "updatedp": "2019-05-28"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://nci.org.au/access/data-access/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate", "earth sciences", "environment", "geophysics", "meteorology", "weather"] [{"institutionName": "Australian Government, Geoscience Australia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ga.gov.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Computational Infrastructure", "institutionAdditionalName": ["NCI"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://nci.org.au/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of Use", "policyURL": "http://nci.org.au/access/general-requirements-expectations-policies-and-conditions-of-use/"}, {"policyName": "Data Access", "policyURL": "http://nci.org.au/access/data-access/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://nci.org.au/copyright/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ga.gov.au/copyright"}] restricted [] [] yes {"api": "https://ecat.ga.gov.au/geonetwork/srv/eng/catalog.search#/metadata/124525", "apiType": "NetCDF"} ["DOI"] https://www.ga.gov.au/copyright/how-to-cite-geoscience-australia-source-of-information [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://geonetwork.nci.org.au/geonetwork/srv/eng/rss.search?sortBy=changeDate", "syndicationType": "RSS"} 2019-05-28 2019-06-05 +r3d100013072 NIST Data Discovery eng [{"additionalName": "NIST PDR", "additionalNameLanguage": "eng"}, {"additionalName": "NIST Public Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "NIST Science Data Portal", "additionalNameLanguage": "eng"}] https://data.nist.gov/sdp/#/ [] ["datasupport@nist.gov."] Data products developed and distributed by the National Institute of Standards and Technology span multiple disciplines of research and are widely used in research and development programs by industry and academia. NIST's publicly available data sets showcase its committment to providing accurate, well-curated measurements of physical properties, exemplified by the Standard Reference Data program, as well as its committment to advancing basic research. In accordance with U.S. Government Open Data Policy and the NIST Plan for providing public access to the results of federally funded research data, NIST maintains a publicly accessible listing of available data, the NIST Public Dataset List (json). Additionally, these data are assigned a Digital Object Identifier (DOI) to increase the discovery and access to research output; these DOIs are registered with DataCite and provide globally unique persistent identifiers. The NIST Science Data Portal provides a user-friendly discovery and exploration tool for publically available datasets at NIST. This portal is designed and developed with data.gov Project Open Data standards and principles. The portal software is hosted in the usnistgov github repository. eng ["institutional"] {"size": "361 records", "updatedp": "2019-06-03"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.nist.gov/sdp/#/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["advanced communications", "chemistry", "forensics", "information technology", "manufacturing", "materials", "mathematics and statistics", "neutron", "physics and neutron", "statistics"] [{"institutionName": "National Institute of Standards and Technology", "institutionAdditionalName": ["NIST"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nist.gov/", "institutionIdentifier": ["RRID:SCR_006440", "RRID:nlx_144073"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NIST Disclaimer Statement", "policyURL": "https://www.nist.gov/disclaimer"}, {"policyName": "Policy", "policyURL": "https://data.nist.gov/sdp/#/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nist.gov/director/copyright-fair-use-and-licensing-statements-srd-data-and-software"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nist.gov/director/copyright-fair-use-and-licensing-statements-srd-data-and-software"}] closed [] [] yes {"api": "https://data.nist.gov/sdp/#/api", "apiType": "REST"} ["DOI"] https://www.nist.gov/director/copyright-fair-use-and-licensing-statements-srd-data-and-software [] unknown yes [] [] {} 2019-05-29 2019-06-05 +r3d100013073 GTS AI Data Collection eng [] https://gts.ai/ [] ["hi@gts.ai"] GTS AI is an Artificial Intelligence Company that offers excellent services to its clients. We use high definition images and use high quality data to analyze and help in Machine Learning Company . We are a dataset provider and we collect data in regards to artificial intelligence. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40701 Automation, Control Systems, Robotics, Mechatronics", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://gts.ai/about-us/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["Robotic Process Automation - RPA", "artificial intelligence - AI", "autonomous driving", "computer vision", "machine learning"] [{"institutionName": "Global Technology solutions", "institutionAdditionalName": ["GTS"], "institutionCountry": "IND", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://globaltechnosol.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://gts.ai/"}] [] [] {} [] [] unknown unknown [] [] {} 2019-05-30 2019-06-15 +r3d100013076 TUHH Open Research - Research Data TUHH eng [{"additionalName": "TORE - Research Data TUHH", "additionalNameLanguage": "eng"}] https://tore.tuhh.de/handle/11420/2023 ["hdl:11420/2023"] ["forschungsdaten@tuhh.de", "tore@tuhh.de"] Research Data TUHH is the institutional repository for research data of Hamburg University of Technology (TUHH) eng [] {"size": "21 datasets", "updatedp": "2019-12-03"} 2019-02-13 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.tub.tuhh.de/en/publishing/tubdok/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "geodata", "mobility", "transport planning"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hamburg University of Technology. Computer Center", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tuhh.de/rzt/startseite.html", "institutionIdentifier": [], "responsibilityStartDate": "13.02.2019", "responsibilityEndDate": "", "institutionContact": ["servicedesk@tuhh.de"]}, {"institutionName": "Hamburg University of Technology. Library", "institutionAdditionalName": ["Technische Universit\u00e4t Hamburg, Universit\u00e4tsbibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tub.tuhh.de", "institutionIdentifier": [], "responsibilityStartDate": "13.02.2019", "responsibilityEndDate": "", "institutionContact": ["tore@tuhh.de"]}] [{"policyName": "TUHH Forschungsdaten", "policyURL": "https://www.tub.tuhh.de/publizieren/forschungsdaten/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "License for the Publication of Research Data on \u201cTUHH Open Research\u201d of the Hamburg University of Technology (TUHH)", "dataUploadLicenseURL": "https://www.tub.tuhh.de/en/publishing/tubdok/licenses/research-data/"}] ["DSpace"] yes {} ["DOI", "hdl"] ["ORCID"] unknown no [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://tore.tuhh.de/feed/atom_1.0/11420/2023", "syndicationType": "ATOM"} 2019-06-04 2020-05-14 +r3d100013077 The Kreisgraben-Phenomenon eng [{"additionalName": "KGAL", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/KGAL ["doi: 10.17171/2-9"] ["edition@topoi.org"] Within this project the spatial and visual characteristics of circular enclosures of the early 5th millennium BC in Germany are being investigated. The here presented ever-expanding repository comprises a database of all circular enclosures under investigation. The database entries include the coordinates and a thorough description of each enclosure. Additionally, several resources like skyline and viewshed maps, files of input parameters and plots of astronomical features are deposited. eng ["disciplinary"] {"size": "30 research objects", "updatedp": "2019-06-11"} 2018-04-18 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://edition-topoi.org/publishing_with_us/open-access [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["circular enclosures", "history of astronomy", "knowledge transfer", "prehistoric archaeology", "skyscape archaeology"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": ["RRID:SCR_011246", "RRID:nlx_40982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": ["RRID:SCR_005626", "RRID:nlx_41554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.edition-topoi.org/publishing_with_us/collections", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/ICG/metadata#conditions_for_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-06-06 2019-06-13 +r3d100013078 Atlas of Innovations eng [{"additionalName": "BAOI", "additionalNameLanguage": "eng"}] https://repository.edition-topoi.org/collection/BAOI ["doi:10.17171/2-11"] ["edition@topoi.org"] The Digital Atlas of Innovations presents the oldest evidence for innovations over a long time period. This collection presents the data/information at the basis of the atlas in stable and citable manner. eng ["disciplinary"] {"size": "2 datasets", "updatedp": "2019-06-07"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["archaeology", "history of science", "innovation"] [{"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/dai/meldungen", "institutionIdentifier": ["ROR:05wps8h17"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.topoi.org/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de", "institutionIdentifier": ["ROR:01hcx6992", "RRID:SCR_005626"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max-Planck-Institut f\u00fcr Wissenschaftsgeschichte", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpiwg-berlin.mpg.de/de", "institutionIdentifier": ["ROR:0492sjc74"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "edition|topoi Collections", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://repository.edition-topoi.org/#by_type=collection;page=1", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["edition@topoi.org"]}] [{"policyName": "Conditions for Use", "policyURL": "https://repository.edition-topoi.org/collection/BAOI/metadata"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] [] {} ["DOI"] ["none"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-06-06 2020-05-11 +r3d100013079 ISRIC Soil Metadata Catalogue eng [{"additionalName": "data.isric.org", "additionalNameLanguage": "eng"}] https://data.isric.org ["FAIRsharing_doi:10.25504/FAIRsharing.bLMnnR"] ["niels.batjes@isric.org"] data.isric.org is our central location for searching and downloading soil data bases/layers from around the world. ISRIC - World Soil Infomation (WDC-Soils) is a regular member of the ICS World Data System (WDS). We support Open Data whenever possible, respecting inherited rights (licences). eng ["disciplinary"] {"size": "189 services, metadata, datasets and maps", "updatedp": "2021-03-26"} 1966 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.isric.org/about/vision-mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "Geoinformatics", "OGC compliant", "Soil collections", "Soil data", "Soil mapping", "web services"] [{"institutionName": "ISRIC - World Soil Information (WDC-Soils)", "institutionAdditionalName": ["International Soil Reference and Information Centre (1966-2002)"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.isric.org", "institutionIdentifier": ["ROR:01z8yfp14"], "responsibilityStartDate": "1966", "responsibilityEndDate": "", "institutionContact": ["niels.batjes@isric.org"]}] [{"policyName": "ISRIC Data and Software Policy", "policyURL": "https://www.isric.org/about/data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://www.isric.org/about/data-policy"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.isric.org/about/data-policy"}] restricted [] ["other"] yes {} ["DOI", "other"] https://www.isric.org/about/data-policy#citation [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-06-07 2021-03-26 +r3d100013080 DataStream eng [] https://gordonfoundation.ca/initiatives/datastream/ [] ["DataStream@gordonfn.org"] DataStream is an open access platform for sharing information on freshwater health. It currently allows users to access, visualize, and download full water quality datasets collected by Indigenous Nations, community groups, researchers and governments throughout three regional hubs in the Mackenzie River Basin, Lake Winnipeg watershed, and across Atlantic Canada. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-11 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://gordonfoundation.ca/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["community-based monitoring", "freshwater", "water quality"] [{"institutionName": "The Gordon Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://gordonfoundation.ca/", "institutionIdentifier": ["ROR:02gvqsb68"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DataStream Data Policy", "policyURL": "https://atlanticdatastream.ca/#/page/data-policy"}, {"policyName": "DataStream Terms of Use", "policyURL": "https://atlanticdatastream.ca/#/page/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://atlanticdatastream.ca/#/page/terms-of-use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}, {"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://opendatacommons.org/licenses/pddl/1.0/"}] restricted [{"dataUploadLicenseName": "Submission Terms of Use", "dataUploadLicenseURL": "https://atlanticdatastream.ca/#/page/terms-of-use"}] ["other"] yes {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-06-07 2020-05-11 +r3d100013082 Research Data On Gender Relations In Academia eng [{"additionalName": "CEWS Forschungsdaten", "additionalNameLanguage": "eng"}, {"additionalName": "CEWS Research Data", "additionalNameLanguage": "eng"}, {"additionalName": "Forschungsdaten Geschlecht und Wissenschaft", "additionalNameLanguage": "deu"}] https://www.gesis.org/cews/unser-angebot/informationsangebote/forschungsdaten/ [] ["andrea.loether@gesis.org"] Numerous studies on gender relations and gender equality policy in academia regularly produce research data that could be useful for a secondary analysis and for other research topics. At present, only a small amount of research data that was explicitly collected on gender relations in academia is archived. Long-term surveys such as graduate studies or social surveys on students are also available to be used in gender-specific studies. CEWS would like to support researchers in their search for research data and at the same time motivate them to archive data from their own projects and thus make them accessible to other researchers by providing search options at GESIS and other data-providing institutions as well as basic information on data archiving. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.gesis.org/en/cews/portfolio/digital-services/research-data [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["discrimination", "equality policy in science", "gender relations in academia", "gender relations in science", "gender studies", "women in science"] [{"institutionName": "Center of Excellence Women and Science", "institutionAdditionalName": ["CEWS", "Kompetenzzentrum Frauen in Wissenschaft und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/cews/cews-home", "institutionIdentifier": ["GND: 10034568-2"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "gesis Leibniz Institute for the Social Sciences", "institutionAdditionalName": ["GESIS", "gesis Leibniz-Institut f\u00fcr Sozialwissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gesis.org/en/home", "institutionIdentifier": ["ROR: 018afyw53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Benutzungsordnung", "policyURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/2018-05-25_Benutzungsordnung_GESIS_DAS.pdf"}, {"policyName": "GESIS Archive Agreement", "policyURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/Archivierungsvertrag_GESIS_Datenarchiv_v9__englisch.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/upload/dienstleistung/daten/secure_data_center/GESIS_Datennutzungsvertrag_SDC_On-Site.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gesis.org/fileadmin/user_upload/Usage_regulations.pdf"}] restricted [{"dataUploadLicenseName": "GESIS Archive agreement", "dataUploadLicenseURL": "https://www.gesis.org/fileadmin/upload/institut/wiss_arbeitsbereiche/datenarchiv_analyse/Archivierungsvertrag_GESIS_Datenarchiv_v9__englisch.pdf"}] ["unknown"] {} ["DOI"] https://www.gesis.org/en/services/finding-and-accessing-data/data-archive-service/citation-of-research-data [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} The Center of Excellence Women and Science (CEWS) is supporting researchers in their search for research data relevant for gender relations in academia. Therefore, CEWS has compiled relevant data sets within the database da|ra. 2019-06-11 2021-11-10 +r3d100013083 Fox Insight Date Exploration Network eng [{"additionalName": "Fox DEN", "additionalNameLanguage": "eng"}] https://foxden.michaeljfox.org/insight/explore/insight.jsp [] ["foxden@michaeljfox.org"] Fox DEN provides investigators with a tool to explore, download and apply statistical models on aggregated data collected for the Fox Insight online clinical study. The Fox Insight study collects patient-reported outcomes and genetic data from people with Parkinson's disease and their loved ones. eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-04-30 ["eng", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.michaeljfox.org/our-promise [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Parkinson's disease", "SNPs", "patient reorted outcomes", "pharma studies"] [{"institutionName": "Fox Insight", "institutionAdditionalName": ["MJFF", "Michael J. Fox Foundation for Parkinson's Research"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://foxinsight.michaeljfox.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Agreement", "policyURL": "https://foxden.michaeljfox.org/insight/resources/Fox_Insight_Data_Use_Agreement_2019-04-29.pdf"}, {"policyName": "Publications Policy", "policyURL": "https://foxden.michaeljfox.org/insight/explore/insight.jsp"}, {"policyName": "Terms and Conditions of Use", "policyURL": "https://foxinsight.michaeljfox.org/terms_and_conditions"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://foxden.michaeljfox.org/insight/resources/Fox_Insight_Data_Use_Agreement_2019-04-29.pdf"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [] {} 2019-06-13 2020-05-06 +r3d100013084 SURF Data Repository eng [] https://repository.surfsara.nl [] ["https://repository.surfsara.nl/contact"] The SURF Data Repository is a user-friendly web-based data publication platform that allows researchers to store, annotate and publish research datasets of any size to ensure long-term preservation and availability of their data. The service allows any dataset to be stored, independent of volume, number of files and structure. A published dataset is enriched with complex metadata, unique identifiers are added and the data is preserved for an agreed-upon period of time. The service is domain-agnostic and supports multiple communities with different policy and metadata requirements. eng ["other"] {"size": "more than 500 datasets", "updatedp": "2019-06-14"} 2018-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.surf.nl/over-surf [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["SURF", "SURFsara", "multidisciplinary"] [{"institutionName": "SURF", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.surf.nl", "institutionIdentifier": ["ROR:009vhk114"], "responsibilityStartDate": "2018-01-01", "responsibilityEndDate": "", "institutionContact": ["https://www.surf.nl/over-surf/contact-met-surf"]}] [{"policyName": "Data Consumer Agreement", "policyURL": "https://repository.surfsara.nl/docs/data-consumer"}, {"policyName": "Preservation Policy", "policyURL": "https://repository.surfsara.nl/docs/preservation-policy"}, {"policyName": "Terms of Use", "policyURL": "https://repository.surfsara.nl/docs/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://surfdatarepo.readthedocs.io/en/latest/pages/basics/deposit.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}] restricted [{"dataUploadLicenseName": "Data Producer Agreement", "dataUploadLicenseURL": "https://repository.surfsara.nl/docs/data-producer"}, {"dataUploadLicenseName": "Deposit Data", "dataUploadLicenseURL": "https://surfdatarepo.readthedocs.io/en/latest/pages/basics/deposit.html"}] ["Fedora"] no {"api": "https://repository.surfsara.nl/api/oai2", "apiType": "OAI-PMH"} ["DOI", "hdl"] https://datacite.org/cite-your-data.html [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-06-13 2020-05-06 +r3d100013086 Survey Research Data Archive eng [{"additionalName": "SRDA", "additionalNameLanguage": "eng"}] https://srda.sinica.edu.tw/index_en.php [] ["srda@gate.sinica.edu.tw"] The sources of the data sets include data sets donated by researchers, surveys carried out by SRDA, as well as by government department and other academic organizations. Prior to the release of data sets, the confidentiality and sensitivity of every survey data set are evaluated. Standard data management and cleaning procedures are applied to ensure data accuracy and completeness. In addition, metadata and relevant supplement files are also edited and attached. eng ["disciplinary"] {"size": "more than 2.200 datasets", "updatedp": "2019-06-19"} ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://srda.sinica.edu.tw/about.php?switchlang=en [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["cross-sectional study", "government survey", "panel study"] [{"institutionName": "Academia Sinica Taiwan, Research Center for Humanities and Social Sciences, Center for Survey Research", "institutionAdditionalName": ["CSR", "RCHSS", "\u4e2d\u592e\u7814\u7a76\u9662 \u4eba\u6587\u793e\u6703\u79d1\u5b78\u7814\u7a76\u4e2d\u5fc3 \u8abf\u67e5\u7814\u7a76\u5c08\u984c\u4e2d\u5fc3"], "institutionCountry": "TWN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://survey.sinica.edu.tw/Eweb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for use", "policyURL": "https://srda.sinica.edu.tw/SRDA/userfiles/files/SRDA%20brief%20FIN(1).pdf"}, {"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/06/Survey-Research-Data-Archive.pdf"}, {"policyName": "Data Delivery instructions", "policyURL": "https://srda.sinica.edu.tw/portal_y3.php?button_num=y3"}, {"policyName": "Privacy and security policy", "policyURL": "https://srda.sinica.edu.tw/privacyandsecuritypolicy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://srda.sinica.edu.tw/SRDA/userfiles/files/SRDA%20brief%20FIN(1).pdf"}] restricted [{"dataUploadLicenseName": "Data upload", "dataUploadLicenseURL": "https://srda.sinica.edu.tw/portal_y1-0.php?button_num=y1"}] ["Nesstar"] yes {} ["DOI"] [] yes yes ["other", "other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} Survey Research Data Archive is covered by Clarivate Data Citation Index . Networks of Asian Social Science Data Archives NASSDA. SRDA is a regular member of ICSU World Data System - WDS 2019-06-19 2021-08-11 +r3d100013090 UCL Research Data Repository eng [{"additionalName": "UCL figshare", "additionalNameLanguage": "eng"}] https://rdr.ucl.ac.uk/ [] ["researchdatarepository@ucl.ac.uk."] The UCL Research Data Repository is the institutional data repository of University College London. Based on Figshare, it accepts data deposits from UCL staff and doctoral students from all disciplines. Depositors are encouraged to use CC0 licences to make their data available to the widest possible range of users and the widest range of uses. eng ["institutional"] {"size": "", "updatedp": ""} 2019-06-05 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.ucl.ac.uk/library/research-support/research-data-management/ucl-research-data-repository [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["earth", "environment", "health", "humanities", "space"] [{"institutionName": "University College London", "institutionAdditionalName": ["UCL"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucl.ac.uk/", "institutionIdentifier": ["ROR:02jx3x895", "RRID:SCR_011603", "RRID:nlx_86831"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Guidelines", "policyURL": "https://www.ucl.ac.uk/research/integrity/policies-and-guidelines"}, {"policyName": "Research Data Management", "policyURL": "https://www.ucl.ac.uk/library/research-support/research-data-management"}, {"policyName": "UCL Research Data Policy", "policyURL": "https://www.ucl.ac.uk/library/research-support/research-data-management/policies-funders-expectations"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}] restricted [] ["other"] yes {} ["DOI"] https://www.ucl.ac.uk/library/libraryskills-ucl/guides-and-elearning/references-citations-and-avoiding-plagiarism ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-06-25 2020-04-27 +r3d100013095 Informationssystem Graffiti in Deutschland (INGRID) deu [{"additionalName": "INGRID", "additionalNameLanguage": "deu"}] https://www.uni-paderborn.de/forschungsprojekte/ingrid/ [] ["doris.tophinke@upb.de", "https://www.uni-paderborn.de/en/forschungsprojekte/ingrid/kontakt", "martin.papenbrock@kit.edu"] The information system Graffiti in Germany (INGRID) is a cooperation project between the linguistics department at the University of Paderborn and the art history department at the Karlsruhe Institute of Technology (KIT). As part of the joint project, graffiti image collections will be compiled, stored in an image database and made available for scientific use. At present, more than 100,000 graffiti from the years 1983 to 2018 from major German cities are recorded, including Cologne, Mannheim and Munich. eng ["disciplinary"] {"size": "40.620 graffiti; 150.000 images", "updatedp": "2019-07-04"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.uni-paderborn.de/forschungsprojekte/ingrid/datenbank/ [{"name": "Images", "scheme": "parse"}] ["dataProvider"] ["art history", "cultural sciences", "ethnology", "linguistic sciences", "urban sociology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_12420", "RRID:nix_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie", "institutionAdditionalName": ["KIT", "Karlsruhe Institute of Technology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruher Institut f\u00fcr Technologie, Institut Kunst- und Baugeschichte", "institutionAdditionalName": ["IKB", "KIT", "Karlsruhe Institute of Technology, Institut f\u00fcr Kunst- und Baugeschichte"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://kg.ikb.kit.edu/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Paderborn", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-paderborn.de", "institutionIdentifier": ["ROR:058kzsd48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Paderborn, Zentrum f\u00fcr Informations- und Medientechnologien", "institutionAdditionalName": ["IMT"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://imt.uni-paderborn.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Bestand", "policyURL": "https://www.uni-paderborn.de/forschungsprojekte/ingrid/bestand/"}, {"policyName": "DFG Praxisregel Digitalisierung", "policyURL": "https://www.dfg.de/formulare/12_151/12_151_de.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.uni-paderborn.de/impressum/"}] restricted [] ["other"] {} [] https://www.uni-paderborn.de/forschungsprojekte/ingrid/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-07-03 2021-10-05 +r3d100013100 Shared Platform for Antibiotic Research and Knowledge eng [{"additionalName": "SPARK", "additionalNameLanguage": "eng"}] https://pages.pewtrusts.org/page.aspx?QS=c76003443ff9837d1bb947d7a8ea489c1d609b8da344fa633e423cf624d0924f#spark ["FAIRsharing_doi:10.25504/FAIRsharing.50cFTB"] ["SPARK-access@pewtrusts.org", "kprosen@pewtrusts.org", "wkim@pewtrusts.org"] An interactive database hosted by Collaborative Drug Discovery for antibiotic susceptibility data (MIC and IC50). Data is extracted from journal articles and/or contributed by different organizations and individuals. In some cases, the data has not previously been published. Access to the database is open to everyone and can be requested at pewtrusts.org/spark-antibiotic-discovery. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-09-21 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.pewtrusts.org/en/research-and-analysis/articles/2018/09/21/the-shared-platform-for-antibiotic-research-and-knowledge [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ELN", "IC50", "MIC", "SAR analysis", "antibiotic resistance", "in vitro", "minimum inhibitory concentration"] [{"institutionName": "Pew Charitable Trusts", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.pewtrusts.org/en", "institutionIdentifier": ["ROR:02xhk2825"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@pewtrusts.org"]}] [{"policyName": "Spark Terms of Use", "policyURL": "https://www.pewtrusts.org/-/media/assets/2018/09/spark_terms-of-use_final.pdf?la=en&hash=526B82DBCAE01D33307B1779A8CC3108A443073E"}, {"policyName": "Terms of use", "policyURL": "http://image.pewtrusts.org/lib/fe9915737d64057970/m/2/SPARK_Terms+of+Use_FINAL.pdf"}, {"policyName": "data access", "policyURL": "https://pages.pewtrusts.org/page.aspx?QS=c76003443ff9837d1bb947d7a8ea489c1d609b8da344fa633e423cf624d0924f#spark"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.pewtrusts.org/en/about/terms-and-conditions"}] restricted [] ["unknown"] {} ["none"] [] yes unknown [] [] {} 2019-07-18 2021-11-09 +r3d100013102 mediaTUM deu [] https://mediatum.ub.tum.de/ [] ["mediatum@ub.tum.de"] mediaTUM – the media and publications repository of the Technical University of Munich: mediaTUM supports the publication of digital documents and research data as well as the use of multimedia content in research and teaching. eng ["institutional"] {"size": "More than 230.000 public records, documents and images", "updatedp": "2019-07-29"} 2005 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://mediatum.ub.tum.de/1335975 [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Technische Universit\u00e4t M\u00fcnchen", "institutionAdditionalName": ["TUM", "Technical University of Munich"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tum.de", "institutionIdentifier": ["RRID:SCR_011560", "RRID:nlx_156792"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Governing Documents", "policyURL": "https://www.tum.de/nc/en/about-tum/our-university/governing-documents/"}, {"policyName": "Guidelines of the Technical University of Munich for Handling Research Data", "policyURL": "https://www.it.tum.de/en/projects/research-data-management/"}, {"policyName": "Open Access Policy", "policyURL": "https://www.ub.tum.de/open-access-policy"}, {"policyName": "Publishing Research Data", "policyURL": "https://www.ub.tum.de/en/publishing-research-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://mediatum.ub.tum.de/doc/1289704/1289704.pdf"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://mediatum.ub.tum.de/doc/1289704/1289704.pdf"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://mediatum.ub.tum.de/doc/1289704/1289704.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/#GPL"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.de.html"}] restricted [] ["other"] {"api": "https://mediatum.ub.tum.de/oai/?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "URN"] https://mediatum.ub.tum.de/1231945 [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-07-25 2019-07-31 +r3d100013103 SiB Colombia Portal de Datos spa [{"additionalName": "GBIF Colombia", "additionalNameLanguage": "eng"}] http://biodiversidad.co/ [] ["sib@humboldt.org.co"] The Colombian Biodiversity Information Facility (SiB Colombia) is a national initiative established in early 2000 and coordinated by Instituto Humboldt to facilitate free and open access to biodiversity data. It comprises a network of more than 100 organizations (including universities, biological collections, research institutes, environmental authorities and NGOs among others) that work together to ensure that biodiversity data is available to support further research, education, policy making and incentive measures for the conservation and sustainable use of biodiversity. SiB Colombia’s mission is to facilitate the management of biodiversity data by bringing together users, publishers and data producers to support research, education and decision making related to knowledge, conservation and sustainable use of biodiversity and ecosystem services. SiB Colombia aims to consolidate the collaborative platform that facilitates the generation, use and democratization of knowledge on the biodiversity of Colombia. Thus, SiB Colombia contributes to a vision of a society that knows and values the biodiversity in which it is immersed, and uses such knowledge for its development. eng ["disciplinary"] {"size": "7.509.375 registers", "updatedp": "2019-07-31"} 2000 ["spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://datos.biodiversidad.co/static/sobre_el_portal [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Colombia", "biodiversity", "biological records", "species"] [{"institutionName": "SIB Colombia", "institutionAdditionalName": ["Sistema de Informaci\u00f3n sobre Biodiversidad de Colombia"], "institutionCountry": "COL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sibcolombia.net/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Condiciones de uso", "policyURL": "http://datos.biodiversidad.co/static/condiciones_de_uso"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://co.creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://sibcolombia.net/acceso-abierto/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sibcolombia.net/acceso-abierto/"}] restricted [] ["unknown"] {} ["DOI"] https://sibcolombia.net/acceso-abierto/ [] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} 2019-07-26 2019-08-02 +r3d100013106 e-Depot of the National Archives of the Netherlands eng [] https://www.nationaalarchief.nl [] ["info@nationaalarchief.nl."] The National Archives of the Netherlands (Nationaal Archief), which is situated in The Hague, holds over 3.5 million records that have been created by the central government, organisations and individuals and are of national significance. Many records relate to the colonial and trading history of the Netherlands in the period from 1600 to 1975. The Dutch presence in countries in North and South America, Africa and Asia is reflected within these collections. eng ["other"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.nationaalarchief.nl/sites/default/files/field-file/Netherlands%20Vision%20on%20Archives%202011.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Dutch colonial history", "Netherlands", "national heritage"] [{"institutionName": "Nationaal Archief", "institutionAdditionalName": ["NANETH", "National Archives"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nationaalarchief.nl/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/07/e-Depot-of-the-National-Archives-of-the-Netherlands.pdf"}, {"policyName": "National Archives of the Netherlands open collection data policy", "policyURL": "https://www.nationaalarchief.nl/sites/default/files/field-file/National%20Archives%20of%20the%20Netherlands%20open%20collection%20data%20policy.pdf"}, {"policyName": "National Archives of the Netherlands preservation policy", "policyURL": "https://www.nationaalarchief.nl/sites/default/files/field-file/National%20Archives%20of%20the%20Netherlands%20preservation%20policy.pdf"}, {"policyName": "Open Data policy", "policyURL": "https://www.nationaalarchief.nl/onderzoeken/open-data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public_domain"}] restricted [] ["unknown"] {} ["hdl"] [] unknown yes ["other"] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-07-29 2022-01-03 +r3d100013107 PsychArchives eng [] https://www.psycharchives.org/ [] ["info@leibniz-psychology.org", "psycharchives-submission@leibniz-psychology.org"] PsychArchives is a disciplinary repository publishing a variety of digital research objects (DROs), with 21 different publication types (preprints, primary, and secondary publications), research data, tests, preregistrations, multimedia and code. It provides easy and free access to DROs according to the FAIR principles, which implies the commitment to ensure that research and research data are findable, accessible, interoperable, and reusable. eng ["disciplinary"] {"size": ">5.000 datasets", "updatedp": "2021-05-20"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "FAIR", "psychological studies", "psychological tests"] [{"institutionName": "Leibniz-Zentrum f\u00fcr Psychologie", "institutionAdditionalName": ["Leibniz Institute for Psychology", "ZPID"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://leibniz-psychology.org/", "institutionIdentifier": ["ROR:0165gz615"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "PsychArchives Quality and selection as well as technical guidelines", "policyURL": "https://www.psycharchives.org/static/about/technical_guidelines.pdf"}, {"policyName": "PsychArchives Terms of Use", "policyURL": "https://www.psycharchives.org/static/about/terms_of_use.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] ["other"] yes {} ["DOI", "hdl"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-07-30 2021-07-28 +r3d100013108 Repositorio de Datos de Investigación de la Universidad de Chile spa [] http://datos.uchile.cl/ [] ["http://datos.uchile.cl/loginpage.xhtml?redirectPage=dataverse.xhtml"] The University of Chile Research Data Repository preserves, disseminates and provides access to the research data generated by its academics and researchers, in order to give visibility, guarantee its preservation and facilitate its access and reuse. eng ["institutional"] {"size": "14 dataverses, 7 datasets", "updatedp": "2019-08-02"} 2019 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://datos.uchile.cl/acerca.xhtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad de Chile", "institutionAdditionalName": [], "institutionCountry": "CHL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uchile.cl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.uchile.cl/portal/presentacion/servicios-portal/contacto/8021/contacto"]}, {"institutionName": "Universidad de Chile, Direcci\u00f3n de Servicios de Informaci\u00f3n y Bibliotecas", "institutionAdditionalName": ["SISIB"], "institutionCountry": "CHL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.uchile.cl/sisib", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-07-31 2019-08-04 +r3d100013111 Collaborative Research Centre 1211 Database eng [{"additionalName": "CRC1211DB", "additionalNameLanguage": "eng"}] https://www.crc1211db.uni-koeln.de [] ["crc1211db-admin@uni-koeln.de"] The CRC1211DB is the project-database of the Collaborative Research Centre 1211 "Earth -Evolution at the dry limit" (CRC1211,https://sfb1211.uni-koeln.de/) funded by the German Research Foundation (DFG, German Research Foundation – Projektnummer 268236062). The project-database is a new implementation of the TR32DB and online since 2016. It handles all data including metadata, which are created by the involved project participants from several institutions (e.g. Universities of Cologne, Bonn, Aachen, and the Research Centre Jülich) and research fields (e.g. soil and plant sciences, biology, geography, geology, meteorology and remote sensing). The data is resulting from several field measurement campaigns, meteorological monitoring, remote sensing, laboratory studies and modelling approaches. Furthermore, outcomes of the scientists such as publications, conference contributions, PhD reports and corresponding images are collected. eng ["disciplinary"] {"size": "125 datasets", "updatedp": "2019-08-06"} 2016-12-22 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.crc1211db.uni-koeln.de/site/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["Atacama", "Chile", "biology", "geography", "geology", "meteorology", "remote sensing"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/service/kontakt/index.html"]}, {"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": ["FZ J\u00fclich"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de/portal/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fz-juelich.de/portal/DE/zentrum/kontaktinformationen/_node.html"]}, {"institutionName": "RWTH Aachen", "institutionAdditionalName": ["RWTH Aachen University"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rwth-aachen.de/cms/~a/root/", "institutionIdentifier": ["ROR:04xfq0f34", "RRID:SCR_011509", "RRID:nlx_74722"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn", "institutionAdditionalName": ["University of Bonn"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-bonn.de/", "institutionIdentifier": ["ROR:041nas322", "RRID:SCR_011611", "RRID:nlx_96679"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-bonn.de/contact?set_language=en"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln", "institutionAdditionalName": ["University of Cologne"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uni-koeln.de/", "institutionIdentifier": ["ROR:00rcxh774", "RRID:SCR_002903", "RRID:nlx_14953"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZK", "University of Cologne, Regional Computing Centre Cologne"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://rrzk.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rrzk.uni-koeln.de/kontakt-uebersicht.html?&L=1"]}] [{"policyName": "Data Policy Agreement", "policyURL": "https://www.crc1211db.uni-koeln.de/datapolicy/CRC_1211_DATA_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.crc1211db.uni-koeln.de/datapolicy/CRC_1211_DATA_policy.pdf"}] restricted [{"dataUploadLicenseName": "CRC1211 Data Policy", "dataUploadLicenseURL": "https://www.crc1211db.uni-koeln.de/datapolicy/CRC_1211_DATA_policy.pdf"}] ["unknown"] {} ["DOI"] https://www.crc1211db.uni-koeln.de/site/faq.php [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-08-05 2020-08-28 +r3d100013113 PTB-OAR eng [{"additionalName": "PTB Open Access Repository", "additionalNameLanguage": "eng"}] https://oar.ptb.de/ [] ["jan.strassburg@ptb.de"] PTB is the national metrology institute of the Federal Republic of Germany. The Open Access Repository of the Physikalisch-Technische Bundesanstalt grants free access to a number of factual datasets and documents that were elaborated at PTB. This includes publications such as the "PTB-Mitteilungen", the metrological expert journal of PTB, and numerous of documents from the field of legal metrology. eng ["institutional"] {"size": "487 records", "updatedp": "2019-08-06"} 2012-11-01 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40702 Measurement Systems", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["PV metrology", "acoustics", "calibration", "circuit QED", "industrial testing", "microwave detectors", "photogrammetry", "sound pressure measurement"] [{"institutionName": "Physikalisch-Technische Bundesanstalt", "institutionAdditionalName": ["PTB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ptb.de/cms/", "institutionIdentifier": ["ISNI: 0000 0001 2186 1887"], "responsibilityStartDate": "2012-11-01", "responsibilityEndDate": "", "institutionContact": ["bibliothek@ptb.de"]}] [{"policyName": "Statement on Data Protection", "policyURL": "https://oar.ptb.de/privacy_policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nd/4.0/deed.en"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.en"}] restricted [] ["unknown"] {} ["DOI"] ["ORCID"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-08-06 2019-08-10 +r3d100013116 University of Hertfordshire Research Archive eng [{"additionalName": "UHRA", "additionalNameLanguage": "eng"}] https://uhra.herts.ac.uk/ [] ["rsc@herts.ac.uk"] University repository containing publication data and datasets. eng ["institutional"] {"size": "", "updatedp": ""} 2014 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.herts.ac.uk/research/research-management/rdm/finishing/uh-research-archive [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Hertfordshire", "institutionAdditionalName": ["Herts", "UH"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.herts.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.herts.ac.uk/contact-us"]}] [{"policyName": "Preservation", "policyURL": "https://www.herts.ac.uk/research/research-management/rdm/finishing/preservation"}, {"policyName": "policies and regulations (UPRs)", "policyURL": "https://www.herts.ac.uk/research/research-management/rdm/legal/uh-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://www.herts.ac.uk/research/research-management/rdm/finishing/uh-research-archive"}] restricted [] ["DSpace"] {} ["DOI", "hdl"] https://www.herts.ac.uk/research/research-management/rdm/finishing/uh-research-archive [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://uhra.herts.ac.uk/feed/atom_1.0/site", "syndicationType": "ATOM"} 2019-08-08 2019-08-15 +r3d100013118 B2SHARE Server Forschungszentrum Jülich eng [] https://b2share.fz-juelich.de/ [] ["ds-support@fz-juelich.de"] B2SHARE allows publishing research data and belonging metadata. It supports different research communities with specific metadata schemas. This server is provided for researchers of the Research Centre Juelich and related communities. eng ["other"] {"size": "50GB per file and 200GB per deposit", "updatedp": "2019-08-15"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.fz-juelich.de/ias/jsc/EN/Expertise/SciCloudServices/B2Share/artikel.html [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] [] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@fz-juelich.de"]}, {"institutionName": "J\u00fclich Supercomputing Centre, Institute for Advanced Simulation", "institutionAdditionalName": ["JSC, IAS"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/ias/jsc/EN/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "B2SHARE usage", "policyURL": "https://eudat.eu/services/userdoc/b2share-usage"}, {"policyName": "Data privacy statement", "policyURL": "https://b2share.fz-juelich.de/data-privacy-statement.html"}, {"policyName": "EUDAT services terms of use", "policyURL": "http://hdl.handle.net/11304/e43b2e3f-83c5-4e3f-b8b7-18d38d37a6cd"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}] restricted [] ["other"] yes {"api": "https://b2share.fz-juelich.de/api/oai2d", "apiType": "OAI-PMH"} ["DOI", "hdl"] [] unknown unknown [] [] {} 2019-08-13 2020-08-26 +r3d100013120 INPTDAT eng [{"additionalName": "The Data Platform for Plasma Technology", "additionalNameLanguage": "eng"}] https://www.inptdat.de [] ["markus.becker@inp-greifswald.de"] The interdisciplinary data platform INPTDAT provides easy access to research data and information from all fields of applied plasma physics and plasma medicine. It aims to support the findability, accessibility, interoperability and re-use of data for the low-temperature plasma physics community. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://inptdat.de/project-inpt-dat [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Plasma-MDS", "plasma medicine", "plasma technology"] [{"institutionName": "Bundesministerium f\u00fcr Bildung und Forschung", "institutionAdditionalName": ["BMBF", "Federal Ministry of Education and Research"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/", "institutionIdentifier": ["RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz Institute for Plasma Science and Technology", "institutionAdditionalName": ["Leibniz-Institut f\u00fcr Plasmaforschung und Technologie e.V."], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.inp-greifswald.de/en/", "institutionIdentifier": ["ROR:004hd5y14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["welcome@inp-greifswald.de"]}] [{"policyName": "Dis\u00adclai\u00admer of lia\u00adbi\u00adli\u00adty", "policyURL": "https://www.inp-greifswald.de/en/legal-notice/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.inptdat.de/legal-notice"}] restricted [] ["other"] {"api": "https://docs.getdkan.com/en/latest/apis/index.html", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} The repository is based on the software DKAN (https://getdkan.org). The metadata schema Plasma-MDS (https://arxiv.org/abs/1907.07744) is used by INPTDAT 2019-08-14 2020-01-30 +r3d100013121 DMU Figshare eng [{"additionalName": "De Montfort University Data Repository", "additionalNameLanguage": "eng"}] https://figshare.dmu.ac.uk/ [] ["researchdataman@dmu.ac.uk"] DMU Figshare is De Montfort University's institutional research data management platform. It showcases research from staff at the university. eng ["institutional"] {"size": "179 results", "updatedp": "2020-11-30"} 2019-04 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.library.dmu.ac.uk/rdmguide/dmufigshare [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "De Montfort University, Leicester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dmu.ac.uk/home.aspx", "institutionIdentifier": ["ROR:0312pnr83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DMU Figshare Terms and Conditions", "policyURL": "https://libguides.library.dmu.ac.uk/ld.php?content_id=32220906"}, {"policyName": "DMU's guidelines on Good Practice in Research Data Management", "policyURL": "https://www.dmu.ac.uk/documents/research-documents/research-support/dmu-guidelines-on-rdm-march-2016.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] {} ["DOI"] https://library.dmu.ac.uk/rdmguide/finding ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-08-16 2020-11-30 +r3d100013130 PhenoCam eng [] https://phenocam.sr.unh.edu/webcam/network/search/ [] ["thomas.milliman@unh.edu"] The primary objective of the PhenoCam project is to use automated, near-surface remote sensing to provide continuous, real-time monitoring of vegetation phenology across a range of ecosystems and climate zones. eng ["disciplinary"] {"size": "", "updatedp": ""} 2012 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://phenocam.sr.unh.edu/webcam/about/ [{"name": "Images", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biogeoclimatic zone", "biological life cycle", "citizen science", "climate", "continental-scale phenological observatory", "phenology", "photoperiod", "temperature", "vegetation"] [{"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "2012-04-18", "responsibilityEndDate": "2013-04-01", "institutionContact": ["https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf16521"]}, {"institutionName": "PhenoCam Project Team", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://phenocam.sr.unh.edu/webcam/about/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Hampshire", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unh.edu/", "institutionIdentifier": ["ROR:01rmh9n78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["thomas.milliman@unh.edu"]}] [{"policyName": "FAQ - What is your data sharing policy?", "policyURL": "https://phenocam.sr.unh.edu/webcam/faq/"}, {"policyName": "PhenoCam Fair Use Data Policy", "policyURL": "https://phenocam.sr.unh.edu/webcam/fairuse_statement/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://phenocam.sr.unh.edu/webcam/fairuse_statement/"}] restricted [] ["unknown"] yes {} ["DOI"] https://phenocam.sr.unh.edu/webcam/fairuse_statement/ ["ORCID"] unknown unknown [] [] {} 2019-09-03 2020-05-06 +r3d100013132 China Seismic Array Data Management Center eng [{"additionalName": "\u4e2d\u56fd\u5730\u9707\u79d1\u5b66\u63a2\u6d4b\u53f0\u9635\u6570\u636e\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] http://www.chinarraydmc.cn/ ["DOI:10.12001/ChinArray.Data"] ["chinarray_dmc@cea-igp.ac.cn", "http://www.chinarraydmc.cn/we/index"] China Seismic Array Data Management Center(DOI:10.12001/ChinArray.Data) provides ChinArray data, China Air Gunshot experiment data, and China seismic networks data. eng ["disciplinary"] {"size": "100TB", "updatedp": "2019-10-22"} 2006-10-1 ["zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.chinarraydmc.cn/common/tyshow?mid=42&mpid=31 [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ChinArray", "data sharing", "earthquake", "seismology"] [{"institutionName": "Institute of Geophysics, China Earthquake Administration", "institutionAdditionalName": ["\u4e2d\u56fd\u5730\u9707\u5c40\u5730\u7403\u7269\u7406\u7814\u7a76\u6240"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cea-igp.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Standard specifications", "policyURL": "http://www.chinarraydmc.cn/rules/index?mid=18&mpid=31"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "http://www.chinarraydmc.cn/rules/index?mid=18&mpid=31"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.chinarraydmc.cn/rules/index?mid=18&mpid=31"}] restricted [] ["MySQL"] yes {} ["DOI"] [] unknown unknown [] [] {} 2019-09-06 2021-06-15 +r3d100013133 Portal de Datos Abiertos de la Pontificia Universidad Católica del Perú spa [] http://datos.pucp.edu.pe/ [] ["raul.sifuentes@pucp.pe"] This Open Data Portal gives access to research data from the Public Opinion Institute od the Pontiphical Catholic University of Peru, and pretends to incorporate open data from other institutes in the mid and large term. spa ["institutional"] {"size": "1 dataverse; 91 datasets; 402 files", "updatedp": "2021-02-26"} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Pontificia Universidad Cat\u00f3lica del Per\u00fa", "institutionAdditionalName": ["PUCP"], "institutionCountry": "PER", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.pucp.edu.pe/", "institutionIdentifier": ["ROR:00013q465"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Harvard Dataverse Policies", "policyURL": "https://support.dataverse.harvard.edu/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {} ["hdl"] https://www.force11.org/datacitationprinciples [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-09-09 2021-02-26 +r3d100013134 DataSuds fra [{"additionalName": "Des donn\u00e9es ouvertes pour une science durable au Sud", "additionalNameLanguage": "fra"}] https://dataverse.ird.fr/ [] ["data@ird.fr", "luc.decker@ird.fr"] The DataSuds data warehouse provides IRD scientists and their partners with a service to disseminate, preserve and enhance their research data by facilitating their identification and citation. It is one of the elements of the open science system for the South promoted by the IRD. eng ["institutional"] {"size": "62 dataverses; 104 datasets; 3959 files", "updatedp": "2020-04-29"} 2019-09-01 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.ird.fr/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Southern countries", "climate change impact", "sustainability science"] [{"institutionName": "IRD- Institut de Recherche pour le D\u00e9veloppement", "institutionAdditionalName": ["French National Research Institute for Development"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ird.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Site support IRD Data", "policyURL": "https://data.ird.fr/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/deed.fr"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://data.ird.fr/citer-des-donnees/ [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2019-09-11 2021-03-05 +r3d100013135 Fordatis deu [{"additionalName": "Forschungsdaten-Repositorium der Fraunhofer-Gesellschaft", "additionalNameLanguage": "deu"}, {"additionalName": "Research Data Repository of Fraunhofer-Gesellschaft", "additionalNameLanguage": "eng"}] https://fordatis.fraunhofer.de [] ["fordatis-support@fraunhofer.de", "https://fordatis.fraunhofer.de/feedback"] Fordatis is the institutional research data repository of the Fraunhofer-Gesellschaft. Fraunhofer-Gesellschaft based in Germany is Europes largest research and technology organization. Fordatis contains research data created by researcher at Fraunhofer. These are data from the engineering, natural sciences and social sciences. eng ["institutional"] {"size": "", "updatedp": ""} 2019-09-02 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://fordatis.fraunhofer.de/about.jsp [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["Engineering Sciences", "Fraunhofer-Gesellschaft", "Germany", "Natural Sciences"] [{"institutionName": "Fraunhofer-Gesellschaft zur F\u00f6rderung der angewandten Forschung e.V.", "institutionAdditionalName": ["Fraunhofer Society"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fraunhofer.de", "institutionIdentifier": ["ROR:05hkkdn48", "RRID:SCR_011231", "RRID:nlx_157956"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fraunhofer.de/en/contact-headquarters.html"]}, {"institutionName": "Fraunhofer-Informationszentrum Raum und Bau, Competence Center Research Services & Open Science", "institutionAdditionalName": ["IRB, Competence Center Research Services & Open Science"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://irb.fraunhofer.de/de/research-services.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About Fordatis", "policyURL": "https://fordatis.fraunhofer.de/about.jsp?locale=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0.txt"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://publica.fraunhofer.de/Fraunhofer%20Open%20Access%20Strategie%202020_eng_final.pdf"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.de.html"}] restricted [] ["DSpace"] yes {} ["DOI"] ["none"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} APIs are still restricted 2019-09-13 2021-06-15 +r3d100013138 Chemical composition of ancient ceramics eng [{"additionalName": "CRMC", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/CRMC ["DOI:10.17171/1-11"] ["edition@topoi.org"] Three parts of a database provide published and unpublished chemical analysis results of archaeological ceramics. These are the results of forty years of applying WD-XRF and other mineralogical and physical laboratory methods to the analysis of sherds from excavations and museums. Drawing on some 30,000 analyses from research projects in Europe, Turkey, the near East, and Sudan, the part published here covers the results of three long-term projects: Early pottery in Thessaly, Greece (1,305 records), Firmalampen and other Roman lamps (1,666 records), and Roman and other pottery produced in Central Europe (4,043 records). This collated information provides an opportunity to work directly on published and unpublished data. These can be used as chemical reference groups for comparison for fine ware classification and in provenance studies. eng ["disciplinary"] {"size": "3 research objects", "updatedp": "2019-09-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "304 Analytical Chemistry, Method Development (Chemistry)", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "40502 Sintered Metallic and Ceramic Materials", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://repository.edition-topoi.org/#by_type=collection;page=1 [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Dimini", "Firmalampen", "Makrychori 2", "Mycenaean pottery", "Platia Magoula Zarko", "Protosesklo", "Roman lamps", "Sesklo", "Soufli Magoula", "Thessaly", "WD-XRF", "ceramics", "chemical analysis", "medieval", "neolithic pottery"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster Topoi EXC 264"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": ["FU-Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": ["ROR:046ak2485", "RRID:SCR_011246", "RRID:nlx_40982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/HASO/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://repository.edition-topoi.org/collection/CRMC [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-09-20 2020-04-28 +r3d100013139 Berlin Waterclock Project eng [{"additionalName": "BWCP", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/BWCP/overview ["DOI:10.17171/2-10"] ["edition@topoi.org"] Collection of ancient waterclocks including descriptions, images and 3D scans. eng ["disciplinary"] {"size": "48 research objects", "updatedp": "2019-09-30"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Egyptian astronomy", "calender", "innovation", "knowledge transfer", "measuring", "time", "water clock", "water technology"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/HASO/metadata#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://repository.edition-topoi.org/collection/BWCP/overview [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-09-20 2020-04-28 +r3d100013140 Architectural Fragments of Myus eng [{"additionalName": "MYUS", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/MYUS ["DOI:10.17171/2-14"] ["edition@topoi.org"] The architecture of the Myus Temple (Ionian coast) is preserved only in a few very fragmented parts. These components, currently housed in the Staatlichen Museen zu Berlin - Antikensammlung, were digitalized and will be used in the reconstruction of a column from a temple likely dedicated to Dionysos. eng ["disciplinary"] {"size": "66 research objects", "updatedp": "2019-09-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://edition-topoi.org/pdf/20160418_Edition_Topoi_Mission-Statement2016.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3D scanning", "architectural geometry"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Edition Topoi", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://edition-topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatliche Museen zu Berlin - Antikensammlung", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.smb.museum/museen-und-einrichtungen/antikensammlung/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}, {"policyName": "Conditions foruse", "policyURL": "http://repository.edition-topoi.org/collection/MYUS/metadata"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://repository.edition-topoi.org/collection/MYUS [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {} 2019-09-20 2020-04-28 +r3d100013141 LiVES Collection of Osteological Anthropometry Digest eng [{"additionalName": "LiVES COstA Digest", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/LIVE/overview ["DOI:10.17171/2-12"] ["edition@topoi.org"] The collection contains stature-related and other anthropometric data of 7686 skeletal individuals (including aggregated information for several individuals) from the prehistory of Southwest Asia and Europe. While the focus period of our collection is the Holocene ca. 10 000 to 1000 BC, the data collection also includes older specimens of anatomically modern humans (dating as early as 110 k BP in the case of Qafzeh). The upper date range in some cases extends to around 100 AD, although the great majority of datasets date no later than 600 BC. Correctness and completeness were pursued for all information relevant to stature, i.e. basic information such as sex (after Sjøvold 1988) and age (after Szilvássy 1988) as well as the long bone measurements, whereas other measurements were merely inherited from the two integrated older data bases and not explicitly checked. All measurements conform to the definitions given by Martin 1928. To grasp common publication practice in the literature, not only left and right body side, but also mean values from both sides as well as measurements with unknown siding have their own separate fields for the stature-related long bone measurements. eng ["disciplinary"] {"size": "2 research objects", "updatedp": "2019-09-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Europe", "Near East", "Southwest Asia", "biological standard of living", "body height", "long bone measurements", "prehistory", "skeleton", "stature"] [{"institutionName": "Freie Universit\u00e4t Berlin, Institut f\u00fcr Pr\u00e4historische Arch\u00e4ologie, Emmy-Noether-Nachwuchsgruppe LiVES", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geschkult.fu-berlin.de/e/praehist/forschungsprojekte/emmy_lives/Info_zur_Emmy-Noether-Nachwuchsgruppe/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/LIVE/metadata"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://repository.edition-topoi.org/collection/LIVE/overview [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model"}] {} 2019-09-20 2020-04-24 +r3d100013142 Pyramids of the Steppe / Kazakhstan, Land of Seven Rivers eng [{"additionalName": "KUSS", "additionalNameLanguage": "deu"}] http://repository.edition-topoi.org/collection/KUSS ["doi:10.17171/2-13"] ["http://www.edition-topoi.org/publishing_with_us/contact"] Atlas of the early iron age kurgans (burial mounds) of the Saks in the Land of Seven Rivers between the river Ili and the foothills of the Transili-Alatau as well as in the mountain valleys of the northern Tien-Shans. eng ["disciplinary"] {"size": "70 research objects", "updatedp": "2019-10-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/KUSS/overview#description [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Early Iron Age", "Eurasia", "Necropolises", "Scythians", "Tomb"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/dfg_profil/geschaeftsstelle/struktur/personen/index.jsp?id=484850495548"]}, {"institutionName": "Deutsches Arch\u00e4ologisches Institut, Eurasien-Abteilung", "institutionAdditionalName": ["German Archaeological Institute, Eurasia Department"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/en/standort/-/organization-display/ZI9STUj61zKB/14604", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi EXC 264", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://gepris.dfg.de/gepris/projekt/39235742?language=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/dfg_profil/geschaeftsstelle/struktur/personen/index.jsp?id=484850495548"]}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": ["Free University of Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/en/index.html", "institutionIdentifier": ["ROR:046ak2485", "RRID:SCR_011246", "RRID:nlx_40982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Stiftung Preu\u00dfischer Kulturbesitz, Berlin", "institutionAdditionalName": ["SPK"], "institutionCountry": "DEU", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.preussischer-kulturbesitz.de/", "institutionIdentifier": ["ROR:01y6swy44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Margulan Institute of Archaeology", "institutionAdditionalName": [], "institutionCountry": "KAZ", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://e-history.kz/en/contents/view/227", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for use", "policyURL": "http://repository.edition-topoi.org/collection/KUSS/overview#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/KUSS/overview [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-09-20 2020-04-22 +r3d100013143 Portable X-Ray fluorescence analysis of Late Bronze Age glass from Amarna eng [{"additionalName": "KBLT", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/KBLT ["doi: 10.17171/2-15"] ["edition@topoi.org", "https://www.edition-topoi.org/contact/"] Cobalt was commonly used as a colourant in the Egyptian glass industries of the 18th dynasty, dark blue glass being a regular find at palatial and settlement sites, including Amarna and Malqata. The main source of cobalt ore used during this period has been identified in the Egyptian Western Desert, around the oases of Kharga and Dakhla. The data presented here was obtained in order to better understand the chaîne opératoire of Late Bronze Age glass production and -working, in particular with regard to cobalt ore. For this purpose, chemical analysis by portable X-Ray fluorescence (pXRF) was carried out in the field on contextualised archaeological material excavated at the site of Amarna, which cannot be exported from Egypt for analysis. In addition, glass and other vitreous materials from the same site, but without a more precise archaeological context, were analysed in the Egyptian Museum and Papyrus Collection, Berlin. The results of this study demonstrate how cobalt ore from various sub-sources was used in the known workshop sites at Amarna, resulting in a deeper understanding of raw materials use and exchange across this settlemen eng [] {"size": "2 research objects", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/KBLT [] [] ["Amarna", "Egypt", "Late Bronze Age", "cobalt", "glass", "portable XRF", "workshops"] [{"institutionName": "Excellence Cluster TOPOI, A-6 Economic Space", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.topoi.org/group/a-6/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/en/index.html", "institutionIdentifier": ["ROR:046ak2485", "RRID:nlx_40982", "SCR_011246"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rathgen-Forschungslabor", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.smb.museum/en/museums-institutions/rathgen-forschungslabor/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.smb.museum/en/museums-institutions/rathgen-forschungslabor/about-us/contact.html"]}, {"institutionName": "Staatliche Museen zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.smb.museum/en/home.html", "institutionIdentifier": ["ROR:02ysgg478;"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.smb.museum/en/contact-feedback.html"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/KBLT/overview"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] [] {} ["DOI"] http://www.edition-topoi.org/pdf/_EdT_Leitfaden_DOI_dt_Februar_2016.pdf [] unknown unknown [] [] {} 2019-09-20 2021-06-15 +r3d100013144 The Uruk-Warka Survey eng [{"additionalName": "URUK", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/URUK ["doi: 10.17171/1-12"] ["edition@topoi.org"] The small digitized archive comprises drawings and photos made by Hans J. Nissen, many of which were not included in the book, The Uruk Countryside. Most of the material consists of pottery, but other ceramic artifacts, stone and metal objects as well as inscribed bricks were also documented. All materials were recorded in the field. The goal of this website is to provide online access to this remaining archival documentation of the Uruk-Warka survey. eng ["disciplinary"] {"size": "2.293 Research Objects", "updatedp": "2019-10-07"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/URUK/overview [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Iraq", "Uruk-Warka Survey", "alluvial lowlands", "pottery", "settlement survey", "southern Mesopotamia"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": ["ROR:046ak2485", "RRID:SCR_011246", "RRID:nlx_40982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/URUK/overview"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] closed [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/URUK/overview [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-09-20 2020-04-15 +r3d100013148 Blackfynn Discover eng [] https://discover.blackfynn.com ["FAIRsharing_doi:10.25504/FAIRsharing.PD1PEt", "RRID:SCR_018068"] ["https://www.blackfynn.com/#contact", "press@blackfynn.com"] Blackfynn Discover is a repository for Neurology and Neuroscience datasets. This repository, funded by DARPA, the NIH, and others, provides a user-friendly solution for publishing large, complex datasets is a scalable and sustainable way. The platform aims to make data available in a meaningful way and to drive adoption of cloud-based analysis over large datasets. eng ["disciplinary"] {"size": "54 datasets", "updatedp": "2020-03-25"} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.blackfynn.com/academia/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["ALS", "Alzheimer\u2019s disease", "Parkinson\u2019s disease", "epilepsy", "neurological diseases", "neurology", "neuroscience"] [{"institutionName": "Blackfynn Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.blackfynn.com/", "institutionIdentifier": ["ROR:00sp0xc53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Security Overview", "policyURL": "https://www.blackfynn.com/platform/security/"}, {"policyName": "Terms of Service", "policyURL": "https://www.blackfynn.com/legal/terms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://help.blackfynn.com/en/articles/3044442-common-dataset-licenses"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://help.blackfynn.com/en/articles/3044442-common-dataset-licenses"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://help.blackfynn.com/en/articles/3044442-common-dataset-licenses"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.blackfynn.com/legal/terms/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://help.blackfynn.com/en/articles/3044442-common-dataset-licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://help.blackfynn.com/en/articles/3044442-common-dataset-licenses"}] restricted [{"dataUploadLicenseName": "Blackfynn Terms of Use", "dataUploadLicenseURL": "https://www.blackfynn.com/legal/terms/"}] ["unknown"] yes {"api": "https://developer.blackfynn.io/", "apiType": "REST"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-09-26 2021-06-15 +r3d100013152 Perdigao Field Experiment eng [] https://perdigao.fe.up.pt/ [] ["jpalma@fe.up.pt"] Data repository of a meteorological experiment conducted in Perdigão, Portugal between December 15, 2016 to June 15, 2017. The Perdigao field project is part of a larger joint US/European multi-year program in Portugal. The project is partially funded by the European Union (EU) ERANET+ to provide the wind energy sector with more detailed resource mapping capabilities in the form of a new digital EU wind atlas. A major goal of the Perdigão field project is to quantify errors of wind resource models against a benchmark dataset collected in complex terrain. The US participation will complement this activity by identifying physical and numerical weaknesses of models and developing new knowledge and methods to overcome such deficiencies. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["European Union", "Lidar observations", "Portugal", "Wind energy", "meteorology"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7, ERA-NETplus", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidade do Porto, Faculdade de Engenharia", "institutionAdditionalName": [], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sigarra.up.pt/feup", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "EEA data policy", "policyURL": "https://www.eea.europa.eu/legal/eea-data-policy"}, {"policyName": "Objective", "policyURL": "https://perdigao.fe.up.pt/info"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://perdigao.fe.up.pt/maps"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.eea.europa.eu/legal/copyright"}] restricted [] ["unknown"] yes {} ["none"] [] unknown unknown [] [] {} 2019-10-02 2020-03-20 +r3d100013153 Australian Bureau of Meteorology data catalogue eng [] http://www.bom.gov.au/metadata/catalogue [] ["metadata@bom.gov.au"] Meteorology, atmospheric science and oceanography, forecasts, current and historical observations for weather, water, space weather data; data analyses and reports. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.bom.gov.au/inside/index.shtml [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "climate", "marine", "ocean", "rainfall", "seasonal outlooks", "water", "water storage", "weather"] [{"institutionName": "Australian Government, Bureau of Meteorology", "institutionAdditionalName": ["BOM"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.bom.gov.au/?ref=logo", "institutionIdentifier": ["RRID:SCR_007158", "RRID:nif-0000-30228"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About Data Access and Licenses", "policyURL": "http://www.bom.gov.au/metadata/catalogue/license.shtml"}, {"policyName": "Accessibility", "policyURL": "http://www.bom.gov.au/other/accessibility.shtml?ref=ftr"}, {"policyName": "Your rights to use material on Bureau websites", "policyURL": "http://www.bom.gov.au/other/copyright.shtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.bom.gov.au/other/copyright.shtml"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ags.gov.au/pal/"}] restricted [] ["unknown"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://www.bom.gov.au/rss/?ref=ftr", "syndicationType": "RSS"} 2019-10-04 2019-10-16 +r3d100013154 Duke Research Data Repository eng [{"additionalName": "Duke RDR", "additionalNameLanguage": "eng"}] https://research.repository.duke.edu/ ["FAIRsharing_DOI:10.25504/FAIRsharing.sbikSF"] ["datamanagement@duke.edu"] The Duke Research Data Repository is a service of the Duke University Libraries that provides curation, access, and preservation of research data produced by the Duke community. Duke's RDR is a discipline agnostic institutional data repository that is intended to preserve and make public data related to the teaching and research mission of Duke University including data linked to a publication, research project, and/or class, as well as supplementary software code and documentation used to provide context for the data. eng ["institutional"] {"size": "68 datasets", "updatedp": "2019-10-16"} 2018-09 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://research.repository.duke.edu/about?locale=en [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Duke University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://duke.edu/", "institutionIdentifier": ["RRID:SCR_011193", "RRID:nif-0000-1934"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datamanagement@duke.edu"]}, {"institutionName": "Duke University Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.duke.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datamanagement@duke.edu"]}] [{"policyName": "Collections Policy for Research Data", "policyURL": "https://research.repository.duke.edu/about?locale=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/en/"}] restricted [{"dataUploadLicenseName": "Data Deposit Agreement", "dataUploadLicenseURL": "https://research.repository.duke.edu/about?locale=en#h_79808733551538163859170"}] ["Fedora"] yes {} ["ARK", "DOI"] https://datacite.org/cite-your-data.html [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-10-07 2021-11-16 +r3d100013155 ROSA P eng [{"additionalName": "NTL Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Repository & Open Science Access Portal", "additionalNameLanguage": "eng"}] https://rosap.ntl.bts.gov/ ["doi:10.21949/1398953"] ["https://rosap.ntl.bts.gov/contact"] ROSA P is the United States Department of Transportation (US DOT) National Transportation Library's (NTL) Repository and Open Science Access Portal (ROSA P). The name ROSA P was chosen to honor the role public transportation played in the civil rights movement, along with one of the important figures, Rosa Parks. To meet the requirements outlined in its legislative mandate, NTL collects research and resources across all modes of transportation and related disciplines, with specific focus on research, data, statistics, and information produced by USDOT, state DOTs, and other transportation organizations. Content types found in ROSA P include textual works, datasets, still image works, moving image works, other multimedia, and maps. These resources have value to federal, state, and local transportation decision makers, transportation analysts, and researchers. eng ["institutional"] {"size": "1.547 datasets", "updatedp": "2020-02-13"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41002 Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://rosap.ntl.bts.gov/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["BTS products", "NHTSA - Behavioral Safety Research", "NHTSA - Vehicle Safety Research", "US Transportation Collection", "statistics", "traffic", "transportation", "transportation research"] [{"institutionName": "United States Department of Transportation", "institutionAdditionalName": ["USDOT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.transportation.gov/", "institutionIdentifier": ["ROR:02xfw2e90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Department of Transportation, Bureau of Transportation Statistics, National Transportation Library", "institutionAdditionalName": ["BTS", "NTL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ntl.bts.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Inventory USDOT", "policyURL": "https://www.transportation.gov/data"}, {"policyName": "National Transportation Library Collection Development and Maintenance Policy", "policyURL": "https://ntl.bts.gov/sites/bts.dot.gov/files/docs/ntl/219951/ntlcollectiondevelopmentpolicy132018-01-22.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://www.usa.gov/government-works"}] restricted [{"dataUploadLicenseName": "Submit Content", "dataUploadLicenseURL": "https://rosap.ntl.bts.gov/submitContent"}] ["unknown"] {"api": "https://rosap.ntl.bts.gov/fedora/oai?verb=ListMetadataFormats", "apiType": "OAI-PMH"} ["DOI"] [] unknown yes [] [] {} ROSA P is covered by Clarivate Data Citation Index. 2019-10-09 2021-09-10 +r3d100013156 Paths through Rome eng [{"additionalName": "WGRM", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/WGRM ["doi:10.17171/2-16"] [] Collection of maps showing reconstructions of routes and paths through Rome described in Renaissance guidebooks and antiquarian literature. eng ["disciplinary"] {"size": "6 research objects", "updatedp": "2019-10-10"} 2019-09-30 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/WGRM/overview [{"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Rome", "antiquarians", "art history", "guidebooks", "paths", "pilgrims", "routes", "space", "travelling"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hu-berlin.de/de/", "institutionIdentifier": ["RRID:SCR_005626", "RRID:nlx_41554"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["sekretariat.hu@topoi.org"]}] [{"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/WGRM/overview#conditions_for_use"}, {"policyName": "Envisioning the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://www.topoi.org/wp-content/uploads/2016/04/20160428_Edition-Topoi_-Mission-Statement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}] restricted [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/WGRM/overview [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-10-10 2021-09-03 +r3d100013157 The Textile Revolution eng [{"additionalName": "WOLL", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/WOLL ["doi:10.17171/2-17"] ["edition@topoi.org"] The research project “Textile Revolution” integrates studies on the introduction and spread of the woolly sheep and wool usage from different scientific fields. Wool production is closely connected to the domesticated sheep and specifically to those animals that carry a woolly coat. With the keeping of woolly sheep, not only did the economy of prehistoric communities change, but also the textile technology, meaning both, the tools and the techniques for thread and textile making. eng ["disciplinary"] {"size": "4 research objects", "updatedp": "2019-10-11"} 2019-09-30 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/WOLL/overview [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bone assemblages", "mid-Holocene", "sheep", "spindle whorls", "textile production", "vegetation development", "wool"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/index.jsp", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsches Arch\u00e4ologisches Institut", "institutionAdditionalName": ["DAI"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dainst.org/dai/meldungen", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": ["Free University of Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/", "institutionIdentifier": ["RRID:SCR_011246", "RRID:nlx_40982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/WOLL/overview#conditions_for_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/3.0/de/"}] restricted [] ["unknown"] {} ["DOI"] http://repository.edition-topoi.org/collection/WOLL/overview [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-10-10 2019-10-17 +r3d100013158 Climate Models eng [{"additionalName": "ANCM", "additionalNameLanguage": "eng"}] http://repository.edition-topoi.org/collection/ANCM ["doi.10.17171/1-13"] ["edition@topoi.org"] The research data of the last 6000 years were produced using global and regional climate simulations. Climate models of the present and future climate are applied as background for the simulations. The global climate was simulated in a high spatial resolution by using the so-called time slice approach for chosen periods in the past 6000 years. eng ["disciplinary"] {"size": "17.417 research objects", "updatedp": "2019-10-11"} 2019-05-22 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://repository.edition-topoi.org/collection/ANCM#description [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["BCLIMATE simulation", "COSMO-CLM", "ECHAM"] [{"institutionName": "Excellence Cluster Topoi", "institutionAdditionalName": ["Excellence Cluster 264 Topoi"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.topoi.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.topoi.org/people/contact/"]}, {"institutionName": "Freie Universit\u00e4t Berlin, Institut f\u00fcr Meteorologie", "institutionAdditionalName": ["Free University of Berlin, Institute for Meteorology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geo.fu-berlin.de/met/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Conditions for Use", "policyURL": "http://repository.edition-topoi.org/collection/ANCM#conditions_for_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/de/"}] restricted [] ["unknown"] {"api": "http://repository.edition-topoi.org/collection/ANCM/search#by_has_documentation=1;page=1", "apiType": "NetCDF"} ["DOI"] http://repository.edition-topoi.org/collection/ANCM [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-10-10 2019-10-17 +r3d100013159 Digitale Sammlungen der Württembergischen Landesbibliothek deu [] http://digital.wlb-stuttgart.de/start/ [] [] The Digital Collections present selected pieces of all historical collections of the Württembergische Landesbibliothek. The aim is to offer digital reproductions of objects which are created within the framework of cataloguing and research projects. eng ["institutional"] {"size": "11.066 titles", "updatedp": "2019-10-16"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://digital.wlb-stuttgart.de/start/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["H\u00f6lderlin Archive", "Stefan George Archive", "bibles", "manuscript"] [{"institutionName": "W\u00fcrttembergische Landesbibliothek Stuttgart", "institutionAdditionalName": ["WLB Stuttgart"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wlb-stuttgart.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wlb-stuttgart.de/en/topmenu/contact/"]}] [{"policyName": "Nutzungsbedingungen", "policyURL": "http://digital.wlb-stuttgart.de/index.php?id=34"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://digital.wlb-stuttgart.de/index.php?id=34"}] restricted [] ["other"] {} ["PURL", "URN"] http://digital.wlb-stuttgart.de/hilfe/ [] unknown unknown [] [] {"syndication": "http://digital.wlb-stuttgart.de/rss/", "syndicationType": "RSS"} 2019-10-16 2019-10-18 +r3d100013160 BioGRID ORCS eng [{"additionalName": "BioGRID Open Repository of CRISPR Screens", "additionalNameLanguage": "eng"}] https://orcs.thebiogrid.org ["FAIRsharing_doi:10.25504/FAIRsharing.lKaOme"] ["biogridadmin@gmail.com"] BioGRID ORCS is an open repository of CRISPR screens compiled through comprehensive curation efforts. The current index is version 1.0.3 and searches more than 49 publications and 58,161 genes to return more than 895 CRISPR screens from 3 major model organism species and 629 cell lines. All screen data are freely provided through our search index and available via download in a wide variety of standardized formats. eng ["disciplinary"] {"size": "58.161 genes; 629 cell lines", "updatedp": "2019-10-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://wiki.thebiogrid.org/doku.php/ORCS:aboutus [{"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["drosophila melanogaster", "enzyme", "gene", "homo sapiens", "mus musculus", "protein"] [{"institutionName": "BioGRID ORCS", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://wiki.thebiogrid.org/doku.php/ORCS:aboutus#about_biogrid_orcs", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["biogridadmin@gmail.com"]}, {"institutionName": "Canadian Institutes of Health Research", "institutionAdditionalName": ["CIHR", "IRSC", "Instituts de recherche en sant\u00e9 du Canada"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cihr-irsc.gc.ca/e/193.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mount Sinai Hospital, Samuel Lunenfeld Research Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lunenfeld.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Instiutes of Health, Office of Research Infrastructure Programs", "institutionAdditionalName": ["NIH, ORIP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://orip.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Princeton University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.princeton.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Montr\u00e9al, Institute for Research in Immunology and Cancer", "institutionAdditionalName": ["IRIC", "Universit\u00e9 de Montr\u00e9al, Institut de recherche en immunologie en canc\u00e9rologie"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iric.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BioGRID ORCS Help and Support Resources", "policyURL": "https://wiki.thebiogrid.org/doku.php/ORCS"}, {"policyName": "BioGRID Terms and Conditions", "policyURL": "https://wiki.thebiogrid.org/doku.php/terms_and_conditions#licensing_and_other_terms_applying_to_content_posted_on_the_biogrid_sites"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] ["unknown"] {"api": "https://wiki.thebiogrid.org/doku.php/orcs:webservice", "apiType": "REST"} ["none"] https://downloads.thebiogrid.org/BioGRID-ORCS [] yes yes [] [] {} BioGRID ORCS Partners: https://wiki.thebiogrid.org/doku.php/ORCS:partners 2019-10-17 2019-10-23 +r3d100013162 Digitale Historische Bibliothek Erfurt/Gotha deu [{"additionalName": "Digital Historical Library Erfurt/Gotha", "additionalNameLanguage": "eng"}] https://dhb.thulb.uni-jena.de/templates/master/template_dhb/index.xml [] ["https://www.thulb.uni-jena.de/Ansprechpartner.html"] The Gotha Research Library of the University of Erfurt and the Erfurt University Library preserve unique collections of manuscripts, old prints and maps. The Digital Historical Library Erfurt/Gotha provides research-relevant, particularly valuable or frequently used parts of the historical holdings. eng ["institutional"] {"size": "", "updatedp": ""} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.uni-erfurt.de/index.php?id=12976&L=1 [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["collection Perthes Gotha", "literary remains", "oriental handwritings"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Th\u00fcringer Universit\u00e4ts- und Landesbibliothek Jena", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.thulb.uni-jena.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Erfurt, Forschungsbibliothek Gotha", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-erfurt.de/bibliothek/fb/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Datenschutzerkl\u00e4rung", "policyURL": "https://archive.thulb.uni-jena.de/ufb/content/main/privacy.xml"}, {"policyName": "Nutzungsbedingungen", "policyURL": "https://archive.thulb.uni-jena.de/ufb/templates/master/template_ufb2/sites/terms.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] [] {"api": "https://archive.thulb.uni-jena.de/ufb/templates/master/template_ufb2/sites/terms.xml", "apiType": "OAI-PMH"} ["URN"] https://archive.thulb.uni-jena.de/ufb/templates/master/template_ufb2/sites/terms.xml [] unknown unknown [] [] {} 2019-10-23 2021-09-10 +r3d100013164 DASH Repository eng [{"additionalName": "NCAR UCAR Digital Asset Services Hub Repository", "additionalNameLanguage": "eng"}] https://dashrepo.ucar.edu/ [] ["datahelp@ucar.edu"] The DASH Repository provides persistent data archiving and distribution for small-scale data collections from UCAR/NCAR researchers and projects. This data repository specifically focuses on providing long-term preservation and stewardship of NCAR's small-scale data collections. Complementing other NCAR-managed data repositories, the DASH Repository helps NCAR researchers to enable long term access, interoperability, and reuse of NCAR datasets. eng ["disciplinary"] {"size": "14 datasets", "updatedp": "2019-10-30"} 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dashrepo.ucar.edu/repo/about/aboutUs.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["VAPOR sample data", "biosphere", "climate indicators", "sun-earth interactions", "vegetation"] [{"institutionName": "National Center for Atmospheric Research", "institutionAdditionalName": ["NCAR"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ncar.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nsf.org/", "institutionIdentifier": ["RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Corporation for Atmospheric Research", "institutionAdditionalName": ["UCAR"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ucar.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use for UCAR Data Repositories", "policyURL": "https://www.ucar.edu/terms-of-use/data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.ucar.edu/terms-of-use/website"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ucar.edu/notification-copyright-infringement-digital-millenium-copyright-act"}] restricted [{"dataUploadLicenseName": "How to Submit Data", "dataUploadLicenseURL": "https://dashrepo.ucar.edu/repo/howToSubmit.html"}] [] yes {"api": "https://dashrepo.ucar.edu/oai/repository.xml?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] https://dashrepo.ucar.edu/dataset/CESM-cocco_CO2_experiments.html [] unknown yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2019-10-29 2019-11-01 +r3d100013165 SUNScholarData eng [] https://scholardata.sun.ac.za/ ["biodbcore-001600"] ["https://library.sun.ac.za/en-za/Research/rdm/SUNScholarData/Pages/contactus.aspx"] SUNScholarData is an institutional research data repository which can be used for the registration, archival storage, sharing and dissemination of research data produced or collected in relation to research conducted under the auspices of Stellenbosch University. The repository has a public interface which can be used for finding content. It also has private user accounts which can be used by Stellenbosch University users in order to upload, share or publish their research data. In addition to this Stellenbosch University researchers can also use SUNScholarData in order to collaborate with researchers from other institutions whilst working on their research projects. The repository creates a medium through which Stellenbosch University’s research data can be made findable and accessible. It also facilitates the interoperability and re-usability of the university’s research data. eng ["institutional"] {"size": "", "updatedp": "2019-11-05"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://library.sun.ac.za/en-za/Research/rdm/SUNScholarData/Pages/default.aspx [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Stellenbosch University", "institutionAdditionalName": [], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sun.ac.za/english", "institutionIdentifier": ["ROR:05bk57929"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rdm@sun.ac.za"]}] [{"policyName": "Stellenbosch University Research Data Management Regulations", "policyURL": "https://libguides.sun.ac.za/ld.php?content_id=59518409"}, {"policyName": "Stellenbosch University Research Data Repository : Regulation", "policyURL": "https://www.sun.ac.za/english/Documents/Terms_and_conditions/Current/SU_Privacy_Regulation_WEB_Eng.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/licensing-types-examples/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/index.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://choosealicense.com/licenses/mit/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/old-licenses/gpl-1.0.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"}] restricted [] ["other"] {} ["DOI"] https://libguides.sun.ac.za/c.php?g=950632&p=6856497 ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2019-11-01 2021-11-17 +r3d100013166 Forschungsdatenzentrum im Kraftfahrt-Bundesamt deu [{"additionalName": "FDZ im KBA", "additionalNameLanguage": "deu"}] https://www.kba.de/DE/Statistik/Forschungsdatenzentrum/forschungsdatenzentrum_node.html [] ["fdz@kba.de"] The statistics pages of the Kraftfahrt-Bundesamt (KBA) provide an overview of official facts and figures relating to motor vehicles and their users. The data on this page are continuously updated. Publications generally appear as annual statistics. In addition to this, we provide monthly results relating to new registrations and changes of ownership in Germany, as well as information relating to road haulage with German vehicles The currently provisionally accredited research data center of the Kraftfahrt-Bundesamt extends the data portfolio of the official register data and initially provides anonymised microdata for access to the driving fitness register (FAER). Statistics published by the KBA are available exclusively in German. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40704 Traffic and Transport Systems, Logistics", "scheme": "DFG"}, {"name": "40705 Human Factors, Ergonomics, Human-Machine Systems", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Register of Driver Fitness - Fahreignungsregister - FAER", "drivers", "driving licenses", "motor vehicles", "road haulage", "tachograph cards"] [{"institutionName": "Kraftfahrtbundesamt", "institutionAdditionalName": ["KBA"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kba.de/DE/Home/home_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Antrag zur Off-Site-Nutzung von Mikrodaten des Kraftfahrt-Bundesamtes", "policyURL": "https://www.kba.de/SiteGlobals/Forms/AntragFDZ/FDZ_Integrator.html?nn=2198244"}, {"policyName": "Bundesstatistikgesetz - BStatG, \u00a716", "policyURL": "https://www.gesetze-im-internet.de/bstatg_1987/__16.html"}, {"policyName": "Informationen zur Datennutzung", "policyURL": "https://www.kba.de/DE/Statistik/Forschungsdatenzentrum/Informationen_zur_Datennutzung/info_datennutzung_node.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.kba.de/DE/Statistik/Forschungsdatenzentrum/Informationen_zur_Datennutzung/muster_pdf.pdf?__blob=publicationFile&v=14"}] restricted [] [] no {} ["DOI"] https://www.kba.de/DE/Statistik/Forschungsdatenzentrum/Datenangebot/Zugang_in_das_FAER/Zugang_im_Jahr_2016/zugang_faer_2016_node.html [] unknown unknown ["RatSWD"] [] {} 2019-11-04 2019-11-08 +r3d100013167 WSI-Datenzentrum deu [{"additionalName": "The Institute of Economic and Social Research Data Center", "additionalNameLanguage": "eng"}, {"additionalName": "WSI Data Center", "additionalNameLanguage": "eng"}, {"additionalName": "Wirtschafts- und Sozialwissenschaftliches Institut Datenzentrum", "additionalNameLanguage": "deu"}] https://www.wsi.de/de/index.htm [] ["https://www.wsi.de/de/ansprechpartner-innen-14509-helge-emmler-2824.htm", "zentrale@boeckler.de"] The WSI-Datenzentrum is a service provided by the Institute for Social and Economic Research (WSI). It collects and presents primary and secondary data on e.g. working conditions, co-determination or social policy. Primary data collected are primarily the WSI works councils surveys. Interested academics can use the works councils surveys collected from 2005 to 2011. The records are available to everyone and free of charge after contacting the repository owner and signing a data usage statement. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.wsi.de/en/index.htm [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["WSI Collective Agreement Archive", "WSI Tarifarchiv", "gender", "income", "industrial relations", "labor market", "minimum wage", "non-standard employment", "poverty", "social inequality", "wealth", "works councils"] [{"institutionName": "Wirtschafts- und Sozialwissenschaftliches Institut in der Hans-B\u00f6ckler-Stiftung", "institutionAdditionalName": ["The Institute of Economic and Social Research", "WSI"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wsi.de/en/index.htm", "institutionIdentifier": ["GND:2033849-1"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.boeckler.de/11_41758.htm"}] closed [] ["unknown"] {} [] [] no unknown [] [] {} 2019-11-04 2021-10-19 +r3d100013168 DeZIM Research Data Center eng [{"additionalName": "DSFZ", "additionalNameLanguage": "deu"}, {"additionalName": "DeZIM-Forschungsdatenzentrum", "additionalNameLanguage": "deu"}, {"additionalName": "DeZIM.fdz", "additionalNameLanguage": "deu"}] https://fdz.dezim-institut.de/en [] ["fdz@dezim-institut.de"] The Research Data Center DeZIM.fdz at the German Center for Integration and Migration Research consists of four interconnected modules: (1) data archive, (2) support for staff and users, (3) online access panel and (4) metadatabase. It offers interested researchers the opportunity to access research data collected in the course of projects carried out at the DeZIM Institute and at the institutes of the DeZIM Research Association. In addition to the access to the data, the DeZIM.fdz organizes an extensive support for the individual data sets in its data offer as well as for various methodological key topics. The regularly conducted surveys within the framework of the Online Access Panel enable scientists at the DeZIM Institute, at the institutes of the DeZIM Research Association, external scientists and the staff of the BMFSFJ to access a pool of potential interviewees. Furthermore, DeZIM.fdz offers an extensive information database, which enables research on studies - both internally and externally archived - that deal with the topics of integration and migration. eng ["disciplinary"] {"size": "2 dataset", "updatedp": "2021-05-18"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.dezim-institut.de/forschungsdatenzentrum-dezimfdz/datenarchiv/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["demographic change", "diversity", "minorities", "participation", "radicalization", "refugees", "social acceptance"] [{"institutionName": "Deutsches Zentrum f\u00fcr Integrations- und Migrationsforschung DeZIM e.V.", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dezim-institut.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@dezim-institut.de"]}] [{"policyName": "DeZIM-Datennutzungsvertrag - Off-Site -", "policyURL": "https://registration.fdz.dezim-institut.de/en/contract_blank.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://fdz.dezim-institut.de/de/imprint"}] restricted [] [] yes {} ["DOI"] [] unknown unknown ["RatSWD"] [] {} 2019-11-04 2021-10-11 +r3d100013169 European XFEL Data Portal eng [{"additionalName": "European X-Ray Free-Electron Laser Data Management Portal", "additionalNameLanguage": "eng"}, {"additionalName": "European XFEL Metadata Catalogue", "additionalNameLanguage": "eng"}] https://in.xfel.eu/metadata [] ["krzysztof.wrona@xfel.eu"] European XFEL Data Portal is provided by myMdC, allowing users to access the metadata of scientific data taken at the European XFEL facility. Datasets are linked to experiment proposals, annotated by data collection types, samples and are assigned DOIs to be referenced in publications. myMdC helps data management activities and allows users to find open and own proposals data based on the metadata. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-07 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "30701 Experimental Condensed Matter Physics", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.xfel.eu/organization/mission/index_eng.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["femtosecond X-ray experiments", "high energy density matter", "materials imaging and dynamics", "serial femtosecond crystallography", "single particles, clusters and biomolecules", "small quantum systems", "spectroscopy and coherent scattering"] [{"institutionName": "Deutsches Elektronen-Synchrotron", "institutionAdditionalName": ["DESY"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.desy.de/index_eng.html", "institutionIdentifier": ["ROR:01js2sh04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European X-Ray Free-Electron Laser Facility GmbH", "institutionAdditionalName": ["EuXFEL", "European XFEL"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.xfel.eu/", "institutionIdentifier": ["ROR:01wp2jz98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@xfel.eu"]}] [{"policyName": "Scientific Data Policy of European X-Ray Free-Electron Laser Facility GmbH", "policyURL": "https://www.xfel.eu/users/experiment_support/policies/scientific_data_policy/index_eng.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] ["other"] {"api": "https://in.xfel.eu/metadata/api-docs/", "apiType": "REST"} ["DOI"] https://www.xfel.eu/users/experiment_support/policies/user_publication_policy_pdf/user_publication_policy_pdf/index_eng.html ["ORCID"] yes unknown [] [] {} 2019-11-05 2021-04-12 +r3d100013171 DaRUS deu [{"additionalName": "Data Repository of the University of Stuttgart", "additionalNameLanguage": "eng"}, {"additionalName": "Datenrepositorium der Universit\u00e4t Stuttgart", "additionalNameLanguage": "deu"}] https://darus.uni-stuttgart.de [] ["fokus@izus.uni-stuttgart.de"] DaRUS, the data repository of the University of Stuttgart, offers a secure location for research data and codes, be it for the administration of own data, for exchange within a research group, for sharing with selected partners or for publishing. eng ["institutional"] {"size": "28 dataverses; 6 datasets; 86 files", "updatedp": "2019-11-08"} 2019 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.izus.uni-stuttgart.de/en/fokus/darus/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multi-disciplinary"] [{"institutionName": "University of Stuttgart", "institutionAdditionalName": ["Universit\u00e4t Stuttgart"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-stuttgart.de", "institutionIdentifier": ["GND:36186-0"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-stuttgart.de/en/university/contact/"]}] [{"policyName": "DaRUS Terms of Use", "policyURL": "https://www.izus.uni-stuttgart.de/en/fokus/darus/termsofuse/"}, {"policyName": "Privacy Statement", "policyURL": "https://www.izus.uni-stuttgart.de/en/fokus/darus/privacy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "DaRUS Terms of Use", "dataUploadLicenseURL": "https://www.izus.uni-stuttgart.de/en/fokus/darus/termsofuse/"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID", "other"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2019-11-08 2019-11-13 +r3d100013173 DataRepositoriUM eng [{"additionalName": "Reposit\u00f3rio de Dados da Universidade do Minho", "additionalNameLanguage": "por"}] https://datarepositorium.uminho.pt/ [] ["datarepositorium@usdb.uminho.pt", "openscience@usdb.uminho.pt"] Data Repository of the University of Minho. Share, publish and manage data from University of Minho research units. eng ["institutional"] {"size": "54 dataverses; 72 datasets; 203 files", "updatedp": "2022-02-03"} 2019-11-01 ["eng", "por"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://guias.sdum.uminho.pt/datarepositorium [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidade do Minho", "institutionAdditionalName": ["University of Minho"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uminho.pt/PT", "institutionIdentifier": ["ROR:037wpkx04", "RRID:SCR_011672", "RRID:nlx_156795"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Normas gerais", "policyURL": "http://ftp.sdum.uminho.pt/Normas-ComunidadeDataverse_UMINHO.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2019-11-09 2022-02-03 +r3d100013176 burckhardtsource.org eng [{"additionalName": "Burckhardt Source", "additionalNameLanguage": "eng"}, {"additionalName": "The European correspondence to Jacob Burckhardt", "additionalNameLanguage": "eng"}] https://burckhardtsource.org/ [] ["https://wiki.burckhardtsource.org/contacts/"] The platform hosts the critical edition of the letters written to Jacob Burckhardt, reconstructing in open access one of the most important European correspondences of the 19th century. Save a few exceptions, these letters are all unpublished. On a later stage, the project aims to publish also Jacob Burckhardt’s letters. The editing process has been carried out using Muruca semantic digital library framework. The Muruca framework has been modified over the project, as the requirements of the philological researchers emerged more clearly. The results are stored in and accessible from the front-end of the platform. eng ["disciplinary"] {"size": "about 1.100 documents", "updatedp": "2019-11-20"} 2010-06 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://wiki.burckhardtsource.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["correspondance", "cultural history"] [{"institutionName": "European Commission, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cordis.europa.eu/project/rcn/210169/factsheet/fr"]}, {"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": ["FP7"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "2010-06", "responsibilityEndDate": "2015-05", "institutionContact": ["https://cordis.europa.eu/project/rcn/94317/reporting/en"]}, {"institutionName": "Scuola Normale Superiore", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sns.it/", "institutionIdentifier": [], "responsibilityStartDate": "2017-06", "responsibilityEndDate": "2019-08", "institutionContact": ["maurizio.ghelardi@sns.it"]}] [{"policyName": "Terms and Policies", "policyURL": "https://wiki.burckhardtsource.org/copyright/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://wiki.burckhardtsource.org/copyright/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://wiki.burckhardtsource.org/copyright/"}] closed [] ["other"] {} ["none"] ["other"] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Digital Library developed by the European Research Advanced Grant Project EUROCORR (Grant Agreement n. 249483, June 2010–May 2015) and coordinated by Prof. Maurizio Ghelardi (Pisa, Scuola Normale Superiore). The OPenPal project, led by Prof. Ghelardi, aims to develop a prototype system to manage, publish, export and visualise corpora of various types of correspondence in innovative ways: the idea is therefore to move from the EU-funded project EUROCORR and to generalise both workflow and data model to new correspondence corpora, by refactoring and redesigning the architecture of Burckhardtsource (Grant agreement 727832, 2017-06 to 2019-08) 2019-11-20 2019-11-23 +r3d100013177 ScienceDB eng [{"additionalName": "Science Data Bank", "additionalNameLanguage": "eng"}] https://www.scidb.cn/en ["FAIRsharing_doi:10.25504/fairsharing.tb0bkn", "doi:10.11922/sciencedb.0"] ["scidb@cnic.cn", "sciencedb@cnic.cn"] Science Data Bank is an open generalist data repository developed and maintained by the Chinese Academy of Sciences Computing and Network Information Center (CNIC). It promotes the publication and reuse of scientific data. Researchers and journal publishers can use it to store, manage and share science data. eng ["other"] {"size": "34.002 GB data; 488.533 datasets", "updatedp": "2021-08-04"} 2015-07-15 ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.scidb.cn/en/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["general purpose", "multidisciplinary"] [{"institutionName": "Chinese Academy of Sciences, Computer Network Information Center", "institutionAdditionalName": ["\u4e2d\u56fd\u79d1\u5b66\u9662\u8ba1\u7b97\u673a\u7f51\u7edc\u4fe1\u606f\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.cnic.cas.cn/", "institutionIdentifier": ["ROR:01s0wyf50"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy", "policyURL": "https://www.scidb.cn/en/data_policy"}, {"policyName": "FAQ", "policyURL": "https://www.scidb.cn/en/faq"}, {"policyName": "Terms of Service", "policyURL": "https://www.scidb.cn/en/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Terms and conditions", "dataUploadLicenseURL": "https://www.scidb.cn/en/terms"}] [] yes {} ["DOI"] https://www.scidb.cn/en/faq#item8 [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} is covered by Elsevier. 2019-11-20 2021-09-03 +r3d100013178 GNPS: Global Natural Product Social Molecular Networking eng [] https://gnps.ucsd.edu/ [] ["miw023@ucsd.edu", "pdorrestein@ucsd.edu"] GNPS is a web-based mass spectrometry ecosystem that aims to be an open-access knowledge base for community-wide organization and sharing of raw, processed or identified tandem mass (MS/MS) spectrometry data. GNPS aids in identification and discovery throughout the entire life cycle of data; from initial data acquisition/analysis to post publication. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://ccms-ucsd.github.io/GNPSDocumentation/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["metabolomics", "spectra families"] [{"institutionName": "University of California", "institutionAdditionalName": ["UCSD"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ucsd.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California San Diego, Center for Computational Mass Spectrometry", "institutionAdditionalName": ["CCMS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ccms-internal.ucsd.edu/ProteoSAFe/index.jsp", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "UC San Diego Guidelines on Access and Management of Researach Data", "policyURL": "https://blink.ucsd.edu/research/policies-compliance-ethics/guidelines.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["unknown"] yes {"api": "ftp://massive.ucsd.edu/", "apiType": "FTP"} [] https://gnps.ucsd.edu/ProteoSAFe/static/gnps-splash.jsp [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-11-21 2019-11-28 +r3d100013179 CERIC Data Portal eng [{"additionalName": "CERIC Metadata Catalogue", "additionalNameLanguage": "eng"}, {"additionalName": "Central European Research Infrastructure Consortium Data Portal", "additionalNameLanguage": "eng"}] https://data.ceric-eric.eu [] ["emiliano.coghetto@ceric-eric.eu"] CERIC Data Portal allows users to consult and manage data related to experiments carried out at CERIC (Central European Research Infrastructure Consortium) partner facilities. Data made available includes scientific datasets collected during experiments, experiment proposals, samples used and publications if any. Users can search for data based on related metadata (both their own data and other peoples' public data). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://www.ceric-eric.eu/about-us/what-we-do/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["serviceProvider"] ["absorption", "diffraction", "emission", "hdf5", "imaging", "ion spectroscopy", "lithography", "nexus", "photoelectron emission", "photon", "reflection", "scattering"] [{"institutionName": "Central European Research Infrastructure Consortium ERIC", "institutionAdditionalName": ["CERIC", "CERIC-ERIC"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceric-eric.eu/", "institutionIdentifier": ["ISNI:0000 0004 7397 1342"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ceric-eric.eu"]}] [{"policyName": "Communication Guidelines \u2013 CERIC internal research projects", "policyURL": "https://www.ceric-eric.eu/wp-content/uploads/2018/10/Communication-_Guidelines_CERIC_internal_research_projects.pdf"}, {"policyName": "Information on Personal Dataprocessing", "policyURL": "https://www.ceric-eric.eu//wp-content/uploads/2018/07/Information_on_processing_of_personal_data_CERIC.pdf"}, {"policyName": "Privacy Policy", "policyURL": "https://www.ceric-eric.eu//wp-content/uploads/2018/07/COOKIE_POLICY_CERIC.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] {"api": "https://data.ceric-eric.eu/oai-pmh/oai2?", "apiType": "OAI-PMH"} [] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-11-21 2020-02-07 +r3d100013180 UK Government Web Archive eng [{"additionalName": "UKGWA", "additionalNameLanguage": "eng"}] https://www.nationalarchives.gov.uk/webarchive/ [] ["webmaster@nationalarchives.gov.uk"] The UK Government Web Archive captures, preserves, and makes accessible UK central government information published on the web. The web archive includes videos, tweets, images and websites dating from 1996 to present. eng ["institutional"] {"size": "three billion URLs", "updatedp": "2019-11-27"} 2003 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11103 Communication Science", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40903 Operating, Communication and Information Systems", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.nationalarchives.gov.uk/about/our-role/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["flickr", "social media", "twitter", "website", "youtube"] [{"institutionName": "The National Archives", "institutionAdditionalName": ["TNA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nationalarchives.gov.uk", "institutionIdentifier": ["GND:10080917-0"], "responsibilityStartDate": "2003", "responsibilityEndDate": "", "institutionContact": ["https://www.nationalarchives.gov.uk/contact-us/"]}] [{"policyName": "Our policies", "policyURL": "https://www.nationalarchives.gov.uk/about/our-role/plans-policies-performance-and-projects/our-policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.nationalarchives.gov.uk/legal/"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] closed [] ["unknown"] {} ["none"] https://www.nationalarchives.gov.uk/help-with-your-research/citing-records-national-archives/#section8 [] unknown unknown [] [] {"syndication": "https://www.nationalarchives.gov.uk/rss/", "syndicationType": "RSS"} 2019-11-25 2021-08-24 +r3d100013182 GIGA Metadata Database eng [{"additionalName": "GIGA Research Data", "additionalNameLanguage": "eng"}] https://www.giga-hamburg.de/en/publications/research-data [] ["jan.lueth@giga-hamburg.de"] The GIGA (German Institute of Global and Area Studies) researchers generate a large number of qualitative and quantitative research data. On this page you will find descriptions of this research data ("metadata") as well as information about the available access options. To facilitate its reuse, and to enhance research transparency, a large part of the GIGA research data is published in datorium, a repository hosted by the GESIS Leibniz Institute for the Social Sciences: https://www.re3data.org/repository/r3d100011062 Our objective is to offer free access to as much of our data as possible, to guarantee the possibility of its citation, and to secure its safe storage. Metadata of research data that cannot be published open access due to its sensitivity is also shown on this page. eng ["disciplinary", "institutional"] {"size": "15 records", "updatedp": "2019-11-29"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10602 Asian Studies", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "10604 Islamic Studies, Arabian Studies, Semitic Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.giga-hamburg.de/de/giga-mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["African studies", "Asian studies", "Latin American studies", "Middle Eastern studies", "accountability", "ares studies", "comparative area studies", "development", "global issues", "growth", "participation", "peace", "security"] [{"institutionName": "GIGA German Institute of Global and Area Studies", "institutionAdditionalName": ["Leibniz-Institut f\u00fcr Globale und Regionale Studien Hamburg", "formerly: Deutsches \u00dcbersee-Institut"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.giga-hamburg.de/en", "institutionIdentifier": ["VIAF:155138151"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@giga-hamburg.de"]}, {"institutionName": "German Federal Foreign Office", "institutionAdditionalName": ["Ausw\u00e4rtiges Amt"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.auswaertiges-amt.de/en", "institutionIdentifier": ["GND:2028884-0"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.auswaertiges-amt.de/en/aamt/zugastimaa/buergerservice"]}, {"institutionName": "Hamburg's Ministry of Science and Research", "institutionAdditionalName": ["BWFG", "Beh\u00f6rde f\u00fcr Wissenschaft, Forschung und Gleichstellung Hamburg"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.hamburg.de/bwfg/", "institutionIdentifier": ["GND:1077888910"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.hamburg.de/bwfg/kontakt/"]}] [{"policyName": "GIGA Open Access Guidelines", "policyURL": "https://www.giga-hamburg.de/en/giga-open-access-guidelines"}, {"policyName": "Research Data Policy of the GIGA German Institute of Global and Area Studies", "policyURL": "https://www.giga-hamburg.de/en/research-data-policy-of-the-giga"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.gesis.org/sharing/#!TermsOfUse"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.giga-hamburg.de/en/imprint"}] restricted [] ["unknown"] {} ["none"] ["none"] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-11-29 2019-12-04 +r3d100013187 Genomic Expression Archive eng [{"additionalName": "GEA", "additionalNameLanguage": "eng"}] https://www.ddbj.nig.ac.jp/gea/index-e.html ["FAIRsharing_doi:10.25504/FAIRsharing.hESBcy"] ["https://www.ddbj.nig.ac.jp/contact-e.html#to-ddbj"] Genomic Expression Archive (GEA) is a public database of functional genomics data such as gene expression, epigenetics and genotyping SNP array. Both microarray- and sequence-based data are accepted in the MAGE-TAB format in compliance with MIAME and MINSEQE guidelines, respectively. GEA issues accession numbers, E-GEAD-n to experiment and A-GEAD-n to array design. Data exchange between GEA and EBI ArrayExpress is planned. eng ["disciplinary"] {"size": "31 functional genomics experiments", "updatedp": "2019-12-19"} 2018 ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ddbj.nig.ac.jp/gea/about-e.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["DNA microarray", "SNP genotyping", "epigenetics", "functional genomics", "gene expression", "single-nucleotide polymorphism"] [{"institutionName": "International Nucleotide Sequence Database Collaboration", "institutionAdditionalName": ["INSDC"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.insdc.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Genetics", "institutionAdditionalName": ["NIG", "\u56fd\u7acb\u907a\u4f1d\u5b66\u7814\u7a76\u6240"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nig.ac.jp/nig/", "institutionIdentifier": ["ROR:02xg1m795"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webmaster@nig.ac.jp"]}] [{"policyName": "INSDC policy", "policyURL": "https://www.ddbj.nig.ac.jp/insdc-e.html#policy"}, {"policyName": "Nature Scientific Data - Data policies", "policyURL": "https://www.nature.com/sdata/policies/data-policies"}, {"policyName": "Usage Policies and Disclaimers for Website, Data and Services Provided from DDBJ", "policyURL": "https://www.ddbj.nig.ac.jp/policies-e.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ddbj.nig.ac.jp/policies-e.html#license"}] open [{"dataUploadLicenseName": "Submission of research data from human subjects", "dataUploadLicenseURL": "https://www.ddbj.nig.ac.jp/policies-e.html#human"}] [] {"api": "ftp://ftp.ddbj.nig.ac.jp/ddbj_database/gea", "apiType": "FTP"} ["other"] https://www.ddbj.nig.ac.jp/faq/en/ddbj-cited-article-e.html [] unknown yes [] [] {} GEA is a Scientific Data - Nature Recommended Data Repository. GEA and ArrayExpress will exchange public data in common MAGE-TAB format. DDBJ Center mirrors public ArrayExpress data to GEAs ftp site. Mutual data exchange between NCBI GEO and ArrayExpress is not realized so GEA data are not shared with GEO. ArrayExpress had been imported GEO data, however, this import was suspended. BioProject and BioSample registered during GEA submission are exchanged with NCBI/EBI in the framework of INSDC. CIBEX was expired and its data migrated to DDBJ's new expression archive. 2019-12-05 2021-05-20 +r3d100013188 Marine Data Archive eng [{"additionalName": "MDA", "additionalNameLanguage": "eng"}] http://marinedataarchive.org/ [] ["http://marinedataarchive.org/contact.php", "mda@vliz.be"] The Marine Data Archive (MDA) is an online repository specifically developed to independently archive data files in a fully documented manner. The MDA can serve individuals, consortia, working groups and institutes to manage data files and file versions for a specific context (project, report, analysis, monitoring campaign), as a personal or institutional archive or back-up system and as an open repository for data publication. eng ["disciplinary"] {"size": "1.455 files", "updatedp": "2019-12-16"} ["eng", "nld"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["expedition"] [{"institutionName": "Flanders Marine Institute", "institutionAdditionalName": ["VLIZ", "Vlaams Instituut voor de Zee"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.vliz.be/en/", "institutionIdentifier": ["ROR:0496vr396"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["info@vliz.be"]}] [{"policyName": "Data Policy Marine Data Archive (MDA) version 2.3", "policyURL": "http://marinedataarchive.org/mdadatapolicy.pdf"}, {"policyName": "Data policy", "policyURL": "http://www.vliz.be/en/data-policy"}, {"policyName": "Nature Scientific Data - Data policies", "policyURL": "https://www.nature.com/sdata/policies/data-policies"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://marinedataarchive.org/mdadatapolicy.pdf"}] restricted [{"dataUploadLicenseName": "Data Policy Marine Data Archive (MDA) version 2.3", "dataUploadLicenseURL": "http://marinedataarchive.org/mdadatapolicy.pdf"}] ["unknown"] yes {} ["DOI"] ["none"] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} MDA is a Scientific Data - Nature Recommended Data Repository. 2019-12-05 2019-12-18 +r3d100013189 Database of Religious History eng [{"additionalName": "DRH", "additionalNameLanguage": "eng"}] https://religiondatabase.org/ [] ["project.manager@religiondatabase.org"] The DRH is a quantitative and qualitative encyclopedia of religious history. It consists of a variety of entry types including religious group and religious place. Scholars contribute entries on their area of expertise by answering questions in standardised polls. Answers are initially coded in the binary format Yes/No or categorically, with comment boxes for qualitative comments, references and links. Experts are able to answer both Yes and No to the same question, enabling nuanced answers for specific circumstances. Media, such as photos, can also be attached to either individual questions or whole entries. The DRH captures scholarly disagreement, through fine-grained records and multiple temporally and spatially overlapping entries. Users can visualise changes in answers to questions over time and the extent of scholarly consensus or disagreement. eng ["disciplinary"] {"size": "268 entries; 136 experts, 40.682 expert answers", "updatedp": "2019-12-09"} ["eng", "fra", "jpn", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://religiondatabase.org/landing/about/about-the-drh [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["digital humanities", "history", "religion", "religious history"] [{"institutionName": "John Templeton Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.templeton.org/", "institutionIdentifier": ["ISNI:0000000405083431", "ROR:035tnyy05", "RRID:SCR_006092", "RRID:nlx_151555"], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["https://www.templeton.org/contact"]}, {"institutionName": "London School of Economics and Political Science", "institutionAdditionalName": ["LSE"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.lse.ac.uk/", "institutionIdentifier": ["ISNI:0000000107895319", "ROR:0090zs177", "RRID:SCR_000370", "RRID:nlx_158056"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Royal Society Te Ap\u0101rangi, Marsden Fund", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.royalsociety.org.nz/what-we-do/funds-and-opportunities/marsden", "institutionIdentifier": ["ISNI:0000000404740284", "ROR:04tajb587"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.royalsociety.org.nz/who-we-are/contact-us/"]}, {"institutionName": "Social Sciences and Humanities Research Council", "institutionAdditionalName": ["CRSH", "Conseil de recherches en sciences humaines", "SSHRC"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.sshrc-crsh.gc.ca/", "institutionIdentifier": ["ISNI:0000000121847647", "ROR:04j5jqy92"], "responsibilityStartDate": "2012", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia", "institutionAdditionalName": ["UBC"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca/", "institutionIdentifier": ["ISNI:0000000122889830", "ROR:03rmrcq20", "RRID:SCR_011614", "RRID:nlx_18099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://religiondatabase.org/landing/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://religiondatabase.org/landing/terms-of-use"}] restricted [] ["other"] no {} ["none"] https://religiondatabase.org/landing/faq [] unknown yes [] [] {} 2019-12-05 2019-12-11 +r3d100013190 Répertoire International des Sources Musicales (RISM) fra [{"additionalName": "International Inventory of Music Sources", "additionalNameLanguage": "eng"}, {"additionalName": "Internationales Quellenlexikon der Musik", "additionalNameLanguage": "deu"}, {"additionalName": "RISM", "additionalNameLanguage": "fra"}] https://OPAC.RISM.info [] ["contact@RISM.info"] The Répertoire International des Sources Musicales (RISM) is an international, non-profit organization with the aim of comprehensively documenting extant musical sources anywhere in the world. Cataloging musical sources is financed and carried out by various national and international institutions. Independent national working groups at libraries and archives in many countries worldwide catalog historical musical sources: music prints, music manuscripts, libretti, and theoretical writings about music. The results are edited and published by RISM. RISM documents what exists and where it is kept. RISM's database offers the most comprehensive documentation available for music manuscripts and printed music for the time between 1600 and 1800. It continues to grow through monthly updates and averages around 30,000 new records anually. This online publication is made possible through a partnership between the Bavarian State Library (Munich), the State Library of Berlin, and RISM. The RISM Zentralredaktion is a project of the Academy of Science and Literature, Mainz. More information can be found on the RISM website. eng ["disciplinary"] {"size": "1.178.742 musical sources", "updatedp": "2019-12-16"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://opac.rism.info/main-menu-/kachelmenu/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["music", "scores"] [{"institutionName": "Akademie der Wissenschaften und Literatur Mainz", "institutionAdditionalName": ["Academy of Sciences and Literature in Mainz"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.adwmainz.de/en/home.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.adwmainz.de/en/contact.html"]}, {"institutionName": "Bayerische Staatsbibliothek", "institutionAdditionalName": ["Bavarian State Library"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.bsb-muenchen.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bsb-muenchen.de/en/search-and-service/questions-and-answers/online-inquiry-service/"]}, {"institutionName": "RISM Digital Center", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://rism.digital", "institutionIdentifier": ["ROR:01kk1vy78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rism.digital/organization/contact.html"]}, {"institutionName": "RISM Zentralredaktion", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://rism.info", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rism.info/editorial-center.html"]}, {"institutionName": "Staatsbibliothek Berlin Preussischer Kulturbesitz", "institutionAdditionalName": ["State Library of Berlin"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://staatsbibliothek-berlin.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://staatsbibliothek-berlin.de/en/about-the-library/how-to-contact-us/"]}] [{"policyName": "Open Data, SPARQL, etc.", "policyURL": "https://opac.rism.info/main-menu-/kachelmenu/data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/3.0/"}] restricted [] ["unknown"] {"api": "https://opac.rism.info/sparql-endpoint", "apiType": "SPARQL"} [] [] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {} 2019-12-09 2021-03-01 +r3d100013193 Humanitarian Data Exchange eng [{"additionalName": "HDX", "additionalNameLanguage": "eng"}] https://data.humdata.org/ ["biodbcore-001446"] ["centrehumdata@un.org", "hdx@un.org", "https://centre.humdata.org/contact-us/"] The Humanitarian Data Exchange (HDX) is an open platform for sharing data across crises and organisations. Launched in July 2014, the goal of HDX is to make humanitarian data easy to find and use for analysis. HDX is managed by OCHA's Centre for Humanitarian Data, which is located in The Hague. OCHA is part of the United Nations Secretariat and is responsible for bringing together humanitarian actors to ensure a coherent response to emergencies. The HDX team includes OCHA staff and a number of consultants who are based in North America, Europe and Africa. eng ["disciplinary"] {"size": "16.891 datasets", "updatedp": "2019-12-12"} 2014-07 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://centre.humdata.org/what-we-do/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "asylum seekers", "baseline population", "damage assessments", "demographics", "geospatial data", "humanitarian aid", "indicators", "internally displaced person", "international relief", "refugees", "sustainable development", "transportation"] [{"institutionName": "United Nations Office for the Coordination of Humanitarian Affairs, Centre for Humanitarian Data", "institutionAdditionalName": ["OCHA", "centre for humdata"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://centre.humdata.org/", "institutionIdentifier": ["VIAF:121558581"], "responsibilityStartDate": "2014", "responsibilityEndDate": "", "institutionContact": ["https://centre.humdata.org/contact-us/", "https://www.unocha.org/about-us/contact-us"]}] [{"policyName": "Data Policy", "policyURL": "https://centre.humdata.org/data-policy/"}, {"policyName": "Humanitarian Data Exchange Quality Assurance Framework", "policyURL": "https://centre.humdata.org/wp-content/uploads/HDX_Quality_Assurance_Framework_Draft.pdf"}, {"policyName": "OCHA Data Responsibility Guidelines", "policyURL": "https://centre.humdata.org/wp-content/uploads/2019/03/OCHA-DR-Guidelines-working-draft-032019.pdf"}, {"policyName": "OCHA HDX Terms of Service", "policyURL": "https://data.humdata.org/about/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://data.humdata.org/about/license"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://data.humdata.org/about/license"}] restricted [{"dataUploadLicenseName": "Data licences", "dataUploadLicenseURL": "https://data.humdata.org/about/license"}] ["CKAN"] yes {"api": "https://data.humdata.org/documentation#body-faq-Accessing_HDX_by_API", "apiType": "REST"} ["none"] ["none"] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2019-12-11 2021-11-16 +r3d100013195 ZBW Digital Long-Term Archive eng [] https://www.zbw.eu/de/ [] ["https://www.zbw.eu/en/about-us/contact/contact-form/", "info@zbw.eu"] The ZBW Digital Long-Term Archive is a dark archive whose sole purpose is to guarantee the long term availability of the objects stored in it. The storage for the ZBW’s digital objects and their representation platforms is maintained by the ZBW division IT-Infrastructures and is not part of the tasks of the group Digital Preservation. The content that the ZBW provides is accessible via special representation platforms. The special representation platforms are: EconStor: an open access publication server for literature on business and economics. ZBW DIGITAL ARCHIVE: it contains born digital material from the domains of business and economics. The content of this archive is accessible in open access via EconBiz, the subject portal for business and economics of the ZBW. National and Alliance Licenses: the ZBW negotiates and curates licenses for electronic products on a national level. This is processed under the framework of the German Research Foundation as well as the Alliance of Science Associations, partly with third party funding, partly solely funded by the ZBW. A part of these electronic products is already hosted by the ZBW and counts among the items that are preserved in the digital archive. 20th Century Press Archive: a portal with access to archival material consisting of press clippings from newspapers covering the time period from the beginning of the 20th century to the year 1949. eng ["disciplinary"] {"size": "403.010 digital intellectual entities; 1.419.736 files", "updatedp": "2018-11-22"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.zbw.eu/en/about-us/key-activities/digital-preservation/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["economics"] [{"institutionName": "Deutsche Zentralbibliothek f\u00fcr Wirtschaftswissenschaften", "institutionAdditionalName": ["German National Library of Economics", "Leibniz Information Centre for Economics", "Leibniz-Informationszentrum Wirtschaft", "ZBW"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zbw.eu/en/", "institutionIdentifier": ["ROR:03a96gc12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Informationszentrum Technik und Naturwissenschaften und Universit\u00e4tsbibliothek Hannover", "institutionAdditionalName": ["German National Library of Science and Technology", "Leibniz Information Centre for Science and Technology University Library Hannover", "TIB"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.tib.eu/en/", "institutionIdentifier": ["ROR:04aj4c181"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2019/12/ZBW-Digital-Long-Term-Archive.pdf"}, {"policyName": "Nestor Seal assessment", "policyURL": "https://www.langzeitarchivierung.de/Webs/nestor/SharedDocs/Downloads/DE/Zertifizierung/pruefberichtZBW.pdf?__blob=publicationFile&v=1"}, {"policyName": "Preservation Policy of the three National German Libraries", "policyURL": "https://www.zbw.eu/en/about-us/key-activities/digital-preservation/preservation-policy-national-libraries/"}, {"policyName": "Preservation Policy: Guidelines for Digital Preservation at the ZBW", "policyURL": "https://www.zbw.eu/en/about-us/key-activities/digital-preservation/preservation-policy/"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://webopac.hwwa.de/digiview/docs/eigeneSache.cfm"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.econstor.eu/Nutzungsbedingungen?locale=en"}] restricted [{"dataUploadLicenseName": "EconStor Deposit Licence", "dataUploadLicenseURL": "https://www.zbw.eu/elektronische_angebote/docs/econstor_deposit_license.pdf"}, {"dataUploadLicenseName": "Licence Agreement", "dataUploadLicenseURL": "https://www.zbw.eu/fileadmin/pdf/nutzungsvereinbarung/ea-d-nutzungsvereinbarung-kuenftige-pub-zbw.pdf"}, {"dataUploadLicenseName": "Licence Agreement", "dataUploadLicenseURL": "https://www.zbw.eu/fileadmin/pdf/nutzungsvereinbarung/ea-e-nutzungsvereinbarung-kuenftige-pub-zbw.pdf"}] ["other"] yes {"api": "https://www.econstor.eu/dspace-oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes ["other", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-12-19 2021-10-05 +r3d100013198 National Data Archive: An Online Microdata Library eng [] http://www.microdata.gov.in/nada43/ [] ["adg.dsdd@mospi.gov.in", "http://microdata.gov.in/nada43/index.php/contact"] The National Data Archive has been disseminating microdata from surveys and censuses primarily under the Ministry of Statistics and Programme Implementation (MoSPI), Government of India. The archive is powered by the National Data Archive (NADA, ver. 4.3) software with DDI Metadata standard. It serves as a portal for researchers to browse, search, and download relevant datasets freely; even with related documentation (viz. survey methodology, sampling procedures, questionnaires, instructions, survey reports, classifications, code directories, etc). A few data files require the user to apply for approval to access with no charge. Currently, the archive holds more than 144 datasets of the National Sample Surveys (NSS), Annual Survey of Industries (ASI), and the Economic Census as available with the Ministry. However, efforts are being made to include metadata of surveys conducted by the State Governments and other government agencies. eng ["disciplinary", "institutional"] {"size": "144 datasets catalogued", "updatedp": "2020-01-07"} 2019 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://microdata.gov.in/nada43/index.php/home [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Annual Survey", "Economic Census", "Employment and unemployment", "Household consumption", "Industrial production", "Sample Survey", "Social consumption", "Statistical data"] [{"institutionName": "Government of India, Ministry of Statistics and Programme Implementation", "institutionAdditionalName": ["Government of India, MoSPI"], "institutionCountry": "IND", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.mospi.nic.in/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.mospi.nic.in/support-queries", "http://www.mospi.nic.in/telephone-directory?combine=&entity_type=All&first_cat=129&cat=137&cat2=All&search_key_word=&op=Go"]}] [{"policyName": "Guidelines for Statistical Data Dissemination (GSDD), February 2019", "policyURL": "http://www.microdata.gov.in/nada43/index.php/dissemination"}, {"policyName": "National Policy on Dissemination of Statistical data", "policyURL": "http://www.microdata.gov.in/nada43/index.php/dissemination"}, {"policyName": "Policy Guidelines for using materials from published NSS reports", "policyURL": "http://www.microdata.gov.in/nada43/index.php/dissemination"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "http://www.microdata.gov.in/nada43/index.php/catalog/central/about"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other", "registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "http://www.microdata.gov.in/nada43/index.php/dissemination"}] restricted [] ["other"] yes {} ["none"] ["none"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} The Archive follows NADA (ver. 4.3) with DDI. No Syndication and Citation guideline is enabled. Access to the datasets requires the user to apply for approval to access these datasets at a secure onsite facility. 2019-12-26 2020-05-18 +r3d100013199 Population Health Data Archive eng [{"additionalName": "PHDA", "additionalNameLanguage": "eng"}, {"additionalName": "\u4eba\u53e3\u5065\u5eb7\u79d1\u5b66\u6570\u636e\u4ed3\u50a8", "additionalNameLanguage": "zho"}] http://www.ncmi.cn/ ["FAIRsharing_doi:10.24404/FAIRsharing.xb3lbl"] ["http://www.ncmi.cn/phda/support.html?type=aboutus", "rkjkpt@126.com"] The National Population Health Data Center (NPHDC) is one of the 20 national science data center approved by the Ministry of Science and Technology and the Ministry of Finance. The Population Health Data Archive (PHDA) is developed by NPHDC relying on the Institute of Medical Information, Chinese Academy of Medical Sciences. PHDA mainly receives scientific data from science and technology projects supported by the national budget, and also collects data from other multiple sources such as medical and health institutions, research institutions and social individuals, which is oriented to the national big data strategy and the healthy China strategy. The data resources cover basic medicine, clinical medicine, public health, traditional Chinese medicine and pharmacy, pharmacy, population and reproduction. PHDA supports data collection, archiving, processing, storage, curation, verification, certification and release in the field of population health. Provide multiple types of data sharing and application services for different hierarchy users and help them find, access, interoperate and reuse the data in a safe and controlled environment. PHDA provides important support for promoting the open sharing of scientific data of population health and domestic and foreign cooperation. eng ["disciplinary"] {"size": "78.91TB", "updatedp": ""} ["zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20508 Pharmacy", "scheme": "DFG"}, {"name": "20522 Reproductive Medicine/Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.ncmi.cn/phda/support.html?type=aboutus [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Pharmacy", "basic Medicine", "clinical medicine", "genetics", "genomics", "population and reproduction", "proteomics", "public health", "scientific data", "traditional chinese medicine and pharmacy"] [{"institutionName": "Chinese Academy of Medical Sciences & Peking Union Medical College", "institutionAdditionalName": ["\u4e2d\u56fd\u533b\u5b66\u79d1\u5b66\u9662\u5317\u4eac\u534f\u548c\u533b\u5b66\u9662"], "institutionCountry": "CHN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://english.cams.cn/index.html", "institutionIdentifier": ["ROR:02drdmm93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["\u7535\u8bdd\uff1a010-65250541 \u90ae\u7bb1\uff1arkjkpt@126.com"]}] [{"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/07/20210709-national-population-health-data-center_CTS_certification_2020-2022.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.ncmi.cn/"}] restricted [] ["MySQL"] yes {} ["other"] ["ORCID"] no yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2019-12-30 2021-07-19 +r3d100013200 PRISM Dataverse eng [{"additionalName": "University of Calgary Data Repository", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/calgary [] ["digitize@ucalgary.ca"] PRISM Dataverse is the institutional data repository of the University of Calgary, which has its purpose in digital archiving and sharing of research data from researchers. PRISM Dataverse is a data repository hosted through Scholars Portal, a service of the Ontario Council of University Libraries and supported by University of Calgary's Libraries and Cultural Resources. PRISM Dataverse enables scholars to easily deposit data, create data-specific metadata for searchability and publish their datasets. eng ["institutional"] {"size": "9 dataverses; 95 datasets; 2.233 files", "updatedp": "2020-01-09"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libanswers.ucalgary.ca/faq/164924 [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Alberta", "UAV photogrammetry", "aurora", "auroral imaging", "digital heritage", "heritage at risk", "laser scanning", "mulitdisciplinary", "plebiscite Calgary Edmonton"] [{"institutionName": "Ontario Council of University Libraries", "institutionAdditionalName": ["CBUO", "Conseil des biblioth\u00e8ques universitaires de l'Ontario", "OCUL"], "institutionCountry": "CAN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://ocul.on.ca", "institutionIdentifier": ["ROR:028215596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scholars Portal Dataverse", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.scholarsportal.info/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dataverse@scholarsportal.info"]}, {"institutionName": "University of Calgary", "institutionAdditionalName": ["Universit\u00e9 de Calgary"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ucalgary.ca/", "institutionIdentifier": ["ROR:03yjb2x39", "RRID:SCR_011616", "RRID:nlx_97004"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "PRISM Dataverse Policies", "policyURL": "https://libanswers.ucalgary.ca/faq/199051"}, {"policyName": "Scholars Portal Dataverse Account Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "http://www.apache.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.8.6/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes no [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2020-01-03 2020-01-11 +r3d100013201 Reanalysis Tropopause Data Repository eng [] https://datapub.fz-juelich.de/slcs/tropopause ["biodbcore-001613"] ["https://datapub.fz-juelich.de/slcs/tropopause/index.html#contact", "l.hoffmann@fz-juelich.de"] This data repository provides access to tropopause parameters estimated from meteorological reanalyses. The tropopause data sets provided on this web site have been created using meteorological reanalyses distributed by the European Centre for Medium-Range Weather Forecasts (ECMWF), the National Aeronautics and Space Administration (NASA), the National Center for Atmospheric Research (NCAR), and the National Centers for Atmospheric Prediction (NCEP). Currently, the repository covers ERA-Interim, MERRA-2, and the NCEP/NCAR Reanalysis 1 for the time period from 2000 to 2018 and ERA5 from 2009 to 2018. The tropopause data files provide geopotential height, pressure, temperature, and water vapor volume mixing ratio for the WMO 1st and 2nd tropopause, the cold point, and the dynamical tropopause. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["atmospheric science", "climate science", "meteorological reanalyses", "tropopause"] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["FZJ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/DE/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "J\u00fclich Supercomputing Centre, Institute for Advanced Simulation", "institutionAdditionalName": ["JSC, IAS"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de/jsc", "institutionIdentifier": ["Wikidata:Q55342974"], "responsibilityStartDate": "2020-01-01", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["unknown"] no {} ["none"] https://datapub.fz-juelich.de/slcs/tropopause/index.html [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} Access to other research data sets created by team members of the Simulation Laboratory 'Climate Science' at the Jülich Supercomputing Centre, Forschungszentrum Jülich, in Germany and collaboration partners: https://datapub.fz-juelich.de/slcs/ 2020-01-06 2021-11-17 +r3d100013202 Primate Cell Type Database eng [{"additionalName": "PCTD", "additionalNameLanguage": "eng"}] https://primatedatabase.com/ ["FAIRsharing_doi:10.25504/FAIRsharing.7IQk4a"] ["primate.database@gmail.com"] Primate Cell Type Database, a publicly available web-accessible archive of intracellular patch clamp recordings and highly detailed three-dimensional digital reconstructions of neuronal morphology. eng ["disciplinary"] {"size": "249 patch clamp recordings", "updatedp": "2020-01-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["3-d reconstructions", "NHP", "RNA", "biocytin injections", "electrophysiology", "healthy", "human", "molecular", "morphology", "neuron", "non-human primate", "transcriptomics"] [{"institutionName": "Primate Database Team", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://primatedatabase.com/ourTeam.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Western University, Robarts Reasearch Institute", "institutionAdditionalName": ["Western, Robart"], "institutionCountry": "CAN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.robarts.ca/", "institutionIdentifier": ["VIAF:144173364"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://primatedatabase.com/ourTeam.html"]}] [{"policyName": "Copyright & Citation Policy", "policyURL": "https://primatedatabase.com/citation.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://primatedatabase.com/citation.html"}] restricted [] ["unknown"] {} ["none"] https://primatedatabase.com/citation.html [] unknown unknown [] [] {} GitHub: https://github.com/eskuebler/eskuebler.github.io 2020-01-07 2021-11-09 +r3d100013204 University of Victoria Dataverse eng [{"additionalName": "UVic Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/uvic [] ["skhair@uvic.ca"] The University of Victoria Dataverse is a research data repository for our faculty, students, and staff. Files are held in a secure environment on Canadian servers. Researchers can choose to make content available to the public, to specific individuals, or to keep it locked. eng ["institutional"] {"size": "5 dataverses; 53 datasets; 418 files", "updatedp": "2021-03-12"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.uvic.ca/researchdata/share/dataverse [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Victoria", "institutionAdditionalName": ["UVic"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uvic.ca/", "institutionIdentifier": ["ROR:04s5mat29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Victoria, Libraries", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uvic.ca/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Deposit Guidelines for UVic Dataverse", "policyURL": "https://libguides.uvic.ca/ld.php?content_id=35154390"}, {"policyName": "UVic Dataverse User Guide", "policyURL": "https://libguides.uvic.ca/researchdata/share/dataverse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [] restricted [] ["DataVerse"] yes {"api": "https://dataverse.scholarsportal.info/guides/en/4.8.6/api/index.html", "apiType": "other"} ["DOI"] https://libguides.uvic.ca/researchdata/share/citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2020-01-09 2021-03-16 +r3d100013207 Litterbase eng [{"additionalName": "Online Portal for Marine Litter", "additionalNameLanguage": "eng"}] https://litterbase.awi.de/ ["biodbcore-001663"] ["litterbase@awi.de"] LITTERBASE summarises results from 2,046 scientific studies in understandable global maps and figures and opens scientific knowledge on marine litter to the public. In LITTERBASE, we compile information from 2,046 scientific publications on marine litter in a comprehensive data base. This forms the basis of continuously updated maps and figures for policy makers, authorities, scientists, media and the general public on the global amount, distribution and composition of marine litter and its impacts on aquatic life. The portal conveys a broad, fact-based understanding of this environmental problem. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["aquatic debris", "biological impacts", "biota interaction", "colonization", "entanglement", "global distribution", "litter distributions", "marine anthropogenic litter", "marine debris", "marine litter", "micro-litter", "microplastics", "plastic ingestion", "plastic pollution", "rafting", "sea floor", "sea surface"] [{"institutionName": "Alfred-Wegener-Institut, Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung", "institutionAdditionalName": ["awi"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.awi.de/en/home/", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AWI Sustainability Guideline", "policyURL": "https://www.awi.de/en/about-us/organisation/sustainability/awi-sustainability-guideline.html"}, {"policyName": "Help Menu", "policyURL": "https://maps.awi.de/awimaps/catalog/help/"}, {"policyName": "Online Portal of Marine Litter", "policyURL": "https://litterbase.awi.de/index_detail"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://litterbase.awi.de/interaction"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://litterbase.awi.de/interaction"}] closed [] ["other"] {} [] [] yes unknown [] [] {} 2020-01-15 2021-11-17 +r3d100013208 depositar eng [{"additionalName": "\u7814\u7a76\u8cc7\u6599\u5bc4\u5b58\u6240", "additionalNameLanguage": "zho"}] https://data.depositar.io/en/ ["Wikidata:Q98433008"] ["data.contact@depositar.io"] depositar — taking the term from the Portuguese/Spanish verb for to deposit — is an online repository for research data. The site is built by the researchers for the researchers. You are free to deposit, discover, and reuse datasets on depositar for all your research purposes. eng ["other"] {"size": "998 datasets", "updatedp": "2021-09-15"} 2018-10-23 ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.depositar.io/en/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Academia Sinica, Institute of Information Science, Taiwan", "institutionAdditionalName": ["\u4e2d\u592e\u7814\u7a76\u9662 \u8cc7\u8a0a\u79d1\u5b78\u7814\u7a76\u6240"], "institutionCountry": "TWN", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iis.sinica.edu.tw/en/index.html", "institutionIdentifier": ["ROR:00z83z196"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data.contact@depositar.io"]}, {"institutionName": "Academia Sinica, Research Center for Information Technology Innovation, Taiwan", "institutionAdditionalName": ["\u4e2d\u592e\u7814\u7a76\u9662 \u8cc7\u8a0a\u79d1\u6280\u5275\u65b0\u7814\u7a76\u4e2d\u5fc3"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.citi.sinica.edu.tw/en/", "institutionIdentifier": ["ROR:000zgvm20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data.contact@depositar.io"]}, {"institutionName": "Ministry of Science and Technology", "institutionAdditionalName": ["MOST", "\u79d1\u6280\u90e8"], "institutionCountry": "TWN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.most.gov.tw/?l=en", "institutionIdentifier": ["ROR:02kv4zf79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy Policy", "policyURL": "https://data.depositar.io/en/privacy"}, {"policyName": "Terms of Use", "policyURL": "https://data.depositar.io/en/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/index.html"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://data.gov.tw/en/license"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opendefinition.org/licenses/gfdl/"}] restricted [{"dataUploadLicenseName": "Norms of Use", "dataUploadLicenseURL": "https://data.depositar.io/en/terms_of_use"}] ["CKAN"] yes {"api": "https://docs.ckan.org/en/2.7/api/", "apiType": "REST"} ["none"] https://docs.depositar.io/en/stable/user-guide.html#extended-feature-citing-a-dataset [] no no [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {"syndication": "https://data.depositar.io/feeds/dataset.atom", "syndicationType": "ATOM"} The depositar is covered by Google Dataset Search. The depositar has been carried out in Academia Sinica, Taiwan. It has been supported by the Institute of Information Science and the Research Center for Information Technology Innovation (both at Academia Sinica), and in part by research grants from the Ministry of Science and Technology of Taiwan. The project started from and remains as a collaboration with the Center for GIS at the Research Center for Humanities and Social Sciences, Academia Sinica. 2020-01-15 2021-09-15 +r3d100013209 ELRA Catalogue of Language Resources eng [{"additionalName": "ELRA Catalogue", "additionalNameLanguage": "eng"}, {"additionalName": "European Language Resources Association Catalogue of Language Resources", "additionalNameLanguage": "eng"}] http://catalog.elra.info [] ["contact@elda.org", "http://catalog.elra.info/en-us/accounts/contact"] An increasing number of Language Resources (LT) in the various fields of Human Language Technology (HLT) are distributed on behalf of ELRA via its operational body ELDA, thanks to the contribution of various players of the HLT community. Our aim is to provide Language Resources, by means of this repository, so as to prevent researchers and developers from investing efforts to rebuild resources which already exist as well as help them identify and access those resources. eng ["disciplinary", "institutional"] {"size": "1.140 language resources", "updatedp": "2020-01-17"} 1995-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://www.elra.info/en/about/association/elra-statutes [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["corpora", "human language technology", "language resource", "lexicon", "linguistic data", "speech", "text"] [{"institutionName": "European Language Resources Association", "institutionAdditionalName": ["ELRA"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.elra.info/en/", "institutionIdentifier": ["VIAF:48869642"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Evaluations and Language resources Distribution Agency", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.elda.org/en/", "institutionIdentifier": ["ROR:05d4jgp54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.elra.info/media/filer_public/2015/04/13/enduser_150325.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.elra.info/media/filer_public/2015/04/13/evaluation_150325.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.elra.info/media/filer_public/2016/09/02/var_160830.pdf"}] restricted [{"dataUploadLicenseName": "Promote Resources Info", "dataUploadLicenseURL": "http://catalog.elra.info/en-us/promote-resources-info/"}] ["unknown"] yes {"api": "http://catalog.elra.info/api/catalogue/", "apiType": "OAI-PMH"} ["other"] ["none"] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The catalogue can be viewed as an OLAC repository: http://www.language-archives.org/archive/catalogue.elra.info Other resources identified, but not available through ELRA, can be viewed in the Universal Catalogue: http://universal.elra.info/ 2020-01-16 2020-01-22 +r3d100013210 Sprachatlas Baden-Württemberg deu [{"additionalName": "Die Dialekte Baden-W\u00fcrttembergs", "additionalNameLanguage": "deu"}, {"additionalName": "Sprachatlas BW", "additionalNameLanguage": "deu"}, {"additionalName": "Sprechender Sprachatlas", "additionalNameLanguage": "deu"}] https://escience-center.uni-tuebingen.de/escience/sprachatlas/#8/48.676/8.992 [] ["info@escience.uni-tuebingen.de"] The speaking language atlas gives a multimedia impression of the dialects of the state Baden-Württemberg in Germany. The maps of the Speaking Language Atlas of Baden-Württemberg are based on two databases: Südwestdeutschen Sprachatlas (SSA) and the Sprachatlas von Nord Baden-Württemberg (SNBW). The dialect recordings that form the basis for the maps were carried out at the SSA between 1974 and 1986, but at the SNBW between 2009 and 2012. For the southern part, this means that the maps may present a state of affairs that is no longer valid today. eng ["disciplinary"] {"size": "57 recordings", "updatedp": "2020-02-03"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://uni-tuebingen.de/fakultaeten/wirtschafts-und-sozialwissenschaftliche-fakultaet/faecher/fachbereich-sozialwissenschaften/empirische-kulturwissenschaft/forschung/ta-sprache/sprechender-sprachatlas/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["German language", "consonantism", "dialectology", "grammar", "vocalism", "word geography"] [{"institutionName": "F\u00f6rderverein Schw\u00e4bischer Dialekt e.V.", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.schwaebischer-dialekt.de/", "institutionIdentifier": ["VIAF:139376607"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministerium f\u00fcr Wissenschaft, Forschung und Kunst Baden-W\u00fcrttemberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://mwk.baden-wuerttemberg.de/de/startseite/", "institutionIdentifier": ["ROR:01hc18p32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of T\u00fcbingen, eScience-Center", "institutionAdditionalName": ["Eberhard Karls University T\u00fcbingen, eScience-Center", "Eberhard Karls Universit\u00e4t T\u00fcbingen , eScience-Center"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://uni-tuebingen.de/en/research/research-infrastructure/escience-center/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t T\u00fcbingen, T\u00fcbinger Arbeitsstelle Sprache in S\u00fcdwestdeutschland", "institutionAdditionalName": ["TA Sprache"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://uni-tuebingen.de/en/faculties/faculty-of-economics-and-social-sciences/subjects/department-of-social-sciences/historical-and-cultural-anthropology/research/ta-sprache/", "institutionIdentifier": ["VIAF:135765160"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Infos zum Sprachatlas", "policyURL": "https://uni-tuebingen.de/fakultaeten/wirtschafts-und-sozialwissenschaftliche-fakultaet/faecher/fachbereich-sozialwissenschaften/empirische-kulturwissenschaft/forschung/ta-sprache/sprechender-sprachatlas/"}, {"policyName": "Open Access policy for the Eberhard Karls University of T\u00fcbingen", "policyURL": "https://uni-tuebingen.de/index.php?eID=tx_securedownloads&p=58819&u=0&g=0&t=1581004800&hash=9cfb521c2a34880f79245077fa8dcfb9f326862d&file=/fileadmin/Uni_Tuebingen/Einrichtungen/Universitaetsbibliothek/Dokumente/Forschen_Publizieren/oa_policy_der_uni_eng.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://uni-tuebingen.de/en/meta/impressum/"}] closed [] ["unknown"] no {} ["none"] ["none"] yes unknown [] [] {} 2020-01-20 2020-02-08 +r3d100013212 Repositorio de datos de investigación de la Universidad del Rosario spa [{"additionalName": "Research data repository of Universidad del Rosario", "additionalNameLanguage": "eng"}] https://research-data.urosario.edu.co/ [] ["researchdata@urosario.edu.co"] The Universidad del Rosario Research data repository is an institutional iniciative launched in 2019 to preserve, provide access and promote the use of data resulting from Universidad del Rosario research projects. The Repository aims to consolidate an online, collaborative working space and data-sharing platform to support Universidad del Rosario researchers and their collaborators, and to ensure that research data is available to the community, in order to support further research and contribute to the democratization of knowledge. The Research data repository is the heart of an institutional strategy that seeks to ensure the generation of Findable, Accessible, Interoperable and Reusable (FAIR) data, with the aim of increasing its impact and visibility. This strategy follows the international philosophy of making research data “as open as possible and as closed as necessary”, in order to foster the expansion, valuation, acceleration and reusability of scientific research, but at the same time, safeguard the privacy of the subjects. The platform storage, preserves and facilitates the management of research data from all disciplines, generated by the researchers of all the schools and faculties of the University, that work together to ensure research with the highest standards of quality and scientific integrity, encouraging innovation for the benefit of society. eng ["institutional"] {"size": "14 dataverses; 24 datasets; 283 files", "updatedp": "2021-09-24"} 2019-09-30 ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://research-data.urosario.edu.co/about.xhtml [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Colombia", "multidisciplinary"] [{"institutionName": "Universidad del Rosario", "institutionAdditionalName": [], "institutionCountry": "COL", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.urosario.edu.co/", "institutionIdentifier": ["ROR:0108mwc04"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica Institucional para la gesti\u00f3n de datos de investigaci\u00f3n", "policyURL": "https://repository.urosario.edu.co/handle/10336/19340"}, {"policyName": "T\u00e9rminos y condiciones", "policyURL": "https://www.urosario.edu.co/Terminos-y-condiciones-1/"}, {"policyName": "User Guide", "policyURL": "http://guides.dataverse.org/en/4.9.4/user/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-01-22 2021-09-24 +r3d100013213 KORD Repository eng [] [] ["kord@kisti.re.kr"] >>>!!!<<< This repository is no longer available, pleas use DataON http://doi.org/10.17616/R31NJMV3 >>>!!!<<< Domestic and foreign research data information in one place It is a national research data portal. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "kor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Korea Institute of Science and Technology Information", "institutionAdditionalName": ["KISTI"], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://kisti.re.kr/", "institutionIdentifier": ["ROR:01k4yrm29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["unknown"] {} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [] {} 2020-01-23 2020-11-17 +r3d100013215 eData: the STFC Research Data Repository eng [] https://edata.stfc.ac.uk/ [] ["edata@stfc.ac.uk"] eData is an institutional repository where STFC staff can deposit data and software that underpin journal articles and other published research. eng ["institutional"] {"size": "706 datasets", "updatedp": "2020-01-31"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://stfc.ukri.org/about-us/our-purpose-and-priorities/mission/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Disordered Materials Database", "INS database", "ISIS", "TOSCA", "TXFA", "biotechnology", "electromagnetic pulse", "energy", "geometry spectrometer", "information technology", "laser-plasma", "materials development", "nuclear physics", "synthetic data"] [{"institutionName": "Science and Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://stfc.ukri.org/", "institutionIdentifier": ["ROR:057g20z61", "RRID:SCR_016713"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["enquiries@stfc.ac.uk"]}] [{"policyName": "STFC scientific data policy", "policyURL": "https://stfc.ukri.org/files/stfc-scientific-data-policy/"}, {"policyName": "Summary of Policies", "policyURL": "https://edata.stfc.ac.uk/page/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://stfc.ukri.org/about-us/copyright/"}] restricted [] ["DSpace"] no {} ["DOI", "PURL", "hdl"] https://edata.stfc.ac.uk/page/policy ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://edata.stfc.ac.uk/feed/atom_1.0/site", "syndicationType": "ATOM"} eData: the STFC Research Data Repository is covered by Clarivate Data Citation Index. 2020-01-23 2020-02-05 +r3d100013216 RDPCIDAT eng [{"additionalName": "Research Data Repository - Research Department Plasmas with Complex Interactions", "additionalNameLanguage": "eng"}] https://rdpcidat.rub.de/ [] ["https://rdpcidat.rub.de/contact"] The research data repository of the RUB Research Department Plasmas with Complex Interactions provides access to the data associated with the scientific publications of the PIs. eng ["disciplinary"] {"size": "4 datasets", "updatedp": "2020-01-30"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "30801 Optics, Quantum Optics, Atoms, Molecules, Plasmas", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://rdpcidat.rub.de/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["FAIR", "HiPIMS", "high power impulse magnetron sputtering", "plasma chemical processes", "plasma for materials / surfaces", "plasma in liquids", "plasma modeling and simulation", "plasma modeling and simulation", "plasma technology", "pulsed plasma"] [{"institutionName": "Ruhr University Bochum", "institutionAdditionalName": ["RUB", "Ruhr-Universit\u00e4t Bochum"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ruhr-uni-bochum.de/en", "institutionIdentifier": ["ROR:04tsk2644"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ruhr University Bochum, Research Department Plasmas with Complex Interactions", "institutionAdditionalName": ["RDPCI"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://rdpci.rub.de/", "institutionIdentifier": ["VIAF:317091929"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1.0/"}] restricted [] ["other"] {"api": "https://docs.getdkan.com/en/latest/apis/index.html", "apiType": "REST"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {} INPTDAT Platform from Greifswald adopted and adjusted to the needs of the CRC1316 and also the research department plasma @RUB to store publication related data. 2020-01-30 2020-02-08 +r3d100013217 ESRF Portal eng [{"additionalName": "European Synchrotron Radiation Facility Data Repository", "additionalNameLanguage": "eng"}] https://data.esrf.fr [] ["https://www.esrf.eu/FeedbackForm"] Explore, search, and download data and metadata from your experiments and from public Open Data. The ESRF data repository is intended to store and archive data from photon science experiments done at the ESRF and to store digital material like documents and scientific results which need a DOI and long term preservation. Data are made public after an embargo period of maximum 3 years. eng ["disciplinary", "institutional"] {"size": "12 open data collections; 589 closed data collections", "updatedp": "2020-02-03"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20530 Radiology and Nuclear Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "31601 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["extremely brilliant source", "nanobeams", "particle accelerator", "x-ray"] [{"institutionName": "European Synchrotron Radiation Facility", "institutionAdditionalName": ["ESRF"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.esrf.eu/", "institutionIdentifier": ["ROR:02550n020"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer and privacy policy", "policyURL": "https://www.esrf.eu/home/about/disclaimer-and-privacy-policy.html"}, {"policyName": "ESRF Data Policy", "policyURL": "https://www.esrf.eu/datapolicy"}, {"policyName": "The ESRF Data Policy", "policyURL": "http://www.esrf.eu/files/live/sites/www/files/about/organisation/ESRF%20data%20policy-web.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["unknown"] {} ["DOI"] ["none"] unknown yes [] [] {} European Synchrotron Radiation Facility is covered by Clarivate Data Citation Index. 2020-01-31 2021-08-19 +r3d100013218 California Digital Library eng [{"additionalName": "CDL", "additionalNameLanguage": "eng"}] https://cdlib.org/ ["ROR:03yrm5c26", "RRID:SCR_006481", "RRID:nlx_156041"] ["cdl@www.cdlib.org", "https://cdlib.org/contact/"] California Digital Library (CDL) seeks to be a catalyst for deeply collaborative solutions providing a rich, intuitive and seamless environment for publishing, sharing and preserving our scholars’ increasingly diverse outputs, as well as for acquiring and accessing information critical to the University of California’s scholarly enterprise. University of California Curation Center (UC3) is the digital curation program within CDL. The mission of UC3 is to provide transformative preservation, curation, and research data management systems, services, and initiatives that sustain and promote open scholarship. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://cdlib.org/about/mission-vision-and-values/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of California", "institutionAdditionalName": ["UC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.universityofcalifornia.edu/", "institutionIdentifier": ["ROR:00pjdza24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and Guidelines", "policyURL": "https://cdlib.org/about/policies-and-guidelines/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://cdlib.org/about/policies-and-guidelines/"}] restricted [] ["unknown"] yes {} ["ARK", "DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} includes: Calisphere, eScholarship, Merritt, Online Archive of California, Archive of the California Government Domain and End of Term Archive 2020-02-03 2020-02-16 +r3d100013219 European Vitis Database eng [{"additionalName": "Genetic resources of grapes", "additionalNameLanguage": "eng"}] http://www.eu-vitis.de/index.php [] ["http://www.eu-vitis.de/miscel/defaultmisc.php?retval=8000"] The European Vitis Database is being meintained since 2007 by the Julius-Kühn-Institut to ensure the long-term and efficient use of grape genetic resources. eng ["disciplinary"] {"size": "", "updatedp": ""} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["agronomical characteristics", "breeding", "genotypes", "morphological characteristics"] [{"institutionName": "European Cooperative Programme for Plant Genetic Resources", "institutionAdditionalName": ["ECPGR"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ecpgr.cgiar.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Julius K\u00fchn-Institut", "institutionAdditionalName": ["Bundesforschungsinstitut f\u00fcr Kulturpflanzen", "Federal Research Centre for Cultivated Plants"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/", "institutionIdentifier": ["ROR:022d5qt08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Julius K\u00fchn-Institut. Institut f\u00fcr Rebenz\u00fcchtung", "institutionAdditionalName": ["Institute for Grapevine Breeding Geilweilerhof"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/en/zr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Public access", "policyURL": "http://www.eu-vitis.de/index.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "http://www.eu-vitis.de/index.php"}] restricted [] ["MySQL"] {} [] http://www.eu-vitis.de/index.php [] unknown yes [] [] {} 2020-02-04 2020-03-27 +r3d100013220 Deutsche Genbank Reben deu [{"additionalName": "DGR", "additionalNameLanguage": "deu"}] http://www.deutsche-genbank-reben.julius-kuehn.de/ [] ["zr@julius-kuehn.de"] In order to ensure the long-term and efficient use of grape genetic resources in Germany and to guarantee their availability, the Deutsche Genbank Reben was founded in 2010 as a gene bank network. The Deutsche Genbank Reben consists of vine conservation facilities and is thus an essential instrument for securing vine genetic resources in Germany. eng ["disciplinary"] {"size": "", "updatedp": ""} 2010 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] http://www.deutsche-genbank-reben.julius-kuehn.de/index.php?r=info%2Fziele [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["ecological farming", "on farm", "sustainable agriculture"] [{"institutionName": "Bayerische Landesanstalt f\u00fcr Weinbau und Gartenbau", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lwg.bayern.de/", "institutionIdentifier": ["ROR:035wevv89"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dienstleistungszentrum L\u00e4ndlicher Raum Rheinpfalz - Neustadt a. d. W.", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dlr-rheinpfalz.rlp.de/Internet/global/inetcntr.nsf/dlr_web_full.xsp?src=56329FW757&p1=53I22390XV&p3=W725ON7213&p4=FR58GWW0GQ", "institutionIdentifier": ["ROR:00yzwtk60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Office for Food and Agriculture", "institutionAdditionalName": ["BLE", "Bundesanstalt f\u00fcr Landwirtschaft und Ern\u00e4hrung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ble.de/EN/00_Home/homepage_node.html", "institutionIdentifier": ["ROR:01526pb12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Plant Variety Office", "institutionAdditionalName": ["Bundessortenamt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bundessortenamt.de/bsa/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Geisenheim University", "institutionAdditionalName": ["Hochschule Geisenheim"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hs-geisenheim.de/en/", "institutionIdentifier": ["ROR:05myv7q56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Julius K\u00fchn-Institut Bundesforschungsinstitut f\u00fcr Kulturpflanzen, Institut f\u00fcr Rebenz\u00fcchtung Geilweilerhof", "institutionAdditionalName": ["Federal Research Centre for Cultivated Plants, Institute for Grapevine Breeding", "JKI ZR"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/en/zr/", "institutionIdentifier": ["VIAF:136141776"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatliche Lehr- und Versuchsanstalt f\u00fcr Wein- und Obstbau Weinsberg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lvwo.landwirtschaft-bw.de/pb/,Lde/Startseite", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Staatliches Weinbauinstitut Freiburg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wbi.landwirtschaft-bw.de/pb/,Lde/Startseite", "institutionIdentifier": ["ROR:04s3f1024"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.deutsche-genbank-reben.julius-kuehn.de/index.php?r=info%2Fimpress"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.deutsche-genbank-reben.julius-kuehn.de/index.php?r=info%2Fzugangsbed"}] restricted [] [] {} [] [] unknown unknown [] [] {} 2020-02-04 2020-04-15 +r3d100013221 Vitis International Variety Catalogue eng [{"additionalName": "VIVC", "additionalNameLanguage": "eng"}] http://www.vivc.de/ [] ["erika.maul@julius-kuehn.de", "http://www.vivc.de/index.php?r=site%2Fcontactvivc"] In 1984 the establishment of the Vitis International Variety Catalogue (VIVC) took place at the Institute for Grapevine Breeding Geilweilerhof. The concept of a database on grapevine genetic resources was supported by IBPGR (today called Bioversity) and the International Organisation of Vine and Wine (OIV). Today VIVC is an encyclopedic database with around 23000 cultivars, breeding lines and Vitis species, existing in grapevine repositories and/or described in bibliography. It is an information source for breeders, researchers, curators of germplasm repositories and interested wine enthusiasts. Besides cultivar specific passport data, SSR-marker data, comprehensive bibliography and photos are to be found. eng ["disciplinary"] {"size": "", "updatedp": ""} 1996 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["breeding", "cultivars"] [{"institutionName": "Bioversity International", "institutionAdditionalName": ["formerly known as International Plant Genetic Resources Institute (IPGRI)"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bioversityinternational.org/", "institutionIdentifier": ["ROR:01a15g348"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Food and Agriculture", "institutionAdditionalName": ["Bundesministerium f\u00fcr Ern\u00e4hrung und Landwirtschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmel.de/EN/Home/home_node.html;jsessionid=4C8C0CC856E74F4853BFA18533C8FC60.internet2832", "institutionIdentifier": ["ROR:04jw21793"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Organisation of Vine and Wine", "institutionAdditionalName": ["Die internationale Organisation f\u00fcr Rebe und Wein", "OIV"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.oiv.int/de/die-internationale-organisation-fur-rebe-und-wein", "institutionIdentifier": ["VAIF:151888581"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Julius K\u00fchn-Institut", "institutionAdditionalName": ["Bundesforschungsinstitut f\u00fcr Kulturpflanzen", "Federal Research Centre for Cultivated Plants"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/", "institutionIdentifier": ["ROR:022d5qt08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Julius K\u00fchn-Institut, Institut f\u00fcr Rebenz\u00fcchtung", "institutionAdditionalName": ["Institute for Grapevine Breeding Geilweilerhof"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.julius-kuehn.de/en/zr/", "institutionIdentifier": ["VIAF:159085919"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Leitlinien zum Umgang mit Forschungsdaten im JKI", "policyURL": "https://www.julius-kuehn.de/ib/open-access-und-open-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.julius-kuehn.de/en/legal-notice/"}] [] [] {} [] http://www.vivc.de/ [] unknown unknown [] [] {} 2020-02-04 2021-08-24 +r3d100013223 Brainlife eng [{"additionalName": "brain life", "additionalNameLanguage": "eng"}] https://brainlife.io/ ["FAIRsharing_doi:10.25504/FAIRsharing.by3p8p"] ["brlife@iu.edu"] >>>!!!<<< duplicate >>>!!!<<< see https://www.re3data.org/repository/r3d100012397 eng ["disciplinary"] {"size": "354 datasets; 161 apps", "updatedp": "2020-02-10"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://brainlife.io/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "field maps", "neuroimaging", "tractrography", "white matter"] [{"institutionName": "Indiana University", "institutionAdditionalName": ["IU"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.iu.edu/", "institutionIdentifier": ["ROR:01kg8sb98", "RRID:SCR_011295", "RRID:nlx_24462"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University, Department of Psychological and Brain Sciences, Pestilli Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://brainlife.io/plab", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://brainlife.io/docs/aup/"}, {"policyName": "Privacy Policy", "policyURL": "https://brainlife.io/docs/privacy/"}, {"policyName": "brainlife Documentation", "policyURL": "https://brainlife.io/docs/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://brainlife.io/docs/privacy/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://wiki.creativecommons.org/wiki/public_domain"}] restricted [{"dataUploadLicenseName": "Privacy Policy", "dataUploadLicenseURL": "https://brainlife.io/docs/privacy/"}] [] yes {"api": "https://brainlife.io/docs/technical/api/", "apiType": "REST"} ["DOI"] ["none"] yes yes [] [] {} is covered by Clarivate Data Citation Index. Publication records at brainlife.io/pubs are preserved for at least ten years since latest use using the Scholarly Data Archive: https://kb.iu.edu/d/aiyi 2020-02-05 2021-09-01 +r3d100013224 Broad GDAC Firehose eng [{"additionalName": "Genome Data Analysis Center", "additionalNameLanguage": "eng"}] http://gdac.broadinstitute.org/ [] ["gdac@broadinstitute.org"] Born of the desire to systematize analyses from The Cancer Genome Atlas pilot and scale their execution to the dozens of remaining diseases to be studied, GDAC Firehose now sits atop terabytes of analysis-ready TCGA data and reliably executes thousands of pipelines per month. More information: https://broadinstitute.atlassian.net/wiki/spaces/GDAC/ eng [] {"size": "55 terabytes", "updatedp": "2020-04-24"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://broadinstitute.atlassian.net/wiki/spaces/GDAC/pages/844334013/Mission+Statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["cancer genomics data", "human cancer prevention"] [{"institutionName": "Broad Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.broadinstitute.org/", "institutionIdentifier": ["ROR:05a0ya142"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Cancer Institute, Center for Cancer Genomics, The Cancer Genome Atlas Program Office", "institutionAdditionalName": ["CCG", "NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/about-nci/organization/ccg/about/contact#4", "institutionIdentifier": ["tcga@mail.nih.gov"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Policy", "policyURL": "https://broadinstitute.atlassian.net/wiki/spaces/GDAC/pages/844333156/Data+Usage+Policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.cancer.gov/about-nci/organization/ccg/research/structural-genomics/tcga/using-tcga/citing-tcga"}] closed [] [] {"api": "http://firebrowse.org/api-docs/", "apiType": "REST"} ["DOI"] https://www.cancer.gov/about-nci/organization/ccg/research/structural-genomics/tcga/using-tcga/citing-tcga [] no yes [] [] {} Broad GDAC Firehose is covered by Clarivate Data Citation Index 2020-02-05 2020-04-29 +r3d100013225 Digital Repository at the University of Maryland eng [{"additionalName": "DRUM", "additionalNameLanguage": "eng"}] https://drum.lib.umd.edu/ [] ["drum-help@umd.edu"] The Digital Repository at the University of Maryland (DRUM) collects, preserves, and provides public access to the scholarly output of the university. Faculty and researchers can upload research products for rapid dissemination, global visibility and impact, and long-term preservation. eng [] {"size": "65 datasets", "updatedp": "2020-02-14"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://drum.lib.umd.edu/page/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["flowering", "granulometry", "long-term", "multidisciplinary", "phenology"] [{"institutionName": "University of Maryland Libraries", "institutionAdditionalName": ["UMD Libraries"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.lib.umd.edu/", "institutionIdentifier": ["VIAF:142203377"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "About DRUM", "policyURL": "https://drum.lib.umd.edu/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://github.com/umd-lib/drum/blob/drum-develop/DRUM-LICENSE.md"}, {"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://drum.lib.umd.edu/page/about"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://drum.lib.umd.edu/page/about"}] restricted [{"dataUploadLicenseName": "Author Rights", "dataUploadLicenseURL": "http://lib.guides.umd.edu/authorrights"}, {"dataUploadLicenseName": "DRUM Distribution License", "dataUploadLicenseURL": "https://drum.lib.umd.edu/page/license-text"}] ["DSpace"] {} ["DOI", "hdl"] https://www.lib.umd.edu/data/citation ["none"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://drum.lib.umd.edu/feed/atom_1.0/site", "syndicationType": "ATOM"} DRUM is covered by Clarivate Data Citation Index. DRUM is indexed by Google and Google Scholar. 2020-02-05 2020-05-06 +r3d100013226 The Earthbound Planet Search eng [{"additionalName": "EBPS", "additionalNameLanguage": "eng"}] https://ebps.carnegiescience.edu/ [] ["https://ebps.carnegiescience.edu/about/contact"] Finding planets orbiting nearby stars has been a holy grail in astronomy for more than 400 years. We began working on this problem 30 years ago, at a time when there were no known extrasolar planets. In late 1995 we began routinely finding planets around the nearest stars. Since then we have found several hundred planets, including the first sub-saturn mass planet, the first neptune mass planet, the first terrestrial mass planet, the first multiple planet system, and the first transiting planet. eng ["disciplinary"] {"size": "2 datasets", "updatedp": "2020-04-27"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://carnegiescience.edu/projects/earthbound-planet-search-program [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["Anglo-Australian Telescope", "Keck Observatory", "Lick Observatory", "Magellan Telescope", "exoplanets", "extrasolar planets"] [{"institutionName": "Carnegie Institution for Science, Department of Terrestrial Magnetism", "institutionAdditionalName": ["Carnegie Science, DTM"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dtm.carnegiescience.edu/", "institutionIdentifier": ["ROR:04hawj979"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://ebps.carnegiescience.edu/news/2017-02-13-planet-hunting-finds-candidates"}] closed [] [] {} [] [] yes unknown [] [] {} is covered by Clarivate Data Citation Index. 2020-02-05 2021-06-15 +r3d100013227 Hakai EIMS eng [{"additionalName": "Hakai Ecological Information Management System", "additionalNameLanguage": "eng"}] https://data.hakai.org/ [] ["data@hakai.org"] The Hakai Ecological Information Management System (Hakai EIMS) securely stores and shares research information associated with Hakai Beach Institute. The Hakai Institute is a scientific research institution that advances long-term research at remote locations on the coastal margin of British Columbia, Canada. eng ["institutional"] {"size": "113 datasets", "updatedp": "2020-04-29"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.hakai.org/hakai-eis-overview [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["LiDAR", "coastal watershed", "deep time", "nearshore habitats", "ocean acidification", "ocean food webs", "selmon", "sensor network", "shellfish"] [{"institutionName": "Hakai Institute", "institutionAdditionalName": ["Tula Foundation, Hakai Institute"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hakai.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://data.hakai.org/data-packages"}] open [] ["other"] yes {"api": "http://hakaiinstitute.github.io/hakai-api/", "apiType": "REST"} ["DOI"] [] yes unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://hecate.hakai.org/geonetwork/srv/eng/rss.search?sortBy=changeDate&georss=simplepoint", "syndicationType": "RSS"} Hakai EIMS is covered by Clarivate Data Citation Index. 2020-02-06 2020-05-02 +r3d100013228 immuneACCESS eng [{"additionalName": "immune ACCESS", "additionalNameLanguage": "eng"}] https://clients.adaptivebiotech.com/immuneaccess [] ["privacy@adaptivebiotech.com"] The world’s largest collection of TCR and BCR sequences. Easily incorporate millions of sequences worth of public data into your next papers and projects using immunoSEQ Analyzer. Construct your own projects, draw your own conclusions, and freely publish new discoveries. eng ["disciplinary"] {"size": "9.641 human samples; 900 mouse samples; 828.351.986 nucleotide sequences", "updatedp": "2020-06-29"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20518 Rheumatology, Clinical Immunology, Allergology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://clients.adaptivebiotech.com/immuneaccess [{"name": "Archived data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["BMT", "BMT / Stem Cell Transplant", "HIV", "Immunocompetence", "MRD", "MS", "RA", "T1D", "TIL", "adoptive T Cell therapy", "autoimmune disorders", "cancer", "cancer immunotherapy", "dermatology", "gastrointestinal", "infectious disease", "organ transplant", "response to Therapeutic Agent", "vaccine efficacy"] [{"institutionName": "Adaptive Biotechnologies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.adaptivebiotech.com/", "institutionIdentifier": ["ROR:01gbt6a54", "RRID:SCR_014709"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://clients.adaptivebiotech.com/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://clients.adaptivebiotech.com/terms-of-use"}] restricted [] [] no {"api": "https://analyzer.adaptivebiotech.com/api/", "apiType": "REST"} [] [] yes unknown [] [] {} immuneACCESS is covered by Clarivate Data Citation Index 2020-02-06 2021-06-15 +r3d100013230 Million Song Dataset eng [{"additionalName": "MSD", "additionalNameLanguage": "eng"}] http://millionsongdataset.com/ [] ["contact@echonest.com"] The Million Song Dataset is a freely-available collection of audio features and metadata for a million contemporary popular music tracks. The core of the dataset is the feature analysis and metadata for one million songs, provided by The Echo Nest. The dataset does not include any audio, only the derived features. Note, however, that sample audio can be fetched from services like 7digital, using code we provide. eng ["disciplinary"] {"size": "300 GB", "updatedp": "2020-05-18"} 2011-02-08 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://millionsongdataset.com/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["The Beatles", "US Pop", "contemporary music", "music information retrieval", "popular music"] [{"institutionName": "LabROSA", "institutionAdditionalName": ["Laboratory for the Recognition and Organization of Speech and Audio"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://labrosa.ee.columbia.edu/", "institutionIdentifier": [], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "2007", "responsibilityEndDate": "2011", "institutionContact": []}, {"institutionName": "The Echo Nest", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://the.echonest.com/", "institutionIdentifier": ["Wikidata:Q7731487"], "responsibilityStartDate": "2011", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Getting the dataset", "policyURL": "http://millionsongdataset.com/pages/getting-dataset/"}, {"policyName": "Tutorial", "policyURL": "http://millionsongdataset.com/pages/tutorial/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://millionsongdataset.com/faq/#what-are-licensing-terms"}] restricted [] [] {"api": "http://static.echonest.com/enspex/", "apiType": "other"} [] http://millionsongdataset.com/pages/contact-us/ [] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Million song dataset is covered by Clarivate Data Citation Index 2020-02-10 2021-08-25 +r3d100013232 CMCC Data Portal eng [] https://dataportal.cmcc.it/home [] ["emanuela.mergola@cmcc.it", "info@cmcc.it"] The OPA Division deals with the development of models and methods for interdisciplinary research on marine operational forecasting, on the interactions between coastal areas and the open ocean, on the development of services and applications for all maritime economy sectors, including transport, security and management of coastal areas and marine resources, in the context of climate change adaptation problems. eng ["disciplinary"] {"size": "116 collections", "updatedp": "2021-01-12"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://dataportal.cmcc.it/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["climate change", "coastal areas", "marine resources"] [{"institutionName": "CMCC Foundation", "institutionAdditionalName": ["Centro Euro-Mediterraneo sui Cambiamenti Climatici"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cmcc.it/", "institutionIdentifier": ["ROR:01tf11a61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.cmcc.it/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.cmcc.it/terms-and-conditions"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} Ocean Predictions and Applications (OPA) is covered by Clarivate Data Citation Index 2020-02-11 2021-01-15 +r3d100013233 Pitt Quantum Repository eng [{"additionalName": "PQR", "additionalNameLanguage": "eng"}] http://pqr.pitt.edu/ [] ["http://pqr.pitt.edu/contact/", "pqr@pitt.edu"] PQR is an online database of molecular properties predicted from quantum mechanics with integrated capabilities for molecular visualization and data sharing. ased on the number of molecules, PQR is currently the largest open database of molecular quantum calculations. PQR features interactive high-quality rendering of molecular structures and properties on computers, tablets, and cell phones and allows to efficiently share data via digital object identifiers (DOI) and scannable QR barcodes. eng ["disciplinary"] {"size": "106.066 molecules", "updatedp": "2020-07-01"} 2015-06-23 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] http://pqr.pitt.edu/news/2015-06-23-announcement [{"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["MOPAC program package", "PM6 semiempirical quantum chemical model", "quantum mechanics"] [{"institutionName": "Camille and Henry Dreyfus Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dreyfus.org/", "institutionIdentifier": ["ROR:019p8h045"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pittsburgh, Department of Chemistry", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.chem.pitt.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pittsburgh, Dietrich School of Arts & Sciences", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.as.pitt.edu/", "institutionIdentifier": ["VIAF:5110147425861045040005"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/summary/"}] closed [] ["other"] no {"api": "http://pqr.pitt.edu/api", "apiType": "other"} ["DOI"] http://pqr.pitt.edu/news/2015-07-01-open-data [] no unknown [] [] {} PQR is covered by Clarivate Data Citation Index. 2020-02-12 2020-08-20 +r3d100013235 RTU research data repository eng [{"additionalName": "ORTUS", "additionalNameLanguage": "eng"}] https://ortus.rtu.lv/science/en/datamodule/search [] ["info@rtu.lv"] Institutional research data repository of Riga Technical University (RTU). The aim is to collect and store scientific research data and other relevant information in all fields of knowledge of RTU, enabling free, easy and convenient access to it. eng ["institutional"] {"size": "275 datasets", "updatedp": "2020-02-14"} ["eng", "lav"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.rtu.lv/en/science/publications/rtu-scientific-publication-database [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Riga Technical University", "institutionAdditionalName": ["RTU", "R\u012bgas Tehnisk\u0101 Universit\u0101te"], "institutionCountry": "LVA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rtu.lv/en", "institutionIdentifier": ["ROR:00twb6c09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright", "policyURL": "https://ortus.rtu.lv/science/en/copyright"}, {"policyName": "Riga Technical University Open Access Policy", "policyURL": "https://files.rtu.lv/public/science/RTU_OA_Policy_en_1.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["unknown"] no {} ["DOI"] ["none"] yes unknown [] [] {} 2020-02-14 2020-05-12 +r3d100013236 Social Science Japan Data Archive eng [{"additionalName": "SSJ Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "SSJDA", "additionalNameLanguage": "eng"}] https://csrda.iss.u-tokyo.ac.jp/en/ssjda/about/ [] ["https://csrda.iss.u-tokyo.ac.jp/en/center/contact/", "ssjda@iss.u-tokyo.ac.jp"] The Social Science Japan Data Archive (SSJDA) collects, maintains, and provides access to the academic community, a vast archive of social science data (quantitative data obtained from social surveys) for secondary analyses. eng ["disciplinary"] {"size": "1409 datasets", "updatedp": "2020-05-07"} 1998-04 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://csrda.iss.u-tokyo.ac.jp/en/ssjda/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Japanese Life Course Panel Surveys (JLPS)", "empirical research", "quantitative data", "secondary analysis", "social survey"] [{"institutionName": "University of Tokyo, Institute of Social Science", "institutionAdditionalName": ["ISS"], "institutionCountry": "JPN", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.iss.u-tokyo.ac.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Tokyo, Institute of Social Science, Center for Social Research and Data Archives", "institutionAdditionalName": ["CSRDA", "\u6771\u4eac\u5927\u5b66\u793e\u4f1a\u79d1\u5b66\u7814\u7a76\u6240\u9644\u5c5e\u793e\u4f1a\u8abf\u67fb\u30fb\u30c7\u30fc\u30bf\u30a2\u30fc\u30ab\u30a4\u30d6\u7814\u7a76\u30bb\u30f3\u30bf\u30fc"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://csrda.iss.u-tokyo.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://csrda.iss.u-tokyo.ac.jp/en/center/contact/"]}] [{"policyName": "Conditions for Use", "policyURL": "https://csrda.iss.u-tokyo.ac.jp/en/access/condition/"}, {"policyName": "Data Usage Application Procedures", "policyURL": "https://csrda.iss.u-tokyo.ac.jp/en/access/flow/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://csrda.iss.u-tokyo.ac.jp/en/access/condition/"}] restricted [{"dataUploadLicenseName": "How to Deposit Your Data", "dataUploadLicenseURL": "https://csrda.iss.u-tokyo.ac.jp/en/depo/how/"}] ["Nesstar", "other"] {} ["DOI"] https://csrda.iss.u-tokyo.ac.jp/en/access/condition/#agreement [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}] {} List of institutions depositing their research data in the archive: https://csrda.iss.u-tokyo.ac.jp/en/centeracknowledgement/ SSJDA is a Japanese hub institution of ICPSR. SSJDA is a member of the Networks of Asian Social Science Data Archives (NASSDA). 2020-02-16 2021-09-03 +r3d100013237 ICTS SOCIB Data Repository eng [{"additionalName": "Balearic Islands Coastal Observing and Forecasting System Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "ICTS SOCIB Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Repositori de Dades del Sistema d'Observaci\u00f3 i Predicci\u00f3 Costaner de les Illes Balears", "additionalNameLanguage": "cat"}, {"additionalName": "Repositorio de Datos del Sistema de Observaci\u00f3n y Predicci\u00f3n Costero de las Islas Baleares", "additionalNameLanguage": "spa"}] https://www.socib.es/data/ [] ["info@socib.es"] The Balearic Islands Coastal Observing and Forecasting System (ICTS SOCIB) is a multi-platform distributed and integrated system that provides streams of oceanographic data products, and modelling services. It supports operational oceanography in a Spanish, European, and international framework and contributes to the needs of marine and coastal research in a global change context. ICTS SOCIB coordinates the deployment and data management of a wide range of equipment and models from eight facilities. It also manages data from external international institutions and collaborates with international aggregators for the dissemination of ocean data. eng ["institutional"] {"size": "170 products", "updatedp": "2021-04-15"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://socib.es/?seccion=dataCenter [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["SOCIB", "coastal research", "marine research"] [{"institutionName": "Govern de les Illes Balears", "institutionAdditionalName": ["CAIB", "Govern Balear", "Government of the Balearic Islands"], "institutionCountry": "ESP", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.caib.es/govern/index.do?lang=ca", "institutionIdentifier": ["ROR:04qjbkj27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Science and Innovation", "institutionAdditionalName": ["MICINN", "Ministerio de Ciencia e Innovaci\u00f3n"], "institutionCountry": "ESP", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.ciencia.gob.es/portal/site/MICINN/", "institutionIdentifier": ["VIAF:169291644"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Spanish National Research Council", "institutionAdditionalName": ["CSIC", "Consejo Superior de Investigaciones Cient\u00edficas"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csic.es/en", "institutionIdentifier": ["ROR:02gfc7t72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access policy", "policyURL": "https://socib.es/?seccion=dataCenter&facility=accessPolicy"}, {"policyName": "Legal notice", "policyURL": "https://apps.socib.es/data-catalog/#legal-notice"}, {"policyName": "Marine Strategy Framework Directive spatial reference datasets", "policyURL": "https://water.europa.eu/marine/data-maps-and-tools/msfd-reporting-information-products/msfd-spatial-reference-datasets"}, {"policyName": "Product User Manual (PUM)", "policyURL": "http://apps.socib.es/data-catalog/PUM_SOCIB-data-catalog.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.socib.eu/?seccion=dataCenter&facility=accessPolicy"}] closed [] [] yes {"api": "https://thredds.socib.es/thredds/catalog.html", "apiType": "NetCDF"} ["DOI"] https://www.socib.eu/?seccion=dataCenter&facility=accessPolicy [] unknown yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {} SOCIB Data Products Catalog is covered by Clarivate Data Citation Index. 2020-02-17 2021-04-15 +r3d100013238 Bioconductor eng [{"additionalName": "Open Source Software For Bioinformatics", "additionalNameLanguage": "eng"}] https://www.bioconductor.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.81ettx", "OMICS_01759", "RRID:SCR_006442", "RRID:nif-0000-10445"] ["https://support.bioconductor.org/"] Bioconductor provides tools for the analysis and comprehension of high-throughput genomic data. Bioconductor uses the R statistical programming language, and is open source and open development. It has two releases each year, and an active user community. Bioconductor is also available as an AMI (Amazon Machine Image) and a series of Docker images. eng ["disciplinary"] {"size": "1.905 software packages; 961 annotation data packages; 392 experiment data packages; 27 workflow packages", "updatedp": "2020-05-13"} 2001 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.bioconductor.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["DNA microarray", "SNP", "flow", "research software", "sequence"] [{"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:040gcmg81", "RRID:SCR_011403", "RRID:nlx_inv_1005082"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Human Genome Research Institute Home", "institutionAdditionalName": ["NHGRI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.genome.gov/", "institutionIdentifier": ["OMICS_01554", "ROR:00baak391", "RRID:SCR_003205", "RRID:SCR_006475", "RRID:SCR_011416", "RRID:nlx_143900", "RRID:nlx_inv_1005098"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Roswell Park Cancer Institute", "institutionAdditionalName": ["RPCI", "Roswell Park Cancer Center"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.roswellpark.org/", "institutionIdentifier": ["ROR:0499dwk57", "RRID:SCR_004471", "RRID:nlx_143749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Package Submission", "policyURL": "http://bioconductor.org/developers/package-submission/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://bioconductor.org/about/"}] open [] [] yes {"api": "https://support.bioconductor.org/info/api/", "apiType": "other"} [] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Mirrors: https://www.bioconductor.org/about/mirrors/ bioconductor is covered by Clarivate Data Citation Index. 2020-02-19 2021-06-15 +r3d100013239 University of Prince Edward Island Data (Beta) eng [] https://data.upei.ca/ [] ["https://data.upei.ca/contact"] Built on the Islandora digital repository framework, the UPEI hosted Published and Archived Data (data.upei.ca) service provides researchers with a place to securely publish or archive their research datasets. eng ["institutional"] {"size": "29 records", "updatedp": "2020-04-02"} 2015-05 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.upei.ca/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Prince Edward Island", "institutionAdditionalName": ["UPEI"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://home.upei.ca", "institutionIdentifier": ["ROR:02xh9x144"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Prince Edward Island, IT Systems and Services", "institutionAdditionalName": ["UPEI, ITSS"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.upei.ca/itss", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Prince Edward Island, Robertson Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.upei.ca/", "institutionIdentifier": ["VIAF:144174555"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Access & Dissemination of Research Output", "policyURL": "https://files.upei.ca/research/upei_open_access_policy.pdf"}, {"policyName": "Terms & Conditions", "policyURL": "https://data.upei.ca/terms-conditions"}, {"policyName": "Tri-Agency Open Access Policy on Publications", "policyURL": "http://www.science.gc.ca/eic/site/063.nsf/eng/h_F6765465.html?OpenDocument"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [{"dataUploadLicenseName": "Terms of Deposit", "dataUploadLicenseURL": "https://data.upei.ca/terms-deposit"}] ["other"] yes {} ["DOI"] http://www.force11.org/datacitation ["none"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} University of Prince Edward Island Data (Beta) is covered by Clarivate Data Citation Index. 2020-02-19 2020-05-12 +r3d100013240 UTM-CSIC Data Centre eng [{"additionalName": "Centro de Datos de la Unidad de Tecnolog\u00eda Marina", "additionalNameLanguage": "spa"}, {"additionalName": "Marine Technology Unit Data Centre", "additionalNameLanguage": "eng"}] http://data.utm.csic.es [] ["data@utm.csic.es"] The UTM Data Centre is responsible for managing spatial data acquired during oceanographic cruises on board CSIC research vessels (RV Sarmiento de Gamboa, RV García del Cid) and RV Hespérides. The aim is, on the one hand, to disseminate which data exist and where, how and when they have been acquired. And on the other hand, to provide access to as much of the interoperable data as possible, following the FAIR principles, so that they can be used and reused. For this purpose, the UTM has a Spatial Data Infrastructure at a national level that consists of several services: Oceanographic Cruise and Data Catalogue Including metadata from more than 600 cruises carried out since 1991, with links to documentation associated to the cruise, navigation maps and datasets Geoportal Geospatial data mapping interface Underway Plot & QC Visualization, Quality Control and conversion to standard format of meteorological data and temperature and salinity of surface water At an international level, the UTM is a National Oceanographic Data Centre (NODC) of the Distributed European Marine Data Infrastructure SeaDataNet, to which the UTM provides metadata published in the Cruise Summary Report Catalog and in the data catalog Common Data Index Catalog, as well as public data to be shared. eng ["disciplinary"] {"size": "700 cruises; 661 datasets", "updatedp": "2021-10-25"} ["eng", "spa"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.utm.csic.es/en/mision-y-Objetivos [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multibeam", "oceanography", "side scan sonar"] [{"institutionName": "Marine Technology Unit", "institutionAdditionalName": ["UTM-CSIC", "Unidad de Tecnolog\u00eda Marina"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.utm.csic.es/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Spanish National Research Council", "institutionAdditionalName": ["CSIC", "Consejo Superior de Investigaciones Cient\u00edficas"], "institutionCountry": "ESP", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.csic.es/en", "institutionIdentifier": ["ROR:02gfc7t72", "RRID:SCR_011534", "RRID:nlx_156803"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy", "policyURL": "http://data.utm.csic.es/portal/#data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.copyright.gov/help/faq/faq-definitions.html"}] restricted [] ["other", "other", "other"] {"api": "http://data.utm.csic.es/geonetwork/doc/api/", "apiType": "REST"} ["DOI", "URN"] [] no yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://data.utm.csic.es/geonetwork/srv/eng/rss.search?sortBy=changeDate&georss=simplepoint", "syndicationType": "RSS"} is covered by Clarivate Data Citation Index. 2020-02-19 2021-10-25 +r3d100013241 York Research Database eng [{"additionalName": "YRD", "additionalNameLanguage": "eng"}] https://pure.york.ac.uk/portal/ [] ["pure-support@york.ac.uk"] Welcome to the York Research Database, where you can find all our research staff, projects, publications and organisational units, and explore the connections between them all. The university of York is a member of the Russell Group of research-intensive universities. eng ["institutional"] {"size": "383 datasets", "updatedp": "2020-05-18"} 2013 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://pure.york.ac.uk/portal/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of York", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.york.ac.uk/", "institutionIdentifier": ["ROR:04m01e293"], "responsibilityStartDate": "2013", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal statements", "policyURL": "http://www.york.ac.uk/about/legal-statements/"}, {"policyName": "Research Data Management Policy", "policyURL": "https://www.york.ac.uk/about/departments/support-and-admin/information-services/information-policy/index/research-data-management-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.york.ac.uk/about/legal-statements/"}] restricted [{"dataUploadLicenseName": "Process for transferring research data to Research Data York", "dataUploadLicenseURL": "https://www.york.ac.uk/library/info-for/researchers/data/research-data-york/transferring-data/"}] ["other"] no {} ["DOI"] https://www.york.ac.uk/library/info-for/researchers/data/sharing/#tab-5 ["none"] yes unknown [] [] {"syndication": "https://www.york.ac.uk/news-and-events/news-feeds/", "syndicationType": "RSS"} York Research Database is covered by Clarivate Data Citation Index. 2020-02-19 2021-06-15 +r3d100013242 Repositorio Institucional Universidad de Antioquia spa [] http://bibliotecadigital.udea.edu.co/ [] ["comunicacionessistemadebibliotecas@udea.edu.co"] Institutional Repository of the University of Antioquia coordinated by the Libraries System. Here you can consult and download full text documents of the scientific, academic and cultural production of our university community. eng ["institutional"] {"size": "", "updatedp": ""} 2008-02-16 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad de Antioquia", "institutionAdditionalName": ["UdeA", "University of Antioquia"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.udea.edu.co/", "institutionIdentifier": ["ROR:03bp5hc83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad de Antioquia, Sistema de Bibliotecas", "institutionAdditionalName": [], "institutionCountry": "COL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.udea.edu.co/wps/portal/udea/web/inicio/sistema-bibliotecas", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acuerdo superior 451 : 24 de abril de 2018. Por el cual se establece la Pol\u00edtica de Acceso Abierto de Producci\u00f3n Acad\u00e9mica de la Universidad de Antioquia", "policyURL": "http://bibliotecadigital.udea.edu.co/handle/10495/9725"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] ["DSpace"] {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-02-25 2020-05-18 +r3d100013243 Smithsonian Open Access eng [] https://www.si.edu/openaccess [] ["https://www.si.edu/contacts", "openaccess@si.edu"] Welcome to Smithsonian Open Access, where you can download, share, and reuse millions of the Smithsonian’s images—right now, without asking. With new platforms and tools, you have easier access to nearly 3 million 2D and 3D digital items from our collections—with many more to come. This includes images and data from across the Smithsonian’s 19 museums, nine research centers, libraries, archives, and the National Zoo. eng ["disciplinary"] {"size": "nearly 3 million 2D and 3D digital items", "updatedp": "2020-03-04"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.si.edu/openaccess/values [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Smithsonian Institution", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.si.edu/", "institutionIdentifier": ["ROR:01pp8nd67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.si.edu/termsofuse"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.gov/fls/fl102.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.si.edu/openaccess/faq"}] closed [] [] {"api": "https://edan.si.edu/openaccess/apidocs/", "apiType": "REST"} [] https://www.si.edu/openaccess/faq [] unknown unknown [] [] {} 2020-02-27 2020-05-20 +r3d100013248 Migrant Integration Policy Index eng [{"additionalName": "MIPEX 2015", "additionalNameLanguage": "eng"}] http://www.mipex.eu/ [] ["http://www.mipex.eu/contact", "mipex2015@cidob.org"] The Migrant Integration Policy Index (MIPEX) is a unique tool that measures policies to integrate migrants in all EU Member States, Australia, Canada, Iceland, Japan, South Korea, New Zealand, Norway, Switzerland, Turkey and the USA. 167 policy indicators have been developed to create a rich, multi-dimensional picture of migrants’ opportunities to participate in society. The index is a useful tool to evaluate and compare what governments are doing to promote the integration of migrants in all the countries analysed. eng ["disciplinary"] {"size": "38 countries; 167 indications; 8 policy areas", "updatedp": "2020-03-03"} 2015 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11003 Social Psychology, Industrial and Organisational Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11303 Public Law", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.mipex.eu/what-is-mipex [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["access to nationality", "anti-discrimination", "demography", "family reunion", "labour market mobility", "migration", "permanent residence", "political participation"] [{"institutionName": "CIDOB", "institutionAdditionalName": ["Barcelona Centre for International Affairs", "Centre d'Estudis i Documentaci\u00f3 Internacionals a Barcelona"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cidob.org/en", "institutionIdentifier": ["ROR:05w7a1h78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consumers, Health, Agriculture and Food Executive Agency", "institutionAdditionalName": ["CHAFEA"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/chafea", "institutionIdentifier": ["ROR:02578qw11"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Directorate-General for Health and Food Safety", "institutionAdditionalName": ["DG SANTE"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ec.europa.eu/dgs/health_food-safety/index_en.htm", "institutionIdentifier": ["ROR:0399w1j22"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Organization for Migration", "institutionAdditionalName": ["IOM"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.iom.int/", "institutionIdentifier": ["ROR:010qg4v35", "ROR:01j7ed328"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Migration Policy Group", "institutionAdditionalName": ["MPG"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.migpolgroup.com/", "institutionIdentifier": ["VIAF:147527023"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.mipex.eu/frequently-asked-questions"}] closed [] [] no {} ["none"] http://www.mipex.eu/what-is-mipex ["none"] yes yes [] [] {"syndication": "http://www.mipex.eu/methodology#/rss", "syndicationType": "RSS"} MIPEX Partners: http://www.mipex.eu/who-produces-mipex#/mipex-partners 2020-03-01 2020-05-20 +r3d100013257 Historical Data Centre Saxony-Anhalt eng [{"additionalName": "Historisches Datenzentrum Sachsen-Anhalt", "additionalNameLanguage": "deu"}] https://www.geschichte.uni-halle.de/struktur/hist-data/daten/ [] ["hinfo@geschichte.uni-halle.de"] The Historical Data Centre Saxony-Anhalt was founded in 2008. Its main tasks are the computer-aided provision, processing and evaluation of historical research data, the development of theoretically consolidated normative data and vocabularies as well as the further development of methods in the context of digital humanities, research data management and quality assurance. The "Historical Data Centre Saxony-Anhalt" sees itself as a central institution for the data service of historical data in the federal state of Saxony-Anhalt and is thus part of a nationally and internationally linked infrastructure for long-term data storage and use. The Centre primarily acquires individual-specific microdata for the analysis of life courses, employment biographies and biographies (primarily quantitative, but also qualitative data), which offer a broad interdisciplinary and international analytical framework and meet clearly defined methodological and technical requirements. The studies are processed, archived and - in compliance with data protection and copyright conditions - made available to the scientifically interested public in accordance with internationally recognized standards. The degree of preparation depends on the type and quality of the study and on demand. Reference studies and studies in high demand are comprehensively documented - often in cooperation with primary researchers or experts - and summarized in data collections. The Historical Data Centre supports researchers in meeting the high demands of research data management. This includes the advisory support of the entire life cycle of data, starting with data production, documentation, analysis, evaluation, publication, long-term archiving and finally the subsequent use of data. In cooperation with other infrastructure facilities of the state of Saxony-Anhalt as well as national and international, interdisciplinary data repositories, the Data Centre provides tools and infrastructures for the publication and long-term archiving of research data. Together with the University and State Library of Saxony-Anhalt, the Data Centre operates its own data repository as well as special workstations for the digitisation and analysis of data. The Historical Data Centre aims to be a contact point for very different users of historical sources. We collect data relating to historical persons, events and historical territorial units. eng ["disciplinary"] {"size": "", "updatedp": ""} 2008 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "10204 History of Science", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11304 Criminal Law and Law of Criminal Procedure", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.geschichte.uni-halle.de/struktur/hist-data/datenmanagement/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["BOLSA", "biographies", "controlled vocabularies", "crime History", "genealogy", "geodata", "historical maps", "interviews", "local chronicles", "occupational classification", "oral history", "serial sources", "shape files", "transcriptions"] [{"institutionName": "Martin-Luther-Universit\u00e4t Halle-Wittenberg, Institut f\u00fcr Geschichte", "institutionAdditionalName": ["HistData Sachsen-Anhalt", "Historical Data Centre Saxony-Anhalt"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geschichte.uni-halle.de/struktur/hist-data/", "institutionIdentifier": [], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["katrin.moeller@geschichte.uni-halle.de"]}] [{"policyName": "Leitlinien Open Access Repositorium Sachsen-Anhalt", "policyURL": "https://opendata.uni-halle.de/Leitlinien.pdf"}, {"policyName": "Workflow Datenmanagement", "policyURL": "https://www.geschichte.uni-halle.de/struktur/hist-data/datenmanagement/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copyright.com/"}] restricted [] [] yes {} ["DOI"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Data access in part via : Share_it https://www.re3data.org/repository/r3d100013014 ; additional research data on the website 2020-03-06 2020-03-14 +r3d100013258 Open Research Data @PUC-Rio eng [{"additionalName": "Cole\u00e7\u00e3o Digital - Dados de Pesquisa @PUC-Rio", "additionalNameLanguage": "por"}] https://www.maxwell.vrac.puc-rio.br/projetosEspeciais/ResearchData/index.php?b=1 [] ["staff.maxwell@puc-rio.br"] Research Data @PUC-Rio is an aggregator to make it easier to access Resarch Data among many other digital contents on the Maxwell Repository. All datasets must be licensed under a CC License (as stated on the homepage of the aggregator) to be made available on the Maxwell System (https:\\www.maxwell.vrac.puc-rio.br). All interfaces and metadata shown on the aggregator are in English though all contents are described in Portuguese too. eng ["institutional"] {"size": "46 datasets", "updatedp": "2021-08-12"} 2015-06 ["eng", "por"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.maxwell.vrac.puc-rio.br/projetosEspeciais/ResearchData/WhoWeAre.php?b=2 [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["elctricity", "energy", "survey"] [{"institutionName": "Pontifical Catholic University of Rio de Janeiro", "institutionAdditionalName": ["Puc Rio"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.puc-rio.br/english/", "institutionIdentifier": ["ROR:01dg47b60", "VIAF:130188301"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Usage Policy", "policyURL": "https://www.maxwell.vrac.puc-rio.br/projetosEspeciais/ResearchData/UsagePolicy.php?b=5"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["other"] {} ["DOI"] https://www.maxwell.vrac.puc-rio.br/projetosEspeciais/ResearchData/UsagePolicy.php?b=5 [] unknown unknown [] [] {} 2020-03-06 2021-08-24 +r3d100013260 AmeriFlux eng [{"additionalName": "Measuring carbon, water and energy flux across the Americas", "additionalNameLanguage": "eng"}] https://ameriflux.lbl.gov/ ["biodbcore-001731"] ["ameriflux-support@lbl.gov", "https://ameriflux.lbl.gov/contact-us/"] AmeriFlux is a network of PI-managed sites measuring ecosystem CO2, water, and energy fluxes in North, Central and South America. It was established to connect research on field sites representing major climate and ecological biomes, including tundra, grasslands, savanna, crops, and conifer, deciduous, and tropical forests. As a grassroots, investigator-driven network, the AmeriFlux community has tailored instrumentation to suit each unique ecosystem. This “coalition of the willing” is diverse in its interests, use of technologies and collaborative approaches. As a result, the AmeriFlux Network continually pioneers new ground. eng [] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ameriflux.lbl.gov/about/about-ameriflux/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["carbon dioxide", "climate", "ecosystem"] [{"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab", "LBL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ROR:02jbv0t02"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Science", "institutionAdditionalName": ["U.S. DOE, Office of Science"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/office-science", "institutionIdentifier": ["VIAF:305307871"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy", "policyURL": "https://ameriflux.lbl.gov/data/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.lbl.gov/disclaimers/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ameriflux.lbl.gov/data/data-policy/"}] restricted [{"dataUploadLicenseName": "AmeriFlux Data Contributor Policy", "dataUploadLicenseURL": "https://ameriflux.lbl.gov/data/how-to-uploaddownload-data/"}] [] no {"api": "ftp://ftp.fluxdata.org/.ameriflux_downloads/", "apiType": "FTP"} ["DOI"] https://ameriflux.lbl.gov/data/data-policy/ [] yes yes [] [] {} AmeriFlux is covered by Clarivate Data Citation Index. Regional networks supporting the FLUXNET: AmeriFlux 2020-03-09 2021-11-17 +r3d100013261 Smithsonian figshare eng [{"additionalName": "Smithsonian Research Data", "additionalNameLanguage": "eng"}, {"additionalName": "The Smithsonian research repository", "additionalNameLanguage": "eng"}] https://smithsonian.figshare.com/ResearchData [] ["https://www.si.edu/openaccess/faq", "openaccess@si.edu"] Smithsonian figshare is best for sharing data that need a DOI including those that underlie peer-reviewed publications; bounded datasets of mixed formats; or data that is periodically updated and needs to be versioned. See the Figshare Confluence site for more information. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://library.si.edu/research/data-repositories [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Smithsonian Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.si.edu/", "institutionIdentifier": ["ROR:01pp8nd67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Smithsonian Libraries", "institutionAdditionalName": ["SIL", "Smithsonian Institution Libraries"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.si.edu/", "institutionIdentifier": ["ROR:05mgwy297"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Smithsonian Research Data Management best practices", "policyURL": "https://library.si.edu/sites/default/files/pdf/rdm_best_practices.pdf"}, {"policyName": "Terms and conditions", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Terms of Use Smithsonian Figshare for Institutions", "dataUploadLicenseURL": "https://confluence.si.edu/display/FFI/Terms+of+Use+Smithsonian+Figshare+for+Institutions"}] ["other"] yes {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://knowledge.figshare.com/articles/item/how-to-share-cite-or-embed-my-data ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://smithsonian.figshare.com/rss/portal_group/smithsonian/ResearchData", "syndicationType": "RSS"} Smithsonian figshare uses Altmetric metrics. 2020-03-09 2021-09-10 +r3d100013262 Repositorio Digital UTB eng [] http://repositorio.utb.edu.co [] ["repositorioutb@utb.edu.co"] Institutional repository of Universidad Tecnológica de Bolívar. Containing historical Photo collection. eng ["institutional"] {"size": "5037 images", "updatedp": "2020-03-09"} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}] ["dataProvider"] ["Fototeca", "Photo collection", "multidisciplinary"] [{"institutionName": "Universidad Tecnol\u00f3gica de Bol\u00edvar", "institutionAdditionalName": ["UTB"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utb.edu.co/", "institutionIdentifier": ["ROR:01d171k92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica para el uso de los recursos y servicios inform\u00e1ticos", "policyURL": "https://www.utb.edu.co/sites/web.unitecnologica.edu.co/files/descargas/politica_para_el_uso_de_los_recursos_y_servicios_informaticos.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["DSpace"] {"api": "http://repositorio.utb.edu.co/oai/", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://repositorio.utb.edu.co/feed/atom_1.0/20.500.12585/3681", "syndicationType": "ATOM"} 2020-03-09 2021-09-10 +r3d100013263 FaceBase eng [] https://www.facebase.org ["FAIRsharing_doi:10.25504/FAIRsharing.mqvqde", "RRID:SCR_005998", "RRID:nlx_151372"] ["help@facebase.org"] FaceBase is a collaborative NIDCR-funded project that houses comprehensive data in support of advancing research into craniofacial development and malformation. It serves as a community resource by curating large datasets of a variety of types from the craniofacial research community and sharing them via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this project is to facilitate cooperation and collaboration between the central coordinating center (ie, the Hub) and the craniofacial research community. eng [] {"size": "855 datasets", "updatedp": "2020-03-11"} 2009-01-09 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20528 Dentistry, Oral Surgery", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.facebase.org/about/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["3D facial imaging", "GWAS", "craniofacial", "craniofacial development", "dental", "enhancer identification", "facial morphology", "gene expression", "genomics", "genotype", "microCT", "orofacial clefts", "phenotype", "suture", "transcriptomics"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "VIAF:223553453"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southern California, Information Sciences Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://isi.edu/", "institutionIdentifier": ["VIAF:136065954"], "responsibilityStartDate": "2014-10-13", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Access Policies", "policyURL": "https://www.facebase.org/access/policies/"}, {"policyName": "Terms of use", "policyURL": "https://www.facebase.org/odocs/tou-unrestricted-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.facebase.org/odocs/tou-unrestricted-data/"}] restricted [{"dataUploadLicenseName": "Submitting Data to Facebase", "dataUploadLicenseURL": "https://isrd.wufoo.com/forms/z144eh560oootq1/"}] [] yes {"api": "https://docs.derivacloud.org/deriva-py/api/deriva.html", "apiType": "REST"} ["DOI"] https://www.facebase.org/access/citing/ [] unknown yes [] [] {} 2020-03-10 2021-11-09 +r3d100013265 SupraBank eng [] https://suprabank.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.vjWUT7"] ["contact@suprabank.org", "https://suprabank.org/about_us"] An open resource for intermolecular interactions eng ["disciplinary"] {"size": "4026 interactions; 1685 molecules", "updatedp": "2021-02-04"} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://suprabank.org/about_us [{"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "physico-chemical data", "supramolecular chemistry"] [{"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/index.jsp", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kit.edu/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute of Nanotechnology", "institutionAdditionalName": ["KIT INT", "Karlsruher Institut f\u00fcr Technologie, Institut f\u00fcr Nanotechnologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.int.kit.edu/home.php", "institutionIdentifier": [], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://suprabank.org/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [] [] {} ["DOI", "other"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-03-10 2021-09-21 +r3d100013266 Open Science OVGU eng [{"additionalName": "Repository for Research Data and Publications of OVGU", "additionalNameLanguage": "eng"}] http://open-science.ub.ovgu.de/xmlui/?locale-attribute=en [] ["http://open-science.ub.ovgu.de/xmlui/contact"] With Open Science OVGU the Otto-von-Guericke University provides its scientists with a research data repository. Measurement data, laboratory values, survey data, methodical test procedures, etc. can be archived in Open Science OVGU and made available to the scientific community via Open Access. eng ["institutional"] {"size": "46 records", "updatedp": "2020-03-16"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://www.fdm.ovgu.de/home/Dienstleistungsangebote+f%C3%BCr+die+Forschung/Dienstleistungen+der+UB.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Magdeburg university library", "institutionAdditionalName": ["OVGU, UB", "Otto-von-Guericke-Universita\u0308t Magdeburg\u200f, Universita\u0308tsbibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.ovgu.de/en/", "institutionIdentifier": ["VIAF:236625897"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliothek@ovgu.de"]}] [{"policyName": "Leitlinie f\u00fcr das Forschungsdatenmanagement (FDM) an der Otto-von-Guericke-Universit\u00e4t Magdeburg (OVGU)", "policyURL": "http://www.fdm.ovgu.de/fdm_media/Dokumente/FDM_Leitlinie_pdf-p-72.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [] ["unknown"] no {} ["DOI", "hdl"] ["none"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://open-science.ub.ovgu.de/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-03-11 2020-03-20 +r3d100013268 COVID-19 Interactive Map eng [{"additionalName": "Johns Hopkins Coronavirus Resource Center", "additionalNameLanguage": "eng"}] https://coronavirus.jhu.edu/map.html ["biodbcore-001426"] ["COVID19map@jhu.edu"] Coronavirus COVID-19 Global Cases by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University (JHU). Johns Hopkins experts in global public health, infectious disease, and emergency preparedness have been at the forefront of the international response to COVID-19. This website is a resource to help advance the understanding of the virus, inform the public, and brief policymakers in order to guide a response, improve care, and save lives. All data collected and displayed are made freely available through a GitHub repository https://github.com/CSSEGISandData/COVID-19, along with the feature layers of the dashboard, which are now included in the ESRI Living Atlas: https://livingatlas.arcgis.com/en/ eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-01-22 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://coronavirus.jhu.edu/map-faq.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "live map", "pandemic"] [{"institutionName": "Johns Hopkins University", "institutionAdditionalName": ["JHU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jhu.edu/", "institutionIdentifier": ["ROR:00za53h95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johns Hopkins University, Center for Systems Science and Engineering", "institutionAdditionalName": ["CSSE"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://systems.jhu.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Map FAQ", "policyURL": "https://coronavirus.jhu.edu/map-faq"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://coronavirus.jhu.edu/map-faq.html"}] closed [] ["other"] {"api": "https://developer.github.com/v3/", "apiType": "REST"} ["none"] https://coronavirus.jhu.edu/map-faq.html ["none"] unknown yes [] [] {} 2020-03-12 2020-04-24 +r3d100013271 data.sciencespo eng [] https://data.sciencespo.fr [] ["genevieve.michaud@sciencespo.fr"] Launched in February 2020, data.sciencespo is a repository that offers visibility, sharing and preservation of data collected, curated and processed at Sciences Po. The repository is based on the Dataverse open-source software and organised into collections: CDSP Collection This collection managed by the Centre des données socio-politiques (CDSP) includes the catalogue of surveys, in the social science and humanities, processed and curated by CDSP engineers since 2005. This catalogue brings together surveys produced at Sciences Po and other French and international institutions. - Sciences Po collection (self-deposit) This collection, which is managed by the Direction des ressources et de l'information scientifique (DRIS), is intended to host data produced by researchers affiliated with Sciences Po, following the self-deposit process assisted by the Library's staff. eng ["institutional"] {"size": "14 dataverses; 320 datasets", "updatedp": "2020-05-06"} 2020-02-02 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cencus", "diseases", "elections", "political behaviour"] [{"institutionName": "Sciences Po", "institutionAdditionalName": ["FNSP", "Fondation Nationale des Sciences Politiques"], "institutionCountry": "FRA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://sciencespo.fr", "institutionIdentifier": ["ROR:05fe7ax82"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General Terms of Use", "policyURL": "https://data.sciencespo.fr/misc/cond_jur/ToU.pdf"}, {"policyName": "Terms", "policyURL": "http://guides.dataverse.org/en/4.19/user/dataset-management.html#file-upload"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/academic-credit [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-03-25 2021-08-25 +r3d100013272 ReefTEMPS eng [{"additionalName": "Portail d'information du r\u00e9seau R\u00e9seau d'observation des eaux c\u00f4ti\u00e8res du Pacifique insulaire", "additionalNameLanguage": "fra"}] http://www.reeftemps.science/en/home/ ["FAIRsharing_DOI:10.25504/FAIRsharing.5ftlhl"] ["contact@reeftemps.science"] ReefTEMPS is a temperature, pressure, salinity and other observables sensor network in coastal area of South, West and South West of Pacific ocean, driven by UMR ENTROPIE. It is an observatory service from the French national research infrastructure ILICO for “coastal environments”. Some of the network’s sensors have been deployed since 1958. Nearly hundred sensors are actually deployed in 14 countries covering an area of more than 8000 km from East to West. The data are acquired at different rates (from 1sec to 30 mn) depending on sensors and sites. They are processed and described using Climate and Forecast Metadata Convention at the end of oceanographic campaigns organized for sensors replacement every 6 months to 2 years. eng ["disciplinary"] {"size": "204 datasets; 116 platforms", "updatedp": "2020-04-08"} 2011 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.reeftemps.science/en/home/#objectives [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["FAIR", "conductivity", "fluorescence", "pressure", "salinity", "sea pressure", "sea temperature", "significant wave height", "surface winds", "swell", "temperature", "turbidity", "wind waves"] [{"institutionName": "Institute of Research for the Development", "institutionAdditionalName": ["IRD", "Institut de Recherche pour le D\u00e9veloppement", "Noumea IRD Center"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://nouvelle-caledonie.ird.fr/", "institutionIdentifier": ["ROR:01j4h9t83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Pacific Community", "institutionAdditionalName": ["SPC"], "institutionCountry": "AAA", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.spc.int/", "institutionIdentifier": ["ROR:05ewdm369"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of the South Pacific", "institutionAdditionalName": ["USP"], "institutionCountry": "FJI", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.usp.ac.fj/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Caledonia", "institutionAdditionalName": ["UNC", "Universit\u00e9 de la Nouvelle-Cal\u00e9donie"], "institutionCountry": "NCL", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://www.univ-nc.nc/", "institutionIdentifier": ["ROR:02jrgcx64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [] ["other"] {"api": "http://www.reeftemps.science/thredds/catalog/reeftemps/catalog.html", "apiType": "NetCDF"} ["DOI"] [] no unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "http://dboceano.ird.nc/dboceano/stream.xml", "syndicationType": "other"} 2020-03-30 2021-11-16 +r3d100013273 RosDok deu [{"additionalName": "RosDok - Rostocker Dokumentenserver", "additionalNameLanguage": "deu"}, {"additionalName": "RosDok \u2013 Publikationsserver der Universit\u00e4t Rostock", "additionalNameLanguage": "deu"}, {"additionalName": "RosDok \u2013 Rostock University Publication Server", "additionalNameLanguage": "eng"}] http://rosdok.uni-rostock.de/ ["http://roar.eprints.org/14208/"] ["digibib.ub@uni-rostock.de"] RosDok is the platform of the University of Rostock for online publication and permanent archiving of digital documents. eng ["institutional"] {"size": "", "updatedp": ""} 2007 ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://rosdok.uni-rostock.de/site/about/info [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Rostock", "institutionAdditionalName": ["Universit\u00e4t Rostock"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-rostock.de/en/", "institutionIdentifier": ["ROR:03zdwsf69", "VIAF:151746678"], "responsibilityStartDate": "2007", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Rostock, Rostock University Library", "institutionAdditionalName": ["Universit\u00e4t Rostock, Universit\u00e4tsbibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-rostock.de/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "RosDok \u2013 Leitlinien", "policyURL": "http://rosdok.uni-rostock.de/site/about/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/page/InC/1.0/"}] restricted [{"dataUploadLicenseName": "RosDok - Genehmigung zur digitalen Publikation im Internet", "dataUploadLicenseURL": "http://rosdok.uni-rostock.de/data/docs/lic-pub-v20151130.pdf"}] ["other"] {"api": "http://rosdok.uni-rostock.de/oai", "apiType": "OAI-PMH"} ["DOI", "PURL", "URN"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-03-30 2020-04-09 +r3d100013275 GRO.data eng [{"additionalName": "G\u00f6ttingen Research Online", "additionalNameLanguage": "eng"}] https://data.goettingen-research-online.de/ [] ["dataverse@gwdg.de", "pkiraly@gwdg.de"] GRO.data is a research data repository for the Göttingen Campus. Belonging researchers can use it for free. It serves different purposes such as: to simply preserve datasets, to keep track of changes across several versions, to share data with colleagues, to make data itself publicly available, to receive a persistent identifier upon publications. eng ["institutional"] {"size": "22 dataverses, 47 datasets", "updatedp": "2020-04-07"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.eresearch.uni-goettingen.de/about/mission-organisation/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Georg-August-Universit\u00e4t G\u00f6ttingen", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-goettingen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "G\u00f6ttingen Campus", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://goettingen-campus.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "G\u00f6tttingen eResearch Alliance", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eresearch.uni-goettingen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["pwieder@gwdg.de"]}, {"institutionName": "Nieders\u00e4schsische Staats- und Universit\u00e4tsbibliothek G\u00f6ttingen", "institutionAdditionalName": ["SUB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sub.uni-goettingen.de/sub-aktuell/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data Policies", "policyURL": "https://www.eresearch.uni-goettingen.de/knowledge-base/policies/#RDPexamples"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/2.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.de.html"}] restricted [] ["DataVerse"] yes {"api": "https://data.goettingen-research-online.de/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-03-31 2020-04-10 +r3d100013276 Arctic Permafrost Geospatial Centre eng [{"additionalName": "APGC", "additionalNameLanguage": "eng"}] https://apgc.awi.de/ ["FAIRsharing_doi:10.25504/FAIRsharing.hrM7RP"] ["apgc@awi.de"] The Arctic Permafrost Geospatial Centre (APGC) is an Open Access Circum-Arctic Geospatial Data Portal that promotes, describes and visualizes geospatial permafrost data. A data catalogue and a WebGIS application allow to easily discover and view data and metadata. Data can be downloaded directly via link to the publishing data repository. eng ["disciplinary"] {"size": "217 datasets", "updatedp": "2020-04-01"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://apgc.awi.de/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["biogeochemistry", "ground deformation", "ground ice", "land cover", "landscape", "periglacial inventories", "vegetation"] [{"institutionName": "Alfred Wegener Institute - Helmholtz Centre for Polar and Marine Research", "institutionAdditionalName": ["AWI", "Alfred-Wegener-Institut Helmholtz-Zentrum f\u00fcr Polar- und Meeresforschung,"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.awi.de/en.html", "institutionIdentifier": ["ROR:032e6b942"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.awi.de/en/about-us/service/contact.html"]}, {"institutionName": "European Research Council", "institutionAdditionalName": ["ERC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://erc.europa.eu/", "institutionIdentifier": ["ROR:0472cxd90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://erc.europa.eu/about-erc/contact-us"]}, {"institutionName": "European Space Agency, GlobPermafrost", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.globpermafrost.info/cms", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "ESA, GlobPermafrost", "institutionContact": []}] [{"policyName": "Imprint", "policyURL": "https://apgc.awi.de/pages/imprint"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://opendefinition.org/od/2.1/en/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://apgc.awi.de/pages/imprint"}] restricted [] ["CKAN"] yes {"api": "https://docs.ckan.org/en/2.8/api/", "apiType": "other"} ["DOI"] https://apgc.awi.de/uploads/images/APGC_Help_Documentation_v1_1.pdf ["ORCID"] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} Search groups, collections and projects: https://apgc.awi.de/group 2020-03-31 2021-11-09 +r3d100013280 Living Atlas of the World eng [{"additionalName": "ArcGIS Living Atlas of the World", "additionalNameLanguage": "eng"}] https://livingatlas.arcgis.com/de/ [] ["https://www.esri.com/en-us/contact#c=us&t=0", "support@esri.de"] ArcGIS 'Living Atlas of the World is a unique collection of worldwide geographic information. It contains maps, apps and data layers that support you in your work. Corona Virus resources https://coronavirus-resources.esri.com/ eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["2D", "3D", "COVID-19", "GIS", "corona virus"] [{"institutionName": "Esri", "institutionAdditionalName": ["Environmental Systems Research Institute"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.esri.com/de-de/home", "institutionIdentifier": ["ROR:0428exr50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Esri Master Agreements", "policyURL": "https://www.esri.com/en-us/legal/terms/full-master-agreement"}, {"policyName": "Terms of use", "policyURL": "http://downloads2.esri.com/ArcGISOnline/docs/tou_summary.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.esri.com/en-us/legal/overview"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [] {} 2020-04-02 2021-10-18 +r3d100013283 FactGrid eng [{"additionalName": "a database for historians", "additionalNameLanguage": "eng"}] https://database.factgrid.de/wiki/Main_Page [] ["olaf.simons@pierre-marteau.com"] FactGrid is a Wikibase instance designed to be used by historians with a focus on international projects. The database is hosted by the University of Erfurt and coordinated at the Gotha Research Centre. Partners in joint ventures are Wikimedia Germany as the software provider and the German National Library in a project to open the GND to international research. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-01-12 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://database.factgrid.de/wiki/FactGrid:About [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["citizens", "genealogy", "timelines"] [{"institutionName": "Fundaci\u00f3n Ignacio Larramendi", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.larramendi.es/fundacion/home/", "institutionIdentifier": [], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German National Library", "institutionAdditionalName": ["Deutsche Nationalbibliothek"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dnb.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:01n7gem85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut d'histoire moderne et contemporaine", "institutionAdditionalName": ["IHMC"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ihmc.ens.fr/?lang=fr", "institutionIdentifier": ["ROR:04795e365"], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["Bruno.Belhoste@univ-paris1.fr"]}, {"institutionName": "Universitat Pompeu Fabra", "institutionAdditionalName": ["UPF"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upf.edu/", "institutionIdentifier": ["ROR:04n0g0b29"], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat de Barcelona", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.edu/web/portal/ca/", "institutionIdentifier": ["ROR:021018s57"], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Bancroft Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lib.berkeley.edu/libraries/bancroft-library", "institutionIdentifier": [], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": ["cfaulhab@library.berkeley.edu"]}, {"institutionName": "University of Erfurt", "institutionAdditionalName": ["Universit\u00e4t Erfurt"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.uni-erfurt.de/en/", "institutionIdentifier": ["ROR:03606hw36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Erfurt, Forschungszentrum Gotha", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.uni-erfurt.de/forschungszentrum-gotha", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Service", "policyURL": "https://database.factgrid.de/wiki/FactGrid:Terms_of_Service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] ["other"] {"api": "https://database.factgrid.de/query/", "apiType": "SPARQL"} [] [] unknown unknown [] [] {"syndication": "https://blog.factgrid.de/feed", "syndicationType": "RSS"} 2020-04-07 2021-08-25 +r3d100013285 National Tibetan Plateau/Third Pole Environment Data Center eng [{"additionalName": "TPDC", "additionalNameLanguage": "eng"}] https://data.tpdc.ac.cn/en/ ["FAIRsharing_DOI:10.25504/FAIRsharing.YzTIE8"] ["data@itpcas.ac.cn"] The National Tibetan Plateau/Third Pole Environment Data Center (TPDC) is one of a first group of 20 national data centers approved by the Ministry of Science and Technology of China in 2019. It possesses the most comprehensive scientific data on the Tibetan Plateau and surrounding regions of any data centers in China. TPDC provides online and offline data download services according to TPDC data Sharing Protocol with bilingual of Chinese and English (https://data.tpdc.ac.cn/). There are more than 2400 datasets, covering geography, atmospheric science, cryospheric science, hydrology, ecology, geology, geophysics, natural resource science, social economy, and other fields. There are more than 30000 registered users. TPDC complies with the principle of “Findable, Accessible, Interoperable, and Reusable (FAIR)”, and has adopted a series of measures to protect the intellectual property by giving credit to data providers. Digital Object Identifiers (DOI) are used for scientific data access, tracking, and citation. The Creative Commons 4.0 protocol is used for data re-distribution and re-use. Data users are required to cite the datasets and provide necessary acknowledgement in order to give credit to data authors as journal papers. The data citation references are provided on the TPDC landing page of each dataset. eng ["disciplinary"] {"size": "2435 datasets", "updatedp": "2020-07-21"} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.tpdc.ac.cn/en/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Pan-Third Pole Environment", "Tibetian Plateau", "cryospheric science", "ecology", "natural resource science", "social economy"] [{"institutionName": "Institute of Tibetan Plateau Research - Chinese Academy of Sciences", "institutionAdditionalName": ["ITPCAS", "\u4e2d\u56fd\u79d1\u5b66\u9662\u9752\u85cf\u9ad8\u539f\u7814\u7a76\u6240"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://english.itpcas.cas.cn/", "institutionIdentifier": ["ROR:03zn6c508"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use and disclaimer", "policyURL": "https://data.tpdc.ac.cn/en/terms/disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] yes {} ["DOI"] https://data.tpdc.ac.cn/en/about/citation/ [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-04-14 2021-11-16 +r3d100013286 BLB Digitale Sammlungen deu [{"additionalName": "BLB Digital Collections", "additionalNameLanguage": "eng"}] https://digital.blb-karlsruhe.de/ [] ["digitalisierung@blb-karlsruhe.de"] For many years, the Badische Landesbibliothek has been digitising outstanding holdings from its cultural fundus in order to make them available to interested parties worldwide free of charge. This heritage includes medieval manuscripts and valuable music as well as copyright-free sources, reference works and important individual writings on Baden and its history. eng ["institutional"] {"size": "39290 titles", "updatedp": "2020-04-15"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.blb-karlsruhe.de/sammlungen/digitalisierte-bestaende/ [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Baden-W\u00fcrttemberg", "Upper Rhine territory", "autographs", "graphics", "incunabula", "manuscripts", "maps and atlases", "newspapers", "playbills", "prints"] [{"institutionName": "Badische Landesbibliothek", "institutionAdditionalName": ["BLB", "Baden State Library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.blb-karlsruhe.de/", "institutionIdentifier": ["ROR:00nxdn656"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["service@blb-karlsruhe.de"]}] [{"policyName": "License terms", "policyURL": "https://digital.blb-karlsruhe.de/wiki/wiki4062351"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/deed.de"}] closed [] ["other"] {"api": "https://iiif.io/technical-details/", "apiType": "REST"} ["PURL", "URN"] ["other"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://digital.blb-karlsruhe.de/rss", "syndicationType": "RSS"} OAI-PMH is available but official URL not publicly visible. 2020-04-14 2020-04-24 +r3d100013287 KTISIS eng [{"additionalName": "Institutional repository Cyprus University of Technology", "additionalNameLanguage": "eng"}, {"additionalName": "\u039a\u03a4\u0399\u03a3\u0399\u03a3", "additionalNameLanguage": "ell"}] https://ktisis.cut.ac.cy [] ["https://ktisis.cut.ac.cy/feedback", "library.dspace@cut.ac.cy", "petros.artemi@cut.ac.cy"] Ktisis is an open access institutional repository gathering any digital material relating to the various activities of the Cyprus University of Technology, especially original research material produced by the members of the University. Defined in this framework, Ktisis demonstrates the intellectual life and the research activities of the University, preserving, spreading and promoting the scientific research to the local and international community. Ktisis was named after the symbol of the Cyprus University of Technology depicting Ktisis, the spirit of creation. eng ["institutional"] {"size": "5 datasets", "updatedp": "2020-04-15"} 2008 ["ell", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://library.cut.ac.cy/en/management-policy [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Cyprus University of Technology", "institutionAdditionalName": ["CUT", "\u03a4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u039a\u03cd\u03c0\u03c1\u03bf\u03c5"], "institutionCountry": "CYP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.cut.ac.cy/", "institutionIdentifier": ["ROR:05qt8tf94"], "responsibilityStartDate": "2004", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cyprus University of Technology, Library and Information Services", "institutionAdditionalName": [], "institutionCountry": "CYP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.cut.ac.cy/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Ktisis Publications Deposit Policy", "policyURL": "https://library.cut.ac.cy/en/ktisis_policies"}, {"policyName": "Management Policy of the Institutional Repository \u201cKTISIS\u201d", "policyURL": "https://library.cut.ac.cy/en/management-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [{"dataUploadLicenseName": "Management Policy of the Institutional Repository \u201cKTISIS\u201d", "dataUploadLicenseURL": "https://library.cut.ac.cy/en/management-policy"}] ["DSpace"] {} ["DOI", "hdl"] ["ORCID", "ResearcherID"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-04-15 2020-04-17 +r3d100013291 MOSES Data Discovery Portal eng [{"additionalName": "Modular Observation Solutions for Earth Systems Data Discovery Portal", "additionalNameLanguage": "eng"}] https://moses-data.gfz-potsdam.de/onestop/#/ [] ["moses-dmp@gfz-potsdam.de"] The MOSES Data Discovery Portal is the central component of the MOSES data management infrastructure. It holds the metadata of MOSES campaigns, sensors and data and enables high-performance data searches. In addition, it provides access to the decentral data repositories and infrastructures of the participating Helmholtz centers where MOSES data is stored. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "30901 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ufz.de/moses/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["T-MOSAIC", "climate change", "heat waves", "hydrological extremes", "ocean eddies", "permafrost thaw"] [{"institutionName": "Helmholtz Association", "institutionAdditionalName": ["HGF", "Helmholtz-Gemeinschaft Deutscher Forschungszentren"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "2017", "responsibilityEndDate": "2021", "institutionContact": []}, {"institutionName": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", "institutionAdditionalName": ["GFZ", "GFZ German Research Centre for Geosciences", "Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.gfz-potsdam.de/en/home/", "institutionIdentifier": ["ROR:04z8jg394"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gfz-potsdam.de/en/contact/"]}, {"institutionName": "Helmholtz Centre for Environmental Research", "institutionAdditionalName": ["Helmholtz-Zentrum f\u00fcr Umweltforschung GmbH", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@ufz.de"]}, {"institutionName": "Project MOSES", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/moses/index.php?en=44514", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ufz.de/moses/index.php?en=44859"]}] [{"policyName": "Legal information", "policyURL": "https://moses-dmp.gfz-potsdam.de/imprint/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://moses-dmp.gfz-potsdam.de/imprint/"}] restricted [] ["other"] {} ["DOI"] [] unknown yes [] [] {"syndication": "https://blogs.helmholtz.de/moses/de/feed/", "syndicationType": "RSS"} MOSES contributors: https://www.ufz.de/moses/index.php?en=44860 Related IDs für instruments/devices are available via SENSOR.awi.de: http://doi.org/10.17616/R31NJMJ8 2020-04-21 2020-04-29 +r3d100013292 COVID-19 Data Portal eng [] https://www.covid19dataportal.org/ ["biodbcore-001437"] ["ecovid19@ebi.ac.uk"] The COVID-19 Data Portal was launched in April 2020 to bring together relevant datasets for sharing and analysis in an effort to accelerate coronavirus research. It enables researchers to upload, access and analyse COVID-19 related reference data and specialist datasets as part of the wider European COVID-19 Data Platform. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-04 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.covid19dataportal.org/the-european-covid-19-data-platform [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "biochemistry", "epidemiology", "proteins", "virology"] [{"institutionName": "European Commission", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/commission/index_en", "institutionIdentifier": ["ROR:00k4n6c32", "RRID:SCR_011211", "RRID:nlx_47458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ec.europa.eu/info/contact_en"]}, {"institutionName": "European Molecular Biology Laboratory, European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/support/"]}, {"institutionName": "European Union, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access EGA studies", "policyURL": "https://ega-archive.org/access/data-access"}, {"policyName": "Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ebi.ac.uk/about/terms-of-use/"}] restricted [{"dataUploadLicenseName": "Submit new data", "dataUploadLicenseURL": "https://www.covid19dataportal.org/submit-data"}] [] {"api": "https://www.ebi.ac.uk/ebisearch/ws/rest", "apiType": "REST"} ["other"] [] unknown unknown [] [] {} The European COVID-19 Data Platform is developed and operated in a partnership of many institutions: https://www.covid19dataportal.org/partners API documentation: https://www.covid19dataportal.org/api-documentation 2020-04-22 2020-11-25 +r3d100013293 Cellosaurus eng [{"additionalName": "The Cellosaurus On ExPASy", "additionalNameLanguage": "eng"}] https://web.expasy.org/cellosaurus/ ["FAIRsharing_doi:10.25504/FAIRsharing.hkk309", "RRID:SCR_013869"] ["cellosaurus@sib.swiss", "https://web.expasy.org/contact"] The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines, Naturally immortal cell lines (example: stem cell lines), Finite life cell lines when those are distributed and used widely, Vertebrate cell line with an emphasis on human, mouse and rat cell lines, Invertebrate (insects and ticks) cell lines. Its scope does not include: Primary cell lines (with the exception of the finite life cell lines described above), Plant cell lines. Cellosaurus was initiated to be used as a cell line controlled vocabulary in the context of the neXtProt knowledgebase, but it quickly become apparent that there was a need for a cell line knowledge resource that would serve the needs of individual researchers, cell line distributors and bioinformatic resources. This leads to an increase of the scope and depth of the content of the Cellosaurus. The Cellosaurus is a participant of the Resource Identification Initiative and contributes actively to the work of the International Cell Line Authentication Committee (ICLAC). eng ["disciplinary"] {"size": "123.199 cell lines: 92.668 human; 20.991 mouse; 2.150 rat", "updatedp": "2020-09-14"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://web.expasy.org/cellosaurus/description.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "Insect cell lines", "STR", "adeno-associated virus packaging cell lines", "adenovirus packaging cell lines", "amphibian cell lines", "bat cell lines", "bird cell lines", "cancer stem cell lines", "cell line", "cetacean cell lines", "clinical grade hESC cell lines", "crustacean cell lines", "endangered species/breed cell lines", "fish cell lines", "haploid karyotype cell lines", "human/rodent somatic cell hybrids", "hybridoma fusion partner cell lines", "marsupial cell lines", "mollusk cell lines", "nematode cell lines", "non-human primate cell lines", "recombinant protein production insect cell lines", "reptilian cell lines", "retrovirus packaging cell lines", "serum/protein free medium cell lines", "short tandem repeat", "space-flown cell line (cellonaut)s", "tick cell lines", "triple negative breast cancer (TNBC) cell lines", "vaccine production cell lines"] [{"institutionName": "Swiss Institute of Bioinformatics, Computer and Laboratory Investigation of Proteins of Human Origin Group", "institutionAdditionalName": ["SIB, CALIPHO group"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/amos-bairoch-lydie-lane-group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [] [] yes {"api": "ftp://ftp.expasy.org/databases/cellosaurus", "apiType": "FTP"} ["other"] https://web.expasy.org/cgi-bin/cellosaurus/faq#Q01 [] yes unknown [] [] {} GitHub: https://github.com/calipho-sib/cellosaurus 2020-04-23 2021-09-09 +r3d100013294 Chinese Clinical Trial Register eng [{"additionalName": "ChiCTR", "additionalNameLanguage": "eng"}] https://www.chictr.org.cn/enIndex.aspx ["biodbcore-001438"] ["chictr@scu.edu.cn"] The mission of ChiCTR is to “unite clinicians, clinical epidemiologists, biostatisticians, epidemiologists and healthcare managers both at home and abroad, to manage clinical trials in a strict and scientific manner, and to promote their quality in China, so as to provide reliable evidence from clinical trials for health care workers, consumers and medical policy decision makers, and also to use medical resources more effectively to provide better service for Chinese people and all human beings. eng ["disciplinary"] {"size": "51.143 trials", "updatedp": "2021-10-05"} 2005-10 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.chictr.org.cn/abouten.aspx [{"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "IPD", "Individual participant data", "clinical trial"] [{"institutionName": "Chinese Clinical Trial Registry", "institutionAdditionalName": ["ChiCTR", "\u4e2d\u56fd\u4e34\u5e8a\u8bd5\u9a8c\u6ce8\u518c\u4e2d\u5fc3"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.chictr.org.cn/enindex.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "West China Hospital of Sichuan University", "institutionAdditionalName": ["WCH"], "institutionCountry": "CHN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.wchscu.cn/", "institutionIdentifier": ["ROR:007mrxy13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Declaration of Helsinki", "policyURL": "https://www.chictr.org.cn/uploads/documents/201610/df3df4b49abd489e9eabf5d02e2bad45.pdf"}, {"policyName": "Policy of the ChiCTR", "policyURL": "https://www.chictr.org.cn/enindex.aspx"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.chictr.org.cn/enindex.aspx"}] restricted [{"dataUploadLicenseName": "Registration Guidence", "dataUploadLicenseURL": "https://www.chictr.org.cn/registryen.aspx"}] [] yes {} [] https://www.chictr.org.cn/questionen.aspx [] yes yes [] [] {} 2020-04-23 2021-10-05 +r3d100013295 Complex Portal eng [{"additionalName": "CP", "additionalNameLanguage": "eng"}] https://www.ebi.ac.uk/complexportal/ ["FAIRsharing_doi:10.25504/FAIRsharing.wP3t2"] ["complexportal@ebi.ac.uk"] The Complex Portal is a manually curated, encyclopaedic resource of macromolecular complexes from a number of key model organisms, entered into the IntAct molecular interaction database (https://www.ebi.ac.uk/intact/). Data includes protein-only complexes as well as protein-small molecule and protein-nucleic acid complexes. All complexes are derived from physical molecular interaction evidences extracted from the literature and cross-referenced in the entry, or by curator inference from information on homologs in closely related species or by inference from scientific background. All complexes are tagged with Evidence and Conclusion Ontology codes to indicate the type of evidence available for each entry. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.ebi.ac.uk/complexportal/about [{"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "FAIR"] [{"institutionName": "European Bioinformatics Institute", "institutionAdditionalName": ["EMBL-EBI"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Complex Portal - Quick tour", "policyURL": "http://10.6019/TOL.ComPor-qt.2015.00001.1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] yes {"api": "ftp://ftp.ebi.ac.uk/pub/databases/intact/complex/", "apiType": "FTP"} ["other"] [] yes yes [] [] {} GitHub: https://github.com/Complex-Portal 2020-04-23 2021-09-09 +r3d100013297 ERG-Science Center eng [{"additionalName": "ERG-SC", "additionalNameLanguage": "eng"}, {"additionalName": "Exploration of energization and Radiation in Geospace Science Center", "additionalNameLanguage": "eng"}] https://ergsc.isee.nagoya-u.ac.jp/ [] ["ergsc-help@isee.nagoya-u.ac.jp", "https://ergsc.isee.nagoya-u.ac.jp/contact/contact.shtml.en"] The ERG  (Exploration of energization and Radiation in Geospace) project is a mission to elucidate acceleration and loss mechanisms of relativistic electrons around Earth during geospace storms. The project consists of the satellite observation team, the ground-based network observation team, and the integrated data analysis/simulation team. The science center archives data related to the ERG project, releases the data to the public, develops integrated analysis tools for the data, and promotes studies related to the ERG  project. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ergsc.isee.nagoya-u.ac.jp/project/background.shtml.en [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ground-based observation data", "magnetometers", "satellite data", "space physics"] [{"institutionName": "Japan Aerospace Exploration Agency, Institute of Space and Astronautical Science", "institutionAdditionalName": ["JAXA, ISAS"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.isas.jaxa.jp/en/", "institutionIdentifier": ["ROR:034gcgw60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nagoya University, Institute for Space-Earth Environmental Research", "institutionAdditionalName": ["ISEE"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ergsc.isee.nagoya-u.ac.jp/index.shtml.en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["erg-sc-core@isee.nagoya-u.ac.jp"]}] [{"policyName": "Rules of the Road", "policyURL": "https://ergsc.isee.nagoya-u.ac.jp/data_info/rules_of_the_road.shtml.en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ergsc.isee.nagoya-u.ac.jp/data_info/rules_of_the_road.shtml.en"}] restricted [] [] yes {} [] https://ergsc.isee.nagoya-u.ac.jp/data_info/rules_of_the_road.shtml.en [] no unknown [] [] {} Teams and members: https://ergsc.isee.nagoya-u.ac.jp/project/teams.shtml.en International Collaborations: https://ergsc.isee.nagoya-u.ac.jp/project/collaborations.shtml.en 2020-04-24 2021-10-05 +r3d100013298 Coronavirus Antiviral Research Database eng [{"additionalName": "COVDB", "additionalNameLanguage": "eng"}] https://covdb.stanford.edu/ ["biodbcore-001420"] ["hivdbteam@stanford.edu", "https://hivdb.stanford.edu/about/contactus/"] The Coronavirus Antiviral Research Database is designed to expedite the development of SARS-CoV-2 antiviral therapy. It will benefit global coronavirus drug development efforts by (1) promoting uniform reporting of experimental results to facilitate comparisons between different candidate antiviral compounds; (2) identifying gaps in coronavirus antiviral drug development research; (3) helping scientists, clinical investigators, public health officials, and funding agencies prioritize the most promising compounds and repurposed drugs for further development; (4) providing an objective, evidenced-based, source of information for the public; and (5) creating a hub for the exchange of ideas among coronavirus researchers whose feedback is sought and welcomed. By comprehensively reviewing all published laboratory, animal model, and clinical data on potential coronavirus therapies, the Database makes it unlikely that promising treatment approaches will be overlooked. In addition, by making it possible to compare the underlying data associated with competing treatment strategies, stakeholders will be better positioned to prioritize the most promising anti-coronavirus compounds for further development. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://covdb.stanford.edu/page/covid-review/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "additional host-targeting compounds", "cell culture", "clinical trials", "entry inhibitors", "interferons", "polymerase inhibitors", "protease inhibitors", "virology"] [{"institutionName": "Stanford University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stanford.edu/", "institutionIdentifier": ["ROR:00f54p054"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://covdb.stanford.edu/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://covdb.stanford.edu/terms-of-use/"}] closed [] ["other"] {} [] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-04-24 2021-10-05 +r3d100013299 Liverpool COVID-19 Drug Interactions eng [] https://www.covid19-druginteractions.org/ ["biodbcore-001460"] ["covidpk@liverpool.ac.uk"] The COVID-19 pandemic has affected every country in the world. It is well documented that those most susceptible to the worst outcomes of COVID-19 are the immunocompromised and those with underlying comorbidities. Therefore, patients requiring treatment for COVID-19 will also be on additional medication, posing a risk for drug-drug interactions (DDIs). In order to address this, the Liverpool Drug Interactions website team developed this freely available drug interactions resource to provide information on the likelihood of interactions between the experimental agents used for the treatment of COVID-19 and commonly prescribed co-medications. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.covid19-druginteractions.org/about [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19"] [{"institutionName": "British HIV Association", "institutionAdditionalName": ["BHIVA"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bhiva.org/", "institutionIdentifier": ["ROR:01mzyze39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European AIDS Clinical Society", "institutionAdditionalName": ["EACS", "EACSociety"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.eacsociety.org/", "institutionIdentifier": ["Wikidata:Q85759815"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "More partners", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.covid19-druginteractions.org/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Health Research", "institutionAdditionalName": ["NIHR"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nihr.ac.uk/", "institutionIdentifier": ["ROR:0187kwz08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Radboud University Nijmegen Medical Centre", "institutionAdditionalName": ["RUNMC", "Radboudumc"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.radboudumc.nl/en/patient-care", "institutionIdentifier": ["ROR:05wg1m734"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Research and Innovation", "institutionAdditionalName": ["UKRI", "United Kingdom Resarch and Innovation"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ukri.org/", "institutionIdentifier": ["ROR:001aqnf71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Basel", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unibas.ch/en.html", "institutionIdentifier": ["ROR:02s6k3f65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Liverpool, Centre of Excellence in Infectious Diseases Research", "institutionAdditionalName": ["CEIDR"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.liverpool.ac.uk/centre-of-excellence-infectious-diseases-research/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Liverpool, Pharmacology Research Labs, Liverpool Drug Interactions Group", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.covid19-druginteractions.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms & Conditions", "policyURL": "https://www.covid19-druginteractions.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.covid19-druginteractions.org/terms"}] closed [] [] {} [] https://www.covid19-druginteractions.org/prescribing-resources [] unknown unknown [] [] {} 2020-04-24 2021-01-07 +r3d100013300 COVID-19 Research Collaborations eng [] https://covid19.elsevierpure.com/ ["biodbcore-001429"] [] Research Collaborators & Institutions related to Coronavirus Epidemic Aim: Identify potential research experts or collaborators in areas related to the coronavirus epidemic across basic science, translational research, or clinical practice. Scope: A selection of Researchers active or cited in the area of Coronavirus, Middle East Respiratory Syndrome (MERS), SARS, etc. eng ["disciplinary"] {"size": "330 datsets", "updatedp": "2020-12-29"} ["cat", "dan", "deu", "eng", "fin", "ita", "jpn", "nld", "pol", "rus", "spa", "swe", "tur", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["COVID-19"] [{"institutionName": "Elsevier", "institutionAdditionalName": ["RELX Group", "Reed Elsevier"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.relx.com/", "institutionIdentifier": ["ROR:02scfj030"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] closed [] [] yes {} ["DOI"] [] yes unknown [] [] {} 2020-04-24 2021-01-07 +r3d100013301 DisGeNET eng [{"additionalName": "A knowledge base for disease genomics", "additionalNameLanguage": "eng"}] http://www.disgenet.org ["FAIRsharing_doi:10.25504/FAIRsharing.fssydn", "RRID:SCR_006178", "RRID:nlx_151710"] ["info@disgenetplus.com"] DisGeNET is a discovery platform containing one of the largest publicly available collections of genes and variants associated to human diseases. DisGeNET integrates data from expert curated repositories, GWAS catalogues, animal models and the scientific literature. DisGeNET data are homogeneously annotated with controlled vocabularies and community-driven ontologies. Additionally, several original metrics are provided to assist the prioritization of genotype–phenotype relationships. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://grib.imim.es/research/integrative-biomedical-informatics/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "FAIR", "disease"] [{"institutionName": "Research Programme on Biomedical Informatics, Integrative Biomedical Informatics", "institutionAdditionalName": ["GRIB"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://grib.imim.es/research/integrative-biomedical-informatics/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DisGeNET web interface user guide", "policyURL": "https://www.disgenet.org/static/disgenet_ap1/files/current/DisGeNET_Web_v7.pdf"}, {"policyName": "Legal Notices", "policyURL": "https://www.disgenet.org/legal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "ODC", "databaseLicenseURL": "http://opendatacommons.org/licenses/odbl/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "http://opendatacommons.org/licenses/odbl/1.0/"}] [] ["other"] yes {"api": "https://www.disgenet.org/api/", "apiType": "REST"} [] https://www.disgenet.org/citation [] unknown unknown [] [] {} 2020-04-24 2021-09-09 +r3d100013302 EU Clinical Trial Register eng [{"additionalName": "EUCTR", "additionalNameLanguage": "eng"}, {"additionalName": "European Union Clinical Trials Register", "additionalNameLanguage": "eng"}] https://www.clinicaltrialsregister.eu/ ["FAIRsharing_doi:10.25504/FAIRsharing.566n8c"] ["euctr@ema.europa.eu", "https://www.clinicaltrialsregister.eu/contacts.html"] The European Union Clinical Trials Register allows you to search for protocol and results information on interventional clinical trials that are conducted in the European Union (EU) and the European Economic Area (EEA) and clinical trials conducted outside the EU / EEA that are linked to European paediatric-medicine development. The EU Clinical Trials Register is part of EudraPharm, which is the community database of authorised medicinal products. The website provides public access to information extracted from the European Union Drug Regulating Authorities Clinical Trials Database, EudraCT. eng ["disciplinary"] {"size": "37.606 clinical trials; 18.700 paediatric trials", "updatedp": "2020-07-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.clinicaltrialsregister.eu/about.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "World Health Organization - WHO", "investigational medicinal products - IMP", "paediatric investigation plan - PIP", "rare disease"] [{"institutionName": "European Medicines Agency", "institutionAdditionalName": ["EMA"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ema.europa.eu/en", "institutionIdentifier": ["ROR:01z0wsw92"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Heads of Medicines Agencies", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hma.eu/", "institutionIdentifier": ["wikidata:Q16831766"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data quality", "policyURL": "https://www.clinicaltrialsregister.eu/dataquality.html"}, {"policyName": "Legal basis", "policyURL": "https://www.clinicaltrialsregister.eu/about.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ema.europa.eu/en/about-us/legal-notice"}] restricted [] [] yes {} [] [] no yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.clinicaltrialsregister.eu/ctr-search/rest/feed/bydates?query=", "syndicationType": "RSS"} 2020-04-24 2021-09-09 +r3d100013303 Risklayer Explorer eng [] http://risklayer-explorer.com/ [] ["http://risklayer-explorer.com/contact", "info@cedim.de", "info@risklayer.com"] Risklayer Explorer is a collaboration between Risklayer GmbH and the Karlsruhe Institute of Technology's Center for Disaster Risk Management and Risk Reduction Technology (CEDIM). This website is still under development, but we are going live with it already, because we want to present data on the Novel Coronavirus (COVID-19) to help inform the public of the current situation. You will be able to track disaster events and read about our analysis here. Our work is a continuation of a new style of disaster research started by CEDIM in 2011 to analyze disasters immediately after their occurrence, assess the impacts, and retrace the temporal development of disaster events. We are already analyzing damaging earthquakes globally, providing you with event characteristics, earthquake's intensity footprints, as well as the population affected by earthquakes. In addition to earthquake events, we expect to be tracking and analyzing tropical cyclone, volcano and extreme weather events in 2020. eng ["institutional", "other"] {"size": "", "updatedp": ""} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://risklayer-explorer.com/roadmap [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "earthquake", "extreme weather", "risk analysis", "tropical cyclone", "volcano"] [{"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Center for Disaster Management and Risk Reduction Technology", "institutionAdditionalName": ["KIT, CEDIM", "Karlsruher Institut f\u00fcr Technologie, Zentrum fu\u0308r Katastrophenmanagement und Risikominderungstechnologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cedim.kit.edu/english/riskexplorer.php", "institutionIdentifier": ["VIAF:128807475"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Risklayer GmbH", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.risklayer.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://risklayer-explorer.com/"}] closed [] [] {} [] [] unknown unknown [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2020-04-24 2021-07-28 +r3d100013304 European Centre for Disease Prevention and Control eng [] https://www.ecdc.europa.eu/en ["biodbcore-001454"] ["info@ecdc.europa.eu"] ECDC is an EU agency aimed at strengthening Europe's defences against infectious diseases. The core functions cover a wide spectrum of activities: surveillance, epidemic intelligence, response, scientific advice, microbiology, preparedness, public health training, international relations, health communication, and the scientific journal Eurosurveillance. Within the field of its mission, the Centre shall: search for, collect, collate, evaluate and disseminate relevant scientific and technical data; provide scientific opinions and scientific and technical assistance including training; provide timely information to the Commission, the Member States, Community agencies and international organisations active within the field of public health; coordinate the European networking of bodies operating in the fields within the Centre's mission, including networks that emerge from public health activities supported by the Commission and operating the dedicated surveillance networks; exchange information, expertise and best practices, and facilitate the development and implementation of joint actions. eng ["institutional"] {"size": "6.071 records", "updatedp": "2021-01-04"} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ecdc.europa.eu/en/about-ecdc [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "HIV", "antimicrobial resistanc", "emerging and vector-borne diseases", "food- and waterborne diseases", "healthcare-associated infections", "infectious diseases", "influenza", "respiratory viruses", "sexually transmitted infections", "tuberculosis", "vaccine-preventable diseases", "viral hepatitis", "zoonoses"] [{"institutionName": "European Centre for Disease Prevention and Control", "institutionAdditionalName": ["ECDC"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ecdc.europa.eu/en", "institutionIdentifier": ["ROR:00s9v1h75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal notice", "policyURL": "https://www.ecdc.europa.eu/en/legal-notice"}, {"policyName": "Open access to scientific content", "policyURL": "https://www.ecdc.europa.eu/en/about-us/open-access-scientific-content"}, {"policyName": "The European Surveillance System (TESSy)", "policyURL": "https://www.ecdc.europa.eu/en/publications-data/european-surveillance-system-tessy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://www.ecdc.europa.eu/en/copyright"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ecdc.europa.eu/en/copyright"}] restricted [] [] {} [] [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "https://www.ecdc.europa.eu/en/rss-feeds", "syndicationType": "RSS"} GitHub: https://github.com/EU-ECDC 2020-04-24 2021-01-07 +r3d100013305 Facebook Data for Good eng [] https://dataforgood.fb.com/ ["biodbcore-001445"] ["covidsymptomsurvey@fb.com", "dataforgood@fb.com"] To help flattening the COVID-19 curve public health systems need better information on whether preventive measures are working and how the virus may spread. Facebook Data for Good offer maps on population movement that researchers and nonprofits are already using to understand the coronavirus crisis, using aggregated data to protect people’s privacy. eng ["institutional"] {"size": "", "updatedp": ""} 2020-04-06 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://dataforgood.fb.com/docs/covid19/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "business survey", "disaster maps", "disease prevention maps", "electrical distribution grid maps", "inclusive internet index", "movement range maps", "population density maps", "social connectedness index", "symptom map"] [{"institutionName": "Facebook", "institutionAdditionalName": ["FB"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.facebook.com/", "institutionIdentifier": ["ROR:01zbnvs85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataforgood.fb.com/tools/disease-prevention-maps/"}] closed [] [] yes {"api": "https://dataforgood.fb.com/docs/covid19/", "apiType": "other"} [] https://covidmap.umd.edu/api.html [] no unknown [] [] {} 2020-04-24 2021-07-28 +r3d100013307 ISRCTN Registry eng [{"additionalName": "International Standard Randomised Controlled Trial Number Registry", "additionalNameLanguage": "eng"}] http://www.isrctn.com/ ["biodbcore-001431"] ["info@isrctn.com"] The ISRCTN registry is a primary clinical trial registry recognised by WHO and ICMJE that accepts all clinical research studies (whether proposed, ongoing or completed), providing content validation and curation and the unique identification number necessary for publication. All study records in the database are freely accessible and searchable. ISRCTN supports transparency in clinical research, helps reduce selective reporting of results and ensures an unbiased and complete evidence base. ISRCTN accepts all studies involving human subjects or populations with outcome measures assessing effects on human health and well-being, including studies in healthcare, social care, education, workplace safety and economic development. eng ["disciplinary"] {"size": "19.698 studies", "updatedp": "2020-08-04"} 2000 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.isrctn.com/page/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "clinical trial"] [{"institutionName": "BioMed Central", "institutionAdditionalName": ["BMC"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.biomedcentral.com/", "institutionIdentifier": ["ROR:0009s9p66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "ISRCTN", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.isrctn.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions for the ISRCTN registry website", "policyURL": "http://www.isrctn.com/page/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://www.isrctn.com/page/terms"}] restricted [] [] {"api": "https://www.isrctn.com/page/faqs#findingTrialInfo", "apiType": "other"} ["DOI"] https://www.isrctn.com/page/faqs#usingISRCTN ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-04-24 2020-08-20 +r3d100013308 IUPHAR/BPS Guide to Pharmacology eng [{"additionalName": "GtoPdb", "additionalNameLanguage": "eng"}, {"additionalName": "Guide to Pharmacology", "additionalNameLanguage": "eng"}] https://www.guidetopharmacology.org ["FAIRsharing_doi:10.25504/FAIRsharing.f1dv0"] ["enquiries@guidetopharmacology.org"] The International Union of Basic and Clinical Pharmacology (IUPHAR) / British Pharmacological Society (BPS) Guide to PHARMACOLOGY is an expert-curated resource of ligand-activity-target relationships, the majority of which come from high-quality pharmacological and medicinal chemistry literature. It is intended as a “one-stop shop” portal to pharmacological information and its main aim is to provide a searchable database with quantitative information on drug targets and the prescription medicines and experimental drugs that act on them. In future versions we plan to add resources for education and training in pharmacological principles and techniques along with research guidelines and overviews of key topics. We hope that the IUPHAR/BPS Guide to PHARMACOLOGY (abbreviated as GtoPdb) will be useful for researchers and students in pharmacology and drug discovery and provide the general public with accurate information on the basic science underlying drug action. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.guidetopharmacology.org/about.jsp [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "guide to immunopharmacology", "guide to malaria pharmacology", "ligands"] [{"institutionName": "British Pharmacological Society", "institutionAdditionalName": ["BPS"], "institutionCountry": "GBR", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.bps.ac.uk/", "institutionIdentifier": ["ROR:02bmd7x67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "International Union of Basic and Clinical Pharmacology", "institutionAdditionalName": ["IUPHAR"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://iuphar.org/", "institutionIdentifier": ["ROR:0125syc65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medicines for Malaria Venture", "institutionAdditionalName": ["MMV"], "institutionCountry": "CHE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mmv.org/", "institutionIdentifier": ["ROR:00p9jf779"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Edinburgh", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ed.ac.uk/", "institutionIdentifier": ["ROR:01nrxwf90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": ["WT"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://www.guidetopharmacology.org/disclaimer.jsp"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] [] {"api": "https://www.guidetopharmacology.org/webServices.jsp", "apiType": "REST"} ["none"] https://www.guidetopharmacology.org/citing.jsp [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-04-24 2021-01-12 +r3d100013309 The Lens eng [{"additionalName": "Lens COVID-19 Datasets", "additionalNameLanguage": "eng"}] https://www.lens.org/ ["biodbcore-001466"] ["https://about.lens.org/contact-us/", "support@lens.org"] The Lens is building an open platform for Innovation Cartography. Specifically, the Lens serves nearly all of the patent documents in the world as open, annotatable digital public goods that are integrated with scholarly and technical literature along with regulatory and business data. eng ["other"] {"size": "127.471.322 patent records; 225.109.652 scholarly works; 369.131.518 biological sequences", "updatedp": "2021-01-12"} 2013-01-13 ["ara", "eng", "eng", "fra", "rus", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://about.lens.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "patents"] [{"institutionName": "Australia's Information and Communications Technology", "institutionAdditionalName": ["NICTA", "National ICT Australia"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nicta.com.au", "institutionIdentifier": ["ROR:03q397159"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bill & Melinda Gates Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gatesfoundation.org/", "institutionIdentifier": ["ROR:0456r8d26"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cambia", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cambia.org/", "institutionIdentifier": ["ROR:0307tfa50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Gordon and Betty Moore Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.moore.org/", "institutionIdentifier": ["ROR:006wxqw41"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lemelson Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.lemelson.org/", "institutionIdentifier": ["VIAF:305448487"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United States Patent and Trademark Office", "institutionAdditionalName": ["USPTO"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.uspto.gov/", "institutionIdentifier": ["ROR:0114yjq47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Queensland", "institutionAdditionalName": ["UQ"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uq.edu.au/", "institutionIdentifier": ["ROR:00rqy9422"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://about.lens.org/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] closed [] [] {"api": "https://about.lens.org/lens-scholarly-api-terms-of-use/", "apiType": "other"} [] https://about.lens.org/policies/#termsuse ["ORCID"] yes unknown [] [] {} 2020-04-24 2021-02-02 +r3d100013311 Netherlands Trial Register eng [{"additionalName": "NTR", "additionalNameLanguage": "eng"}] https://www.trialregister.nl/ ["RRID:SCR_010234", "RRID:nlx_156848", "biodbcore-001435"] ["nederlands.trialregister@gmail.com"] The NTR is a publicly accessible and freely searchable prospective trial register in which studies are registered that run in the Netherlands or are carried out by Dutch researchers. Primary Registries have been recognized and accepted by the WHO and ICMJE. If your study is included in one of these registers, you meet the registration requirements. For the Netherlands the NTR is the Primary Registry. eng ["disciplinary"] {"size": "8.725 trials", "updatedp": "2020-07-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.trialregister.nl/ [{"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "clinical trial"] [{"institutionName": "Netherlands Organisation for Health Research and Development", "institutionAdditionalName": ["Nederlandse organisatie voor gezondheidsonderzoek en zorginnovatie", "ZonMw"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.zonmw.nl/en/", "institutionIdentifier": ["ROR:01yaj9a77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University Medical Center Utrecht, Julius Center for Health Sciences and Primary Care, Cochrane Netherlands", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://netherlands.cochrane.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.trialregister.nl/"}] restricted [] [] no {} [] [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-04-24 2020-08-20 +r3d100013312 Novartis Clinical Trial Results Database eng [] https://www.novctrd.com/CtrdWeb/home.nov ["biodbcore-001465"] [] Novartis provides the technical results and trial summaries for patients from Phase 1 through 4 interventional trials for innovative products within one year of trial completion. A trial summary for patients is a trial result written in easier to understand language than the technical results. eng ["institutional"] {"size": "", "updatedp": ""} 2005 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.novartis.com/our-science/clinical-trials [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "clinical trial"] [{"institutionName": "Novartis", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.novartis.com/", "institutionIdentifier": ["ROR:02f9zrr09"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Novartis Publication Guidelines", "policyURL": "https://prod.novartis.com/sites/www.novartis.com/files/novartis_publication_guidelines_posting.pdf"}, {"policyName": "Terms of use", "policyURL": "https://www.novctrd.com/CtrdWeb/termsofuse.nov"}, {"policyName": "Transparency position", "policyURL": "https://www.novartis.com/sites/www.novartis.com/files/clinical-trial-data-transparency.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.novctrd.com/CtrdWeb/termsofuse.nov"}] restricted [] [] no {} [] [] yes yes [] [] {} 2020-04-24 2020-08-20 +r3d100013313 Surveillance Epidemiology of Coronavirus (COVID19) Under Research Exclusion eng [{"additionalName": "SECURE-IBD", "additionalNameLanguage": "eng"}] https://covidibd.org/ ["biodbcore-001439"] ["COVID.IBD@unc.edu"] Surveillance Epidemiology of Coronavirus (COVID19) Under Research Exclusion is an international, pediatric and adult database to monitor and report on outcomes of COVID-19 occurring in IBD patients. eng ["disciplinary"] {"size": "5.887 cases", "updatedp": "2021-04-21"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20515 Gastroenterology, Metabolism", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://covidibd.org/reporter-acknowledgment/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "inflammatory bowel disease", "risk calculator"] [{"institutionName": "Crohn's & Colitis Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.crohnscolitisfoundation.org/", "institutionIdentifier": ["ROR:0537aj111"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "FAQ", "policyURL": "https://covidibd.org/faq/"}, {"policyName": "Guidance Regarding Methods for De-identification of Protected Health Information in Accordance with the Health Insurance Portability and Accountability Act (HIPAA) Privacy Rule", "policyURL": "https://www.hhs.gov/hipaa/for-professionals/privacy/special-topics/de-identification/index.html"}, {"policyName": "Report a case", "policyURL": "https://global.redcap.unc.edu/surveys/?s=8LL398494N"}, {"policyName": "SECURE-IBD Data Sharing Application", "policyURL": "https://covidibd.org/wp-content/uploads/sites/22487/2020/10/Instructions-for-applicants_SECURE-IBD_v2.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://covidibd.org/faq/"}] restricted [] ["other"] {} [] https://covidibd.org/current-data/ [] unknown unknown [] [] {} Partners: https://covidibd.org/our-partners/ 2020-04-24 2021-04-22 +r3d100013314 ViralZone eng [] https://viralzone.expasy.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.tppk10", "RRID:SCR_006563", "RRID:nlx_144372"] ["https://viralzone.expasy.org/contact"] ViralZone is a SIB Swiss Institute of Bioinformatics web-resource for all viral genus and families, providing general molecular and epidemiological information, along with virion and genome figures. Each virus or family page gives an easy access to UniProtKB/Swiss-Prot viral protein entries. eng ["disciplinary"] {"size": "702 virus description pages; 128 families; 567 genera; 7 individual species; 216 viral molecular biology pages", "updatedp": "2020-12-23"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20403 Medical Microbiology, Molecular Infection Biology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://viralzone.expasy.org/872 [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "SARS-CoV-2", "genome", "proteomics", "virus"] [{"institutionName": "Swiss Institute of Bioinformatics", "institutionAdditionalName": ["SIB"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.sib.swiss/", "institutionIdentifier": ["ROR:002n09z45", "RRID:SCR_012816", "RRID:nlx_96822"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.expasy.org/terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://viralzone.expasy.org/872"}] restricted [] [] {} [] https://viralzone.expasy.org/ [] unknown unknown [] [] {} 2020-04-24 2021-09-09 +r3d100013315 VirHostNet eng [] http://virhostnet.prabi.fr ["FAIRsharing_doi:10.25504/FAIRsharing.m3316t"] ["navratil@prabi.fr"] VirHostNet is a bioinformatic information system dedidacted to the biocuration, data integration, reproducible systems-level analysis and visualisation of Virus / Host protein-protein interactions Network based on graph theory. VirHostNet is an open and gold standard knowledgebase shared in PSI MITAB 2.5 format using the PSICQUIC webservice and distributed through the NDEx platform. VirHostNet is FAIR and is recognized as a COVID-19 ressource by Elixir bio.tools, the European Virus Bioinformatics Center and FAIRsharing.org. eng ["disciplinary"] {"size": "40.005 virus-host and virus-virus manually biocurated protein-protein interactions", "updatedp": "2021-04-28"} 2007 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Networkbased data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19"] [{"institutionName": "FINOVI", "institutionAdditionalName": ["Fondation Innovations en Infectiologie", "Foundation Innovation in Infectiology"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.finovi.org", "institutionIdentifier": ["ROR:01bgymr29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut Fran\u00e7ais de Bioinformatique", "institutionAdditionalName": ["French Institute of Bioinformatics"], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.france-bioinformatique.fr/en/home/", "institutionIdentifier": ["ROR:045f7pv37"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "PRABI", "institutionAdditionalName": ["P\u00f4le Rh\u00f4ne-Alpes de Bioinformatique", "Rh\u00f4ne-Alpes Bioinformatics Cente"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "http://www.prabi.fr/", "institutionIdentifier": ["VIAF:12145541702696600064"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Lyon", "institutionAdditionalName": ["UDL", "Universit\u00e9 de Lyon"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.universite-lyon.fr", "institutionIdentifier": ["ROR:01rk35k63"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "The VirHostScape user guide", "policyURL": "https://pbil.univ-lyon1.fr/redmine/projects/virhostscape/wiki"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://virhostnet.prabi.fr/"}] closed [] ["other"] {"api": "http://virhostnet.prabi.fr:9090/psicquic/webservices/current/search/query/*", "apiType": "other"} [] https://virhostnet.prabi.fr/ [] yes unknown [] [] {} 2020-04-24 2021-10-25 +r3d100013316 WikiPathways eng [] http://wikipathways.org ["FAIRsharing_doi:10.25504/FAIRsharing.1x53qk", "RRID:SCR_002134", "RRID:nif-0000-20925"] ["https://www.wikipathways.org/index.php/Contact_Us"] WikiPathways was established to facilitate the contribution and maintenance of pathway information by the biology community. WikiPathways is an open, collaborative platform dedicated to the curation of biological pathways. WikiPathways thus presents a new model for pathway databases that enhances and complements ongoing efforts, such as KEGG, Reactome and Pathway Commons. Building on the same MediaWiki software that powers Wikipedia, we added a custom graphical pathway editing tool and integrated databases covering major gene, protein, and small-molecule systems. The familiar web-based format of WikiPathways greatly reduces the barrier to participate in pathway curation. More importantly, the open, public approach of WikiPathways allows for broader participation by the entire community, ranging from students to senior experts in each field. This approach also shifts the bulk of peer review, editorial curation, and maintenance to the community. eng ["disciplinary"] {"size": "2.874 pathways", "updatedp": "2020-06-11"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.wikipathways.org/index.php/WikiPathways:About [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "FAIR", "biological pathway", "biological process", "metabolomics"] [{"institutionName": "European Commission, Research & Innovation, Seventh Framework Programm - FP7", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/research/fp7/index_en.cfm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Maastricht University", "institutionAdditionalName": ["Universiteit Maastricht"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.maastrichtuniversity.nl/", "institutionIdentifier": ["ROR:02jz4aj89", "RRID:SCR_011359", "RRID:nlx_144070"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": ["ROR:04q48ey07", "RRID:SCR_012887", "RRID:nlx_inv_1005108"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Netherlands Bioinformatics Centre", "institutionAdditionalName": ["NBIC"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nbic.nl/", "institutionIdentifier": ["ROR:01r0k6965", "RRID:SCR_012879", "RRID:nif-0000-03485"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NuGO", "institutionAdditionalName": ["Vereniging European Nutrigenomics Organisation"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nugo.org/", "institutionIdentifier": ["ROR:0174sz637"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open PHACTS Foundation", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.openphactsfoundation.org", "institutionIdentifier": ["RRID:SCR_000495", "RRID:nlx_158351"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Transnational University Limburg", "institutionAdditionalName": ["TUL"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.tul.edu/default.asp", "institutionIdentifier": ["ROR:02xyaf767"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "WikiPathways Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wikipathways.org/index.php/WikiPathways:Team", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.wikipathways.org/index.php/WikiPathways:License_Terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] yes {"api": "https://www.wikipathways.org/index.php/Help:WikiPathways_Webservice/API", "apiType": "REST"} [] https://www.wikipathways.org/index.php/How_to_cite_WikiPathways [] yes yes [] [] {} Pathways are encoded in GPML format and created with PathVisio. Genes, proteins and metabolites are linked to other databases with the BridgeDb web service. 2020-04-24 2021-09-09 +r3d100013317 Open Heritage 3D eng [] http://openheritage3d.org/ [] ["admin@openheritage3d.org", "https://openheritage3d.org/contactPage", "scott.lee@cyark.org"] As 3D and reality capture strategies for heritage documentation become more widespread and available, there has emerged a growing need to assist with guiding and facilitating accessibility to data, while maintaining scientific rigor, cultural and ethical sensitivity, discoverability, and archival standards. In response to these areas of need, The Open Heritage 3D Alliance (OHA) has developed as an advisory group governing the Open Heritage 3D initiative. This collaborative advisory group are among some of the earliest adopters of 3D heritage documentation technologies, and offer first-hand guidance for best practices in data management, sharing, and dissemination approaches for 3D cultural heritage projects. The founding members of the OHA, consist of experts and organizational leaders from CyArk, Historic Environment Scotland, and the University of South Florida Libraries, who together have significant repositories of legacy and on-going 3D research and documentation projects. These groups offer unique insight into not only the best practices for 3D data capture and sharing, but also have come together around concerns dealing with standards, formats, approach, ethics, and archive commitment. Together, the OHA has begun the journey to provide open access to cultural heritage 3D data, while maintaining integrity, security, and standards relating to discoverable dissemination. Together, the OHA will work to provide democratized access to primary heritage 3D data submitted from donors and organizations, and will help to facilitate an operation platform, archive, and organization of resources into the future. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://openheritage3d.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["3D", "LiDAR", "cultural heritage", "laser", "photogrammetry", "scan"] [{"institutionName": "CyArk", "institutionAdditionalName": ["Cyber Archive"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cyark.org/", "institutionIdentifier": ["VIAF:317109224"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Google Arts & Cultures", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://artsandculture.google.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Historic Environment Scotland", "institutionAdditionalName": ["HES"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.historicenvironment.scot/", "institutionIdentifier": ["ROR:01h5xyq84"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kacyra Family Foundation", "institutionAdditionalName": ["KFF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://kacyrafamilyfoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Heritage 3D Alliance", "institutionAdditionalName": ["OHA", "Open Heritage Project"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://openheritage3d.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of South Florida Libraries", "institutionAdditionalName": ["USF Libraries"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lib.usf.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Submission policy", "policyURL": "https://openheritage3d.org/joinusPage"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] {} ["DOI"] [] no unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-04-27 2021-02-02 +r3d100013319 COEMS Open Data eng [{"additionalName": "COEMS Open Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "Continuous Observation of Embedded Multicore Systems Data", "additionalNameLanguage": "eng"}] http://dkan.isp.uni-luebeck.de [] ["vsto@hvl.no"] As part of the Open Data Pilot that the COEMS EU H2020 project (https://www.coems.eu/) is participating in, COEMS Open Data Portal devotes to collect software and hardware trace data from both academy and industry partners. Our focus lies on the detection and identification of non-deterministic software failures caused by race conditions and access to inconsistent data. Therefore we will provide an efficient real-time access and analysis for operating safe software systems. eng ["disciplinary"] {"size": "100 resources; 13 datasets; 4 data stories; 3 groups;", "updatedp": "2020-04-29"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://dkan.isp.uni-luebeck.de/about [{"name": "Configuration data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["TeSSLa", "asm", "cpn", "hardware", "software", "trace data"] [{"institutionName": "COEMS Participants", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.coems.eu/consortium/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.coems.eu/contact/"]}, {"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t zu L\u00fcbeck, Institut f\u00fcr Softwaretechnik und Programmiersprachen", "institutionAdditionalName": ["University of Luebeck, Institute for Softwareengineering and Programming Languages"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.isp.uni-luebeck.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["office@isp.uni-luebeck.de"]}] [{"policyName": "About, Responsible of Content", "policyURL": "http://dkan.isp.uni-luebeck.de/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://dkan.isp.uni-luebeck.de/about"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {} COEMS Team: https://www.coems.eu/team/ COEMS Consortium: https://www.coems.eu/consortium/ 2020-04-29 2020-05-01 +r3d100013320 Materials Project eng [] https://materialsproject.org [] ["feedback@materialsproject.org", "heavy.api.use@materialsproject.org"] The Materials Project produces one of the world's foremost databases of computed information about inorganic, crystalline materials, along with providing powerful web-based apps to help analyze this information to help the design of novel materials. Access is provided free-of-charge with an API available and under a permissive license. eng ["disciplinary"] {"size": "24.515 inorganic compounds; 52.827 bandstructures; 35.336 molecules; 530.243 nanoporous materials", "updatedp": "2020-05-06"} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://materialsproject.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Li-ion Battery", "Pourbaix diagrams", "Redox Flow Battery - RFB", "crystal structures", "molecular compounds", "nanoporous materials", "phase diagrams", "target solubility", "x-ray absorption spectra"] [{"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["LBNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov", "institutionIdentifier": ["ROR:02jbv0t02"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://materialsproject.org/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] restricted [] [] yes {"api": "https://materialsproject.org/open", "apiType": "REST"} [] https://materialsproject.org/citing [] unknown unknown [] [] {} Materials Project is covered by Clarivate Data Citation Index . Partners and Support: https://materialsproject.org/about#partners 2020-04-29 2021-08-11 +r3d100013322 Portal de Datos Abiertos UNAM, Colecciones Universitarias spa [{"additionalName": "UNAM Open Data Portal", "additionalNameLanguage": "eng"}] https://datosabiertos.unam.mx/ [] ["joaquin@dgru.unam.mx"] The UNAM opens the door to share millions of open data for the benefit of education and research. With this portal (www.datosabiertos.unam.mx) the university shares records of digital collections, academic research projects, repositories and publications to generate new knowledge. This way, it works as an online access point to search university collections authorized for their use, reuse and free redistribution by anyone, without copyright restrictions, patents or other control mechanisms, as long as the Terms of Free Use for UNAM Open Data are respected. The UNAM Open Data Portal contains data, digital objects and geospatial layers of biological collections, artistic work, music, veterinary medicine, university projects, among others. It allows databases to be consulted and downloaded in open and structured formats. One of the most outstanding collections is the National Herbarium of Mexico (MEXU), with almost two million records and high resolution images of plants around the world, mainly collected in Mexico. MEXU is the largest herbarium in the country and in Latin America; it’s among one of the ten most active herbariums in the world. eng ["institutional"] {"size": "1.914.332 records; 57 collections; Over a million digital objects such as images and hi-resolution images, audio and PDF documents.", "updatedp": "2020-05-04"} 2016-03-09 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://dgru.unam.mx/index.php/portal-de-datos-abiertos-unam-colecciones-universitarias-2/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Direcci\u00f3n General de Repositorios Universitarios", "institutionAdditionalName": [], "institutionCountry": "MEX", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://dgru.unam.mx/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tilam@dgru.unam.mx"]}, {"institutionName": "National Autonomous University of Mexico", "institutionAdditionalName": ["UNAM", "Universidad Nacional Aut\u00f3noma de M\u00e9xico"], "institutionCountry": "MEX", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": ["ROR:01tmp8f25", "RRID:SCR_004360", "RRID:nlx_151584"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Free Use of UNAM Open Data", "policyURL": "https://datosabiertos.unam.mx/informacion/termsoffree.html"}, {"policyName": "Upload DataBase Policies: Lineamientos para la integraci\u00f3n y publicaci\u00f3n de las colecciones universitarias digitales en el Portal de Datos Abiertos UNAM, Colecciones Universitarias", "policyURL": "https://dgru.unam.mx/wp-content/uploads/2019/10/D.Li_.Ga_CCUD_2015_09_24_Integracion_Publicacion_Colecciones_PDA_UNAM.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://datosabiertos.unam.mx/informacion/termsoffree.html"}] restricted [{"dataUploadLicenseName": "Upload DataBase Policies: Lineamientos para la integraci\u00f3n y publicaci\u00f3n de las colecciones universitarias digitales en el Portal de Datos Abiertos UNAM, Colecciones Universitarias", "dataUploadLicenseURL": "https://dgru.unam.mx/wp-content/uploads/2019/10/D.Li_.Ga_CCUD_2015_09_24_Integracion_Publicacion_Colecciones_PDA_UNAM.pdf"}] [] no {"api": "https://datosabiertos.unam.mx/api/ada/", "apiType": "REST"} ["none"] https://datosabiertos.unam.mx/informacion/termsoffree.html ["none"] yes yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Institutional identifier: Each record has a unique identifier built with three main elements: institution code, collection code (dataset) and register number (catalogue number). This identifier is also included in the URL assigned to each record. All collections published at the UNAM open data portal have a metadata scheme with differente international standards reference. Most of their dictionaries can be consulted in spanish in the following page: https://dgru.unam.mx/index.php/portal-de-datos-abiertos-unam-colecciones-universitarias-2/ 2020-05-01 2020-05-08 +r3d100013323 WorldData.AI eng [] https://worlddata.ai/ [] ["contactus@worlddata.ai"] WorldData.AI comes with a built-in workspace – the next-generation hyper-computing platform powered by a library of 3.3 billion curated external trends. WorldData.AI allows you to save your models in its “My Models Trained” section. You can make your models public and share them on social media with interesting images, model features, summary statistics, and feature comparisons. Empower others to leverage your models. For example, if you have discovered a previously unknown impact of interest rates on new-housing demand, you may want to share it through “My Models Trained.” Upload your data and combine it with external trends to build, train, and deploy predictive models with one click! WorldData.AI inspects your raw data, applies feature processors, chooses the best set of algorithms, trains and tunes multiple models, and then ranks model performance. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.welcome.ai/zdaly [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "business performance", "models"] [{"institutionName": "WorldData.AI", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://worlddata.ai/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Zdaly", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://zdaly.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://zdaly.com/products-2/#worlddata"]}] [{"policyName": "Terms of Service", "policyURL": "https://worlddata.ai/Home/TermsOfService"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://worlddata.ai/Home/TermsOfService"}] closed [] [] {} [] [] unknown unknown [] [] {} 2020-05-04 2021-10-11 +r3d100013325 EBRAINS eng [] https://ebrains.eu/ ["FAIRsharing_doi:10.25504/FAIRsharing.XO6ppp"] ["https://ebrains.eu/support/", "info@ebrains.eu"] EBRAINS offers one of the most comprehensive platforms for sharing brain research data ranging in type as well as spatial and temporal scale. We provide the guidance and tools needed to overcome the hurdles associated with sharing data. The EBRAINS data curation service ensures that your dataset will be shared with maximum impact, visibility, reusability, and longevity, https://ebrains.eu/services/data-knowledge/share-data. Find data - the user interface of the EBRAINS Knowledge Graph - allows you to easily find data of interest. EBRAINS hosts a wide range of data types and models from different species. All data are well described and can be accessed immediately for further analysis. eng ["disciplinary"] {"size": "820 datasets", "updatedp": "2020-09-03"} 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ebrains.eu/about [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "electron microscopy data", "electrophysiology", "histology"] [{"institutionName": "Centre national de la recherche scientifique", "institutionAdditionalName": ["CNRS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/", "institutionIdentifier": ["ROR:02feahw73", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "2019-11-15", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Union", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://europa.eu/european-union/index_en", "institutionIdentifier": ["ROR:019w4f821", "RRID:SCR_011219", "RRID:nlx_67420"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.fz-juelich.de", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "15 November 2019", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oslo", "institutionAdditionalName": ["UiO"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uio.no/english/", "institutionIdentifier": ["ROR:01xtthb56"], "responsibilityStartDate": "2019-11-15", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne", "institutionAdditionalName": ["EPFL"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.epfl.ch/en/", "institutionIdentifier": ["ROR:02s376052", "RRID:SCR_018245"], "responsibilityStartDate": "2019-11-15", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions for Service", "policyURL": "https://kg.ebrains.eu/search-terms-of-use.html?v=2.2"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://kg.ebrains.eu/search-terms-of-use.html?v=2.2"}] restricted [{"dataUploadLicenseName": "Share Data", "dataUploadLicenseURL": "https://ebrains.eu/services/data-knowledge/share-data"}] [] {"api": "https://kg.humanbrainproject.eu/apidoc/index.html?url=/apispec/spring%3Fgroup%3D00_external", "apiType": "REST"} ["DOI"] https://kg.ebrains.eu/search-terms-of-use.html?v=2.2#citations [] unknown unknown [] [] {} The portal will be transferred to the EBRAINS AISBL, Brussels, Belgium, in 2020. Current EBRAINS services are delivered by the EU Human Brain Project and is open for inclusion of other infrastructures relevant for neuroscience. 2020-05-05 2021-07-28 +r3d100013328 Software Heritage Archive eng [] https://archive.softwareheritage.org/ ["biodbcore-001832"] ["https://www.softwareheritage.org/contact/", "info@softwareheritage.org"] The long term goal of the Software Heritage initiative is to collect all publicly available software in source code form together with its development history, replicate it massively to ensure its preservation, and share it with everyone who needs it. The Software Heritage archive is growing over time as we crawl new source code from software projects and development forges. eng ["disciplinary"] {"size": "8.495.509.954 source files", "updatedp": "2020-07-08"} 2015 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.softwareheritage.org/mission/heritage/ [{"name": "Configuration data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["research software", "web archive"] [{"institutionName": "French Institute for Research in Computer Science and Automation", "institutionAdditionalName": ["INRIA", "Institut de recherche en informatique et en automatique"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.inria.fr/en", "institutionIdentifier": ["ROR:02kvxyf05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Software Heritage", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.softwareheritage.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "United Nations Educational, Scientific and Cultural Organization", "institutionAdditionalName": ["UNESCO"], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://en.unesco.org/", "institutionIdentifier": ["ROR:04h4z8k05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content policy", "policyURL": "https://www.softwareheritage.org/legal/content-policy/"}, {"policyName": "Ethical Charter for using the archive data", "policyURL": "https://www.softwareheritage.org/legal/users-ethical-charter/"}, {"policyName": "Software Heritage API", "policyURL": "https://www.softwareheritage.org/legal/api-terms-of-use/"}, {"policyName": "Terms of use for bulk access", "policyURL": "https://www.softwareheritage.org/legal/bulk-access-terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.html"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://www.softwareheritage.org/legal/bulk-access-terms-of-use/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.softwareheritage.org/legal/bulk-access-terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.softwareheritage.org/legal/bulk-access-terms-of-use/"}] open [] [] yes {"api": "https://archive.softwareheritage.org/api/", "apiType": "other"} ["other"] [] no yes [] [] {} is covered by Elsevier. 2020-05-06 2021-09-03 +r3d100013329 NanoTox Knowledge Base eng [{"additionalName": "NanoCommons Knowledge Base", "additionalNameLanguage": "eng"}, {"additionalName": "NanoSolveIT Knowledge Base", "additionalNameLanguage": "eng"}] https://ssl.biomax.de/nanocommons/ [] ["nanocommons@biomax.com"] The NanoTox Knowlege Base provides access to Nanomaterials, their physico-chemical characterisations, toxicological assays and environmental data as well as computational model based descriptors. eng ["disciplinary"] {"size": "420 nanomaterials", "updatedp": "2020-05-12"} 2019-03-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20510 Toxicology and Occupational Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://ssl.biomax.de/nanocommons/bioxm_portal/bin/view/BioXM/Help [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["environmental distribution", "nanomaterial", "nanoparticles", "physico-chemical charatcterisation", "safe-by-design", "toxicology"] [{"institutionName": "Biomax Informatics AG", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.biomax.com/", "institutionIdentifier": ["ROR:02h1y5y54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["dieter.maier@biomax.com"]}, {"institutionName": "European Commission, HORIZON 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://cordis.europa.eu/project/id/731032"]}] [{"policyName": "Terms", "policyURL": "https://ssl.biomax.de/nanocommons/bioxm_portal/bin/view/BioXM/TermsLegal"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ssl.biomax.de/nanocommons/bioxm_portal/bin/view/BioXM/TermsLegal"}] restricted [] ["other"] {} ["none"] [] unknown unknown [] [] {} Information about NanoCommons: https://infrastructure.nanocommons.eu/ 2020-05-06 2020-05-14 +r3d100013330 BioProject eng [] https://www.ncbi.nlm.nih.gov/bioproject/ ["FAIRsharing_doi:10.25504/FAIRsharing.aqhv1y", "OMICS_05338", "RRID:SCR_004801", "RRID:nlx_143909"] ["bioprojecthelp@ncbi.nlm.nih.gov"] The BioProject database is a searcheable collection of complete and incomplete (in-progress) large-scale molecular projects including genome sequencing and assembly, transcriptome, metagenomic, annotation, expression and mapping projects. BioProject provides a central point to link to all data associated with a project in the NCBI molecular and literature databases. eng ["disciplinary"] {"size": "433.425 projects", "updatedp": "2020-05-12"} 2011-05 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/bioproject/docs/faq/#what-is-a-bioproject [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["GWAS", "epigenomic analyses", "genome sequencing", "genome-wide association studies", "transcriptome sequencing"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BioProject", "policyURL": "https://www.ncbi.nlm.nih.gov/books/NBK54016/"}, {"policyName": "The NCBI Handbook / BioProject", "policyURL": "https://www.ncbi.nlm.nih.gov/books/NBK169438/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [] [] no {"api": "https://ftp.ncbi.nlm.nih.gov/bioproject/", "apiType": "FTP"} ["none"] [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-05-07 2020-05-14 +r3d100013331 ClinVar eng [] https://www.ncbi.nlm.nih.gov/clinvar/ ["FAIRsharing_doi:10.25504/FAIRsharing.wx5r6f", "RRID:SCR_006169", "RRID:nlx_151671"] ["clinvar@ncbi.nlm.nih.gov"] ClinVar is a freely accessible, public archive of reports of the relationships among human variations and phenotypes, with supporting evidence. ClinVar thus facilitates access to and communication about the relationships asserted between human variation and observed health status, and the history of that interpretation. ClinVar processes submissions reporting variants found in patient samples, assertions made regarding their clinical significance, information about the submitter, and other supporting data. The alleles described in submissions are mapped to reference sequences, and reported according to the HGVS standard. ClinVar then presents the data for interactive users as well as those wishing to use ClinVar in daily workflows and other local applications. ClinVar works in collaboration with interested organizations to meet the needs of the medical genetics community as efficiently and effectively as possible eng ["disciplinary"] {"size": "113.610 records", "updatedp": "2020-05-11"} 2013 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "20108 Anatomy", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.ncbi.nlm.nih.gov/clinvar/intro/ [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["disease", "gene", "genotype", "phenotype", "sequence variation"] [{"institutionName": "National Center for Biotechnology Information", "institutionAdditionalName": ["NCBI"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ncbi.nlm.nih.gov/", "institutionIdentifier": ["ROR:02meqm098", "RRID:SCR_006472", "RRID:nif-0000-00139"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessing and using data in ClinVar", "policyURL": "https://www.ncbi.nlm.nih.gov/clinvar/docs/maintenance_use/"}, {"policyName": "Overview", "policyURL": "https://ftp.ncbi.nlm.nih.gov/pub/factsheets/Factsheet_ClinVar.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ftp.ncbi.nlm.nih.gov/pub/factsheets/Factsheet_ClinVar.pdf"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.ncbi.nlm.nih.gov/home/about/policies/"}] restricted [{"dataUploadLicenseName": "Submission to ClinVar", "dataUploadLicenseURL": "https://www.ncbi.nlm.nih.gov/clinvar/docs/submit/"}] [] yes {"api": "https://ftp.ncbi.nlm.nih.gov/pub/clinvar/", "apiType": "FTP"} ["none"] https://www.ncbi.nlm.nih.gov/clinvar/docs/maintenance_use/ [] unknown unknown [] [] {} Sources of data in ClinVar: https://www.ncbi.nlm.nih.gov/clinvar/docs/datasources/ Guide to using files from the ftp site or accessed via e-utilities: https://www.ncbi.nlm.nih.gov/clinvar/docs/ftp_primer/ 2020-05-07 2021-11-22 +r3d100013333 BIRD eng [{"additionalName": "lagre og dele forskningsdata", "additionalNameLanguage": "nor"}, {"additionalName": "store and share research data", "additionalNameLanguage": "eng"}] https://bird.unit.no/ [] ["birdsupport@unit.no"] BIRD is a digital service that collects, preserves, and distributes digital material. Repositories are important tools for preserving an organization's legacy; they facilitate digital preservation and scholarly communication. eng ["institutional", "other"] {"size": "52 public resources", "updatedp": "2020-05-11"} ["eng", "nor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://bird.unit.no/about/bird [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "BI Norwegian Business School", "institutionAdditionalName": ["Handelsh\u00f8yskolen BI"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bi.edu/", "institutionIdentifier": ["ROR:03ez40v33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Norwegian Directorate\u200b for ICT and Joint Services \u200bin Higher Education and Research\u200b\u200b", "institutionAdditionalName": ["IKT og fellestjenester i h\u00f8yere utdanning og forskning", "UNIT"], "institutionCountry": "NOR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unit.no/en/", "institutionIdentifier": ["Wikidata:Q55097783"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Norwegian Institute of Bioeconomy Research", "institutionAdditionalName": ["NIBIO", "Norsk institutt for bio\u00f8konomi"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.nibio.no/en", "institutionIdentifier": ["ROR:04aah1z61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Norwegian University of Science and Technology", "institutionAdditionalName": ["NTNU", "Noregs teknisk-naturvitskaplege universitet", "Norges teknisk-naturvitenskapelige universitet"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ntnu.edu", "institutionIdentifier": ["ROR:059dkdx38"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["research-data@ntnu.no"]}, {"institutionName": "Norwegian Veterinary Institute", "institutionAdditionalName": ["NVI", "Veterin\u00e6rinstituttet"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.vetinst.no/eng", "institutionIdentifier": ["ROR:05m6y3182"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy statement for Bird: The service in brief", "policyURL": "https://www.unit.no/sites/default/files/media/filer/2019/08/Personvernerkl%C3%A6ring-Bird_en.pdf"}, {"policyName": "Versioning ; Landing page", "policyURL": "https://bird.unit.no/information/faq"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] yes {"api": "https://hdl.handle.net/11250/2607898", "apiType": "other"} ["DOI", "hdl"] [] yes yes [] [] {} 2020-05-07 2021-08-24 +r3d100013336 Regionaal Archief Zutphen (part of Gemeente Zutphen) nld [{"additionalName": "RAZ", "additionalNameLanguage": "nld"}] https://erfgoedcentrumzutphen.nl/ [] ["erfgoed@zutphen.nl"] The Heritage Centre represents the four keepers of historical collections of the municipality of Zutphen: Archeology, Monuments, Museum Zutphen, Regional Archive Zutphen (includes the municipalities of Brummen and Lochem) This portal means to be the online gateway to the municipal heritage in Zutphen and wants to provide you with the opportunity to search all their collections at once. eng ["other"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://erfgoedcentrumzutphen.nl/images/Archief/e-depot/Bewaar_en_beheerstrategie_e-depot_RAZ_11.pdf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["archaeology", "charters", "monuments", "museum"] [{"institutionName": "Erfgoed centrum Zutphen", "institutionAdditionalName": ["Heritage Centre Zutphen"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://erfgoedcentrumzutphen.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["erfgoed@zutphen.nl"]}] [{"policyName": "CoreTrustSeal Assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/03/Regionaal-Archief-Zutphen-part-of-Gemeente-Zutphen.pdf"}, {"policyName": "The long-term policy plan RAZ 2017-2020", "policyURL": "https://erfgoedcentrumzutphen.nl/images/Archief/e-depot/Beleidsplan-RAZ-2017-2020.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://www.coretrustseal.org/wp-content/uploads/2020/03/Regionaal-Archief-Zutphen-part-of-Gemeente-Zutphen.pdf"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://erfgoedcentrumzutphen.nl/deelnemers/erfgoedcentrum/wat-wij-doen"}] restricted [{"dataUploadLicenseName": "Service contract", "dataUploadLicenseURL": "https://erfgoedcentrumzutphen.nl/images/Archief/e-depot/DVO-Archiefbeheer-Lochem-en-RAZ.pdf"}] ["other"] {} ["hdl"] [] unknown yes ["other"] [] {} 2020-05-20 2020-10-02 +r3d100013337 Paris Astronomical Data Centre eng [{"additionalName": "PADC", "additionalNameLanguage": "eng"}] https://padc.obspm.fr/ [] ["direction.ov@obspm.fr"] Paris Astronomical Data Centre aims at providing VO access to its data collections, at participating to international standards developments, at implementing VO compliant simulation codes, data visualization and analysis software. This centre hosts high level permanent activities for tools and data distribution under the format of reference services. These sustainable services are recognized at the national level as CNRS labeled services. The various activities are organised as portals whose functions are to provide visibility and information on the projects and to encourage collaboration. eng ["disciplinary"] {"size": "about 400 TB", "updatedp": "2021-03-15"} 2013 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "308 Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://padc.obspm.fr/about/structure/ [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["astronomy", "astrophysics", "atomic and molecular physics", "heliophysics", "planets", "solar system"] [{"institutionName": "Observatoire de Paris", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.observatoiredeparis.psl.eu/?lang=en", "institutionIdentifier": ["ROR:029nkcm90"], "responsibilityStartDate": "1667", "responsibilityEndDate": "_", "institutionContact": ["https://www.observatoiredeparis.psl.eu/-contacts-74-.html?lang=en"]}] [{"policyName": "Terms and conditions", "policyURL": "https://padc.obspm.fr/about/article/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://padc.obspm.fr/about/article/terms-and-conditions"}] restricted [] ["other"] no {"api": "http://voparis-registry.obspm.fr/vo/oai", "apiType": "OAI-PMH"} ["DOI"] https://padc.obspm.fr/about/article/acknowledging-padc [] unknown unknown ["other"] [{"metadataStandardName": "AVM - Astronomy Visualization Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/avm-astronomy-visualization-metadata"}, {"metadataStandardName": "FITS - Flexible Image Transport System", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fits-flexible-image-transport-system"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}, {"metadataStandardName": "SPASE Data Model", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/spase-data-model"}] {} Organized as a series of independent portals. Each portal has its own API and protocol. The above entry page (https://padc.obspm.fr/services/) dispatches to individual portal pages 2020-05-20 2021-03-22 +r3d100013339 Datanator eng [] https://www.datanator.info ["FAIRsharing_DOI:10.25504/FAIRsharing.NmIgg9"] ["info@karrlab.org"] Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://datanator.info/about [{"name": "Raw data", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["bioinformatics", "computational biology", "data integration", "metabolomics", "molecular biology", "proteomics", "systems biology", "transcriptomics", "whole-cell models"] [{"institutionName": "Icahn School of Medicine at Mount Sinai", "institutionAdditionalName": ["Mount Sinai School of Medicine"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://icahn.mssm.edu", "institutionIdentifier": ["ROR:04a9tmd77"], "responsibilityStartDate": "2017-02-17", "responsibilityEndDate": "", "institutionContact": ["karr@mssm.edu"]}, {"institutionName": "Mount Sinai School of Medicine, Institute for Multiscale Biology & Genomics, Karr Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.karrlab.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["karr@mssm.edu"]}] [{"policyName": "Tutorial", "policyURL": "https://datanator.info/help"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://github.com/KarrLab/datanator/blob/master/DATA_LICENSE"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] [] yes {"api": "https://api.datanator.info", "apiType": "REST"} [] [] unknown yes [] [] {} Currently, Datanator includes measured metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction rate parameters integrated from BRENDA, ECMDB, MODOMICS, PAX-DB, the Protein Ontology (PRO), SABIO-RK, YMDB, and numerous publications. 2020-05-23 2021-11-16 +r3d100013342 FHSTP Phaidra eng [{"additionalName": "Phaidra", "additionalNameLanguage": "eng"}] https://phaidra.fhstp.ac.at/ ["OpenDOAR:4231"] ["bibliothek@fhstp.ac.at"] Phaidra is the Institutional Repository and Digital Asset Management System of the St. Pölten University of Applied Sciences. The researchers and students at the University can use it to secure and archive their digital objects such as data, Open Access Publications and dissertations long-term as well as make them widely available to the public. Phaidra provides access to the objects using metadata in English and German. The Repository plays an important part in knowledge transfer in Austria and worldwide. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "St. P\u00f6lten University of Applied Sciences", "institutionAdditionalName": ["Fachhochschule St. P\u00f6lten"], "institutionCountry": "AUT", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.fhstp.ac.at/en?set_language=en", "institutionIdentifier": ["ROR:039a2re55"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["bibliothek@fhstp.ac.at"]}, {"institutionName": "University of Vienna", "institutionAdditionalName": ["Universit\u00e4t Wien"], "institutionCountry": "AUT", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://www.univie.ac.at/", "institutionIdentifier": ["ROR:03prydq77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["phaidra@univie.ac.at"]}] [{"policyName": "St. P\u00f6lten University of Applied Sciences Open Access Policy", "policyURL": "https://www.fhstp.ac.at/de/mediathek/pdfs/infoblaetter/richtlinie-open-access-20180102_engl-version.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://phaidra.fhstp.ac.at/terms_of_use/show_terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.de/documents/gpl.de.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.en.html"}] restricted [] ["Fedora"] yes {"api": "https://fedora.phaidra.univie.ac.at/oaiprovider/?verb=Identify", "apiType": "OAI-PMH"} [] ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2020-05-27 2020-06-09 +r3d100013343 ReDATA eng [{"additionalName": "UA Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "University of Arizona Research Data Repository", "additionalNameLanguage": "eng"}] https://arizona.figshare.com [] ["data-management@arizona.edu", "https://data.library.arizona.edu/data-management/about"] ReDATA is the research data repository for the University of Arizona and a sister repository to the UA Campus Repository (which is intended for document-based materials). The UA Research Data Repository (ReDATA) serves as the institutional repository for non-traditional scholarly outputs resulting from research activities by University of Arizona researchers. Depositing research materials (datasets, code, images, videos, etc.) associated with published articles and/or completed grants and research projects, into ReDATA helps UA researchers ensure compliance with funder and journal data sharing policies as well as University data retention policies. ReDATA is designed for materials intended for public availability. eng ["institutional"] {"size": "15 items", "updatedp": "2020-06-02"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.library.arizona.edu/data-repository [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "University of Arizona", "institutionAdditionalName": ["UA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arizona.edu/", "institutionIdentifier": ["ROR:03m2x1q45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Arizona, University Libraries", "institutionAdditionalName": ["UAL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://new.library.arizona.edu/", "institutionIdentifier": ["VIAF:137735985"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Figshare Disclaimer", "policyURL": "https://figshare.com/terms"}, {"policyName": "Information Security & Privacy", "policyURL": "https://www.arizona.edu/information-security-privacy"}, {"policyName": "UA Research Data Repository Deposit Agreement", "policyURL": "https://uarizona.co1.qualtrics.com/jfe/form/SV_39rs7lHGLUYFK7P"}, {"policyName": "UA Research Data Repository Policies", "policyURL": "https://osf.io/7qmxw/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://choosealicense.com/licenses/apache-2.0/"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://choosealicense.com/licenses/bsd-3-clause/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://rightsstatements.org/vocab/InC/1.0/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://arizona.figshare.com/rss/portal/arizona", "syndicationType": "RSS"} 2020-05-29 2021-06-15 +r3d100013344 Peek eng [{"additionalName": "KUDAS", "additionalNameLanguage": "eng"}, {"additionalName": "Kyoto University Digital Archive System", "additionalNameLanguage": "eng"}, {"additionalName": "\u4eac\u90fd\u5927\u5b66\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b7\u30b9\u30c6\u30e0", "additionalNameLanguage": "jpn"}] https://peek.rra.museum.kyoto-u.ac.jp/app/?ln=en [] ["https://www.rra.museum.kyoto-u.ac.jp/en/contact/", "kurra-info@inet.museum.kyoto-u.ac.jp"] “Peek” is a digital archive system to provide access to digitized data of Research Resource Archive, Kyoto University (KURRA). It includes various materials that were made within educational and research activities in Kyoto University. A central feature of KURRA is that it treats materials other than books and specimens: photographs, films, recordings, field books, records of research meetings, lecture notes, and manuscripts, from primary sources. eng ["institutional"] {"size": "", "updatedp": ""} 2011-03-15 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://peek.rra.museum.kyoto-u.ac.jp/app/sup/about.html?ln=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["manuscripts", "multidisciplinary", "non-current records", "research material"] [{"institutionName": "Kyoto University, Research Resource Archive", "institutionAdditionalName": ["KURRA", "\u4eac\u90fd\u5927\u5b66\u7814\u7a76\u8cc7\u6e90\u30a2\u30fc\u30ab\u30a4\u30d6"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rra.museum.kyoto-u.ac.jp/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Kyoto University Museum", "institutionAdditionalName": ["\u4eac\u90fd\u5927\u5b66\u7dcf\u5408\u535a\u7269\u9928"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.museum.kyoto-u.ac.jp/index_e.htm", "institutionIdentifier": ["ROR:05gwbwn20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://peek.rra.museum.kyoto-u.ac.jp/app/sup/terms.html?ln=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://peek.rra.museum.kyoto-u.ac.jp/app/sup/terms.html?ln=en"}] restricted [] ["other"] yes {} ["ARK"] https://peek.rra.museum.kyoto-u.ac.jp/app/sup/terms.html?ln=en [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-05-29 2021-06-15 +r3d100013347 SciLifeLab Data Repository eng [{"additionalName": "SciLifeLab figshare", "additionalNameLanguage": "eng"}, {"additionalName": "Science for Life Laboratory research repository", "additionalNameLanguage": "eng"}] https://scilifelab.figshare.com [] ["datacentre@scilifelab.se"] This repository accepts data from life science researchers and service units in Sweden. The repository is operated by SciLifeLab, which is the national infrastructure for life science and environmental research in Sweden. This repository replaces NBIS DOI repository: http://doi.org/10.17616/R3CW52 eng ["disciplinary", "institutional"] {"size": "22 items", "updatedp": "2020-06-03"} 2020-04-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}] https://www.scilifelab.se/data/repository [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "biodiversity", "bioimaging", "bioinformatics", "biomedicine", "cell biology", "chemical biology", "drug discovery", "genomics", "proteins"] [{"institutionName": "Science for Life Laboratory", "institutionAdditionalName": ["SciLifeLab"], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.scilifelab.se", "institutionIdentifier": ["ROR:04ev03g22"], "responsibilityStartDate": "2020-04-01", "responsibilityEndDate": "", "institutionContact": ["datacentre@scilifelab.se"]}] [{"policyName": "Figshare Disclaimer", "policyURL": "https://figshare.com/terms"}, {"policyName": "SciLifeLab Data Repository Conditions of Use", "policyURL": "https://www.scilifelab.se/data/repository"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.html"}] restricted [] ["other"] yes {"api": "https://docs.figshare.com", "apiType": "REST"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "RDF Data Cube Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/rdf-data-cube-vocabulary"}] {"syndication": "https://scilifelab.figshare.com/rss/portal/scilifelab", "syndicationType": "RSS"} SciLifeLab Data Repository is covered by Clarivate Data Citation Index 2020-06-02 2021-08-11 +r3d100013348 Humadoc repositorio spa [] http://humadoc.mdp.edu.ar/site/ ["OpenDOAR:9625"] ["http://humadoc.mdp.edu.ar:8080/feedback", "humadocrepositorio@gmail.com"] Humadoc is a digital service that collects, preserves and distributes digital material corresponding to the intellectual production of the Faculty of Humanities of the National University of Mar del Plata. Repositories are important tools for preserving an institution's legacy; they facilitate digital preservation and academic communication. eng ["institutional"] {"size": "38 datasets", "updatedp": "2020-06-04"} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] http://humadoc.mdp.edu.ar/site/?indice=1 [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] [] [{"institutionName": "National University of Mar del Plata", "institutionAdditionalName": ["UNMdP", "Universidad Nacional de Mar del Plata"], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www2.mdp.edu.ar/index.php/en/", "institutionIdentifier": ["ROR:055eqsb67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National University of Mar del Plata, Faculty of Humanities", "institutionAdditionalName": ["Universidad Nacional de Mar del Plata, Facultad de Humanidades"], "institutionCountry": "ARG", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://humanidades.mdp.edu.ar/", "institutionIdentifier": ["VIAF:129608802"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content and Preservation Policies", "policyURL": "http://humadoc.mdp.edu.ar/site/?indice=1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] ["DSpace"] no {"api": "http://humadoc.mdp.edu.ar:8080/oai/request", "apiType": "OAI-PMH"} ["hdl"] [] no unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://humadoc.mdp.edu.ar:8080/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-06-03 2020-06-10 +r3d100013351 DASSH - The Archive for Marine Species and Habitats Data eng [{"additionalName": "Data Archive for Seabed Species and Habitats", "additionalNameLanguage": "eng"}] https://www.dassh.ac.uk [] ["dassh.enquiries@mba.ac.uk"] Accredited through the MEDIN partnership, and core-funded by the Department for the Environment, Food and Rural Affairs (Defra) and the Scottish Government, DASSH provides tools and services for the long-term curation, management and publication of marine species and habitats data, within the UK and internationally. Working closely with partners and data providers we are committed to the FAIR Data Principles, to make marine biodiversity data Findable, Accessible, Interoperable and Reusable. DASSH is a flagship initiative of the Marine Biological Association (MBA), and builds on the MBA's historic role in marine science. Through partnerships with other UK and European data centres DASSH contributes to data portals including the NBN Atlas, EMODnet, EurOBIS and GBIF. On an international scale DASSH is also the UK node of the Ocean Biogeographic Information System (OBIS), and an Associated Data Unit of the International Oceanographic Data and Information Exchange (IODE), giving the Data Archive Centre global recognition. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.dassh.ac.uk [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "Remote Operated Vehicle (ROV) survey", "biodiversity data", "biotope distribution map", "broad scale remote acoustic survey", "diver survey", "dredging survey", "grab sampling", "intertidal survey", "sedimentary cores", "trawling survey"] [{"institutionName": "Department for Environment Food and Rural Affairs", "institutionAdditionalName": ["DEFRA"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.uk/government/organisations/department-for-environment-food-rural-affairs", "institutionIdentifier": ["ROR:00tnppw48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Marine Biological Association of the United Kingdom", "institutionAdditionalName": ["MBA"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mba.ac.uk/", "institutionIdentifier": ["ROR:0431sk359"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scottish Government", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.scot/#slide/1", "institutionIdentifier": ["ROR:04v2xmd71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DASSH - Quality assurance of data and metadata", "policyURL": "https://www.dassh.ac.uk/assets/pdf/MBA_Quality_Assurance_procedures_v2.pdf"}, {"policyName": "DASSH Data Policy", "policyURL": "https://www.dassh.ac.uk/data/data-policy"}, {"policyName": "Terms and Conditions of Data Access and Use for DASSH", "policyURL": "https://www.dassh.ac.uk/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dassh.ac.uk/terms-and-conditions"}, {"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] restricted [] [] no {} [] [] no yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2020-06-05 2020-06-10 +r3d100013352 Bilkent University Institutional Repository eng [{"additionalName": "BUIR", "additionalNameLanguage": "eng"}, {"additionalName": "DSpace@Bilkent", "additionalNameLanguage": "eng"}] http://repository.bilkent.edu.tr/ ["OpenDOAR:3533"] ["automation@bilkent.edu.tr", "tanerkorkmaz@bilkent.edu.tr"] This site provides access to the research output of the institution. The interface is available in English. Users may set up email or RSS feeds to be alerted to new content. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "tur"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] http://repository.bilkent.edu.tr/page/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["IEEE", "computer science", "economics", "engineering", "history", "materials science", "multidisciplinary", "nanotechnology"] [{"institutionName": "Bilkent University", "institutionAdditionalName": [], "institutionCountry": "TUR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://w3.bilkent.edu.tr/bilkent/", "institutionIdentifier": ["ROR:02vh8a032", "RRID:SCR_001474", "RRID:nlx_95218"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Bilkent University Library IT", "institutionAdditionalName": [], "institutionCountry": "TUR", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.bilkent.edu.tr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content Policy", "policyURL": "http://repository.bilkent.edu.tr/page/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Submission Policy", "dataUploadLicenseURL": "http://repository.bilkent.edu.tr/page/policies"}] ["DSpace"] {"api": "http://repository.bilkent.edu.tr/oai/request?verb=Identify", "apiType": "OAI-PMH"} [] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-06-08 2021-02-08 +r3d100013353 TIB Digital Long-Term Archive eng [{"additionalName": "Digital Preservation at TIB", "additionalNameLanguage": "eng"}] https://www.tib.eu/en/publishing-archiving/digital-preservation [] ["https://www.tib.eu/en/publishing-archiving/digital-preservation#c1751", "thomas.baehr@tib.eu"] TIB’s core task is to provide science and industry with both elementary and highly technical specialist and researchinformation. TIB has globally unique collections in the subject areas of science and technology, as well as architecture,chemistry, computer science, mathematics and physics. Besides textual materials, the library’s collections also includeknowledge objects such as research data, 3D models and audiovisual media. The TIB has assumed responsibility for the long-term preservation and availability of the digital materials it collects and documents, as well as their interpretability for use by different target groups. To this end, it has created the necessary infrastructure and guarantees the permanent provision of both material and human resources. Search for research data search at: https://www.tib.eu/en/search-discover/research-data eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.tib.eu/en/tib/policies/preservation-policy? [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Technische Informationsbibliothek", "institutionAdditionalName": ["German National Library of Science and Technology", "Leibniz Information Centre for Science and Technology - University Library", "Leibniz-Informationszentrum Technik und Naturwissenschaften - Universit\u00e4tsbibliothek", "TIB"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tib.eu/en/", "institutionIdentifier": ["ROR:04aj4c181"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/06/TIB-Digital-Long-Term-Archive.pdf"}, {"policyName": "Preservation Policy of the three National German Libraries", "policyURL": "https://www.tib.eu/en/tib/policies/preservation-policy-of-the-three-german-national-subject-libraries"}, {"policyName": "TIB Digital Preservation Policy", "policyURL": "https://www.tib.eu/en/service/tib-preservation-policy"}, {"policyName": "Terms of Use", "policyURL": "https://www.tib.eu/en/service/terms-of-use/"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.tib.eu/fileadmin/extern/knm/regular_agreement.pdf"}] restricted [{"dataUploadLicenseName": "Open Access License Agreement", "dataUploadLicenseURL": "https://www.tib.eu/fileadmin/extern/knm/OpenAccess-License-NTM.pdf"}] ["other"] yes {"api": "https://www.tib.eu/en/tib/open-data/", "apiType": "other"} ["DOI"] [] unknown yes ["other", "other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-06-09 2021-02-24 +r3d100013354 Open Power System Data eng [{"additionalName": "OPSD", "additionalNameLanguage": "eng"}] https://open-power-system-data.org/ [] ["hirth@neon-energie.de"] Open Power System Data is a free-of-charge data platform dedicated to electricity system researchers. We collect, check, process, document, and publish data that are publicly available but currently inconvenient to use. The project is a service provider to the modeling community: a supplier of a public good. Learn more about its background or just go ahead and explore the data platform. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://open-power-system-data.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["power system modelling"] [{"institutionName": "DIW Berlin, Abteilung Energie, Verkehr, Umwelt", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.diw.de/de/diw_01.c.604205.de/abteilung_energie__verkehr__umwelt.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Eidgen\u00f6ssische Technische Hochschule", "institutionAdditionalName": ["ETH Z\u00fcrich"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cp.ethz.ch/", "institutionIdentifier": ["ROR:05a28rw58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Europa-Universtit\u00e4t Flensburg, Abteilung Energie- und Umweltmanagement", "institutionAdditionalName": ["EUM"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-flensburg.de/eum/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Neon - Neue Energie\u00f6konomik", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://neon-energie.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Berlin, Fakult\u00e4t Wirtschaft und Managment, Volkswirtschaftslehre und Wirtschaftsrecht, Fachgebiet Wirtschafts- und Infrastrukturpolitik", "institutionAdditionalName": ["WIP"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wip.tu-berlin.de/menue/fachgebiet_wirtschafts-_und_infrastrukturpolitik_wip/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Step-by-step manual", "policyURL": "https://open-power-system-data.org/step-by-step"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://open-power-system-data.org/legal#Specific_vs_establishedlicenses"}] restricted [{"dataUploadLicenseName": "MIT License", "dataUploadLicenseURL": "https://opensource.org/licenses/MIT"}] [] {} ["DOI"] [] unknown unknown [] [] {} 2020-06-10 2020-08-20 +r3d100013355 GePaRD eng [{"additionalName": "German Pharmacoepidemiological Research Database", "additionalNameLanguage": "eng"}] https://www.bips-institut.de/forschung/forschungsinfrastrukturen/gepard.html [] ["gepard(at)leibniz-bips.de"] Since 2004, the Leibniz Institute for Prevention Research and Epidemiology – BIPS has been working on the establishment and maintenance of the project-based German Pharmacoepidemiological Research Database (short GePaRD). GePaRD is based on claims data from statutory health insurance (SHI) providers and currently includes information on about 20 million persons who have been insured with one of the participating providers since 2004. Per data year, there is information on approximately 17% of the general population from all geographical regions of Germany. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20405 Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["drug dispensation", "drug safety", "outpatient and inpatient diagnoses", "outpatient and inpatient services", "statutory health insurance (SHI) providers", "vaccine safety"] [{"institutionName": "Leibniz-Institut f\u00fcr Pr\u00e4ventionsforschung und Epidemiologie", "institutionAdditionalName": ["BIPS", "Leibniz Institute for Prevention Research and Epidemiology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bips-institut.de/home.html", "institutionIdentifier": ["ROR:02c22vc57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GePaRD description", "policyURL": "https://www.bips-institut.de/fileadmin/bips/images/gepard/GePaRD_description_V1.9.pdf"}] {"databaseAccessType": "closed", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.bips-institut.de/fileadmin/bips/images/gepard/GePaRD_description_V1.9.pdf"}] closed [] [] {} ["other"] [] unknown unknown ["RatSWD"] [] {} 2020-06-10 2021-03-23 +r3d100013356 Data Center - SAFE eng [{"additionalName": "Data Center - Sustainable Architecture for Finance in Europe", "additionalNameLanguage": "eng"}, {"additionalName": "SAFE-FDZ", "additionalNameLanguage": "eng"}] https://safe-frankfurt.de/de/data-center.html [] ["datacenter@safe-frankfurt.de", "dataroom@safe-frankfurt.de"] Research on German and European financial markets suffers from a lack of pan-European data sets. Also, existing sets do not provide a standard identification of, for example, companies. Therefore, researchers often utilize data from the United States where the integration of different databases is more advanced. As a consequence, empirical analyses are mostly based on non-European data. Because of the institutional differences, political recommendations that result from these analyses cannot – or only in a limited scope – be transferred to Europe. Against this background, the SAFE Research Data Center not only draws on the usual international data sources but also creates new European data sets, brings existing data together and processes them. The aim is to place the central research areas of SAFE on a common European data footing. Data access is provided by 'SAFE data sources' https://datacenter.safefrankfurt.de/datacenter/_databases/ and 'FiF - Repositorium für Forschungsdaten aus dem Finanzbereich (Preview version)' https://fif.safe-frankfurt.de/xmlui/ eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11201 Economic Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://safe-frankfurt.de/about-safe.html [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Bloomberg", "Central Banks", "ECB Securites Lending", "Eurex", "European financial market", "Factset", "GC Pooling", "German financial market", "German historial financial data", "bonds and fixed income", "derivatives/options", "economic indicators", "stockprices/markets"] [{"institutionName": "Leibniz-Institut f\u00fcr Finanzmarktforschung SAFE", "institutionAdditionalName": ["Leibniz Institute for Financial Research SAFE"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://safe-frankfurt.de/", "institutionIdentifier": ["ROR:05wxywg93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Good scientific practice SAFE", "policyURL": "https://safe-frankfurt.de/about-safe/good-scientific-practice.html"}, {"policyName": "Terms of Use", "policyURL": "https://datacenter.safefrankfurt.de/datacenter/documents/Terms_of_Use_Datacenter_01-04-2021.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] closed [] ["DSpace"] {} ["hdl"] [] unknown unknown ["RatSWD"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-06-10 2021-04-02 +r3d100013358 Infectious Diseases Data Observatory eng [{"additionalName": "IDDO", "additionalNameLanguage": "eng"}] https://www.iddo.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.cF5x1V", "ROR:04tp3cz81"] ["https://www.iddo.org/about-us/contact-us", "info@iddo.org"] The Infectious Diseases Data Observatory (IDDO) assembles clinical, laboratory and epidemiological data on a collaborative platform to be shared with the research and humanitarian communities. The data are analysed to generate reliable evidence and innovative resources that enable research-driven responses to the major challenges of emerging and neglected infections. Access is available to individual patient data held for malaria and Ebola virus disease. Resources for visceral leishmaniasis, schistosomiasis and soil transmitted helminths, Chagas disease and COVID-19 are under development. IDDO contains the following repositories : COVID-19 Data Platform, Chagas Data Platform, Schistosomiasis & Soil Transmitted Helminths Data Platform, Visceral Leishmaniasis Data Platform, Ebola Data Platform, WorldWide Antimalarial Resistance Network (WWARN) eng ["disciplinary"] {"size": "400 malaria studies; 22 Ebola datasets", "updatedp": "2020-06-22"} ["eng", "fra", "spa"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.iddo.org/about-us/our-work [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "Chagas disease", "Ebola virus disease", "clinical trials", "data discovery methods", "health care", "individual participant-level data (IPD)", "malaria", "medical treatments", "medicine quality", "schistosomiasis", "soil-transmitted helminths", "visceral leishmaniasis"] [{"institutionName": "University of Oxford, Centre for Tropical Medicine and Global Health", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.tropicalmedicine.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.tropicalmedicine.ox.ac.uk/about/contact"]}, {"institutionName": "WorldWide Antimalarial Resistance Network", "institutionAdditionalName": ["WWARN"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.wwarn.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.wwarn.org/contact", "info@wwarn.org"]}] [{"policyName": "Ebola Data Platform Data Access Guidelines", "policyURL": "https://www.iddo.org/ebola/data-access-guidelines"}, {"policyName": "Ebola Data Platform Data Transfer Agreement", "policyURL": "https://www.iddo.org/ebola/data-transfer-agreement"}, {"policyName": "IDDO Data Access Guidelines", "policyURL": "https://www.iddo.org/document/iddo-data-access-guidelines"}, {"policyName": "IDDO Data Transfer Agreement", "policyURL": "https://www.iddo.org/document/iddo-data-transfer-agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.iddo.org/data-sharing/contributing-data"}] restricted [{"dataUploadLicenseName": "Ebola Data Platform Terms of Submission", "dataUploadLicenseURL": "https://www.iddo.org/ebola/terms-of-submission"}, {"dataUploadLicenseName": "IDDO Terms of Submission", "dataUploadLicenseURL": "https://www.iddo.org/data-sharing/contributing-data"}] [] {} [] https://www.iddo.org/document/iddo-data-transfer-agreement [] unknown yes [] [] {} IDDO data curation standards follow the Clinical Data Interchange Standards Consortium (CDISC) - www.cdisc.org 2020-06-17 2021-11-09 +r3d100013359 KORDS eng [{"additionalName": "King's College London Open Research Data System", "additionalNameLanguage": "eng"}] https://kcl.figshare.com/ [] ["research.data@kcl.ac.uk"] KORDS is a research data repository service providing long term storage and public access for datasets that support published research and/or have long term value. eng ["institutional"] {"size": "90 records", "updatedp": "2021-10-25"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20528 Dentistry, Oral Surgery", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20609 Biological Psychiatry", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.kcl.ac.uk/researchsupport/managing/preserve [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "King's College, London", "institutionAdditionalName": ["KCL"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kcl.ac.uk", "institutionIdentifier": ["GRID:13097.3c", "ISNI:0000000123226764", "OpenVIVO:100009360", "ROR:0220mzb33", "Wikidata:Q245247"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "KORDS Data Deposit Agreement", "policyURL": "https://www.kcl.ac.uk/researchsupport/assets/datadepositagreement.pdf"}, {"policyName": "Research Data Management Policy", "policyURL": "https://www.kcl.ac.uk/governancezone/assets/research/research-data-management-policy.pdf"}, {"policyName": "Research Data Management Procedure", "policyURL": "https://www.kcl.ac.uk/governancezone/assets/research/research-data-management-procedure.pdf"}, {"policyName": "Research Publications Policy", "policyURL": "https://www.kcl.ac.uk/governancezone/assets/research/research-publications-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org"}, {"dataLicenseName": "other", "dataLicenseURL": "https://spdx.org/licenses/MIT-open-group.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.html"}] restricted [] ["other"] {} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-06-17 2021-10-25 +r3d100013361 BioSimulations eng [] https://www.biosimulations.org ["RRID:SCR_018733"] ["karr@mssm.edu"] BioSimulations is a web application for sharing and re-using biomodels, simulations, and visualizations of simulations results. BioSimulations supports a wide range of modeling frameworks (e.g., kinetic, constraint-based, and logical modeling), model formats (e.g., BNGL, CellML, SBML), and simulation tools (e.g., COPASI, libRoadRunner/tellurium, NFSim, VCell). BioSimulations aims to help researchers discover published models that might be useful for their research and quickly try them via a simple web-based interface. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://biosimulations.org/about [{"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["computational model", "mathematical model", "simulation", "systems biology"] [{"institutionName": "Center for Reproducible Biomodeling Modeling", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://reproduciblebiomodels.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Icahn School of Medicine at Mount Sinai", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://icahn.mssm.edu/", "institutionIdentifier": ["ROR:04a9tmd77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Icahn School of Medicine at Mount Sinai , Institute for Multiscale Biology & Genomics, Karr Lab", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.karrlab.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["karr@mssm.edu"]}, {"institutionName": "National Institute of General Medical Sciences", "institutionAdditionalName": ["NIGMS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nigms.nih.gov/", "institutionIdentifier": ["ROR:04q48ey07", "RRID:SCR_012887", "RRID:nlx_inv_1005108"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88", "RRID:SCR_011417", "RRID:nlx_inv_1005116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health, National Institute of Biomedical Imaging and Bioengineering", "institutionAdditionalName": ["NIH, IBIB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nibib.nih.gov/", "institutionIdentifier": ["RRID:SCR_011422", "RRID:nlx_inv_1005103"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Connecticut Health Center, Center for Cell Analysis and Modeling", "institutionAdditionalName": ["UConn Health, Richard D. Berlin Center for Cell Analysis and Modeling"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://health.uconn.edu/cell-analysis-modeling/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Code of conduct", "policyURL": "https://github.com/reproducible-biomedical-modeling/Biosimulations/blob/dev/CODE_OF_CONDUCT.md"}, {"policyName": "Privacy policy", "policyURL": "https://github.com/reproducible-biomedical-modeling/Biosimulations/blob/dev/PRIVACY_POLICY.md"}, {"policyName": "Terms of service", "policyURL": "https://github.com/reproducible-biomedical-modeling/Biosimulations/blob/dev/TERMS_OF_SERVICE.md"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://biosimulations.org/about/help"}, {"dataLicenseName": "other", "dataLicenseURL": "https://github.com/reproducible-biomedical-modeling/Biosimulations/blob/dev/LICENSE"}] restricted [] ["other"] yes {"api": "https://app.swaggerhub.com/search", "apiType": "REST"} [] [] unknown yes [] [] {} 2020-06-18 2021-08-25 +r3d100013362 Mountain Scholar eng [{"additionalName": "Digital Collections of Colorado", "additionalNameLanguage": "eng"}] https://mountainscholar.org/ ["OpenDOAR:1267"] ["https://mountainscholar.org/contact", "library_digitaladmin@colostate.edu"] Mountain Scholar is an open access repository service that collects, preserves, and provides access to digitized library collections and other scholarly and creative works from several academic entities within the states of Colorado and Wyoming. eng ["institutional"] {"size": "113.345 items", "updatedp": "2020-06-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://lib.colostate.edu/find/csu-digital-repository/csu-digital-repository-about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Colorado Mesa University", "institutionAdditionalName": ["CMU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.coloradomesa.edu/", "institutionIdentifier": ["ROR:0451s5g67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Colorado School of Mines", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mines.edu/", "institutionIdentifier": ["ROR:04raf6v53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Colorado State University Libraries", "institutionAdditionalName": ["CSU Libraries"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lib.colostate.edu/", "institutionIdentifier": ["VIAF:128558908"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library_digitaladmin@Mail.Colostate.edu"]}, {"institutionName": "Colorado State University Pueblo", "institutionAdditionalName": ["CSU\u2013Pueblo"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.csupueblo.edu/", "institutionIdentifier": ["ROR:02gn3zg65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Colorado Anschutz Medical Campus", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cuanschutz.edu/", "institutionIdentifier": ["ROR:03wmf1y16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Colorado Colorado Springs", "institutionAdditionalName": ["UCCS"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uccs.edu/", "institutionIdentifier": ["ROR:054spjc55"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Wyoming", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uwyo.edu/", "institutionIdentifier": ["ROR:01485tq96"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Colorado State University's Mountain Scholar Policies, Guidelines, and Forms", "policyURL": "https://lib.colostate.edu/find/csu-digital-repository/policies-guidelines-forms/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Submission Agreement", "dataUploadLicenseURL": "https://lib.colostate.edu/find/csu-digital-repository/policies-guidelines-forms/submission-agreement/"}] ["DSpace"] no {"api": "https://mountainscholar.org/oai/", "apiType": "OAI-PMH"} ["DOI", "hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://mountainscholar.org/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-06-20 2021-08-25 +r3d100013364 Open Access Power-Grid Frequency Database eng [{"additionalName": "OSF repository Open Access Power-Grid Frequency Database", "additionalNameLanguage": "eng"}] https://osf.io/m43tg/ [] ["leonardo.rydin@gmail.com"] This repository stores and links the openly available power-grid frequency recordings across the globe. This database is comprised of open data existent across three dimensions: - TSO data: Transmission System's Operator (TSO) recordings made public; - Research projects: Open-data database research projects; - Independent Gatherings: Industrial, private, or personal recordings that were made publicly available. eng ["disciplinary"] {"size": "26.5 GB", "updatedp": "2020-06-25"} 2020-06-15 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "310 Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "404 Heat Energy Technology, Thermal Machines, Fluid Mechanics", "scheme": "DFG"}, {"name": "40401 Energy Process Engineering", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://lrydin.github.io/Power-Grid-Frequency/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["power grids", "power-grid frequency"] [{"institutionName": "European Union, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "German Research Foundation", "institutionAdditionalName": ["DFG", "Deutsche Forschungsgemeinschaft"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Uncertainty Quantification project", "institutionAdditionalName": ["Helmholtz UQ"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-uq.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Helmholtz Association", "institutionAdditionalName": ["HGF", "Helmholtz-Gemeinschaft Deutscher Forschungszentren"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz.de/en/", "institutionIdentifier": ["ROR:0281dp749"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Science Framework", "institutionAdditionalName": ["OSF"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://osf.io/", "institutionIdentifier": ["RRID:SCR_017419"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://osf.io/support"]}, {"institutionName": "Project Power-grid frequency database", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lrydin.github.io/Power-Grid-Frequency/project/#the-project", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oslo, Research Council of Norway, Stochastics for Time-Space Risk Models Project", "institutionAdditionalName": ["UiO, STORM"], "institutionCountry": "NOR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mn.uio.no/math/english/research/projects/storm/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Scientific Aim", "policyURL": "https://lrydin.github.io/Power-Grid-Frequency/project/#scientific-aim"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://lrydin.github.io/Power-Grid-Frequency/project/#collaboration"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://lrydin.github.io/Power-Grid-Frequency/database/#publicly-available-data-from-tsos"}] restricted [] ["other"] {"api": "https://api.osf.io/v2/nodes/m43tg/", "apiType": "REST"} [] https://osf.io/by5hu/wiki/home/ [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-06-25 2020-08-20 +r3d100013365 IAGOS Data Centre eng [{"additionalName": "IAGOS Data Center", "additionalNameLanguage": "eng"}, {"additionalName": "IAGOS Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "In-service Aircraft for a Global Observing System", "additionalNameLanguage": "eng"}] http://www.iagos-data.fr/ [] ["damien.boulanger@obs-mip.fr"] IAGOS aims to provide long-term, regular and spatially resolved in situ observations of the atmospheric composition. The observation systems are deployed on a fleet of 10 to 15 commercial aircraft measuring atmospheric chemistry concentrations and meteorological fields. The IAGOS Data Centre manages and gives access to all the data produced within the project. eng ["disciplinary"] {"size": "4 data products based on data acquired during 62.000 flights", "updatedp": "2020-06-29"} 1994-08-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.iagos.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "aerosols", "aircraft", "carbon monoxide", "climate change", "clouds", "greenhouse gases", "ozone", "reactive gases", "water vapour"] [{"institutionName": "Forschungszentrum J\u00fclich", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "French National Centre for Scientific Research", "institutionAdditionalName": ["CNRS", "Centre National de la Recherche Scientifique"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.cnrs.fr/en", "institutionIdentifier": ["ROR:02feahw73", "RRID:SCR_011247", "RRID:nlx_98477"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IAGOS-AISBL", "institutionAdditionalName": ["In-Service Aircraft for a Global Observing System AISBL"], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iagos.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute for Biogeochemistry", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Biogeochemie"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.bgc-jena.mpg.de/index.php/Main/HomePage", "institutionIdentifier": ["ROR:051yxp643"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Manchester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.manchester.ac.uk/research/", "institutionIdentifier": ["ROR:027m9bs27", "RRID:SCR_004996", "RRID:nlx_74265"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.iagos-data.fr/#CMSConsultPlace:DATA_POLICY"}] restricted [] ["other"] yes {} ["DOI", "hdl"] https://www.datacite.org/services/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Related Projects: https://www.iagos.org/related-projects/ The IAGOS Data Base also contains the data from IAGOS and from the precursor projects MOZAIC and CARIBIC (http://www.caribic-atmospheric.com/) In order to be a trustworthy data repository, the IAGOS Data Center aims at achieving the CoreTrustSeal certification by 2021 2020-06-29 2020-08-20 +r3d100013366 Most Wiedzy Open Research Data Catalog eng [{"additionalName": "Most Wiedzy Katalog Danych Badawczych", "additionalNameLanguage": "pol"}] https://mostwiedzy.pl/en/open-research-data/ [] ["https://pg.edu.pl/most/bridge-of-data/contact", "open-data@pg.edu.pl"] The nature of the ‘Bridge of Data’ project is to design and build a platform that allows collecting, searching, analyzing and sharing open research data and to provide it with unique data collected from the three most important Pomeranian universities: Gdańsk University of Technology, Medical University of Gdańsk and the University of Gdańsk. These data will be made available free of charge to the scientific community, entrepreneurs and the public. A bridge will be built to allow reuse of Open Research Data. The available research data will be described by standards developed by dedicated, experienced scientific teams. The metadata will allow other external computer systems to interpret the collected data. ORD descriptions will also include data reuse or reduction scenarios to facilitate further processing. eng ["institutional"] {"size": "", "updatedp": ""} 2020-01-01 ["eng", "pol"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://pg.edu.pl/most/bridge-of-data/the-nature-of-the-project [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Gdansk University of Technology", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://pg.edu.pl/", "institutionIdentifier": ["ROR:006x4sc24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical University of Gdansk", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://gumed.edu.pl/", "institutionIdentifier": ["ROR:019sbgd69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ministry of Digital Affairs, Digital Poland Project Centre", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.pl/web/digitalization/digital-poland-projects-centre", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Gdansk", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ug.edu.pl/", "institutionIdentifier": ["ROR:011dv8m48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and conditions", "policyURL": "https://mostwiedzy.pl/en/regulamin"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://mostwiedzy.pl/en/regulamin"}] restricted [] [] yes {"api": "https://mostwiedzy.pl/en/rest-api", "apiType": "REST"} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-07-01 2020-08-20 +r3d100013369 Repositório de Dados Científicos por [] https://dados.rcaap.pt/?locale=en [] ["https://dados.rcaap.pt/feedback"] The Scientific Data Repository Hosting Service (SARDC) intends to provide a platform for free access to data created and used in the scope of the research work of national institutions. It is characterized by the availability of a repository platform ( DSpace ) and support for the entire data maintenance component, such as backups, monitoring, updating, security, etc., thus keeping researchers out of the concern of these tasks. Finally, the SARDC service intends to make the data deposited in the repository available through the RCAAP Portal. eng ["disciplinary"] {"size": "2.045 records", "updatedp": "2020-07-14"} ["eng", "por"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://projeto.rcaap.pt/index.php/lang-en/sobre-o-rcaap/enquadramento [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["APIS", "ESACB", "LNEC", "Statistical Package for the Social Sciences -SPSS", "social research", "survey"] [{"institutionName": "Comiss\u00e3o Europeia, Programa Operacional \"Sociedade do Conhecimento\"", "institutionAdditionalName": ["EC, POSC", "European Commission, \"Information Society\" Operational Programme"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/regional_policy/pt/atlas/programmes/2000-2006/portugal/information-society-operational-programme-posc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Funda\u00e7\u00e3o para a Ci\u00eancia e a Tecnologia", "institutionAdditionalName": ["FCT"], "institutionCountry": "PRT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fct.pt/index.phtml.en", "institutionIdentifier": ["ROR:00snfqn58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Project Partner", "institutionAdditionalName": [], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://projeto.rcaap.pt/index.php/lang-en/sobre-o-rcaap/instituicoes-participantes", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "RCAAP", "institutionAdditionalName": ["Reposit\u00f3rios Cient\u00edficos de Acesso Aberto de Portugal"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.rcaap.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Rep\u00fablica Portuguesa", "institutionAdditionalName": ["Government of Portugal"], "institutionCountry": "PRT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.portugal.gov.pt/", "institutionIdentifier": ["ROR:02kmtwp90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data and Metadata criteria", "policyURL": "http://www.apis.ics.ulisboa.pt/en/data-and-metadata-criteria/"}, {"policyName": "RCAAP Avisos Legais", "policyURL": "http://projeto.rcaap.pt/index.php/lang-en/avisos-legais"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://projeto.rcaap.pt/index.php/lang-en/como-auto-arquivar-documentos/direitos-de-autor"}] restricted [] ["DSpace"] {} ["hdl"] [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://dados.rcaap.pt/feed/atom_1.0/10400.20/1", "syndicationType": "ATOM"} The Portuguese Archive of Social Information (APIS http://www.apis.ics.ulisboa.pt/en/mission/) is part of Repositório de Dados Científicos. 2020-07-09 2020-08-20 +r3d100013370 Pedestrian Dynamics Data Archive eng [{"additionalName": "Data archive of experimental data from studies about pedestrian dynamics", "additionalNameLanguage": "eng"}] https://ped.fz-juelich.de/da/ [] ["a.seyfried@fz-juelich.de", "m.boltes@fz-juelich.de"] This data archive of experiments studying the dynamics of pedestrians is build up by the Institute for Advanced Simulation 7:Civil Safety Research of Forschungszentrum Jülich. This web page provides our own data of experiments. Data of research colleagues can be found here: https://ped.fz-juelich.de/db/doku.php?id=extdb For most of the experiments, the video recordings, as well as the resulting trajectories of single pedestrians, are available. The experiments were performed under laboratory conditions to focus on the influence of a single variable. You are very welcome to use our data for further research, as long as you name the source of the data. If you have further questions feel free to contact Armin Seyfried or Maik Boltes. For most of the experiments, the video recordings, as well as the resulting trajectories of single pedestrians, are available. The experiments were performed under laboratory conditions to focus on the influence of a single variable. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "407 Systems Engineering", "scheme": "DFG"}, {"name": "40705 Human Factors, Ergonomics, Human-Machine Systems", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://ped.fz-juelich.de/da/doku.php?id=start [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["civil safety", "crowds", "pedestrian dynamics", "pedestrian traffic"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/en/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmbf.de/en/index.html", "institutionIdentifier": ["ROR:04pz7b180", "RRID:SCR_005066", "RRID:nlx_143994"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["J\u00fclich Research Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/portal/EN/Home/home_node.html", "institutionIdentifier": ["ROR:02nv7yv05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "J\u00fclich Research Centre, Institute for Advanced Simulation, Civil Safety Research", "institutionAdditionalName": ["FZJ, IAS, IAS-7", "Forschungszentrum J\u00fclich GmbH, Institute for Advanced Simulation, Zivile Sicherheitsforschung (IAS-7)"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fz-juelich.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] yes {} ["DOI"] https://ped.fz-juelich.de/da/doku.php?id=start [] yes unknown [] [] {} The automatic extraction of pedestrian trajectories from video recordings was done mostly with PeTrack. The trajectories are coded for the post parts line by line: person, frame, x, y (, z) sometimes followed by additional information like the head orientation or an individual code number. The framerate can be found in the documentation or in a comment line at the beginning of the trajectory files. 2020-07-10 2020-09-11 +r3d100013372 OpenLandMap.org eng [{"additionalName": "LandGIS", "additionalNameLanguage": "eng"}] https://openlandmap.org [] ["support@opengeohub.org"] Global environmental (climate, vegetation, soils, land degradation, hydrology, land cover) layers representing the land mask. Hosted by the OpenGeoHub foundation OpenLandMap.org is a data portal to the world's environmental data representing land mask (land cover, vegetation, soil, climate, terrain data and similar). OpenLandMap.org is the web-mapping component of the LandGIS (Geographic Information System for land data). eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-11-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://opengeohub.org/about-landgis [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate", "environmental data", "hydrology", "land cover", "land degradation", "soil", "terrain data", "vegetation"] [{"institutionName": "OpenGeoHub foundation", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://opengeohub.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["tom.hengl@opengeohub.org"]}] [{"policyName": "Comment policy", "policyURL": "https://www.opengeohub.org/privacy-policy"}, {"policyName": "Contribute", "policyURL": "https://opengeohub.org/contribute-training-data-openlandmap"}, {"policyName": "Submitting global layers", "policyURL": "https://opengeohub.org/submitting-global-layers-inclusion-landgis"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/"}] restricted [{"dataUploadLicenseName": "Open Data license", "dataUploadLicenseURL": "https://opendefinition.org/licenses/"}] [] {"api": "https://landgisapi.opengeohub.org/", "apiType": "REST"} ["DOI"] https://www.opengeohub.org/about-landgis [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-07-12 2020-08-20 +r3d100013374 Rhodes University Research Data eng [{"additionalName": "Rhodes University research repository", "additionalNameLanguage": "eng"}] https://researchdata.ru.ac.za/ [] ["w.vanderwalt@ru.ac.za"] The Rhodes Research Data repository is the offical repository at Rhodes University for storing and sharing research data and open educational resources. eng ["institutional"] {"size": "38 records", "updatedp": "2020-07-17"} 2020-06 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://figshare.com/blog/Rhodes_University_launches_institutional_research_data_repository_powered_by_Figshare/584 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidiciplinary"] [{"institutionName": "Rhodes University", "institutionAdditionalName": ["RU"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ru.ac.za/", "institutionIdentifier": ["ROR:016sewp10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "figshare", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["funding"], "institutionType": "commercial", "institutionURL": "https://knowledge.figshare.com/institutions", "institutionIdentifier": ["ROR:041mxqs23", "RRID:SCR_004328", "RRID:nlx_34569"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Rhodes Digital Commons - Intellectual Property Rights", "policyURL": "https://ru.za.libguides.com/c.php?g=563853&p=4378032"}, {"policyName": "figshare terms and conditions", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/"}] restricted [] ["other"] {} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-07-16 2020-08-20 +r3d100013377 data_UMR eng [] https://data.uni-marburg.de [] ["data@uni-marburg.de"] data_UMR is the institutional repository of the University of Marburg for research data of all kinds that has been generated in the context of research activities at the University of Marburg. eng ["institutional"] {"size": "", "updatedp": ""} 2019-12-19 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.uni-marburg.de/page/repository_info [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Philipps-Universit\u00e4t Marburg", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-marburg.de/de", "institutionIdentifier": ["ROR:01rdrb571", "RRID:SCR_000245", "RRID:nlx_89596"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://data.uni-marburg.de/page/imprint"]}] [{"policyName": "Grunds\u00e4tze zum Umgang mit Forschungsdaten an der Philipps-Universit\u00e4t Marburg", "policyURL": "https://www.uni-marburg.de/de/universitaet/administration/amtliche-mitteilungen/jahrgang-2018/04-2018.pdf"}, {"policyName": "Nutzungsvereinbarung f\u00fcr data_UMR", "policyURL": "https://data.uni-marburg.de/page/agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "http://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/page/InC/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses"}] restricted [{"dataUploadLicenseName": "Nutzungsvereinbarung f\u00fcr data_UMR", "dataUploadLicenseURL": "https://data.uni-marburg.de/page/agreement"}] ["DSpace"] yes {"api": "https://data.uni-marburg.de/oai", "apiType": "OAI-PMH"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-07-20 2021-09-03 +r3d100013378 Alzheimer's Disease Neuroimaging Initiative Image and Data Archive eng [{"additionalName": "ADNI Image and Data Archive", "additionalNameLanguage": "eng"}, {"additionalName": "IDA", "additionalNameLanguage": "eng"}, {"additionalName": "LONI Image and Data Archive", "additionalNameLanguage": "eng"}] http://adni.loni.usc.edu/ [] ["edrake@bwh.harvard.edu", "http://adni.loni.usc.edu/about/contact-us/"] All ADNI data are shared without embargo through the LONI Image and Data Archive (IDA), a secure research data repository. Interested scientists may obtain access to ADNI imaging, clinical, genomic, and biomarker data for the purposes of scientific investigation, teaching, or planning clinical research studies. "The Alzheimer’s Disease Neuroimaging Initiative (ADNI) unites researchers with study data as they work to define the progression of Alzheimer’s disease (AD). ADNI researchers collect, validate and utilize data, including MRI and PET images, genetics, cognitive tests, CSF and blood biomarkers as predictors of the disease. Study resources and data from the North American ADNI study are available through this website, including Alzheimer’s disease patients, mild cognitive impairment subjects, and elderly controls. " eng ["disciplinary"] {"size": "53.820 subjects from 138 studies", "updatedp": "2020-07-22"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20606 Cognitive Neuroscience and Neuroimaging", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Alzheimer", "biosamples"] [{"institutionName": "Alzheimer's Disease Neuroimaging Initiative", "institutionAdditionalName": ["ADNI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://adni.loni.usc.edu/", "institutionIdentifier": ["ROR:01j20wc74"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Biomedical Imaging and Bioengineering", "institutionAdditionalName": ["NIBIB"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nibib.nih.gov/", "institutionIdentifier": ["ROR:00372qc85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institutes of Health", "institutionAdditionalName": ["NIH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Southern California", "institutionAdditionalName": ["USC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.usc.edu/", "institutionIdentifier": ["ROR:03taz7m60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ADNI RARC & Biosample Policies", "policyURL": "http://adni.loni.usc.edu/wp-content/themes/freshnews-dev-v2/documents/policy/ADNI%20RARC%20Biomarker%20Policies.pdf"}, {"policyName": "Access to ADNI SamplesPolicy and Procedures - RARC", "policyURL": "http://adni.loni.usc.edu/wp-content/themes/freshnews-dev-v2/documents/policy/Access%20to%20ADNI%20Samples.pdf"}, {"policyName": "Alzheimer\u2019s Disease Neuroimaging Initiative (ADNI) DATA USE AGREEMENT", "policyURL": "http://adni.loni.usc.edu/wp-content/uploads/how_to_apply/ADNI_Data_Use_Agreement.pdf"}, {"policyName": "Alzheimer\u2019s Disease Neuroimaging Initiative (ADNI)Data Sharing and Publication Policy", "policyURL": "http://adni.loni.usc.edu/wp-content/uploads/how_to_apply/ADNI_DSP_Policy.pdf"}, {"policyName": "LONI IMAGE & DATA ARCHIVEUSER MANUAL", "policyURL": "https://ida.loni.usc.edu/services/Menu/PDF/IDA_User_Manual.pdf"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://adni.loni.usc.edu/terms-of-use/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://adni.loni.usc.edu/wp-content/uploads/how_to_apply/ADNI_Data_Use_Agreement.pdf"}] restricted [] ["other"] {} [] http://adni.loni.usc.edu/wp-content/uploads/how_to_apply/ADNI_Data_Use_Agreement.pdf [] unknown unknown [] [] {} 2020-07-20 2020-08-20 +r3d100013382 intellectum eng [{"additionalName": "RII", "additionalNameLanguage": "spa"}, {"additionalName": "Repositorio Institucional Intellectum", "additionalNameLanguage": "spa"}, {"additionalName": "Repository of the University of La Sabana", "additionalNameLanguage": "eng"}] https://intellectum.unisabana.edu.co/ ["OpenDOAR:2587"] ["contactointellectum@unisabana.edu.co"] Intellectum is the Institutional Repository of the University of La Sabana, has been created to manage, preserve and disseminate the intellectual, scientific, cultural and historical production of the university community. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://intellectum.unisabana.edu.co/page/intellectum [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of La Sabana", "institutionAdditionalName": ["Universidad de La Sabana"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unisabana.edu.co/", "institutionIdentifier": ["ROR:02sqgkj21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies and guidelines of the institutional repository", "policyURL": "https://intellectum.unisabana.edu.co/page/politicas"}, {"policyName": "Terms and conditions for Auto file degree jobs in Intellectum", "policyURL": "https://intellectum.unisabana.edu.co/page/terminos"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [] ["DSpace"] yes {"api": "https://intellectum.unisabana.edu.co/oai/snaac?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-07-22 2020-12-23 +r3d100013383 IsoArcH eng [] https://isoarch.eu/ ["biodbcore-001834"] ["contact@isoarch.eu", "https://isoarch.eu/index.php/contact/"] IsoArcH is an open access isotope web-database for bioarchaeological samples from prehistoric and historical periods all over the world. With 40,000+ isotope related data obtained on 13,000+ specimens (i.e., humans, animals, plants and organic residues) coming from 500+ archaeological sites, IsoArcH is now one of the world's largest repositories for isotopic data and metadata deriving from archaeological contexts. IsoArcH allows to initiate big data initiatives but also highlights research lacks in certain regions or time periods. Among others, it supports the creation of sound baselines, the undertaking of multi-scale analysis, and the realization of extensive studies and syntheses on various research issues such as paleodiet, food production, resource management, migrations, paleoclimate and paleoenvironmental changes. eng ["disciplinary"] {"size": "Number of specimens: 14131 specimens; 15960 samples; 571 sites", "updatedp": "2021-07-19"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "10105 Egyptology and Ancient Near Eastern Studies", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "301 Molecular Chemistry", "scheme": "DFG"}, {"name": "305 Biological Chemistry and Food Chemistry", "scheme": "DFG"}, {"name": "30502 Food Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://isoarch.eu/index.php/aims/ [{"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["animal", "anthropology", "archaeobotany", "archaeology", "bioarchaeology", "diet", "human", "isotope", "mobility", "organic residue", "paleoclimate", "paleoenvironmental changes", "plant", "zooarchaeology"] [{"institutionName": "IsoArcH Association", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://isoarch.eu/index.php/members/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IsoArch Project Team", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://isoarch.eu/index.php/project-team/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://isoarch.eu/index.php/copyright-2/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [{"dataUploadLicenseName": "Data Sharing", "dataUploadLicenseURL": "https://isoarch.eu/index.php/data-sharing/"}] ["other"] yes {} ["DOI"] https://isoarch.eu/index.php/citation/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. 2020-07-28 2021-09-02 +r3d100013385 DataHub Figshare eng [{"additionalName": "University of Hong Kong Data Repository", "additionalNameLanguage": "eng"}] https://datahub.hku.hk/ [] ["https://datahub.hku.hk/f/contact", "researchdata@hku.hk", "szxiao@hku.hk"] Provided by the University Libraries, DataHub is the comprehensive institutional repository for research data and scholarly outputs produced by the researchers and students in the University of Hong Kong and their collaborators. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://libguides.lib.hku.hk/researchdata/datahub [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "The University of Hong Kong", "institutionAdditionalName": ["HKU", "\u9999\u6e2f\u5927\u5b78"], "institutionCountry": "HKG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://hku.hk/", "institutionIdentifier": ["ROR:02zhqgq86", "RRID:SCR_011655", "RRID:nlx_151405"], "responsibilityStartDate": "2020-08-01", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Copyright and Disclaimer", "policyURL": "https://lib.hku.hk/general/copyright.html"}, {"policyName": "Take-Down Policy, Research Data in the HKU Scholars Hub", "policyURL": "https://hub.hku.hk/researchdata/takedown_policy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [{"dataUploadLicenseName": "Deposit Agreement", "dataUploadLicenseURL": "https://libguides.lib.hku.hk/ld.php?content_id=48515639"}] ["other"] yes {"api": "https://docs.figshare.com/", "apiType": "OAI-PMH"} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://datahub.hku.hk/rss/portal/hku", "syndicationType": "RSS"} 2020-08-05 2021-10-05 +r3d100013386 ACEnano eng [{"additionalName": "ACEnano Knowledge Infrastructure", "additionalNameLanguage": "eng"}, {"additionalName": "Analytical and Characterisation Excellence in nanomaterial risk assessment", "additionalNameLanguage": "eng"}] https://acenano.douglasconnect.com/ [] ["acenano@douglasconnect.com", "https://acenano.douglasconnect.com/contact/"] The ACEnano Knowledge Infrastructure facilitates access and sharing of methodology applied in nanosafety, starting with nanomaterials characterisation protocols developed or optimised within the ACEnano project. eng ["disciplinary"] {"size": "", "updatedp": ""} 2019-09-16 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://acenano.douglasconnect.com/about/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "physicochemical data"] [{"institutionName": "ACEnano Project", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.acenano-project.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Edelweiss Connect", "institutionAdditionalName": ["Douglas Connect", "EWC"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.edelweissconnect.com/", "institutionIdentifier": ["ROR:05cpjy057"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Union, Horizon 2020", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/programmes/horizon2020", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://acenano.douglasconnect.com/terms-of-use/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://acenano.douglasconnect.com/privacy-policy/"}] restricted [] ["other"] yes {"api": "https://pypi.org/project/edelweiss-data/", "apiType": "REST"} [] [] yes yes [] [] {} 2020-08-06 2020-08-20 +r3d100013387 Argovis eng [{"additionalName": "A Web Application for Fast Delivery, Visualization, and Analysis of Argo Data", "additionalNameLanguage": "eng"}] https://argovis.colorado.edu [] ["tyler.tucker@colorado.edu"] Earth science data visualization and data delivery application. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://argovis.colorado.edu/docs/Argovis_About.html [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Argo", "Earth Science", "bisulfide", "chlorophill-a", "concentration of coloured dissolved organic matter in sea water", "conductivity", "dissolved oxygen", "downwelling irradiance", "downwelling photosynthetic", "nitrate", "particle beam attenuation", "salinity", "sea water ph reported on total scale", "sea water pressure", "sea water temperature", "sea water turbidity", "upwelling irradiance"] [{"institutionName": "EarthCube", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.earthcube.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.earthcube.org/contact/General-Inquiries", "https://www.nsf.gov/awardsearch/showAward?AWD_ID=1928305"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nsf.gov/help/contact.jsp"]}, {"institutionName": "The University of Colorado, Boulder", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.colorado.edu/", "institutionIdentifier": ["ROR:02ttsq026"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Argovis quick start guide", "policyURL": "https://argovis.colorado.edu/docs/Argovis_Guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/#GPL"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] [] {"api": "https://argovis.colorado.edu/docs/Argovis_Tutorials.html", "apiType": "REST"} [] https://argovis.colorado.edu/docs/Argovis_FAQ.html#ref [] unknown unknown [] [] {} Additional scripts: https://github.com/donatagiglio/Argovis 2020-08-11 2020-08-20 +r3d100013391 The University of Pittsburgh English Language Institute Corpus eng [{"additionalName": "PELIC", "additionalNameLanguage": "eng"}] https://github.com/ELI-Data-Mining-Group/PELIC-dataset [] ["bnaismith@pitt.edu"] The University of Pittsburgh English Language Institute Corpus (PELIC) is a 4.2-million-word learner corpus of written texts. These texts were collected in an English for Academic Purposes (EAP) context over seven years in the University of Pittsburgh’s Intensive English Program, and were produced by over 1100 students with a wide range of linguistic backgrounds and proficiency levels. PELIC is longitudinal, offering greater opportunities for tracking development in a natural classroom setting. eng ["other"] {"size": "4.2 million words", "updatedp": "2020-08-21"} 2020-08-17 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10401 General and Applied Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["English for Academic Purposes", "TESOL", "learner corpus", "second language acquisition"] [{"institutionName": "GitHub, Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://github.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Pittsburgh, English Language Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.eli.pitt.edu", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] ["other"] yes {} [] https://github.com/ELI-Data-Mining-Group/PELIC-dataset [] yes unknown [] [] {} A small subset of these files which are annotated in CHAT/CLAN and a list of published research is available at Talkbank.org. https://slabank.talkbank.org/access/English/Vercellotti.html 2020-08-20 2020-09-15 +r3d100013392 Geoscientific Data & Discovery Publishing Center eng [{"additionalName": "GDD", "additionalNameLanguage": "eng"}, {"additionalName": "\u5730\u8d28\u79d1\u5b66\u6570\u636e\u51fa\u7248\u4e2d\u5fc3", "additionalNameLanguage": "zho"}] http://geodb.cgs.gov.cn/en [] ["geodb@mail.cgs.gov.cn"] Geoscientific Data & Discovery Publishing Center (GDD) is based on the geological scientific data generated globally, establishing policies and systems for the scientific data publishing, absorbing the concepts and methods of international open data, and joint Digital Object Unique Identifier-DOI registration agencies to provide standard data reference formats and permanent access address for data references, doing publishing through the Internet platform, which combines innovation and advance. GDD mainly includes data descriptor and entity data publishing. The data papers describe entity data and corresponding metadata information. The entity data includes common shared data such as geographic information, geologic maps, and databases, and also includes multiple data types, such as documents, archive records, data forms and other multimedia formed during geological work, various data-centric applications, database interface services, and typical data services. eng ["disciplinary"] {"size": "58 data paper", "updatedp": "2020-09-02"} ["eng", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://geodb.cgs.gov.cn/en/page/about_us [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "bridge", "environment engineering", "geological disaster map", "hydrology", "mineral deposit", "railway", "solid and surface Earth Sciences", "tunnel"] [{"institutionName": "National Geological Archives of China", "institutionAdditionalName": ["NGAC", "\u5168\u56fd\u5730\u8d28\u8d44\u6599\u9986"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ngac.org.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Aims and Scope", "policyURL": "http://geodb.ngac.org.cn/en/page/sharing_policy/aims_scope"}, {"policyName": "CoreTrustSeal assessment", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2020/08/Geoscientific-Data-Discovery-Publishing-Center.pdf"}, {"policyName": "Sharing policy", "policyURL": "http://geodb.ngac.org.cn/en/page/sharing_policy/data_preserve"}, {"policyName": "User Agreement of the Digital Geological Archives of the National Geological Archives of China", "policyURL": "http://www.ngac.org.cn/UserCenter/User%20Agreement%20of%20the%20Digital%20Geological%20Archives%20of%20the%20National%20Geological%20Archives%20of%20China.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://geodb.ngac.org.cn/en/page/sharing_policy/sharing_policy"}] restricted [{"dataUploadLicenseName": "Submission guidelines", "dataUploadLicenseURL": "http://www.manuscripts.com.cn/dzkxsjzj"}] [] yes {} ["DOI"] [] yes yes ["other"] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Geoscientific Data & Discovery Publishing Center is covered by Clarivate Data Citation Index 2020-08-25 2020-09-15 +r3d100013393 Mitelman Database of Chromosome Aberrations and Gene Fusions in Cancer eng [] https://mitelmandatabase.isb-cgc.org/ [] ["feedback@isb-cgc.org", "mitelman-info@isb-cgc.org"] The information in the Mitelman Database of Chromosome Aberrations and Gene Fusions in Cancer relates cytogenetic changes and their genomic consequences, in particular gene fusions, to tumor characteristics, based either on individual cases or associations. All the data have been manually culled from the literature by Felix Mitelman in collaboration with Bertil Johansson and Fredrik Mertens. eng ["disciplinary"] {"size": "cases 71.298; unique gene fusions 32.677; genes involved 14.020", "updatedp": "2021-04-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://mitelmandatabase.isb-cgc.org/about [{"name": "Databases", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["chromosome aberrations", "cytogenetics", "gene fusions"] [{"institutionName": "ISB-CGC", "institutionAdditionalName": ["Institute for Systems Biology Cancer Genomics Cloud"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://isb-cgc.appspot.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Cancer Institute", "institutionAdditionalName": ["NCI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancer.gov/", "institutionIdentifier": ["ROR:https://ror.org/040gcmg81"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swedish Cancer Society", "institutionAdditionalName": ["Cancerfonden"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cancerfonden.se/", "institutionIdentifier": ["ROR:0527jb766"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Swedish Childhood Cancer Foundation", "institutionAdditionalName": ["Barncancerfonden"], "institutionCountry": "SWE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.barncancerfonden.se/", "institutionIdentifier": ["ROR:05072yv34"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "User guide", "policyURL": "https://mitelmandatabase.isb-cgc.org/help"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] closed [] [] {} [] https://mitelmandatabase.isb-cgc.org/about [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-08-26 2021-04-22 +r3d100013394 Digitale Bibliothek - Der Publikationsserver der TU Braunschweig deu [{"additionalName": "Digital Library - Institutional Repository of TU Braunschweig", "additionalNameLanguage": "eng"}] https://publikationsserver.tu-braunschweig.de/ ["OpenDOAR:719"] ["forschungsdaten@tu-braunschweig.de", "j.mersmann@tu-braunschweig.de", "l.grunwald@tu-bs.de", "r.stroetgen@tu-braunschweig.de"] Digital Library Braunschweig is the institutional repository of the Technical University of Braunschweig and is operated by the University Library. It is used for the publication of research results and documentation by scientists of the TU Braunschweig. eng ["institutional"] {"size": "19.647 documents", "updatedp": "2020-08-28"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University Library of TU Braunschweig", "institutionAdditionalName": ["Technische Universit\u00e4t Braunschweig - Universit\u00e4tsbibliothek Braunschweig"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tu-braunschweig.de/ub", "institutionIdentifier": ["VIAF:152055436"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Leitlinie zum Publizieren in der Digitalen Bibliothek Braunschweig", "policyURL": "https://publikationsserver.tu-braunschweig.de/content/publish/policy.xml?lang=en"}, {"policyName": "Nutzungsvertrag", "policyURL": "https://publikationsserver.tu-braunschweig.de/content/publish/contract.xml?lang=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/choose/zero/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "http://creativecommons.org/publicdomain/mark/1.0/"}] restricted [{"dataUploadLicenseName": "Nutzungsvertrag", "dataUploadLicenseURL": "https://publikationsserver.tu-braunschweig.de/content/publish/contract.xml?lang=en"}] ["other"] no {"api": "https://publikationsserver.tu-braunschweig.de/servlets/OAIDataProvider", "apiType": "OAI-PMH"} ["DOI", "URN"] https://publikationsserver.tu-braunschweig.de/content/below/terms_of_use.xml ["ORCID"] yes yes ["DINI Certificate"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-08-27 2020-09-15 +r3d100013395 Dados Abertos De Pesquisas por [{"additionalName": "Reposit\u00f3rio de Dados de Pesquisas do Instituto Federal Goiano \u2013 Campus Uruta\u00ed", "additionalNameLanguage": "por"}, {"additionalName": "Research Data Repository of the Federal Institute of Goiania", "additionalNameLanguage": "eng"}] https://dataverse.harvard.edu/dataverse/pesquisa-urt/ [] ["pesquisa.urt@ifgoiano.edu.br"] Research Data Repository of the Instituto Federal Goiano - Campus Urutaí, a Brazilian public institution of the Ministry of Education. The project is an initiative of the Directorate of Post-Graduate Studies, Research and Innovation of the Federal Institute of Goiás - Campus Urutaí, which follows the philosophy of Open Science, for expansion and valuation of scientific research, aiming to provide data from technical-scientific observations and experimentation, ensuring that its authors, researchers and students receive all the credit they deserve as agents generating data. At the same time, the appropriate reuse of data is envisaged, whether in didactic-pedagogical activities or in new research. eng ["institutional"] {"size": "3 datasets; 4 files", "updatedp": "2020-08-28"} 2020 ["eng", "por"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Harvard University, Institute for Quantitave Social Science", "institutionAdditionalName": ["IQSS"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iq.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Instituto Federal Goiano", "institutionAdditionalName": ["IF Goiano", "Instituto Federal de Educa\u00e7\u00e3o Ci\u00eancia e Tecnologia Goiano"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ifgoiano.edu.br/home/index.php/urutai.html", "institutionIdentifier": ["ROR:0036c6m19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "http://best-practices.dataverse.org/harvard-policies/harvard-terms-of-use.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use", "dataUploadLicenseURL": "http://best-practices.dataverse.org/harvard-policies/harvard-terms-of-use.html"}] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2020-08-27 2020-09-15 +r3d100013399 Repositorio Institucional Universidad Santo Tomás spa [{"additionalName": "Institutional Repository of the Saint Thomas Aquinas University", "additionalNameLanguage": "eng"}] https://repository.usta.edu.co ["OpenDOAR:3896"] ["Diego Daniel Castillo Medell\u00edn Ingeniero de Soporte Tecnol\u00f3gico ing.crai@usantotomas.edu.co", "repositorio@usantotomas.edu.co"] The Institutional Repository of the Universidad Santo Tomás manages, preserves, stores, disseminates and provides access to digital objects, the product of all academic and administrative production. eng ["institutional"] {"size": "28168 records", "updatedp": "2020-09-07"} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Infotegra", "institutionAdditionalName": [], "institutionCountry": "COL", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.infotegra.com", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Santo Tom\u00e1s", "institutionAdditionalName": ["Saint Thomas Aquinas University"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.usta.edu.co/", "institutionIdentifier": ["ROR:01x628269"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions of use WEB PORTAL", "policyURL": "https://www.usta.edu.co/index.php/condiciones-de-uso-portal-web"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [] ["DSpace"] {"api": "https://repository.usta.edu.co/oai/", "apiType": "OAI-PMH"} ["hdl"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://repository.usta.edu.co/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-09-03 2020-09-15 +r3d100013400 Tethys deu [{"additionalName": "Tethys RDR", "additionalNameLanguage": "eng"}] https://www.tethys.at/ [] ["https://www.tethys.at/contact", "repository@geologie.ac.at"] Tethys is an Open Access Research Data Repository of the Geological Survey of Austria (GBA), which publishes and distributes georeferenced geoscientific research data generated at and in cooperation with the GBA. The research data publications and the associated metadata are predominantly provided in German or in English. The abstracts are provided in both languages. Tethys aims to provide published data sets as open data and in accordance with the FAIR Data Principles, findable, accessible, interoperable and reusable. eng ["disciplinary", "institutional"] {"size": "5 dataset", "updatedp": "2021-06-04"} 2020-09-01 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.tethys.at/intro [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["earth science", "economic geology", "engineering geology", "environmental science", "geoelectric", "geological mapping", "geological modelling", "geological resources", "geophysical exploration", "geophysical mapping", "geothermal energy", "hydrogeology", "land surface", "mineral commodities", "mineral raw materials", "natural hazard"] [{"institutionName": "Geological Survey of Austria", "institutionAdditionalName": ["GBA", "Geologische Bundesanstalt"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geologie.ac.at/en/", "institutionIdentifier": ["ROR:03em27e03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.geologie.ac.at/en/contact"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.tethys.at/pages/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["Opus", "other"] yes {"api": "https://www.tethys.at/oai", "apiType": "OAI-PMH"} ["DOI"] https://datacite.org/cite-your-data.html ["none"] no yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} rdr at GitHub: https://github.com/geolba 2020-09-03 2021-06-04 +r3d100013404 Copernicus Marine Environment Monitoring Service eng [{"additionalName": "CMEMS", "additionalNameLanguage": "eng"}] https://marine.copernicus.eu/ [] ["communication@mercator-ocean.fr", "https://marine.copernicus.eu/services-portfolio/contact-us/", "servicedesk.cmems@mercator-ocean.eu"] The Copernicus Marine Environment Monitoring Service (CMEMS) provides regular and systematic reference information on the physical and biogeochemical state, variability and dynamics of the ocean and marine ecosystems for the global ocean and the European regional seas. The observations and forecasts produced by the service support all marine applications, including: Marine safety; Marine resources; Coastal and marine environment; Weather, seasonal forecasting and climate. For instance, the provision of data on currents, winds and sea ice help to improve ship routing services, offshore operations or search and rescue operations, thus contributing to marine safety. The service also contributes to the protection and the sustainable management of living marine resources in particular for aquaculture, sustainable fisheries management or regional fishery organisations decision-making process. Physical and marine biogeochemical components are useful for water quality monitoring and pollution control. Sea level rise is a key indicator of climate change and helps to assess coastal erosion. Sea surface temperature elevation has direct consequences on marine ecosystems and appearance of tropical cyclones. As a result of this, the service supports a wide range of coastal and marine environment applications. Many of the data delivered by the service (e.g. temperature, salinity, sea level, currents, wind and sea ice) also play a crucial role in the domain of weather, climate and seasonal forecasting. eng ["disciplinary"] {"size": "174 ocean products", "updatedp": "2020-09-08"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.copernicus.eu/en/about-copernicus [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biodiversity", "environment", "in-situ observations", "marine pollution", "maritime routing", "maritime security", "modelling", "monitoring", "ocean indicators", "satellite"] [{"institutionName": "European Union's Earth Observation Programme", "institutionAdditionalName": [], "institutionCountry": "EEC", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.copernicus.eu/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Mercator Ocean International", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mercator-ocean.fr/", "institutionIdentifier": ["ROR:02754py23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Licence to Use the Copernicus Marine Service Products", "policyURL": "https://marine.copernicus.eu/services-portfolio/service-commitments-and-licence/#licence"}, {"policyName": "Online Tutorials", "policyURL": "https://marine.copernicus.eu/training/online-tutorials/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.copernicus.eu/en/how/copyright-and-licenses"}, {"dataLicenseName": "other", "dataLicenseURL": "https://marine.copernicus.eu/services-portfolio/service-commitments-and-licence/#licence"}] restricted [] ["other"] yes {"api": "ftp://nrt.cmems-du.eu", "apiType": "FTP"} [] [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}] {"syndication": "https://www.copernicus.eu/en/main/rss-subscription", "syndicationType": "RSS"} 2020-09-04 2020-09-15 +r3d100013405 Gaia@AIP eng [{"additionalName": "Gaia@AIP Services", "additionalNameLanguage": "eng"}] https://gaia.aip.de/ [] ["https://gaia.aip.de/contact/"] Launched in December 2013, Gaia is destined to create the most accurate map yet of the Milky Way. By making accurate measurements of the positions and motions of stars in the Milky Way, it will answer questions about the origin and evolution of our home galaxy. The first data release (2016) contains three-dimensional positions and two-dimensional motions of a subset of two million stars. The second data release (2018) increases that number to over 1.6 Billion. Gaia’s measurements are as precise as planned, paving the way to a better understanding of our galaxy and its neighborhood. The AIP hosts the Gaia data as one of the external data centers along with the main Gaia archive maintained by ESAC and provides access to the Gaia data releases as part of Gaia Data Processing and Analysis Consortium (DPAC). eng ["disciplinary"] {"size": "1.3 billion stars", "updatedp": "2020-09-08"} 2016-09-14 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://gaia.aip.de/cms/documentation/ [{"name": "Databases", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["GAIA DR1", "GAIA DR2", "Global Auroral Imaging Access", "RAVE DR5", "TYCHO2", "UCAC5"] [{"institutionName": "European Space Agency", "institutionAdditionalName": ["ESA"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.esa.int/", "institutionIdentifier": ["ROR:03wd9za21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Federal Ministry of Education and Research", "institutionAdditionalName": ["BMBF", "Bundesministerium f\u00fcr Bildung und Forschung"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.bmbf.de/en/", "institutionIdentifier": ["ROR:04pz7b180"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Leibniz-Institut f\u00fcr Astrophysik Potsdam", "institutionAdditionalName": ["AIP", "Leibniz Institute for Astrophysics Potsdam"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.aip.de/de", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Disclaimer", "policyURL": "https://gaia.aip.de/cms/documentation/credit-and-citation-instructions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] yes {"api": "https://gaia.aip.de/", "apiType": "OAI-PMH"} ["DOI"] https://gaia.aip.de/cms/documentation/credit-and-citation-instructions/ [] unknown unknown [] [{"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {} It is developed and maintained by AIP's E-Science group: https://github.com/aipescience 2020-09-08 2020-09-15 +r3d100013407 CosmoHub eng [] https://cosmohub.pic.es [] ["carretero@pic.es", "merino@pic.es", "tallada@pic.es"] CosmoHub is a web application based on Hadoop to perform interactive exploration and distribution of massive cosmological datasets eng ["disciplinary"] {"size": "Total data volume: ~40 TiB; Number of public catalogs: 20; Number of private catalogs: 53", "updatedp": "2020-09-10"} 2016-10-18 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://cosmohub.pic.es/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["ASDF", "Apache Hadoop", "Apache Hive", "FITS", "astrophysics", "cosmology", "data distribution", "data exploration"] [{"institutionName": "Centro de Investigaciones Energ\u00e9ticas, Medioambientales y Tecnol\u00f3gicas", "institutionAdditionalName": ["CIEMAT"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ciemat.es/", "institutionIdentifier": ["ROR:05xx77y52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["merino@pic.es"]}, {"institutionName": "Institut de F\u00edsica d'Altes Energies", "institutionAdditionalName": ["IFAE"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ifae.es/eng/", "institutionIdentifier": ["ROR:01sdrjx85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["rmiquel@pic.es"]}, {"institutionName": "Institute of Space Sciences", "institutionAdditionalName": ["IEEC-CSIC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ice.csic.es/en/", "institutionIdentifier": ["ROR:01vbgty78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["serrano@ice.csic.es"]}, {"institutionName": "Port d\u2019Informaci\u00f3 Cient\u00edfica", "institutionAdditionalName": ["PIC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.pic.es/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["merino@pic.es"]}] [{"policyName": "Legal Information", "policyURL": "https://cosmohub.pic.es/legal"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://cosmohub.pic.es/legal"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "open", "dataAccessRestriction": ["registration"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://en.wikipedia.org/wiki/Public-domain-equivalent_license"}, {"dataLicenseName": "other", "dataLicenseURL": "https://choosealicense.com/licenses/agpl-3.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cosmohub.pic.es"}] restricted [] ["other"] yes {} ["PURL"] [] unknown unknown [] [] {} 2020-09-09 2021-02-03 +r3d100013408 ProteomicsDB eng [{"additionalName": "PrDB", "additionalNameLanguage": "eng"}] https://www.proteomicsdb.org/#overview ["FAIRsharing_doi:10.25504/FAIRsharing.6y9h91"] ["proteomicsdb@wzw.tum.de"] ProteomicsDB (https://www.ProteomicsDB.org) started as a protein-centric in-memory database for the exploration of large collections of quantitative mass spectrometry-based proteomics data. The data types and contents grew over time to include RNA-Seq expression data, drug-target interactions and cell line viability data. eng ["disciplinary"] {"size": "81 projects; 718 experiments", "updatedp": "2020-09-17"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.proteomicsdb.org/proteomicsdb/#aboutUs [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Arabidopsis Thaliana E", "COVID-19", "human", "mass spectrometry spectra", "molecular interaction", "proteomics", "transcriptomics"] [{"institutionName": "Technische Universit\u00e4t M\u00fcnchen", "institutionAdditionalName": ["TUM", "Technical University of Munich"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tum.de/en/", "institutionIdentifier": ["ROR:02kkvpp62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.proteomicsdb.org/#overview"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "http://creativecommons.org/licenses/by/2.5/"}] [] yes {"api": "https://www.proteomicsdb.org/proteomicsdb/#api", "apiType": "other"} [] https://www.proteomicsdb.org/#aboutUs [] unknown unknown [] [] {} 2020-09-10 2020-09-20 +r3d100013413 Sciflection eng [] https://sciflection.com ["FAIRsharing_doi:10.25504/FAIRsharing.NKUobC"] [] Sciflection accepts structured data directly uploaded from Electronic Laboratory Notebooks (open enventory, Sciformation ELN, open for others) in JSON format. Searchable by chemical structure, text parts, numeric parameters, etc. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://sciflection.com/userDocs/sciflection.html?lang=de [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "experimental parameters", "molecular structures", "spectroscopic data"] [{"institutionName": "Carbolution", "institutionAdditionalName": ["Carbolution Chemicals GmbH"], "institutionCountry": "DEU", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.carbolution.de/?referer=sciflection", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@carbolution.de"]}, {"institutionName": "Sciformation", "institutionAdditionalName": ["Sciformation Consulting GmbH"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "http://sciformation.com", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://sciformation.com/contact.html?lang=de"]}] [{"policyName": "Nutzungsbedingungen des Dienstes \"Sciflection\"", "policyURL": "https://sciflection.com/main"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/de/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Daten-Ver\u00f6ffentlichung mit open enventory teilen", "dataUploadLicenseURL": "https://sciflection.com/userDocs/sharePublicationOE.html?lang=de#/"}, {"dataUploadLicenseName": "Daten-Ver\u00f6ffentlichung teilen", "dataUploadLicenseURL": "https://sciflection.com/userDocs/shareElnPublication.html?lang=de#/"}] [] {} [] [] yes no [] [] {} 2020-09-16 2021-11-09 +r3d100013414 Germania Sacra Online deu [] http://www.germania-sacra.de [] ["germania-sacra@gwdg.de"] Germania Sacra is a long-term research project ongoing at the Göttingen Academy of Sciences and Humanities. The project has a long-standing tradition of researching the history of dioceses, monasteries, collegiate churches, and convents within the Holy Roman Empire. The results of this work are published in reference books, the digital editions of these reference books along with two databases are the core components of Germania Sacra’s Online Portal. One of these databases is the ‘Digital Index of Persons’, which provides access to biographical and prosopographical information about the clerical staff affiliated to the institutions researched. This includes information about the bishops of a diocese, the canons or canonesses of individual collegiate churches, the monks and nuns of numerous monasteries, etc. The second primary feature of the online portal is the ‘Database of Monasteries, Collegiate Churches, and Convents of the Holy Roman Empire’. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10202 Early Modern History", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://adw-goe.de/en/research/research-projects-within-the-academies-programme/germania-sacra/history-of-the-project/ [{"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["bishops", "cathedral chapter", "church history", "collegiate churches", "convents", "linked ata", "monasteries", "prosopography"] [{"institutionName": "Akademie der Wissenschaften zu G\u00f6ttingen", "institutionAdditionalName": ["G\u00f6ttingen Academy of Sciences and Humanities"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://adw-goe.de/", "institutionIdentifier": ["ROR:04hsa7a08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Union der deutschen Akademien der Wissenschaften", "institutionAdditionalName": ["Union of the German Academies of Sciences and Humanities"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.akademienunion.de/", "institutionIdentifier": ["ROR:04bvdz568"], "responsibilityStartDate": "2008-01-01", "responsibilityEndDate": "2033-12-31", "institutionContact": []}] [{"policyName": "Richtlinien der Germania Sacra", "policyURL": "https://adw-goe.de/fileadmin/dokumente/forschungsprojekte/germania_sacra/Richtlinien_Germania_Sacra_3._Folge_neu.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] restricted [] [] {} ["hdl"] https://adw-goe.de/fileadmin/dokumente/forschungsprojekte/germania_sacra/Zitierrichtlinien_der_Germania_Sacra.pdf [] yes unknown [] [] {} 2020-09-17 2020-09-25 +r3d100013415 Stockholm University Library Dataverse eng [] https://dataverse.harvard.edu/dataverse/StockholmUniversityLibrary [] [] For datasets from individual researchers or research groups affiliated with Stockholm University, who do not want set up a separate Dataverse for a project or institution. Metadata provisions for Geospatial, Social Science, Humanities, Astronomy, Astrophysics, Life Sciences and Journals (all optional, by choice) are included. Data curation help from Stockholm University Library possible on request. eng ["institutional"] {"size": "4 Datasets, 19 Files", "updatedp": "2021-06-08"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["computer sciences", "earth sciences", "environmental monitoring", "health", "information sciences", "medicine"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "Stockholm University", "institutionAdditionalName": ["Stockholms universitet"], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.su.se/cmlink/stockholm-university", "institutionIdentifier": ["ROR:05f0yaq80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.su.se/english/about-the-university/contact"]}] [{"policyName": "Policies and Guidelines", "policyURL": "https://pp-prod-admin.it.su.se/preview/www/2.153/2.63919/2.30381/2.38402/2.49278/2.53087/1.359054#Research%20Data%20Policy"}, {"policyName": "Stockholm University Data Repositories", "policyURL": "https://www.su.se/staff/services/research/research-data/data-repositories#Overviews%20of%20platforms%20for%20open%20research%20data"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [{"dataUploadLicenseName": "Harvard Dataverse General Terms of Use", "dataUploadLicenseURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] ["DataVerse"] {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Stockholm University Library Dataverse is part of Scholars Portal Dataverse. 2020-09-21 2021-06-17 +r3d100013418 FAPESP COVID-19 Data Sharing/BR por [] https://repositoriodatasharingfapesp.uspdigital.usp.br/ [] ["covid19datasharing@fapesp.br", "fatima.nunes@usp.br", "jef@ime.usp.br"] Contains data on patients who have been tested for COVID-19 (whether positive or negative) in participating health institutions in Brazil. This initiative makes available three kinds of pseudonymized data: demographics (gender, year of birth, and region of residency), clinical and laboratory exams. Additional hospitalization information - such as data on transfers and outcomes - is provided when available. Clinical, lab, and hospitalization information is not limited to COVID-19 data, but covers all health events for these individuals, starting November 1st 2019, to allow for comorbidity studies. Data are deposited periodically, so that health information for a given individual is continuously updated to time of new version upload. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-06-16 ["por"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20404 Virology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://zenodo.org/record/3966427#.X3Mm69kzaUk [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "Open Science", "clinical data records", "patient demographic records"] [{"institutionName": "FAPESP", "institutionAdditionalName": ["Sao Paulo Research Foundation"], "institutionCountry": "BRA", "responsabilityType": ["funding", "general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://fapesp.br/en", "institutionIdentifier": ["ROR:02ddkpn78"], "responsibilityStartDate": "2020-05-02", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fleury Institute", "institutionAdditionalName": ["Grupo Fleury"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.grupofleury.com.br/SitePages/home.aspx", "institutionIdentifier": ["ROR:04q9me654"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hospital Israelita Albert Einstein", "institutionAdditionalName": ["Albert Einstein Israelite Hospital"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.einstein.br/Pages/Home.aspx", "institutionIdentifier": ["ROR:04cwrbc27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Hospital S\u00edrio-Liban\u00eas", "institutionAdditionalName": [], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hospitalsiriolibanes.org.br/Paginas/nova-home.aspx", "institutionIdentifier": ["ROR:03r5mk904"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Sao Paulo", "institutionAdditionalName": ["USP", "Universidade de S\u00e3o Paulo"], "institutionCountry": "BRA", "responsabilityType": ["funding", "technical"], "institutionType": "non-profit", "institutionURL": "https://www5.usp.br/", "institutionIdentifier": ["ROR:036rp1748"], "responsibilityStartDate": "2020-05-02", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["DSpace"] yes {} ["hdl"] https://repositoriodatasharingfapesp.uspdigital.usp.br/static/images/refEN.html [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://repositoriodatasharingfapesp.uspdigital.usp.br/feed/atom_1.0/site", "syndicationType": "ATOM"} Metadata standards apply to the repository and to each of its datasets. 2020-09-24 2020-10-05 +r3d100013419 ROCEEH Out of Africa Database eng [{"additionalName": "ROAD", "additionalNameLanguage": "eng"}, {"additionalName": "The Role of Culture in Early Expansions of Humans Out of Africa Database", "additionalNameLanguage": "eng"}] https://www.roceeh.uni-tuebingen.de/roadweb/smarty_road_simple_search.php [] ["info@roceeh.net"] ROAD is spatio-temporal database targeting a systemic understanding of human activities and expansions 3 Ma – 20 ka in Africa and Eurasia. The database contains cultural, anthropological, environmental and geographical information about archaeological sites and assemblages. After registration, the database offers access through a SQL query tool, an interactive web map (called "Map Module") as well as "Summary Factsheets", which present information about single localities in a PDF file. eng ["disciplinary"] {"size": ">2.000 sites; >12.000 assemblages", "updatedp": "2021-02-04"} 2008 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.hadw-bw.de/en/research/research-center/roceeh [{"name": "Databases", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["anthropology", "archaeology", "fauna", "human remains", "lithics", "organic tools", "plant remains", "symbolic artifacts"] [{"institutionName": "Heidelberg Academy of Sciences and Humanities", "institutionAdditionalName": ["HAW", "Heidelberger Akademie der Wissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.hadw-bw.de/", "institutionIdentifier": ["ROR:02dvf9b44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hadw@hadw-bw.de"]}] [{"policyName": "Data-Use Policy", "policyURL": "https://www.roceeh.uni-tuebingen.de/roadweb/smarty_data_use_policy.php?asMsgWin=1"}, {"policyName": "User Agreement", "policyURL": "https://www.roceeh.uni-tuebingen.de/roadweb/road_resources/ROAD_user_agreement.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://www.roceeh.uni-tuebingen.de/roadweb/smarty_data_use_policy.php?asMsgWin=1"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://www.roceeh.uni-tuebingen.de/roadweb/smarty_data_use_policy.php?asMsgWin=1"}] closed [] [] {} [] https://www.roceeh.uni-tuebingen.de/roadweb/road_resources/ROAD_user_agreement.pdf [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2020-09-29 2021-02-04 +r3d100013420 APIS eng [{"additionalName": "Arquivo Portugu\u00eas de Informa\u00e7\u00e3o Social", "additionalNameLanguage": "por"}, {"additionalName": "Portuguese Archive of Social Information", "additionalNameLanguage": "eng"}] https://dados.rcaap.pt/handle/10400.20/1 [] ["https://dados.rcaap.pt/feedback"] The Portuguese Archive of Social Information (APIS) is a scientific infrastructure acting on the domain of preservation and dissemination of social science data. Based at Instituto de Ciências Sociais, University of Lisbon, the archive works towards the acquisition and sharing of digital data for the purposes of public consultation, secondary analysis and pedagogical use. The archive comprises a range of datasets provided by research projects of the national scientific community. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "por"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.apis.ics.ulisboa.pt/en/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "analysis", "culture", "health", "politics", "survey data"] [{"institutionName": "Funda\u00e7\u00e3o para a Ci\u00eancia e a Tecnologia", "institutionAdditionalName": ["FCT"], "institutionCountry": "PRT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.fct.pt/index.phtml.en", "institutionIdentifier": ["ROR:00snfqn58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidade de Lisboa, Instituto de Ci\u00eancias Sociais", "institutionAdditionalName": ["ICS-UL"], "institutionCountry": "PRT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ics.ulisboa.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access conditions", "policyURL": "http://www.apis.ics.ulisboa.pt/en/access-conditions/"}, {"policyName": "Conditions of use", "policyURL": "http://www.apis.ics.ulisboa.pt/en/conditions-of-use/"}, {"policyName": "Core Trust Seal", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/09/20210901-apis-arquivo-portugues-de-informacao-social_final.pdf"}, {"policyName": "Data and Metadata criteria", "policyURL": "http://www.apis.ics.ulisboa.pt/en/data-and-metadata-criteria/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://projeto.rcaap.pt/index.php/lang-en/como-auto-arquivar-documentos/direitos-de-autor"}] restricted [{"dataUploadLicenseName": "How to deposit", "dataUploadLicenseURL": "http://www.apis.ics.ulisboa.pt/en/deposit/"}] ["DSpace"] {} ["hdl"] [] unknown yes ["other"] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} The Portuguese Archive of Social Information is part of Repositório de Dados Científicos https://www.re3data.org/repository/r3d100013369 2020-09-29 2022-01-03 +r3d100013421 ERIC/open eng [{"additionalName": "The Eawag Research Data Institutional Repository", "additionalNameLanguage": "eng"}] https://opendata.eawag.ch/ [] ["rdm@eawag.ch"] This is the place where Eawag scientists publish their research data. Research data is organized in Packages which contain one or more Resources. Resources are usually files containing research data proper or ancillary information such as a README-file. A URL pointing to external information might also constitute a Resource. eng ["institutional"] {"size": "103 packages", "updatedp": "2021-08-24"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://opendata.eawag.ch/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Cirus", "FAIR", "NADUF", "groundwater", "ice", "pesticide", "water"] [{"institutionName": "Eawag", "institutionAdditionalName": ["Institut F\u00e9d\u00e9ral Suisse des Sciences et Technologies de l\u2019Eau", "Swiss Federal Institute of Aquatic Science and Technology", "Wasserforschungsinstitut des ETH-Bereichs"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.eawag.ch/en/", "institutionIdentifier": ["ROR:00pc48d59"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.eawag.ch/fr/navigationen/footer-navigation/impressum/"]}] [{"policyName": "Research Integrity at Eawag", "policyURL": "https://www.eawag.ch/fileadmin/Domain1/About/Arbeiten/Forschungsumfeld/integritaet_forschung.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://opendata.eawag.ch/disclaimer/copyright"}] restricted [] ["CKAN"] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-09-30 2021-08-24 +r3d100013422 National COVID Cohort Collaborative eng [{"additionalName": "N3C", "additionalNameLanguage": "eng"}, {"additionalName": "National COVID Cohort Collaborative Data Enclave", "additionalNameLanguage": "eng"}] https://ncats.nih.gov/n3c ["RRID:SCR_018757"] ["NCATS_N3C@nih.gov", "chute@jhu.edu", "kenneth.gersing@nih.gov", "melissa@tislab.org"] The N3C Data Enclave is a secure portal containing a very large and extensive set of harmonized COVID-19 clinical electronic health record (EHR) data. The data can be accessed through a secure cloud Enclave hosted by NCATS and cannot be downloaded due to regulatory control. Broad access is available to investigators at institutions that sign a Data Use Agreements and via Data Use Requests by investigators. The N3C is a unique open, reproducible, transparent, collaborative team science initiative to leverage sensitive clinical data to expedite COVID-19 discoveries and improve health outcomes. eng ["institutional"] {"size": "601.000 patients; 62.492 COVID-19 positive patients; 632.8M rows of data", "updatedp": "2020-10-05"} 2020 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://covid.cd2h.org/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "EHR", "MERS", "SARS 1", "clinical data model", "electronic health record", "observational data"] [{"institutionName": "National Center for Advancing Translational Science", "institutionAdditionalName": ["NCATS"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ncats.nih.gov/", "institutionIdentifier": ["ROR:04pw6fb54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Data to Health", "institutionAdditionalName": ["CD2H"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cd2h.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "N3C Data User Code of Conduct", "policyURL": "https://ncats.nih.gov/n3c/resources/data-user-code-of-conduct"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ncats.nih.gov/files/NCATS_N3C_Data_Use_Agreement.pdf"}, {"dataLicenseName": "other", "dataLicenseURL": "https://ncats.nih.gov/files/NCATS_N3C_Sample_Data_Use_Request.pdf"}] restricted [{"dataUploadLicenseName": "NIH COVID-19 Data Warehouse Data Transfer Agreement (\u201cAgreement\u201d)", "dataUploadLicenseURL": "https://ncats.nih.gov/files/NCATS_Data_Transfer_Agreement_05-11-2020_Updated%20508.pdf"}] [] {} [] https://covid.cd2h.org/FAQs#views-bootstrap-n3c-data-enclave-faqs-block-1-collapse-10 [] unknown yes [] [] {} The NCATS N3C Data Enclave is an Amazon Web Services GovCloud system and is aligned with the following certifications, frameworks and attestations: SSAE18 SOC 2 Type II, ISAE 3000 SOC 2 Type II, Federal Risk and Authorization Management Program Moderate, and the Trusted Information Security Assessment Exchange (in process). GitHub: https://github.com/National-COVID-Cohort-Collaborative 2020-10-01 2020-10-08 +r3d100013423 Yareta eng [{"additionalName": "Le Data Repository des chercheurs et chercheuses des hautes \u00e9coles genevoises", "additionalNameLanguage": "fra"}, {"additionalName": "The Research Data Repository of Geneva's Higher Education Institutions", "additionalNameLanguage": "eng"}, {"additionalName": "Yareta Service", "additionalNameLanguage": "eng"}] https://yareta.unige.ch/ [] ["eresearch@unige.ch"] Yareta is a repository service built on digital solutions for archiving, preserving and sharing research data that enable researchers and institutions of any disciplines to share and showcase their research results. The solution was developed as part of a larger project focusing on Data Life Cycle Management (dlcm.ch) that aims to develop various services for research data management. Thanks to its highly modular architecture, Yareta can be adapted both to small institutions that need a "turnkey" solution and to larger ones that can rely on Yareta to complement what they have already implemented. Yareta is compatible with all formats in use in the different scientific disciplines and is based on modern technology that interconnects with researchers' environments (such as Electronic Laboratory Notebooks or Laboratory Information Management Systems). eng ["institutional"] {"size": "200 datasets; 110'000 files, 1 Terabyte", "updatedp": "2020-10-07"} 2019-07-01 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://yareta.unige.ch/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DLCM", "FAIR", "OAIS", "multidisciplinary"] [{"institutionName": "Universit\u00e9 de Gen\u00e8ve", "institutionAdditionalName": ["UNIGE", "University of Geneva"], "institutionCountry": "CHE", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.unige.ch", "institutionIdentifier": ["ROR:01swzsf04"], "responsibilityStartDate": "2019-07-01", "responsibilityEndDate": "", "institutionContact": ["https://www.unige.ch"]}] [{"policyName": "Policies", "policyURL": "https://www.unige.ch/eresearch/yareta/policies"}, {"policyName": "Terms", "policyURL": "https://www.unige.ch/eresearch/yareta/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}, {"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Policies", "dataUploadLicenseURL": "https://www.unige.ch/eresearch/yareta/policies"}] [] yes {"api": "https://yareta.unige.ch/oai", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-10-07 2020-10-09 +r3d100013425 DAIS eng [{"additionalName": "Digital Archive of the Serbian Academy of Sciences and Arts", "additionalNameLanguage": "eng"}, {"additionalName": "Digitalni arhiv izdanja SANU", "additionalNameLanguage": "srp"}] https://dais.sanu.ac.rs/?locale-attribute=en [] ["dais@sanu.ac.rs"] DAIS - Digital Archive of the Serbian Academy of Sciences and Arts is a joint digital repository of the Serbian Academy of Sciences and Arts (SASA) and the research institutes under the auspices of SASA. The aim of the repository is to provide open access to publications and other research outputs resulting from the projects implemented by the SASA and its institutes. The repository uses a DSpace-based software platform developed and maintained by the Belgrade University Computer Centre (RCUB). eng ["institutional"] {"size": "", "updatedp": ""} 2017 ["eng", "srp"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10101 Prehistory", "scheme": "DFG"}, {"name": "10102 Classical Philology", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10402 Individual Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "11206 Economic and Social History", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20707 Agricultural and Food Process Engineering", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "306 Polymer Research", "scheme": "DFG"}, {"name": "30603 Polymer Materials", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "312 Mathematics", "scheme": "DFG"}, {"name": "31201 Mathematics", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31701 Physical Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "40502 Sintered Metallic and Ceramic Materials", "scheme": "DFG"}, {"name": "40503 Composite Materials", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "40605 Biomaterials", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://dais.sanu.ac.rs/contact [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Balkan studies", "Byzantine studies", "Slavic studies", "art history", "biology", "dialects", "dictionaries", "engineering", "environment", "epigraphy", "ethnology", "etymology", "geography", "grammar", "history", "linguistics", "materials science", "music", "onomastics", "rural studies", "urban studies"] [{"institutionName": "Serbian Academy of Sciences and Arts", "institutionAdditionalName": ["SANU", "SASA", "Srpska akademija nauka i umetnosti"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.sanu.ac.rs/en/", "institutionIdentifier": ["ROR:05m1y4204"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, Geographical Institute Jovan Cviji\u0107", "institutionAdditionalName": ["SANU, Geografski institut \u201eJovan Cviji\u0107\u201c", "SASA, Geographical Institute Jovan Cviji\u0107"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gi.sanu.ac.rs/site/index.php/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, Institute for Balkan Studies", "institutionAdditionalName": ["SANU, Balkanolo\u0161ki institut", "SASA, Institute for Balkan Studies"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.balkaninstitut.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, Institute for the Serbian Language", "institutionAdditionalName": ["SANU, Institut za srpski jezik", "SASA, Institute for the Serbian Language"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.isj.sanu.ac.rs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, Institute of Musicology", "institutionAdditionalName": ["SANU, Muzikolo\u0161ki institut", "SASA, Institute of Musicology"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.music.sanu.ac.rs/Srpski/Home.htm", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, Institute of Technical Sciences", "institutionAdditionalName": ["SANU, Institut tehni\u010dkih nauka", "SASA, Institute of Technical Sciences"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.itn.sanu.ac.rs", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, The Institute for Byzantine Studies", "institutionAdditionalName": ["SANU, Vizantolo\u0161ki institut", "SASA, The Institute for Byzantine Studies"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.byzinst-sasa.rs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Serbian Academy of Sciences and Arts, The Institute of Ethnography", "institutionAdditionalName": ["SANU, Etnografski institut", "SASA, The Institute of Ethnography"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://etno-institut.co.rs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Belgrade, Computer Centre", "institutionAdditionalName": ["RCUB", "Univerziteta u Beogradu, Ra\u010dunarski centar"], "institutionCountry": "SRB", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.rcub.bg.ac.rs/", "institutionIdentifier": [], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": ["info@open.ac.rs"]}] [{"policyName": "Repository policy", "policyURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}] restricted [{"dataUploadLicenseName": "Submission policy", "dataUploadLicenseURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}] ["DSpace"] {} ["hdl"] ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-10-08 2021-11-02 +r3d100013426 Repositorio Universidad Autónoma de Bucaramanga spa [{"additionalName": "Repositorio Institucional UNAB", "additionalNameLanguage": "spa"}] https://repository.unab.edu.co/ [] ["https://repository.unab.edu.co/contact", "repositorio@unab.edu.co"] A space for managing, preserving and disseminating the intellectual, scientific, cultural and historical production of the university community. It allows access to documents produced by the different UNAB members as a result of research, teaching and extension activities. eng ["institutional"] {"size": "", "updatedp": ""} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11101 Sociological Theory", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad Aut\u00f3noma de Bucaramanga", "institutionAdditionalName": ["Autonomous University of Bucaramanga", "UNAB"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unab.edu.co/", "institutionIdentifier": ["ROR:00gkhpw57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}] restricted [] ["DSpace"] {} ["hdl"] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-10-08 2021-06-15 +r3d100013427 Repositorio Institucional de la Universidad de Burgos spa [{"additionalName": "Institutional Repository of the University of Burgos", "additionalNameLanguage": "eng"}, {"additionalName": "RIUBU", "additionalNameLanguage": "spa"}] https://riubu.ubu.es/ ["OpenDOAR:1527"] ["bubrep@ubu.es", "https://riubu.ubu.es/feedback"] The Institutional Repository of the University of Burgos is based on the digital collections that include the documents generated by the members of the university community in their academic activities. These are accessible via the Internet, in accordance with the University's Open Access Institutional Policy. eng ["institutional"] {"size": "5.228 records; 3 datasets", "updatedp": "2020-10-13"} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://riubu.ubu.es/page/moreinformation [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Burgos University Library", "institutionAdditionalName": ["Biblioteca Universitaria Universidad de Burgos", "biblioubu"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ubu.es/biblioteca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Regional Development Fund", "institutionAdditionalName": ["ERDF"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/regional_policy/en/funding/erdf/", "institutionIdentifier": ["VIAF:133608505", "Wikidata:Q1361297"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Burgos", "institutionAdditionalName": ["UBU", "Universidad de Burgos"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ubu.es/english-version", "institutionIdentifier": ["ROR:049da5t36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Gu\u00eda de uso", "policyURL": "https://riubu.ubu.es/static/pdf/help_de.pdf"}, {"policyName": "Open Access", "policyURL": "https://www.ubu.es/acceso-abierto"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [{"dataUploadLicenseName": "Archivar en RIUBU", "dataUploadLicenseURL": "https://www.ubu.es/e-bub-biblioteca-digital/archivar-en-riubu"}] ["DSpace"] {"api": "http://riubu.ubu.es/oai/request%20?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2020-10-13 2020-10-15 +r3d100013428 Genome Warehouse eng [{"additionalName": "GWH", "additionalNameLanguage": "eng"}] https://bigd.big.ac.cn/gwh/ ["FAIRsharing_doi::10.25504/FAIRsharing.7qBaJ0"] ["gwhcuration@big.ac.cn"] The Genome Warehouse (GWH) is a public repository housing genome-scale data for a wide range of species and delivering a series of web services for genome data submission, storage, release and sharing. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017-07-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://bigd.big.ac.cn/mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animals", "archaea", "bacteria", "fungi", "genome annotation", "genome archive", "genome sequence", "genome submission", "metagenomes", "plants", "quality control", "viroids", "viruses"] [{"institutionName": "China National Center for Bioinformation / Beijing Institute of Genomics, Chinese Academy of Sciences", "institutionAdditionalName": ["CAS-BIG"], "institutionCountry": "CHN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://big.cas.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "China National Center for Bioinformation, National Genomics Data Center", "institutionAdditionalName": ["CNCB-NGDC"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://bigd.big.ac.cn/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Policies", "policyURL": "https://bigd.big.ac.cn/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/cn/"}] restricted [] [] {"api": "ftp://download.big.ac.cn/gwh/", "apiType": "FTP"} [] https://bigd.big.ac.cn/gwh/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-10-14 2021-03-23 +r3d100013429 Astromaterials Data System eng [{"additionalName": "AstroMat", "additionalNameLanguage": "eng"}, {"additionalName": "AstroRepo", "additionalNameLanguage": "eng"}, {"additionalName": "Astromaterials Data System Repository", "additionalNameLanguage": "eng"}] https://www.astromat.org ["FAIRsharing_doi:10.25504/FAIRsharing.tYYt1o"] ["Dr. Kerstin Lehnert, lehnert@ldeo.columbia.edu", "info@astromat.org"] The Astromaterials Data System (AstroMat) is a data infrastructure to store, curate, and provide access to laboratory data acquired on samples curated in the Astromaterials Collection of the Johnson Space Center. AstroMat is developed and operated at the Lamont-Doherty Earth Observatory of Columbia University and funded by NASA. eng ["disciplinary"] {"size": "35 datasets", "updatedp": "2020-10-15"} 2018-10 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.astromat.org/about/overview/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["MoonDB", "asteroid", "astromaterials", "cosmic dust", "cosmochemistry", "lunar", "meteorite"] [{"institutionName": "Johnson Space Center", "institutionAdditionalName": ["JSC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/centers/johnson/home/index.html", "institutionIdentifier": ["ROR:04xx4z452"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Lamont-Doherty Earth Observatory", "institutionAdditionalName": ["LDEO"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ldeo.columbia.edu/", "institutionIdentifier": ["ROR:02e2tgs60"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "2018-10", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.astromat.org/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Submission Guidelines", "dataUploadLicenseURL": "http://www.astromat.org/submit-data/submission-guidelines/"}] [] {"api": "http://api.moondb.org/", "apiType": "other"} ["DOI", "other"] https://www.astromat.org/terms-of-use/ ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-10-15 2021-10-25 +r3d100013430 HPDE.io eng [{"additionalName": "HPDE Registry", "additionalNameLanguage": "eng"}, {"additionalName": "Heliophysics Data Environment Registry", "additionalNameLanguage": "eng"}] https://hpde.io [] ["aaron.roberts@nasa.gov"] Provides quick, uncluttered access to information about Heliophysics research data that have been described with SPASE resource descriptions. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["SPASE", "heliophysics", "space physics"] [{"institutionName": "NASA Goddard Space Flight Center, Space Physics Data Facility, Space Physics Archive Search and Extract Consortium", "institutionAdditionalName": ["SPASE"], "institutionCountry": "AAA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://spase-group.org/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://spase-group.org/connect.html"]}, {"institutionName": "University of California, Board of Regents", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://regents.universityofcalifornia.edu/about/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA Heliophysics Science Data Management Policy", "policyURL": "https://hpde.gsfc.nasa.gov/Heliophysics_Data_Policy_v1.2_2016Oct04.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] [] {} ["none"] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Github: https://github.com/hpde 2020-10-19 2020-10-23 +r3d100013431 NASA Heliophysics Data Portal eng [{"additionalName": "HP Data Portal", "additionalNameLanguage": "eng"}] https://heliophysicsdata.gsfc.nasa.gov [] ["aaron.roberts@nasa.gov", "gsfc-spdf-support@lists.nasa.gov"] Ever growing search and retrieval site for a comprehensive set of Heliophysics data from NASA and other spacecraft and ground-based observatories. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider"] ["heliophysics", "space physics"] [{"institutionName": "NASA's Goddard Space Flight Center,Sciences and Exploration Directorate, Heliospheric Physics Laboratory", "institutionAdditionalName": ["HSD"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://science.gsfc.nasa.gov/heliophysics/heliospheric/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Heliophysics Data Portal Info", "policyURL": "https://heliophysicsdata.gsfc.nasa.gov/websearch/HP_Data_Portal_info.jsp"}, {"policyName": "NASA Web Privacy Policy", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html#508"}] restricted [] ["other"] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-10-19 2020-10-27 +r3d100013432 BioSimulators eng [] https://biosimulators.org ["FAIRsharing_DOI:10.25504/FAIRsharing.pwEima"] ["https://github.com/biosimulators/Biosimulators/issues/new/choose", "info@biosimulators.org"] BioSimulators is a registry of containerized biosimulation tools that provide consistent command-line interfaces. The BioSimulations web application helps investigators browse this registry to find simulation tools that have the capabilities (supported modeling frameworks, simulation algorithms, and modeling formats) needed for specific modeling projects. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Software applications", "scheme": "parse"}] ["dataProvider"] ["COMBINE", "Docker", "OMEX", "SED-Ml", "container", "image", "modeling", "simulation", "systems biology"] [{"institutionName": "Center for Reproducible Biomedical Modeling", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://reproduciblebiomodels.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Code of conduct", "policyURL": "https://github.com/biosimulators/Biosimulators/blob/dev/CODE_OF_CONDUCT.md"}, {"policyName": "Contributing", "policyURL": "https://github.com/biosimulators/Biosimulators/blob/dev/CONTRIBUTING.md"}, {"policyName": "Terms of service", "policyURL": "https://biosimulators.org/help/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://github.com/biosimulators/Biosimulators/blob/dev/LICENSE"}] open [] [] yes {"api": "https://api.biosimulators.org", "apiType": "REST"} [] [] unknown yes [] [] {} 2020-10-21 2021-11-16 +r3d100013433 Bicocca Open Archive Research Data eng [{"additionalName": "BOARD", "additionalNameLanguage": "eng"}] http://board.unimib.it ["FAIRsharing_DOI:10.25504/FAIRsharing.DDotIl"] ["board@unimib.it"] BOARD (Bicocca Open Archive Research Data) is the institutional data repository of the University of Milano-Bicocca. BOARD is an open, free-to-use research data repository, which enables members of University of Milano-Bicocca to make their research data publicly available. By depositing their research data in BOARD researchers can: - Make their research data citable - Share their data privately or publicly - Ensure long-term storage for their data - Keep access to all versions - Link their article to their data eng ["institutional"] {"size": "658 datasets", "updatedp": "2020-11-02"} 2020-10 ["eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://board.unimib.it/mission [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Mendeley Ltd.", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mendeley.com", "institutionIdentifier": ["ROR:01t2a8a42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.mendeley.com/contact-us/"]}, {"institutionName": "University of Milano-Bicocca", "institutionAdditionalName": ["Universit\u00e0 degli Studi di Milano-Bicocca"], "institutionCountry": "ITA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://en.unimib.it/", "institutionIdentifier": ["ROR:01ynf4891"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["board@unimib.it"]}] [{"policyName": "Archive Policy", "policyURL": "https://board.unimib.it/archive-process"}, {"policyName": "Open Science Policy", "policyURL": "https://www.unimib.it/sites/default/files/ricerca/doc-open-science-2019.pdf"}, {"policyName": "Terms of Use", "policyURL": "https://board.unimib.it/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": ["institutional membership", "registration"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/bsd-license.php"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://cecill.info/index.en.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/mit-license.php"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/licenses.it.html#GPL"}] restricted [] ["other"] yes {"api": "https://board.unimib.it/oai?verb=Identify", "apiType": "OAI-PMH"} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-10-22 2021-11-17 +r3d100013438 Repositori Institucional de la URV cat [{"additionalName": "Rovira i Virgily Institutional Repository", "additionalNameLanguage": "eng"}] http://repositori.urv.cat/en/ ["ROAR:11366", "openDOAR:3351"] ["http://www.urv.cat/contacte.html", "repositori@urv.cat"] The URV's institutional repository is a deposit of digital documents that contains the teaching and research output of the members of the URV university community: for example, articles that have not yet been published (preprints), published articles (postprints), research data, end-of-degree projects, bachelor's degree theses, doctoral theses, teaching material and other documents that may be useful for generating knowledge. It is available to all the institutions that are part of the Campus of International Excellence Southern Catalonia and who wish to use it in cooperation with others. eng ["institutional"] {"size": "12.693 Registers", "updatedp": "2020-11-02"} 2012 ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://repositori.urv.cat/en/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Daniel Vilar\u00f3 Rius", "multidisciplinary"] [{"institutionName": "Universitat Rovira i Virgili", "institutionAdditionalName": ["Rovira i Virgili University", "URV"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.urv.cat/en/", "institutionIdentifier": ["ROR:00g5sqv46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica institucional d'acc\u00e9s obert de la Universitat Rovira i Virgili", "policyURL": "https://www.urv.cat/ca/universitat/normatives/politica-acces-obert/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "http://repositori.urv.cat/en/about/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://repositori.urv.cat/en/about/"}] restricted [{"dataUploadLicenseName": "Authorisation for depositing documents into the Institutional Repository of the URV", "dataUploadLicenseURL": "http://repositori.urv.cat/media/upload/domain_378/arxius/20181008_Autorizaci%C3%B3n%20para%20introducir%20documentos%20en%20el%20Repositorio%20Institucional%20de%20la%20URV_english.pdf"}] ["Fedora"] {"api": "https://appserver.urv.cat/fedora/oai?verb=ListSets", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-10-30 2020-11-05 +r3d100013439 DataON Repository eng [{"additionalName": "previous name: KORD", "additionalNameLanguage": "eng"}, {"additionalName": "previous name: Korea Open Research Data", "additionalNameLanguage": "eng"}] https://dataon.kisti.re.kr [] ["dataon@kisti.re.kr"] DataON is Korea's National Research Data Platform. It provides integrated search of metadata for KISTI's research data and domestic and international research data and links to raw data. DataON allows users (researchers, policy makers, etc.) to perform the following tasks: Easily search for various types of research data in all scientific fields. By registering research results, research data can be posted and cited. Build a community among researchers and enable collaborative research. It provides a data analysis environment that allows one-stop analysis of discovered research data. eng [] {"size": "1.889.973datasets; 1.513.677 images", "updatedp": "2020-11-10"} ["eng", "kor"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.kisti.re.kr/eng/about/pageView/247 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Korea Institute of Science and Technology Information", "institutionAdditionalName": ["KISTI"], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kisti.re.kr/eng/", "institutionIdentifier": ["ROR:01k4yrm29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kisti.re.kr/eng/global-network/pageView/259"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://dataon.kisti.re.kr/layout/termsOfUse.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://cckorea.org/xe/?mid=licenses"}] open [] [] {} ["DOI"] ["ORCID"] unknown unknown [] [] {} 2020-11-03 2020-11-17 +r3d100013440 Cassavabase eng [] https://cassavabase.org ["FAIRsharing_DOI:10.25504/FAIRsharing.ejofJI"] ["https://cassavabase.org/contact/form"] Breeding, molecular, genetics and genomics data on cassava (Manihot esculenta) and wild relatives eng ["disciplinary"] {"size": "1300 phenotyping trials", "updatedp": "2020-11-05"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.nextgencassava.org/what-we-do/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Africa", "field trials", "genotyping", "organisms", "sub-Saharan Africa"] [{"institutionName": "Boyce Thompson Institute", "institutionAdditionalName": ["BTI"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://btiscience.org/", "institutionIdentifier": ["RRID:SCR_010716", "RRID:nlx_89613"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cornell University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cornell.edu/", "institutionIdentifier": ["ROR:05bnh6r87", "RRID:SCR_003998", "RRID:nlx_58666"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NextGen Cassava", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nextgencassava.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Usage Policy", "policyURL": "https://cassavabase.org/usage_policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.nature.com/articles/461168a"}] restricted [] ["other"] {"api": "ftp://ftp.cassavabase.org/", "apiType": "FTP"} ["none"] https://cassavabase.org/help [] unknown unknown [] [] {} related project: Sol Genomics Network hub (SGN), breedbase 2020-11-03 2021-11-16 +r3d100013441 Repository of Psychological Instruments in Serbian eng [{"additionalName": "REPOPSI", "additionalNameLanguage": "eng"}, {"additionalName": "Repozitorijum psiholo\u0161kih instrumenata na srpskom jeziku", "additionalNameLanguage": "srp"}] https://osf.io/5zb8p/ ["DOI:10.17605/OSF.IO/5ZB8P"] ["lira@f.bg.ac.rs"] The Repository of Psychological Instruments in Serbian (REPOPSI; https://osf.io/5zb8p/), run by the Laboratory for Research of Individual Differences at the University of Belgrade and hosted on the Open Science Framework, is an open-access repository of psychological instruments. REPOPSI is a collection of psychological measures, scales, tests, and other research instruments commonly used in social and behavioral science research. Documented are Serbian, English and multilingual instruments, which can be used free of charge for non-commercial purposes (e.g., academic research or education). eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-03-06 ["eng", "srp"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11001 General, Biological and Mathematical Psychology", "scheme": "DFG"}, {"name": "11002 Developmental and Educational Psychology", "scheme": "DFG"}, {"name": "11003 Social Psychology, Industrial and Organisational Psychology", "scheme": "DFG"}, {"name": "11004 Differential Psychology, Clinical Psychology, Medical Psychology, Methodology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://osf.io/5zb8p/wiki/home/ [{"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["Individual Differences", "Psychological Measures"] [{"institutionName": "Open Science Framework", "institutionAdditionalName": ["OSF"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://osf.io/", "institutionIdentifier": ["RRID:SCR_017419"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://osf.io/support"]}, {"institutionName": "University of Belgrade, Faculty of Philosophy, Laboratory for Research of Individual Differences", "institutionAdditionalName": ["LIRA", "Laboratorija za istra\u017eivanje individualnih razlika"], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://lira.f.bg.ac.rs/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://lira.f.bg.ac.rs/en/contact/"]}] [{"policyName": "Disclaimer", "policyURL": "https://osf.io/5zb8p/wiki/home/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["other"] yes {"api": "https://api.osf.io/v2/nodes/5zb8p/", "apiType": "REST"} ["DOI"] https://osf.io/5zb8p/wiki/home/ [] unknown unknown [] [] {} Github: https://github.com/liralab-bgd/repopsi 2020-11-05 2020-11-10 +r3d100013442 Producción Académica UCC spa [] http://pa.bibdigital.uccor.edu.ar/ [] ["docu7.biblio@ucc.edu.ar", "http://pa.bibdigital.uccor.edu.ar/contact.html"] A collection that brings together the scientific and academic production generated by the university's teachers and researchers. Objectives * Bring together the academic and scientific production generated by the university. ● Preserve and disseminate documents produced at the UCC ● To provide greater visibility and increase the impact of publications. ● Ensure free and open access to the university's scientific and academic production. ● Ensure long-term preservation. spa ["institutional"] {"size": "", "updatedp": ""} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad Cat\u00f3lica de C\u00f3rdoba", "institutionAdditionalName": [], "institutionCountry": "ARG", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ucc.edu.ar/", "institutionIdentifier": ["ROR:04hehwn14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Cat\u00f3lica de C\u00f3rdoba, Sistema de Bibliotecas", "institutionAdditionalName": [], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://biblioteca.ucc.edu.ar/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica del Repositorio Producci\u00f3n Acad\u00e9mica", "policyURL": "http://pa.bibdigital.uccor.edu.ar/2018_Politica_de_repositorio_Produccion_Academica.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/2.5/ar/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/2.5/ar/"}] restricted [{"dataUploadLicenseName": "Formulario de autorizaci\u00f3n de dep\u00f3sito", "dataUploadLicenseURL": "http://pa.bibdigital.uccor.edu.ar/policies.html"}] ["EPrints"] {"api": "http://pa.bibdigital.uccor.edu.ar/cgi/oai2", "apiType": "OAI-PMH"} ["none"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-11-06 2021-06-15 +r3d100013444 Aperta TÜBİTAK Open Archive eng [{"additionalName": "Aperta - T\u00dcB\u0130TAK A\u00e7\u0131k Ar\u015fivi", "additionalNameLanguage": "tur"}] https://aperta.ulakbim.gov.tr [] ["aperta@tubitak.gov.tr"] Aperta is the open access repository of The Scientific and Technological Research Council of Turkey (TÜBİTAK). The publications produced from the projects supported by TUBITAK must be uploaded to TUBITAK Open Archive Aperta. It is recommended that the research data of these publications should be open access. tur ["institutional"] {"size": "48657 record", "updatedp": "2020-11-16"} ["tur"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://aperta.ulakbim.gov.tr/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "T\u00dcB\u0130TAK Ulusal Akademik A\u011f ve Bilgi Merkezi", "institutionAdditionalName": ["Turkish Academic Network and Information Center", "ULAKBIM"], "institutionCountry": "TUR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ulakbim.tubitak.gov.tr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "T\u00fcrkiye Bilimsel ve Teknolojik Ara\u015ft\u0131rma Kurumu", "institutionAdditionalName": ["Scientific and Technological Research Council of Turkey", "T\u00dcB\u0130TAK"], "institutionCountry": "TUR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.tubitak.gov.tr/en", "institutionIdentifier": ["ROR:04w9kkr77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Aperta - S\u0131k Sorulan Sorular", "policyURL": "https://aperta.ulakbim.gov.tr/faq"}, {"policyName": "Aperta - T\u00dcB\u0130TAK A\u00e7\u0131k Ar\u015fivi", "policyURL": "https://aperta.ulakbim.gov.tr/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {"api": "https://aperta.ulakbim.gov.tr/oai2d", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-11-09 2020-11-18 +r3d100013445 SEDICI spa [{"additionalName": "Institutional Repository of the UNLP", "additionalNameLanguage": "eng"}, {"additionalName": "Servicio de Difusi\u00f3n de la Creaci\u00f3n Intelectual", "additionalNameLanguage": "spa"}] http://sedici.unlp.edu.ar/ [] ["info@sedici.unlp.edu.ar"] SEDICI [Intellectual Creation Diffusion Service] is the institutional repository of the Universidad Nacional de La Plata (UNLP), a public university located at Argentina. Its goal is to index, preserve and grant open access to all kind of academic work produced at this institution including thesis, scientific articles, datasets, books, conference objects, and more. eng ["institutional"] {"size": "10.1900 resources", "updatedp": "2020-11-12"} 2003-12-01 ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] http://sedici.unlp.edu.ar/pages/queEsSedici [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary", "patrimonial collections"] [{"institutionName": "Universidad Nacional de La Plata", "institutionAdditionalName": ["National University of La Plata", "UNLP"], "institutionCountry": "ARG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://unlp.edu.ar/", "institutionIdentifier": ["ROR:01tjs6929"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Obligation to deposit works in the repository", "policyURL": "http://sedici.unlp.edu.ar/handle/10915/74049"}, {"policyName": "Repository policies", "policyURL": "http://sedici.unlp.edu.ar/pages/politicas"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}] restricted [] ["DSpace"] no {"api": "http://sedici.unlp.edu.ar/oai", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "http://sedici.unlp.edu.ar/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-11-11 2020-11-14 +r3d100013449 Freedom on the Move eng [{"additionalName": "FOTM project", "additionalNameLanguage": "eng"}] https://freedomonthemove.org/ [] ["fotmproject@gmail.com"] A database of fugitives from North American slavery. Freedom on the Move is a citizen science (crowdsourcing) project operated by the Cornell Institute for Social and Economic Research (CISER) at Cornell University, in collaboration with several other institutions which support digital humanities research. The project involves members of the public in transcribing and responding to questions regarding historical newspaper advertisements placed by enslavers who wanted to recapture self-liberating Africans and African Americans. The database created is intended to be an invaluable research aid, pedagogical tool, and resource for genealogists. eng ["disciplinary"] {"size": "27.422 advertisements", "updatedp": "2020-11-20"} 2019 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11102 Empirical Social Research", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://freedomonthemove.org/#about [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] [] [{"institutionName": "Cornell Institute for Social and Economic Research", "institutionAdditionalName": ["CISER"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://ciser.cornell.edu/", "institutionIdentifier": ["Wikidata:Q101483286"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cornell University", "institutionAdditionalName": ["CU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cornell.edu/", "institutionIdentifier": ["ROR:05bnh6r87"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Cornell University Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.cornell.edu/", "institutionIdentifier": ["Wikidata:Q5171572"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Archives and Records Administration, National Historical Publications and Records Commission", "institutionAdditionalName": ["NARA, NHPRC"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.archives.gov/nhprc", "institutionIdentifier": ["Wikidata:Q72940592"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Endowment for the Humanities", "institutionAdditionalName": ["NEH"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.neh.gov/", "institutionIdentifier": ["ROR:02vdm1p28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ohio State University", "institutionAdditionalName": ["OSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.osu.edu/", "institutionIdentifier": ["ROR:00rs6vg23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alabama", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ua.edu/", "institutionIdentifier": ["ROR:03xrrjk67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Kentucky", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.uky.edu/", "institutionIdentifier": ["ROR:02k3smh20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of New Orleans", "institutionAdditionalName": ["UNO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uno.edu/", "institutionIdentifier": ["ROR:034mtvk83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use & Contributors Agreement", "policyURL": "https://freedomonthemove.org/terms.html#tou"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Terms of Use & Contributors Agreement", "dataUploadLicenseURL": "https://freedomonthemove.org/terms.html#tou"}] [] {} [] [] unknown unknown [] [] {} With data shared by: University Libraries of The University of North Carolina at Greensboro, The North Carolina Runaway Slave Advertisements Project 2020-11-19 2020-11-22 +r3d100013450 Repositorio Institucional-Universidad Autónoma de Manizales spa [{"additionalName": "Institutional Repository - Autonomous University of Manizales", "additionalNameLanguage": "eng"}, {"additionalName": "REPOUAM", "additionalNameLanguage": "eng"}] https://repositorio.autonoma.edu.co ["OpenDOAR:4706"] ["https://repositorio.autonoma.edu.co/feedback", "wcano@autonoma.edu.co"] Preserves and enables easy and open access to all types of digital content including text, images, moving images, mpegs and data sets of Autonomous University of Manizales. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] [] [{"institutionName": "Red Colombiana de Informaci\u00f3n Cient\u00edfica", "institutionAdditionalName": ["REDCOL"], "institutionCountry": "COL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://redcol.minciencias.gov.co/vufind/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universidad Autonoma de Manizales", "institutionAdditionalName": ["Autonomous University of Manizales", "UAM"], "institutionCountry": "COL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.autonoma.edu.co/", "institutionIdentifier": ["ROR:00jfare13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["DSpace"] yes {"api": "https://repositorio.autonoma.edu.co/oai", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2020-11-21 2021-11-03 +r3d100013451 QsarDB eng [{"additionalName": "QSAR Data Base", "additionalNameLanguage": "eng"}] http://qsardb.org/ [] ["qsardb@chem.ut.ee"] QSAR DataBank (QsarDB) is repository for (Quantitative) Structure-Activity Relationships ((Q)SAR) data and models. It also provides open domain-specific digital data exchange standards and associated tools that enable research groups, project teams and institutions to share and represent predictive in silico models. eng ["disciplinary"] {"size": "213 datasets", "updatedp": "2020-11-30"} 2008 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30302 General Theoretical Chemistry", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] http://qsardb.org/about/qsardb [{"name": "Configuration data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "QSPR", "biochemical activities", "chemical safety", "cheminformatics", "computational toxicology", "ecotoxicity", "environmental fate", "human health", "physical and chemical properties", "predictive models", "risk assessment", "toxicokinetics"] [{"institutionName": "University of Tartu", "institutionAdditionalName": ["Tartu \u00dclikool"], "institutionCountry": "EST", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/en", "institutionIdentifier": ["ROR:03z77qz90", "RRID:SCR_011710", "RRID:nlx_49099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ut.ee/en/contact"]}, {"institutionName": "University of Tartu, Institute of Chemistry", "institutionAdditionalName": [], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.chem.ut.ee/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "QsarDB policies", "policyURL": "http://qsardb.org/about/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}, {"dataUploadLicenseName": "Data submission and usage", "dataUploadLicenseURL": "http://qsardb.org/about/policies"}, {"dataUploadLicenseName": "Public Domain", "dataUploadLicenseURL": "http://creativecommons.org/publicdomain/zero/1.0/"}] ["DSpace"] {"api": "http://qsardb.org/guidelines/predict", "apiType": "REST"} ["DOI", "hdl"] http://qsardb.org/about/citing [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {"syndication": "http://qsardb.org/repository/feed/atom_1.0/site", "syndicationType": "ATOM"} 2020-11-25 2020-12-02 +r3d100013453 CLARIN-IS eng [{"additionalName": "CLARIN \u00e1 \u00cdslandi", "additionalNameLanguage": "isl"}] https://clarin.is/ [] ["clarin@clarin.is", "eirikur.rognvaldsson@arnastofnun.is"] Iceland joined CLARIN ERIC on February 1st, 2020, after having been an observer since November 2018. The Ministry of Education, Science and Culture assigned The Árni Magnússon Institute for Icelandic Studies the role of leading partner in the Icelandic National Consortium and appointed Professor Emeritus Eiríkur Rögnvaldsson as National Coordinator. Most of the relevant institutions participate in the CLARIN-IS National Consortium. The Árni Magnússon Institute has already established a Metadata Providing Centre (CLARIN C-Centre) which hosts metadata for Icelandic language resources and makes them available through the Virtual Language Observatory. The aim is to establish a Service Providing Centre (CLARIN B-Centre) which will provide both service and access to resources and knowledge. eng ["disciplinary"] {"size": "80 items", "updatedp": "2021-06-17"} ["eng", "isl"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://clarin.is/en/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ISLC", "conversations"] [{"institutionName": "CLARIN-ERIC", "institutionAdditionalName": ["CLARIN European Research Infrastructure Consortium", "Common Language Resources and Technology Infrastructure"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.clarin.eu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CLARIN-IS", "institutionAdditionalName": ["Common Language Resources and Technology Infrastructure National Consortium Iceland"], "institutionCountry": "ISL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://clarin.is/en/participants/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Iceland, \u00c1rni Magn\u00fasson Institute for Icelandic Studies", "institutionAdditionalName": ["eirikur.rognvaldsson@gmail.com"], "institutionCountry": "ISL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.arnastofnun.is/en/institute", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CLARIN Agreement with the National Consortium of Iceland", "policyURL": "https://clarin.is/media/uploads/CE-2020-1638-CLARIN-Agreement-Iceland-01.02.2020-31.12.2022.pdf"}, {"policyName": "Terms of Service", "policyURL": "https://repository.clarin.is/repository/xmlui/page/terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] [] yes {"api": "https://centres.clarin.eu/oai_pmh", "apiType": "OAI-PMH"} ["hdl"] [] yes unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} CLARIN ERIC is an ESFRI initiative, one of EU's ERICs – CLARIN stands for “Common Language Resources and Technology Infrastructure” and ERIC stands for “European Research Infrastructure Consortium”. CLARIN ERIC operates according to statutes that have been approved by the European Commission. 2020-11-26 2021-06-23 +r3d100013455 Worldviews eng [] http://worldviews.gei.de/ [] ["http://worldviews.gei.de/contact/"] WorldViews is a multilingual, digital resource for primary source material, containing digitised excerpts from textbooks from around the world on topics that are of global, transnational and interregional relevance. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}] http://worldviews.gei.de/about/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["textbook research"] [{"institutionName": "Georg Eckert Institute for International Textbook Research", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.gei.de/home.html", "institutionIdentifier": ["ROR:01hnv8x68"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.gei.de/institut/kontakt.html"]}] [{"policyName": "WorldViews", "policyURL": "http://worldviews.gei.de/about/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://worldviews.gei.de/impress/"}] restricted [] [] {"api": "http://worldviews.gei.de/oai", "apiType": "OAI-PMH"} [] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} GEI is a Clarin C Center 2020-11-26 2021-06-27 +r3d100013456 Open Forest Data eng [{"additionalName": "e-Puszcza", "additionalNameLanguage": "pol"}] https://dataverse.openforestdata.pl [] ["jlapinska@ibs.bialowieza.pl"] Podlasie digital repository of natural science data eng ["disciplinary", "institutional"] {"size": "11 dataverses, 681 datasets, 542 files", "updatedp": "2020-11-30"} 2020 ["eng", "pol"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://openforestdata.pl/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Bia\u0142owie\u017ca Forest", "botany", "entomology", "mammalogy", "mycology", "zoology"] [{"institutionName": "European Commission, Operational Programme Digital Poland 2014-2020", "institutionAdditionalName": ["Polska Cyfrowa"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/regional_policy/en/atlas/programmes/2014-2020/poland/2014pl16rfop002", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Polish Academy of Sciences, Mammal Research Institute", "institutionAdditionalName": ["Polskiej Akademii Nauk, Instytut Biologii Ssak\u00f3w"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ibs.bialowieza.pl/en/", "institutionIdentifier": ["Wikidata:Q6745748"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mripas@ibs.bialowieza.pl"]}, {"institutionName": "Politechnika Bia\u0142ostocka, Centrum Komputerowych Sieci Rozleg\u0142ych", "institutionAdditionalName": ["BIAMAN", "Bialystok University of Technology, Wide Area Network Computer Centre"], "institutionCountry": "POL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://pb.edu.pl/biaman/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Politechnika Bia\u0142ostocka, Instytut Nauk Le\u015bnych", "institutionAdditionalName": ["Bialystok University of Technology, Institute of Forestry Sciences"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wb.pb.edu.pl/inl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.openforestdata.pl/oai", "apiType": "OAI-PMH"} ["DOI"] http://best-practices.dataverse.org/data-citation/standard.html [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2020-11-26 2020-12-01 +r3d100013458 University of British Columbia Dataverse eng [] https://dataverse.scholarsportal.info/dataverse/ubc [] ["research.data@ubc.ca"] UBC Dataverse is a free research data repository for UBC faculty, students and staff. The platform makes it possible for researchers to deposit data, create appropriate metadata, obtain DOIs for permanent links, and maintain version control of their datasets. All files are held in a secure environment on Canadian servers. Researchers are encouraged to make their data available publicly, but can choose to restrict access to their data if they wish. The UBC Dataverse is a service of the UBC Library Research Commons. eng ["institutional"] {"size": "32 dataverses; 186 datasets; 5.241 files (on 20201130)", "updatedp": "2020-12-01"} 2017-06-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://learn.scholarsportal.info/all-guides/dataverse/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "The University of British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca/", "institutionIdentifier": ["ROR:03rmrcq20"], "responsibilityStartDate": "2017-06-01", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of British Columbia, Library", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://researchcommons.library.ubc.ca/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}, {"policyName": "Terms of Use", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown yes [] [] {} is part of Scholar Portal Dataverse 2020-12-01 2020-12-04 +r3d100013459 IMK/IAA generated MIPAS/Envisat data eng [] https://www.imk-asf.kit.edu/english/308.php [] ["http://www.imk-asf.kit.edu/english/1500.php", "michael.kiefer@kit.edu"] The Michelson Interferometer for Passive Atmospheric Sounding (MIPAS) onboard the ENVISAT satellite provided atmospheric infrared limb emission spectra. From these, profiles of temperature and atmospheric trace gases were retrieved using the research data processor developed at the Institut für Meteorologie und Klimaforschung (IMK), which is complemented by the component of non-local thermodynamic equilibrium (non-LTE) treatment from the Instituto de Astrofísica de Andalucía (IAA). The MIPAS data products on this server are commonly known as IMK/IAA MIPAS Level2 data products. The MIPAS instrument measured during two time frames: from 2002 to 2004 in full spectral resolution (high resolution = HR aka full resolution = FR), and from 2005 to 2012 in reduced spectral, but improved spatial resolution (reduced resolution = RR aka optimized resolution = OR). For this reason, there are different version numbers covering the full MIPAS mission period: xx for the HR/FR period, and 2xx for the RR/OR period (example: 61 for HR/FR, 261 for RR/OR). Beyond this, measurements were conducted in different modes covering different altitude ranges during the RR period: Nominal (6 – 70 km), MA (18 – 102 km), NLC (39 – 102 km), UA (42 – 172 km), UTLS-1 (5.5 – 19 km), UTLS-2 (12 – 42 km), AE (7 – 38 km). The non-nominal modes are identified by the following version numbers: MA = 5xx, NLC = 7xx, UA = 6xx, UTLS-1/2 = 1xx (no retrievals for AE mode). eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "303 Physical and Theoretical Chemistry", "scheme": "DFG"}, {"name": "30301 Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["ENVISAT", "IMK-IAA processor", "Michelson Interferometer for Passive Atmospheric Sounding (MIPAS)", "Satellite-borne remote sensing of trace gases"] [{"institutionName": "Instituto de Astrof\u00edsica de Andaluc\u00eda", "institutionAdditionalName": ["IAA", "Institute of Astrophysics of Andalusia"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.iaa.csic.es/", "institutionIdentifier": ["ROR:04ka0vh05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology, Institute of Climatology and Climate Research, Atmospheric Trace Gases and Remote Sensing", "institutionAdditionalName": ["IMK-ASF", "Institut f\u00fcr Meteorologie und Klimaforschung - Atmosph\u00e4rische Spurengase und Fernerkundung"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.imk-asf.kit.edu/english/index.php", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access and Usage conditions for IMK- and IAA-generated MIPAS-Envisat data", "policyURL": "http://www.imk-asf.kit.edu/english/1500.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://www.imk-asf.kit.edu/english/1500.php"}] closed [] [] {} [] [] yes yes [] [] {} 2020-12-02 2021-09-01 +r3d100013461 Canadian Open Neuroscience Platform Portal eng [{"additionalName": "CONP", "additionalNameLanguage": "eng"}, {"additionalName": "Canadian Open Neuroscience Platform", "additionalNameLanguage": "eng"}, {"additionalName": "PCNO", "additionalNameLanguage": "fra"}, {"additionalName": "Plateforme Canadienne de Neuroscience Ouverte", "additionalNameLanguage": "fra"}] https://portal.conp.ca ["FAIRsharing_doi:10.25504/FAIRsharing.7qwrhY", "RRID:SCR_016433"] ["info@conp.ca"] The CONP portal is a web interface for the Canadian Open Neuroscience Platform (CONP) to facilitate open science in the neuroscience community. CONP simplifies global researcher access and sharing of datasets and tools. The portal internalizes the cycle of a typical research project: starting with data acquisition, followed by processing using already existing/published tools, and ultimately publication of the obtained results including a link to the original dataset. From more information on CONP, please visit https://conp.ca eng ["disciplinary"] {"size": "47 datasets; 69 pipelines", "updatedp": "2020-11-07"} 2020-05 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://portal.conp.ca/about [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["MRI", "bioinformatics", "brain diseases", "epigenomics", "genomics", "histology", "human", "mice", "neuroimaging"] [{"institutionName": "Baycrest Rotman Research Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.baycrest.org", "institutionIdentifier": ["ROR:03gp5b411"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Brain Canada Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://braincanada.ca", "institutionIdentifier": ["ROR:01bcmwk98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Brock University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://brocku.ca", "institutionIdentifier": ["ROR:056am2717"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "CCC-AXIS", "institutionAdditionalName": ["Canada Cuba China Collaberation"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://ccc-axis.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre of Genomics and Policy", "institutionAdditionalName": ["CPG"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.genomicsandpolicy.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Compute Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.computecanada.ca", "institutionIdentifier": ["ROR:03ty8yr27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Concordia University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.concordia.ca", "institutionIdentifier": ["ROR:0420zvk78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Concordia University, PERFORM Centre", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.concordia.ca/research/perform.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dalhousie University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dal.ca", "institutionIdentifier": ["ROR:01e6qks80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dell EMC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.dellemc.com", "institutionIdentifier": ["ROR:05rejmm18"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Djavad Mowafaghian Centre for Brain Health", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.centreforbrainhealth.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Douglas Mental Health University Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.douglas.qc.ca", "institutionIdentifier": ["ROR:05dk2r620"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Douglas Mental Health University Institute Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://fondationdouglas.qc.ca/?lang=en", "institutionIdentifier": ["ROR:05dk2r620"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fonds de Recherche Sant\u00e9 du Qu\u00e9bec", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.frqsc.gouv.qc.ca", "institutionIdentifier": ["ROR:02eqrsj93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Healthy Brains for Healthy Lives", "institutionAdditionalName": ["HBHL"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mcgill.ca/hbhl/about", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Human Brain Project", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.humanbrainproject.eu/", "institutionIdentifier": ["Wikidata:Q3143116"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "IBM", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["sponsoring"], "institutionType": "commercial", "institutionURL": "https://www.ibm.com", "institutionIdentifier": ["ROR:025sxka56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de Cardiologie de Montr\u00e9al", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.icm-mhi.org", "institutionIdentifier": ["ROR:03vs03g62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ivado", "institutionAdditionalName": ["Institute for Data Valorization"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ivado.ca/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Johns Hopkins University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jhu.edu", "institutionIdentifier": ["ROR:00za53h95"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ludmer Center", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ludmercentre.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "McGill University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mcgill.ca", "institutionIdentifier": ["ROR:01pxwe438"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "McLaughlin Centre", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.mclaughlin.utoronto.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Memorial University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mun.ca", "institutionIdentifier": ["ROR:04haebc03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Montreal Neurological Institute-Hospital", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.mcgill.ca/neuro", "institutionIdentifier": ["ROR:05ghs6f64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Nexus", "institutionAdditionalName": ["Blueprain Project"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://nexus-research.camh.ca/web/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ontario Brain Institute", "institutionAdditionalName": ["OBI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://braininstitute.ca", "institutionIdentifier": ["ROR:05ecdew94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Polytechnique Montr\u00e9al", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.polymtl.ca/en", "institutionIdentifier": ["ROR:05f8d4e86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Quebec Bio-Imaging Network", "institutionAdditionalName": ["QBIN"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.rbiq-qbin.qc.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ryerson University", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ryerson.ca", "institutionIdentifier": ["ROR:05g13zd79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Centre for Addiction and Mental Health", "institutionAdditionalName": ["CAMH"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.camh.ca", "institutionIdentifier": ["ROR:03e71c577"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Irving Ludmer Family Foundation", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://ludmercentre.ca", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Tanenbaum Open Science Institute", "institutionAdditionalName": ["TOSI"], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://openscienceneuro.org", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of British Columbia", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ubc.ca", "institutionIdentifier": ["ROR:03rmrcq20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Alberta", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ualberta.ca/index.html", "institutionIdentifier": ["ROR:0160cpw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Calgary", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ucalgary.ca", "institutionIdentifier": ["ROR:03yjb2x39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Calgary, Hotchkiss Brain Institute", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://hbi.ucalgary.ca", "institutionIdentifier": ["Wikidata:Q45137368"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Oxford", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ox.ac.uk", "institutionIdentifier": ["ROR:052gg0110"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Toronto", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.utoronto.ca", "institutionIdentifier": ["ROR:03dbr7087"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Laval", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ulaval.ca", "institutionIdentifier": ["ROR:04sjchr03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 de Sherbrooke", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usherbrooke.ca", "institutionIdentifier": ["ROR:00kybxq39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Western University Canada", "institutionAdditionalName": [], "institutionCountry": "CAN", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.uwo.ca", "institutionIdentifier": ["ROR:02grkyz14"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publication & Commercialization Policies", "policyURL": "https://conp.ca/publication-commercialization-policies/"}, {"policyName": "Terms of Use", "policyURL": "https://portal.conp.ca/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://opensource.org/licenses/MIT"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://github.com/CONP-PCNO/conp-portal/blob/master/LICENSE"}] restricted [] [] yes {} ["DOI"] [] yes unknown [] [] {} Code is available on GitHub: https://github.com/CONP-PCNO/conp-portal 2020-12-04 2021-11-09 +r3d100013465 Dipòsit Digital de Documents de la UAB cat [{"additionalName": "DDD", "additionalNameLanguage": "cat"}, {"additionalName": "Dep\u00f3sito Digital de Documentos de la UAB", "additionalNameLanguage": "spa"}, {"additionalName": "UAB Digital Repository of Documents", "additionalNameLanguage": "eng"}] https://ddd.uab.cat/ ["OpenDOAR:1404"] ["ddd.bib@uab.cat"] The DDD, the UAB Digital Repository of Documents, is the tool that collects, manages, disseminates and preserves the scientific, educational and institutional production of the University. It also gathers digital documents that are part of or complement UAB libraries collections. The DDD repository shows an organized, open access and interoperable collection. The Universitat Autònoma de Barcelona (UAB) acknowledges the importance of research data and the need for a policy aimed at promoting its visibility and reuse. This policy was drawn up by the Open Access Commission and was approved by the University Governing Council on 11 March 2020. eng ["institutional"] {"size": "", "updatedp": ""} 2006 ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.uab.cat/web/our-collections/UAB-Digital-Repository-of-Documents-1345777080660.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universitat Aut\u00f2noma de Barcelona", "institutionAdditionalName": ["UAB"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uab.cat/", "institutionIdentifier": ["ROR:052g8jq94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Protection Policy", "policyURL": "https://www.uab.cat/web/our-libraries/data-protection-1345775018054.html"}, {"policyName": "Pol\u00edtica institucional d'acc\u00e9s obert per a les dades de recerca de la Universitat Aut\u00f2noma de Barcelona", "policyURL": "https://ddd.uab.cat/record/222172"}, {"policyName": "Regulations", "policyURL": "https://www.uab.cat/web/our-collections/UAB-Digital-Repository-of-Documents-1345777080660.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/deed.ca"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://ddd.uab.cat/record/129205"}] restricted [] ["other"] {"api": "https://ddd.uab.cat/oai2d", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown no [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2020-12-10 2020-12-13 +r3d100013466 RADAR4KIT eng [{"additionalName": "Research Data Repository for KIT", "additionalNameLanguage": "eng"}] https://radar.kit.edu/ [] ["contact@rdm.kit.edu"] RADAR4KIT enables KIT researchers to manage, archive, share in project teams and publish their research data in a repository. It allows users to compile research data from completed scientific studies and projects into data packages, describe them with metadata, store them permanently and archive them or make them publicly accessible if required. Published data are given a persistent identifier (DOI) and can thus be found internationally and are also referenced in KITopen. The operator is the Karlsruhe Institute of Technology (KIT). RADAR4KIT is based on the RADAR service offered by FIZ Karlsruhe. The data is stored exclusively on the KIT IT infrastructure at the Steinbuch Centre for Computing (SCC). eng ["institutional"] {"size": "16 records", "updatedp": "2021-06-01"} 2020-12-01 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://radar.kit.edu/description.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "FIZ Karlsruhe - Leibniz Institute for Information Infrastructure", "institutionAdditionalName": ["Fachinformationszentrum Karlsruhe, Leibniz-Institut f\u00fcr Informationsinfrastruktur"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fiz-karlsruhe.de/en", "institutionIdentifier": ["ROR:0387prb75"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Karlsruhe Institute of Technology", "institutionAdditionalName": ["KIT", "Karlsruher Institut f\u00fcr Technologie"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.kit.edu/english/", "institutionIdentifier": ["ROR:04t3en479"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen", "policyURL": "https://radar.kit.edu/tos.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "Lizenz und Nutzungshinweise f\u00fcr Datengeberinnen und Datengeber von RADAR4KIT", "dataUploadLicenseURL": "https://radar.kit.edu/tos.html"}] [] yes {} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2020-12-14 2021-06-01 +r3d100013468 ASU Dataverse eng [{"additionalName": "Arizona State University Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Arizona State University Research Data Repository", "additionalNameLanguage": "eng"}] https://dataverse.asu.edu [] ["dataverse@asu.edu", "https://lib.asu.edu/research/contact"] Dataverse helps ASU affiliated researchers share, store, preserve, cite, explore, and make research data accessible and discoverable. Dataverse is a dedicated research data management service platform that serves in the publication and reuse phase of the research data lifecycle and works in concert with the ASU Digital Repository ecosystem to present a more complete picture of ASU’s scholarly activities. eng ["institutional"] {"size": "6 dataverses; 11 datasets; 645 files", "updatedp": "2020-12-16"} 2020-10-17 [] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.asu.edu/data/dataverse [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Arizona State University", "institutionAdditionalName": ["ASU"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://asu.edu", "institutionIdentifier": ["ROR:03efmqc40", "RRID:SCR_014053"], "responsibilityStartDate": "2020-10-17", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Arizona State University, ASU Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://lib.asu.edu", "institutionIdentifier": ["VIAF:158807942"], "responsibilityStartDate": "2020-10-17", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ASU Library Privacy Statement", "policyURL": "https://lib.asu.edu/policies/privacy"}, {"policyName": "ASU Privacy Statements", "policyURL": "https://www.asu.edu/privacy/"}, {"policyName": "Arizona State University Dataverse General Terms of Use", "policyURL": "https://dataverse.asu.edu/guides/ASU-TermsofUse3.html"}, {"policyName": "Standards and Classification", "policyURL": "https://uto.asu.edu/standard-classification"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/5.0/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} The ASU Library Research Data Repository is a member of the Global Dataverse Community Consortium. 2020-12-15 2020-12-18 +r3d100013469 EarthEnv eng [] http://www.earthenv.org/ [] ["support@earthenv.org"] The EarthEnv project is a collaborative project of biodiversity scientists and remote sensing experts to develop near-global standardized, 1km resolution layers for monitoring and modeling biodiversity, ecosystems, and climate. The work is supported by NCEAS, NASA, NSF, and Yale University. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.earthenv.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity", "climate", "climatology", "cloud cover", "dem", "ecosystems", "freshwater", "land cover", "precipitation", "remote sensing", "spatial habitat heterogeneity", "topography"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov/", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Center for Ecological Analysis and Synthesis", "institutionAdditionalName": ["NCEAS"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nceas.ucsb.edu/", "institutionIdentifier": ["ROR:0146z4r19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Buffalo", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.buffalo.edu/", "institutionIdentifier": ["ROR:01y64my43"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Florida", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufl.edu/", "institutionIdentifier": ["ROR:02y3ad647"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Yale University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.yale.edu/", "institutionIdentifier": ["ROR:03v76x132"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] restricted [] [] yes {} ["DOI", "hdl"] ["ORCID"] yes yes [] [] {} Partners: http://www.earthenv.org/partners Team: http://www.earthenv.org/team 2020-12-17 2020-12-20 +r3d100013470 BonaRes Repository eng [{"additionalName": "Soil as a Sustainable Resource for the Bioeconomy", "additionalNameLanguage": "eng"}] https://datenzentrum.bonares.de/research-data.php [] ["https://www.bonares.de/contact", "info@bonares.de"] The BonaRes Repository stores, manage and provides soil and agricultural research data from research projects, agricultural long-term field experiments and soil profiles which contribute significantly to the analysis of changes of soil and soil functions over the long term. Research data are described by the metadata following the BonaRes Metadata Schema (DOI: 10.20387/bonares-5pgg-8yrp) which combines international recognized standards for the description of geospatial data (INSPIRE Directive) and research data (DataCite 4.0). Metadata includes AGROVOC keywords. Within the BonaRes Repository research data is provided for free reuse under the CC License and can be discovered by advanced text and map search via a number of criteria. eng ["disciplinary"] {"size": "43 datasets with a DOI", "updatedp": "2020-12-21"} 2017 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["FAIR", "agriculture", "geodata", "long-term experiments", "socio-economy", "soil", "soil functions"] [{"institutionName": "Helmholtz Centre for Environmental Research", "institutionAdditionalName": ["Helmholtz-Zentrum f\u00fcr Umweltforschung GmbH", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/index.php?en=33573", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ufz.de/index.php?de=39475"]}, {"institutionName": "Leibniz Centre for Agricultural Landscape Research", "institutionAdditionalName": ["Leibniz-Zentrum f\u00fcr Agrarlandschaftsforschung", "ZALF"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://www.zalf.de", "institutionIdentifier": ["ROR:01ygyzs83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["hoffmann@zalf.de"]}, {"institutionName": "Leibniz Centre for Agricultural Landscape Research, Research Platform \"Data Analysis & Simulation\"", "institutionAdditionalName": ["Forschungsplattform \u201eDatenanalyse & Simulation\u201c"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.zalf.de/en/struktur/fds/Pages/default.aspx", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "The BonaRes Data Guideline", "policyURL": "https://dx.doi.org/10.20387/BonaRes-E1AZ-ETD7"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/"}] [] yes {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2020-12-17 2020-12-23 +r3d100013471 Transparenzportal der Stadt Karlsruhe deu [] https://transparenz.karlsruhe.de/ ["Wikidata:Q63433716"] ["https://transparenz.karlsruhe.de/pages/kontakt", "transparenz@karlsruhe.de"] Welcome to the transparency portal of the city of Karlsruhe, your central contact point for open data and documents of the city of Karlsruhe. On this portal you will find documents and reports as well as machine-readable data sets ("open data"). You may - under a few conditions - distribute, edit and also commercially use this information free of charge. We are happy if interesting projects arise from this - and if you tell us about your project. The information offered is constantly being expanded. eng ["other"] {"size": "", "updatedp": ""} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11202 Economic and Social Policy", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.karlsruhe.de/b4/transparenz [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["economy", "education", "geography", "open government", "politics", "science", "transport", "work"] [{"institutionName": "Stadt Karlsruhe", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.karlsruhe.de/int.en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.karlsruhe.de/impressum.de"]}] [{"policyName": "Datenschutz und Informationssicherheit", "policyURL": "https://www.karlsruhe.de/impressum/datenschutz.de"}, {"policyName": "Nutzungsrechte f\u00fcr Bilder auf karlsruhe.de", "policyURL": "https://www.karlsruhe.de/impressum/bildrechte.de"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://transparenz.karlsruhe.de/pages/lizenzen"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/dl-de/by-2-0"}] restricted [] ["CKAN"] {"api": "https://transparenz.karlsruhe.de/pages/api-zugriff", "apiType": "other"} ["none"] [] unknown unknown [] [] {} 2020-12-21 2021-09-10 +r3d100013475 Bioinformatics.org eng [] http://www.bioinformatics.org/ ["OMICS_01825", "RRID:SCR_012008"] ["info@bioinformatics.org"] Bioinformatics.org serves the scientific and educational needs of bioinformatic practitioners and the general public. We develop and maintain computational resources to facilitate world-wide communications and collaborations between people of all educational and professional levels. We provide and promote open access to the materials and methods required for, and derived from, research, development and education. eng ["disciplinary"] {"size": "", "updatedp": ""} 1998 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["EST clusters", "TB drug targets", "acronyms finder", "immigrant genes", "leukemia genes", "p53 tumor protein gene", "pancreatic cancer genes"] [{"institutionName": "Scilico, LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "http://www.scilico.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Service Agreement", "policyURL": "https://www.bioinformatics.org/wiki/Terms_of_Service_Agreement"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html"}] restricted [] [] {"api": "https://www.bioinformatics.org/ftp", "apiType": "FTP"} [] [] unknown unknown [] [] {} 2020-12-29 2021-01-07 +r3d100013478 Bitbucket eng [{"additionalName": "Atlassian Bitbucket", "additionalNameLanguage": "eng"}] https://bitbucket.org/ ["RRID:SCR_000502", "RRID:nlx_158615", "biodbcore-001790"] ["eudatarep@atlassian.com"] Bitbucket is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems. eng ["other"] {"size": "", "updatedp": ""} ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["DVCS", "development", "distributed version control systems", "social networking", "source code", "web-based hosting service"] [{"institutionName": "Atlassian", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.atlassian.com/", "institutionIdentifier": ["ROR:00y7n3708"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.atlassian.com/company/contact"]}] [{"policyName": "Legal Terms", "policyURL": "https://www.atlassian.com/legal/product-specific-terms"}, {"policyName": "Terms of Service", "policyURL": "https://www.atlassian.com/legal/product-specific-terms#bitbucket-cloud-specific-terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/lgpl-3.0.en.html"}] restricted [] [] yes {"api": "https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket&utm_medium=302", "apiType": "REST"} ["none"] [] unknown unknown [] [] {} 2021-01-04 2021-11-17 +r3d100013484 WashU's Digital Research Materials Repository eng [{"additionalName": "DRMR", "additionalNameLanguage": "eng"}, {"additionalName": "Washington University Digital Materials Research Repository", "additionalNameLanguage": "eng"}] https://openscholarship.wustl.edu/data/ [] ["j.moore@wustl.edu"] The DRMR is comprises the data collections in Washington University's Open Scholarship. The repository accepts submissions of digital data from WashU affiliated researchers. After submission that data is curated, metadata and a DOI are generated, and then published. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.wustl.edu/drmr [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Washington University in St. Louis", "institutionAdditionalName": ["WUSTL", "WashU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wustl.edu/", "institutionIdentifier": ["ROR:01yc7t268", "RRID:SCR_017964"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Washington University in St. Louis, University Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://library.wustl.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies for Digital Research Materials (Data & Supplemental files)", "policyURL": "https://openscholarship.wustl.edu/data/policies.html"}, {"policyName": "Public Access Policies: Foundations, Charities and Organizations", "policyURL": "https://beckerguides.wustl.edu/paporg"}, {"policyName": "Rights and Ownership", "policyURL": "https://libguides.wustl.edu/c.php?g=47355&p=303437"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://library.wustl.edu/services/copyright/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://libguides.wustl.edu/publicaccess"}] restricted [{"dataUploadLicenseName": "Deposit Data", "dataUploadLicenseURL": "https://libguides.wustl.edu/c.php?g=375170&p=3523073"}] [] {} ["DOI"] https://libguides.wustl.edu/c.php?g=47355&p=303448 [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {"syndication": "https://openscholarship.wustl.edu/data/recent.rss", "syndicationType": "RSS"} further information about the project: https://libguides.wustl.edu/c.php?g=47355&p=303446 2021-01-14 2021-01-17 +r3d100013486 Coronavirus Government Response Tracker eng [{"additionalName": "OxCGRT", "additionalNameLanguage": "eng"}] https://www.bsg.ox.ac.uk/research/research-projects/coronavirus-government-response-tracker [] ["enquiries@bsg.ox.ac.uk", "https://forms.office.com/Pages/ResponsePage.aspx?id=G96VzPWXk0-0uv5ouFLPkVSWvw_jDgZKm4LZGz53kfBUME9NOUtYRkxLVldLUVFERTRTMEJSRkZITCQlQCN0PWcu"] The Oxford COVID-19 Government Response Tracker (OxCGRT) systematically collects information on several different common policy responses that governments have taken to respond to the pandemic on 18 indicators such as school closures and travel restrictions. It now has data from more than 180 countries. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [] https://www.bsg.ox.ac.uk/research/research-projects/coronavirus-government-response-tracker [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "pandemic", "school closures", "travel restrictions"] [{"institutionName": "University of Oxford, Blavatnik School of Government", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bsg.ox.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "What we do", "policyURL": "https://www.bsg.ox.ac.uk/about/what-we-do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "ODC", "dataLicenseURL": "https://github.com/OxCGRT/covid-policy-tracker/tree/00095550234e09ee5befb67a20378896a293fe32/data"}] restricted [] [] no {"api": "https://covidtracker.bsg.ox.ac.uk/about-api", "apiType": "other"} [] https://covidtracker.bsg.ox.ac.uk/ [] yes unknown [] [] {} data hosted at: https://github.com/OxCGRT/covid-policy-tracker 2021-01-25 2021-10-05 +r3d100013487 Polish Platform of Medical Research eng [{"additionalName": "PPM", "additionalNameLanguage": "pol"}, {"additionalName": "Polska Platforma Medyczna", "additionalNameLanguage": "pol"}] https://ppm.edu.pl/index.seam [] ["https://ppm.edu.pl/contact.seam?lang=en&cid=5208", "ppm@umed.wroc.pl"] Polish Platform of Medical Research (PPM) is a digital platform presenting the scientific achievements and research potential of 7 Polish medical universities from Bialystok, Gdansk, Katowice, Lublin, Szczecin, Warsaw, Wroclaw and the Nofer Institute of Occupational Medicine in Lodz that form a partnership for the PPM Project. It incorporates the features of a Current Research Information System and a consortium repository and uses OMEGA-PSIR software. It provides open access to full texts of publications, doctoral theses, research data and other documents. PPM is a central platform that aggregates data from the local platforms of the PPM Project Partners. PPM is accessible for any Internet user. eng ["disciplinary"] {"size": "381 records", "updatedp": "2021-01-28"} 2020-12-18 ["eng", "pol"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ppm.edu.pl/about/project.seam?lang=en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["dentistry", "ergonomics and health protection", "medicine", "occupational safety and health", "pharmacy", "public health"] [{"institutionName": "European Commission", "institutionAdditionalName": ["EC"], "institutionCountry": "EEC", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ec.europa.eu/regional_policy/en/funding/erdf/", "institutionIdentifier": ["ROR:00k4n6c32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Medical University of Bialystok", "institutionAdditionalName": ["Uniwersytet Medyczny w Bia\u0142ymstoku"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umb.edu.pl/en", "institutionIdentifier": ["ROR:00y4ya841"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@umb.edu.pl"]}, {"institutionName": "Medical University of Gda\u0144sk", "institutionAdditionalName": ["Gda\u0144ski Uniwersytet Medyczny"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mug.edu.pl/", "institutionIdentifier": ["ROR:019sbgd69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@gumed.edu.pl"]}, {"institutionName": "Medical University of Lublin", "institutionAdditionalName": ["Uniwersytet Medyczny w Lublinie"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umlub.pl/en/", "institutionIdentifier": ["ROR:016f61126"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@bg.umlub.pl"]}, {"institutionName": "Medical University of Silesia", "institutionAdditionalName": ["\u015al\u0105ski Uniwersytet Medyczny"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://sum.edu.pl/en", "institutionIdentifier": ["ROR:005k7hp45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@sum.edu.pl"]}, {"institutionName": "Medical University of Warsaw", "institutionAdditionalName": ["Warszawski Uniwersytet Medyczny"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.wum.edu.pl/en", "institutionIdentifier": ["ROR:04p2y4s44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@wum.edu.pl"]}, {"institutionName": "Nofer Institute of Occupational Medicine", "institutionAdditionalName": ["Instytut Medycyny Pracy im. prof. Jerzego Nofera"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.imp.lodz.pl/home_en/", "institutionIdentifier": ["ROR:02b5m3n83"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@imp.lodz.pl"]}, {"institutionName": "Pomeranian Medical University in Szczecin", "institutionAdditionalName": ["Pomorski Uniwersytet Medyczny w Szczecinie"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.pum.edu.pl/", "institutionIdentifier": ["ROR:01v1rak05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@pum.edu.pl"]}, {"institutionName": "Wroclaw Medical University", "institutionAdditionalName": ["Uniwersytet Medyczny im. Piast\u00f3w \u015al\u0105skich we Wroc\u0142awiu"], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.en.umed.wroc.pl/", "institutionIdentifier": ["ROR:01qpw1b93"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["ppm@umed.wroc.pl"]}] [{"policyName": "PPM Open Access Policy", "policyURL": "http://projekt.ppm.edu.pl/index.php/en/ppm-open-access-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://projekt.ppm.edu.pl/index.php/otwartosc-w-nauce/wzory-licencji-ppm/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://projekt.ppm.edu.pl/index.php/otwartosc-w-nauce/wzory-licencji-ppm/"}] restricted [] ["other"] {"api": "https://ppm.edu.pl:7443/oaicat/", "apiType": "OAI-PMH"} [] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-01-28 2021-01-30 +r3d100013488 DTU Data eng [{"additionalName": "Technical University of Denmark Data", "additionalNameLanguage": "eng"}] https://data.dtu.dk/ [] ["datamanagement@dtu.dk"] Institutional data repository buildt on the Figshare platform. Containing Research data from Technical University of Denmark eng ["institutional"] {"size": "500 records", "updatedp": "2022-01-10"} 2019-03 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.bibliotek.dtu.dk/english/news/2020/01/supplementary-data-for-your-article??id=cc9dc9a6-5952-410c-9120-fc81bfbae927 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "Technical University of Denmark", "institutionAdditionalName": ["DTU", "Danmarks Tekniske Universitet"], "institutionCountry": "DNK", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dtu.dk/", "institutionIdentifier": ["ROR:04qtj9h94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["datamanagement@dtu.dk"]}] [{"policyName": "Copyright and License Policy", "policyURL": "https://help.figshare.com/article/copyright-and-license-policy"}, {"policyName": "DTU Policy", "policyURL": "https://www.bibliotek.dtu.dk/english/servicemenu/publish/research-data/policy"}, {"policyName": "Research Data Management", "policyURL": "https://www.dtu.dk/english/research/research-framework/research-data-management"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0.html"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bibliotek.dtu.dk/english/servicemenu/publish/copyright"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] ["DigitalCommons"] {"api": "https://api.figshare.com/v2/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.datacite.org/cite-your-data.html ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://data.dtu.dk/rss/portal/dtu", "syndicationType": "RSS"} 2021-01-28 2022-01-10 +r3d100013494 DATICE eng [{"additionalName": "GAGN\u00cdS", "additionalNameLanguage": "isl"}, {"additionalName": "Gagna\u00fej\u00f3nusta f\u00e9lagsv\u00edsinda \u00e1 \u00cdslandi", "additionalNameLanguage": "isl"}, {"additionalName": "The Icelandic Social Science Data Service", "additionalNameLanguage": "eng"}] https://ssri.is/datice [] ["gudbjorg@hi.is", "ort@hi.is"] DATICE was established in late 2018 and is funded by the University of Iceland's (UI) School of Social Sciences, with a contribution from the university's Centennial Fund. DATICE is the appointed service provider for the Consortium of European Social Science Data Archives (CESSDA ERIC) in Iceland and is located within the UI Social Science Research Institute (SSRI). The main goal of the data service is to ensure open and free access to high quality research data for the research community as well as the general public. eng ["institutional"] {"size": "21 datasets; 118 files", "updatedp": "2021-02-09"} 2018 ["eng", "isl"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://ssri.is/is/node/8 [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CESSDA service provider", "Dataverse", "FAIR", "Iceland", "open access data", "social science research data"] [{"institutionName": "University of Iceland, School of Social Sciences", "institutionAdditionalName": ["Ha\u0301sko\u0301li I\u0301slands, F\u00e9lagsv\u00edsindasvi\u00f0"], "institutionCountry": "ISL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://english.hi.is/school_of_social_sciences", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Iceland, Social Science Research Institute", "institutionAdditionalName": ["Ha\u0301sko\u0301li I\u0301slands, Fe\u0301lagsvi\u0301sindastofnun", "UI, SSRI"], "institutionCountry": "ISL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ssri.is/", "institutionIdentifier": ["VIAF:158733447"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["gudbjorg@hi.is"]}] [{"policyName": "University of Iceland Data Protection Policy", "policyURL": "https://english.hi.is/leita?search_api_views_fulltext=data+policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} DATICE is a member organisation of CESSDA ERIC https://www.cessda.eu/ Some of DATICE's datasets are also accessible through the SSRI Nesstar respository where you can view descriptive statistics for the data and conduct analysis online. 2021-02-08 2021-03-19 +r3d100013497 eSango eng [{"additionalName": "CPUT Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Cape Peninsula University of Technology Figshare", "additionalNameLanguage": "eng"}] https://cput.figshare.com/ [] ["xesix@cput.ac.za"] The Cape Peninsula University of Technology uses Figshare for institutions for their data repository and it is called eSango. The repository's Designated community are academics at the university who produce outputs for funded research. It fits with the University's ambition to increase the visibility, reach, and impact of its research. The Designated Community consists of researchers from all the discipline areas researched at CPUT Figshare (as evidenced by https://cput.figshare.com) eng ["institutional"] {"size": "100 Terabytes", "updatedp": "2021-02-10"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://help.figshare.com/article/mission-statement-and-core-beliefs [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Cape Peninsula University of Technology", "institutionAdditionalName": ["CPUT", "Kaapse Skiereiland Universiteit van Tegnologie"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.cput.ac.za/", "institutionIdentifier": ["ROR:056e9h402"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CPUT Open Access Policy", "policyURL": "https://libguides.library.cput.ac.za/ld.php?content_id=22739055"}, {"policyName": "CPUT Research Data Management (RDM) Policy", "policyURL": "https://libguides.library.cput.ac.za/ld.php?content_id=22739056"}, {"policyName": "eSango (Research Data repositories)", "policyURL": "https://libguides.library.cput.ac.za/c.php?g=628041&p=4382007"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://help.figshare.com/article/copyright-and-license-policy"}] restricted [] [] {} ["DOI"] ["ORCID"] yes yes [] [] {"syndication": "https://cput.figshare.com/rss/portal/cput", "syndicationType": "RSS"} CPUT figshare uses altmetric.com to track the impact of the publications and research data. CPUT Libraries support researchers with secured spaces for research data where authors can store, share and discover research data using eSango (CPUT Data Repositories) Figshare (https://cput.figshare.com/) and MediaTum (http://rdm.cput.ac.za/) This makes it easy for research data to be viewed, accessible and cited. Share, save and publish research output in these open access data repositories. The Institutional Repository (http://digitalknowledge.cput.ac.za/) allow researchers to share their research output in the University's open access institutional repository. 2021-02-10 2021-04-21 +r3d100013499 Materials Data Repository eng [{"additionalName": "MDR", "additionalNameLanguage": "eng"}, {"additionalName": "NIMS Materials Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "\u6750\u6599\u30c7\u30fc\u30bf\u30ea\u30dd\u30b8\u30c8\u30ea", "additionalNameLanguage": "jpn"}] https://mdr.nims.go.jp [] ["https://dice.nims.go.jp/en/contact/form.html", "mdr-info@ml.nims.go.jp"] MDR is a data repository to collect and store papers, presentation materials, and related materials data to accumulate and release them in a form suitable for the promotion of materials research and materials informatics. Users can search the documents and the data from information (metadata) such as sample, instrument, method, and from the full text of the deposited data, to browse and download them freely. User registration is not required and there is no charge for use. eng ["disciplinary", "institutional"] {"size": "about 3000 works", "updatedp": "2021-10-11"} 2020-06-15 ["eng", "jpn"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "405 Materials Engineering", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}] https://mdr.nims.go.jp/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["materials engineering", "materials informatics", "materials platform", "materials science"] [{"institutionName": "National Institute for Materials Science", "institutionAdditionalName": ["\u56fd\u7acb\u7814\u7a76\u958b\u767a\u6cd5\u4eba\u7269\u8cea\u30fb\u6750\u6599\u7814\u7a76\u6a5f\u69cb", "\u7269\u8cea\u30fb\u6750\u6599\u7814\u7a76\u6a5f\u69cb"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nims.go.jp/eng/", "institutionIdentifier": ["ROR:026v1ze26"], "responsibilityStartDate": "2020-06-15", "responsibilityEndDate": "", "institutionContact": ["mdr-info@ml.nims.go.jp"]}] [{"policyName": "MDR Terms of Use", "policyURL": "https://mdr.nims.go.jp/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://rightsstatements.org/page/InC/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/page/InC/1.0/"}] restricted [] ["Fedora"] no {"api": "https://mdr.nims.go.jp/catalog/oai", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Before MDR, NIMS operated two repositories as part of the digital library NIMS eSciDoc: PubMan for publications and Imeji for multimedia. MDR inherits and replaces these two services. Most data on the two older services have been migrated into MDR. Some of the data formerly on NIMS Materials Database MatNavi have been migrated into MDR as well. MDR is one of the services of NIMS's data platform DICE. See also https://dice.nims.go.jp/services/MDR/en/ 2021-02-11 2021-10-11 +r3d100013500 OLOS eng [] https://olos.swiss [] ["info@olos.swiss"] OLOS is a Swiss-based data management portal tailored for researchers and institutions. Powerful yet easy to use, OLOS works with most tools and formats across all scientific disciplines to help researchers safely manage, publish and preserve their data. The solution was developed as part of a larger project focusing on Data Life Cycle Management (dlcm.ch) that aims to develop various services for research data management. Thanks to its highly modular architecture, OLOS can be adapted both to small institutions that need a "turnkey" solution and to larger ones that can rely on OLOS to complement what they have already implemented. OLOS is compatible with all formats in use in the different scientific disciplines and is based on modern technology that interconnects with researchers' environments (such as Electronic Laboratory Notebooks or Laboratory Information Management Systems). eng ["institutional", "other"] {"size": "", "updatedp": ""} 2021-01-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://olos.swiss [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "Multidisciplinary", "OAIS"] [{"institutionName": "OLOS Association", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["funding", "general", "sponsoring"], "institutionType": "non-profit", "institutionURL": "https://olos.swiss", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://olos.swiss", "info@olos.swiss"]}] [{"policyName": "Data Protection Policy", "policyURL": "https://olos.swiss/legal/data-policy"}, {"policyName": "Terms of use", "policyURL": "https://olos.swiss/legal/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [{"dataUploadLicenseName": "General policies", "dataUploadLicenseURL": "https://olos.swiss/legal/terms"}] ["other"] yes {"api": "https://olos.swiss/oai", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-02-15 2022-01-26 +r3d100013503 arthistoricum.net@heiDATA eng [] https://heidata.uni-heidelberg.de/dataverse/arthistoricum [] ["arthistoricum.net@heiDATA", "https://www.arthistoricum.net/en/publishing/research-data/"] arthistoricum.net@heiDATA is the research data repository of arthistoricum.net (Specialized Information Service Art - Photography - Design). It provides art historians with the opportunity to permanently publish and archive research data in the field of art history in connection with an open access online publication (e.g. article, ejournal, ebook) hosted by Heidelberg University Library. All research data e.g. images, videos, audio files, tables, graphics etc. receive a DOI (Digital Object Identifier). The data publications can be cited, viewed and permanently linked to as distinct academic output. eng ["disciplinary"] {"size": "4 dataverses; 21 datasets; 222 files", "updatedp": "2021-02-23"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10301 Art History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://www.arthistoricum.net/en/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["European art history", "commercial graphics", "industrial design", "photography"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://dataverse.org/contact"]}, {"institutionName": "Universit\u00e4t Heidelberg, Universit\u00e4tsbibliothek", "institutionAdditionalName": ["UB Heidelberg", "Universit\u00e4t Heidelberg, university library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-heidelberg.de/Englisch/Welcome.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ub.uni-heidelberg.de/Englisch/kontakt/Welcome.html"]}, {"institutionName": "arthistoricum.net - Fachinformationsdienst Kunst, Fotografie, Design", "institutionAdditionalName": ["https://www.arthistoricum.net/en/contact/"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.arthistoricum.net/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Aufnahme von Forschungsdaten in heiDATA", "policyURL": "https://data.uni-heidelberg.de/datenaufnahme.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} arthistoricum.net@heiDATA is part of heiDATA dataverse 2021-02-19 2021-10-05 +r3d100013504 PSI Open Data Provider eng [{"additionalName": "PSI Public Data Repository", "additionalNameLanguage": "eng"}] https://doi.psi.ch/ [] ["https://www.psi.ch/en/about/contact-form"] PSI Open Data Provider allows users to consult open data related to experiments carried out at PSI. Data made available includes scientific datasets collected during experiments and publications if any. Users can search for data based on related metadata (both their own data and other people's public data). eng [] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "309 Particles, Nuclei and Fields", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://www.psi.ch/en/photon-science-data-services/data-catalog-and-archive [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["FAIR", "diffraction", "hdf5", "neutron", "nexus", "psi imaging", "reflectometry"] [{"institutionName": "Paul Scherrer Institute", "institutionAdditionalName": ["Institut Paul Scherrer", "PSI", "Paul Scherrer Institut"], "institutionCountry": "CHE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.psi.ch/en", "institutionIdentifier": ["ROR:03eh3y714"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.psi.ch/en/visit/contact-form"]}] [{"policyName": "PSI Data Policy", "policyURL": "https://www.psi.ch/en/useroffice/psi-data-policy"}, {"policyName": "SNSF research policy", "policyURL": "http://www.snf.ch/en/theSNSF/research-policies/open_research_data/Pages/default.aspx#FAIR%20Data%20Principles%20for%20Research%20Data%20Management"}, {"policyName": "Terms and conditions", "policyURL": "https://www.psi.ch/en/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] ["other"] {"api": "https://doi.psi.ch/oaipmh/oai", "apiType": "OAI-PMH"} ["DOI"] [] yes unknown [] [] {} 2021-02-19 2021-06-07 +r3d100013505 Health Data Research Innovation Gateway eng [{"additionalName": "HDRUK Innovation Gateway", "additionalNameLanguage": "eng"}] https://www.healthdatagateway.org/ [] ["support@healthdatagateway.org", "susheel.varma@hdruk.ac.uk"] The Health Data Research Innovation Gateway (the ‘Gateway’) provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access. The Gateway includes the ability to search for research projects, publications and health data tools, such as those related to COVID-19. New interactive features provide a community forum for researchers to collaborate and connect and the ability to add research projects. The Innovation Gateway does not hold or store any datasets or patient or health data but rather acts as a portal to allow discovery of datasets and to request access to them for health research. A dataset is a collection of related individual pieces of data but in the case of health data, identifiable information (e.g. name or NHS number) is removed and data is de-identified where possible. When you access the Gateway you will not be able to view or extract the data itself. Instead, you will be able to see information that describes what the different datasets are (e.g. where the dataset has come from, a description of the dataset, the time period and the geographical areas the dataset covers). eng ["disciplinary"] {"size": "584 datasets", "updatedp": "2021-02-22"} 2020-02-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.healthdatagateway.org/pages/about [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["COVID-19", "Data", "Health", "Research"] [{"institutionName": "Health Data Research UK", "institutionAdditionalName": ["HDR UK"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hdruk.ac.uk/", "institutionIdentifier": ["ROR:04rtjaj74"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Health Data Research Alliance", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ukhealthdata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "UK Research and Innovation, Industrial Strategy Challenge Fund", "institutionAdditionalName": ["UKRI"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ukri.org/our-work/our-main-funds/industrial-strategy-challenge-fund/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Development Principles", "policyURL": "https://www.hdruk.ac.uk/about-us/our-strategy/policies/development-principles/"}, {"policyName": "Health Data Research Innovation Gateway Terms and Conditions", "policyURL": "https://www.hdruk.ac.uk/infrastructure/gateway/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.hdruk.ac.uk/infrastructure/gateway/terms-and-conditions/"}] closed [] [] yes {"api": "https://api.www.healthdatagateway.org/api-docs/", "apiType": "other"} ["PURL"] [] yes yes [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}] {} GitHub: https://github.com/HDRUK 2021-02-19 2021-02-24 +r3d100013506 Center for Remote Sensing of Ice Sheets eng [{"additionalName": "CReSIS", "additionalNameLanguage": "eng"}] https://data.cresis.ku.edu/ [] ["cresis_data@cresis.ku.edu"] The Center for Remote Sensing of Ice Sheets radar data repository containing data products from the Greenland Ice Sheet, the Antarctic Ice Sheet, sea ice, and land snow. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://cresis.ku.edu/content/about-us [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["frozen ground", "glaciers", "ice shelves", "sea ice", "soil moisture"] [{"institutionName": "Association of Computer Science Departments at Minority Institutions", "institutionAdditionalName": ["ADMI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.admiusa.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Center for Remote Sensing of Ice Sheets", "institutionAdditionalName": ["CReSIS"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://cresis.ku.edu/", "institutionIdentifier": ["ROR:04t2m2598"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Elizabeth City State University", "institutionAdditionalName": ["ECSU"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ecsu.edu/", "institutionIdentifier": ["ROR:02n5cs023"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Indiana University Bloomington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.indiana.edu/", "institutionIdentifier": ["ROR:02k40bc56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Los Alamos National Laboratory", "institutionAdditionalName": ["LANL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lanl.gov/", "institutionIdentifier": ["ROR:01e41cf67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Snow & Ice Data Center", "institutionAdditionalName": ["NSIDC"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://nsidc.org/", "institutionIdentifier": ["RRID:SCR_002220", "RRID:nlx_154742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Pennsylvania State University", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.psu.edu/", "institutionIdentifier": ["ROR:04p491231"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Kansas", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ku.edu/", "institutionIdentifier": ["ROR:001tmjg57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Washington", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.washington.edu/", "institutionIdentifier": ["ROR:00cvxb145"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NSIDC Web Policy", "policyURL": "https://nsidc.org/about/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://nsidc.org/about/use_copyright.html"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://data.cresis.ku.edu/"}] restricted [] [] {"api": "ftp://ftp.cresis.ku.edu/", "apiType": "FTP"} [] https://data.cresis.ku.edu/#ACRDU [] unknown unknown [] [] {} 2021-02-19 2021-02-26 +r3d100013507 Propylaeum@heiDATA eng [{"additionalName": "Data publications of the Specialized Information Service Classics", "additionalNameLanguage": "eng"}, {"additionalName": "Datenpublikationen des Fachinformationsdienst (FID) Altertumswissenschaften", "additionalNameLanguage": "eng"}] https://heidata.uni-heidelberg.de/dataverse/propylaeum [] ["effinger@ub.uni-heidelberg.de"] Additional to the the e-publishing offer for articles, books and journals, Propylaeum provides classical scholars with the opportunity to archive the respective research data permanently. These can be linked directly to online publications hosted on the Heidelberg publishing platforms. All research data – e.g. images, videos, audio files, tables, graphics etc. – receive a DOI (Digital Object Identifiyer). Thus, they can be cited, viewed and permanently linked to as distinct academic output. eng ["disciplinary"] {"size": "6 dataverses; 28 datasets; 194 files", "updatedp": "2021-02-22"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10103 Ancient History", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.propylaeum.de/en/publishing/research-data [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ancient Near Eastern Studies", "ancient history", "archeological landscapes", "byzantine studies", "classical archaeology", "classical philology", "egyptology", "history of reception of ancient Egypt", "medieval and neo-latin philology", "pre- and early history"] [{"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Heidelberg University, Competence Centre for Research Data", "institutionAdditionalName": ["Universit\u00e4t Heidelberg, Kompetenzzentrum Forschungsdaten"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://data.uni-heidelberg.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Open Access Policy", "policyURL": "https://www.uni-heidelberg.de/universitaet/profil/openaccess/"}, {"policyName": "Research Data Policy", "policyURL": "https://www.uni-heidelberg.de/de/universitaet/das-profil-der-universitaet-heidelberg/gute-wissenschaftliche-praxis/research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} Propylaeum@heiDATA is part of heiData https://heidata.uni-heidelberg.de More informations about research data in disciplines that study Antiquity are to be found at IANUS - Forschungsdatenzentrum Archäologie & Altertumswissenschaften https://www.ianus-fdz.de/ 2021-02-22 2021-03-01 +r3d100013508 DASS-BiH eng [{"additionalName": "Data Archive for Social Sciences in Bosnia and Herzegovina", "additionalNameLanguage": "eng"}] https://dass.credi.ba/ [] ["https://dass.credi.ba/contact/"] DASS-BiH (Data Archive for Social Sciences in Bosnia and Herzegovina) is the national service whose role is to ensure long-term preservation and dissemination of social science research data. The purpose of the data archive is to provide a vital research data resource for researchers, teachers, students, and all other interested users. eng ["disciplinary", "other"] {"size": "18 studies", "updatedp": "2020-02-24"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://dass.credi.ba/about-dass-bih/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "anthropology", "diaspora", "ethnicity", "gender and feminist studies", "ideology", "inequality", "nationality", "poverty", "social identity", "youth"] [{"institutionName": "Centre for Development Evaluation and Social Science Research", "institutionAdditionalName": ["CREDI"], "institutionCountry": "BIH", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://credi.ba/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General Terms and Conditionsof Usein the DASS-BiH", "policyURL": "https://dass.credi.ba/wp-content/uploads/2020/06/General-Terms-and-Contitions-of-Use-web.pdf"}, {"policyName": "Preservation Policy", "policyURL": "https://dass.credi.ba/wp-content/uploads/2020/06/Preservation-policy-DASS-BiH-on-line.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dass.credi.ba/wp-content/uploads/2020/06/General-Terms-and-Contitions-of-Use-web.pdf"}] restricted [{"dataUploadLicenseName": "General Procedure for Data Depositors", "dataUploadLicenseURL": "https://dass.credi.ba/general-procedure-for-data-depositors/"}] [] {} [] https://dass.credi.ba/wp-content/uploads/2020/06/General-Terms-and-Contitions-of-Use-web.pdf [] unknown yes [] [] {} Partner universities: https://dass.credi.ba/partner-universities/ 2021-02-22 2021-08-19 +r3d100013510 DABAR eng [{"additionalName": "Digital Academic Archives and Repositories", "additionalNameLanguage": "eng"}] https://dabar.srce.hr/en [] ["dabar@srce.hr"] DABAR (Digital Academic Archives and Repositories) is the key component of the Croatian e-infrastructure’s data layer. It provides technological solutions that facilitate maintenance of higher education and science institutions' digital assets, i.e., various digital objects produced by the institutions and their employees. eng ["other"] {"size": "156.318 records; 150 repositories", "updatedp": "2021-07-12"} 2015-08-17 ["eng", "hrv"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dabar.srce.hr/en/dabar [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["institutional repository system", "multidisciplinary", "national repository system", "research data"] [{"institutionName": "University of Zagreb, University Computing Centre", "institutionAdditionalName": ["SRCE", "Sveu\u010dili\u0161ni ra\u010dunski centar Sveu\u010dili\u0161ta u Zagrebu"], "institutionCountry": "HRV", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.srce.unizg.hr/en/", "institutionIdentifier": ["Wikidata:Q7894666"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dabar System Regulations", "policyURL": "https://dabar.srce.hr/files/dabar-pravilnik-v1.0-20150817.pdf"}, {"policyName": "Upute za autore", "policyURL": "https://dabar.srce.hr/autori"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://rightsstatements.org/page/InC/1.0/?language=de"}] restricted [] ["Fedora"] {"api": "https://dabar.srce.hr/oai?verb=Identify", "apiType": "OAI-PMH"} ["DOI", "URN"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2021-02-22 2021-07-12 +r3d100013511 Repositorio de Activos Digitales spa [{"additionalName": "Repositorio de Activos Digitales del Instituto Andaluz de Patrimonio Hist\u00f3rico", "additionalNameLanguage": "spa"}] https://repositorio.iaph.es/ [] ["marial.loza@juntadeandalucia.es"] The REA-IAPH aims to manage and disseminate the graphic collection of the institution as well as the scientific production and technical documentation resulting from its projects and activities of research and innovation, documentation, intervention, communication and dissemination in the field of Cultural Heritage. spa ["institutional"] {"size": "", "updatedp": ""} 2017 ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://repositorio.iaph.es/ [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["archeology", "conservation", "cultural heritage", "landscape"] [{"institutionName": "Instituto Andaluz de Patrimonio Hist\u00f3rico", "institutionAdditionalName": ["Andalusian Institute of Historical Heritage"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://repositorio.iaph.es/", "institutionIdentifier": ["ROR:01p1xdv40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["marial.loza@juntadedeandalucia.es"]}] [{"policyName": "Aviso legal", "policyURL": "https://www.juntadeandalucia.es/informacion/legal.html"}, {"policyName": "Politica Institutcional de Acceso Abierto del Instituto Andaluz de Patrimonio Historico", "policyURL": "https://repositorio.iaph.es/ayuda/Politica%20acceso%20abierto_%20IAPH_2020_aprobado.pdf"}, {"policyName": "Politicas de Funcionamiento del Repositorio de Activosdigatales del IAPH (ReA)", "policyURL": "https://repositorio.iaph.es/ayuda/politicas_ReA_2020_definitivo_202010.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/choose/?lang=es"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/choose/?lang=es"}] restricted [] ["DSpace"] yes {} ["hdl"] https://repositorio.iaph.es/ [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-02-25 2021-03-01 +r3d100013512 Open Energy Platform eng [{"additionalName": "Open Energy Database", "additionalNameLanguage": "eng"}, {"additionalName": "Open Energy Family", "additionalNameLanguage": "eng"}] https://openenergy-platform.org/dataedit/schemas [] ["https://openenergy-platform.org/contact/"] The Open Energy Family aims to ensure quality, transparency and reproducibility in energy system research. It is a collection of various tools and information and that help working with energy related data. It is a collaborative community effort, everything is openly developed and therefore constantly evolving. The main module is the Open Energy Platform (OEP), a web interface to access most of the modules, especially the community database. It provides a way to publish data with proper documentation (metadata), and link it to source code and underlying assumptions. Open Energy Database is an open community database for energy, climate and modelling data. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://openenergy-platform.org/about/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "community database", "energy system analysis", "open energy data", "power system modelling"] [{"institutionName": "Otto-von-Guericke-Universit\u00e4t Magdeburg", "institutionAdditionalName": ["OvGU"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://iks.cs.ovgu.de/IKS.html", "institutionIdentifier": ["ROR:00ggpsq73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Reiner Lemoine Institut", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://reiner-lemoine-institut.de/en/", "institutionIdentifier": ["ROR:03xvdbr49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://openenergy-platform.org/legal/tou/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.gnu.org/licenses/agpl-3.0.en.html"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/odbl/1-0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.govdata.de/dl-de/by-2-0"}] restricted [{"dataUploadLicenseName": "open data licenses", "dataUploadLicenseURL": "https://openenergy-platform.org/tutorials/jupyter/tutorial_open-data-licenses/"}] [] yes {"api": "https://oep-data-interface.readthedocs.io/en/latest/api.html", "apiType": "REST"} [] [] yes yes [] [] {} Partners: https://openenergy-platform.org/about/ 2021-02-25 2021-03-05 +r3d100013513 Kiezdeutschkorpus KiDKo deu [{"additionalName": "KiDKo", "additionalNameLanguage": "deu"}] https://www.kiezdeutschkorpus.de/ [] [] The KiezDeutsch-Korpus (KiDKo) has been developed by project B6 (PI: Heike Wiese) of the collaborative research centre Information Structure (SFB 632) at the University of Potsdam from 2008 to 2015. KiDKo is a multi-modal digital corpus of spontaneous discourse data from informal, oral peer group situations in multi- and monoethnic speech communities. KiDKo contains audio data from self-recordings, with aligned transcriptions (i.e., at every point in a transcript, one can access the corresponding area in the audio file). The corpus provides parts-of-speech tags as well as an orthographically normalised layer (Rehbein & Schalowski 2013). Another annotation level provides information on syntactic chunks and topological fields. There are several complementary corpora: KiDKo/E (Einstellungen - "attitudes") captures spontaneous data from the public discussion on Kiezdeutsch: it assembles emails and readers' comments posted in reaction to media reports on Kiezdeutsch. By doing so, KiDKo/E provides data on language attitudes, language perceptions, and language ideologies, which became apparent in the context of the debate on Kiezdeutsch, but which frequently related to such broader domains as multilingualism, standard language, language prestige, and social class. KiDKo/LL ("Linguistic Landscape") assembles photos of written language productions in public space from the context of Kiezdeutsch, for instance love notes on walls, park benches, and playgrounds, graffiti in house entrances, and scribbled messages on toilet walls. Contains materials in following languages: Spanish, Italian, Greek, Kurdish, Swedish, French, Croatian, Arabic, Turkish. The corpus is available online via the Hamburger Zentrum für Sprachkorpora (HZSK) https://corpora.uni-hamburg.de/secure/annis-switch.php?instance=kidko . eng ["disciplinary"] {"size": "333.000 tokens", "updatedp": "2021-03-01"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["dialect", "informal conversations", "linguistic landscape", "self-recorded", "spontaneous speech"] [{"institutionName": "Humboldt-Universit\u00e4t zu Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.linguistik.hu-berlin.de/de/institut/professuren/multilinguale-kontexte/spracherwerb-sprachentwicklung-in-multilingualen-kontexten", "institutionIdentifier": ["ROR:01hcx6992"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["heike.wiese@hu-berlin.de"]}, {"institutionName": "Universit\u00e4t Potsdam", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sfb632.uni-potsdam.de/", "institutionIdentifier": ["ROR:03bnmw459"], "responsibilityStartDate": "2008", "responsibilityEndDate": "2015", "institutionContact": []}] [{"policyName": "ANNIS", "policyURL": "https://corpus-tools.org/annis/documentation.html"}, {"policyName": "Allgemeine Gesch\u00e4ftsbedingungen", "policyURL": "https://corpora.uni-hamburg.de/hzsk/en/corpus-enquiries-licenses"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] [] {} [] https://www.kiezdeutschkorpus.de/ [] unknown unknown [] [] {} 2021-02-26 2021-03-04 +r3d100013514 Bach digital deu [] https://www.bach-digital.de [] ["collection@rz.uni-leipzig.de"] The Bach portal is a database for researchers and practical musicians interested in Johann Sebastian Bach and the whole Bach family. It contains detailed, fully searchable findings from research into Bach and high-resolution scans of works and sources. eng ["disciplinary"] {"size": "9.120 objects", "updatedp": "2021-03-01"} 2009 ["deu", "eng", "fra", "ita", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.bach-digital.de/content/project.xml?XSL.lastPage.SESSION=/content/project.xml&lang=en [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["composer", "music", "musician", "scores"] [{"institutionName": "Bach Archiv Leipzig", "institutionAdditionalName": ["Leipzig Bach Archive"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bach-leipzig.de", "institutionIdentifier": ["ROR:05s928n76"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info(at)bach-leipzig.de"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "2008", "responsibilityEndDate": "", "institutionContact": ["postmaster@dfg.de"]}, {"institutionName": "Staats- und Universit\u00e4tsbibliothek Hamburg Carl von Ossietzky", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.sub.uni-hamburg.de", "institutionIdentifier": ["ROR:00pwcvj19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["auskunft@sub.uni-hamburg.de"]}, {"institutionName": "Staatsbibliothek zu Berlin \u2013 Preu\u00dfischer Kulturbesitz", "institutionAdditionalName": ["Berlin State Library \u2013 Prussian Cultural Heritage"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.staatsbibliothek-berlin.de", "institutionIdentifier": ["ROR:02ysgg478"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["webserveradmin(at)sbb.spk-berlin.de"]}, {"institutionName": "S\u00e4chsische Landesbibliothek \u2013 Staats- und Universit\u00e4tsbibliothek Dresden", "institutionAdditionalName": ["SLUB Saxon State and University Library in Dresden"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.slub-dresden.de", "institutionIdentifier": ["ROR:03wf51b65"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["Generaldirektion(at)slub-dresden.de"]}] [{"policyName": "Bach digital Lizenz", "policyURL": "https://www.bach-digital.de/content/license.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://opendatacommons.org/licenses/pddl/1-0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/deed.de"}] closed [] ["other"] {} ["other"] ["other"] unknown yes [] [] {} 2021-02-26 2021-03-04 +r3d100013516 Digitale Mozart-Edition deu [{"additionalName": "DME", "additionalNameLanguage": "eng"}, {"additionalName": "Digital Mozart Edition", "additionalNameLanguage": "eng"}] https://dme-webdev.mozarteum.at/en/ [] ["https://dme-webdev.mozarteum.at/kontakt/"] "The Digital Mozart Edition (DME) aims at making accessible the oeuvre of Wolfgang Amadé Mozart (1756–1791) in digital formats. Access is free of charge for everybody." eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2006 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://dme-webdev.mozarteum.at/en/mozart-oeuvre-2/ [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["composer", "music", "score"] [{"institutionName": "Internationale Stiftung Mozarteum", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.mozarteum.at", "institutionIdentifier": ["ROR:00tfmqe91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["office@mozarteum.at"]}] [{"policyName": "Project descriptions", "policyURL": "https://dme-webdev.mozarteum.at/en/music/edition/#200"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by-nc-sa/4.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.de"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dme-webdev.mozarteum.at/en/imprint/"}] closed [] ["other"] {} [] https://dme-webdev.mozarteum.at/en/music/edition/#400 [] unknown unknown [] [] {} 2021-03-03 2021-03-05 +r3d100013517 International Music Score Library Project eng [{"additionalName": "MSLP", "additionalNameLanguage": "eng"}, {"additionalName": "Petrucci Music Library", "additionalNameLanguage": "eng"}] https://imslp.org/wiki/Main_Page [] ["eguo@imslp.org"] IMSLP is a subscription-based project for the creation of a virtual library of public-domain music scores. eng ["disciplinary"] {"size": "588.507 scores; 68.262 recordings", "updatedp": "2021-07-02"} 2006 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://imslp.org/wiki/IMSLP:About [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["music", "scores"] [{"institutionName": "Project Petrucci LLC", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://imslp.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["eguo@imslp.org"]}] [{"policyName": "IMSLP:DMCA policy", "policyURL": "https://imslp.org/wiki/IMSLP:DMCA_Policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://imslp.org/wiki/Public_domain"}] restricted [{"dataUploadLicenseName": "Legal Uploading", "dataUploadLicenseURL": "https://imslp.org/wiki/Public_domain"}] [] {} [] [] unknown unknown [] [] {} 2021-03-03 2021-07-02 +r3d100013518 Social Sciences and Digital Humanities Archive eng [{"additionalName": "SODHA", "additionalNameLanguage": "eng"}] https://www.sodha.be/ [] ["benjamin.peuch@arch.be", "johan.vandereycken@arch.be", "oliver.lenaerts@arch.be", "sodha@arch.be", "youssef.ouahalou@arch.be"] SODHA is the federal Belgian data archive for social sciences and the digital humanities. SODHA is a new service of the State Archives of Belgium and acts as the Belgian service provider for the Consortium of European Social Science Data Archives (CESSDA). eng ["disciplinary", "institutional"] {"size": "2 dataverses; 44 datasets; 196 files", "updatedp": "2020-03-21"} 2021-03-05 ["eng", "fra", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] https://www.sodha.be/guide/pdf/SODHA_Mission_Statement.pdf [{"name": "Images", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR"] [{"institutionName": "Belgian Federal Science Policy Office", "institutionAdditionalName": ["BELSPO"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.belspo.be/belspo/index_en.stm", "institutionIdentifier": ["ROR:01fapfv42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "State Archives of Belgium", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.arch.be/index.php?l=en", "institutionIdentifier": ["ISNI:0000 0000 9643 1219", "LCCN:n79106149", "ROR:04y1ast97", "VIAF:17145244330574480225", "WorldCat Identities:lccn-n79106149"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "SODHA Access and Reuse Policy", "policyURL": "https://www.sodha.be/guide/pdf/SODHA_Access_and_Reuse_Policy_EN.pdf"}, {"policyName": "SODHA Dataset Publishing Policy", "policyURL": "https://www.sodha.be/guide/pdf/SODHA_Dataset_Publishing_Policy.pdf"}, {"policyName": "SODHA Dataset Version Management Policy", "policyURL": "https://www.sodha.be/guide/pdf/SODHA_Dataset_Version_Management_Policy.pdf"}, {"policyName": "SODHA Privacy Policy", "policyURL": "https://www.sodha.be/guide/pdf/SODHA_Privacy_Policy_EN.pdf"}, {"policyName": "SODHA Terms of Service", "policyURL": "https://www.sodha.be/guide/pdf/SODHA_Terms_of_Service.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.sodha.be/guide/pdf/SODHA_Attribution_Scientific_Purposes_Only_License.pdf"}] restricted [{"dataUploadLicenseName": "SODHA Deposit Agreement", "dataUploadLicenseURL": "https://www.sodha.be/guide/pdf/SODHA_Deposit_Agreement.pdf"}] ["DataVerse"] yes {} ["DOI"] https://www.sodha.be/guide/pdf/SODHA_Terms_of_Service.pdf ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} SODHA was built with the help of DEMO (UCLouvain) https://uclouvain.be/fr/instituts-recherche/iacchos/demo and Interface Demography (VUB) https://interfacedemography.be/ 2021-03-03 2021-03-07 +r3d100013519 Refubium eng [] https://refubium.fu-berlin.de/?locale-attribute=en ["OpenDOAR:4732"] ["kontakt@refubium.fu-berlin.de"] The institutional repository Refubium is a service of the University Library of Freie Universität. All the university members (research staff/scientists, students and other authors currently affiliated with Freie Univesität) are encouraged to deposit their scientific papers, master and bachelor thesis, as well as research data. eng ["institutional"] {"size": "", "updatedp": ""} 2020 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.fu-berlin.de/en/sites/open_access/ueberopenaccess/index.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Freie Universit\u00e4t Berlin", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fu-berlin.de/en/", "institutionIdentifier": ["ROR:046ak2485"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Protection Policy of Freie Universit\u00e4t Berlin", "policyURL": "https://www.fu-berlin.de/en/redaktion/impressum/datenschutzhinweise/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.fu-berlin.de/sites/refubium/rechtliches/Nutzungsbedingungen"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] ["DSpace"] {} ["DOI", "URN"] [] unknown unknown ["DINI Certificate"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-03-03 2021-03-07 +r3d100013520 TRR170-DB eng [{"additionalName": "Late Accretion Onto Terrestrial Planets", "additionalNameLanguage": "eng"}] https://planetary-data-portal.org/ [] ["elfrun.lehmann@fu-berlin.de", "hbecker@zedat.fu-berlin.de"] The TRR170-DB was set up to manage data products of the collaborative research center TRR 170 'Late Accretion onto Terrestrial Planets' (https://www.trr170-lateaccretion.de/). However, meanwhile the repository also stores data by other institutions and researchers. Data include laboratory and other instrumental data on planetary samples, remote sensing data, geological maps and model simulations. eng ["disciplinary"] {"size": "4 dataverses; 15 datasets, 105 files", "updatedp": "2021-03-04"} 2020-01-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["planetary data"] [{"institutionName": "Freie Universit\u00e4t Berlin, Fachbereich Geowissenschaften, Institut f\u00fcr Geologische Wissenschaften", "institutionAdditionalName": ["Freie Universit\u00e4t Berlin, Department of Earth Sciences, Institute of Geological Sciences"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.geo.fu-berlin.de/en/geol/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fu-berlin.de/en/einrichtungen/fachbereiche/fb/geowiss/geol/index.html"]}] [{"policyName": "Data Protection Policy of Freie Universit\u00e4t Berlin", "policyURL": "https://www.fu-berlin.de/en/redaktion/impressum/datenschutzhinweise/index.html"}, {"policyName": "Open Access Policy of Freie Universit\u00e4t Berlin", "policyURL": "https://www.fu-berlin.de/sites/open_access/akteure/oa-policy/index.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-03-03 2021-03-09 +r3d100013522 Theater und Musik in Weimar 1754 - 1990 deu [] http://theaterzettel-weimar.de/home.html [] ["http://theaterzettel-weimar.de/metanavi/impressum.html"] Being both, a demand as well as a chance of the present age of information technology for cultural preservation and continuation, public databases possess an immense importance for providing a comprehensive access to cultural material as far as their contents and also their clientele of users are concerned. Therefore, an exemplary completely preserved stock of primary sources as the one of the Weimar theatre is no less than an invaluable piece of luck, possibly just due to the manageable local conditions of this small (former courtly) town in the middle of German language area. In this English version, first this rare cultural-historical phenomenon and its sources are described. Furthermore, the data- and metadata-contents within the Weimar theatre- and music-ephemera database are presented. Finally, the principal opportunities of searching this (meta-)data pool are explained, where presumed to be necessary supported by screenshot images from the internet platform. eng ["disciplinary"] {"size": "50 091 performance records, 7 055 work records, 5 706 person records", "updatedp": "2021-03-11"} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "10303 Theatre and Media Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] http://theaterzettel-weimar.de/english-instruction.html [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cultural-historical research", "culture", "drama", "literature", "music", "performance", "theatre"] [{"institutionName": "Friedrich-Schiller-Universit\u00e4t Jena", "institutionAdditionalName": ["FSU", "Friedrich Schiller University Jena"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-jena.de/", "institutionIdentifier": ["ROR:05qpz1x62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-jena.de/Kontakt"]}, {"institutionName": "Hochschule f\u00fcr Musik Franz Liszt Weimar", "institutionAdditionalName": ["HfM", "University of Music Franz Liszt Weimar"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hfm-weimar.de/start/", "institutionIdentifier": ["ROR:000evwg49"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["michael.klaper@)hfm-weimar.de"]}, {"institutionName": "Landesarchiv Th\u00fcringen - Hauptstaatsarchiv Weimar", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://landesarchiv.thueringen.de/", "institutionIdentifier": ["ROR:03bpan768"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["weimar@la.thueringen.de"]}, {"institutionName": "Th\u00fcringer Universit\u00e4ts- und Landesbibliothek Jena", "institutionAdditionalName": ["ThULB"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.thulb.uni-jena.de/", "institutionIdentifier": ["ROR:0493yt138"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["michel.buechner@thulb.uni-jena.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "http://theaterzettel-weimar.de/metanavi/impressum.html"}] restricted [] ["other"] {} [] http://theaterzettel-weimar.de/metanavi/impressum.html [] unknown yes [] [] {} Partners: http://theaterzettel-weimar.de/projektpartner.html 2021-03-08 2021-03-13 +r3d100013523 PUBLISSO-Fachrepositorium Lebenswissenschaften deu [{"additionalName": "PUBLISSO-Repository for Life Sciences", "additionalNameLanguage": "eng"}] https://repository.publisso.de/ [] ["fachrepositorium@zbmed.de"] ZB MED's Repository for Life Sciences offers authors the chance to publish their scientific texts and research data from the fields of medicine, health, nutritional, environmental and agricultural sciences. In accordance with the principles of Open Access, these publications can be accessed over the Internet without restrictions. There is no charge to publish, archive or use the documents. eng ["disciplinary"] {"size": "", "updatedp": ""} 2015-09 ["deu"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20509 Pharmacology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.publisso.de/en/publishing/repositories/repository-for-life-sciences/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["COVID-19", "SARS-CoV-2", "agriculture", "corona virus", "health", "obesity", "social services"] [{"institutionName": "ZB MED \u2013 Informationszentrum Lebenswissenschaften", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zbmed.de/", "institutionIdentifier": [], "responsibilityStartDate": "2015-09", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy", "policyURL": "https://www.publisso.de/en/research-data-management/rd-publishing/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.gesetze-im-internet.de/englisch_urhg/englisch_urhg.html"}] restricted [] ["Fedora", "other"] no {"api": "https://frl.publisso.de/oai-pmh/?verb=ListRecords&metadataPrefix=oai_dc", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes unknown [] [] {} The eyeMoviePedia videos are moving successively to be found on PUBLISSO-Repository for Life Sciences in the future. eyemoviepedia.com will be shut down in the course of 2021 2021-03-08 2021-05-05 +r3d100013524 SMU Research Data Repository eng [{"additionalName": "SMU RDR", "additionalNameLanguage": "eng"}, {"additionalName": "Singapore Management University Research Data Repository", "additionalNameLanguage": "eng"}] https://researchdata.smu.edu.sg/ [] ["library@smu.edu.sg"] SMU Research Data Repository (SMU RDR) is a tool and service for researchers from Singapore Management University (SMU) to store, share and publish their research data. SMU RDR accepts a wide range of research data and outputs generated from research projects. eng ["institutional"] {"size": "78 datasets", "updatedp": "2021-03-10"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://researchguides.smu.edu.sg/c.php?g=924720 [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["dataProvider"] ["accounting", "artificial intelligence", "business", "computer science", "data science", "econometrics", "economics", "finance", "information systems", "law", "political science", "psychology", "social science", "sociology"] [{"institutionName": "Singapore Management University", "institutionAdditionalName": [], "institutionCountry": "SGP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.smu.edu.sg/", "institutionIdentifier": ["ROR:050qmg959"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://researchguides.smu.edu.sg/rdr/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://figshare.com/disclaimer"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.html"}] restricted [{"dataUploadLicenseName": "Deposit agreement", "dataUploadLicenseURL": "https://researchguides.smu.edu.sg/rdr/terms"}] ["other"] {"api": "https://knowledge.figshare.com/app-category/figshare-tools", "apiType": "FTP"} ["DOI"] ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-03-09 2021-03-13 +r3d100013525 Data@Lincoln eng [] https://data.lincoln.ac.nz/ ["OpenDOAR:4872"] ["data@lincoln.ac.nz"] Data@Lincoln is the research data repository for Lincoln University (New Zealand). Datasets may stand alone, or may consist of appendices to theses, or figures or other supplementary material to journal articles and other publications. eng ["institutional"] {"size": "407 records", "updatedp": "2021-03-11"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Lincoln University", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.lincoln.ac.nz", "institutionIdentifier": ["ROR:04ps1r162"], "responsibilityStartDate": "2019-07-10", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Managing research data", "policyURL": "https://ltl.lincoln.ac.nz/research/data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ltl.lincoln.ac.nz/services/copyright-re-use/"}] restricted [] ["other"] yes {"api": "https://api.figshare.com/v2/oai?verb=ListIdentifiers&metadataPrefix=oai_dc&set=portal_510", "apiType": "OAI-PMH"} ["DOI"] https://ltl.lincoln.ac.nz/research/data/ [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://data.lincoln.ac.nz/rss/portal/lincolnuninz", "syndicationType": "RSS"} 2021-03-11 2021-03-13 +r3d100013526 UrMEL eng [{"additionalName": "Universal Multimedia Electronic Library", "additionalNameLanguage": "eng"}] http://www.urmel-dl.de/ [] ["http://www.urmel-dl.de/#contact"] The Universal Multimedia Electronic Library (UrMEL) is the central access platform for multimedia offers of the Thuringian University and State Library Jena (ThULB) and other partners. It provides access to scholarly information and cultural resources from the region of Thuringia and beyond. UrMEL cooperates with numerous archives, libraries, museums and scientific institutions. eng ["other"] {"size": "4 Portals; 10 colletions", "updatedp": "2021-03-11"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "10701 Protestant Theology", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10902 Research on Teaching, Learning and Training", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "11301 Legal and Political Philosophy, Legal History, Legal Theory", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] http://www.urmel-dl.de/#about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["cultural heritage", "cultural-historical research", "dbt - Digitale Bibliothek Th\u00fcringen"] [{"institutionName": "Freistaat Th\u00fcringen, Landesamt f\u00fcr Denkmalpflege und Arch\u00e4ologie", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://denkmalpflege.thueringen.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://denkmalpflege.thueringen.de/kontakt"]}, {"institutionName": "Friedrich-Schiller Universit\u00e4t Jena", "institutionAdditionalName": ["FSU", "Friedrich Schiller University Jena"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-jena.de/", "institutionIdentifier": ["ROR:05qpz1x62"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-jena.de/Kontakt"]}, {"institutionName": "GBV", "institutionAdditionalName": ["Gemeinsamer Bibliotheksverbund der L\u00e4nder Bremen, Hamburg, Mecklenburg-Vorpommern, Niedersachsen, Sachsen-Anhalt, Schleswig-Holstein, Th\u00fcringen und der Stiftung Preu\u00dfischer Kulturbesitz"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gbv.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gbv.de/kontakt"]}, {"institutionName": "Th\u00fcringer Universit\u00e4ts- und Landesbibliothek Jena", "institutionAdditionalName": ["ThULB"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.thulb.uni-jena.de/start.html", "institutionIdentifier": ["ROR:0493yt138"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["direktion_thulb[at]uni-jena.de"]}, {"institutionName": "Universit\u00e4t Leipzig", "institutionAdditionalName": ["Leipzig University"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-leipzig.de/", "institutionIdentifier": ["ROR:03s7gtk40"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Nutzungsbedingungen f\u00fcr Digitalisate", "policyURL": "https://dhb.thulb.uni-jena.de/templates/master/template_dhb/sites/terms.xml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.db-thueringen.de/content/footer/impressum.xml"}] restricted [] [] {} ["URN"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-03-11 2021-03-18 +r3d100013527 St. Jude Cloud eng [] https://www.stjude.cloud/ [] ["https://stjude.cloud/contact"] St. Jude Cloud, an initiative of St. Jude Children's Research Hospital, provides data and analysis resources to the global research community. Our goal is to empower researchers across the world to advance cures for pediatric cancer and other pediatric catastrophic diseases. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20520 Pediatric and Adolescent Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["non-cancerous pediatric diseases", "pediatiric cancer survivorship", "pediatric cancer", "studies"] [{"institutionName": "St. Jude Children's Research Hospital", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stjude.org/", "institutionIdentifier": ["ROR:02r3e0967"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "https://www.stjude.cloud/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.stjude.cloud/terms-of-use/"}] restricted [{"dataUploadLicenseName": "Terms of Use", "dataUploadLicenseURL": "https://www.stjude.cloud/terms-of-use/"}] [] {} [] https://university.stjude.cloud/docs/citing-stjude-cloud/ [] unknown unknown [] [] {} St. Jude Cloud provides a number of applications which you can use for various purposes: https://university.stjude.cloud/docs/#apps 2021-03-11 2021-03-15 +r3d100013528 e-codices lat [] https://www.e-codices.unifr.ch/en [] ["e-codices@unifr.ch", "https://www.e-codices.unifr.ch/en/about/contact"] The goal of e-codices is to provide free access to all medieval and a selection of modern manuscripts of Switzerland by means of a virtual library. eng ["disciplinary"] {"size": "2.539 manuscripts", "updatedp": "2021-03-29"} 2008 ["deu", "eng", "fra", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10201 Medieval History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.e-codices.unifr.ch/en/about/key_aspects [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["codex", "medieval manuscripts", "medieval sources"] [{"institutionName": "Universit\u00e9 de Fribourg", "institutionAdditionalName": ["University of Fribourg", "Universit\u00e4t Freiburg"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unifr.ch/home/en/", "institutionIdentifier": ["ROR:022fs9h90"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.unifr.ch/home/welcomeE.php"]}, {"institutionName": "swissuniversities", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.swissuniversities.ch/", "institutionIdentifier": ["ROR:02fsagg23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.swissuniversities.ch/kontakt"]}] [{"policyName": "Guiding Principles", "policyURL": "https://www.e-codices.unifr.ch/en/about/key_aspects"}, {"policyName": "Reproduction Guidlines", "policyURL": "https://www.e-codices.unifr.ch/en/about/imaging"}, {"policyName": "Selection Criteria", "policyURL": "https://www.e-codices.unifr.ch/en/about/selection"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}] closed [] ["MySQL"] {"api": "http://www.e-codices.unifr.ch/oai", "apiType": "OAI-PMH"} ["DOI"] https://www.e-codices.unifr.ch/en/about/terms [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Metadata standard: TEI-XML 2021-03-11 2021-03-31 +r3d100013529 FULIR Data eng [{"additionalName": "Repozitorij istra\u017eiva\u010dkih podataka Instituta Ru\u0111er Bo\u0161kovi\u0107", "additionalNameLanguage": "hrv"}, {"additionalName": "Ru\u0111er Bo\u0161kovi\u0107 institute Data Repository", "additionalNameLanguage": "eng"}] https://data.fulir.irb.hr/ [] ["data@irb.hr"] FULIR Data is a research data repository that gathers, permanently stores and allows open access to primary data produced by researchers based at Ruđer Bošković Institute. Researchers deposit datasets by themselves (self-archiving) with the support given by the Centre for Scientific Information and their RDM experts. eng ["institutional"] {"size": "9 datasets", "updatedp": "2021-07-13"} ["eng", "hrv"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://data.fulir.irb.hr/about-repository [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Rudjer Boskovic Institute", "institutionAdditionalName": [], "institutionCountry": "HRV", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irb.hr", "institutionIdentifier": ["ROR:02mw21745"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content policy", "policyURL": "https://data.fulir.irb.hr/politike-repozitorija"}, {"policyName": "Data Policy", "policyURL": "https://data.fulir.irb.hr/politike-repozitorija"}, {"policyName": "Metadata policy", "policyURL": "https://data.fulir.irb.hr/politike-repozitorija"}, {"policyName": "Preservation policy", "policyURL": "https://data.fulir.irb.hr/politike-repozitorija"}, {"policyName": "Submission policy", "policyURL": "https://data.fulir.irb.hr/politike-repozitorija"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "http://fulir.irb.hr/information.html"}] restricted [] ["other"] yes {"api": "https://data.fulir.irb.hr/oai", "apiType": "OAI-PMH"} ["URN"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} part of DABAR (Digital Academic Archives and Repositories): https://www.re3data.org/repository/r3d100013510 2021-03-12 2021-07-22 +r3d100013531 Yale-NUS Dataverse eng [] https://dataverse.yale-nus.edu.sg/ [] ["library@yale-nus.edu.sg"] Yale-NUS Dataverse is the institutional research data repository of Yale-NUS College. The goals of Yale-NUS Dataverse are to collect, preserve and showcase the research output of Yale-NUS researchers and through this, increase the research visibility of Yale-NUS researchers and demonstrate the research excellence of Yale-NUS College to the world. eng ["institutional"] {"size": "7 dataverses; 4 datasets; 83 files", "updatedp": "2021-03-15"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Yale-NUS College", "institutionAdditionalName": [], "institutionCountry": "SGP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.yale-nus.edu.sg/", "institutionIdentifier": ["ROR:04g9wch13"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Yale-NUS Dataverse FAQs", "policyURL": "https://libguides.nus.edu.sg/ld.php?content_id=47984565"}, {"policyName": "Yale-NUS Dataverse USER GUIDE", "policyURL": "https://libguides.nus.edu.sg/ld.php?content_id=47816812"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/2.0/"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://guides.dataverse.org/en/4.18.1/user/find-use-data.html#cite-data [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-03-15 2021-04-06 +r3d100013532 IOS Regensburg Research Data Respository eng [{"additionalName": "LaMBDa IOS Research Data Respository", "additionalNameLanguage": "eng"}, {"additionalName": "Labour, Migration and Biographical Data", "additionalNameLanguage": "eng"}] https://lambda.ios-regensburg.de/ [] ["https://ios-regensburg.de/en/contact.html"] LaMBDa is the Research Data Portal of the Leibniz Institute for East and Southeast European Studies (IOS). eng ["disciplinary", "institutional"] {"size": "256 Entries", "updatedp": "2021-03-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://lambda.ios-regensburg.de/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "business", "demography", "foreign trade", "industry", "infrastructure", "labor and industry", "labor market", "migration", "politics", "statistics", "survey"] [{"institutionName": "Leibniz-Institute for East and Southeast European Studies", "institutionAdditionalName": ["IOS", "Leibniz-Institut f\u00fcr Ost- und S\u00fcdosteuropaforschung"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ios-regensburg.de/en.html", "institutionIdentifier": ["ROR:039s64n79"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ios-regensburg.de/en/imprint.html"]}] [{"policyName": "IOS Open Access Policy", "policyURL": "https://ios-regensburg.de/en/institute/open-access-policy.html"}, {"policyName": "IOS Research Data Policy", "policyURL": "https://ios-regensburg.de/en/institute/research-data-policy.html"}, {"policyName": "Research Data Policy", "policyURL": "https://lambda.ios-regensburg.de/research-data-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] {} ["DOI"] ["other"] yes unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} The metadata of the dataset is transfered to the da|ra registration agency for DOI registration. The metadata will also be indexed in DataCite for information retrieval 2021-03-15 2021-03-18 +r3d100013533 Kikapu eng [{"additionalName": "UWC Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "UWC Figshare Repository", "additionalNameLanguage": "eng"}, {"additionalName": "UWC IDR", "additionalNameLanguage": "eng"}, {"additionalName": "University of the Western Cape Institutional Research Data Respository", "additionalNameLanguage": "eng"}] https://kikapu.uwc.ac.za/ [] ["eresearch-support@uwc.ac.za", "rdm-support@uwc.ac.za"] The University of the Western Cape (UWC) uses Figshare for Institutions for their institutional research data repository. It is called Kikapu, and serves as a repository for storing and disseminating research data. eng ["institutional"] {"size": "336 items; 2 collections", "updatedp": "2021-03-16"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20528 Dentistry, Oral Surgery", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://eresearch.uwc.ac.za/resources/kikapu/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "multidisciplinary"] [{"institutionName": "University of the Western Cape", "institutionAdditionalName": ["UWC"], "institutionCountry": "ZAF", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://uwc.ac.za", "institutionIdentifier": ["ROR:00h2vm590"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Figshare terms and conditions", "policyURL": "https://figshare.com/terms"}, {"policyName": "UWC Copyright Services", "policyURL": "https://library-research.uwc.ac.za/copyright-services/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://help.figshare.com/article/copyright-and-license-policy"}] restricted [] ["other"] {} ["DOI"] https://help.figshare.com/article/how-to-share-cite-or-embed-your-data ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://kikapu.uwc.ac.za/rss/portal/uwc", "syndicationType": "RSS"} UWC Research Repository: The repository is a service that stores, distributes and displays digital copies of research output of UWC faculty https://repository.uwc.ac.za/ UWC Electronic Theses and Dissertations Repository: The University of the Western Cape electronic theses and dissertations repository holds full-text theses submitted for degree purposes since 2004, with selected titles prior to 2004 https://etd.uwc.ac.za/ 2021-03-16 2021-03-18 +r3d100013535 Bureau Central de Magnétisme Terrestre fra [{"additionalName": "BCMT", "additionalNameLanguage": "fra"}] http://www.bcmt.fr [] ["bcmt@ipgp.fr", "http://www.bcmt.fr/contactus.php"] The BCMT data portal offers access magnetic data and indices of the French network of ground observatories, operated all over the world by French research institutions and international partners. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31501 Geophysics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://www.bcmt.fr/whatisbcmt.html [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["INTERMAGNET", "geomagnetics", "geomagnetisme", "magnetic Observatories"] [{"institutionName": "Institut de physique du globe de Paris", "institutionAdditionalName": ["IPGP"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ipgp.fr/fr", "institutionIdentifier": ["ROR:004gzqz66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00c9cole et Observatoire des Sciences de la Terre", "institutionAdditionalName": ["EOST", "School and Observatory of Earth Sciences"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eost.unistra.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of use", "policyURL": "http://www.bcmt.fr/termsofuse.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by-nc/4.0/"}] closed [] [] {"api": "ftp://ftp.bcmt.fr/", "apiType": "FTP"} ["DOI"] [] unknown unknown [] [] {} Participating institutions: http://www.bcmt.fr/institutions.html 2021-03-16 2021-03-20 +r3d100013536 Collaborative Research Centre Transregio 228 Database eng [{"additionalName": "CRC/Transregio 228: Future Rural Africa: Future-making and social-ecological transformation", "additionalNameLanguage": "eng"}, {"additionalName": "TRR228DB", "additionalNameLanguage": "eng"}] https://www.trr228db.uni-koeln.de [] ["trr228db-admin@uni-koeln.de"] The TRR228DB is the project-database of the Collaborative Research Centre 228 "Future Rural Africa: Future-making and social-ecological transformation" (CRC/Transregio 228, https://www.crc228.de) funded by the German Research Foundation (DFG, German Research Foundation – Project number 328966760). The project-database is a new implementation of the TR32DB and online since 2018. It handles all data including metadata, which are created by the involved project participants from several institutions (e.g. Universities of Cologne and Bonn) and research fields (e.g. anthropology, agroeconomics, ecology, ethnology, geography, politics and soil sciences). The data is resulting from several field campaigns, interviews, surveys, remote sensing, laboratory studies and modelling approaches. Furthermore, outcomes of the scientists such as publications, conference contributions, PhD reports and corresponding images are collected. eng ["disciplinary"] {"size": "112 datasets", "updatedp": "2021-03-17"} 2018-11-15 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10601 Social and Cultural Anthropology and Ethnology/Folklore", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "20708 Agricultural Economics and Sociology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.trr228db.uni-koeln.de/site/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Africa", "agriculture", "culture", "ecology", "economy", "future-making", "geography", "infrastructure", "politics", "society"] [{"institutionName": "Bonn International Center for Conversion", "institutionAdditionalName": ["BICC"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bicc.de/", "institutionIdentifier": ["ROR:010vbsn33"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bicc.de/contact-us/"]}, {"institutionName": "Charit\u00e9", "institutionAdditionalName": ["Charit\u00e9 - Universit\u00e4tsmedizin Berlin"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.charite.de/", "institutionIdentifier": ["ROR: 001w7jn25", "RRID:SCR_011151", "RRID:nlx_149288"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.charite.de/en/service/contact/"]}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64", "RRID:SCR_012420", "RRID:nlx_144062"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "Rheinische Friedrich-Wilhelms-Universit\u00e4t Bonn", "institutionAdditionalName": ["University of Bonn"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-bonn.de/", "institutionIdentifier": ["ROR:041nas322", "RRID:SCR_011611", "RRID:nlx_96679"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.uni-bonn.de/contact?set_language=en"]}, {"institutionName": "Universit\u00e4t zu K\u00f6ln", "institutionAdditionalName": ["University of Cologne"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-koeln.de/", "institutionIdentifier": ["ROR:00rcxh774", "RRID:SCR_002903", "RRID:nlx_14953"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t zu K\u00f6ln, Regionales Rechenzentrum", "institutionAdditionalName": ["RRZK", "University of Cologne, Regional Computing Centre Cologne"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://rrzk.uni-koeln.de/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://rrzk.uni-koeln.de/en/infoboard/contact"]}] [{"policyName": "Data Protection Statement", "policyURL": "https://www.trr228db.uni-koeln.de/site/dataPrivacy.php"}, {"policyName": "TRR228 Data Policy Agreement", "policyURL": "http://www.trr228db.uni-koeln.de/datapolicy/data_policy_crc_trr228.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.trr228db.uni-koeln.de/datapolicy/data_policy_crc_trr228.pdf"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "http://www.trr228db.uni-koeln.de/datapolicy/data_policy_crc_trr228.pdf"}] restricted [{"dataUploadLicenseName": "TRR228 Data Policy Agreement", "dataUploadLicenseURL": "http://www.trr228db.uni-koeln.de/datapolicy/data_policy_crc_trr228.pdf"}] [] yes {} ["DOI"] https://www.trr228db.uni-koeln.de/site/faq.php [] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} List of available Institutions: https://www.trr228db.uni-koeln.de/listing/institution.php 2021-03-17 2021-03-19 +r3d100013537 UCREA spa [{"additionalName": "Repositorio Abierto de la Universidad de Cantabria", "additionalNameLanguage": "spa"}, {"additionalName": "Repository of the University of Cantabria", "additionalNameLanguage": "eng"}] https://repositorio.unican.es/ ["ROAR:5212"] ["ucrea@unican.es"] UCrea offers electronic access to documents generated by UC members in their academic, learning or research activity. The aim is to give greater visibility to academic production, increase impact and ensure preservation. UCrea supports documentation in various electronic formats and can include academic papers, research projects, preprints, articles, conference papers, etc. spa ["institutional"] {"size": "", "updatedp": ""} ["eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://repositorio.unican.es/xmlui/themes/unican/lib/que_es_ucrea.pdf [{"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Cantabria", "institutionAdditionalName": ["UNICAN", "Universidad de Cantabria"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://web.unican.es/", "institutionIdentifier": ["ROR:046ffzj20"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Cantabria, University Library", "institutionAdditionalName": ["BUC", "Biblioteca Universidad de Cantabria"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://web.unican.es/buc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Pol\u00edtica institucional", "policyURL": "https://repositorio.unican.es/xmlui/themes/unican/lib/Politica_Repositorio_Ucrea.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/3.0/es/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/"}] restricted [] ["DSpace"] yes {"api": "http://repositorio.unican.es/oai/request?verb=Identify", "apiType": "OAI-PMH"} ["hdl"] [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://repositorio.unican.es/xmlui/feed/atom_1.0/site", "syndicationType": "ATOM"} 2021-03-21 2021-03-26 +r3d100013538 Jurisdictional Ocean Information Sharing System kor [{"additionalName": "JOISS", "additionalNameLanguage": "eng"}, {"additionalName": "\uad00\ud560\ud574\uc5ed\ud574\uc591\uc815\ubcf4 \uacf5\ub3d9\ud65c\uc6a9\uc2dc\uc2a4\ud15c", "additionalNameLanguage": "kor"}] https://joiss.kr/joiss/ [] ["https://joiss.kr/joiss/comu.bbs.selectBbsList.do?cmType=BBS&pageIndex=1", "kwr@kesti.co.kr"] The Jurisdictional Ocean Information Sharing System (JOISS) is a research activity to promote joint utilization of marine R&D projects and marine scientific materials at home and abroad. As a representative research activity, data curation activities are continuously carried out in accordance with the data life cycle to expand the utilization of the JOISS portal system. In order to provide integrated and standardized marine information, we are conducting standardization research for the distribution of marine geographic information metadata by referring to international standards and domestic and international marine data centers. In addition, we provide information and guidance for marine education and research, and strive to strengthen the exchange of data between marine research data repositories. eng ["disciplinary"] {"size": "443 datasets", "updatedp": "2021-12-15"} ["eng", "kor"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://joiss.kr/joiss/stnd.JoissDataPolicyPage.do [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["oceanography", "research data"] [{"institutionName": "Korea Institute of Marine Science & Technology promotion", "institutionAdditionalName": ["KIMST"], "institutionCountry": "KOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kimst.re.kr/e/main.do", "institutionIdentifier": [], "responsibilityStartDate": "2017-03-01", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy of JOISS", "policyURL": "https://joiss.kr/joiss/stnd.JoissDataPolicyPage.do"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://joiss.kr/joiss/stnd.JoissDataPolicyPage.do"}] restricted [] [] {"api": "https://joiss.kr/geonetwork/doc/api/", "apiType": "REST"} ["DOI"] https://joiss.kr/joiss/stnd.JoissDataPolicyPage.do ["ORCID"] unknown yes [] [{"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} 2021-03-22 2022-01-19 +r3d100013539 RETOPEA eng [{"additionalName": "Religious Toleration and Peace", "additionalNameLanguage": "eng"}] https://www.retopea.eu/ [] ["http://retopea.eu/s/start/page/contact"] RETOPEA investigates the different ways in which religious coexistence is thought of in different environments and how religious peace treaties have been established in the past. The idea is to use the insights gained to inform thinking about present-day peaceful religious co-existence The dataset contains the contents and the metadata of the resources (i.e., clippings) published on the RETOPEA website (retopea.eu). eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng", "fra", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10605 Religious Studies and Jewish Studies", "scheme": "DFG"}, {"name": "107 Theology", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://retopea.eu/s/start/page/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["history", "modern history", "religious peace treaties", "religious studies", "school projects"] [{"institutionName": "Euro-Arab Foundation for Higher Studies", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fundea.org/en", "institutionIdentifier": ["ROR:00svpda47"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.fundea.org/en/node/2"]}, {"institutionName": "KU Leuven", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.kuleuven.be/english/", "institutionIdentifier": ["ROR:05f950310", "RRID:SCR_001099", "RRID:nlx_149306"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.kuleuven.be/english/contact"]}, {"institutionName": "Le Foyer vzw", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.foyer.be/?lang=en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.foyer.be/contact/?lang=en"]}, {"institutionName": "Leibniz Institute of European History", "institutionAdditionalName": ["IEG", "Leibniz-Institut f\u00fcr Europ\u00e4ische Geschichte"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ieg-mainz.de/en/institute", "institutionIdentifier": ["ROR:059dyrr28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ieg-mainz.de/Contact------_site.site..ls_dir._nav.126_likecms.html#Contact"]}, {"institutionName": "Macedonian Centre for Intercultural Cooperation", "institutionAdditionalName": ["MCIC", "Qendra Maqedonase p\u00ebr Bashk\u00ebpunim Nd\u00ebrkomb\u00ebtar", "\u041c\u0426\u041c\u0421"], "institutionCountry": "MKD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mcms.mk/en.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["skt@mcms.mk"]}, {"institutionName": "Open University", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.open.ac.uk/", "institutionIdentifier": ["ROR:05mzfcs16"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Saints Cyril and Methodius University of Skopje", "institutionAdditionalName": ["Ss. Cyril and Methodius University in Skopje", "UKIM", "\u0423\u043d\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442 \u201e\u0421\u0432. \u041a\u0438\u0440\u0438\u043b \u0438 \u041c\u0435\u0442\u043e\u0434\u0438\u0458\u201c \u0432\u043e \u0421\u043a\u043e\u043f\u0458\u0435"], "institutionCountry": "MKD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.ukim.edu.mk/en_index.php", "institutionIdentifier": ["ROR:02wk2vx54"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Granada", "institutionAdditionalName": ["Universidad de Granada"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ugr.es/", "institutionIdentifier": ["ROR:04njjy449", "RRID:SCR_011648", "RRID:nlx_22932"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Helsinki", "institutionAdditionalName": ["Helsingin Yliopisto"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.helsinki.fi/en", "institutionIdentifier": ["ROR:040af2s02", "RRID:SCR_011653", "RRID:nlx_80279"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Tartu", "institutionAdditionalName": ["Tartu \u00dclikool", "UTartu"], "institutionCountry": "EST", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ut.ee/en", "institutionIdentifier": ["ROR:03z77qz90", "RRID:SCR_011710", "RRID:nlx_49099"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Warsaw", "institutionAdditionalName": ["Uniwersytet Warszawski"], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.uw.edu.pl/", "institutionIdentifier": ["ROR:039bjqg32", "RRID:SCR_011747", "RRID:nlx_152513"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://en.uw.edu.pl/contacts/"]}] [{"policyName": "About", "policyURL": "https://www.retopea.eu/s/start/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] closed [] [] {} [] [] unknown unknown [] [] {} 2021-03-22 2021-10-21 +r3d100013541 Harmonia Universalis fra [] https://harmoniauniversalis.univ-paris1.fr/ [] [] Harmonia universalis is a prosopographical database gathering data on the actors of the mesmerist movement at the end of the 18th century. The Harmonia Universalis database is designed as a space for exchange and sharing between researchers and enthusiasts. Any interested person can participate in its realization by contacting the administrators of the database. They will then be able to enter directly on line the information they wish to introduce. These will be integrated into the database after confirmation by the administrators. eng ["disciplinary"] {"size": "", "updatedp": ""} 2014 ["fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "110 Psychology", "scheme": "DFG"}, {"name": "11001 General, Biological and Mathematical Psychology", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20714 Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://www.ephe.psl.eu/actualites/harmonia-universalis [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Mesmer", "illness", "magnetism"] [{"institutionName": "Universit\u00e9 de Recherche Paris Sciences et Lettres, \u00c9cole Pratique des Hautes \u00c9tudes, Laboratoire d\u2019Excellence Hastec", "institutionAdditionalName": ["PSL, EPHE, Labex Hastec"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://labexhastec-psl.ephe.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Mentions l\u00e9gales", "policyURL": "https://www.ephe.psl.eu/mentions-legales"}, {"policyName": "Politique de confidentialit\u00e9", "policyURL": "https://www.ephe.psl.eu/politique-de-confidentialite"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ephe.psl.eu/mentions-legales"}] restricted [] [] no {"api": "https://harmoniauniversalis.univ-paris1.fr/api/info", "apiType": "REST"} [] [] yes unknown [] [] {} 2021-03-23 2021-03-25 +r3d100013542 National Microbiome Data Collaborative eng [{"additionalName": "NMDC", "additionalNameLanguage": "eng"}] https://microbiomedata.org/ ["biodbcore-001563"] ["https://microbiomedata.org/contact/", "support@microbiomedata.org"] The long-term vision of the NMDC is to support microbiome data exploration through a sustainable data discovery platform that promotes open science and shared-ownership across a broad and diverse community of researchers, funders, publishers, and societies. The NMDC is developing a distributed data infrastructure while engaging with the research community to enable multidisciplinary and FAIR microbiome data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://microbiomedata.org/about/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "data analysis", "data discovery", "microbe"] [{"institutionName": "Lawrence Berkeley National Laboratory", "institutionAdditionalName": ["Berkeley Lab", "LBL"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.lbl.gov/", "institutionIdentifier": ["ROR:02jbv0t02", "RRID:SCR_011336", "RRID:nlx_37075"], "responsibilityStartDate": "July 2019", "responsibilityEndDate": "TBD (currently Sept 2022)", "institutionContact": ["help@lbl.gov"]}, {"institutionName": "Los Alamos National Laboratory", "institutionAdditionalName": ["LANL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.lanl.gov/", "institutionIdentifier": ["ROR:01e41cf67", "RRID:SCR_011349", "RRID:nlx_71073"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.lanl.gov/resources/contacts.php"]}, {"institutionName": "National Science Foundation", "institutionAdditionalName": ["NSF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nsf.gov/", "institutionIdentifier": ["ROR:021nxhr62", "RRID:SCR_012938", "RRID:nlx_inv_1005118"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": ["ROR:01qz5mb56", "RRID:SCR_011475", "RRID:nlx_149160"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ornl.gov/project/contact-us"]}, {"institutionName": "Pacific Northwest National Laboratory", "institutionAdditionalName": ["PNNL"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.pnnl.gov/", "institutionIdentifier": ["ROR:05h992307", "RRID:SCR_012842", "RRID:nlx_152675"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.pnnl.gov/contacts"]}, {"institutionName": "United States Department of Agriculture", "institutionAdditionalName": ["USDA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.usda.gov/", "institutionIdentifier": ["ROR:01na82s61", "RRID:SCR_011486"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ask.usda.gov/s/contactsupport"]}, {"institutionName": "United States Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27", "RRID:SCR_012841", "RRID:nlx_86742"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Policy", "policyURL": "https://microbiomedata.org/nmdc-data-use-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://microbiomedata.org/nmdc-data-use-policy/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://microbiomedata.org/nmdc-data-use-policy/"}] restricted [] [] yes {} ["DOI"] https://microbiomedata.org/nmdc-data-use-policy/ [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Metadata standards: Genome Standards Consortium - https://gensc.org/mixs/ 2021-03-23 2021-11-17 +r3d100013544 ZFMK Biodiversity Data Center eng [{"additionalName": "ZFMK Natural History Collections - occurrence data", "additionalNameLanguage": "eng"}, {"additionalName": "ZFMK Datenzentrum", "additionalNameLanguage": "deu"}] https://www.zfmk.de/en/research/research-centres-and-groups/datacenter [] ["b.klasen@leibniz-zfmk.de", "b.quast@leibniz-zfmk.de", "p.grobe@leibniz-zfmk.de", "zfmkdatacenter@leibniz-zfmk.de"] The ZFMK Biodiversity Data Center is aimed at hosting, archiving, publishing and distributing data from biodiversity research and zoological collections. The Biodiversity Data Center handles and curates data on: - The specimens of the institutes collection, including provenance, distribution, habitat, and taxonomic data. - Observations, recordings and measurements from field research, monitoring and ecological inventories. - Morphological measurements, descriptions on specimens, as well as - Genetic barcode libraries, and - Genetic and molecular research data associated with specimens or environmental samples. For this purpose, suitable software and hardware systems are operated and the required infrastructure is further developed. Core components of the software architecture are: The DiversityWorkbench suite for managing all collection-related information. The Digital Asset Management system easyDB for multimedia assets. The description database Morph·D·Base for morphological data sets and character matrices. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.zfmk.de/en/research/research-centres-and-groups/datacenter [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "biodiversity informatics", "data curation", "gfbio", "natural history collections", "research data"] [{"institutionName": "Zoological Research Museum Alexander Koenig", "institutionAdditionalName": ["Forschungs Museum K\u00f6nig", "ZFMK"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.zfmk.de/en", "institutionIdentifier": ["ROR:00wz4b049", "https://www.grid.ac/institutes/grid.452935.c"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy for ZFMK Biodiversity Data Center", "policyURL": "https://datacenter.zfmk.de/wiki/datapolicy"}, {"policyName": "Terms of Use for ZFMK Biodiversity Data Center", "policyURL": "https://datacenter.zfmk.de/wiki/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] open [] ["other"] yes {"api": "https://id.zfmk.de/collection_ZFMK/", "apiType": "other"} ["DOI"] https://gfbio.biowikifarm.net/wiki/GFBio_Consensus_Document_for_citation_pattern_of_ABCD_datasets [] unknown yes [] [{"metadataStandardName": "ABCD - Access to Biological Collection Data", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2021-03-30 2021-04-02 +r3d100013546 ScholarWorks@UMassAmherst eng [{"additionalName": "ScholarWorks", "additionalNameLanguage": "eng"}, {"additionalName": "ScholarWorks@UMassAmherst Data Repository", "additionalNameLanguage": "eng"}] https://scholarworks.umass.edu/data/ [] ["ewjerome@umass.edu", "https://scholarworks.umass.edu/contact_us.html", "tpatwood@umass.edu"] ScholarWorks offers long-term storage and public access to the data and datasets produced by labs and researchers at UMass Amherst. eng ["institutional"] {"size": "", "updatedp": ""} 2018-10 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://scholarworks.umass.edu/about.html [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Massachusetts Amherst", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umass.edu/", "institutionIdentifier": ["ROR:0072zz521"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Massachusetts Amherst, Libraries", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.library.umass.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies for Data and Datasets", "policyURL": "https://scholarworks.umass.edu/data/policies.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://scholarworks.umass.edu/about.html"}] restricted [{"dataUploadLicenseName": "README files for Data and Datasets", "dataUploadLicenseURL": "https://scholarworks.umass.edu/data/guidelines.html"}] [] {"api": "https://scholarworks.umass.edu/do/oai/", "apiType": "OAI-PMH"} ["DOI"] [] yes unknown [] [] {"syndication": "https://scholarworks.umass.edu/recent.rss", "syndicationType": "RSS"} 2021-04-06 2021-04-09 +r3d100013547 LiceBase eng [] https://licebase.org/ ["FAIRsharing_doi:10.25504/FAIRsharing.c7w81a"] ["admin@licebase.org"] LiceBase is a database for sea lice genomics. LiceBase provides the genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, Blast functionality and access to related high-thoughput genomics data. eng ["disciplinary"] {"size": "25.917 genes", "updatedp": "2021-04-15"} 2014 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://licebase.org/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Atlantic salmon", "RNA Sequencing", "Sea lice", "gene expression", "genome annotation", "pathogen"] [{"institutionName": "ELIXIR Norway", "institutionAdditionalName": [], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.bioinfo.no/elixir", "institutionIdentifier": ["ROR:03zga2b32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sea Lice Research Centre", "institutionAdditionalName": ["SLRC"], "institutionCountry": "NOR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://slrc.w.uib.no/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy policy", "policyURL": "https://licebase.org/privacy_policy"}, {"policyName": "Terms of use", "policyURL": "https://licebase.org/terms_of_use"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}] ["other"] {} [] https://licebase.org/terms_of_use [] unknown unknown [] [] {} 2021-04-13 2021-04-17 +r3d100013548 CLARIN-LV repository eng [{"additionalName": "CLARIN Latvia repository", "additionalNameLanguage": "eng"}] https://repository.clarin.lv [] ["info@clarin.lv"] CLARIN-LV is a national node of Clarin ERIC (Common Language Resources and Technology Infrastructure). The mission of the repository is to ensure the availability and long­ term preservation of language resources. The data stored in the repository are being actively used and cited in scientific publications. eng ["disciplinary"] {"size": "", "updatedp": ""} 2020-03 ["eng", "lav"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://repository.clarin.lv/repository/xmlui/page/about#mission-statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Latvian", "computational linguistics", "corpora", "language resources", "lexicons", "natural language processing", "speech", "text"] [{"institutionName": "CLARIN Knowledge Centre forSystems andFrameworksforMorphologicallyRichLanguages", "institutionAdditionalName": ["SAFMORIL"], "institutionCountry": "EEC", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "http://hdl.handle.net/11372/DOC-156", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Latvia, Institute of Mathematics and Computer Science", "institutionAdditionalName": ["IMCS UL", "LUMII", "Latvijas Universit\u00e4tes, Matematikas un informatikas instituts"], "institutionCountry": "LVA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://lumii.lv/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["imcs@lumii.lv"]}] [{"policyName": "CLARIN-LV repository About and Policies", "policyURL": "https://repository.clarin.lv/repository/xmlui/page/about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://opensource.org/licenses/Apache-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MPL-2.0"}, {"dataLicenseName": "other", "dataLicenseURL": "https://repository.clarin.lv/repository/xmlui/page/licenses"}] restricted [{"dataUploadLicenseName": "Distribution License Agreement", "dataUploadLicenseURL": "https://repository.clarin.lv/repository/xmlui/page/contract"}] [] yes {} ["hdl"] https://repository.clarin.lv/repository/xmlui/page/cite [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-04-15 2021-04-21 +r3d100013549 MUSE-Wide eng [{"additionalName": "MUSE-Wide archive", "additionalNameLanguage": "eng"}, {"additionalName": "Multi Unit Spectroscopic Explorer Wide", "additionalNameLanguage": "eng"}] https://musewide.aip.de/ [] ["https://musewide.aip.de/contact/"] We present the MUSE-Wide survey, a blind, 3D spectroscopic survey in the CANDELS/GOODS-S and CANDELS/COSMOS regions. Each MUSE-Wide pointing has a depth of 1 hour and hence targets more extreme and more luminous objects over 10 times the area of the MUSE-Deep fields (Bacon et al. 2017). The legacy value of MUSE-Wide lies in providing "spectroscopy of everything" without photometric pre-selection. We describe the data reduction, post-processing and PSF characterization of the first 44 CANDELS/GOODS-S MUSE-Wide pointings released with this publication. Using a 3D matched filtering approach we detected 1,602 emission line sources, including 479 Lyman-α (Lya) emitting galaxies with redshifts 2.9≲z≲6.3. We cross-match the emission line sources to existing photometric catalogs, finding almost complete agreement in redshifts and stellar masses for our low redshift (z < 1.5) emitters. At high redshift, we only find ~55% matches to photometric catalogs. We encounter a higher outlier rate and a systematic offset of Δz≃0.2 when comparing our MUSE redshifts with photometric redshifts. Cross-matching the emission line sources with X-ray catalogs from the Chandra Deep Field South, we find 127 matches, including 10 objects with no prior spectroscopic identification. Stacking X-ray images centered on our Lya emitters yielded no signal; the Lya population is not dominated by even low luminosity AGN. A total of 9,205 photometrically selected objects from the CANDELS survey lie in the MUSE-Wide footprint, which we provide optimally extracted 1D spectra of. We are able to determine the spectroscopic redshift of 98% of 772 photometrically selected galaxies brighter than 24th F775W magnitude. All the data in the first data release - datacubes, catalogs, extracted spectra, maps - are available at the website. eng ["disciplinary"] {"size": "", "updatedp": ""} 2018-11-19 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "31101 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://musewide.aip.de/project/the-muse-wide-survey-survey-description-and-first-data-release/ [{"name": "Databases", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["3D-Spectroscopy", "CANDELS/COSMOS", "CANDELS/GOODS-S", "MUSE"] [{"institutionName": "Leibniz Institute for Astrophysics Potsdam", "institutionAdditionalName": ["AIP", "Leibniz-Institut f\u00fcr Astrophysik Potsdam"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://www.aip.de/en/institute/", "institutionIdentifier": ["ROR:03mrbr458"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "MUSE Consortium", "institutionAdditionalName": ["Multi-unit spectroscopic explorer Consortium"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://muse.univ-lyon1.fr/spip.php?article97", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Apache License 2.0", "databaseLicenseURL": "https://github.com/django-daiquiri/daiquiri/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://musewide.aip.de/query/"}] closed [] ["other"] yes {"api": "https://musewide.aip.de/oai/", "apiType": "OAI-PMH"} ["DOI"] https://musewide.aip.de [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "International Virtual Observatory Alliance Technical Specifications", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/international-virtual-observatory-alliance-technical-specifications"}] {} 2021-04-16 2021-04-21 +r3d100013550 Riga Stradins University dataverse eng [] https://dataverse.rsu.lv/dataverse/rsu [] ["https://dataverse.rsu.lv/dataverse/rsu#"] RSU data repository eng ["disciplinary"] {"size": "3 dataverses; 12 datasets", "updatedp": "2021-11-22"} ["eng", "lav"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.rsu.lv/en/research-department [{"name": "Raw data", "scheme": "parse"}] ["dataProvider"] ["immunology", "infectious diseases", "oncology", "public health"] [{"institutionName": "R\u012bga Stradi\u0146\u0161 University", "institutionAdditionalName": ["RSU"], "institutionCountry": "LVA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rsu.lv/en", "institutionIdentifier": ["ROR:03nadks56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Datu mekl\u0113\u0161ana", "policyURL": "https://www.rsu.lv/biblioteka/atbalsts-petniecibai"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] [] yes {} ["DOI"] https://guides.dataverse.org/en/4.18.1/user/find-use-data.html#cite-data ["ORCID"] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-04-16 2021-11-22 +r3d100013553 DNBLab eng [] https://www.dnb.de/librarylab [] ["lab@dnb.de", "metadatendienste@dnb.de"] The German National Library offers free access to its bibliographic data and several collections of digital objects. As the central access point for presenting, accessing and reusing digital resources, DNBLab allows users to access our data, object files and full texts. The access is available by download and through various interfaces. eng ["institutional"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.dnb.de/EN/Professionell/Services/WissenschaftundForschung/wissenschaftundforschung_node.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["German Exile Archive 1933-1945: Jewish periodicals in Nazi Germany", "German Exile Archive 1933\u20131945: Digital Exile Press \u2013 German-language Exile Journals 1933-1945", "German Exile Archive 1933\u20131945: Digital Exile Press \u2013 La Otra Alemania and Aufbau", "German Exile Archive 1933\u20131945: monographs in the German National Library\u2019s exile collections", "German Museum of Books and Writing: bookseller portraits", "German Music Archive: Free cabaret collection", "German Music Archive: Free digital sheet music", "German Music Archive: Free digitised phonograph cylinders", "German Music Archive: Free digitised shellac records", "German National Library: Art, Architecture, Bauhaus 1918\u20131933", "German National Library: German Revolution 1918/19", "German National Library: World War I collection 1914\u20131918", "German Union Catalogue of Serials ZDB", "Integrated Authority Files (GND)", "bibliographic data of DNB", "digitised tables of contents", "free online publications", "free online university publications"] [{"institutionName": "Deutsche Nationalbibliothek", "institutionAdditionalName": ["DNB", "German National Library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dnb.de/EN/Home/home_node.html", "institutionIdentifier": ["ROR:01n7gem85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Legal information and basic principles", "policyURL": "https://www.dnb.de/EN/Service/Rechtliches/rechtliches_node.html#doc314892bodyText1"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dnb.de/DE/Service/Rechtliches/vereinbarungUeberDieVervielfaeltigungKopiergeschuetzterWerke.html?nn=422950"}] closed [] [] {"api": "https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/Laufend/laufend_node.html#doc250714bodyText3", "apiType": "FTP"} ["URN"] ["other"] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} GitHub: https://github.com/deutsche-nationalbibliothek/dnblab 2021-04-23 2021-04-27 +r3d100013555 Finnish Biodiversity Information Facility eng [{"additionalName": "FinBIF", "additionalNameLanguage": "eng"}, {"additionalName": "Finlands Artdatacenter", "additionalNameLanguage": "swe"}, {"additionalName": "Suomen Lajitietokeskus", "additionalNameLanguage": "fin"}] https://laji.fi/en [] ["helpdesk@laji.fi", "https://laji.fi/en/about/1153"] FFinBIF belongs to the global biodiversity informatics landscape for the species information. The service missions include combining processes and services generating digital data with sourcing, collating, integrating and distributing existing digital data. FinBIF includes digitisation of collections, the development of data systems for collections Kotka (https://biss.pensoft.net/article/37179/) and observations (https://biss.pensoft.net/article/39150/), and the construction of a national DNA barcode reference library. Data types FinBIF manages mainly: verbal species descriptions (including drawings, pictures and other media types), master taxonomy, scientific collection specimens, opportunistic systematic and event-based observations, and DNA barcodes. Data flows are managed under a single IT architecture, services are delivered through the same on-line portal, collaboration coheres under a single umbrella concept, and development visions are presented under one brand. The portal Laji.fi is the gateway to the harmonised open data. FinBIF’s service portal is available in Finnish, Swedish and English. Restricted-use data go to authorities via a separate portal. Open data are also channelled to international systems (e.g. GBIF). eng ["disciplinary"] {"size": "38.867.692 obeservations; 40.771 species; 439 collections", "updatedp": "2021-04-26"} 2016-11-01 ["eng", "fin", "swe"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://laji.fi/en/about/2954 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["biodiversity informatics", "biodiversity information", "research infrastructure", "species information"] [{"institutionName": "Finnish Museum of Natural History", "institutionAdditionalName": ["Luomus", "Luonnontieteellinen keskusmuseo", "Naturhistoriska centralmuseet"], "institutionCountry": "FIN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.luomus.fi/en", "institutionIdentifier": ["ROR:03tcx6c30"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.luomus.fi/en/info"]}, {"institutionName": "Partners of LAJI.FI", "institutionAdditionalName": [], "institutionCountry": "FIN", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://laji.fi/en", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy of the Finnish Biodiversity Information Facility", "policyURL": "https://cms.laji.fi/wp-content/uploads/2020/01/Data-policy-of-the-Finnish-Biodiversity-Information-Facility_Final-2020.pdf"}, {"policyName": "Terms of data usage and publishing", "policyURL": "https://laji.fi/en/about/845"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://laji.fi/en/about/886"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://laji.fi/en/about/845"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://laji.fi/en/about/2986"}] open [{"dataUploadLicenseName": "Data publication", "dataUploadLicenseURL": "https://laji.fi/en/about/845"}] ["other"] yes {"api": "https://api.laji.fi/explorer/", "apiType": "REST"} ["PURL"] https://laji.fi/en/about/806c1 [] unknown yes [] [{"metadataStandardName": "Darwin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/darwin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}] {} FinBIF is a compilation of nature observations, museum collections and other scientific datasets from many sources. These data have been collected by academics, public authorities and citizen scientists. The Finnish Museum of Natural History is an independent research institution functioning under the University of Helsinki. 2021-04-26 2021-10-05 +r3d100013556 Jülich DATA eng [] https://data.fz-juelich.de/ [] ["forschungsdaten@fz-juelich.de"] Jülich DATA is a registry service to index all research data created at or in the context of Forschungszentrum Jülich. As an institutionial repository, it may also be used for data and software publications. eng ["institutional"] {"size": "23 dataverses; 29 datasets; 1170 files", "updatedp": "2021-04-26"} 2020-04-01 ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://fz-juelich.de/zb/DE/Leistungen/Forschungsdaten/Juelich_DATA/_node.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "multi-disciplinary", "multidisciplinary", "registry"] [{"institutionName": "Forschungszentrum J\u00fclich GmbH", "institutionAdditionalName": ["Research Center Juelich", "Research Centre Juelich"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.fz-juelich.de", "institutionIdentifier": ["ROR:02nv7yv05", "http://d-nb.info/gnd/5008462-8"], "responsibilityStartDate": "2020-04-01", "responsibilityEndDate": "", "institutionContact": ["https://fz-juelich.de/portal/EN/AboutUs/get-in-touch/_node.html"]}] [{"policyName": "Mode of Access", "policyURL": "https://data.fz-juelich.de/mode-access"}, {"policyName": "Privacy Policy", "policyURL": "https://data.fz-juelich.de/guide/juelich/privacy.html"}, {"policyName": "Terms of Use", "policyURL": "https://data.fz-juelich.de/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [{"dataUploadLicenseName": "CC-BY", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataUploadLicenseName": "Custom", "dataUploadLicenseURL": "https://data.fz-juelich.de/guide/user/dataset-management.html#custom-terms-of-use-for-datasets"}] ["DataVerse"] yes {"api": "https://data.fz-juelich.de/guide/api", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2021-04-26 2021-05-02 +r3d100013557 TU Data eng [] https://researchdata.tuwien.ac.at/ [] [] TU Data is an institutional repository of TU Wien to enable storing, sharing and publishing of digital objects, in particular research data. It facilitates the funders' requirements for open access to research data and the FAIR principles by making research output findable, accessible, interoperable and re-usable. This service is developed by the TU Wien Center for Research Data Management and hosted by TU.it. eng ["institutional"] {"size": "", "updatedp": ""} 2021-04-22 ["eng"] [] https://researchdata.tuwien.ac.at/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "interdisciplinary"] [{"institutionName": "TU Wien, Center for Research Data Management", "institutionAdditionalName": ["TU Wien, Zentrum f\u00fcr Forschungsdatenmanagement"], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tuwien.at/en/research/rti-support/research-data", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["research.data@tuwien.ac.at"]}, {"institutionName": "TU Wien, Information Technology Solutions", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.it.tuwien.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["help@it.tuwien.ac.at"]}] [{"policyName": "TU Data Policy", "policyURL": "https://researchdata.tuwien.ac.at/static/documents/TU_Data_Policy_20210322_en.pdf"}, {"policyName": "TU Data Terms of Use", "policyURL": "https://researchdata.tuwien.ac.at/static/documents/TU_Data_Terms_of_Use_20210322_en.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {} ["DOI"] https://datacite.org/cite-your-data.html ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-04-29 2021-06-02 +r3d100013559 CORA. Repositori de Dades de Recerca eng [] https://dataverse.csuc.cat/ ["FAIRsharing_doi:10.25504/FAIRsharing.av9fsp"] ["aco@csuc.cat"] The CORA. Repositori de dades de Recerca is a repository of open, curated and FAIR data that covers all academic disciplines. CORA. Repositori de dades de Recerca is a shared service provided by participating Catalan institutions (Universities and CERCA Research Centers). The repository is managed by the CSUC and technical infrastructure is based on the Dataverse application, developed by international developers and users led by Harvard University (https://dataverse.org). eng ["other"] {"size": "33 dataverses ; 26 datasets; 168 files", "updatedp": "2021-04-30"} 2020 ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["FAIR", "curated", "multi-institutional", "multidisciplinary"] [{"institutionName": "Centre de Recerca Matem\u00e0tica", "institutionAdditionalName": ["CRM"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.crm.cat/", "institutionIdentifier": ["ROR:020s51w82"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Centre de Recerca en Agrigen\u00f2mica", "institutionAdditionalName": ["CRAG", "Centre for Research in Agricultural Genomics"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cragenomica.es/", "institutionIdentifier": ["ROR:04tz2h245"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Consorci de Serveis Universitaris de Catalunya", "institutionAdditionalName": ["CSUC"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://csuc.cat/ca", "institutionIdentifier": ["ROR:007rty190"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fundaci\u00f3 Privada Institut de Recerca de la Sida-Caixa", "institutionAdditionalName": ["IrsiCaixa"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irsicaixa.es/ca", "institutionIdentifier": ["ROR:001synm23"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut Barcelona d'Estudis Internacionals", "institutionAdditionalName": ["IBEI"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ibei.org/en", "institutionIdentifier": ["ROR:05rke5d69"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut Catal\u00e0 d'Arqueologia Cl\u00e0ssica", "institutionAdditionalName": ["ICAC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.icac.cat/", "institutionIdentifier": ["ROR:04nwrc387"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut d'Investigaci\u00f3 Biom\u00e8dica de Bellvitge", "institutionAdditionalName": ["IDIBELL"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://idibell.cat/", "institutionIdentifier": ["ROR:0008xqs48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut d'Investigaci\u00f3 Biom\u00e8dica de Girona Dr. Josep Trueta", "institutionAdditionalName": ["IDIBGI"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://idibgi.org/", "institutionIdentifier": ["ROR:020yb3m85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut d'Investigaci\u00f3 contra la Leucemia Josep Carreras", "institutionAdditionalName": ["IJC", "Instituto de Investigaci\u00f3n contra la Leucemia Josep Carreras", "Josep Carreras Leukaemia Research Institute"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.carrerasresearch.org/ca", "institutionIdentifier": ["ROR:00btzwk36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de F\u00edsica d'Altes Energies", "institutionAdditionalName": ["IFAE"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ifae.es/", "institutionIdentifier": ["ROR:01sdrjx85"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de Recerca i Tecnologia Agroaliment\u00e0ries", "institutionAdditionalName": ["IRTA"], "institutionCountry": "ESP", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.irta.cat/ca/", "institutionIdentifier": ["ROR:012zh9h13"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Aut\u00f2noma de Barcelona", "institutionAdditionalName": ["UAB"], "institutionCountry": "ESP", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.uab.cat/", "institutionIdentifier": ["ROR:052g8jq94"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Internacional de Catalunya", "institutionAdditionalName": ["UIC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uic.es/ca", "institutionIdentifier": ["ROR:00tse2b39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Oberta de Catalunya", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uoc.edu/portal/en/index.html", "institutionIdentifier": ["ROR:01f5wp925"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Polit\u00e8cnica de Catalunya", "institutionAdditionalName": ["UPC"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upc.edu/ca", "institutionIdentifier": ["ROR:03mb6wj31"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Pompeu Fabra", "institutionAdditionalName": ["UPF"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.upf.edu/", "institutionIdentifier": ["ROR:04n0g0b29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Ramon Llull", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.url.edu/", "institutionIdentifier": ["ROR:04p9k2z50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat Rovira i Virgili", "institutionAdditionalName": [], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.urv.cat/en/", "institutionIdentifier": ["ROR:00g5sqv46"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat de Barcelona", "institutionAdditionalName": ["UB"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.edu/web/portal/ca/", "institutionIdentifier": ["ROR:021018s57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat de Girona", "institutionAdditionalName": ["UdG"], "institutionCountry": "ESP", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.udg.edu/", "institutionIdentifier": ["ROR:01xdxns91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universitat de Lleida", "institutionAdditionalName": ["UDL"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.udl.es/", "institutionIdentifier": ["ROR:050c3cw24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Vall d\u2019Hebron Institut de Recerca", "institutionAdditionalName": ["VHIR"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://en.vhir.org/", "institutionIdentifier": ["ROR:01d5vx451"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Drets i llic\u00e8ncies per a dades de recerca", "policyURL": "https://confluence.csuc.cat/pages/viewpage.action?pageId=97226940"}, {"policyName": "Recomanacions de formats", "policyURL": "https://confluence.csuc.cat/display/RDM/Recomanacions+de+formats"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://confluence.csuc.cat/pages/viewpage.action?pageId=97226940"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/summary/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://confluence.csuc.cat/pages/viewpage.action?pageId=97226940"}] restricted [] ["DataVerse"] yes {"api": "https://dataverse.csuc.cat/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-04-30 2021-06-11 +r3d100013562 Movebank eng [] https://www.movebank.org/ [] ["support@movebank.org"] Movebank is an online platform that helps researchers and wildlife managers worldwide manage, share, analyze and archive animal movement data. Movebank's database is designed for locations of individual animals over time, commonly referred to as tracking data, and measurements collected by other sensors attached to animals, as well as information about related animals, tags and deployments. The platform supports public and controlled-access sharing, and offers services for working with data from initial collection through publication, discovery and re-use. eng ["disciplinary"] {"size": "2.4 billion locations; 3.1 billion other sensor records; 5.915 studies; 1.025 taxa", "updatedp": "2021-05-05"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.movebank.org/cms/movebank-content/about-movebank#goals [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["animal tracking", "biodiversity"] [{"institutionName": "Max Planck Institute of Animal Behavior", "institutionAdditionalName": ["Max-Planck-Institut f\u00fcr Verhaltensbiologie"], "institutionCountry": "DEU", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ab.mpg.de/", "institutionIdentifier": ["ROR:026stee22"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Konstanz", "institutionAdditionalName": ["Universit\u00e4t Konstanz"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uni-konstanz.de/en/", "institutionIdentifier": ["ROR:0546hnb39"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data policy", "policyURL": "https://www.movebank.org/cms/movebank-content/data-policy"}, {"policyName": "General Movebank Terms of Use", "policyURL": "https://www.movebank.org/cms/movebank-content/general-movebank-terms-of-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] [] {"api": "https://www.movebank.org/movebank/service/direct-read", "apiType": "REST"} [] https://www.movebank.org/cms/movebank-content/citation-guidelines [] yes yes [] [] {} GitHub: https://github.com/movebank 2021-05-04 2021-11-08 +r3d100013563 Marine Scotland Data eng [] https://data.marine.gov.scot/ [] ["marinescotland@gov.scot"] The data publishing portal of Marine Scotland, the directorate of the Scottish Government responsible for the management of Scotland's seas. eng ["disciplinary"] {"size": "283 datasets", "updatedp": "2021-05-10"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.marine.gov.scot/about [{"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aquaculture", "fisheries", "freshwater", "marine planning"] [{"institutionName": "Scottish Government", "institutionAdditionalName": ["Riaghalts na h-Alba"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.gov.scot", "institutionIdentifier": ["ROR:04v2xmd71"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Scottish Government, Marine Scotland Directorate", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gov.scot/about/how-government-is-run/directorates/marine-scotland/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://www.gov.scot/marine-and-fisheries/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "OGL", "dataLicenseURL": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] restricted [] ["other"] yes {"api": "https://dkan.readthedocs.io/en/latest/apis/rest-api.html", "apiType": "REST"} ["DOI"] https://data.marine.gov.scot/about [] unknown unknown [] [{"metadataStandardName": "DCAT - Data Catalog Vocabulary", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dcat-data-catalog-vocabulary"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {"syndication": "https://blogs.gov.scot/marine-scotland/feed/", "syndicationType": "RSS"} 2021-05-05 2021-06-02 +r3d100013564 JACQ - Virtual Herbaria eng [] https://www.jacq.org [] ["info@jacq.org"] The JACQ System is a combined metadata and digital images platform and repository that contains data from botanical object collections. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["serviceProvider"] ["herbarium", "specimen"] [{"institutionName": "Naturhistorisches Museum Wien", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nhm-wien.ac.at/", "institutionIdentifier": ["ROR:01tv5y993"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Univerist\u00e4t Wien", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.univie.ac.at/", "institutionIdentifier": ["ROR:03prydq77"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "\u00d6sterrreichische Akademie der Wissenschaften", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.oeaw.ac.at/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Privacy notice", "policyURL": "https://www.jacq.org/imprint_citation_privacy.htm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["MySQL"] yes {} ["other"] http://jacq.org/imprint_citation_privacy.htm ["ORCID"] unknown yes [] [] {} 2021-05-05 2021-06-02 +r3d100013565 TU Graz Repository eng [] https://repository.tugraz.at/ [] ["repository-support@tugraz.at"] An institutional repository at Graz University of Technology to enable storing, sharing and publishing research data, publications and open educational resources. It provides open access services and follows the FAIR principles. eng ["institutional"] {"size": "", "updatedp": ""} 2021-04-01 ["deu", "eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://repository.tugraz.at/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "oceanograhy", "open educational resources", "satellite data", "troposphere"] [{"institutionName": "Graz University of Technology", "institutionAdditionalName": [], "institutionCountry": "AUT", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.tugraz.at", "institutionIdentifier": ["ROR:00d7xrm67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["it-support@tugraz.at", "rdmteam@tugraz.at", "ub-support@tugraz.at"]}] [{"policyName": "TU Graz Framework Policy for RDM", "policyURL": "https://www.tugraz.at/sites/rdm/policies/tu-graz-framework-policy-for-rdm/"}, {"policyName": "TU Graz Repository Terms and Conditions", "policyURL": "https://repository.tugraz.at/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [] ["other"] yes {"api": "https://repository.tugraz.at/oai2d", "apiType": "OAI-PMH"} ["DOI"] ["ORCID"] yes no [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-05-06 2021-06-02 +r3d100013567 Digitales Deutsches Frauenarchiv deu [{"additionalName": "DDF", "additionalNameLanguage": "eng"}] https://www.digitales-deutsches-frauenarchiv.de [] ["kontakt@ida-dachverband.de"] The Digital German Women's Archive (DDF) is an interactive specialist portal on the history of women's movements in Germany. It invites you to get to know topics, actors and networks of the women's movements from two centuries. For this purpose, the lesbian / women's archives, libraries and documentation centers, which are linked in the i.d.a. umbrella organization, present selected digital copies and further information from their holdings. deu ["disciplinary"] {"size": "579595 records, 14698 digital copies", "updatedp": "2021-05-17"} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "10203 Modern and Current History", "scheme": "DFG"}, {"name": "109 Education Sciences", "scheme": "DFG"}, {"name": "10903 Research on Socialization and Educational Institutions and Professions", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.digitales-deutsches-frauenarchiv.de/das-ddf [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["emancipation", "feminism", "violence against women", "women and media", "women and art", "women and economy", "women and education", "women and politics, law and society", "women and work", "women body & sexuality", "women knowledge", "women's suffrage"] [{"institutionName": "Bundesministerium f\u00fcr Familie, Senioren, Frauen und Jugend", "institutionAdditionalName": ["BMFSFJ", "Federal Ministry for Family Affairs, Senior Citizens, Women and Youth"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.bmfsfj.de/bmfsfj", "institutionIdentifier": ["ROR:056ja1h98"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dachverband deutschsprachiger Frauen / Lesbenarchive, -bibliotheken und -dokumentationsstellen", "institutionAdditionalName": ["ida"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ida-dachverband.de/home/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.digitales-deutsches-frauenarchiv.de/ueber-uns/nutzungsbedingungen"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.digitales-deutsches-frauenarchiv.de/ueber-uns/nutzungsbedingungen"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.digitales-deutsches-frauenarchiv.de/ueber-uns/nutzungsbedingungen"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://www.digitales-deutsches-frauenarchiv.de/ueber-uns/nutzungsbedingungen"}] closed [] [] {} [] [] yes unknown [] [] {"syndication": "https://www.digitales-deutsches-frauenarchiv.de/rss.xml", "syndicationType": "RSS"} 2021-05-11 2021-06-02 +r3d100013569 Social Data Repository (RDS) eng [{"additionalName": "Repozytorium Danych Spo\u0142ecznych (RDS)", "additionalNameLanguage": "pol"}] https://rds.icm.edu.pl/ [] ["rds@icm.edu.pl"] The purpose of the Social Data Repository (RDS) is to make available in the Internet social data, consisting of data sets and accompanying technical or methodological documentation. The use of Repository is open for everyone. The repository is operated by the University of Warsaw (Interdisciplinary Centre for Mathematical and Computational Modelling, University of Warsaw). Individual collections in the Social Data Repository are subject to editorial review by University of Warsaw or collection administrators, under separate rules for a given collection. In particular, the supervising editor for the collection “Archive of Quantitative Social Data” is the Team of the Archive of Quantitative Social Data. eng ["disciplinary"] {"size": "4 dataverse; 80 datasets; 243 files", "updatedp": "2021-05-14"} 2020 ["eng", "pol"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://drodb.icm.edu.pl/repozytorium-danych-spolecznych-rds/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["family", "government", "political institutions", "political parties", "religion"] [{"institutionName": "Polish Academy of Sciences, Institute of Philosophy and Sociology", "institutionAdditionalName": ["Instytut Filozofii i Socjologii Polskiej Akademii Nauk"], "institutionCountry": "POL", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://ifispan.pl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of Warsaw, Interdisciplinary Centre for Mathematical and Computational Modelling", "institutionAdditionalName": ["Interdyscyplinarne Centrum Modelowania Matematycznego i Komputerowego Uniwersytetu Warszawskiego"], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://icm.edu.pl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://icm.edu.pl/en/about-icm/contact/", "info@icm.edu.pl"]}, {"institutionName": "University of Warsaw, Robert Zajonc Institute for Social Studies", "institutionAdditionalName": ["Uniwersytet Warszawski, Instytut Studi\u00f3w Spo\u0142ecznych im. Profesora Roberta Zajonca"], "institutionCountry": "POL", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "http://iss.uw.edu.pl/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://rds.icm.edu.pl/terms-of-use-page.xhtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}, {"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] ["DataVerse"] yes {"api": "https://rds.icm.edu.pl/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ISNI", "ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-05-13 2021-06-02 +r3d100013570 MD-SOAR eng [{"additionalName": "Maryland Shared Open Access Repository", "additionalNameLanguage": "eng"}] https://mdsoar.org/ [] ["usmai-accessibility@umd.edu"] MD-SOAR is a shared digital repository platform for eleven colleges and universities in Maryland. It is currently funded by the University System of Maryland and Affiliated Institutions (USMAI) Library Consortium (usmai.org) and other participating partner institutions. MD-SOAR is jointly governed by all participating libraries, who have agreed to share policies and practices that are necessary and appropriate for the shared platform. Within this broad framework, each library provides customized repository services and collections that meet local institutional needs. Please follow the links below to learn more about each library's repository services and collections. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://usmai.org/portal/display/MAIN/About [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University System of Maryland & Affiliated Institutions", "institutionAdditionalName": ["USMAI"], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://usmai.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["usmai-accessibility@umd.edu"]}] [{"policyName": "General Information for Data Subjects About the Collection of Personal Data from Communication Partners and Contacts", "policyURL": "https://www.dspace.com/en/pub/home/privacypolicy/data-policy_contacts.cfm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["DSpace"] {} ["hdl"] [] unknown unknown [] [] {"syndication": "https://mdsoar.org/feed/atom_1.0/site", "syndicationType": "ATOM"} 2021-05-13 2021-06-02 +r3d100013571 NF Data Portal eng [] https://nf.synapse.org ["RRID:SCR_021683"] ["nf-osi@sagebionetworks.org"] The NF Data Portal is designed to help openly explore and share NF datasets, analysis tools, resources, and publications related to neurofibromatosis. Anyone can join the NF Open Science Initiative (NF-OSI) to participate! We welcome contributions from anyone in the neurofibromatosis and schwannomatosis research community, such as original datasets generated by the community or analyses of data from the NF Data Portal. eng ["disciplinary"] {"size": "108 studies; 10 datasets; 12.876 files; 18 tools", "updatedp": "2021-09-08"} 2018-10 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://nf.synapse.org/About [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["neurofibromatosis", "schwannomatosis"] [{"institutionName": "Children's Tumor Foundation", "institutionAdditionalName": ["CTF"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ctf.org/", "institutionIdentifier": ["ROR:01hx92781"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Neurofibromatosis Therapeutic Acceleration Program", "institutionAdditionalName": ["NTAP"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.n-tap.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Sage Bionetworks", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://sagebionetworks.org/", "institutionIdentifier": ["ROR:049ncjx51"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Governance Overview", "policyURL": "https://user-guides.synapse.org/articles/governance.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[\"registration\"]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/"}] restricted [] [] yes {"api": "https://docs.synapse.org/rest/", "apiType": "REST"} [] https://nf.synapse.org/About ["ORCID"] yes yes [] [] {} GitHub: https://github.com/nf-osi/nf-osi.github.io 2021-05-13 2021-09-09 +r3d100013574 Macromolecular Xtallography Raw Data Repository eng [{"additionalName": "MX-RDR", "additionalNameLanguage": "eng"}] https://mxrdr.icm.edu.pl/ [] ["mxrdr@icm.edu.pl"] Macromolecular Xtallography Raw Data Repository (MX-RDR) is a domain-specific digital repository of crystallographic open research data. The use of Repository is open for everyone. eng ["disciplinary"] {"size": "16 dataverses; 284 datasets; 1.086 files", "updatedp": "2021-05-17"} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://drodb.icm.edu.pl/macromolecular-xtallography-raw-data-repository-mx-rdr/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["crystal diffraction"] [{"institutionName": "The University of Warsaw, Interdisciplinary Centre for Mathematical and Computational Modelling,", "institutionAdditionalName": ["ICM UW", "Interdyscyplinarne Centrum Modelowania Matematycznego i Komputerowego Uniwersytetu Warszawskiego"], "institutionCountry": "POL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://icm.edu.pl/", "institutionIdentifier": ["ROR:039bjqg32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://icm.edu.pl/en/about-icm/contact/", "info@icm.edu.pl"]}, {"institutionName": "Uniwersytet im. Adama Mickiewicza w Poznaniu", "institutionAdditionalName": [], "institutionCountry": "POL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://amu.edu.pl/", "institutionIdentifier": ["ROR:04g6bbq64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://mxrdr.icm.edu.pl/terms-of-use-page.xhtml"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] restricted [{"dataUploadLicenseName": "CC-BY", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}, {"dataUploadLicenseName": "CC0", "dataUploadLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}] ["DataVerse"] yes {"api": "https://mxrdr.icm.edu.pl/oai", "apiType": "OAI-PMH"} ["DOI"] https://dataverse.org/best-practices/data-citation ["ISNI", "ORCID", "other"] yes yes [] [{"metadataStandardName": "CIF - Crystallographic Information Framework", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cif-crystallographic-information-framework"}, {"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-05-17 2021-06-02 +r3d100013575 OPAL eng [{"additionalName": "Open At La Trobe", "additionalNameLanguage": "eng"}] https://opal.latrobe.edu.au/Open_Data [] ["repository@latrobe.edu.au", "researchpublications@latrobe.edu.au"] Open At LaTrobe (OPAL) is La Trobe University’s official repository for Open Access materials generated by academic and professional staff and HDR students. These include publications and other research outputs, theses, open data, and educational resources. OPAL enables the storage, sharing, and selective publication of files and the assignment of a persistent DOI. Users maintain control over who can see their private files and all uploads are stored in La Trobe University approved storage. Access is via La Trobe University login credentials. La Trobe produces a wide range of useful datasets including supplementary data associated with publications and stand-alone datasets and collections. eng ["institutional"] {"size": "4.000 records", "updatedp": "2021-05-19"} 2020-10-22 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://latrobe.libguides.com/OPAL [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "La Trobe University", "institutionAdditionalName": [], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://library.latrobe.edu.au/", "institutionIdentifier": ["ROR:01rxfrp27"], "responsibilityStartDate": "2020-10-22", "responsibilityEndDate": "", "institutionContact": ["researchpublications@latrobe.edu.au"]}] [{"policyName": "La Trobe University Research Data Management Policy", "policyURL": "https://policies.latrobe.edu.au/document/view.php?id=106"}, {"policyName": "Open Access Policy", "policyURL": "https://policies.latrobe.edu.au/document/view.php?id=105"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {"api": "https://knowledge.figshare.com/app-category/figshare-tools", "apiType": "FTP"} ["DOI"] https://help.figshare.com/article/how-to-share-cite-or-embed-your-data ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://opal.latrobe.edu.au/rss/portal_group/latrobe/Open_Data", "syndicationType": "RSS"} 2021-05-18 2021-06-02 +r3d100013576 Digital Archive of the Archaeological Map of the Czech Republic eng [{"additionalName": "AMCR Digital Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Digit\u00e1ln\u00ed archiv AM\u010cR", "additionalNameLanguage": "ces"}, {"additionalName": "Digit\u00e1ln\u00ed archiv Archeologick\u00e9 mapy \u010cesk\u00e9 republiky", "additionalNameLanguage": "ces"}] https://digiarchiv.aiscr.cz/ [] ["amcr@arup.cas.cz"] The Archaeological Map of the Czech Republic (AMCR) is an information system for the collection, management and presentation of data on archaeological research in the territory of the Czech Republic and for the knowledge of the past of Bohemia, Moravia and Silesia. The data included describe tens of thousands of archaeological investigations and their concrete findings. They include information about research leaders, when the research was conducted, its location, what findings and from what period the research found. A special type of record is data on archaeological sites, detected by both surface and remote sensing. Most records are linked to digital document storage and bibliographic catalogue. eng ["disciplinary"] {"size": "", "updatedp": ""} 2017 ["ces", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://digitalhumanities.cz/en/db/archaeological-map-of-the-czech-republic/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["LTP", "archaeology", "digital archives"] [{"institutionName": "Archaeological Information System of the Czech Republic", "institutionAdditionalName": ["AIS CR", "Archeologick\u00fd informa\u010dn\u00ed syst\u00e9m \u010cesk\u00e9 republiky"], "institutionCountry": "CZE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aiscr.cz/", "institutionIdentifier": [], "responsibilityStartDate": "2016", "responsibilityEndDate": "", "institutionContact": ["info@amapa.cz"]}, {"institutionName": "Czech Academy of Sciences, Institute of Archaeology, Brno", "institutionAdditionalName": ["Institute of Archaeology CAS, Brno"], "institutionCountry": "CZE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://arub.avcr.cz/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["amcr@arub.cz"]}, {"institutionName": "Czech Academy of Sciences, Institute of Archaeology, Prague", "institutionAdditionalName": ["Institute of Archaeology CAS, Prague"], "institutionCountry": "CZE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.arup.cas.cz/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["amcr@arup.cas.cz"]}] [{"policyName": "License and data re-use", "policyURL": "https://www.aiscr.cz/en/#about"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://digiarchiv.aiscr.cz/home"}] restricted [{"dataUploadLicenseName": "CC-BY-NC 4.0", "dataUploadLicenseURL": "https://creativecommons.org/licenses/by-nc/4.0/"}] [] yes {"api": "https://api.aiscr.cz/dapro/oai", "apiType": "OAI-PMH"} ["other"] https://www.aiscr.cz/en/#about [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} The Digital Archive is part of the Archaeological Information System of the Czech Republic (AIS CR) https://www.aiscr.cz/en/ 2021-05-20 2021-06-02 +r3d100013577 Diamond data catalogue eng [{"additionalName": "Diamond Light Source data catalogue", "additionalNameLanguage": "eng"}, {"additionalName": "ICAT", "additionalNameLanguage": "eng"}] https://icat.diamond.ac.uk [] ["ITSupport@diamond.ac.uk"] Diamond Light Source is the UK’s national synchrotron, located at the Harwell Science and Innovation Campus in Oxfordshire. It works like a giant microscope, harnessing the power of electrons to produce bright light that scientists can use to study anything from fossils to jet engines to viruses and vaccines. ICAT allows you to browse and download archived data from instrument experiments at Diamond Light Source. eng ["disciplinary"] {"size": "28.6 Petabytes; 3260 million individual files", "updatedp": "2021-05-26"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.diamond.ac.uk/Home/About.html# [{"name": "Archived data", "scheme": "parse"}] ["dataProvider"] ["synchrotron"] [{"institutionName": "Diamond Light Source Ltd.", "institutionAdditionalName": ["Diamond"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.diamond.ac.uk/Home.html", "institutionIdentifier": ["ROR:05etxs293"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Science and Technology Facilities Council", "institutionAdditionalName": ["STFC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.stfc.ac.uk/", "institutionIdentifier": ["ROR:057g20z61"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.wellcome.ac.uk/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acceptable Use Policy", "policyURL": "https://www.diamond.ac.uk/Users/Policy-Documents/Policies/Acceptable-Use-Pol.html"}, {"policyName": "Diamond Light Source Data Restore Help", "policyURL": "https://icat.diamond.ac.uk/#/diamond-help"}, {"policyName": "Experimental Data Management", "policyURL": "https://www.diamond.ac.uk/Users/Policy-Documents/Policies/Experimental-Data-Management-Pol.html"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\", \"registration\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] closed [] ["other"] {} [] [] unknown yes [] [] {} Some development of this portal has been supported by the project ExPaNDS under Grant Agreement 857641 from the EU Framework Programme for Research and Innovation HORIZON 2020. 2021-05-24 2021-06-27 +r3d100013578 European Mouse Mutant Archive eng [{"additionalName": "EMMA", "additionalNameLanguage": "eng"}] http://100013578 ["FAIRsharing_doi:10.25504/FAIRsharing.g2fjt2", "RRID:SCR_006136", "RRID:nlx_151625"] ["emma@infrafrontier.eu", "https://www.infrafrontier.eu/infrafrontier-research-infrastructure/profile/contacts"] The European Mouse Mutant Archive – EMMA is a non-profit repository for the collection, archiving (via cryopreservation) and distribution of relevant mutant mouse strains essential for basic biomedical research. The laboratory mouse is the most important mammalian model for studying genetic and multi-factorial diseases in man. The comprehensive physical and data resources of EMMA support basic biomedical and preclinical research, and the available research tools and mouse models of human disease offer the opportunity to develop a better understanding of molecular disease mechanisms and may provide the foundation for the development of diagnostic, prognostic and therapeutic strategies. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.infrafrontier.eu/infrafrontier-research-infrastructure/profile/vision-and-mission [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["cell", "mouse", "mutant strain", "mutants"] [{"institutionName": "Helmholtz Zentrum M\u00fcnchen, Deutsches Forschungszentrum f\u00fcr Gesundheit und Umwelt (GmbH)", "institutionAdditionalName": ["HMGU", "Helmholtz Center Munich, German Research Center for Environmental Health"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.helmholtz-munich.de/helmholtz-zentrum-muenchen/index.html", "institutionIdentifier": ["ROR:00cfam450"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@infrafrontier.eu"]}, {"institutionName": "INFRAFRONTIER GmbH", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.infrafrontier.eu/", "institutionIdentifier": ["ROR:00vawn972"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@infrafrontier.eu"]}] [{"policyName": "Legal issues", "policyURL": "https://www.infrafrontier.eu/procedures/legal-issues"}, {"policyName": "Policy documents", "policyURL": "https://www.infrafrontier.eu/knowledgebase/policy-documents"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.infrafrontier.eu/procedures/legal-issues/emma-repository-conditions-and-mtas"}] restricted [] [] {} ["none"] https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4383977/ [] unknown yes [] [] {} The INFRAFRONTIER GmbH was created to coordinate the transnational acitivities of the INFRAFRONTIER Research Infrastructure. It is seated in Germany at the Helmholtz Zentrum München. International collaborations and projects: https://www.infrafrontier.eu/infrafrontier-research-infrastructure/projects 2021-05-28 2021-12-15 +r3d100013579 Linguistic Linked Open Data eng [{"additionalName": "LLOD", "additionalNameLanguage": "eng"}] https://linguistic-lod.org/ [] ["john@mccr.ae"] The Linguistic Linked Open Data cloud is a collaborative effort pursued by several members of the OWLG, with the general goal to develop a Linked Open Data (sub-)cloud of linguistic resources. The diagram is inspired by the Linking Open Data cloud diagram by Richard Cyganiak and Anja Jentzsch, and the resources included are chosen according to the same criteria of openness, availability and interlinking. Although not all resources are already available, we actively work towards this goal, and subsequent versions of this diagram will be restricted to openly available resources. Until that point, please refer to the diagram explicitly as a "draft". eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://linguistic-lod.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["corpora", "dictionaries", "knowledge bases", "lexicons", "linguistic data categories", "linguistic resource metadata", "terminologies", "thesauri", "typological databases"] [{"institutionName": "Insight SFI Research Centre for Data Analytics", "institutionAdditionalName": ["Insight Science Foundation Ireland Research Centre for Data Analytics"], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.insight-centre.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National University of Ireland, Galway", "institutionAdditionalName": ["NUI Galway", "Ollscoil na h\u00c9ireann"], "institutionCountry": "IRL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nuigalway.ie/", "institutionIdentifier": ["ROR:03bea9k73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] {"api": "http://omwn.linguistic-lod.org/", "apiType": "SPARQL"} [] [] unknown unknown [] [] {} 2021-05-28 2022-01-06 +r3d100013580 Brandeis ScholarWorks eng [] https://scholarworks.brandeis.edu/ [] ["librarypublishing@brandeis.edu"] ScholarWorks preserves and provides access to the research and creative scholarship created by Brandeis faculty, students, and staff. The research papers, theses, dissertations, books, reports, interviews, data and multimedia here represent Brandeis’s rich intellectual and cultural community. eng ["institutional"] {"size": "2 datasets", "updatedp": "2021-06-14"} 2020-04-06 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.brandeis.edu/library/research/data/data-management.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Brandeis University, Library", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.brandeis.edu/library/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Accessibility Statement", "policyURL": "https://www.brandeis.edu/about/accessibility-statement.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] no {} [] [] unknown unknown [] [] {} 2021-05-28 2021-06-17 +r3d100013582 METIS eng [{"additionalName": "FMI\u2019s Research Data Repository", "additionalNameLanguage": "eng"}, {"additionalName": "Finnish Meteorological Institute's Research Data Repository", "additionalNameLanguage": "eng"}] https://fmi.b2share.csc.fi [] ["b2share-tuki@fmi.fi"] Finnish Meteorological Institute (FMI) research data repository METIS is provided by EUDAT and enables the institute data to be preserved, discovered, and accessed. FMI covers a wide range of research on weather, sea, climate and space. According to the FMI's Research Data policy , publicly funded research data must be made available to the widest possible audience (under CC BY license, at the minimum), as the best way to maximize the data impact but also to do justice to all the hard labor put into collecting, cleaning, and analyzing the data. eng ["institutional"] {"size": "5 records", "updatedp": "2021-06-07"} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["atmospheric sciences", "environmental sciences", "geophysical sciences", "meteorology"] [{"institutionName": "Finnish Meteorological Institute", "institutionAdditionalName": ["FMI", "Meteorologiska Institutet Ilmatieteen Laitos"], "institutionCountry": "FIN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.ilmatieteenlaitos.fi/", "institutionIdentifier": ["ROR:05hppb561"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Research Data Policy", "policyURL": "https://en.ilmatieteenlaitos.fi/researchdatapolicy"}, {"policyName": "Terms of Use", "policyURL": "https://agora.fmi.fi/display/B2SHARE/Terms+Of+Use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {"api": "https://fmi.b2share.csc.fi/api/oai2d", "apiType": "OAI-PMH"} ["DOI"] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2021-06-04 2021-07-29 +r3d100013583 Endangered Languages Archive eng [{"additionalName": "ELAR", "additionalNameLanguage": "eng"}] https://www.elararchive.org/ [] ["elararchive@soas.ac.uk", "https://www.elararchive.org/about-us/contact-us/"] The Endangered Languages Archive (ELAR) is a digital repository for preserving multimedia collections of endangered languages from all over the world, making them available for future generations. In ELAR’s collections you can find recordings of every-day conversations, instructions on how to build fish traps or boats, explanations of kinship systems and the use of medicinal plants, and learn about art forms like string figures and sand drawings. ELAR’s collections are unique records of local knowledge systems encoded in their languages, described by the holders of the knowledge themselves. eng ["disciplinary"] {"size": "462.048 results", "updatedp": "2021-06-17"} 2002 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "10403 Typology, Non-European Languages, Historical Linguistics", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.elararchive.org/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}] ["dataProvider"] ["dictionary", "endangered languages", "linguistic diversity", "transcription", "unwritten languages"] [{"institutionName": "Arcadia", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.arcadiafund.org.uk/", "institutionIdentifier": ["ROR:051z6e826"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["info@arcadiafund.org.uk"]}, {"institutionName": "CLARIN Knowledge-Centre for linguistic diversity and language documentation", "institutionAdditionalName": ["CKLD", "CLARIN K-Centre"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Endangered Languages Archive", "institutionAdditionalName": ["ELAR"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.elararchive.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "SOAS University of London", "institutionAdditionalName": ["SOAS"], "institutionCountry": "GBR", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.soas.ac.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Access request", "policyURL": "https://elararchive.org/requestaccess/"}, {"policyName": "Using ELAR", "policyURL": "https://www.elararchive.org/how-to-use/"}, {"policyName": "terms of use and privacy policy", "policyURL": "https://www.elararchive.org/legal/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.elararchive.org/legal/"}] restricted [] ["other"] {} ["hdl"] [] unknown unknown [] [] {} ELAR is the home archive for projects funded through the Endangered Languages Documentation Programme (ELDP) https://www.eldp.net/. CLARIN certificate C. Since 2017, ELAR is part of the CLARIN Knowledge Centre for Linguistic Diversity and Language Documentation (CKLD) https://ckld.uni-koeln.de/ 2021-06-07 2021-06-19 +r3d100013584 Forschungsdatenzentrum für audio-visuelle Daten der qualitativen Sozialforschung deu [{"additionalName": "FDZ-aviDa", "additionalNameLanguage": "deu"}, {"additionalName": "RDC-aviDa", "additionalNameLanguage": "eng"}, {"additionalName": "Research Data Centre for audio-visual data of qualitative social research", "additionalNameLanguage": "eng"}] https://depositonce.tu-berlin.de/handle/11303/9910 [] ["avida@as.tu-berlin.de"] aviDa is the RDC for audio-visual data of empirical qualitative social research at the Department of General Sociology at the Technische Universität Berlin, developed in cooperation between the Technische Universität Berlin and the University of Bayreuth. aviDa aims at opening and sharing videographic research data since 2018. eng ["disciplinary"] {"size": "9 items", "updatedp": "2021-06-23"} 2018 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.as.tu-berlin.de/v_menue/forschung/laufende_forschungsprojekte/avida/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["emotions", "large religious events", "large sporting events", "social distancing"] [{"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de/", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.dfg.de/en/service/contact/index.html"]}, {"institutionName": "TU Berlin, Universit\u00e4tsbibliothek", "institutionAdditionalName": ["TU Berlin, University Library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.tu.berlin/ub/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["odej.kao@tu-berlin.de"]}, {"institutionName": "TU Berlin, ZE Campusmanagement", "institutionAdditionalName": ["tubIT"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.campusmanagement.tu-berlin.de/zecm/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Technische Universit\u00e4t Berlin, Fachgebiet Allgemeine Soziologie", "institutionAdditionalName": ["TU Berlin, Chair of General Sociology"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.as.tu-berlin.de/v_menue/fg_allgemeine_soziologie/", "institutionIdentifier": [], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["rene.wilke@tu-berlin.de"]}, {"institutionName": "Universit\u00e4t Bayreuth, Lehrstuhl f\u00fcr Kultur- und Religionssoziologie", "institutionAdditionalName": [], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.soziologie.uni-bayreuth.de/de/bereiche/kultur-und-religionssoziologie/index.html", "institutionIdentifier": [], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["helen.pach@uni-bayreuth.de"]}] [{"policyName": "Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities", "policyURL": "https://openaccess.mpg.de/Berliner-Erklaerung"}, {"policyName": "Handlungsempfehlungen zur Umsetzung der Forschungsdaten-Policy der Technischen Universit\u00e4t Berlin", "policyURL": "https://www.szf.tu-berlin.de/fileadmin/f33_szf/FD-Policy_TUBerlin_Handlungsempfehlungen_end_de.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "http://rightsstatements.org/page/InC/1.0/?language=de"}] restricted [] ["DSpace"] {} ["DOI", "hdl"] [] unknown unknown ["RatSWD"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://depositonce.tu-berlin.de/feed/rss_2.0/11303/9911", "syndicationType": "RSS"} 2021-06-07 2021-06-27 +r3d100013585 Forschungsdatenzentrum des Bundesamtes für Migration und Flüchtlinge deu [{"additionalName": "BAMF-FDZ", "additionalNameLanguage": "deu"}] https://www.bamf.de/DE/Themen/Forschung/Forschungsdatenzentrum/forschungsdatenzentrum-node.html [] ["https://www.bamf.de/DE/Themen/Forschung/Forschungsdatenzentrum/DatenAZR/daten-azr-node.html"] The BAMF-FDZ is part of the BAMF Research Centre. The establishment of the Research Data Centre is, among others, the result of an amendment to the German Act on the Central Register of Foreigners (Ausländerzentralregistergesetz, AZRG). The data service is free of charge. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021-08-08 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.bamf.de/DE/Themen/Forschung/Forschungsdatenzentrum/UeberFDZ/ueber-fdz-node.html [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["serviceProvider"] ["getaway", "immigration", "immigration law", "integration", "migration", "residence permit", "right of asylum"] [{"institutionName": "Ausl\u00e4nderzentralregister", "institutionAdditionalName": ["AZR"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bva.bund.de/DE/Das-BVA/Aufgaben/A/Auslaenderzentralregister/azr_node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["azr@bva.bund.de"]}, {"institutionName": "Bundesamt f\u00fcr Migration und Fl\u00fcchtlinge, Forschungsdatenzentrum", "institutionAdditionalName": ["BAMF-FDZ", "Federal Office for Migration and Refugees, Research Data Centre"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bamf.de/DE/Themen/Forschung/Forschungsdatenzentrum/forschungsdatenzentrum-node.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bamf.de/DE/Service/Kontakt/kontakt-node.html"]}, {"institutionName": "Bundesverwaltungsamt", "institutionAdditionalName": ["Federal Office of Administration"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.bva.bund.de/DE/Home/home_node.html", "institutionIdentifier": ["ROR:04n9aye53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bva.bund.de/DE/Service/Kontakt/kontakt_node.html;jsessionid=84EEDEC1DC64CC5D652C8CA75441D080.internet282?cms_navnode=44652"]}] [{"policyName": "Forschungsvorhaben mit personenbezogenen Daten aus dem Ausl\u00e4nderzentralregister: Beantragung und Durchf\u00fchrung", "policyURL": "https://www.bamf.de/SharedDocs/Anlagen/DE/Forschung/PublikationenFDZ/dokumentation-pbz.pdf?__blob=publicationFile&v=20"}, {"policyName": "Richtlinien f\u00fcr Gastaufenthalte im BAMF-Forschungsdatenzentrum", "policyURL": "https://www.bamf.de/SharedDocs/Anlagen/DE/Forschung/PublikationenFDZ/richtlinien-gwap.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.bamf.de/SharedDocs/Anlagen/DE/Forschung/PublikationenFDZ/dokumentation-pbz.html"}] restricted [] [] yes {} ["DOI"] [] unknown yes ["RatSWD"] [] {} 2021-06-07 2021-11-13 +r3d100013586 ACSS Dataverse eng [{"additionalName": "Arab Council for the Social Sciences Dataverse", "additionalNameLanguage": "eng"}, {"additionalName": "Conseil Arabe pour les Sciences Sociales Dataverse", "additionalNameLanguage": "fra"}] https://dataverse.theacss.org/ [] ["dataverse@theacss.org"] The ACSS Dataverse is a repository of interdisciplinary social science research data produced in and on the Arab region. The ACSS Dataverse, part of an initiative of the Arab Council for the Social Sciences in collaboration with the Odum Institute for Research in Social Science at the University of North Carolina at Chapel Hill, preserves and facilitates access to social science datasets in and on the Arab region and is open to relevant research data deposits. eng ["disciplinary"] {"size": "3 dataverses; 120 datasets; 409 files", "updatedp": "2021-06-11"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}] http://www.theacss.org/pages/mission [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["education", "international studies", "political science", "regional studies", "sociology"] [{"institutionName": "Arab Council for the Social Sciences", "institutionAdditionalName": [], "institutionCountry": "LBN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://theacss.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Dataverse Project", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://dataverse.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@dataverse.org"]}, {"institutionName": "University of North Carolina, Odum Institute for Research in Social Science", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://odum.unc.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "ACSS Terms of Use", "policyURL": "https://dataverse.theacss.org/user-guide/en/TermsofUse_EN.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataverse.theacss.org/user-guide/en/TermsofUse_EN.pdf"}] restricted [{"dataUploadLicenseName": "Data Deposit Form", "dataUploadLicenseURL": "https://dataverse.theacss.org/user-guide/en/DataDepositForm_EN.pdf"}] ["DataVerse"] yes {} ["DOI"] https://dataverse.theacss.org/user-guide/en/acss/user/#_Toc2588579 [] unknown no [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-06-10 2021-06-17 +r3d100013589 National Library of Scotland eng [] https://www.nls.uk/ [] ["enquiries@nls.uk"] The National Library of Scotland was formally constituted by an Act of Parliament in 1925 and is one of six libraries covered by the UK legal deposit system. The Library is Scotland's national archive for published and other literary heritage materials. One of our primary responsibilities is to safeguard the collections for future generations. Our collections care facility is recognised nationally and internationally as a centre of excellence for the preservation and conservation of library materials. NLS includes "Data Foundry", data collections from the National Library of Scotland. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "103 Fine Arts, Music, Theatre and Media Studies", "scheme": "DFG"}, {"name": "10302 Musicology", "scheme": "DFG"}, {"name": "10303 Theatre and Media Studies", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.nls.uk/about-us/what-we-are/our-mission/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["family history", "gaelic collections", "genealogy", "kings & queens", "medieval manuscripts", "poetry", "religion", "travel & emigration"] [{"institutionName": "National Library of Scotland", "institutionAdditionalName": ["Leabharlann N\u00e0iseanta na h-Alba"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nls.uk/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nls.uk/contact/"]}] [{"policyName": "Collection Development Policy", "policyURL": "https://www.nls.uk/media/pg1apzfw/2019-collection-development-policy.pdf"}, {"policyName": "Collections Security Policy", "policyURL": "https://www.nls.uk/media/otonpwpq/2014-collections-security-policy.pdf"}, {"policyName": "Terms and conditions", "policyURL": "https://www.nls.uk/using-the-library/terms-and-conditions/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/publicdomain/mark/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://rightsstatements.org/page/NoC-NC/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://rightsstatements.org/page/UND/1.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.nls.uk/using-the-library/copying-services/permission/licence/"}] [] [] {} [] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-06-17 2021-06-23 +r3d100013590 University of Manchester figshare eng [] https://figshare.manchester.ac.uk/ [] ["researchdata@manchester.ac.uk"] The University selected figshare as a general purpose research data repository to enable researchers to share research data, facilitate open research practices and meet the evolving requirements of research funders and academic publishers. This is a public-facing platform for researchers to share their data and build, over time, a comprehensive representation of the research done at the University across all faculties and disciplines. eng ["institutional"] {"size": "66 records", "updatedp": "2021-06-21"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://figshare.manchester.ac.uk/f/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["data", "figshare", "manchester", "repository", "research", "university"] [{"institutionName": "The University of Manchester", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.manchester.ac.uk/", "institutionIdentifier": ["ROR:027m9bs27"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["researchdata@manchester.ac.uk"]}] [{"policyName": "Intellectual Property Policy", "policyURL": "https://documents.manchester.ac.uk/display.aspx?DocID=24420"}, {"policyName": "Records Management Policy", "policyURL": "https://documents.manchester.ac.uk/display.aspx?DocID=14916"}, {"policyName": "Research Data Management Policy", "policyURL": "https://documents.manchester.ac.uk/display.aspx?DocID=33802"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://opensource.org/licenses/BSD-2-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gnu.org/licenses/gpl-3.0.html"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-06-18 2021-06-23 +r3d100013591 National Ecosystem Data Bank eng [{"additionalName": "EcoDB", "additionalNameLanguage": "eng"}, {"additionalName": "\u56fd\u5bb6\u751f\u6001\u79d1\u5b66\u6570\u636e\u5b58\u50a8\u5e93", "additionalNameLanguage": "zho"}] http://ecodb.cern.ac.cn [] ["nesdc@igsnrr.ac.cn"] National ecosystem data bank (EcoDB) is a public professional scientific data repository supported by the National Ecosystem Science Data Center (NESDC) for researchers in ecology and related fields, which provides long-term preservation, publication, sharing and access services of scientific data. EcoDB provides services for both individual researchers and scientific journals. Individuals can use this repository to store, manage and publish scientific data, get feedback from others on the data, and discover scientific data shared by others through this repository. Journals can use the repository to gather, manage and review the supporting data of submitted paper. At the same time, journals can timely publish these supporting data according to their own data policies. eng ["disciplinary"] {"size": "6 published datasets; 11 saved datasets, 6.04+ GB", "updatedp": "2021-06-22"} 2021 ["eng", "zho"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20202 Plant Ecology and Ecosystem Analysis", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "20704 Ecology of Agricultural Landscapes", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://ecodb-intl.cern.ac.cn/ours/use [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["ecology", "ecosystem"] [{"institutionName": "Chinese Academy of Sciences, Institute of Geographic Sciences and Natural Resources Research", "institutionAdditionalName": ["CAS IGSNRR", "\u4e2d\u56fd\u79d1\u5b66\u9662\u5730\u7406\u79d1\u5b66\u4e0e\u8d44\u6e90\u7814\u7a76\u6240"], "institutionCountry": "CHN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://english.igsnrr.cas.cn/", "institutionIdentifier": ["ROR:04t1cdb72"], "responsibilityStartDate": "2021", "responsibilityEndDate": "", "institutionContact": ["http://english.igsnrr.cas.cn/ai/cu/"]}] [{"policyName": "Terms of Service", "policyURL": "http://ecodb-intl.cern.ac.cn/ours/serviceTerm"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [{"dataUploadLicenseName": "Terms of Service", "dataUploadLicenseURL": "http://ecodb-intl.cern.ac.cn/ours/serviceTerm"}] [] yes {"api": "http://ecodb-intl.cern.ac.cn/ours/faq#data_citation", "apiType": "FTP"} ["DOI"] http://ecodb-intl.cern.ac.cn/ours/faq#data_citation [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-06-22 2021-06-24 +r3d100013592 IDOC eng [{"additionalName": "Integrated Data & Operation Center", "additionalNameLanguage": "eng"}] https://idoc.osups.universite-paris-saclay.fr/ [] [] IDOC (Integrated Data & Operation Center) has existed since 2003 as a satellite operations center and data center for the Institute of Space Astrophysics (IAS) in Orsay, France. Since then, it has operated within the OSUPS (Observatoire des Sciences de l'Univers de l'Université Paris Saclay), which includes three institutes: IAS and GEOPS and AIM. IDOC participates in the space missions of OSUPS and its partners, from mission design to long-term scientific data archiving. For each phase of the missions, IDOC offers services in the scientific themes of OSUPS. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "311 Astrophysics and Astronomy", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}] https://idoc.osups.universite-paris-saclay.fr/About/Missions [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["AMIS", "COSMO", "D2S", "FAIR", "GEOPS", "IPOD", "MEDOC", "planetary surface", "space missions"] [{"institutionName": "Institute of Space Astrophysics", "institutionAdditionalName": ["IAS", "Institut d'Astrophysique Spatiale"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ias.u-psud.fr/en", "institutionIdentifier": ["ROR:014p8mr66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ias.u-psud.fr/en/the-lab/organization"]}, {"institutionName": "Integrated Data and Operation Center", "institutionAdditionalName": ["IDOC"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://idoc.ias.u-psud.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Scientific Research Centre", "institutionAdditionalName": ["CNRS", "Centre national de la recherche scientifique"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs.fr/en/cnrs", "institutionIdentifier": ["ROR:02feahw73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e9 Paris Saclay, Observatoire des Sciences de l'Univers", "institutionAdditionalName": ["OSUPS"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://osups.universite-paris-saclay.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://osups.universite-paris-saclay.fr/contact"]}] [{"policyName": "CNRS Roadmap for Open Science", "policyURL": "https://www.science-ouverte.cnrs.fr/wp-content/uploads/2019/11/CNRS_Roadmap_Open_Science_18nov2019.pdf"}, {"policyName": "Policy, Copyrights, DOIs", "policyURL": "https://idoc.ias.u-psud.fr/policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://spdx.org/licenses/GPL-3.0-or-later.html#licenseText"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf"}] restricted [] ["other"] {} ["DOI"] [] unknown unknown [] [] {"syndication": "https://idoc.osups.universite-paris-saclay.fr/rss.xml", "syndicationType": "RSS"} IDOC Members see: https://idoc.osups.universite-paris-saclay.fr/About/Members 2021-06-23 2021-07-02 +r3d100013594 Cary Institute of Ecosystem Studies figshare eng [] https://caryinstitute.figshare.com/ [] ["https://www.caryinstitute.org/about/visit-cary/hours-directions", "schulera@caryinstitute.org"] Cary Institute data repository allows researchers to store, share and publish their research data, supplementary information and associated metadata. Each published item is assigned a Digital Object identifier (DOI), which allows the data to be citable and sustainable. This repository is a member node of DataOne. eng ["institutional"] {"size": "170 results", "updatedp": "2021-06-30"} 2018 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.caryinstitute.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["atmospheric sciences", "biological sciences", "climate science", "ecology", "history"] [{"institutionName": "Cary Institute of Ecosystem Studies", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.caryinstitute.org/", "institutionIdentifier": ["ROR:01dhcyx48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.caryinstitute.org/about/visit-cary/hours-directions"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://opensource.org/licenses/MIT"}] restricted [] ["other"] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://caryinstitute.figshare.com/rss/portal/caryinstitute", "syndicationType": "RSS"} 2021-06-28 2021-07-02 +r3d100013596 German Central Health Study Hub COVID-19 eng [] https://covid19.studyhub.nfdi4health.de/ [] ["contact@nfdi4health.de", "fb.studyhub@nfdi4health.de"] The German Central Health Study Hub COVID-19 (Study Hub) is an inventory of German COVID-19 studies covering structured health data from administrative databases, clinical trials incl. vaccination studies, primary care, epidemiological studies, and public health surveillance. The aim is to enable the findability of studies and access to structured health data to improve the management of public health data on the COVID-19 pandemic. Unlike other initiatives, the Study Hub will focus not only on clinical research but also on studies relating to the consequences of the pandemic for public health, such as utilisation of healthcare services, quality of life, and the effects of social isolation. Furthermore, the Study Hub provides access to the study documents and data collection instruments like (sample) questionnaires, including information down to the variable level. The Study Hub has been created in the project NFDI4Health Task Force COVID-19 (DFG project number 451265285), which is an additionally funded use case of the National Research Data Infrastructure for Personal Health Data – NFDI4Health (DFG project number 442326535). eng ["disciplinary"] {"size": "768 studies, 21 data collection instruments (questionnaires/case report forms)", "updatedp": "2021-06-30"} 2020-10-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20501 Epidemiology, Medical Biometry, Medical Informatics", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "20513 Pneumology, Clinical Infectiology Intensive Care Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["COVID-19", "SARS-CoV-2", "clinical studies", "epidemiology", "health data", "nfdi", "nfdi4health", "public health", "study registry", "survey instruments"] [{"institutionName": "Berlin Institute of Health at Charit\u00e9", "institutionAdditionalName": ["BIH"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bihealth.org/en/", "institutionIdentifier": ["ROR:0493xsw21"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.dfg.de/en/", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Fraunhofer Institute for Digital Medicine MEVIS", "institutionAdditionalName": ["Fraunhofer-Institut f\u00fcr Digitale Medizin MEVIS"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mevis.fraunhofer.de/", "institutionIdentifier": ["ROR:04farme71"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "Heidelberg Institute for Theoretical Studies", "institutionAdditionalName": ["HITS", "HITS gGmbH", "Heidelberger Institut f\u00fcr Theoretische Studien"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.h-its.org/", "institutionIdentifier": ["ROR:01f7bcy98"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "KKS-Netzwerk e.V.", "institutionAdditionalName": ["KKS Network", "KKSN"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kks-netzwerk.de/", "institutionIdentifier": [], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "Leibniz Institute for Prevention Research and Epidemiology", "institutionAdditionalName": ["BIPS", "Leibniz-Institut f\u00fcr Pr\u00e4ventionsforschung und Epidemiologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bips-institut.de/en/home.html", "institutionIdentifier": ["ROR:02c22vc57"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "Robert Koch Institute", "institutionAdditionalName": ["RKI", "Robert Koch Institut"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.rki.de/", "institutionIdentifier": ["ROR:01k5qnb77"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "University Medical Center G\u00f6ttingen", "institutionAdditionalName": ["UMG", "Universit\u00e4tsmedizin G\u00f6ttingen"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.umg.eu/en/", "institutionIdentifier": ["ROR:021ft0n22"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "University Medicine of Greifswald", "institutionAdditionalName": ["Universit\u00e4tsmedizin Greifswald"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.medizin.uni-greifswald.de/de/home/", "institutionIdentifier": [], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "University of Leipzig,Medical Faculty; Institute for Medical Informatics, Statistics and Epidemiology", "institutionAdditionalName": ["IMISE", "Universit\u00e4t leipzig, Medizinische Fakult\u00e4t, Institut f\u00fcr Medizinische Informatik, Statistik und Epidemiologie"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.imise.uni-leipzig.de/en/homepage", "institutionIdentifier": [], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}, {"institutionName": "ZB MED \u2014 Information Centre for Life Sciences", "institutionAdditionalName": ["ZB MED - Informationszentrum Lebenswissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.zbmed.de/en/", "institutionIdentifier": ["ROR:0259fwx54"], "responsibilityStartDate": "2020-07-01", "responsibilityEndDate": "2023-06-30", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://covid19.studyhub.nfdi4health.de/"}] restricted [] [] no {} ["DOI"] [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} 2021-06-30 2021-07-27 +r3d100013602 University of Tasmania Research Data Portal eng [{"additionalName": "UTAS RDP", "additionalNameLanguage": "eng"}] https://rdp.utas.edu.au ["FAIRsharing_doi:10.25504/FAIRsharing.l3u60T"] ["Research.Data@utas.edu.au", "reginam@utas.edu.au"] The University of Tasmania Research Data Portal (RDP) enables UTAS researchers to securely store and publish their datasets. Datasets published in RDP are publicly available through the Research Data Australia Search Portal (https://researchdata.edu.au/). eng ["institutional"] {"size": "683 public records", "updatedp": "2021-07-09"} 2019 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://utas.libguides.com/ResearchData/ResearchDataPortal [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Tasmania", "institutionAdditionalName": ["UTAS"], "institutionCountry": "AUS", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.utas.edu.au/", "institutionIdentifier": ["ROR:01nfmeh72"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Management of Research Data Procedure", "policyURL": "https://www.utas.edu.au/__data/assets/pdf_file/0010/1369963/Management-of-Research-Data-Procedure-UNDER-REVIEW.pdf"}, {"policyName": "University of Tasmania's Responsible Conduct of Research Framework", "policyURL": "https://www.utas.edu.au/research-admin/research-integrity-and-ethics-unit-rieu/research-integrity/university-of-tasmania-responsible-conduct-of-research-framework"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"other\"]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/3.0/au/"}] restricted [] [] yes {"api": "https://rdp.utas.edu.au/api/harvest/rifcs", "apiType": "other"} ["DOI"] ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-07-09 2021-07-14 +r3d100013603 Depository Trust & Clearing Corporation Data Services eng [{"additionalName": "DTCC Data Services", "additionalNameLanguage": "eng"}] https://www.dtcc.com/repository-otc-data [] ["https://www.dtcc.com/dtcc-data-sales"] TIW’s Warehouse is a centralized, electronic database holding the most current details on the official, or “gold,” record for virtually all cleared and bilateral credit default swap (CDS) contracts outstanding in the global marketplace. The Warehouse contains more than 50,000 accounts representing derivatives counterparties across 95 countries. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.dtcc.com/repository-and-derivatives-services/derivatives-services/trade-information-warehouse [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["TIW\u2019s Warehouse", "banking", "central clearing", "credit default swaps", "derivatives", "economics", "statistics"] [{"institutionName": "DTCC", "institutionAdditionalName": ["Depository Trust & Clearing Corporation"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "commercial", "institutionURL": "https://www.dtcc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.dtccdata.com/terms-and-conditions"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "institutional membership", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.dtccdata.com/terms-and-conditions"}] closed [] ["unknown"] no {} ["none"] [] unknown yes [] [] {} 2021-07-10 2021-09-11 +r3d100013604 Bloomberg eng [{"additionalName": "Bloomberg Market Data", "additionalNameLanguage": "eng"}] https://www.bloomberg.com/professional/product/market-data/ [] ["https://www.bloomberg.com/professional/support/support-numbers/"] A consolidated feed from 35 million instruments provides sophisticated normalized data, streamlining analysis and decisions from front office to operations. And with flexible delivery options including cloud and API, timely accurate data enables the enterprise to capture opportunities, evaluate risk and ensure compliance in fast-moving markets. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11203 Public Finance", "scheme": "DFG"}, {"name": "11204 Business Administration", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.comparably.com/companies/bloomberg/mission [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["economics", "finance", "financial markets", "market data", "statistics"] [{"institutionName": "Bloomberg L.P.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "commercial", "institutionURL": "https://www.bloomberg.com/company/", "institutionIdentifier": ["ROR:02rdpzb15"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.bloomberg.com/professional/support/support-numbers/"]}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.bloombergindustry.com/terms-and-conditions/"}] {"databaseAccessType": "restricted", "databaseAccessRestriction": "[\"feeRequired\"]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.bloombergindustry.com/terms-of-service-subscription-products/"}] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.bloombergindustry.com/terms-of-service-subscription-products/"}] closed [] ["unknown"] no {} ["none"] [] unknown yes [] [] {} 2021-07-10 2021-09-10 +r3d100013606 Pôle National de Données de Biodiversité fra [{"additionalName": "National Biodiversity Data Center", "additionalNameLanguage": "eng"}] https://data.pndb.fr/ ["FAIRsharing_doi:10.25504/FAIRsharing.SfXDoZ"] ["contact.pndb@mnhn.fr", "elie.arnaud@mnhn.fr", "julien.sananikone@mnhn.fr", "yvan.le-bras@mnhn.fr"] In 2018, the Ministry of Higher Education, Research and Innovation has included in its roadmap the creation of a new infrastructure called the National Biodiversity Data Centre (PNDB). The PNDB's missions are part of a FAIR (Easy to Find, Accessible, Interoperable, Reusable) approach, and consist in - providing access to datasets and metadata, associated services and products derived from the analyses - promoting scientific leadership to identify gaps and foster the emergence of community-driven systems of users and producers - facilitate the sharing of practices with other research communities, encourage the sharing of data and their reuse, and be part of the reflection on the future Earth System infrastructure. - promote coherence with national, European and international efforts concerning access to and use of biodiversity research data and the promotion of products and services. The PNDB is supported by the Muséum national d'Histoire naturelle, more specifically by the UMS 2006 PatriNat, a MNHN CNRS and AFB unit. The project is closely linked with the FRB and several of its founding institutions (AFB, BRGM, CIRAD, CNRS, Ifremer, INERIS, INRA, IRD, IRSTEA, MNHN, Univ. Montpellier). eng ["disciplinary"] {"size": "", "updatedp": ""} 2018 ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.pndb.fr [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "biodiversity", "ecology", "environment"] [{"institutionName": "Museum National d'Histoire Naturelle", "institutionAdditionalName": ["MNHN", "National Museum of Natural History"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mnhn.fr/fr", "institutionIdentifier": ["ROR:03wkt5x30"], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["UMS PatriNat Mus\u00e9um national d'Histoire naturelle Maison Buffon, CP41 36 rue Geoffroy Saint-Hilaire 75005 Paris", "yvan.le-bras@mnhn.fr"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["other"] {"api": "https://pndb.fr/metacat/d1/mn/v2", "apiType": "other"} [] [] unknown unknown [] [{"metadataStandardName": "EML - Ecological Metadata Language", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/eml-ecological-metadata-language"}] {} related repository: DataONE (http://doi.org/10.17616/R3101G). GitHub: https://github.com/pole-national-donnees-biodiversite 2021-07-15 2021-07-21 +r3d100013609 National Library of the Netherlands e-depot eng [{"additionalName": "Koninklijke Bibliotheek - KB", "additionalNameLanguage": "nld"}] https://www.kb.nl/ [] ["dataservices@kb.nl", "https://www.kb.nl/en/services/contact-us"] The Royal Library of the Netherlands (Dutch: Koninklijke Bibliotheek or KB; Royal Library) is the national library of the Netherlands. The KB collects everything that is published in and concerning the Netherlands, from medieval literature to today's publications. The e-Depot contains the Dutch National Library Collection of born-digital publications from, and about, the Netherlands, and international publications consisting of born-digital scholarly articles included in journals produced by publishers originally based in the Netherlands eng ["institutional", "other"] {"size": "", "updatedp": ""} ["eng", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "104 Linguistics", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.kb.nl/en/organisation/organization-and-policy/mission-statement [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["Dutch literature and language", "history and culture", "medieval manuscripts", "old atlases"] [{"institutionName": "National Library of the Netherlands", "institutionAdditionalName": ["Koninklijke Bibliotheek - KB"], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kb.nl/en", "institutionIdentifier": ["ROR:02w4jbg70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Content strategy 2019-2022", "policyURL": "https://www.kb.nl/sites/default/files/docs/content_strategy_eng.pdf"}, {"policyName": "Digital preservation policy", "policyURL": "https://www.kb.nl/sites/default/files/docs/digital_preservation_policy_kb.pdf"}, {"policyName": "Organization and Policy section", "policyURL": "https://www.kb.nl/en/organisation/organization-and-policy"}, {"policyName": "Preservation plan", "policyURL": "https://www.kb.nl/sites/default/files/docs/preservation_plan_2019-2022.pdf"}, {"policyName": "Strategic Plan 2019-2022", "policyURL": "https://www.kb.nl/sites/default/files/docs/kbnb_beleidsplan-eng.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc/3.0/deed.nl"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.kb.nl/en/copyright-kb-website"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/licenses/by/1-0/"}] closed [] [] yes {"api": "https://www.kb.nl/en/resources-research-guides/data-services-apis", "apiType": "OAI-PMH"} ["DOI", "URN"] [] unknown yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} National Library of the Netherlands cooperates with parties such as the Dutch Digital Heritage Network (NDE) and the Common Lab Research Infrastructure for the Arts and Humanities (CLARIAH). 2021-07-19 2021-08-29 +r3d100013612 Atmosphere to Electrons, Data Archive and Portal eng [{"additionalName": "A2e, DAP", "additionalNameLanguage": "eng"}] https://a2e.energy.gov/data [] ["dapteam@pnnl.gov"] Atmosphere to Electrons (A2e) is a new, multi-year, multi-stakeholder U.S. Department of Energy (DOE) research and development initiative tasked with improving wind plant performance and mitigating risk and uncertainty to achieve substantial reduction in the cost of wind energy production. The A2e strategic vision will enable a new generation of wind plant technology, in which smart wind plants are designed to achieve optimized performance stemming from more complete knowledge of the inflow wind resource and complex flow through the wind plant. eng ["disciplinary"] {"size": "601 datasets", "updatedp": "2021-07-26"} 2015-01-01 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "402 Mechanics and Constructive Mechanical Engineering", "scheme": "DFG"}, {"name": "40204 Acoustics", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "41 Mechanical and industrial Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://a2e.energy.gov/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AWAKEN", "Coastal Wind Profiler", "EERE Wind Energy Technologies Office", "IMPOWR", "LEES", "Lake Michigan", "Leading-edge Erosion Study", "OC5", "OC6", "Offshore Wind Energy - Buoy Lidar Project", "Position of Offshore Wind Energy Resources", "SUMR-D", "UAE6", "WETO", "WFIP1", "WFIP2", "WP3", "Wind Integration National Dataset Toolkit", "XPIA", "aeroacoustic", "american wake experiment", "atmosphere to electrons", "buoy", "mesoscale", "microscale", "wake steering", "wind forecast", "wind plant performance"] [{"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE", "ENERGY.GOV"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Energy Efficiency and Renewable Energy", "institutionAdditionalName": ["EERE"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/office-energy-efficiency-renewable-energy", "institutionIdentifier": ["ROR:02xznz413"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Wind Energy Technologies Office", "institutionAdditionalName": ["WETO"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/wind/wind-energy-technologies-office", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Atmosphere to Electrons Data File Standards Version 1.1", "policyURL": "https://a2e.energy.gov/docs/program/a2e_standards_guidelines.PNNL-28552.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] yes {} ["DOI"] https://a2e.energy.gov/acknowledge [] yes yes [] [{"metadataStandardName": "CF (Climate and Forecast) Metadata Conventions", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/cf-climate-and-forecast-metadata-conventions"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Atmosphere to Electrons, Data Archive and Portal is covered by Clarivate Data Citation Index 2021-07-21 2021-08-10 +r3d100013613 Joint Genome Institute Data Portal eng [{"additionalName": "JGI Data Portal", "additionalNameLanguage": "eng"}] https://data.jgi.doe.gov [] ["kmfagnan@lbl.gov"] The U.S. Department of Energy (DOE) Joint Genome Institute (JGI) is a DOE Office of Science User Facility located at Lawrence Berkeley National Laboratory (Berkeley Lab). All data generated by the DOE Joint Genome Institute is available through this repository once the data are published or public. eng ["disciplinary"] {"size": "12 petabytes", "updatedp": "2021-07-26"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://jgi.doe.gov/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["algal", "fungal", "genomes", "metagenomes", "microbial", "next-generation sequencing"] [{"institutionName": "DOE Joint Genome Institute", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://jgi.doe.gov", "institutionIdentifier": ["ROR:04xm1d337"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "JGI Data Policies", "policyURL": "https://jgi.doe.gov/user-programs/pmo-overview/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Public Domain", "dataLicenseURL": "https://jgi.doe.gov/user-programs/pmo-overview/policies/"}] closed [] [] {"api": "https://files.jgi.doe.gov/apidoc/", "apiType": "REST"} ["PURL"] https://genome.jgi.doe.gov/portal/pages/citeUs.jsf [] unknown yes [] [] {} 2021-07-21 2021-07-29 +r3d100013615 AlphaFold eng [{"additionalName": "AlphaFold Protein Structure Database", "additionalNameLanguage": "eng"}] https://alphafold.ebi.ac.uk/ [] ["afdbhelp@ebi.ac.uk", "alphafold@deepmind.com"] AlphaFold DB provides open access to protein structure predictions for the human proteome and 20 other key organisms to accelerate scientific research. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://alphafold.ebi.ac.uk/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["desease", "drugs", "human health", "protein"] [{"institutionName": "DeepMind", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://deepmind.com/", "institutionIdentifier": ["ROR:00971b260"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "EMBL-EBI", "institutionAdditionalName": ["European Molecular Biology Laboratory, European Bioinformatics Institute"], "institutionCountry": "EEC", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ebi.ac.uk/", "institutionIdentifier": ["ROR:02catss52"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ebi.ac.uk/about/contact"]}] [{"policyName": "Disclaimer", "policyURL": "https://alphafold.ebi.ac.uk/download"}, {"policyName": "EMBL-EBI Terms of Use", "policyURL": "https://www.ebi.ac.uk/about/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://alphafold.ebi.ac.uk/about"}] closed [] [] {"api": "http://ftp.ebi.ac.uk/pub/databases/alphafold/", "apiType": "FTP"} [] https://alphafold.ebi.ac.uk/faq [] unknown unknown [] [] {} 2021-07-23 2021-07-25 +r3d100013617 New Zealand's Biological Heritage National Science Challenge Data Repository eng [{"additionalName": "NZ BioHeritage National Science Challenge Data Repository", "additionalNameLanguage": "eng"}] https://data.bioheritage.nz/ [] ["support@bioheritage.nz"] Data catalogue and repository for New Zealand's Biological Heritage National Science Challenge eng ["disciplinary"] {"size": "31 datasets; 5 collections; 2 groups", "updatedp": "2021-07-28"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.bioheritage.nz/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biosecurity", "eDNA", "gene", "genetics", "invasive species", "mitochondrial DNA", "pest control", "synthetic biology"] [{"institutionName": "Landcare Research NZ", "institutionAdditionalName": ["Manaaki Whenua"], "institutionCountry": "NZL", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.landcareresearch.co.nz/", "institutionIdentifier": ["ROR:02p9cyn66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["library@landcareresearch.co.nz", "mcglinchya@landcareresearch.co.nz"]}] [{"policyName": "BioHeritage Terms of Use", "policyURL": "https://data.bioheritage.nz/terms_of_use"}, {"policyName": "Landcare Research New Zealand Terms of Use", "policyURL": "https://datastore.landcareresearch.co.nz/terms_of_use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Copyrights", "databaseLicenseURL": "https://data.bioheritage.nz/terms_of_use"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [{"dataUploadLicenseName": "Creative Commons licence", "dataUploadLicenseURL": "https://creativecommons.org/licenses/"}] ["CKAN"] yes {"api": "https://docs.ckan.org/en/2.7/api/", "apiType": "REST"} ["DOI"] https://data.bioheritage.nz/terms_of_use [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-07-27 2021-07-30 +r3d100013623 MHKDR eng [{"additionalName": "Marine and Hydrokinetic Data Repository", "additionalNameLanguage": "eng"}] https://mhkdr.openei.org/ [] ["MHKDRHelp@nrel.gov", "OpenEI.Webmaster@nrel.gov"] The MHKDR is the repository for all data collected using funds from the Water Power Technologies Office (WPTO) of the U.S. Department of Energy (DOE). It was established to receive, manage, and make available all water power relevant data generated from projects funded by the DOE Water Power Technologies Office. This includes data from WPTO-funded projects associated with any portion of the water power project life-cycle (exploration, development, operation), as well as data produced by WPTO-funded research. eng ["disciplinary"] {"size": "1.969 total files; 15.92 TB of submitted data", "updatedp": "2021-08-09"} 2015 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://mhkdr.openei.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["DOE", "Department of Energy", "NREL", "National Renewable Energy Lab", "energy", "hydro", "hydrokinetic", "marine", "renewable", "water", "water power", "water power technology"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "OpenEI", "institutionAdditionalName": ["Open Energy Information"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://openei.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["OpenEI.Webmaster@nrel.gov"]}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "U.S. Department of Energy's Water Power Technologies Office", "institutionAdditionalName": ["DOE WPTO"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://energy.gov/eere/geothermal/geothermal-energy-us-department-energy", "institutionIdentifier": [], "responsibilityStartDate": "2015", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/eere/geothermal/geothermal-technologies-office-contacts-0"]}] [{"policyName": "Terms of Service", "policyURL": "https://auth.openei.org/cas/terms_of_service"}, {"policyName": "U.S. Department of Energy Public Access Plan", "policyURL": "https://www.energy.gov/sites/prod/files/2014/08/f18/DOE_Public_Access%20Plan_FINAL.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"databaseLicenseName": "other", "databaseLicenseURL": "https://resources.data.gov/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["CKAN"] yes {"api": "https://www1.eere.energy.gov/geothermal/pdfs/ngds_data_provision_guidelines.pdf", "apiType": "NetCDF"} ["DOI"] https://openei.org/wiki/Help:Citations [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Marine and Hydrokinetic Data Repository is covered by Clarivate Data Citation Index. OpenEI is growing into a global leader in the energy data realm - specifically analyses on renewable energy and energy efficiency. The platform is a wiki, similar to Wikipedia’s Wiki, with which many people are already familiar. Users can view, edit, and add data – and download data for free. We invite you to join our user community and get involved. With your help, we can provide the most current information needed to make informed decisions on energy, market investment, and technology development. Your data will also help create new businesses, build innovative tools and inspire new analyses. In addition to the Wiki, OpenEI provides a platform for sharing datasets. You can download data or upload your own, as well as rate and provide comments on the usefulness of the datasets. The MHKDR is one of many members of the Energy Department’s National Geothermal Data System (NGDS), which provides free access to millions of records of geothermal research and site demonstration data. 2021-08-05 2021-08-19 +r3d100013624 NAWI Water DAMS eng [{"additionalName": "National Alliance for Water Innovation Water Data Analysis and Management System", "additionalNameLanguage": "eng"}] https://nawi.openei.org/ [] ["OpenEI.Webmaster@nrel.gov", "WaterDAMSHelp@nrel.gov"] Water DAMS (Water Data Analysis and Management System) provides access to foundational water treatment technology data that enable researchers and decision-makers to identify and quantify opportunities for technology innovations to reduce the cost and energy intensity of desalination. It is the submission point for all data generated by research conducted by the National Alliance for Water Innovation (NAWI) and is designed to be used by the broader water research community. With publicly accessible contributions from a variety of academic and industrial partners, Water DAMS seeks to enable data discoverability, improve accessibility, and accelerate collaboration that contributes to pipe parity and innovation in water treatment technologies. eng ["disciplinary"] {"size": "132 total files; 587.06 MB of submitted data", "updatedp": "2021-08-06"} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "31801 Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://nawi.openei.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["DOE", "Department of Energy", "NREL", "National Renewable Energy Laboratory", "desalination", "hydropower", "water", "water innovation", "water power", "water research", "water treatment", "water treatment technology"] [{"institutionName": "National Alliance for Water Innovation", "institutionAdditionalName": ["NAWI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nawihub.org/", "institutionIdentifier": ["OSTI:1782446"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["https://www.nawihub.org/contact"]}, {"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "OpenEI", "institutionAdditionalName": ["Open Energy Information"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://openei.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}, {"institutionName": "U.S. Department of Energy, Advanced Manufacturing Office", "institutionAdditionalName": ["DOE AMO", "Department of Energy's Advanced Manufacturing Office"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/amo/advanced-manufacturing-office", "institutionIdentifier": [], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Guidelines for Provision and Interchange of Geothermal Data Assets", "policyURL": "https://www.energy.gov/sites/prod/files/2016/02/f29/DataProvisionGuidelinesNGDS-GDR%202016_02_10%20Final.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://project-open-data.cio.gov/"}] restricted [{"dataUploadLicenseName": "Water DAMS Data Management and Best Practices for Submitters and Curators", "dataUploadLicenseURL": "https://waterdams.nawihub.org/submissions/11"}] ["CKAN"] yes {"api": "https://www1.eere.energy.gov/geothermal/pdfs/ngds_data_provision_guidelines.pdf", "apiType": "NetCDF"} ["DOI"] https://openei.org/wiki/Help:Citations [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} Water DAMS is one of many members of the Energy Department’s National Geothermal Data System (NGDS), which provides free access to millions of records of geothermal research and site demonstration data. OpenEI is growing into a global leader in the energy data realm - specifically analyses on renewable energy and energy efficiency. The platform is a wiki, similar to Wikipedia’s Wiki, with which many people are already familiar. Users can view, edit, and add data – and download data for free. We invite you to join our user community and get involved. With your help, we can provide the most current information needed to make informed decisions on energy, market investment, and technology development. Your data will also help create new businesses, build innovative tools and inspire new analyses. In addition to the Wiki, OpenEI provides a platform for sharing datasets. You can download data or upload your own, as well as rate and provide comments on the usefulness of the datasets. 2021-08-05 2021-08-08 +r3d100013625 OEDI eng [{"additionalName": "OEDI Data Lake", "additionalNameLanguage": "eng"}, {"additionalName": "Open Energy Data Initiative", "additionalNameLanguage": "eng"}] https://data.openei.org/home [] ["OpenEI.Webmaster@nrel.gov"] OEDI is a centralized repository of high-value energy research datasets aggregated from the U.S. Department of Energy’s Programs, Offices, and National Laboratories. Built to enable data discoverability, OEDI facilitates access to a broad network of findings, including the data available in technology-specific catalogs like the Geothermal Data Repository and Marine Hydrokinetic Data Repository. eng ["disciplinary", "other"] {"size": "1.456 total files; 1.15 PB of submitted data", "updatedp": "2021-08-09"} 2020 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://data.openei.org/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["OpenEI", "energy", "energy data", "energy research", "renewable energy research"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nrel.gov/about/contacts.html"]}, {"institutionName": "OpenEI", "institutionAdditionalName": ["Open Energy Information"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://openei.org/wiki/Main_Page", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy", "institutionAdditionalName": ["DOE"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/", "institutionIdentifier": ["ROR:01bj3aw27"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/contact-us"]}] [{"policyName": "U.S. Department of Energy Public Access Plan", "policyURL": "https://www.energy.gov/sites/prod/files/2014/08/f18/DOE_Public_Access%20Plan_FINAL.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://project-open-data.cio.gov/"}] restricted [] ["CKAN"] yes {"api": "https://www1.eere.energy.gov/geothermal/pdfs/ngds_data_provision_guidelines.pdf", "apiType": "NetCDF"} ["DOI"] https://openei.org/wiki/Help:Citations [] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "FGDC/CSDGM - Federal Geographic Data Committee Content Standard for Digital Geospatial Metadata", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/fgdccsdgm-federal-geographic-data-committee-content-standard-digital-ge"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {} OpenEI is growing into a global leader in the energy data realm - specifically analyses on renewable energy and energy efficiency. The platform is a wiki, similar to Wikipedia’s Wiki, with which many people are already familiar. Users can view, edit, and add data – and download data for free. We invite you to join our user community and get involved. With your help, we can provide the most current information needed to make informed decisions on energy, market investment, and technology development. Your data will also help create new businesses, build innovative tools and inspire new analyses. In addition to the Wiki, OpenEI provides a platform for sharing datasets. You can download data or upload your own, as well as rate and provide comments on the usefulness of the datasets. OEDI is a centralized repository of high-value energy research datasets aggregated from the U.S. Department of Energy’s Programs, Offices, and National Laboratories. Built to enable data discoverability, OEDI facilitates access to a broad network of findings, including the data available in technology-specific catalogs like the Geothermal Data Repository and Marine Hydrokinetic Data Repository. 2021-08-05 2021-08-13 +r3d100013626 ArkeoGIS eng [{"additionalName": "ArkeoGIS", "additionalNameLanguage": "fra"}] https://arkeogis.org/ [] ["contact@arkeogis.org", "https://arkeogis.org/contact/"] ArkeoGIS is a unified scientific data publishing platform. It is a multilingual Geographic Information System (GIS), initially developed in order to mutualize archaeological and paleoenvironmental data of the Rhine Valley. Today, it allows the pooling of spatialized scientific data concerning the past, from prehistory to the present day. The databases come from the work of institutional researchers, doctoral students, master students, private companies and archaeological services. They are stored on the TGIR Huma-Num service grid and archived as part of the Huma-Num/CINES long-term archiving service. Because of their sensitive nature, which could lead to the looting of archaeological deposits, access to the tool is reserved to archaeological professionals, from research institutions or non-profit organizations. Each user can query online all or part of the available databases and export the results of his query to other tools. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng", "fra", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://arkeogis.org/home/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Link Open Data", "Open Source", "Rhine Valley", "m\u00e9tadonn\u00e9es", "syst\u00e8me d'Information G\u00e9ographique"] [{"institutionName": "Huma-Num", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.huma-num.fr/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@huma-num.fr"]}, {"institutionName": "University of Strasbourg", "institutionAdditionalName": ["Universit\u00e9 de Strasbourg"], "institutionCountry": "FRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://en.unistra.fr/", "institutionIdentifier": ["ROR:00pg6eq24"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "General Terms and Conditions of Use", "policyURL": "https://arkeogis.org/general-terms-and-conditions-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://raw.githubusercontent.com/croll/arkeogis-web/master/LICENSE"}] restricted [] ["MySQL"] yes {"api": "https://arkeogis.org/", "apiType": "REST"} ["hdl"] ["other"] yes yes ["other"] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} GitHub: https://github.com/croll/arkeogis-web 2021-08-09 2021-08-19 +r3d100013628 GNS Science Dataset Catalogue eng [] https://data.gns.cri.nz/metadata/srv/eng/catalog.search#/home [] ["https://www.gns.cri.nz/static/forms/records.php"] The purpose of the Dataset Catalogue is to enhance discovery of GNS Science datasets. At a minimum, users will be able to determine whether a dataset on a specific topic exists and then whether it pertains to a specific place and/or a specific date or period. Some datasets include a web link to an online resource. In addition, contact details are provided for the custodian of each dataset as well as conditions of use. eng ["institutional"] {"size": "7.483 datasets", "updatedp": "2021-08-31"} ["cat", "eng", "fin", "fra", "isl", "kor", "nld", "rus", "spa", "zho"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "302 Chemical Solid State and Surface Research", "scheme": "DFG"}, {"name": "30202 Physical Chemistry of Solids and Surfaces, Material Characterisation", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "31502 Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.gns.cri.nz/Home/Products/Databases/GNS-Science-Dataset-Catalogue [{"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["New Zealand", "SW Pacific", "Zealandia", "active fault", "antarctica", "earthquake", "geochemistry", "geological stratigraphy", "geology", "geophysics", "geothermal", "hydrogeology", "landslides", "maps", "maps", "metric dating", "mineral", "oceanography", "petroleum", "radiocarbon", "seismology", "topography", "tsunami", "volcano"] [{"institutionName": "GNS Science", "institutionAdditionalName": ["Geological and Nuclear Sciences"], "institutionCountry": "NZL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gns.cri.nz/", "institutionIdentifier": ["ROR:03vaqfv64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.gns.cri.nz/Home/Contact-Us"]}] [{"policyName": "Disclaimer and Copyright", "policyURL": "https://www.gns.cri.nz/Home/Products/Databases/GNS-Science-Dataset-Catalogue"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-sa/4.0/"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.gns.cri.nz/Home/Products/Databases/GNS-Science-Dataset-Catalogue"}] restricted [] ["other"] yes {"api": "https://data.gns.cri.nz/metadata/doc/api/", "apiType": "REST"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "ISO 19115", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/iso-19115"}] {"syndication": "https://data.gns.cri.nz/metadata/srv/eng/rss.search?sortBy=changeDate&georss=simplepoint", "syndicationType": "RSS"} GNS Science use the opensource software geoNetwork for its metadata repository 2021-08-09 2021-09-03 +r3d100013630 Discovery eng [{"additionalName": "The University of Dundee Research Portal", "additionalNameLanguage": "eng"}] https://discovery.dundee.ac.uk/ [] ["Discovery@dundee.ac.uk", "https://discovery.dundee.ac.uk/en/contact/index/"] Discovery is the digital repository of research, and related activities, undertaken at the University of Dundee. The content held in Discovery is varied and ranges from traditional research outputs such as peer-reviewed articles and conference papers, books, chapters and post-graduate research theses and data to records for artefacts, exhibitions, multimedia and software. Where possible Discovery provides full-text access to a version of the research. Discovery is the data catalogue for datasets resulting from research undertaken at the University of Dundee and in some instances the publisher of research data. eng ["institutional"] {"size": "66 Datasets", "updatedp": "2021-08-12"} 2010 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20502 Public Health, Health Services Research, Social Medicine", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "31702 Human Geography", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.dundee.ac.uk/strategy/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "University of Dundee", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.dundee.ac.uk/", "institutionIdentifier": ["ROR:03h2bxq36", "RRID:SCR_000997"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Discovery Policies", "policyURL": "https://www.dundee.ac.uk/library/research/discovery/policies/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] [] {} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2021-08-11 2021-08-14 +r3d100013631 Varieties of Democracy eng [{"additionalName": "V-Dem: Global Standards, Local Knowledge", "additionalNameLanguage": "eng"}] https://www.v-dem.net/en/ [] ["contact@v-dem.net"] Varieties of Democracy (V-Dem) is a new approach to conceptualizing and measuring democracy. We provide a multidimensional and disaggregated dataset that reflects the complexity of the concept of democracy as a system of rule that goes beyond the simple presence of elections. The V-Dem project distinguishes between five high-level principles of democracy: electoral, liberal, participatory, deliberative, and egalitarian, and collects data to measure these principles. eng ["disciplinary"] {"size": "4 datasets", "updatedp": "2021-08-12"} ["eng", "fra", "rus", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.v-dem.net/en/about/about-v-dem/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["indices", "judiciary"] [{"institutionName": "University of Gothenburg, Department of Political Science, V-Dem Institute", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.v-dem.net/en/", "institutionIdentifier": ["Wikidata:Q96413535"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["contact@v-dem.net"]}] [{"policyName": "V-Dem Methodology", "policyURL": "https://www.v-dem.net/en/our-work/methods/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.v-dem.net/files/2/CC-BY-SA-license.txt"}] closed [] [] yes {} [] [] yes unknown [] [] {} V-Dem is covered by Clarivate Data Citation Index To see the funders visit: https://www.v-dem.net/en/about/funders/ GitHub:https://github.com/vdeminstitute 2021-08-11 2021-09-01 +r3d100013633 Scholar@UC eng [] https://scholar.uc.edu/ [] ["https://scholar.uc.edu/contact?locale=en"] Scholar@UC enables the UC community to share research and scholarly works with a worldwide audience. The University of Cincinnati Libraries and IT@UC, with support from the Office of Research, are partnering to support Scholar@UC. eng ["institutional"] {"size": "3.573 datasets", "updatedp": "2021-08-16"} ["eng", "spa", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://scholar.uc.edu/about?locale=en [{"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "University of Cincinnati", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.uc.edu/", "institutionIdentifier": ["ROR:01e3m7079"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://scholar.uc.edu/terms?locale=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://scholar.uc.edu/terms?locale=en"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] [] [] {} ["DOI"] [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Scholar@UC is covered by Clarivate Data Citation Index 2021-08-11 2021-09-09 +r3d100013634 Oak Ridge Leadership Computing Facility Constellation Portal eng [{"additionalName": "OLCF", "additionalNameLanguage": "eng"}] https://doi.ccs.ornl.gov/ [] ["https://www.olcf.ornl.gov/for-users/"] Constellation is a digital object identifier (DOI) based science network for supercomputing data. Constellation makes it possible for OLCF researchers to obtain DOIs for large data collections by tying them together with the associated resources and processes that went into the production of the data (e.g., jobs, collaborators, projects), using a scalable database. It also allows the annotation of the scientific conduct with rich metadata, and enables the cataloging and publishing of the artifacts for open access, aiding in scalable data discovery. OLCF users can use the DOI service to publish datasets even before the publication of the paper, and retain key data even after project expiration. From a center standpoint, DOIs enable the stewardship of data, and better management of the scratch and archival storage. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "307 Condensed Matter Physics", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://doi.ccs.ornl.gov/help/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["biomass fuels", "deep neural network", "measurements", "spectroscopy", "superconductivity"] [{"institutionName": "Oak Ridge National Laboratory", "institutionAdditionalName": ["ORNL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ornl.gov/", "institutionIdentifier": ["ROR:01qz5mb56"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ornl.gov/project/contact-us"]}, {"institutionName": "Oak Ridge National Laboratory, Leadership Computing Facility", "institutionAdditionalName": ["OLCF"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.olcf.ornl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Management Policy", "policyURL": "https://docs.olcf.ornl.gov/accounts/olcf_policy_guide.html#data-management-policy"}, {"policyName": "OLCF Policy Guides", "policyURL": "https://docs.olcf.ornl.gov/accounts/olcf_policy_guide.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://docs.olcf.ornl.gov/data/index.html"}] restricted [] ["unknown"] {"api": "https://docs.olcf.ornl.gov/data/index.html#hsi", "apiType": "other"} ["DOI"] https://docs.olcf.ornl.gov/accounts/frequently_asked_questions.html [] yes yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} Oak Ridge Leadership Computing Facility (OLCF) Constellation Portal is covered by Clarivate Data Citation Index 2021-08-11 2021-11-19 +r3d100013635 NREL Data Catalog eng [] https://data.nrel.gov/ [] ["https://www.nrel.gov/webmaster.html"] The NREL Data Catalog is where descriptive information (i.e., metadata) is maintained about public data resulting from federally funded research conducted by the National Renewable Energy Laboratory (NREL) researchers and analysts. Our Goal: Making Federally Funded Data Publicly Available NREL's mission is to develop clean energy and energy efficiency technologies and practices, advance related science and engineering, and provide knowledge and innovations to integrate energy systems at all scales. The NREL Data Catalog helps accomplish this by ensuring the data behind the science and engineering are well-documented and useful to the scientific community at large. eng ["disciplinary"] {"size": "114 results", "updatedp": "2021-08-25"} ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://data.nrel.gov/about [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["bioenergy", "buildings", "concentrating solar power", "energy analysis", "energy solutions", "geothermal", "grid modernization", "hydrogen and fuel cells", "mobility", "transportation", "water", "wind"] [{"institutionName": "National Renewable Energy Laboratory", "institutionAdditionalName": ["NREL"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrel.gov/", "institutionIdentifier": ["ROR:036266993"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Use Disclaimer Agreement", "policyURL": "https://www.nrel.gov/analysis/transportation-futures/bef-tool-disclaimer.html"}, {"policyName": "Disclaimer", "policyURL": "https://www.nrel.gov/disclaimer.html"}, {"policyName": "Public Access Plan U.S. Department of Energy", "policyURL": "https://www.energy.gov/sites/default/files/2014/08/f18/DOE_Public_Access%20Plan_FINAL.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.nrel.gov/disclaimer.html"}] [] [] yes {"api": "https://developer.nrel.gov/docs/", "apiType": "other"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} NREL Data Catalog is covered by Clarivate Data Citation Index 2021-08-11 2021-08-27 +r3d100013636 NGEE Tropics eng [{"additionalName": "Next-Generation Ecosystem Experiments - Tropics", "additionalNameLanguage": "eng"}] https://ngee-tropics.lbl.gov/ [] [] The future of tropical forests matter to future climate. NGEE-Tropics is advancing model predictions of tropical forest carbon cycle responses to a changing climate over the 21st Century. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20204 Plant Physiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://ngee-tropics.lbl.gov/research/research-overview/ [{"name": "Raw data", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["climate change", "earth system", "ecosystem", "environment", "meteorology", "soil hydrology", "tropical forest", "vegetation", "water-table dynamics"] [{"institutionName": "Berkeley Lab, Earth & Environmental Sciences Area", "institutionAdditionalName": ["EESA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://eesa.lbl.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "U.S. Department of Energy, Office of Science, Office of Biological and Environmental Research", "institutionAdditionalName": ["BER"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/science/ber/biological-and-environmental-research", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "DOE Policy for Digital Research Data Management", "policyURL": "https://www.energy.gov/datamanagement/doe-policy-digital-research-data-management"}, {"policyName": "NGEE-Tropics Data Policy", "policyURL": "https://drive.google.com/file/d/0B5RSGI83Og11cVlGbWcxeW5LQjg/view?resourcekey=0-1GpH0FftntitWwVgduoDsw"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://drive.google.com/file/d/0B5RSGI83Og11cVlGbWcxeW5LQjg/view?resourcekey=0-1GpH0FftntitWwVgduoDsw"}] restricted [] [] {} ["DOI"] https://drive.google.com/file/d/0B5RSGI83Og11cVlGbWcxeW5LQjg/view?resourcekey=0-1GpH0FftntitWwVgduoDsw [] unknown yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} NGEE – Tropics is covered by Clarivate Data Citation Index Led by Berkeley Lab’s Earth and Environmental Sciences Area, NGEE-Tropics is a consortium of scientific partners across five national laboratories and a number of other institutions and federal agencies, see: https://ngee-tropics.lbl.gov/partners-collaborators/ 2021-08-11 2021-09-03 +r3d100013637 Addis Ababa University Research Data Repository eng [{"additionalName": "AAU-Research Data Repository", "additionalNameLanguage": "eng"}] https://rdm.aau.edu.et [] ["adminrdm@aau.edu.et"] Addis Ababa University Research Data Repository holds multi disciplinary datasets produced by members of the university. eng ["institutional"] {"size": "13 dataverses, 1 dataset", "updatedp": "2021-08-17"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] http://www.aau.edu.et/mission-and-vision/ [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["agriculture", "health", "veterinary"] [{"institutionName": "Addis Ababa University", "institutionAdditionalName": ["AAU", "\u12a0\u12f2\u1235 \u12a0\u1260\u1263 \u12e9\u1292\u1268\u122d\u1235\u1272"], "institutionCountry": "ETH", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://aau.edu.et", "institutionIdentifier": ["ROR:038b8e254"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Harvard Dataverse General Terms of Use", "policyURL": "https://dataverse.org/best-practices/harvard-dataverse-general-terms-use"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "CC", "dataUploadLicenseURL": "http://creativecommons.org/licenses/by/4.0/"}] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/latest/api/native-api.html", "apiType": "REST"} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-08-11 2021-08-20 +r3d100013638 DANDI eng [{"additionalName": "DANDI Archive", "additionalNameLanguage": "eng"}, {"additionalName": "Distributed Archives for Neurophysiology Data Integration", "additionalNameLanguage": "eng"}] https://dandiarchive.org/ ["RRID:SCR_017571", "biodbcore-001838"] ["info@dandiarchive.org"] The US BRAIN Initiative archive for publishing and sharing neurophysiology data including electrophysiology, optophysiology, and behavioral time-series, and images from immunostaining experiments. eng ["disciplinary"] {"size": "91 datasets, 42 TB", "updatedp": "2021-08-18"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.dandiarchive.org/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["FAIR", "electrophysiology", "neurophsyiology", "optophysiology"] [{"institutionName": "Dartmouth College", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "http://dartmouth.edu/", "institutionIdentifier": ["ROR:049s0rh22"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Kitware Inc.", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "commercial", "institutionURL": "https://www.kitware.com/", "institutionIdentifier": ["ROR:02s2acn37"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Massachusetts Institute of Technology", "institutionAdditionalName": ["MIT"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://web.mit.edu/", "institutionIdentifier": ["ROR:042nb2s44"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute of Mental Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.ncnp.go.jp/nimh/english/", "institutionIdentifier": ["ROR:04t0s7x83"], "responsibilityStartDate": "2019", "responsibilityEndDate": "2024", "institutionContact": []}, {"institutionName": "The BRAIN Initiative", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://braininitiative.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://spdx.org/licenses/CC-BY-4.0.html"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://spdx.org/licenses/CC-BY-NC-4.0.html"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://spdx.org/licenses/CC0-1.0.html"}] restricted [{"dataUploadLicenseName": "CC-BY-4.0", "dataUploadLicenseURL": "https://spdx.org/licenses/CC-BY-4.0.html"}, {"dataUploadLicenseName": "CC-BY-NC-4.0", "dataUploadLicenseURL": "https://spdx.org/licenses/CC-BY-NC-4.0.html"}, {"dataUploadLicenseName": "CC0-1.0", "dataUploadLicenseURL": "https://spdx.org/licenses/CC0-1.0.html"}] [] yes {"api": "https://api.dandiarchive.org/swagger/", "apiType": "REST"} ["DOI", "other"] ["ORCID"] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "PROV", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/prov"}, {"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Jupyterhub: https://hub.dandiarchive.org GitHub: https://github.com/dandi/dandiarchive Grant: https://grantome.com/grant/NIH/R24-MH117295-01A1 2021-08-13 2021-08-20 +r3d100013639 Buildings Data Platform eng [{"additionalName": "Benchmark Datasets of Building Environmental Conditions and Occupancy Parameters", "additionalNameLanguage": "eng"}] https://bbd.labworks.org/ [] ["bbdteam@pnnl.gov"] The Buildings Data Platform mission is to collect and curate high-resolution, well-calibrated time series of building operational and indoor/outdoor environmental data, which are crucial to understanding and optimizing building energy efficiency performance and demand flexibility capabilities as well as benchmarking energy algorithms. eng ["disciplinary"] {"size": "12 files; 3.19 GB; 6 datasets", "updatedp": "2021-08-19"} 2020-10-1 ["eng"] [{"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "408 Electrical Engineering", "scheme": "DFG"}, {"name": "40803 Electrical Energy Generation, Distribution, Application", "scheme": "DFG"}, {"name": "410 Construction Engineering and Architecture", "scheme": "DFG"}, {"name": "41001 Architecture, Building and Construction History, Sustainable Building Technology, Building Design", "scheme": "DFG"}, {"name": "41004 Sructural Engineering, Building Informatics, Construction Operation", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}, {"name": "45 Construction Engineering and Architecture", "scheme": "DFG"}] https://bbd.labworks.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["HVAC", "Net-Zero Energy Residential Test Facility", "bbd", "building automation system", "building energy", "buildings benchmarking datasets", "built environment", "commercial", "electricity", "energy consumption", "energy use", "human-building interaction", "lighting", "occupancy", "office", "power", "power consumption"] [{"institutionName": "U.S. Department of Energy, Office of Energy Efficiency and Renewable Energy, Building Technologies Office", "institutionAdditionalName": ["DOE EERE BTO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.energy.gov/eere/buildings/building-technologies-office", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.energy.gov/eere/office-energy-efficiency-and-renewable-energy-contacts"]}] [{"policyName": "FAQs", "policyURL": "https://bbd.labworks.org/faq"}, {"policyName": "Web Policies", "policyURL": "https://www.energy.gov/about-us/web-policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] ["other"] yes {} ["DOI"] ["ORCID"] yes yes [] [] {} 2021-08-17 2021-08-30 +r3d100013640 Panel Data Research Center at Keio University Data eng [{"additionalName": "PDRC Data", "additionalNameLanguage": "eng"}] https://www.pdrc.keio.ac.jp/en/paneldata/datasets/ [] ["https://www.pdrc.keio.ac.jp/en/inquiry/"] The objective of the PDRC is to construct and collect a well-designed and large-scale panel data set and provide rigorous empirical studies based on these data sets. The data will enable us (i) to provide international comparisons and fact-findings on the household income changes, social mobility, changes in employment status and the investment activities; (ii) to verify the hypotheses related to the dynamics of economic behavior derived from economic theory; and (iii) to evaluate important policy changes in the tax system and social security program, which might have lagged effects. eng ["institutional"] {"size": "", "updatedp": ""} 2010 ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "11205 Statistics and Econometrics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.pdrc.keio.ac.jp/en/about/overview/ [{"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["CNEF", "Cross-National Equivalent File", "GEES", "Great East Japan Earthquake Special Survey", "JCPS", "JHPS", "JPSC", "Japan Child Panel Survey", "Japan Household Panel Survey", "Japanese Panel Survey of Consumers", "KHPS", "microdata", "survey"] [{"institutionName": "Keio University", "institutionAdditionalName": [], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.keio.ac.jp/en/", "institutionIdentifier": ["ROR:02kn6nx58"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Keio University, Panel Data Research Center", "institutionAdditionalName": ["PDRC"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.pdrc.keio.ac.jp/en/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Acquiring the Data", "policyURL": "https://www.pdrc.keio.ac.jp/en/paneldata/howto/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.pdrc.keio.ac.jp/en/paneldata/howto/"}] restricted [] [] {} [] https://www.pdrc.keio.ac.jp/en/paneldata/howto/ [] yes unknown [] [] {} Partners: https://www.pdrc.keio.ac.jp/en/about/partners/ Panel Data Research Center at Keio University Data is covered by Clarivate Data Citation Index. 2021-08-19 2021-09-08 +r3d100013641 International Soil Carbon Network eng [{"additionalName": "ISCN", "additionalNameLanguage": "eng"}] https://iscn.fluxdata.org/ [] ["support@george.lbl.gov"] The International Soil Carbon Network (ISCN) is a science-based network that facilitates data sharing, assembles databases, identifies gaps in data coverage, and enables spatially explicit assessments of soil carbon in context of landscape, climate, land use, and biotic variables. The ISCN Database is an evolving data resource. Because it is too large to present in one file, it is available as a set of documents, reports, and tables; because it changes over time, it is important to note the version date stamped in the upper-left corner of any dataset that you access. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20701 Soil Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://iscn.fluxdata.org/data/data-information/data-policy/ [{"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biogeochemistry", "carbon", "climate", "landscape", "soil"] [{"institutionName": "International Soil Carbon Network", "institutionAdditionalName": ["ICSN"], "institutionCountry": "AAA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://iscn.fluxdata.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["support@george.lbl.gov"]}] [{"policyName": "Policy on Data Contribution", "policyURL": "https://iscn.fluxdata.org/data/data-information/data-policy/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://iscn.fluxdata.org/data/data-information/data-policy/"}] restricted [{"dataUploadLicenseName": "Contribute Data", "dataUploadLicenseURL": "https://iscn.fluxdata.org/data/contribute-data/"}] [] {} ["DOI"] https://iscn.fluxdata.org/data/data-information/data-policy/ [] unknown yes [] [] {} Partner networks: https://iscn.fluxdata.org/network/partner-networks/ International Soil Carbon Network is covered by Clarivate Data Citation Index. GitHub: https://github.com/ISCN/ 2021-08-19 2021-09-08 +r3d100013642 HepSim eng [] https://atlaswww.hep.anl.gov/hepsim/ [] ["chekanov@anl.gov", "hepsim@anl.gov"] HepSim is a public repository with Monte Carlo simulations for particle-collision experiments. It contains predictions from leading-order (LO) parton shower models, next-to-leading order (NLO) and NLO with matched parton showers. It also includes Monte Carlo events after fast ("parametric") and full (Geant4) detector simulations and event reconstruction. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "33 Mathematics", "scheme": "DFG"}] https://atlaswww.hep.anl.gov/hepsim/about.php [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Monte-Carlo-Simulation", "stochastic"] [{"institutionName": "U.S. Department of Energy, Office of Scientific and Technical Information", "institutionAdditionalName": ["OSTI"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.osti.gov/", "institutionIdentifier": ["ROR:031478740"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["comments@osti.gov"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC0", "dataLicenseURL": "https://atlaswww.hep.anl.gov/hepsim/about.php"}] restricted [{"dataUploadLicenseName": "get involved", "dataUploadLicenseURL": "https://atlaswww.hep.anl.gov/hepsim/request.php"}] [] {} ["DOI"] https://atlaswww.hep.anl.gov/hepsim/about.php ["AuthorClaim"] unknown unknown [] [] {} HepSim is covered by Clarivate Data Citation Index. Mirrors: http://portal.nersc.gov/project/m1758/hepsim/, http://project-hepsim.web.cern.ch/, https://hepsim.jlab.org/ 2021-08-19 2021-09-26 +r3d100013645 TemplateFlow eng [] https://templateflow.org ["OpenDOAR:10204"] ["nipreps@gmail.com"] Reference anatomies of the brain and corresponding atlases play a central role in experimental neuroimaging workflows and are the foundation for reporting standardized results. The choice of such references —i.e., templates— and atlases is one relevant source of methodological variability across studies, which has recently been brought to attention as an important challenge to reproducibility in neuroscience. TemplateFlow is a publicly available framework for human and nonhuman brain models. The framework combines an open database with software for access, management, and vetting, allowing scientists to distribute their resources under FAIR —findable, accessible, interoperable, reusable— principles. TemplateFlow supports a multifaceted insight into brains across species, and enables multiverse analyses testing whether results generalize across standard references, scales, and in the long term, species, thereby contributing to increasing the reliability of neuroimaging results. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "atlas", "neuroimaging", "templates"] [{"institutionName": "The NiPreps Community", "institutionAdditionalName": ["NeuroImaging PREProcessing Community"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://github.com/nipreps", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "GitHub Terms of Service", "policyURL": "https://docs.github.com/en/github/site-policy/github-terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://github.com/templateflow/tpl-UNCInfant/blob/bece8073bf46e8e6f0f8536f219168a2f64e9b83/LICENSE"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://github.com/templateflow/templateflow.github.io/blob/f8c67186821004fc477ebfce8cd75f6adc563a46/LICENSE"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://github.com/templateflow/tpl-MNI152NLin6Sym/blob/5960750d255694c04b0066fb029cd2a966fee482/LICENSE"}] restricted [] ["other"] yes {"api": "https://www.templateflow.org/usage/client/", "apiType": "other"} [] https://www.templateflow.org/usage/citing/ [] yes yes [] [] {} GitHub: https://github.com/templateflow/ 2021-08-27 2021-09-04 +r3d100013646 Brain Analysis Library of Spatial maps and Atlases eng [{"additionalName": "BALSA", "additionalNameLanguage": "eng"}] https://balsa.wustl.edu ["biodbcore-001835"] ["HCP-Users@humanconnectome.org", "https://balsa.wustl.edu/about/help"] Brain Analysis Library of Spatial maps and Atlases (BALSA) is a database for hosting and sharing neuroimaging and neuroanatomical datasets for human and primate species. BALSA houses curated, user-created Study datasets, extensively analyzed neuroimaging data associated with published figures and Reference datasets mapped to brain atlas surfaces and volumes in human and nonhuman primates as a general resource (e.g., published cortical parcellations). eng ["disciplinary"] {"size": "", "updatedp": ""} 2016 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "20602 Cellular Neuroscience", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://balsa.wustl.edu/about/index [{"name": "Images", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["biological imaging", "brain imaging", "magnetic resonance imaging", "primate"] [{"institutionName": "The BALSA Foundation", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "http://www.balsafoundation.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["http://www.balsafoundation.org/contact"]}, {"institutionName": "Washington University in St. Louis, BALSA Group", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://fuse.wustl.edu/balsa-group-washu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions for Uploading Data", "policyURL": "https://balsa.wustl.edu/terms/submission"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [{"dataUploadLicenseName": "Submitting Data to BALSA", "dataUploadLicenseURL": "https://balsa.wustl.edu/about/submission"}] [] {} [] [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} is covered by Elsevier. 2021-09-02 2021-09-25 +r3d100013647 CloudFlame eng [] https://cloudflame.kaust.edu.sa ["FAIRsharing_doi:10.25504/FAIRsharing.agwgmc"] ["cloudflame@kaust.edu.sa", "https://cloudflame.kaust.edu.sa/contact"] CloudFlame is a cloud-based cyberinfrastructure for managing combustion research and enabling collaboration. The infrastructure includes both software and hardware components, and is freely offered to anyone with a valid professional or educational affiliation. This website provides a front-end for data search tools, web-based numerical simulations, and discussion forums. We have marked this resource as having an Uncertain status because we have been unable to confirm certain metadata with the resource contact. If you have any information about the current status of this project, please get in touch. eng ["disciplinary"] {"size": "", "updatedp": ""} 2013 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://cloudflame.kaust.edu.sa/services [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["chemical kinetics", "fuel tools", "mechanisms", "simulations"] [{"institutionName": "Clean Combustion Research Center", "institutionAdditionalName": ["CCRC"], "institutionCountry": "SAU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ccrc.kaust.edu.sa/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["cloudflame@kaust.edu.sa"]}] [{"policyName": "Disclaimer", "policyURL": "https://cloudflame.kaust.edu.sa/Disclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [] restricted [] [] {} [] [] unknown unknown [] [] {} is covered by Elsevier. 2021-09-02 2021-11-11 +r3d100013648 Radiocarbon Palaeolithic Europe Database eng [] https://ees.kuleuven.be/geography/projects/14c-palaeolithic/download/index.html ["biodbcore-001836"] ["https://ees.kuleuven.be/geography/contact/index.html", "pierre.vermeersch@kuleuven.be"] The Radiocarbon Palaeolithic Europe Database stores available radiometric data taken from literature and from other more restricted databases. Data is collected by continuous checking of newly published articles in hundreds of international and regional scientific journals and in collections or books dealing with a particular period or a specific Paleolithic site. User submissions are also accepted. Please note that this database is only available for download and local use via Microsoft Access or, in a more limited way, via Excel. As such, its accessibility is limited. eng ["disciplinary"] {"size": "13.419 site forms", "updatedp": "2021-09-23"} 2002 ["eng", "nld"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31301 Atmospheric Science", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://ees.kuleuven.be/ [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["archeology", "carbon dating", "paleolithic", "radiometric dating"] [{"institutionName": "KU Leuven, Department of Earth and Environmental Sciences, Division of Geography & Tourism", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://ees.kuleuven.be/geography/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://ees.kuleuven.be/geography/contact/index.html"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://ees.kuleuven.be/geography/projects/14c-palaeolithic/index.html"}] closed [] [] {} [] https://ees.kuleuven.be/geography/projects/14c-palaeolithic/index.html [] unknown yes [] [] {} is covered by Elsevier. 2021-09-03 2021-09-25 +r3d100013649 WOVOdat eng [{"additionalName": "Database of Volcanic Unrest", "additionalNameLanguage": "eng"}] https://www.wovodat.org/ ["biodbcore-001855"] ["https://www.wovodat.org/populate/contact_us_form.php", "wovodat@wovodat.org"] WOVOdat is a comprehensive global database on volcanic unrest aimed at understanding pre-eruptive processes and improving eruption forecasts. WOVOdat is brought to you by WOVO (World Organization of Volcano Observatories) and presently hosted at the Earth Observatory of Singapore. eng ["disciplinary"] {"size": "", "updatedp": ""} 2009 ["eng"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "316 Geochemistry, Mineralogy and Crystallography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.wovodat.org/about/volcanicunrest.php [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["eruption", "gas emission", "ground deformation", "seismic activity", "volcanic activities", "volcanic unrest"] [{"institutionName": "Earth Observatory of Singapore", "institutionAdditionalName": [], "institutionCountry": "SGP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://earthobservatory.sg/", "institutionIdentifier": ["ROR:01167a838"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "World Organization of Volcano Observatories", "institutionAdditionalName": ["WOVO"], "institutionCountry": "AAA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://wovo.iavceivolcano.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data Policy for WOVOdat", "policyURL": "https://wovodat.org/populate/dataPolicy.php"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://wovodat.org/populate/dataPolicy.php"}] restricted [{"dataUploadLicenseName": "Policy re: data contributions", "dataUploadLicenseURL": "https://wovodat.org/populate/dataPolicy.php"}] ["MySQL"] {} [] https://wovodat.org/populate/dataPolicy.php [] unknown unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Contributors: Smithsonian GVP, GVM, JMA, NIED, USGS, USGS-VDAP, GNS, UNAVCO, PHIVOLCS, CVGHM, IGN, Cornell University. World Organization of Volcano Observatories (WOVO). is covered by Elsevier. 2021-09-03 2021-09-24 +r3d100013650 Signaling Pathways Project eng [{"additionalName": "SSP", "additionalNameLanguage": "eng"}] https://www.signalingpathways.org/datasets/index.jsf ["FAIRsharing_DOI:10.25504/FAIRsharing.WxI96O", "RRID:SCR_018412"] ["https://www.signalingpathways.org/contact.jsf", "support@signalingpathways.org"] The goal of the Signaling Pathways Project knowledgebase is to allow bench researchers to routinely ask sophisticated questions of the universe of multi-omics data points generated by the cellular signaling community. SPP is dedicated to helping researchers to make sense of the often overwhelming volume of multi-omics information in the field of cellular signaling. eng ["disciplinary"] {"size": "1.595 datasets", "updatedp": "2021-09-07"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://www.signalingpathways.org/about/index.jsf [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Ominer", "cell signaling", "nuclear receptor signaling", "reagents", "receptor", "transcriptomine"] [{"institutionName": "American Thyroid Association", "institutionAdditionalName": ["ATA"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.thyroid.org/", "institutionIdentifier": ["ROR:00nhwe772"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "NIDDK Information Network", "institutionAdditionalName": ["dkNET"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://dknet.org/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Signaling Pathways Project", "institutionAdditionalName": ["SSP"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.signalingpathways.org/index.jsf", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.signalingpathways.org/contact.jsf"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [] [] yes {"api": "https://www.signalingpathways.org/docs/", "apiType": "REST"} ["DOI"] [] yes yes [] [] {} Signaling Pathways Project - Collaborations: https://www.signalingpathways.org/collaborations.jsf In our previous incarnation as the Nuclear Receptor Signaling Atlas (NURSA) https://www.re3data.org/repository/r3d100011298, we curated GEO-archived RNA-Seq and expression array, or transcriptomic, datasets involving genetic or small molecule manipulation of nuclear receptors. GitHub: https://github.com/signaling-pathways-project/ 2021-09-07 2021-09-10 +r3d100013652 correspSearch - Search scholarly editions of letters eng [{"additionalName": "correspSearch - Briefeditionen vernetzen", "additionalNameLanguage": "deu"}] https://correspsearch.net/en/home.html [] ["correspSearch@bbaw.de"] The web service correspSearch aggregates metadata of letters from printed and digital scholarly editions and publications. It offers the aggregated correspondence metadata both via a feature-rich interface and via an API. The letter metadata are provided by scholarly projects of different institutions in a standardised, TEI-XML-based exchange format and and by using IDs from authority files (GeoNames, GND, VIAF etc.). The web service itself does not set a spatial or temporal collection focus. Currently, the time frame of the aggregated correspondence data ranges from 1500 to the 20th century. eng ["disciplinary"] {"size": "Metadata for ~150.000 letters", "updatedp": "2021-09-10"} 2014 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "10801 History of Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://correspsearch.net/en/about.html [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["serviceProvider"] ["correspondence", "digital edition"] [{"institutionName": "Berlin-Brandenburg Academy of Sciences and Humanities", "institutionAdditionalName": ["BBAW", "Berlin-Brandenburgische Akademie der Wissenschaften"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.bbaw.de", "institutionIdentifier": ["ROR:05jgq9443"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Deutsche Forschungsgemeinschaft", "institutionAdditionalName": ["DFG", "German Research Foundation"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.dfg.de", "institutionIdentifier": ["ROR:018mejw64"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.de"}] restricted [{"dataUploadLicenseName": "Step 5: Publishing and Registration", "dataUploadLicenseURL": "https://correspsearch.net/en/manual.html"}] [] {"api": "https://correspsearch.net/en/api.html", "apiType": "other"} ["none"] https://correspsearch.net/en/citation.html [] unknown unknown [] [] {"syndication": "https://correspsearch.net/news.rss", "syndicationType": "RSS"} GitHub: https://github.com/correspSearch 2021-09-09 2021-09-12 +r3d100013656 IIT Dataverse eng [{"additionalName": "Italian Institute of Technology Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.iit.it/ [] ["rdm@iit.it"] IIT Dataverse is the institutional research data repository of the Istituto Italiano di Tecnologia. IIT Dataverse has been operative since May 2021 and is currently open to IIT-affiliated researchers for research data deposition and sharing. eng ["institutional"] {"size": "93 dataverses; 2 datasets; 7 files", "updatedp": "2021-09-21"} 2021-05-19 ["eng", "ita"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "406 Materials Science", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40904 Artificial Intelligence, Image and Language Processing", "scheme": "DFG"}, {"name": "43 Materials Science and Engineering", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Italian Institute of Technology", "institutionAdditionalName": ["Fondazione Istituto Italiano di Tecnologia", "IIT", "Istituto Italiano di Tecnologia"], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.iit.it/", "institutionIdentifier": ["ROR:042t93s57"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "IIT Dataverse General Terms of Use", "policyURL": "https://multimedia.iit.it/asset-bank/assetfile/17166.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [] ["DataVerse"] yes {"api": "https://guides.dataverse.org/en/5.3/api/index.html", "apiType": "other"} ["DOI"] https://dataverse.org/best-practices/data-citation [] yes unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-09-21 2021-09-23 +r3d100013658 SciELO Data eng [] https://data.scielo.org/ [] ["data@scielo.org"] SciELO Data is a multidisciplinary repository for deposition, preservation and dissemination of research data from articles submitted and approved for publication, already published in SciELO Network journals or deposited in SciELO Preprints. eng ["institutional"] {"size": "16 dataverses, 32 datasets", "updatedp": "2021-09-27"} 2020-08-20 ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.scielo.org/en/about-scielo/scielo-data-en/about-scielo-data/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "curated", "multidisciplinary"] [{"institutionName": "Scientific Eletronic Library Online", "institutionAdditionalName": ["SciELO", "Scientific Eletronic Library Online (SciELO)"], "institutionCountry": "BRA", "responsabilityType": ["funding", "general", "technical"], "institutionType": "non-profit", "institutionURL": "https://scielo.org/", "institutionIdentifier": ["ROR:0431zrt90"], "responsibilityStartDate": "2020", "responsibilityEndDate": "", "institutionContact": ["scielo@scielo.org"]}] [{"policyName": "SciELO Data Terms and Conditions of Use", "policyURL": "https://scielo.org/en/about-scielo/scielo-data-en/terms-data/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0/"}] restricted [{"dataUploadLicenseName": "DataverseNO Deposit agreement", "dataUploadLicenseURL": "https://site.uit.no/dataverseno/about/policy-framework/deposit-agreement/"}] ["DataVerse"] yes {} ["DOI"] https://wp.scielo.org/wp-content/uploads/guia-de-citacao-de-dados_pt.pdf ["ORCID"] yes yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-09-27 2021-09-30 +r3d100013660 Middlesex University Research Data Repository eng [{"additionalName": "Middlesex University Figshare", "additionalNameLanguage": "eng"}] https://mdx.figshare.com/ [] ["research-data@mdx.ac.uk"] Research Data Repository for Middlesex University, London, UK eng ["institutional"] {"size": "169 records", "updatedp": "2021-09-28"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Middlesex University", "institutionAdditionalName": ["MDX"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mdx.ac.uk/", "institutionIdentifier": ["ROR:01rv4p989"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Figshare terms and conditions", "policyURL": "https://figshare.com/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] restricted [] ["other"] yes {"api": "https://docs.figshare.com/", "apiType": "REST"} ["DOI"] [] yes unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://mdx.figshare.com/rss/portal/mdx", "syndicationType": "RSS"} 2021-09-28 2021-09-30 +r3d100013661 CUHK Research Data Repository eng [] https://researchdata.cuhk.edu.hk ["https://researchdata.cuhk.edu.hk"] ["data@cuhk.edu.hk"] The CUHK Research Data Repository serves as an institutional research data repository for The Chinese University of Hong Kong (CUHK). It facilitates CUHK researchers to deposit, publish, and curate their research data and for the worldwide to discover, access, and reuse the research data outputs at CUHK. eng ["institutional"] {"size": "", "updatedp": ""} 2021-09-29 ["eng", "zho"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://libguides.lib.cuhk.edu.hk/datarepository/cuhkresearchdata [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["FAIR", "TRUST", "multidisciplinary"] [{"institutionName": "The Chinese University of Hong Kong", "institutionAdditionalName": ["\u9999\u6e2f\u4e2d\u6587\u5927\u5b78"], "institutionCountry": "HKG", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://cuhk.edu.hk", "institutionIdentifier": ["ROR:00t33hh48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["data@cuhk.edu.hk"]}] [{"policyName": "Terms and Conditions on Access and Reuse of Data from the CUHK Research Data Repository", "policyURL": "https://libguides.lib.cuhk.edu.hk/datarepository/termsonaccess"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {} ["DOI"] https://libguides.lib.cuhk.edu.hk/datarepository/guidelines#s-lg-box-wrapper-25663089 [] unknown yes [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-09-30 2021-10-30 +r3d100013663 Clinical Research Metadata Repository eng [{"additionalName": "ECRIN MDR", "additionalNameLanguage": "eng"}] https://crmdr.org/ ["biodbcore-001575"] ["christianohmann@outlook.de", "jacques.demotes@ecrin.org", "maria.panagiotopoulou@ecrin.org", "mdr.team@ecrin.org", "stevecanham@outlook.com"] The MDR harvests metadata on data objects from a variety of sources within clinical research (e.g. trial registries, data repositories) and brings that together in a single searchable portal. The metadata is concerned with discoverability, access and provenance of the data objects (which because the data may be sensitive will often be available under a controlled access regime). At the moment (01/2021) the MDR obtains study data from: Clinical Trials.gov (CTG), The European Clinical Trials Registry (EUCTR), ISRCTN, The WHO ICTRP eng ["disciplinary"] {"size": "600.000 study metadata records; 1.000.000 data object records", "updatedp": "2021-10-12"} 2021 ["ces", "deu", "eng", "fra", "ita", "pol", "por", "slk"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://ecrin-mdr.online/index.php/Project_Overview [{"name": "other", "scheme": "parse"}] ["serviceProvider"] ["FAIR", "access", "clinical research", "clinical study", "discovery", "metadata", "provenance"] [{"institutionName": "European Clinical Research Infrastructures Network", "institutionAdditionalName": ["ECRIN"], "institutionCountry": "EEC", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ecrin.org/", "institutionIdentifier": ["ROR:051ycea61"], "responsibilityStartDate": "2017", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "National Institute for Nuclear Physics", "institutionAdditionalName": ["INFN", "Istituto Nazionale di Fisica Nucleare"], "institutionCountry": "ITA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://home.infn.it/?lang=en", "institutionIdentifier": ["ROR:005ta0471"], "responsibilityStartDate": "2017", "responsibilityEndDate": "2020", "institutionContact": []}, {"institutionName": "Onedata", "institutionAdditionalName": [], "institutionCountry": "AAA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://onedata.org/", "institutionIdentifier": [], "responsibilityStartDate": "2017", "responsibilityEndDate": "2020", "institutionContact": []}] [{"policyName": "Legal Diclaimer", "policyURL": "https://ecrin-mdr.online/index.php/Legal_Diclaimer"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "Public Domain", "databaseLicenseURL": "https://ecrin-mdr.online/index.php/Legal_Diclaimer"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://ecrin-mdr.online/index.php/MDR_Data_Sources"}] closed [] [] {"api": "https://crmdr.org/api/rest", "apiType": "REST"} [] [] yes unknown [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} GitHub: https://github.com/orgs/ecrin-github/repositories The MDR system was initially designed and developed in the context of the H2020 eXtreme - DataCloud(XDC) project, funded by the EU under grant agreement 777367. The next stage of development of the MDR is taking place within the H2020 EOSC-Life project, under EU grant agreement grant 824087, and is being largely carried out by ECRIN. The intention is to integrate that portal with the European Open Science Cloud's EOSC-hub services. 2021-10-10 2021-10-14 +r3d100013664 Forschungsdaten­zentrum der Bundesanstalt für Arbeitsschutz und Arbeitsmedizin deu [{"additionalName": "Data Centre of the Federal Institute for Occupational Safety and Health", "additionalNameLanguage": "eng"}, {"additionalName": "FDZ-BAuA", "additionalNameLanguage": "deu"}] https://www.baua.de/DE/Angebote/Forschungsdaten/Forschungsdaten_node.html [] ["forschungsdaten@baua.bund.de", "https://www.baua.de/EN/Services/Contact/Contact_node.html", "info-zentrum@baua.bund.de"] The Research Data Center of the Federal Institute for Occupational Safety and Health (FDZ-BAuA) provides selected data from BAuA research. The Public Use Files can be used by scientists as well as by the interested public. eng ["institutional"] {"size": "", "updatedp": ""} ["deu"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://www.baua.de/DE/Angebote/Forschungsdaten/Forschungsdaten_node.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["chemicals law", "health data", "mental health", "product safety", "scientific use files", "survey", "technical rules"] [{"institutionName": "Federal Institute for Occupational Safety and Health", "institutionAdditionalName": ["BAuA", "Bundesanstalt f\u00fcr Arbeitsschutz und Arbeitsmedizin"], "institutionCountry": "DEU", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.baua.de/DE/Home/Home_node.html", "institutionIdentifier": ["ROR:01aa1sn70"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.baua.de/EN/Services/Contact/Contact_node.html", "info-zentrum@baua.bund.de"]}] [{"policyName": "Nutzungsbedingungen Public Use Files (PUF)", "policyURL": "https://www.baua.de/DE/Angebote/Forschungsdaten/Formular/Nutzungsbedingungen.html"}, {"policyName": "Wie wird der Zugang zu den Scientific Use Files gew\u00e4hrt", "policyURL": "https://www.baua.de/DE/Angebote/Forschungsdaten/FAQ/FAQ_node.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.baua.de/DE/Angebote/Forschungsdaten/Formular/Nutzungsbedingungen.html"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.baua.de/DE/Angebote/Forschungsdaten/pdf/Antrag-Datennutzung.pdf?__blob=publicationFile&v=12"}, {"dataLicenseName": "other", "dataLicenseURL": "https://www.baua.de/DE/Angebote/Forschungsdaten/pdf/Vertragsmuster.pdf?__blob=publicationFile&v=12"}] closed [] [] {} ["DOI"] https://www.baua.de/DE/Angebote/Forschungsdaten/pdf/Zitationsvorgaben.pdf?__blob=publicationFile&v=7 [] yes unknown ["RatSWD"] [] {} 2021-10-12 2021-10-17 +r3d100013665 UdG Digital Repository eng [{"additionalName": "DUGiDocs", "additionalNameLanguage": "cat"}, {"additionalName": "Repositori Digital de la UdG", "additionalNameLanguage": "cat"}, {"additionalName": "Repositorio Digital de la UdG", "additionalNameLanguage": "spa"}] https://dugi-doc.udg.edu/ ["OpenDOAR:5533", "ROAR:309"] ["biblioteca.projectes@udg.edu", "https://dugi-doc.udg.edu/contact"] DUGiDocs is the institutional repository of the Universitat de Girona. Its aim is to preserve, spread and make visible the intellectual production issued from research and teaching lead at the UdG, such as degree final reports, master reports and doctorate research reports by university students as well as articles in scientific periodicals. Moreover it includes indexing and content description tools, makes visualization from many other internet sites easier (interoperability) and it also includes open access. eng ["institutional"] {"size": "", "updatedp": ""} ["cat", "eng", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://dugi-doc.udg.edu/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["RNA", "computational biology", "diagnostic imaging", "endometri", "magnetic resonance imaging", "systems biology"] [{"institutionName": "Universitat de Girona", "institutionAdditionalName": ["Universidad de Gerona", "University of Girona"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.udg.edu/en/", "institutionIdentifier": ["Crossref:100008722", "GRID:grid.5319.e", "OrgRef:61405", "ROR:01xdxns91", "isni:0000000121797512"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.udg.edu/ca/formulari-dinformacio"]}] [{"policyName": "Acord per l\u2019aprovaci\u00f3 del mandat institucional d\u2019acc\u00e9s obert de la Universitat de Girona", "policyURL": "http://hdl.handle.net/10256/19578"}, {"policyName": "Protecci\u00f3 de dades", "policyURL": "https://www.udg.edu/ca/protecciodedades"}, {"policyName": "Reglament", "policyURL": "https://seu.udg.edu/ca-es/serveis-dinformacio/boudg/ebou/disposicio/595?_ga=2.109908741.1098171349.1634193617-858535811.1584369390"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.ca"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DSpace"] {"api": "http://dugi-doc.udg.edu/dspace-oai/openaire_data?verb=ListMetadataFormats", "apiType": "OAI-PMH"} ["hdl"] ["ORCID", "ResearcherID"] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/abcd-access-biological-collection-data"}] {} 2021-10-14 2021-10-22 +r3d100013666 neuGRID eng [] https://neugrid2.eu [] ["admin@neugrid2.eu"] NeuGRID is a secure data archiving and HPC processing system. The neuGRID platform uses a robust infrastructure to provide researchers with a simple interface for analysing, searching, retrieving and disseminating their biomedical data. With hundreds of investigators across the globe and more than 10 million of downloadable attributes, neuGRID aims to become a widespread resource for brain analyses. NeuGRID platform guarantees reliability with a fault-tolerant network to prevent system failure. eng ["disciplinary"] {"size": "5.000 subjects from 6 multi-centric studies", "updatedp": "2021-10-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "206 Neurosciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.neugrid2.eu/index.php/introduction/ [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["AI", "brain", "neuroimaging"] [{"institutionName": "H\u00f4pitaux Universitaires Gen\u00e8ve", "institutionAdditionalName": [], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.hug.ch/", "institutionIdentifier": ["ROR:01m1pv723"], "responsibilityStartDate": "", "responsibilityEndDate": "2021", "institutionContact": []}, {"institutionName": "IRCCS Centro San Giovanni di Dio Fatebenefratelli", "institutionAdditionalName": [], "institutionCountry": "ITA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.fatebenefratelli.it/strutture/irccs-brescia", "institutionIdentifier": ["ROR:02davtb12"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "closed", "dataAccessRestriction": ["other"]}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.neugrid2.eu/index.php/terms-of-use/"}] restricted [] [] {} ["none"] [] unknown unknown [] [] {} Collaborations: https://www.neugrid2.eu/index.php/collaborations/ 2021-10-15 2021-12-17 +r3d100013667 GeneCorner Plasmid Collection eng [{"additionalName": "BCCM/GeneCorner Plasmid Collection", "additionalNameLanguage": "eng"}, {"additionalName": "Belgian Co-Ordinated Collections Of Micro-Organisms/GeneCorner Plasmid Collection", "additionalNameLanguage": "eng"}] https://bccm.belspo.be/about-us/bccm-genecorner ["FAIRsharing_doi:10.25504/fairsharing.k4yzh", "RRID:SCR_007193", "RRID:nif-0000-30146"] ["bccm.genecorner@UGent.be"] The BCCM/GeneCorner Plasmid Collection accepts plasmids from and distributes plasmids to researchers worldwide. Funding by the Belgian Science Policy (Belspo) allowed BCCM/GeneCorner to evolve into a unique plasmid repository in Europe. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "fra", "nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] [{"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["gene expression", "plasmid host strain", "plasmids"] [{"institutionName": "Belgian Science Policy Office", "institutionAdditionalName": ["belspo"], "institutionCountry": "BEL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.belspo.be", "institutionIdentifier": ["ROR:01fapfv42"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ghent University", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ugent.be/en", "institutionIdentifier": ["ROR:00cv9y106"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ghent University, Department of Biomedical Molecular Biology, BCCM/GeneCorner", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.genecorner.ugent.be/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Ghent University, VIB-UGent Center for Inflammation Research", "institutionAdditionalName": [], "institutionCountry": "BEL", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.irc.ugent.be/", "institutionIdentifier": ["ROR:04q4ydz28"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BCCM General Conditions of Material Transfer", "policyURL": "https://bccm.belspo.be/legal/mta"}, {"policyName": "BCCM website legal notice", "policyURL": "https://bccm.belspo.be/legal/disclaimer"}, {"policyName": "Implementing the Nagoya Protocol in microbiology", "policyURL": "https://bccm.belspo.be/legal/nagoya"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://bccm.belspo.be/legal/disclaimer"}] restricted [{"dataUploadLicenseName": "BCCM Material Deposit Agreement", "dataUploadLicenseURL": "https://bccm.belspo.be/legal/mda"}] [] {} ["none"] [] unknown yes [] [] {} Partners, host-institutes and collections: https://bccm.belspo.be/knowledge/partners 2021-10-18 2021-10-23 +r3d100013668 bio.tools eng [] https://bio.tools ["biodbcore-001815"] ["registry-support@elixirmail.cbs.dtu.dk"] bio.tools is a software registry for bioinformatics and the life sciences. eng ["disciplinary"] {"size": "22.612 tools", "updatedp": "2021-10-25"} 2015 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20107 Bioinformatics and Theoretical Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://bio.tools/about [{"name": "Plain text", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}] ["serviceProvider"] [] [{"institutionName": "ELIXIR Denmark", "institutionAdditionalName": [], "institutionCountry": "DNK", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://elixir-europe.org/about-us/who-we-are/nodes/denmark", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Ministry of Higher Education and Science", "institutionAdditionalName": ["Uddannelses- og Forskningsministeriet"], "institutionCountry": "DNK", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://ufm.dk/en/the-ministry/organisation/the-ministry", "institutionIdentifier": ["ROR:03ge1nb22"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "BSD", "dataLicenseURL": "https://spdx.org/licenses/BSD-3-Clause"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://spdx.org/licenses/CC-BY-4.0"}] restricted [] ["other"] {"api": "https://biotools.readthedocs.io/en/latest/api_usage_guide.html", "apiType": "REST"} ["other"] https://biotools.readthedocs.io/en/latest/publications.html#citation ["ORCID"] yes unknown [] [] {} GitHub: https://github.com/bio-tools/biotoolsRegistry 2021-10-21 2021-10-27 +r3d100013670 govinfo eng [{"additionalName": "U.S. Government Information", "additionalNameLanguage": "eng"}] https://www.govinfo.gov [] ["https://www.govinfo.gov/contact"] GPO’s govinfo system is an ISO 16363 certified Trustworthy Digital Repository that ensures free online access to current and historical information from all three branches of the United States Federal Government today and into the future. eng ["disciplinary"] {"size": "", "updatedp": ""} 2016-02 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "11104 Political Science", "scheme": "DFG"}, {"name": "113 Jurisprudence", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://www.govinfo.gov/about [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["congressional records", "judical publications", "law", "legal regulations", "presidential materials"] [{"institutionName": "United States Government Publishing Office", "institutionAdditionalName": ["GPO"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.gpo.gov", "institutionIdentifier": ["ROR:04jgrhh38"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Policies", "policyURL": "https://www.govinfo.gov/about/policies"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.govinfo.gov/about/policies#copyright"}] [] [] {"api": "https://api.govinfo.gov/docs/", "apiType": "REST"} [] [] unknown yes ["ISO 16363"] [] {"syndication": "https://www.govinfo.gov/feeds#about", "syndicationType": "RSS"} 2021-10-25 2021-11-05 +r3d100013671 TreeSource eng [] https://treesource.rncan.gc.ca/en [] ["sebastien.clement@NRCan-RNCan.gc.ca"] Database of forestry research installations in Canada with a focus on tree-level datasets (dendrometry, physical properties, dendrochronology, phenology, etc.). eng ["institutional"] {"size": "10 Gb", "updatedp": "2021-10-26"} ["eng", "fra"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "207 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "20709 Inventory Control and Use of Forest Resources", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}] https://treesource.rncan.gc.ca/en [{"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["dendrochronology", "dendrometry", "forestry", "genetics", "genomics", "genotyping", "physical properties", "silviscan"] [{"institutionName": "Natural Resources Canada, Canadian Forest Service", "institutionAdditionalName": ["NRCAN CFS"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/our-natural-resources/forests/13497", "institutionIdentifier": ["ROR:0430zw506"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Resources Canada, Canadian Forest Service, Canadian Wood Fibre Centre", "institutionAdditionalName": ["NRCAN CFS CWFC"], "institutionCountry": "CAN", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.nrcan.gc.ca/science-and-data/research-centres-and-labs/forestry-research-centres/canadian-wood-fibre-centre/13457", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "FAQ", "policyURL": "https://treesource.rncan.gc.ca/en/faq"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "OGLC", "dataLicenseURL": "https://open.canada.ca/en/open-government-licence-canada"}] restricted [] ["other"] {} [] [] unknown unknown [] [] {} 2021-10-25 2021-10-29 +r3d100013672 AUBScholarWorks eng [{"additionalName": "American University of Beirut ScholarWorks", "additionalNameLanguage": "eng"}] https://scholarworks.aub.edu.lb/ [] ["scholarworks@aub.edu.lb"] AUB ScholarWorks is a digital service that collects, preserves, and distributes digital material. AUB ScholarWorks hosts not only articles, but any other kind of research output, such as research data. eng ["institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://aub.edu.lb.libguides.com/AUB-Scholarworks [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "American University of Beirut", "institutionAdditionalName": ["AUB"], "institutionCountry": "LBN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.aub.edu.lb/", "institutionIdentifier": ["ROR:04pznsd21"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "AUB Copyright and Disclaimer Information", "policyURL": "https://www.aub.edu.lb/Pages/CopyRight.aspx"}, {"policyName": "AUB ScholarWorks: Copyrights", "policyURL": "https://aub.edu.lb.libguides.com/c.php?g=276545&p=1843317"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://scholarworks.aub.edu.lb/"}] restricted [{"dataUploadLicenseName": "AUB ScholarWorks Repository Submission Guidelines", "dataUploadLicenseURL": "https://www.aub.edu.lb/Libraries/Documents/ScholarworksPolicy.pdf"}] ["DSpace"] {} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-10-26 2021-10-28 +r3d100013673 Cefas Data Hub eng [{"additionalName": "Cefas Data Portal", "additionalNameLanguage": "eng"}, {"additionalName": "Centre for Environment Fisheries and Aquaculture Science Data Portal", "additionalNameLanguage": "eng"}] https://data.cefas.co.uk/ [] ["data.manager@cefas.co.uk"] The Centre for the Environment, Fisheries and Aquaculture Science (Cefas), as one of the world's longest-established marine research organisations, has provided advice on the sustainable exploitation of marine resources since 1902. Today Cefas works in support of a healthy environment and a growing blue economy providing innovative solutions for the aquatic environment, biodiversity and food security. The Cefas Data Hub provides access to over 2080 metadata records, with over 5500 data sets available to download and connect to in support of commitments to Open Science through the Data Portal. Datasets available are increasingly diverse and include many legacy datasets including those from fish, shellfish and plankton surveys from the 1980's to the present day. Other increasingly international datasets made available include species migration data from tagging activities and data on habitat and sediment, ecosystem change, human activities including marine litter, otolith sampling and fish stomach contents, oceanography, acoustics, health and water quality. Data is provided under Open Government License by default where feasible. eng ["disciplinary"] {"size": "5.679 data sets", "updatedp": "2021-10-28"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20101 Biochemistry", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20303 Animal Ecology, Biodiversity and Ecosystem Research", "scheme": "DFG"}, {"name": "20305 Biochemistry and Animal Physiology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20402 Microbial Ecology and Applied Microbiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "409 Computer Science", "scheme": "DFG"}, {"name": "40902 Software Technology", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://www.cefas.co.uk/about-us/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["aquatic environment", "biodiversity", "fishery", "freshwater", "health", "shellfish"] [{"institutionName": "Centre for Environment, Fisheries and Aquaculture Science", "institutionAdditionalName": ["Cefas"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.cefas.co.uk/", "institutionIdentifier": ["ROR:04r7rxc53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Cefas Data Management Policy", "policyURL": "https://www.cefas.co.uk/media/wumgbpfr/cefas-data-management-policy.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "OGL", "dataLicenseURL": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}] restricted [] [] {"api": "https://data-api.cefas.co.uk/index.html", "apiType": "REST"} ["DOI"] https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ [] unknown yes [] [] {} Follow MEDIN Discovery Metadata standard https://medin.org.uk/, which enables complianace with UK GEMINI and INSPIRE 2021-10-26 2021-10-30 +r3d100013674 Datenrechercheportal UFZ deu [{"additionalName": "DRP UFZ", "additionalNameLanguage": "eng"}, {"additionalName": "Data Investigation Portal Helmholtz Centre for Environmental Research", "additionalNameLanguage": "eng"}, {"additionalName": "Data Investigation Portal UFZ", "additionalNameLanguage": "eng"}, {"additionalName": "Datenrechercheportal Helmholtz-Zentrums f\u00fcr Umweltforschung GmbH", "additionalNameLanguage": "deu"}] https://www.ufz.de/drp/de/ [] ["rdm-contact@ufz.de"] The data repository of the Helmholtz Centre for Environmental Research. The Data Investigation Portal (DRP) provides the opportunity to publicly access the administered data in the Data Management Portal and search them. The presentation is here limited to metadata and non-restricted information. DRP users can thus gain an overview of the data sets and, if necessary, contact the author to gain access to the data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["deu", "eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://www.ufz.de/index.php?en=48473&nopagecache [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["agriculture", "field management data", "file-based archive data", "geodata catalog", "land evaluation", "logger data", "sample data"] [{"institutionName": "Helmholtz-Zentrum f\u00fcr Umweltforschung GmbH - UFZ", "institutionAdditionalName": ["Helmholtz Centre for Environmental Research", "UFZ"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ufz.de/", "institutionIdentifier": ["ROR:000h6jb29"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Imprint", "policyURL": "https://www.ufz.de/index.php?en=36683"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ufz.de/index.php?en=36683"}] restricted [] [] {"api": "https://geonetwork.ufz.de/geonetwork/doc/api/index.html", "apiType": "REST"} ["DOI"] [] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-10-28 2022-01-07 +r3d100013676 BORIS Portal eng [{"additionalName": "Bern Open Repository and Information System", "additionalNameLanguage": "eng"}] https://boris-portal.unibe.ch [] ["borisportal@ub.unibe.ch"] Institutional repository of the University of Bern. BORIS Portal allows researchers at the University of Bern to archive and manage research data, projects and fundings, to make it accessible and clearly identifiable. eng ["institutional"] {"size": "7 datasets", "updatedp": "2021-11-03"} 2021-09-13 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ub.unibe.ch/services/open_science/boris_portal/index_eng.html [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universit\u00e4t Bern", "institutionAdditionalName": ["University of Bern"], "institutionCountry": "CHE", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://www.unibe.ch", "institutionIdentifier": ["ROR:02k7v4d05"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "BORIS Service Policies", "policyURL": "https://idubdspace01.unibe.ch/static/ServicePolicies.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/"}] restricted [] ["DSpace"] yes {"api": "https://idubdspace01.unibe.ch/oai/request", "apiType": "OAI-PMH"} ["DOI", "hdl"] ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {"syndication": "https://idubdspace01.unibe.ch/feed/atom_1.0/site", "syndicationType": "ATOM"} 2021-11-01 2021-11-05 +r3d100013677 J-STAGE Data eng [] https://jstagedata.jst.go.jp/ [] ["data-contact@jstage.jst.go.jp"] J-STAGE Data is a data repository developed and managed by the Japan Science and Technology Agency (JST). J-STAGE Data supports the publication and distribution of data related to J-STAGE articles with the aim of contributing to the promotion of open science in Japan. Journals published on J-STAGE can use J-STAGE Data to publish data related to their own articles. DOI is automatically assigned to the data published in J-STAGE Data, and data is distributed worldwide as open access (anyone can access it for free, and the conditions for secondary use are clarified state), so anyone can use data under the conditions specified by the copyright holder, such as citing, sharing, and reusing. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.jstage.jst.go.jp/static/pages/JstageOverview/-char/en [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Japan Science and Technology Agency", "institutionAdditionalName": ["JST"], "institutionCountry": "JPN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jst.go.jp/EN/", "institutionIdentifier": ["ROR:00097mb19"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms and Conditions", "policyURL": "https://www.jstage.jst.go.jp/static/files/en/pub_JstageData_T&Cs_for_Browsing.pdf"}, {"policyName": "figshare Privacy Notice", "policyURL": "https://figshare.com/privacy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Apache License 2.0", "dataLicenseURL": "https://www.apache.org/licenses/LICENSE-2.0"}, {"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"}] restricted [] [] yes {} ["DOI"] [] yes unknown [] [] {} 2021-11-02 2021-11-04 +r3d100013678 St. Francis Xavier University Dataverse eng [{"additionalName": "StFX Dataverse", "additionalNameLanguage": "eng"}] https://dataverse.scholarsportal.info/dataverse/stfx [] ["mvail@stfx.ca"] Dataverse for faculty, researchers, and students at St. Francis Xavier University or affiliated institutions. Hosted by Scholar's Portal. eng ["institutional"] {"size": "3 datasets, 1.362 files", "updatedp": "2021-11-05"} ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "St. Francis Xavier University", "institutionAdditionalName": ["StFX"], "institutionCountry": "CAN", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.stfx.ca", "institutionIdentifier": ["ROR:01wcaxs37"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Dataverse Community Norms", "policyURL": "https://dataverse.org/best-practices/dataverse-community-norms"}, {"policyName": "Scholars Portal Dataverse", "policyURL": "https://learn.scholarsportal.info/all-guides/dataverse/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://dataverse.org/best-practices/dataverse-community-norms"}] restricted [] ["DataVerse"] yes {"api": "http://guides.dataverse.org/en/latest/api/index.html", "apiType": "other"} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}, {"metadataStandardName": "OAI-ORE - Open Archives Initiative Object Reuse and Exchange", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/oai-ore-open-archives-initiative-object-reuse-and-exchange"}] {} 2021-11-03 2021-11-07 +r3d100013679 Discover eng [{"additionalName": "Discover @ UB LMU", "additionalNameLanguage": "eng"}, {"additionalName": "UB Discover", "additionalNameLanguage": "eng"}] https://discover.ub.uni-muenchen.de/ [] ["forschungsdaten@ub.uni.muenchen.de"] Discover provides access to research data from projects related to LMU Munich, which are stored and preserved in repositories of the University Library LMU. eng ["institutional"] {"size": "over 220.000 records", "updatedp": "2021-11-04"} 2021-05 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Networkbased data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}, {"name": "Source code", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["multidisciplinary"] [{"institutionName": "Ludwig-Maximilians-Universit\u00e4t M\u00fcnchen, Universit\u00e4tsbibliothek", "institutionAdditionalName": ["Ludwig Maximilian University of Munich, University Library"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.ub.uni-muenchen.de/index.html", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["forschungsdaten@ub.uni-muenchen.de"]}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "http://www.gnu.org/licenses/licenses"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/"}] closed [] ["Fedora"] yes {} ["DOI", "other"] ["ORCID", "other"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} Discover... Verba Alpina investigates the Alpine region, which is linguistically highly fragmented, in its historico-cultural and historical linguistic unity in a selective and analytical way. With Open Data LMU (https://www.re3data.org/repository/r3d100010731), the University Library LMU provides a platform for the publication of research data. 2021-11-04 2021-11-07 +r3d100013680 GeneLab eng [] https://genelab.nasa.gov ["RRID:SCR_017658"] ["daniel.c.berrios@nasa.gov", "https://genelab.nasa.gov/help/contact", "sylvain.v.costes@nasa.gov"] GeneLab is an interactive, open-access resource where scientists can upload, download, store, search, share, transfer, and analyze omics data from spaceflight and corresponding analogue experiments. Users can explore GeneLab datasets in the Data Repository, analyze data using the Analysis Platform, and create collaborative projects using the Collaborative Workspace. GeneLab promises to facilitate and improve information sharing, foster innovation, and increase the pace of scientific discovery from extremely rare and valuable space biology experiments. Discoveries made using GeneLab have begun and will continue to deepen our understanding of biology, advance the field of genomics, and help to discover cures for diseases, create better diagnostic tools, and ultimately allow astronauts to better withstand the rigors of long-duration spaceflight. GeneLab helps scientists understand how the fundamental building blocks of life itself – DNA, RNA, proteins, and metabolites – change from exposure to microgravity, radiation, and other aspects of the space environment. GeneLab does so by providing fully coordinated epigenomics, genomics, transcriptomics, proteomics, and metabolomics data alongside essential metadata describing each spaceflight and space-relevant experiment. By carefully curating and implementing best practices for data standards, users can combine individual GeneLab datasets to gain new, comprehensive insights about the effects of spaceflight on biology. In this way, GeneLab extends the scientific knowledge gained from each biological experiment conducted in space, allowing scientists from around the world to make novel discoveries and develop new hypotheses from these priceless data. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "20503 Human Genetics", "scheme": "DFG"}, {"name": "20531 Radiation Oncology and Radiobiology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://genelab.nasa.gov/about [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["genomics", "metabolomics", "microgravity", "omics", "proteomics", "radiation", "space biology", "space science"] [{"institutionName": "National Aeronautics and Space Administration", "institutionAdditionalName": ["NASA"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.nasa.gov", "institutionIdentifier": ["ROR:027ka1x80"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "NASA Web Privacy Policy and Important Notices", "policyURL": "https://www.nasa.gov/about/highlights/HP_Privacy.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.whitehouse.gov/blog/2014/06/02/ostp-s-own-open-government-plan"}] restricted [{"dataUploadLicenseName": "submit data", "dataUploadLicenseURL": "https://genelab-data.ndc.nasa.gov/geode-sso-login/"}] [] yes {"api": "https://genelab.nasa.gov/genelabAPIs", "apiType": "REST"} [] https://genelab.nasa.gov/faq#10 [] unknown yes [] [{"metadataStandardName": "ISA-Tab", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/isa-tab"}] {} 2021-11-05 2021-11-17 +r3d100013681 KonDATA deu [] https://kondata.uni-konstanz.de/ [] ["kondata@uni-konstanz.de"] KonDATA is the research data repository of the University of Konstanz. This service offered by KIM provides you with the simple and convenient option of publishing your research data in a way that is visible and citable in the long term eng ["institutional"] {"size": "", "updatedp": ""} 2021-11-11 ["deu", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.kim.uni-konstanz.de/services/datenserver-und-cloud/kondata/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "FIZ Karlsruhe - Leibniz Institute for Information Infrastructure", "institutionAdditionalName": ["FIZ Karlsruhe", "FIZ Karlsruhe - Leibniz-Institut f\u00fcr Informationsinfrastruktur GmbH"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.fiz-karlsruhe.de/", "institutionIdentifier": ["ROR:0387prb75"], "responsibilityStartDate": "2021-11-11", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Universit\u00e4t Konstanz, Kommunikations-, Informations-, Medienzentrum", "institutionAdditionalName": ["KIM", "University of Konstanz, Communication, Information, Media Centre", "formerly: Bibliothek der Universit\u00e4t Konstanz"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.kim.uni-konstanz.de/", "institutionIdentifier": [], "responsibilityStartDate": "2021-11-11", "responsibilityEndDate": "", "institutionContact": ["openscience@uni-konstanz.de"]}] [{"policyName": "Nutzungsbedingungen", "policyURL": "https://www.kim.uni-konstanz.de/services/datenserver-und-cloud/kondata/nutzungsbedingungen/"}, {"policyName": "Terms of Use", "policyURL": "https://www.kim.uni-konstanz.de/en/services/data-servers-and-cloud-computing/kondata/terms-of-use/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [{"dataUploadLicenseName": "Creative Commons", "dataUploadLicenseURL": "https://creativecommons.org/"}] [] {} ["DOI"] ["ORCID"] unknown yes [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-11-11 2021-12-01 +r3d100013683 Netherlands Polar Data Center eng [{"additionalName": "NPDC", "additionalNameLanguage": "eng"}] https://npdc.nl [] ["info@npdc.nd", "marten.tacoma@nioz.nl"] The Netherlands Polar Data Center (NPDC) is part of the Netherlands Polar Program (NPP). NPDC archives and provides access to the data of Polar Research by researchers funded by Dutch Research Council (NWO) or otherwise carried out by researchers from Dutch universities and research institutions. The repository provides: 1) An overview of current and completed projects from the Netherlands Polar Programme (NPP) and other Dutch projects in the Polar Regions; 2) Access to the data of research carried out by Dutch researchers in the Polar Regions; and, 3) Links to external sources of Polar research data. For more information about the NPDC and the services it may offer to the Dutch Polar research community see https://npdc.nl/npdc. eng ["disciplinary"] {"size": "50 datasets", "updatedp": "2021-11-15"} 1997-01-01 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "313 Atmospheric Science and Oceanography", "scheme": "DFG"}, {"name": "31302 Oceanography", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://npdc.nl/npdc [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Antarctic Master Directory", "Netherlands Polar Programme", "antarctic", "arctic", "ecology", "oceans", "polar"] [{"institutionName": "Dutch Research Council", "institutionAdditionalName": ["NWO", "Nederlandse Organisatie voor Wetenschappelijk Onderzoek"], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nwo.nl/en", "institutionIdentifier": ["ROR:04jsz6e67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nwo@nwo.nl"]}, {"institutionName": "Royal Netherlands Institute for Sea Research", "institutionAdditionalName": ["Koninklijk Nederlands Instituut voor Zeeonderzoek", "NWO-NIOZ"], "institutionCountry": "NLD", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.nioz.nl", "institutionIdentifier": ["ROR:01gntjh03"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["marten.tacoma@nioz.nl", "taco.de.bruin@nioz.nl"]}] [{"policyName": "Terms & Conditions", "policyURL": "https://npdc.nl/terms"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://npdc.nl/terms"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://npdc.nl/copyright"}, {"dataLicenseName": "Public Domain", "dataLicenseURL": "https://npdc.nl/terms"}] restricted [] [] yes {} ["other"] https://npdc.nl/dataset/84f4e415-53c3-55e9-bb6d-3ee34419595d [] yes yes [] [{"metadataStandardName": "DIF - Directory Interchange Format", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dif-directory-interchange-format"}] {} GitHub: https://github.com/npdc The NPDC represents the Netherlands in the Standing Committee on Antarctic Data Management (SCADM) and the Arctic Data Committee (ADC). 2021-11-15 2021-11-17 +r3d100013688 DOREL fra [{"additionalName": "DOnn\u00e9es de la REcherche Lorraines", "additionalNameLanguage": "fra"}] https://dorel.univ-lorraine.fr [] ["donnees-recherche@univ-lorraine.fr"] The institutional data repository DOREL - DOnnées de REcherche Lorraines - is a tool for referencing the scientific production of the University of Lorraine as well as a space for publishing data sets produced within its research units. It is a multidisciplinary repository, developed with the Dataverse software. eng ["institutional"] {"size": "62 dataverses, 4 datasets, 5.776 files", "updatedp": "2021-11-29"} 2021 ["eng", "fra"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "23 Agriculture, Forestry, Horticulture and Veterinary Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}, {"name": "32 Physics", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] [{"name": "Archived data", "scheme": "parse"}, {"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] [] ["multidisciplinary"] [{"institutionName": "Universit\u00e9 de Lorraine", "institutionAdditionalName": [], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.univ-lorraine.fr", "institutionIdentifier": ["ISNI:0000000121946418", "ROR:04vfs2w97"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Conditions G\u00e9n\u00e9rales d'Utilisation", "policyURL": "https://scienceouverte.univ-lorraine.fr/files/2021/11/CGU_DOREL_UnivLorraine.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://www.creativecommons.org"}, {"dataLicenseName": "OGL", "dataLicenseURL": "https://www.etalab.gouv.fr/licence-ouverte-open-licence"}] restricted [{"dataUploadLicenseName": "CC-BY", "dataUploadLicenseURL": "https://www.creativecommons.org"}, {"dataUploadLicenseName": "Etalab", "dataUploadLicenseURL": "https://www.etalab.gouv.fr/licence-ouverte-open-licence"}] ["DataVerse"] yes {"api": "https://dorel.univ-lorraine.fr/api", "apiType": "REST"} ["DOI"] https://scienceouverte.univ-lorraine.fr/boite-a-outils/ [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-11-24 2021-12-01 +r3d100013689 RIULL spa [{"additionalName": "Repositorio Institucional de la Universidad de La Laguna", "additionalNameLanguage": "spa"}] https://riull.ull.es/xmlui/ [] ["jerbez@ull.edu.es", "riull@ull.es"] RIULL is the Institutional Repository of the University of La Laguna, created with the aim of gathering, preserving and disseminating in open access the scientific and academic production of the University of La Laguna. It is managed by the University Library. spa ["institutional"] {"size": "", "updatedp": ""} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://ull-es.libguides.com/c.php?g=688073&p=4922348 [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Universidad de La Laguna", "institutionAdditionalName": ["University of La Laguna"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ull.es/en/", "institutionIdentifier": ["ROR:01r9z8p25"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Propiedad intelectual y acceso abierto a la informaci\u00f3n cient\u00edfica", "policyURL": "https://www.ull.es/servicios/biblioteca/personal-docente-e-investigador/#propiedadyacceso"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/deed.es_ES"}] restricted [] [] {} ["hdl"] https://ull-es.libguides.com/guiaparacitar [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2021-11-26 2021-12-01 +r3d100013691 IPGP Data Center eng [{"additionalName": "Centre de Donn\u00e9es IPGP", "additionalNameLanguage": "fra"}] http://datacenter.ipgp.fr/data.php [] ["datacenter@ipgp.fr", "http://datacenter.ipgp.fr/contact.php"] The main mission of IPGP Data Center is to manage and to distribute geophysical data from the Institut de physique du globe de Paris to support the geophysical research community. eng ["disciplinary"] {"size": "", "updatedp": ""} 2011-01-01 ["eng", "fra"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "315 Geophysics and Geodesy", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] http://datacenter.ipgp.fr [{"name": "Archived data", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["GEOSCOPE", "GNSS", "VOLOBSIS", "geodesy", "seismology", "volcanic observatory", "volcanology"] [{"institutionName": "Centre National de la Recherche Scientifique", "institutionAdditionalName": ["CNRS", "French National Center for Scientific Research"], "institutionCountry": "FRA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.cnrs.fr/", "institutionIdentifier": ["ROR:02feahw73"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Institut de physique du globe de Paris", "institutionAdditionalName": ["IPGP"], "institutionCountry": "FRA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ipgp.fr", "institutionIdentifier": ["ROR:004gzqz66"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.ipgp.fr/fr/contacts"]}, {"institutionName": "Universit\u00e9 de Paris", "institutionAdditionalName": ["University of Paris"], "institutionCountry": "FRA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://u-paris.fr/en/", "institutionIdentifier": ["ROR:05f82e368"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Data access @ IPGP-DC", "policyURL": "http://datacenter.ipgp.fr/doc/Data_access_at_IPGP-DC.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/legalcode"}] restricted [] [] no {"api": "http://ws.ipgp.fr", "apiType": "REST"} ["DOI"] http://datacenter.ipgp.fr/doc/Data_access_at_IPGP-DC.pdf [] unknown yes [] [] {} 2021-11-29 2022-01-04 +r3d100013693 Luleå University of Technology research data in the university's publication database DiVA eng [] http://urn.kb.se/resolve?urn=urn:nbn:se:ltu:diva-70730 [] ["https://www.ltu.se/_special-polopoly/FormArticle.htm?a=193216&l=en"] Luleå University of Technology offers the opportunity to publish research data in the university's publication database DiVA. Choose the publication type "Dataset" eng ["institutional"] {"size": "6 datasets", "updatedp": "2021-12-01"} ["eng", "nor", "swe"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://www.ltu.se/ltu/lib/Forskarstod?l=en [{"name": "Archived data", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Lule\u00e5 University of Technology", "institutionAdditionalName": [], "institutionCountry": "SWE", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ltu.se/", "institutionIdentifier": ["ROR:016st3p78"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Publishing policy", "policyURL": "https://www.ltu.se/ltu/lib/Forskarstod/Publicera/Publiceringspolicy?l=en"}, {"policyName": "Publishing support", "policyURL": "https://www.ltu.se/ltu/lib/Forskarstod/Publicera?l=en"}, {"policyName": "Research Data", "policyURL": "https://www.ltu.se/ltu/lib/Forskarstod/Forskningsdata?l=en"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://info.diva-portal.org/about-diva/open-access/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.ltu.se/ltu/lib/Forskarstod/Publicera?l=en"}] restricted [{"dataUploadLicenseName": "Publish the dataset in DiVA", "dataUploadLicenseURL": "https://www.ltu.se/ltu/lib/Forskarstod/Forskningsdata/Publicera-dina-forskningsdata?l=en"}] ["other"] {} ["DOI", "URN"] https://www.ltu.se/ltu/lib/Skriva/Att-referera?l=en ["ORCID"] unknown unknown [] [] {} 2021-11-30 2021-12-04 +r3d100013696 DRA eng [{"additionalName": "DDBJ Sequence Read Archive", "additionalNameLanguage": "eng"}] https://www.ddbj.nig.ac.jp/dra/index-e.html ["RRID:SCR_001370", "RRID:nlx_152515", "biodbcore-001521"] ["https://www.ddbj.nig.ac.jp/contact-ddbj-e.html"] DDBJ Sequence Read Archive (DRA) is the public archive of high throughput sequencing data. DRA stores raw sequencing data and alignment information to enhance reproducibility and facilitate new discoveries through data analysis. DRA is a member of the International Nucleotide Sequence Database Collaboration (INSDC) and archiving the data in a close collaboration with NCBI Sequence Read Archive (SRA) and EBI Sequence Read Archive (ERA). eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "20401 Metabolism, Biochemistry and Genetics of Microorganisms", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.ddbj.nig.ac.jp/about/index-e.html [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["biosamples", "epidemiology", "metagenome"] [{"institutionName": "DDBJ Center", "institutionAdditionalName": ["DDBJ Center"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ddbj.nig.ac.jp/index-e.html", "institutionIdentifier": ["RRID:SCR_002359", "RRID:nif-0000-02740"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Terms of Use", "policyURL": "https://www.ddbj.nig.ac.jp/policies-e.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}] restricted [{"dataUploadLicenseName": "Data submission to DRA", "dataUploadLicenseURL": "https://www.ddbj.nig.ac.jp/dra/submission-e.html#dra-data-submission"}] [] {"api": "https://ddbj.nig.ac.jp/public/ddbj_database/dra/fastq/", "apiType": "other"} [] https://www.ddbj.nig.ac.jp/policies-e.html [] unknown yes [] [] {} 2021-12-08 2021-12-21 +r3d100013698 Pandora eng [] https://pandora.earth/ [] ["pandoraisomemo@gmail.com", "pandoraisomemo@shh.mpg.de"] Pandora is an open data platform devoted to the study of the human story. Data may be deposited from various disciplines and research topics that investigate humans from their early beginnings until present in addition to their environmental context (e.g. archeology, anthropology history, ancient DNA, isotopes, zooarchaeology, archaeobotany, and paleoenvironmental and paleoclimatic studies, etc.). Pandora allows autonomous data communities to self-manage their webspace and community membership. Data communities self-curate their data plus other supporting resources. Datasets may be assigned a new DOI and a schema markup is employed to improve data findability. Pandora also allows for links to datasets stored externally and having previously assigned DOIs. Through this, it becomes possible to establish data networks devoted to specific topics that may combine a mix of datasets stored either within Pandora or externally. eng [] {"size": "34 datasets", "updatedp": "2021-12-21"} ["eng", "eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "111 Social Sciences", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}] https://pandora.earth/about [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["serviceProvider", "serviceProvider"] ["ancient DNA", "archaeobotany", "archaeology", "history", "isotopes", "paeloenviromental", "paleoclimatic", "radiocarbon", "zooarchaeology"] [{"institutionName": "Archaeolinguistic Research Group", "institutionAdditionalName": ["Eurasia3angle Group"], "institutionCountry": "DEU", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.shh.mpg.de/102128/eurasia3angle_group", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Masaryk University", "institutionAdditionalName": ["Masarykova univerzita"], "institutionCountry": "CZE", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.muni.cz/en", "institutionIdentifier": ["ROR:02j46qs45"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.em.muni.cz/redakce"]}, {"institutionName": "Max Planck Computing and Data Facility", "institutionAdditionalName": ["MPCDF"], "institutionCountry": "DEU", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.mpcdf.mpg.de/", "institutionIdentifier": ["ROR:03e21z229"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["office@mpcdf.mpg.de"]}, {"institutionName": "Max Planck Digital Library", "institutionAdditionalName": ["MPDL"], "institutionCountry": "DEU", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.mpdl.mpg.de/en/#", "institutionIdentifier": ["ROR:0061msm67"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Max Planck Institute for the Science of Human History", "institutionAdditionalName": ["MPI-SHH", "Max-Planck-Institut f\u00fcr Menschheitsgeschichte", "PS&H"], "institutionCountry": "DEU", "responsabilityType": ["general", "general"], "institutionType": "non-profit", "institutionURL": "https://www.shh.mpg.de/en", "institutionIdentifier": ["ROR:05mjrzy91"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.shh.mpg.de/151931/management"]}, {"institutionName": "University of Warsaw", "institutionAdditionalName": ["Uniwersytet Warszawski"], "institutionCountry": "POL", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://en.uw.edu.pl/", "institutionIdentifier": ["ROR:039bjqg32"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://en.uw.edu.pl/contacts/"]}] [{"policyName": "Terms of Service of the Max Planck Digital Library", "policyURL": "https://www.mpdl.mpg.de/terms-of-service-de.html"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"}, {"dataLicenseName": "ODC", "dataLicenseURL": "https://opendatacommons.org/"}] restricted [] ["CKAN"] yes {"api": "http://docs.ckan.org/en/2.9/api/", "apiType": "other"} ["DOI"] [] unknown unknown [] [{"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}] {} 2021-12-17 2021-12-24 +r3d100013702 OCTOPUS database eng [{"additionalName": "An open cosmogenic isotope and luminescence database", "additionalNameLanguage": "eng"}] https://octopusdata.org ["CRN Denudation Australian collection doi:10.25900/mpr9-yn15", "CRN Denudation Global collection doi:10.25900/g76f-0h45", "Sahul Archaeology (SahulArch) OSL doi:10.25900/ypr0-j711", "Sahul Archaeology (SahulArch) Radiocarbon doi:10.25900/2mb4-rr36", "Sahul Archaeology (SahulArch) TL doi:10.25900/xq40-t003", "Sahul Sedimentary Archives (SahulSed) Aeolian OSL doi:10.25900/5jcw-tn50", "Sahul Sedimentary Archives (SahulSed) Aeolian TL doi:10.25900/a2k9-kj43", "Sahul Sedimentary Archives (SahulSed) Fluvial OSL doi:10.25900/p5ye-rn35", "Sahul Sedimentary Archives (SahulSed) Fluvial TL doi:10.25900/2a76-vw55", "Sahul Sedimentary Archives (SahulSed) Lacustrine OSL doi:10.25900/6hmv-zz61", "Sahul Sedimentary Archives (SahulSed) Lacustrine TL doi:10.25900/32de-mj32"] ["codilean@uow.edu.au", "hmunack@uow.edu.au"] OCTOPUS is an Open Geospatial Consortium (OGC) compliant web-enabled database that allows users to visualise, query, and download cosmogenic 10Be and 26Al, luminescence, and radiocarbon ages and denudation rates associated with erosional landscapes, Quaternary depositional landforms and archaeological records, along with associated geospatial (vector and raster) data layers. eng ["disciplinary"] {"size": "", "updatedp": ""} 2021-12-01 ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "101 Ancient Cultures", "scheme": "DFG"}, {"name": "10104 Classical Archaeology", "scheme": "DFG"}, {"name": "106 Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies", "scheme": "DFG"}, {"name": "10603 African, American and Oceania Studies", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20302 Evolution, Anthropology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "314 Geology and Palaeontology", "scheme": "DFG"}, {"name": "317 Geography", "scheme": "DFG"}, {"name": "318 Water Research", "scheme": "DFG"}, {"name": "34 Geosciences (including Geography)", "scheme": "DFG"}] https://octopusdata.org/ [{"name": "Archived data", "scheme": "parse"}, {"name": "Configuration data", "scheme": "parse"}, {"name": "Databases", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["10Be", "14C", "26Al", "Australia", "CARE", "FAIR", "Sahul", "Sahul megafauna", "Sahul sedimentary archives", "catchment-averaged denudation rates", "cosmogenic nuclides", "glacial exposure ages", "indo-pacific", "optically stimulated luminescence", "radiocarbon", "thermoluminescence"] [{"institutionName": "Australian National Data Service", "institutionAdditionalName": ["ANDS"], "institutionCountry": "AUS", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.ands.org.au", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Australian Research Council Centre of Excellence for Biodiversity and Heritage", "institutionAdditionalName": ["CABAH"], "institutionCountry": "AUS", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://epicaustralia.org.au", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "2024-06", "institutionContact": []}, {"institutionName": "University of Wollongong", "institutionAdditionalName": ["UOW"], "institutionCountry": "AUS", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.uow.edu.au", "institutionIdentifier": ["ROR:00jtmb277"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] restricted [] ["other"] yes {"api": "https://www.ogc.org/standards/wms", "apiType": "other"} ["DOI"] ["ORCID", "other"] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} Culturally sensitive sample locations have been randomly obfuscated within a 25 km radius. Zenodo Community: https://zenodo.org/communities/octopus-database/ 2021-12-29 2022-01-06 +r3d100013704 Regionaal Archief Tilburg nld [{"additionalName": "RA Tilburg", "additionalNameLanguage": "eng"}] https://www.regionaalarchieftilburg.nl/ [] ["info@regionaalarchieftilburg.nl"] Regionaal Archief Tilburg (RA Tilburg) is one of the four institutions of foundation Mommerskwartier and is based in Tilburg, the Netherlands. The statutory task (Public Records Act https://bit.ly/3iCTI7f) of RA Tilburg is to function as a repository for decentralized, local government organizations such as municipalities, communal schemes, and Water Authorities. RA Tilburg also manages private archives, and archives of organizations, institutes, or the public in general. eng ["disciplinary"] {"size": "2.028 results", "updatedp": "2022-01-17"} ["nld"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.werkenbijmommerskwartier.nl/regionaalarchieftilburg [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}] ["dataProvider"] ["certificates collection", "multidisciplinary"] [{"institutionName": "Mommerskwartier Foundation", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.werkenbijmommerskwartier.nl/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Regional Archive of Tilburg", "institutionAdditionalName": [], "institutionCountry": "NLD", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.werkenbijmommerskwartier.nl/regionaalarchieftilburg", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "CoreTrustSeal-certificaat", "policyURL": "https://www.coretrustseal.org/wp-content/uploads/2021/10/20211020-regionaal-archief-tilburg_final.pdf"}, {"policyName": "Digital Preservation Policy", "policyURL": "https://www.regionaalarchieftilburg.nl/docs/default-source/coretrustseal-application/digitale-duurzaamheid-regionaal-archief-tilburg.pdf?sfvrsn=2"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "other"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://www.wipo.int/copyright/en/#:~:text=Copyright%20(or%20author's%20right)%20is,,%20maps,%20and%20technical%20drawings."}] restricted [] ["other"] {"api": "https://www.markdownguide.org/api/v1/", "apiType": "other"} [] [] unknown yes ["other"] [] {} 2022-01-03 2022-01-19 +r3d100013707 Open Health Data Dataverse eng [] https://dataverse.harvard.edu/dataverse/openhealthdata [] ["support@dataverse.harvard.edu"] The Harvard Dataverse Repository is a free data repository open to all researchers from any discipline, both inside and outside of the Harvard community, where you can share, archive, cite, access, and explore research data. Each individual Dataverse collection is a customizable collection of datasets (or a virtual repository) for organizing, managing, and showcasing datasets. eng ["institutional"] {"size": "3 datasets", "updatedp": "2022-01-17"} ["eng"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "44 Computer Science, Electrical and System Engineering", "scheme": "DFG"}] https://openhealthdata.metajnl.com/about/#jophddataverse [{"name": "Plain text", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["education", "mental health", "social care"] [{"institutionName": "Harvard College", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://college.harvard.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Open Health Data", "institutionAdditionalName": ["Journal of Open Health Data"], "institutionCountry": "GBR", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://openhealthdata.metajnl.com/", "institutionIdentifier": ["E-ISSN: 2054-7102"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["openhealthdata@ubiquitypress.com"]}] [{"policyName": "Data Policies Research Data Management @Harvard", "policyURL": "https://researchdatamanagement.harvard.edu/policies"}, {"policyName": "Open Access Policy", "policyURL": "https://openhealthdata.metajnl.com/about/#open-access-policy"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "CC0", "dataLicenseURL": "https://creativecommons.org/share-your-work/public-domain/cc0"}] restricted [{"dataUploadLicenseName": "Deposit instructions", "dataUploadLicenseURL": "https://openhealthdata.metajnl.com/about/#jophddataverse"}] ["DataVerse"] yes {} ["DOI"] https://dataverse.org/best-practices/data-citation [] unknown unknown [] [{"metadataStandardName": "DDI - Data Documentation Initiative", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/ddi-data-documentation-initiative"}, {"metadataStandardName": "DataCite Metadata Schema", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/datacite-metadata-schema"}, {"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2022-01-05 2022-01-22 +r3d100013711 RIKEN Bioresource Research Center eng [{"additionalName": "RIKEN BRC", "additionalNameLanguage": "eng"}, {"additionalName": "RIKEN Bioresource Center", "additionalNameLanguage": "eng"}, {"additionalName": "\u7406\u5316\u5b66\u7814\u7a76\u6240\u3000\u30d0\u30a4\u30aa\u30ea\u30bd\u30fc\u30b9\u7814\u7a76\u30bb\u30f3\u30bf\u30fc", "additionalNameLanguage": "jpn"}] https://web.brc.riken.jp/en/ [] ["https://web.brc.riken.jp/en/inquirylist"] Bioresources, often referred to as biological resources, are essential experimental research materials for life science and bioindustry. Under the three principles of “Trust”, “Sustainability” and “Leadership”, RIKEN BRC is committed to receiving deposition/donation of bioresources from the research community, confirming the authenticity of bioresources by rigorous quality examination, preserving, and distributing them back to the research community. f you wish to search quickly or to search multiple bioresources (mouse, cell, plant, microorganism, gene) simultaneously, we recommend to search from the Top Page. At the Top page, bioresource search and Google-based site search are available. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng", "jpn"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "202 Plant Sciences", "scheme": "DFG"}, {"name": "20207 Plant Genetics", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://web.brc.riken.jp/en/about/action [{"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["BioResource Meta Database", "DNA", "animal", "cell", "cell engineering", "gene engineering", "microbe", "mouse", "plant"] [{"institutionName": "RIKEN Bioresource Research Center", "institutionAdditionalName": ["RBRC", "RIKEN BRC", "RIKEN Bioresource Research Center", "\u7406\u5316\u5b66\u7814\u7a76\u6240\u3000\u30d0\u30a4\u30aa\u30ea\u30bd\u30fc\u30b9\u7814\u7a76\u30bb\u30f3\u30bf\u30fc"], "institutionCountry": "JPN", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://web.brc.riken.jp/en/", "institutionIdentifier": ["ROR:00s05em53"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "RIKEN Site Policy", "policyURL": "https://knowledge.brc.riken.jp/bioresource/front/sitepolicy"}, {"policyName": "copyright in BRC Web site", "policyURL": "https://web.brc.riken.jp/en/copyright"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "other", "databaseLicenseURL": "https://www.riken.jp/en/accessibility/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by/4.0/"}, {"dataLicenseName": "Copyrights", "dataLicenseURL": "https://knowledge.brc.riken.jp/bioresource/front/sitepolicy"}] restricted [{"dataUploadLicenseName": "deposit or donate your valuable bioresources to RIKEN BRC", "dataUploadLicenseURL": "https://web.brc.riken.jp/en/requests/deposit"}] [] {} ["other"] https://web.brc.riken.jp/en/requests/result [] yes yes [] [] {} RIKEN BRC has acquired and maintained ISO9001: https://web.brc.riken.jp/en/wp-content/uploads/images/iso_certificate.jpg International Collaboration and Asian Collaboration: https://web.brc.riken.jp/en/collaboration/itn 2022-01-12 2022-01-15 +r3d100013713 CHERRY eng [{"additionalName": "CHEmistry RepositoRY", "additionalNameLanguage": "eng"}] https://cherry.chem.bg.ac.rs [] ["anadj@chem.bg.ac.rs"] CHERRY, ie CHEmistry RepositoRY is a joint digital repository of the all departments in University of Belgrade - Faculty of Chemistry. CHERRY provides open access to the publications, as well as to other outputs of the research projects implemented in this institution. The software platform meets the current requirements that apply to the dissemination of scholarly publications and it is compatible with relevant international infrastructures. eng ["disciplinary", "institutional"] {"size": "", "updatedp": ""} 2018-12-01 ["eng", "srp"] [{"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "31 Chemistry", "scheme": "DFG"}] https://cherry.chem.bg.ac.rs/contact [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Plain text", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["biochemistry", "chemistry", "inorganic chemistry", "organic chemistry"] [{"institutionName": "University of Belgrade, Computer Centre", "institutionAdditionalName": [], "institutionCountry": "SRB", "responsabilityType": [], "institutionType": "non-profit", "institutionURL": "https://www.rcub.bg.ac.rs", "institutionIdentifier": [], "responsibilityStartDate": "2018", "responsibilityEndDate": "", "institutionContact": ["info@open.ac.rs"]}, {"institutionName": "University of Belgrade, Faculty of Chemistry", "institutionAdditionalName": [], "institutionCountry": "SRB", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "http://chem.bg.ac.rs/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["nauka@chem.bg.ac.rs"]}] [{"policyName": "About CHERRY", "policyURL": "https://cherry.chem.bg.ac.rs/contact"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC0", "databaseLicenseURL": "https://dais.sanu.ac.rs/Files/policy-dais-en.html"}] [{"dataAccessType": "closed", "dataAccessRestriction": []}, {"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org"}] restricted [{"dataUploadLicenseName": "Submission policy", "dataUploadLicenseURL": "https://cherry.chem.bg.ac.rs/contact"}] ["DSpace"] yes {} ["hdl"] ["ORCID"] yes yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2022-01-13 2022-01-27 +r3d100013715 Mutant Mouse Resource & Research Centers eng [{"additionalName": "MMRRC", "additionalNameLanguage": "eng"}] https://www.mmrrc.org ["FAIRsharing_doi:10.25504/FAIRsharing.9dpd18", "RRID:SCR_002953", "RRID:nif-0000-00045"] ["https://www.mmrrc.org/about/mmrrcContacts.php", "support@mmrrc.org"] The MMRRC is the nation’s premier national public repository system for mutant mice. Funded by the NIH continuously since 1999, the MMRRC archives and distributes scientifically valuable spontaneous and induced mutant mouse strains and ES cell lines for use by the biomedical research community. The MMRRC consists of a national network of breeding and distribution repositories and an Informatics Coordination and Service Center located at 4 major academic centers across the nation. The MMRRC is committed to upholding the highest standards of experimental design and quality control to optimize the reproducibility of research studies using mutant mice. eng ["disciplinary"] {"size": "60.364 results", "updatedp": "2022-01-17"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://www.mmrrc.org/about/generalInfo.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["embryonic stem cell", "gene", "genetic strain", "mutant", "stem cell", "transgenic"] [{"institutionName": "National Institutes of Health", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://www.nih.gov/", "institutionIdentifier": ["ROR:01cwqze88"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.nih.gov/about-nih/contact-us"]}, {"institutionName": "National Institutes of Health, Division of Program Coordination Planning and Strategic Initiatives", "institutionAdditionalName": ["DPCPSI"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://dpcpsi.nih.gov/", "institutionIdentifier": ["ROR:02e3wq066"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The Jackson Laboratory, Mutant Mouse Resource and Research Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.jax.org/research-and-faculty/resources/mutant-mouse-resource-research-center", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.jax.org/contact-jax"]}, {"institutionName": "University of California, Mouse Biology Program, MMRRC Informatics, Coordination and Service Center", "institutionAdditionalName": ["ICSC"], "institutionCountry": "USA", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://ucdavis.pure.elsevier.com/en/projects/mmrrc-informatics-coordination-and-service-center-at-uc-davis", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "University of California, Mutant Mouse Resource & Research Centers", "institutionAdditionalName": ["UC Davis MMRC"], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mmrrc.ucdavis.edu/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mmrrc.ucdavis.edu/"]}, {"institutionName": "University of Missouri, Mutant Mouse Resource & Research Center", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://mu-mmrrc.com/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://mu-mmrrc.com/Contact/"]}, {"institutionName": "University of North Carolina, Chapel Hill, Mutant Mouse Resource and Research Centers", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.med.unc.edu/mmrrc", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["https://www.med.unc.edu/mmrrc/contact-us/"]}] [{"policyName": "Conditions Of Use Statements (COU's)", "policyURL": "https://www.mmrrc.org/catalog/mtaInstructions.php"}, {"policyName": "MMRRC Reproducibility Assurances", "policyURL": "https://www.mmrrc.org/about/reproducibility.php"}, {"policyName": "Mutant Mouse Regional Resource Centers Distribution Policies", "policyURL": "https://www.mmrrc.org/catalog/distrPolicy.pdf"}, {"policyName": "NIH Web Policies and Notices", "policyURL": "https://www.nih.gov/web-policies-notices"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.mmrrc.org/catalog/mtaInstructions.php"}] restricted [] [] {"api": "https://www.mmrrc.org/about/mmrrc_api.php", "apiType": "REST"} ["other"] https://www.mmrrc.org/catalog/distrPolicy.pdf [] yes yes [] [] {} Members and Services: https://www.mmrrc.org/about/members.php 2022-01-17 2022-01-19 +r3d100013717 CEU Institutional Repository eng [{"additionalName": "CEU Repositorio Institucional", "additionalNameLanguage": "spa"}] https://repositorioinstitucional.ceu.es ["OpenDOAR:1751", "OpenDOAR:6284", "ROAR:2560"] ["sdigital.bib@ceu.es"] Institutional repository intended to gather, preserve and disseminate, through open access, in accordance with the principles of the OAI open archives movement, the documents resulting from the academic, scientific and teaching activity, as well as the institutional publications of the Saint Paul Universities -CEU, Cardenal Herrera-CEU, Abat Oliba CEU and its dependent Academic Centers. eng ["institutional"] {"size": "9.218 records", "updatedp": "2022-01-19"} ["spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "105 Literary Studies", "scheme": "DFG"}, {"name": "108 Philosophy", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "112 Economics", "scheme": "DFG"}, {"name": "12 Social and Behavioural Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "205 Medicine", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}, {"name": "42 Thermal Engineering/Process Engineering", "scheme": "DFG"}] https://www.uspceu.com/biblioteca/ceu-repositorio-institucional [{"name": "Archived data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "Fundaci\u00f3n Universitaria San Pablo CEU", "institutionAdditionalName": ["Centro de Estudios Universitarios"], "institutionCountry": "ESP", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://www.ceu.es/", "institutionIdentifier": ["ROR:04a0dbe36"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Misi\u00f3n y objetivos de CEU Repositorio Institucional (CEU-ReI)", "policyURL": "https://repositorioinstitucional.ceu.es/normas/objetivos.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/deed.es"}] restricted [] ["DSpace"] yes {"api": "https://repositorioinstitucional.ceu.es/oai/openaire", "apiType": "OAI-PMH"} ["hdl"] [] unknown yes [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2022-01-18 2022-01-21 +r3d100013719 SPARC.Science eng [{"additionalName": "Stimulating Peripheral Activity to Relieve Conditions", "additionalNameLanguage": "eng"}] https://sparc.science ["RRID:SCR_017041"] ["joostw@seas.upenn.edu"] The overall vision for the SPARC Portal is to accelerate autonomic neuroscience research and device development by providing access to digital resources that can be shared, cited, visualized, computed, and used for virtual experimentation. eng ["disciplinary"] {"size": "over 300 public datasets", "updatedp": "2022-01-20"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://sparc.science/about [{"name": "Images", "scheme": "parse"}, {"name": "Raw data", "scheme": "parse"}, {"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Software applications", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["FAIR", "anatomy", "bioelectronic medicine", "diseases", "nervous system"] [{"institutionName": "IT'IS", "institutionAdditionalName": ["Foundation for Research on Information Technologies in Society"], "institutionCountry": "CHE", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://itis.swiss/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["neufeld@itis.swiss"]}, {"institutionName": "National Institutes of Health, Office of Strategic Coordination, The Common Fund", "institutionAdditionalName": ["NIH Commond Fund"], "institutionCountry": "USA", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://commonfund.nih.gov/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "The University of Auckland", "institutionAdditionalName": [], "institutionCountry": "NZL", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.auckland.ac.nz/en.html", "institutionIdentifier": ["ROR:03b94tp07"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["p.hunter@auckland.ac.nz"]}, {"institutionName": "UC San Diego", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://ucsd.edu/", "institutionIdentifier": ["ROR:0168r3w48"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["mmartone@ucsd.edu"]}, {"institutionName": "University of Pennsylvania", "institutionAdditionalName": ["UPenn"], "institutionCountry": "USA", "responsabilityType": ["technical"], "institutionType": "non-profit", "institutionURL": "https://www.upenn.edu/", "institutionIdentifier": ["ROR:00b30xv10"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": ["joostw@seas.upenn.edu"]}] [{"policyName": "SPARC Material Sharing Policy", "policyURL": "https://commonfund.nih.gov/sites/default/files/SPARC_material%20sharing%20policy%2026jan17_508.pdf"}, {"policyName": "Terms of Service", "policyURL": "https://sparc.science/about/policies-and-standards/terms-of-service"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/about/cclicenses/"}] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["other"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/about/cclicenses/"}] restricted [] [] yes {"api": "https://sparc.science/help/zQfzadwADutviJjT19hA5", "apiType": "REST"} ["DOI"] https://sparc.science/help/1lmX4FWezRPTCOfGsBATnt [] yes yes [] [{"metadataStandardName": "Repository-Developed Metadata Schemas", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/repository-developed-metadata-schemas"}] {} 2022-01-18 2022-01-28 +r3d100013720 European Xenopus Resource Center eng [{"additionalName": "EXRC", "additionalNameLanguage": "eng"}] https://xenopusresource.org [] ["EXRC@xenopusresource.org", "https://xenopusresource.org/contact-us"] The European Xenopus Resource Centre (EXRC) is situated in Portsmouth, United Kingdom and provides tools and services to support researchers using Xenopus models. The EXRC depends on researchers to obtain and deposit Xenopus transgenic and mutant lines, Xenopus in-situ hybridization clones, Xenopus specific antibodies and other resources with the centre. EXRC staff perform quality assurance testing on these reagents and then makes them available to the community at cost. EXRC also supplies wild type Xenopus, embryos, oocytes, egg extracts, X.tropicalis Fosmids, X.laevis BACs and ORFeomes. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20103 Cell Biology", "scheme": "DFG"}, {"name": "203 Zoology", "scheme": "DFG"}, {"name": "20306 Animal Genetics, Cell and Developmental Biology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://xenopusresource.org/about-us [{"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider", "serviceProvider"] ["DNA", "antibody", "egg extracts", "embryo", "genetically altered lines", "mutant lines", "oocyte", "strains", "transgenic lines"] [{"institutionName": "Biotechnology and Biological Sciences Research Council", "institutionAdditionalName": ["BBSRC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://bbsrc.ukri.org/", "institutionIdentifier": ["ROR:00cwqg982"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "European Xenopus Resource Center", "institutionAdditionalName": ["EXRC"], "institutionCountry": "GBR", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://xenopusresource.org/", "institutionIdentifier": ["RRID:SCR_007164", "RRID:nif-0000-38111"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Natural Environment Research Council", "institutionAdditionalName": ["NERC"], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://nerc.ukri.org/", "institutionIdentifier": ["ROR:02b5d8509"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}, {"institutionName": "Wellcome Trust", "institutionAdditionalName": [], "institutionCountry": "GBR", "responsabilityType": ["funding"], "institutionType": "non-profit", "institutionURL": "https://wellcome.org/", "institutionIdentifier": ["ROR:029chgv08"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "European Xenopus Resource Centre Payment Terms", "policyURL": "https://xenopusresource.org/wp-content/uploads/2018/01/European-Xenopus-Resource-Centre-Payment-Terms.pdf"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired"]}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://xenopusresource.org/deposit"}] restricted [{"dataUploadLicenseName": "Depositing animals or reagents at the EXRC", "dataUploadLicenseURL": "https://xenopusresource.org/deposit"}] [] {} [] [] unknown yes [] [] {} The EXRC collection is continually growing and is available both via Xenbase and the EXRC website working together to support Xenopus research. Other Xenopus Resources: https://xenopusresource.org/other-xenopus-resources 2022-01-19 2022-02-03 +r3d100013722 Repositorio Abierto spa [{"additionalName": "Repositorio Abierto de la Universidad Internacional de Andaluc\u00eda", "additionalNameLanguage": "spa"}, {"additionalName": "UNIA Open Repository", "additionalNameLanguage": "eng"}] https://dspace.unia.es/ ["ROAR:5792"] ["biblioteca.digital@unia.es"] The repository stores resources generated by this University. It is organized into five collections: theses and dissertations; teaching material to support online training courses; OA publications from the university press; and historical documentation (includes academic journals and monographs in Spanish (1875-1940) and original material on local educational institutions (16th-20th centuries). eng ["institutional"] {"size": "", "updatedp": ""} 2008 [] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "102 History", "scheme": "DFG"}, {"name": "11 Humanities", "scheme": "DFG"}] https://www.unia.es/es/biblioteca-y-publicaciones/repositorio-abierto [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Images", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "other", "scheme": "parse"}] ["dataProvider"] ["Baeza", "La R\u00e1bida", "multidisciplinary"] [{"institutionName": "Universidad Internacional de Andalucia", "institutionAdditionalName": ["UNIA"], "institutionCountry": "ESP", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www.unia.es/es/", "institutionIdentifier": ["ROR:058nh3n50"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Aviso Legal", "policyURL": "https://www.unia.es/es/biblioteca-y-publicaciones/repositorio-abierto/aviso-legal"}, {"policyName": "T\u00e9rminos de uso", "policyURL": "https://www.unia.es/es/terminos-de-uso"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [{"databaseLicenseName": "CC", "databaseLicenseURL": "https://creativecommons.org/licenses/by-nc-sa/4.0/"}] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/licenses/by-nc-nd/4.0/"}] restricted [] ["CKAN"] {"api": "https://www.unia.es/es/biblioteca-y-publicaciones/repositorio-abierto", "apiType": "OAI-PMH"} ["hdl"] [] unknown unknown [] [{"metadataStandardName": "Dublin Core", "metadataStandardScheme": "DCC", "metadataStandardURL": "http://www.dcc.ac.uk/resources/metadata-standards/dublin-core"}] {} 2022-01-24 2022-01-28 +r3d100013727 ATCC Genome Portal eng [] https://genomes.atcc.org ["RRID:SCR_021330"] ["https://www.atcc.org/en/Support/Contact_Us.aspx"] Database and knowledgebase of authenticated microbial genomics data with full data provenance to physical materials held within American Type Culture Collection's (ATCC) biorepository and culture collections. Data includes whole genome sequencing data for bacterial, viral and fungal strains at ATCC, their genome assemblies, metadata, drug susceptibility data, and more. All data is freely available for non-commercial research use only (RUO) applications via the web portal interface or via a REST-API. The goal is to provide the research community with provenance information and authentication between the biological source materials and reference genome assemblies derived from them. eng ["institutional"] {"size": "", "updatedp": ""} 2019 ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] [{"name": "Scientific and statistical data formats", "scheme": "parse"}] ["dataProvider"] ["genomics", "reference genome"] [{"institutionName": "American Type Culture Collection", "institutionAdditionalName": [], "institutionCountry": "USA", "responsabilityType": ["funding", "general"], "institutionType": "non-profit", "institutionURL": "https://atcc.org", "institutionIdentifier": ["ROR:03thhhv76"], "responsibilityStartDate": "2019", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "The ATCC Genome Portal Documentation", "policyURL": "https://docs.onecodex.com/en/collections/2314023-the-atcc-genome-portal"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["feeRequired", "registration"]}] [{"dataLicenseName": "other", "dataLicenseURL": "https://www.atcc.org/policies/product-use-policies/data-use-agreement"}] restricted [] ["other"] {"api": "https://app.swaggerhub.com/apis/bcamarda/genome-portal_api/v1#/", "apiType": "REST"} [] https://www.atcc.org/policies/product-use-policies/data-use-agreement [] yes yes [] [] {} 2022-01-29 2022-02-02 +r3d100013732 Biofilms Structural Database eng [] https://biofilms.biosim.pt [] ["https://biofilms.biosim.pt/contact.php", "info@biosim.pt"] The Biofilms Structural Database contains information on different protein structures involved in biofilm formation, development, and virulence. eng ["disciplinary"] {"size": "501 entries; 125 ligands; 147 proteins; 48 bacteria", "updatedp": "2022-02-01"} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "201 Basic Biological and Medical Research", "scheme": "DFG"}, {"name": "20104 Structural Biology", "scheme": "DFG"}, {"name": "20105 General Genetics", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}] https://biofilms.biosim.pt/about.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Structured graphics", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["bacteria", "ligand", "mutagenesis", "organism", "protein"] [{"institutionName": "University of Porto, Faculty of Medicine, Biomolecular SIMulations Research Group", "institutionAdditionalName": ["BioSIM", "Universidade do Porto, Faculdade de Medicina, Departamento de Biomedicina"], "institutionCountry": "PRT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biosim.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [][] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://biofilms.biosim.pt/about.php"}] restricted [] [] {} [] https://biofilms.biosim.pt/about.php [] yes yes [] [] {} External links to other databases with complementary information are also made available for each entry, namely for ChEMBL, Binding DB, ExPASy, KeGG and UniProt. The database is easily searchable and exportable. One can export the entire database or manually selected entries in CSV or PDB format. 2022-02-01 2022-02-03 +r3d100013733 UNESP Institutional Repository por [{"additionalName": "Reposit\u00f3rio Institucional UNESP", "additionalNameLanguage": "por"}] https://repositorio.unesp.br/handle/11449/183294 [] ["https://unesp.libanswers.com/form?queue_id=4075", "repositoriounesp@unesp.br"] The UNESP Institucional Repository aims to store, preserv, disseminate and provide open access to scientific, academic, artistic and technical documentation, as well as data and plan management, produced by researchers and students at UNESP. eng ["institutional"] {"size": "", "updatedp": ""} ["eng", "por", "spa"] [{"name": "1 Humanities and Social Sciences", "scheme": "DFG"}, {"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "3 Natural Sciences", "scheme": "DFG"}, {"name": "4 Engineering Sciences", "scheme": "DFG"}] https://repositorio.unesp.br/ [{"name": "Audiovisual data", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}] ["dataProvider"] ["multidisciplinary"] [{"institutionName": "S\u00e3o Paulo State University", "institutionAdditionalName": ["Universidade Estadual Paulista"], "institutionCountry": "BRA", "responsabilityType": ["general"], "institutionType": "non-profit", "institutionURL": "https://www2.unesp.br/", "institutionIdentifier": ["ROR:00987cb86"], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Plano de Gest\u00e3o de Dados - Defini\u00e7\u00f5es", "policyURL": "https://www2.unesp.br/portal#!/acessoaberto/plano-de-gestao-de-dados/definicao/"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "embargoed", "dataAccessRestriction": []}, {"dataAccessType": "open", "dataAccessRestriction": []}, {"dataAccessType": "restricted", "dataAccessRestriction": ["institutional membership", "registration"]}] [{"dataLicenseName": "CC", "dataLicenseURL": "https://creativecommons.org/"}] restricted [] [] {} ["DOI", "hdl"] ["ORCID"] unknown unknown [] [] {"syndication": "https://repositorio.unesp.br/feed/atom_1.0/11449/183294", "syndicationType": "ATOM"} 2022-02-01 2022-02-04 +r3d100013735 LegionellaDB eng [] https://legionelladb.biosim.pt [] [] A world database on Legionella outbreaks. It is based on a metadata analysis of peer-reviewed manuscripts from PubMed and SCOPUS. LegionellaDB is dynamic and extensible, allowing users to search for specific outbreaks, suggest additional information to be included after curation, visualize statistical representations on specific outbreaks, and download selected data. eng ["disciplinary"] {"size": "", "updatedp": ""} ["eng"] [{"name": "2 Life Sciences", "scheme": "DFG"}, {"name": "204 Microbiology, Virology and Immunology", "scheme": "DFG"}, {"name": "21 Biology", "scheme": "DFG"}, {"name": "22 Medicine", "scheme": "DFG"}] https://legionelladb.biosim.pt/statistics.php [{"name": "Scientific and statistical data formats", "scheme": "parse"}, {"name": "Standard office documents", "scheme": "parse"}, {"name": "Structured text", "scheme": "parse"}] ["dataProvider"] ["Legionnaire's Disease", "bacteria", "protozoa"] [{"institutionName": "University of Porto, Faculty of Medicine, Biomolecular SIMulations Research Group", "institutionAdditionalName": ["BioSIM", "Universidade do Porto, Faculdade de Medicina, Departamento de Biomedicina"], "institutionCountry": "PRT", "responsabilityType": ["general", "technical"], "institutionType": "non-profit", "institutionURL": "https://biosim.pt/", "institutionIdentifier": [], "responsibilityStartDate": "", "responsibilityEndDate": "", "institutionContact": []}] [{"policyName": "Prote\u00e7\u00e3o de Dados Pessoais", "policyURL": "https://sigarra.up.pt/up/pt/web_base.gera_pagina?p_pagina=politica-protecao-dados-pessoais"}] {"databaseAccessType": "open", "databaseAccessRestriction": "[]"} [] [{"dataAccessType": "open", "dataAccessRestriction": []}] [{"dataLicenseName": "Copyrights", "dataLicenseURL": "https://sigarra.up.pt/up/pt/web_base.gera_pagina?p_pagina=POLITICA-UTILIZACAO-ACEITAVEL"}] restricted [] [] {} [] https://legionelladb.biosim.pt/more.php [] yes yes [] [] {} 2022-02-02 2022-02-07 diff --git a/data/in/roarCrossRef_1.tsv b/data/in/roarCrossRef_1.tsv new file mode 100644 index 0000000..adb1ff7 --- /dev/null +++ b/data/in/roarCrossRef_1.tsv @@ -0,0 +1,18067 @@ +eprintid registry_name registry_id +921 celestial 5 +1489 celestial 858 +606 opendoar 166 +606 celestial 1106 +606 roarmap 69 +102 celestial 367 +68 opendoar 165 +68 celestial 660 +995 celestial 1730 +941 opendoar 1198 +941 celestial 1226 +5271 celestial 4953 +5271 +1045 opendoar 835 +1045 celestial 727 +299 celestial 532 +299 roarmap 186 +695 celestial 408 +390 opendoar 109 +390 celestial 5423 +1064 celestial 124 +1383 opendoar 330 +1383 celestial 11 +1383 roarmap 258 +900 celestial 244 +132 opendoar 1277 +132 celestial 1085 +3618 celestial 2503 +3618 +648 celestial 273 +231 celestial 1420 +1120 opendoar 1723 +1120 celestial 441 +5942 celestial 1688 +628 celestial 1688 +992 celestial 5673 +992 opendoar 1064 +82 opendoar 15 +82 celestial 176 +1270 celestial 963 +1007 opendoar 627 +1007 celestial 363 +668 opendoar 185 +668 celestial 440 +1423 opendoar 348 +1423 roarmap 8 +1423 celestial 90 +4338 celestial 4695 +4338 celestial 4696 +298 celestial 1166 +3496 opendoar 2186 +3496 celestial 4618 +3496 +3496 +1061 celestial 976 +1142 opendoar 1415 +1142 celestial 4972 +1327 opendoar 908 +1327 celestial 2401 +1327 roarmap 40 +871 celestial 570 +346 opendoar 99 +346 celestial 684 +399 opendoar 88 +399 celestial 286 +399 roarmap 122 +1060 opendoar 1091 +1060 celestial 1743 +4562 opendoar 2373 +4562 celestial 4777 +1496 opendoar 1288 +1496 celestial 1249 +699 opendoar 1112 +699 celestial 1020 +699 roarmap 503 +36 opendoar 1003 +36 celestial 1062 +4475 celestial 4695 +4729 opendoar 709 +4729 celestial 736 +1164 opendoar 1385 +1164 celestial 1259 +1164 roarmap 204 +405 celestial 1170 +5531 opendoar 1232 +5531 celestial 1203 +1488 opendoar 1232 +1488 celestial 1203 +1531 opendoar 276 +1531 celestial 551 +952 celestial 625 +4781 opendoar 464 +4781 celestial 127 +498 opendoar 464 +498 celestial 127 +498 roarmap 204 +950 celestial 245 +1171 opendoar 605 +1171 celestial 988 +5051 opendoar 2447 +5051 celestial 4854 +4442 celestial 4854 +4442 +575 celestial 287 +575 opendoar 548 +575 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +2303 +890 celestial 1718 +4887 opendoar 639 +4887 celestial 4865 +846 celestial 453 +846 opendoar 657 +3168 celestial 2305 +3168 opendoar 1948 +3168 +3168 +3168 +719 opendoar 1127 +719 celestial 1141 +719 roarmap 73 +1199 opendoar 644 +1199 celestial 885 +5220 opendoar 578 +5220 celestial 674 +3038 celestial 674 +3038 +3038 +3038 +1380 opendoar 1366 +1380 celestial 2475 +337 opendoar 540 +337 celestial 583 +891 opendoar 1321 +891 celestial 1149 +889 opendoar 1367 +889 celestial 1291 +8721 opendoar 569 +8721 celestial 5659 +2533 celestial 2603 +2533 +2533 +2533 +884 opendoar 1617 +884 celestial 1716 +2524 opendoar 1617 +2524 celestial 1716 +988 opendoar 947 +988 celestial 1008 +925 opendoar 225 +925 celestial 4825 +454 celestial 968 +348 opendoar 1459 +348 celestial 1387 +888 opendoar 1295 +888 celestial 1302 +5756 opendoar 510 +5756 celestial 615 +784 opendoar 510 +784 celestial 615 +631 opendoar 961 +631 roarmap 19 +631 celestial 6221 +750 opendoar 509 +750 celestial 417 +215 opendoar 586 +215 celestial 877 +1018 opendoar 1262 +1018 celestial 1245 +2301 opendoar 363 +2301 celestial 1829 +239 opendoar 72 +239 celestial 181 +527 opendoar 1113 +527 celestial 59 +527 roarmap 295 +34 celestial 2134 +34 celestial 2133 +490 opendoar 134 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +490 +918 opendoar 224 +918 celestial 361 +294 opendoar 163 +294 celestial 653 +5519 opendoar 150 +5519 roarmap 99 +5519 celestial 6528 +782 celestial 1709 +904 celestial 1269 +263 opendoar 95 +263 celestial 678 +5091 celestial 4899 +5091 opendoar 2459 +1124 opendoar 450 +1124 celestial 1351 +6063 opendoar 1874 +6063 celestial 5138 +1082 celestial 608 +2838 opendoar 567 +2838 celestial 608 +3416 opendoar 567 +3416 celestial 608 +1256 opendoar 1787 +1256 celestial 1782 +1568 opendoar 409 +1568 celestial 548 +1227 opendoar 409 +1227 celestial 548 +427 celestial 1330 +333 opendoar 1154 +333 celestial 991 +1296 celestial 227 +4278 celestial 4662 +1384 celestial 209 +711 opendoar 202 +711 +5554 opendoar 570 +5554 celestial 1143 +212 opendoar 570 +212 celestial 1143 +706 opendoar 1449 +706 celestial 1431 +452 opendoar 121 +452 celestial 444 +536 opendoar 544 +536 celestial 986 +5440 opendoar 834 +5440 celestial 5013 +5716 opendoar 656 +5716 celestial 5071 +2347 opendoar 1400 +2347 celestial 2295 +1387 opendoar 1012 +1387 celestial 1077 +1189 celestial 1355 +90 celestial 1036 +5786 celestial 4950 +4455 celestial 4754 +4455 opendoar 2359 +1266 celestial 622 +3971 opendoar 2184 +3971 celestial 4589 +477 celestial 1003 +477 roarmap 30 +4412 celestial 4731 +4412 opendoar 2366 +1311 opendoar 571 +1311 celestial 252 +463 opendoar 126 +463 celestial 379 +463 roarmap 124 +1435 opendoar 100 +1435 celestial 679 +1378 opendoar 883 +1378 celestial 920 +1378 roarmap 305 +370 celestial 469 +3906 celestial 2633 +4145 celestial 4620 +4145 opendoar 2272 +1160 opendoar 284 +1160 celestial 184 +1160 roarmap 516 +772 opendoar 1004 +772 celestial 184 +764 opendoar 1281 +764 celestial 1102 +5206 opendoar 1523 +5206 celestial 4927 +820 opendoar 1235 +820 celestial 1278 +820 roarmap 96 +558 celestial 686 +533 opendoar 469 +533 celestial 568 +329 celestial 687 +914 opendoar 1530 +914 celestial 1433 +617 opendoar 483 +617 celestial 588 +553 celestial 1229 +21 celestial 576 +307 opendoar 592 +307 celestial 580 +4395 celestial 4716 +279 opendoar 75 +279 celestial 635 +561 celestial 818 +561 roarmap 98 +392 celestial 962 +5391 celestial 4999 +276 celestial 1196 +1065 opendoar 500 +1065 celestial 421 +343 opendoar 98 +343 celestial 685 +6412 opendoar 2606 +6412 celestial 5158 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +6412 +775 celestial 1707 +89 opendoar 18 +89 celestial 9 +306 opendoar 1151 +306 celestial 1159 +826 celestial 418 +2511 opendoar 2033 +2511 celestial 2130 +2511 +457 opendoar 460 +457 celestial 2088 +1500 opendoar 390 +1500 celestial 906 +356 opendoar 1608 +356 celestial 1421 +5434 opendoar 954 +5434 celestial 5010 +3886 celestial 2665 +326 opendoar 1152 +326 celestial 1337 +326 roarmap 163 +713 opendoar 636 +713 celestial 935 +4683 opendoar 1623 +4683 celestial 2015 +322 celestial 914 +5204 opendoar 1700 +5204 celestial 4926 +525 opendoar 127 +525 celestial 691 +525 roarmap 510 +4443 celestial 4749 +729 opendoar 194 +729 celestial 680 +3123 opendoar 1910 +3123 celestial 2290 +438 celestial 561 +929 celestial 2478 +2950 opendoar 2006 +2950 celestial 2234 +4862 celestial 4845 +4721 opendoar 626 +4721 celestial 715 +1401 opendoar 336 +1401 celestial 423 +4440 celestial 4746 +4440 opendoar 1623 +1479 opendoar 1456 +1479 celestial 1389 +880 opendoar 221 +880 celestial 247 +6888 celestial 5218 +6888 opendoar 1582 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +6888 +385 celestial 668 +3880 celestial 2640 +3360 celestial 2379 +1170 opendoar 1558 +1170 celestial 1764 +5421 opendoar 867 +5421 celestial 2274 +1247 opendoar 867 +1247 celestial 2274 +712 opendoar 1658 +712 celestial 5632 +3396 celestial 2396 +3396 opendoar 3322 +999 opendoar 250 +999 celestial 349 +5385 celestial 4610 +4090 celestial 4610 +4090 opendoar 2230 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +4090 +136 opendoar 1569 +136 celestial 1454 +1240 opendoar 305 +1240 celestial 435 +1240 roarmap 293 +85 celestial 1157 +5087 opendoar 2471 +5087 +5087 +4385 opendoar 2309 +4385 celestial 4707 +3268 opendoar 2269 +3268 celestial 5254 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +3268 +2342 opendoar 336 +2342 celestial 1837 +1157 celestial 1211 +3176 opendoar 1970 +3176 celestial 2309 +3176 roarmap 318 +1351 celestial 1232 +850 celestial 700 +347 opendoar 590 +347 celestial 702 +4698 celestial 4814 +4698 opendoar 2958 +1317 opendoar 1099 +1317 celestial 1177 +1404 celestial 406 +1404 opendoar 574 +1404 roarmap 132 +5388 celestial 4634 +4110 opendoar 2234 +4110 celestial 4634 +4110 +4110 +4110 +4110 +4110 +4110 +4110 +1078 celestial 1087 +1419 opendoar 346 +1419 celestial 208 +4167 opendoar 2259 +4167 celestial 4648 +1475 opendoar 1708 +1475 celestial 938 +3885 celestial 2677 +3740 celestial 2581 +48 celestial 915 +4419 celestial 4737 +1217 opendoar 1242 +1217 celestial 966 +76 opendoar 978 +76 celestial 1018 +76 roarmap 88 +331 opendoar 924 +331 celestial 992 +877 celestial 927 +500 opendoar 137 +500 celestial 272 +398 celestial 1648 +964 opendoar 1499 +964 celestial 1449 +3339 celestial 1878 +2790 celestial 2184 +6229 celestial 5118 +6229 opendoar 2735 +6229 +6229 +6229 +6229 +6229 +345 opendoar 439 +345 celestial 752 +342 opendoar 93 +342 celestial 538 +4376 opendoar 2310 +4376 celestial 4701 +303 opendoar 1600 +303 celestial 1633 +464 opendoar 1876 +464 celestial 1343 +280 opendoar 76 +280 celestial 189 +344 opendoar 438 +344 celestial 574 +4914 celestial 4864 +2938 celestial 2232 +466 opendoar 1610 +466 celestial 1659 +466 roarmap 428 +1036 celestial 593 +574 opendoar 159 +574 celestial 226 +1210 celestial 1019 +1210 +1211 celestial 1019 +1211 +1212 celestial 1019 +1212 +984 opendoar 713 +984 roarmap 1208 +984 celestial 6384 +721 opendoar 1580 +721 celestial 1699 +1425 opendoar 901 +1425 celestial 941 +1425 roarmap 161 +3799 celestial 2592 +1464 opendoar 320 +1464 celestial 954 +970 opendoar 1358 +970 celestial 1335 +314 opendoar 89 +314 celestial 285 +1302 opendoar 928 +1302 celestial 1787 +5586 opendoar 1186 +5586 celestial 937 +373 opendoar 1186 +373 celestial 937 +1273 opendoar 565 +1273 celestial 590 +1386 opendoar 882 +1386 celestial 5708 +4421 celestial 4739 +1108 celestial 947 +1108 roarmap 268 +1108 opendoar 547 +4408 celestial 4728 +2304 opendoar 1483 +2304 celestial 1830 +3579 opendoar 2053 +3579 celestial 2485 +183 opendoar 933 +183 celestial 926 +596 celestial 994 +1323 celestial 276 +335 opendoar 91 +335 celestial 541 +443 opendoar 1148 +443 celestial 763 +324 opendoar 676 +324 celestial 850 +251 opendoar 68 +251 celestial 2 +251 roarmap 1 +3713 opendoar 2107 +3713 celestial 2577 +1534 opendoar 1301 +1534 celestial 1815 +332 opendoar 96 +332 celestial 503 +526 opendoar 468 +526 celestial 586 +4304 celestial 4681 +555 opendoar 153 +555 celestial 1338 +3495 celestial 1338 +4409 celestial 4729 +4410 celestial 4729 +3959 celestial 2663 +359 opendoar 123 +359 celestial 917 +6416 opendoar 932 +6416 celestial 1931 +6416 +6416 +6416 +6416 +6416 +318 celestial 1637 +252 opendoar 1454 +252 celestial 639 +697 celestial 639 +403 opendoar 1168 +403 celestial 1133 +5546 opendoar 2193 +5546 celestial 2657 +3708 celestial 2573 +3708 opendoar 2344 +3925 opendoar 2193 +3925 celestial 2657 +3925 +3925 +3925 +3925 +3925 +3925 +3925 +5030 opendoar 2445 +5030 celestial 2657 +5030 +5030 +5030 +3372 celestial 2383 +358 opendoar 364 +358 celestial 1274 +3873 celestial 4796 +3873 opendoar 2414 +1416 celestial 61 +4456 celestial 4755 +4456 opendoar 2822 +776 celestial 1448 +911 opendoar 984 +911 celestial 1206 +51 opendoar 1142 +51 celestial 890 +1209 opendoar 2166 +1209 celestial 1408 +341 opendoar 1365 +341 celestial 4971 +4934 opendoar 1932 +4934 celestial 4867 +951 opendoar 493 +951 celestial 314 +3059 opendoar 1896 +3059 +3059 +3059 +3059 +3059 +3059 +3059 +3059 +3059 +3059 +3059 +4119 celestial 4631 +1002 celestial 1219 +1002 roarmap 285 +3629 opendoar 9491 +120 opendoar 1304 +120 celestial 1605 +1342 celestial 631 +336 opendoar 433 +336 celestial 577 +141 celestial 394 +277 opendoar 410 +277 celestial 670 +4274 opendoar 2303 +4274 celestial 4675 +4377 celestial 4675 +3253 opendoar 1960 +3253 celestial 1005 +1418 celestial 1180 +440 opendoar 498 +440 celestial 603 +559 opendoar 1192 +559 celestial 613 +394 celestial 965 +1095 opendoar 1437 +1095 celestial 1282 +1095 roarmap 97 +1105 opendoar 2045 +1105 celestial 1316 +1105 roarmap 333 +3520 celestial 2471 +3520 roarmap 333 +847 celestial 1292 +3538 opendoar 2072 +3538 celestial 2500 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +3538 +4268 opendoar 2311 +4268 celestial 4669 +4374 celestial 4669 +4199 celestial 4685 +4199 opendoar 2354 +969 opendoar 235 +969 celestial 392 +140 opendoar 658 +140 celestial 919 +3041 opendoar 1965 +3041 celestial 2267 +227 celestial 1153 +222 celestial 1242 +768 opendoar 437 +768 roarmap 126 +768 celestial 6752 +1067 opendoar 1607 +1067 celestial 1171 +642 celestial 147 +612 opendoar 880 +612 celestial 6140 +612 +612 +2324 opendoar 265 +2324 celestial 1850 +1167 opendoar 1548 +1167 celestial 1370 +822 opendoar 556 +822 celestial 640 +4367 celestial 4699 +4367 +859 celestial 1073 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +4880 +736 opendoar 1150 +736 celestial 989 +2808 opendoar 1827 +2808 celestial 2183 +4124 opendoar 2248 +4124 celestial 4622 +1004 opendoar 253 +1004 celestial 182 +5384 celestial 4997 +4908 celestial 4904 +780 opendoar 199 +780 celestial 360 +3358 opendoar 2004 +3358 celestial 2381 +1501 celestial 1015 +1501 opendoar 1234 +725 opendoar 1508 +725 celestial 1700 +3887 celestial 2678 +3304 opendoar 1985 +3304 celestial 2349 +549 opendoar 151 +549 celestial 19 +3817 celestial 2615 +3817 opendoar 2517 +435 opendoar 966 +435 celestial 957 +1198 opendoar 319 +1198 celestial 143 +4295 opendoar 2326 +4295 celestial 4678 +3961 celestial 2664 +516 celestial 911 +2544 opendoar 1819 +2544 celestial 2138 +2544 +2544 +1382 opendoar 1009 +1382 celestial 1068 +2512 celestial 2123 +2512 celestial 2122 +624 celestial 1083 +3932 opendoar 15 +3932 celestial 2653 +3513 opendoar 2031 +3513 celestial 2469 +1477 celestial 426 +2819 celestial 2219 +2819 opendoar 2840 +2835 opendoar 1843 +2835 celestial 2204 +1497 opendoar 1485 +1497 celestial 1807 +551 opendoar 473 +551 celestial 473 +4389 celestial 4711 +4392 celestial 4714 +902 opendoar 116 +902 celestial 432 +902 roarmap 20 +3607 opendoar 2062 +3607 celestial 2529 +380 opendoar 524 +380 celestial 470 +4542 opendoar 2400 +3714 opendoar 1094 +3714 celestial 1115 +4405 celestial 4726 +2928 opendoar 1855 +2928 celestial 2230 +885 opendoar 939 +885 celestial 993 +6884 celestial 5699 +6884 opendoar 2766 +6884 +6884 +6884 +531 opendoar 563 +531 celestial 823 +112 opendoar 1571 +112 celestial 1602 +448 opendoar 1645 +448 celestial 676 +3841 opendoar 2160 +3841 celestial 2609 +5187 opendoar 906 +5187 celestial 1955 +2959 opendoar 2155 +2959 celestial 2275 +844 celestial 755 +834 opendoar 432 +834 celestial 1154 +327 opendoar 85 +327 celestial 572 +413 opendoar 453 +413 celestial 597 +413 roarmap 207 +2518 opendoar 1059 +2518 celestial 2128 +2518 +2518 +2518 +2518 +2518 +2518 +2518 +2518 +2518 +2518 +488 celestial 215 +274 opendoar 73 +274 celestial 100 +3949 celestial 2667 +1255 opendoar 1659 +1255 celestial 1781 +26 celestial 1341 +26 opendoar 3276 +1259 opendoar 297 +1259 celestial 422 +3792 celestial 2593 +13849 +3166 opendoar 1933 +3166 celestial 2303 +2821 opendoar 1831 +2821 celestial 2207 +151 opendoar 28 +151 celestial 16 +151 roarmap 12 +2958 celestial 2242 +3053 opendoar 1886 +3053 celestial 2242 +478 opendoar 462 +478 celestial 688 +636 opendoar 173 +636 celestial 82 +106 opendoar 1445 +106 celestial 1183 +3148 opendoar 959 +3148 celestial 1046 +3390 celestial 2385 +3390 opendoar 2645 +3540 opendoar 2109 +3540 celestial 2499 +3540 +494 celestial 236 +1104 opendoar 542 +1104 celestial 280 +292 opendoar 420 +292 celestial 203 +1517 opendoar 396 +1517 celestial 263 +1206 opendoar 497 +1206 celestial 113 +364 opendoar 103 +364 celestial 43 +722 opendoar 179 +722 celestial 415 +1138 celestial 1374 +1008 opendoar 631 +1008 celestial 278 +799 celestial 559 +799 roarmap 18 +875 celestial 974 +3539 celestial 2548 +3539 opendoar 2087 +3539 +3539 +3539 +3539 +3539 +3539 +3539 +3539 +3663 opendoar 2087 +3663 celestial 2548 +461 opendoar 124 +461 celestial 88 +4290 celestial 4663 +35 opendoar 387 +35 celestial 347 +3126 opendoar 1443 +3126 celestial 2283 +3126 +3126 +3126 +3126 +2283 opendoar 1616 +2283 celestial 5636 +3709 celestial 2574 +1069 opendoar 1620 +1069 celestial 1745 +1069 roarmap 324 +804 celestial 980 +1232 opendoar 1103 +1232 celestial 1181 +1024 celestial 291 +2916 celestial 2227 +1129 opendoar 1488 +1129 celestial 1440 +1385 opendoar 1279 +1385 celestial 6143 +932 celestial 1007 +5456 opendoar 2085 +5456 celestial 2515 +3641 opendoar 2085 +3641 celestial 2515 +3630 opendoar 2091 +3630 celestial 5256 +2617 celestial 2479 +2617 opendoar 2379 +2617 +2617 +2617 +2617 +2617 +3592 celestial 2479 +3592 +3592 +3592 +3592 +3592 +3592 +3693 celestial 2479 +3693 +3693 +3693 +3693 +3693 +3693 +4585 celestial 2479 +4585 +4585 +4585 +4585 +4585 +4585 +1480 celestial 1342 +1480 opendoar 2815 +1563 opendoar 1703 +1563 celestial 1821 +1282 celestial 902 +213 celestial 1617 +213 opendoar 2436 +323 celestial 1345 +2870 opendoar 1852 +2870 celestial 2200 +2870 +2870 +2870 +2870 +325 opendoar 1598 +325 celestial 1638 +1085 opendoar 1501 +1085 celestial 1751 +1085 roarmap 291 +814 opendoar 206 +814 celestial 478 +5699 opendoar 1118 +5699 celestial 1132 +1269 opendoar 1118 +1269 celestial 1132 +3500 opendoar 2076 +3500 celestial 2465 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +3500 +5273 opendoar 2487 +5273 celestial 4952 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +5273 +1434 opendoar 576 +1434 celestial 249 +978 opendoar 241 +978 celestial 327 +66 opendoar 10 +66 celestial 431 +1156 celestial 431 +1156 opendoar 10 +3804 opendoar 2149 +3804 celestial 2630 +774 opendoar 1026 +774 celestial 1162 +4531 opendoar 2360 +4531 celestial 4767 +4985 opendoar 2360 +4985 celestial 4767 +1220 celestial 1777 +246 celestial 582 +4638 opendoar 66 +4638 celestial 582 +1275 celestial 388 +462 opendoar 125 +462 celestial 344 +2501 opendoar 1735 +2501 celestial 2124 +3675 celestial 2513 +3644 opendoar 2074 +3644 celestial 2513 +1432 opendoar 363 +1432 celestial 871 +2330 opendoar 363 +2330 celestial 871 +1485 opendoar 366 +1485 celestial 1160 +2936 opendoar 2231 +2936 celestial 6130 +2936 celestial 2231 +2936 +2936 +2936 +3696 opendoar 3846 +3696 roarmap 6270 +3696 celestial 6789 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +3696 +842 celestial 1714 +927 opendoar 975 +927 celestial 1042 +657 celestial 1241 +1119 opendoar 613 +1119 celestial 886 +2379 opendoar 1710 +2379 celestial 2085 +3309 opendoar 2137 +3309 celestial 2352 +4029 opendoar 2215 +4029 celestial 4597 +233 opendoar 65 +233 celestial 33 +233 roarmap 10 +2837 opendoar 699 +2837 celestial 852 +568 opendoar 478 +568 celestial 452 +3410 opendoar 1229 +3410 celestial 2016 +1413 opendoar 1322 +1413 celestial 1276 +779 opendoar 797 +779 celestial 864 +80 opendoar 14 +80 celestial 384 +119 celestial 384 +119 roarmap 139 +119 opendoar 24 +5445 opendoar 1226 +5445 celestial 1436 +936 opendoar 1226 +936 celestial 5902 +751 celestial 1354 +1347 opendoar 1534 +1347 celestial 1198 +98 opendoar 889 +98 celestial 928 +98 roarmap 36 +2346 opendoar 889 +2346 celestial 928 +4147 celestial 928 +131 celestial 1363 +6589 opendoar 2638 +6589 celestial 5265 +6589 +6589 +6589 +6589 +6589 +6589 +944 celestial 1409 +806 celestial 880 +671 opendoar 1165 +671 celestial 1231 +627 opendoar 484 +627 celestial 614 +1458 opendoar 1554 +1458 celestial 1375 +743 opendoar 1167 +743 celestial 1300 +4422 celestial 4740 +7414 opendoar 2845 +7414 celestial 5341 +7414 +7414 +7414 +7414 +7414 +2943 opendoar 1891 +2943 celestial 5253 +2943 +2943 +2943 +171 celestial 868 +979 opendoar 242 +979 celestial 373 +943 celestial 909 +5959 opendoar 2568 +5959 celestial 4981 +338 opendoar 434 +338 +338 +338 +338 +2991 opendoar 1869 +2991 celestial 2248 +1306 celestial 339 +1306 opendoar 2550 +1421 opendoar 78 +1228 opendoar 1832 +1228 celestial 1778 +923 opendoar 1193 +923 celestial 1024 +207 opendoar 54 +207 celestial 295 +386 celestial 1281 +590 opendoar 1688 +590 celestial 1682 +4855 roarmap +4855 celestial 4843 +4855 +4855 +4855 +4855 +57 celestial 1593 +2449 opendoar 2000 +2449 celestial 2415 +2449 roarmap 267 +1448 opendoar 3 +1448 celestial 5385 +3639 opendoar 2082 +3639 celestial 2516 +3639 roarmap 209 +3938 celestial 2676 +3938 opendoar 2973 +261 opendoar 1535 +261 celestial 1626 +3050 opendoar 223 +3050 celestial 2264 +481 opendoar 1141 +481 celestial 977 +3406 opendoar 922 +3406 celestial 841 +579 celestial 841 +3958 celestial 2662 +67 opendoar 11 +67 celestial 3 +1107 opendoar 1477 +1107 celestial 1403 +361 opendoar 81 +361 celestial 40 +339 celestial 701 +465 opendoar 1401 +465 celestial 1401 +143 opendoar 606 +143 celestial 883 +879 opendoar 489 +879 celestial 865 +211 celestial 155 +1452 opendoar 766 +1452 celestial 370 +674 opendoar 59 +674 celestial 114 +674 roarmap 2 +3653 opendoar 2134 +3653 celestial 2508 +734 opendoar 195 +734 celestial 242 +817 celestial 889 +581 celestial 405 +1304 celestial 1466 +433 celestial 1117 +3942 celestial 2673 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +3942 +266 opendoar 70 +266 celestial 47 +266 roarmap 158 +378 opendoar 941 +378 celestial 6300 +305 opendoar 1599 +305 celestial 1425 +6335 opendoar 2605 +6335 roarmap 6335 +6335 celestial 6026 +3915 celestial 2649 +3915 opendoar 2605 +33 opendoar 957 +33 celestial 1084 +3918 celestial 2644 +4913 celestial 4859 +4913 celestial 4860 +4913 opendoar 2577 +1445 celestial 104 +1493 celestial 35 +3917 celestial 2646 +69 opendoar 639 +69 celestial 931 +374 celestial 936 +1528 opendoar 518 +1528 celestial 2209 +1407 opendoar 341 +1407 celestial 45 +1407 roarmap 251 +147 opendoar 953 +147 celestial 1301 +95 opendoar 1247 +95 celestial 1213 +351 opendoar 1153 +351 celestial 1336 +882 celestial 1148 +221 opendoar 61 +221 celestial 106 +5561 opendoar 518 +5561 celestial 5034 +1403 opendoar 338 +1403 celestial 424 +1344 celestial 1199 +3948 celestial 2666 +3429 celestial 2369 +3429 +3429 +3429 +3426 opendoar 2023 +3426 celestial 2369 +3426 +3426 +547 opendoar 1702 +547 celestial 1675 +3109 opendoar 581 +3109 celestial 649 +384 opendoar 581 +384 celestial 649 +88 opendoar 1478 +88 celestial 1402 +661 opendoar 115 +661 celestial 596 +1010 celestial 555 +1155 celestial 648 +5564 opendoar 1396 +5564 celestial 1320 +5449 opendoar 2452 +5449 celestial 4954 +5360 opendoar 56 +5360 celestial 409 +2388 opendoar 1213 +2388 celestial 1866 +903 celestial 1445 +2508 celestial 2419 +2508 +2508 +528 opendoar 1396 +528 celestial 1320 +245 celestial 173 +4437 celestial 2494 +4437 +4437 +3555 opendoar 1525 +3555 celestial 2494 +1545 celestial 1240 +244 celestial 173 +103 opendoar 386 +103 celestial 619 +2565 opendoar 2104 +2565 celestial 2142 +1101 opendoar 805 +1101 celestial 174 +423 opendoar 917 +423 celestial 5908 +423 +423 +423 +423 +423 +423 +423 +423 +423 +423 +423 +423 +423 +371 opendoar 56 +371 celestial 409 +4679 opendoar 56 +4679 celestial 409 +942 opendoar 625 +942 celestial 277 +2526 opendoar 346 +2526 celestial 2293 +954 opendoar 232 +954 celestial 1168 +483 opendoar 1325 +483 roarmap 84 +483 celestial 2459 +2488 opendoar 1720 +2488 celestial 2114 +3374 opendoar 2007 +3374 celestial 2375 +1307 opendoar 1507 +1307 celestial 1422 +156 celestial 154 +749 celestial 875 +749 opendoar 601 +746 opendoar 931 +746 celestial 1021 +2392 opendoar 931 +2392 celestial 1021 +5184 opendoar 2339 +5184 celestial 4922 +486 opendoar 1525 +486 celestial 1662 +635 celestial 433 +635 roarmap 71 +1113 celestial 315 +3762 celestial 2589 +1564 opendoar 1733 +1564 celestial 1822 +2649 opendoar 2063 +2649 celestial 2474 +6393 opendoar 2063 +6393 celestial 2474 +5239 opendoar 2482 +5239 celestial 6714 +5239 +5239 +5239 +649 celestial 946 +200 opendoar 49 +200 celestial 23 +664 opendoar 184 +664 celestial 416 +6206 roarmap +6206 celestial 5128 +6206 celestial 5130 +6206 opendoar 2729 +1090 opendoar 1628 +1090 celestial 1754 +491 celestial 1187 +1292 opendoar 1156 +1292 celestial 1317 +3194 opendoar 1955 +3194 celestial 2318 +4411 celestial 4730 +996 opendoar 249 +996 celestial 643 +3642 opendoar 2075 +3642 celestial 2514 +58 celestial 1594 +58 opendoar 2371 +6545 celestial 5177 +945 celestial 1724 +3172 celestial 2307 +3172 +3172 +815 opendoar 313 +815 celestial 55 +862 opendoar 217 +862 celestial 420 +5870 opendoar 2563 +5870 celestial 5090 +383 opendoar 1528 +383 celestial 1289 +1253 celestial 1286 +39 opendoar 730 +39 celestial 49 +1271 celestial 777 +4320 opendoar 2364 +4320 celestial 6219 +886 celestial 343 +690 opendoar 968 +690 celestial 1205 +1162 opendoar 496 +1162 celestial 592 +540 celestial 195 +1426 opendoar 2 +1426 celestial 569 +1426 roarmap 116 +31 opendoar 1 +31 celestial 62 +31 roarmap 1 +50 celestial 130 +50 roarmap 6 +152 opendoar 406 +152 celestial 509 +5185 opendoar 1391 +5185 celestial 1347 +3992 opendoar 1391 +3992 celestial 1347 +1541 opendoar 1391 +1541 celestial 1347 +281 opendoar 77 +281 celestial 326 +758 celestial 1076 +201 opendoar 50 +201 celestial 24 +328 opendoar 431 +328 celestial 579 +2846 opendoar 1845 +2846 celestial 2297 +2846 roarmap 596 +1168 celestial 1344 +4854 opendoar 2438 +4854 celestial 4842 +2860 celestial 2196 +2860 +2860 +2860 +1144 opendoar 1315 +1144 celestial 1252 +5572 opendoar 1409 +5572 celestial 1635 +309 opendoar 1409 +309 celestial 1635 +1365 opendoar 1378 +1365 celestial 64 +1365 roarmap 466 +3420 opendoar 283 +3420 celestial 2012 +5533 opendoar 839 +5533 celestial 1970 +71 celestial 94 +1438 opendoar 353 +1438 celestial 65 +1438 roarmap 254 +93 opendoar 403 +93 celestial 472 +5168 celestial 4932 +96 opendoar 1650 +96 celestial 1598 +1111 celestial 552 +6882 celestial 5217 +6882 opendoar 2806 +2375 celestial 2112 +2375 +4590 opendoar 1760 +4590 celestial 2150 +2608 opendoar 1760 +2608 celestial 2150 +6234 celestial 5119 +5735 opendoar 2492 +5735 celestial 4985 +5735 +5735 +11496 opendoar 1693 +11496 celestial 1464 +5317 opendoar 2492 +5317 celestial 4985 +5252 opendoar 1879 +5252 celestial 2246 +4543 celestial 4770 +3094 opendoar 1900 +3094 celestial 2298 +3094 +2537 celestial 2211 +2537 roarmap 477 +2475 opendoar 1726 +1130 opendoar 1559 +1130 celestial 1759 +2995 celestial 2246 +2995 opendoar 1879 +2995 +2995 +3020 opendoar 1879 +3020 celestial 2246 +3401 opendoar 1879 +3401 celestial 2246 +985 opendoar 1318 +985 roarmap 56 +985 celestial 6760 +1118 celestial 972 +848 opendoar 1341 +848 celestial 1465 +849 celestial 1271 +316 celestial 458 +482 opendoar 133 +482 celestial 212 +482 roarmap 19 +1076 celestial 900 +476 celestial 271 +417 opendoar 764 +417 celestial 746 +1281 celestial 283 +2575 opendoar 1753 +2575 celestial 2144 +708 opendoar 191 +708 celestial 185 +4578 opendoar 2372 +4578 celestial 4782 +232 opendoar 1244 +232 celestial 1214 +514 opendoar 1844 +514 celestial 1667 +3389 celestial 2384 +256 celestial 923 +1205 celestial 1772 +966 opendoar 233 +966 celestial 46 +23 celestial 383 +1034 celestial 1334 +1034 opendoar 2760 +425 celestial 557 +1003 opendoar 252 +1003 celestial 311 +5258 opendoar 1875 +5258 celestial 2203 +4530 celestial 4764 +2849 opendoar 1875 +2849 celestial 2203 +4551 celestial 4773 +4551 +4744 opendoar 2412 +4744 +4744 +4744 +4744 +4744 +4744 +4744 +4744 +2600 celestial 2148 +1492 celestial 1805 +396 opendoar 985 +396 celestial 1063 +913 celestial 1065 +753 opendoar 1307 +753 celestial 1191 +301 celestial 1349 +5700 opendoar 2176 +5700 celestial 4913 +5514 opendoar 2047 +5514 celestial 2495 +5441 opendoar 2439 +5441 celestial 4876 +3924 opendoar 2176 +3924 roarmap 479 +3924 celestial 4913 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +3924 +4171 opendoar 2265 +4171 celestial 4644 +3521 opendoar 2092 +3521 celestial 2472 +3704 opendoar 2139 +3704 celestial 2551 +3522 celestial 2473 +3522 opendoar 567 +2866 opendoar +2866 celestial 2193 +2866 celestial 2194 +2866 roarmap 290 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +2866 +4438 celestial 4745 +2534 celestial 2131 +2534 +2534 +2534 +2534 +1016 celestial 1325 +295 celestial 1326 +2643 celestial 2161 +2653 opendoar 902 +2653 celestial 2161 +1194 opendoar 1423 +1194 celestial 1369 +355 celestial 1239 +125 opendoar 1205 +125 celestial 967 +495 opendoar 902 +495 celestial 2163 +495 roarmap 278 +300 opendoar 323 +300 celestial 651 +801 opendoar 393 +801 celestial 292 +5003 opendoar 393 +5003 celestial 292 +1363 opendoar 322 +1363 celestial 92 +1363 roarmap 138 +1226 opendoar 289 +1226 celestial 53 +1226 roarmap 8 +1406 opendoar 340 +1406 celestial 83 +1243 opendoar 501 +1243 celestial 105 +1243 +1243 +1243 +1243 +1243 +1243 +1243 +1243 +1243 +1243 +1379 opendoar 328 +1379 celestial 72 +633 opendoar 794 +934 opendoar 227 +934 celestial 103 +934 roarmap 302 +933 opendoar 226 +933 celestial 85 +933 roarmap 302 +1185 celestial 2208 +3554 opendoar 2047 +3554 celestial 2495 +6083 opendoar 2590 +6083 celestial 5106 +654 opendoar 486 +654 celestial 475 +1321 celestial 901 +3421 opendoar 550 +3421 celestial 626 +3081 opendoar 1794 +3081 celestial 2177 +174 opendoar 1663 +174 celestial 2402 +819 opendoar 83 +819 celestial 696 +2841 opendoar 83 +2841 celestial 696 +1051 opendoar 270 +1051 celestial 87 +1051 roarmap 4 +402 opendoar 762 +402 celestial 888 +924 opendoar 923 +924 celestial 975 +1453 opendoar 314 +1453 celestial 97 +137 opendoar 1611 +137 celestial 1609 +1394 opendoar 333 +1394 celestial 76 +2484 opendoar 1772 +2484 celestial 2121 +910 opendoar 913 +910 celestial 971 +4527 celestial 971 +4527 +4527 +800 opendoar 203 +800 celestial 205 +662 opendoar 182 +662 celestial 78 +1513 opendoar 471 +1513 celestial 102 +2400 opendoar 471 +2400 celestial 102 +569 opendoar 546 +569 celestial 731 +906 opendoar 223 +906 celestial 84 +4122 opendoar 2237 +4122 celestial 4625 +1263 opendoar 1813 +1263 celestial 1784 +4672 opendoar 19 +4672 celestial 518 +49 opendoar 19 +49 celestial 518 +2454 opendoar 1241 +2454 celestial 2108 +2613 celestial 2153 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +2613 +582 opendoar 162 +582 celestial 77 +582 roarmap 101 +444 opendoar 458 +444 celestial 601 +4207 opendoar 2285 +4207 celestial 4654 +1349 opendoar 972 +1349 celestial 1039 +224 opendoar 62 +224 celestial 109 +1236 celestial 254 +1112 celestial 402 +92 opendoar 399 +92 celestial 650 +92 roarmap 3 +737 celestial 256 +1446 opendoar 131 +1446 celestial 6288 +3728 celestial 2580 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +3728 +311 celestial 634 +4571 opendoar 2367 +4571 celestial 4779 +1341 opendoar 1527 +1341 celestial 1796 +199 opendoar 48 +199 celestial 22 +811 celestial 308 +1507 opendoar 476 +1507 celestial 487 +3962 celestial 2668 +105 celestial 510 +165 celestial 665 +1325 celestial 1208 +2785 opendoar 1820 +2785 celestial 2187 +688 opendoar 1463 +688 celestial 1324 +1241 opendoar 1627 +1241 celestial 1779 +4998 opendoar 1627 +4998 celestial 1779 +3824 celestial 2612 +639 celestial 1169 +247 celestial 939 +591 opendoar 164 +591 celestial 107 +1442 opendoar 358 +1442 celestial 70 +808 celestial 112 +3302 opendoar 1988 +3302 celestial 2347 +4028 opendoar 2214 +4028 celestial 4592 +629 opendoar 169 +629 celestial 111 +205 opendoar 53 +205 celestial 31 +5474 opendoar 1080 +5474 celestial 1096 +64 opendoar 1080 +64 celestial 1096 +273 celestial 380 +196 opendoar 46 +196 celestial 32 +3854 opendoar 2526 +3854 celestial 5854 +471 opendoar 400 +471 celestial 232 +3505 opendoar 2431 +3505 roarmap +3505 celestial 5255 +3505 +3505 +3505 +3505 +3505 +3505 +3505 +3505 +3505 +1414 opendoar 343 +1414 celestial 6436 +6418 celestial 5160 +6418 celestial 5159 +867 opendoar 212 +867 celestial 118 +4403 celestial 4724 +12864 opendoar 1772 +12864 celestial 5027 +11948 celestial 1428 +9708 celestial 6304 +9708 opendoar 1035 +9415 celestial 2299 +8404 celestial 1863 +7392 celestial 4973 +7032 celestial 2443 +6975 celestial 5243 +6914 opendoar 2660 +6914 celestial 5238 +6878 opendoar 2900 +6878 celestial 5215 +6866 celestial 5214 +6866 +6841 celestial 5211 +6841 +6841 +6841 +6841 +6838 celestial 5210 +6838 opendoar 2770 +6838 +6838 +6838 +6838 +6838 +6838 +6829 opendoar 2591 +6829 celestial 5208 +6829 +6829 +6829 +6829 +6829 +6829 +6829 +6829 +6774 celestial 5203 +6774 +6774 +6774 +6774 +6774 +6774 +6770 opendoar 1871 +6770 celestial 2252 +6745 celestial 5199 +6745 opendoar 2757 +6742 celestial 1122 +6737 celestial 5202 +6737 opendoar 2657 +6737 +6730 celestial 5201 +6730 opendoar 2651 +6730 +6730 +6727 celestial 5198 +6707 celestial 5197 +6707 opendoar 2878 +6707 +6694 celestial 5196 +6692 opendoar 2629 +6692 roarmap +6692 celestial 5195 +6692 +6692 +6692 +6692 +6692 +6692 +6692 +6691 celestial 5206 +7829 opendoar 2804 +7829 opendoar +7829 celestial 5205 +6688 celestial 5205 +6688 opendoar 2804 +6688 opendoar +6555 celestial 5187 +6555 opendoar 2694 +6536 opendoar 2653 +6536 celestial 6713 +6507 celestial 5174 +6477 opendoar 2635 +6477 celestial 5172 +6452 celestial 5164 +6452 opendoar 2773 +6452 +6452 +6452 +6452 +6452 +6452 +6452 +6371 celestial 5155 +6371 roarmap 550 +6371 opendoar 2654 +6363 celestial 5154 +6363 opendoar 2764 +6330 opendoar 2618 +6330 celestial 5147 +6285 celestial 5131 +6256 opendoar 2597 +6256 celestial 5124 +6242 celestial 5122 +6241 celestial 5120 +6241 opendoar 2759 +6241 +6241 +6241 +6241 +6241 +6241 +6241 +6241 +6232 celestial 5140 +6232 opendoar 2782 +6199 opendoar 2381 +6199 celestial 5019 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6199 +6194 celestial 5113 +6194 opendoar 3558 +6190 celestial 5114 +6190 opendoar 2870 +6178 celestial 4933 +6120 celestial 5089 +6120 +6119 celestial 5107 +6119 +6119 +6119 +6119 +6119 +6119 +6119 +6110 celestial 5139 +6062 opendoar 2584 +6062 celestial 5125 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6062 +6058 opendoar 2576 +6058 celestial 6131 +6048 celestial 5075 +6048 opendoar 2548 +6019 celestial 5098 +6019 +6019 +6019 +6001 opendoar 570 +6001 celestial 6656 +5996 celestial 5100 +5996 opendoar 3286 +5986 opendoar 2123 +5986 celestial 2584 +5943 opendoar 2566 +5943 celestial 5091 +5930 opendoar 2567 +5930 celestial 4990 +5919 celestial 6165 +5919 +5919 +5911 celestial 4977 +5911 opendoar 2586 +5903 celestial 5089 +5903 opendoar 2721 +5893 celestial 4976 +5891 opendoar 2539 +5891 celestial 5088 +5889 opendoar 1061 +5889 celestial 5087 +5850 opendoar 2559 +5850 celestial 5136 +5835 celestial 5082 +5835 opendoar 3362 +5817 opendoar 2561 +5817 celestial 5083 +5798 opendoar 2556 +5798 celestial 4958 +5791 opendoar 2554 +5791 celestial 4968 +5774 celestial 5077 +5774 opendoar 2921 +5749 opendoar 1234 +5749 celestial 5073 +5725 celestial 4964 +5725 opendoar 2613 +5720 opendoar 1678 +5720 celestial 1804 +5711 opendoar 1509 +5711 celestial 1430 +5687 opendoar 2465 +5687 celestial 4921 +5688 opendoar 2272 +5688 celestial 4641 +5685 opendoar 2382 +5685 celestial 4792 +5673 celestial 5185 +5673 opendoar 2767 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5673 +5668 celestial 4963 +5668 opendoar 3006 +5668 +5668 +5668 +5668 +5668 +5668 +5668 +5668 +5668 +5663 celestial 5068 +5662 celestial 5067 +5661 celestial 5066 +5651 celestial 5061 +5650 celestial 5060 +5644 celestial 5058 +5644 opendoar 2693 +5640 celestial 5059 +5639 celestial 5057 +5639 +5639 +5639 +5639 +5639 +5639 +5639 +5639 +5637 celestial 5056 +5634 celestial 5055 +5628 opendoar 935 +5628 celestial 1013 +5615 celestial 5053 +5615 +5614 celestial 5052 +5614 opendoar 3203 +5613 celestial 5051 +5612 celestial 5054 +5611 celestial 5050 +5610 celestial 5048 +5608 celestial 5047 +5607 celestial 5046 +5606 opendoar 2555 +5606 celestial 5045 +5605 celestial 5043 +5604 celestial 5044 +5595 opendoar 1461 +5595 celestial 6472 +5595 +5595 +5595 +5593 celestial 5134 +5593 opendoar 2832 +5592 celestial 5042 +5591 celestial 5041 +5587 opendoar 1916 +5587 celestial 5040 +5577 opendoar 1622 +5577 celestial 1972 +5578 opendoar 2491 +5578 celestial 4994 +5571 opendoar 1518 +5571 celestial 4956 +5567 opendoar 2497 +5567 celestial 5035 +5553 opendoar 501 +5553 celestial 4970 +5548 opendoar 1470 +5548 celestial 1400 +5545 opendoar 1266 +5545 celestial 1863 +5542 opendoar 1444 +5542 celestial 5032 +5543 opendoar 1071 +5543 celestial 5029 +5539 opendoar 904 +5539 celestial 1108 +5538 opendoar 1178 +5538 celestial 1357 +5521 opendoar 415 +5521 celestial 516 +5520 opendoar 1231 +5520 celestial 4676 +5468 opendoar 651 +5468 celestial 4679 +5463 opendoar 1915 +5463 celestial 2280 +5452 opendoar 2423 +5452 celestial 4856 +5433 opendoar 1848 +5433 celestial 2195 +5425 opendoar 1047 +5425 celestial 1075 +5423 opendoar 1583 +5423 celestial 5008 +5402 opendoar 1484 +5402 celestial 5001 +5392 celestial 6273 +5389 celestial 4614 +5386 celestial 4998 +5297 celestial 4994 +5291 celestial 4996 +5272 opendoar 2508 +5272 celestial 4984 +5269 opendoar 1465 +5269 celestial 1971 +5237 opendoar 2490 +5237 celestial 5018 +5236 celestial 5181 +5236 opendoar 3270 +5221 opendoar 239 +5221 celestial 1848 +5219 opendoar 1283 +5219 celestial 4930 +5212 opendoar 2473 +5212 celestial 4929 +5197 opendoar 2478 +5197 celestial 4925 +5196 celestial 4934 +5196 opendoar 2939 +5195 celestial 4933 +5162 celestial 4920 +5162 +5162 +5162 +5162 +5162 +5162 +5162 +5162 +5162 +5162 +5158 opendoar 2464 +5158 celestial 4920 +5157 opendoar 2465 +5157 celestial 4921 +5156 opendoar 173 +5156 celestial 4919 +5149 opendoar 2469 +5149 celestial 4917 +5145 celestial 4980 +5145 +5145 +5122 celestial 4916 +5122 opendoar 2479 +5081 celestial 6642 +5068 opendoar 2454 +5068 celestial 6513 +5004 opendoar 2342 +5004 celestial 4884 +5006 opendoar 1539 +5006 celestial 4889 +4997 opendoar 2286 +4997 celestial 4882 +4973 opendoar 956 +4973 celestial 5414 +4936 opendoar 1092 +4936 celestial 4868 +6225 opendoar 2599 +6225 celestial 5005 +6225 +6225 +6225 +6225 +6225 +6225 +6225 +6225 +6225 +6225 +6225 +7274 opendoar 2599 +7274 celestial 5005 +7274 +7274 +7274 +7274 +7274 +7274 +7274 +7274 +7274 +7274 +7274 +4789 opendoar 1501 +4789 celestial 4858 +4751 opendoar 2423 +4751 celestial 4856 +4738 celestial 4815 +4815 opendoar 2425 +4815 celestial 4838 +4707 opendoar 2403 +4707 celestial 4802 +4864 opendoar 2440 +4864 celestial 4846 +4809 opendoar +4809 celestial 4836 +4624 opendoar 2382 +4624 celestial 4792 +4625 celestial 4793 +4625 opendoar 2415 +4533 opendoar 2403 +4533 celestial 4802 +4533 +4533 +4533 +4533 +4533 +4533 +4533 +4533 +4554 celestial 5639 +4554 opendoar 3219 +4436 celestial 4743 +4404 celestial 4725 +4336 celestial 4693 +4336 +4402 celestial 4723 +4322 celestial 4582 +4694 opendoar 2404 +4694 celestial 4821 +4687 opendoar 1445 +4687 celestial 4812 +4670 opendoar 2393 +4670 celestial 4809 +4314 celestial 4689 +4784 opendoar 2421 +4784 celestial 4834 +4258 celestial 4658 +4258 +4239 opendoar +4239 celestial 4656 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4239 +4176 opendoar +4176 celestial 4642 +4168 opendoar 2258 +4168 celestial 4646 +4588 opendoar 2376 +4588 celestial 4785 +4226 celestial 4657 +4226 opendoar 2336 +4226 +4127 opendoar 2233 +4127 celestial 6272 +5063 opendoar 2363 +5063 celestial 4855 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +5063 +4476 celestial 4763 +4476 opendoar 2356 +4637 opendoar 497 +4637 celestial 4805 +4041 celestial 4599 +4041 opendoar 3189 +4041 +4041 +4041 +4041 +4591 opendoar 2375 +4591 celestial 4787 +3996 opendoar 2223 +3996 roarmap 338 +3996 celestial 4935 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +3996 +5074 opendoar 2409 +5074 celestial 4835 +3990 opendoar 2199 +3990 celestial 4582 +5015 opendoar 7440 +5015 roarmap +5015 +4275 opendoar 1231 +4400 celestial 4721 +4300 celestial 4679 +4300 +4873 opendoar 2433 +4873 celestial 4847 +3952 opendoar 2181 +3952 celestial 2669 +3769 opendoar 2125 +3769 celestial 5145 +3818 celestial 2614 +3818 +3818 +3818 +3818 +3818 +3818 +4088 opendoar 2224 +4088 celestial 4612 +3736 opendoar 2123 +3736 celestial 2584 +4140 celestial 4621 +4140 opendoar 2256 +3718 opendoar 2132 +3718 celestial 6455 +4053 celestial 4684 +3745 celestial 2586 +3745 opendoar 2894 +3701 celestial 4849 +3701 opendoar 2046 +4023 opendoar 2206 +4023 celestial 4602 +3842 opendoar 2153 +3842 celestial 2607 +4025 opendoar 2207 +4025 celestial 4601 +3512 opendoar 2040 +3512 celestial 2468 +3512 roarmap 338 +3551 opendoar 2040 +3551 celestial 2468 +3551 roarmap 338 +4071 celestial 4614 +4071 opendoar 2229 +4071 +4071 +3456 opendoar 2025 +3456 celestial 2394 +4386 opendoar 2312 +4386 celestial 4708 +3515 opendoar 2042 +3515 celestial 2470 +3523 opendoar +3523 celestial 2470 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +3523 +4273 opendoar 2325 +4273 celestial 4674 +4369 celestial 4674 +4270 opendoar 2305 +4270 celestial 4671 +4354 celestial 4671 +3335 celestial 2359 +4272 opendoar 2316 +4272 celestial 4673 +4382 celestial 4704 +3453 opendoar 2216 +3453 celestial 6567 +3466 opendoar 2016 +3466 celestial 2392 +4352 opendoar 2323 +4352 celestial 4698 +4353 celestial 4698 +3657 opendoar 2090 +3657 celestial 2505 +3470 opendoar 2017 +3470 celestial 2390 +3288 opendoar 2667 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3288 +3387 opendoar 2015 +3387 celestial 2373 +4075 opendoar 2015 +4075 celestial 2373 +4075 +4075 +4075 +4075 +4075 +4075 +4075 +4380 opendoar 2307 +4380 celestial 4703 +3574 opendoar 2064 +3574 celestial 2491 +4114 celestial 4633 +4114 +4114 +4114 +4151 celestial 4641 +3190 opendoar 1963 +3190 celestial 2320 +3190 +3190 +3190 +3190 +3190 +3190 +3190 +3258 opendoar 1939 +3258 celestial 2317 +4413 celestial 4732 +3467 opendoar 907 +3467 celestial 2393 +3234 celestial 2330 +4566 opendoar 2505 +4566 celestial 4939 +3054 opendoar 1888 +3054 celestial 2257 +3089 opendoar 1888 +3089 celestial 2257 +3088 opendoar 777 +3088 celestial 2270 +3242 opendoar 1969 +3242 celestial 2328 +3633 opendoar 2077 +3633 celestial 2517 +3633 +3359 opendoar 2005 +3359 celestial 2380 +3726 opendoar 2122 +3726 celestial 2579 +2964 celestial 2605 +2964 opendoar 2829 +4388 opendoar 2299 +4388 celestial 4710 +3295 celestial 2346 +3119 opendoar 1903 +3119 celestial 2288 +4393 celestial 4715 +4394 celestial 4715 +2914 celestial 5167 +3471 opendoar 2020 +3471 celestial 2388 +4022 opendoar 2203 +4022 celestial 4603 +3357 opendoar 2012 +3357 celestial 2382 +2955 opendoar 1865 +2955 celestial 2240 +2988 opendoar 1871 +2988 celestial 2252 +3265 celestial 2336 +3265 +3265 +3265 +3265 +3260 opendoar 1961 +3260 celestial 2335 +3260 roarmap 324 +2858 opendoar 1846 +2858 celestial 6595 +2927 opendoar 1862 +2927 celestial 2229 +3756 opendoar 1862 +3756 celestial 2229 +3232 opendoar 2036 +3232 celestial 2399 +4432 celestial 4742 +2806 opendoar 1833 +2806 celestial 2191 +2917 opendoar 1856 +2917 celestial 2228 +3106 celestial 2287 +3106 opendoar 1912 +3106 +3106 +3106 +3106 +3106 +3108 opendoar 1912 +3108 celestial 2287 +4401 celestial 4722 +4424 celestial 4741 +4383 opendoar 2304 +4383 celestial 4705 +4447 celestial 4751 +4447 +3217 opendoar 1957 +3217 celestial 2314 +3294 opendoar 1990 +3294 celestial 2345 +2814 celestial 2168 +2676 opendoar 1785 +2676 celestial 2168 +2760 opendoar 1817 +2760 celestial 2189 +3455 celestial 2189 +3455 +3455 +2897 opendoar 1848 +2897 celestial 6403 +2862 opendoar 1848 +2862 celestial 2195 +2634 opendoar +2634 celestial 2314 +4391 celestial 4713 +2626 opendoar 1771 +2626 celestial 2158 +4680 opendoar 1009 +4680 celestial 4810 +2599 opendoar 1766 +2599 celestial 2156 +4384 opendoar 2308 +4384 celestial 4706 +2622 opendoar 1767 +2622 celestial 2159 +4417 celestial 4735 +2810 celestial 2217 +2868 opendoar 1911 +2868 celestial 2199 +2602 opendoar 1769 +2602 celestial 2149 +4640 opendoar 1646 +4640 celestial 4806 +4407 celestial 4727 +4398 celestial 4719 +5062 celestial 4826 +2531 celestial 4826 +2867 celestial 2192 +2867 +3622 celestial 2523 +3622 +3622 +3622 +3622 +3622 +2510 opendoar 1736 +2510 roarmap 281 +2510 celestial 4940 +3477 opendoar 2079 +3477 celestial 2564 +2517 celestial 2127 +2517 opendoar 1889 +3408 opendoar 2008 +3408 celestial 2372 +3292 celestial 2344 +3324 opendoar 1989 +3324 celestial 2344 +3468 opendoar 2018 +3468 celestial 2389 +3165 opendoar 1931 +3165 +2369 celestial 2082 +2369 +2369 +2591 celestial 2311 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +2591 +4414 celestial 4733 +3175 celestial 2308 +2820 opendoar 1717 +2820 celestial 2101 +2820 roarmap 283 +2372 opendoar 1717 +2372 celestial 2101 +2372 roarmap 283 +2678 opendoar 2113 +2678 celestial 2568 +3303 opendoar 1986 +3303 celestial 2348 +3363 celestial 6437 +3363 opendoar 1983 +4266 opendoar 2306 +4266 celestial 4668 +4379 celestial 4668 +3926 celestial 2656 +3926 opendoar 2882 +2465 opendoar 942 +2465 celestial 2105 +4262 opendoar 2298 +4262 celestial 4664 +4370 celestial 4664 +4371 celestial 4664 +2466 opendoar 1716 +2466 celestial 2103 +1474 opendoar 1678 +1474 celestial 1804 +2471 opendoar 1664 +2471 celestial 2102 +2844 opendoar 1859 +2844 celestial 2222 +3469 opendoar 2019 +3469 celestial 2391 +1557 opendoar 1692 +1557 celestial 1818 +1557 +2748 opendoar 1816 +3862 opendoar 2165 +3862 celestial 2625 +3146 opendoar 1918 +3146 celestial 2323 +2907 +2907 +2907 +2907 +2907 +2907 +16867 +16867 +16867 +16867 +16867 +4390 celestial 4712 +4390 opendoar 2435 +24 opendoar 1641 +24 celestial 1584 +2822 opendoar 1835 +2822 celestial 2206 +3752 celestial 2588 +3752 opendoar 3327 +959 opendoar 1699 +959 celestial 2620 +1319 opendoar 1765 +1319 celestial 1789 +2486 opendoar 40 +2486 celestial 2113 +2486 roarmap 451 +518 celestial 1670 +518 opendoar 2792 +3243 celestial 1916 +3243 roarmap 319 +437 opendoar 1648 +437 celestial 1463 +520 opendoar 1883 +520 celestial 1671 +1191 opendoar 1711 +1191 celestial 1462 +4399 celestial 4720 +616 opendoar 1593 +616 celestial 1686 +296 opendoar 2101 +296 celestial 1467 +684 opendoar 1694 +684 celestial 1694 +4977 opendoar 1694 +4977 celestial 1694 +284 opendoar 1586 +284 celestial 2147 +284 roarmap 75 +4308 celestial 4687 +4308 opendoar 2339 +4308 roarmap 247 +550 opendoar 1633 +550 celestial 1676 +2703 opendoar 1788 +2703 celestial 2170 +765 opendoar 1476 +765 celestial 1705 +765 roarmap 537 +4441 celestial 4747 +1058 celestial 1741 +3648 opendoar 2081 +3648 celestial 2511 +1248 opendoar 1632 +1248 celestial 1457 +2464 opendoar 1714 +2464 celestial 2106 +2373 celestial 2083 +2373 opendoar 2238 +3048 opendoar 1887 +3048 celestial 2263 +839 celestial 1713 +2458 opendoar 1553 +2458 celestial 2024 +2309 celestial 2079 +2309 +2309 +2309 +2309 +2309 +4552 celestial 2079 +4552 opendoar +4552 +4552 +4552 +4552 +962 celestial 1725 +777 opendoar 1545 +777 celestial 1708 +4181 celestial 4643 +1335 opendoar 1701 +1335 celestial 1793 +789 opendoar 1518 +789 celestial 1710 +366 opendoar 2194 +366 celestial 1641 +37 opendoar 1581 +37 celestial 1455 +893 opendoar 1698 +893 celestial 1446 +11100 opendoar 1698 +11100 celestial 1446 +4351 opendoar +4351 celestial 4697 +4351 roarmap +4349 opendoar 2297 +4349 celestial 4697 +4 roarmap 235 +4 celestial 1469 +4 opendoar 1589 +4031 opendoar 2204 +4031 celestial 4594 +595 opendoar 1472 +595 celestial 1684 +3060 opendoar 1894 +3060 celestial 2261 +1516 opendoar 1520 +1516 celestial 1811 +1080 opendoar 1532 +1080 celestial 1468 +1080 roarmap 177 +1553 celestial 1817 +1553 +1553 +313 celestial 2636 +117 opendoar 1533 +117 celestial 1604 +2630 opendoar +2630 celestial 2157 +2630 roarmap 485 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +2630 +1514 celestial 1423 +1514 opendoar 3615 +4396 celestial 4717 +1001 celestial 1411 +1510 celestial 1809 +1510 opendoar 2235 +3169 opendoar 1934 +3169 celestial 2306 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +3169 +285 celestial 1426 +1471 opendoar 1514 +1471 celestial 1428 +2559 celestial 2140 +2559 +2585 celestial 2140 +2585 +2317 celestial 1834 +2317 opendoar 292 +2317 +2317 +2317 +2317 +2317 +2317 +2317 +2317 +2317 +2317 +761 opendoar 1470 +761 celestial 1400 +1499 celestial 1405 +621 celestial 1453 +2499 celestial 2120 +3651 opendoar 1899 +3651 celestial 2506 +3651 celestial 2507 +1128 celestial 1758 +1128 opendoar 2399 +379 opendoar 1475 +379 celestial 1643 +1153 opendoar 1505 +1153 celestial 1383 +431 opendoar 1479 +431 celestial 1377 +653 opendoar 1564 +653 celestial 1372 +653 roarmap 436 +961 opendoar 1588 +961 celestial 1418 +968 opendoar 234 +968 celestial 1726 +968 roarmap 185 +253 opendoar 1490 +253 celestial 1407 +2891 opendoar +2891 celestial 2437 +2891 +2891 +2891 +2891 +2891 +2891 +2891 +2891 +1315 opendoar 1524 +1315 celestial 1788 +1375 opendoar 1686 +1375 celestial 1798 +4373 celestial 4700 +4373 roarmap 180 +4373 +4373 +111 opendoar 1591 +111 celestial 1854 +2362 celestial 1854 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +2362 +1075 celestial 1366 +1075 roarmap 111 +3283 opendoar 1976 +3283 celestial 6385 +4800 celestial 2300 +2769 celestial 2188 +2811 opendoar 1826 +2811 celestial 2182 +714 celestial 1327 +895 celestial 1721 +895 opendoar 2745 +897 celestial 1388 +4639 opendoar 1457 +4639 celestial 1388 +1089 opendoar 1502 +1089 celestial 1380 +167 opendoar 1399 +167 celestial 1450 +552 opendoar 1278 +552 celestial 1677 +2597 celestial 1677 +2597 +2597 +2597 +2279 opendoar 1551 +2279 celestial 5768 +865 celestial 1353 +1098 opendoar 1504 +1098 celestial 1382 +586 celestial 1415 +304 celestial 1340 +1333 opendoar 1389 +1333 celestial 1258 +1333 roarmap 240 +1066 opendoar 1500 +1066 roarmap +1066 celestial +1370 opendoar 1384 +1370 celestial 1311 +4561 celestial 1896 +368 opendoar 1402 +368 celestial 1315 +3085 opendoar 1402 +3085 celestial 1315 +3085 roarmap 243 +94 celestial 1451 +94 opendoar 1552 +3506 opendoar 2043 +3506 celestial 2117 +2481 celestial 2117 +2481 +2481 +2481 +2481 +2481 +2481 +1313 opendoar 1374 +1313 celestial 1304 +2581 celestial 2296 +874 opendoar 1418 +874 celestial 1261 +1028 celestial 1733 +816 opendoar 1549 +816 celestial 1711 +816 roarmap 242 +4465 opendoar 2348 +4465 celestial 4759 +610 opendoar 1426 +610 celestial 1294 +1057 celestial 1740 +135 celestial 6402 +135 opendoar 3974 +135 +135 +135 +135 +135 +135 +135 +135 +4057 opendoar 2219 +4057 celestial 4606 +841 celestial 1348 +1399 celestial 1801 +1399 opendoar 1111 +1399 roarmap 1309 +492 opendoar 1405 +492 celestial 2398 +492 roarmap 125 +492 +492 +173 opendoar 1460 +173 celestial 1396 +173 roarmap 159 +81 celestial 1314 +424 opendoar 1309 +424 celestial 5424 +455 celestial 1323 +2621 opendoar 1768 +2621 celestial 1323 +896 celestial 1361 +1352 opendoar 1601 +1352 celestial 1797 +1094 opendoar 1630 +1094 celestial 1756 +1094 roarmap 136 +508 opendoar 1430 +508 celestial 1296 +898 opendoar 1447 +898 celestial 1722 +539 opendoar 1271 +539 celestial 1673 +2945 opendoar +2945 celestial 4661 +3111 opendoar 1271 +3111 celestial 1673 +3602 celestial 2512 +3643 opendoar 2083 +3643 celestial 2512 +1037 celestial 1218 +1074 opendoar 1550 +1074 celestial 1749 +484 opendoar 1636 +484 celestial 1142 +937 celestial 1272 +362 celestial 1224 +1357 opendoar 1567 +1357 celestial 1416 +1239 celestial 1303 +1239 opendoar 1380 +1161 opendoar 496 +1161 celestial 1202 +1544 opendoar 1067 +1544 celestial 1201 +598 celestial 1145 +430 opendoar 1274 +430 celestial 1236 +126 opendoar 1509 +126 celestial 1430 +1230 celestial 1295 +845 opendoar 1217 +845 celestial 1197 +3084 opendoar 1217 +3084 celestial 1197 +1328 celestial 1222 +1515 celestial 1193 +4416 opendoar 2328 +4416 celestial 4734 +4416 +4416 +4416 +4416 +4416 +4416 +4416 +4416 +4416 +4416 +3508 opendoar 938 +3508 celestial 2467 +3508 roarmap 455 +1554 celestial 1266 +3039 opendoar 1940 +3039 celestial 2268 +446 opendoar 1264 +446 celestial 1152 +1526 celestial 1333 +2291 celestial 1585 +2291 +2291 +2291 +2291 +2291 +2291 +2291 +2291 +2291 +1200 opendoar 1183 +1200 celestial 1299 +145 opendoar 1371 +145 celestial 5462 +588 celestial 2679 +916 opendoar 1251 +916 celestial 1288 +931 opendoar 1448 +931 celestial 4819 +931 +2990 opendoar 1867 +2990 celestial 2249 +710 celestial 1139 +928 opendoar 1376 +928 celestial 1308 +1300 opendoar 1058 +1300 celestial 1178 +3154 opendoar 1920 +3154 celestial 2299 +2447 celestial 2104 +724 opendoar 1036 +724 celestial 1260 +291 opendoar 1293 +291 celestial 1632 +585 celestial 1146 +905 opendoar 1537 +905 celestial 1227 +946 opendoar 1243 +946 celestial 1185 +1469 opendoar 1212 +1469 celestial 1192 +38 opendoar 1602 +38 celestial 1587 +2646 opendoar +2646 celestial 2033 +2646 roarmap 292 +2646 +2646 +2646 +2646 +2646 +2646 +2646 +2646 +578 opendoar 1054 +578 celestial 1305 +2786 opendoar 1821 +2786 celestial 2185 +2786 roarmap 255 +997 opendoar 1162 +997 celestial 1332 +997 roarmap 250 +998 opendoar 1163 +998 celestial 1104 +512 celestial 1293 +3087 opendoar 1898 +3087 celestial 2269 +5205 opendoar 1898 +5205 celestial 2269 +110 opendoar 1088 +110 celestial 1111 +745 celestial 1404 +745 opendoar 1222 +1149 celestial 1188 +412 opendoar 1583 +412 celestial 1651 +1215 opendoar 1225 +1215 celestial 1172 +2598 opendoar 1682 +2598 celestial 2152 +2973 opendoar 427 +2973 celestial 5635 +2393 opendoar 1709 +2393 celestial 2087 +2431 opendoar +2431 celestial 5900 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +2431 +755 opendoar 1285 +755 celestial 1234 +872 opendoar 1068 +872 celestial 1089 +3969 celestial 4572 +3969 opendoar 1022 +3969 +3969 +3969 +1033 opendoar 1194 +1033 celestial 1069 +769 opendoar 1048 +769 celestial 1312 +1288 celestial 1109 +1092 opendoar 1853 +1092 roarmap 468 +1092 celestial 6631 +3131 celestial 2023 +4814 celestial 4837 +4814 +4814 +4814 +4814 +4996 opendoar 990 +4996 celestial 1058 +652 celestial 1058 +805 celestial 1123 +805 opendoar 1428 +175 opendoar 1140 +175 celestial 1352 +1338 celestial 1794 +919 opendoar 1047 +919 celestial 1075 +1102 opendoar 989 +1102 celestial 1122 +1169 opendoar 1625 +1169 celestial 1150 +1169 roarmap 330 +920 opendoar 1002 +920 celestial 1066 +920 roarmap 28 +1320 opendoar 969 +1320 celestial 1032 +1027 celestial 1064 +548 celestial 1050 +548 opendoar 1257 +3913 celestial 4822 +3913 +3913 +3913 +3913 +3913 +3913 +3913 +3913 +3913 +3913 +3913 +1512 opendoar 1228 +1512 celestial 1209 +1512 roarmap 80 +763 celestial 1051 +726 opendoar 974 +726 celestial 1043 +1520 opendoar 1177 +1520 celestial 1444 +762 opendoar 1062 +762 celestial 1136 +404 opendoar 1056 +404 celestial 1649 +1196 opendoar 1077 +1196 celestial 1235 +1139 opendoar 935 +1139 celestial 1013 +622 opendoar 1040 +622 celestial 1135 +1103 opendoar 938 +1103 celestial 1138 +77 celestial 1072 +618 celestial 995 +618 opendoar 1146 +855 celestial 1027 +855 opendoar 973 +597 opendoar 927 +597 celestial 996 +2415 opendoar 927 +2415 celestial 996 +1358 opendoar 987 +1358 celestial 979 +1308 celestial 1371 +626 opendoar 950 +626 celestial 1009 +3787 opendoar 1189 +3787 celestial 2594 +1303 celestial 1285 +1303 opendoar 1037 +237 celestial 981 +28 celestial 960 +267 celestial 1029 +411 celestial 934 +3395 celestial 2397 +3395 opendoar 3321 +75 roarmap 124 +75 roarmap 123 +75 celestial 5643 +75 opendoar 912 +3772 opendoar 2127 +3772 celestial 2600 +3034 celestial 2266 +2406 opendoar 875 +2406 celestial 910 +2326 opendoar 1481 +2326 celestial 1849 +864 opendoar 904 +864 celestial 1108 +2946 opendoar 1864 +2946 celestial 2239 +9 celestial 879 +1505 celestial 924 +4990 opendoar 1119 +4990 celestial 1128 +426 opendoar 1178 +426 celestial 1357 +1011 opendoar 759 +1011 celestial 1035 +376 opendoar 119 +376 celestial 1265 +467 opendoar 562 +467 celestial 983 +1369 opendoar 4125 +1369 celestial 6673 +1291 opendoar 763 +1291 celestial 884 +1291 roarmap 534 +797 opendoar 585 +797 celestial 870 +797 roarmap 179 +2665 opendoar +2665 celestial 2165 +2665 +2665 +2665 +2665 +2665 +2665 +25 opendoar 549 +25 celestial 867 +2329 opendoar 538 +2329 celestial 1846 +828 opendoar 128 +828 celestial 505 +830 opendoar 514 +830 celestial 492 +1366 opendoar 1126 +1366 celestial 657 +1367 opendoar 1069 +1367 celestial 658 +1367 roarmap 160 +4170 opendoar 2266 +4170 celestial 4645 +4579 opendoar +4579 celestial 4645 +4579 +1301 celestial 903 +718 opendoar 949 +718 celestial 866 +718 roarmap 82 +869 celestial 978 +16 celestial 896 +353 opendoar 963 +353 celestial 1014 +353 roarmap 475 +4952 opendoar 963 +4952 celestial 1014 +790 opendoar 905 +790 celestial 955 +2830 opendoar 1841 +2830 celestial 2292 +1495 opendoar 370 +1495 celestial 116 +901 opendoar 555 +901 celestial 692 +901 roarmap 325 +989 opendoar 871 +989 celestial 6529 +989 roarmap 3986 +1498 opendoar 117 +1498 celestial 6636 +731 opendoar 508 +731 celestial 611 +320 opendoar 589 +320 celestial 895 +1218 opendoar 1097 +1218 roarmap 183 +286 opendoar 909 +286 celestial 1175 +1225 celestial 1246 +1397 opendoar 419 +1397 celestial 439 +2344 opendoar 383 +2344 celestial 1836 +1543 celestial 969 +3021 celestial 1902 +297 opendoar 566 +297 celestial 535 +1381 celestial 2294 +367 celestial 270 +557 celestial 893 +487 celestial 1001 +15 opendoar 538 +15 celestial 661 +10 opendoar 258 +10 celestial 526 +6 opendoar 383 +6 celestial 523 +5 opendoar 259 +5 celestial 522 +1538 celestial 516 +1460 opendoar 456 +1460 celestial 612 +957 celestial 600 +829 celestial 602 +1249 opendoar 293 +1249 celestial 508 +1242 opendoar 850 +1242 celestial 192 +757 opendoar 197 +757 celestial 177 +365 opendoar 1640 +365 celestial 599 +744 celestial 899 +1235 opendoar 349 +1235 celestial 4987 +1532 opendoar 375 +1532 celestial 468 +813 celestial 1017 +813 roarmap 310 +8 opendoar 261 +8 celestial 525 +723 celestial 774 +723 +302 opendoar 430 +302 celestial 560 +159 opendoar 1125 +159 celestial 390 +12 opendoar 263 +12 celestial 529 +12 roarmap 31 +3322 opendoar 151 +3322 celestial 2355 +3322 roarmap 496 +702 opendoar 595 +702 celestial 262 +480 celestial 156 +1055 opendoar 779 +1055 celestial 598 +4337 celestial 4694 +4337 +354 opendoar 272 +354 celestial 930 +7 opendoar 260 +7 celestial 524 +650 celestial 1041 +833 celestial 413 +2424 opendoar 157 +2424 celestial 2098 +1165 celestial 562 +1491 opendoar 369 +1491 celestial 334 +1491 roarmap 544 +2742 opendoar 1814 +2742 celestial 2178 +544 opendoar 149 +544 celestial 231 +2322 opendoar 361 +2322 celestial 1851 +17 opendoar 361 +17 celestial 365 +14 opendoar 264 +14 celestial 250 +513 opendoar 140 +513 celestial 306 +20 opendoar 384 +20 celestial 553 +1316 celestial 1093 +1126 opendoar 648 +1126 celestial 366 +153 celestial 241 +1146 opendoar 1246 +1146 celestial 1147 +458 celestial 216 +1280 opendoar 298 +1280 roarmap 188 +1280 celestial 5413 +908 celestial 204 +4626 celestial 4794 +4626 +4626 +4626 +4626 +4626 +4626 +4626 +4626 +4626 +4626 +1377 celestial 391 +670 opendoar 186 +670 celestial 322 +1277 opendoar 659 +1277 celestial 430 +641 opendoar 174 +641 celestial 5697 +1032 opendoar 256 +1032 celestial 133 +1032 roarmap 29 +101 opendoar 79 +101 roarmap 565 +101 celestial 6416 +1431 opendoar 351 +1431 roarmap 590 +1431 celestial 6677 +1005 opendoar 254 +1005 celestial 178 +1551 opendoar 144 +1551 celestial 412 +836 celestial 501 +1017 opendoar 531 +1017 celestial 128 +2340 opendoar 258 +2340 celestial 1838 +1252 opendoar 294 +1252 celestial 404 +1252 roarmap 189 +1193 opendoar 1329 +1193 celestial 1284 +226 opendoar 64 +226 celestial 140 +567 opendoar 481 +567 celestial 451 +1412 opendoar 397 +1412 celestial 459 +542 opendoar 148 +542 celestial 224 +1373 opendoar 326 +1373 celestial 135 +3767 opendoar 2128 +3767 celestial 2601 +543 opendoar 465 +543 celestial 519 +543 roarmap 252 +1443 opendoar 359 +1443 celestial 289 +1444 opendoar 304 +1444 celestial 146 +976 opendoar 239 +976 celestial 377 +2341 opendoar 259 +2341 celestial 1839 +1417 opendoar 575 +1417 celestial 587 +375 celestial 512 +837 opendoar 211 +837 celestial 711 +1150 opendoar 282 +1150 celestial 141 +1410 celestial 228 +645 celestial 1010 +645 opendoar 951 +349 opendoar 650 +349 celestial 1016 +620 opendoar 661 +620 celestial 5191 +1174 opendoar 286 +1174 celestial 142 +1147 opendoar 274 +1147 celestial 1432 +1147 roarmap 196 +2337 opendoar 264 +2337 celestial 1840 +11 opendoar 537 +11 celestial 527 +2334 opendoar 260 +2334 celestial 1842 +3287 opendoar 260 +3287 celestial 1842 +44 celestial 1125 +638 celestial 1125 +2321 opendoar 261 +2321 celestial 1853 +2327 opendoar 384 +2327 celestial 1847 +445 celestial 1045 +2332 opendoar 263 +2332 celestial 1844 +963 celestial 1373 +2331 opendoar 537 +2331 celestial 1843 +2328 opendoar 239 +2328 celestial 1848 +2338 opendoar 1031 +2338 celestial 5166 +9782 opendoar 965 +9782 celestial 6414 +8237 celestial 1596 +6963 roarmap 856 +6963 celestial 5235 +6963 +6313 celestial 5146 +6313 opendoar 2750 +5681 opendoar 964 +5681 celestial 1000 +5487 opendoar 1330 +5487 celestial 1256 +5464 opendoar 36 +5464 celestial 504 +5331 celestial 5223 +5331 opendoar 2681 +5331 +5331 +5331 +5331 +5331 +5331 +5331 +5331 +5331 +5213 opendoar 2475 +5213 celestial 4928 +5083 opendoar 2187 +5083 celestial 4905 +5056 celestial 4857 +5002 opendoar 2260 +5002 celestial 4883 +4951 opendoar 2340 +4951 celestial 4870 +4928 opendoar 2334 +4928 celestial 4866 +4926 opendoar 2411 +4926 celestial 4863 +4859 celestial 4844 +4859 +4859 +4859 +4859 +4756 celestial 4857 +4612 celestial 4790 +4612 +4612 +4612 +4612 +4612 +4612 +4458 celestial 4756 +4458 opendoar 2422 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4458 +4309 celestial 4688 +4309 opendoar 2652 +4219 opendoar 2391 +4219 celestial 4988 +4219 +3840 opendoar 296 +3840 celestial 2608 +3766 opendoar 2111 +3766 celestial 2602 +5189 opendoar 2111 +5189 celestial 2602 +3951 opendoar 2180 +3951 celestial 2670 +3899 opendoar 2178 +3899 celestial 2622 +4033 opendoar 2205 +4033 celestial 4596 +4387 opendoar 2301 +4387 celestial 4709 +3833 opendoar 2172 +3833 celestial 2611 +3419 opendoar 959 +3419 celestial 2370 +3341 opendoar 1994 +3341 celestial 2652 +3931 opendoar 1994 +3931 celestial 2361 +4467 opendoar 2346 +4467 celestial 4761 +3366 opendoar 2030 +3366 celestial 2476 +2570 opendoar 1755 +2570 celestial 2143 +2530 opendoar 1756 +2530 celestial 2132 +2854 opendoar 1842 +2854 celestial 2201 +3375 opendoar 1842 +3375 celestial 2201 +3290 celestial 2343 +2757 opendoar 1822 +2757 celestial 2172 +2285 opendoar 1784 +2285 celestial 1828 +5037 celestial 4840 +3098 celestial 2284 +3124 opendoar 1904 +3124 celestial 2284 +2596 opendoar 1754 +2596 roarmap 246 +2596 celestial 5386 +3018 opendoar 1880 +3018 celestial 5387 +1468 opendoar 1503 +1468 celestial 1381 +450 roarmap 162 +450 celestial 5006 +179 opendoar 1382 +179 celestial 1306 +756 opendoar 1330 +756 celestial 1256 +756 roarmap 306 +3570 opendoar +3570 celestial 6019 +4616 opendoar 1469 +4616 celestial 4791 +40 opendoar 1294 +40 celestial 1243 +2413 opendoar 1269 +2413 celestial 2092 +793 opendoar 1253 +793 celestial 5645 +949 opendoar 1306 +949 celestial 1424 +288 opendoar 1469 +288 celestial 4791 +321 opendoar 1106 +321 celestial 1126 +583 opendoar 1275 +583 celestial 1679 +3311 opendoar 2014 +3311 celestial 2353 +3311 +3361 celestial 2353 +3361 opendoar 1608 +3361 +792 opendoar 1197 +792 celestial 1070 +1420 opendoar 991 +1420 celestial 1378 +1420 roarmap 191 +1133 opendoar 886 +1133 celestial 1441 +1133 roarmap 167 +1361 opendoar 1393 +1361 celestial 5631 +293 opendoar 959 +293 celestial 2291 +293 roarmap 33 +1523 opendoar 936 +1523 roarmap 178 +1523 celestial 6683 +264 opendoar 1098 +264 celestial 1173 +264 roarmap 550 +1202 opendoar 986 +1202 celestial 1023 +45 opendoar 952 +45 celestial 1011 +1436 opendoar 1057 +1436 celestial 1092 +1540 opendoar 965 +1540 celestial 1012 +747 opendoar 964 +747 celestial 1000 +967 opendoar 896 +967 celestial 940 +73 opendoar 1261 +73 celestial 1596 +73 roarmap 206 +63 opendoar 7 +3320 opendoar 926 +3320 celestial 982 +3553 opendoar 1437 +3553 celestial 2496 +4087 opendoar 642 +4087 celestial 1318 +2407 opendoar 487 +2407 celestial 2091 +181 opendoar 36 +181 celestial 504 +2610 opendoar 1763 +2610 celestial 2151 +4635 opendoar 1763 +4635 celestial 2151 +470 celestial 471 +1337 opendoar 306 +1337 celestial 382 +1030 opendoar 587 +1030 celestial 610 +1454 celestial 425 +1454 opendoar 317 +4948 opendoar 317 +4948 celestial 425 +1122 opendoar 277 +1122 celestial 681 +13 opendoar 262 +13 celestial 528 +1049 opendoar 268 +1049 celestial 251 +1049 roarmap 165 +11216 opendoar 308 +11216 celestial 6093 +1392 opendoar 5 +1392 celestial 317 +1392 roarmap 275 +1135 opendoar 278 +1135 celestial 1860 +1371 opendoar 324 +1371 celestial 210 +1371 roarmap 133 +1353 opendoar 307 +1353 celestial 137 +1353 roarmap 7 +741 celestial 265 +2323 opendoar 262 +2323 celestial 1852 +6387 opendoar +6387 celestial 5248 +6387 +6387 +6387 +6387 +6362 celestial 5153 +6362 opendoar 3055 +6362 +6362 +6362 +6362 +6362 +6362 +6361 opendoar 1375 +6361 celestial 5151 +6361 celestial 5152 +6240 celestial 5020 +6240 opendoar 2788 +6102 celestial 2107 +5645 celestial 4959 +5645 opendoar 2575 +5645 +5645 +5645 +5645 +5645 +5645 +5645 +5645 +5645 +5562 opendoar 1690 +5562 celestial 4851 +5439 opendoar 2493 +5439 celestial 5012 +5300 opendoar 2499 +5300 celestial 4960 +4988 opendoar 2292 +4988 celestial 4879 +4980 opendoar 2408 +4980 celestial 4877 +4669 opendoar 2386 +4669 celestial 4808 +4874 opendoar 2434 +4874 celestial 4848 +4020 opendoar 1868 +4020 celestial 4604 +3482 opendoar 1403 +3482 celestial 3062 +3352 opendoar 2001 +3352 celestial 2502 +3352 roarmap 462 +3352 +3352 +3352 +3307 opendoar 2022 +3307 celestial 2365 +3307 roarmap 336 +3163 opendoar 1948 +3163 celestial 5144 +3163 +3163 +3163 +3588 +3588 +3588 +3588 +2674 opendoar 1825 +2674 celestial 2213 +4002 celestial 4587 +4002 opendoar 2209 +4026 opendoar 2209 +4026 celestial 4587 +4420 celestial 4738 +2462 opendoar 1715 +2462 celestial 2107 +3022 opendoar 1882 +3022 celestial 2279 +2681 opendoar 2698 +2681 celestial 5638 +2993 opendoar 1870 +2993 celestial 2247 +56 opendoar 1689 +56 celestial 1592 +5067 celestial 4894 +5067 opendoar 2187 +5067 roarmap +5067 +5067 +5067 +138 opendoar 1605 +138 celestial 1322 +1096 opendoar 1375 +1096 celestial 1287 +220 opendoar 1511 +220 celestial 1618 +4686 opendoar 1511 +4686 celestial 1618 +287 opendoar 1164 +287 celestial 4851 +3331 opendoar 388 +3331 celestial 5388 +230 celestial 1619 +767 celestial 1028 +523 opendoar 1094 +523 celestial 2567 +523 +523 +523 +523 +523 +523 +523 +523 +523 +523 +178 opendoar 900 +178 roarmap 37 +178 celestial 6120 +4770 celestial 4832 +3257 opendoar 233 +3257 celestial 2334 +1462 opendoar 309 +1462 celestial 1131 +1486 celestial 491 +158 opendoar 30 +158 celestial 348 +158 roarmap 307 +2701 opendoar 229 +2701 celestial 2169 +948 celestial 482 +1390 celestial 323 +186 opendoar 38 +186 celestial 197 +6936 celestial 5240 +6936 opendoar 2924 +6936 +6936 +6475 opendoar 2633 +6475 celestial 5182 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6475 +6425 celestial 5161 +6425 opendoar 2793 +6031 opendoar 2573 +6031 celestial 5102 +5642 opendoar 2377 +5642 celestial 4961 +5559 opendoar 2378 +5559 celestial 4786 +5415 opendoar 2504 +5415 celestial 4962 +5186 opendoar 76 +5186 celestial 4924 +5100 celestial 5192 +5100 +4987 opendoar 1299 +4987 celestial 4880 +4589 opendoar 2378 +4589 celestial 4786 +4206 celestial 4653 +4835 opendoar 2427 +4835 celestial 4841 +3665 opendoar 2086 +3665 celestial 2560 +3722 celestial 2560 +3055 opendoar 1895 +3055 celestial 2259 +3225 opendoar 1968 +3225 celestial 4617 +3225 celestial 4616 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3225 +3051 opendoar 1893 +3051 celestial 2265 +5022 opendoar 1595 +5022 celestial 2632 +2360 opendoar 1834 +2360 celestial 2111 +2520 celestial 2125 +562 celestial 1397 +876 opendoar 1055 +1504 opendoar 934 +1504 celestial 1031 +350 opendoar 1458 +350 celestial 1390 +1330 celestial 898 +1044 opendoar 855 +1044 celestial 1331 +447 opendoar 1263 +447 celestial 1151 +1461 opendoar 1100 +1461 celestial 547 +3806 opendoar 57 +3806 celestial 99 +987 opendoar 245 +987 celestial 126 +7557 celestial 4823 +7557 +7557 +7557 +7557 +7557 +7557 +7557 +6554 opendoar 2603 +6554 celestial 6568 +6554 +6554 +5506 opendoar 914 +5506 celestial 970 +5495 opendoar 1149 +5495 celestial 682 +5466 opendoar 523 +5466 celestial 5022 +5453 opendoar 365 +5453 celestial 4966 +4991 opendoar 2432 +4991 celestial 4881 +4559 roarmap +4559 celestial 4823 +4559 opendoar 2821 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +4559 +3994 opendoar 2198 +3994 celestial 4581 +3573 celestial 2477 +3573 roarmap 508 +3679 celestial 2558 +3323 opendoar 1987 +3323 celestial 2356 +2751 opendoar +2751 celestial 2216 +2755 opendoar +2755 celestial 2216 +2383 opendoar 1731 +2383 celestial 2089 +2383 roarmap 260 +3153 opendoar 1923 +3153 celestial 2321 +2899 opendoar 2029 +2899 celestial 2547 +2899 +2899 +752 opendoar 1328 +752 celestial 1437 +2951 opendoar 2235 +2951 celestial 2250 +2522 celestial 2126 +863 opendoar 1201 +863 celestial 907 +1466 opendoar 914 +1466 celestial 970 +1481 opendoar 365 +1481 celestial 307 +1481 roarmap 174 +870 celestial 881 +851 opendoar 213 +851 celestial 663 +1424 opendoar 362 +1424 celestial 393 +2312 opendoar 1149 +2312 celestial 1832 +602 celestial 682 +602 opendoar 1149 +1440 opendoar 354 +1440 celestial 666 +5450 opendoar 945 +5450 celestial 2013 +4105 celestial 4632 +4105 opendoar 2271 +3749 celestial 2582 +1229 opendoar 1634 +1229 celestial 1458 +1229 roarmap 279 +3114 opendoar 1906 +1127 opendoar 1560 +1127 roarmap 624 +1127 celestial 2565 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +1127 +580 celestial 1216 +1088 opendoar 1619 +1088 celestial 1753 +1238 celestial 332 +1115 celestial 313 +473 celestial 1406 +5632 opendoar 2514 +5632 celestial 4967 +5573 opendoar 156 +5573 celestial 5442 +4745 celestial 4818 +4745 opendoar 2429 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +4745 +3744 celestial 2585 +4156 celestial 4650 +4156 opendoar 2268 +2491 opendoar 1866 +2491 celestial 2119 +330 opendoar 1597 +330 celestial 1639 +2482 celestial 1984 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +2482 +1393 opendoar 1292 +1393 celestial 1443 +2425 opendoar 400 +2425 celestial 2097 +1524 opendoar 1407 +1524 celestial 1812 +733 opendoar 1063 +733 celestial 1356 +168 opendoar 1070 +168 celestial 1237 +861 opendoar 1258 +861 celestial 1223 +658 opendoar 1032 +658 celestial 1098 +169 celestial 1002 +169 roarmap 79 +6071 celestial 5105 +6071 opendoar 2917 +5952 celestial 5070 +5952 opendoar 2522 +5904 celestial 4975 +5904 opendoar 2564 +5904 +5904 +5697 opendoar 2522 +5697 celestial 5070 +5535 opendoar 1604 +5535 celestial 1653 +5529 opendoar 1619 +5529 celestial 4869 +5492 opendoar 2089 +5492 celestial 2518 +4945 opendoar 1619 +4945 celestial 4869 +3634 opendoar 2089 +3634 celestial 2518 +3634 +3825 celestial 4600 +3825 opendoar 2291 +4305 celestial 4682 +419 opendoar 1604 +419 celestial 1653 +990 opendoar 1676 +990 celestial 1729 +592 opendoar 758 +592 celestial 5412 +1547 opendoar 885 +1547 celestial 1144 +541 opendoar 147 +541 celestial 229 +1525 opendoar 373 +1525 celestial 6166 +5576 opendoar 2502 +5576 celestial 4974 +4003 celestial 4588 +4003 opendoar 2202 +4003 +4003 +2818 opendoar 1326 +2818 roarmap 403 +2818 +2818 +2818 +2818 +2818 +3911 opendoar 1510 +3911 celestial 2650 +522 opendoar 1280 +522 celestial 1268 +522 roarmap 199 +1073 opendoar 1291 +1073 celestial 1248 +1073 roarmap 445 +704 opendoar 1182 +704 celestial 1414 +1106 opendoar 1061 +1106 celestial 4978 +781 opendoar 916 +781 celestial 921 +6306 opendoar 2636 +6306 celestial 6312 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +6306 +5411 celestial 2510 +5411 +3773 opendoar 2130 +3773 celestial 2598 +3754 opendoar 2121 +3754 celestial 2590 +3815 opendoar +3815 celestial 2590 +3052 opendoar 1890 +3052 celestial 2258 +2272 opendoar 1683 +2272 celestial 1824 +208 celestial 1129 +1428 opendoar 897 +1428 celestial 933 +74 opendoar 852 +74 celestial 671 +3212 opendoar 1236 +3212 celestial 2315 +5557 opendoar 1649 +5557 celestial 5033 +1409 opendoar 983 +1409 celestial 1255 +1411 opendoar 520 +1411 celestial 484 +873 opendoar 525 +873 celestial 533 +3929 opendoar 2179 +3929 celestial 2655 +786 opendoar 201 +786 celestial 476 +1062 celestial 457 +6428 opendoar 1122 +6428 +6428 +3683 opendoar 2099 +3683 celestial 2555 +2405 opendoar 1707 +2405 celestial 2094 +2405 roarmap 327 +3392 opendoar +3392 celestial 2094 +3392 roarmap 327 +3967 opendoar 1749 +3967 celestial 2137 +1519 opendoar 1411 +1519 celestial 1360 +5550 opendoar 1441 +5550 celestial 1456 +3973 celestial 2683 +3973 +3973 +3973 +698 opendoar 1517 +698 celestial 1434 +1019 opendoar 1441 +1019 celestial 1456 +1019 roarmap 193 +1099 opendoar 579 +1099 celestial 673 +589 celestial 594 +497 opendoar 136 +497 celestial 75 +1254 opendoar 1573 +1254 celestial 1461 +1086 opendoar 1406 +1086 celestial 1752 +1086 roarmap 261 +510 opendoar 467 +510 celestial 466 +5512 opendoar 2494 +5512 celestial 5026 +4921 opendoar 2257 +4921 celestial 4862 +3007 opendoar 1176 +3007 celestial 2245 +3230 opendoar 2135 +3230 celestial 4585 +3230 +947 celestial 1038 +1116 celestial 1189 +6249 roarmap +6249 celestial 5220 +188 opendoar 39 +188 celestial 198 +5589 celestial 4937 +1376 opendoar 1675 +1376 celestial 1799 +204 opendoar 411 +204 celestial 125 +3684 opendoar 2105 +3684 celestial 2554 +1546 opendoar 1368 +1546 celestial 1328 +5509 opendoar 3 +5509 celestial 4969 +3151 opendoar 1925 +3151 celestial 2322 +3210 opendoar 1941 +3210 celestial 2326 +5773 opendoar 1224 +5773 celestial 1210 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +5773 +1257 opendoar 1629 +1257 celestial 1230 +577 celestial 1037 +1511 opendoar 1730 +1511 celestial 5634 +1166 celestial 1212 +728 opendoar 780 +728 celestial 892 +965 opendoar 300 +965 celestial 115 +5154 opendoar 2466 +5154 celestial 4918 +4098 roarmap +4098 celestial 2444 +1258 opendoar 583 +1258 celestial 618 +2997 celestial 2444 +2997 opendoar +2997 roarmap +794 celestial 1410 +1287 opendoar 1240 +1287 celestial 1410 +1173 opendoar 285 +1173 celestial 221 +705 opendoar 504 +705 celestial 490 +2816 opendoar +2816 celestial 2218 +2816 +2816 +2816 +760 opendoar 1221 +760 celestial 1030 +83 celestial 455 +197 celestial 1204 +185 opendoar 407 +185 celestial 36 +1013 opendoar 255 +1013 celestial 129 +748 opendoar 1216 +1038 celestial 1734 +680 opendoar 1161 +680 celestial 1174 +195 opendoar 45 +195 celestial 28 +5579 opendoar 1513 +5579 celestial 5039 +1494 opendoar 1195 +1494 celestial 6213 +389 opendoar 447 +389 celestial 445 +1286 celestial 199 +1276 opendoar 735 +1276 celestial 462 +198 opendoar 47 +198 celestial 21 +915 celestial 248 +177 opendoar 405 +177 celestial 493 +640 opendoar 1999 +640 celestial 1689 +3922 celestial 2641 +1260 celestial 1060 +935 opendoar 228 +935 celestial 120 +1427 opendoar 291 +1427 roarmap 262 +1427 celestial 830 +6686 opendoar 2718 +5885 opendoar 2004 +5885 celestial 5086 +3330 celestial 2000 +192 opendoar 42 +192 celestial 25 +8240 opendoar 2483 +8240 celestial 6404 +5511 opendoar 2483 +5511 celestial 4995 +5280 opendoar 2483 +5280 celestial 4995 +1093 opendoar 1199 +1093 celestial 922 +1297 celestial 300 +1506 celestial 1808 +2699 opendoar 1780 +2699 celestial 2429 +2697 opendoar 1778 +2697 celestial 2428 +2707 opendoar 1776 +2707 celestial 2431 +2695 opendoar 1777 +2695 celestial 2427 +142 opendoar 1653 +142 celestial 1610 +1533 opendoar 1516 +1533 celestial 1814 +47 celestial 1280 +6228 opendoar 2610 +6228 celestial 6763 +5558 opendoar 982 +5558 celestial 1033 +340 celestial 578 +505 opendoar 982 +505 celestial 1033 +5544 opendoar 2293 +5544 celestial 5031 +3975 opendoar 2185 +3975 celestial 5015 +363 celestial 410 +3919 celestial 2645 +6724 opendoar 215 +6474 opendoar 2632 +6474 celestial 5171 +6469 celestial 5170 +6469 opendoar 2780 +6469 +6196 celestial 5115 +6196 opendoar 2616 +5983 opendoar 355 +5983 celestial 616 +5698 opendoar 1108 +5698 celestial 1105 +5540 opendoar 1562 +5540 celestial 5030 +5500 opendoar 845 +5500 celestial 860 +5489 opendoar 218 +5489 celestial 632 +3809 opendoar 2148 +3809 celestial 2627 +3807 opendoar 2147 +3807 celestial 2628 +3941 celestial 2672 +3442 opendoar 2142 +3442 celestial 2395 +3138 opendoar 1943 +3138 celestial 2371 +3138 roarmap +3407 opendoar 1943 +3407 celestial 2371 +2743 celestial 2179 +2743 +2734 opendoar 1809 +2734 celestial 2433 +2705 opendoar 1779 +2705 celestial 2430 +2670 opendoar 1781 +2670 celestial 2426 +2656 celestial 2166 +2656 +2656 +2656 +2417 opendoar 1235 +2417 celestial 2093 +3281 opendoar 738 +3281 celestial 2341 +2975 celestial 2254 +2975 +2975 +2975 +2975 +2975 +3981 celestial 4580 +3981 roarmap 63 +2286 celestial 6653 +2286 celestial 1470 +2286 celestial 6651 +2286 celestial 6652 +3186 opendoar +3186 celestial 2310 +3186 +3186 +3186 +3186 +3186 +3186 +3186 +3186 +3186 +2412 opendoar 1538 +2412 celestial 1920 +686 celestial 1179 +818 opendoar 1110 +818 celestial 1140 +4925 opendoar 1110 +4925 celestial 1140 +1043 celestial 1376 +1043 +149 celestial 1061 +681 celestial 1088 +683 celestial 1095 +228 opendoar 2141 +228 celestial 1119 +1555 celestial 1112 +679 celestial 1393 +647 opendoar 1108 +647 celestial 1105 +678 celestial 1091 +832 celestial 1049 +1279 celestial 1114 +675 celestial 1090 +682 celestial 1121 +223 opendoar 1462 +223 celestial 1074 +1009 celestial 953 +858 opendoar 218 +858 celestial 632 +1188 opendoar 737 +1188 celestial 878 +504 opendoar 139 +504 celestial 2272 +504 roarmap 14 +1040 opendoar 791 +1040 celestial 1047 +1041 opendoar 266 +1041 celestial 507 +1041 roarmap 21 +1042 celestial 507 +1042 opendoar 793 +983 opendoar 654 +983 celestial 1006 +972 opendoar 236 +972 celestial 233 +980 opendoar 706 +980 celestial 1727 +977 opendoar 240 +977 celestial 5772 +372 opendoar 441 +372 celestial 513 +1484 celestial 261 +1312 opendoar 718 +1312 celestial 846 +1224 celestial 255 +3944 celestial 2671 +87 opendoar 402 +87 celestial 916 +1473 opendoar 967 +1473 celestial 1044 +634 opendoar 171 +634 celestial 237 +1046 opendoar 267 +1046 celestial 159 +1046 roarmap 22 +563 opendoar 843 +563 celestial 1257 +502 opendoar 611 +502 celestial 1664 +1490 opendoar 355 +1490 celestial 616 +61 celestial 1595 +61 opendoar 629 +1439 opendoar 707 +1439 celestial 1082 +646 celestial 238 +956 opendoar 350 +956 celestial 6504 +709 celestial 563 +831 celestial 296 +203 opendoar 52 +203 celestial 30 +1415 celestial 1329 +1415 opendoar 344 +5513 opendoar 1184 +5513 celestial 1999 +334 celestial 540 +1035 celestial 139 +2422 opendoar 257 +2422 celestial 139 +1508 opendoar 477 +1508 celestial 8 +219 opendoar 385 +219 celestial 268 +501 opendoar 138 +501 celestial 230 +6950 celestial 5239 +6950 +6950 +1278 opendoar 1471 +1278 celestial 1398 +1117 celestial 398 +407 celestial 973 +809 celestial 942 +809 +1219 celestial 1094 +4549 opendoar 2358 +4549 celestial 4772 +739 celestial 274 +4544 celestial 4771 +3312 opendoar 1281 +3312 celestial 2354 +975 opendoar 238 +975 celestial 376 +1556 celestial 1113 +6900 celestial 5233 +6900 opendoar 2980 +6900 +6900 +6900 +6900 +6900 +6900 +6900 +6900 +6900 +6900 +2850 opendoar 1847 +2850 celestial 2202 +656 opendoar 2088 +656 celestial 1690 +1125 celestial 1130 +250 celestial 267 +6601 celestial 5190 +6601 opendoar 2800 +5478 opendoar 2488 +5478 celestial 5025 +3575 opendoar 2065 +3575 celestial 2490 +3575 +3575 +3575 +3790 celestial 2595 +3790 celestial 2596 +3790 +3790 +3790 +3790 +3790 +3790 +3790 +360 opendoar 1157 +360 celestial 1339 +6069 opendoar 2579 +6069 celestial 5099 +6014 opendoar 2579 +6014 celestial 6072 +2576 opendoar 1752 +2576 celestial 2145 +216 celestial 266 +878 opendoar 220 +878 celestial 108 +479 opendoar 997 +479 celestial 1661 +260 celestial 395 +214 opendoar 853 +214 celestial 672 +659 celestial 565 +6350 celestial 5150 +6350 +6350 +6350 +6350 +5522 opendoar 1971 +5522 celestial 2312 +3226 opendoar 1971 +3226 celestial 2312 +3226 roarmap 321 +517 celestial 1669 +1084 celestial 591 +982 opendoar 243 +982 celestial 234 +2874 celestial 2220 +2874 +2874 +2874 +1197 celestial 144 +5366 celestial 4965 +5366 +5366 +2457 opendoar 1718 +2457 celestial 2109 +2457 roarmap 287 +182 celestial 567 +700 celestial 275 +973 opendoar 237 +973 celestial 374 +1264 opendoar 564 +1264 celestial 644 +202 opendoar 51 +202 celestial 26 +11303 opendoar 3596 +11303 celestial 6786 +6466 opendoar 1967 +6466 celestial 2186 +4661 celestial 5647 +4661 opendoar 715 +4757 opendoar 2405 +4757 celestial 4827 +4757 +2784 opendoar 1696 +2784 celestial 2186 +272 opendoar 1267 +272 celestial 1233 +2894 opendoar 1857 +2894 celestial 5852 +2894 roarmap 786 +1182 opendoar 616 +1182 celestial 1768 +1187 opendoar 621 +1187 celestial 1771 +1181 opendoar 619 +1181 celestial 882 +1183 opendoar 1576 +1183 celestial 987 +1184 opendoar 1390 +1184 celestial 1107 +503 celestial 801 +838 opendoar 534 +838 celestial 443 +1177 opendoar 618 +1177 celestial 1765 +1175 opendoar 617 +1175 celestial 985 +1186 opendoar 615 +1186 celestial 1770 +1176 opendoar 614 +1176 celestial 984 +1178 opendoar 622 +1178 celestial 1766 +1179 opendoar 623 +1179 celestial 1161 +129 celestial 642 +129 opendoar 2704 +1100 celestial 1247 +194 opendoar 44 +194 celestial 29 +2587 opendoar 1902 +2587 celestial 2136 +6897 celestial 5228 +6897 +6897 +6897 +6897 +6897 +6897 +6897 +6897 +1542 celestial 122 +6891 opendoar 2688 +6891 celestial 5674 +6891 +6891 +6891 +6891 +6891 +4602 celestial 4788 +4602 opendoar 2401 +1158 opendoar 380 +1158 celestial 891 +1559 celestial 925 +1559 +1559 +6915 celestial 5241 +6969 celestial 5244 +6969 opendoar 2784 +6969 +6969 +6969 +6969 +6969 +6969 +6969 +6969 +6969 +4753 opendoar 2417 +4753 celestial 4902 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +4753 +3979 opendoar 2192 +3979 celestial 4583 +2758 celestial 2173 +2758 celestial 2174 +2758 opendoar 1169 +2758 +2758 +2758 +2758 +1268 celestial 1022 +1267 celestial 761 +604 opendoar 1398 +604 celestial 2637 +604 roarmap 68 +2580 opendoar 2100 +2580 celestial 2146 +2580 +2580 +2580 +65 celestial 302 +1 opendoar 58 +1 celestial 669 +605 opendoar 177 +605 celestial 1250 +605 roarmap 93 +603 opendoar 80 +603 celestial 945 +150 opendoar 1838 +150 celestial 1612 +283 celestial 1228 +254 celestial 1856 +5462 opendoar 1185 +5462 celestial 5021 +164 celestial 566 +807 celestial 2081 +807 +4205 celestial 4655 +4205 opendoar 2294 +687 celestial 1118 +157 celestial 1385 +2404 opendoar 1453 +2404 celestial 1385 +798 celestial 564 +1023 celestial 564 +1023 roarmap 18 +1023 opendoar 918 +6896 celestial 5229 +6896 +6896 +6896 +5915 opendoar 2557 +5915 celestial 5081 +5840 opendoar 2557 +5840 celestial 5081 +5752 opendoar 2542 +5752 celestial 5074 +5718 opendoar 2245 +5718 celestial 4624 +5695 opendoar 2053 +5695 celestial 2654 +5692 opendoar 2243 +5692 celestial 4629 +5690 opendoar 2094 +5690 celestial 2562 +5683 opendoar 1158 +5683 celestial 1176 +5657 opendoar 2520 +5657 celestial 5065 +5621 opendoar 2250 +5621 celestial 4638 +5585 opendoar 2227 +5585 celestial 4611 +5582 opendoar 2068 +5582 celestial 2527 +5583 opendoar 2159 +5583 celestial 2610 +5565 opendoar 2212 +5565 celestial 4593 +5556 opendoar 2044 +5556 celestial 2501 +5549 opendoar 2093 +5549 celestial 2561 +5503 opendoar 2318 +5503 celestial 4672 +5497 opendoar 1158 +5497 celestial 1176 +5475 opendoar 2210 +5475 celestial 4605 +5461 opendoar 2053 +5461 celestial 2654 +5432 opendoar 2211 +5432 celestial 4595 +5256 opendoar 2254 +5256 celestial 4627 +5131 opendoar 2462 +5131 celestial 4912 +5132 opendoar 2455 +5132 celestial 4909 +4128 opendoar 2254 +4128 celestial 4627 +4027 opendoar 2212 +4027 celestial 4593 +3839 opendoar 2159 +3839 celestial 2610 +3534 opendoar 2044 +3534 celestial 2501 +4165 opendoar 2264 +4165 celestial 4649 +3130 opendoar 1917 +3130 celestial 5142 +3664 opendoar 2093 +3664 celestial 2561 +3612 opendoar 325 +3612 celestial 2524 +4123 opendoar 2244 +4123 celestial 4628 +4131 opendoar 2239 +4131 celestial 4636 +3966 opendoar 2183 +3966 celestial 2682 +4130 opendoar 2243 +4130 celestial 4629 +3666 opendoar 2096 +3666 celestial 2559 +3580 opendoar 2051 +3580 celestial 2486 +3552 opendoar 2048 +3552 celestial 2497 +3583 opendoar 2050 +3583 celestial 2484 +4132 opendoar 2250 +4132 celestial 4638 +4121 opendoar 2245 +4121 celestial 4624 +4030 opendoar 2211 +4030 celestial 4595 +4271 opendoar 2318 +4271 celestial 4672 +3930 opendoar 2053 +3930 celestial 2654 +4089 opendoar 2227 +4089 celestial 4611 +3581 opendoar 2057 +3581 celestial 2482 +3609 opendoar 2068 +3609 celestial 2527 +4021 opendoar 2210 +4021 celestial 4605 +3608 opendoar 2061 +3608 celestial 2525 +4135 opendoar 2240 +4135 celestial 4637 +3611 opendoar 2059 +3611 celestial 2526 +3681 opendoar 2106 +3681 celestial 1865 +1053 opendoar 273 +1053 celestial 1362 +3662 opendoar 2094 +3662 celestial 2562 +3606 opendoar 2060 +3606 celestial 2528 +3582 opendoar 2056 +3582 celestial 2483 +3079 opendoar 836 +3079 celestial 2019 +4129 opendoar 2242 +4129 celestial 4626 +4137 opendoar 2249 +4137 celestial 1976 +1552 opendoar 1158 +1552 celestial 1176 +4034 opendoar 2213 +4034 celestial 4591 +3610 opendoar 2067 +3610 celestial 859 +778 celestial 706 +778 opendoar 2247 +565 +565 +3649 opendoar 2084 +3649 celestial 733 +868 opendoar 517 +868 celestial 633 +78 celestial 331 +5779 opendoar 2545 +5779 celestial 5072 +5746 opendoar 2545 +5746 celestial 5072 +5570 opendoar 2246 +5570 celestial 4623 +3578 opendoar 2058 +3578 celestial 2487 +4134 opendoar 2251 +4134 celestial 4639 +3577 opendoar 2054 +3577 celestial 2489 +4126 opendoar 2246 +4126 celestial 4623 +4819 opendoar 724 +4819 celestial 4839 +4819 +123 opendoar 25 +123 celestial 929 +5633 celestial 4957 +5633 opendoar 2562 +2628 opendoar +2628 celestial 2160 +2628 +2628 +2628 +2628 +2628 +3211 opendoar 1956 +3211 celestial 2316 +974 opendoar 368 +974 celestial 375 +1437 opendoar 352 +1437 celestial 95 +5460 opendoar 2461 +5460 celestial 4910 +5124 opendoar 2461 +5124 celestial 4910 +3576 opendoar 2052 +3576 celestial 2488 +130 opendoar 26 +130 celestial 282 +130 roarmap 527 +3391 celestial 2387 +3391 roarmap +3391 opendoar 3948 +3707 opendoar 2118 +3707 celestial 2572 +4968 opendoar 1660 +4968 celestial 1820 +1560 opendoar 1660 +1560 celestial 1820 +676 celestial 1394 +840 celestial 399 +5609 celestial 5049 +5609 opendoar 2855 +1530 celestial 56 +791 opendoar 511 +791 celestial 589 +981 opendoar 244 +981 celestial 235 +5865 opendoar +5865 celestial 5084 +5865 +5865 +5865 +5865 +5865 +3241 celestial 2327 +1539 opendoar 377 +1539 celestial 1816 +2452 celestial 1816 +666 celestial 219 +11231 opendoar 2588 +11231 +11231 +6173 opendoar 2588 +6173 celestial 5111 +5693 opendoar 627 +5693 celestial 5069 +5438 opendoar 2397 +5438 celestial 4804 +5408 opendoar 2171 +5408 celestial 2624 +5106 opendoar 1587 +5106 celestial 4900 +4960 opendoar 2420 +4960 celestial 4871 +4956 opendoar 2320 +4956 celestial 4872 +4621 opendoar 2397 +4621 celestial 4804 +2398 opendoar 279 +2398 celestial 2099 +2398 roarmap 265 +1091 opendoar 1621 +1091 celestial 1755 +134 celestial 1364 +1518 opendoar 1209 +1518 celestial 1184 +4315 celestial 4690 +4315 opendoar 2370 +576 opendoar 604 +576 celestial 693 +218 celestial 1412 +6427 opendoar 2771 +6427 celestial 5264 +6427 +7269 celestial 5264 +5961 celestial 5095 +3893 opendoar 2169 +3893 celestial 2623 +225 opendoar 63 +225 celestial 34 +572 opendoar 158 +572 celestial 223 +3685 opendoar 1722 +3685 celestial 2110 +206 opendoar 1187 +206 celestial 1078 +193 opendoar 43 +193 celestial 27 +608 celestial 1200 +459 opendoar 1166 +459 celestial 1657 +19 opendoar 265 +19 celestial 531 +184 opendoar 37 +184 celestial 20 +3921 celestial 2643 +584 opendoar 1323 +584 celestial 1680 +189 opendoar 408 +189 celestial 465 +5430 opendoar 988 +5430 celestial 5009 +1527 celestial 1040 +1348 celestial 869 +3682 opendoar 2098 +3682 celestial 2556 +4992 opendoar 2098 +4992 celestial 2556 +4263 opendoar 2300 +4263 celestial 4665 +4358 celestial 4665 +172 opendoar 1076 +172 celestial 1101 +1447 celestial 172 +4904 celestial 4850 +4619 opendoar 2383 +4619 celestial 4803 +97 opendoar 1210 +97 celestial 1599 +1450 opendoar 392 +1450 celestial 629 +1204 celestial 494 +623 celestial 1244 +187 celestial 37 +1223 celestial 1395 +1285 celestial 1392 +1284 celestial 1391 +599 celestial 659 +672 opendoar 187 +672 celestial 645 +673 celestial 158 +685 celestial 623 +707 opendoar 190 +707 celestial 624 +720 opendoar 505 +720 celestial 654 +1109 celestial 641 +1192 celestial 362 +1318 celestial 330 +1478 opendoar 580 +1478 celestial 655 +1487 celestial 123 +1250 opendoar 502 +1250 celestial 667 +738 celestial 664 +17867 +17867 +17867 +17867 +17867 +17867 +17860 +17860 +17860 +17860 +17860 +17860 +17860 +17860 +17860 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17846 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17843 +17841 +17841 +17841 +17841 +17841 +17841 +17841 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17835 +17834 +17834 +17834 +17829 opendoar 10104 +17829 +17823 +17823 +17823 +17823 +17823 +17822 opendoar 10323 +17822 +17822 +17822 +17822 +17817 +17786 +17779 +17779 +17768 +17768 +17757 +17757 +17757 +17757 +17744 +17744 +17737 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17726 +17724 +17724 +17710 +17710 +17707 +17707 +17704 +17704 +17704 +17704 +17704 +17704 +17704 +17695 +17695 +17695 +17688 +17688 +17688 +17688 +17688 +17685 +17685 +17685 +17678 opendoar 10298 +17678 +17678 +17678 +17678 +17678 +17678 +17678 +17678 +17678 +17656 +17656 +17656 +17643 +17641 +17641 +17641 +17640 +17640 +17626 +17626 +17624 +17624 +17624 +17610 +17609 +17608 +17607 +17606 +17603 +17603 +17603 +17603 +17603 +17603 +17603 +17603 +17603 +17603 +17603 +17602 opendoar 10312 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17602 +17599 +17599 +17598 +17598 +17598 +17576 +17576 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17570 +17564 opendoar 1873 +17564 +17564 +17564 +17564 +17564 +17561 opendoar 10255 +17561 +17561 +17561 +17561 +17561 +17561 +17541 +17541 +17541 +17535 +17535 +17535 +17525 +17524 +17524 +17520 +17520 +17503 opendoar 4692 +17503 +17496 +17496 +17495 +17495 +17495 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17475 +17470 +17456 opendoar 2157 +17456 +17456 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17455 +17382 +17383 +17381 +17374 +17374 +17370 +17370 +17368 +17368 +17362 +17362 +17362 +17359 +17359 +17359 +17359 +17359 +17338 +17338 +17336 +17336 +17336 +17324 +17322 +17322 +17315 +17302 +17297 opendoar 10100 +17295 opendoar 10099 +17294 +17294 +17256 opendoar 10189 +17255 +17252 +17252 +17231 +17231 +17231 +17231 +17231 +17231 +17221 +17221 +17221 +17221 +17220 +17220 +17212 +17212 +17210 +17210 +17210 +17196 +17196 +17194 opendoar 10149 +17194 +17190 opendoar 10152 +17181 +17164 opendoar +17164 +17164 +17164 +17157 +17157 +17155 +17155 +17155 +17144 +17144 +17144 +17137 +17137 +17132 +17132 +17132 +17132 +17132 +17132 +17132 +17132 +17132 +17132 +17132 +17124 +17124 +17103 +17103 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17091 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17090 +17088 +17088 +17082 +17082 +17082 +17080 opendoar 10117 +17080 roarmap 4075 +17080 +17076 +17076 +17067 opendoar 10108 +17067 +17067 +17066 opendoar 10107 +17066 +17066 +17066 +17066 +17066 +17066 +17063 +17063 +17063 +17060 +17060 +17051 +17051 +17041 +17041 +17041 +17041 +17041 +17041 +17041 +17041 +17041 +17041 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17037 +17029 +17029 +17029 +17028 +17028 +17025 opendoar 3431 +17025 +17023 +17023 +17023 +17015 opendoar +17015 celestial +17015 roarmap +17013 +17013 +17013 +17013 +17012 +17012 +17012 +17002 +17002 +17002 +17002 +17002 +17002 +17002 +17002 +17002 +17001 +17001 +16995 +16995 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16988 +16987 +16987 +16987 +16987 +16987 +16987 +16987 +16987 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16986 +16982 opendoar 10094 +16982 +16982 +16981 opendoar 10093 +16981 +16981 +16981 +16976 opendoar +16976 roarmap +16976 celestial +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16976 +16974 +16974 +16967 opendoar 10051 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16967 +16966 +16965 +16965 +16964 opendoar 10088 +16964 +16964 +16964 +16964 +16964 +16964 +16962 +16962 +16962 +16958 +16958 +16949 +16949 SSRN 4597185 +16949 AAH-1018-2021 +16945 +16945 +16945 +16939 +16936 +16936 +16936 +16929 +16929 +16926 +16926 +16926 +16898 +16898 +16898 +16898 +16898 +16898 +16898 +16898 +16898 +16898 +16896 +16896 +16896 +16896 +16896 +16896 +16892 +16892 +16892 +16881 +16881 +16881 +16872 +16871 +16849 +16849 +16849 +16841 +16841 +16839 +16839 +16839 +16838 +16838 +16838 +16831 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16825 +16819 +16819 +16816 +16816 +16816 +16816 +16816 +16816 +16816 +16816 +16811 +16811 +16795 +16785 opendoar 3346 +16780 +16780 +16780 +16780 +16780 +16780 +16780 +16780 +16780 +16780 +16763 +16759 +16758 +16758 +16758 +16758 +16758 +16758 +16747 +16747 +16747 +16747 +16744 +16742 +16737 +16727 +16726 +16725 +16724 +16723 +16721 opendoar 10029 +16721 +16721 +16721 +16721 +16721 +16720 opendoar +16720 celestial Lanzhou University of Technology Institutional Repository +16720 roarmap Lanzhou University of Technology Institutional Repository +16719 opendoar +16719 celestial university of science and technology +16719 roarmap university of science and technology +16719 +16719 +16719 +16719 +16719 +16719 +16719 +16707 +16704 +16701 +16701 +16696 +16693 opendoar 3954 +16693 +16693 +16693 +16693 +16693 +16693 +16693 +16693 +16690 +16690 +16690 +16559 +16559 +16559 +16559 +16552 opendoar +16552 celestial +16552 roarmap +16551 opendoar 10012 +16538 +16528 +16525 opendoar 4570 +16522 opendoar 9971 +16522 +16522 +16522 +16522 +16522 +16522 +16522 +16512 +16512 +16512 +16512 +16511 +16505 +16500 +16491 +16490 +16490 +16490 +16490 +16490 +16490 +16490 +16490 +16490 +16490 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16487 +16480 +16474 +16470 +16469 opendoar 4243 +16469 +16469 +16469 +16469 +16469 +16469 +16467 +16467 +16467 +16462 +16455 +16455 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16454 +16451 +16451 +16451 +16451 +16451 +16451 +16451 +16451 +16451 +16451 +16447 +16447 +16447 +16447 +16447 +16447 +16447 +16447 +16447 +16447 +16447 +16444 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16442 +16430 +16432 +16426 +16426 +16423 +16418 +16418 +16418 +16418 +16418 +16415 +16415 +16405 +16403 opendoar 9946 +16402 +16401 +16397 ir.vtei.edu.ua +16390 +16389 +16376 opendoar 4375 +16376 +16368 +16368 +16368 +16368 +16368 +16368 +16368 +16368 +16368 +16367 opendoar 9752 +16343 +16343 +16343 +16334 +16333 +16326 +16326 +16326 +16326 +16318 +16310 +16309 +16305 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16304 +16302 +16291 opendoar 1046 +16284 +16283 +16270 +16265 opendoar 3791 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16264 +16258 opendoar +16258 +16258 +16258 +16258 +16258 +16258 +16258 +16256 +16250 +16250 +16250 +16250 +16250 +16250 +16250 +16250 +16250 +16239 +16236 roarmap "

re3data_____::r3d100012729 -> fairsharing_::1724 +ERROR fairsharing_::3340 -> re3data_____::r3d100010543 -> fairsharing_::2107 +ERROR re3data_____::r3d100010412 -> fairsharing_::2424 -> re3data_____::r3d100011538 +ERROR re3data_____::r3d100011257 -> fairsharing_::1730 -> re3data_____::r3d100012862 +ERROR re3data_____::r3d100011343 -> fairsharing_::2163 -> re3data_____::r3d100000039 +ERROR re3data_____::r3d100013223 -> fairsharing_::2524 -> re3data_____::r3d100012397 diff --git a/data/out/allDuplicateSets.txt b/data/out/allDuplicateSets.txt new file mode 100644 index 0000000..16b657b --- /dev/null +++ b/data/out/allDuplicateSets.txt @@ -0,0 +1,3951 @@ +["re3data_____::r3d100011138", "fairsharing_::2998"] +["re3data_____::r3d100011310", "fairsharing_::2475"] +["fairsharing_::1740", "re3data_____::r3d100010906"] +["fairsharing_::3319", "re3data_____::r3d100013383"] +["re3data_____::r3d100011380", "fairsharing_::2810"] +["re3data_____::r3d100010088", "fairsharing_::2294"] +["re3data_____::r3d100013461", "fairsharing_::3245"] +["re3data_____::r3d100011742", "fairsharing_::3170"] +["fairsharing_::2012", "re3data_____::r3d100012849"] +["re3data_____::r3d100012433", "fairsharing_::2742"] +["re3data_____::r3d100010589", "fairsharing_::2788"] +["fairsharing_::3056", "re3data_____::r3d100010503"] +["re3data_____::r3d100012077", "fairsharing_::2538"] +["re3data_____::r3d100011065", "fairsharing_::3114"] +["fairsharing_::3140", "re3data_____::r3d100010056"] +["fairsharing_::1550", "re3data_____::r3d100012700"] +["re3data_____::r3d100010373", "fairsharing_::3279"] +["fairsharing_::2861", "re3data_____::r3d100012696"] +["re3data_____::r3d100013385", "fairsharing_::3173"] +["re3data_____::r3d100011708", "fairsharing_::2797"] +["re3data_____::r3d100010496", "fairsharing_::3341"] +["re3data_____::r3d100013237", "fairsharing_::3342"] +["re3data_____::r3d100011623", "fairsharing_::2929"] +["re3data_____::r3d100011025", "fairsharing_::2995"] +["fairsharing_::3034", "re3data_____::r3d100011683"] +["re3data_____::r3d100010061", "fairsharing_::3049"] +["fairsharing_::1711", "re3data_____::r3d100011556"] +["fairsharing_::3324", "re3data_____::r3d100012193"] +["fairsharing_::3169", "re3data_____::r3d100010287"] +["re3data_____::r3d100013188", "fairsharing_::3098"] +["fairsharing_::2808", "re3data_____::r3d100011673"] +["fairsharing_::3598", "re3data_____::r3d100013623"] +["re3data_____::r3d100013624", "fairsharing_::3599"] +["fairsharing_::2699", "re3data_____::r3d100011094"] +["fairsharing_::2807", "re3data_____::r3d100011110"] +["re3data_____::r3d100012611", "fairsharing_::2606"] +["re3data_____::r3d100013625", "fairsharing_::3616"] +["fairsharing_::2291", "re3data_____::r3d100012176"] +["re3data_____::r3d100010760", "fairsharing_::2092"] +["fairsharing_::3051", "re3data_____::r3d100010506"] +["re3data_____::r3d100010773", "fairsharing_::2801"] +["fairsharing_::3128", "re3data_____::r3d100011781"] +["re3data_____::r3d100012845", "fairsharing_::2201"] +["fairsharing_::3317", "re3data_____::r3d100013328"] +["fairsharing_::2126", "re3data_____::r3d100010562"] +["fairsharing_::2157", "re3data_____::r3d100010092"] +["re3data_____::r3d100011018", "fairsharing_::3029"] +["re3data_____::r3d100011280", "fairsharing_::1727"] +["re3data_____::r3d100010558", "fairsharing_::2417"] +["fairsharing_::3122", "re3data_____::r3d100010183"] +["re3data_____::r3d100000023", "fairsharing_::1723"] +["re3data_____::r3d100011213", "fairsharing_::2127"] +["fairsharing_::3216", "re3data_____::r3d100011643"] +["re3data_____::r3d100012601", "fairsharing_::2583"] +["fairsharing_::1773", "re3data_____::r3d100010927"] +["fairsharing_::3181", "re3data_____::r3d100010232"] +["re3data_____::r3d100012864", "fairsharing_::2381"] +["re3data_____::r3d100011192", "fairsharing_::2129"] +["re3data_____::r3d100010126", "fairsharing_::2925"] +["fairsharing_::1972", "re3data_____::r3d100010652"] +["re3data_____::r3d100010268", "fairsharing_::2426"] +["fairsharing_::3345", "re3data_____::r3d100013508"] +["fairsharing_::3121", "re3data_____::r3d100011633"] +["fairsharing_::2416", "re3data_____::r3d100011801"] +["re3data_____::r3d100010314", "fairsharing_::2069"] +["re3data_____::r3d100013291", "fairsharing_::3224"] +["fairsharing_::2211", "re3data_____::r3d100012828"] +["re3data_____::r3d100012439", "fairsharing_::2525"] +["re3data_____::r3d100010316", "fairsharing_::2783"] +["re3data_____::r3d100013079", "fairsharing_::3106"] +["re3data_____::r3d100012072", "fairsharing_::2547"] +["fairsharing_::2767", "re3data_____::r3d100012305"] +["fairsharing_::2072", "re3data_____::r3d100010170"] +["re3data_____::r3d100012288", "fairsharing_::3148"] +["fairsharing_::2186", "re3data_____::r3d100012529"] +["re3data_____::r3d100013606", "fairsharing_::3102"] +["fairsharing_::2231", "re3data_____::r3d100011867"] +["fairsharing_::2984", "re3data_____::r3d100010502"] +["fairsharing_::1863", "re3data_____::r3d100010137"] +["re3data_____::r3d100012487", "fairsharing_::3044"] +["fairsharing_::1891", "re3data_____::r3d100011052"] +["re3data_____::r3d100012705", "fairsharing_::2562"] +["re3data_____::r3d100012630", "fairsharing_::2135"] +["fairsharing_::3334", "re3data_____::r3d100012962"] +["fairsharing_::1714", "re3data_____::r3d100010804"] +["re3data_____::r3d100010880", "fairsharing_::2118"] +["fairsharing_::2544", "re3data_____::r3d100012961"] +["re3data_____::r3d100013663", "fairsharing_::3067"] +["fairsharing_::3127", "re3data_____::r3d100012890"] +["re3data_____::r3d100010272", "fairsharing_::2162"] +["re3data_____::r3d100010408", "fairsharing_::1725"] +["re3data_____::r3d100012349", "fairsharing_::2459"] +["re3data_____::r3d100012820", "fairsharing_::2134"] +["fairsharing_::1752", "re3data_____::r3d100010637"] +["re3data_____::r3d100012464", "fairsharing_::2236"] +["re3data_____::r3d100010410", "fairsharing_::2443"] +["re3data_____::r3d100010504", "fairsharing_::3058"] +["re3data_____::r3d100011506", "fairsharing_::2421"] +["fairsharing_::1772", "re3data_____::r3d100012074"] +["re3data_____::r3d100011913", "fairsharing_::2243"] +["re3data_____::r3d100013667", "fairsharing_::2380"] +["fairsharing_::3171", "re3data_____::r3d100011665"] +["re3data_____::r3d100011700", "fairsharing_::2983"] +["re3data_____::r3d100012203", "fairsharing_::3184"] +["fairsharing_::2931", "re3data_____::r3d100012003"] +["fairsharing_::3322", "re3data_____::r3d100013638"] +["re3data_____::r3d100010578", "fairsharing_::2423"] +["re3data_____::r3d100011956", "fairsharing_::2806"] +["fairsharing_::2415", "re3data_____::r3d100012342"] +["fairsharing_::3210", "re3data_____::r3d100012656"] +["re3data_____::r3d100012419", "fairsharing_::3202"] +["fairsharing_::1554", "re3data_____::r3d100012628"] +["fairsharing_::3246", "re3data_____::r3d100013365"] +["re3data_____::r3d100011206", "fairsharing_::3164"] +["fairsharing_::3166", "re3data_____::r3d100011551"] +["fairsharing_::3332", "re3data_____::r3d100011394"] +["fairsharing_::2188", "re3data_____::r3d100012840"] +["fairsharing_::2161", "re3data_____::r3d100010134"] +["fairsharing_::3330", "re3data_____::r3d100013217"] +["fairsharing_::3082", "re3data_____::r3d100012717"] +["fairsharing_::3143", "re3data_____::r3d100012834"] +["re3data_____::r3d100010696", "fairsharing_::2939"] +["fairsharing_::3201", "re3data_____::r3d100011782"] +["fairsharing_::3265", "re3data_____::r3d100012080"] +["re3data_____::r3d100010186", "fairsharing_::2409"] +["re3data_____::r3d100010165", "fairsharing_::3272"] +["re3data_____::r3d100012225", "fairsharing_::2890"] +["fairsharing_::3099", "re3data_____::r3d100011288"] +["fairsharing_::3264", "re3data_____::r3d100011391"] +["re3data_____::r3d100010347", "fairsharing_::2978"] +["re3data_____::r3d100011549", "fairsharing_::3238"] +["re3data_____::r3d100010699", "fairsharing_::3242"] +["fairsharing_::3077", "re3data_____::r3d100012504"] +["re3data_____::r3d100012500", "fairsharing_::2553"] +["fairsharing_::3090", "re3data_____::r3d100012403"] +["re3data_____::r3d100013680", "fairsharing_::2529"] +["re3data_____::r3d100013238", "fairsharing_::2328"] +["fairsharing_::3205", "re3data_____::r3d100012145"] +["fairsharing_::2463", "re3data_____::r3d100011651"] +["re3data_____::r3d100010478", "fairsharing_::2125"] +["fairsharing_::3228", "re3data_____::r3d100010114"] +["fairsharing_::3193", "re3data_____::r3d100011797"] +["re3data_____::r3d100010631", "fairsharing_::2427"] +["fairsharing_::2725", "re3data_____::r3d100012561"] +["fairsharing_::3168", "re3data_____::r3d100011128"] +["re3data_____::r3d100011583", "fairsharing_::2501"] +["re3data_____::r3d100011718", "fairsharing_::2436"] +["re3data_____::r3d100013051", "fairsharing_::2277"] +["fairsharing_::2821", "re3data_____::r3d100000019"] +["fairsharing_::3150", "re3data_____::r3d100011468"] +["fairsharing_::3110", "re3data_____::r3d100012470"] +["fairsharing_::2664", "re3data_____::r3d100012863"] +["fairsharing_::2986", "re3data_____::r3d100012915"] +["re3data_____::r3d100010963", "fairsharing_::2994"] +["fairsharing_::3163", "re3data_____::r3d100012503"] +["fairsharing_::3032", "re3data_____::r3d100011680"] +["fairsharing_::2486", "re3data_____::r3d100010256"] +["fairsharing_::2793", "re3data_____::r3d100012463"] +["re3data_____::r3d100010121", "fairsharing_::3190"] +["re3data_____::r3d100011525", "fairsharing_::3249"] +["fairsharing_::1996", "re3data_____::r3d100010788"] +["opendoar____::69", "fairsharing_::2872", "roar________::477", "re3data_____::r3d100012322"] +["re3data_____::r3d100012827", "fairsharing_::2014"] +["re3data_____::r3d100010625", "fairsharing_::3263"] +["re3data_____::r3d100010931", "fairsharing_::1945"] +["fairsharing_::3567", "re3data_____::r3d100012181"] +["re3data_____::r3d100012123", "fairsharing_::3186"] +["fairsharing_::2533", "re3data_____::r3d100012690"] +["fairsharing_::1928", "re3data_____::r3d100012755"] +["re3data_____::r3d100012575", "fairsharing_::2049"] +["fairsharing_::2065", "re3data_____::r3d100011559"] +["re3data_____::r3d100010924", "fairsharing_::2148"] +["fairsharing_::3151", "re3data_____::r3d100011470"] +["fairsharing_::2256", "re3data_____::r3d100011173"] +["re3data_____::r3d100010180", "fairsharing_::2737"] +["fairsharing_::2282", "re3data_____::r3d100013052"] +["fairsharing_::2376", "re3data_____::r3d100010730"] +["re3data_____::r3d100010189", "fairsharing_::2410"] +["re3data_____::r3d100010120", "fairsharing_::2434"] +["fairsharing_::3078", "re3data_____::r3d100012548"] +["fairsharing_::2431", "re3data_____::r3d100011758"] +["re3data_____::r3d100010199", "fairsharing_::2446"] +["fairsharing_::2769", "re3data_____::r3d100010748"] +["fairsharing_::2822", "re3data_____::r3d100012910"] +["re3data_____::r3d100010937", "fairsharing_::2827"] +["re3data_____::r3d100010831", "fairsharing_::3091"] +["fairsharing_::3208", "re3data_____::r3d100013361"] +["re3data_____::r3d100013351", "fairsharing_::3328"] +["fairsharing_::3335", "re3data_____::r3d100013510"] +["re3data_____::r3d100013330", "fairsharing_::2210"] +["fairsharing_::1971", "re3data_____::r3d100010780"] +["re3data_____::r3d100010192", "fairsharing_::2445"] +["re3data_____::r3d100011515", "fairsharing_::2015"] +["re3data_____::r3d100010081", "fairsharing_::2497"] +["fairsharing_::2505", "re3data_____::r3d100010214"] +["re3data_____::r3d100011562", "fairsharing_::2159"] +["re3data_____::r3d100012329", "fairsharing_::2283"] +["fairsharing_::2500", "re3data_____::r3d100010714"] +["re3data_____::r3d100012732", "fairsharing_::2492"] +["re3data_____::r3d100012273", "fairsharing_::2607"] +["re3data_____::r3d100010243", "fairsharing_::1651"] +["fairsharing_::2923", "re3data_____::r3d100013268"] +["fairsharing_::2843", "re3data_____::r3d100011907"] +["re3data_____::r3d100011005", "fairsharing_::2930"] +["fairsharing_::2972", "re3data_____::r3d100010141"] +["re3data_____::r3d100011648", "fairsharing_::3219"] +["fairsharing_::2075", "re3data_____::r3d100011690"] +["fairsharing_::1892", "re3data_____::r3d100011795"] +["fairsharing_::1762", "re3data_____::r3d100010619"] +["re3data_____::r3d100012362", "fairsharing_::2922"] +["fairsharing_::2757", "re3data_____::r3d100011870"] +["fairsharing_::1789", "re3data_____::r3d100010616"] +["fairsharing_::2115", "re3data_____::r3d100010666"] +["fairsharing_::2882", "re3data_____::r3d100010847"] +["fairsharing_::3654", "re3data_____::r3d100011696"] +["re3data_____::r3d100012263", "fairsharing_::2368"] +["fairsharing_::2956", "re3data_____::r3d100013299"] +["fairsharing_::2247", "re3data_____::r3d100012421"] +["re3data_____::r3d100011140", "fairsharing_::3268"] +["re3data_____::r3d100010656", "fairsharing_::1790"] +["fairsharing_::3217", "re3data_____::r3d100012870"] +["fairsharing_::2121", "re3data_____::r3d100010975"] +["fairsharing_::2489", "re3data_____::r3d100012836"] +["fairsharing_::2263", "re3data_____::r3d100012647"] +["re3data_____::r3d100011906", "fairsharing_::1585"] +["re3data_____::r3d100011567", "fairsharing_::2268"] +["re3data_____::r3d100010299", "fairsharing_::2493"] +["re3data_____::r3d100012315", "fairsharing_::2090"] +["fairsharing_::1854", "re3data_____::r3d100010798"] +["fairsharing_::1818", "re3data_____::r3d100010585"] +["fairsharing_::1956", "re3data_____::r3d100010553"] +["re3data_____::r3d100011858", "fairsharing_::2987"] +["fairsharing_::2085", "re3data_____::r3d100012189"] +["re3data_____::r3d100010883", "fairsharing_::1949"] +["re3data_____::r3d100010285", "fairsharing_::1991"] +["re3data_____::r3d100011344", "fairsharing_::3030"] +["re3data_____::r3d100012901", "fairsharing_::2105"] +["re3data_____::r3d100012730", "fairsharing_::1642"] +["fairsharing_::2284", "re3data_____::r3d100012747"] +["re3data_____::r3d100010586", "fairsharing_::2293"] +["re3data_____::r3d100010651", "fairsharing_::1963"] +["re3data_____::r3d100010123", "fairsharing_::1605"] +["re3data_____::r3d100012791", "fairsharing_::1876"] +["fairsharing_::2123", "re3data_____::r3d100012015"] +["fairsharing_::3203", "re3data_____::r3d100012075"] +["re3data_____::r3d100010744", "fairsharing_::2585"] +["fairsharing_::3296", "re3data_____::r3d100013505"] +["re3data_____::r3d100011839", "fairsharing_::2349"] +["re3data_____::r3d100012585", "fairsharing_::2420"] +["re3data_____::r3d100010350", "fairsharing_::2028"] +["fairsharing_::2021", "re3data_____::r3d100011561"] +["fairsharing_::3087", "re3data_____::r3d100013049"] +["fairsharing_::1703", "re3data_____::r3d100011871"] +["re3data_____::r3d100011557", "fairsharing_::1879"] +["re3data_____::r3d100013309", "fairsharing_::2962"] +["fairsharing_::2543", "re3data_____::r3d100010409"] +["re3data_____::r3d100010776", "fairsharing_::1982"] +["re3data_____::r3d100012946", "fairsharing_::1895"] +["re3data_____::r3d100013155", "fairsharing_::3026"] +["re3data_____::r3d100011872", "fairsharing_::2723"] +["fairsharing_::2429", "re3data_____::r3d100010110"] +["re3data_____::r3d100012725", "fairsharing_::2071"] +["fairsharing_::2365", "re3data_____::r3d100011166"] +["re3data_____::r3d100012726", "fairsharing_::2112"] +["re3data_____::r3d100011286", "fairsharing_::2055"] +["fairsharing_::2779", "re3data_____::r3d100013160"] +["fairsharing_::1626", "re3data_____::r3d100012722"] +["re3data_____::r3d100012186", "fairsharing_::2953"] +["fairsharing_::3005", "re3data_____::r3d100011070"] +["fairsharing_::1997", "re3data_____::r3d100010786"] +["re3data_____::r3d100011123", "fairsharing_::3006"] +["re3data_____::r3d100012898", "fairsharing_::1886"] +["re3data_____::r3d100011253", "fairsharing_::1553"] +["re3data_____::r3d100010977", "fairsharing_::1593"] +["re3data_____::r3d100013315", "fairsharing_::1914"] +["re3data_____::r3d100012339", "fairsharing_::1776"] +["fairsharing_::1625", "re3data_____::r3d100012850"] +["fairsharing_::1904", "re3data_____::r3d100010561"] +["fairsharing_::1768", "re3data_____::r3d100010624"] +["fairsharing_::2084", "re3data_____::r3d100011285"] +["re3data_____::r3d100010544", "fairsharing_::1844"] +["re3data_____::r3d100011751", "fairsharing_::3189"] +["re3data_____::r3d100012727", "fairsharing_::2354"] +["re3data_____::r3d100010605", "fairsharing_::2061"] +["fairsharing_::1988", "re3data_____::r3d100010784"] +["re3data_____::r3d100013060", "fairsharing_::2674"] +["re3data_____::r3d100011277", "fairsharing_::2054"] +["re3data_____::r3d100010564", "fairsharing_::2286"] +["re3data_____::r3d100011496", "fairsharing_::2591"] +["re3data_____::r3d100010772", "fairsharing_::2109"] +["re3data_____::r3d100010781", "fairsharing_::1977"] +["re3data_____::r3d100010872", "fairsharing_::2438"] +["re3data_____::r3d100010672", "fairsharing_::1893"] +["fairsharing_::2287", "re3data_____::r3d100010416"] +["re3data_____::r3d100010856", "fairsharing_::1837"] +["fairsharing_::2058", "re3data_____::r3d100012325"] +["re3data_____::r3d100010142", "fairsharing_::2521"] +["re3data_____::r3d100012165", "fairsharing_::1648"] +["re3data_____::r3d100011331", "fairsharing_::2087"] +["fairsharing_::1979", "re3data_____::r3d100011004"] +["fairsharing_::1599", "re3data_____::r3d100010671"] +["re3data_____::r3d100013100", "fairsharing_::2798"] +["fairsharing_::1760", "re3data_____::r3d100010570"] +["re3data_____::r3d100012753", "fairsharing_::1887"] +["re3data_____::r3d100012314", "fairsharing_::2206"] +["fairsharing_::2334", "re3data_____::r3d100012756"] +["re3data_____::r3d100012587", "fairsharing_::2683"] +["fairsharing_::2178", "re3data_____::r3d100011936"] +["re3data_____::r3d100011931", "fairsharing_::1697"] +["re3data_____::r3d100010593", "fairsharing_::2246"] +["re3data_____::r3d100012648", "fairsharing_::2812"] +["fairsharing_::2655", "re3data_____::r3d100011874"] +["re3data_____::r3d100013329", "fairsharing_::2979"] +["fairsharing_::2190", "re3data_____::r3d100011058"] +["fairsharing_::2734", "re3data_____::r3d100010850"] +["fairsharing_::2031", "re3data_____::r3d100010910"] +["re3data_____::r3d100010795", "fairsharing_::1948"] +["re3data_____::r3d100012928", "fairsharing_::2390"] +["fairsharing_::2442", "re3data_____::r3d100012396"] +["re3data_____::r3d100010420", "fairsharing_::2447"] +["fairsharing_::2089", "re3data_____::r3d100010670"] +["fairsharing_::2077", "re3data_____::r3d100011521"] +["re3data_____::r3d100010266", "fairsharing_::1955"] +["fairsharing_::2351", "re3data_____::r3d100012363"] +["re3data_____::r3d100012721", "fairsharing_::1693"] +["re3data_____::r3d100010289", "fairsharing_::2787"] +["fairsharing_::1869", "re3data_____::r3d100010546"] +["re3data_____::r3d100010549", "fairsharing_::1947"] +["re3data_____::r3d100010797", "fairsharing_::1715"] +["fairsharing_::1940", "re3data_____::r3d100010921"] +["re3data_____::r3d100011516", "fairsharing_::1630"] +["fairsharing_::2269", "re3data_____::r3d100012297"] +["re3data_____::r3d100012427", "fairsharing_::1742"] +["fairsharing_::2555", "re3data_____::r3d100012537"] +["fairsharing_::2213", "re3data_____::r3d100012654"] +["re3data_____::r3d100012902", "fairsharing_::2037"] +["re3data_____::r3d100013578", "fairsharing_::1935"] +["re3data_____::r3d100010415", "fairsharing_::1220"] +["re3data_____::r3d100010422", "fairsharing_::1091"] +["re3data_____::r3d100012120", "fairsharing_::362"] +["re3data_____::r3d100012626", "fairsharing_::1036"] +["roar________::437", "re3data_____::r3d100012399"] +["re3data_____::r3d100013273", "roar________::14208"] +["roar________::11366", "re3data_____::r3d100013438", "roar________::11342", "opendoar____::3351"] +["opendoar____::6284", "re3data_____::r3d100013717", "roar________::2560"] +["re3data_____::r3d100013342", "opendoar____::4231"] +["roar________::606", "opendoar____::166"] +["roar________::68", "opendoar____::165"] +["opendoar____::1198", "roar________::941"] +["opendoar____::330", "roar________::1383"] +["roar________::1120", "opendoar____::1723"] +["opendoar____::15", "roar________::82", "roar________::3932", "roar________::10640"] +["roar________::5693", "opendoar____::627", "roar________::1007"] +["roar________::1423", "opendoar____::348"] +["opendoar____::2186", "roar________::3496"] +["opendoar____::1415", "roar________::1142"] +["roar________::1327", "opendoar____::908"] +["opendoar____::99", "roar________::346"] +["opendoar____::1091", "roar________::1060"] +["roar________::1496", "opendoar____::1288"] +["roar________::699", "opendoar____::1112"] +["opendoar____::1003", "roar________::36"] +["opendoar____::276", "roar________::1531"] +["opendoar____::548", "roar________::575"] +["roar________::69", "roar________::4887", "opendoar____::639"] +["opendoar____::657", "roar________::846"] +["roar________::3163", "opendoar____::1948", "roar________::3168"] +["opendoar____::1127", "roar________::719"] +["opendoar____::540", "roar________::337"] +["opendoar____::569", "roar________::8721"] +["opendoar____::947", "roar________::988"] +["roar________::925", "opendoar____::225"] +["roar________::2620", "opendoar____::1295", "roar________::888"] +["opendoar____::363", "roar________::2301", "roar________::1432", "roar________::2330"] +["opendoar____::72", "roar________::239"] +["roar________::527", "opendoar____::1113"] +["roar________::918", "opendoar____::224"] +["opendoar____::163", "roar________::294"] +["opendoar____::95", "roar________::263"] +["roar________::5091", "opendoar____::2459"] +["roar________::1124", "opendoar____::450"] +["opendoar____::1874", "roar________::6063"] +["opendoar____::1787", "roar________::1256"] +["roar________::711", "opendoar____::202"] +["roar________::212", "opendoar____::570", "roar________::6001", "roar________::5554"] +["opendoar____::1449", "roar________::706"] +["roar________::452", "opendoar____::121"] +["opendoar____::834", "roar________::5440"] +["opendoar____::656", "roar________::5716"] +["roar________::4455", "opendoar____::2359"] +["opendoar____::2184", "roar________::3971"] +["opendoar____::2366", "roar________::4412"] +["opendoar____::571", "roar________::1311"] +["opendoar____::126", "roar________::463"] +["roar________::1435", "opendoar____::100"] +["opendoar____::883", "roar________::1378"] +["roar________::5688", "opendoar____::2272", "roar________::4145"] +["opendoar____::284", "roar________::1160"] +["opendoar____::1004", "roar________::772"] +["opendoar____::1281", "roar________::3312", "roar________::764"] +["roar________::5206", "opendoar____::1523"] +["opendoar____::469", "roar________::533"] +["opendoar____::75", "roar________::5568", "roar________::279"] +["roar________::1065", "opendoar____::500"] +["opendoar____::18", "roar________::89"] +["roar________::306", "opendoar____::1151"] +["roar________::12480", "roar________::1500", "opendoar____::390"] +["roar________::356", "opendoar____::1608", "roar________::3361"] +["roar________::5434", "opendoar____::954", "roar________::1389"] +["opendoar____::636", "roar________::713"] +["roar________::525", "opendoar____::127"] +["roar________::3123", "opendoar____::1910"] +["roar________::2950", "opendoar____::2006"] +["roar________::1401", "opendoar____::336", "roar________::2342"] +["opendoar____::221", "roar________::880"] +["roar________::6888", "opendoar____::1582"] +["opendoar____::1558", "roar________::1170"] +["opendoar____::3322", "roar________::3396"] +["roar________::999", "opendoar____::250"] +["opendoar____::1569", "roar________::136"] +["opendoar____::2471", "roar________::5087"] +["opendoar____::1970", "roar________::3176"] +["roar________::347", "opendoar____::590"] +["roar________::4698", "opendoar____::2958"] +["opendoar____::1099", "roar________::1317"] +["opendoar____::2234", "roar________::4110"] +["roar________::4167", "opendoar____::2259"] +["roar________::1475", "opendoar____::1708"] +["opendoar____::1242", "roar________::1217"] +["opendoar____::978", "roar________::76"] +["roar________::331", "opendoar____::924"] +["roar________::964", "roar________::5188", "opendoar____::1499"] +["roar________::9532", "opendoar____::2735", "roar________::6229"] +["roar________::345", "opendoar____::439"] +["roar________::574", "opendoar____::159"] +["roar________::984", "opendoar____::713"] +["roar________::721", "opendoar____::1580"] +["roar________::1425", "opendoar____::901"] +["roar________::1464", "opendoar____::320"] +["roar________::5586", "roar________::373", "opendoar____::1186"] +["roar________::1273", "roar________::4730", "opendoar____::565"] +["roar________::2304", "opendoar____::1483"] +["roar________::443", "opendoar____::1148"] +["opendoar____::68", "roar________::251"] +["roar________::1534", "opendoar____::1301"] +["roar________::359", "roar________::4645", "roar________::5532", "opendoar____::123"] +["roar________::6416", "opendoar____::932"] +["roar________::252", "opendoar____::1454"] +["roar________::3708", "opendoar____::2344"] +["opendoar____::2822", "roar________::4456"] +["roar________::51", "opendoar____::1142"] +["opendoar____::2166", "roar________::1209"] +["roar________::341", "opendoar____::1365"] +["opendoar____::493", "roar________::2409", "roar________::951"] +["opendoar____::1304", "roar________::120"] +["opendoar____::498", "roar________::440"] +["opendoar____::1192", "roar________::559"] +["roar________::3538", "opendoar____::2072"] +["opendoar____::235", "roar________::969"] +["roar________::140", "opendoar____::658"] +["roar________::3041", "opendoar____::1965"] +["opendoar____::437", "roar________::768"] +["roar________::2324", "roar________::19", "opendoar____::265"] +["roar________::822", "opendoar____::556"] +["roar________::736", "opendoar____::1150"] +["roar________::1004", "opendoar____::253", "roar________::2416"] +["roar________::780", "opendoar____::199"] +["roar________::1501", "opendoar____::1234", "roar________::5749"] +["roar________::3304", "opendoar____::1985"] +["opendoar____::151", "roar________::549", "roar________::3322"] +["roar________::3817", "opendoar____::2517"] +["roar________::435", "opendoar____::966"] +["roar________::1198", "opendoar____::319"] +["roar________::4295", "opendoar____::2326"] +["roar________::2544", "opendoar____::1819"] +["opendoar____::1843", "roar________::2835"] +["roar________::902", "opendoar____::116"] +["roar________::4542", "opendoar____::2400"] +["roar________::3714", "opendoar____::1094", "roar________::523"] +["roar________::885", "opendoar____::939"] +["roar________::531", "opendoar____::563"] +["roar________::112", "opendoar____::1571"] +["roar________::448", "opendoar____::1645"] +["opendoar____::453", "roar________::413"] +["roar________::274", "opendoar____::73"] +["opendoar____::1659", "roar________::1255"] +["opendoar____::297", "roar________::1259"] +["opendoar____::1933", "roar________::3166"] +["opendoar____::28", "roar________::151"] +["roar________::636", "roar________::5156", "opendoar____::173"] +["roar________::3540", "opendoar____::2109"] +["opendoar____::420", "roar________::292"] +["roar________::1517", "opendoar____::396"] +["opendoar____::103", "roar________::364"] +["roar________::461", "opendoar____::124"] +["opendoar____::387", "roar________::35"] +["opendoar____::1103", "roar________::1232"] +["opendoar____::1279", "roar________::1385"] +["roar________::1480", "opendoar____::2815"] +["opendoar____::2436", "roar________::213"] +["roar________::1269", "opendoar____::1118", "roar________::5699"] +["roar________::3500", "opendoar____::2076"] +["opendoar____::2487", "roar________::5273"] +["opendoar____::576", "roar________::1434"] +["opendoar____::10", "roar________::66", "roar________::1156"] +["opendoar____::1026", "roar________::774"] +["opendoar____::125", "roar________::462"] +["opendoar____::1735", "roar________::2501"] +["opendoar____::366", "roar________::1485"] +["opendoar____::3846", "roar________::3696"] +["roar________::927", "opendoar____::975"] +["roar________::1119", "opendoar____::613"] +["opendoar____::2137", "roar________::3309"] +["opendoar____::65", "roar________::233"] +["roar________::568", "opendoar____::478"] +["roar________::3410", "opendoar____::1229"] +["roar________::1413", "opendoar____::1322"] +["opendoar____::797", "roar________::779"] +["opendoar____::1534", "roar________::1347"] +["roar________::7414", "opendoar____::2845"] +["opendoar____::434", "roar________::338"] +["opendoar____::1869", "roar________::2991"] +["opendoar____::2550", "roar________::1306"] +["roar________::5705", "opendoar____::78", "roar________::1421"] +["opendoar____::1193", "roar________::923"] +["roar________::207", "opendoar____::54"] +["roar________::590", "opendoar____::1688"] +["opendoar____::2000", "roar________::2449"] +["opendoar____::2082", "roar________::3639"] +["opendoar____::2973", "roar________::3938"] +["roar________::261", "opendoar____::1535"] +["roar________::906", "opendoar____::223", "roar________::3050"] +["roar________::481", "opendoar____::1141"] +["opendoar____::922", "roar________::3406"] +["opendoar____::81", "roar________::361"] +["opendoar____::1401", "roar________::465"] +["opendoar____::489", "roar________::879"] +["opendoar____::766", "roar________::1452"] +["opendoar____::59", "roar________::674"] +["roar________::734", "opendoar____::195"] +["roar________::378", "opendoar____::941"] +["opendoar____::1599", "roar________::305"] +["roar________::6335", "opendoar____::2605", "roar________::3915"] +["opendoar____::341", "roar________::1407"] +["roar________::147", "opendoar____::953"] +["opendoar____::338", "roar________::1403"] +["opendoar____::2023", "roar________::3426"] +["opendoar____::115", "roar________::661"] +["opendoar____::56", "roar________::4679", "roar________::5360", "roar________::371"] +["roar________::2388", "opendoar____::1213"] +["opendoar____::386", "roar________::103"] +["opendoar____::805", "roar________::1101"] +["roar________::423", "opendoar____::917"] +["opendoar____::625", "roar________::942"] +["opendoar____::1325", "roar________::483"] +["roar________::2488", "opendoar____::1720"] +["roar________::5239", "opendoar____::2482"] +["roar________::200", "opendoar____::49"] +["roar________::4724", "roar________::664", "opendoar____::184"] +["opendoar____::2729", "roar________::6206"] +["opendoar____::1628", "roar________::1090"] +["roar________::1292", "opendoar____::1156"] +["roar________::996", "opendoar____::249"] +["opendoar____::313", "roar________::815"] +["roar________::39", "opendoar____::730"] +["opendoar____::968", "roar________::690"] +["roar________::1161", "roar________::1162", "opendoar____::496"] +["roar________::1426", "opendoar____::2"] +["opendoar____::1", "roar________::31"] +["roar________::152", "opendoar____::406"] +["opendoar____::77", "roar________::281"] +["roar________::201", "opendoar____::50"] +["roar________::4854", "opendoar____::2438"] +["roar________::1365", "opendoar____::1378"] +["roar________::1438", "opendoar____::353"] +["opendoar____::1650", "roar________::96"] +["roar________::5317", "roar________::5735", "opendoar____::2492"] +["roar________::11496", "opendoar____::1693"] +["roar________::3094", "opendoar____::1900"] +["roar________::2475", "opendoar____::1726"] +["opendoar____::1559", "roar________::1130"] +["opendoar____::1341", "roar________::848"] +["roar________::482", "opendoar____::133"] +["opendoar____::764", "roar________::417"] +["roar________::2575", "opendoar____::1753"] +["roar________::708", "opendoar____::191"] +["roar________::3257", "roar________::966", "opendoar____::233"] +["roar________::1034", "opendoar____::2760"] +["roar________::1003", "opendoar____::252"] +["opendoar____::2412", "roar________::4744"] +["opendoar____::985", "roar________::396"] +["roar________::753", "opendoar____::1307"] +["opendoar____::2092", "roar________::3521"] +["opendoar____::2139", "roar________::3704"] +["roar________::495", "opendoar____::902", "roar________::2653"] +["opendoar____::323", "roar________::300"] +["roar________::1226", "opendoar____::289"] +["opendoar____::340", "roar________::1406"] +["roar________::1379", "opendoar____::328"] +["opendoar____::794", "roar________::633"] +["roar________::934", "opendoar____::227"] +["opendoar____::486", "roar________::654"] +["opendoar____::550", "roar________::3421"] +["opendoar____::1794", "roar________::3081", "roar________::2735"] +["roar________::174", "opendoar____::1663"] +["opendoar____::83", "roar________::819", "roar________::2841"] +["opendoar____::762", "roar________::402"] +["roar________::1453", "opendoar____::314"] +["roar________::1394", "opendoar____::333"] +["roar________::2484", "opendoar____::1772", "roar________::12864"] +["roar________::662", "opendoar____::182"] +["opendoar____::1813", "roar________::7938", "roar________::1263"] +["roar________::4672", "roar________::49", "opendoar____::19"] +["roar________::11424", "roar________::2454", "opendoar____::1241"] +["roar________::582", "opendoar____::162"] +["roar________::444", "opendoar____::458"] +["roar________::224", "opendoar____::62"] +["opendoar____::399", "roar________::92"] +["roar________::1446", "opendoar____::131"] +["opendoar____::2367", "roar________::4571"] +["opendoar____::48", "roar________::199"] +["opendoar____::476", "roar________::1507"] +["opendoar____::1820", "roar________::2785"] +["roar________::688", "opendoar____::1463"] +["opendoar____::164", "roar________::591"] +["opendoar____::358", "roar________::1442"] +["opendoar____::169", "roar________::629"] +["opendoar____::53", "roar________::205"] +["opendoar____::46", "roar________::196"] +["roar________::11200", "opendoar____::2526", "roar________::3854"] +["roar________::5778", "opendoar____::2431", "roar________::3505"] +["roar________::1414", "opendoar____::343"] +["roar________::867", "opendoar____::212"] +["roar________::6770", "roar________::2988", "opendoar____::1871"] +["roar________::6745", "opendoar____::2757"] +["roar________::6737", "opendoar____::2657"] +["roar________::6730", "opendoar____::2651"] +["roar________::6692", "opendoar____::2629"] +["roar________::6477", "opendoar____::2635"] +["opendoar____::2654", "roar________::6371"] +["opendoar____::2618", "roar________::6330"] +["opendoar____::2759", "roar________::6241"] +["roar________::6194", "opendoar____::3558"] +["roar________::6190", "opendoar____::2870"] +["opendoar____::2548", "roar________::6048"] +["opendoar____::3286", "roar________::5996"] +["opendoar____::2567", "roar________::5930"] +["roar________::5911", "opendoar____::2586"] +["roar________::5903", "opendoar____::2721"] +["roar________::5817", "opendoar____::2561"] +["roar________::5798", "opendoar____::2556"] +["opendoar____::2613", "roar________::5725"] +["opendoar____::2767", "roar________::5673"] +["opendoar____::3006", "roar________::5668"] +["opendoar____::2693", "roar________::5644"] +["roar________::5614", "opendoar____::3203"] +["opendoar____::1461", "roar________::5595"] +["opendoar____::2832", "roar________::5593"] +["opendoar____::1071", "roar________::5543"] +["roar________::5539", "roar________::864", "opendoar____::904"] +["roar________::5520", "opendoar____::1231", "roar________::4275"] +["opendoar____::1915", "roar________::9305", "roar________::5463"] +["roar________::5433", "roar________::2897", "opendoar____::1848", "roar________::2862"] +["roar________::919", "roar________::5425", "opendoar____::1047"] +["opendoar____::3270", "roar________::5236"] +["roar________::5197", "opendoar____::2478"] +["opendoar____::2939", "roar________::5196"] +["opendoar____::2469", "roar________::5149"] +["roar________::5122", "opendoar____::2479"] +["opendoar____::2342", "roar________::5004"] +["opendoar____::2440", "roar________::4864"] +["opendoar____::2415", "roar________::4625"] +["roar________::4554", "opendoar____::3219"] +["roar________::4670", "opendoar____::2393"] +["roar________::4168", "opendoar____::2258"] +["roar________::4226", "opendoar____::2336"] +["roar________::4127", "opendoar____::2233"] +["roar________::5063", "opendoar____::2363"] +["opendoar____::2356", "roar________::4476"] +["opendoar____::3189", "roar________::4041"] +["roar________::3990", "opendoar____::2199"] +["roar________::5015", "opendoar____::7440"] +["roar________::4873", "opendoar____::2433"] +["roar________::3769", "opendoar____::2125"] +["roar________::4077", "roar________::4088", "opendoar____::2224"] +["opendoar____::2256", "roar________::4140"] +["roar________::3718", "opendoar____::2132"] +["opendoar____::2153", "roar________::3842"] +["roar________::4386", "opendoar____::2312"] +["opendoar____::2216", "roar________::3453"] +["roar________::3657", "opendoar____::2090"] +["opendoar____::2667", "roar________::3288"] +["opendoar____::2064", "roar________::3574"] +["opendoar____::2505", "roar________::4566"] +["roar________::3088", "opendoar____::777"] +["roar________::3633", "opendoar____::2077"] +["roar________::4022", "opendoar____::2203"] +["opendoar____::2012", "roar________::3357"] +["roar________::2955", "opendoar____::1865"] +["opendoar____::1846", "roar________::2858"] +["opendoar____::1990", "roar________::3294"] +["opendoar____::1785", "roar________::2676"] +["opendoar____::1771", "roar________::2626"] +["opendoar____::1911", "roar________::2868"] +["roar________::2602", "opendoar____::1769"] +["roar________::3477", "opendoar____::2079"] +["roar________::2517", "opendoar____::1889"] +["roar________::3165", "opendoar____::1931"] +["opendoar____::1986", "roar________::3303"] +["roar________::3363", "opendoar____::1983", "roar________::3276"] +["roar________::3926", "opendoar____::2882"] +["roar________::1557", "opendoar____::1692"] +["opendoar____::1816", "roar________::2748"] +["opendoar____::2435", "roar________::4390"] +["opendoar____::1641", "roar________::24"] +["opendoar____::3327", "roar________::3752"] +["roar________::959", "opendoar____::1699"] +["opendoar____::1765", "roar________::1319"] +["opendoar____::40", "roar________::2486"] +["roar________::1191", "opendoar____::1711"] +["opendoar____::2101", "roar________::296", "roar________::4644"] +["opendoar____::1586", "roar________::284"] +["roar________::765", "opendoar____::1476"] +["opendoar____::1632", "roar________::1248"] +["roar________::2373", "opendoar____::2238"] +["roar________::3048", "opendoar____::1887"] +["roar________::2458", "opendoar____::1553"] +["roar________::777", "opendoar____::1545"] +["roar________::1335", "opendoar____::1701"] +["opendoar____::2194", "roar________::366"] +["opendoar____::1581", "roar________::37"] +["roar________::4349", "opendoar____::2297"] +["opendoar____::1589", "roar________::4"] +["opendoar____::1520", "roar________::1516"] +["opendoar____::1532", "roar________::1080"] +["roar________::117", "opendoar____::1533"] +["opendoar____::3615", "roar________::1514"] +["roar________::2951", "roar________::1510", "opendoar____::2235"] +["opendoar____::1934", "roar________::3169"] +["roar________::1471", "opendoar____::1514"] +["roar________::1153", "opendoar____::1505"] +["opendoar____::1479", "roar________::431"] +["roar________::961", "opendoar____::1588"] +["opendoar____::1490", "roar________::253"] +["opendoar____::1591", "roar________::111"] +["roar________::2811", "opendoar____::1826"] +["roar________::895", "opendoar____::2745"] +["opendoar____::1399", "roar________::167"] +["roar________::552", "opendoar____::1278"] +["roar________::2279", "opendoar____::1551"] +["roar________::1066", "roar________::4574", "opendoar____::1500"] +["opendoar____::1384", "roar________::1370"] +["roar________::368", "roar________::3085", "roar________::7017", "opendoar____::1402"] +["roar________::94", "opendoar____::1552"] +["opendoar____::1418", "roar________::874"] +["roar________::816", "opendoar____::1549"] +["roar________::4057", "opendoar____::2219"] +["roar________::1399", "opendoar____::1111"] +["opendoar____::1405", "roar________::492"] +["opendoar____::1601", "roar________::1352"] +["opendoar____::1430", "roar________::508"] +["opendoar____::1447", "roar________::898"] +["opendoar____::1550", "roar________::1074"] +["roar________::484", "opendoar____::1636"] +["roar________::1357", "opendoar____::1567"] +["roar________::1239", "opendoar____::1380"] +["roar________::1544", "opendoar____::1067"] +["opendoar____::1274", "roar________::430"] +["roar________::4416", "opendoar____::2328"] +["roar________::3039", "opendoar____::1940"] +["roar________::9146", "roar________::1200", "opendoar____::1183"] +["roar________::2990", "opendoar____::1867"] +["opendoar____::1376", "roar________::928"] +["opendoar____::1920", "roar________::3154"] +["opendoar____::1293", "roar________::291"] +["opendoar____::1537", "roar________::905"] +["roar________::946", "opendoar____::1243"] +["opendoar____::1212", "roar________::1469"] +["opendoar____::1602", "roar________::38"] +["opendoar____::1088", "roar________::10867", "roar________::110"] +["opendoar____::1222", "roar________::745"] +["roar________::1215", "opendoar____::1225"] +["opendoar____::1682", "roar________::2598"] +["roar________::872", "opendoar____::1068"] +["opendoar____::1048", "roar________::769"] +["roar________::548", "opendoar____::1257"] +["roar________::1512", "opendoar____::1228"] +["roar________::1520", "opendoar____::1177"] +["opendoar____::1056", "roar________::404"] +["roar________::1196", "opendoar____::1077"] +["roar________::622", "opendoar____::1040"] +["opendoar____::1146", "roar________::618"] +["opendoar____::973", "roar________::12605", "roar________::855"] +["roar________::2415", "roar________::597", "opendoar____::927"] +["roar________::1358", "opendoar____::987"] +["opendoar____::950", "roar________::626"] +["opendoar____::1037", "roar________::1303"] +["roar________::3395", "opendoar____::3321"] +["roar________::75", "opendoar____::912"] +["roar________::3772", "roar________::15856", "opendoar____::2127"] +["roar________::2406", "opendoar____::875"] +["roar________::376", "opendoar____::119"] +["opendoar____::763", "roar________::1291"] +["opendoar____::585", "roar________::797"] +["opendoar____::549", "roar________::25"] +["roar________::828", "opendoar____::128"] +["opendoar____::514", "roar________::830"] +["opendoar____::1126", "roar________::1366"] +["opendoar____::1069", "roar________::1367"] +["roar________::718", "opendoar____::949"] +["opendoar____::370", "roar________::1495"] +["roar________::901", "opendoar____::555"] +["roar________::320", "opendoar____::589"] +["opendoar____::1097", "roar________::1218"] +["roar________::286", "opendoar____::909"] +["roar________::1397", "opendoar____::419"] +["roar________::297", "opendoar____::566"] +["opendoar____::197", "roar________::757"] +["roar________::365", "opendoar____::1640"] +["roar________::1235", "opendoar____::349"] +["opendoar____::1125", "roar________::159"] +["opendoar____::272", "roar________::354"] +["opendoar____::369", "roar________::1491"] +["opendoar____::149", "roar________::544"] +["roar________::513", "opendoar____::140"] +["opendoar____::298", "roar________::1280"] +["opendoar____::186", "roar________::670"] +["opendoar____::659", "roar________::1277"] +["opendoar____::256", "roar________::1032"] +["roar________::101", "opendoar____::79"] +["opendoar____::351", "roar________::1431"] +["roar________::1005", "opendoar____::254"] +["opendoar____::144", "roar________::1551"] +["roar________::1252", "opendoar____::294"] +["opendoar____::64", "roar________::226"] +["roar________::567", "opendoar____::481"] +["opendoar____::397", "roar________::1412"] +["opendoar____::148", "roar________::542"] +["opendoar____::326", "roar________::1373"] +["opendoar____::2128", "roar________::3767"] +["roar________::543", "opendoar____::465"] +["opendoar____::359", "roar________::1443"] +["roar________::1150", "opendoar____::282"] +["roar________::620", "opendoar____::661"] +["roar________::1174", "opendoar____::286"] +["opendoar____::537", "roar________::2331", "roar________::11"] +["roar________::5464", "roar________::181", "opendoar____::36"] +["roar________::5331", "opendoar____::2681"] +["roar________::4926", "opendoar____::2411"] +["roar________::4458", "opendoar____::2422"] +["opendoar____::2652", "roar________::4309"] +["roar________::3833", "opendoar____::2172"] +["roar________::2570", "opendoar____::1755"] +["roar________::2757", "opendoar____::1822"] +["opendoar____::1784", "roar________::2285"] +["opendoar____::1904", "roar________::3124"] +["roar________::2596", "opendoar____::1754"] +["roar________::3018", "opendoar____::1880"] +["opendoar____::1382", "roar________::179"] +["opendoar____::1253", "roar________::793"] +["opendoar____::1306", "roar________::949"] +["roar________::3311", "opendoar____::2014"] +["opendoar____::1197", "roar________::792"] +["roar________::1133", "opendoar____::886"] +["roar________::1361", "opendoar____::1393"] +["roar________::45", "opendoar____::952"] +["roar________::967", "opendoar____::896"] +["opendoar____::7", "roar________::63"] +["opendoar____::306", "roar________::1337"] +["opendoar____::587", "roar________::1030"] +["roar________::1454", "opendoar____::317", "roar________::4948"] +["opendoar____::277", "roar________::1122"] +["opendoar____::268", "roar________::1049"] +["opendoar____::308", "roar________::11216"] +["roar________::1392", "opendoar____::5"] +["opendoar____::278", "roar________::1135"] +["roar________::1371", "opendoar____::324"] +["opendoar____::3055", "roar________::6362"] +["opendoar____::2788", "roar________::6240"] +["opendoar____::2499", "roar________::5300"] +["opendoar____::2408", "roar________::4980"] +["opendoar____::2434", "roar________::4874"] +["opendoar____::1882", "roar________::3022"] +["roar________::2681", "opendoar____::2698"] +["opendoar____::1689", "roar________::56"] +["opendoar____::1605", "roar________::138"] +["roar________::287", "opendoar____::1164"] +["opendoar____::388", "roar________::3331"] +["opendoar____::900", "roar________::178"] +["roar________::158", "opendoar____::30"] +["roar________::2701", "opendoar____::229"] +["roar________::186", "opendoar____::38"] +["opendoar____::2633", "roar________::6475"] +["opendoar____::1895", "roar________::3055"] +["roar________::3254", "roar________::3225", "opendoar____::1968"] +["opendoar____::934", "roar________::1504"] +["roar________::350", "opendoar____::1458"] +["roar________::1044", "opendoar____::855"] +["roar________::3806", "opendoar____::57"] +["opendoar____::2603", "roar________::6554"] +["opendoar____::2432", "roar________::4991"] +["roar________::3994", "opendoar____::2198"] +["opendoar____::1731", "roar________::2383"] +["opendoar____::1923", "roar________::3153"] +["roar________::2899", "opendoar____::2029"] +["roar________::752", "opendoar____::1328"] +["opendoar____::1201", "roar________::863"] +["roar________::851", "opendoar____::213"] +["opendoar____::354", "roar________::1440"] +["opendoar____::1634", "roar________::1229"] +["opendoar____::1906", "roar________::3114"] +["roar________::5632", "opendoar____::2514"] +["roar________::5573", "opendoar____::156"] +["roar________::2491", "opendoar____::1866"] +["opendoar____::1597", "roar________::330"] +["roar________::1393", "opendoar____::1292"] +["opendoar____::1063", "roar________::733"] +["roar________::168", "opendoar____::1070"] +["opendoar____::1258", "roar________::861"] +["opendoar____::2917", "roar________::6071"] +["roar________::5904", "opendoar____::2564"] +["opendoar____::2291", "roar________::3825"] +["opendoar____::758", "roar________::592"] +["opendoar____::147", "roar________::541"] +["roar________::4003", "roar________::13005", "opendoar____::2202"] +["roar________::2818", "opendoar____::1326"] +["roar________::1073", "opendoar____::1291"] +["roar________::704", "opendoar____::1182"] +["opendoar____::2636", "roar________::6306"] +["opendoar____::1683", "roar________::2272"] +["opendoar____::897", "roar________::1428"] +["roar________::74", "opendoar____::852"] +["opendoar____::983", "roar________::1409"] +["roar________::1411", "opendoar____::520"] +["roar________::873", "opendoar____::525"] +["roar________::3683", "opendoar____::2099"] +["roar________::3967", "opendoar____::1749"] +["roar________::1519", "opendoar____::1411"] +["roar________::1099", "opendoar____::579"] +["roar________::510", "opendoar____::467"] +["opendoar____::2494", "roar________::5512"] +["roar________::188", "opendoar____::39"] +["opendoar____::1675", "roar________::1376"] +["opendoar____::411", "roar________::204"] +["opendoar____::1925", "roar________::3151"] +["roar________::1511", "opendoar____::1730"] +["roar________::727", "opendoar____::780", "roar________::728"] +["opendoar____::2466", "roar________::5154"] +["roar________::1173", "opendoar____::285"] +["roar________::760", "opendoar____::1221"] +["opendoar____::255", "roar________::1013"] +["opendoar____::1216", "roar________::748"] +["opendoar____::1161", "roar________::680"] +["opendoar____::45", "roar________::195"] +["roar________::907", "opendoar____::1513", "roar________::5579"] +["opendoar____::1195", "roar________::1494"] +["roar________::1276", "opendoar____::735"] +["roar________::198", "opendoar____::47"] +["roar________::177", "opendoar____::405"] +["opendoar____::1999", "roar________::640"] +["roar________::935", "opendoar____::228"] +["opendoar____::291", "roar________::1427"] +["opendoar____::42", "roar________::192"] +["opendoar____::1199", "roar________::1093"] +["opendoar____::1780", "roar________::2699"] +["roar________::2697", "opendoar____::1778"] +["opendoar____::1776", "roar________::2707"] +["roar________::2695", "opendoar____::1777"] +["opendoar____::2610", "roar________::6228"] +["roar________::6474", "opendoar____::2632"] +["opendoar____::2616", "roar________::6196"] +["roar________::3809", "opendoar____::2148"] +["opendoar____::2147", "roar________::3807"] +["opendoar____::1943", "roar________::3407", "roar________::3138"] +["opendoar____::1809", "roar________::2734"] +["roar________::228", "opendoar____::2141"] +["roar________::223", "opendoar____::1462"] +["opendoar____::139", "roar________::504"] +["roar________::1040", "opendoar____::791"] +["roar________::972", "opendoar____::236"] +["opendoar____::706", "roar________::980"] +["roar________::372", "opendoar____::441"] +["opendoar____::718", "roar________::1312"] +["roar________::87", "opendoar____::402"] +["roar________::1473", "opendoar____::967"] +["roar________::563", "opendoar____::843"] +["roar________::502", "opendoar____::611"] +["opendoar____::629", "roar________::61"] +["opendoar____::707", "roar________::1439"] +["opendoar____::350", "roar________::956"] +["roar________::203", "opendoar____::52"] +["opendoar____::1184", "roar________::5513"] +["roar________::2422", "opendoar____::257"] +["roar________::1508", "opendoar____::477"] +["opendoar____::385", "roar________::219"] +["opendoar____::2358", "roar________::4549"] +["roar________::975", "opendoar____::238"] +["opendoar____::2088", "roar________::656"] +["opendoar____::2800", "roar________::6601"] +["opendoar____::2065", "roar________::3575"] +["roar________::6069", "opendoar____::2579", "roar________::6014"] +["roar________::2576", "opendoar____::1752"] +["roar________::878", "opendoar____::220"] +["opendoar____::997", "roar________::479"] +["opendoar____::853", "roar________::214"] +["opendoar____::243", "roar________::12856", "roar________::982"] +["roar________::2457", "opendoar____::1718"] +["opendoar____::237", "roar________::973"] +["opendoar____::564", "roar________::1264"] +["opendoar____::51", "roar________::202"] +["roar________::4661", "opendoar____::715"] +["roar________::2894", "opendoar____::1857"] +["opendoar____::616", "roar________::1182"] +["roar________::1187", "opendoar____::621"] +["opendoar____::619", "roar________::1181"] +["roar________::1183", "opendoar____::1576"] +["roar________::838", "opendoar____::534"] +["opendoar____::618", "roar________::1177"] +["roar________::1175", "opendoar____::617"] +["opendoar____::615", "roar________::1186"] +["roar________::1176", "opendoar____::614"] +["roar________::1178", "opendoar____::622"] +["roar________::1179", "opendoar____::623"] +["opendoar____::2704", "roar________::129"] +["roar________::194", "opendoar____::44"] +["opendoar____::1902", "roar________::2587"] +["roar________::4602", "opendoar____::2401"] +["opendoar____::380", "roar________::1158"] +["opendoar____::1169", "roar________::2758"] +["opendoar____::2100", "roar________::2580"] +["opendoar____::58", "roar________::1"] +["roar________::605", "opendoar____::177"] +["roar________::150", "opendoar____::1838"] +["roar________::5462", "opendoar____::1185"] +["roar________::1023", "opendoar____::918"] +["roar________::3130", "opendoar____::1917"] +["roar________::3612", "opendoar____::325"] +["opendoar____::2239", "roar________::4131"] +["opendoar____::836", "roar________::3079"] +["opendoar____::2249", "roar________::4137"] +["roar________::3649", "opendoar____::2084"] +["roar________::868", "opendoar____::517"] +["opendoar____::2058", "roar________::3578"] +["opendoar____::724", "roar________::4819"] +["opendoar____::25", "roar________::123"] +["roar________::5633", "opendoar____::2562"] +["roar________::974", "opendoar____::368"] +["roar________::1437", "opendoar____::352"] +["roar________::3576", "opendoar____::2052"] +["roar________::130", "opendoar____::26"] +["opendoar____::2855", "roar________::5609"] +["opendoar____::511", "roar________::791"] +["opendoar____::244", "roar________::981"] +["opendoar____::2171", "roar________::5408"] +["roar________::5106", "opendoar____::1587"] +["roar________::2398", "opendoar____::279"] +["roar________::1518", "opendoar____::1209"] +["opendoar____::604", "roar________::576"] +["roar________::225", "opendoar____::63"] +["opendoar____::158", "roar________::572"] +["roar________::3685", "roar________::10677", "opendoar____::1722"] +["roar________::206", "opendoar____::1187"] +["opendoar____::43", "roar________::193"] +["roar________::184", "opendoar____::37"] +["roar________::584", "opendoar____::1323"] +["roar________::189", "opendoar____::408"] +["roar________::172", "opendoar____::1076"] +["opendoar____::2383", "roar________::4619"] +["roar________::1450", "opendoar____::392"] +["roar________::672", "opendoar____::187"] +["opendoar____::190", "roar________::707"] +["opendoar____::580", "roar________::5985", "roar________::1478"] +["opendoar____::10104", "roar________::17829"] +["opendoar____::10255", "roar________::17561"] +["opendoar____::4692", "roar________::17503"] +["opendoar____::10189", "roar________::17256"] +["opendoar____::10149", "roar________::17194"] +["opendoar____::10117", "roar________::17080"] +["opendoar____::10107", "roar________::17066"] +["roar________::16981", "opendoar____::10093"] +["roar________::16964", "opendoar____::10088"] +["opendoar____::3346", "roar________::16785"] +["opendoar____::10029", "roar________::16721"] +["roar________::16551", "opendoar____::10012"] +["roar________::16525", "opendoar____::4570"] +["opendoar____::9971", "roar________::16522"] +["roar________::16403", "opendoar____::9946"] +["roar________::16265", "opendoar____::3791"] +["roar________::16210", "opendoar____::4817"] +["opendoar____::3569", "roar________::16232"] +["roar________::16153", "opendoar____::9711"] +["roar________::16149", "opendoar____::9712"] +["roar________::16109", "opendoar____::4716"] +["opendoar____::9677", "roar________::16087"] +["roar________::16072", "opendoar____::9988"] +["roar________::15960", "opendoar____::9378"] +["roar________::15915", "opendoar____::4448"] +["opendoar____::1828", "roar________::15792", "roar________::91"] +["roar________::15723", "opendoar____::9447"] +["opendoar____::9494", "roar________::15710"] +["opendoar____::3145", "roar________::15604"] +["opendoar____::3915", "roar________::15587"] +["roar________::15576", "opendoar____::9458"] +["roar________::15515", "roar________::3305", "opendoar____::1997"] +["opendoar____::4302", "roar________::15474"] +["roar________::15426", "opendoar____::4331"] +["roar________::15337", "opendoar____::1677"] +["roar________::15307", "opendoar____::4887"] +["opendoar____::4878", "roar________::15288"] +["roar________::15277", "opendoar____::4861"] +["roar________::15271", "opendoar____::4780"] +["roar________::15246", "opendoar____::4607"] +["opendoar____::4435", "roar________::15239"] +["opendoar____::4764", "roar________::15221"] +["opendoar____::4282", "roar________::15194"] +["opendoar____::3959", "roar________::15192"] +["opendoar____::4794", "roar________::15182"] +["opendoar____::4743", "roar________::15125"] +["roar________::15108", "opendoar____::4821"] +["opendoar____::4842", "roar________::15090"] +["roar________::15075", "opendoar____::3854"] +["opendoar____::4666", "roar________::15027"] +["roar________::14899", "opendoar____::3082"] +["opendoar____::3228", "roar________::14773"] +["opendoar____::4177", "roar________::14737"] +["opendoar____::3195", "roar________::14688"] +["roar________::14667", "opendoar____::3552"] +["roar________::14615", "opendoar____::4532"] +["roar________::14583", "opendoar____::4294"] +["roar________::14511", "opendoar____::4193"] +["opendoar____::4278", "roar________::14413"] +["opendoar____::4273", "roar________::14400"] +["opendoar____::4232", "roar________::14372"] +["opendoar____::4158", "roar________::14366"] +["opendoar____::4208", "roar________::14293"] +["opendoar____::4183", "roar________::14274"] +["roar________::14162", "opendoar____::3965"] +["opendoar____::4175", "roar________::14161"] +["opendoar____::2952", "roar________::14160"] +["roar________::14159", "opendoar____::4035"] +["roar________::14158", "opendoar____::4006"] +["opendoar____::4059", "roar________::14099"] +["opendoar____::3293", "roar________::14065"] +["roar________::13843", "opendoar____::4264"] +["roar________::13771", "roar________::6502", "opendoar____::2668"] +["roar________::13568", "opendoar____::4077"] +["roar________::13312", "opendoar____::4061"] +["roar________::13293", "opendoar____::3075"] +["roar________::9751", "opendoar____::3343", "roar________::13160"] +["roar________::13132", "opendoar____::2802"] +["roar________::13042", "opendoar____::3353"] +["roar________::13033", "opendoar____::3763"] +["opendoar____::2365", "roar________::13028"] +["opendoar____::4044", "roar________::12990"] +["roar________::12983", "opendoar____::3930"] +["roar________::12981", "opendoar____::3455"] +["roar________::12925", "opendoar____::3903"] +["roar________::12915", "opendoar____::3924"] +["roar________::12913", "opendoar____::3921"] +["opendoar____::1531", "roar________::12867"] +["opendoar____::3888", "roar________::12860"] +["roar________::12859", "opendoar____::3885"] +["roar________::12858", "opendoar____::3887"] +["roar________::12857", "opendoar____::3886"] +["opendoar____::3897", "roar________::12850"] +["roar________::12846", "opendoar____::2790"] +["opendoar____::2641", "roar________::12843"] +["roar________::12842", "opendoar____::3281"] +["roar________::12831", "opendoar____::3859"] +["roar________::12809", "opendoar____::3741"] +["opendoar____::3502", "roar________::12805"] +["opendoar____::588", "roar________::12726"] +["opendoar____::3567", "roar________::12684"] +["opendoar____::3882", "roar________::12637"] +["roar________::12603", "opendoar____::3955"] +["roar________::12600", "opendoar____::2948"] +["roar________::12592", "opendoar____::4517"] +["roar________::12558", "opendoar____::3674"] +["roar________::12512", "opendoar____::3919"] +["roar________::12503", "opendoar____::1170"] +["roar________::12496", "opendoar____::3969"] +["roar________::12475", "opendoar____::3871"] +["roar________::12433", "opendoar____::3865"] +["opendoar____::3964", "roar________::12429"] +["opendoar____::1474", "roar________::12362"] +["opendoar____::1334", "roar________::12309"] +["roar________::12288", "opendoar____::2467"] +["roar________::12280", "opendoar____::3823"] +["roar________::12221", "opendoar____::3850"] +["opendoar____::3941", "roar________::12141"] +["opendoar____::3940", "roar________::12136"] +["roar________::12026", "opendoar____::2940"] +["roar________::11991", "opendoar____::3809"] +["opendoar____::3780", "roar________::11976"] +["roar________::11967", "opendoar____::3563"] +["opendoar____::3801", "roar________::11964"] +["opendoar____::3942", "roar________::11944"] +["roar________::11934", "opendoar____::3813"] +["opendoar____::3836", "roar________::11929"] +["opendoar____::3810", "roar________::11916"] +["opendoar____::3945", "roar________::11905"] +["roar________::11890", "opendoar____::3784"] +["opendoar____::3947", "roar________::11887"] +["opendoar____::3758", "roar________::11862"] +["roar________::11840", "opendoar____::2985"] +["opendoar____::3812", "roar________::11829"] +["roar________::11733", "opendoar____::3716"] +["opendoar____::3726", "roar________::11709"] +["opendoar____::3735", "roar________::11708"] +["roar________::11639", "opendoar____::3851"] +["roar________::11622", "opendoar____::3694"] +["roar________::11588", "opendoar____::3752"] +["roar________::11573", "opendoar____::3777"] +["opendoar____::3968", "roar________::11535"] +["opendoar____::3678", "roar________::11534"] +["opendoar____::3613", "roar________::11533"] +["roar________::11501", "opendoar____::3743"] +["opendoar____::3653", "roar________::11490"] +["opendoar____::3352", "roar________::11483"] +["opendoar____::3783", "roar________::11466"] +["roar________::11464", "opendoar____::3647"] +["opendoar____::1413", "roar________::11445"] +["opendoar____::3787", "roar________::11399"] +["opendoar____::3592", "roar________::11301"] +["opendoar____::2785", "roar________::11289"] +["roar________::11277", "opendoar____::3803"] +["opendoar____::3387", "roar________::11268"] +["roar________::11256", "opendoar____::3751"] +["opendoar____::3713", "roar________::11253"] +["roar________::5755", "opendoar____::2540", "roar________::11213"] +["opendoar____::3578", "roar________::11211"] +["roar________::11210", "opendoar____::702"] +["roar________::5689", "roar________::11207", "opendoar____::2534"] +["roar________::5721", "opendoar____::2530", "roar________::11206"] +["roar________::5742", "roar________::11203", "opendoar____::2537"] +["roar________::11202", "opendoar____::3585"] +["opendoar____::2527", "roar________::5710", "roar________::11201"] +["opendoar____::2524", "roar________::5691", "roar________::11198"] +["opendoar____::3581", "roar________::11193"] +["roar________::11180", "opendoar____::3866"] +["opendoar____::3682", "roar________::11168"] +["roar________::11134", "opendoar____::3544"] +["opendoar____::3598", "roar________::11130"] +["roar________::11124", "opendoar____::3076"] +["roar________::11089", "opendoar____::3934"] +["opendoar____::3714", "roar________::11083"] +["roar________::11063", "opendoar____::3564"] +["roar________::11062", "opendoar____::3614"] +["roar________::11059", "opendoar____::3574"] +["roar________::11043", "opendoar____::3480"] +["roar________::11023", "opendoar____::1051"] +["opendoar____::3796", "roar________::11004"] +["roar________::10969", "opendoar____::3768"] +["roar________::10964", "opendoar____::3767"] +["roar________::10959", "opendoar____::1450"] +["roar________::10932", "opendoar____::3645"] +["roar________::10893", "opendoar____::3966"] +["opendoar____::3363", "roar________::10848"] +["opendoar____::3636", "roar________::10838"] +["opendoar____::3640", "roar________::10770"] +["opendoar____::3535", "roar________::10762"] +["roar________::10749", "opendoar____::3555"] +["roar________::10729", "opendoar____::3498"] +["roar________::10689", "opendoar____::3634"] +["roar________::10667", "opendoar____::3263"] +["opendoar____::3626", "roar________::10606"] +["roar________::10597", "opendoar____::3622"] +["roar________::10571", "opendoar____::3620"] +["roar________::10565", "opendoar____::3619"] +["roar________::10476", "opendoar____::3553"] +["roar________::10475", "opendoar____::3607"] +["roar________::10471", "opendoar____::3681"] +["opendoar____::334", "roar________::10463"] +["roar________::10424", "opendoar____::3285"] +["opendoar____::3492", "roar________::10417"] +["opendoar____::3933", "roar________::10380"] +["roar________::10355", "opendoar____::3531"] +["opendoar____::3497", "roar________::10337"] +["opendoar____::3591", "roar________::10313"] +["opendoar____::3855", "roar________::10287"] +["opendoar____::3481", "roar________::10225"] +["opendoar____::3477", "roar________::10202"] +["opendoar____::3476", "roar________::10199"] +["roar________::10186", "opendoar____::3468"] +["opendoar____::3536", "roar________::10159"] +["roar________::10135", "opendoar____::3467"] +["roar________::10089", "opendoar____::3709"] +["roar________::10053", "opendoar____::3400"] +["opendoar____::3590", "roar________::10039"] +["opendoar____::3433", "roar________::10038"] +["opendoar____::3453", "roar________::10019"] +["opendoar____::3408", "roar________::10001"] +["roar________::9994", "opendoar____::3496"] +["opendoar____::3399", "roar________::9988"] +["roar________::9975", "opendoar____::3547"] +["roar________::9955", "opendoar____::3392"] +["opendoar____::3165", "roar________::9947"] +["opendoar____::3380", "roar________::9902"] +["opendoar____::3537", "roar________::9891"] +["opendoar____::1436", "roar________::9872"] +["roar________::9852", "opendoar____::3366"] +["opendoar____::3256", "roar________::9841"] +["opendoar____::3311", "roar________::9789"] +["opendoar____::2885", "roar________::9777"] +["opendoar____::3331", "roar________::9725"] +["opendoar____::3397", "roar________::9704"] +["roar________::9687", "opendoar____::3309"] +["roar________::9676", "opendoar____::3718"] +["roar________::9654", "opendoar____::3288"] +["opendoar____::3264", "roar________::9646"] +["opendoar____::3267", "roar________::9643"] +["opendoar____::3268", "roar________::9642"] +["roar________::9637", "opendoar____::10818"] +["roar________::9634", "opendoar____::3210"] +["opendoar____::3209", "roar________::9616"] +["roar________::9582", "opendoar____::3153"] +["opendoar____::3295", "roar________::9564"] +["roar________::9551", "opendoar____::3287"] +["opendoar____::3336", "roar________::9513"] +["roar________::9504", "opendoar____::3218"] +["roar________::9481", "opendoar____::3273"] +["opendoar____::3412", "roar________::9464"] +["roar________::5658", "opendoar____::2521", "roar________::9359"] +["opendoar____::3251", "roar________::9348"] +["opendoar____::2221", "roar________::9343"] +["opendoar____::3257", "roar________::9341"] +["roar________::9338", "opendoar____::3827"] +["opendoar____::3255", "roar________::9312"] +["opendoar____::3117", "roar________::9311"] +["opendoar____::3237", "roar________::9169"] +["opendoar____::3236", "roar________::9161"] +["opendoar____::3137", "roar________::9158"] +["roar________::5702", "roar________::9147", "opendoar____::2531"] +["roar________::5694", "opendoar____::2532", "roar________::9141"] +["roar________::9140", "opendoar____::3244"] +["opendoar____::2529", "roar________::5715", "roar________::9139"] +["roar________::9138", "opendoar____::2538", "roar________::5744"] +["roar________::9135", "opendoar____::3241"] +["roar________::9134", "opendoar____::2810"] +["opendoar____::3234", "roar________::9125"] +["roar________::9108", "opendoar____::3223"] +["opendoar____::3229", "roar________::9105"] +["roar________::9100", "opendoar____::3226"] +["roar________::9088", "opendoar____::3222"] +["opendoar____::3169", "roar________::9083"] +["opendoar____::3213", "roar________::9061"] +["opendoar____::3292", "roar________::9056"] +["opendoar____::3377", "roar________::9020"] +["opendoar____::3250", "roar________::9004"] +["roar________::8970", "opendoar____::2932"] +["opendoar____::3227", "roar________::8969"] +["roar________::8960", "opendoar____::2856"] +["opendoar____::3185", "roar________::8958"] +["roar________::8951", "opendoar____::3184"] +["opendoar____::3445", "roar________::8933"] +["opendoar____::3963", "roar________::8920"] +["roar________::8896", "opendoar____::3158"] +["opendoar____::3173", "roar________::8880"] +["roar________::8874", "opendoar____::3876"] +["roar________::8854", "opendoar____::3740"] +["roar________::8825", "opendoar____::3600"] +["opendoar____::2315", "roar________::8800"] +["roar________::8720", "opendoar____::3172"] +["opendoar____::2670", "roar________::8718"] +["opendoar____::3298", "roar________::8666"] +["opendoar____::3100", "roar________::8636"] +["opendoar____::3486", "roar________::8612"] +["opendoar____::1568", "roar________::8587"] +["opendoar____::3200", "roar________::8585"] +["opendoar____::3103", "roar________::8547"] +["roar________::8546", "opendoar____::2781"] +["roar________::8535", "opendoar____::3090"] +["opendoar____::3106", "roar________::8522"] +["opendoar____::3149", "roar________::8483"] +["roar________::8471", "opendoar____::3764"] +["roar________::8450", "opendoar____::3788"] +["opendoar____::3259", "roar________::8435"] +["opendoar____::3155", "roar________::8427"] +["opendoar____::3261", "roar________::8413"] +["opendoar____::3007", "roar________::8402"] +["opendoar____::2714", "roar________::8395"] +["opendoar____::2839", "roar________::8387"] +["opendoar____::2754", "roar________::8384"] +["roar________::8369", "opendoar____::2831"] +["opendoar____::3050", "roar________::8365"] +["roar________::8362", "opendoar____::3546"] +["roar________::8354", "opendoar____::2611"] +["opendoar____::3069", "roar________::8332"] +["roar________::8326", "opendoar____::3070"] +["roar________::8304", "opendoar____::3306"] +["opendoar____::3952", "roar________::8297"] +["roar________::8282", "opendoar____::3060"] +["opendoar____::3160", "roar________::8259"] +["opendoar____::3049", "roar________::8256"] +["opendoar____::3391", "roar________::8239"] +["roar________::8235", "opendoar____::1775"] +["opendoar____::3033", "roar________::8213"] +["opendoar____::3085", "roar________::8210"] +["roar________::8196", "opendoar____::3040"] +["roar________::8165", "opendoar____::3037"] +["roar________::8158", "opendoar____::3019"] +["opendoar____::3026", "roar________::8126"] +["opendoar____::3135", "roar________::8113"] +["opendoar____::3012", "roar________::8043"] +["roar________::8005", "opendoar____::3154"] +["opendoar____::2996", "roar________::7973"] +["opendoar____::2999", "roar________::7966"] +["roar________::7924", "opendoar____::3814"] +["roar________::7897", "opendoar____::2994"] +["roar________::7893", "opendoar____::2986"] +["roar________::7878", "opendoar____::7878"] +["opendoar____::2929", "roar________::7841"] +["roar________::7839", "opendoar____::2967"] +["opendoar____::2953", "roar________::7832"] +["opendoar____::3020", "roar________::7776"] +["opendoar____::2992", "roar________::7775"] +["opendoar____::2723", "roar________::7770", "roar________::7148"] +["roar________::7756", "opendoar____::2658"] +["opendoar____::3749", "roar________::7725"] +["opendoar____::2965", "roar________::7722"] +["roar________::7626", "opendoar____::3126"] +["roar________::7619", "opendoar____::1557", "roar________::556"] +["roar________::7618", "opendoar____::2661"] +["roar________::7591", "opendoar____::2904"] +["roar________::7572", "opendoar____::2896"] +["opendoar____::2892", "roar________::7553"] +["roar________::7552", "opendoar____::2893"] +["roar________::7551", "opendoar____::2891"] +["opendoar____::2879", "roar________::7513"] +["opendoar____::2755", "roar________::7500"] +["roar________::7477", "opendoar____::3071"] +["opendoar____::2941", "roar________::7476"] +["roar________::7461", "opendoar____::2814"] +["roar________::7436", "opendoar____::2867"] +["opendoar____::2860", "roar________::7434"] +["roar________::7415", "opendoar____::2851"] +["roar________::7411", "opendoar____::2881"] +["opendoar____::2848", "roar________::7401"] +["roar________::7393", "opendoar____::3123"] +["roar________::7390", "opendoar____::3121"] +["opendoar____::2949", "roar________::7387"] +["opendoar____::2706", "roar________::7376"] +["roar________::7356", "opendoar____::2836"] +["opendoar____::2758", "roar________::7354"] +["opendoar____::2783", "roar________::7277"] +["opendoar____::2966", "roar________::7275"] +["roar________::7263", "opendoar____::2685"] +["roar________::7243", "opendoar____::2762"] +["opendoar____::2765", "roar________::7241"] +["roar________::7231", "opendoar____::2753"] +["roar________::7219", "opendoar____::3099"] +["opendoar____::2739", "roar________::7218"] +["opendoar____::2740", "roar________::7208"] +["roar________::7203", "opendoar____::3290"] +["opendoar____::2607", "roar________::7177"] +["roar________::7118", "opendoar____::2746"] +["roar________::7092", "opendoar____::2761"] +["opendoar____::2678", "roar________::7085"] +["roar________::7079", "opendoar____::2713"] +["opendoar____::2895", "roar________::7071"] +["opendoar____::2702", "roar________::7063"] +["roar________::7057", "opendoar____::2982"] +["roar________::7037", "opendoar____::2687"] +["roar________::7033", "opendoar____::2683"] +["roar________::7010", "opendoar____::2826"] +["opendoar____::2675", "roar________::6990"] +["roar________::6901", "opendoar____::2727"] +["opendoar____::2726", "roar________::6764"] +["opendoar____::2648", "roar________::6639"] +["roar________::6605", "opendoar____::2778"] +["opendoar____::482", "roar________::6590"] +["opendoar____::3028", "roar________::6543"] +["opendoar____::2495", "roar________::3227", "roar________::6491"] +["opendoar____::2915", "roar________::6455"] +["opendoar____::2772", "roar________::6450"] +["roar________::6388", "opendoar____::2623"] +["opendoar____::2592", "roar________::6236"] +["opendoar____::2578", "roar________::6067"] +["opendoar____::2650", "roar________::6004"] +["opendoar____::2287", "roar________::4929", "roar________::5982"] +["opendoar____::3119", "roar________::6041"] +["opendoar____::2446", "roar________::5958", "roar________::5098"] +["opendoar____::1124", "roar________::5957"] +["roar________::5947", "opendoar____::2981"] +["roar________::5887", "opendoar____::1029"] +["opendoar____::2565", "roar________::5842"] +["roar________::5812", "opendoar____::2849"] +["opendoar____::2551", "roar________::5763"] +["roar________::3112", "opendoar____::1473", "roar________::5758"] +["opendoar____::2541", "roar________::5757"] +["roar________::835", "roar________::5741", "opendoar____::210"] +["roar________::5719", "roar________::4739", "opendoar____::2406"] +["roar________::5713", "opendoar____::2523"] +["opendoar____::846", "roar________::5701"] +["opendoar____::367", "roar________::5696"] +["roar________::5631", "opendoar____::2442", "roar________::5054"] +["roar________::5629", "opendoar____::2509"] +["opendoar____::118", "roar________::5624"] +["roar________::5620", "opendoar____::1654"] +["roar________::5619", "opendoar____::1732"] +["opendoar____::697", "roar________::5555"] +["roar________::5525", "opendoar____::170"] +["roar________::3861", "roar________::5510", "opendoar____::2162"] +["opendoar____::1093", "roar________::5501"] +["opendoar____::1200", "roar________::5483"] +["roar________::5481", "opendoar____::1952", "roar________::3216"] +["opendoar____::844", "roar________::5470"] +["roar________::5455", "roar________::258", "opendoar____::1230"] +["opendoar____::1543", "roar________::460", "roar________::5444"] +["roar________::5327", "opendoar____::2791"] +["opendoar____::512", "roar________::5279"] +["opendoar____::2489", "roar________::5275"] +["roar________::5267", "opendoar____::866"] +["roar________::5259", "opendoar____::1290"] +["roar________::5260", "opendoar____::2474"] +["roar________::4955", "roar________::5183", "opendoar____::903"] +["opendoar____::1308", "roar________::5155"] +["roar________::5150", "opendoar____::2500"] +["opendoar____::2476", "roar________::5147"] +["roar________::5141", "opendoar____::2463"] +["roar________::5130", "opendoar____::2453"] +["opendoar____::2686", "roar________::5048"] +["roar________::4993", "opendoar____::860"] +["roar________::4984", "opendoar____::2276"] +["roar________::881", "roar________::4982", "opendoar____::1014"] +["roar________::1476", "opendoar____::1574", "roar________::4979"] +["roar________::4976", "opendoar____::2277"] +["roar________::4971", "opendoar____::767"] +["roar________::4966", "opendoar____::2284"] +["roar________::4963", "opendoar____::142"] +["opendoar____::2437", "roar________::4957"] +["opendoar____::2407", "roar________::4954"] +["roar________::4944", "opendoar____::2343"] +["opendoar____::2263", "roar________::4941"] +["opendoar____::785", "roar________::2423", "roar________::4927"] +["opendoar____::2430", "roar________::4841"] +["opendoar____::781", "roar________::4807"] +["opendoar____::1487", "roar________::4788"] +["opendoar____::1105", "roar________::4787"] +["roar________::4783", "opendoar____::2419"] +["roar________::4728", "opendoar____::1369"] +["roar________::930", "opendoar____::1116", "roar________::4723"] +["opendoar____::1506", "roar________::4716"] +["opendoar____::607", "roar________::4714"] +["opendoar____::1239", "roar________::4678"] +["roar________::4606", "opendoar____::2392"] +["opendoar____::1897", "roar________::4572", "roar________::3092"] +["opendoar____::2361", "roar________::4470"] +["opendoar____::2353", "roar________::4453"] +["roar________::4406", "opendoar____::2647"] +["opendoar____::2324", "roar________::4378"] +["opendoar____::2335", "roar________::4301"] +["roar________::4297", "opendoar____::2331"] +["opendoar____::2327", "roar________::4299"] +["opendoar____::2322", "roar________::4267"] +["opendoar____::2302", "roar________::4265"] +["opendoar____::2296", "roar________::4243"] +["roar________::8038", "opendoar____::1603"] +["roar________::4233", "opendoar____::2330"] +["opendoar____::2349", "roar________::4218"] +["roar________::4208", "opendoar____::2289"] +["roar________::4192", "opendoar____::2270"] +["roar________::4166", "opendoar____::2261"] +["opendoar____::2232", "roar________::4101"] +["opendoar____::2220", "roar________::4058"] +["roar________::4055", "opendoar____::2222"] +["roar________::4006", "opendoar____::2200"] +["roar________::3965", "roar________::3989", "opendoar____::1451"] +["opendoar____::1256", "roar________::3953"] +["roar________::3863", "opendoar____::2158"] +["opendoar____::2136", "roar________::3737"] +["opendoar____::2110", "roar________::3712"] +["opendoar____::2119", "roar________::3710"] +["opendoar____::2156", "roar________::3690"] +["opendoar____::2197", "roar________::3676"] +["opendoar____::2108", "roar________::3671"] +["opendoar____::2078", "roar________::3646"] +["opendoar____::2080", "roar________::3640"] +["opendoar____::2120", "roar________::3594"] +["roar________::3585", "opendoar____::1121"] +["opendoar____::2114", "roar________::3563"] +["roar________::3561", "opendoar____::2145"] +["roar________::3544", "opendoar____::2103"] +["opendoar____::2696", "roar________::3501"] +["roar________::3493", "opendoar____::2039"] +["roar________::3487", "opendoar____::1352"] +["roar________::3485", "opendoar____::1356"] +["opendoar____::2026", "roar________::3424"] +["roar________::3413", "opendoar____::1096"] +["roar________::3414", "roar________::2336", "opendoar____::1343"] +["opendoar____::2011", "roar________::3412"] +["opendoar____::1348", "roar________::3411"] +["opendoar____::1998", "roar________::3373"] +["opendoar____::2027", "roar________::3364"] +["roar________::3321", "roar________::2761", "opendoar____::1818"] +["roar________::3318", "opendoar____::2997"] +["opendoar____::1992", "roar________::3306"] +["roar________::3289", "opendoar____::1991"] +["opendoar____::1977", "roar________::3285"] +["roar________::3282", "opendoar____::1981"] +["roar________::3279", "opendoar____::1974"] +["opendoar____::1972", "roar________::3280"] +["roar________::3278", "opendoar____::1973"] +["roar________::3277", "opendoar____::1015"] +["roar________::3275", "opendoar____::1975"] +["roar________::3252", "opendoar____::1962"] +["opendoar____::1954", "roar________::3213"] +["opendoar____::1947", "roar________::3208"] +["roar________::3205", "opendoar____::1953"] +["roar________::3203", "opendoar____::1951"] +["opendoar____::1946", "roar________::3195"] +["opendoar____::1950", "roar________::3196"] +["opendoar____::1924", "roar________::3159"] +["opendoar____::1921", "roar________::3152"] +["opendoar____::1929", "roar________::3150"] +["opendoar____::677", "roar________::3121"] +["opendoar____::17", "roar________::3116"] +["roar________::3117", "opendoar____::1914"] +["roar________::3118", "opendoar____::1905"] +["opendoar____::1913", "roar________::3113"] +["opendoar____::1935", "roar________::3102"] +["opendoar____::1744", "roar________::3093", "roar________::2553"] +["roar________::3090", "opendoar____::720"] +["opendoar____::1858", "roar________::2971", "roar________::2940"] +["roar________::2861", "opendoar____::1850"] +["opendoar____::1823", "roar________::2783"] +["roar________::2766", "opendoar____::2095"] +["opendoar____::1804", "roar________::2740"] +["opendoar____::1806", "roar________::2739"] +["opendoar____::1796", "roar________::2738"] +["roar________::2737", "opendoar____::1800"] +["roar________::2736", "opendoar____::1808"] +["opendoar____::1803", "roar________::2732"] +["roar________::2731", "opendoar____::1805"] +["roar________::2729", "opendoar____::1797"] +["opendoar____::1801", "roar________::2728"] +["roar________::2727", "opendoar____::1795"] +["opendoar____::1810", "roar________::2726"] +["opendoar____::1798", "roar________::2724"] +["opendoar____::1799", "roar________::2722"] +["roar________::2709", "opendoar____::1840"] +["opendoar____::1789", "roar________::2706"] +["opendoar____::1790", "roar________::2702"] +["opendoar____::1791", "roar________::2700"] +["roar________::2696", "opendoar____::1792"] +["opendoar____::1793", "roar________::2694"] +["roar________::2660", "opendoar____::1836"] +["opendoar____::1086", "roar________::2654"] +["opendoar____::1908", "roar________::2637"] +["roar________::2606", "opendoar____::1764"] +["roar________::2555", "opendoar____::1750"] +["roar________::2550", "opendoar____::1742"] +["roar________::2552", "opendoar____::1747"] +["roar________::2493", "opendoar____::1738"] +["opendoar____::1725", "roar________::2472"] +["roar________::2446", "opendoar____::1719"] +["roar________::2442", "opendoar____::1713"] +["opendoar____::712", "roar________::2414"] +["roar________::2396", "opendoar____::1337"] +["roar________::2386", "opendoar____::280"] +["roar________::400", "opendoar____::2374"] +["opendoar____::1854", "roar________::243"] +["opendoar____::1671", "roar________::1123"] +["opendoar____::1672", "roar________::282"] +["roar________::148", "opendoar____::1665"] +["opendoar____::1727", "roar________::1339"] +["opendoar____::1656", "roar________::1289"] +["roar________::1294", "opendoar____::1319"] +["opendoar____::1626", "roar________::1368"] +["roar________::116", "opendoar____::1594"] +["roar________::388", "opendoar____::1570"] +["opendoar____::295", "roar________::1429"] +["roar________::938", "opendoar____::1577"] +["opendoar____::1561", "roar________::810"] +["roar________::1140", "opendoar____::1425"] +["roar________::1022", "opendoar____::251"] +["roar________::416", "opendoar____::1519"] +["opendoar____::948", "roar________::290"] +["roar________::940", "opendoar____::1498"] +["roar________::1324", "opendoar____::1074"] +["roar________::121", "opendoar____::1614"] +["roar________::401", "opendoar____::1087"] +["roar________::1314", "opendoar____::1496"] +["opendoar____::1360", "roar________::560"] +["opendoar____::2612", "roar________::1408"] +["roar________::1006", "opendoar____::1016"] +["opendoar____::1214", "roar________::619"] +["opendoar____::1397", "roar________::451"] +["roar________::571", "opendoar____::1372"] +["roar________::265", "opendoar____::1381"] +["roar________::866", "opendoar____::1342"] +["opendoar____::1202", "roar________::986"] +["roar________::601", "opendoar____::1270"] +["opendoar____::1208", "roar________::1143"] +["opendoar____::1529", "roar________::1213"] +["roar________::453", "opendoar____::1115"] +["roar________::1081", "opendoar____::1223"] +["opendoar____::1123", "roar________::1063"] +["opendoar____::1136", "roar________::613"] +["opendoar____::1757", "roar________::5115"] +["opendoar____::940", "roar________::693"] +["opendoar____::946", "roar________::422"] +["roar________::1195", "opendoar____::1203"] +["roar________::118", "opendoar____::731"] +["roar________::1221", "opendoar____::1137"] +["roar________::180", "opendoar____::35"] +["opendoar____::74", "roar________::275"] +["roar________::410", "opendoar____::452"] +["roar________::717", "opendoar____::192"] +["opendoar____::214", "roar________::852"] +["roar________::1208", "opendoar____::288"] +["roar________::1441", "opendoar____::356"] +["opendoar____::372", "roar________::1509"] +["roar________::113", "opendoar____::404"] +["roar________::408", "opendoar____::451"] +["opendoar____::530", "roar________::1529"] +["roar________::2287", "opendoar____::1680"] +["roar________::2325", "opendoar____::1435"] +["roar________::2363", "opendoar____::1705"] +["fairsharing_::3226", "re3data_____::r3d100010601"] +["re3data_____::r3d100010929", "fairsharing_::3022"] +["re3data_____::r3d100011537", "fairsharing_::3237"] +["re3data_____::r3d100012369", "fairsharing_::2548"] +["re3data_____::r3d100000036", "fairsharing_::2495"] +["fairsharing_::1547", "re3data_____::r3d100010528"] +["re3data_____::r3d100011296", "fairsharing_::2621"] +["fairsharing_::3157", "re3data_____::r3d100011945"] +["fairsharing_::2879", "re3data_____::r3d100013202"] +["re3data_____::r3d100000044", "fairsharing_::1998"] +["fairsharing_::3019", "re3data_____::r3d100011707"] +["re3data_____::r3d100011484", "fairsharing_::3115"] +["fairsharing_::3138", "re3data_____::r3d100011704"] +["fairsharing_::2142", "re3data_____::r3d100010890"] +["re3data_____::r3d100013478", "fairsharing_::3275"] +["re3data_____::r3d100010918", "fairsharing_::3258"] +["fairsharing_::3278", "re3data_____::r3d100010167"] +["re3data_____::r3d100012374", "fairsharing_::3311"] +["fairsharing_::2855", "re3data_____::r3d100010411"] +["fairsharing_::2934", "re3data_____::r3d100013292"] +["re3data_____::r3d100013304", "fairsharing_::2950"] +["fairsharing_::2970", "re3data_____::r3d100010623"] +["fairsharing_::3008", "re3data_____::r3d100011580"] +["fairsharing_::3033", "re3data_____::r3d100011682"] +["re3data_____::r3d100010501", "fairsharing_::3060"] +["re3data_____::r3d100013023", "fairsharing_::3086"] +["re3data_____::r3d100013440", "fairsharing_::2589"] +["re3data_____::r3d100010956", "fairsharing_::3093"] +["re3data_____::r3d100013201", "fairsharing_::3105"] +["fairsharing_::3126", "re3data_____::r3d100010843"] +["fairsharing_::3136", "re3data_____::r3d100000043"] +["fairsharing_::3089", "re3data_____::r3d100012937"] +["fairsharing_::3336", "re3data_____::r3d100013649"] +["re3data_____::r3d100013208", "fairsharing_::3576"] +["fairsharing_::3329", "re3data_____::r3d100013564"] +["fairsharing_::2163", "re3data_____::r3d100000039"] +["re3data_____::r3d100012356", "fairsharing_::2649"] +["re3data_____::r3d100010328", "fairsharing_::2656"] +["fairsharing_::1860", "re3data_____::r3d100010538"] +["fairsharing_::2546", "re3data_____::r3d100011865"] +["fairsharing_::3326", "re3data_____::r3d100012308"] +["fairsharing_::2927", "re3data_____::r3d100011164"] +["re3data_____::r3d100013028", "fairsharing_::2857"] +["fairsharing_::3096", "re3data_____::r3d100013285"] +["fairsharing_::2707", "re3data_____::r3d100011965"] +["fairsharing_::3209", "re3data_____::r3d100012653"] +["fairsharing_::2262", "re3data_____::r3d100011928"] +["re3data_____::r3d100010211", "fairsharing_::2004"] +["fairsharing_::2817", "re3data_____::r3d100011098"] +["re3data_____::r3d100013080", "fairsharing_::3234"] +["fairsharing_::2770", "re3data_____::r3d100012646"] +["re3data_____::r3d100010283", "fairsharing_::1975"] +["re3data_____::r3d100011555", "fairsharing_::2153"] +["re3data_____::r3d100010473", "fairsharing_::2966"] +["re3data_____::r3d100012222", "fairsharing_::3063"] +["re3data_____::r3d100012625", "fairsharing_::3095"] +["re3data_____::r3d100012199", "fairsharing_::2940"] +["fairsharing_::3653", "re3data_____::r3d100010785"] +["fairsharing_::2155", "re3data_____::r3d100011553"] +["fairsharing_::2498", "re3data_____::r3d100010163"] +["fairsharing_::2164", "re3data_____::r3d100010905"] +["fairsharing_::3101", "re3data_____::r3d100010511"] +["re3data_____::r3d100011198", "fairsharing_::2406"] +["fairsharing_::3309", "re3data_____::r3d100013507"] +["fairsharing_::2451", "re3data_____::r3d100010464"] +["fairsharing_::2982", "re3data_____::r3d100010908"] +["re3data_____::r3d100011100", "fairsharing_::3235"] +["re3data_____::r3d100010261", "fairsharing_::2016"] +["re3data_____::r3d100012644", "fairsharing_::2066"] +["fairsharing_::3575", "re3data_____::r3d100013658"] +["fairsharing_::2222", "re3data_____::r3d100011126"] +["fairsharing_::2758", "re3data_____::r3d100012058"] +["re3data_____::r3d100011894", "fairsharing_::2315"] +["fairsharing_::1850", "re3data_____::r3d100010527"] +["fairsharing_::2863", "re3data_____::r3d100010413"] +["fairsharing_::3113", "re3data_____::r3d100013276"] +["fairsharing_::2509", "re3data_____::r3d100010146"] +["fairsharing_::1973", "re3data_____::r3d100010649"] +["re3data_____::r3d100010375", "fairsharing_::2667"] +["re3data_____::r3d100011298", "fairsharing_::2169"] +["re3data_____::r3d100012689", "fairsharing_::2300"] +["re3data_____::r3d100012156", "fairsharing_::3178"] +["fairsharing_::2403", "re3data_____::r3d100011200"] +["fairsharing_::2184", "re3data_____::r3d100011560"] +["fairsharing_::3229", "re3data_____::r3d100011311"] +["fairsharing_::3154", "re3data_____::r3d100011122"] +["fairsharing_::3192", "re3data_____::r3d100011012"] +["fairsharing_::2971", "re3data_____::r3d100010635"] +["re3data_____::r3d100012494", "fairsharing_::3025"] +["fairsharing_::3206", "re3data_____::r3d100011575"] +["fairsharing_::3012", "re3data_____::r3d100011691"] +["fairsharing_::2803", "re3data_____::r3d100011675"] +["re3data_____::r3d100010260", "fairsharing_::2883"] +["fairsharing_::3207", "re3data_____::r3d100013432"] +["re3data_____::r3d100012754", "fairsharing_::1890"] +["fairsharing_::2719", "re3data_____::r3d100012823"] +["re3data_____::r3d100010222", "fairsharing_::1845"] +["fairsharing_::3183", "re3data_____::r3d100013602"] +["fairsharing_::2805", "re3data_____::r3d100012190"] +["re3data_____::r3d100013428", "fairsharing_::2905"] +["re3data_____::r3d100011973", "fairsharing_::3021"] +["fairsharing_::2985", "re3data_____::r3d100010510"] +["fairsharing_::1867", "re3data_____::r3d100010228"] +["fairsharing_::2425", "re3data_____::r3d100010273"] +["re3data_____::r3d100011242", "fairsharing_::1865"] +["re3data_____::r3d100012344", "fairsharing_::2290"] +["fairsharing_::3048", "re3data_____::r3d100012431"] +["re3data_____::r3d100012471", "fairsharing_::2620"] +["re3data_____::r3d100012224", "fairsharing_::2684"] +["fairsharing_::2675", "re3data_____::r3d100010138"] +["re3data_____::r3d100013559", "fairsharing_::3313"] +["fairsharing_::3153", "re3data_____::r3d100010909"] +["re3data_____::r3d100010557", "fairsharing_::1793"] +["re3data_____::r3d100011741", "fairsharing_::3174"] +["re3data_____::r3d100010057", "fairsharing_::2108"] +["fairsharing_::2481", "re3data_____::r3d100012752"] +["fairsharing_::3020", "re3data_____::r3d100011679"] +["re3data_____::r3d100000034", "fairsharing_::2999"] +["fairsharing_::3088", "re3data_____::r3d100012841"] +["fairsharing_::2851", "re3data_____::r3d100013154"] +["re3data_____::r3d100010257", "fairsharing_::2485"] +["fairsharing_::1931", "re3data_____::r3d100010548"] +["re3data_____::r3d100013413", "fairsharing_::3220"] +["re3data_____::r3d100012278", "fairsharing_::3211"] +["re3data_____::r3d100012265", "fairsharing_::1878"] +["re3data_____::r3d100012354", "fairsharing_::1750"] +["re3data_____::r3d100012554", "fairsharing_::3158"] +["re3data_____::r3d100011840", "fairsharing_::2251"] +["re3data_____::r3d100013165", "fairsharing_::3092"] +["fairsharing_::3118", "re3data_____::r3d100010454"] +["re3data_____::r3d100010985", "fairsharing_::1929"] +["fairsharing_::2506", "re3data_____::r3d100011038"] +["fairsharing_::2511", "re3data_____::r3d100012701"] +["re3data_____::r3d100012418", "fairsharing_::3046"] +["re3data_____::r3d100011543", "fairsharing_::3103"] +["re3data_____::r3d100010215", "fairsharing_::2549"] +["re3data_____::r3d100011869", "fairsharing_::3172"] +["re3data_____::r3d100011326", "fairsharing_::3213"] +["fairsharing_::2252", "re3data_____::r3d100010259"] +["fairsharing_::2046", "re3data_____::r3d100010551"] +["re3data_____::r3d100013260", "fairsharing_::3218"] +["fairsharing_::2926", "re3data_____::r3d100013300"] +["re3data_____::r3d100011699", "fairsharing_::3230"] +["re3data_____::r3d100010144", "fairsharing_::3120"] +["re3data_____::r3d100011552", "fairsharing_::3000"] +["re3data_____::r3d100011793", "fairsharing_::2800"] +["fairsharing_::2813", "re3data_____::r3d100011048"] +["re3data_____::r3d100011137", "fairsharing_::2181"] +["fairsharing_::2513", "re3data_____::r3d100011948"] +["re3data_____::r3d100010735", "fairsharing_::3233"] +["re3data_____::r3d100012909", "fairsharing_::3084"] +["fairsharing_::3130", "re3data_____::r3d100010520"] +["fairsharing_::3232", "re3data_____::r3d100012622"] +["re3data_____::r3d100010143", "fairsharing_::3135"] +["re3data_____::r3d100012368", "fairsharing_::2325"] +["re3data_____::r3d100011843", "fairsharing_::3212"] +["re3data_____::r3d100010068", "fairsharing_::3068"] +["re3data_____::r3d100010483", "fairsharing_::3075"] +["re3data_____::r3d100012269", "fairsharing_::2554"] +["re3data_____::r3d100012586", "fairsharing_::2650"] +["re3data_____::r3d100011659", "fairsharing_::3036"] +["re3data_____::r3d100012335", "fairsharing_::3065"] +["re3data_____::r3d100010405", "fairsharing_::3094"] +["fairsharing_::3267", "re3data_____::r3d100011135"] +["fairsharing_::3147", "re3data_____::r3d100012574"] +["fairsharing_::2541", "re3data_____::r3d100010418"] +["re3data_____::r3d100012837", "fairsharing_::2025"] +["re3data_____::r3d100013193", "fairsharing_::2942"] +["fairsharing_::3107", "re3data_____::r3d100011723"] +["fairsharing_::3302", "re3data_____::r3d100012553"] +["fairsharing_::1953", "re3data_____::r3d100010276"] +["fairsharing_::2936", "re3data_____::r3d100013313"] +["fairsharing_::3300", "re3data_____::r3d100013668"] +["fairsharing_::2811", "re3data_____::r3d100012490"] +["fairsharing_::3059", "re3data_____::r3d100010505"] +["fairsharing_::2880", "re3data_____::r3d100010245"] +["re3data_____::r3d100012693", "fairsharing_::2503"] +["fairsharing_::3231", "re3data_____::r3d100012621"] +["re3data_____::r3d100012041", "fairsharing_::2804"] +["re3data_____::r3d100010917", "fairsharing_::3162"] +["fairsharing_::2362", "re3data_____::r3d100011049"] +["re3data_____::r3d100013272", "fairsharing_::3243"] +["re3data_____::r3d100010376", "fairsharing_::3014"] +["re3data_____::r3d100010747", "fairsharing_::2145"] +["fairsharing_::2935", "re3data_____::r3d100013294"] +["fairsharing_::2698", "re3data_____::r3d100010801"] +["re3data_____::r3d100011177", "fairsharing_::3007"] +["fairsharing_::3141", "re3data_____::r3d100010996"] +["fairsharing_::3052", "re3data_____::r3d100010109"] +["fairsharing_::3066", "re3data_____::r3d100012336"] +["re3data_____::r3d100013311", "fairsharing_::2932"] +["re3data_____::r3d100010226", "fairsharing_::2974"] +["re3data_____::r3d100010728", "fairsharing_::2976"] +["fairsharing_::2502", "re3data_____::r3d100010230"] +["re3data_____::r3d100010942", "fairsharing_::2993"] +["fairsharing_::2954", "re3data_____::r3d100010196"] +["fairsharing_::2996", "re3data_____::r3d100011030"] +["re3data_____::r3d100012593", "fairsharing_::2563"] +["fairsharing_::3123", "re3data_____::r3d100010210"] +["fairsharing_::3031", "re3data_____::r3d100011131"] +["fairsharing_::3079", "re3data_____::r3d100012557"] +["fairsharing_::2759", "re3data_____::r3d100012388"] +["fairsharing_::1641", "re3data_____::r3d100011330"] +["re3data_____::r3d100011958", "fairsharing_::3062"] +["fairsharing_::3133", "re3data_____::r3d100011957"] +["re3data_____::r3d100010177", "fairsharing_::3069"] +["re3data_____::r3d100013199", "fairsharing_::2876"] +["re3data_____::r3d100013307", "fairsharing_::2928"] +["fairsharing_::1589", "re3data_____::r3d100010626"] +["re3data_____::r3d100011904", "fairsharing_::2448"] +["fairsharing_::1738", "re3data_____::r3d100010741"] +["fairsharing_::2743", "re3data_____::r3d100013187"] +["re3data_____::r3d100010803", "fairsharing_::1853"] +["fairsharing_::2437", "re3data_____::r3d100010655"] +["re3data_____::r3d100010648", "fairsharing_::1969"] +["re3data_____::r3d100010574", "fairsharing_::1961"] +["fairsharing_::2265", "re3data_____::r3d100013331"] +["re3data_____::r3d100013302", "fairsharing_::2271"] +["fairsharing_::2057", "re3data_____::r3d100010555"] +["re3data_____::r3d100012858", "fairsharing_::2671"] +["fairsharing_::2195", "re3data_____::r3d100011876"] +["fairsharing_::2209", "re3data_____::r3d100011601"] +["re3data_____::r3d100010469", "fairsharing_::2257"] +["fairsharing_::3284", "re3data_____::r3d100013433"] +["fairsharing_::2404", "re3data_____::r3d100011199"] +["fairsharing_::2386", "re3data_____::r3d100011197"] +["fairsharing_::2402", "re3data_____::r3d100011195"] +["fairsharing_::2405", "re3data_____::r3d100011196"] +["re3data_____::r3d100012835", "fairsharing_::3104"] +["re3data_____::r3d100010914", "fairsharing_::2496"] +["re3data_____::r3d100010660", "fairsharing_::3259"] +["re3data_____::r3d100013591", "fairsharing_::3339"] +["re3data_____::r3d100010159", "fairsharing_::3024"] +["fairsharing_::3081", "re3data_____::r3d100012682"] +["re3data_____::r3d100013429", "fairsharing_::3117"] +["re3data_____::r3d100013503", "fairsharing_::3299"] +["re3data_____::r3d100011554", "fairsharing_::2152"] +["re3data_____::r3d100010901", "fairsharing_::1868"] +["fairsharing_::2507", "re3data_____::r3d100012627"] +["fairsharing_::3321", "re3data_____::r3d100013648"] +["fairsharing_::2601", "re3data_____::r3d100011147"] +["re3data_____::r3d100000037", "fairsharing_::2435"] +["re3data_____::r3d100011104", "fairsharing_::2207"] +["re3data_____::r3d100010834", "fairsharing_::2010"] +["re3data_____::r3d100010255", "fairsharing_::2454"] +["fairsharing_::2019", "re3data_____::r3d100010106"] +["fairsharing_::1978", "re3data_____::r3d100010775"] +["re3data_____::r3d100013358", "fairsharing_::2968"] +["re3data_____::r3d100010377", "fairsharing_::2200"] +["re3data_____::r3d100012481", "fairsharing_::2214"] +["re3data_____::r3d100013312", "fairsharing_::2961"] +["re3data_____::r3d100000038", "fairsharing_::2494"] +["fairsharing_::1730", "re3data_____::r3d100012862"] +["fairsharing_::1885", "re3data_____::r3d100011479"] +["re3data_____::r3d100012002", "fairsharing_::2885"] +["fairsharing_::1680", "re3data_____::r3d100011294"] +["re3data_____::r3d100013298", "fairsharing_::2917"] +["re3data_____::r3d100012380", "fairsharing_::3308"] +["fairsharing_::1927", "re3data_____::r3d100010889"] +["re3data_____::r3d100011558", "fairsharing_::1726"] +["fairsharing_::3003", "re3data_____::r3d100011469"] +["re3data_____::r3d100012629", "fairsharing_::2082"] +["re3data_____::r3d100011527", "fairsharing_::1888"] +["fairsharing_::1700", "re3data_____::r3d100012733"] +["re3data_____::r3d100010085", "fairsharing_::3198"] +["re3data_____::r3d100013265", "fairsharing_::3303"] +["re3data_____::r3d100011316", "fairsharing_::2110"] +["re3data_____::r3d100010762", "fairsharing_::3167"] +["fairsharing_::2773", "re3data_____::r3d100013650"] +["fairsharing_::3004", "re3data_____::r3d100011045"] +["fairsharing_::3010", "re3data_____::r3d100013339"] +["fairsharing_::1803", "re3data_____::r3d100012136"] +["re3data_____::r3d100010653", "fairsharing_::1967"] +["re3data_____::r3d100010692", "fairsharing_::2128"] +["fairsharing_::1882", "re3data_____::r3d100011569"] +["re3data_____::r3d100011313", "fairsharing_::3035"] +["re3data_____::r3d100010227", "fairsharing_::3125"] +["re3data_____::r3d100011241", "fairsharing_::2889"] +["re3data_____::r3d100010789", "fairsharing_::1846"] +["re3data_____::r3d100012723", "fairsharing_::1653"] +["fairsharing_::2991", "re3data_____::r3d100010519"] +["fairsharing_::2095", "re3data_____::r3d100012457"] +["fairsharing_::1707", "re3data_____::r3d100011089"] +["re3data_____::r3d100012461", "fairsharing_::1884"] +["fairsharing_::1691", "re3data_____::r3d100012195"] +["fairsharing_::3001", "re3data_____::r3d100010076"] +["fairsharing_::3064", "re3data_____::r3d100012141"] +["fairsharing_::2151", "re3data_____::r3d100012842"] +["re3data_____::r3d100011033", "fairsharing_::1964"] +["re3data_____::r3d100013470", "fairsharing_::2856"] +["re3data_____::r3d100010650", "fairsharing_::1983"] +["re3data_____::r3d100013647", "fairsharing_::2531"] +["fairsharing_::3071", "re3data_____::r3d100012971"] +["fairsharing_::3050", "re3data_____::r3d100010530"] +["re3data_____::r3d100011037", "fairsharing_::2378"] +["re3data_____::r3d100012169", "fairsharing_::1620"] +["re3data_____::r3d100012783", "fairsharing_::2047"] +["re3data_____::r3d100010218", "fairsharing_::1572"] +["re3data_____::r3d100012381", "fairsharing_::2267"] +["fairsharing_::2342", "re3data_____::r3d100011637"] +["re3data_____::r3d100010815", "fairsharing_::2595"] +["re3data_____::r3d100010424", "fairsharing_::1699"] +["re3data_____::r3d100013542", "fairsharing_::3055"] +["fairsharing_::2113", "re3data_____::r3d100010675"] +["re3data_____::r3d100010779", "fairsharing_::1981"] +["re3data_____::r3d100013308", "fairsharing_::1933"] +["fairsharing_::2818", "re3data_____::r3d100010338"] +["fairsharing_::1823", "re3data_____::r3d100010550"] +["re3data_____::r3d100013295", "fairsharing_::2679"] +["fairsharing_::1936", "re3data_____::r3d100012247"] +["re3data_____::r3d100011222", "fairsharing_::1932"] +["fairsharing_::1866", "re3data_____::r3d100010861"] +["re3data_____::r3d100013316", "fairsharing_::1698"] +["re3data_____::r3d100012516", "fairsharing_::2216"] +["re3data_____::r3d100012092", "fairsharing_::1802"] +["re3data_____::r3d100010205", "fairsharing_::2042"] +["re3data_____::r3d100011373", "fairsharing_::2374"] +["fairsharing_::1807", "re3data_____::r3d100011301"] +["re3data_____::r3d100011087", "fairsharing_::1574"] +["re3data_____::r3d100010197", "fairsharing_::1796"] +["fairsharing_::3197", "re3data_____::r3d100010072"] +["re3data_____::r3d100011369", "fairsharing_::3002"] +["fairsharing_::2097", "re3data_____::r3d100010565"] +["re3data_____::r3d100010891", "fairsharing_::1639"] +["re3data_____::r3d100010857", "fairsharing_::2750"] +["re3data_____::r3d100012894", "fairsharing_::3222"] +["fairsharing_::2566", "re3data_____::r3d100011761"] +["re3data_____::r3d100011796", "fairsharing_::3043"] +["fairsharing_::1716", "re3data_____::r3d100011530"] +["re3data_____::r3d100012912", "fairsharing_::2781"] +["fairsharing_::3047", "re3data_____::r3d100010596"] +["fairsharing_::2223", "re3data_____::r3d100010685"] +["fairsharing_::3085", "re3data_____::r3d100013018"] +["fairsharing_::2348", "re3data_____::r3d100013293"] +["re3data_____::r3d100011046", "fairsharing_::1729"] +["re3data_____::r3d100010591", "fairsharing_::1582"] +["fairsharing_::3239", "re3data_____::r3d100010608"] +["re3data_____::r3d100012321", "fairsharing_::1834"] +["fairsharing_::3028", "re3data_____::r3d100011011"] +["fairsharing_::1655", "re3data_____::r3d100012724"] +["fairsharing_::2839", "re3data_____::r3d100011272"] +["re3data_____::r3d100012517", "fairsharing_::1745"] +["fairsharing_::1913", "re3data_____::r3d100010248"] +["re3data_____::r3d100010311", "fairsharing_::3139"] +["re3data_____::r3d100010050", "fairsharing_::2433"] +["fairsharing_::2259", "re3data_____::r3d100012603"] +["re3data_____::r3d100010312", "fairsharing_::3177"] +["re3data_____::r3d100012920", "fairsharing_::3187"] +["re3data_____::r3d100011713", "fairsharing_::2849"] +["re3data_____::r3d100013148", "fairsharing_::2833"] +["fairsharing_::2992", "re3data_____::r3d100010532"] +["fairsharing_::1880", "re3data_____::r3d100012458"] +["fairsharing_::1883", "re3data_____::r3d100012266"] +["re3data_____::r3d100011306", "fairsharing_::2094"] +["re3data_____::r3d100013207", "fairsharing_::3152"] +["re3data_____::r3d100010480", "fairsharing_::3042"] +["re3data_____::r3d100010526", "fairsharing_::3132"] +["re3data_____::r3d100010539", "fairsharing_::1561"] +["re3data_____::r3d100010223", "fairsharing_::1588"] +["fairsharing_::1661", "re3data_____::r3d100010808"] +["fairsharing_::2419", "re3data_____::r3d100011124"] +["re3data_____::r3d100010566", "fairsharing_::2100"] +["fairsharing_::1644", "re3data_____::r3d100010419"] +["re3data_____::r3d100010617", "fairsharing_::1816"] +["fairsharing_::1881", "re3data_____::r3d100012459"] +["re3data_____::r3d100010676", "fairsharing_::2053"] +["fairsharing_::1930", "re3data_____::r3d100010978"] +["re3data_____::r3d100010107", "fairsharing_::1944"] +["fairsharing_::1954", "re3data_____::r3d100012731"] +["fairsharing_::2909", "re3data_____::r3d100012214"] +["re3data_____::r3d100011323", "fairsharing_::2669"] +["fairsharing_::2052", "re3data_____::r3d100012086"] +["fairsharing_::2399", "re3data_____::r3d100013314"] +["fairsharing_::2663", "re3data_____::r3d100010346"] +["re3data_____::r3d100010229", "fairsharing_::2888"] +["re3data_____::r3d100012702", "fairsharing_::2346"] +["re3data_____::r3d100012018", "fairsharing_::2371"] +["re3data_____::r3d100013547", "fairsharing_::2389"] +["re3data_____::r3d100000045", "fairsharing_::2414"] +["fairsharing_::2539", "re3data_____::r3d100010525"] +["re3data_____::r3d100012078", "fairsharing_::1841"] +["re3data_____::r3d100011905", "fairsharing_::2449"] +["fairsharing_::1609", "re3data_____::r3d100010414"] +["fairsharing_::2253", "re3data_____::r3d100011861"] +["fairsharing_::2146", "re3data_____::r3d100013301"] +["re3data_____::r3d100012728", "fairsharing_::1706"] +["fairsharing_::2941", "re3data_____::r3d100013305"] +["re3data_____::r3d100011728", "fairsharing_::2947"] +["fairsharing_::1875", "re3data_____::r3d100010604"] +["re3data_____::r3d100010421", "fairsharing_::2106"] +["re3data_____::r3d100012715", "fairsharing_::2242"] +["fairsharing_::3320", "re3data_____::r3d100013646"] +["fairsharing_::3015", "re3data_____::r3d100010882"] +["re3data_____::r3d100011141", "fairsharing_::2809"] +["fairsharing_::2512", "re3data_____::r3d100000012"] +["fairsharing_::1934", "re3data_____::r3d100010846"] +["re3data_____::r3d100010185", "fairsharing_::1649"] +["re3data_____::r3d100010417", "fairsharing_::1951"] +["re3data_____::r3d100013263", "fairsharing_::2254"] +["re3data_____::r3d100011910", "fairsharing_::2662"] +["re3data_____::r3d100012384", "fairsharing_::2672"] +["re3data_____::r3d100012352", "fairsharing_::2594"] +["re3data_____::r3d100013408", "fairsharing_::2518"] +["re3data_____::r3d100012351", "fairsharing_::2439"] +["re3data_____::r3d100013325", "fairsharing_::2975"] +["re3data_____::r3d100010563", "fairsharing_::2098"] +["re3data_____::r3d100010490", "fairsharing_::2997"] +["re3data_____::r3d100010327", "fairsharing_::2044"] +["fairsharing_::2977", "re3data_____::r3d100010636"] +["re3data_____::r3d100010552", "fairsharing_::1616"] +["re3data_____::r3d100010814", "fairsharing_::2156"] +["re3data_____::r3d100010493", "fairsharing_::2597"] +["fairsharing_::2581", "re3data_____::r3d100012355"] +["re3data_____::r3d100011570", "fairsharing_::2189"] +["re3data_____::r3d100011478", "fairsharing_::1683"] +["fairsharing_::2748", "re3data_____::r3d100012917"] +["fairsharing_::3580", "re3data_____::r3d100011915"] +["fairsharing_::2573", "re3data_____::r3d100012668"] +["re3data_____::r3d100010859", "fairsharing_::1120"] +["fairsharing_::2068", "re3data_____::r3d100013715"] +["opendoar____::7771", "re3data_____::r3d100011189"] +["re3data_____::r3d100013399", "roar________::13934", "opendoar____::3896"] +["re3data_____::r3d100013519", "opendoar____::4732"] +["opendoar____::4872", "re3data_____::r3d100013525"] +["re3data_____::r3d100013645", "opendoar____::10204"] +["roar________::1045", "opendoar____::835"] +["opendoar____::1277", "roar________::132"] +["opendoar____::185", "roar________::668"] +["roar________::4729", "opendoar____::709"] +["roar________::1199", "opendoar____::644"] +["roar________::1380", "opendoar____::1366"] +["roar________::891", "opendoar____::1321"] +["opendoar____::1367", "roar________::889"] +["opendoar____::1617", "roar________::2524", "roar________::884"] +["roar________::348", "opendoar____::1459"] +["opendoar____::509", "roar________::750"] +["opendoar____::1262", "roar________::1018"] +["opendoar____::150", "roar________::5519"] +["roar________::536", "opendoar____::544"] +["roar________::1387", "opendoar____::1012"] +["opendoar____::1235", "roar________::820", "roar________::2417"] +["roar________::617", "opendoar____::483"] +["roar________::307", "opendoar____::592"] +["roar________::343", "opendoar____::98"] +["opendoar____::2606", "roar________::6412"] +["roar________::326", "opendoar____::1152"] +["opendoar____::194", "roar________::729"] +["opendoar____::626", "roar________::4721"] +["roar________::1479", "opendoar____::1456"] +["roar________::4385", "opendoar____::2309"] +["roar________::3268", "opendoar____::2269"] +["roar________::1404", "opendoar____::574"] +["roar________::342", "opendoar____::93"] +["opendoar____::2310", "roar________::4376"] +["opendoar____::1600", "roar________::303"] +["roar________::464", "opendoar____::1876"] +["roar________::344", "opendoar____::438"] +["opendoar____::1358", "roar________::970"] +["roar________::314", "opendoar____::89"] +["opendoar____::928", "roar________::1302"] +["roar________::1108", "opendoar____::547"] +["roar________::183", "opendoar____::933"] +["opendoar____::91", "roar________::335"] +["opendoar____::676", "roar________::324"] +["roar________::3713", "opendoar____::2107"] +["roar________::332", "opendoar____::96"] +["roar________::526", "opendoar____::468"] +["opendoar____::1168", "roar________::403"] +["opendoar____::2445", "roar________::5030"] +["opendoar____::2414", "roar________::3873"] +["roar________::911", "opendoar____::984"] +["opendoar____::9491", "roar________::3629"] +["opendoar____::433", "roar________::336"] +["roar________::3253", "opendoar____::1960"] +["roar________::1105", "opendoar____::2045"] +["opendoar____::2354", "roar________::4199"] +["opendoar____::1607", "roar________::1067"] +["roar________::612", "opendoar____::880"] +["roar________::1167", "opendoar____::1548"] +["opendoar____::1827", "roar________::2808"] +["roar________::4124", "opendoar____::2248"] +["roar________::725", "opendoar____::1508"] +["opendoar____::2031", "roar________::3513"] +["opendoar____::473", "roar________::551"] +["opendoar____::2062", "roar________::3607"] +["roar________::6884", "opendoar____::2766"] +["opendoar____::2160", "roar________::3841"] +["roar________::5187", "opendoar____::906"] +["opendoar____::2155", "roar________::2959"] +["opendoar____::85", "roar________::327"] +["opendoar____::3276", "roar________::26"] +["roar________::2821", "opendoar____::1831"] +["roar________::3053", "opendoar____::1886"] +["opendoar____::542", "roar________::1104"] +["roar________::5448", "roar________::1008", "opendoar____::631"] +["roar________::2283", "opendoar____::1616"] +["opendoar____::1620", "roar________::1069"] +["opendoar____::2085", "roar________::5456", "roar________::3641"] +["roar________::3630", "opendoar____::2091"] +["opendoar____::1703", "roar________::1563"] +["opendoar____::1852", "roar________::2870"] +["roar________::325", "opendoar____::1598"] +["roar________::4985", "roar________::4531", "opendoar____::2360"] +["opendoar____::66", "roar________::4638"] +["opendoar____::2074", "roar________::3644"] +["opendoar____::1710", "roar________::2379"] +["opendoar____::2215", "roar________::4029"] +["roar________::2837", "opendoar____::699"] +["roar________::119", "opendoar____::24"] +["opendoar____::2638", "roar________::6589"] +["opendoar____::484", "roar________::627"] +["roar________::1458", "opendoar____::1554"] +["roar________::743", "opendoar____::1167"] +["opendoar____::2568", "roar________::5959"] +["roar________::1228", "opendoar____::1832"] +["opendoar____::11", "roar________::67"] +["opendoar____::1477", "roar________::1107"] +["roar________::3653", "opendoar____::2134"] +["opendoar____::70", "roar________::266"] +["roar________::33", "opendoar____::957"] +["roar________::4913", "opendoar____::2577"] +["opendoar____::1247", "roar________::95"] +["roar________::351", "opendoar____::1153"] +["opendoar____::1478", "roar________::88"] +["roar________::2565", "opendoar____::2104"] +["opendoar____::2007", "roar________::3374"] +["opendoar____::1507", "roar________::1307"] +["opendoar____::1733", "roar________::1564"] +["opendoar____::1955", "roar________::3194"] +["roar________::3642", "opendoar____::2075"] +["roar________::58", "opendoar____::2371"] +["roar________::862", "opendoar____::217"] +["roar________::5870", "opendoar____::2563"] +["roar________::328", "opendoar____::431"] +["roar________::1144", "opendoar____::1315"] +["roar________::5533", "opendoar____::839"] +["roar________::6882", "opendoar____::2806"] +["roar________::985", "opendoar____::1318"] +["opendoar____::2372", "roar________::5574", "roar________::4578"] +["opendoar____::1244", "roar________::232"] +["opendoar____::1844", "roar________::514"] +["roar________::3924", "roar________::5700", "opendoar____::2176"] +["opendoar____::2439", "roar________::5441"] +["opendoar____::2265", "roar________::4171"] +["opendoar____::1423", "roar________::1194"] +["opendoar____::1205", "roar________::125"] +["roar________::933", "opendoar____::226"] +["opendoar____::2590", "roar________::6083"] +["opendoar____::270", "roar________::1051"] +["opendoar____::923", "roar________::924"] +["opendoar____::1611", "roar________::137"] +["opendoar____::913", "roar________::910"] +["opendoar____::203", "roar________::800"] +["roar________::4122", "opendoar____::2237"] +["opendoar____::2285", "roar________::4207"] +["opendoar____::1988", "roar________::3302"] +["opendoar____::2214", "roar________::4028"] +["roar________::6914", "opendoar____::2660"] +["opendoar____::2900", "roar________::6878"] +["opendoar____::2770", "roar________::6838"] +["opendoar____::2591", "roar________::6829"] +["roar________::6707", "opendoar____::2878"] +["opendoar____::2694", "roar________::6555"] +["opendoar____::2653", "roar________::6536"] +["opendoar____::2773", "roar________::6452"] +["opendoar____::2764", "roar________::6363"] +["roar________::6256", "opendoar____::2597"] +["roar________::6232", "opendoar____::2782"] +["roar________::6062", "opendoar____::2584"] +["roar________::6058", "opendoar____::2576"] +["roar________::5943", "opendoar____::2566"] +["opendoar____::2539", "roar________::5891", "roar________::11212"] +["opendoar____::2559", "roar________::5850"] +["opendoar____::3362", "roar________::5835"] +["roar________::5791", "opendoar____::2554"] +["roar________::5774", "opendoar____::2921"] +["opendoar____::1509", "roar________::126", "roar________::5711"] +["roar________::5685", "opendoar____::2382", "roar________::4624"] +["roar________::5606", "opendoar____::2555"] +["opendoar____::1622", "roar________::5577"] +["opendoar____::1266", "roar________::5545"] +["opendoar____::1444", "roar________::5542"] +["opendoar____::415", "roar________::5521"] +["opendoar____::651", "roar________::5468"] +["roar________::4751", "roar________::5452", "opendoar____::2423"] +["roar________::5402", "opendoar____::1484"] +["roar________::5272", "opendoar____::2508"] +["roar________::5269", "opendoar____::1465"] +["roar________::5219", "opendoar____::1283"] +["roar________::5158", "opendoar____::2464"] +["roar________::5068", "opendoar____::2454"] +["roar________::5006", "opendoar____::1539"] +["opendoar____::2286", "roar________::4997"] +["opendoar____::1092", "roar________::4936"] +["roar________::4815", "opendoar____::2425"] +["roar________::4694", "opendoar____::2404"] +["opendoar____::2421", "roar________::4784"] +["opendoar____::2376", "roar________::4588"] +["roar________::4591", "opendoar____::2375"] +["roar________::5074", "opendoar____::2409"] +["roar________::3952", "opendoar____::2181"] +["roar________::3745", "opendoar____::2894"] +["opendoar____::2206", "roar________::4023"] +["opendoar____::2207", "roar________::4025"] +["roar________::4071", "opendoar____::2229"] +["opendoar____::2025", "roar________::3456"] +["roar________::3515", "opendoar____::2042"] +["roar________::4272", "opendoar____::2316"] +["opendoar____::2016", "roar________::3466"] +["opendoar____::2017", "roar________::3470"] +["roar________::4380", "opendoar____::2307"] +["roar________::3190", "opendoar____::1963"] +["roar________::12789", "opendoar____::1939", "roar________::15586", "roar________::3258"] +["opendoar____::907", "roar________::3467"] +["opendoar____::1969", "roar________::3242"] +["roar________::3359", "opendoar____::2005"] +["roar________::3726", "opendoar____::2122"] +["opendoar____::2299", "roar________::4388"] +["roar________::3471", "opendoar____::2020"] +["roar________::3260", "opendoar____::1961"] +["opendoar____::1862", "roar________::2927", "roar________::3756"] +["opendoar____::2036", "roar________::3232"] +["roar________::2806", "opendoar____::1833"] +["roar________::2917", "opendoar____::1856"] +["opendoar____::2304", "roar________::4383"] +["opendoar____::1817", "roar________::2760"] +["roar________::2599", "opendoar____::1766"] +["roar________::4384", "opendoar____::2308"] +["roar________::2622", "opendoar____::1767"] +["opendoar____::1646", "roar________::4640"] +["opendoar____::2008", "roar________::3408"] +["opendoar____::1989", "roar________::3324"] +["roar________::3468", "opendoar____::2018"] +["opendoar____::2113", "roar________::2678"] +["opendoar____::942", "roar________::2465"] +["roar________::2466", "opendoar____::1716"] +["opendoar____::1664", "roar________::2471"] +["opendoar____::1859", "roar________::2844"] +["roar________::3469", "opendoar____::2019"] +["roar________::3862", "opendoar____::2165"] +["opendoar____::1918", "roar________::3146"] +["opendoar____::1835", "roar________::2822"] +["opendoar____::2792", "roar________::518"] +["opendoar____::1883", "roar________::520"] +["roar________::616", "opendoar____::1593"] +["roar________::550", "opendoar____::1633"] +["opendoar____::1788", "roar________::2703"] +["roar________::3648", "opendoar____::2081"] +["roar________::2464", "opendoar____::1714"] +["opendoar____::2204", "roar________::4031"] +["opendoar____::1894", "roar________::3060"] +["opendoar____::292", "roar________::2317"] +["opendoar____::2399", "roar________::1128"] +["opendoar____::1475", "roar________::379"] +["roar________::653", "opendoar____::1564"] +["roar________::968", "opendoar____::234"] +["roar________::1315", "opendoar____::1524"] +["roar________::1375", "opendoar____::1686"] +["roar________::3283", "opendoar____::1976"] +["opendoar____::1457", "roar________::4639"] +["roar________::1089", "opendoar____::1502"] +["opendoar____::1504", "roar________::1098"] +["roar________::1333", "opendoar____::1389"] +["roar________::3506", "opendoar____::2043"] +["roar________::1313", "opendoar____::1374"] +["opendoar____::2348", "roar________::4465"] +["roar________::610", "opendoar____::1426"] +["roar________::135", "opendoar____::3974"] +["roar________::173", "opendoar____::1460"] +["roar________::424", "opendoar____::1309"] +["roar________::2621", "opendoar____::1768"] +["roar________::1094", "opendoar____::1630"] +["roar________::3643", "opendoar____::2083"] +["opendoar____::1264", "roar________::446"] +["roar________::145", "opendoar____::1371"] +["opendoar____::1251", "roar________::916"] +["roar________::931", "opendoar____::1448"] +["roar________::1300", "opendoar____::1058"] +["opendoar____::1054", "roar________::578"] +["opendoar____::1821", "roar________::2786"] +["roar________::997", "opendoar____::1162"] +["opendoar____::1163", "roar________::998"] +["roar________::2393", "opendoar____::1709"] +["roar________::755", "opendoar____::1285"] +["roar________::3969", "opendoar____::1022"] +["opendoar____::1194", "roar________::1033"] +["roar________::1092", "opendoar____::1853"] +["roar________::805", "opendoar____::1428"] +["opendoar____::989", "roar________::1102"] +["opendoar____::1625", "roar________::1169"] +["opendoar____::1002", "roar________::920"] +["roar________::1320", "opendoar____::969"] +["roar________::726", "opendoar____::974"] +["roar________::762", "opendoar____::1062"] +["opendoar____::1189", "roar________::3787"] +["roar________::2326", "opendoar____::1481"] +["roar________::2946", "opendoar____::1864"] +["roar________::4990", "opendoar____::1119"] +["roar________::1011", "opendoar____::759"] +["opendoar____::4125", "roar________::1369"] +["opendoar____::2266", "roar________::4170"] +["opendoar____::905", "roar________::790"] +["opendoar____::1841", "roar________::2830"] +["opendoar____::871", "roar________::989"] +["roar________::1498", "opendoar____::117"] +["opendoar____::508", "roar________::731"] +["opendoar____::456", "roar________::1460"] +["roar________::1249", "opendoar____::293"] +["opendoar____::850", "roar________::1242"] +["roar________::702", "opendoar____::595"] +["opendoar____::779", "roar________::1055"] +["opendoar____::1814", "roar________::2742"] +["opendoar____::648", "roar________::1126"] +["roar________::1146", "opendoar____::1246"] +["roar________::641", "opendoar____::174"] +["opendoar____::531", "roar________::1017"] +["roar________::1444", "opendoar____::304"] +["opendoar____::575", "roar________::1417"] +["roar________::837", "opendoar____::211"] +["opendoar____::951", "roar________::645"] +["roar________::1147", "opendoar____::274", "roar________::13727"] +["roar________::2338", "opendoar____::1031"] +["roar________::6313", "opendoar____::2750"] +["roar________::747", "opendoar____::964", "roar________::5681"] +["opendoar____::2475", "roar________::5213"] +["roar________::5002", "opendoar____::2260"] +["opendoar____::2340", "roar________::4951"] +["roar________::4928", "opendoar____::2334"] +["opendoar____::2391", "roar________::4219"] +["opendoar____::296", "roar________::3840"] +["opendoar____::2180", "roar________::3951"] +["opendoar____::2178", "roar________::3899"] +["opendoar____::2205", "roar________::4033"] +["roar________::4387", "opendoar____::2301"] +["opendoar____::2346", "roar________::4467"] +["roar________::3366", "opendoar____::2030"] +["roar________::2530", "opendoar____::1756"] +["roar________::3375", "roar________::2854", "opendoar____::1842"] +["roar________::1468", "opendoar____::1503"] +["roar________::40", "opendoar____::1294"] +["roar________::2413", "opendoar____::1269"] +["opendoar____::1275", "roar________::583"] +["opendoar____::991", "roar________::1420"] +["roar________::1523", "opendoar____::936"] +["roar________::264", "opendoar____::1098"] +["opendoar____::1057", "roar________::1436"] +["opendoar____::926", "roar________::3320"] +["roar________::4087", "opendoar____::642"] +["opendoar____::487", "roar________::2407"] +["opendoar____::307", "roar________::1353"] +["opendoar____::2575", "roar________::5645"] +["roar________::5562", "opendoar____::1690"] +["opendoar____::2292", "roar________::4988"] +["opendoar____::2386", "roar________::4669"] +["roar________::3482", "opendoar____::1403"] +["opendoar____::2001", "roar________::3352"] +["roar________::3307", "opendoar____::2022"] +["roar________::4002", "opendoar____::2209", "roar________::4026"] +["roar________::2993", "opendoar____::1870"] +["opendoar____::1511", "roar________::220", "roar________::4686"] +["roar________::1462", "opendoar____::309"] +["roar________::6936", "opendoar____::2924"] +["roar________::6425", "opendoar____::2793"] +["roar________::6031", "opendoar____::2573"] +["opendoar____::2504", "roar________::5415"] +["opendoar____::2427", "roar________::4835"] +["opendoar____::2086", "roar________::3665"] +["roar________::3051", "opendoar____::1893"] +["roar________::5022", "opendoar____::1595"] +["opendoar____::1834", "roar________::2360"] +["roar________::876", "opendoar____::1055"] +["opendoar____::1263", "roar________::447"] +["opendoar____::1100", "roar________::1461"] +["opendoar____::245", "roar________::987"] +["roar________::3323", "opendoar____::1987"] +["opendoar____::362", "roar________::1424"] +["roar________::5450", "opendoar____::945"] +["roar________::4105", "opendoar____::2271"] +["opendoar____::1619", "roar________::4945", "roar________::1088", "roar________::5529"] +["opendoar____::2268", "roar________::4156"] +["opendoar____::1407", "roar________::1524"] +["roar________::658", "opendoar____::1032"] +["roar________::5952", "roar________::5697", "opendoar____::2522"] +["opendoar____::1676", "roar________::990"] +["opendoar____::885", "roar________::1547"] +["roar________::1525", "opendoar____::373"] +["opendoar____::2502", "roar________::5576"] +["roar________::522", "opendoar____::1280"] +["opendoar____::916", "roar________::781"] +["opendoar____::2130", "roar________::3773"] +["opendoar____::2121", "roar________::3754"] +["opendoar____::2179", "roar________::3929"] +["roar________::786", "opendoar____::201"] +["roar________::2405", "opendoar____::1707"] +["opendoar____::1517", "roar________::698"] +["roar________::497", "opendoar____::136"] +["roar________::1254", "opendoar____::1573"] +["roar________::4921", "opendoar____::2257"] +["roar________::3007", "opendoar____::1176"] +["opendoar____::2105", "roar________::3684"] +["roar________::1546", "opendoar____::1368"] +["roar________::5773", "opendoar____::1224"] +["opendoar____::1629", "roar________::1257"] +["roar________::965", "opendoar____::300"] +["roar________::1258", "opendoar____::583"] +["opendoar____::504", "roar________::705"] +["opendoar____::407", "roar________::185"] +["opendoar____::447", "roar________::389"] +["roar________::142", "opendoar____::1653"] +["opendoar____::1516", "roar________::1533"] +["roar________::3975", "opendoar____::2185"] +["roar________::6469", "opendoar____::2780"] +["opendoar____::845", "roar________::5500"] +["roar________::3442", "opendoar____::2142"] +["roar________::2412", "opendoar____::1538"] +["opendoar____::737", "roar________::1188"] +["opendoar____::654", "roar________::983"] +["roar________::977", "opendoar____::240"] +["roar________::634", "opendoar____::171"] +["opendoar____::344", "roar________::1415"] +["opendoar____::1471", "roar________::1278"] +["roar________::6900", "opendoar____::2980"] +["opendoar____::1847", "roar________::2850"] +["opendoar____::2488", "roar________::5478"] +["roar________::360", "opendoar____::1157"] +["roar________::4757", "opendoar____::2405"] +["opendoar____::1390", "roar________::1184"] +["opendoar____::2688", "roar________::6891"] +["roar________::6969", "opendoar____::2784"] +["roar________::4753", "opendoar____::2417"] +["roar________::3979", "opendoar____::2192"] +["opendoar____::1398", "roar________::604"] +["opendoar____::80", "roar________::603"] +["roar________::5840", "opendoar____::2557", "roar________::5915"] +["roar________::5752", "opendoar____::2542"] +["roar________::5718", "roar________::4121", "opendoar____::2245"] +["roar________::4130", "roar________::5692", "opendoar____::2243"] +["roar________::5690", "opendoar____::2094", "roar________::3662"] +["roar________::5657", "opendoar____::2520"] +["opendoar____::2250", "roar________::5621", "roar________::4132"] +["roar________::5585", "opendoar____::2227", "roar________::4089"] +["roar________::3609", "opendoar____::2068", "roar________::5582"] +["roar________::5583", "opendoar____::2159", "roar________::3839"] +["roar________::4027", "roar________::5565", "opendoar____::2212"] +["opendoar____::2044", "roar________::3534", "roar________::5556"] +["roar________::3664", "opendoar____::2093", "roar________::5549"] +["opendoar____::2318", "roar________::4271", "roar________::5503"] +["roar________::5475", "roar________::4021", "opendoar____::2210"] +["roar________::5256", "opendoar____::2254", "roar________::4128"] +["opendoar____::2462", "roar________::5131"] +["roar________::5132", "opendoar____::2455"] +["roar________::4165", "opendoar____::2264"] +["roar________::4123", "opendoar____::2244"] +["opendoar____::2183", "roar________::3966"] +["opendoar____::2096", "roar________::3666"] +["roar________::3580", "opendoar____::2051"] +["roar________::3552", "opendoar____::2048"] +["opendoar____::2050", "roar________::3583"] +["opendoar____::2057", "roar________::3581"] +["roar________::3608", "opendoar____::2061"] +["roar________::4135", "opendoar____::2240"] +["roar________::3611", "opendoar____::2059"] +["roar________::1053", "opendoar____::273"] +["opendoar____::2060", "roar________::3606"] +["opendoar____::2056", "roar________::3582"] +["opendoar____::2242", "roar________::4129"] +["opendoar____::2213", "roar________::4034"] +["opendoar____::2545", "roar________::5779", "roar________::5746"] +["roar________::5570", "roar________::4126", "opendoar____::2246"] +["roar________::4134", "opendoar____::2251"] +["opendoar____::2054", "roar________::3577"] +["roar________::3211", "opendoar____::1956"] +["roar________::5460", "opendoar____::2461", "roar________::5124"] +["roar________::3391", "opendoar____::3948"] +["opendoar____::2118", "roar________::3707", "roar________::5447"] +["roar________::5438", "roar________::4621", "opendoar____::2397"] +["roar________::4960", "opendoar____::2420"] +["roar________::4956", "opendoar____::2320"] +["roar________::1091", "opendoar____::1621"] +["opendoar____::2169", "roar________::3893"] +["opendoar____::1166", "roar________::459"] +["roar________::5430", "opendoar____::988"] +["roar________::97", "opendoar____::1210"] +["opendoar____::505", "roar________::720"] +["opendoar____::502", "roar________::1250"] +["opendoar____::10323", "roar________::17822"] +["opendoar____::10298", "roar________::17678"] +["opendoar____::10312", "roar________::17602"] +["roar________::17456", "opendoar____::2157"] +["roar________::17297", "opendoar____::10100"] +["opendoar____::10099", "roar________::17295"] +["opendoar____::10152", "roar________::17190"] +["roar________::17067", "opendoar____::10108"] +["roar________::17025", "opendoar____::3431"] +["opendoar____::10094", "roar________::16982"] +["roar________::16967", "opendoar____::10051"] +["opendoar____::3954", "roar________::16693"] +["opendoar____::4243", "roar________::16469"] +["roar________::16376", "opendoar____::4375"] +["opendoar____::9752", "roar________::16367"] +["roar________::16291", "roar________::6967", "opendoar____::1046"] +["roar________::15264", "opendoar____::4727", "roar________::16178"] +["opendoar____::9623", "roar________::15991", "roar________::16089"] +["opendoar____::9493", "roar________::16086"] +["roar________::16085", "opendoar____::9514"] +["opendoar____::3105", "roar________::16037"] +["roar________::15684", "opendoar____::3224"] +["roar________::15616", "opendoar____::3297"] +["roar________::15611", "opendoar____::4883"] +["roar________::15541", "opendoar____::9428"] +["roar________::15462", "opendoar____::4325"] +["roar________::15460", "opendoar____::9445"] +["roar________::15423", "opendoar____::4397"] +["opendoar____::4763", "roar________::15405"] +["opendoar____::4039", "roar________::15375"] +["opendoar____::9391", "roar________::15351"] +["roar________::15327", "opendoar____::4875"] +["roar________::15287", "opendoar____::4877"] +["opendoar____::4870", "roar________::15286"] +["roar________::15283", "opendoar____::4847"] +["opendoar____::4778", "roar________::15266"] +["opendoar____::3635", "roar________::15141"] +["opendoar____::2991", "roar________::9892", "roar________::15140"] +["roar________::15101", "opendoar____::979"] +["opendoar____::4783", "roar________::15073"] +["roar________::15035", "opendoar____::4693"] +["roar________::15025", "opendoar____::4667"] +["opendoar____::1493", "roar________::14955"] +["roar________::14935", "opendoar____::4712"] +["opendoar____::4609", "roar________::14772"] +["opendoar____::4560", "roar________::14763"] +["roar________::14719", "opendoar____::3570"] +["roar________::14678", "opendoar____::4486"] +["roar________::14674", "opendoar____::4366"] +["roar________::14659", "opendoar____::3595"] +["roar________::14650", "opendoar____::4567"] +["roar________::14356", "roar________::14616", "opendoar____::4518"] +["opendoar____::4446", "roar________::14558"] +["roar________::14546", "opendoar____::4423"] +["opendoar____::4303", "roar________::14428"] +["opendoar____::4409", "roar________::14382"] +["roar________::14288", "opendoar____::4207"] +["roar________::14272", "opendoar____::4174"] +["roar________::13747", "opendoar____::2816"] +["opendoar____::3815", "roar________::13715"] +["opendoar____::3122", "roar________::13646"] +["opendoar____::1034", "roar________::13539"] +["opendoar____::4066", "roar________::13507"] +["roar________::5014", "opendoar____::2443", "roar________::13496"] +["roar________::13331", "opendoar____::3883"] +["roar________::13329", "opendoar____::3917"] +["roar________::13274", "opendoar____::4038"] +["roar________::13271", "opendoar____::4068"] +["opendoar____::3361", "roar________::13194"] +["opendoar____::3989", "roar________::13180"] +["roar________::13171", "opendoar____::3672"] +["roar________::13100", "opendoar____::4036"] +["opendoar____::3844", "roar________::13024"] +["roar________::13022", "opendoar____::3891"] +["roar________::12969", "opendoar____::3395"] +["opendoar____::3913", "roar________::12937"] +["roar________::12932", "opendoar____::3922"] +["roar________::12898", "opendoar____::3889"] +["opendoar____::4058", "roar________::12893"] +["roar________::12841", "opendoar____::3905"] +["opendoar____::3895", "roar________::12796"] +["opendoar____::3992", "roar________::12762"] +["opendoar____::3774", "roar________::12577"] +["roar________::12556", "opendoar____::3971"] +["roar________::12551", "opendoar____::1647"] +["roar________::12539", "opendoar____::3976"] +["opendoar____::3975", "roar________::12537"] +["roar________::12515", "opendoar____::3973"] +["opendoar____::3868", "roar________::12479"] +["roar________::12374", "opendoar____::3869"] +["opendoar____::3863", "roar________::12363"] +["opendoar____::3475", "roar________::12348"] +["roar________::12298", "opendoar____::3852"] +["opendoar____::3856", "roar________::12247"] +["opendoar____::3950", "roar________::12204"] +["opendoar____::3949", "roar________::12200"] +["roar________::12193", "opendoar____::3860"] +["opendoar____::3845", "roar________::12165"] +["roar________::12118", "opendoar____::3782"] +["opendoar____::3802", "roar________::11956"] +["roar________::11942", "opendoar____::3811"] +["opendoar____::3833", "roar________::11928"] +["roar________::11913", "opendoar____::3962"] +["opendoar____::3761", "roar________::11907"] +["opendoar____::3421", "roar________::11889"] +["opendoar____::3786", "roar________::11827"] +["opendoar____::3549", "roar________::11816"] +["opendoar____::3918", "roar________::11781"] +["roar________::11780", "opendoar____::3745"] +["roar________::11737", "opendoar____::3557"] +["opendoar____::3806", "roar________::11706"] +["opendoar____::3760", "roar________::11577"] +["roar________::11541", "opendoar____::4761"] +["roar________::11531", "opendoar____::3967"] +["roar________::11529", "opendoar____::2990", "roar________::8059"] +["opendoar____::3742", "roar________::11513"] +["roar________::11488", "opendoar____::3727"] +["roar________::11393", "opendoar____::3775"] +["opendoar____::3773", "roar________::11381"] +["roar________::11376", "opendoar____::3690"] +["roar________::11352", "opendoar____::3738"] +["opendoar____::3608", "roar________::11320"] +["opendoar____::3748", "roar________::11312"] +["roar________::11296", "opendoar____::3837"] +["roar________::11291", "opendoar____::3772"] +["opendoar____::3916", "roar________::11287"] +["roar________::11276", "opendoar____::3609"] +["roar________::11194", "opendoar____::3582"] +["roar________::11191", "opendoar____::3580"] +["opendoar____::3624", "roar________::11177"] +["opendoar____::3834", "roar________::11160"] +["roar________::11157", "opendoar____::3835"] +["roar________::11128", "opendoar____::3566"] +["roar________::11058", "opendoar____::3769"] +["roar________::11026", "opendoar____::3644"] +["opendoar____::3766", "roar________::10901"] +["opendoar____::3434", "roar________::10866"] +["roar________::10806", "opendoar____::3317"] +["roar________::10802", "opendoar____::3623"] +["opendoar____::3632", "roar________::10775"] +["opendoar____::3508", "roar________::10688"] +["opendoar____::3506", "roar________::10665"] +["opendoar____::2968", "roar________::10659", "roar________::7908"] +["roar________::10645", "opendoar____::3505"] +["roar________::10561", "opendoar____::3616"] +["opendoar____::3365", "roar________::10522"] +["opendoar____::2901", "roar________::10505"] +["opendoar____::2752", "roar________::10485"] +["roar________::10456", "opendoar____::3501"] +["opendoar____::3606", "roar________::10453"] +["opendoar____::3605", "roar________::10438"] +["opendoar____::3577", "roar________::10379"] +["opendoar____::3490", "roar________::10366"] +["opendoar____::3426", "roar________::10365"] +["opendoar____::3597", "roar________::10352"] +["opendoar____::3725", "roar________::10339"] +["opendoar____::3493", "roar________::10277"] +["opendoar____::3554", "roar________::10253"] +["opendoar____::3488", "roar________::10226"] +["opendoar____::3132", "roar________::10211"] +["opendoar____::3483", "roar________::10208"] +["roar________::10119", "opendoar____::3383"] +["roar________::10037", "opendoar____::3425"] +["roar________::10035", "opendoar____::3419"] +["opendoar____::3422", "roar________::10033"] +["opendoar____::3631", "roar________::10029"] +["opendoar____::3420", "roar________::10020"] +["roar________::10018", "opendoar____::3418"] +["roar________::10013", "opendoar____::3410"] +["opendoar____::3370", "roar________::9980"] +["roar________::9921", "opendoar____::3394"] +["roar________::9904", "opendoar____::3381"] +["opendoar____::3382", "roar________::9901"] +["opendoar____::3384", "roar________::9896"] +["opendoar____::10089", "roar________::9888"] +["roar________::9884", "opendoar____::3302"] +["roar________::9870", "opendoar____::3375"] +["opendoar____::3367", "roar________::9850"] +["roar________::9849", "opendoar____::3360"] +["opendoar____::3355", "roar________::9805"] +["roar________::9761", "opendoar____::3442"] +["opendoar____::3344", "roar________::9747"] +["roar________::9726", "opendoar____::3330"] +["opendoar____::3323", "roar________::9717"] +["opendoar____::3430", "roar________::9697"] +["opendoar____::3266", "roar________::9645"] +["opendoar____::3272", "roar________::9631"] +["roar________::9529", "opendoar____::3283"] +["roar________::9526", "opendoar____::3369"] +["roar________::9524", "opendoar____::3279"] +["roar________::9509", "opendoar____::3275"] +["roar________::9419", "opendoar____::3439"] +["roar________::9416", "opendoar____::3269"] +["opendoar____::3260", "roar________::9397"] +["opendoar____::2803", "roar________::9330"] +["opendoar____::717", "roar________::9144"] +["opendoar____::714", "roar________::9136"] +["roar________::9129", "opendoar____::3235"] +["opendoar____::3156", "roar________::9124"] +["opendoar____::3359", "roar________::9123"] +["opendoar____::3207", "roar________::9039"] +["roar________::9038", "opendoar____::3206"] +["roar________::9037", "opendoar____::3204"] +["roar________::9034", "opendoar____::3201"] +["opendoar____::3197", "roar________::9031"] +["opendoar____::3196", "roar________::9027"] +["opendoar____::3325", "roar________::9002"] +["roar________::9001", "opendoar____::3167"] +["roar________::8997", "opendoar____::3089"] +["opendoar____::3314", "roar________::8981"] +["roar________::8912", "opendoar____::3182"] +["opendoar____::2596", "roar________::8898"] +["roar________::8907", "opendoar____::3048"] +["opendoar____::3324", "roar________::8841"] +["opendoar____::3278", "roar________::8777"] +["roar________::8768", "opendoar____::3133"] +["roar________::8766", "opendoar____::3134"] +["opendoar____::3144", "roar________::8758"] +["opendoar____::3115", "roar________::8673"] +["roar________::8840", "opendoar____::3109"] +["roar________::8651", "opendoar____::3584"] +["opendoar____::3108", "roar________::8645"] +["opendoar____::3097", "roar________::8620"] +["roar________::8619", "opendoar____::3098"] +["opendoar____::3926", "roar________::8536"] +["opendoar____::3083", "roar________::8498"] +["opendoar____::3081", "roar________::8491"] +["roar________::8463", "opendoar____::2835"] +["roar________::8458", "opendoar____::3243"] +["roar________::8446", "opendoar____::2834"] +["opendoar____::3765", "roar________::8439"] +["roar________::8359", "opendoar____::3136"] +["roar________::8294", "opendoar____::3063"] +["roar________::8270", "opendoar____::3044"] +["roar________::8224", "opendoar____::3046"] +["opendoar____::3432", "roar________::8223"] +["roar________::8221", "opendoar____::2979"] +["roar________::8189", "opendoar____::3080"] +["opendoar____::3036", "roar________::8168"] +["opendoar____::3035", "roar________::8162"] +["roar________::8151", "opendoar____::3079"] +["opendoar____::3039", "roar________::8109"] +["roar________::8102", "opendoar____::3572"] +["opendoar____::3018", "roar________::8072"] +["opendoar____::3013", "roar________::7962", "roar________::8058"] +["roar________::8055", "opendoar____::3017"] +["opendoar____::3011", "roar________::8050"] +["opendoar____::2919", "roar________::8044"] +["opendoar____::3005", "roar________::7992"] +["opendoar____::2998", "roar________::7942"] +["roar________::7929", "opendoar____::3009"] +["roar________::7902", "roar________::5216", "opendoar____::2468"] +["roar________::7863", "opendoar____::2989"] +["roar________::7818", "opendoar____::2808"] +["opendoar____::2931", "roar________::7755"] +["roar________::7749", "opendoar____::2942"] +["opendoar____::2946", "roar________::7724"] +["roar________::7695", "opendoar____::2852"] +["roar________::7586", "opendoar____::3277"] +["opendoar____::2884", "roar________::7575"] +["opendoar____::2890", "roar________::7550"] +["roar________::7541", "opendoar____::2865"] +["opendoar____::2903", "roar________::7540"] +["opendoar____::2868", "roar________::7465"] +["opendoar____::2871", "roar________::7452"] +["opendoar____::2850", "roar________::7388"] +["opendoar____::3212", "roar________::7375"] +["roar________::7369", "opendoar____::2736"] +["roar________::7355", "opendoar____::3024"] +["opendoar____::2811", "roar________::7330"] +["roar________::7325", "opendoar____::2797"] +["opendoar____::2795", "roar________::7310"] +["roar________::7296", "opendoar____::2787"] +["opendoar____::2748", "roar________::7262"] +["opendoar____::2682", "roar________::7256"] +["opendoar____::2945", "roar________::7245"] +["opendoar____::4063", "roar________::7230"] +["roar________::7144", "opendoar____::2716"] +["opendoar____::2700", "roar________::7125"] +["roar________::7117", "opendoar____::2744"] +["roar________::7097", "opendoar____::2872"] +["opendoar____::2928", "roar________::7076"] +["opendoar____::2916", "roar________::6949"] +["roar________::6940", "opendoar____::2672"] +["roar________::6899", "opendoar____::2703"] +["opendoar____::2819", "roar________::6868"] +["opendoar____::2828", "roar________::6855"] +["roar________::6699", "opendoar____::2809"] +["opendoar____::2644", "roar________::6640"] +["opendoar____::2580", "roar________::6068"] +["opendoar____::2572", "roar________::6032"] +["opendoar____::1556", "roar________::5989", "roar________::883"] +["opendoar____::2570", "roar________::5964"] +["opendoar____::2569", "roar________::5956"] +["roar________::5890", "opendoar____::2560"] +["opendoar____::2175", "roar________::5884", "roar________::3878"] +["opendoar____::3720", "roar________::5856"] +["opendoar____::2549", "roar________::5796"] +["opendoar____::2552", "roar________::5794"] +["roar________::5769", "opendoar____::2518"] +["roar________::5754", "opendoar____::2535"] +["opendoar____::2547", "roar________::5753"] +["roar________::5751", "opendoar____::2543"] +["opendoar____::2544", "roar________::5745"] +["roar________::5712", "opendoar____::461"] +["roar________::5714", "opendoar____::802"] +["roar________::5708", "opendoar____::769"] +["opendoar____::2525", "roar________::5706"] +["opendoar____::2037", "roar________::3510", "roar________::5684"] +["roar________::5680", "opendoar____::775"] +["roar________::5656", "opendoar____::2516"] +["roar________::5646", "opendoar____::3818"] +["opendoar____::2512", "roar________::5626"] +["opendoar____::2513", "roar________::5627"] +["opendoar____::2510", "roar________::5625"] +["opendoar____::1811", "roar________::5622", "roar________::2733"] +["roar________::5581", "opendoar____::1332"] +["opendoar____::2501", "roar________::5575"] +["roar________::5566", "opendoar____::1728", "roar________::2506"] +["opendoar____::2337", "roar________::5563", "roar________::4317"] +["opendoar____::1996", "roar________::5551", "roar________::3417"] +["roar________::3514", "roar________::5547", "opendoar____::2038"] +["opendoar____::1783", "roar________::2672", "roar________::5526"] +["roar________::5523", "opendoar____::2506"] +["opendoar____::2485", "roar________::5496"] +["opendoar____::2484", "roar________::5494"] +["roar________::5490", "opendoar____::1434"] +["opendoar____::993", "roar________::5476"] +["opendoar____::1851", "roar________::2872", "roar________::5473"] +["opendoar____::1495", "roar________::5469"] +["opendoar____::1245", "roar________::5459"] +["roar________::5457", "opendoar____::1324"] +["roar________::5451", "opendoar____::1494"] +["opendoar____::1884", "roar________::5443", "roar________::3032"] +["roar________::5431", "opendoar____::1265"] +["opendoar____::765", "roar________::5427"] +["opendoar____::2507", "roar________::5424"] +["opendoar____::2069", "roar________::3605", "roar________::5420"] +["opendoar____::827", "roar________::5404"] +["opendoar____::2498", "roar________::5332"] +["roar________::5281", "opendoar____::861"] +["opendoar____::649", "roar________::5278"] +["opendoar____::2480", "roar________::5253"] +["opendoar____::2481", "roar________::5254"] +["opendoar____::1666", "roar________::5209"] +["roar________::5182", "opendoar____::2470"] +["opendoar____::2458", "roar________::5129"] +["roar________::5125", "opendoar____::2456"] +["opendoar____::2457", "roar________::5126"] +["opendoar____::2451", "roar________::5075"] +["opendoar____::2450", "roar________::5073"] +["roar________::5007", "opendoar____::1347"] +["opendoar____::2416", "roar________::5005"] +["opendoar____::2279", "roar________::5000"] +["opendoar____::2283", "roar________::4994"] +["roar________::4347", "opendoar____::2368", "roar________::4981"] +["opendoar____::1109", "roar________::4974"] +["roar________::4964", "opendoar____::1585"] +["opendoar____::2428", "roar________::4965"] +["opendoar____::2352", "roar________::4961"] +["roar________::4953", "opendoar____::2288"] +["opendoar____::2410", "roar________::4949"] +["opendoar____::2394", "roar________::4950"] +["roar________::4942", "opendoar____::2280"] +["roar________::4938", "opendoar____::865"] +["opendoar____::996", "roar________::4939"] +["roar________::4937", "opendoar____::2273"] +["roar________::4935", "opendoar____::710"] +["opendoar____::2313", "roar________::4933"] +["opendoar____::2333", "roar________::4931"] +["roar________::4930", "opendoar____::2389"] +["opendoar____::2278", "roar________::4923"] +["roar________::4834", "opendoar____::2426"] +["roar________::4782", "opendoar____::2413"] +["roar________::4754", "opendoar____::2418"] +["roar________::4749", "opendoar____::757"] +["roar________::4722", "opendoar____::2396"] +["roar________::4720", "opendoar____::176"] +["roar________::4718", "opendoar____::1467"] +["roar________::4715", "opendoar____::821"] +["roar________::4682", "opendoar____::2390"] +["opendoar____::1662", "roar________::4681"] +["roar________::4674", "opendoar____::416"] +["roar________::4662", "opendoar____::2558"] +["opendoar____::1250", "roar________::4642"] +["roar________::4615", "opendoar____::2380"] +["roar________::4550", "opendoar____::2362"] +["roar________::4547", "opendoar____::2357"] +["roar________::4548", "opendoar____::2355"] +["opendoar____::2347", "roar________::4466"] +["roar________::4464", "opendoar____::2350"] +["roar________::4463", "opendoar____::2351"] +["roar________::4446", "opendoar____::2345"] +["opendoar____::2338", "roar________::4346"] +["opendoar____::2329", "roar________::4296"] +["roar________::4293", "opendoar____::2281"] +["opendoar____::2332", "roar________::4294"] +["roar________::4269", "opendoar____::2317"] +["roar________::4264", "opendoar____::2319"] +["roar________::4242", "opendoar____::1370"] +["roar________::4209", "opendoar____::2282"] +["roar________::4191", "opendoar____::2275"] +["roar________::4136", "opendoar____::2241"] +["roar________::4125", "opendoar____::2255"] +["roar________::4120", "opendoar____::2236"] +["roar________::4059", "opendoar____::2218"] +["opendoar____::2217", "roar________::4056"] +["opendoar____::2208", "roar________::4032"] +["roar________::4005", "opendoar____::2201"] +["opendoar____::2196", "roar________::3995"] +["roar________::3991", "opendoar____::2195"] +["roar________::3978", "opendoar____::2189"] +["opendoar____::2191", "roar________::3977"] +["opendoar____::2226", "roar________::3974"] +["roar________::3891", "opendoar____::2168"] +["roar________::3865", "opendoar____::2163"] +["opendoar____::2164", "roar________::3864"] +["opendoar____::2161", "roar________::3860"] +["roar________::3844", "opendoar____::2154"] +["roar________::3823", "opendoar____::2182"] +["opendoar____::2150", "roar________::3808"] +["opendoar____::2144", "roar________::3805"] +["roar________::3803", "opendoar____::2146"] +["roar________::3802", "opendoar____::2143"] +["opendoar____::2177", "roar________::3795"] +["roar________::3788", "opendoar____::2140"] +["roar________::3784", "opendoar____::2174"] +["roar________::3771", "opendoar____::2131"] +["opendoar____::2126", "roar________::3770"] +["opendoar____::2129", "roar________::3768"] +["opendoar____::1227", "roar________::3753"] +["roar________::3703", "opendoar____::2097"] +["roar________::3692", "opendoar____::2117"] +["roar________::3686", "opendoar____::2102"] +["opendoar____::1351", "roar________::3604"] +["opendoar____::2071", "roar________::3590"] +["opendoar____::2049", "roar________::3572"] +["roar________::3559", "opendoar____::2138"] +["opendoar____::2041", "roar________::3511"] +["roar________::3509", "opendoar____::2032"] +["roar________::3497", "opendoar____::2173"] +["opendoar____::1995", "roar________::3483"] +["roar________::3472", "opendoar____::2013"] +["roar________::3465", "opendoar____::2024"] +["roar________::3454", "opendoar____::2021"] +["roar________::3415", "opendoar____::2003"] +["opendoar____::1314", "roar________::3402"] +["opendoar____::2009", "roar________::3370"] +["roar________::3284", "opendoar____::1984"] +["opendoar____::1964", "roar________::3255"] +["opendoar____::1942", "roar________::3215"] +["opendoar____::1937", "roar________::3206"] +["opendoar____::1949", "roar________::3204"] +["roar________::3200", "opendoar____::1936"] +["opendoar____::1320", "roar________::3197"] +["roar________::3198", "opendoar____::1959"] +["roar________::3192", "opendoar____::1043"] +["opendoar____::1938", "roar________::3193"] +["opendoar____::1945", "roar________::3191"] +["roar________::3160", "opendoar____::1926"] +["roar________::3157", "opendoar____::1919"] +["roar________::3155", "opendoar____::1927"] +["roar________::3147", "opendoar____::1930"] +["roar________::3127", "opendoar____::2035"] +["opendoar____::1907", "roar________::3120"] +["roar________::3110", "opendoar____::428"] +["roar________::3107", "opendoar____::528"] +["opendoar____::792", "roar________::3091"] +["roar________::3082", "opendoar____::740"] +["roar________::3030", "opendoar____::1885"] +["roar________::3019", "opendoar____::1878"] +["opendoar____::1877", "roar________::3006"] +["roar________::2948", "opendoar____::1863"] +["roar________::2873", "opendoar____::1421"] +["opendoar____::1849", "roar________::2863"] +["roar________::2855", "opendoar____::1839"] +["roar________::2651", "opendoar____::1774"] +["opendoar____::1762", "roar________::2609"] +["roar________::2607", "opendoar____::1761"] +["roar________::2595", "opendoar____::1758"] +["opendoar____::1739", "roar________::2557"] +["opendoar____::1748", "roar________::2556"] +["roar________::2554", "opendoar____::1740"] +["roar________::2547", "opendoar____::1746"] +["opendoar____::1743", "roar________::2548"] +["opendoar____::1741", "roar________::2545"] +["opendoar____::1745", "roar________::2546"] +["roar________::2525", "opendoar____::1737"] +["roar________::2505", "opendoar____::1729"] +["roar________::2490", "opendoar____::1724"] +["opendoar____::1706", "roar________::2461"] +["roar________::2439", "opendoar____::671"] +["roar________::2418", "opendoar____::665"] +["roar________::2419", "opendoar____::299"] +["opendoar____::684", "roar________::2411"] +["roar________::2399", "opendoar____::1011"] +["opendoar____::816", "roar________::2390"] +["roar________::2387", "opendoar____::826"] +["roar________::485", "opendoar____::1542"] +["opendoar____::1414", "roar________::857"] +["roar________::128", "opendoar____::1482"] +["roar________::600", "opendoar____::1289"] +["opendoar____::1249", "roar________::1391"] +["roar________::607", "opendoar____::1132"] +["opendoar____::1008", "roar________::1398"] +["opendoar____::1006", "roar________::271"] +["roar________::1110", "opendoar____::929"] +["roar________::312", "opendoar____::426"] +["opendoar____::522", "roar________::856"] +["opendoar____::1345", "roar________::1597"] +["opendoar____::1296", "roar________::2333"] +["opendoar____::1704", "roar________::2339"] +["opendoar____::1446", "roar________::2345"] +["opendoar____::4562", "roar________::14673"] +["roar________::13960", "opendoar____::6787"] +["opendoar____::8955", "roar________::13373"] +["opendoar____::4643", "roar________::11520"] +["opendoar____::2662", "roar________::6215"] +["opendoar____::4874", "roar________::15263"] +["opendoar____::2724", "roar________::7228"] +["fairsharing_::1937", "re3data_____::r3d100010673"] +["roar________::14363", "re3data_____::r3d100012932"] +["roar________::15112", "opendoar____::4057"] +["opendoar____::4815", "roar________::15201"] +["opendoar____::4426", "roar________::13403"] +["opendoar____::485", "roar________::648"] +["roar________::2907", "roar________::16867"] +["fairsharing_::2039", "re3data_____::r3d100013711"] +["roar________::1075", "opendoar____::1420"] +["roar________::16454", "opendoar____::9985"] +["opendoar____::5061", "roar________::9560"] +["roar________::10189", "opendoar____::4929"] +["roar________::12292", "opendoar____::4310"] +["opendoar____::4978", "roar________::7197"] +["opendoar____::4972", "roar________::9962"] +["opendoar____::10122", "roar________::17103"] +["opendoar____::9501", "roar________::13131"] +["roar________::8108", "opendoar____::9497"] +["opendoar____::3252", "roar________::9282"] +["opendoar____::4997", "re3data_____::r3d100011947"] +["opendoar____::10176", "roar________::17294"] +["opendoar____::4656", "opendoar____::4662"] +["opendoar____::5361", "roar________::5604"] +["opendoar____::4901", "roar________::1506"] +["re3data_____::r3d100013135", "opendoar____::9411", "roar________::15255"] +["roar________::12914", "opendoar____::4530"] +["roar________::3588", "re3data_____::r3d100011352"] +["opendoar____::9508", "roar________::15722"] +["opendoar____::4398", "roar________::11159"] +["opendoar____::10083", "roar________::16958"] +["roar________::15275", "opendoar____::4863"] +["roar________::17338", "opendoar____::10188"] +["roar________::17181", "opendoar____::10150"] +["opendoar____::108", "roar________::1165", "re3data_____::r3d100011119"] +["roar________::4394", "roar________::4393"] +["roar________::9430", "roar________::9316", "roar________::10359"] +["opendoar____::9983", "roar________::16451"] +["roar________::16304", "opendoar____::4839"] +["roar________::13531", "opendoar____::4640"] +["roar________::14550", "opendoar____::8768"] +["roar________::9484", "opendoar____::4553"] +["roar________::15752", "opendoar____::9656"] +["opendoar____::4315", "roar________::13868"] +["opendoar____::10228", "roar________::10937"] +["roar________::13584", "roar________::11437"] +["roar________::16080", "opendoar____::9665"] +["opendoar____::3428", "roar________::9752"] +["opendoar____::7584", "roar________::2522"] +["roar________::12545", "roar________::16426"] +["opendoar____::4437", "roar________::13698"] +["opendoar____::4275", "roar________::12424"] +["opendoar____::995", "roar________::149"] +["roar________::12916", "opendoar____::4988"] +["opendoar____::3628", "roar________::11234"] +["roar________::2640", "opendoar____::1466"] +["roar________::17470", "opendoar____::10207"] +["opendoar____::3530", "roar________::14073"] +["opendoar____::4932", "roar________::7842"] +["roar________::14777", "opendoar____::4610"] +["roar________::7571", "opendoar____::2898"] +["opendoar____::2743", "roar________::6242"] +["opendoar____::3448", "roar________::16310"] +["opendoar____::3095", "roar________::8894"] +["opendoar____::10092", "roar________::17212"] +["opendoar____::193", "roar________::723"] +["roar________::12224", "opendoar____::3826"] +["opendoar____::1284", "re3data_____::r3d100010363"] +["opendoar____::1218", "roar________::1418"] +["roar________::1027", "opendoar____::1007"] +["roar________::1527", "opendoar____::1010"] +["opendoar____::9598", "roar________::15892"] +["opendoar____::943", "roar________::767"] +["opendoar____::9484", "fairsharing_::2724"] +["roar________::10800", "opendoar____::3612", "roar________::10518"] +["roar________::17710", "opendoar____::10334"] +["re3data_____::r3d100012955", "opendoar____::4363"] +["roar________::17013", "opendoar____::10097"] +["roar________::15099", "opendoar____::4822"] +["roar________::15496", "roar________::15494"] +["roar________::11266", "roar________::15646"] +["opendoar____::3059", "roar________::7377"] +["roar________::17455", "opendoar____::10208"] +["roar________::7528", "roar________::6108"] +["roar________::16742", "opendoar____::10032"] +["roar________::16401", "opendoar____::9954"] +["roar________::5651", "opendoar____::4938"] +["opendoar____::10160", "roar________::17220"] +["roar________::13456", "opendoar____::9121"] +["roar________::14371", "opendoar____::4242"] +["roar________::13826", "opendoar____::4400"] +["roar________::15889", "roar________::15219"] +["roar________::1084", "opendoar____::541"] +["roar________::9586", "opendoar____::8336"] +["opendoar____::8648", "roar________::8309"] +["roar________::16800", "roar________::15857"] +["opendoar____::4373", "roar________::14037"] +["opendoar____::4838", "roar________::15200"] +["roar________::2309", "roar________::4552", "opendoar____::1464"] +["opendoar____::4234", "roar________::14961"] +["opendoar____::446", "roar________::375"] +["roar________::17051", "opendoar____::10126"] +["opendoar____::4490", "roar________::11459"] +["opendoar____::8959", "roar________::13234"] +["opendoar____::5097", "roar________::4119"] +["opendoar____::9439", "roar________::15435"] +["opendoar____::10287", "roar________::17641"] +["roar________::16179", "roar________::15265"] +["re3data_____::r3d100013487", "opendoar____::10049"] +["opendoar____::4286", "roar________::14409"] +["roar________::7593", "opendoar____::2656"] +["opendoar____::8951", "roar________::13824"] +["opendoar____::9489", "roar________::14666"] +["roar________::15169", "opendoar____::4835"] +["roar________::15761", "opendoar____::9522"] +["roar________::2585", "roar________::2559"] +["opendoar____::9413", "re3data_____::r3d100010579"] +["opendoar____::9477", "roar________::14977"] +["opendoar____::10289", "roar________::17685"] +["opendoar____::7042", "re3data_____::r3d100013369"] +["opendoar____::10096", "roar________::16995"] +["opendoar____::5331", "roar________::10179"] +["opendoar____::3875", "roar________::14403"] +["opendoar____::4079", "roar________::13745"] +["opendoar____::4406", "roar________::12863"] +["roar________::4368", "roar________::4459"] +["opendoar____::6444", "roar________::9349"] +["opendoar____::10190", "roar________::15584"] +["roar________::15531", "roar________::15490", "roar________::15770"] +["roar________::7041", "opendoar____::5271"] +["roar________::13511", "opendoar____::4253"] +["opendoar____::4790", "roar________::15231"] +["opendoar____::4464", "re3data_____::r3d100012925", "opendoar____::4726", "fairsharing_::3672", "opendoar____::9699"] +["roar________::12810", "opendoar____::5131"] +["re3data_____::r3d100012001", "roar________::11857"] +["roar________::15272", "opendoar____::6686"] +["opendoar____::9647", "roar________::16034"] +["roar________::14975", "opendoar____::4723"] +["roar________::9487", "roar________::7574"] +["roar________::7278", "roar________::7216"] +["roar________::8453", "roar________::16144"] +["opendoar____::5376", "opendoar____::3586"] +["opendoar____::4474", "roar________::15563"] +["roar________::11546", "opendoar____::5332"] +["opendoar____::4786", "roar________::14634", "re3data_____::r3d100013029"] +["roar________::14700", "opendoar____::4611"] +["opendoar____::4649", "roar________::14649"] +["roar________::8008", "opendoar____::3008"] +["roar________::11120", "opendoar____::4452"] +["opendoar____::674", "re3data_____::r3d100011188"] +["re3data_____::r3d100011378", "opendoar____::3562"] +["opendoar____::1572", "roar________::2499"] +["roar________::17724", "opendoar____::10354"] +["roar________::4409", "roar________::4410"] +["opendoar____::4108", "roar________::11486"] +["opendoar____::4684", "roar________::11686"] +["fairsharing_::3780", "re3data_____::r3d100013727"] +["roar________::17252", "opendoar____::10175"] +["opendoar____::1131", "roar________::3573"] +["opendoar____::976", "roar________::382"] +["roar________::16423", "opendoar____::9970"] +["roar________::15420", "opendoar____::10159", "roar________::16164"] +["opendoar____::3914", "roar________::14418"] +["opendoar____::10279", "re3data_____::r3d100013661"] +["opendoar____::9645", "opendoar____::9629"] +["opendoar____::9744", "roar________::16219"] +["roar________::10431", "opendoar____::4351"] +["roar________::4765", "opendoar____::3524"] +["opendoar____::7335", "re3data_____::r3d100010953"] +["roar________::475", "opendoar____::130"] +["roar________::15471", "roar________::16390"] +["roar________::628", "roar________::5942"] +["roar________::13832", "opendoar____::4195"] +["roar________::14181", "opendoar____::9416"] +["roar________::17598", "opendoar____::10288"] +["roar________::340", "opendoar____::435"] +["opendoar____::6099", "opendoar____::704"] +["roar________::2646", "opendoar____::1255", "roar________::2980"] +["re3data_____::r3d100012409", "opendoar____::3902"] +["roar________::13520", "opendoar____::7587"] +["opendoar____::1993", "roar________::3368"] +["roar________::11574", "re3data_____::r3d100012108"] +["roar________::2751", "opendoar____::1773"] +["opendoar____::3465", "roar________::13474"] +["opendoar____::9438", "roar________::15306"] +["roar________::16962", "opendoar____::10087"] +["roar________::15339", "opendoar____::9382"] +["roar________::4612", "roar________::4649"] +["roar________::16091", "opendoar____::9670"] +["roar________::16892", "opendoar____::10075"] +["roar________::8868", "opendoar____::4212", "roar________::8873"] +["roar________::5949", "roar________::6219"] +["opendoar____::4238", "roar________::14052"] +["opendoar____::4262", "roar________::14170"] +["roar________::15859", "roar________::15251"] +["roar________::17012", "opendoar____::10103"] +["roar________::10090", "opendoar____::6892"] +["opendoar____::3601", "opendoar____::2608"] +["opendoar____::4420", "roar________::5044"] +["opendoar____::9883", "opendoar____::3770"] +["roar________::16974", "opendoar____::10091"] +["opendoar____::9968", "roar________::16418"] +["roar________::8460", "opendoar____::4482"] +["opendoar____::4678", "roar________::14841"] +["roar________::13575", "opendoar____::4411"] +["roar________::2286", "opendoar____::5506", "opendoar____::104"] +["opendoar____::1388", "roar________::81"] +["roar________::8797", "roar________::8381"] +["roar________::8295", "roar________::8467"] +["opendoar____::6783", "roar________::9778"] +["roar________::10427", "opendoar____::3482"] +["roar________::13799", "opendoar____::4085"] +["roar________::589", "opendoar____::479"] +["opendoar____::10153", "roar________::17196"] +["opendoar____::7205", "roar________::13823"] +["opendoar____::4802", "roar________::15161"] +["re3data_____::r3d100010731", "opendoar____::7462"] +["roar________::2891", "opendoar____::1687"] +["roar________::4176", "opendoar____::2262"] +["roar________::1288", "opendoar____::5064"] +["roar________::16094", "opendoar____::9672"] +["roar________::2866", "opendoar____::1546"] +["roar________::16480", "opendoar____::10001"] +["roar________::12711", "roar________::12712"] +["opendoar____::2888", "roar________::7531"] +["roar________::9168", "opendoar____::3191"] +["roar________::13910", "opendoar____::4281"] +["roar________::4809", "opendoar____::2387"] +["roar________::14736", "opendoar____::4625"] +["roar________::15100", "opendoar____::4885"] +["roar________::16432", "roar________::16430"] +["re3data_____::r3d100011909", "opendoar____::3503"] +["roar________::16006", "opendoar____::9631"] +["opendoar____::10102", "roar________::17028"] +["opendoar____::5523", "roar________::11250"] +["roar________::14752", "opendoar____::8948"] +["roar________::15110", "opendoar____::4816"] +["roar________::13928", "opendoar____::4387"] +["roar________::12965", "opendoar____::5632"] +["opendoar____::4280", "roar________::7656"] +["opendoar____::10078", "roar________::16926"] +["opendoar____::4865", "roar________::15241"] +["opendoar____::4287", "roar________::13975"] +["opendoar____::7907", "roar________::12753"] +["roar________::7204", "opendoar____::2732"] +["re3data_____::r3d100013633", "roar________::11687"] +["opendoar____::4871", "roar________::13356"] +["opendoar____::9495", "roar________::15656"] +["roar________::9803", "opendoar____::3349"] +["opendoar____::10113", "re3data_____::r3d100013574"] +["roar________::15178", "opendoar____::4782", "roar________::16004"] +["opendoar____::3041", "roar________::16258"] +["opendoar____::4623", "opendoar____::4218"] +["roar________::14936", "opendoar____::4636", "opendoar____::4702"] +["opendoar____::10243", "roar________::17524"] +["opendoar____::105", "roar________::370"] +["roar________::3017", "roar________::3097"] +["roar________::6019", "opendoar____::2715"] +["roar________::8678", "opendoar____::3186"] +["roar________::14227", "opendoar____::7590"] +["roar________::14077", "opendoar____::6501"] +["opendoar____::9642", "roar________::16035"] +["opendoar____::10035", "re3data_____::r3d100013456"] +["opendoar____::9646", "roar________::16033"] +["roar________::3570", "opendoar____::1364"] +["roar________::8300", "opendoar____::7351"] +["opendoar____::1540", "re3data_____::r3d100013287", "roar________::776"] +["opendoar____::4160", "roar________::16444"] +["roar________::14756", "opendoar____::4866"] +["opendoar____::4691", "roar________::10350"] +["opendoar____::9880", "roar________::6774"] +["roar________::12968", "opendoar____::8958"] +["re3data_____::r3d100013426", "opendoar____::10271"] +["roar________::15566", "opendoar____::9463"] +["roar________::13709", "opendoar____::4240"] +["roar________::16231", "opendoar____::9773"] +["re3data_____::r3d100013672", "roar________::14946"] +["re3data_____::r3d100012994", "opendoar____::4578"] +["opendoar____::635", "roar________::1021"] +["opendoar____::10013", "roar________::16528"] +["roar________::16881", "opendoar____::10071"] +["opendoar____::4304", "roar________::13418"] +["roar________::450", "opendoar____::1383"] +["opendoar____::3002", "roar________::7978"] +["roar________::311", "re3data_____::r3d100010806", "opendoar____::425"] +["roar________::17656", "opendoar____::10297"] +["roar________::15273", "opendoar____::4078"] +["roar________::14658", "opendoar____::4561"] +["opendoar____::4668", "roar________::14901"] +["opendoar____::3639", "roar________::10766"] +["opendoar____::9713", "re3data_____::r3d100013499"] +["roar________::16250", "opendoar____::9749"] +["roar________::13235", "opendoar____::4450"] +["roar________::15355", "roar________::15356"] +["re3data_____::r3d100010742", "opendoar____::3088"] +["opendoar____::4868", "roar________::15173"] +["re3data_____::r3d100012467", "opendoar____::4173"] +["roar________::15116", "opendoar____::4834"] +["opendoar____::9882", "opendoar____::9275"] +["roar________::14869", "opendoar____::4268"] +["opendoar____::4850", "roar________::16936"] +["opendoar____::4424", "roar________::13066"] +["opendoar____::3373", "re3data_____::r3d100012513"] +["opendoar____::2799", "roar________::6249"] +["roar________::11010", "opendoar____::3689"] +["roar________::10376", "opendoar____::5536"] +["opendoar____::9952", "roar________::16402"] +["roar________::13614", "opendoar____::4084"] +["opendoar____::3545", "roar________::10373"] +["opendoar____::4616", "roar________::14685"] +["roar________::15210", "opendoar____::4840"] +["roar________::8449", "roar________::323"] +["roar________::12232", "opendoar____::5661"] +["roar________::14636", "opendoar____::7753"] +["roar________::5056", "roar________::4756"] +["opendoar____::1673", "roar________::2482"] +["roar________::13031", "opendoar____::4527"] +["opendoar____::4572", "roar________::14679"] +["roar________::8371", "roar________::8324"] +["roar________::14640", "roar________::14739", "opendoar____::7492"] +["opendoar____::4608", "roar________::14757"] +["re3data_____::r3d100010868", "roar________::3948"] +["opendoar____::9478", "roar________::15609"] +["roar________::12835", "re3data_____::r3d100011387"] +["roar________::16491", "opendoar____::10004"] +["re3data_____::r3d100013084", "fairsharing_::3774"] +["roar________::14282", "opendoar____::4225"] +["roar________::11133", "opendoar____::4455"] +["opendoar____::1049", "roar________::14971"] +["opendoar____::6547", "roar________::16126"] +["opendoar____::4823", "roar________::15126"] +["roar________::15712", "roar________::16108"] +["opendoar____::4533", "roar________::14623"] +["roar________::3330", "opendoar____::1424"] +["roar________::8668", "opendoar____::8940"] +["roar________::1377", "opendoar____::327"] +["roar________::14764", "opendoar____::8994"] +["roar________::5062", "roar________::2531"] +["roar________::13746", "opendoar____::4082"] +["roar________::2343", "opendoar____::752"] +["opendoar____::10275", "opendoar____::4788"] +["opendoar____::3651", "re3data_____::r3d100012155"] +["opendoar____::4239", "roar________::15680"] +["re3data_____::r3d100012064", "opendoar____::3757"] +["roar________::4761", "roar________::4762"] +["opendoar____::5483", "opendoar____::172", "roar________::635"] +["roar________::2997", "roar________::4098"] +["roar________::8839", "opendoar____::1734"] +["opendoar____::9659", "roar________::16720"] +["opendoar____::3797", "roar________::14013"] +["roar________::13970", "opendoar____::4316"] +["re3data_____::r3d100013423", "opendoar____::10042"] +["opendoar____::4425", "roar________::14199"] +["opendoar____::4789", "roar________::15154"] +["opendoar____::2907", "roar________::16759"] +["roar________::8451", "opendoar____::4757"] +["roar________::15433", "opendoar____::9436"] +["opendoar____::4776", "roar________::14800"] +["re3data_____::r3d100012054", "opendoar____::3986"] +["roar________::11311", "opendoar____::3454"] +["opendoar____::3507", "roar________::10663"] +["roar________::6503", "opendoar____::2789"] +["opendoar____::10081", "re3data_____::r3d100013524"] +["roar________::16130", "opendoar____::4228"] +["roar________::1416", "opendoar____::345"] +["roar________::621", "opendoar____::1412"] +["opendoar____::1651", "roar________::1057"] +["roar________::2431", "opendoar____::1512"] +["roar________::11257", "roar________::11295"] +["roar________::237", "opendoar____::920"] +["re3data_____::r3d100010543", "fairsharing_::3340"] +["opendoar____::2583", "opendoar____::6048"] +["opendoar____::3032", "opendoar____::4575"] +["roar________::7858", "roar________::7996"] +["roar________::1058", "opendoar____::1655"] +["roar________::8473", "opendoar____::8945"] +["roar________::13686", "opendoar____::6784"] +["opendoar____::10037", "re3data_____::r3d100013215"] +["opendoar____::10154", "roar________::16049"] +["opendoar____::9914", "opendoar____::9864"] +["opendoar____::10347", "roar________::17744"] +["roar________::4443", "opendoar____::2719"] +["opendoar____::8946", "roar________::13524"] +["opendoar____::4830", "roar________::15188"] +["opendoar____::4288", "roar________::13911"] +["opendoar____::3932", "roar________::15083"] +["opendoar____::9246", "roar________::13716"] +["opendoar____::10365", "roar________::17843"] +["roar________::14266", "opendoar____::9943"] +["opendoar____::9925", "re3data_____::r3d100012147"] +["opendoar____::10165", "roar________::15479"] +["opendoar____::10009", "roar________::16511"] +["opendoar____::4657", "roar________::14884"] +["roar________::3981", "opendoar____::5415"] +["opendoar____::4810", "roar________::10874"] +["opendoar____::9747", "re3data_____::r3d100012787"] +["opendoar____::4297", "roar________::10295"] +["opendoar____::9525", "roar________::15778"] +["roar________::1211", "roar________::1210", "roar________::1212"] +["opendoar____::10325", "roar________::17599"] +["roar________::13206", "roar________::8934"] +["roar________::15957", "opendoar____::9621"] +["roar________::16744", "opendoar____::10033"] +["opendoar____::3220", "roar________::9811"] +["opendoar____::7764", "roar________::13936"] +["roar________::15060", "roar________::13134"] +["opendoar____::2582", "roar________::6110"] +["opendoar____::10178", "roar________::17302"] +["opendoar____::332", "re3data_____::r3d100011216"] +["opendoar____::10192", "roar________::16264"] +["roar________::16078", "opendoar____::9663"] +["opendoar____::1624", "roar________::1157"] +["roar________::8225", "opendoar____::6127"] +["roar________::438", "opendoar____::114"] +["roar________::5869", "re3data_____::r3d100010133"] +["roar________::14676", "opendoar____::4470"] +["opendoar____::4801", "roar________::15176"] +["roar________::17088", "opendoar____::10184"] +["re3data_____::r3d100012333", "opendoar____::3691"] +["opendoar____::9466", "opendoar____::9465"] +["re3data_____::r3d100011961", "re3data_____::r3d100011743"] +["roar________::15575", "roar________::15574"] +["opendoar____::9468", "opendoar____::9467"] +["opendoar____::2963", "fairsharing_::2114", "re3data_____::r3d100010191"] +["opendoar____::4194", "re3data_____::r3d100011201", "fairsharing_::2560"] +["opendoar____::394", "fairsharing_::2702", "re3data_____::r3d100010765", "roar________::46"] +["fairsharing_::2820", "re3data_____::r3d100013120", "opendoar____::10134", "roar________::17137"] +["roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006", "fairsharing_::2504"] +["roar________::1532", "opendoar____::375", "fairsharing_::2536", "re3data_____::r3d100010423"] +["fairsharing_::2542", "opendoar____::10329", "re3data_____::r3d100010691"] +["re3data_____::r3d100011805", "opendoar____::10062", "fairsharing_::3009"] +["re3data_____::r3d100012385", "fairsharing_::2558", "opendoar____::4241"] +["re3data_____::r3d100012397", "fairsharing_::2524", "re3data_____::r3d100013223"] +["re3data_____::r3d100010066", "opendoar____::2073", "fairsharing_::1843"] +["opendoar____::9768", "fairsharing_::2768", "re3data_____::r3d100013177", "roar________::16302"] +["opendoar____::3593", "roar________::11294", "fairsharing_::3331", "re3data_____::r3d100011800", "opendoar____::3594"] +["re3data_____::r3d100011108", "opendoar____::5870", "fairsharing_::2778"] +["re3data_____::r3d100011817", "fairsharing_::2676", "opendoar____::4164"] +["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"] +["fairsharing_::2358", "re3data_____::r3d100010468", "opendoar____::2659"] +["re3data_____::r3d100012673", "opendoar____::10197", "fairsharing_::2608"] +["opendoar____::2294", "fairsharing_::2557", "re3data_____::r3d100010750", "roar________::4205"] +["re3data_____::r3d100012435", "fairsharing_::2303", "opendoar____::4166"] +["opendoar____::4344", "fairsharing_::3080", "re3data_____::r3d100011898"] +["fairsharing_::1562", "roar________::269", "re3data_____::r3d100010213", "opendoar____::418"] +["opendoar____::4296", "fairsharing_::2372", "re3data_____::r3d100010101"] +["fairsharing_::2452", "opendoar____::2954", "re3data_____::r3d100010051"] +["fairsharing_::3027", "re3data_____::r3d100012692", "roar________::854", "opendoar____::1237"] +["re3data_____::r3d100011890", "fairsharing_::2584", "opendoar____::10026"] +["re3data_____::r3d100011191", "fairsharing_::3142", "opendoar____::129", "roar________::469"] +["opendoar____::3893", "roar________::12885", "re3data_____::r3d100010157", "fairsharing_::3041"] +["roar________::1290", "fairsharing_::1989", "re3data_____::r3d100010129", "opendoar____::1373"] +["re3data_____::r3d100011868", "opendoar____::3881", "fairsharing_::2453"] +["re3data_____::r3d100011086", "opendoar____::3576", "roar________::10345", "fairsharing_::2295"] +["re3data_____::r3d100010216", "fairsharing_::2537", "opendoar____::3739"] +["fairsharing_::2760", "roar________::13313", "opendoar____::4062", "re3data_____::r3d100012316"] +["opendoar____::2731", "re3data_____::r3d100000005", "fairsharing_::2864"] +["opendoar____::10171", "re3data_____::r3d100012538", "fairsharing_::2955"] +["re3data_____::r3d100013343", "fairsharing_::3262", "opendoar____::10274"] +["fairsharing_::3327", "opendoar____::109", "roar________::390", "re3data_____::r3d100010620"] +["opendoar____::10272", "fairsharing_::3333", "re3data_____::r3d100013271"] +["re3data_____::r3d100011538", "fairsharing_::2424", "re3data_____::r3d100010412"] +["re3data_____::r3d100010734", "opendoar____::3054", "fairsharing_::2508"] +["re3data_____::r3d100010078", "roar________::3887", "fairsharing_::3144"] +["opendoar____::495", "re3data_____::r3d100010766", "roar________::1137", "fairsharing_::2980", "roar________::2463"] +["re3data_____::r3d100012274", "roar________::6428", "opendoar____::1122"] +["roar________::5222", "re3data_____::r3d100013537", "roar________::5212", "opendoar____::2473"] +["opendoar____::5533", "re3data_____::r3d100013665", "roar________::309", "opendoar____::1409", "roar________::5572"] +["roar________::5792", "opendoar____::2553", "re3data_____::r3d100013722"] +["opendoar____::2247", "roar________::778", "opendoar____::186144", "re3data_____::r3d100010094"] +["roar________::11835", "re3data_____::r3d100013348", "opendoar____::9625"] +["opendoar____::3533", "roar________::10776", "re3data_____::r3d100013352"] +["roar________::272", "re3data_____::r3d100013362", "roar________::10637", "opendoar____::1267"] +["opendoar____::2587", "roar________::6088", "re3data_____::r3d100013382"] +["opendoar____::719", "re3data_____::r3d100013394", "roar________::5988"] +["opendoar____::1527", "roar________::1341", "re3data_____::r3d100013427", "roar________::9559"] +["roar________::16495", "opendoar____::4706", "roar________::16494", "opendoar____::3793", "re3data_____::r3d100013450", "roar________::10970"] +["re3data_____::r3d100013465", "roar________::10452", "opendoar____::1404"] +["roar________::399", "re3data_____::r3d100010599", "opendoar____::88"] +["roar________::4562", "roar________::3755", "roar________::3591", "opendoar____::2373", "opendoar____::2115"] +["roar________::4562", "roar________::4695", "roar________::3591", "opendoar____::2373"] +["opendoar____::1385", "roar________::1164", "roar________::8784"] +["roar________::5531", "opendoar____::1232", "roar________::1488"] +["roar________::498", "roar________::4781", "opendoar____::464"] +["re3data_____::r3d100013546", "roar________::1171", "opendoar____::605"] +["roar________::4442", "opendoar____::2447", "roar________::5051"] +["roar________::3038", "roar________::5220", "opendoar____::578"] +["roar________::784", "opendoar____::510", "roar________::7861", "roar________::5756"] +["opendoar____::961", "roar________::631", "opendoar____::4395"] +["roar________::4969", "roar________::215", "opendoar____::586"] +["roar________::490", "opendoar____::8789", "opendoar____::134"] +["opendoar____::567", "roar________::2838", "roar________::3522", "roar________::3416"] +["roar________::1568", "roar________::1227", "opendoar____::409"] +["roar________::9104", "opendoar____::1154", "roar________::333"] +["roar________::70", "opendoar____::1400", "roar________::2347"] +["opendoar____::5057", "roar________::914", "opendoar____::1530"] +["roar________::5306", "opendoar____::2033", "roar________::2511"] +["roar________::5429", "roar________::457", "opendoar____::460"] +["opendoar____::1623", "roar________::4683", "roar________::4440"] +["roar________::5204", "opendoar____::1700", "roar________::1132"] +["roar________::1247", "roar________::5421", "opendoar____::867"] +["roar________::712", "opendoar____::1658", "roar________::8709"] +["opendoar____::2230", "roar________::4090", "roar________::5385"] +["roar________::1240", "re3data_____::r3d100012232", "opendoar____::305"] +["roar________::1419", "roar________::2526", "opendoar____::346"] +["opendoar____::137", "roar________::500", "roar________::4995"] +["roar________::280", "roar________::5186", "opendoar____::76"] +["roar________::466", "re3data_____::r3d100010751", "opendoar____::1610"] +["re3data_____::r3d100013116", "opendoar____::882", "roar________::1386"] +["roar________::5695", "opendoar____::2053", "roar________::3579", "roar________::3930", "roar________::5461"] +["roar________::3495", "opendoar____::153", "roar________::555"] +["roar________::3925", "opendoar____::2193", "roar________::5546"] +["opendoar____::364", "roar________::15907", "roar________::358"] +["roar________::4934", "opendoar____::1932", "roar________::3207"] +["opendoar____::2274", "roar________::3059", "roar________::4959", "opendoar____::1896"] +["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"] +["roar________::4274", "opendoar____::2303", "roar________::4377"] +["opendoar____::1437", "roar________::3553", "roar________::1095"] +["opendoar____::2311", "roar________::4374", "roar________::4268"] +["roar________::5885", "roar________::3358", "opendoar____::2004"] +["roar________::4680", "opendoar____::1009", "roar________::1382"] +["opendoar____::10050", "roar________::2819", "opendoar____::2840"] +["opendoar____::1485", "roar________::1497", "roar________::5584"] +["opendoar____::524", "roar________::5265", "roar________::380"] +["opendoar____::1855", "roar________::2928", "roar________::2918"] +["roar________::834", "roar________::4677", "opendoar____::432"] +["roar________::9724", "opendoar____::3238", "opendoar____::1059", "roar________::2518", "opendoar____::3332"] +["roar________::478", "opendoar____::462", "roar________::5264"] +["roar________::4687", "opendoar____::1445", "roar________::106"] +["roar________::293", "roar________::3419", "roar________::3148", "opendoar____::959"] +["roar________::3390", "opendoar____::2645", "roar________::6694"] +["roar________::1206", "opendoar____::497", "roar________::4637"] +["roar________::4726", "roar________::722", "opendoar____::179"] +["roar________::3539", "roar________::3663", "opendoar____::2087"] +["roar________::958", "opendoar____::1443", "roar________::3126", "roar________::2391"] +["opendoar____::1488", "re3data_____::r3d100012414", "roar________::1129"] +["opendoar____::2379", "roar________::3592", "roar________::3693", "roar________::4585", "roar________::2617"] +["opendoar____::1501", "roar________::4789", "roar________::1085"] +["re3data_____::r3d100011218", "roar________::814", "opendoar____::206"] +["opendoar____::239", "opendoar____::241", "roar________::5221", "roar________::976", "roar________::978", "roar________::2328"] +["roar________::3385", "roar________::3804", "opendoar____::2149"] +["opendoar____::2231", "roar________::2936", "roar________::4133"] +["roar________::5001", "opendoar____::14", "roar________::80"] +["roar________::5445", "roar________::936", "opendoar____::1226"] +["roar________::98", "opendoar____::889", "roar________::2346"] +["roar________::4636", "opendoar____::1165", "roar________::671"] +["opendoar____::1891", "roar________::2943", "roar________::1059"] +["opendoar____::242", "roar________::979", "roar________::4932"] +["roar________::1448", "re3data_____::r3d100012604", "opendoar____::3", "roar________::5509"] +["opendoar____::606", "roar________::143", "re3data_____::r3d100011169"] +["roar________::5561", "opendoar____::518", "re3data_____::r3d100013102", "roar________::1528"] +["roar________::221", "roar________::222", "opendoar____::61", "roar________::5623"] +["roar________::547", "opendoar____::1702", "roar________::4962"] +["opendoar____::581", "roar________::3109", "roar________::384"] +["roar________::7062", "opendoar____::1396", "roar________::528", "roar________::5564"] +["opendoar____::2452", "roar________::12785", "roar________::5449", "roar________::5072"] +["roar________::4437", "opendoar____::1525", "roar________::486", "roar________::3555"] +["opendoar____::232", "opendoar____::1104", "roar________::954"] +["roar________::13359", "roar________::13385", "roar________::749", "opendoar____::601"] +["roar________::746", "opendoar____::931", "roar________::2392"] +["opendoar____::2339", "roar________::4308", "roar________::5184"] +["opendoar____::2063", "roar________::2649", "roar________::6393"] +["opendoar____::1528", "roar________::383", "roar________::14150", "roar________::4983"] +["opendoar____::2364", "roar________::4320", "opendoar____::5091"] +["roar________::1541", "roar________::10577", "roar________::3992", "roar________::5185", "opendoar____::1391"] +["roar________::2856", "roar________::2846", "roar________::3202", "opendoar____::1845"] +["opendoar____::283", "roar________::5127", "roar________::3420"] +["roar________::93", "opendoar____::403", "roar________::2839"] +["roar________::4590", "opendoar____::1760", "roar________::5530", "roar________::2608"] +["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"] +["roar________::5258", "roar________::2849", "opendoar____::1875"] +["opendoar____::2047", "roar________::5514", "roar________::3554"] +["opendoar____::393", "roar________::5003", "roar________::801"] +["re3data_____::r3d100012417", "roar________::1363", "opendoar____::322"] +["roar________::5553", "roar________::1243", "opendoar____::501"] +["opendoar____::471", "roar________::2400", "roar________::1513", "roar________::4719"] +["roar________::5567", "opendoar____::2497", "opendoar____::546", "roar________::569"] +["roar________::1349", "roar________::4676", "opendoar____::972"] +["roar________::1241", "roar________::11182", "opendoar____::1627", "roar________::4998"] +["roar________::64", "roar________::5474", "opendoar____::1080"] +["opendoar____::400", "roar________::2425", "roar________::471"] +["opendoar____::1035", "roar________::9715", "roar________::9708"] +["roar________::7829", "roar________::6688", "opendoar____::2804"] +["roar________::5795", "roar________::6199", "opendoar____::2381"] +["roar________::5986", "roar________::3736", "opendoar____::2123"] +["opendoar____::1061", "roar________::5889", "roar________::1106"] +["roar________::1474", "opendoar____::1678", "roar________::5720"] +["roar________::5157", "roar________::5041", "opendoar____::2465", "roar________::5687"] +["roar________::1139", "opendoar____::935", "roar________::5628"] +["roar________::5587", "roar________::3158", "opendoar____::1916", "roar________::3214"] +["roar________::5297", "roar________::5578", "opendoar____::2491"] +["roar________::5571", "roar________::789", "opendoar____::1518"] +["roar________::5548", "opendoar____::1470", "roar________::761"] +["opendoar____::1178", "roar________::426", "roar________::5538"] +["roar________::5423", "opendoar____::1583", "roar________::412"] +["roar________::5237", "roar________::5234", "opendoar____::2490"] +["opendoar____::239", "roar________::5221", "roar________::976", "roar________::2328"] +["re3data_____::r3d100011202", "roar________::4973", "opendoar____::956"] +["opendoar____::2599", "roar________::7274", "roar________::6225"] +["opendoar____::2403", "roar________::4533", "roar________::4707"] +["opendoar____::2223", "roar________::3996", "opendoar____::4920"] +["roar________::3701", "opendoar____::2046", "roar________::5560"] +["opendoar____::2040", "roar________::3551", "roar________::3512"] +["roar________::4273", "opendoar____::2325", "roar________::4369"] +["roar________::4270", "roar________::4354", "opendoar____::2305"] +["opendoar____::2323", "roar________::4353", "roar________::4352"] +["roar________::4075", "opendoar____::2015", "roar________::3387"] +["roar________::3089", "roar________::3054", "opendoar____::1888"] +["roar________::2964", "re3data_____::r3d100012564", "opendoar____::2829"] +["roar________::3119", "roar________::10021", "opendoar____::1903"] +["opendoar____::1912", "roar________::3106", "roar________::3108"] +["roar________::3217", "opendoar____::1957", "roar________::2634"] +["opendoar____::2133", "opendoar____::1736", "roar________::2510", "roar________::4671"] +["roar________::2820", "roar________::2372", "opendoar____::1717"] +["roar________::4379", "opendoar____::2306", "roar________::4266"] +["roar________::4370", "roar________::4371", "roar________::4262", "opendoar____::2298"] +["roar________::4977", "roar________::684", "opendoar____::1694"] +["opendoar____::1698", "roar________::11100", "roar________::893"] +["opendoar____::1472", "roar________::5536", "roar________::595"] +["opendoar____::1899", "roar________::3651", "roar________::3080"] +["roar________::539", "roar________::2945", "opendoar____::1271", "roar________::3111"] +["roar________::845", "opendoar____::1217", "roar________::3084"] +["opendoar____::938", "roar________::1103", "roar________::3508"] +["roar________::724", "opendoar____::1036", "roar________::12023"] +["opendoar____::1898", "roar________::3087", "roar________::5205"] +["re3data_____::r3d100013225", "roar________::2973", "opendoar____::427"] +["roar________::4996", "roar________::652", "opendoar____::990"] +["roar________::4717", "roar________::175", "opendoar____::1140"] +["roar________::467", "opendoar____::562", "roar________::5569"] +["roar________::15", "roar________::16", "opendoar____::538", "roar________::2329"] +["roar________::353", "roar________::4952", "opendoar____::963"] +["roar________::2344", "opendoar____::383", "roar________::6"] +["roar________::2340", "opendoar____::258", "roar________::10"] +["roar________::2341", "opendoar____::259", "roar________::5"] +["roar________::2321", "roar________::2341", "opendoar____::261", "roar________::8", "opendoar____::259", "roar________::5"] +["re3data_____::r3d100011181", "roar________::302", "opendoar____::430"] +["roar________::12", "roar________::2332", "opendoar____::263"] +["roar________::7", "opendoar____::260", "roar________::2334", "roar________::3287"] +["roar________::2424", "opendoar____::157", "roar________::833"] +["roar________::2322", "roar________::17", "opendoar____::361"] +["roar________::2337", "roar________::14", "opendoar____::264"] +["roar________::2327", "opendoar____::384", "roar________::20"] +["opendoar____::1329", "re3data_____::r3d100013445", "roar________::1193"] +["opendoar____::650", "re3data_____::r3d100012596", "roar________::349"] +["roar________::9782", "opendoar____::965", "roar________::1540"] +["re3data_____::r3d100010690", "opendoar____::1330", "roar________::756", "roar________::5487"] +["roar________::5083", "opendoar____::2187", "roar________::3976", "roar________::5067"] +["opendoar____::2111", "roar________::3766", "roar________::5189", "roar________::3615"] +["roar________::3931", "roar________::3341", "opendoar____::1994"] +["opendoar____::1469", "re3data_____::r3d100011274", "roar________::288", "roar________::4616"] +["opendoar____::1106", "re3data_____::r3d100011076", "roar________::321"] +["opendoar____::986", "roar________::1202", "roar________::12410"] +["opendoar____::1261", "roar________::8237", "roar________::73"] +["opendoar____::1763", "roar________::4635", "roar________::2610"] +["roar________::2323", "opendoar____::262", "roar________::13"] +["roar________::1096", "roar________::6361", "opendoar____::1375"] +["roar________::2705", "opendoar____::1779", "opendoar____::2493", "roar________::5439"] +["opendoar____::1868", "roar________::2992", "roar________::4020"] +["roar________::1558", "roar________::2674", "opendoar____::1825", "roar________::892", "opendoar____::1419"] +["roar________::6102", "roar________::2462", "opendoar____::1715"] +["roar________::5642", "fairsharing_::3108", "opendoar____::2377"] +["roar________::4589", "roar________::5559", "opendoar____::2378"] +["roar________::161", "opendoar____::1299", "roar________::4987"] +["roar________::5506", "roar________::1466", "opendoar____::914", "roar________::15186"] +["roar________::602", "roar________::2312", "roar________::5495", "opendoar____::1149"] +["roar________::870", "roar________::5466", "opendoar____::523"] +["roar________::5453", "opendoar____::365", "roar________::1481"] +["roar________::4821", "roar________::4559", "opendoar____::2821"] +["re3data_____::r3d100013030", "opendoar____::1560", "roar________::1127"] +["opendoar____::4320", "roar________::4745", "opendoar____::2429"] +["roar________::419", "opendoar____::1604", "roar________::5987", "roar________::5535"] +["roar________::5492", "roar________::3634", "roar________::15183", "opendoar____::2089", "roar________::16081"] +["roar________::3911", "re3data_____::r3d100012376", "opendoar____::1510"] +["opendoar____::1890", "roar________::3052", "roar________::8703"] +["roar________::5411", "opendoar____::1236", "roar________::3212"] +["roar________::5557", "opendoar____::1649", "roar________::766", "roar________::3933"] +["roar________::5550", "roar________::14050", "opendoar____::1441", "roar________::1019"] +["roar________::13098", "roar________::1086", "opendoar____::1406"] +["opendoar____::2135", "roar________::3986", "roar________::3230"] +["opendoar____::1941", "opendoar____::3771", "roar________::11092", "roar________::3210"] +["roar________::3256", "opendoar____::1240", "roar________::1287", "roar________::2402"] +["opendoar____::2718", "re3data_____::r3d100013442", "roar________::6686"] +["opendoar____::2483", "roar________::5280", "roar________::5511", "roar________::8240"] +["roar________::5558", "opendoar____::982", "roar________::505"] +["opendoar____::2293", "roar________::5181", "roar________::4946", "roar________::5544"] +["opendoar____::9400", "opendoar____::215", "roar________::6724"] +["roar________::1490", "opendoar____::355", "roar________::5983"] +["roar________::5698", "roar________::647", "opendoar____::1108"] +["roar________::692", "opendoar____::1562", "roar________::5540"] +["opendoar____::218", "roar________::858", "roar________::5489"] +["roar________::2741", "opendoar____::1807", "opendoar____::1781", "roar________::2670", "roar________::2698"] +["opendoar____::738", "re3data_____::r3d100013575", "roar________::3281"] +["opendoar____::1110", "roar________::4925", "roar________::818"] +["roar________::1041", "roar________::1043", "opendoar____::793", "opendoar____::266", "roar________::1042", "roar________::8289"] +["opendoar____::793", "roar________::1042", "re3data_____::r3d100011091", "roar________::8289"] +["opendoar____::267", "fairsharing_::1987", "roar________::1046"] +["roar________::501", "roar________::5422", "opendoar____::138", "roar________::5263"] +["opendoar____::1971", "roar________::3226", "roar________::5522"] +["roar________::11303", "opendoar____::3596", "re3data_____::r3d100012578"] +["opendoar____::1696", "roar________::2551", "roar________::2768", "roar________::2784", "roar________::5682", "opendoar____::1967", "roar________::2421", "roar________::6466"] +["opendoar____::1696", "roar________::2551", "roar________::2421", "roar________::2784"] +["roar________::2404", "opendoar____::1453", "roar________::157"] +["opendoar____::1158", "roar________::5497", "roar________::5683", "roar________::1552"] +["roar________::5432", "opendoar____::2211", "roar________::4030"] +["opendoar____::2106", "opendoar____::1613", "roar________::3681"] +["opendoar____::2067", "opendoar____::723", "roar________::3610"] +["roar________::1560", "opendoar____::1660", "roar________::4968"] +["roar________::5888", "opendoar____::377", "roar________::1539"] +["opendoar____::2588", "roar________::11231", "roar________::6173"] +["re3data_____::r3d100011183", "roar________::4315", "opendoar____::2370"] +["roar________::7269", "roar________::6427", "opendoar____::2771"] +["roar________::4992", "opendoar____::2098", "roar________::3682"] +["roar________::4358", "roar________::4263", "opendoar____::2300"] +["opendoar____::1873", "roar________::17564", "roar________::8605"] +["opendoar____::3147", "roar________::15954", "roar________::16230"] +["roar________::16195", "opendoar____::4869", "opendoar____::15294"] +["roar________::16183", "opendoar____::9506", "roar________::15718"] +["roar________::16225", "roar________::15610", "opendoar____::9479", "roar________::16180"] +["roar________::16098", "opendoar____::9662", "roar________::16074"] +["opendoar____::3529", "roar________::15775", "re3data_____::r3d100012394"] +["roar________::15805", "opendoar____::9528", "roar________::15765"] +["roar________::7162", "roar________::15528", "opendoar____::660"] +["opendoar____::3401", "roar________::15268", "roar________::16042"] +["opendoar____::4422", "roar________::15139", "roar________::15142"] +["opendoar____::4701", "roar________::15261", "roar________::15071"] +["roar________::15036", "roar________::15039", "opendoar____::4379"] +["roar________::16263", "opendoar____::3820", "opendoar____::5226", "roar________::14929"] +["roar________::14919", "opendoar____::1313", "roar________::14918"] +["roar________::13965", "opendoar____::4064", "opendoar____::4065"] +["opendoar____::3925", "re3data_____::r3d100012440", "roar________::13092"] +["roar________::12777", "opendoar____::1786", "roar________::2708"] +["roar________::12499", "roar________::12517", "opendoar____::3972"] +["opendoar____::3904", "roar________::12440", "roar________::13135"] +["re3data_____::r3d100012285", "opendoar____::3824", "roar________::12405"] +["roar________::11933", "roar________::12453", "opendoar____::3840"] +["re3data_____::r3d100011654", "opendoar____::3722", "roar________::11684"] +["re3data_____::r3d100012051", "roar________::11444", "opendoar____::3128"] +["roar________::5750", "roar________::11209", "opendoar____::2536", "opendoar____::5487"] +["roar________::10545", "opendoar____::3539", "roar________::14547"] +["opendoar____::1958", "roar________::16077", "roar________::10255"] +["opendoar____::3460", "roar________::10243", "roar________::10244"] +["opendoar____::3460", "roar________::10243", "roar________::10244", "roar________::17601"] +["roar________::10109", "opendoar____::3463", "opendoar____::3462"] +["opendoar____::2825", "roar________::9878", "roar________::6490"] +["fairsharing_::2603", "roar________::9762", "opendoar____::3342"] +["roar________::9647", "roar________::9705", "opendoar____::3319"] +["roar________::9597", "roar________::5052", "opendoar____::2441"] +["roar________::9531", "opendoar____::3284", "opendoar____::CUDI"] +["roar________::9474", "re3data_____::r3d100012347", "opendoar____::3316", "roar________::9507"] +["roar________::5717", "opendoar____::2533", "roar________::9142"] +["roar________::9094", "roar________::9276", "opendoar____::3199"] +["re3data_____::r3d100012866", "roar________::9057", "opendoar____::3721"] +["roar________::15285", "roar________::8928", "opendoar____::3409"] +["opendoar____::3177", "roar________::8877", "roar________::8879"] +["roar________::8798", "roar________::8812", "opendoar____::3150"] +["roar________::8677", "roar________::12182", "opendoar____::3096"] +["roar________::14836", "roar________::8672", "opendoar____::3112"] +["roar________::5704", "opendoar____::2528", "roar________::8647"] +["opendoar____::3087", "roar________::8504", "opendoar____::4500"] +["opendoar____::3078", "roar________::8405", "roar________::8716"] +["opendoar____::3183", "roar________::8353", "roar________::8952"] +["opendoar____::3111", "roar________::8316", "roar________::11060"] +["opendoar____::2959", "roar________::8103", "roar________::7932"] +["opendoar____::2725", "roar________::8003", "roar________::7943"] +["opendoar____::1312", "roar________::5486", "roar________::7767"] +["roar________::7498", "roar________::7483", "opendoar____::2824"] +["roar________::7486", "roar________::7374", "opendoar____::2844"] +["roar________::7338", "opendoar____::2858", "roar________::7367"] +["roar________::7161", "roar________::7151", "opendoar____::2722"] +["roar________::7005", "roar________::7056", "opendoar____::2070"] +["roar________::6485", "roar________::3810", "opendoar____::2151", "opendoar____::4642"] +["roar________::7244", "opendoar____::2769", "roar________::6334"] +["opendoar____::5116", "roar________::6212", "opendoar____::2619"] +["roar________::6167", "opendoar____::2717", "roar________::6580"] +["opendoar____::2571", "roar________::6033", "re3data_____::r3d100010701"] +["roar________::3049", "opendoar____::1892", "roar________::5759"] +["opendoar____::2969", "roar________::5747", "opendoar____::2546"] +["roar________::771", "opendoar____::1297", "roar________::5743"] +["opendoar____::2321", "roar________::5709", "roar________::4940"] +["opendoar____::1377", "roar________::234", "roar________::5707"] +["opendoar____::2519", "roar________::17002", "roar________::5652"] +["opendoar____::2496", "roar________::5618", "roar________::5498"] +["roar________::5541", "roar________::474", "opendoar____::1254"] +["roar________::5528", "opendoar____::1637", "roar________::1492"] +["roar________::5524", "opendoar____::1815", "roar________::2723", "roar________::4999"] +["roar________::5507", "roar________::395", "opendoar____::891"] +["opendoar____::678", "re3data_____::r3d100012060", "roar________::5502"] +["roar________::5482", "opendoar____::2477", "roar________::5214"] +["roar________::4684", "roar________::5480", "roar________::4626", "opendoar____::2385"] +["roar________::5446", "opendoar____::2503", "roar________::8469"] +["roar________::5437", "roar________::3115", "opendoar____::1644"] +["roar________::2335", "roar________::5403", "roar________::3083", "opendoar____::691"] +["opendoar____::1354", "roar________::5283", "roar________::3486"] +["roar________::5218", "opendoar____::2225", "roar________::4086"] +["opendoar____::2472", "roar________::5215", "roar________::9932"] +["roar________::3199", "roar________::5210", "opendoar____::1944"] +["roar________::8772", "opendoar____::2112", "roar________::3597", "roar________::5071"] +["opendoar____::2444", "roar________::5027", "roar________::5028"] +["roar________::939", "opendoar____::1563", "roar________::4986"] +["roar________::4975", "opendoar____::3499", "opendoar____::898"] +["opendoar____::2402", "roar________::6564", "roar________::4967"] +["opendoar____::472", "roar________::472", "roar________::4947"] +["roar________::3757", "roar________::4943", "opendoar____::2124"] +["opendoar____::1837", "roar________::4790", "roar________::2662"] +["opendoar____::1922", "roar________::3149", "roar________::4785"] +["re3data_____::r3d100011219", "opendoar____::1282", "roar________::4727"] +["roar________::13988", "opendoar____::1044", "roar________::4688"] +["roar________::2790", "opendoar____::1829", "roar________::4685"] +["opendoar____::2170", "roar________::4675", "roar________::3889", "re3data_____::r3d100011249"] +["roar________::4641", "opendoar____::1287", "roar________::108"] +["roar________::4292", "opendoar____::2028", "roar________::3484"] +["roar________::4245", "opendoar____::2314", "roar________::4304"] +["roar________::310", "roar________::3409", "opendoar____::1361"] +["roar________::3739", "roar________::3403", "opendoar____::2010"] +["opendoar____::1979", "roar________::5037", "roar________::3286"] +["roar________::3270", "opendoar____::2002", "roar________::3271"] +["opendoar____::287", "roar________::3086", "roar________::1207"] +["roar________::2970", "roar________::665", "opendoar____::1615"] +["roar________::2836", "opendoar____::1442", "roar________::1151"] +["roar________::2787", "opendoar____::1830", "roar________::2810", "roar________::2788"] +["roar________::2730", "roar________::2716", "opendoar____::1812"] +["opendoar____::1802", "roar________::2725", "roar________::2704", "opendoar____::1782"] +["opendoar____::1712", "roar________::2532", "roar________::2432"] +["re3data_____::r3d100013242", "opendoar____::1606", "roar________::124"] +["opendoar____::1584", "roar________::133", "roar________::2665"] +["roar________::3762", "opendoar____::1155", "roar________::1159"] +["opendoar____::1609", "roar________::3172", "roar________::1272"] +["opendoar____::3484", "roar________::10326", "roar________::1459"] diff --git a/data/out/completeOverlap.txt b/data/out/completeOverlap.txt new file mode 100644 index 0000000..e6bae63 --- /dev/null +++ b/data/out/completeOverlap.txt @@ -0,0 +1,1398 @@ +["fairsharing_::3226", "re3data_____::r3d100010601"] +["re3data_____::r3d100010929", "fairsharing_::3022"] +["re3data_____::r3d100011537", "fairsharing_::3237"] +["re3data_____::r3d100012369", "fairsharing_::2548"] +["re3data_____::r3d100000036", "fairsharing_::2495"] +["fairsharing_::1547", "re3data_____::r3d100010528"] +["re3data_____::r3d100011296", "fairsharing_::2621"] +["fairsharing_::3157", "re3data_____::r3d100011945"] +["fairsharing_::2879", "re3data_____::r3d100013202"] +["re3data_____::r3d100000044", "fairsharing_::1998"] +["fairsharing_::3019", "re3data_____::r3d100011707"] +["re3data_____::r3d100011484", "fairsharing_::3115"] +["fairsharing_::3138", "re3data_____::r3d100011704"] +["fairsharing_::2142", "re3data_____::r3d100010890"] +["re3data_____::r3d100013478", "fairsharing_::3275"] +["re3data_____::r3d100010918", "fairsharing_::3258"] +["fairsharing_::3278", "re3data_____::r3d100010167"] +["re3data_____::r3d100012374", "fairsharing_::3311"] +["fairsharing_::2855", "re3data_____::r3d100010411"] +["fairsharing_::2934", "re3data_____::r3d100013292"] +["re3data_____::r3d100013304", "fairsharing_::2950"] +["fairsharing_::2970", "re3data_____::r3d100010623"] +["fairsharing_::3008", "re3data_____::r3d100011580"] +["fairsharing_::3033", "re3data_____::r3d100011682"] +["re3data_____::r3d100010501", "fairsharing_::3060"] +["re3data_____::r3d100013023", "fairsharing_::3086"] +["re3data_____::r3d100013440", "fairsharing_::2589"] +["re3data_____::r3d100010956", "fairsharing_::3093"] +["re3data_____::r3d100013201", "fairsharing_::3105"] +["fairsharing_::3126", "re3data_____::r3d100010843"] +["fairsharing_::3136", "re3data_____::r3d100000043"] +["fairsharing_::3089", "re3data_____::r3d100012937"] +["fairsharing_::3336", "re3data_____::r3d100013649"] +["re3data_____::r3d100013208", "fairsharing_::3576"] +["fairsharing_::3329", "re3data_____::r3d100013564"] +["fairsharing_::2163", "re3data_____::r3d100000039"] +["re3data_____::r3d100012356", "fairsharing_::2649"] +["re3data_____::r3d100010328", "fairsharing_::2656"] +["fairsharing_::1860", "re3data_____::r3d100010538"] +["fairsharing_::2546", "re3data_____::r3d100011865"] +["fairsharing_::3326", "re3data_____::r3d100012308"] +["fairsharing_::2927", "re3data_____::r3d100011164"] +["re3data_____::r3d100013028", "fairsharing_::2857"] +["fairsharing_::3096", "re3data_____::r3d100013285"] +["fairsharing_::2707", "re3data_____::r3d100011965"] +["fairsharing_::3209", "re3data_____::r3d100012653"] +["fairsharing_::2262", "re3data_____::r3d100011928"] +["re3data_____::r3d100010211", "fairsharing_::2004"] +["fairsharing_::2817", "re3data_____::r3d100011098"] +["re3data_____::r3d100013080", "fairsharing_::3234"] +["fairsharing_::2770", "re3data_____::r3d100012646"] +["re3data_____::r3d100010283", "fairsharing_::1975"] +["re3data_____::r3d100011555", "fairsharing_::2153"] +["re3data_____::r3d100010473", "fairsharing_::2966"] +["re3data_____::r3d100012222", "fairsharing_::3063"] +["re3data_____::r3d100012625", "fairsharing_::3095"] +["re3data_____::r3d100012199", "fairsharing_::2940"] +["fairsharing_::3653", "re3data_____::r3d100010785"] +["fairsharing_::2155", "re3data_____::r3d100011553"] +["fairsharing_::2498", "re3data_____::r3d100010163"] +["fairsharing_::2164", "re3data_____::r3d100010905"] +["fairsharing_::3101", "re3data_____::r3d100010511"] +["re3data_____::r3d100011198", "fairsharing_::2406"] +["fairsharing_::3309", "re3data_____::r3d100013507"] +["fairsharing_::2451", "re3data_____::r3d100010464"] +["fairsharing_::2982", "re3data_____::r3d100010908"] +["re3data_____::r3d100011100", "fairsharing_::3235"] +["re3data_____::r3d100010261", "fairsharing_::2016"] +["re3data_____::r3d100012644", "fairsharing_::2066"] +["fairsharing_::3575", "re3data_____::r3d100013658"] +["fairsharing_::2222", "re3data_____::r3d100011126"] +["fairsharing_::2758", "re3data_____::r3d100012058"] +["re3data_____::r3d100011894", "fairsharing_::2315"] +["fairsharing_::1850", "re3data_____::r3d100010527"] +["fairsharing_::2863", "re3data_____::r3d100010413"] +["fairsharing_::3113", "re3data_____::r3d100013276"] +["fairsharing_::2509", "re3data_____::r3d100010146"] +["fairsharing_::1973", "re3data_____::r3d100010649"] +["re3data_____::r3d100010375", "fairsharing_::2667"] +["re3data_____::r3d100011298", "fairsharing_::2169"] +["re3data_____::r3d100012689", "fairsharing_::2300"] +["re3data_____::r3d100012156", "fairsharing_::3178"] +["fairsharing_::2403", "re3data_____::r3d100011200"] +["fairsharing_::2184", "re3data_____::r3d100011560"] +["fairsharing_::3229", "re3data_____::r3d100011311"] +["fairsharing_::3154", "re3data_____::r3d100011122"] +["fairsharing_::3192", "re3data_____::r3d100011012"] +["fairsharing_::2971", "re3data_____::r3d100010635"] +["re3data_____::r3d100012494", "fairsharing_::3025"] +["fairsharing_::3206", "re3data_____::r3d100011575"] +["fairsharing_::3012", "re3data_____::r3d100011691"] +["fairsharing_::2803", "re3data_____::r3d100011675"] +["re3data_____::r3d100010260", "fairsharing_::2883"] +["fairsharing_::3207", "re3data_____::r3d100013432"] +["re3data_____::r3d100012754", "fairsharing_::1890"] +["fairsharing_::2719", "re3data_____::r3d100012823"] +["re3data_____::r3d100010222", "fairsharing_::1845"] +["fairsharing_::3183", "re3data_____::r3d100013602"] +["fairsharing_::2805", "re3data_____::r3d100012190"] +["re3data_____::r3d100013428", "fairsharing_::2905"] +["re3data_____::r3d100011973", "fairsharing_::3021"] +["fairsharing_::2985", "re3data_____::r3d100010510"] +["fairsharing_::1867", "re3data_____::r3d100010228"] +["fairsharing_::2425", "re3data_____::r3d100010273"] +["re3data_____::r3d100011242", "fairsharing_::1865"] +["re3data_____::r3d100012344", "fairsharing_::2290"] +["fairsharing_::3048", "re3data_____::r3d100012431"] +["re3data_____::r3d100012471", "fairsharing_::2620"] +["re3data_____::r3d100012224", "fairsharing_::2684"] +["fairsharing_::2675", "re3data_____::r3d100010138"] +["re3data_____::r3d100013559", "fairsharing_::3313"] +["fairsharing_::3153", "re3data_____::r3d100010909"] +["re3data_____::r3d100010557", "fairsharing_::1793"] +["re3data_____::r3d100011741", "fairsharing_::3174"] +["re3data_____::r3d100010057", "fairsharing_::2108"] +["fairsharing_::2481", "re3data_____::r3d100012752"] +["fairsharing_::3020", "re3data_____::r3d100011679"] +["re3data_____::r3d100000034", "fairsharing_::2999"] +["fairsharing_::3088", "re3data_____::r3d100012841"] +["fairsharing_::2851", "re3data_____::r3d100013154"] +["re3data_____::r3d100010257", "fairsharing_::2485"] +["fairsharing_::1931", "re3data_____::r3d100010548"] +["re3data_____::r3d100013413", "fairsharing_::3220"] +["re3data_____::r3d100012278", "fairsharing_::3211"] +["re3data_____::r3d100012265", "fairsharing_::1878"] +["re3data_____::r3d100012354", "fairsharing_::1750"] +["re3data_____::r3d100012554", "fairsharing_::3158"] +["re3data_____::r3d100011840", "fairsharing_::2251"] +["re3data_____::r3d100013165", "fairsharing_::3092"] +["fairsharing_::3118", "re3data_____::r3d100010454"] +["re3data_____::r3d100010985", "fairsharing_::1929"] +["fairsharing_::2506", "re3data_____::r3d100011038"] +["fairsharing_::2511", "re3data_____::r3d100012701"] +["re3data_____::r3d100012418", "fairsharing_::3046"] +["re3data_____::r3d100011543", "fairsharing_::3103"] +["re3data_____::r3d100010215", "fairsharing_::2549"] +["re3data_____::r3d100011869", "fairsharing_::3172"] +["re3data_____::r3d100011326", "fairsharing_::3213"] +["fairsharing_::2252", "re3data_____::r3d100010259"] +["fairsharing_::2046", "re3data_____::r3d100010551"] +["re3data_____::r3d100013260", "fairsharing_::3218"] +["fairsharing_::2926", "re3data_____::r3d100013300"] +["re3data_____::r3d100011699", "fairsharing_::3230"] +["re3data_____::r3d100010144", "fairsharing_::3120"] +["re3data_____::r3d100011552", "fairsharing_::3000"] +["re3data_____::r3d100011793", "fairsharing_::2800"] +["fairsharing_::2813", "re3data_____::r3d100011048"] +["re3data_____::r3d100011137", "fairsharing_::2181"] +["fairsharing_::2513", "re3data_____::r3d100011948"] +["re3data_____::r3d100010735", "fairsharing_::3233"] +["re3data_____::r3d100012909", "fairsharing_::3084"] +["fairsharing_::3130", "re3data_____::r3d100010520"] +["fairsharing_::3232", "re3data_____::r3d100012622"] +["re3data_____::r3d100010143", "fairsharing_::3135"] +["re3data_____::r3d100012368", "fairsharing_::2325"] +["re3data_____::r3d100011843", "fairsharing_::3212"] +["re3data_____::r3d100010068", "fairsharing_::3068"] +["re3data_____::r3d100010483", "fairsharing_::3075"] +["re3data_____::r3d100012269", "fairsharing_::2554"] +["re3data_____::r3d100012586", "fairsharing_::2650"] +["re3data_____::r3d100011659", "fairsharing_::3036"] +["re3data_____::r3d100012335", "fairsharing_::3065"] +["re3data_____::r3d100010405", "fairsharing_::3094"] +["fairsharing_::3267", "re3data_____::r3d100011135"] +["fairsharing_::3147", "re3data_____::r3d100012574"] +["fairsharing_::2541", "re3data_____::r3d100010418"] +["re3data_____::r3d100012837", "fairsharing_::2025"] +["re3data_____::r3d100013193", "fairsharing_::2942"] +["fairsharing_::3107", "re3data_____::r3d100011723"] +["fairsharing_::3302", "re3data_____::r3d100012553"] +["fairsharing_::1953", "re3data_____::r3d100010276"] +["fairsharing_::2936", "re3data_____::r3d100013313"] +["fairsharing_::3300", "re3data_____::r3d100013668"] +["fairsharing_::2811", "re3data_____::r3d100012490"] +["fairsharing_::3059", "re3data_____::r3d100010505"] +["fairsharing_::2880", "re3data_____::r3d100010245"] +["re3data_____::r3d100012693", "fairsharing_::2503"] +["fairsharing_::3231", "re3data_____::r3d100012621"] +["re3data_____::r3d100012041", "fairsharing_::2804"] +["re3data_____::r3d100010917", "fairsharing_::3162"] +["fairsharing_::2362", "re3data_____::r3d100011049"] +["re3data_____::r3d100013272", "fairsharing_::3243"] +["re3data_____::r3d100010376", "fairsharing_::3014"] +["re3data_____::r3d100010747", "fairsharing_::2145"] +["fairsharing_::2935", "re3data_____::r3d100013294"] +["fairsharing_::2698", "re3data_____::r3d100010801"] +["re3data_____::r3d100011177", "fairsharing_::3007"] +["fairsharing_::3141", "re3data_____::r3d100010996"] +["fairsharing_::3052", "re3data_____::r3d100010109"] +["fairsharing_::3066", "re3data_____::r3d100012336"] +["re3data_____::r3d100013311", "fairsharing_::2932"] +["re3data_____::r3d100010226", "fairsharing_::2974"] +["re3data_____::r3d100010728", "fairsharing_::2976"] +["fairsharing_::2502", "re3data_____::r3d100010230"] +["re3data_____::r3d100010942", "fairsharing_::2993"] +["fairsharing_::2954", "re3data_____::r3d100010196"] +["fairsharing_::2996", "re3data_____::r3d100011030"] +["re3data_____::r3d100012593", "fairsharing_::2563"] +["fairsharing_::3123", "re3data_____::r3d100010210"] +["fairsharing_::3031", "re3data_____::r3d100011131"] +["fairsharing_::3079", "re3data_____::r3d100012557"] +["fairsharing_::2759", "re3data_____::r3d100012388"] +["fairsharing_::1641", "re3data_____::r3d100011330"] +["re3data_____::r3d100011958", "fairsharing_::3062"] +["fairsharing_::3133", "re3data_____::r3d100011957"] +["re3data_____::r3d100010177", "fairsharing_::3069"] +["re3data_____::r3d100013199", "fairsharing_::2876"] +["re3data_____::r3d100013307", "fairsharing_::2928"] +["fairsharing_::1589", "re3data_____::r3d100010626"] +["re3data_____::r3d100011904", "fairsharing_::2448"] +["fairsharing_::1738", "re3data_____::r3d100010741"] +["fairsharing_::2743", "re3data_____::r3d100013187"] +["re3data_____::r3d100010803", "fairsharing_::1853"] +["fairsharing_::2437", "re3data_____::r3d100010655"] +["re3data_____::r3d100010648", "fairsharing_::1969"] +["re3data_____::r3d100010574", "fairsharing_::1961"] +["fairsharing_::2265", "re3data_____::r3d100013331"] +["re3data_____::r3d100013302", "fairsharing_::2271"] +["fairsharing_::2057", "re3data_____::r3d100010555"] +["re3data_____::r3d100012858", "fairsharing_::2671"] +["fairsharing_::2195", "re3data_____::r3d100011876"] +["fairsharing_::2209", "re3data_____::r3d100011601"] +["re3data_____::r3d100010469", "fairsharing_::2257"] +["fairsharing_::3284", "re3data_____::r3d100013433"] +["fairsharing_::2404", "re3data_____::r3d100011199"] +["fairsharing_::2386", "re3data_____::r3d100011197"] +["fairsharing_::2402", "re3data_____::r3d100011195"] +["fairsharing_::2405", "re3data_____::r3d100011196"] +["re3data_____::r3d100012835", "fairsharing_::3104"] +["re3data_____::r3d100010914", "fairsharing_::2496"] +["re3data_____::r3d100010660", "fairsharing_::3259"] +["re3data_____::r3d100013591", "fairsharing_::3339"] +["re3data_____::r3d100010159", "fairsharing_::3024"] +["fairsharing_::3081", "re3data_____::r3d100012682"] +["re3data_____::r3d100013429", "fairsharing_::3117"] +["re3data_____::r3d100013503", "fairsharing_::3299"] +["re3data_____::r3d100011554", "fairsharing_::2152"] +["re3data_____::r3d100010901", "fairsharing_::1868"] +["fairsharing_::2507", "re3data_____::r3d100012627"] +["fairsharing_::3321", "re3data_____::r3d100013648"] +["fairsharing_::2601", "re3data_____::r3d100011147"] +["re3data_____::r3d100000037", "fairsharing_::2435"] +["re3data_____::r3d100011104", "fairsharing_::2207"] +["re3data_____::r3d100010834", "fairsharing_::2010"] +["re3data_____::r3d100010255", "fairsharing_::2454"] +["fairsharing_::2019", "re3data_____::r3d100010106"] +["fairsharing_::1978", "re3data_____::r3d100010775"] +["re3data_____::r3d100013358", "fairsharing_::2968"] +["re3data_____::r3d100010377", "fairsharing_::2200"] +["re3data_____::r3d100012481", "fairsharing_::2214"] +["re3data_____::r3d100013312", "fairsharing_::2961"] +["re3data_____::r3d100000038", "fairsharing_::2494"] +["fairsharing_::1730", "re3data_____::r3d100012862"] +["fairsharing_::1885", "re3data_____::r3d100011479"] +["re3data_____::r3d100012002", "fairsharing_::2885"] +["fairsharing_::1680", "re3data_____::r3d100011294"] +["re3data_____::r3d100013298", "fairsharing_::2917"] +["re3data_____::r3d100012380", "fairsharing_::3308"] +["fairsharing_::1927", "re3data_____::r3d100010889"] +["re3data_____::r3d100011558", "fairsharing_::1726"] +["fairsharing_::3003", "re3data_____::r3d100011469"] +["re3data_____::r3d100012629", "fairsharing_::2082"] +["re3data_____::r3d100011527", "fairsharing_::1888"] +["fairsharing_::1700", "re3data_____::r3d100012733"] +["re3data_____::r3d100010085", "fairsharing_::3198"] +["re3data_____::r3d100013265", "fairsharing_::3303"] +["re3data_____::r3d100011316", "fairsharing_::2110"] +["re3data_____::r3d100010762", "fairsharing_::3167"] +["fairsharing_::2773", "re3data_____::r3d100013650"] +["fairsharing_::3004", "re3data_____::r3d100011045"] +["fairsharing_::3010", "re3data_____::r3d100013339"] +["fairsharing_::1803", "re3data_____::r3d100012136"] +["re3data_____::r3d100010653", "fairsharing_::1967"] +["re3data_____::r3d100010692", "fairsharing_::2128"] +["fairsharing_::1882", "re3data_____::r3d100011569"] +["re3data_____::r3d100011313", "fairsharing_::3035"] +["re3data_____::r3d100010227", "fairsharing_::3125"] +["re3data_____::r3d100011241", "fairsharing_::2889"] +["re3data_____::r3d100010789", "fairsharing_::1846"] +["re3data_____::r3d100012723", "fairsharing_::1653"] +["fairsharing_::2991", "re3data_____::r3d100010519"] +["fairsharing_::2095", "re3data_____::r3d100012457"] +["fairsharing_::1707", "re3data_____::r3d100011089"] +["re3data_____::r3d100012461", "fairsharing_::1884"] +["fairsharing_::1691", "re3data_____::r3d100012195"] +["fairsharing_::3001", "re3data_____::r3d100010076"] +["fairsharing_::3064", "re3data_____::r3d100012141"] +["fairsharing_::2151", "re3data_____::r3d100012842"] +["re3data_____::r3d100011033", "fairsharing_::1964"] +["re3data_____::r3d100013470", "fairsharing_::2856"] +["re3data_____::r3d100010650", "fairsharing_::1983"] +["re3data_____::r3d100013647", "fairsharing_::2531"] +["fairsharing_::3071", "re3data_____::r3d100012971"] +["fairsharing_::3050", "re3data_____::r3d100010530"] +["re3data_____::r3d100011037", "fairsharing_::2378"] +["re3data_____::r3d100012169", "fairsharing_::1620"] +["re3data_____::r3d100012783", "fairsharing_::2047"] +["re3data_____::r3d100010218", "fairsharing_::1572"] +["re3data_____::r3d100012381", "fairsharing_::2267"] +["fairsharing_::2342", "re3data_____::r3d100011637"] +["re3data_____::r3d100010815", "fairsharing_::2595"] +["re3data_____::r3d100010424", "fairsharing_::1699"] +["re3data_____::r3d100013542", "fairsharing_::3055"] +["fairsharing_::2113", "re3data_____::r3d100010675"] +["re3data_____::r3d100010779", "fairsharing_::1981"] +["re3data_____::r3d100013308", "fairsharing_::1933"] +["fairsharing_::2818", "re3data_____::r3d100010338"] +["fairsharing_::1823", "re3data_____::r3d100010550"] +["re3data_____::r3d100013295", "fairsharing_::2679"] +["fairsharing_::1936", "re3data_____::r3d100012247"] +["re3data_____::r3d100011222", "fairsharing_::1932"] +["fairsharing_::1866", "re3data_____::r3d100010861"] +["re3data_____::r3d100013316", "fairsharing_::1698"] +["re3data_____::r3d100012516", "fairsharing_::2216"] +["re3data_____::r3d100012092", "fairsharing_::1802"] +["re3data_____::r3d100010205", "fairsharing_::2042"] +["re3data_____::r3d100011373", "fairsharing_::2374"] +["fairsharing_::1807", "re3data_____::r3d100011301"] +["re3data_____::r3d100011087", "fairsharing_::1574"] +["re3data_____::r3d100010197", "fairsharing_::1796"] +["fairsharing_::3197", "re3data_____::r3d100010072"] +["re3data_____::r3d100011369", "fairsharing_::3002"] +["fairsharing_::2097", "re3data_____::r3d100010565"] +["re3data_____::r3d100010891", "fairsharing_::1639"] +["re3data_____::r3d100010857", "fairsharing_::2750"] +["re3data_____::r3d100012894", "fairsharing_::3222"] +["fairsharing_::2566", "re3data_____::r3d100011761"] +["re3data_____::r3d100011796", "fairsharing_::3043"] +["fairsharing_::1716", "re3data_____::r3d100011530"] +["re3data_____::r3d100012912", "fairsharing_::2781"] +["fairsharing_::3047", "re3data_____::r3d100010596"] +["fairsharing_::2223", "re3data_____::r3d100010685"] +["fairsharing_::3085", "re3data_____::r3d100013018"] +["fairsharing_::2348", "re3data_____::r3d100013293"] +["re3data_____::r3d100011046", "fairsharing_::1729"] +["re3data_____::r3d100010591", "fairsharing_::1582"] +["fairsharing_::3239", "re3data_____::r3d100010608"] +["re3data_____::r3d100012321", "fairsharing_::1834"] +["fairsharing_::3028", "re3data_____::r3d100011011"] +["fairsharing_::1655", "re3data_____::r3d100012724"] +["fairsharing_::2839", "re3data_____::r3d100011272"] +["re3data_____::r3d100012517", "fairsharing_::1745"] +["fairsharing_::1913", "re3data_____::r3d100010248"] +["re3data_____::r3d100010311", "fairsharing_::3139"] +["re3data_____::r3d100010050", "fairsharing_::2433"] +["fairsharing_::2259", "re3data_____::r3d100012603"] +["re3data_____::r3d100010312", "fairsharing_::3177"] +["re3data_____::r3d100012920", "fairsharing_::3187"] +["re3data_____::r3d100011713", "fairsharing_::2849"] +["re3data_____::r3d100013148", "fairsharing_::2833"] +["fairsharing_::2992", "re3data_____::r3d100010532"] +["fairsharing_::1880", "re3data_____::r3d100012458"] +["fairsharing_::1883", "re3data_____::r3d100012266"] +["re3data_____::r3d100011306", "fairsharing_::2094"] +["re3data_____::r3d100013207", "fairsharing_::3152"] +["re3data_____::r3d100010480", "fairsharing_::3042"] +["re3data_____::r3d100010526", "fairsharing_::3132"] +["re3data_____::r3d100010539", "fairsharing_::1561"] +["re3data_____::r3d100010223", "fairsharing_::1588"] +["fairsharing_::1661", "re3data_____::r3d100010808"] +["fairsharing_::2419", "re3data_____::r3d100011124"] +["re3data_____::r3d100010566", "fairsharing_::2100"] +["fairsharing_::1644", "re3data_____::r3d100010419"] +["re3data_____::r3d100010617", "fairsharing_::1816"] +["fairsharing_::1881", "re3data_____::r3d100012459"] +["re3data_____::r3d100010676", "fairsharing_::2053"] +["fairsharing_::1930", "re3data_____::r3d100010978"] +["re3data_____::r3d100010107", "fairsharing_::1944"] +["fairsharing_::1954", "re3data_____::r3d100012731"] +["fairsharing_::2909", "re3data_____::r3d100012214"] +["re3data_____::r3d100011323", "fairsharing_::2669"] +["fairsharing_::2052", "re3data_____::r3d100012086"] +["fairsharing_::2399", "re3data_____::r3d100013314"] +["fairsharing_::2663", "re3data_____::r3d100010346"] +["re3data_____::r3d100010229", "fairsharing_::2888"] +["re3data_____::r3d100012702", "fairsharing_::2346"] +["re3data_____::r3d100012018", "fairsharing_::2371"] +["re3data_____::r3d100013547", "fairsharing_::2389"] +["re3data_____::r3d100000045", "fairsharing_::2414"] +["fairsharing_::2539", "re3data_____::r3d100010525"] +["re3data_____::r3d100012078", "fairsharing_::1841"] +["re3data_____::r3d100011905", "fairsharing_::2449"] +["fairsharing_::1609", "re3data_____::r3d100010414"] +["fairsharing_::2253", "re3data_____::r3d100011861"] +["fairsharing_::2146", "re3data_____::r3d100013301"] +["re3data_____::r3d100012728", "fairsharing_::1706"] +["fairsharing_::2941", "re3data_____::r3d100013305"] +["re3data_____::r3d100011728", "fairsharing_::2947"] +["fairsharing_::1875", "re3data_____::r3d100010604"] +["re3data_____::r3d100010421", "fairsharing_::2106"] +["re3data_____::r3d100012715", "fairsharing_::2242"] +["fairsharing_::3320", "re3data_____::r3d100013646"] +["fairsharing_::3015", "re3data_____::r3d100010882"] +["re3data_____::r3d100011141", "fairsharing_::2809"] +["fairsharing_::2512", "re3data_____::r3d100000012"] +["fairsharing_::1934", "re3data_____::r3d100010846"] +["re3data_____::r3d100010185", "fairsharing_::1649"] +["re3data_____::r3d100010417", "fairsharing_::1951"] +["re3data_____::r3d100013263", "fairsharing_::2254"] +["re3data_____::r3d100011910", "fairsharing_::2662"] +["re3data_____::r3d100012384", "fairsharing_::2672"] +["re3data_____::r3d100012352", "fairsharing_::2594"] +["re3data_____::r3d100013408", "fairsharing_::2518"] +["re3data_____::r3d100012351", "fairsharing_::2439"] +["re3data_____::r3d100013325", "fairsharing_::2975"] +["re3data_____::r3d100010563", "fairsharing_::2098"] +["re3data_____::r3d100010490", "fairsharing_::2997"] +["re3data_____::r3d100010327", "fairsharing_::2044"] +["fairsharing_::2977", "re3data_____::r3d100010636"] +["re3data_____::r3d100010552", "fairsharing_::1616"] +["re3data_____::r3d100010814", "fairsharing_::2156"] +["re3data_____::r3d100010493", "fairsharing_::2597"] +["fairsharing_::2581", "re3data_____::r3d100012355"] +["re3data_____::r3d100011570", "fairsharing_::2189"] +["re3data_____::r3d100011478", "fairsharing_::1683"] +["fairsharing_::2748", "re3data_____::r3d100012917"] +["fairsharing_::3580", "re3data_____::r3d100011915"] +["fairsharing_::2573", "re3data_____::r3d100012668"] +["re3data_____::r3d100010859", "fairsharing_::1120"] +["fairsharing_::2068", "re3data_____::r3d100013715"] +["opendoar____::7771", "re3data_____::r3d100011189"] +["re3data_____::r3d100013399", "roar________::13934", "opendoar____::3896"] +["re3data_____::r3d100013519", "opendoar____::4732"] +["opendoar____::4872", "re3data_____::r3d100013525"] +["re3data_____::r3d100013645", "opendoar____::10204"] +["roar________::1045", "opendoar____::835"] +["opendoar____::1277", "roar________::132"] +["opendoar____::185", "roar________::668"] +["roar________::4729", "opendoar____::709"] +["roar________::1199", "opendoar____::644"] +["roar________::1380", "opendoar____::1366"] +["roar________::891", "opendoar____::1321"] +["opendoar____::1367", "roar________::889"] +["opendoar____::1617", "roar________::2524", "roar________::884"] +["roar________::348", "opendoar____::1459"] +["opendoar____::509", "roar________::750"] +["opendoar____::1262", "roar________::1018"] +["opendoar____::150", "roar________::5519"] +["roar________::536", "opendoar____::544"] +["roar________::1387", "opendoar____::1012"] +["opendoar____::1235", "roar________::820", "roar________::2417"] +["roar________::617", "opendoar____::483"] +["roar________::307", "opendoar____::592"] +["roar________::343", "opendoar____::98"] +["opendoar____::2606", "roar________::6412"] +["roar________::326", "opendoar____::1152"] +["opendoar____::194", "roar________::729"] +["opendoar____::626", "roar________::4721"] +["roar________::1479", "opendoar____::1456"] +["roar________::4385", "opendoar____::2309"] +["roar________::3268", "opendoar____::2269"] +["roar________::1404", "opendoar____::574"] +["roar________::342", "opendoar____::93"] +["opendoar____::2310", "roar________::4376"] +["opendoar____::1600", "roar________::303"] +["roar________::464", "opendoar____::1876"] +["roar________::344", "opendoar____::438"] +["opendoar____::1358", "roar________::970"] +["roar________::314", "opendoar____::89"] +["opendoar____::928", "roar________::1302"] +["roar________::1108", "opendoar____::547"] +["roar________::183", "opendoar____::933"] +["opendoar____::91", "roar________::335"] +["opendoar____::676", "roar________::324"] +["roar________::3713", "opendoar____::2107"] +["roar________::332", "opendoar____::96"] +["roar________::526", "opendoar____::468"] +["opendoar____::1168", "roar________::403"] +["opendoar____::2445", "roar________::5030"] +["opendoar____::2414", "roar________::3873"] +["roar________::911", "opendoar____::984"] +["opendoar____::9491", "roar________::3629"] +["opendoar____::433", "roar________::336"] +["roar________::3253", "opendoar____::1960"] +["roar________::1105", "opendoar____::2045"] +["opendoar____::2354", "roar________::4199"] +["opendoar____::1607", "roar________::1067"] +["roar________::612", "opendoar____::880"] +["roar________::1167", "opendoar____::1548"] +["opendoar____::1827", "roar________::2808"] +["roar________::4124", "opendoar____::2248"] +["roar________::725", "opendoar____::1508"] +["opendoar____::2031", "roar________::3513"] +["opendoar____::473", "roar________::551"] +["opendoar____::2062", "roar________::3607"] +["roar________::6884", "opendoar____::2766"] +["opendoar____::2160", "roar________::3841"] +["roar________::5187", "opendoar____::906"] +["opendoar____::2155", "roar________::2959"] +["opendoar____::85", "roar________::327"] +["opendoar____::3276", "roar________::26"] +["roar________::2821", "opendoar____::1831"] +["roar________::3053", "opendoar____::1886"] +["opendoar____::542", "roar________::1104"] +["roar________::5448", "roar________::1008", "opendoar____::631"] +["roar________::2283", "opendoar____::1616"] +["opendoar____::1620", "roar________::1069"] +["opendoar____::2085", "roar________::5456", "roar________::3641"] +["roar________::3630", "opendoar____::2091"] +["opendoar____::1703", "roar________::1563"] +["opendoar____::1852", "roar________::2870"] +["roar________::325", "opendoar____::1598"] +["roar________::4985", "roar________::4531", "opendoar____::2360"] +["opendoar____::66", "roar________::4638"] +["opendoar____::2074", "roar________::3644"] +["opendoar____::1710", "roar________::2379"] +["opendoar____::2215", "roar________::4029"] +["roar________::2837", "opendoar____::699"] +["roar________::119", "opendoar____::24"] +["opendoar____::2638", "roar________::6589"] +["opendoar____::484", "roar________::627"] +["roar________::1458", "opendoar____::1554"] +["roar________::743", "opendoar____::1167"] +["opendoar____::2568", "roar________::5959"] +["roar________::1228", "opendoar____::1832"] +["opendoar____::11", "roar________::67"] +["opendoar____::1477", "roar________::1107"] +["roar________::3653", "opendoar____::2134"] +["opendoar____::70", "roar________::266"] +["roar________::33", "opendoar____::957"] +["roar________::4913", "opendoar____::2577"] +["opendoar____::1247", "roar________::95"] +["roar________::351", "opendoar____::1153"] +["opendoar____::1478", "roar________::88"] +["roar________::2565", "opendoar____::2104"] +["opendoar____::2007", "roar________::3374"] +["opendoar____::1507", "roar________::1307"] +["opendoar____::1733", "roar________::1564"] +["opendoar____::1955", "roar________::3194"] +["roar________::3642", "opendoar____::2075"] +["roar________::58", "opendoar____::2371"] +["roar________::862", "opendoar____::217"] +["roar________::5870", "opendoar____::2563"] +["roar________::328", "opendoar____::431"] +["roar________::1144", "opendoar____::1315"] +["roar________::5533", "opendoar____::839"] +["roar________::6882", "opendoar____::2806"] +["roar________::985", "opendoar____::1318"] +["opendoar____::2372", "roar________::5574", "roar________::4578"] +["opendoar____::1244", "roar________::232"] +["opendoar____::1844", "roar________::514"] +["roar________::3924", "roar________::5700", "opendoar____::2176"] +["opendoar____::2439", "roar________::5441"] +["opendoar____::2265", "roar________::4171"] +["opendoar____::1423", "roar________::1194"] +["opendoar____::1205", "roar________::125"] +["roar________::933", "opendoar____::226"] +["opendoar____::2590", "roar________::6083"] +["opendoar____::270", "roar________::1051"] +["opendoar____::923", "roar________::924"] +["opendoar____::1611", "roar________::137"] +["opendoar____::913", "roar________::910"] +["opendoar____::203", "roar________::800"] +["roar________::4122", "opendoar____::2237"] +["opendoar____::2285", "roar________::4207"] +["opendoar____::1988", "roar________::3302"] +["opendoar____::2214", "roar________::4028"] +["roar________::6914", "opendoar____::2660"] +["opendoar____::2900", "roar________::6878"] +["opendoar____::2770", "roar________::6838"] +["opendoar____::2591", "roar________::6829"] +["roar________::6707", "opendoar____::2878"] +["opendoar____::2694", "roar________::6555"] +["opendoar____::2653", "roar________::6536"] +["opendoar____::2773", "roar________::6452"] +["opendoar____::2764", "roar________::6363"] +["roar________::6256", "opendoar____::2597"] +["roar________::6232", "opendoar____::2782"] +["roar________::6062", "opendoar____::2584"] +["roar________::6058", "opendoar____::2576"] +["roar________::5943", "opendoar____::2566"] +["opendoar____::2539", "roar________::5891", "roar________::11212"] +["opendoar____::2559", "roar________::5850"] +["opendoar____::3362", "roar________::5835"] +["roar________::5791", "opendoar____::2554"] +["roar________::5774", "opendoar____::2921"] +["opendoar____::1509", "roar________::126", "roar________::5711"] +["roar________::5685", "opendoar____::2382", "roar________::4624"] +["roar________::5606", "opendoar____::2555"] +["opendoar____::1622", "roar________::5577"] +["opendoar____::1266", "roar________::5545"] +["opendoar____::1444", "roar________::5542"] +["opendoar____::415", "roar________::5521"] +["opendoar____::651", "roar________::5468"] +["roar________::4751", "roar________::5452", "opendoar____::2423"] +["roar________::5402", "opendoar____::1484"] +["roar________::5272", "opendoar____::2508"] +["roar________::5269", "opendoar____::1465"] +["roar________::5219", "opendoar____::1283"] +["roar________::5158", "opendoar____::2464"] +["roar________::5068", "opendoar____::2454"] +["roar________::5006", "opendoar____::1539"] +["opendoar____::2286", "roar________::4997"] +["opendoar____::1092", "roar________::4936"] +["roar________::4815", "opendoar____::2425"] +["roar________::4694", "opendoar____::2404"] +["opendoar____::2421", "roar________::4784"] +["opendoar____::2376", "roar________::4588"] +["roar________::4591", "opendoar____::2375"] +["roar________::5074", "opendoar____::2409"] +["roar________::3952", "opendoar____::2181"] +["roar________::3745", "opendoar____::2894"] +["opendoar____::2206", "roar________::4023"] +["opendoar____::2207", "roar________::4025"] +["roar________::4071", "opendoar____::2229"] +["opendoar____::2025", "roar________::3456"] +["roar________::3515", "opendoar____::2042"] +["roar________::4272", "opendoar____::2316"] +["opendoar____::2016", "roar________::3466"] +["opendoar____::2017", "roar________::3470"] +["roar________::4380", "opendoar____::2307"] +["roar________::3190", "opendoar____::1963"] +["roar________::12789", "opendoar____::1939", "roar________::15586", "roar________::3258"] +["opendoar____::907", "roar________::3467"] +["opendoar____::1969", "roar________::3242"] +["roar________::3359", "opendoar____::2005"] +["roar________::3726", "opendoar____::2122"] +["opendoar____::2299", "roar________::4388"] +["roar________::3471", "opendoar____::2020"] +["roar________::3260", "opendoar____::1961"] +["opendoar____::1862", "roar________::2927", "roar________::3756"] +["opendoar____::2036", "roar________::3232"] +["roar________::2806", "opendoar____::1833"] +["roar________::2917", "opendoar____::1856"] +["opendoar____::2304", "roar________::4383"] +["opendoar____::1817", "roar________::2760"] +["roar________::2599", "opendoar____::1766"] +["roar________::4384", "opendoar____::2308"] +["roar________::2622", "opendoar____::1767"] +["opendoar____::1646", "roar________::4640"] +["opendoar____::2008", "roar________::3408"] +["opendoar____::1989", "roar________::3324"] +["roar________::3468", "opendoar____::2018"] +["opendoar____::2113", "roar________::2678"] +["opendoar____::942", "roar________::2465"] +["roar________::2466", "opendoar____::1716"] +["opendoar____::1664", "roar________::2471"] +["opendoar____::1859", "roar________::2844"] +["roar________::3469", "opendoar____::2019"] +["roar________::3862", "opendoar____::2165"] +["opendoar____::1918", "roar________::3146"] +["opendoar____::1835", "roar________::2822"] +["opendoar____::2792", "roar________::518"] +["opendoar____::1883", "roar________::520"] +["roar________::616", "opendoar____::1593"] +["roar________::550", "opendoar____::1633"] +["opendoar____::1788", "roar________::2703"] +["roar________::3648", "opendoar____::2081"] +["roar________::2464", "opendoar____::1714"] +["opendoar____::2204", "roar________::4031"] +["opendoar____::1894", "roar________::3060"] +["opendoar____::292", "roar________::2317"] +["opendoar____::2399", "roar________::1128"] +["opendoar____::1475", "roar________::379"] +["roar________::653", "opendoar____::1564"] +["roar________::968", "opendoar____::234"] +["roar________::1315", "opendoar____::1524"] +["roar________::1375", "opendoar____::1686"] +["roar________::3283", "opendoar____::1976"] +["opendoar____::1457", "roar________::4639"] +["roar________::1089", "opendoar____::1502"] +["opendoar____::1504", "roar________::1098"] +["roar________::1333", "opendoar____::1389"] +["roar________::3506", "opendoar____::2043"] +["roar________::1313", "opendoar____::1374"] +["opendoar____::2348", "roar________::4465"] +["roar________::610", "opendoar____::1426"] +["roar________::135", "opendoar____::3974"] +["roar________::173", "opendoar____::1460"] +["roar________::424", "opendoar____::1309"] +["roar________::2621", "opendoar____::1768"] +["roar________::1094", "opendoar____::1630"] +["roar________::3643", "opendoar____::2083"] +["opendoar____::1264", "roar________::446"] +["roar________::145", "opendoar____::1371"] +["opendoar____::1251", "roar________::916"] +["roar________::931", "opendoar____::1448"] +["roar________::1300", "opendoar____::1058"] +["opendoar____::1054", "roar________::578"] +["opendoar____::1821", "roar________::2786"] +["roar________::997", "opendoar____::1162"] +["opendoar____::1163", "roar________::998"] +["roar________::2393", "opendoar____::1709"] +["roar________::755", "opendoar____::1285"] +["roar________::3969", "opendoar____::1022"] +["opendoar____::1194", "roar________::1033"] +["roar________::1092", "opendoar____::1853"] +["roar________::805", "opendoar____::1428"] +["opendoar____::989", "roar________::1102"] +["opendoar____::1625", "roar________::1169"] +["opendoar____::1002", "roar________::920"] +["roar________::1320", "opendoar____::969"] +["roar________::726", "opendoar____::974"] +["roar________::762", "opendoar____::1062"] +["opendoar____::1189", "roar________::3787"] +["roar________::2326", "opendoar____::1481"] +["roar________::2946", "opendoar____::1864"] +["roar________::4990", "opendoar____::1119"] +["roar________::1011", "opendoar____::759"] +["opendoar____::4125", "roar________::1369"] +["opendoar____::2266", "roar________::4170"] +["opendoar____::905", "roar________::790"] +["opendoar____::1841", "roar________::2830"] +["opendoar____::871", "roar________::989"] +["roar________::1498", "opendoar____::117"] +["opendoar____::508", "roar________::731"] +["opendoar____::456", "roar________::1460"] +["roar________::1249", "opendoar____::293"] +["opendoar____::850", "roar________::1242"] +["roar________::702", "opendoar____::595"] +["opendoar____::779", "roar________::1055"] +["opendoar____::1814", "roar________::2742"] +["opendoar____::648", "roar________::1126"] +["roar________::1146", "opendoar____::1246"] +["roar________::641", "opendoar____::174"] +["opendoar____::531", "roar________::1017"] +["roar________::1444", "opendoar____::304"] +["opendoar____::575", "roar________::1417"] +["roar________::837", "opendoar____::211"] +["opendoar____::951", "roar________::645"] +["roar________::1147", "opendoar____::274", "roar________::13727"] +["roar________::2338", "opendoar____::1031"] +["roar________::6313", "opendoar____::2750"] +["roar________::747", "opendoar____::964", "roar________::5681"] +["opendoar____::2475", "roar________::5213"] +["roar________::5002", "opendoar____::2260"] +["opendoar____::2340", "roar________::4951"] +["roar________::4928", "opendoar____::2334"] +["opendoar____::2391", "roar________::4219"] +["opendoar____::296", "roar________::3840"] +["opendoar____::2180", "roar________::3951"] +["opendoar____::2178", "roar________::3899"] +["opendoar____::2205", "roar________::4033"] +["roar________::4387", "opendoar____::2301"] +["opendoar____::2346", "roar________::4467"] +["roar________::3366", "opendoar____::2030"] +["roar________::2530", "opendoar____::1756"] +["roar________::3375", "roar________::2854", "opendoar____::1842"] +["roar________::1468", "opendoar____::1503"] +["roar________::40", "opendoar____::1294"] +["roar________::2413", "opendoar____::1269"] +["opendoar____::1275", "roar________::583"] +["opendoar____::991", "roar________::1420"] +["roar________::1523", "opendoar____::936"] +["roar________::264", "opendoar____::1098"] +["opendoar____::1057", "roar________::1436"] +["opendoar____::926", "roar________::3320"] +["roar________::4087", "opendoar____::642"] +["opendoar____::487", "roar________::2407"] +["opendoar____::307", "roar________::1353"] +["opendoar____::2575", "roar________::5645"] +["roar________::5562", "opendoar____::1690"] +["opendoar____::2292", "roar________::4988"] +["opendoar____::2386", "roar________::4669"] +["roar________::3482", "opendoar____::1403"] +["opendoar____::2001", "roar________::3352"] +["roar________::3307", "opendoar____::2022"] +["roar________::4002", "opendoar____::2209", "roar________::4026"] +["roar________::2993", "opendoar____::1870"] +["opendoar____::1511", "roar________::220", "roar________::4686"] +["roar________::1462", "opendoar____::309"] +["roar________::6936", "opendoar____::2924"] +["roar________::6425", "opendoar____::2793"] +["roar________::6031", "opendoar____::2573"] +["opendoar____::2504", "roar________::5415"] +["opendoar____::2427", "roar________::4835"] +["opendoar____::2086", "roar________::3665"] +["roar________::3051", "opendoar____::1893"] +["roar________::5022", "opendoar____::1595"] +["opendoar____::1834", "roar________::2360"] +["roar________::876", "opendoar____::1055"] +["opendoar____::1263", "roar________::447"] +["opendoar____::1100", "roar________::1461"] +["opendoar____::245", "roar________::987"] +["roar________::3323", "opendoar____::1987"] +["opendoar____::362", "roar________::1424"] +["roar________::5450", "opendoar____::945"] +["roar________::4105", "opendoar____::2271"] +["opendoar____::1619", "roar________::4945", "roar________::1088", "roar________::5529"] +["opendoar____::2268", "roar________::4156"] +["opendoar____::1407", "roar________::1524"] +["roar________::658", "opendoar____::1032"] +["roar________::5952", "roar________::5697", "opendoar____::2522"] +["opendoar____::1676", "roar________::990"] +["opendoar____::885", "roar________::1547"] +["roar________::1525", "opendoar____::373"] +["opendoar____::2502", "roar________::5576"] +["roar________::522", "opendoar____::1280"] +["opendoar____::916", "roar________::781"] +["opendoar____::2130", "roar________::3773"] +["opendoar____::2121", "roar________::3754"] +["opendoar____::2179", "roar________::3929"] +["roar________::786", "opendoar____::201"] +["roar________::2405", "opendoar____::1707"] +["opendoar____::1517", "roar________::698"] +["roar________::497", "opendoar____::136"] +["roar________::1254", "opendoar____::1573"] +["roar________::4921", "opendoar____::2257"] +["roar________::3007", "opendoar____::1176"] +["opendoar____::2105", "roar________::3684"] +["roar________::1546", "opendoar____::1368"] +["roar________::5773", "opendoar____::1224"] +["opendoar____::1629", "roar________::1257"] +["roar________::965", "opendoar____::300"] +["roar________::1258", "opendoar____::583"] +["opendoar____::504", "roar________::705"] +["opendoar____::407", "roar________::185"] +["opendoar____::447", "roar________::389"] +["roar________::142", "opendoar____::1653"] +["opendoar____::1516", "roar________::1533"] +["roar________::3975", "opendoar____::2185"] +["roar________::6469", "opendoar____::2780"] +["opendoar____::845", "roar________::5500"] +["roar________::3442", "opendoar____::2142"] +["roar________::2412", "opendoar____::1538"] +["opendoar____::737", "roar________::1188"] +["opendoar____::654", "roar________::983"] +["roar________::977", "opendoar____::240"] +["roar________::634", "opendoar____::171"] +["opendoar____::344", "roar________::1415"] +["opendoar____::1471", "roar________::1278"] +["roar________::6900", "opendoar____::2980"] +["opendoar____::1847", "roar________::2850"] +["opendoar____::2488", "roar________::5478"] +["roar________::360", "opendoar____::1157"] +["roar________::4757", "opendoar____::2405"] +["opendoar____::1390", "roar________::1184"] +["opendoar____::2688", "roar________::6891"] +["roar________::6969", "opendoar____::2784"] +["roar________::4753", "opendoar____::2417"] +["roar________::3979", "opendoar____::2192"] +["opendoar____::1398", "roar________::604"] +["opendoar____::80", "roar________::603"] +["roar________::5840", "opendoar____::2557", "roar________::5915"] +["roar________::5752", "opendoar____::2542"] +["roar________::5718", "roar________::4121", "opendoar____::2245"] +["roar________::4130", "roar________::5692", "opendoar____::2243"] +["roar________::5690", "opendoar____::2094", "roar________::3662"] +["roar________::5657", "opendoar____::2520"] +["opendoar____::2250", "roar________::5621", "roar________::4132"] +["roar________::5585", "opendoar____::2227", "roar________::4089"] +["roar________::3609", "opendoar____::2068", "roar________::5582"] +["roar________::5583", "opendoar____::2159", "roar________::3839"] +["roar________::4027", "roar________::5565", "opendoar____::2212"] +["opendoar____::2044", "roar________::3534", "roar________::5556"] +["roar________::3664", "opendoar____::2093", "roar________::5549"] +["opendoar____::2318", "roar________::4271", "roar________::5503"] +["roar________::5475", "roar________::4021", "opendoar____::2210"] +["roar________::5256", "opendoar____::2254", "roar________::4128"] +["opendoar____::2462", "roar________::5131"] +["roar________::5132", "opendoar____::2455"] +["roar________::4165", "opendoar____::2264"] +["roar________::4123", "opendoar____::2244"] +["opendoar____::2183", "roar________::3966"] +["opendoar____::2096", "roar________::3666"] +["roar________::3580", "opendoar____::2051"] +["roar________::3552", "opendoar____::2048"] +["opendoar____::2050", "roar________::3583"] +["opendoar____::2057", "roar________::3581"] +["roar________::3608", "opendoar____::2061"] +["roar________::4135", "opendoar____::2240"] +["roar________::3611", "opendoar____::2059"] +["roar________::1053", "opendoar____::273"] +["opendoar____::2060", "roar________::3606"] +["opendoar____::2056", "roar________::3582"] +["opendoar____::2242", "roar________::4129"] +["opendoar____::2213", "roar________::4034"] +["opendoar____::2545", "roar________::5779", "roar________::5746"] +["roar________::5570", "roar________::4126", "opendoar____::2246"] +["roar________::4134", "opendoar____::2251"] +["opendoar____::2054", "roar________::3577"] +["roar________::3211", "opendoar____::1956"] +["roar________::5460", "opendoar____::2461", "roar________::5124"] +["roar________::3391", "opendoar____::3948"] +["opendoar____::2118", "roar________::3707", "roar________::5447"] +["roar________::5438", "roar________::4621", "opendoar____::2397"] +["roar________::4960", "opendoar____::2420"] +["roar________::4956", "opendoar____::2320"] +["roar________::1091", "opendoar____::1621"] +["opendoar____::2169", "roar________::3893"] +["opendoar____::1166", "roar________::459"] +["roar________::5430", "opendoar____::988"] +["roar________::97", "opendoar____::1210"] +["opendoar____::505", "roar________::720"] +["opendoar____::502", "roar________::1250"] +["opendoar____::10323", "roar________::17822"] +["opendoar____::10298", "roar________::17678"] +["opendoar____::10312", "roar________::17602"] +["roar________::17456", "opendoar____::2157"] +["roar________::17297", "opendoar____::10100"] +["opendoar____::10099", "roar________::17295"] +["opendoar____::10152", "roar________::17190"] +["roar________::17067", "opendoar____::10108"] +["roar________::17025", "opendoar____::3431"] +["opendoar____::10094", "roar________::16982"] +["roar________::16967", "opendoar____::10051"] +["opendoar____::3954", "roar________::16693"] +["opendoar____::4243", "roar________::16469"] +["roar________::16376", "opendoar____::4375"] +["opendoar____::9752", "roar________::16367"] +["roar________::16291", "roar________::6967", "opendoar____::1046"] +["roar________::15264", "opendoar____::4727", "roar________::16178"] +["opendoar____::9623", "roar________::15991", "roar________::16089"] +["opendoar____::9493", "roar________::16086"] +["roar________::16085", "opendoar____::9514"] +["opendoar____::3105", "roar________::16037"] +["roar________::15684", "opendoar____::3224"] +["roar________::15616", "opendoar____::3297"] +["roar________::15611", "opendoar____::4883"] +["roar________::15541", "opendoar____::9428"] +["roar________::15462", "opendoar____::4325"] +["roar________::15460", "opendoar____::9445"] +["roar________::15423", "opendoar____::4397"] +["opendoar____::4763", "roar________::15405"] +["opendoar____::4039", "roar________::15375"] +["opendoar____::9391", "roar________::15351"] +["roar________::15327", "opendoar____::4875"] +["roar________::15287", "opendoar____::4877"] +["opendoar____::4870", "roar________::15286"] +["roar________::15283", "opendoar____::4847"] +["opendoar____::4778", "roar________::15266"] +["opendoar____::3635", "roar________::15141"] +["opendoar____::2991", "roar________::9892", "roar________::15140"] +["roar________::15101", "opendoar____::979"] +["opendoar____::4783", "roar________::15073"] +["roar________::15035", "opendoar____::4693"] +["roar________::15025", "opendoar____::4667"] +["opendoar____::1493", "roar________::14955"] +["roar________::14935", "opendoar____::4712"] +["opendoar____::4609", "roar________::14772"] +["opendoar____::4560", "roar________::14763"] +["roar________::14719", "opendoar____::3570"] +["roar________::14678", "opendoar____::4486"] +["roar________::14674", "opendoar____::4366"] +["roar________::14659", "opendoar____::3595"] +["roar________::14650", "opendoar____::4567"] +["roar________::14356", "roar________::14616", "opendoar____::4518"] +["opendoar____::4446", "roar________::14558"] +["roar________::14546", "opendoar____::4423"] +["opendoar____::4303", "roar________::14428"] +["opendoar____::4409", "roar________::14382"] +["roar________::14288", "opendoar____::4207"] +["roar________::14272", "opendoar____::4174"] +["roar________::13747", "opendoar____::2816"] +["opendoar____::3815", "roar________::13715"] +["opendoar____::3122", "roar________::13646"] +["opendoar____::1034", "roar________::13539"] +["opendoar____::4066", "roar________::13507"] +["roar________::5014", "opendoar____::2443", "roar________::13496"] +["roar________::13331", "opendoar____::3883"] +["roar________::13329", "opendoar____::3917"] +["roar________::13274", "opendoar____::4038"] +["roar________::13271", "opendoar____::4068"] +["opendoar____::3361", "roar________::13194"] +["opendoar____::3989", "roar________::13180"] +["roar________::13171", "opendoar____::3672"] +["roar________::13100", "opendoar____::4036"] +["opendoar____::3844", "roar________::13024"] +["roar________::13022", "opendoar____::3891"] +["roar________::12969", "opendoar____::3395"] +["opendoar____::3913", "roar________::12937"] +["roar________::12932", "opendoar____::3922"] +["roar________::12898", "opendoar____::3889"] +["opendoar____::4058", "roar________::12893"] +["roar________::12841", "opendoar____::3905"] +["opendoar____::3895", "roar________::12796"] +["opendoar____::3992", "roar________::12762"] +["opendoar____::3774", "roar________::12577"] +["roar________::12556", "opendoar____::3971"] +["roar________::12551", "opendoar____::1647"] +["roar________::12539", "opendoar____::3976"] +["opendoar____::3975", "roar________::12537"] +["roar________::12515", "opendoar____::3973"] +["opendoar____::3868", "roar________::12479"] +["roar________::12374", "opendoar____::3869"] +["opendoar____::3863", "roar________::12363"] +["opendoar____::3475", "roar________::12348"] +["roar________::12298", "opendoar____::3852"] +["opendoar____::3856", "roar________::12247"] +["opendoar____::3950", "roar________::12204"] +["opendoar____::3949", "roar________::12200"] +["roar________::12193", "opendoar____::3860"] +["opendoar____::3845", "roar________::12165"] +["roar________::12118", "opendoar____::3782"] +["opendoar____::3802", "roar________::11956"] +["roar________::11942", "opendoar____::3811"] +["opendoar____::3833", "roar________::11928"] +["roar________::11913", "opendoar____::3962"] +["opendoar____::3761", "roar________::11907"] +["opendoar____::3421", "roar________::11889"] +["opendoar____::3786", "roar________::11827"] +["opendoar____::3549", "roar________::11816"] +["opendoar____::3918", "roar________::11781"] +["roar________::11780", "opendoar____::3745"] +["roar________::11737", "opendoar____::3557"] +["opendoar____::3806", "roar________::11706"] +["opendoar____::3760", "roar________::11577"] +["roar________::11541", "opendoar____::4761"] +["roar________::11531", "opendoar____::3967"] +["roar________::11529", "opendoar____::2990", "roar________::8059"] +["opendoar____::3742", "roar________::11513"] +["roar________::11488", "opendoar____::3727"] +["roar________::11393", "opendoar____::3775"] +["opendoar____::3773", "roar________::11381"] +["roar________::11376", "opendoar____::3690"] +["roar________::11352", "opendoar____::3738"] +["opendoar____::3608", "roar________::11320"] +["opendoar____::3748", "roar________::11312"] +["roar________::11296", "opendoar____::3837"] +["roar________::11291", "opendoar____::3772"] +["opendoar____::3916", "roar________::11287"] +["roar________::11276", "opendoar____::3609"] +["roar________::11194", "opendoar____::3582"] +["roar________::11191", "opendoar____::3580"] +["opendoar____::3624", "roar________::11177"] +["opendoar____::3834", "roar________::11160"] +["roar________::11157", "opendoar____::3835"] +["roar________::11128", "opendoar____::3566"] +["roar________::11058", "opendoar____::3769"] +["roar________::11026", "opendoar____::3644"] +["opendoar____::3766", "roar________::10901"] +["opendoar____::3434", "roar________::10866"] +["roar________::10806", "opendoar____::3317"] +["roar________::10802", "opendoar____::3623"] +["opendoar____::3632", "roar________::10775"] +["opendoar____::3508", "roar________::10688"] +["opendoar____::3506", "roar________::10665"] +["opendoar____::2968", "roar________::10659", "roar________::7908"] +["roar________::10645", "opendoar____::3505"] +["roar________::10561", "opendoar____::3616"] +["opendoar____::3365", "roar________::10522"] +["opendoar____::2901", "roar________::10505"] +["opendoar____::2752", "roar________::10485"] +["roar________::10456", "opendoar____::3501"] +["opendoar____::3606", "roar________::10453"] +["opendoar____::3605", "roar________::10438"] +["opendoar____::3577", "roar________::10379"] +["opendoar____::3490", "roar________::10366"] +["opendoar____::3426", "roar________::10365"] +["opendoar____::3597", "roar________::10352"] +["opendoar____::3725", "roar________::10339"] +["opendoar____::3493", "roar________::10277"] +["opendoar____::3554", "roar________::10253"] +["opendoar____::3488", "roar________::10226"] +["opendoar____::3132", "roar________::10211"] +["opendoar____::3483", "roar________::10208"] +["roar________::10119", "opendoar____::3383"] +["roar________::10037", "opendoar____::3425"] +["roar________::10035", "opendoar____::3419"] +["opendoar____::3422", "roar________::10033"] +["opendoar____::3631", "roar________::10029"] +["opendoar____::3420", "roar________::10020"] +["roar________::10018", "opendoar____::3418"] +["roar________::10013", "opendoar____::3410"] +["opendoar____::3370", "roar________::9980"] +["roar________::9921", "opendoar____::3394"] +["roar________::9904", "opendoar____::3381"] +["opendoar____::3382", "roar________::9901"] +["opendoar____::3384", "roar________::9896"] +["opendoar____::10089", "roar________::9888"] +["roar________::9884", "opendoar____::3302"] +["roar________::9870", "opendoar____::3375"] +["opendoar____::3367", "roar________::9850"] +["roar________::9849", "opendoar____::3360"] +["opendoar____::3355", "roar________::9805"] +["roar________::9761", "opendoar____::3442"] +["opendoar____::3344", "roar________::9747"] +["roar________::9726", "opendoar____::3330"] +["opendoar____::3323", "roar________::9717"] +["opendoar____::3430", "roar________::9697"] +["opendoar____::3266", "roar________::9645"] +["opendoar____::3272", "roar________::9631"] +["roar________::9529", "opendoar____::3283"] +["roar________::9526", "opendoar____::3369"] +["roar________::9524", "opendoar____::3279"] +["roar________::9509", "opendoar____::3275"] +["roar________::9419", "opendoar____::3439"] +["roar________::9416", "opendoar____::3269"] +["opendoar____::3260", "roar________::9397"] +["opendoar____::2803", "roar________::9330"] +["opendoar____::717", "roar________::9144"] +["opendoar____::714", "roar________::9136"] +["roar________::9129", "opendoar____::3235"] +["opendoar____::3156", "roar________::9124"] +["opendoar____::3359", "roar________::9123"] +["opendoar____::3207", "roar________::9039"] +["roar________::9038", "opendoar____::3206"] +["roar________::9037", "opendoar____::3204"] +["roar________::9034", "opendoar____::3201"] +["opendoar____::3197", "roar________::9031"] +["opendoar____::3196", "roar________::9027"] +["opendoar____::3325", "roar________::9002"] +["roar________::9001", "opendoar____::3167"] +["roar________::8997", "opendoar____::3089"] +["opendoar____::3314", "roar________::8981"] +["roar________::8912", "opendoar____::3182"] +["opendoar____::2596", "roar________::8898"] +["roar________::8907", "opendoar____::3048"] +["opendoar____::3324", "roar________::8841"] +["opendoar____::3278", "roar________::8777"] +["roar________::8768", "opendoar____::3133"] +["roar________::8766", "opendoar____::3134"] +["opendoar____::3144", "roar________::8758"] +["opendoar____::3115", "roar________::8673"] +["roar________::8840", "opendoar____::3109"] +["roar________::8651", "opendoar____::3584"] +["opendoar____::3108", "roar________::8645"] +["opendoar____::3097", "roar________::8620"] +["roar________::8619", "opendoar____::3098"] +["opendoar____::3926", "roar________::8536"] +["opendoar____::3083", "roar________::8498"] +["opendoar____::3081", "roar________::8491"] +["roar________::8463", "opendoar____::2835"] +["roar________::8458", "opendoar____::3243"] +["roar________::8446", "opendoar____::2834"] +["opendoar____::3765", "roar________::8439"] +["roar________::8359", "opendoar____::3136"] +["roar________::8294", "opendoar____::3063"] +["roar________::8270", "opendoar____::3044"] +["roar________::8224", "opendoar____::3046"] +["opendoar____::3432", "roar________::8223"] +["roar________::8221", "opendoar____::2979"] +["roar________::8189", "opendoar____::3080"] +["opendoar____::3036", "roar________::8168"] +["opendoar____::3035", "roar________::8162"] +["roar________::8151", "opendoar____::3079"] +["opendoar____::3039", "roar________::8109"] +["roar________::8102", "opendoar____::3572"] +["opendoar____::3018", "roar________::8072"] +["opendoar____::3013", "roar________::7962", "roar________::8058"] +["roar________::8055", "opendoar____::3017"] +["opendoar____::3011", "roar________::8050"] +["opendoar____::2919", "roar________::8044"] +["opendoar____::3005", "roar________::7992"] +["opendoar____::2998", "roar________::7942"] +["roar________::7929", "opendoar____::3009"] +["roar________::7902", "roar________::5216", "opendoar____::2468"] +["roar________::7863", "opendoar____::2989"] +["roar________::7818", "opendoar____::2808"] +["opendoar____::2931", "roar________::7755"] +["roar________::7749", "opendoar____::2942"] +["opendoar____::2946", "roar________::7724"] +["roar________::7695", "opendoar____::2852"] +["roar________::7586", "opendoar____::3277"] +["opendoar____::2884", "roar________::7575"] +["opendoar____::2890", "roar________::7550"] +["roar________::7541", "opendoar____::2865"] +["opendoar____::2903", "roar________::7540"] +["opendoar____::2868", "roar________::7465"] +["opendoar____::2871", "roar________::7452"] +["opendoar____::2850", "roar________::7388"] +["opendoar____::3212", "roar________::7375"] +["roar________::7369", "opendoar____::2736"] +["roar________::7355", "opendoar____::3024"] +["opendoar____::2811", "roar________::7330"] +["roar________::7325", "opendoar____::2797"] +["opendoar____::2795", "roar________::7310"] +["roar________::7296", "opendoar____::2787"] +["opendoar____::2748", "roar________::7262"] +["opendoar____::2682", "roar________::7256"] +["opendoar____::2945", "roar________::7245"] +["opendoar____::4063", "roar________::7230"] +["roar________::7144", "opendoar____::2716"] +["opendoar____::2700", "roar________::7125"] +["roar________::7117", "opendoar____::2744"] +["roar________::7097", "opendoar____::2872"] +["opendoar____::2928", "roar________::7076"] +["opendoar____::2916", "roar________::6949"] +["roar________::6940", "opendoar____::2672"] +["roar________::6899", "opendoar____::2703"] +["opendoar____::2819", "roar________::6868"] +["opendoar____::2828", "roar________::6855"] +["roar________::6699", "opendoar____::2809"] +["opendoar____::2644", "roar________::6640"] +["opendoar____::2580", "roar________::6068"] +["opendoar____::2572", "roar________::6032"] +["opendoar____::1556", "roar________::5989", "roar________::883"] +["opendoar____::2570", "roar________::5964"] +["opendoar____::2569", "roar________::5956"] +["roar________::5890", "opendoar____::2560"] +["opendoar____::2175", "roar________::5884", "roar________::3878"] +["opendoar____::3720", "roar________::5856"] +["opendoar____::2549", "roar________::5796"] +["opendoar____::2552", "roar________::5794"] +["roar________::5769", "opendoar____::2518"] +["roar________::5754", "opendoar____::2535"] +["opendoar____::2547", "roar________::5753"] +["roar________::5751", "opendoar____::2543"] +["opendoar____::2544", "roar________::5745"] +["roar________::5712", "opendoar____::461"] +["roar________::5714", "opendoar____::802"] +["roar________::5708", "opendoar____::769"] +["opendoar____::2525", "roar________::5706"] +["opendoar____::2037", "roar________::3510", "roar________::5684"] +["roar________::5680", "opendoar____::775"] +["roar________::5656", "opendoar____::2516"] +["roar________::5646", "opendoar____::3818"] +["opendoar____::2512", "roar________::5626"] +["opendoar____::2513", "roar________::5627"] +["opendoar____::2510", "roar________::5625"] +["opendoar____::1811", "roar________::5622", "roar________::2733"] +["roar________::5581", "opendoar____::1332"] +["opendoar____::2501", "roar________::5575"] +["roar________::5566", "opendoar____::1728", "roar________::2506"] +["opendoar____::2337", "roar________::5563", "roar________::4317"] +["opendoar____::1996", "roar________::5551", "roar________::3417"] +["roar________::3514", "roar________::5547", "opendoar____::2038"] +["opendoar____::1783", "roar________::2672", "roar________::5526"] +["roar________::5523", "opendoar____::2506"] +["opendoar____::2485", "roar________::5496"] +["opendoar____::2484", "roar________::5494"] +["roar________::5490", "opendoar____::1434"] +["opendoar____::993", "roar________::5476"] +["opendoar____::1851", "roar________::2872", "roar________::5473"] +["opendoar____::1495", "roar________::5469"] +["opendoar____::1245", "roar________::5459"] +["roar________::5457", "opendoar____::1324"] +["roar________::5451", "opendoar____::1494"] +["opendoar____::1884", "roar________::5443", "roar________::3032"] +["roar________::5431", "opendoar____::1265"] +["opendoar____::765", "roar________::5427"] +["opendoar____::2507", "roar________::5424"] +["opendoar____::2069", "roar________::3605", "roar________::5420"] +["opendoar____::827", "roar________::5404"] +["opendoar____::2498", "roar________::5332"] +["roar________::5281", "opendoar____::861"] +["opendoar____::649", "roar________::5278"] +["opendoar____::2480", "roar________::5253"] +["opendoar____::2481", "roar________::5254"] +["opendoar____::1666", "roar________::5209"] +["roar________::5182", "opendoar____::2470"] +["opendoar____::2458", "roar________::5129"] +["roar________::5125", "opendoar____::2456"] +["opendoar____::2457", "roar________::5126"] +["opendoar____::2451", "roar________::5075"] +["opendoar____::2450", "roar________::5073"] +["roar________::5007", "opendoar____::1347"] +["opendoar____::2416", "roar________::5005"] +["opendoar____::2279", "roar________::5000"] +["opendoar____::2283", "roar________::4994"] +["roar________::4347", "opendoar____::2368", "roar________::4981"] +["opendoar____::1109", "roar________::4974"] +["roar________::4964", "opendoar____::1585"] +["opendoar____::2428", "roar________::4965"] +["opendoar____::2352", "roar________::4961"] +["roar________::4953", "opendoar____::2288"] +["opendoar____::2410", "roar________::4949"] +["opendoar____::2394", "roar________::4950"] +["roar________::4942", "opendoar____::2280"] +["roar________::4938", "opendoar____::865"] +["opendoar____::996", "roar________::4939"] +["roar________::4937", "opendoar____::2273"] +["roar________::4935", "opendoar____::710"] +["opendoar____::2313", "roar________::4933"] +["opendoar____::2333", "roar________::4931"] +["roar________::4930", "opendoar____::2389"] +["opendoar____::2278", "roar________::4923"] +["roar________::4834", "opendoar____::2426"] +["roar________::4782", "opendoar____::2413"] +["roar________::4754", "opendoar____::2418"] +["roar________::4749", "opendoar____::757"] +["roar________::4722", "opendoar____::2396"] +["roar________::4720", "opendoar____::176"] +["roar________::4718", "opendoar____::1467"] +["roar________::4715", "opendoar____::821"] +["roar________::4682", "opendoar____::2390"] +["opendoar____::1662", "roar________::4681"] +["roar________::4674", "opendoar____::416"] +["roar________::4662", "opendoar____::2558"] +["opendoar____::1250", "roar________::4642"] +["roar________::4615", "opendoar____::2380"] +["roar________::4550", "opendoar____::2362"] +["roar________::4547", "opendoar____::2357"] +["roar________::4548", "opendoar____::2355"] +["opendoar____::2347", "roar________::4466"] +["roar________::4464", "opendoar____::2350"] +["roar________::4463", "opendoar____::2351"] +["roar________::4446", "opendoar____::2345"] +["opendoar____::2338", "roar________::4346"] +["opendoar____::2329", "roar________::4296"] +["roar________::4293", "opendoar____::2281"] +["opendoar____::2332", "roar________::4294"] +["roar________::4269", "opendoar____::2317"] +["roar________::4264", "opendoar____::2319"] +["roar________::4242", "opendoar____::1370"] +["roar________::4209", "opendoar____::2282"] +["roar________::4191", "opendoar____::2275"] +["roar________::4136", "opendoar____::2241"] +["roar________::4125", "opendoar____::2255"] +["roar________::4120", "opendoar____::2236"] +["roar________::4059", "opendoar____::2218"] +["opendoar____::2217", "roar________::4056"] +["opendoar____::2208", "roar________::4032"] +["roar________::4005", "opendoar____::2201"] +["opendoar____::2196", "roar________::3995"] +["roar________::3991", "opendoar____::2195"] +["roar________::3978", "opendoar____::2189"] +["opendoar____::2191", "roar________::3977"] +["opendoar____::2226", "roar________::3974"] +["roar________::3891", "opendoar____::2168"] +["roar________::3865", "opendoar____::2163"] +["opendoar____::2164", "roar________::3864"] +["opendoar____::2161", "roar________::3860"] +["roar________::3844", "opendoar____::2154"] +["roar________::3823", "opendoar____::2182"] +["opendoar____::2150", "roar________::3808"] +["opendoar____::2144", "roar________::3805"] +["roar________::3803", "opendoar____::2146"] +["roar________::3802", "opendoar____::2143"] +["opendoar____::2177", "roar________::3795"] +["roar________::3788", "opendoar____::2140"] +["roar________::3784", "opendoar____::2174"] +["roar________::3771", "opendoar____::2131"] +["opendoar____::2126", "roar________::3770"] +["opendoar____::2129", "roar________::3768"] +["opendoar____::1227", "roar________::3753"] +["roar________::3703", "opendoar____::2097"] +["roar________::3692", "opendoar____::2117"] +["roar________::3686", "opendoar____::2102"] +["opendoar____::1351", "roar________::3604"] +["opendoar____::2071", "roar________::3590"] +["opendoar____::2049", "roar________::3572"] +["roar________::3559", "opendoar____::2138"] +["opendoar____::2041", "roar________::3511"] +["roar________::3509", "opendoar____::2032"] +["roar________::3497", "opendoar____::2173"] +["opendoar____::1995", "roar________::3483"] +["roar________::3472", "opendoar____::2013"] +["roar________::3465", "opendoar____::2024"] +["roar________::3454", "opendoar____::2021"] +["roar________::3415", "opendoar____::2003"] +["opendoar____::1314", "roar________::3402"] +["opendoar____::2009", "roar________::3370"] +["roar________::3284", "opendoar____::1984"] +["opendoar____::1964", "roar________::3255"] +["opendoar____::1942", "roar________::3215"] +["opendoar____::1937", "roar________::3206"] +["opendoar____::1949", "roar________::3204"] +["roar________::3200", "opendoar____::1936"] +["opendoar____::1320", "roar________::3197"] +["roar________::3198", "opendoar____::1959"] +["roar________::3192", "opendoar____::1043"] +["opendoar____::1938", "roar________::3193"] +["opendoar____::1945", "roar________::3191"] +["roar________::3160", "opendoar____::1926"] +["roar________::3157", "opendoar____::1919"] +["roar________::3155", "opendoar____::1927"] +["roar________::3147", "opendoar____::1930"] +["roar________::3127", "opendoar____::2035"] +["opendoar____::1907", "roar________::3120"] +["roar________::3110", "opendoar____::428"] +["roar________::3107", "opendoar____::528"] +["opendoar____::792", "roar________::3091"] +["roar________::3082", "opendoar____::740"] +["roar________::3030", "opendoar____::1885"] +["roar________::3019", "opendoar____::1878"] +["opendoar____::1877", "roar________::3006"] +["roar________::2948", "opendoar____::1863"] +["roar________::2873", "opendoar____::1421"] +["opendoar____::1849", "roar________::2863"] +["roar________::2855", "opendoar____::1839"] +["roar________::2651", "opendoar____::1774"] +["opendoar____::1762", "roar________::2609"] +["roar________::2607", "opendoar____::1761"] +["roar________::2595", "opendoar____::1758"] +["opendoar____::1739", "roar________::2557"] +["opendoar____::1748", "roar________::2556"] +["roar________::2554", "opendoar____::1740"] +["roar________::2547", "opendoar____::1746"] +["opendoar____::1743", "roar________::2548"] +["opendoar____::1741", "roar________::2545"] +["opendoar____::1745", "roar________::2546"] +["roar________::2525", "opendoar____::1737"] +["roar________::2505", "opendoar____::1729"] +["roar________::2490", "opendoar____::1724"] +["opendoar____::1706", "roar________::2461"] +["roar________::2439", "opendoar____::671"] +["roar________::2418", "opendoar____::665"] +["roar________::2419", "opendoar____::299"] +["opendoar____::684", "roar________::2411"] +["roar________::2399", "opendoar____::1011"] +["opendoar____::816", "roar________::2390"] +["roar________::2387", "opendoar____::826"] +["roar________::485", "opendoar____::1542"] +["opendoar____::1414", "roar________::857"] +["roar________::128", "opendoar____::1482"] +["roar________::600", "opendoar____::1289"] +["opendoar____::1249", "roar________::1391"] +["roar________::607", "opendoar____::1132"] +["opendoar____::1008", "roar________::1398"] +["opendoar____::1006", "roar________::271"] +["roar________::1110", "opendoar____::929"] +["roar________::312", "opendoar____::426"] +["opendoar____::522", "roar________::856"] +["opendoar____::1345", "roar________::1597"] +["opendoar____::1296", "roar________::2333"] +["opendoar____::1704", "roar________::2339"] +["opendoar____::1446", "roar________::2345"] diff --git a/data/out/intersection.txt b/data/out/intersection.txt new file mode 100644 index 0000000..f120c1b --- /dev/null +++ b/data/out/intersection.txt @@ -0,0 +1,412 @@ +[[["opendoar____::2963", "re3data_____::r3d100010191"], ["fairsharing_::2114", "re3data_____::r3d100010191"], ["re3data_____::r3d100010191"]]] +[[["fairsharing_::2560", "re3data_____::r3d100011201", "opendoar____::4194"], ["fairsharing_::2560", "re3data_____::r3d100011201"], ["fairsharing_::2560", "re3data_____::r3d100011201"]]] +[[["re3data_____::r3d100010765", "opendoar____::394", "roar________::46", "fairsharing_::2702"], ["re3data_____::r3d100010765", "fairsharing_::2702"], ["re3data_____::r3d100010765", "fairsharing_::2702"]], [["re3data_____::r3d100010765", "opendoar____::394", "roar________::46", "fairsharing_::2702"], ["opendoar____::394", "roar________::46"], ["opendoar____::394", "roar________::46"]]] +[[["re3data_____::r3d100013120", "opendoar____::10134", "roar________::17137"], ["re3data_____::r3d100013120", "fairsharing_::2820"], ["re3data_____::r3d100013120"]]] +[[["fairsharing_::2504", "roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006"], ["fairsharing_::2504", "re3data_____::r3d100000006"], ["fairsharing_::2504", "re3data_____::r3d100000006"]], [["fairsharing_::2504", "roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006"], ["roar________::5552", "opendoar____::1578"], ["roar________::5552", "opendoar____::1578"]]] +[[["opendoar____::375", "re3data_____::r3d100010423", "fairsharing_::2536"], ["re3data_____::r3d100010423", "fairsharing_::2536"], ["re3data_____::r3d100010423", "fairsharing_::2536"]], [["opendoar____::375", "re3data_____::r3d100010423", "fairsharing_::2536"], ["roar________::1532", "opendoar____::375"], ["opendoar____::375"]]] +[[["fairsharing_::2542", "opendoar____::10329", "re3data_____::r3d100010691"], ["fairsharing_::2542", "re3data_____::r3d100010691"], ["fairsharing_::2542", "re3data_____::r3d100010691"]]] +[[["re3data_____::r3d100011805", "opendoar____::10062", "fairsharing_::3009"], ["re3data_____::r3d100011805", "fairsharing_::3009"], ["re3data_____::r3d100011805", "fairsharing_::3009"]]] +[[["fairsharing_::2558", "opendoar____::4241"], ["re3data_____::r3d100012385", "fairsharing_::2558"], ["fairsharing_::2558"]]] +[[["re3data_____::r3d100012397", "fairsharing_::2524", "re3data_____::r3d100013223"], ["re3data_____::r3d100012397", "fairsharing_::2524"], ["re3data_____::r3d100012397", "fairsharing_::2524"]]] +[[["re3data_____::r3d100010066", "fairsharing_::1843", "opendoar____::2073"], ["re3data_____::r3d100010066", "fairsharing_::1843"], ["re3data_____::r3d100010066", "fairsharing_::1843"]]] +[[["opendoar____::9768", "fairsharing_::2768", "roar________::16302"], ["fairsharing_::2768", "re3data_____::r3d100013177"], ["fairsharing_::2768"]]] +[[["opendoar____::3593", "fairsharing_::3331", "re3data_____::r3d100011800", "roar________::11294", "opendoar____::3594"], ["fairsharing_::3331", "re3data_____::r3d100011800"], ["fairsharing_::3331", "re3data_____::r3d100011800"]], [["opendoar____::3593", "fairsharing_::3331", "re3data_____::r3d100011800", "roar________::11294", "opendoar____::3594"], ["roar________::11294", "opendoar____::3594"], ["roar________::11294", "opendoar____::3594"]]] +[[["re3data_____::r3d100011108", "fairsharing_::2778", "opendoar____::5870"], ["re3data_____::r3d100011108", "fairsharing_::2778"], ["re3data_____::r3d100011108", "fairsharing_::2778"]]] +[[["fairsharing_::2676", "opendoar____::4164"], ["re3data_____::r3d100011817", "fairsharing_::2676"], ["fairsharing_::2676"]]] +[[["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"], ["re3data_____::r3d100011230", "fairsharing_::2326"], ["re3data_____::r3d100011230", "fairsharing_::2326"]], [["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"], ["opendoar____::1064", "roar________::992"], ["opendoar____::1064", "roar________::992"]]] +[[["re3data_____::r3d100010468", "opendoar____::2659"], ["fairsharing_::2358", "re3data_____::r3d100010468"], ["re3data_____::r3d100010468"]]] +[[["re3data_____::r3d100012673", "opendoar____::10197"], ["re3data_____::r3d100012673", "fairsharing_::2608"], ["re3data_____::r3d100012673"]]] +[[["fairsharing_::2557", "roar________::4205", "opendoar____::2294"], ["fairsharing_::2557", "re3data_____::r3d100010750"], ["fairsharing_::2557"]], [["fairsharing_::2557", "roar________::4205", "opendoar____::2294"], ["roar________::4205", "opendoar____::2294"], ["roar________::4205", "opendoar____::2294"]]] +[[["re3data_____::r3d100012435", "fairsharing_::2303", "opendoar____::4166"], ["fairsharing_::2303", "re3data_____::r3d100012435"], ["re3data_____::r3d100012435", "fairsharing_::2303"]]] +[[["fairsharing_::3080", "re3data_____::r3d100011898", "opendoar____::4344"], ["fairsharing_::3080", "re3data_____::r3d100011898"], ["fairsharing_::3080", "re3data_____::r3d100011898"]]] +[[["fairsharing_::1562", "re3data_____::r3d100010213", "roar________::269", "opendoar____::418"], ["fairsharing_::1562", "re3data_____::r3d100010213"], ["fairsharing_::1562", "re3data_____::r3d100010213"]], [["fairsharing_::1562", "re3data_____::r3d100010213", "roar________::269", "opendoar____::418"], ["roar________::269", "opendoar____::418"], ["roar________::269", "opendoar____::418"]]] +[[["fairsharing_::2372", "opendoar____::4296", "re3data_____::r3d100010101"], ["fairsharing_::2372", "re3data_____::r3d100010101"], ["fairsharing_::2372", "re3data_____::r3d100010101"]]] +[[["fairsharing_::2452", "opendoar____::2954", "re3data_____::r3d100010051"], ["fairsharing_::2452", "re3data_____::r3d100010051"], ["fairsharing_::2452", "re3data_____::r3d100010051"]]] +[[["opendoar____::1237", "fairsharing_::3027", "re3data_____::r3d100012692"], ["fairsharing_::3027", "re3data_____::r3d100012692"], ["fairsharing_::3027", "re3data_____::r3d100012692"]], [["opendoar____::1237", "fairsharing_::3027", "re3data_____::r3d100012692"], ["roar________::854", "opendoar____::1237"], ["opendoar____::1237"]]] +[[["re3data_____::r3d100011890", "fairsharing_::2584", "opendoar____::10026"], ["re3data_____::r3d100011890", "fairsharing_::2584"], ["re3data_____::r3d100011890", "fairsharing_::2584"]]] +[[["re3data_____::r3d100011191", "opendoar____::129"], ["re3data_____::r3d100011191", "fairsharing_::3142"], ["re3data_____::r3d100011191"]], [["re3data_____::r3d100011191", "opendoar____::129"], ["roar________::469", "opendoar____::129"], ["opendoar____::129"]]] +[[["opendoar____::3893", "roar________::12885", "fairsharing_::3041"], ["re3data_____::r3d100010157", "fairsharing_::3041"], ["fairsharing_::3041"]], [["opendoar____::3893", "roar________::12885", "fairsharing_::3041"], ["opendoar____::3893", "roar________::12885"], ["opendoar____::3893", "roar________::12885"]]] +[[["opendoar____::1373", "fairsharing_::1989", "re3data_____::r3d100010129"], ["fairsharing_::1989", "re3data_____::r3d100010129"], ["fairsharing_::1989", "re3data_____::r3d100010129"]], [["opendoar____::1373", "fairsharing_::1989", "re3data_____::r3d100010129"], ["roar________::1290", "opendoar____::1373"], ["opendoar____::1373"]]] +[[["opendoar____::3881", "re3data_____::r3d100011868", "fairsharing_::2453"], ["re3data_____::r3d100011868", "fairsharing_::2453"], ["re3data_____::r3d100011868", "fairsharing_::2453"]]] +[[["fairsharing_::2295", "opendoar____::3576"], ["re3data_____::r3d100011086", "fairsharing_::2295"], ["fairsharing_::2295"]], [["fairsharing_::2295", "opendoar____::3576"], ["roar________::10345", "opendoar____::3576"], ["opendoar____::3576"]]] +[[["fairsharing_::2537", "opendoar____::3739"], ["re3data_____::r3d100010216", "fairsharing_::2537"], ["fairsharing_::2537"]]] +[[["opendoar____::4062", "re3data_____::r3d100012316", "fairsharing_::2760", "roar________::13313"], ["re3data_____::r3d100012316", "fairsharing_::2760"], ["re3data_____::r3d100012316", "fairsharing_::2760"]], [["opendoar____::4062", "re3data_____::r3d100012316", "fairsharing_::2760", "roar________::13313"], ["opendoar____::4062", "roar________::13313"], ["opendoar____::4062", "roar________::13313"]]] +[[["fairsharing_::2864", "re3data_____::r3d100000005", "opendoar____::2731"], ["fairsharing_::2864", "re3data_____::r3d100000005"], ["fairsharing_::2864", "re3data_____::r3d100000005"]]] +[[["opendoar____::10171", "re3data_____::r3d100012538", "fairsharing_::2955"], ["re3data_____::r3d100012538", "fairsharing_::2955"], ["re3data_____::r3d100012538", "fairsharing_::2955"]]] +[[["fairsharing_::3262", "opendoar____::10274"], ["re3data_____::r3d100013343", "fairsharing_::3262"], ["fairsharing_::3262"]]] +[[["fairsharing_::3327", "opendoar____::109"], ["fairsharing_::3327", "re3data_____::r3d100010620"], ["fairsharing_::3327"]], [["fairsharing_::3327", "opendoar____::109"], ["roar________::390", "opendoar____::109"], ["opendoar____::109"]]] +[[["opendoar____::10272", "fairsharing_::3333", "re3data_____::r3d100013271"], ["fairsharing_::3333", "re3data_____::r3d100013271"], ["fairsharing_::3333", "re3data_____::r3d100013271"]]] +[[["re3data_____::r3d100011538", "re3data_____::r3d100010412"], ["re3data_____::r3d100011538", "fairsharing_::2424"], ["re3data_____::r3d100011538"]]] +[[["opendoar____::3054", "fairsharing_::2508", "re3data_____::r3d100010734"], ["fairsharing_::2508", "re3data_____::r3d100010734"], ["fairsharing_::2508", "re3data_____::r3d100010734"]]] +[[["re3data_____::r3d100010078", "fairsharing_::3144", "roar________::3887"], ["re3data_____::r3d100010078", "fairsharing_::3144"], ["re3data_____::r3d100010078", "fairsharing_::3144"]]] +[[["opendoar____::495", "roar________::2463", "re3data_____::r3d100010766"], ["re3data_____::r3d100010766", "fairsharing_::2980"], ["re3data_____::r3d100010766"]], [["opendoar____::495", "roar________::2463", "re3data_____::r3d100010766"], ["roar________::1137", "opendoar____::495", "roar________::2463"], ["opendoar____::495", "roar________::2463"]]] +[[["re3data_____::r3d100012274", "roar________::6428"], ["re3data_____::r3d100012274", "roar________::6428", "opendoar____::1122"], ["re3data_____::r3d100012274", "roar________::6428"]]] +[[["roar________::5212", "opendoar____::2473", "re3data_____::r3d100013537"], ["roar________::5212", "re3data_____::r3d100013537"], ["roar________::5212", "re3data_____::r3d100013537"]], [["roar________::5212", "opendoar____::2473", "re3data_____::r3d100013537"], ["roar________::5222", "opendoar____::2473"], ["opendoar____::2473"]]] +[[["opendoar____::1409", "roar________::5572"], ["opendoar____::5533", "opendoar____::1409", "roar________::5572", "re3data_____::r3d100013665", "roar________::309"], ["opendoar____::1409", "roar________::5572"]]] +[[["roar________::5792", "opendoar____::2553"], ["roar________::5792", "re3data_____::r3d100013722"], ["roar________::5792"]]] +[[["roar________::778", "re3data_____::r3d100010094"], ["opendoar____::186144", "re3data_____::r3d100010094"], ["re3data_____::r3d100010094"]], [["roar________::778", "re3data_____::r3d100010094"], ["opendoar____::2247", "roar________::778"], ["roar________::778"]]] +[[["re3data_____::r3d100013348", "roar________::11835", "opendoar____::9625"], ["re3data_____::r3d100013348", "opendoar____::9625"], ["opendoar____::9625", "re3data_____::r3d100013348"]]] +[[["opendoar____::3533", "re3data_____::r3d100013352"], ["opendoar____::3533", "roar________::10776", "re3data_____::r3d100013352"], ["opendoar____::3533", "re3data_____::r3d100013352"]]] +[[["re3data_____::r3d100013362", "opendoar____::1267"], ["roar________::10637", "roar________::272", "re3data_____::r3d100013362", "opendoar____::1267"], ["re3data_____::r3d100013362", "opendoar____::1267"]]] +[[["opendoar____::2587", "re3data_____::r3d100013382"], ["opendoar____::2587", "roar________::6088", "re3data_____::r3d100013382"], ["opendoar____::2587", "re3data_____::r3d100013382"]]] +[[["opendoar____::719", "roar________::5988"], ["opendoar____::719", "re3data_____::r3d100013394", "roar________::5988"], ["opendoar____::719", "roar________::5988"]]] +[[["opendoar____::1527", "re3data_____::r3d100013427"], ["opendoar____::1527", "roar________::1341", "re3data_____::r3d100013427", "roar________::9559"], ["opendoar____::1527", "re3data_____::r3d100013427"]]] +[[["roar________::16494", "roar________::10970", "roar________::16495", "opendoar____::4706"], ["re3data_____::r3d100013450", "roar________::10970", "opendoar____::4706"], ["roar________::10970", "opendoar____::4706"]], [["roar________::16494", "roar________::10970", "roar________::16495", "opendoar____::4706"], ["roar________::16494", "opendoar____::3793", "roar________::16495"], ["roar________::16494", "roar________::16495"]]] +[[["opendoar____::1404", "re3data_____::r3d100013465", "roar________::10452"], ["opendoar____::1404", "re3data_____::r3d100013465"], ["opendoar____::1404", "re3data_____::r3d100013465"]]] +[[["re3data_____::r3d100010599", "opendoar____::88"], ["roar________::399", "opendoar____::88"], ["opendoar____::88"]]] +[[["roar________::4562", "opendoar____::2115"], ["roar________::3591", "opendoar____::2373", "roar________::4562"], ["roar________::4562"]], [["roar________::4562", "opendoar____::2115"], ["roar________::3755", "opendoar____::2115"], ["opendoar____::2115"]]] +[[["roar________::3591", "roar________::4695"], ["roar________::3591", "opendoar____::2373", "roar________::4562"], ["roar________::3591"]]] +[[["opendoar____::1385", "roar________::8784"], ["opendoar____::1385", "roar________::1164", "roar________::8784"], ["opendoar____::1385", "roar________::8784"]]] +[[["roar________::5531", "opendoar____::1232"], ["roar________::5531", "opendoar____::1232", "roar________::1488"], ["roar________::5531", "opendoar____::1232"]]] +[[["roar________::4781", "opendoar____::464"], ["roar________::498", "roar________::4781", "opendoar____::464"], ["roar________::4781", "opendoar____::464"]]] +[[["re3data_____::r3d100013546", "roar________::1171", "opendoar____::605"], ["roar________::1171", "opendoar____::605"], ["roar________::1171", "opendoar____::605"]]] +[[["opendoar____::2447", "roar________::4442", "roar________::5051"], ["opendoar____::2447", "roar________::5051"], ["opendoar____::2447", "roar________::5051"]]] +[[["roar________::3038", "opendoar____::578"], ["roar________::5220", "opendoar____::578"], ["opendoar____::578"]]] +[[["roar________::784", "roar________::5756"], ["roar________::784", "roar________::7861", "opendoar____::510", "roar________::5756"], ["roar________::784", "roar________::5756"]]] +[[["opendoar____::510", "roar________::7861"], ["roar________::784", "roar________::7861", "opendoar____::510", "roar________::5756"], ["opendoar____::510", "roar________::7861"]]] +[[["opendoar____::4395", "opendoar____::961", "roar________::631"], ["opendoar____::961", "roar________::631"], ["opendoar____::961", "roar________::631"]]] +[[["roar________::4969", "opendoar____::586"], ["roar________::4969", "roar________::215", "opendoar____::586"], ["roar________::4969", "opendoar____::586"]]] +[[["opendoar____::8789", "roar________::490", "opendoar____::134"], ["roar________::490", "opendoar____::134"], ["roar________::490", "opendoar____::134"]]] +[[["roar________::3416", "roar________::2838"], ["roar________::3416", "opendoar____::567", "roar________::2838", "roar________::3522"], ["roar________::3416", "roar________::2838"]]] +[[["roar________::1568", "opendoar____::409"], ["roar________::1568", "roar________::1227", "opendoar____::409"], ["roar________::1568", "opendoar____::409"]]] +[[["opendoar____::1154", "roar________::9104"], ["roar________::9104", "opendoar____::1154", "roar________::333"], ["roar________::9104", "opendoar____::1154"]]] +[[["roar________::70", "opendoar____::1400"], ["roar________::70", "roar________::2347", "opendoar____::1400"], ["roar________::70", "opendoar____::1400"]]] +[[["opendoar____::5057", "opendoar____::1530"], ["roar________::914", "opendoar____::1530"], ["opendoar____::1530"]]] +[[["roar________::5306", "opendoar____::2033"], ["roar________::5306", "roar________::2511", "opendoar____::2033"], ["roar________::5306", "opendoar____::2033"]]] +[[["roar________::5429", "opendoar____::460"], ["roar________::457", "opendoar____::460", "roar________::5429"], ["roar________::5429", "opendoar____::460"]]] +[[["opendoar____::1623", "roar________::4440"], ["opendoar____::1623", "roar________::4440", "roar________::4683"], ["opendoar____::1623", "roar________::4440"]]] +[[["roar________::5204", "opendoar____::1700"], ["roar________::1132", "roar________::5204", "opendoar____::1700"], ["roar________::5204", "opendoar____::1700"]]] +[[["opendoar____::867", "roar________::5421"], ["opendoar____::867", "roar________::1247", "roar________::5421"], ["opendoar____::867", "roar________::5421"]]] +[[["opendoar____::1658", "roar________::8709"], ["roar________::712", "opendoar____::1658"], ["opendoar____::1658"]]] +[[["opendoar____::2230", "roar________::5385"], ["opendoar____::2230", "roar________::4090"], ["opendoar____::2230"]]] +[[["re3data_____::r3d100012232", "roar________::1240", "opendoar____::305"], ["roar________::1240", "opendoar____::305"], ["roar________::1240", "opendoar____::305"]]] +[[["roar________::2526", "opendoar____::346"], ["roar________::1419", "roar________::2526", "opendoar____::346"], ["roar________::2526", "opendoar____::346"]]] +[[["opendoar____::137", "roar________::4995"], ["opendoar____::137", "roar________::4995", "roar________::500"], ["opendoar____::137", "roar________::4995"]]] +[[["roar________::5186", "opendoar____::76"], ["roar________::5186", "opendoar____::76", "roar________::280"], ["roar________::5186", "opendoar____::76"]]] +[[["re3data_____::r3d100010751", "opendoar____::1610"], ["roar________::466", "opendoar____::1610"], ["opendoar____::1610"]]] +[[["roar________::1386", "re3data_____::r3d100013116", "opendoar____::882"], ["opendoar____::882", "roar________::1386"], ["opendoar____::882", "roar________::1386"]]] +[[["roar________::3930", "roar________::5695", "roar________::5461"], ["roar________::5695", "opendoar____::2053", "roar________::3579", "roar________::3930", "roar________::5461"], ["roar________::3930", "roar________::5695", "roar________::5461"]]] +[[["roar________::3495", "opendoar____::153"], ["opendoar____::153", "roar________::555"], ["opendoar____::153"]]] +[[["opendoar____::2193", "roar________::5546"], ["opendoar____::2193", "roar________::5546", "roar________::3925"], ["opendoar____::2193", "roar________::5546"]]] +[[["opendoar____::364", "roar________::15907"], ["opendoar____::364", "roar________::358"], ["opendoar____::364"]]] +[[["opendoar____::1932", "roar________::4934"], ["opendoar____::1932", "roar________::3207", "roar________::4934"], ["opendoar____::1932", "roar________::4934"]]] +[[["roar________::4959", "opendoar____::1896"], ["roar________::3059", "opendoar____::1896"], ["opendoar____::1896"]], [["roar________::4959", "opendoar____::1896"], ["roar________::4959", "opendoar____::2274"], ["roar________::4959"]]] +[[["roar________::277", "roar________::5442"], ["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"], ["roar________::277", "roar________::5442"]]] +[[["opendoar____::410", "roar________::16196"], ["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"], ["opendoar____::410", "roar________::16196"]]] +[[["roar________::4377", "roar________::4274", "opendoar____::2303"], ["roar________::4274", "opendoar____::2303"], ["roar________::4274", "opendoar____::2303"]]] +[[["opendoar____::1437", "roar________::3553"], ["opendoar____::1437", "roar________::3553", "roar________::1095"], ["opendoar____::1437", "roar________::3553"]]] +[[["opendoar____::2311", "roar________::4268", "roar________::4374"], ["opendoar____::2311", "roar________::4268"], ["opendoar____::2311", "roar________::4268"]]] +[[["roar________::5885", "opendoar____::2004"], ["roar________::5885", "roar________::3358", "opendoar____::2004"], ["roar________::5885", "opendoar____::2004"]]] +[[["roar________::4680", "opendoar____::1009"], ["roar________::4680", "opendoar____::1009", "roar________::1382"], ["roar________::4680", "opendoar____::1009"]]] +[[["opendoar____::10050", "roar________::2819"], ["roar________::2819", "opendoar____::2840"], ["roar________::2819"]]] +[[["roar________::5584", "opendoar____::1485"], ["opendoar____::1485", "roar________::5584", "roar________::1497"], ["roar________::5584", "opendoar____::1485"]]] +[[["opendoar____::524", "roar________::5265"], ["roar________::380", "opendoar____::524", "roar________::5265"], ["opendoar____::524", "roar________::5265"]]] +[[["roar________::2918", "opendoar____::1855"], ["opendoar____::1855", "roar________::2928", "roar________::2918"], ["opendoar____::1855", "roar________::2918"]]] +[[["opendoar____::432", "roar________::4677"], ["roar________::834", "opendoar____::432", "roar________::4677"], ["opendoar____::432", "roar________::4677"]]] +[[["opendoar____::3332", "opendoar____::3238", "opendoar____::1059"], ["roar________::2518", "opendoar____::1059"], ["opendoar____::1059"]], [["opendoar____::3332", "opendoar____::3238", "opendoar____::1059"], ["opendoar____::3332", "roar________::9724"], ["opendoar____::3332"]]] +[[["opendoar____::462", "roar________::5264"], ["roar________::478", "opendoar____::462", "roar________::5264"], ["opendoar____::462", "roar________::5264"]]] +[[["roar________::4687", "opendoar____::1445"], ["roar________::106", "opendoar____::1445", "roar________::4687"], ["roar________::4687", "opendoar____::1445"]]] +[[["roar________::3419", "opendoar____::959"], ["roar________::3419", "roar________::3148", "opendoar____::959", "roar________::293"], ["roar________::3419", "opendoar____::959"]]] +[[["roar________::3390", "roar________::6694"], ["opendoar____::2645", "roar________::3390"], ["roar________::3390"]]] +[[["opendoar____::497", "roar________::4637"], ["roar________::1206", "opendoar____::497", "roar________::4637"], ["opendoar____::497", "roar________::4637"]]] +[[["roar________::4726", "opendoar____::179"], ["roar________::4726", "roar________::722", "opendoar____::179"], ["roar________::4726", "opendoar____::179"]]] +[[["opendoar____::2087", "roar________::3663"], ["roar________::3539", "opendoar____::2087", "roar________::3663"], ["opendoar____::2087", "roar________::3663"]]] +[[["roar________::2391", "opendoar____::1443"], ["roar________::2391", "roar________::958", "opendoar____::1443", "roar________::3126"], ["roar________::2391", "opendoar____::1443"]]] +[[["opendoar____::1488", "re3data_____::r3d100012414"], ["opendoar____::1488", "roar________::1129"], ["opendoar____::1488"]]] +[[["roar________::3592", "roar________::4585", "roar________::2617", "opendoar____::2379", "roar________::3693"], ["roar________::2617", "opendoar____::2379"], ["opendoar____::2379", "roar________::2617"]]] +[[["roar________::4789", "opendoar____::1501"], ["roar________::4789", "opendoar____::1501", "roar________::1085"], ["roar________::4789", "opendoar____::1501"]]] +[[["roar________::814", "opendoar____::206", "re3data_____::r3d100011218"], ["roar________::814", "opendoar____::206"], ["roar________::814", "opendoar____::206"]]] +[[["roar________::976", "roar________::978"], ["opendoar____::241", "roar________::978"], ["roar________::978"]], [["roar________::976", "roar________::978"], ["opendoar____::239", "roar________::976", "roar________::5221", "roar________::2328"], ["roar________::976"]]] +[[["roar________::3385", "opendoar____::2149"], ["roar________::3385", "opendoar____::2149", "roar________::3804"], ["roar________::3385", "opendoar____::2149"]]] +[[["opendoar____::2231", "roar________::4133"], ["opendoar____::2231", "roar________::2936", "roar________::4133"], ["opendoar____::2231", "roar________::4133"]]] +[[["roar________::5001", "opendoar____::14"], ["roar________::5001", "opendoar____::14", "roar________::80"], ["roar________::5001", "opendoar____::14"]]] +[[["roar________::5445", "opendoar____::1226"], ["roar________::5445", "roar________::936", "opendoar____::1226"], ["roar________::5445", "opendoar____::1226"]]] +[[["opendoar____::889", "roar________::2346"], ["roar________::98", "opendoar____::889", "roar________::2346"], ["opendoar____::889", "roar________::2346"]]] +[[["roar________::4636", "opendoar____::1165"], ["roar________::4636", "opendoar____::1165", "roar________::671"], ["roar________::4636", "opendoar____::1165"]]] +[[["opendoar____::1891", "roar________::2943"], ["opendoar____::1891", "roar________::1059", "roar________::2943"], ["opendoar____::1891", "roar________::2943"]]] +[[["opendoar____::242", "roar________::4932"], ["roar________::979", "roar________::4932", "opendoar____::242"], ["opendoar____::242", "roar________::4932"]]] +[[["opendoar____::3", "re3data_____::r3d100012604", "roar________::5509"], ["roar________::1448", "opendoar____::3", "roar________::5509"], ["opendoar____::3", "roar________::5509"]]] +[[["opendoar____::606", "roar________::143", "re3data_____::r3d100011169"], ["opendoar____::606", "roar________::143"], ["opendoar____::606", "roar________::143"]]] +[[["roar________::5561", "re3data_____::r3d100013102"], ["opendoar____::518", "roar________::5561", "roar________::1528"], ["roar________::5561"]]] +[[["opendoar____::61", "roar________::5623", "roar________::222"], ["opendoar____::61", "roar________::221", "roar________::5623"], ["opendoar____::61", "roar________::5623"]]] +[[["opendoar____::1702", "roar________::4962"], ["opendoar____::1702", "roar________::547", "roar________::4962"], ["opendoar____::1702", "roar________::4962"]]] +[[["roar________::3109", "opendoar____::581"], ["roar________::3109", "roar________::384", "opendoar____::581"], ["roar________::3109", "opendoar____::581"]]] +[[["roar________::528", "roar________::5564"], ["roar________::7062", "opendoar____::1396", "roar________::528", "roar________::5564"], ["roar________::528", "roar________::5564"]]] +[[["roar________::5449", "roar________::5072"], ["roar________::5072", "roar________::12785", "roar________::5449", "opendoar____::2452"], ["roar________::5449", "roar________::5072"]]] +[[["opendoar____::1525", "roar________::3555", "roar________::4437"], ["opendoar____::1525", "roar________::486", "roar________::3555"], ["opendoar____::1525", "roar________::3555"]]] +[[["opendoar____::232", "opendoar____::1104"], ["opendoar____::232", "roar________::954"], ["opendoar____::232"]]] +[[["roar________::13385", "opendoar____::601", "roar________::13359"], ["roar________::13385", "roar________::749", "opendoar____::601", "roar________::13359"], ["roar________::13385", "opendoar____::601", "roar________::13359"]]] +[[["opendoar____::931", "roar________::2392"], ["roar________::746", "opendoar____::931", "roar________::2392"], ["opendoar____::931", "roar________::2392"]]] +[[["opendoar____::2339", "roar________::5184"], ["opendoar____::2339", "roar________::4308", "roar________::5184"], ["opendoar____::2339", "roar________::5184"]]] +[[["roar________::2649", "roar________::6393"], ["opendoar____::2063", "roar________::2649", "roar________::6393"], ["roar________::2649", "roar________::6393"]]] +[[["roar________::14150", "opendoar____::1528"], ["roar________::14150", "roar________::4983", "opendoar____::1528", "roar________::383"], ["roar________::14150", "opendoar____::1528"]]] +[[["roar________::4320", "opendoar____::5091"], ["opendoar____::2364", "roar________::4320"], ["roar________::4320"]]] +[[["roar________::3992", "roar________::5185"], ["roar________::10577", "roar________::1541", "roar________::3992", "roar________::5185", "opendoar____::1391"], ["roar________::3992", "roar________::5185"]]] +[[["roar________::3202", "roar________::2856"], ["roar________::3202", "roar________::2856", "roar________::2846", "opendoar____::1845"], ["roar________::3202", "roar________::2856"]]] +[[["opendoar____::283", "roar________::5127"], ["opendoar____::283", "roar________::5127", "roar________::3420"], ["opendoar____::283", "roar________::5127"]]] +[[["roar________::2839", "opendoar____::403"], ["roar________::93", "roar________::2839", "opendoar____::403"], ["roar________::2839", "opendoar____::403"]]] +[[["roar________::4590", "roar________::5530", "opendoar____::1760"], ["roar________::4590", "roar________::2608", "roar________::5530", "opendoar____::1760"], ["roar________::4590", "roar________::5530", "opendoar____::1760"]]] +[[["roar________::3401", "roar________::5252", "roar________::3020"], ["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"], ["roar________::3401", "roar________::5252", "roar________::3020"]]] +[[["roar________::2995", "opendoar____::1879"], ["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"], ["roar________::2995", "opendoar____::1879"]]] +[[["roar________::5258", "opendoar____::1875"], ["roar________::5258", "roar________::2849", "opendoar____::1875"], ["roar________::5258", "opendoar____::1875"]]] +[[["opendoar____::2047", "roar________::5514"], ["roar________::3554", "opendoar____::2047", "roar________::5514"], ["opendoar____::2047", "roar________::5514"]]] +[[["opendoar____::393", "roar________::5003"], ["opendoar____::393", "roar________::5003", "roar________::801"], ["opendoar____::393", "roar________::5003"]]] +[[["opendoar____::322", "roar________::1363", "re3data_____::r3d100012417"], ["opendoar____::322", "roar________::1363"], ["opendoar____::322", "roar________::1363"]]] +[[["roar________::1243", "roar________::5553"], ["roar________::1243", "roar________::5553", "opendoar____::501"], ["roar________::1243", "roar________::5553"]]] +[[["opendoar____::471", "roar________::4719"], ["opendoar____::471", "roar________::1513", "roar________::2400", "roar________::4719"], ["opendoar____::471", "roar________::4719"]]] +[[["roar________::5567", "opendoar____::546"], ["opendoar____::546", "roar________::569"], ["opendoar____::546"]], [["roar________::5567", "opendoar____::546"], ["opendoar____::2497", "roar________::5567"], ["roar________::5567"]]] +[[["roar________::1349", "roar________::4676"], ["roar________::1349", "roar________::4676", "opendoar____::972"], ["roar________::1349", "roar________::4676"]]] +[[["roar________::1241", "roar________::4998"], ["roar________::1241", "roar________::11182", "opendoar____::1627", "roar________::4998"], ["roar________::1241", "roar________::4998"]]] +[[["roar________::5474", "opendoar____::1080"], ["roar________::64", "roar________::5474", "opendoar____::1080"], ["roar________::5474", "opendoar____::1080"]]] +[[["roar________::2425", "opendoar____::400"], ["roar________::2425", "roar________::471", "opendoar____::400"], ["roar________::2425", "opendoar____::400"]]] +[[["opendoar____::1035", "roar________::9708", "roar________::9715"], ["opendoar____::1035", "roar________::9708"], ["opendoar____::1035", "roar________::9708"]]] +[[["roar________::7829", "roar________::6688"], ["roar________::7829", "roar________::6688", "opendoar____::2804"], ["roar________::7829", "roar________::6688"]]] +[[["roar________::6199", "opendoar____::2381"], ["roar________::5795", "roar________::6199", "opendoar____::2381"], ["roar________::6199", "opendoar____::2381"]]] +[[["roar________::5986", "opendoar____::2123"], ["opendoar____::2123", "roar________::3736", "roar________::5986"], ["opendoar____::2123", "roar________::5986"]]] +[[["roar________::1106", "opendoar____::1061"], ["roar________::5889", "roar________::1106", "opendoar____::1061"], ["roar________::1106", "opendoar____::1061"]]] +[[["opendoar____::1678", "roar________::5720"], ["roar________::1474", "opendoar____::1678", "roar________::5720"], ["opendoar____::1678", "roar________::5720"]]] +[[["roar________::5157", "opendoar____::2465", "roar________::5687"], ["roar________::5041", "opendoar____::2465", "roar________::5687", "roar________::5157"], ["roar________::5157", "opendoar____::2465", "roar________::5687"]]] +[[["roar________::1139", "roar________::5628"], ["roar________::1139", "opendoar____::935", "roar________::5628"], ["roar________::1139", "roar________::5628"]]] +[[["roar________::5587", "roar________::3214"], ["roar________::5587", "opendoar____::1916", "roar________::3214", "roar________::3158"], ["roar________::5587", "roar________::3214"]]] +[[["roar________::5297", "roar________::5578", "opendoar____::2491"], ["roar________::5578", "opendoar____::2491"], ["roar________::5578", "opendoar____::2491"]]] +[[["roar________::5571", "opendoar____::1518"], ["roar________::5571", "opendoar____::1518", "roar________::789"], ["roar________::5571", "opendoar____::1518"]]] +[[["roar________::5548", "roar________::761"], ["opendoar____::1470", "roar________::5548", "roar________::761"], ["roar________::5548", "roar________::761"]]] +[[["opendoar____::1178", "roar________::5538"], ["roar________::426", "opendoar____::1178", "roar________::5538"], ["opendoar____::1178", "roar________::5538"]]] +[[["roar________::5423", "opendoar____::1583"], ["roar________::5423", "opendoar____::1583", "roar________::412"], ["roar________::5423", "opendoar____::1583"]]] +[[["roar________::5234", "roar________::5237"], ["roar________::5234", "roar________::5237", "opendoar____::2490"], ["roar________::5234", "roar________::5237"]]] +[[["roar________::5221", "roar________::2328"], ["opendoar____::239", "roar________::976", "roar________::5221", "roar________::2328"], ["roar________::5221", "roar________::2328"]]] +[[["re3data_____::r3d100011202", "opendoar____::956"], ["roar________::4973", "opendoar____::956"], ["opendoar____::956"]]] +[[["roar________::7274", "roar________::6225"], ["opendoar____::2599", "roar________::7274", "roar________::6225"], ["roar________::7274", "roar________::6225"]]] +[[["opendoar____::2403", "roar________::4707"], ["opendoar____::2403", "roar________::4533", "roar________::4707"], ["opendoar____::2403", "roar________::4707"]]] +[[["roar________::3996", "opendoar____::2223", "opendoar____::4920"], ["roar________::3996", "opendoar____::2223"], ["roar________::3996", "opendoar____::2223"]]] +[[["opendoar____::2046", "roar________::5560"], ["roar________::3701", "opendoar____::2046", "roar________::5560"], ["opendoar____::2046", "roar________::5560"]]] +[[["opendoar____::2040", "roar________::3551"], ["opendoar____::2040", "roar________::3512", "roar________::3551"], ["opendoar____::2040", "roar________::3551"]]] +[[["roar________::4273", "roar________::4369"], ["opendoar____::2325", "roar________::4273"], ["roar________::4273"]]] +[[["roar________::4270", "roar________::4354", "opendoar____::2305"], ["roar________::4270", "opendoar____::2305"], ["roar________::4270", "opendoar____::2305"]]] +[[["opendoar____::2323", "roar________::4352", "roar________::4353"], ["opendoar____::2323", "roar________::4352"], ["opendoar____::2323", "roar________::4352"]]] +[[["roar________::4075", "roar________::3387"], ["roar________::4075", "opendoar____::2015", "roar________::3387"], ["roar________::4075", "roar________::3387"]]] +[[["roar________::3089", "opendoar____::1888"], ["roar________::3089", "roar________::3054", "opendoar____::1888"], ["roar________::3089", "opendoar____::1888"]]] +[[["re3data_____::r3d100012564", "opendoar____::2829"], ["roar________::2964", "opendoar____::2829"], ["opendoar____::2829"]]] +[[["opendoar____::1903", "roar________::10021"], ["opendoar____::1903", "roar________::3119", "roar________::10021"], ["opendoar____::1903", "roar________::10021"]]] +[[["opendoar____::1912", "roar________::3108"], ["roar________::3108", "opendoar____::1912", "roar________::3106"], ["opendoar____::1912", "roar________::3108"]]] +[[["opendoar____::1957", "roar________::3217", "roar________::2634"], ["opendoar____::1957", "roar________::3217"], ["roar________::3217", "opendoar____::1957"]]] +[[["roar________::2510", "roar________::4671", "opendoar____::1736"], ["roar________::2510", "opendoar____::1736"], ["roar________::2510", "opendoar____::1736"]], [["roar________::2510", "roar________::4671", "opendoar____::1736"], ["opendoar____::2133", "roar________::4671"], ["roar________::4671"]]] +[[["roar________::2820", "roar________::2372"], ["roar________::2820", "roar________::2372", "opendoar____::1717"], ["roar________::2820", "roar________::2372"]]] +[[["roar________::4266", "roar________::4379", "opendoar____::2306"], ["roar________::4266", "opendoar____::2306"], ["roar________::4266", "opendoar____::2306"]]] +[[["roar________::4370", "roar________::4262", "roar________::4371", "opendoar____::2298"], ["roar________::4262", "opendoar____::2298"], ["roar________::4262", "opendoar____::2298"]]] +[[["roar________::4977", "opendoar____::1694"], ["roar________::4977", "opendoar____::1694", "roar________::684"], ["roar________::4977", "opendoar____::1694"]]] +[[["roar________::11100", "roar________::893"], ["roar________::11100", "roar________::893", "opendoar____::1698"], ["roar________::11100", "roar________::893"]]] +[[["opendoar____::1472", "roar________::5536"], ["roar________::595", "opendoar____::1472", "roar________::5536"], ["opendoar____::1472", "roar________::5536"]]] +[[["roar________::3080", "roar________::3651"], ["opendoar____::1899", "roar________::3080", "roar________::3651"], ["roar________::3080", "roar________::3651"]]] +[[["roar________::539", "roar________::2945", "roar________::3111", "opendoar____::1271"], ["roar________::539", "opendoar____::1271", "roar________::3111"], ["roar________::539", "opendoar____::1271", "roar________::3111"]]] +[[["opendoar____::1217", "roar________::845"], ["opendoar____::1217", "roar________::3084", "roar________::845"], ["opendoar____::1217", "roar________::845"]]] +[[["opendoar____::938", "roar________::3508"], ["roar________::1103", "opendoar____::938", "roar________::3508"], ["opendoar____::938", "roar________::3508"]]] +[[["opendoar____::1036", "roar________::12023"], ["roar________::724", "opendoar____::1036", "roar________::12023"], ["opendoar____::1036", "roar________::12023"]]] +[[["roar________::3087", "roar________::5205"], ["opendoar____::1898", "roar________::3087", "roar________::5205"], ["roar________::3087", "roar________::5205"]]] +[[["roar________::2973", "re3data_____::r3d100013225", "opendoar____::427"], ["roar________::2973", "opendoar____::427"], ["roar________::2973", "opendoar____::427"]]] +[[["roar________::4996", "opendoar____::990", "roar________::652"], ["opendoar____::990", "roar________::4996"], ["roar________::4996", "opendoar____::990"]]] +[[["roar________::4717", "opendoar____::1140"], ["roar________::4717", "roar________::175", "opendoar____::1140"], ["roar________::4717", "opendoar____::1140"]]] +[[["opendoar____::562", "roar________::5569"], ["roar________::467", "opendoar____::562", "roar________::5569"], ["opendoar____::562", "roar________::5569"]]] +[[["roar________::15", "roar________::16"], ["roar________::15", "opendoar____::538", "roar________::2329"], ["roar________::15"]]] +[[["opendoar____::963", "roar________::4952"], ["roar________::353", "opendoar____::963", "roar________::4952"], ["opendoar____::963", "roar________::4952"]]] +[[["roar________::2344", "opendoar____::383"], ["roar________::2344", "opendoar____::383", "roar________::6"], ["roar________::2344", "opendoar____::383"]]] +[[["roar________::2340", "opendoar____::258"], ["roar________::2340", "opendoar____::258", "roar________::10"], ["roar________::2340", "opendoar____::258"]]] +[[["roar________::2341", "opendoar____::259"], ["roar________::2341", "opendoar____::259", "roar________::5"], ["roar________::2341", "opendoar____::259"]]] +[[["roar________::8", "roar________::5"], ["roar________::2341", "opendoar____::259", "roar________::5"], ["roar________::5"]], [["roar________::8", "roar________::5"], ["opendoar____::261", "roar________::2321", "roar________::8"], ["roar________::8"]]] +[[["re3data_____::r3d100011181", "roar________::302", "opendoar____::430"], ["roar________::302", "opendoar____::430"], ["roar________::302", "opendoar____::430"]]] +[[["roar________::2332", "opendoar____::263"], ["roar________::12", "roar________::2332", "opendoar____::263"], ["roar________::2332", "opendoar____::263"]]] +[[["roar________::2334", "opendoar____::260", "roar________::3287"], ["roar________::2334", "opendoar____::260", "roar________::7", "roar________::3287"], ["roar________::2334", "roar________::3287", "opendoar____::260"]]] +[[["opendoar____::157", "roar________::833"], ["roar________::2424", "opendoar____::157"], ["opendoar____::157"]]] +[[["roar________::2322", "opendoar____::361"], ["opendoar____::361", "roar________::17", "roar________::2322"], ["opendoar____::361", "roar________::2322"]]] +[[["opendoar____::264", "roar________::2337"], ["roar________::2337", "opendoar____::264", "roar________::14"], ["opendoar____::264", "roar________::2337"]]] +[[["roar________::2327", "opendoar____::384"], ["roar________::2327", "roar________::20", "opendoar____::384"], ["roar________::2327", "opendoar____::384"]]] +[[["re3data_____::r3d100013445", "roar________::1193"], ["opendoar____::1329", "roar________::1193"], ["roar________::1193"]]] +[[["roar________::349", "opendoar____::650", "re3data_____::r3d100012596"], ["roar________::349", "opendoar____::650"], ["roar________::349", "opendoar____::650"]]] +[[["roar________::9782", "opendoar____::965"], ["roar________::1540", "roar________::9782", "opendoar____::965"], ["roar________::9782", "opendoar____::965"]]] +[[["opendoar____::1330", "roar________::756", "roar________::5487", "re3data_____::r3d100010690"], ["opendoar____::1330", "roar________::756", "roar________::5487"], ["opendoar____::1330", "roar________::756", "roar________::5487"]]] +[[["opendoar____::2187", "roar________::3976"], ["roar________::5083", "opendoar____::2187", "roar________::3976", "roar________::5067"], ["opendoar____::2187", "roar________::3976"]]] +[[["opendoar____::2111", "roar________::5189"], ["opendoar____::2111", "roar________::3766", "roar________::5189", "roar________::3615"], ["opendoar____::2111", "roar________::5189"]]] +[[["opendoar____::1994", "roar________::3931"], ["roar________::3341", "opendoar____::1994", "roar________::3931"], ["opendoar____::1994", "roar________::3931"]]] +[[["opendoar____::1469", "roar________::4616", "re3data_____::r3d100011274", "roar________::288"], ["opendoar____::1469", "roar________::4616", "roar________::288"], ["opendoar____::1469", "roar________::4616", "roar________::288"]]] +[[["opendoar____::1106", "re3data_____::r3d100011076", "roar________::321"], ["opendoar____::1106", "roar________::321"], ["opendoar____::1106", "roar________::321"]]] +[[["opendoar____::986", "roar________::12410"], ["opendoar____::986", "roar________::1202", "roar________::12410"], ["opendoar____::986", "roar________::12410"]]] +[[["roar________::8237", "roar________::73"], ["opendoar____::1261", "roar________::73"], ["roar________::73"]]] +[[["opendoar____::1763", "roar________::4635"], ["opendoar____::1763", "roar________::4635", "roar________::2610"], ["opendoar____::1763", "roar________::4635"]]] +[[["roar________::2323", "opendoar____::262"], ["roar________::2323", "opendoar____::262", "roar________::13"], ["roar________::2323", "opendoar____::262"]]] +[[["roar________::6361", "opendoar____::1375"], ["roar________::1096", "roar________::6361", "opendoar____::1375"], ["roar________::6361", "opendoar____::1375"]]] +[[["roar________::5439", "roar________::2705"], ["opendoar____::2493", "roar________::5439"], ["roar________::5439"]], [["roar________::5439", "roar________::2705"], ["roar________::2705", "opendoar____::1779"], ["roar________::2705"]]] +[[["opendoar____::1868", "roar________::4020"], ["opendoar____::1868", "roar________::2992", "roar________::4020"], ["opendoar____::1868", "roar________::4020"]]] +[[["roar________::2674", "roar________::1558", "roar________::892"], ["opendoar____::1825", "roar________::2674"], ["roar________::2674"]], [["roar________::2674", "roar________::1558", "roar________::892"], ["roar________::892", "opendoar____::1419"], ["roar________::892"]]] +[[["roar________::6102", "roar________::2462", "opendoar____::1715"], ["roar________::2462", "opendoar____::1715"], ["roar________::2462", "opendoar____::1715"]]] +[[["fairsharing_::3108", "opendoar____::2377"], ["roar________::5642", "opendoar____::2377"], ["opendoar____::2377"]]] +[[["roar________::5559", "opendoar____::2378"], ["roar________::5559", "roar________::4589", "opendoar____::2378"], ["roar________::5559", "opendoar____::2378"]]] +[[["roar________::4987", "opendoar____::1299"], ["roar________::4987", "roar________::161", "opendoar____::1299"], ["roar________::4987", "opendoar____::1299"]]] +[[["opendoar____::914", "roar________::15186"], ["opendoar____::914", "roar________::5506", "roar________::15186", "roar________::1466"], ["opendoar____::914", "roar________::15186"]]] +[[["roar________::5506", "roar________::1466"], ["opendoar____::914", "roar________::5506", "roar________::15186", "roar________::1466"], ["roar________::5506", "roar________::1466"]]] +[[["roar________::2312", "roar________::5495", "opendoar____::1149"], ["roar________::5495", "roar________::2312", "roar________::602", "opendoar____::1149"], ["roar________::2312", "roar________::5495", "opendoar____::1149"]]] +[[["roar________::870", "roar________::5466"], ["opendoar____::523", "roar________::5466"], ["roar________::5466"]]] +[[["opendoar____::365", "roar________::5453"], ["opendoar____::365", "roar________::5453", "roar________::1481"], ["opendoar____::365", "roar________::5453"]]] +[[["roar________::4821", "roar________::4559"], ["roar________::4559", "opendoar____::2821"], ["roar________::4559"]]] +[[["re3data_____::r3d100013030", "opendoar____::1560"], ["opendoar____::1560", "roar________::1127"], ["opendoar____::1560"]]] +[[["opendoar____::4320", "roar________::4745", "opendoar____::2429"], ["roar________::4745", "opendoar____::2429"], ["roar________::4745", "opendoar____::2429"]]] +[[["roar________::5535", "roar________::419"], ["opendoar____::1604", "roar________::419", "roar________::5535", "roar________::5987"], ["roar________::5535", "roar________::419"]]] +[[["roar________::15183", "roar________::16081"], ["roar________::3634", "roar________::16081", "roar________::5492", "roar________::15183", "opendoar____::2089"], ["roar________::15183", "roar________::16081"]]] +[[["roar________::5492", "roar________::3634"], ["roar________::3634", "roar________::16081", "roar________::5492", "roar________::15183", "opendoar____::2089"], ["roar________::5492", "roar________::3634"]]] +[[["roar________::3911", "re3data_____::r3d100012376", "opendoar____::1510"], ["roar________::3911", "opendoar____::1510"], ["roar________::3911", "opendoar____::1510"]]] +[[["roar________::3052", "roar________::8703", "opendoar____::1890"], ["roar________::3052", "opendoar____::1890"], ["roar________::3052", "opendoar____::1890"]]] +[[["roar________::5411", "opendoar____::1236"], ["opendoar____::1236", "roar________::3212"], ["opendoar____::1236"]]] +[[["roar________::766", "roar________::5557", "opendoar____::1649", "roar________::3933"], ["roar________::766", "roar________::5557", "opendoar____::1649"], ["roar________::5557", "roar________::766", "opendoar____::1649"]]] +[[["roar________::5550", "roar________::1019"], ["roar________::5550", "opendoar____::1441", "roar________::14050", "roar________::1019"], ["roar________::5550", "roar________::1019"]]] +[[["roar________::13098", "opendoar____::1406", "roar________::1086"], ["roar________::1086", "opendoar____::1406"], ["opendoar____::1406", "roar________::1086"]]] +[[["roar________::3986", "roar________::3230"], ["roar________::3986", "roar________::3230", "opendoar____::2135"], ["roar________::3986", "roar________::3230"]]] +[[["opendoar____::1941", "roar________::11092"], ["opendoar____::1941", "roar________::3210"], ["opendoar____::1941"]], [["opendoar____::1941", "roar________::11092"], ["opendoar____::3771", "roar________::11092"], ["roar________::11092"]]] +[[["opendoar____::1240", "roar________::3256"], ["opendoar____::1240", "roar________::1287", "roar________::3256", "roar________::2402"], ["opendoar____::1240", "roar________::3256"]]] +[[["re3data_____::r3d100013442", "opendoar____::2718", "roar________::6686"], ["opendoar____::2718", "roar________::6686"], ["opendoar____::2718", "roar________::6686"]]] +[[["opendoar____::2483", "roar________::5280", "roar________::5511"], ["opendoar____::2483", "roar________::5280", "roar________::5511", "roar________::8240"], ["opendoar____::2483", "roar________::5280", "roar________::5511"]]] +[[["roar________::5558", "opendoar____::982"], ["roar________::505", "roar________::5558", "opendoar____::982"], ["roar________::5558", "opendoar____::982"]]] +[[["roar________::4946", "roar________::5544"], ["opendoar____::2293", "roar________::4946", "roar________::5181", "roar________::5544"], ["roar________::4946", "roar________::5544"]]] +[[["opendoar____::2293", "roar________::5181"], ["opendoar____::2293", "roar________::4946", "roar________::5181", "roar________::5544"], ["opendoar____::2293", "roar________::5181"]]] +[[["opendoar____::9400", "roar________::6724"], ["opendoar____::215", "roar________::6724"], ["roar________::6724"]]] +[[["roar________::5983", "opendoar____::355"], ["roar________::1490", "roar________::5983", "opendoar____::355"], ["roar________::5983", "opendoar____::355"]]] +[[["roar________::5698", "opendoar____::1108"], ["roar________::647", "roar________::5698", "opendoar____::1108"], ["roar________::5698", "opendoar____::1108"]]] +[[["roar________::692", "roar________::5540"], ["roar________::692", "opendoar____::1562", "roar________::5540"], ["roar________::692", "roar________::5540"]]] +[[["opendoar____::218", "roar________::5489"], ["roar________::5489", "opendoar____::218", "roar________::858"], ["opendoar____::218", "roar________::5489"]]] +[[["roar________::2741", "roar________::2670", "roar________::2698"], ["opendoar____::1781", "roar________::2670", "roar________::2698"], ["roar________::2670", "roar________::2698"]], [["roar________::2741", "roar________::2670", "roar________::2698"], ["opendoar____::1807", "roar________::2741"], ["roar________::2741"]]] +[[["opendoar____::738", "re3data_____::r3d100013575"], ["opendoar____::738", "roar________::3281"], ["opendoar____::738"]]] +[[["opendoar____::1110", "roar________::4925"], ["opendoar____::1110", "roar________::4925", "roar________::818"], ["opendoar____::1110", "roar________::4925"]]] +[[["roar________::1041", "roar________::1043", "roar________::1042"], ["roar________::1041", "opendoar____::266"], ["roar________::1041"]], [["roar________::1041", "roar________::1043", "roar________::1042"], ["opendoar____::793", "roar________::8289", "roar________::1042"], ["roar________::1042"]]] +[[["re3data_____::r3d100011091", "opendoar____::793", "roar________::8289"], ["opendoar____::793", "roar________::8289", "roar________::1042"], ["opendoar____::793", "roar________::8289"]]] +[[["opendoar____::267", "fairsharing_::1987"], ["opendoar____::267", "roar________::1046"], ["opendoar____::267"]]] +[[["roar________::5422", "opendoar____::138"], ["roar________::5422", "roar________::501", "opendoar____::138", "roar________::5263"], ["roar________::5422", "opendoar____::138"]]] +[[["opendoar____::1971", "roar________::5522"], ["opendoar____::1971", "roar________::3226", "roar________::5522"], ["opendoar____::1971", "roar________::5522"]]] +[[["re3data_____::r3d100012578", "roar________::11303", "opendoar____::3596"], ["roar________::11303", "opendoar____::3596"], ["roar________::11303", "opendoar____::3596"]]] +[[["roar________::2421", "roar________::6466", "roar________::2768", "opendoar____::1967"], ["roar________::5682", "roar________::6466", "opendoar____::1967"], ["roar________::6466", "opendoar____::1967"]], [["roar________::2421", "roar________::6466", "roar________::2768", "opendoar____::1967"], ["roar________::2421", "roar________::2784", "opendoar____::1696", "roar________::2551"], ["roar________::2421"]]] +[[["opendoar____::1696", "roar________::2784"], ["roar________::2421", "roar________::2784", "opendoar____::1696", "roar________::2551"], ["opendoar____::1696", "roar________::2784"]]] +[[["roar________::2404", "opendoar____::1453", "roar________::157"], ["roar________::2404", "opendoar____::1453"], ["roar________::2404", "opendoar____::1453"]]] +[[["opendoar____::1158", "roar________::5497", "roar________::5683"], ["opendoar____::1158", "roar________::1552", "roar________::5497", "roar________::5683"], ["opendoar____::1158", "roar________::5497", "roar________::5683"]]] +[[["roar________::5432", "roar________::4030"], ["opendoar____::2211", "roar________::5432", "roar________::4030"], ["roar________::5432", "roar________::4030"]]] +[[["opendoar____::1613", "roar________::3681"], ["opendoar____::2106", "roar________::3681"], ["roar________::3681"]]] +[[["opendoar____::723", "roar________::3610"], ["opendoar____::2067", "roar________::3610"], ["roar________::3610"]]] +[[["opendoar____::1660", "roar________::4968"], ["opendoar____::1660", "roar________::1560", "roar________::4968"], ["opendoar____::1660", "roar________::4968"]]] +[[["roar________::5888", "opendoar____::377"], ["roar________::5888", "opendoar____::377", "roar________::1539"], ["roar________::5888", "opendoar____::377"]]] +[[["opendoar____::2588", "roar________::11231"], ["opendoar____::2588", "roar________::6173", "roar________::11231"], ["opendoar____::2588", "roar________::11231"]]] +[[["roar________::4315", "re3data_____::r3d100011183", "opendoar____::2370"], ["roar________::4315", "opendoar____::2370"], ["roar________::4315", "opendoar____::2370"]]] +[[["roar________::6427", "roar________::7269", "opendoar____::2771"], ["roar________::6427", "opendoar____::2771"], ["roar________::6427", "opendoar____::2771"]]] +[[["roar________::4992", "roar________::3682"], ["opendoar____::2098", "roar________::4992", "roar________::3682"], ["roar________::4992", "roar________::3682"]]] +[[["roar________::4358", "roar________::4263", "opendoar____::2300"], ["roar________::4263", "opendoar____::2300"], ["roar________::4263", "opendoar____::2300"]]] +[[["opendoar____::1873", "roar________::17564"], ["opendoar____::1873", "roar________::8605", "roar________::17564"], ["opendoar____::1873", "roar________::17564"]]] +[[["roar________::15954", "roar________::16230"], ["opendoar____::3147", "roar________::15954", "roar________::16230"], ["roar________::15954", "roar________::16230"]]] +[[["roar________::16195", "opendoar____::4869"], ["roar________::16195", "opendoar____::15294"], ["roar________::16195"]]] +[[["opendoar____::9506", "roar________::15718"], ["opendoar____::9506", "roar________::16183"], ["opendoar____::9506"]]] +[[["roar________::16225", "roar________::15610", "opendoar____::9479"], ["roar________::16225", "opendoar____::9479", "roar________::16180"], ["roar________::16225", "opendoar____::9479"]]] +[[["opendoar____::9662", "roar________::16074"], ["roar________::16098", "opendoar____::9662"], ["opendoar____::9662"]]] +[[["roar________::15775", "re3data_____::r3d100012394", "opendoar____::3529"], ["opendoar____::3529", "roar________::15775"], ["opendoar____::3529", "roar________::15775"]]] +[[["roar________::15765", "roar________::15805", "opendoar____::9528"], ["roar________::15765", "opendoar____::9528"], ["roar________::15765", "opendoar____::9528"]]] +[[["opendoar____::660", "roar________::15528"], ["roar________::7162", "roar________::15528", "opendoar____::660"], ["roar________::15528", "opendoar____::660"]]] +[[["roar________::15268", "roar________::16042"], ["opendoar____::3401", "roar________::15268"], ["roar________::15268"]]] +[[["roar________::15139", "roar________::15142"], ["opendoar____::4422", "roar________::15142"], ["roar________::15142"]]] +[[["opendoar____::4701", "roar________::15071"], ["opendoar____::4701", "roar________::15261", "roar________::15071"], ["opendoar____::4701", "roar________::15071"]]] +[[["roar________::15039", "roar________::15036"], ["roar________::15036", "roar________::15039", "opendoar____::4379"], ["roar________::15039", "roar________::15036"]]] +[[["roar________::14929", "roar________::16263", "opendoar____::3820", "opendoar____::5226"], ["roar________::14929", "roar________::16263", "opendoar____::3820"], ["roar________::14929", "roar________::16263", "opendoar____::3820"]]] +[[["roar________::14919", "roar________::14918"], ["roar________::14919", "opendoar____::1313", "roar________::14918"], ["roar________::14919", "roar________::14918"]]] +[[["roar________::13965", "opendoar____::4065"], ["roar________::13965", "opendoar____::4064"], ["roar________::13965"]]] +[[["opendoar____::3925", "re3data_____::r3d100012440"], ["opendoar____::3925", "roar________::13092"], ["opendoar____::3925"]]] +[[["roar________::12777", "opendoar____::1786"], ["roar________::12777", "opendoar____::1786", "roar________::2708"], ["roar________::12777", "opendoar____::1786"]]] +[[["roar________::12499", "roar________::12517", "opendoar____::3972"], ["roar________::12499", "opendoar____::3972"], ["roar________::12499", "opendoar____::3972"]]] +[[["opendoar____::3904", "roar________::13135"], ["opendoar____::3904", "roar________::12440"], ["opendoar____::3904"]]] +[[["re3data_____::r3d100012285", "opendoar____::3824", "roar________::12405"], ["opendoar____::3824", "roar________::12405"], ["opendoar____::3824", "roar________::12405"]]] +[[["roar________::11933", "roar________::12453"], ["roar________::11933", "opendoar____::3840"], ["roar________::11933"]]] +[[["roar________::11684", "re3data_____::r3d100011654", "opendoar____::3722"], ["roar________::11684", "opendoar____::3722"], ["roar________::11684", "opendoar____::3722"]]] +[[["re3data_____::r3d100012051", "roar________::11444", "opendoar____::3128"], ["roar________::11444", "opendoar____::3128"], ["roar________::11444", "opendoar____::3128"]]] +[[["opendoar____::5487", "roar________::11209"], ["opendoar____::2536", "roar________::5750", "roar________::11209"], ["roar________::11209"]]] +[[["roar________::10545", "roar________::14547"], ["roar________::10545", "opendoar____::3539", "roar________::14547"], ["roar________::10545", "roar________::14547"]]] +[[["opendoar____::1958", "roar________::16077"], ["opendoar____::1958", "roar________::10255"], ["opendoar____::1958"]]] +[[["roar________::10244", "roar________::10243"], ["opendoar____::3460", "roar________::10244", "roar________::10243"], ["roar________::10244", "roar________::10243"]]] +[[["opendoar____::3460", "roar________::17601"], ["opendoar____::3460", "roar________::10244", "roar________::10243"], ["opendoar____::3460"]]] +[[["roar________::10109", "opendoar____::3462"], ["roar________::10109", "opendoar____::3463"], ["roar________::10109"]]] +[[["opendoar____::2825", "roar________::9878"], ["roar________::6490", "opendoar____::2825", "roar________::9878"], ["opendoar____::2825", "roar________::9878"]]] +[[["fairsharing_::2603", "roar________::9762", "opendoar____::3342"], ["roar________::9762", "opendoar____::3342"], ["roar________::9762", "opendoar____::3342"]]] +[[["roar________::9705", "opendoar____::3319"], ["roar________::9647", "opendoar____::3319"], ["opendoar____::3319"]]] +[[["roar________::5052", "opendoar____::2441"], ["roar________::9597", "roar________::5052", "opendoar____::2441"], ["roar________::5052", "opendoar____::2441"]]] +[[["roar________::9531", "opendoar____::3284"], ["roar________::9531", "opendoar____::CUDI"], ["roar________::9531"]]] +[[["roar________::9507", "roar________::9474", "re3data_____::r3d100012347", "opendoar____::3316"], ["roar________::9474", "opendoar____::3316"], ["roar________::9474", "opendoar____::3316"]]] +[[["opendoar____::2533", "roar________::9142"], ["roar________::5717", "opendoar____::2533", "roar________::9142"], ["opendoar____::2533", "roar________::9142"]]] +[[["roar________::9276", "roar________::9094", "opendoar____::3199"], ["roar________::9094", "opendoar____::3199"], ["roar________::9094", "opendoar____::3199"]]] +[[["re3data_____::r3d100012866", "roar________::9057"], ["roar________::9057", "opendoar____::3721"], ["roar________::9057"]]] +[[["roar________::15285", "roar________::8928"], ["roar________::8928", "opendoar____::3409"], ["roar________::8928"]]] +[[["roar________::8877", "roar________::8879"], ["opendoar____::3177", "roar________::8877"], ["roar________::8877"]]] +[[["roar________::8798", "roar________::8812"], ["roar________::8798", "opendoar____::3150"], ["roar________::8798"]]] +[[["opendoar____::3096", "roar________::8677", "roar________::12182"], ["opendoar____::3096", "roar________::8677"], ["opendoar____::3096", "roar________::8677"]]] +[[["roar________::14836", "opendoar____::3112"], ["roar________::8672", "opendoar____::3112"], ["opendoar____::3112"]]] +[[["opendoar____::2528", "roar________::8647"], ["roar________::5704", "opendoar____::2528", "roar________::8647"], ["opendoar____::2528", "roar________::8647"]]] +[[["opendoar____::3087", "roar________::8504", "opendoar____::4500"], ["opendoar____::3087", "roar________::8504"], ["opendoar____::3087", "roar________::8504"]]] +[[["roar________::8405", "roar________::8716"], ["roar________::8405", "opendoar____::3078"], ["roar________::8405"]]] +[[["opendoar____::3183", "roar________::8952"], ["roar________::8353", "opendoar____::3183"], ["opendoar____::3183"]]] +[[["roar________::8316", "roar________::11060"], ["opendoar____::3111", "roar________::8316"], ["roar________::8316"]]] +[[["roar________::7932", "opendoar____::2959"], ["roar________::8103", "roar________::7932", "opendoar____::2959"], ["opendoar____::2959", "roar________::7932"]]] +[[["roar________::8003", "roar________::7943"], ["roar________::7943", "opendoar____::2725"], ["roar________::7943"]]] +[[["opendoar____::1312", "roar________::7767"], ["roar________::5486", "opendoar____::1312", "roar________::7767"], ["opendoar____::1312", "roar________::7767"]]] +[[["roar________::7498", "roar________::7483"], ["roar________::7498", "roar________::7483", "opendoar____::2824"], ["roar________::7498", "roar________::7483"]]] +[[["roar________::7486", "opendoar____::2844"], ["roar________::7374", "opendoar____::2844"], ["opendoar____::2844"]]] +[[["roar________::7338", "opendoar____::2858", "roar________::7367"], ["roar________::7338", "opendoar____::2858"], ["roar________::7338", "opendoar____::2858"]]] +[[["roar________::7161", "roar________::7151"], ["roar________::7151", "opendoar____::2722"], ["roar________::7151"]]] +[[["roar________::7005", "roar________::7056", "opendoar____::2070"], ["roar________::7005", "opendoar____::2070"], ["roar________::7005", "opendoar____::2070"]]] +[[["opendoar____::2151", "roar________::6485", "opendoar____::4642"], ["opendoar____::2151", "roar________::6485", "roar________::3810"], ["opendoar____::2151", "roar________::6485"]]] +[[["roar________::7244", "roar________::6334"], ["opendoar____::2769", "roar________::6334"], ["roar________::6334"]]] +[[["roar________::6212", "opendoar____::2619"], ["opendoar____::5116", "roar________::6212"], ["roar________::6212"]]] +[[["roar________::6167", "opendoar____::2717", "roar________::6580"], ["roar________::6167", "opendoar____::2717"], ["roar________::6167", "opendoar____::2717"]]] +[[["opendoar____::2571", "roar________::6033", "re3data_____::r3d100010701"], ["opendoar____::2571", "roar________::6033"], ["opendoar____::2571", "roar________::6033"]]] +[[["roar________::5759", "opendoar____::1892"], ["roar________::3049", "roar________::5759", "opendoar____::1892"], ["opendoar____::1892", "roar________::5759"]]] +[[["opendoar____::2969", "opendoar____::2546"], ["roar________::5747", "opendoar____::2546"], ["opendoar____::2546"]]] +[[["opendoar____::1297", "roar________::5743"], ["roar________::771", "opendoar____::1297", "roar________::5743"], ["opendoar____::1297", "roar________::5743"]]] +[[["roar________::4940", "roar________::5709"], ["roar________::4940", "opendoar____::2321", "roar________::5709"], ["roar________::4940", "roar________::5709"]]] +[[["roar________::5707", "opendoar____::1377"], ["roar________::5707", "opendoar____::1377", "roar________::234"], ["roar________::5707", "opendoar____::1377"]]] +[[["opendoar____::2519", "roar________::17002"], ["opendoar____::2519", "roar________::5652"], ["opendoar____::2519"]]] +[[["opendoar____::2496", "roar________::5618"], ["opendoar____::2496", "roar________::5618", "roar________::5498"], ["opendoar____::2496", "roar________::5618"]]] +[[["roar________::5541", "roar________::474"], ["roar________::5541", "roar________::474", "opendoar____::1254"], ["roar________::5541", "roar________::474"]]] +[[["roar________::5528", "roar________::1492", "opendoar____::1637"], ["roar________::5528", "opendoar____::1637"], ["roar________::5528", "opendoar____::1637"]]] +[[["roar________::4999", "roar________::5524", "roar________::2723"], ["roar________::4999", "roar________::5524", "opendoar____::1815", "roar________::2723"], ["roar________::4999", "roar________::5524", "roar________::2723"]]] +[[["roar________::5507", "opendoar____::891"], ["roar________::5507", "roar________::395", "opendoar____::891"], ["roar________::5507", "opendoar____::891"]]] +[[["opendoar____::678", "re3data_____::r3d100012060"], ["roar________::5502", "opendoar____::678"], ["opendoar____::678"]]] +[[["roar________::5482", "roar________::5214"], ["opendoar____::2477", "roar________::5482", "roar________::5214"], ["roar________::5482", "roar________::5214"]]] +[[["opendoar____::2385", "roar________::4684", "roar________::4626", "roar________::5480"], ["roar________::5480", "roar________::4684", "opendoar____::2385"], ["roar________::5480", "roar________::4684", "opendoar____::2385"]]] +[[["roar________::5446", "opendoar____::2503", "roar________::8469"], ["roar________::5446", "opendoar____::2503"], ["roar________::5446", "opendoar____::2503"]]] +[[["roar________::5437", "roar________::3115"], ["roar________::5437", "roar________::3115", "opendoar____::1644"], ["roar________::5437", "roar________::3115"]]] +[[["roar________::2335", "roar________::3083"], ["roar________::2335", "roar________::3083", "opendoar____::691", "roar________::5403"], ["roar________::2335", "roar________::3083"]]] +[[["opendoar____::691", "roar________::5403"], ["roar________::2335", "roar________::3083", "opendoar____::691", "roar________::5403"], ["opendoar____::691", "roar________::5403"]]] +[[["opendoar____::1354", "roar________::5283"], ["roar________::5283", "roar________::3486", "opendoar____::1354"], ["opendoar____::1354", "roar________::5283"]]] +[[["roar________::5218", "opendoar____::2225"], ["roar________::5218", "roar________::4086", "opendoar____::2225"], ["roar________::5218", "opendoar____::2225"]]] +[[["roar________::5215", "opendoar____::2472", "roar________::9932"], ["roar________::5215", "opendoar____::2472"], ["roar________::5215", "opendoar____::2472"]]] +[[["roar________::3199", "roar________::5210"], ["roar________::3199", "roar________::5210", "opendoar____::1944"], ["roar________::3199", "roar________::5210"]]] +[[["roar________::8772", "opendoar____::2112", "roar________::3597"], ["roar________::3597", "opendoar____::2112", "roar________::5071"], ["opendoar____::2112", "roar________::3597"]]] +[[["roar________::5027", "roar________::5028"], ["opendoar____::2444", "roar________::5027"], ["roar________::5027"]]] +[[["opendoar____::1563", "roar________::4986"], ["opendoar____::1563", "roar________::4986", "roar________::939"], ["opendoar____::1563", "roar________::4986"]]] +[[["roar________::4975", "opendoar____::3499"], ["roar________::4975", "opendoar____::898"], ["roar________::4975"]]] +[[["opendoar____::2402", "roar________::6564", "roar________::4967"], ["opendoar____::2402", "roar________::4967"], ["opendoar____::2402", "roar________::4967"]]] +[[["opendoar____::472", "roar________::4947"], ["opendoar____::472", "roar________::4947", "roar________::472"], ["opendoar____::472", "roar________::4947"]]] +[[["roar________::3757", "roar________::4943"], ["roar________::3757", "roar________::4943", "opendoar____::2124"], ["roar________::3757", "roar________::4943"]]] +[[["opendoar____::1837", "roar________::4790"], ["opendoar____::1837", "roar________::4790", "roar________::2662"], ["opendoar____::1837", "roar________::4790"]]] +[[["roar________::3149", "opendoar____::1922"], ["roar________::3149", "roar________::4785", "opendoar____::1922"], ["roar________::3149", "opendoar____::1922"]]] +[[["roar________::4727", "opendoar____::1282", "re3data_____::r3d100011219"], ["roar________::4727", "opendoar____::1282"], ["roar________::4727", "opendoar____::1282"]]] +[[["roar________::13988", "opendoar____::1044"], ["opendoar____::1044", "roar________::4688"], ["opendoar____::1044"]]] +[[["roar________::2790", "roar________::4685", "opendoar____::1829"], ["roar________::4685", "opendoar____::1829"], ["roar________::4685", "opendoar____::1829"]]] +[[["roar________::4675", "roar________::3889", "re3data_____::r3d100011249", "opendoar____::2170"], ["roar________::4675", "roar________::3889", "opendoar____::2170"], ["roar________::4675", "roar________::3889", "opendoar____::2170"]]] +[[["opendoar____::1287", "roar________::4641"], ["opendoar____::1287", "roar________::4641", "roar________::108"], ["opendoar____::1287", "roar________::4641"]]] +[[["roar________::4292", "roar________::3484"], ["roar________::4292", "roar________::3484", "opendoar____::2028"], ["roar________::4292", "roar________::3484"]]] +[[["roar________::4245", "roar________::4304"], ["opendoar____::2314", "roar________::4245"], ["roar________::4245"]]] +[[["roar________::310", "roar________::3409"], ["opendoar____::1361", "roar________::310", "roar________::3409"], ["roar________::310", "roar________::3409"]]] +[[["roar________::3739", "opendoar____::2010", "roar________::3403"], ["opendoar____::2010", "roar________::3403"], ["roar________::3403", "opendoar____::2010"]]] +[[["roar________::5037", "roar________::3286"], ["opendoar____::1979", "roar________::3286"], ["roar________::3286"]]] +[[["roar________::3270", "opendoar____::2002", "roar________::3271"], ["roar________::3270", "opendoar____::2002"], ["roar________::3270", "opendoar____::2002"]]] +[[["opendoar____::287", "roar________::3086"], ["opendoar____::287", "roar________::1207", "roar________::3086"], ["opendoar____::287", "roar________::3086"]]] +[[["roar________::2970", "opendoar____::1615"], ["roar________::2970", "opendoar____::1615", "roar________::665"], ["roar________::2970", "opendoar____::1615"]]] +[[["roar________::2836", "opendoar____::1442"], ["roar________::1151", "roar________::2836", "opendoar____::1442"], ["roar________::2836", "opendoar____::1442"]]] +[[["roar________::2810", "roar________::2787", "roar________::2788", "opendoar____::1830"], ["roar________::2787", "opendoar____::1830"], ["roar________::2787", "opendoar____::1830"]]] +[[["roar________::2730", "roar________::2716"], ["roar________::2730", "opendoar____::1812"], ["roar________::2730"]]] +[[["roar________::2725", "roar________::2704"], ["opendoar____::1802", "roar________::2725"], ["roar________::2725"]], [["roar________::2725", "roar________::2704"], ["roar________::2704", "opendoar____::1782"], ["roar________::2704"]]] +[[["opendoar____::1712", "roar________::2532"], ["opendoar____::1712", "roar________::2432", "roar________::2532"], ["opendoar____::1712", "roar________::2532"]]] +[[["re3data_____::r3d100013242", "opendoar____::1606"], ["opendoar____::1606", "roar________::124"], ["opendoar____::1606"]]] +[[["roar________::133", "roar________::2665"], ["opendoar____::1584", "roar________::133"], ["roar________::133"]]] +[[["roar________::3762", "opendoar____::1155", "roar________::1159"], ["opendoar____::1155", "roar________::1159"], ["opendoar____::1155", "roar________::1159"]]] +[[["roar________::3172", "opendoar____::1609", "roar________::1272"], ["opendoar____::1609", "roar________::1272"], ["opendoar____::1609", "roar________::1272"]]] +[[["opendoar____::3484", "roar________::10326"], ["opendoar____::3484", "roar________::1459"], ["opendoar____::3484"]]] diff --git a/data/out/newGroups.txt b/data/out/newGroups.txt new file mode 100644 index 0000000..d4fbc8c --- /dev/null +++ b/data/out/newGroups.txt @@ -0,0 +1,405 @@ +["opendoar____::2963", "fairsharing_::2114", "re3data_____::r3d100010191"] +["opendoar____::4194", "re3data_____::r3d100011201", "fairsharing_::2560"] +["opendoar____::394", "fairsharing_::2702", "re3data_____::r3d100010765", "roar________::46"] +["fairsharing_::2820", "re3data_____::r3d100013120", "opendoar____::10134", "roar________::17137"] +["roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006", "fairsharing_::2504"] +["roar________::1532", "opendoar____::375", "fairsharing_::2536", "re3data_____::r3d100010423"] +["fairsharing_::2542", "opendoar____::10329", "re3data_____::r3d100010691"] +["re3data_____::r3d100011805", "opendoar____::10062", "fairsharing_::3009"] +["re3data_____::r3d100012385", "fairsharing_::2558", "opendoar____::4241"] +["re3data_____::r3d100012397", "fairsharing_::2524", "re3data_____::r3d100013223"] +["re3data_____::r3d100010066", "opendoar____::2073", "fairsharing_::1843"] +["opendoar____::9768", "fairsharing_::2768", "re3data_____::r3d100013177", "roar________::16302"] +["opendoar____::3593", "roar________::11294", "fairsharing_::3331", "re3data_____::r3d100011800", "opendoar____::3594"] +["re3data_____::r3d100011108", "opendoar____::5870", "fairsharing_::2778"] +["re3data_____::r3d100011817", "fairsharing_::2676", "opendoar____::4164"] +["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"] +["fairsharing_::2358", "re3data_____::r3d100010468", "opendoar____::2659"] +["re3data_____::r3d100012673", "opendoar____::10197", "fairsharing_::2608"] +["opendoar____::2294", "fairsharing_::2557", "re3data_____::r3d100010750", "roar________::4205"] +["re3data_____::r3d100012435", "fairsharing_::2303", "opendoar____::4166"] +["opendoar____::4344", "fairsharing_::3080", "re3data_____::r3d100011898"] +["fairsharing_::1562", "roar________::269", "re3data_____::r3d100010213", "opendoar____::418"] +["opendoar____::4296", "fairsharing_::2372", "re3data_____::r3d100010101"] +["fairsharing_::2452", "opendoar____::2954", "re3data_____::r3d100010051"] +["fairsharing_::3027", "re3data_____::r3d100012692", "roar________::854", "opendoar____::1237"] +["re3data_____::r3d100011890", "fairsharing_::2584", "opendoar____::10026"] +["re3data_____::r3d100011191", "fairsharing_::3142", "opendoar____::129", "roar________::469"] +["opendoar____::3893", "roar________::12885", "re3data_____::r3d100010157", "fairsharing_::3041"] +["roar________::1290", "fairsharing_::1989", "re3data_____::r3d100010129", "opendoar____::1373"] +["re3data_____::r3d100011868", "opendoar____::3881", "fairsharing_::2453"] +["re3data_____::r3d100011086", "opendoar____::3576", "roar________::10345", "fairsharing_::2295"] +["re3data_____::r3d100010216", "fairsharing_::2537", "opendoar____::3739"] +["fairsharing_::2760", "roar________::13313", "opendoar____::4062", "re3data_____::r3d100012316"] +["opendoar____::2731", "re3data_____::r3d100000005", "fairsharing_::2864"] +["opendoar____::10171", "re3data_____::r3d100012538", "fairsharing_::2955"] +["re3data_____::r3d100013343", "fairsharing_::3262", "opendoar____::10274"] +["fairsharing_::3327", "opendoar____::109", "roar________::390", "re3data_____::r3d100010620"] +["opendoar____::10272", "fairsharing_::3333", "re3data_____::r3d100013271"] +["re3data_____::r3d100011538", "fairsharing_::2424", "re3data_____::r3d100010412"] +["re3data_____::r3d100010734", "opendoar____::3054", "fairsharing_::2508"] +["re3data_____::r3d100010078", "roar________::3887", "fairsharing_::3144"] +["opendoar____::495", "re3data_____::r3d100010766", "roar________::1137", "fairsharing_::2980", "roar________::2463"] +["re3data_____::r3d100012274", "roar________::6428", "opendoar____::1122"] +["roar________::5222", "re3data_____::r3d100013537", "roar________::5212", "opendoar____::2473"] +["opendoar____::5533", "re3data_____::r3d100013665", "roar________::309", "opendoar____::1409", "roar________::5572"] +["roar________::5792", "opendoar____::2553", "re3data_____::r3d100013722"] +["opendoar____::2247", "roar________::778", "opendoar____::186144", "re3data_____::r3d100010094"] +["roar________::11835", "re3data_____::r3d100013348", "opendoar____::9625"] +["opendoar____::3533", "roar________::10776", "re3data_____::r3d100013352"] +["roar________::272", "re3data_____::r3d100013362", "roar________::10637", "opendoar____::1267"] +["opendoar____::2587", "roar________::6088", "re3data_____::r3d100013382"] +["opendoar____::719", "re3data_____::r3d100013394", "roar________::5988"] +["opendoar____::1527", "roar________::1341", "re3data_____::r3d100013427", "roar________::9559"] +["roar________::16495", "opendoar____::4706", "roar________::16494", "opendoar____::3793", "re3data_____::r3d100013450", "roar________::10970"] +["re3data_____::r3d100013465", "roar________::10452", "opendoar____::1404"] +["roar________::399", "re3data_____::r3d100010599", "opendoar____::88"] +["roar________::4562", "roar________::3755", "roar________::3591", "opendoar____::2373", "opendoar____::2115"] +["roar________::4562", "roar________::4695", "roar________::3591", "opendoar____::2373"] +["opendoar____::1385", "roar________::1164", "roar________::8784"] +["roar________::5531", "opendoar____::1232", "roar________::1488"] +["roar________::498", "roar________::4781", "opendoar____::464"] +["re3data_____::r3d100013546", "roar________::1171", "opendoar____::605"] +["roar________::4442", "opendoar____::2447", "roar________::5051"] +["roar________::3038", "roar________::5220", "opendoar____::578"] +["roar________::784", "opendoar____::510", "roar________::7861", "roar________::5756"] +["opendoar____::961", "roar________::631", "opendoar____::4395"] +["roar________::4969", "roar________::215", "opendoar____::586"] +["roar________::490", "opendoar____::8789", "opendoar____::134"] +["opendoar____::567", "roar________::2838", "roar________::3522", "roar________::3416"] +["roar________::1568", "roar________::1227", "opendoar____::409"] +["roar________::9104", "opendoar____::1154", "roar________::333"] +["roar________::70", "opendoar____::1400", "roar________::2347"] +["opendoar____::5057", "roar________::914", "opendoar____::1530"] +["roar________::5306", "opendoar____::2033", "roar________::2511"] +["roar________::5429", "roar________::457", "opendoar____::460"] +["opendoar____::1623", "roar________::4683", "roar________::4440"] +["roar________::5204", "opendoar____::1700", "roar________::1132"] +["roar________::1247", "roar________::5421", "opendoar____::867"] +["roar________::712", "opendoar____::1658", "roar________::8709"] +["opendoar____::2230", "roar________::4090", "roar________::5385"] +["roar________::1240", "re3data_____::r3d100012232", "opendoar____::305"] +["roar________::1419", "roar________::2526", "opendoar____::346"] +["opendoar____::137", "roar________::500", "roar________::4995"] +["roar________::280", "roar________::5186", "opendoar____::76"] +["roar________::466", "re3data_____::r3d100010751", "opendoar____::1610"] +["re3data_____::r3d100013116", "opendoar____::882", "roar________::1386"] +["roar________::5695", "opendoar____::2053", "roar________::3579", "roar________::3930", "roar________::5461"] +["roar________::3495", "opendoar____::153", "roar________::555"] +["roar________::3925", "opendoar____::2193", "roar________::5546"] +["opendoar____::364", "roar________::15907", "roar________::358"] +["roar________::4934", "opendoar____::1932", "roar________::3207"] +["opendoar____::2274", "roar________::3059", "roar________::4959", "opendoar____::1896"] +["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"] +["roar________::4274", "opendoar____::2303", "roar________::4377"] +["opendoar____::1437", "roar________::3553", "roar________::1095"] +["opendoar____::2311", "roar________::4374", "roar________::4268"] +["roar________::5885", "roar________::3358", "opendoar____::2004"] +["roar________::4680", "opendoar____::1009", "roar________::1382"] +["opendoar____::10050", "roar________::2819", "opendoar____::2840"] +["opendoar____::1485", "roar________::1497", "roar________::5584"] +["opendoar____::524", "roar________::5265", "roar________::380"] +["opendoar____::1855", "roar________::2928", "roar________::2918"] +["roar________::834", "roar________::4677", "opendoar____::432"] +["roar________::9724", "opendoar____::3238", "opendoar____::1059", "roar________::2518", "opendoar____::3332"] +["roar________::478", "opendoar____::462", "roar________::5264"] +["roar________::4687", "opendoar____::1445", "roar________::106"] +["roar________::293", "roar________::3419", "roar________::3148", "opendoar____::959"] +["roar________::3390", "opendoar____::2645", "roar________::6694"] +["roar________::1206", "opendoar____::497", "roar________::4637"] +["roar________::4726", "roar________::722", "opendoar____::179"] +["roar________::3539", "roar________::3663", "opendoar____::2087"] +["roar________::958", "opendoar____::1443", "roar________::3126", "roar________::2391"] +["opendoar____::1488", "re3data_____::r3d100012414", "roar________::1129"] +["opendoar____::2379", "roar________::3592", "roar________::3693", "roar________::4585", "roar________::2617"] +["opendoar____::1501", "roar________::4789", "roar________::1085"] +["re3data_____::r3d100011218", "roar________::814", "opendoar____::206"] +["opendoar____::239", "opendoar____::241", "roar________::5221", "roar________::976", "roar________::978", "roar________::2328"] +["roar________::3385", "roar________::3804", "opendoar____::2149"] +["opendoar____::2231", "roar________::2936", "roar________::4133"] +["roar________::5001", "opendoar____::14", "roar________::80"] +["roar________::5445", "roar________::936", "opendoar____::1226"] +["roar________::98", "opendoar____::889", "roar________::2346"] +["roar________::4636", "opendoar____::1165", "roar________::671"] +["opendoar____::1891", "roar________::2943", "roar________::1059"] +["opendoar____::242", "roar________::979", "roar________::4932"] +["roar________::1448", "re3data_____::r3d100012604", "opendoar____::3", "roar________::5509"] +["opendoar____::606", "roar________::143", "re3data_____::r3d100011169"] +["roar________::5561", "opendoar____::518", "re3data_____::r3d100013102", "roar________::1528"] +["roar________::221", "roar________::222", "opendoar____::61", "roar________::5623"] +["roar________::547", "opendoar____::1702", "roar________::4962"] +["opendoar____::581", "roar________::3109", "roar________::384"] +["roar________::7062", "opendoar____::1396", "roar________::528", "roar________::5564"] +["opendoar____::2452", "roar________::12785", "roar________::5449", "roar________::5072"] +["roar________::4437", "opendoar____::1525", "roar________::486", "roar________::3555"] +["opendoar____::232", "opendoar____::1104", "roar________::954"] +["roar________::13359", "roar________::13385", "roar________::749", "opendoar____::601"] +["roar________::746", "opendoar____::931", "roar________::2392"] +["opendoar____::2339", "roar________::4308", "roar________::5184"] +["opendoar____::2063", "roar________::2649", "roar________::6393"] +["opendoar____::1528", "roar________::383", "roar________::14150", "roar________::4983"] +["opendoar____::2364", "roar________::4320", "opendoar____::5091"] +["roar________::1541", "roar________::10577", "roar________::3992", "roar________::5185", "opendoar____::1391"] +["roar________::2856", "roar________::2846", "roar________::3202", "opendoar____::1845"] +["opendoar____::283", "roar________::5127", "roar________::3420"] +["roar________::93", "opendoar____::403", "roar________::2839"] +["roar________::4590", "opendoar____::1760", "roar________::5530", "roar________::2608"] +["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"] +["roar________::5258", "roar________::2849", "opendoar____::1875"] +["opendoar____::2047", "roar________::5514", "roar________::3554"] +["opendoar____::393", "roar________::5003", "roar________::801"] +["re3data_____::r3d100012417", "roar________::1363", "opendoar____::322"] +["roar________::5553", "roar________::1243", "opendoar____::501"] +["opendoar____::471", "roar________::2400", "roar________::1513", "roar________::4719"] +["roar________::5567", "opendoar____::2497", "opendoar____::546", "roar________::569"] +["roar________::1349", "roar________::4676", "opendoar____::972"] +["roar________::1241", "roar________::11182", "opendoar____::1627", "roar________::4998"] +["roar________::64", "roar________::5474", "opendoar____::1080"] +["opendoar____::400", "roar________::2425", "roar________::471"] +["opendoar____::1035", "roar________::9715", "roar________::9708"] +["roar________::7829", "roar________::6688", "opendoar____::2804"] +["roar________::5795", "roar________::6199", "opendoar____::2381"] +["roar________::5986", "roar________::3736", "opendoar____::2123"] +["opendoar____::1061", "roar________::5889", "roar________::1106"] +["roar________::1474", "opendoar____::1678", "roar________::5720"] +["roar________::5157", "roar________::5041", "opendoar____::2465", "roar________::5687"] +["roar________::1139", "opendoar____::935", "roar________::5628"] +["roar________::5587", "roar________::3158", "opendoar____::1916", "roar________::3214"] +["roar________::5297", "roar________::5578", "opendoar____::2491"] +["roar________::5571", "roar________::789", "opendoar____::1518"] +["roar________::5548", "opendoar____::1470", "roar________::761"] +["opendoar____::1178", "roar________::426", "roar________::5538"] +["roar________::5423", "opendoar____::1583", "roar________::412"] +["roar________::5237", "roar________::5234", "opendoar____::2490"] +["opendoar____::239", "roar________::5221", "roar________::976", "roar________::2328"] +["re3data_____::r3d100011202", "roar________::4973", "opendoar____::956"] +["opendoar____::2599", "roar________::7274", "roar________::6225"] +["opendoar____::2403", "roar________::4533", "roar________::4707"] +["opendoar____::2223", "roar________::3996", "opendoar____::4920"] +["roar________::3701", "opendoar____::2046", "roar________::5560"] +["opendoar____::2040", "roar________::3551", "roar________::3512"] +["roar________::4273", "opendoar____::2325", "roar________::4369"] +["roar________::4270", "roar________::4354", "opendoar____::2305"] +["opendoar____::2323", "roar________::4353", "roar________::4352"] +["roar________::4075", "opendoar____::2015", "roar________::3387"] +["roar________::3089", "roar________::3054", "opendoar____::1888"] +["roar________::2964", "re3data_____::r3d100012564", "opendoar____::2829"] +["roar________::3119", "roar________::10021", "opendoar____::1903"] +["opendoar____::1912", "roar________::3106", "roar________::3108"] +["roar________::3217", "opendoar____::1957", "roar________::2634"] +["opendoar____::2133", "opendoar____::1736", "roar________::2510", "roar________::4671"] +["roar________::2820", "roar________::2372", "opendoar____::1717"] +["roar________::4379", "opendoar____::2306", "roar________::4266"] +["roar________::4370", "roar________::4371", "roar________::4262", "opendoar____::2298"] +["roar________::4977", "roar________::684", "opendoar____::1694"] +["opendoar____::1698", "roar________::11100", "roar________::893"] +["opendoar____::1472", "roar________::5536", "roar________::595"] +["opendoar____::1899", "roar________::3651", "roar________::3080"] +["roar________::539", "roar________::2945", "opendoar____::1271", "roar________::3111"] +["roar________::845", "opendoar____::1217", "roar________::3084"] +["opendoar____::938", "roar________::1103", "roar________::3508"] +["roar________::724", "opendoar____::1036", "roar________::12023"] +["opendoar____::1898", "roar________::3087", "roar________::5205"] +["re3data_____::r3d100013225", "roar________::2973", "opendoar____::427"] +["roar________::4996", "roar________::652", "opendoar____::990"] +["roar________::4717", "roar________::175", "opendoar____::1140"] +["roar________::467", "opendoar____::562", "roar________::5569"] +["roar________::15", "roar________::16", "opendoar____::538", "roar________::2329"] +["roar________::353", "roar________::4952", "opendoar____::963"] +["roar________::2344", "opendoar____::383", "roar________::6"] +["roar________::2340", "opendoar____::258", "roar________::10"] +["roar________::2341", "opendoar____::259", "roar________::5"] +["roar________::2321", "roar________::2341", "opendoar____::261", "roar________::8", "opendoar____::259", "roar________::5"] +["re3data_____::r3d100011181", "roar________::302", "opendoar____::430"] +["roar________::12", "roar________::2332", "opendoar____::263"] +["roar________::7", "opendoar____::260", "roar________::2334", "roar________::3287"] +["roar________::2424", "opendoar____::157", "roar________::833"] +["roar________::2322", "roar________::17", "opendoar____::361"] +["roar________::2337", "roar________::14", "opendoar____::264"] +["roar________::2327", "opendoar____::384", "roar________::20"] +["opendoar____::1329", "re3data_____::r3d100013445", "roar________::1193"] +["opendoar____::650", "re3data_____::r3d100012596", "roar________::349"] +["roar________::9782", "opendoar____::965", "roar________::1540"] +["re3data_____::r3d100010690", "opendoar____::1330", "roar________::756", "roar________::5487"] +["roar________::5083", "opendoar____::2187", "roar________::3976", "roar________::5067"] +["opendoar____::2111", "roar________::3766", "roar________::5189", "roar________::3615"] +["roar________::3931", "roar________::3341", "opendoar____::1994"] +["opendoar____::1469", "re3data_____::r3d100011274", "roar________::288", "roar________::4616"] +["opendoar____::1106", "re3data_____::r3d100011076", "roar________::321"] +["opendoar____::986", "roar________::1202", "roar________::12410"] +["opendoar____::1261", "roar________::8237", "roar________::73"] +["opendoar____::1763", "roar________::4635", "roar________::2610"] +["roar________::2323", "opendoar____::262", "roar________::13"] +["roar________::1096", "roar________::6361", "opendoar____::1375"] +["roar________::2705", "opendoar____::1779", "opendoar____::2493", "roar________::5439"] +["opendoar____::1868", "roar________::2992", "roar________::4020"] +["roar________::1558", "roar________::2674", "opendoar____::1825", "roar________::892", "opendoar____::1419"] +["roar________::6102", "roar________::2462", "opendoar____::1715"] +["roar________::5642", "fairsharing_::3108", "opendoar____::2377"] +["roar________::4589", "roar________::5559", "opendoar____::2378"] +["roar________::161", "opendoar____::1299", "roar________::4987"] +["roar________::5506", "roar________::1466", "opendoar____::914", "roar________::15186"] +["roar________::602", "roar________::2312", "roar________::5495", "opendoar____::1149"] +["roar________::870", "roar________::5466", "opendoar____::523"] +["roar________::5453", "opendoar____::365", "roar________::1481"] +["roar________::4821", "roar________::4559", "opendoar____::2821"] +["re3data_____::r3d100013030", "opendoar____::1560", "roar________::1127"] +["opendoar____::4320", "roar________::4745", "opendoar____::2429"] +["roar________::419", "opendoar____::1604", "roar________::5987", "roar________::5535"] +["roar________::5492", "roar________::3634", "roar________::15183", "opendoar____::2089", "roar________::16081"] +["roar________::3911", "re3data_____::r3d100012376", "opendoar____::1510"] +["opendoar____::1890", "roar________::3052", "roar________::8703"] +["roar________::5411", "opendoar____::1236", "roar________::3212"] +["roar________::5557", "opendoar____::1649", "roar________::766", "roar________::3933"] +["roar________::5550", "roar________::14050", "opendoar____::1441", "roar________::1019"] +["roar________::13098", "roar________::1086", "opendoar____::1406"] +["opendoar____::2135", "roar________::3986", "roar________::3230"] +["opendoar____::1941", "opendoar____::3771", "roar________::11092", "roar________::3210"] +["roar________::3256", "opendoar____::1240", "roar________::1287", "roar________::2402"] +["opendoar____::2718", "re3data_____::r3d100013442", "roar________::6686"] +["opendoar____::2483", "roar________::5280", "roar________::5511", "roar________::8240"] +["roar________::5558", "opendoar____::982", "roar________::505"] +["opendoar____::2293", "roar________::5181", "roar________::4946", "roar________::5544"] +["opendoar____::9400", "opendoar____::215", "roar________::6724"] +["roar________::1490", "opendoar____::355", "roar________::5983"] +["roar________::5698", "roar________::647", "opendoar____::1108"] +["roar________::692", "opendoar____::1562", "roar________::5540"] +["opendoar____::218", "roar________::858", "roar________::5489"] +["roar________::2741", "opendoar____::1807", "opendoar____::1781", "roar________::2670", "roar________::2698"] +["opendoar____::738", "re3data_____::r3d100013575", "roar________::3281"] +["opendoar____::1110", "roar________::4925", "roar________::818"] +["roar________::1041", "roar________::1043", "opendoar____::793", "opendoar____::266", "roar________::1042", "roar________::8289"] +["opendoar____::793", "roar________::1042", "re3data_____::r3d100011091", "roar________::8289"] +["opendoar____::267", "fairsharing_::1987", "roar________::1046"] +["roar________::501", "roar________::5422", "opendoar____::138", "roar________::5263"] +["opendoar____::1971", "roar________::3226", "roar________::5522"] +["roar________::11303", "opendoar____::3596", "re3data_____::r3d100012578"] +["opendoar____::1696", "roar________::2551", "roar________::2768", "roar________::2784", "roar________::5682", "opendoar____::1967", "roar________::2421", "roar________::6466"] +["opendoar____::1696", "roar________::2551", "roar________::2421", "roar________::2784"] +["roar________::2404", "opendoar____::1453", "roar________::157"] +["opendoar____::1158", "roar________::5497", "roar________::5683", "roar________::1552"] +["roar________::5432", "opendoar____::2211", "roar________::4030"] +["opendoar____::2106", "opendoar____::1613", "roar________::3681"] +["opendoar____::2067", "opendoar____::723", "roar________::3610"] +["roar________::1560", "opendoar____::1660", "roar________::4968"] +["roar________::5888", "opendoar____::377", "roar________::1539"] +["opendoar____::2588", "roar________::11231", "roar________::6173"] +["re3data_____::r3d100011183", "roar________::4315", "opendoar____::2370"] +["roar________::7269", "roar________::6427", "opendoar____::2771"] +["roar________::4992", "opendoar____::2098", "roar________::3682"] +["roar________::4358", "roar________::4263", "opendoar____::2300"] +["opendoar____::1873", "roar________::17564", "roar________::8605"] +["opendoar____::3147", "roar________::15954", "roar________::16230"] +["roar________::16195", "opendoar____::4869", "opendoar____::15294"] +["roar________::16183", "opendoar____::9506", "roar________::15718"] +["roar________::16225", "roar________::15610", "opendoar____::9479", "roar________::16180"] +["roar________::16098", "opendoar____::9662", "roar________::16074"] +["opendoar____::3529", "roar________::15775", "re3data_____::r3d100012394"] +["roar________::15805", "opendoar____::9528", "roar________::15765"] +["roar________::7162", "roar________::15528", "opendoar____::660"] +["opendoar____::3401", "roar________::15268", "roar________::16042"] +["opendoar____::4422", "roar________::15139", "roar________::15142"] +["opendoar____::4701", "roar________::15261", "roar________::15071"] +["roar________::15036", "roar________::15039", "opendoar____::4379"] +["roar________::16263", "opendoar____::3820", "opendoar____::5226", "roar________::14929"] +["roar________::14919", "opendoar____::1313", "roar________::14918"] +["roar________::13965", "opendoar____::4064", "opendoar____::4065"] +["opendoar____::3925", "re3data_____::r3d100012440", "roar________::13092"] +["roar________::12777", "opendoar____::1786", "roar________::2708"] +["roar________::12499", "roar________::12517", "opendoar____::3972"] +["opendoar____::3904", "roar________::12440", "roar________::13135"] +["re3data_____::r3d100012285", "opendoar____::3824", "roar________::12405"] +["roar________::11933", "roar________::12453", "opendoar____::3840"] +["re3data_____::r3d100011654", "opendoar____::3722", "roar________::11684"] +["re3data_____::r3d100012051", "roar________::11444", "opendoar____::3128"] +["roar________::5750", "roar________::11209", "opendoar____::2536", "opendoar____::5487"] +["roar________::10545", "opendoar____::3539", "roar________::14547"] +["opendoar____::1958", "roar________::16077", "roar________::10255"] +["opendoar____::3460", "roar________::10243", "roar________::10244"] +["opendoar____::3460", "roar________::10243", "roar________::10244", "roar________::17601"] +["roar________::10109", "opendoar____::3463", "opendoar____::3462"] +["opendoar____::2825", "roar________::9878", "roar________::6490"] +["fairsharing_::2603", "roar________::9762", "opendoar____::3342"] +["roar________::9647", "roar________::9705", "opendoar____::3319"] +["roar________::9597", "roar________::5052", "opendoar____::2441"] +["roar________::9531", "opendoar____::3284", "opendoar____::CUDI"] +["roar________::9474", "re3data_____::r3d100012347", "opendoar____::3316", "roar________::9507"] +["roar________::5717", "opendoar____::2533", "roar________::9142"] +["roar________::9094", "roar________::9276", "opendoar____::3199"] +["re3data_____::r3d100012866", "roar________::9057", "opendoar____::3721"] +["roar________::15285", "roar________::8928", "opendoar____::3409"] +["opendoar____::3177", "roar________::8877", "roar________::8879"] +["roar________::8798", "roar________::8812", "opendoar____::3150"] +["roar________::8677", "roar________::12182", "opendoar____::3096"] +["roar________::14836", "roar________::8672", "opendoar____::3112"] +["roar________::5704", "opendoar____::2528", "roar________::8647"] +["opendoar____::3087", "roar________::8504", "opendoar____::4500"] +["opendoar____::3078", "roar________::8405", "roar________::8716"] +["opendoar____::3183", "roar________::8353", "roar________::8952"] +["opendoar____::3111", "roar________::8316", "roar________::11060"] +["opendoar____::2959", "roar________::8103", "roar________::7932"] +["opendoar____::2725", "roar________::8003", "roar________::7943"] +["opendoar____::1312", "roar________::5486", "roar________::7767"] +["roar________::7498", "roar________::7483", "opendoar____::2824"] +["roar________::7486", "roar________::7374", "opendoar____::2844"] +["roar________::7338", "opendoar____::2858", "roar________::7367"] +["roar________::7161", "roar________::7151", "opendoar____::2722"] +["roar________::7005", "roar________::7056", "opendoar____::2070"] +["roar________::6485", "roar________::3810", "opendoar____::2151", "opendoar____::4642"] +["roar________::7244", "opendoar____::2769", "roar________::6334"] +["opendoar____::5116", "roar________::6212", "opendoar____::2619"] +["roar________::6167", "opendoar____::2717", "roar________::6580"] +["opendoar____::2571", "roar________::6033", "re3data_____::r3d100010701"] +["roar________::3049", "opendoar____::1892", "roar________::5759"] +["opendoar____::2969", "roar________::5747", "opendoar____::2546"] +["roar________::771", "opendoar____::1297", "roar________::5743"] +["opendoar____::2321", "roar________::5709", "roar________::4940"] +["opendoar____::1377", "roar________::234", "roar________::5707"] +["opendoar____::2519", "roar________::17002", "roar________::5652"] +["opendoar____::2496", "roar________::5618", "roar________::5498"] +["roar________::5541", "roar________::474", "opendoar____::1254"] +["roar________::5528", "opendoar____::1637", "roar________::1492"] +["roar________::5524", "opendoar____::1815", "roar________::2723", "roar________::4999"] +["roar________::5507", "roar________::395", "opendoar____::891"] +["opendoar____::678", "re3data_____::r3d100012060", "roar________::5502"] +["roar________::5482", "opendoar____::2477", "roar________::5214"] +["roar________::4684", "roar________::5480", "roar________::4626", "opendoar____::2385"] +["roar________::5446", "opendoar____::2503", "roar________::8469"] +["roar________::5437", "roar________::3115", "opendoar____::1644"] +["roar________::2335", "roar________::5403", "roar________::3083", "opendoar____::691"] +["opendoar____::1354", "roar________::5283", "roar________::3486"] +["roar________::5218", "opendoar____::2225", "roar________::4086"] +["opendoar____::2472", "roar________::5215", "roar________::9932"] +["roar________::3199", "roar________::5210", "opendoar____::1944"] +["roar________::8772", "opendoar____::2112", "roar________::3597", "roar________::5071"] +["opendoar____::2444", "roar________::5027", "roar________::5028"] +["roar________::939", "opendoar____::1563", "roar________::4986"] +["roar________::4975", "opendoar____::3499", "opendoar____::898"] +["opendoar____::2402", "roar________::6564", "roar________::4967"] +["opendoar____::472", "roar________::472", "roar________::4947"] +["roar________::3757", "roar________::4943", "opendoar____::2124"] +["opendoar____::1837", "roar________::4790", "roar________::2662"] +["opendoar____::1922", "roar________::3149", "roar________::4785"] +["re3data_____::r3d100011219", "opendoar____::1282", "roar________::4727"] +["roar________::13988", "opendoar____::1044", "roar________::4688"] +["roar________::2790", "opendoar____::1829", "roar________::4685"] +["opendoar____::2170", "roar________::4675", "roar________::3889", "re3data_____::r3d100011249"] +["roar________::4641", "opendoar____::1287", "roar________::108"] +["roar________::4292", "opendoar____::2028", "roar________::3484"] +["roar________::4245", "opendoar____::2314", "roar________::4304"] +["roar________::310", "roar________::3409", "opendoar____::1361"] +["roar________::3739", "roar________::3403", "opendoar____::2010"] +["opendoar____::1979", "roar________::5037", "roar________::3286"] +["roar________::3270", "opendoar____::2002", "roar________::3271"] +["opendoar____::287", "roar________::3086", "roar________::1207"] +["roar________::2970", "roar________::665", "opendoar____::1615"] +["roar________::2836", "opendoar____::1442", "roar________::1151"] +["roar________::2787", "opendoar____::1830", "roar________::2810", "roar________::2788"] +["roar________::2730", "roar________::2716", "opendoar____::1812"] +["opendoar____::1802", "roar________::2725", "roar________::2704", "opendoar____::1782"] +["opendoar____::1712", "roar________::2532", "roar________::2432"] +["re3data_____::r3d100013242", "opendoar____::1606", "roar________::124"] +["opendoar____::1584", "roar________::133", "roar________::2665"] +["roar________::3762", "opendoar____::1155", "roar________::1159"] +["opendoar____::1609", "roar________::3172", "roar________::1272"] +["opendoar____::3484", "roar________::10326", "roar________::1459"] diff --git a/data/out/onlyDedup.txt b/data/out/onlyDedup.txt new file mode 100644 index 0000000..03d5f78 --- /dev/null +++ b/data/out/onlyDedup.txt @@ -0,0 +1,429 @@ +["opendoar____::4562", "roar________::14673"] +["roar________::13960", "opendoar____::6787"] +["opendoar____::8955", "roar________::13373"] +["opendoar____::4643", "roar________::11520"] +["opendoar____::2662", "roar________::6215"] +["opendoar____::4874", "roar________::15263"] +["opendoar____::2724", "roar________::7228"] +["fairsharing_::1937", "re3data_____::r3d100010673"] +["roar________::14363", "re3data_____::r3d100012932"] +["roar________::15112", "opendoar____::4057"] +["opendoar____::4815", "roar________::15201"] +["opendoar____::4426", "roar________::13403"] +["opendoar____::485", "roar________::648"] +["roar________::2907", "roar________::16867"] +["fairsharing_::2039", "re3data_____::r3d100013711"] +["roar________::1075", "opendoar____::1420"] +["roar________::16454", "opendoar____::9985"] +["opendoar____::5061", "roar________::9560"] +["roar________::10189", "opendoar____::4929"] +["roar________::12292", "opendoar____::4310"] +["opendoar____::4978", "roar________::7197"] +["opendoar____::4972", "roar________::9962"] +["opendoar____::10122", "roar________::17103"] +["opendoar____::9501", "roar________::13131"] +["roar________::8108", "opendoar____::9497"] +["opendoar____::3252", "roar________::9282"] +["opendoar____::4997", "re3data_____::r3d100011947"] +["opendoar____::10176", "roar________::17294"] +["opendoar____::4656", "opendoar____::4662"] +["opendoar____::5361", "roar________::5604"] +["opendoar____::4901", "roar________::1506"] +["re3data_____::r3d100013135", "opendoar____::9411", "roar________::15255"] +["roar________::12914", "opendoar____::4530"] +["roar________::3588", "re3data_____::r3d100011352"] +["opendoar____::9508", "roar________::15722"] +["opendoar____::4398", "roar________::11159"] +["opendoar____::10083", "roar________::16958"] +["roar________::15275", "opendoar____::4863"] +["roar________::17338", "opendoar____::10188"] +["roar________::17181", "opendoar____::10150"] +["opendoar____::108", "roar________::1165", "re3data_____::r3d100011119"] +["roar________::4394", "roar________::4393"] +["roar________::9430", "roar________::9316", "roar________::10359"] +["opendoar____::9983", "roar________::16451"] +["roar________::16304", "opendoar____::4839"] +["roar________::13531", "opendoar____::4640"] +["roar________::14550", "opendoar____::8768"] +["roar________::9484", "opendoar____::4553"] +["roar________::15752", "opendoar____::9656"] +["opendoar____::4315", "roar________::13868"] +["opendoar____::10228", "roar________::10937"] +["roar________::13584", "roar________::11437"] +["roar________::16080", "opendoar____::9665"] +["opendoar____::3428", "roar________::9752"] +["opendoar____::7584", "roar________::2522"] +["roar________::12545", "roar________::16426"] +["opendoar____::4437", "roar________::13698"] +["opendoar____::4275", "roar________::12424"] +["opendoar____::995", "roar________::149"] +["roar________::12916", "opendoar____::4988"] +["opendoar____::3628", "roar________::11234"] +["roar________::2640", "opendoar____::1466"] +["roar________::17470", "opendoar____::10207"] +["opendoar____::3530", "roar________::14073"] +["opendoar____::4932", "roar________::7842"] +["roar________::14777", "opendoar____::4610"] +["roar________::7571", "opendoar____::2898"] +["opendoar____::2743", "roar________::6242"] +["opendoar____::3448", "roar________::16310"] +["opendoar____::3095", "roar________::8894"] +["opendoar____::10092", "roar________::17212"] +["opendoar____::193", "roar________::723"] +["roar________::12224", "opendoar____::3826"] +["opendoar____::1284", "re3data_____::r3d100010363"] +["opendoar____::1218", "roar________::1418"] +["roar________::1027", "opendoar____::1007"] +["roar________::1527", "opendoar____::1010"] +["opendoar____::9598", "roar________::15892"] +["opendoar____::943", "roar________::767"] +["opendoar____::9484", "fairsharing_::2724"] +["roar________::10800", "opendoar____::3612", "roar________::10518"] +["roar________::17710", "opendoar____::10334"] +["re3data_____::r3d100012955", "opendoar____::4363"] +["roar________::17013", "opendoar____::10097"] +["roar________::15099", "opendoar____::4822"] +["roar________::15496", "roar________::15494"] +["roar________::11266", "roar________::15646"] +["opendoar____::3059", "roar________::7377"] +["roar________::17455", "opendoar____::10208"] +["roar________::7528", "roar________::6108"] +["roar________::16742", "opendoar____::10032"] +["roar________::16401", "opendoar____::9954"] +["roar________::5651", "opendoar____::4938"] +["opendoar____::10160", "roar________::17220"] +["roar________::13456", "opendoar____::9121"] +["roar________::14371", "opendoar____::4242"] +["roar________::13826", "opendoar____::4400"] +["roar________::15889", "roar________::15219"] +["roar________::1084", "opendoar____::541"] +["roar________::9586", "opendoar____::8336"] +["opendoar____::8648", "roar________::8309"] +["roar________::16800", "roar________::15857"] +["opendoar____::4373", "roar________::14037"] +["opendoar____::4838", "roar________::15200"] +["roar________::2309", "roar________::4552", "opendoar____::1464"] +["opendoar____::4234", "roar________::14961"] +["opendoar____::446", "roar________::375"] +["roar________::17051", "opendoar____::10126"] +["opendoar____::4490", "roar________::11459"] +["opendoar____::8959", "roar________::13234"] +["opendoar____::5097", "roar________::4119"] +["opendoar____::9439", "roar________::15435"] +["opendoar____::10287", "roar________::17641"] +["roar________::16179", "roar________::15265"] +["re3data_____::r3d100013487", "opendoar____::10049"] +["opendoar____::4286", "roar________::14409"] +["roar________::7593", "opendoar____::2656"] +["opendoar____::8951", "roar________::13824"] +["opendoar____::9489", "roar________::14666"] +["roar________::15169", "opendoar____::4835"] +["roar________::15761", "opendoar____::9522"] +["roar________::2585", "roar________::2559"] +["opendoar____::9413", "re3data_____::r3d100010579"] +["opendoar____::9477", "roar________::14977"] +["opendoar____::10289", "roar________::17685"] +["opendoar____::7042", "re3data_____::r3d100013369"] +["opendoar____::10096", "roar________::16995"] +["opendoar____::5331", "roar________::10179"] +["opendoar____::3875", "roar________::14403"] +["opendoar____::4079", "roar________::13745"] +["opendoar____::4406", "roar________::12863"] +["roar________::4368", "roar________::4459"] +["opendoar____::6444", "roar________::9349"] +["opendoar____::10190", "roar________::15584"] +["roar________::15531", "roar________::15490", "roar________::15770"] +["roar________::7041", "opendoar____::5271"] +["roar________::13511", "opendoar____::4253"] +["opendoar____::4790", "roar________::15231"] +["opendoar____::4464", "re3data_____::r3d100012925", "opendoar____::4726", "fairsharing_::3672", "opendoar____::9699"] +["roar________::12810", "opendoar____::5131"] +["re3data_____::r3d100012001", "roar________::11857"] +["roar________::15272", "opendoar____::6686"] +["opendoar____::9647", "roar________::16034"] +["roar________::14975", "opendoar____::4723"] +["roar________::9487", "roar________::7574"] +["roar________::7278", "roar________::7216"] +["roar________::8453", "roar________::16144"] +["opendoar____::5376", "opendoar____::3586"] +["opendoar____::4474", "roar________::15563"] +["roar________::11546", "opendoar____::5332"] +["opendoar____::4786", "roar________::14634", "re3data_____::r3d100013029"] +["roar________::14700", "opendoar____::4611"] +["opendoar____::4649", "roar________::14649"] +["roar________::8008", "opendoar____::3008"] +["roar________::11120", "opendoar____::4452"] +["opendoar____::674", "re3data_____::r3d100011188"] +["re3data_____::r3d100011378", "opendoar____::3562"] +["opendoar____::1572", "roar________::2499"] +["roar________::17724", "opendoar____::10354"] +["roar________::4409", "roar________::4410"] +["opendoar____::4108", "roar________::11486"] +["opendoar____::4684", "roar________::11686"] +["fairsharing_::3780", "re3data_____::r3d100013727"] +["roar________::17252", "opendoar____::10175"] +["opendoar____::1131", "roar________::3573"] +["opendoar____::976", "roar________::382"] +["roar________::16423", "opendoar____::9970"] +["roar________::15420", "opendoar____::10159", "roar________::16164"] +["opendoar____::3914", "roar________::14418"] +["opendoar____::10279", "re3data_____::r3d100013661"] +["opendoar____::9645", "opendoar____::9629"] +["opendoar____::9744", "roar________::16219"] +["roar________::10431", "opendoar____::4351"] +["roar________::4765", "opendoar____::3524"] +["opendoar____::7335", "re3data_____::r3d100010953"] +["roar________::475", "opendoar____::130"] +["roar________::15471", "roar________::16390"] +["roar________::628", "roar________::5942"] +["roar________::13832", "opendoar____::4195"] +["roar________::14181", "opendoar____::9416"] +["roar________::17598", "opendoar____::10288"] +["roar________::340", "opendoar____::435"] +["opendoar____::6099", "opendoar____::704"] +["roar________::2646", "opendoar____::1255", "roar________::2980"] +["re3data_____::r3d100012409", "opendoar____::3902"] +["roar________::13520", "opendoar____::7587"] +["opendoar____::1993", "roar________::3368"] +["roar________::11574", "re3data_____::r3d100012108"] +["roar________::2751", "opendoar____::1773"] +["opendoar____::3465", "roar________::13474"] +["opendoar____::9438", "roar________::15306"] +["roar________::16962", "opendoar____::10087"] +["roar________::15339", "opendoar____::9382"] +["roar________::4612", "roar________::4649"] +["roar________::16091", "opendoar____::9670"] +["roar________::16892", "opendoar____::10075"] +["roar________::8868", "opendoar____::4212", "roar________::8873"] +["roar________::5949", "roar________::6219"] +["opendoar____::4238", "roar________::14052"] +["opendoar____::4262", "roar________::14170"] +["roar________::15859", "roar________::15251"] +["roar________::17012", "opendoar____::10103"] +["roar________::10090", "opendoar____::6892"] +["opendoar____::3601", "opendoar____::2608"] +["opendoar____::4420", "roar________::5044"] +["opendoar____::9883", "opendoar____::3770"] +["roar________::16974", "opendoar____::10091"] +["opendoar____::9968", "roar________::16418"] +["roar________::8460", "opendoar____::4482"] +["opendoar____::4678", "roar________::14841"] +["roar________::13575", "opendoar____::4411"] +["roar________::2286", "opendoar____::5506", "opendoar____::104"] +["opendoar____::1388", "roar________::81"] +["roar________::8797", "roar________::8381"] +["roar________::8295", "roar________::8467"] +["opendoar____::6783", "roar________::9778"] +["roar________::10427", "opendoar____::3482"] +["roar________::13799", "opendoar____::4085"] +["roar________::589", "opendoar____::479"] +["opendoar____::10153", "roar________::17196"] +["opendoar____::7205", "roar________::13823"] +["opendoar____::4802", "roar________::15161"] +["re3data_____::r3d100010731", "opendoar____::7462"] +["roar________::2891", "opendoar____::1687"] +["roar________::4176", "opendoar____::2262"] +["roar________::1288", "opendoar____::5064"] +["roar________::16094", "opendoar____::9672"] +["roar________::2866", "opendoar____::1546"] +["roar________::16480", "opendoar____::10001"] +["roar________::12711", "roar________::12712"] +["opendoar____::2888", "roar________::7531"] +["roar________::9168", "opendoar____::3191"] +["roar________::13910", "opendoar____::4281"] +["roar________::4809", "opendoar____::2387"] +["roar________::14736", "opendoar____::4625"] +["roar________::15100", "opendoar____::4885"] +["roar________::16432", "roar________::16430"] +["re3data_____::r3d100011909", "opendoar____::3503"] +["roar________::16006", "opendoar____::9631"] +["opendoar____::10102", "roar________::17028"] +["opendoar____::5523", "roar________::11250"] +["roar________::14752", "opendoar____::8948"] +["roar________::15110", "opendoar____::4816"] +["roar________::13928", "opendoar____::4387"] +["roar________::12965", "opendoar____::5632"] +["opendoar____::4280", "roar________::7656"] +["opendoar____::10078", "roar________::16926"] +["opendoar____::4865", "roar________::15241"] +["opendoar____::4287", "roar________::13975"] +["opendoar____::7907", "roar________::12753"] +["roar________::7204", "opendoar____::2732"] +["re3data_____::r3d100013633", "roar________::11687"] +["opendoar____::4871", "roar________::13356"] +["opendoar____::9495", "roar________::15656"] +["roar________::9803", "opendoar____::3349"] +["opendoar____::10113", "re3data_____::r3d100013574"] +["roar________::15178", "opendoar____::4782", "roar________::16004"] +["opendoar____::3041", "roar________::16258"] +["opendoar____::4623", "opendoar____::4218"] +["roar________::14936", "opendoar____::4636", "opendoar____::4702"] +["opendoar____::10243", "roar________::17524"] +["opendoar____::105", "roar________::370"] +["roar________::3017", "roar________::3097"] +["roar________::6019", "opendoar____::2715"] +["roar________::8678", "opendoar____::3186"] +["roar________::14227", "opendoar____::7590"] +["roar________::14077", "opendoar____::6501"] +["opendoar____::9642", "roar________::16035"] +["opendoar____::10035", "re3data_____::r3d100013456"] +["opendoar____::9646", "roar________::16033"] +["roar________::3570", "opendoar____::1364"] +["roar________::8300", "opendoar____::7351"] +["opendoar____::1540", "re3data_____::r3d100013287", "roar________::776"] +["opendoar____::4160", "roar________::16444"] +["roar________::14756", "opendoar____::4866"] +["opendoar____::4691", "roar________::10350"] +["opendoar____::9880", "roar________::6774"] +["roar________::12968", "opendoar____::8958"] +["re3data_____::r3d100013426", "opendoar____::10271"] +["roar________::15566", "opendoar____::9463"] +["roar________::13709", "opendoar____::4240"] +["roar________::16231", "opendoar____::9773"] +["re3data_____::r3d100013672", "roar________::14946"] +["re3data_____::r3d100012994", "opendoar____::4578"] +["opendoar____::635", "roar________::1021"] +["opendoar____::10013", "roar________::16528"] +["roar________::16881", "opendoar____::10071"] +["opendoar____::4304", "roar________::13418"] +["roar________::450", "opendoar____::1383"] +["opendoar____::3002", "roar________::7978"] +["roar________::311", "re3data_____::r3d100010806", "opendoar____::425"] +["roar________::17656", "opendoar____::10297"] +["roar________::15273", "opendoar____::4078"] +["roar________::14658", "opendoar____::4561"] +["opendoar____::4668", "roar________::14901"] +["opendoar____::3639", "roar________::10766"] +["opendoar____::9713", "re3data_____::r3d100013499"] +["roar________::16250", "opendoar____::9749"] +["roar________::13235", "opendoar____::4450"] +["roar________::15355", "roar________::15356"] +["re3data_____::r3d100010742", "opendoar____::3088"] +["opendoar____::4868", "roar________::15173"] +["re3data_____::r3d100012467", "opendoar____::4173"] +["roar________::15116", "opendoar____::4834"] +["opendoar____::9882", "opendoar____::9275"] +["roar________::14869", "opendoar____::4268"] +["opendoar____::4850", "roar________::16936"] +["opendoar____::4424", "roar________::13066"] +["opendoar____::3373", "re3data_____::r3d100012513"] +["opendoar____::2799", "roar________::6249"] +["roar________::11010", "opendoar____::3689"] +["roar________::10376", "opendoar____::5536"] +["opendoar____::9952", "roar________::16402"] +["roar________::13614", "opendoar____::4084"] +["opendoar____::3545", "roar________::10373"] +["opendoar____::4616", "roar________::14685"] +["roar________::15210", "opendoar____::4840"] +["roar________::8449", "roar________::323"] +["roar________::12232", "opendoar____::5661"] +["roar________::14636", "opendoar____::7753"] +["roar________::5056", "roar________::4756"] +["opendoar____::1673", "roar________::2482"] +["roar________::13031", "opendoar____::4527"] +["opendoar____::4572", "roar________::14679"] +["roar________::8371", "roar________::8324"] +["roar________::14640", "roar________::14739", "opendoar____::7492"] +["opendoar____::4608", "roar________::14757"] +["re3data_____::r3d100010868", "roar________::3948"] +["opendoar____::9478", "roar________::15609"] +["roar________::12835", "re3data_____::r3d100011387"] +["roar________::16491", "opendoar____::10004"] +["re3data_____::r3d100013084", "fairsharing_::3774"] +["roar________::14282", "opendoar____::4225"] +["roar________::11133", "opendoar____::4455"] +["opendoar____::1049", "roar________::14971"] +["opendoar____::6547", "roar________::16126"] +["opendoar____::4823", "roar________::15126"] +["roar________::15712", "roar________::16108"] +["opendoar____::4533", "roar________::14623"] +["roar________::3330", "opendoar____::1424"] +["roar________::8668", "opendoar____::8940"] +["roar________::1377", "opendoar____::327"] +["roar________::14764", "opendoar____::8994"] +["roar________::5062", "roar________::2531"] +["roar________::13746", "opendoar____::4082"] +["roar________::2343", "opendoar____::752"] +["opendoar____::10275", "opendoar____::4788"] +["opendoar____::3651", "re3data_____::r3d100012155"] +["opendoar____::4239", "roar________::15680"] +["re3data_____::r3d100012064", "opendoar____::3757"] +["roar________::4761", "roar________::4762"] +["opendoar____::5483", "opendoar____::172", "roar________::635"] +["roar________::2997", "roar________::4098"] +["roar________::8839", "opendoar____::1734"] +["opendoar____::9659", "roar________::16720"] +["opendoar____::3797", "roar________::14013"] +["roar________::13970", "opendoar____::4316"] +["re3data_____::r3d100013423", "opendoar____::10042"] +["opendoar____::4425", "roar________::14199"] +["opendoar____::4789", "roar________::15154"] +["opendoar____::2907", "roar________::16759"] +["roar________::8451", "opendoar____::4757"] +["roar________::15433", "opendoar____::9436"] +["opendoar____::4776", "roar________::14800"] +["re3data_____::r3d100012054", "opendoar____::3986"] +["roar________::11311", "opendoar____::3454"] +["opendoar____::3507", "roar________::10663"] +["roar________::6503", "opendoar____::2789"] +["opendoar____::10081", "re3data_____::r3d100013524"] +["roar________::16130", "opendoar____::4228"] +["roar________::1416", "opendoar____::345"] +["roar________::621", "opendoar____::1412"] +["opendoar____::1651", "roar________::1057"] +["roar________::2431", "opendoar____::1512"] +["roar________::11257", "roar________::11295"] +["roar________::237", "opendoar____::920"] +["re3data_____::r3d100010543", "fairsharing_::3340"] +["opendoar____::2583", "opendoar____::6048"] +["opendoar____::3032", "opendoar____::4575"] +["roar________::7858", "roar________::7996"] +["roar________::1058", "opendoar____::1655"] +["roar________::8473", "opendoar____::8945"] +["roar________::13686", "opendoar____::6784"] +["opendoar____::10037", "re3data_____::r3d100013215"] +["opendoar____::10154", "roar________::16049"] +["opendoar____::9914", "opendoar____::9864"] +["opendoar____::10347", "roar________::17744"] +["roar________::4443", "opendoar____::2719"] +["opendoar____::8946", "roar________::13524"] +["opendoar____::4830", "roar________::15188"] +["opendoar____::4288", "roar________::13911"] +["opendoar____::3932", "roar________::15083"] +["opendoar____::9246", "roar________::13716"] +["opendoar____::10365", "roar________::17843"] +["roar________::14266", "opendoar____::9943"] +["opendoar____::9925", "re3data_____::r3d100012147"] +["opendoar____::10165", "roar________::15479"] +["opendoar____::10009", "roar________::16511"] +["opendoar____::4657", "roar________::14884"] +["roar________::3981", "opendoar____::5415"] +["opendoar____::4810", "roar________::10874"] +["opendoar____::9747", "re3data_____::r3d100012787"] +["opendoar____::4297", "roar________::10295"] +["opendoar____::9525", "roar________::15778"] +["roar________::1211", "roar________::1210", "roar________::1212"] +["opendoar____::10325", "roar________::17599"] +["roar________::13206", "roar________::8934"] +["roar________::15957", "opendoar____::9621"] +["roar________::16744", "opendoar____::10033"] +["opendoar____::3220", "roar________::9811"] +["opendoar____::7764", "roar________::13936"] +["roar________::15060", "roar________::13134"] +["opendoar____::2582", "roar________::6110"] +["opendoar____::10178", "roar________::17302"] +["opendoar____::332", "re3data_____::r3d100011216"] +["opendoar____::10192", "roar________::16264"] +["roar________::16078", "opendoar____::9663"] +["opendoar____::1624", "roar________::1157"] +["roar________::8225", "opendoar____::6127"] +["roar________::438", "opendoar____::114"] +["roar________::5869", "re3data_____::r3d100010133"] +["roar________::14676", "opendoar____::4470"] +["opendoar____::4801", "roar________::15176"] +["roar________::17088", "opendoar____::10184"] +["re3data_____::r3d100012333", "opendoar____::3691"] +["opendoar____::9466", "opendoar____::9465"] +["re3data_____::r3d100011961", "re3data_____::r3d100011743"] +["roar________::15575", "roar________::15574"] +["opendoar____::9468", "opendoar____::9467"] diff --git a/data/out/onlyRegistry.txt b/data/out/onlyRegistry.txt new file mode 100644 index 0000000..879b209 --- /dev/null +++ b/data/out/onlyRegistry.txt @@ -0,0 +1,1719 @@ +["re3data_____::r3d100011138", "fairsharing_::2998"] +["re3data_____::r3d100011310", "fairsharing_::2475"] +["fairsharing_::1740", "re3data_____::r3d100010906"] +["fairsharing_::3319", "re3data_____::r3d100013383"] +["re3data_____::r3d100011380", "fairsharing_::2810"] +["re3data_____::r3d100010088", "fairsharing_::2294"] +["re3data_____::r3d100013461", "fairsharing_::3245"] +["re3data_____::r3d100011742", "fairsharing_::3170"] +["fairsharing_::2012", "re3data_____::r3d100012849"] +["re3data_____::r3d100012433", "fairsharing_::2742"] +["re3data_____::r3d100010589", "fairsharing_::2788"] +["fairsharing_::3056", "re3data_____::r3d100010503"] +["re3data_____::r3d100012077", "fairsharing_::2538"] +["re3data_____::r3d100011065", "fairsharing_::3114"] +["fairsharing_::3140", "re3data_____::r3d100010056"] +["fairsharing_::1550", "re3data_____::r3d100012700"] +["re3data_____::r3d100010373", "fairsharing_::3279"] +["fairsharing_::2861", "re3data_____::r3d100012696"] +["re3data_____::r3d100013385", "fairsharing_::3173"] +["re3data_____::r3d100011708", "fairsharing_::2797"] +["re3data_____::r3d100010496", "fairsharing_::3341"] +["re3data_____::r3d100013237", "fairsharing_::3342"] +["re3data_____::r3d100011623", "fairsharing_::2929"] +["re3data_____::r3d100011025", "fairsharing_::2995"] +["fairsharing_::3034", "re3data_____::r3d100011683"] +["re3data_____::r3d100010061", "fairsharing_::3049"] +["fairsharing_::1711", "re3data_____::r3d100011556"] +["fairsharing_::3324", "re3data_____::r3d100012193"] +["fairsharing_::3169", "re3data_____::r3d100010287"] +["re3data_____::r3d100013188", "fairsharing_::3098"] +["fairsharing_::2808", "re3data_____::r3d100011673"] +["fairsharing_::3598", "re3data_____::r3d100013623"] +["re3data_____::r3d100013624", "fairsharing_::3599"] +["fairsharing_::2699", "re3data_____::r3d100011094"] +["fairsharing_::2807", "re3data_____::r3d100011110"] +["re3data_____::r3d100012611", "fairsharing_::2606"] +["re3data_____::r3d100013625", "fairsharing_::3616"] +["fairsharing_::2291", "re3data_____::r3d100012176"] +["re3data_____::r3d100010760", "fairsharing_::2092"] +["fairsharing_::3051", "re3data_____::r3d100010506"] +["re3data_____::r3d100010773", "fairsharing_::2801"] +["fairsharing_::3128", "re3data_____::r3d100011781"] +["re3data_____::r3d100012845", "fairsharing_::2201"] +["fairsharing_::3317", "re3data_____::r3d100013328"] +["fairsharing_::2126", "re3data_____::r3d100010562"] +["fairsharing_::2157", "re3data_____::r3d100010092"] +["re3data_____::r3d100011018", "fairsharing_::3029"] +["re3data_____::r3d100011280", "fairsharing_::1727"] +["re3data_____::r3d100010558", "fairsharing_::2417"] +["fairsharing_::3122", "re3data_____::r3d100010183"] +["re3data_____::r3d100000023", "fairsharing_::1723"] +["re3data_____::r3d100011213", "fairsharing_::2127"] +["fairsharing_::3216", "re3data_____::r3d100011643"] +["re3data_____::r3d100012601", "fairsharing_::2583"] +["fairsharing_::1773", "re3data_____::r3d100010927"] +["fairsharing_::3181", "re3data_____::r3d100010232"] +["re3data_____::r3d100012864", "fairsharing_::2381"] +["re3data_____::r3d100011192", "fairsharing_::2129"] +["re3data_____::r3d100010126", "fairsharing_::2925"] +["fairsharing_::1972", "re3data_____::r3d100010652"] +["re3data_____::r3d100010268", "fairsharing_::2426"] +["fairsharing_::3345", "re3data_____::r3d100013508"] +["fairsharing_::3121", "re3data_____::r3d100011633"] +["fairsharing_::2416", "re3data_____::r3d100011801"] +["re3data_____::r3d100010314", "fairsharing_::2069"] +["re3data_____::r3d100013291", "fairsharing_::3224"] +["fairsharing_::2211", "re3data_____::r3d100012828"] +["re3data_____::r3d100012439", "fairsharing_::2525"] +["re3data_____::r3d100010316", "fairsharing_::2783"] +["re3data_____::r3d100013079", "fairsharing_::3106"] +["re3data_____::r3d100012072", "fairsharing_::2547"] +["fairsharing_::2767", "re3data_____::r3d100012305"] +["fairsharing_::2072", "re3data_____::r3d100010170"] +["re3data_____::r3d100012288", "fairsharing_::3148"] +["fairsharing_::2186", "re3data_____::r3d100012529"] +["re3data_____::r3d100013606", "fairsharing_::3102"] +["fairsharing_::2231", "re3data_____::r3d100011867"] +["fairsharing_::2984", "re3data_____::r3d100010502"] +["fairsharing_::1863", "re3data_____::r3d100010137"] +["re3data_____::r3d100012487", "fairsharing_::3044"] +["fairsharing_::1891", "re3data_____::r3d100011052"] +["re3data_____::r3d100012705", "fairsharing_::2562"] +["re3data_____::r3d100012630", "fairsharing_::2135"] +["fairsharing_::3334", "re3data_____::r3d100012962"] +["fairsharing_::1714", "re3data_____::r3d100010804"] +["re3data_____::r3d100010880", "fairsharing_::2118"] +["fairsharing_::2544", "re3data_____::r3d100012961"] +["re3data_____::r3d100013663", "fairsharing_::3067"] +["fairsharing_::3127", "re3data_____::r3d100012890"] +["re3data_____::r3d100010272", "fairsharing_::2162"] +["re3data_____::r3d100010408", "fairsharing_::1725"] +["re3data_____::r3d100012349", "fairsharing_::2459"] +["re3data_____::r3d100012820", "fairsharing_::2134"] +["fairsharing_::1752", "re3data_____::r3d100010637"] +["re3data_____::r3d100012464", "fairsharing_::2236"] +["re3data_____::r3d100010410", "fairsharing_::2443"] +["re3data_____::r3d100010504", "fairsharing_::3058"] +["re3data_____::r3d100011506", "fairsharing_::2421"] +["fairsharing_::1772", "re3data_____::r3d100012074"] +["re3data_____::r3d100011913", "fairsharing_::2243"] +["re3data_____::r3d100013667", "fairsharing_::2380"] +["fairsharing_::3171", "re3data_____::r3d100011665"] +["re3data_____::r3d100011700", "fairsharing_::2983"] +["re3data_____::r3d100012203", "fairsharing_::3184"] +["fairsharing_::2931", "re3data_____::r3d100012003"] +["fairsharing_::3322", "re3data_____::r3d100013638"] +["re3data_____::r3d100010578", "fairsharing_::2423"] +["re3data_____::r3d100011956", "fairsharing_::2806"] +["fairsharing_::2415", "re3data_____::r3d100012342"] +["fairsharing_::3210", "re3data_____::r3d100012656"] +["re3data_____::r3d100012419", "fairsharing_::3202"] +["fairsharing_::1554", "re3data_____::r3d100012628"] +["fairsharing_::3246", "re3data_____::r3d100013365"] +["re3data_____::r3d100011206", "fairsharing_::3164"] +["fairsharing_::3166", "re3data_____::r3d100011551"] +["fairsharing_::3332", "re3data_____::r3d100011394"] +["fairsharing_::2188", "re3data_____::r3d100012840"] +["fairsharing_::2161", "re3data_____::r3d100010134"] +["fairsharing_::3330", "re3data_____::r3d100013217"] +["fairsharing_::3082", "re3data_____::r3d100012717"] +["fairsharing_::3143", "re3data_____::r3d100012834"] +["re3data_____::r3d100010696", "fairsharing_::2939"] +["fairsharing_::3201", "re3data_____::r3d100011782"] +["fairsharing_::3265", "re3data_____::r3d100012080"] +["re3data_____::r3d100010186", "fairsharing_::2409"] +["re3data_____::r3d100010165", "fairsharing_::3272"] +["re3data_____::r3d100012225", "fairsharing_::2890"] +["fairsharing_::3099", "re3data_____::r3d100011288"] +["fairsharing_::3264", "re3data_____::r3d100011391"] +["re3data_____::r3d100010347", "fairsharing_::2978"] +["re3data_____::r3d100011549", "fairsharing_::3238"] +["re3data_____::r3d100010699", "fairsharing_::3242"] +["fairsharing_::3077", "re3data_____::r3d100012504"] +["re3data_____::r3d100012500", "fairsharing_::2553"] +["fairsharing_::3090", "re3data_____::r3d100012403"] +["re3data_____::r3d100013680", "fairsharing_::2529"] +["re3data_____::r3d100013238", "fairsharing_::2328"] +["fairsharing_::3205", "re3data_____::r3d100012145"] +["fairsharing_::2463", "re3data_____::r3d100011651"] +["re3data_____::r3d100010478", "fairsharing_::2125"] +["fairsharing_::3228", "re3data_____::r3d100010114"] +["fairsharing_::3193", "re3data_____::r3d100011797"] +["re3data_____::r3d100010631", "fairsharing_::2427"] +["fairsharing_::2725", "re3data_____::r3d100012561"] +["fairsharing_::3168", "re3data_____::r3d100011128"] +["re3data_____::r3d100011583", "fairsharing_::2501"] +["re3data_____::r3d100011718", "fairsharing_::2436"] +["re3data_____::r3d100013051", "fairsharing_::2277"] +["fairsharing_::2821", "re3data_____::r3d100000019"] +["fairsharing_::3150", "re3data_____::r3d100011468"] +["fairsharing_::3110", "re3data_____::r3d100012470"] +["fairsharing_::2664", "re3data_____::r3d100012863"] +["fairsharing_::2986", "re3data_____::r3d100012915"] +["re3data_____::r3d100010963", "fairsharing_::2994"] +["fairsharing_::3163", "re3data_____::r3d100012503"] +["fairsharing_::3032", "re3data_____::r3d100011680"] +["fairsharing_::2486", "re3data_____::r3d100010256"] +["fairsharing_::2793", "re3data_____::r3d100012463"] +["re3data_____::r3d100010121", "fairsharing_::3190"] +["re3data_____::r3d100011525", "fairsharing_::3249"] +["fairsharing_::1996", "re3data_____::r3d100010788"] +["opendoar____::69", "fairsharing_::2872", "roar________::477", "re3data_____::r3d100012322"] +["re3data_____::r3d100012827", "fairsharing_::2014"] +["re3data_____::r3d100010625", "fairsharing_::3263"] +["re3data_____::r3d100010931", "fairsharing_::1945"] +["fairsharing_::3567", "re3data_____::r3d100012181"] +["re3data_____::r3d100012123", "fairsharing_::3186"] +["fairsharing_::2533", "re3data_____::r3d100012690"] +["fairsharing_::1928", "re3data_____::r3d100012755"] +["re3data_____::r3d100012575", "fairsharing_::2049"] +["fairsharing_::2065", "re3data_____::r3d100011559"] +["re3data_____::r3d100010924", "fairsharing_::2148"] +["fairsharing_::3151", "re3data_____::r3d100011470"] +["fairsharing_::2256", "re3data_____::r3d100011173"] +["re3data_____::r3d100010180", "fairsharing_::2737"] +["fairsharing_::2282", "re3data_____::r3d100013052"] +["fairsharing_::2376", "re3data_____::r3d100010730"] +["re3data_____::r3d100010189", "fairsharing_::2410"] +["re3data_____::r3d100010120", "fairsharing_::2434"] +["fairsharing_::3078", "re3data_____::r3d100012548"] +["fairsharing_::2431", "re3data_____::r3d100011758"] +["re3data_____::r3d100010199", "fairsharing_::2446"] +["fairsharing_::2769", "re3data_____::r3d100010748"] +["fairsharing_::2822", "re3data_____::r3d100012910"] +["re3data_____::r3d100010937", "fairsharing_::2827"] +["re3data_____::r3d100010831", "fairsharing_::3091"] +["fairsharing_::3208", "re3data_____::r3d100013361"] +["re3data_____::r3d100013351", "fairsharing_::3328"] +["fairsharing_::3335", "re3data_____::r3d100013510"] +["re3data_____::r3d100013330", "fairsharing_::2210"] +["fairsharing_::1971", "re3data_____::r3d100010780"] +["re3data_____::r3d100010192", "fairsharing_::2445"] +["re3data_____::r3d100011515", "fairsharing_::2015"] +["re3data_____::r3d100010081", "fairsharing_::2497"] +["fairsharing_::2505", "re3data_____::r3d100010214"] +["re3data_____::r3d100011562", "fairsharing_::2159"] +["re3data_____::r3d100012329", "fairsharing_::2283"] +["fairsharing_::2500", "re3data_____::r3d100010714"] +["re3data_____::r3d100012732", "fairsharing_::2492"] +["re3data_____::r3d100012273", "fairsharing_::2607"] +["re3data_____::r3d100010243", "fairsharing_::1651"] +["fairsharing_::2923", "re3data_____::r3d100013268"] +["fairsharing_::2843", "re3data_____::r3d100011907"] +["re3data_____::r3d100011005", "fairsharing_::2930"] +["fairsharing_::2972", "re3data_____::r3d100010141"] +["re3data_____::r3d100011648", "fairsharing_::3219"] +["fairsharing_::2075", "re3data_____::r3d100011690"] +["fairsharing_::1892", "re3data_____::r3d100011795"] +["fairsharing_::1762", "re3data_____::r3d100010619"] +["re3data_____::r3d100012362", "fairsharing_::2922"] +["fairsharing_::2757", "re3data_____::r3d100011870"] +["fairsharing_::1789", "re3data_____::r3d100010616"] +["fairsharing_::2115", "re3data_____::r3d100010666"] +["fairsharing_::2882", "re3data_____::r3d100010847"] +["fairsharing_::3654", "re3data_____::r3d100011696"] +["re3data_____::r3d100012263", "fairsharing_::2368"] +["fairsharing_::2956", "re3data_____::r3d100013299"] +["fairsharing_::2247", "re3data_____::r3d100012421"] +["re3data_____::r3d100011140", "fairsharing_::3268"] +["re3data_____::r3d100010656", "fairsharing_::1790"] +["fairsharing_::3217", "re3data_____::r3d100012870"] +["fairsharing_::2121", "re3data_____::r3d100010975"] +["fairsharing_::2489", "re3data_____::r3d100012836"] +["fairsharing_::2263", "re3data_____::r3d100012647"] +["re3data_____::r3d100011906", "fairsharing_::1585"] +["re3data_____::r3d100011567", "fairsharing_::2268"] +["re3data_____::r3d100010299", "fairsharing_::2493"] +["re3data_____::r3d100012315", "fairsharing_::2090"] +["fairsharing_::1854", "re3data_____::r3d100010798"] +["fairsharing_::1818", "re3data_____::r3d100010585"] +["fairsharing_::1956", "re3data_____::r3d100010553"] +["re3data_____::r3d100011858", "fairsharing_::2987"] +["fairsharing_::2085", "re3data_____::r3d100012189"] +["re3data_____::r3d100010883", "fairsharing_::1949"] +["re3data_____::r3d100010285", "fairsharing_::1991"] +["re3data_____::r3d100011344", "fairsharing_::3030"] +["re3data_____::r3d100012901", "fairsharing_::2105"] +["re3data_____::r3d100012730", "fairsharing_::1642"] +["fairsharing_::2284", "re3data_____::r3d100012747"] +["re3data_____::r3d100010586", "fairsharing_::2293"] +["re3data_____::r3d100010651", "fairsharing_::1963"] +["re3data_____::r3d100010123", "fairsharing_::1605"] +["re3data_____::r3d100012791", "fairsharing_::1876"] +["fairsharing_::2123", "re3data_____::r3d100012015"] +["fairsharing_::3203", "re3data_____::r3d100012075"] +["re3data_____::r3d100010744", "fairsharing_::2585"] +["fairsharing_::3296", "re3data_____::r3d100013505"] +["re3data_____::r3d100011839", "fairsharing_::2349"] +["re3data_____::r3d100012585", "fairsharing_::2420"] +["re3data_____::r3d100010350", "fairsharing_::2028"] +["fairsharing_::2021", "re3data_____::r3d100011561"] +["fairsharing_::3087", "re3data_____::r3d100013049"] +["fairsharing_::1703", "re3data_____::r3d100011871"] +["re3data_____::r3d100011557", "fairsharing_::1879"] +["re3data_____::r3d100013309", "fairsharing_::2962"] +["fairsharing_::2543", "re3data_____::r3d100010409"] +["re3data_____::r3d100010776", "fairsharing_::1982"] +["re3data_____::r3d100012946", "fairsharing_::1895"] +["re3data_____::r3d100013155", "fairsharing_::3026"] +["re3data_____::r3d100011872", "fairsharing_::2723"] +["fairsharing_::2429", "re3data_____::r3d100010110"] +["re3data_____::r3d100012725", "fairsharing_::2071"] +["fairsharing_::2365", "re3data_____::r3d100011166"] +["re3data_____::r3d100012726", "fairsharing_::2112"] +["re3data_____::r3d100011286", "fairsharing_::2055"] +["fairsharing_::2779", "re3data_____::r3d100013160"] +["fairsharing_::1626", "re3data_____::r3d100012722"] +["re3data_____::r3d100012186", "fairsharing_::2953"] +["fairsharing_::3005", "re3data_____::r3d100011070"] +["fairsharing_::1997", "re3data_____::r3d100010786"] +["re3data_____::r3d100011123", "fairsharing_::3006"] +["re3data_____::r3d100012898", "fairsharing_::1886"] +["re3data_____::r3d100011253", "fairsharing_::1553"] +["re3data_____::r3d100010977", "fairsharing_::1593"] +["re3data_____::r3d100013315", "fairsharing_::1914"] +["re3data_____::r3d100012339", "fairsharing_::1776"] +["fairsharing_::1625", "re3data_____::r3d100012850"] +["fairsharing_::1904", "re3data_____::r3d100010561"] +["fairsharing_::1768", "re3data_____::r3d100010624"] +["fairsharing_::2084", "re3data_____::r3d100011285"] +["re3data_____::r3d100010544", "fairsharing_::1844"] +["re3data_____::r3d100011751", "fairsharing_::3189"] +["re3data_____::r3d100012727", "fairsharing_::2354"] +["re3data_____::r3d100010605", "fairsharing_::2061"] +["fairsharing_::1988", "re3data_____::r3d100010784"] +["re3data_____::r3d100013060", "fairsharing_::2674"] +["re3data_____::r3d100011277", "fairsharing_::2054"] +["re3data_____::r3d100010564", "fairsharing_::2286"] +["re3data_____::r3d100011496", "fairsharing_::2591"] +["re3data_____::r3d100010772", "fairsharing_::2109"] +["re3data_____::r3d100010781", "fairsharing_::1977"] +["re3data_____::r3d100010872", "fairsharing_::2438"] +["re3data_____::r3d100010672", "fairsharing_::1893"] +["fairsharing_::2287", "re3data_____::r3d100010416"] +["re3data_____::r3d100010856", "fairsharing_::1837"] +["fairsharing_::2058", "re3data_____::r3d100012325"] +["re3data_____::r3d100010142", "fairsharing_::2521"] +["re3data_____::r3d100012165", "fairsharing_::1648"] +["re3data_____::r3d100011331", "fairsharing_::2087"] +["fairsharing_::1979", "re3data_____::r3d100011004"] +["fairsharing_::1599", "re3data_____::r3d100010671"] +["re3data_____::r3d100013100", "fairsharing_::2798"] +["fairsharing_::1760", "re3data_____::r3d100010570"] +["re3data_____::r3d100012753", "fairsharing_::1887"] +["re3data_____::r3d100012314", "fairsharing_::2206"] +["fairsharing_::2334", "re3data_____::r3d100012756"] +["re3data_____::r3d100012587", "fairsharing_::2683"] +["fairsharing_::2178", "re3data_____::r3d100011936"] +["re3data_____::r3d100011931", "fairsharing_::1697"] +["re3data_____::r3d100010593", "fairsharing_::2246"] +["re3data_____::r3d100012648", "fairsharing_::2812"] +["fairsharing_::2655", "re3data_____::r3d100011874"] +["re3data_____::r3d100013329", "fairsharing_::2979"] +["fairsharing_::2190", "re3data_____::r3d100011058"] +["fairsharing_::2734", "re3data_____::r3d100010850"] +["fairsharing_::2031", "re3data_____::r3d100010910"] +["re3data_____::r3d100010795", "fairsharing_::1948"] +["re3data_____::r3d100012928", "fairsharing_::2390"] +["fairsharing_::2442", "re3data_____::r3d100012396"] +["re3data_____::r3d100010420", "fairsharing_::2447"] +["fairsharing_::2089", "re3data_____::r3d100010670"] +["fairsharing_::2077", "re3data_____::r3d100011521"] +["re3data_____::r3d100010266", "fairsharing_::1955"] +["fairsharing_::2351", "re3data_____::r3d100012363"] +["re3data_____::r3d100012721", "fairsharing_::1693"] +["re3data_____::r3d100010289", "fairsharing_::2787"] +["fairsharing_::1869", "re3data_____::r3d100010546"] +["re3data_____::r3d100010549", "fairsharing_::1947"] +["re3data_____::r3d100010797", "fairsharing_::1715"] +["fairsharing_::1940", "re3data_____::r3d100010921"] +["re3data_____::r3d100011516", "fairsharing_::1630"] +["fairsharing_::2269", "re3data_____::r3d100012297"] +["re3data_____::r3d100012427", "fairsharing_::1742"] +["fairsharing_::2555", "re3data_____::r3d100012537"] +["fairsharing_::2213", "re3data_____::r3d100012654"] +["re3data_____::r3d100012902", "fairsharing_::2037"] +["re3data_____::r3d100013578", "fairsharing_::1935"] +["re3data_____::r3d100010415", "fairsharing_::1220"] +["re3data_____::r3d100010422", "fairsharing_::1091"] +["re3data_____::r3d100012120", "fairsharing_::362"] +["re3data_____::r3d100012626", "fairsharing_::1036"] +["roar________::437", "re3data_____::r3d100012399"] +["re3data_____::r3d100013273", "roar________::14208"] +["roar________::11366", "re3data_____::r3d100013438", "roar________::11342", "opendoar____::3351"] +["opendoar____::6284", "re3data_____::r3d100013717", "roar________::2560"] +["re3data_____::r3d100013342", "opendoar____::4231"] +["roar________::606", "opendoar____::166"] +["roar________::68", "opendoar____::165"] +["opendoar____::1198", "roar________::941"] +["opendoar____::330", "roar________::1383"] +["roar________::1120", "opendoar____::1723"] +["opendoar____::15", "roar________::82", "roar________::3932", "roar________::10640"] +["roar________::5693", "opendoar____::627", "roar________::1007"] +["roar________::1423", "opendoar____::348"] +["opendoar____::2186", "roar________::3496"] +["opendoar____::1415", "roar________::1142"] +["roar________::1327", "opendoar____::908"] +["opendoar____::99", "roar________::346"] +["opendoar____::1091", "roar________::1060"] +["roar________::1496", "opendoar____::1288"] +["roar________::699", "opendoar____::1112"] +["opendoar____::1003", "roar________::36"] +["opendoar____::276", "roar________::1531"] +["opendoar____::548", "roar________::575"] +["roar________::69", "roar________::4887", "opendoar____::639"] +["opendoar____::657", "roar________::846"] +["roar________::3163", "opendoar____::1948", "roar________::3168"] +["opendoar____::1127", "roar________::719"] +["opendoar____::540", "roar________::337"] +["opendoar____::569", "roar________::8721"] +["opendoar____::947", "roar________::988"] +["roar________::925", "opendoar____::225"] +["roar________::2620", "opendoar____::1295", "roar________::888"] +["opendoar____::363", "roar________::2301", "roar________::1432", "roar________::2330"] +["opendoar____::72", "roar________::239"] +["roar________::527", "opendoar____::1113"] +["roar________::918", "opendoar____::224"] +["opendoar____::163", "roar________::294"] +["opendoar____::95", "roar________::263"] +["roar________::5091", "opendoar____::2459"] +["roar________::1124", "opendoar____::450"] +["opendoar____::1874", "roar________::6063"] +["opendoar____::1787", "roar________::1256"] +["roar________::711", "opendoar____::202"] +["roar________::212", "opendoar____::570", "roar________::6001", "roar________::5554"] +["opendoar____::1449", "roar________::706"] +["roar________::452", "opendoar____::121"] +["opendoar____::834", "roar________::5440"] +["opendoar____::656", "roar________::5716"] +["roar________::4455", "opendoar____::2359"] +["opendoar____::2184", "roar________::3971"] +["opendoar____::2366", "roar________::4412"] +["opendoar____::571", "roar________::1311"] +["opendoar____::126", "roar________::463"] +["roar________::1435", "opendoar____::100"] +["opendoar____::883", "roar________::1378"] +["roar________::5688", "opendoar____::2272", "roar________::4145"] +["opendoar____::284", "roar________::1160"] +["opendoar____::1004", "roar________::772"] +["opendoar____::1281", "roar________::3312", "roar________::764"] +["roar________::5206", "opendoar____::1523"] +["opendoar____::469", "roar________::533"] +["opendoar____::75", "roar________::5568", "roar________::279"] +["roar________::1065", "opendoar____::500"] +["opendoar____::18", "roar________::89"] +["roar________::306", "opendoar____::1151"] +["roar________::12480", "roar________::1500", "opendoar____::390"] +["roar________::356", "opendoar____::1608", "roar________::3361"] +["roar________::5434", "opendoar____::954", "roar________::1389"] +["opendoar____::636", "roar________::713"] +["roar________::525", "opendoar____::127"] +["roar________::3123", "opendoar____::1910"] +["roar________::2950", "opendoar____::2006"] +["roar________::1401", "opendoar____::336", "roar________::2342"] +["opendoar____::221", "roar________::880"] +["roar________::6888", "opendoar____::1582"] +["opendoar____::1558", "roar________::1170"] +["opendoar____::3322", "roar________::3396"] +["roar________::999", "opendoar____::250"] +["opendoar____::1569", "roar________::136"] +["opendoar____::2471", "roar________::5087"] +["opendoar____::1970", "roar________::3176"] +["roar________::347", "opendoar____::590"] +["roar________::4698", "opendoar____::2958"] +["opendoar____::1099", "roar________::1317"] +["opendoar____::2234", "roar________::4110"] +["roar________::4167", "opendoar____::2259"] +["roar________::1475", "opendoar____::1708"] +["opendoar____::1242", "roar________::1217"] +["opendoar____::978", "roar________::76"] +["roar________::331", "opendoar____::924"] +["roar________::964", "roar________::5188", "opendoar____::1499"] +["roar________::9532", "opendoar____::2735", "roar________::6229"] +["roar________::345", "opendoar____::439"] +["roar________::574", "opendoar____::159"] +["roar________::984", "opendoar____::713"] +["roar________::721", "opendoar____::1580"] +["roar________::1425", "opendoar____::901"] +["roar________::1464", "opendoar____::320"] +["roar________::5586", "roar________::373", "opendoar____::1186"] +["roar________::1273", "roar________::4730", "opendoar____::565"] +["roar________::2304", "opendoar____::1483"] +["roar________::443", "opendoar____::1148"] +["opendoar____::68", "roar________::251"] +["roar________::1534", "opendoar____::1301"] +["roar________::359", "roar________::4645", "roar________::5532", "opendoar____::123"] +["roar________::6416", "opendoar____::932"] +["roar________::252", "opendoar____::1454"] +["roar________::3708", "opendoar____::2344"] +["opendoar____::2822", "roar________::4456"] +["roar________::51", "opendoar____::1142"] +["opendoar____::2166", "roar________::1209"] +["roar________::341", "opendoar____::1365"] +["opendoar____::493", "roar________::2409", "roar________::951"] +["opendoar____::1304", "roar________::120"] +["opendoar____::498", "roar________::440"] +["opendoar____::1192", "roar________::559"] +["roar________::3538", "opendoar____::2072"] +["opendoar____::235", "roar________::969"] +["roar________::140", "opendoar____::658"] +["roar________::3041", "opendoar____::1965"] +["opendoar____::437", "roar________::768"] +["roar________::2324", "roar________::19", "opendoar____::265"] +["roar________::822", "opendoar____::556"] +["roar________::736", "opendoar____::1150"] +["roar________::1004", "opendoar____::253", "roar________::2416"] +["roar________::780", "opendoar____::199"] +["roar________::1501", "opendoar____::1234", "roar________::5749"] +["roar________::3304", "opendoar____::1985"] +["opendoar____::151", "roar________::549", "roar________::3322"] +["roar________::3817", "opendoar____::2517"] +["roar________::435", "opendoar____::966"] +["roar________::1198", "opendoar____::319"] +["roar________::4295", "opendoar____::2326"] +["roar________::2544", "opendoar____::1819"] +["opendoar____::1843", "roar________::2835"] +["roar________::902", "opendoar____::116"] +["roar________::4542", "opendoar____::2400"] +["roar________::3714", "opendoar____::1094", "roar________::523"] +["roar________::885", "opendoar____::939"] +["roar________::531", "opendoar____::563"] +["roar________::112", "opendoar____::1571"] +["roar________::448", "opendoar____::1645"] +["opendoar____::453", "roar________::413"] +["roar________::274", "opendoar____::73"] +["opendoar____::1659", "roar________::1255"] +["opendoar____::297", "roar________::1259"] +["opendoar____::1933", "roar________::3166"] +["opendoar____::28", "roar________::151"] +["roar________::636", "roar________::5156", "opendoar____::173"] +["roar________::3540", "opendoar____::2109"] +["opendoar____::420", "roar________::292"] +["roar________::1517", "opendoar____::396"] +["opendoar____::103", "roar________::364"] +["roar________::461", "opendoar____::124"] +["opendoar____::387", "roar________::35"] +["opendoar____::1103", "roar________::1232"] +["opendoar____::1279", "roar________::1385"] +["roar________::1480", "opendoar____::2815"] +["opendoar____::2436", "roar________::213"] +["roar________::1269", "opendoar____::1118", "roar________::5699"] +["roar________::3500", "opendoar____::2076"] +["opendoar____::2487", "roar________::5273"] +["opendoar____::576", "roar________::1434"] +["opendoar____::10", "roar________::66", "roar________::1156"] +["opendoar____::1026", "roar________::774"] +["opendoar____::125", "roar________::462"] +["opendoar____::1735", "roar________::2501"] +["opendoar____::366", "roar________::1485"] +["opendoar____::3846", "roar________::3696"] +["roar________::927", "opendoar____::975"] +["roar________::1119", "opendoar____::613"] +["opendoar____::2137", "roar________::3309"] +["opendoar____::65", "roar________::233"] +["roar________::568", "opendoar____::478"] +["roar________::3410", "opendoar____::1229"] +["roar________::1413", "opendoar____::1322"] +["opendoar____::797", "roar________::779"] +["opendoar____::1534", "roar________::1347"] +["roar________::7414", "opendoar____::2845"] +["opendoar____::434", "roar________::338"] +["opendoar____::1869", "roar________::2991"] +["opendoar____::2550", "roar________::1306"] +["roar________::5705", "opendoar____::78", "roar________::1421"] +["opendoar____::1193", "roar________::923"] +["roar________::207", "opendoar____::54"] +["roar________::590", "opendoar____::1688"] +["opendoar____::2000", "roar________::2449"] +["opendoar____::2082", "roar________::3639"] +["opendoar____::2973", "roar________::3938"] +["roar________::261", "opendoar____::1535"] +["roar________::906", "opendoar____::223", "roar________::3050"] +["roar________::481", "opendoar____::1141"] +["opendoar____::922", "roar________::3406"] +["opendoar____::81", "roar________::361"] +["opendoar____::1401", "roar________::465"] +["opendoar____::489", "roar________::879"] +["opendoar____::766", "roar________::1452"] +["opendoar____::59", "roar________::674"] +["roar________::734", "opendoar____::195"] +["roar________::378", "opendoar____::941"] +["opendoar____::1599", "roar________::305"] +["roar________::6335", "opendoar____::2605", "roar________::3915"] +["opendoar____::341", "roar________::1407"] +["roar________::147", "opendoar____::953"] +["opendoar____::338", "roar________::1403"] +["opendoar____::2023", "roar________::3426"] +["opendoar____::115", "roar________::661"] +["opendoar____::56", "roar________::4679", "roar________::5360", "roar________::371"] +["roar________::2388", "opendoar____::1213"] +["opendoar____::386", "roar________::103"] +["opendoar____::805", "roar________::1101"] +["roar________::423", "opendoar____::917"] +["opendoar____::625", "roar________::942"] +["opendoar____::1325", "roar________::483"] +["roar________::2488", "opendoar____::1720"] +["roar________::5239", "opendoar____::2482"] +["roar________::200", "opendoar____::49"] +["roar________::4724", "roar________::664", "opendoar____::184"] +["opendoar____::2729", "roar________::6206"] +["opendoar____::1628", "roar________::1090"] +["roar________::1292", "opendoar____::1156"] +["roar________::996", "opendoar____::249"] +["opendoar____::313", "roar________::815"] +["roar________::39", "opendoar____::730"] +["opendoar____::968", "roar________::690"] +["roar________::1161", "roar________::1162", "opendoar____::496"] +["roar________::1426", "opendoar____::2"] +["opendoar____::1", "roar________::31"] +["roar________::152", "opendoar____::406"] +["opendoar____::77", "roar________::281"] +["roar________::201", "opendoar____::50"] +["roar________::4854", "opendoar____::2438"] +["roar________::1365", "opendoar____::1378"] +["roar________::1438", "opendoar____::353"] +["opendoar____::1650", "roar________::96"] +["roar________::5317", "roar________::5735", "opendoar____::2492"] +["roar________::11496", "opendoar____::1693"] +["roar________::3094", "opendoar____::1900"] +["roar________::2475", "opendoar____::1726"] +["opendoar____::1559", "roar________::1130"] +["opendoar____::1341", "roar________::848"] +["roar________::482", "opendoar____::133"] +["opendoar____::764", "roar________::417"] +["roar________::2575", "opendoar____::1753"] +["roar________::708", "opendoar____::191"] +["roar________::3257", "roar________::966", "opendoar____::233"] +["roar________::1034", "opendoar____::2760"] +["roar________::1003", "opendoar____::252"] +["opendoar____::2412", "roar________::4744"] +["opendoar____::985", "roar________::396"] +["roar________::753", "opendoar____::1307"] +["opendoar____::2092", "roar________::3521"] +["opendoar____::2139", "roar________::3704"] +["roar________::495", "opendoar____::902", "roar________::2653"] +["opendoar____::323", "roar________::300"] +["roar________::1226", "opendoar____::289"] +["opendoar____::340", "roar________::1406"] +["roar________::1379", "opendoar____::328"] +["opendoar____::794", "roar________::633"] +["roar________::934", "opendoar____::227"] +["opendoar____::486", "roar________::654"] +["opendoar____::550", "roar________::3421"] +["opendoar____::1794", "roar________::3081", "roar________::2735"] +["roar________::174", "opendoar____::1663"] +["opendoar____::83", "roar________::819", "roar________::2841"] +["opendoar____::762", "roar________::402"] +["roar________::1453", "opendoar____::314"] +["roar________::1394", "opendoar____::333"] +["roar________::2484", "opendoar____::1772", "roar________::12864"] +["roar________::662", "opendoar____::182"] +["opendoar____::1813", "roar________::7938", "roar________::1263"] +["roar________::4672", "roar________::49", "opendoar____::19"] +["roar________::11424", "roar________::2454", "opendoar____::1241"] +["roar________::582", "opendoar____::162"] +["roar________::444", "opendoar____::458"] +["roar________::224", "opendoar____::62"] +["opendoar____::399", "roar________::92"] +["roar________::1446", "opendoar____::131"] +["opendoar____::2367", "roar________::4571"] +["opendoar____::48", "roar________::199"] +["opendoar____::476", "roar________::1507"] +["opendoar____::1820", "roar________::2785"] +["roar________::688", "opendoar____::1463"] +["opendoar____::164", "roar________::591"] +["opendoar____::358", "roar________::1442"] +["opendoar____::169", "roar________::629"] +["opendoar____::53", "roar________::205"] +["opendoar____::46", "roar________::196"] +["roar________::11200", "opendoar____::2526", "roar________::3854"] +["roar________::5778", "opendoar____::2431", "roar________::3505"] +["roar________::1414", "opendoar____::343"] +["roar________::867", "opendoar____::212"] +["roar________::6770", "roar________::2988", "opendoar____::1871"] +["roar________::6745", "opendoar____::2757"] +["roar________::6737", "opendoar____::2657"] +["roar________::6730", "opendoar____::2651"] +["roar________::6692", "opendoar____::2629"] +["roar________::6477", "opendoar____::2635"] +["opendoar____::2654", "roar________::6371"] +["opendoar____::2618", "roar________::6330"] +["opendoar____::2759", "roar________::6241"] +["roar________::6194", "opendoar____::3558"] +["roar________::6190", "opendoar____::2870"] +["opendoar____::2548", "roar________::6048"] +["opendoar____::3286", "roar________::5996"] +["opendoar____::2567", "roar________::5930"] +["roar________::5911", "opendoar____::2586"] +["roar________::5903", "opendoar____::2721"] +["roar________::5817", "opendoar____::2561"] +["roar________::5798", "opendoar____::2556"] +["opendoar____::2613", "roar________::5725"] +["opendoar____::2767", "roar________::5673"] +["opendoar____::3006", "roar________::5668"] +["opendoar____::2693", "roar________::5644"] +["roar________::5614", "opendoar____::3203"] +["opendoar____::1461", "roar________::5595"] +["opendoar____::2832", "roar________::5593"] +["opendoar____::1071", "roar________::5543"] +["roar________::5539", "roar________::864", "opendoar____::904"] +["roar________::5520", "opendoar____::1231", "roar________::4275"] +["opendoar____::1915", "roar________::9305", "roar________::5463"] +["roar________::5433", "roar________::2897", "opendoar____::1848", "roar________::2862"] +["roar________::919", "roar________::5425", "opendoar____::1047"] +["opendoar____::3270", "roar________::5236"] +["roar________::5197", "opendoar____::2478"] +["opendoar____::2939", "roar________::5196"] +["opendoar____::2469", "roar________::5149"] +["roar________::5122", "opendoar____::2479"] +["opendoar____::2342", "roar________::5004"] +["opendoar____::2440", "roar________::4864"] +["opendoar____::2415", "roar________::4625"] +["roar________::4554", "opendoar____::3219"] +["roar________::4670", "opendoar____::2393"] +["roar________::4168", "opendoar____::2258"] +["roar________::4226", "opendoar____::2336"] +["roar________::4127", "opendoar____::2233"] +["roar________::5063", "opendoar____::2363"] +["opendoar____::2356", "roar________::4476"] +["opendoar____::3189", "roar________::4041"] +["roar________::3990", "opendoar____::2199"] +["roar________::5015", "opendoar____::7440"] +["roar________::4873", "opendoar____::2433"] +["roar________::3769", "opendoar____::2125"] +["roar________::4077", "roar________::4088", "opendoar____::2224"] +["opendoar____::2256", "roar________::4140"] +["roar________::3718", "opendoar____::2132"] +["opendoar____::2153", "roar________::3842"] +["roar________::4386", "opendoar____::2312"] +["opendoar____::2216", "roar________::3453"] +["roar________::3657", "opendoar____::2090"] +["opendoar____::2667", "roar________::3288"] +["opendoar____::2064", "roar________::3574"] +["opendoar____::2505", "roar________::4566"] +["roar________::3088", "opendoar____::777"] +["roar________::3633", "opendoar____::2077"] +["roar________::4022", "opendoar____::2203"] +["opendoar____::2012", "roar________::3357"] +["roar________::2955", "opendoar____::1865"] +["opendoar____::1846", "roar________::2858"] +["opendoar____::1990", "roar________::3294"] +["opendoar____::1785", "roar________::2676"] +["opendoar____::1771", "roar________::2626"] +["opendoar____::1911", "roar________::2868"] +["roar________::2602", "opendoar____::1769"] +["roar________::3477", "opendoar____::2079"] +["roar________::2517", "opendoar____::1889"] +["roar________::3165", "opendoar____::1931"] +["opendoar____::1986", "roar________::3303"] +["roar________::3363", "opendoar____::1983", "roar________::3276"] +["roar________::3926", "opendoar____::2882"] +["roar________::1557", "opendoar____::1692"] +["opendoar____::1816", "roar________::2748"] +["opendoar____::2435", "roar________::4390"] +["opendoar____::1641", "roar________::24"] +["opendoar____::3327", "roar________::3752"] +["roar________::959", "opendoar____::1699"] +["opendoar____::1765", "roar________::1319"] +["opendoar____::40", "roar________::2486"] +["roar________::1191", "opendoar____::1711"] +["opendoar____::2101", "roar________::296", "roar________::4644"] +["opendoar____::1586", "roar________::284"] +["roar________::765", "opendoar____::1476"] +["opendoar____::1632", "roar________::1248"] +["roar________::2373", "opendoar____::2238"] +["roar________::3048", "opendoar____::1887"] +["roar________::2458", "opendoar____::1553"] +["roar________::777", "opendoar____::1545"] +["roar________::1335", "opendoar____::1701"] +["opendoar____::2194", "roar________::366"] +["opendoar____::1581", "roar________::37"] +["roar________::4349", "opendoar____::2297"] +["opendoar____::1589", "roar________::4"] +["opendoar____::1520", "roar________::1516"] +["opendoar____::1532", "roar________::1080"] +["roar________::117", "opendoar____::1533"] +["opendoar____::3615", "roar________::1514"] +["roar________::2951", "roar________::1510", "opendoar____::2235"] +["opendoar____::1934", "roar________::3169"] +["roar________::1471", "opendoar____::1514"] +["roar________::1153", "opendoar____::1505"] +["opendoar____::1479", "roar________::431"] +["roar________::961", "opendoar____::1588"] +["opendoar____::1490", "roar________::253"] +["opendoar____::1591", "roar________::111"] +["roar________::2811", "opendoar____::1826"] +["roar________::895", "opendoar____::2745"] +["opendoar____::1399", "roar________::167"] +["roar________::552", "opendoar____::1278"] +["roar________::2279", "opendoar____::1551"] +["roar________::1066", "roar________::4574", "opendoar____::1500"] +["opendoar____::1384", "roar________::1370"] +["roar________::368", "roar________::3085", "roar________::7017", "opendoar____::1402"] +["roar________::94", "opendoar____::1552"] +["opendoar____::1418", "roar________::874"] +["roar________::816", "opendoar____::1549"] +["roar________::4057", "opendoar____::2219"] +["roar________::1399", "opendoar____::1111"] +["opendoar____::1405", "roar________::492"] +["opendoar____::1601", "roar________::1352"] +["opendoar____::1430", "roar________::508"] +["opendoar____::1447", "roar________::898"] +["opendoar____::1550", "roar________::1074"] +["roar________::484", "opendoar____::1636"] +["roar________::1357", "opendoar____::1567"] +["roar________::1239", "opendoar____::1380"] +["roar________::1544", "opendoar____::1067"] +["opendoar____::1274", "roar________::430"] +["roar________::4416", "opendoar____::2328"] +["roar________::3039", "opendoar____::1940"] +["roar________::9146", "roar________::1200", "opendoar____::1183"] +["roar________::2990", "opendoar____::1867"] +["opendoar____::1376", "roar________::928"] +["opendoar____::1920", "roar________::3154"] +["opendoar____::1293", "roar________::291"] +["opendoar____::1537", "roar________::905"] +["roar________::946", "opendoar____::1243"] +["opendoar____::1212", "roar________::1469"] +["opendoar____::1602", "roar________::38"] +["opendoar____::1088", "roar________::10867", "roar________::110"] +["opendoar____::1222", "roar________::745"] +["roar________::1215", "opendoar____::1225"] +["opendoar____::1682", "roar________::2598"] +["roar________::872", "opendoar____::1068"] +["opendoar____::1048", "roar________::769"] +["roar________::548", "opendoar____::1257"] +["roar________::1512", "opendoar____::1228"] +["roar________::1520", "opendoar____::1177"] +["opendoar____::1056", "roar________::404"] +["roar________::1196", "opendoar____::1077"] +["roar________::622", "opendoar____::1040"] +["opendoar____::1146", "roar________::618"] +["opendoar____::973", "roar________::12605", "roar________::855"] +["roar________::2415", "roar________::597", "opendoar____::927"] +["roar________::1358", "opendoar____::987"] +["opendoar____::950", "roar________::626"] +["opendoar____::1037", "roar________::1303"] +["roar________::3395", "opendoar____::3321"] +["roar________::75", "opendoar____::912"] +["roar________::3772", "roar________::15856", "opendoar____::2127"] +["roar________::2406", "opendoar____::875"] +["roar________::376", "opendoar____::119"] +["opendoar____::763", "roar________::1291"] +["opendoar____::585", "roar________::797"] +["opendoar____::549", "roar________::25"] +["roar________::828", "opendoar____::128"] +["opendoar____::514", "roar________::830"] +["opendoar____::1126", "roar________::1366"] +["opendoar____::1069", "roar________::1367"] +["roar________::718", "opendoar____::949"] +["opendoar____::370", "roar________::1495"] +["roar________::901", "opendoar____::555"] +["roar________::320", "opendoar____::589"] +["opendoar____::1097", "roar________::1218"] +["roar________::286", "opendoar____::909"] +["roar________::1397", "opendoar____::419"] +["roar________::297", "opendoar____::566"] +["opendoar____::197", "roar________::757"] +["roar________::365", "opendoar____::1640"] +["roar________::1235", "opendoar____::349"] +["opendoar____::1125", "roar________::159"] +["opendoar____::272", "roar________::354"] +["opendoar____::369", "roar________::1491"] +["opendoar____::149", "roar________::544"] +["roar________::513", "opendoar____::140"] +["opendoar____::298", "roar________::1280"] +["opendoar____::186", "roar________::670"] +["opendoar____::659", "roar________::1277"] +["opendoar____::256", "roar________::1032"] +["roar________::101", "opendoar____::79"] +["opendoar____::351", "roar________::1431"] +["roar________::1005", "opendoar____::254"] +["opendoar____::144", "roar________::1551"] +["roar________::1252", "opendoar____::294"] +["opendoar____::64", "roar________::226"] +["roar________::567", "opendoar____::481"] +["opendoar____::397", "roar________::1412"] +["opendoar____::148", "roar________::542"] +["opendoar____::326", "roar________::1373"] +["opendoar____::2128", "roar________::3767"] +["roar________::543", "opendoar____::465"] +["opendoar____::359", "roar________::1443"] +["roar________::1150", "opendoar____::282"] +["roar________::620", "opendoar____::661"] +["roar________::1174", "opendoar____::286"] +["opendoar____::537", "roar________::2331", "roar________::11"] +["roar________::5464", "roar________::181", "opendoar____::36"] +["roar________::5331", "opendoar____::2681"] +["roar________::4926", "opendoar____::2411"] +["roar________::4458", "opendoar____::2422"] +["opendoar____::2652", "roar________::4309"] +["roar________::3833", "opendoar____::2172"] +["roar________::2570", "opendoar____::1755"] +["roar________::2757", "opendoar____::1822"] +["opendoar____::1784", "roar________::2285"] +["opendoar____::1904", "roar________::3124"] +["roar________::2596", "opendoar____::1754"] +["roar________::3018", "opendoar____::1880"] +["opendoar____::1382", "roar________::179"] +["opendoar____::1253", "roar________::793"] +["opendoar____::1306", "roar________::949"] +["roar________::3311", "opendoar____::2014"] +["opendoar____::1197", "roar________::792"] +["roar________::1133", "opendoar____::886"] +["roar________::1361", "opendoar____::1393"] +["roar________::45", "opendoar____::952"] +["roar________::967", "opendoar____::896"] +["opendoar____::7", "roar________::63"] +["opendoar____::306", "roar________::1337"] +["opendoar____::587", "roar________::1030"] +["roar________::1454", "opendoar____::317", "roar________::4948"] +["opendoar____::277", "roar________::1122"] +["opendoar____::268", "roar________::1049"] +["opendoar____::308", "roar________::11216"] +["roar________::1392", "opendoar____::5"] +["opendoar____::278", "roar________::1135"] +["roar________::1371", "opendoar____::324"] +["opendoar____::3055", "roar________::6362"] +["opendoar____::2788", "roar________::6240"] +["opendoar____::2499", "roar________::5300"] +["opendoar____::2408", "roar________::4980"] +["opendoar____::2434", "roar________::4874"] +["opendoar____::1882", "roar________::3022"] +["roar________::2681", "opendoar____::2698"] +["opendoar____::1689", "roar________::56"] +["opendoar____::1605", "roar________::138"] +["roar________::287", "opendoar____::1164"] +["opendoar____::388", "roar________::3331"] +["opendoar____::900", "roar________::178"] +["roar________::158", "opendoar____::30"] +["roar________::2701", "opendoar____::229"] +["roar________::186", "opendoar____::38"] +["opendoar____::2633", "roar________::6475"] +["opendoar____::1895", "roar________::3055"] +["roar________::3254", "roar________::3225", "opendoar____::1968"] +["opendoar____::934", "roar________::1504"] +["roar________::350", "opendoar____::1458"] +["roar________::1044", "opendoar____::855"] +["roar________::3806", "opendoar____::57"] +["opendoar____::2603", "roar________::6554"] +["opendoar____::2432", "roar________::4991"] +["roar________::3994", "opendoar____::2198"] +["opendoar____::1731", "roar________::2383"] +["opendoar____::1923", "roar________::3153"] +["roar________::2899", "opendoar____::2029"] +["roar________::752", "opendoar____::1328"] +["opendoar____::1201", "roar________::863"] +["roar________::851", "opendoar____::213"] +["opendoar____::354", "roar________::1440"] +["opendoar____::1634", "roar________::1229"] +["opendoar____::1906", "roar________::3114"] +["roar________::5632", "opendoar____::2514"] +["roar________::5573", "opendoar____::156"] +["roar________::2491", "opendoar____::1866"] +["opendoar____::1597", "roar________::330"] +["roar________::1393", "opendoar____::1292"] +["opendoar____::1063", "roar________::733"] +["roar________::168", "opendoar____::1070"] +["opendoar____::1258", "roar________::861"] +["opendoar____::2917", "roar________::6071"] +["roar________::5904", "opendoar____::2564"] +["opendoar____::2291", "roar________::3825"] +["opendoar____::758", "roar________::592"] +["opendoar____::147", "roar________::541"] +["roar________::4003", "roar________::13005", "opendoar____::2202"] +["roar________::2818", "opendoar____::1326"] +["roar________::1073", "opendoar____::1291"] +["roar________::704", "opendoar____::1182"] +["opendoar____::2636", "roar________::6306"] +["opendoar____::1683", "roar________::2272"] +["opendoar____::897", "roar________::1428"] +["roar________::74", "opendoar____::852"] +["opendoar____::983", "roar________::1409"] +["roar________::1411", "opendoar____::520"] +["roar________::873", "opendoar____::525"] +["roar________::3683", "opendoar____::2099"] +["roar________::3967", "opendoar____::1749"] +["roar________::1519", "opendoar____::1411"] +["roar________::1099", "opendoar____::579"] +["roar________::510", "opendoar____::467"] +["opendoar____::2494", "roar________::5512"] +["roar________::188", "opendoar____::39"] +["opendoar____::1675", "roar________::1376"] +["opendoar____::411", "roar________::204"] +["opendoar____::1925", "roar________::3151"] +["roar________::1511", "opendoar____::1730"] +["roar________::727", "opendoar____::780", "roar________::728"] +["opendoar____::2466", "roar________::5154"] +["roar________::1173", "opendoar____::285"] +["roar________::760", "opendoar____::1221"] +["opendoar____::255", "roar________::1013"] +["opendoar____::1216", "roar________::748"] +["opendoar____::1161", "roar________::680"] +["opendoar____::45", "roar________::195"] +["roar________::907", "opendoar____::1513", "roar________::5579"] +["opendoar____::1195", "roar________::1494"] +["roar________::1276", "opendoar____::735"] +["roar________::198", "opendoar____::47"] +["roar________::177", "opendoar____::405"] +["opendoar____::1999", "roar________::640"] +["roar________::935", "opendoar____::228"] +["opendoar____::291", "roar________::1427"] +["opendoar____::42", "roar________::192"] +["opendoar____::1199", "roar________::1093"] +["opendoar____::1780", "roar________::2699"] +["roar________::2697", "opendoar____::1778"] +["opendoar____::1776", "roar________::2707"] +["roar________::2695", "opendoar____::1777"] +["opendoar____::2610", "roar________::6228"] +["roar________::6474", "opendoar____::2632"] +["opendoar____::2616", "roar________::6196"] +["roar________::3809", "opendoar____::2148"] +["opendoar____::2147", "roar________::3807"] +["opendoar____::1943", "roar________::3407", "roar________::3138"] +["opendoar____::1809", "roar________::2734"] +["roar________::228", "opendoar____::2141"] +["roar________::223", "opendoar____::1462"] +["opendoar____::139", "roar________::504"] +["roar________::1040", "opendoar____::791"] +["roar________::972", "opendoar____::236"] +["opendoar____::706", "roar________::980"] +["roar________::372", "opendoar____::441"] +["opendoar____::718", "roar________::1312"] +["roar________::87", "opendoar____::402"] +["roar________::1473", "opendoar____::967"] +["roar________::563", "opendoar____::843"] +["roar________::502", "opendoar____::611"] +["opendoar____::629", "roar________::61"] +["opendoar____::707", "roar________::1439"] +["opendoar____::350", "roar________::956"] +["roar________::203", "opendoar____::52"] +["opendoar____::1184", "roar________::5513"] +["roar________::2422", "opendoar____::257"] +["roar________::1508", "opendoar____::477"] +["opendoar____::385", "roar________::219"] +["opendoar____::2358", "roar________::4549"] +["roar________::975", "opendoar____::238"] +["opendoar____::2088", "roar________::656"] +["opendoar____::2800", "roar________::6601"] +["opendoar____::2065", "roar________::3575"] +["roar________::6069", "opendoar____::2579", "roar________::6014"] +["roar________::2576", "opendoar____::1752"] +["roar________::878", "opendoar____::220"] +["opendoar____::997", "roar________::479"] +["opendoar____::853", "roar________::214"] +["opendoar____::243", "roar________::12856", "roar________::982"] +["roar________::2457", "opendoar____::1718"] +["opendoar____::237", "roar________::973"] +["opendoar____::564", "roar________::1264"] +["opendoar____::51", "roar________::202"] +["roar________::4661", "opendoar____::715"] +["roar________::2894", "opendoar____::1857"] +["opendoar____::616", "roar________::1182"] +["roar________::1187", "opendoar____::621"] +["opendoar____::619", "roar________::1181"] +["roar________::1183", "opendoar____::1576"] +["roar________::838", "opendoar____::534"] +["opendoar____::618", "roar________::1177"] +["roar________::1175", "opendoar____::617"] +["opendoar____::615", "roar________::1186"] +["roar________::1176", "opendoar____::614"] +["roar________::1178", "opendoar____::622"] +["roar________::1179", "opendoar____::623"] +["opendoar____::2704", "roar________::129"] +["roar________::194", "opendoar____::44"] +["opendoar____::1902", "roar________::2587"] +["roar________::4602", "opendoar____::2401"] +["opendoar____::380", "roar________::1158"] +["opendoar____::1169", "roar________::2758"] +["opendoar____::2100", "roar________::2580"] +["opendoar____::58", "roar________::1"] +["roar________::605", "opendoar____::177"] +["roar________::150", "opendoar____::1838"] +["roar________::5462", "opendoar____::1185"] +["roar________::1023", "opendoar____::918"] +["roar________::3130", "opendoar____::1917"] +["roar________::3612", "opendoar____::325"] +["opendoar____::2239", "roar________::4131"] +["opendoar____::836", "roar________::3079"] +["opendoar____::2249", "roar________::4137"] +["roar________::3649", "opendoar____::2084"] +["roar________::868", "opendoar____::517"] +["opendoar____::2058", "roar________::3578"] +["opendoar____::724", "roar________::4819"] +["opendoar____::25", "roar________::123"] +["roar________::5633", "opendoar____::2562"] +["roar________::974", "opendoar____::368"] +["roar________::1437", "opendoar____::352"] +["roar________::3576", "opendoar____::2052"] +["roar________::130", "opendoar____::26"] +["opendoar____::2855", "roar________::5609"] +["opendoar____::511", "roar________::791"] +["opendoar____::244", "roar________::981"] +["opendoar____::2171", "roar________::5408"] +["roar________::5106", "opendoar____::1587"] +["roar________::2398", "opendoar____::279"] +["roar________::1518", "opendoar____::1209"] +["opendoar____::604", "roar________::576"] +["roar________::225", "opendoar____::63"] +["opendoar____::158", "roar________::572"] +["roar________::3685", "roar________::10677", "opendoar____::1722"] +["roar________::206", "opendoar____::1187"] +["opendoar____::43", "roar________::193"] +["roar________::184", "opendoar____::37"] +["roar________::584", "opendoar____::1323"] +["roar________::189", "opendoar____::408"] +["roar________::172", "opendoar____::1076"] +["opendoar____::2383", "roar________::4619"] +["roar________::1450", "opendoar____::392"] +["roar________::672", "opendoar____::187"] +["opendoar____::190", "roar________::707"] +["opendoar____::580", "roar________::5985", "roar________::1478"] +["opendoar____::10104", "roar________::17829"] +["opendoar____::10255", "roar________::17561"] +["opendoar____::4692", "roar________::17503"] +["opendoar____::10189", "roar________::17256"] +["opendoar____::10149", "roar________::17194"] +["opendoar____::10117", "roar________::17080"] +["opendoar____::10107", "roar________::17066"] +["roar________::16981", "opendoar____::10093"] +["roar________::16964", "opendoar____::10088"] +["opendoar____::3346", "roar________::16785"] +["opendoar____::10029", "roar________::16721"] +["roar________::16551", "opendoar____::10012"] +["roar________::16525", "opendoar____::4570"] +["opendoar____::9971", "roar________::16522"] +["roar________::16403", "opendoar____::9946"] +["roar________::16265", "opendoar____::3791"] +["roar________::16210", "opendoar____::4817"] +["opendoar____::3569", "roar________::16232"] +["roar________::16153", "opendoar____::9711"] +["roar________::16149", "opendoar____::9712"] +["roar________::16109", "opendoar____::4716"] +["opendoar____::9677", "roar________::16087"] +["roar________::16072", "opendoar____::9988"] +["roar________::15960", "opendoar____::9378"] +["roar________::15915", "opendoar____::4448"] +["opendoar____::1828", "roar________::15792", "roar________::91"] +["roar________::15723", "opendoar____::9447"] +["opendoar____::9494", "roar________::15710"] +["opendoar____::3145", "roar________::15604"] +["opendoar____::3915", "roar________::15587"] +["roar________::15576", "opendoar____::9458"] +["roar________::15515", "roar________::3305", "opendoar____::1997"] +["opendoar____::4302", "roar________::15474"] +["roar________::15426", "opendoar____::4331"] +["roar________::15337", "opendoar____::1677"] +["roar________::15307", "opendoar____::4887"] +["opendoar____::4878", "roar________::15288"] +["roar________::15277", "opendoar____::4861"] +["roar________::15271", "opendoar____::4780"] +["roar________::15246", "opendoar____::4607"] +["opendoar____::4435", "roar________::15239"] +["opendoar____::4764", "roar________::15221"] +["opendoar____::4282", "roar________::15194"] +["opendoar____::3959", "roar________::15192"] +["opendoar____::4794", "roar________::15182"] +["opendoar____::4743", "roar________::15125"] +["roar________::15108", "opendoar____::4821"] +["opendoar____::4842", "roar________::15090"] +["roar________::15075", "opendoar____::3854"] +["opendoar____::4666", "roar________::15027"] +["roar________::14899", "opendoar____::3082"] +["opendoar____::3228", "roar________::14773"] +["opendoar____::4177", "roar________::14737"] +["opendoar____::3195", "roar________::14688"] +["roar________::14667", "opendoar____::3552"] +["roar________::14615", "opendoar____::4532"] +["roar________::14583", "opendoar____::4294"] +["roar________::14511", "opendoar____::4193"] +["opendoar____::4278", "roar________::14413"] +["opendoar____::4273", "roar________::14400"] +["opendoar____::4232", "roar________::14372"] +["opendoar____::4158", "roar________::14366"] +["opendoar____::4208", "roar________::14293"] +["opendoar____::4183", "roar________::14274"] +["roar________::14162", "opendoar____::3965"] +["opendoar____::4175", "roar________::14161"] +["opendoar____::2952", "roar________::14160"] +["roar________::14159", "opendoar____::4035"] +["roar________::14158", "opendoar____::4006"] +["opendoar____::4059", "roar________::14099"] +["opendoar____::3293", "roar________::14065"] +["roar________::13843", "opendoar____::4264"] +["roar________::13771", "roar________::6502", "opendoar____::2668"] +["roar________::13568", "opendoar____::4077"] +["roar________::13312", "opendoar____::4061"] +["roar________::13293", "opendoar____::3075"] +["roar________::9751", "opendoar____::3343", "roar________::13160"] +["roar________::13132", "opendoar____::2802"] +["roar________::13042", "opendoar____::3353"] +["roar________::13033", "opendoar____::3763"] +["opendoar____::2365", "roar________::13028"] +["opendoar____::4044", "roar________::12990"] +["roar________::12983", "opendoar____::3930"] +["roar________::12981", "opendoar____::3455"] +["roar________::12925", "opendoar____::3903"] +["roar________::12915", "opendoar____::3924"] +["roar________::12913", "opendoar____::3921"] +["opendoar____::1531", "roar________::12867"] +["opendoar____::3888", "roar________::12860"] +["roar________::12859", "opendoar____::3885"] +["roar________::12858", "opendoar____::3887"] +["roar________::12857", "opendoar____::3886"] +["opendoar____::3897", "roar________::12850"] +["roar________::12846", "opendoar____::2790"] +["opendoar____::2641", "roar________::12843"] +["roar________::12842", "opendoar____::3281"] +["roar________::12831", "opendoar____::3859"] +["roar________::12809", "opendoar____::3741"] +["opendoar____::3502", "roar________::12805"] +["opendoar____::588", "roar________::12726"] +["opendoar____::3567", "roar________::12684"] +["opendoar____::3882", "roar________::12637"] +["roar________::12603", "opendoar____::3955"] +["roar________::12600", "opendoar____::2948"] +["roar________::12592", "opendoar____::4517"] +["roar________::12558", "opendoar____::3674"] +["roar________::12512", "opendoar____::3919"] +["roar________::12503", "opendoar____::1170"] +["roar________::12496", "opendoar____::3969"] +["roar________::12475", "opendoar____::3871"] +["roar________::12433", "opendoar____::3865"] +["opendoar____::3964", "roar________::12429"] +["opendoar____::1474", "roar________::12362"] +["opendoar____::1334", "roar________::12309"] +["roar________::12288", "opendoar____::2467"] +["roar________::12280", "opendoar____::3823"] +["roar________::12221", "opendoar____::3850"] +["opendoar____::3941", "roar________::12141"] +["opendoar____::3940", "roar________::12136"] +["roar________::12026", "opendoar____::2940"] +["roar________::11991", "opendoar____::3809"] +["opendoar____::3780", "roar________::11976"] +["roar________::11967", "opendoar____::3563"] +["opendoar____::3801", "roar________::11964"] +["opendoar____::3942", "roar________::11944"] +["roar________::11934", "opendoar____::3813"] +["opendoar____::3836", "roar________::11929"] +["opendoar____::3810", "roar________::11916"] +["opendoar____::3945", "roar________::11905"] +["roar________::11890", "opendoar____::3784"] +["opendoar____::3947", "roar________::11887"] +["opendoar____::3758", "roar________::11862"] +["roar________::11840", "opendoar____::2985"] +["opendoar____::3812", "roar________::11829"] +["roar________::11733", "opendoar____::3716"] +["opendoar____::3726", "roar________::11709"] +["opendoar____::3735", "roar________::11708"] +["roar________::11639", "opendoar____::3851"] +["roar________::11622", "opendoar____::3694"] +["roar________::11588", "opendoar____::3752"] +["roar________::11573", "opendoar____::3777"] +["opendoar____::3968", "roar________::11535"] +["opendoar____::3678", "roar________::11534"] +["opendoar____::3613", "roar________::11533"] +["roar________::11501", "opendoar____::3743"] +["opendoar____::3653", "roar________::11490"] +["opendoar____::3352", "roar________::11483"] +["opendoar____::3783", "roar________::11466"] +["roar________::11464", "opendoar____::3647"] +["opendoar____::1413", "roar________::11445"] +["opendoar____::3787", "roar________::11399"] +["opendoar____::3592", "roar________::11301"] +["opendoar____::2785", "roar________::11289"] +["roar________::11277", "opendoar____::3803"] +["opendoar____::3387", "roar________::11268"] +["roar________::11256", "opendoar____::3751"] +["opendoar____::3713", "roar________::11253"] +["roar________::5755", "opendoar____::2540", "roar________::11213"] +["opendoar____::3578", "roar________::11211"] +["roar________::11210", "opendoar____::702"] +["roar________::5689", "roar________::11207", "opendoar____::2534"] +["roar________::5721", "opendoar____::2530", "roar________::11206"] +["roar________::5742", "roar________::11203", "opendoar____::2537"] +["roar________::11202", "opendoar____::3585"] +["opendoar____::2527", "roar________::5710", "roar________::11201"] +["opendoar____::2524", "roar________::5691", "roar________::11198"] +["opendoar____::3581", "roar________::11193"] +["roar________::11180", "opendoar____::3866"] +["opendoar____::3682", "roar________::11168"] +["roar________::11134", "opendoar____::3544"] +["opendoar____::3598", "roar________::11130"] +["roar________::11124", "opendoar____::3076"] +["roar________::11089", "opendoar____::3934"] +["opendoar____::3714", "roar________::11083"] +["roar________::11063", "opendoar____::3564"] +["roar________::11062", "opendoar____::3614"] +["roar________::11059", "opendoar____::3574"] +["roar________::11043", "opendoar____::3480"] +["roar________::11023", "opendoar____::1051"] +["opendoar____::3796", "roar________::11004"] +["roar________::10969", "opendoar____::3768"] +["roar________::10964", "opendoar____::3767"] +["roar________::10959", "opendoar____::1450"] +["roar________::10932", "opendoar____::3645"] +["roar________::10893", "opendoar____::3966"] +["opendoar____::3363", "roar________::10848"] +["opendoar____::3636", "roar________::10838"] +["opendoar____::3640", "roar________::10770"] +["opendoar____::3535", "roar________::10762"] +["roar________::10749", "opendoar____::3555"] +["roar________::10729", "opendoar____::3498"] +["roar________::10689", "opendoar____::3634"] +["roar________::10667", "opendoar____::3263"] +["opendoar____::3626", "roar________::10606"] +["roar________::10597", "opendoar____::3622"] +["roar________::10571", "opendoar____::3620"] +["roar________::10565", "opendoar____::3619"] +["roar________::10476", "opendoar____::3553"] +["roar________::10475", "opendoar____::3607"] +["roar________::10471", "opendoar____::3681"] +["opendoar____::334", "roar________::10463"] +["roar________::10424", "opendoar____::3285"] +["opendoar____::3492", "roar________::10417"] +["opendoar____::3933", "roar________::10380"] +["roar________::10355", "opendoar____::3531"] +["opendoar____::3497", "roar________::10337"] +["opendoar____::3591", "roar________::10313"] +["opendoar____::3855", "roar________::10287"] +["opendoar____::3481", "roar________::10225"] +["opendoar____::3477", "roar________::10202"] +["opendoar____::3476", "roar________::10199"] +["roar________::10186", "opendoar____::3468"] +["opendoar____::3536", "roar________::10159"] +["roar________::10135", "opendoar____::3467"] +["roar________::10089", "opendoar____::3709"] +["roar________::10053", "opendoar____::3400"] +["opendoar____::3590", "roar________::10039"] +["opendoar____::3433", "roar________::10038"] +["opendoar____::3453", "roar________::10019"] +["opendoar____::3408", "roar________::10001"] +["roar________::9994", "opendoar____::3496"] +["opendoar____::3399", "roar________::9988"] +["roar________::9975", "opendoar____::3547"] +["roar________::9955", "opendoar____::3392"] +["opendoar____::3165", "roar________::9947"] +["opendoar____::3380", "roar________::9902"] +["opendoar____::3537", "roar________::9891"] +["opendoar____::1436", "roar________::9872"] +["roar________::9852", "opendoar____::3366"] +["opendoar____::3256", "roar________::9841"] +["opendoar____::3311", "roar________::9789"] +["opendoar____::2885", "roar________::9777"] +["opendoar____::3331", "roar________::9725"] +["opendoar____::3397", "roar________::9704"] +["roar________::9687", "opendoar____::3309"] +["roar________::9676", "opendoar____::3718"] +["roar________::9654", "opendoar____::3288"] +["opendoar____::3264", "roar________::9646"] +["opendoar____::3267", "roar________::9643"] +["opendoar____::3268", "roar________::9642"] +["roar________::9637", "opendoar____::10818"] +["roar________::9634", "opendoar____::3210"] +["opendoar____::3209", "roar________::9616"] +["roar________::9582", "opendoar____::3153"] +["opendoar____::3295", "roar________::9564"] +["roar________::9551", "opendoar____::3287"] +["opendoar____::3336", "roar________::9513"] +["roar________::9504", "opendoar____::3218"] +["roar________::9481", "opendoar____::3273"] +["opendoar____::3412", "roar________::9464"] +["roar________::5658", "opendoar____::2521", "roar________::9359"] +["opendoar____::3251", "roar________::9348"] +["opendoar____::2221", "roar________::9343"] +["opendoar____::3257", "roar________::9341"] +["roar________::9338", "opendoar____::3827"] +["opendoar____::3255", "roar________::9312"] +["opendoar____::3117", "roar________::9311"] +["opendoar____::3237", "roar________::9169"] +["opendoar____::3236", "roar________::9161"] +["opendoar____::3137", "roar________::9158"] +["roar________::5702", "roar________::9147", "opendoar____::2531"] +["roar________::5694", "opendoar____::2532", "roar________::9141"] +["roar________::9140", "opendoar____::3244"] +["opendoar____::2529", "roar________::5715", "roar________::9139"] +["roar________::9138", "opendoar____::2538", "roar________::5744"] +["roar________::9135", "opendoar____::3241"] +["roar________::9134", "opendoar____::2810"] +["opendoar____::3234", "roar________::9125"] +["roar________::9108", "opendoar____::3223"] +["opendoar____::3229", "roar________::9105"] +["roar________::9100", "opendoar____::3226"] +["roar________::9088", "opendoar____::3222"] +["opendoar____::3169", "roar________::9083"] +["opendoar____::3213", "roar________::9061"] +["opendoar____::3292", "roar________::9056"] +["opendoar____::3377", "roar________::9020"] +["opendoar____::3250", "roar________::9004"] +["roar________::8970", "opendoar____::2932"] +["opendoar____::3227", "roar________::8969"] +["roar________::8960", "opendoar____::2856"] +["opendoar____::3185", "roar________::8958"] +["roar________::8951", "opendoar____::3184"] +["opendoar____::3445", "roar________::8933"] +["opendoar____::3963", "roar________::8920"] +["roar________::8896", "opendoar____::3158"] +["opendoar____::3173", "roar________::8880"] +["roar________::8874", "opendoar____::3876"] +["roar________::8854", "opendoar____::3740"] +["roar________::8825", "opendoar____::3600"] +["opendoar____::2315", "roar________::8800"] +["roar________::8720", "opendoar____::3172"] +["opendoar____::2670", "roar________::8718"] +["opendoar____::3298", "roar________::8666"] +["opendoar____::3100", "roar________::8636"] +["opendoar____::3486", "roar________::8612"] +["opendoar____::1568", "roar________::8587"] +["opendoar____::3200", "roar________::8585"] +["opendoar____::3103", "roar________::8547"] +["roar________::8546", "opendoar____::2781"] +["roar________::8535", "opendoar____::3090"] +["opendoar____::3106", "roar________::8522"] +["opendoar____::3149", "roar________::8483"] +["roar________::8471", "opendoar____::3764"] +["roar________::8450", "opendoar____::3788"] +["opendoar____::3259", "roar________::8435"] +["opendoar____::3155", "roar________::8427"] +["opendoar____::3261", "roar________::8413"] +["opendoar____::3007", "roar________::8402"] +["opendoar____::2714", "roar________::8395"] +["opendoar____::2839", "roar________::8387"] +["opendoar____::2754", "roar________::8384"] +["roar________::8369", "opendoar____::2831"] +["opendoar____::3050", "roar________::8365"] +["roar________::8362", "opendoar____::3546"] +["roar________::8354", "opendoar____::2611"] +["opendoar____::3069", "roar________::8332"] +["roar________::8326", "opendoar____::3070"] +["roar________::8304", "opendoar____::3306"] +["opendoar____::3952", "roar________::8297"] +["roar________::8282", "opendoar____::3060"] +["opendoar____::3160", "roar________::8259"] +["opendoar____::3049", "roar________::8256"] +["opendoar____::3391", "roar________::8239"] +["roar________::8235", "opendoar____::1775"] +["opendoar____::3033", "roar________::8213"] +["opendoar____::3085", "roar________::8210"] +["roar________::8196", "opendoar____::3040"] +["roar________::8165", "opendoar____::3037"] +["roar________::8158", "opendoar____::3019"] +["opendoar____::3026", "roar________::8126"] +["opendoar____::3135", "roar________::8113"] +["opendoar____::3012", "roar________::8043"] +["roar________::8005", "opendoar____::3154"] +["opendoar____::2996", "roar________::7973"] +["opendoar____::2999", "roar________::7966"] +["roar________::7924", "opendoar____::3814"] +["roar________::7897", "opendoar____::2994"] +["roar________::7893", "opendoar____::2986"] +["roar________::7878", "opendoar____::7878"] +["opendoar____::2929", "roar________::7841"] +["roar________::7839", "opendoar____::2967"] +["opendoar____::2953", "roar________::7832"] +["opendoar____::3020", "roar________::7776"] +["opendoar____::2992", "roar________::7775"] +["opendoar____::2723", "roar________::7770", "roar________::7148"] +["roar________::7756", "opendoar____::2658"] +["opendoar____::3749", "roar________::7725"] +["opendoar____::2965", "roar________::7722"] +["roar________::7626", "opendoar____::3126"] +["roar________::7619", "opendoar____::1557", "roar________::556"] +["roar________::7618", "opendoar____::2661"] +["roar________::7591", "opendoar____::2904"] +["roar________::7572", "opendoar____::2896"] +["opendoar____::2892", "roar________::7553"] +["roar________::7552", "opendoar____::2893"] +["roar________::7551", "opendoar____::2891"] +["opendoar____::2879", "roar________::7513"] +["opendoar____::2755", "roar________::7500"] +["roar________::7477", "opendoar____::3071"] +["opendoar____::2941", "roar________::7476"] +["roar________::7461", "opendoar____::2814"] +["roar________::7436", "opendoar____::2867"] +["opendoar____::2860", "roar________::7434"] +["roar________::7415", "opendoar____::2851"] +["roar________::7411", "opendoar____::2881"] +["opendoar____::2848", "roar________::7401"] +["roar________::7393", "opendoar____::3123"] +["roar________::7390", "opendoar____::3121"] +["opendoar____::2949", "roar________::7387"] +["opendoar____::2706", "roar________::7376"] +["roar________::7356", "opendoar____::2836"] +["opendoar____::2758", "roar________::7354"] +["opendoar____::2783", "roar________::7277"] +["opendoar____::2966", "roar________::7275"] +["roar________::7263", "opendoar____::2685"] +["roar________::7243", "opendoar____::2762"] +["opendoar____::2765", "roar________::7241"] +["roar________::7231", "opendoar____::2753"] +["roar________::7219", "opendoar____::3099"] +["opendoar____::2739", "roar________::7218"] +["opendoar____::2740", "roar________::7208"] +["roar________::7203", "opendoar____::3290"] +["opendoar____::2607", "roar________::7177"] +["roar________::7118", "opendoar____::2746"] +["roar________::7092", "opendoar____::2761"] +["opendoar____::2678", "roar________::7085"] +["roar________::7079", "opendoar____::2713"] +["opendoar____::2895", "roar________::7071"] +["opendoar____::2702", "roar________::7063"] +["roar________::7057", "opendoar____::2982"] +["roar________::7037", "opendoar____::2687"] +["roar________::7033", "opendoar____::2683"] +["roar________::7010", "opendoar____::2826"] +["opendoar____::2675", "roar________::6990"] +["roar________::6901", "opendoar____::2727"] +["opendoar____::2726", "roar________::6764"] +["opendoar____::2648", "roar________::6639"] +["roar________::6605", "opendoar____::2778"] +["opendoar____::482", "roar________::6590"] +["opendoar____::3028", "roar________::6543"] +["opendoar____::2495", "roar________::3227", "roar________::6491"] +["opendoar____::2915", "roar________::6455"] +["opendoar____::2772", "roar________::6450"] +["roar________::6388", "opendoar____::2623"] +["opendoar____::2592", "roar________::6236"] +["opendoar____::2578", "roar________::6067"] +["opendoar____::2650", "roar________::6004"] +["opendoar____::2287", "roar________::4929", "roar________::5982"] +["opendoar____::3119", "roar________::6041"] +["opendoar____::2446", "roar________::5958", "roar________::5098"] +["opendoar____::1124", "roar________::5957"] +["roar________::5947", "opendoar____::2981"] +["roar________::5887", "opendoar____::1029"] +["opendoar____::2565", "roar________::5842"] +["roar________::5812", "opendoar____::2849"] +["opendoar____::2551", "roar________::5763"] +["roar________::3112", "opendoar____::1473", "roar________::5758"] +["opendoar____::2541", "roar________::5757"] +["roar________::835", "roar________::5741", "opendoar____::210"] +["roar________::5719", "roar________::4739", "opendoar____::2406"] +["roar________::5713", "opendoar____::2523"] +["opendoar____::846", "roar________::5701"] +["opendoar____::367", "roar________::5696"] +["roar________::5631", "opendoar____::2442", "roar________::5054"] +["roar________::5629", "opendoar____::2509"] +["opendoar____::118", "roar________::5624"] +["roar________::5620", "opendoar____::1654"] +["roar________::5619", "opendoar____::1732"] +["opendoar____::697", "roar________::5555"] +["roar________::5525", "opendoar____::170"] +["roar________::3861", "roar________::5510", "opendoar____::2162"] +["opendoar____::1093", "roar________::5501"] +["opendoar____::1200", "roar________::5483"] +["roar________::5481", "opendoar____::1952", "roar________::3216"] +["opendoar____::844", "roar________::5470"] +["roar________::5455", "roar________::258", "opendoar____::1230"] +["opendoar____::1543", "roar________::460", "roar________::5444"] +["roar________::5327", "opendoar____::2791"] +["opendoar____::512", "roar________::5279"] +["opendoar____::2489", "roar________::5275"] +["roar________::5267", "opendoar____::866"] +["roar________::5259", "opendoar____::1290"] +["roar________::5260", "opendoar____::2474"] +["roar________::4955", "roar________::5183", "opendoar____::903"] +["opendoar____::1308", "roar________::5155"] +["roar________::5150", "opendoar____::2500"] +["opendoar____::2476", "roar________::5147"] +["roar________::5141", "opendoar____::2463"] +["roar________::5130", "opendoar____::2453"] +["opendoar____::2686", "roar________::5048"] +["roar________::4993", "opendoar____::860"] +["roar________::4984", "opendoar____::2276"] +["roar________::881", "roar________::4982", "opendoar____::1014"] +["roar________::1476", "opendoar____::1574", "roar________::4979"] +["roar________::4976", "opendoar____::2277"] +["roar________::4971", "opendoar____::767"] +["roar________::4966", "opendoar____::2284"] +["roar________::4963", "opendoar____::142"] +["opendoar____::2437", "roar________::4957"] +["opendoar____::2407", "roar________::4954"] +["roar________::4944", "opendoar____::2343"] +["opendoar____::2263", "roar________::4941"] +["opendoar____::785", "roar________::2423", "roar________::4927"] +["opendoar____::2430", "roar________::4841"] +["opendoar____::781", "roar________::4807"] +["opendoar____::1487", "roar________::4788"] +["opendoar____::1105", "roar________::4787"] +["roar________::4783", "opendoar____::2419"] +["roar________::4728", "opendoar____::1369"] +["roar________::930", "opendoar____::1116", "roar________::4723"] +["opendoar____::1506", "roar________::4716"] +["opendoar____::607", "roar________::4714"] +["opendoar____::1239", "roar________::4678"] +["roar________::4606", "opendoar____::2392"] +["opendoar____::1897", "roar________::4572", "roar________::3092"] +["opendoar____::2361", "roar________::4470"] +["opendoar____::2353", "roar________::4453"] +["roar________::4406", "opendoar____::2647"] +["opendoar____::2324", "roar________::4378"] +["opendoar____::2335", "roar________::4301"] +["roar________::4297", "opendoar____::2331"] +["opendoar____::2327", "roar________::4299"] +["opendoar____::2322", "roar________::4267"] +["opendoar____::2302", "roar________::4265"] +["opendoar____::2296", "roar________::4243"] +["roar________::8038", "opendoar____::1603"] +["roar________::4233", "opendoar____::2330"] +["opendoar____::2349", "roar________::4218"] +["roar________::4208", "opendoar____::2289"] +["roar________::4192", "opendoar____::2270"] +["roar________::4166", "opendoar____::2261"] +["opendoar____::2232", "roar________::4101"] +["opendoar____::2220", "roar________::4058"] +["roar________::4055", "opendoar____::2222"] +["roar________::4006", "opendoar____::2200"] +["roar________::3965", "roar________::3989", "opendoar____::1451"] +["opendoar____::1256", "roar________::3953"] +["roar________::3863", "opendoar____::2158"] +["opendoar____::2136", "roar________::3737"] +["opendoar____::2110", "roar________::3712"] +["opendoar____::2119", "roar________::3710"] +["opendoar____::2156", "roar________::3690"] +["opendoar____::2197", "roar________::3676"] +["opendoar____::2108", "roar________::3671"] +["opendoar____::2078", "roar________::3646"] +["opendoar____::2080", "roar________::3640"] +["opendoar____::2120", "roar________::3594"] +["roar________::3585", "opendoar____::1121"] +["opendoar____::2114", "roar________::3563"] +["roar________::3561", "opendoar____::2145"] +["roar________::3544", "opendoar____::2103"] +["opendoar____::2696", "roar________::3501"] +["roar________::3493", "opendoar____::2039"] +["roar________::3487", "opendoar____::1352"] +["roar________::3485", "opendoar____::1356"] +["opendoar____::2026", "roar________::3424"] +["roar________::3413", "opendoar____::1096"] +["roar________::3414", "roar________::2336", "opendoar____::1343"] +["opendoar____::2011", "roar________::3412"] +["opendoar____::1348", "roar________::3411"] +["opendoar____::1998", "roar________::3373"] +["opendoar____::2027", "roar________::3364"] +["roar________::3321", "roar________::2761", "opendoar____::1818"] +["roar________::3318", "opendoar____::2997"] +["opendoar____::1992", "roar________::3306"] +["roar________::3289", "opendoar____::1991"] +["opendoar____::1977", "roar________::3285"] +["roar________::3282", "opendoar____::1981"] +["roar________::3279", "opendoar____::1974"] +["opendoar____::1972", "roar________::3280"] +["roar________::3278", "opendoar____::1973"] +["roar________::3277", "opendoar____::1015"] +["roar________::3275", "opendoar____::1975"] +["roar________::3252", "opendoar____::1962"] +["opendoar____::1954", "roar________::3213"] +["opendoar____::1947", "roar________::3208"] +["roar________::3205", "opendoar____::1953"] +["roar________::3203", "opendoar____::1951"] +["opendoar____::1946", "roar________::3195"] +["opendoar____::1950", "roar________::3196"] +["opendoar____::1924", "roar________::3159"] +["opendoar____::1921", "roar________::3152"] +["opendoar____::1929", "roar________::3150"] +["opendoar____::677", "roar________::3121"] +["opendoar____::17", "roar________::3116"] +["roar________::3117", "opendoar____::1914"] +["roar________::3118", "opendoar____::1905"] +["opendoar____::1913", "roar________::3113"] +["opendoar____::1935", "roar________::3102"] +["opendoar____::1744", "roar________::3093", "roar________::2553"] +["roar________::3090", "opendoar____::720"] +["opendoar____::1858", "roar________::2971", "roar________::2940"] +["roar________::2861", "opendoar____::1850"] +["opendoar____::1823", "roar________::2783"] +["roar________::2766", "opendoar____::2095"] +["opendoar____::1804", "roar________::2740"] +["opendoar____::1806", "roar________::2739"] +["opendoar____::1796", "roar________::2738"] +["roar________::2737", "opendoar____::1800"] +["roar________::2736", "opendoar____::1808"] +["opendoar____::1803", "roar________::2732"] +["roar________::2731", "opendoar____::1805"] +["roar________::2729", "opendoar____::1797"] +["opendoar____::1801", "roar________::2728"] +["roar________::2727", "opendoar____::1795"] +["opendoar____::1810", "roar________::2726"] +["opendoar____::1798", "roar________::2724"] +["opendoar____::1799", "roar________::2722"] +["roar________::2709", "opendoar____::1840"] +["opendoar____::1789", "roar________::2706"] +["opendoar____::1790", "roar________::2702"] +["opendoar____::1791", "roar________::2700"] +["roar________::2696", "opendoar____::1792"] +["opendoar____::1793", "roar________::2694"] +["roar________::2660", "opendoar____::1836"] +["opendoar____::1086", "roar________::2654"] +["opendoar____::1908", "roar________::2637"] +["roar________::2606", "opendoar____::1764"] +["roar________::2555", "opendoar____::1750"] +["roar________::2550", "opendoar____::1742"] +["roar________::2552", "opendoar____::1747"] +["roar________::2493", "opendoar____::1738"] +["opendoar____::1725", "roar________::2472"] +["roar________::2446", "opendoar____::1719"] +["roar________::2442", "opendoar____::1713"] +["opendoar____::712", "roar________::2414"] +["roar________::2396", "opendoar____::1337"] +["roar________::2386", "opendoar____::280"] +["roar________::400", "opendoar____::2374"] +["opendoar____::1854", "roar________::243"] +["opendoar____::1671", "roar________::1123"] +["opendoar____::1672", "roar________::282"] +["roar________::148", "opendoar____::1665"] +["opendoar____::1727", "roar________::1339"] +["opendoar____::1656", "roar________::1289"] +["roar________::1294", "opendoar____::1319"] +["opendoar____::1626", "roar________::1368"] +["roar________::116", "opendoar____::1594"] +["roar________::388", "opendoar____::1570"] +["opendoar____::295", "roar________::1429"] +["roar________::938", "opendoar____::1577"] +["opendoar____::1561", "roar________::810"] +["roar________::1140", "opendoar____::1425"] +["roar________::1022", "opendoar____::251"] +["roar________::416", "opendoar____::1519"] +["opendoar____::948", "roar________::290"] +["roar________::940", "opendoar____::1498"] +["roar________::1324", "opendoar____::1074"] +["roar________::121", "opendoar____::1614"] +["roar________::401", "opendoar____::1087"] +["roar________::1314", "opendoar____::1496"] +["opendoar____::1360", "roar________::560"] +["opendoar____::2612", "roar________::1408"] +["roar________::1006", "opendoar____::1016"] +["opendoar____::1214", "roar________::619"] +["opendoar____::1397", "roar________::451"] +["roar________::571", "opendoar____::1372"] +["roar________::265", "opendoar____::1381"] +["roar________::866", "opendoar____::1342"] +["opendoar____::1202", "roar________::986"] +["roar________::601", "opendoar____::1270"] +["opendoar____::1208", "roar________::1143"] +["opendoar____::1529", "roar________::1213"] +["roar________::453", "opendoar____::1115"] +["roar________::1081", "opendoar____::1223"] +["opendoar____::1123", "roar________::1063"] +["opendoar____::1136", "roar________::613"] +["opendoar____::1757", "roar________::5115"] +["opendoar____::940", "roar________::693"] +["opendoar____::946", "roar________::422"] +["roar________::1195", "opendoar____::1203"] +["roar________::118", "opendoar____::731"] +["roar________::1221", "opendoar____::1137"] +["roar________::180", "opendoar____::35"] +["opendoar____::74", "roar________::275"] +["roar________::410", "opendoar____::452"] +["roar________::717", "opendoar____::192"] +["opendoar____::214", "roar________::852"] +["roar________::1208", "opendoar____::288"] +["roar________::1441", "opendoar____::356"] +["opendoar____::372", "roar________::1509"] +["roar________::113", "opendoar____::404"] +["roar________::408", "opendoar____::451"] +["opendoar____::530", "roar________::1529"] +["roar________::2287", "opendoar____::1680"] +["roar________::2325", "opendoar____::1435"] +["roar________::2363", "opendoar____::1705"] diff --git a/data/out/registryGroups.txt b/data/out/registryGroups.txt new file mode 100644 index 0000000..56c06ba --- /dev/null +++ b/data/out/registryGroups.txt @@ -0,0 +1,3548 @@ +["fairsharing_::3226", "re3data_____::r3d100010601"] +["re3data_____::r3d100010191", "fairsharing_::2114"] +["re3data_____::r3d100010929", "fairsharing_::3022"] +["fairsharing_::2998", "re3data_____::r3d100011138"] +["fairsharing_::3237", "re3data_____::r3d100011537"] +["fairsharing_::2475", "re3data_____::r3d100011310"] +["re3data_____::r3d100010906", "fairsharing_::1740"] +["fairsharing_::3319", "re3data_____::r3d100013383"] +["re3data_____::r3d100011380", "fairsharing_::2810"] +["re3data_____::r3d100010088", "fairsharing_::2294"] +["fairsharing_::3245", "re3data_____::r3d100013461"] +["fairsharing_::3170", "re3data_____::r3d100011742"] +["fairsharing_::2012", "re3data_____::r3d100012849"] +["re3data_____::r3d100012369", "fairsharing_::2548"] +["fairsharing_::2495", "re3data_____::r3d100000036"] +["re3data_____::r3d100010528", "fairsharing_::1547"] +["re3data_____::r3d100011296", "fairsharing_::2621"] +["re3data_____::r3d100012433", "fairsharing_::2742"] +["fairsharing_::2788", "re3data_____::r3d100010589"] +["re3data_____::r3d100010503", "fairsharing_::3056"] +["re3data_____::r3d100011945", "fairsharing_::3157"] +["fairsharing_::2879", "re3data_____::r3d100013202"] +["fairsharing_::2538", "re3data_____::r3d100012077"] +["fairsharing_::1998", "re3data_____::r3d100000044"] +["re3data_____::r3d100011707", "fairsharing_::3019"] +["re3data_____::r3d100011065", "fairsharing_::3114"] +["fairsharing_::3115", "re3data_____::r3d100011484"] +["fairsharing_::3138", "re3data_____::r3d100011704"] +["fairsharing_::3140", "re3data_____::r3d100010056"] +["re3data_____::r3d100012700", "fairsharing_::1550"] +["fairsharing_::2142", "re3data_____::r3d100010890"] +["fairsharing_::3275", "re3data_____::r3d100013478"] +["re3data_____::r3d100010918", "fairsharing_::3258"] +["fairsharing_::3278", "re3data_____::r3d100010167"] +["re3data_____::r3d100010373", "fairsharing_::3279"] +["re3data_____::r3d100012696", "fairsharing_::2861"] +["fairsharing_::3173", "re3data_____::r3d100013385"] +["re3data_____::r3d100012374", "fairsharing_::3311"] +["re3data_____::r3d100011708", "fairsharing_::2797"] +["re3data_____::r3d100010496", "fairsharing_::3341"] +["re3data_____::r3d100010411", "fairsharing_::2855"] +["re3data_____::r3d100013237", "fairsharing_::3342"] +["re3data_____::r3d100011623", "fairsharing_::2929"] +["fairsharing_::2934", "re3data_____::r3d100013292"] +["fairsharing_::2950", "re3data_____::r3d100013304"] +["fairsharing_::2970", "re3data_____::r3d100010623"] +["fairsharing_::2995", "re3data_____::r3d100011025"] +["fairsharing_::3008", "re3data_____::r3d100011580"] +["re3data_____::r3d100011682", "fairsharing_::3033"] +["re3data_____::r3d100011683", "fairsharing_::3034"] +["fairsharing_::3049", "re3data_____::r3d100010061"] +["fairsharing_::3060", "re3data_____::r3d100010501"] +["fairsharing_::3086", "re3data_____::r3d100013023"] +["fairsharing_::2589", "re3data_____::r3d100013440"] +["fairsharing_::3093", "re3data_____::r3d100010956"] +["fairsharing_::3105", "re3data_____::r3d100013201"] +["re3data_____::r3d100010843", "fairsharing_::3126"] +["re3data_____::r3d100000043", "fairsharing_::3136"] +["fairsharing_::3089", "re3data_____::r3d100012937"] +["re3data_____::r3d100011556", "fairsharing_::1711"] +["re3data_____::r3d100013649", "fairsharing_::3336"] +["fairsharing_::3576", "re3data_____::r3d100013208"] +["fairsharing_::3329", "re3data_____::r3d100013564"] +["re3data_____::r3d100011201", "fairsharing_::2560"] +["re3data_____::r3d100012193", "fairsharing_::3324"] +["fairsharing_::2163", "re3data_____::r3d100000039"] +["re3data_____::r3d100012356", "fairsharing_::2649"] +["re3data_____::r3d100010328", "fairsharing_::2656"] +["fairsharing_::3169", "re3data_____::r3d100010287"] +["re3data_____::r3d100010538", "fairsharing_::1860"] +["fairsharing_::2546", "re3data_____::r3d100011865"] +["re3data_____::r3d100013188", "fairsharing_::3098"] +["fairsharing_::2702", "re3data_____::r3d100010765"] +["re3data_____::r3d100011673", "fairsharing_::2808"] +["fairsharing_::3326", "re3data_____::r3d100012308"] +["fairsharing_::2927", "re3data_____::r3d100011164"] +["fairsharing_::3598", "re3data_____::r3d100013623"] +["re3data_____::r3d100013624", "fairsharing_::3599"] +["fairsharing_::2857", "re3data_____::r3d100013028"] +["re3data_____::r3d100011094", "fairsharing_::2699"] +["re3data_____::r3d100013285", "fairsharing_::3096"] +["re3data_____::r3d100013120", "fairsharing_::2820"] +["fairsharing_::2807", "re3data_____::r3d100011110"] +["re3data_____::r3d100000006", "fairsharing_::2504"] +["re3data_____::r3d100010423", "fairsharing_::2536"] +["re3data_____::r3d100012611", "fairsharing_::2606"] +["re3data_____::r3d100011965", "fairsharing_::2707"] +["fairsharing_::3209", "re3data_____::r3d100012653"] +["re3data_____::r3d100013625", "fairsharing_::3616"] +["re3data_____::r3d100011928", "fairsharing_::2262"] +["re3data_____::r3d100010211", "fairsharing_::2004"] +["re3data_____::r3d100011098", "fairsharing_::2817"] +["fairsharing_::2291", "re3data_____::r3d100012176"] +["fairsharing_::3234", "re3data_____::r3d100013080"] +["fairsharing_::2770", "re3data_____::r3d100012646"] +["fairsharing_::2092", "re3data_____::r3d100010760"] +["re3data_____::r3d100010283", "fairsharing_::1975"] +["re3data_____::r3d100010506", "fairsharing_::3051"] +["fairsharing_::2801", "re3data_____::r3d100010773"] +["fairsharing_::3128", "re3data_____::r3d100011781"] +["re3data_____::r3d100010691", "fairsharing_::2542"] +["fairsharing_::3009", "re3data_____::r3d100011805"] +["re3data_____::r3d100012845", "fairsharing_::2201"] +["re3data_____::r3d100012385", "fairsharing_::2558"] +["re3data_____::r3d100011555", "fairsharing_::2153"] +["re3data_____::r3d100010473", "fairsharing_::2966"] +["re3data_____::r3d100013328", "fairsharing_::3317"] +["re3data_____::r3d100010562", "fairsharing_::2126"] +["fairsharing_::2157", "re3data_____::r3d100010092"] +["fairsharing_::3063", "re3data_____::r3d100012222"] +["fairsharing_::3095", "re3data_____::r3d100012625"] +["fairsharing_::3029", "re3data_____::r3d100011018"] +["re3data_____::r3d100011280", "fairsharing_::1727"] +["re3data_____::r3d100012199", "fairsharing_::2940"] +["re3data_____::r3d100010785", "fairsharing_::3653"] +["fairsharing_::2155", "re3data_____::r3d100011553"] +["fairsharing_::2417", "re3data_____::r3d100010558"] +["fairsharing_::2498", "re3data_____::r3d100010163"] +["fairsharing_::2164", "re3data_____::r3d100010905"] +["fairsharing_::3101", "re3data_____::r3d100010511"] +["fairsharing_::3122", "re3data_____::r3d100010183"] +["re3data_____::r3d100011198", "fairsharing_::2406"] +["fairsharing_::3309", "re3data_____::r3d100013507"] +["fairsharing_::2451", "re3data_____::r3d100010464"] +["re3data_____::r3d100000023", "fairsharing_::1723"] +["re3data_____::r3d100011213", "fairsharing_::2127"] +["re3data_____::r3d100010908", "fairsharing_::2982"] +["fairsharing_::3216", "re3data_____::r3d100011643"] +["re3data_____::r3d100011100", "fairsharing_::3235"] +["re3data_____::r3d100010261", "fairsharing_::2016"] +["re3data_____::r3d100012601", "fairsharing_::2583"] +["fairsharing_::1773", "re3data_____::r3d100010927"] +["fairsharing_::3181", "re3data_____::r3d100010232"] +["re3data_____::r3d100012644", "fairsharing_::2066"] +["re3data_____::r3d100013658", "fairsharing_::3575"] +["fairsharing_::2381", "re3data_____::r3d100012864"] +["fairsharing_::2129", "re3data_____::r3d100011192"] +["re3data_____::r3d100010126", "fairsharing_::2925"] +["re3data_____::r3d100010652", "fairsharing_::1972"] +["fairsharing_::2222", "re3data_____::r3d100011126"] +["re3data_____::r3d100010268", "fairsharing_::2426"] +["fairsharing_::2758", "re3data_____::r3d100012058"] +["re3data_____::r3d100013508", "fairsharing_::3345"] +["fairsharing_::2315", "re3data_____::r3d100011894"] +["fairsharing_::1850", "re3data_____::r3d100010527"] +["fairsharing_::2863", "re3data_____::r3d100010413"] +["re3data_____::r3d100013276", "fairsharing_::3113"] +["re3data_____::r3d100011633", "fairsharing_::3121"] +["re3data_____::r3d100011801", "fairsharing_::2416"] +["fairsharing_::2069", "re3data_____::r3d100010314"] +["fairsharing_::2524", "re3data_____::r3d100012397"] +["fairsharing_::3224", "re3data_____::r3d100013291"] +["re3data_____::r3d100010146", "fairsharing_::2509"] +["re3data_____::r3d100010649", "fairsharing_::1973"] +["re3data_____::r3d100010066", "fairsharing_::1843"] +["fairsharing_::2667", "re3data_____::r3d100010375"] +["re3data_____::r3d100011298", "fairsharing_::2169"] +["re3data_____::r3d100012689", "fairsharing_::2300"] +["fairsharing_::2211", "re3data_____::r3d100012828"] +["re3data_____::r3d100012156", "fairsharing_::3178"] +["re3data_____::r3d100011200", "fairsharing_::2403"] +["fairsharing_::2525", "re3data_____::r3d100012439"] +["re3data_____::r3d100010316", "fairsharing_::2783"] +["re3data_____::r3d100011560", "fairsharing_::2184"] +["re3data_____::r3d100011311", "fairsharing_::3229"] +["re3data_____::r3d100013079", "fairsharing_::3106"] +["re3data_____::r3d100012072", "fairsharing_::2547"] +["fairsharing_::2767", "re3data_____::r3d100012305"] +["fairsharing_::3154", "re3data_____::r3d100011122"] +["re3data_____::r3d100011012", "fairsharing_::3192"] +["re3data_____::r3d100010635", "fairsharing_::2971"] +["fairsharing_::2768", "re3data_____::r3d100013177"] +["fairsharing_::2072", "re3data_____::r3d100010170"] +["fairsharing_::3331", "re3data_____::r3d100011800"] +["re3data_____::r3d100011108", "fairsharing_::2778"] +["fairsharing_::3148", "re3data_____::r3d100012288"] +["re3data_____::r3d100012494", "fairsharing_::3025"] +["fairsharing_::3206", "re3data_____::r3d100011575"] +["fairsharing_::2186", "re3data_____::r3d100012529"] +["re3data_____::r3d100011817", "fairsharing_::2676"] +["fairsharing_::2326", "re3data_____::r3d100011230"] +["fairsharing_::3012", "re3data_____::r3d100011691"] +["fairsharing_::2803", "re3data_____::r3d100011675"] +["fairsharing_::3102", "re3data_____::r3d100013606"] +["re3data_____::r3d100011867", "fairsharing_::2231"] +["re3data_____::r3d100010260", "fairsharing_::2883"] +["fairsharing_::3207", "re3data_____::r3d100013432"] +["fairsharing_::2984", "re3data_____::r3d100010502"] +["fairsharing_::1863", "re3data_____::r3d100010137"] +["re3data_____::r3d100012754", "fairsharing_::1890"] +["fairsharing_::3044", "re3data_____::r3d100012487"] +["fairsharing_::2719", "re3data_____::r3d100012823"] +["fairsharing_::1891", "re3data_____::r3d100011052"] +["fairsharing_::1845", "re3data_____::r3d100010222"] +["fairsharing_::3183", "re3data_____::r3d100013602"] +["re3data_____::r3d100012190", "fairsharing_::2805"] +["re3data_____::r3d100012705", "fairsharing_::2562"] +["fairsharing_::2135", "re3data_____::r3d100012630"] +["re3data_____::r3d100012962", "fairsharing_::3334"] +["fairsharing_::1714", "re3data_____::r3d100010804"] +["fairsharing_::2905", "re3data_____::r3d100013428"] +["re3data_____::r3d100010880", "fairsharing_::2118"] +["fairsharing_::3021", "re3data_____::r3d100011973"] +["fairsharing_::2985", "re3data_____::r3d100010510"] +["fairsharing_::2358", "re3data_____::r3d100010468"] +["fairsharing_::1867", "re3data_____::r3d100010228"] +["fairsharing_::2425", "re3data_____::r3d100010273"] +["fairsharing_::1865", "re3data_____::r3d100011242"] +["re3data_____::r3d100012961", "fairsharing_::2544"] +["re3data_____::r3d100013663", "fairsharing_::3067"] +["re3data_____::r3d100012890", "fairsharing_::3127"] +["fairsharing_::2162", "re3data_____::r3d100010272"] +["fairsharing_::1725", "re3data_____::r3d100010408"] +["re3data_____::r3d100012349", "fairsharing_::2459"] +["fairsharing_::2134", "re3data_____::r3d100012820"] +["fairsharing_::2290", "re3data_____::r3d100012344"] +["re3data_____::r3d100012431", "fairsharing_::3048"] +["re3data_____::r3d100012471", "fairsharing_::2620"] +["re3data_____::r3d100010637", "fairsharing_::1752"] +["fairsharing_::2684", "re3data_____::r3d100012224"] +["re3data_____::r3d100012464", "fairsharing_::2236"] +["re3data_____::r3d100012673", "fairsharing_::2608"] +["fairsharing_::2675", "re3data_____::r3d100010138"] +["fairsharing_::2443", "re3data_____::r3d100010410"] +["fairsharing_::3313", "re3data_____::r3d100013559"] +["re3data_____::r3d100010750", "fairsharing_::2557"] +["fairsharing_::3058", "re3data_____::r3d100010504"] +["fairsharing_::3153", "re3data_____::r3d100010909"] +["re3data_____::r3d100011506", "fairsharing_::2421"] +["fairsharing_::1793", "re3data_____::r3d100010557"] +["re3data_____::r3d100011741", "fairsharing_::3174"] +["re3data_____::r3d100010057", "fairsharing_::2108"] +["re3data_____::r3d100012074", "fairsharing_::1772"] +["re3data_____::r3d100011913", "fairsharing_::2243"] +["fairsharing_::2380", "re3data_____::r3d100013667"] +["fairsharing_::3171", "re3data_____::r3d100011665"] +["fairsharing_::2983", "re3data_____::r3d100011700"] +["re3data_____::r3d100012203", "fairsharing_::3184"] +["fairsharing_::2931", "re3data_____::r3d100012003"] +["re3data_____::r3d100013638", "fairsharing_::3322"] +["re3data_____::r3d100010578", "fairsharing_::2423"] +["re3data_____::r3d100011956", "fairsharing_::2806"] +["re3data_____::r3d100012342", "fairsharing_::2415"] +["re3data_____::r3d100012752", "fairsharing_::2481"] +["re3data_____::r3d100012656", "fairsharing_::3210"] +["re3data_____::r3d100011679", "fairsharing_::3020"] +["fairsharing_::3202", "re3data_____::r3d100012419"] +["fairsharing_::2999", "re3data_____::r3d100000034"] +["fairsharing_::3088", "re3data_____::r3d100012841"] +["fairsharing_::2851", "re3data_____::r3d100013154"] +["fairsharing_::1554", "re3data_____::r3d100012628"] +["fairsharing_::2485", "re3data_____::r3d100010257"] +["fairsharing_::1931", "re3data_____::r3d100010548"] +["fairsharing_::3246", "re3data_____::r3d100013365"] +["fairsharing_::3220", "re3data_____::r3d100013413"] +["fairsharing_::3211", "re3data_____::r3d100012278"] +["re3data_____::r3d100012265", "fairsharing_::1878"] +["fairsharing_::1750", "re3data_____::r3d100012354"] +["re3data_____::r3d100012435", "fairsharing_::2303"] +["fairsharing_::3164", "re3data_____::r3d100011206"] +["re3data_____::r3d100011551", "fairsharing_::3166"] +["re3data_____::r3d100011898", "fairsharing_::3080"] +["fairsharing_::3332", "re3data_____::r3d100011394"] +["fairsharing_::2188", "re3data_____::r3d100012840"] +["fairsharing_::3158", "re3data_____::r3d100012554"] +["fairsharing_::2251", "re3data_____::r3d100011840"] +["re3data_____::r3d100013165", "fairsharing_::3092"] +["re3data_____::r3d100010213", "fairsharing_::1562"] +["re3data_____::r3d100010454", "fairsharing_::3118"] +["re3data_____::r3d100010985", "fairsharing_::1929"] +["fairsharing_::2372", "re3data_____::r3d100010101"] +["fairsharing_::2161", "re3data_____::r3d100010134"] +["fairsharing_::2506", "re3data_____::r3d100011038"] +["re3data_____::r3d100012701", "fairsharing_::2511"] +["fairsharing_::3330", "re3data_____::r3d100013217"] +["re3data_____::r3d100012717", "fairsharing_::3082"] +["re3data_____::r3d100012418", "fairsharing_::3046"] +["re3data_____::r3d100011543", "fairsharing_::3103"] +["fairsharing_::2549", "re3data_____::r3d100010215"] +["re3data_____::r3d100012834", "fairsharing_::3143"] +["fairsharing_::3172", "re3data_____::r3d100011869"] +["fairsharing_::2939", "re3data_____::r3d100010696"] +["fairsharing_::3201", "re3data_____::r3d100011782"] +["re3data_____::r3d100011326", "fairsharing_::3213"] +["re3data_____::r3d100010259", "fairsharing_::2252"] +["fairsharing_::2046", "re3data_____::r3d100010551"] +["re3data_____::r3d100013260", "fairsharing_::3218"] +["re3data_____::r3d100012080", "fairsharing_::3265"] +["fairsharing_::2926", "re3data_____::r3d100013300"] +["fairsharing_::3230", "re3data_____::r3d100011699"] +["re3data_____::r3d100010186", "fairsharing_::2409"] +["fairsharing_::3272", "re3data_____::r3d100010165"] +["fairsharing_::2890", "re3data_____::r3d100012225"] +["re3data_____::r3d100010144", "fairsharing_::3120"] +["fairsharing_::2452", "re3data_____::r3d100010051"] +["re3data_____::r3d100011288", "fairsharing_::3099"] +["re3data_____::r3d100011552", "fairsharing_::3000"] +["re3data_____::r3d100011793", "fairsharing_::2800"] +["re3data_____::r3d100011048", "fairsharing_::2813"] +["re3data_____::r3d100011391", "fairsharing_::3264"] +["re3data_____::r3d100011137", "fairsharing_::2181"] +["fairsharing_::2978", "re3data_____::r3d100010347"] +["fairsharing_::2513", "re3data_____::r3d100011948"] +["re3data_____::r3d100010735", "fairsharing_::3233"] +["fairsharing_::3084", "re3data_____::r3d100012909"] +["re3data_____::r3d100010520", "fairsharing_::3130"] +["re3data_____::r3d100012622", "fairsharing_::3232"] +["re3data_____::r3d100012692", "fairsharing_::3027"] +["re3data_____::r3d100010143", "fairsharing_::3135"] +["re3data_____::r3d100012368", "fairsharing_::2325"] +["re3data_____::r3d100011549", "fairsharing_::3238"] +["fairsharing_::3212", "re3data_____::r3d100011843"] +["re3data_____::r3d100010068", "fairsharing_::3068"] +["re3data_____::r3d100010699", "fairsharing_::3242"] +["re3data_____::r3d100010483", "fairsharing_::3075"] +["fairsharing_::3077", "re3data_____::r3d100012504"] +["fairsharing_::2553", "re3data_____::r3d100012500"] +["re3data_____::r3d100012269", "fairsharing_::2554"] +["re3data_____::r3d100012586", "fairsharing_::2650"] +["fairsharing_::3036", "re3data_____::r3d100011659"] +["re3data_____::r3d100012403", "fairsharing_::3090"] +["re3data_____::r3d100012335", "fairsharing_::3065"] +["re3data_____::r3d100013680", "fairsharing_::2529"] +["fairsharing_::3094", "re3data_____::r3d100010405"] +["fairsharing_::3267", "re3data_____::r3d100011135"] +["fairsharing_::3147", "re3data_____::r3d100012574"] +["re3data_____::r3d100010418", "fairsharing_::2541"] +["re3data_____::r3d100013238", "fairsharing_::2328"] +["fairsharing_::2025", "re3data_____::r3d100012837"] +["fairsharing_::3205", "re3data_____::r3d100012145"] +["re3data_____::r3d100013193", "fairsharing_::2942"] +["fairsharing_::2463", "re3data_____::r3d100011651"] +["re3data_____::r3d100011723", "fairsharing_::3107"] +["fairsharing_::2125", "re3data_____::r3d100010478"] +["fairsharing_::3302", "re3data_____::r3d100012553"] +["re3data_____::r3d100010114", "fairsharing_::3228"] +["re3data_____::r3d100010276", "fairsharing_::1953"] +["re3data_____::r3d100013313", "fairsharing_::2936"] +["fairsharing_::3193", "re3data_____::r3d100011797"] +["re3data_____::r3d100010631", "fairsharing_::2427"] +["fairsharing_::3300", "re3data_____::r3d100013668"] +["fairsharing_::2811", "re3data_____::r3d100012490"] +["fairsharing_::3059", "re3data_____::r3d100010505"] +["re3data_____::r3d100010245", "fairsharing_::2880"] +["fairsharing_::2503", "re3data_____::r3d100012693"] +["re3data_____::r3d100012621", "fairsharing_::3231"] +["re3data_____::r3d100012041", "fairsharing_::2804"] +["fairsharing_::3162", "re3data_____::r3d100010917"] +["fairsharing_::2584", "re3data_____::r3d100011890"] +["fairsharing_::2362", "re3data_____::r3d100011049"] +["re3data_____::r3d100013272", "fairsharing_::3243"] +["fairsharing_::3014", "re3data_____::r3d100010376"] +["re3data_____::r3d100010747", "fairsharing_::2145"] +["fairsharing_::2725", "re3data_____::r3d100012561"] +["fairsharing_::3168", "re3data_____::r3d100011128"] +["fairsharing_::2501", "re3data_____::r3d100011583"] +["re3data_____::r3d100011718", "fairsharing_::2436"] +["re3data_____::r3d100013294", "fairsharing_::2935"] +["re3data_____::r3d100010801", "fairsharing_::2698"] +["fairsharing_::3007", "re3data_____::r3d100011177"] +["re3data_____::r3d100010996", "fairsharing_::3141"] +["re3data_____::r3d100011191", "fairsharing_::3142"] +["fairsharing_::3052", "re3data_____::r3d100010109"] +["fairsharing_::3066", "re3data_____::r3d100012336"] +["fairsharing_::2277", "re3data_____::r3d100013051"] +["fairsharing_::2821", "re3data_____::r3d100000019"] +["fairsharing_::2932", "re3data_____::r3d100013311"] +["re3data_____::r3d100010226", "fairsharing_::2974"] +["re3data_____::r3d100010728", "fairsharing_::2976"] +["re3data_____::r3d100011468", "fairsharing_::3150"] +["fairsharing_::3110", "re3data_____::r3d100012470"] +["re3data_____::r3d100012863", "fairsharing_::2664"] +["fairsharing_::2502", "re3data_____::r3d100010230"] +["fairsharing_::2993", "re3data_____::r3d100010942"] +["re3data_____::r3d100010196", "fairsharing_::2954"] +["re3data_____::r3d100012915", "fairsharing_::2986"] +["fairsharing_::2996", "re3data_____::r3d100011030"] +["fairsharing_::2994", "re3data_____::r3d100010963"] +["re3data_____::r3d100012503", "fairsharing_::3163"] +["re3data_____::r3d100012593", "fairsharing_::2563"] +["fairsharing_::3123", "re3data_____::r3d100010210"] +["re3data_____::r3d100011131", "fairsharing_::3031"] +["re3data_____::r3d100011680", "fairsharing_::3032"] +["re3data_____::r3d100010256", "fairsharing_::2486"] +["fairsharing_::2793", "re3data_____::r3d100012463"] +["re3data_____::r3d100012557", "fairsharing_::3079"] +["fairsharing_::3190", "re3data_____::r3d100010121"] +["re3data_____::r3d100012388", "fairsharing_::2759"] +["fairsharing_::1641", "re3data_____::r3d100011330"] +["fairsharing_::3062", "re3data_____::r3d100011958"] +["re3data_____::r3d100010157", "fairsharing_::3041"] +["re3data_____::r3d100011525", "fairsharing_::3249"] +["fairsharing_::3133", "re3data_____::r3d100011957"] +["re3data_____::r3d100010788", "fairsharing_::1996"] +["re3data_____::r3d100012322", "opendoar____::69", "roar________::477", "fairsharing_::2872"] +["fairsharing_::3069", "re3data_____::r3d100010177"] +["fairsharing_::2876", "re3data_____::r3d100013199"] +["fairsharing_::2014", "re3data_____::r3d100012827"] +["fairsharing_::2928", "re3data_____::r3d100013307"] +["re3data_____::r3d100010625", "fairsharing_::3263"] +["fairsharing_::1945", "re3data_____::r3d100010931"] +["fairsharing_::1589", "re3data_____::r3d100010626"] +["fairsharing_::3567", "re3data_____::r3d100012181"] +["fairsharing_::2448", "re3data_____::r3d100011904"] +["fairsharing_::1738", "re3data_____::r3d100010741"] +["fairsharing_::3186", "re3data_____::r3d100012123"] +["re3data_____::r3d100013187", "fairsharing_::2743"] +["re3data_____::r3d100010803", "fairsharing_::1853"] +["fairsharing_::2533", "re3data_____::r3d100012690"] +["fairsharing_::2437", "re3data_____::r3d100010655"] +["re3data_____::r3d100012755", "fairsharing_::1928"] +["re3data_____::r3d100010648", "fairsharing_::1969"] +["fairsharing_::1961", "re3data_____::r3d100010574"] +["fairsharing_::2265", "re3data_____::r3d100013331"] +["re3data_____::r3d100010129", "fairsharing_::1989"] +["re3data_____::r3d100013302", "fairsharing_::2271"] +["re3data_____::r3d100012575", "fairsharing_::2049"] +["re3data_____::r3d100010555", "fairsharing_::2057"] +["fairsharing_::2065", "re3data_____::r3d100011559"] +["fairsharing_::2671", "re3data_____::r3d100012858"] +["re3data_____::r3d100010924", "fairsharing_::2148"] +["re3data_____::r3d100011470", "fairsharing_::3151"] +["fairsharing_::2195", "re3data_____::r3d100011876"] +["re3data_____::r3d100011173", "fairsharing_::2256"] +["re3data_____::r3d100011601", "fairsharing_::2209"] +["fairsharing_::2257", "re3data_____::r3d100010469"] +["fairsharing_::2737", "re3data_____::r3d100010180"] +["re3data_____::r3d100011868", "fairsharing_::2453"] +["re3data_____::r3d100013433", "fairsharing_::3284"] +["re3data_____::r3d100013052", "fairsharing_::2282"] +["fairsharing_::2295", "re3data_____::r3d100011086"] +["re3data_____::r3d100010730", "fairsharing_::2376"] +["fairsharing_::2404", "re3data_____::r3d100011199"] +["re3data_____::r3d100011197", "fairsharing_::2386"] +["re3data_____::r3d100011195", "fairsharing_::2402"] +["fairsharing_::2405", "re3data_____::r3d100011196"] +["re3data_____::r3d100010189", "fairsharing_::2410"] +["fairsharing_::2434", "re3data_____::r3d100010120"] +["fairsharing_::3104", "re3data_____::r3d100012835"] +["re3data_____::r3d100012548", "fairsharing_::3078"] +["re3data_____::r3d100011758", "fairsharing_::2431"] +["re3data_____::r3d100010199", "fairsharing_::2446"] +["re3data_____::r3d100010914", "fairsharing_::2496"] +["fairsharing_::2537", "re3data_____::r3d100010216"] +["fairsharing_::3259", "re3data_____::r3d100010660"] +["re3data_____::r3d100013591", "fairsharing_::3339"] +["re3data_____::r3d100010748", "fairsharing_::2769"] +["fairsharing_::2760", "re3data_____::r3d100012316"] +["re3data_____::r3d100012910", "fairsharing_::2822"] +["re3data_____::r3d100010937", "fairsharing_::2827"] +["re3data_____::r3d100000005", "fairsharing_::2864"] +["fairsharing_::2955", "re3data_____::r3d100012538"] +["re3data_____::r3d100010159", "fairsharing_::3024"] +["fairsharing_::3081", "re3data_____::r3d100012682"] +["re3data_____::r3d100010831", "fairsharing_::3091"] +["re3data_____::r3d100013429", "fairsharing_::3117"] +["fairsharing_::3262", "re3data_____::r3d100013343"] +["fairsharing_::3208", "re3data_____::r3d100013361"] +["fairsharing_::3328", "re3data_____::r3d100013351"] +["re3data_____::r3d100013503", "fairsharing_::3299"] +["re3data_____::r3d100010620", "fairsharing_::3327"] +["fairsharing_::3333", "re3data_____::r3d100013271"] +["re3data_____::r3d100013510", "fairsharing_::3335"] +["fairsharing_::2152", "re3data_____::r3d100011554"] +["re3data_____::r3d100010901", "fairsharing_::1868"] +["re3data_____::r3d100013330", "fairsharing_::2210"] +["re3data_____::r3d100010780", "fairsharing_::1971"] +["fairsharing_::2507", "re3data_____::r3d100012627"] +["fairsharing_::2445", "re3data_____::r3d100010192"] +["fairsharing_::3321", "re3data_____::r3d100013648"] +["re3data_____::r3d100011147", "fairsharing_::2601"] +["fairsharing_::2015", "re3data_____::r3d100011515"] +["re3data_____::r3d100000037", "fairsharing_::2435"] +["re3data_____::r3d100010081", "fairsharing_::2497"] +["fairsharing_::2505", "re3data_____::r3d100010214"] +["re3data_____::r3d100011104", "fairsharing_::2207"] +["fairsharing_::2010", "re3data_____::r3d100010834"] +["fairsharing_::2454", "re3data_____::r3d100010255"] +["re3data_____::r3d100011562", "fairsharing_::2159"] +["re3data_____::r3d100012329", "fairsharing_::2283"] +["re3data_____::r3d100010714", "fairsharing_::2500"] +["re3data_____::r3d100010106", "fairsharing_::2019"] +["fairsharing_::1978", "re3data_____::r3d100010775"] +["re3data_____::r3d100012732", "fairsharing_::2492"] +["fairsharing_::2968", "re3data_____::r3d100013358"] +["re3data_____::r3d100010377", "fairsharing_::2200"] +["fairsharing_::2214", "re3data_____::r3d100012481"] +["re3data_____::r3d100012273", "fairsharing_::2607"] +["re3data_____::r3d100013312", "fairsharing_::2961"] +["fairsharing_::2494", "re3data_____::r3d100000038"] +["re3data_____::r3d100012862", "fairsharing_::1730"] +["re3data_____::r3d100010243", "fairsharing_::1651"] +["fairsharing_::1885", "re3data_____::r3d100011479"] +["fairsharing_::2923", "re3data_____::r3d100013268"] +["re3data_____::r3d100012002", "fairsharing_::2885"] +["fairsharing_::1680", "re3data_____::r3d100011294"] +["fairsharing_::2917", "re3data_____::r3d100013298"] +["re3data_____::r3d100012380", "fairsharing_::3308"] +["fairsharing_::1927", "re3data_____::r3d100010889"] +["fairsharing_::2843", "re3data_____::r3d100011907"] +["re3data_____::r3d100011005", "fairsharing_::2930"] +["fairsharing_::1726", "re3data_____::r3d100011558"] +["fairsharing_::2972", "re3data_____::r3d100010141"] +["fairsharing_::3003", "re3data_____::r3d100011469"] +["re3data_____::r3d100012629", "fairsharing_::2082"] +["re3data_____::r3d100011648", "fairsharing_::3219"] +["fairsharing_::2075", "re3data_____::r3d100011690"] +["re3data_____::r3d100011527", "fairsharing_::1888"] +["fairsharing_::1892", "re3data_____::r3d100011795"] +["fairsharing_::1762", "re3data_____::r3d100010619"] +["re3data_____::r3d100012733", "fairsharing_::1700"] +["re3data_____::r3d100010085", "fairsharing_::3198"] +["fairsharing_::2424", "re3data_____::r3d100011538"] +["re3data_____::r3d100012362", "fairsharing_::2922"] +["re3data_____::r3d100013265", "fairsharing_::3303"] +["fairsharing_::2757", "re3data_____::r3d100011870"] +["fairsharing_::2110", "re3data_____::r3d100011316"] +["fairsharing_::3167", "re3data_____::r3d100010762"] +["re3data_____::r3d100010616", "fairsharing_::1789"] +["fairsharing_::2773", "re3data_____::r3d100013650"] +["re3data_____::r3d100011045", "fairsharing_::3004"] +["re3data_____::r3d100013339", "fairsharing_::3010"] +["re3data_____::r3d100010666", "fairsharing_::2115"] +["re3data_____::r3d100012136", "fairsharing_::1803"] +["fairsharing_::1967", "re3data_____::r3d100010653"] +["fairsharing_::2882", "re3data_____::r3d100010847"] +["fairsharing_::3654", "re3data_____::r3d100011696"] +["fairsharing_::2128", "re3data_____::r3d100010692"] +["re3data_____::r3d100011569", "fairsharing_::1882"] +["re3data_____::r3d100012263", "fairsharing_::2368"] +["re3data_____::r3d100013299", "fairsharing_::2956"] +["fairsharing_::3035", "re3data_____::r3d100011313"] +["re3data_____::r3d100010227", "fairsharing_::3125"] +["re3data_____::r3d100011241", "fairsharing_::2889"] +["re3data_____::r3d100010789", "fairsharing_::1846"] +["re3data_____::r3d100012723", "fairsharing_::1653"] +["re3data_____::r3d100010519", "fairsharing_::2991"] +["re3data_____::r3d100012421", "fairsharing_::2247"] +["re3data_____::r3d100011140", "fairsharing_::3268"] +["fairsharing_::2095", "re3data_____::r3d100012457"] +["fairsharing_::1707", "re3data_____::r3d100011089"] +["fairsharing_::1790", "re3data_____::r3d100010656"] +["re3data_____::r3d100012461", "fairsharing_::1884"] +["fairsharing_::3217", "re3data_____::r3d100012870"] +["re3data_____::r3d100012195", "fairsharing_::1691"] +["fairsharing_::3001", "re3data_____::r3d100010076"] +["re3data_____::r3d100010975", "fairsharing_::2121"] +["re3data_____::r3d100012836", "fairsharing_::2489"] +["fairsharing_::2263", "re3data_____::r3d100012647"] +["fairsharing_::3064", "re3data_____::r3d100012141"] +["re3data_____::r3d100012842", "fairsharing_::2151"] +["fairsharing_::1585", "re3data_____::r3d100011906"] +["re3data_____::r3d100011033", "fairsharing_::1964"] +["fairsharing_::2856", "re3data_____::r3d100013470"] +["re3data_____::r3d100010650", "fairsharing_::1983"] +["fairsharing_::2531", "re3data_____::r3d100013647"] +["re3data_____::r3d100011567", "fairsharing_::2268"] +["re3data_____::r3d100012971", "fairsharing_::3071"] +["fairsharing_::3050", "re3data_____::r3d100010530"] +["re3data_____::r3d100010299", "fairsharing_::2493"] +["fairsharing_::2378", "re3data_____::r3d100011037"] +["re3data_____::r3d100012169", "fairsharing_::1620"] +["fairsharing_::2047", "re3data_____::r3d100012783"] +["re3data_____::r3d100012315", "fairsharing_::2090"] +["re3data_____::r3d100010798", "fairsharing_::1854"] +["fairsharing_::1572", "re3data_____::r3d100010218"] +["fairsharing_::1818", "re3data_____::r3d100010585"] +["re3data_____::r3d100010553", "fairsharing_::1956"] +["fairsharing_::2267", "re3data_____::r3d100012381"] +["fairsharing_::2342", "re3data_____::r3d100011637"] +["fairsharing_::2987", "re3data_____::r3d100011858"] +["fairsharing_::2595", "re3data_____::r3d100010815"] +["fairsharing_::1699", "re3data_____::r3d100010424"] +["fairsharing_::3055", "re3data_____::r3d100013542"] +["fairsharing_::2085", "re3data_____::r3d100012189"] +["fairsharing_::2113", "re3data_____::r3d100010675"] +["re3data_____::r3d100010779", "fairsharing_::1981"] +["fairsharing_::1949", "re3data_____::r3d100010883"] +["re3data_____::r3d100013308", "fairsharing_::1933"] +["fairsharing_::1991", "re3data_____::r3d100010285"] +["fairsharing_::2818", "re3data_____::r3d100010338"] +["re3data_____::r3d100011344", "fairsharing_::3030"] +["re3data_____::r3d100012901", "fairsharing_::2105"] +["re3data_____::r3d100010550", "fairsharing_::1823"] +["re3data_____::r3d100013295", "fairsharing_::2679"] +["fairsharing_::1936", "re3data_____::r3d100012247"] +["re3data_____::r3d100012730", "fairsharing_::1642"] +["fairsharing_::1932", "re3data_____::r3d100011222"] +["fairsharing_::1866", "re3data_____::r3d100010861"] +["re3data_____::r3d100012747", "fairsharing_::2284"] +["re3data_____::r3d100013316", "fairsharing_::1698"] +["fairsharing_::2293", "re3data_____::r3d100010586"] +["re3data_____::r3d100012516", "fairsharing_::2216"] +["fairsharing_::1963", "re3data_____::r3d100010651"] +["re3data_____::r3d100012092", "fairsharing_::1802"] +["fairsharing_::1605", "re3data_____::r3d100010123"] +["fairsharing_::2042", "re3data_____::r3d100010205"] +["fairsharing_::1876", "re3data_____::r3d100012791"] +["re3data_____::r3d100012015", "fairsharing_::2123"] +["re3data_____::r3d100011373", "fairsharing_::2374"] +["re3data_____::r3d100011301", "fairsharing_::1807"] +["fairsharing_::1574", "re3data_____::r3d100011087"] +["fairsharing_::1796", "re3data_____::r3d100010197"] +["re3data_____::r3d100012075", "fairsharing_::3203"] +["re3data_____::r3d100010744", "fairsharing_::2585"] +["re3data_____::r3d100010072", "fairsharing_::3197"] +["re3data_____::r3d100011369", "fairsharing_::3002"] +["re3data_____::r3d100010565", "fairsharing_::2097"] +["re3data_____::r3d100013505", "fairsharing_::3296"] +["re3data_____::r3d100010891", "fairsharing_::1639"] +["fairsharing_::2508", "re3data_____::r3d100010734"] +["fairsharing_::2349", "re3data_____::r3d100011839"] +["fairsharing_::2420", "re3data_____::r3d100012585"] +["fairsharing_::2028", "re3data_____::r3d100010350"] +["fairsharing_::2021", "re3data_____::r3d100011561"] +["re3data_____::r3d100010857", "fairsharing_::2750"] +["fairsharing_::3222", "re3data_____::r3d100012894"] +["fairsharing_::2566", "re3data_____::r3d100011761"] +["fairsharing_::3087", "re3data_____::r3d100013049"] +["re3data_____::r3d100011871", "fairsharing_::1703"] +["re3data_____::r3d100011796", "fairsharing_::3043"] +["fairsharing_::1716", "re3data_____::r3d100011530"] +["fairsharing_::1879", "re3data_____::r3d100011557"] +["fairsharing_::2962", "re3data_____::r3d100013309"] +["re3data_____::r3d100010409", "fairsharing_::2543"] +["fairsharing_::2781", "re3data_____::r3d100012912"] +["re3data_____::r3d100010596", "fairsharing_::3047"] +["re3data_____::r3d100010776", "fairsharing_::1982"] +["re3data_____::r3d100012946", "fairsharing_::1895"] +["re3data_____::r3d100013155", "fairsharing_::3026"] +["re3data_____::r3d100010685", "fairsharing_::2223"] +["re3data_____::r3d100013018", "fairsharing_::3085"] +["fairsharing_::2348", "re3data_____::r3d100013293"] +["fairsharing_::2723", "re3data_____::r3d100011872"] +["fairsharing_::2429", "re3data_____::r3d100010110"] +["fairsharing_::1729", "re3data_____::r3d100011046"] +["re3data_____::r3d100010591", "fairsharing_::1582"] +["re3data_____::r3d100012725", "fairsharing_::2071"] +["re3data_____::r3d100010608", "fairsharing_::3239"] +["re3data_____::r3d100012321", "fairsharing_::1834"] +["fairsharing_::3028", "re3data_____::r3d100011011"] +["fairsharing_::1655", "re3data_____::r3d100012724"] +["fairsharing_::2839", "re3data_____::r3d100011272"] +["re3data_____::r3d100012517", "fairsharing_::1745"] +["fairsharing_::2365", "re3data_____::r3d100011166"] +["fairsharing_::2112", "re3data_____::r3d100012726"] +["fairsharing_::1913", "re3data_____::r3d100010248"] +["re3data_____::r3d100011286", "fairsharing_::2055"] +["fairsharing_::3144", "re3data_____::r3d100010078"] +["fairsharing_::2779", "re3data_____::r3d100013160"] +["fairsharing_::3139", "re3data_____::r3d100010311"] +["fairsharing_::2433", "re3data_____::r3d100010050"] +["re3data_____::r3d100012722", "fairsharing_::1626"] +["fairsharing_::2259", "re3data_____::r3d100012603"] +["fairsharing_::2953", "re3data_____::r3d100012186"] +["fairsharing_::3177", "re3data_____::r3d100010312"] +["re3data_____::r3d100011070", "fairsharing_::3005"] +["fairsharing_::1997", "re3data_____::r3d100010786"] +["re3data_____::r3d100010766", "fairsharing_::2980"] +["fairsharing_::3006", "re3data_____::r3d100011123"] +["fairsharing_::1886", "re3data_____::r3d100012898"] +["fairsharing_::3187", "re3data_____::r3d100012920"] +["fairsharing_::2849", "re3data_____::r3d100011713"] +["re3data_____::r3d100013148", "fairsharing_::2833"] +["re3data_____::r3d100010532", "fairsharing_::2992"] +["fairsharing_::1880", "re3data_____::r3d100012458"] +["re3data_____::r3d100012266", "fairsharing_::1883"] +["fairsharing_::2094", "re3data_____::r3d100011306"] +["re3data_____::r3d100013207", "fairsharing_::3152"] +["fairsharing_::3042", "re3data_____::r3d100010480"] +["re3data_____::r3d100010526", "fairsharing_::3132"] +["re3data_____::r3d100010539", "fairsharing_::1561"] +["re3data_____::r3d100010223", "fairsharing_::1588"] +["fairsharing_::1553", "re3data_____::r3d100011253"] +["re3data_____::r3d100010808", "fairsharing_::1661"] +["fairsharing_::1593", "re3data_____::r3d100010977"] +["fairsharing_::1914", "re3data_____::r3d100013315"] +["re3data_____::r3d100012339", "fairsharing_::1776"] +["re3data_____::r3d100011124", "fairsharing_::2419"] +["re3data_____::r3d100012850", "fairsharing_::1625"] +["re3data_____::r3d100010561", "fairsharing_::1904"] +["fairsharing_::2100", "re3data_____::r3d100010566"] +["fairsharing_::1644", "re3data_____::r3d100010419"] +["re3data_____::r3d100010624", "fairsharing_::1768"] +["re3data_____::r3d100011285", "fairsharing_::2084"] +["re3data_____::r3d100010617", "fairsharing_::1816"] +["re3data_____::r3d100010544", "fairsharing_::1844"] +["re3data_____::r3d100011751", "fairsharing_::3189"] +["re3data_____::r3d100012459", "fairsharing_::1881"] +["fairsharing_::2053", "re3data_____::r3d100010676"] +["fairsharing_::1930", "re3data_____::r3d100010978"] +["re3data_____::r3d100010107", "fairsharing_::1944"] +["fairsharing_::1954", "re3data_____::r3d100012731"] +["fairsharing_::2354", "re3data_____::r3d100012727"] +["fairsharing_::2909", "re3data_____::r3d100012214"] +["fairsharing_::2061", "re3data_____::r3d100010605"] +["fairsharing_::1988", "re3data_____::r3d100010784"] +["re3data_____::r3d100013060", "fairsharing_::2674"] +["fairsharing_::2669", "re3data_____::r3d100011323"] +["fairsharing_::2052", "re3data_____::r3d100012086"] +["re3data_____::r3d100011277", "fairsharing_::2054"] +["re3data_____::r3d100013314", "fairsharing_::2399"] +["fairsharing_::2663", "re3data_____::r3d100010346"] +["fairsharing_::2888", "re3data_____::r3d100010229"] +["fairsharing_::2286", "re3data_____::r3d100010564"] +["fairsharing_::2346", "re3data_____::r3d100012702"] +["fairsharing_::2371", "re3data_____::r3d100012018"] +["fairsharing_::2389", "re3data_____::r3d100013547"] +["re3data_____::r3d100000045", "fairsharing_::2414"] +["re3data_____::r3d100010525", "fairsharing_::2539"] +["fairsharing_::2591", "re3data_____::r3d100011496"] +["fairsharing_::2109", "re3data_____::r3d100010772"] +["re3data_____::r3d100012078", "fairsharing_::1841"] +["fairsharing_::1977", "re3data_____::r3d100010781"] +["re3data_____::r3d100010872", "fairsharing_::2438"] +["re3data_____::r3d100011905", "fairsharing_::2449"] +["fairsharing_::1893", "re3data_____::r3d100010672"] +["fairsharing_::1609", "re3data_____::r3d100010414"] +["fairsharing_::2287", "re3data_____::r3d100010416"] +["re3data_____::r3d100011861", "fairsharing_::2253"] +["fairsharing_::1837", "re3data_____::r3d100010856"] +["fairsharing_::2146", "re3data_____::r3d100013301"] +["re3data_____::r3d100012728", "fairsharing_::1706"] +["fairsharing_::2058", "re3data_____::r3d100012325"] +["re3data_____::r3d100013305", "fairsharing_::2941"] +["fairsharing_::2947", "re3data_____::r3d100011728"] +["fairsharing_::1875", "re3data_____::r3d100010604"] +["re3data_____::r3d100010142", "fairsharing_::2521"] +["re3data_____::r3d100010421", "fairsharing_::2106"] +["fairsharing_::2242", "re3data_____::r3d100012715"] +["fairsharing_::3320", "re3data_____::r3d100013646"] +["re3data_____::r3d100010882", "fairsharing_::3015"] +["re3data_____::r3d100011141", "fairsharing_::2809"] +["fairsharing_::1648", "re3data_____::r3d100012165"] +["re3data_____::r3d100000012", "fairsharing_::2512"] +["fairsharing_::1934", "re3data_____::r3d100010846"] +["fairsharing_::1649", "re3data_____::r3d100010185"] +["re3data_____::r3d100010417", "fairsharing_::1951"] +["fairsharing_::2087", "re3data_____::r3d100011331"] +["fairsharing_::1979", "re3data_____::r3d100011004"] +["fairsharing_::1599", "re3data_____::r3d100010671"] +["re3data_____::r3d100013263", "fairsharing_::2254"] +["re3data_____::r3d100013100", "fairsharing_::2798"] +["fairsharing_::2662", "re3data_____::r3d100011910"] +["re3data_____::r3d100010570", "fairsharing_::1760"] +["fairsharing_::2672", "re3data_____::r3d100012384"] +["fairsharing_::1887", "re3data_____::r3d100012753"] +["fairsharing_::2594", "re3data_____::r3d100012352"] +["fairsharing_::2518", "re3data_____::r3d100013408"] +["re3data_____::r3d100012314", "fairsharing_::2206"] +["fairsharing_::2334", "re3data_____::r3d100012756"] +["re3data_____::r3d100012351", "fairsharing_::2439"] +["re3data_____::r3d100012587", "fairsharing_::2683"] +["fairsharing_::2975", "re3data_____::r3d100013325"] +["fairsharing_::2098", "re3data_____::r3d100010563"] +["re3data_____::r3d100011936", "fairsharing_::2178"] +["fairsharing_::2997", "re3data_____::r3d100010490"] +["fairsharing_::2044", "re3data_____::r3d100010327"] +["fairsharing_::1697", "re3data_____::r3d100011931"] +["fairsharing_::2977", "re3data_____::r3d100010636"] +["fairsharing_::2246", "re3data_____::r3d100010593"] +["re3data_____::r3d100010552", "fairsharing_::1616"] +["re3data_____::r3d100012648", "fairsharing_::2812"] +["fairsharing_::2156", "re3data_____::r3d100010814"] +["re3data_____::r3d100011874", "fairsharing_::2655"] +["fairsharing_::2979", "re3data_____::r3d100013329"] +["fairsharing_::2597", "re3data_____::r3d100010493"] +["fairsharing_::2190", "re3data_____::r3d100011058"] +["re3data_____::r3d100010850", "fairsharing_::2734"] +["re3data_____::r3d100012355", "fairsharing_::2581"] +["re3data_____::r3d100011570", "fairsharing_::2189"] +["re3data_____::r3d100011478", "fairsharing_::1683"] +["re3data_____::r3d100010910", "fairsharing_::2031"] +["re3data_____::r3d100010795", "fairsharing_::1948"] +["fairsharing_::2390", "re3data_____::r3d100012928"] +["re3data_____::r3d100012917", "fairsharing_::2748"] +["fairsharing_::2442", "re3data_____::r3d100012396"] +["re3data_____::r3d100010420", "fairsharing_::2447"] +["re3data_____::r3d100010670", "fairsharing_::2089"] +["re3data_____::r3d100011521", "fairsharing_::2077"] +["re3data_____::r3d100010266", "fairsharing_::1955"] +["fairsharing_::2351", "re3data_____::r3d100012363"] +["re3data_____::r3d100012721", "fairsharing_::1693"] +["fairsharing_::3580", "re3data_____::r3d100011915"] +["re3data_____::r3d100012668", "fairsharing_::2573"] +["fairsharing_::2787", "re3data_____::r3d100010289"] +["re3data_____::r3d100010546", "fairsharing_::1869"] +["fairsharing_::1947", "re3data_____::r3d100010549"] +["fairsharing_::1715", "re3data_____::r3d100010797"] +["re3data_____::r3d100010859", "fairsharing_::1120"] +["re3data_____::r3d100010921", "fairsharing_::1940"] +["re3data_____::r3d100011516", "fairsharing_::1630"] +["fairsharing_::2269", "re3data_____::r3d100012297"] +["fairsharing_::1742", "re3data_____::r3d100012427"] +["fairsharing_::2555", "re3data_____::r3d100012537"] +["fairsharing_::2213", "re3data_____::r3d100012654"] +["re3data_____::r3d100012902", "fairsharing_::2037"] +["re3data_____::r3d100013578", "fairsharing_::1935"] +["fairsharing_::2068", "re3data_____::r3d100013715"] +["fairsharing_::1220", "re3data_____::r3d100010415"] +["fairsharing_::1091", "re3data_____::r3d100010422"] +["re3data_____::r3d100012120", "fairsharing_::362"] +["fairsharing_::1036", "re3data_____::r3d100012626"] +["roar________::6428", "re3data_____::r3d100012274", "opendoar____::1122"] +["roar________::437", "re3data_____::r3d100012399"] +["re3data_____::r3d100013273", "roar________::14208"] +["roar________::11342", "roar________::11366", "re3data_____::r3d100013438", "opendoar____::3351"] +["roar________::5212", "re3data_____::r3d100013537"] +["opendoar____::5533", "roar________::5572", "roar________::309", "re3data_____::r3d100013665", "opendoar____::1409"] +["re3data_____::r3d100013717", "roar________::2560", "opendoar____::6284"] +["re3data_____::r3d100013722", "roar________::5792"] +["opendoar____::186144", "re3data_____::r3d100010094"] +["re3data_____::r3d100011189", "opendoar____::7771"] +["re3data_____::r3d100013342", "opendoar____::4231"] +["opendoar____::9625", "re3data_____::r3d100013348"] +["roar________::10776", "opendoar____::3533", "re3data_____::r3d100013352"] +["roar________::10637", "re3data_____::r3d100013362", "opendoar____::1267", "roar________::272"] +["re3data_____::r3d100013382", "opendoar____::2587", "roar________::6088"] +["re3data_____::r3d100013394", "opendoar____::719", "roar________::5988"] +["roar________::13934", "opendoar____::3896", "re3data_____::r3d100013399"] +["roar________::9559", "opendoar____::1527", "re3data_____::r3d100013427", "roar________::1341"] +["re3data_____::r3d100013450", "roar________::10970", "opendoar____::4706"] +["opendoar____::1404", "re3data_____::r3d100013465"] +["opendoar____::4732", "re3data_____::r3d100013519"] +["opendoar____::4872", "re3data_____::r3d100013525"] +["opendoar____::10204", "re3data_____::r3d100013645"] +["opendoar____::166", "roar________::606"] +["opendoar____::165", "roar________::68"] +["opendoar____::1198", "roar________::941"] +["roar________::1045", "opendoar____::835"] +["roar________::390", "opendoar____::109"] +["opendoar____::330", "roar________::1383"] +["roar________::132", "opendoar____::1277"] +["roar________::1120", "opendoar____::1723"] +["opendoar____::1064", "roar________::992"] +["roar________::82", "roar________::10640", "roar________::3932", "opendoar____::15"] +["roar________::5693", "roar________::1007", "opendoar____::627"] +["roar________::668", "opendoar____::185"] +["opendoar____::348", "roar________::1423"] +["roar________::3496", "opendoar____::2186"] +["roar________::1142", "opendoar____::1415"] +["opendoar____::908", "roar________::1327"] +["roar________::346", "opendoar____::99"] +["roar________::399", "opendoar____::88"] +["roar________::1060", "opendoar____::1091"] +["opendoar____::2373", "roar________::3591", "roar________::4562"] +["opendoar____::1288", "roar________::1496"] +["roar________::699", "opendoar____::1112"] +["roar________::36", "opendoar____::1003"] +["opendoar____::709", "roar________::4729"] +["roar________::8784", "opendoar____::1385", "roar________::1164"] +["roar________::5531", "opendoar____::1232", "roar________::1488"] +["roar________::1531", "opendoar____::276"] +["opendoar____::464", "roar________::498", "roar________::4781"] +["roar________::1171", "opendoar____::605"] +["opendoar____::2447", "roar________::5051"] +["roar________::575", "opendoar____::548"] +["opendoar____::639", "roar________::69", "roar________::4887"] +["roar________::846", "opendoar____::657"] +["opendoar____::1948", "roar________::3168", "roar________::3163"] +["opendoar____::1127", "roar________::719"] +["roar________::1199", "opendoar____::644"] +["opendoar____::578", "roar________::5220"] +["roar________::1380", "opendoar____::1366"] +["opendoar____::540", "roar________::337"] +["opendoar____::1321", "roar________::891"] +["opendoar____::1367", "roar________::889"] +["opendoar____::569", "roar________::8721"] +["opendoar____::1617", "roar________::884", "roar________::2524"] +["opendoar____::947", "roar________::988"] +["opendoar____::225", "roar________::925"] +["roar________::348", "opendoar____::1459"] +["roar________::2620", "opendoar____::1295", "roar________::888"] +["roar________::784", "opendoar____::510", "roar________::5756", "roar________::7861"] +["roar________::631", "opendoar____::961"] +["roar________::750", "opendoar____::509"] +["opendoar____::586", "roar________::4969", "roar________::215"] +["opendoar____::1262", "roar________::1018"] +["roar________::2301", "opendoar____::363", "roar________::1432", "roar________::2330"] +["roar________::239", "opendoar____::72"] +["roar________::527", "opendoar____::1113"] +["opendoar____::134", "roar________::490"] +["roar________::918", "opendoar____::224"] +["roar________::294", "opendoar____::163"] +["opendoar____::150", "roar________::5519"] +["roar________::263", "opendoar____::95"] +["roar________::5091", "opendoar____::2459"] +["opendoar____::450", "roar________::1124"] +["roar________::6063", "opendoar____::1874"] +["opendoar____::567", "roar________::3416", "roar________::2838", "roar________::3522"] +["roar________::1256", "opendoar____::1787"] +["opendoar____::409", "roar________::1568", "roar________::1227"] +["opendoar____::1154", "roar________::333", "roar________::9104"] +["opendoar____::202", "roar________::711"] +["roar________::5554", "opendoar____::570", "roar________::6001", "roar________::212"] +["opendoar____::1449", "roar________::706"] +["roar________::452", "opendoar____::121"] +["opendoar____::544", "roar________::536"] +["opendoar____::834", "roar________::5440"] +["opendoar____::656", "roar________::5716"] +["roar________::70", "roar________::2347", "opendoar____::1400"] +["opendoar____::1012", "roar________::1387"] +["opendoar____::2359", "roar________::4455"] +["roar________::3971", "opendoar____::2184"] +["roar________::4412", "opendoar____::2366"] +["roar________::1311", "opendoar____::571"] +["roar________::463", "opendoar____::126"] +["opendoar____::100", "roar________::1435"] +["roar________::1378", "opendoar____::883"] +["roar________::4145", "opendoar____::2272", "roar________::5688"] +["roar________::1160", "opendoar____::284"] +["opendoar____::1004", "roar________::772"] +["roar________::764", "roar________::3312", "opendoar____::1281"] +["opendoar____::1523", "roar________::5206"] +["roar________::2417", "roar________::820", "opendoar____::1235"] +["opendoar____::469", "roar________::533"] +["roar________::914", "opendoar____::1530"] +["opendoar____::483", "roar________::617"] +["opendoar____::592", "roar________::307"] +["opendoar____::75", "roar________::5568", "roar________::279"] +["roar________::1065", "opendoar____::500"] +["roar________::343", "opendoar____::98"] +["opendoar____::2606", "roar________::6412"] +["opendoar____::18", "roar________::89"] +["roar________::306", "opendoar____::1151"] +["opendoar____::2033", "roar________::2511", "roar________::5306"] +["roar________::457", "roar________::5429", "opendoar____::460"] +["roar________::1500", "roar________::12480", "opendoar____::390"] +["roar________::356", "opendoar____::1608", "roar________::3361"] +["opendoar____::954", "roar________::5434", "roar________::1389"] +["roar________::326", "opendoar____::1152"] +["roar________::713", "opendoar____::636"] +["opendoar____::1623", "roar________::4440", "roar________::4683"] +["roar________::1132", "opendoar____::1700", "roar________::5204"] +["roar________::525", "opendoar____::127"] +["roar________::729", "opendoar____::194"] +["roar________::3123", "opendoar____::1910"] +["opendoar____::2006", "roar________::2950"] +["roar________::4721", "opendoar____::626"] +["roar________::1401", "roar________::2342", "opendoar____::336"] +["roar________::1479", "opendoar____::1456"] +["opendoar____::221", "roar________::880"] +["opendoar____::1582", "roar________::6888"] +["roar________::1170", "opendoar____::1558"] +["roar________::1247", "roar________::5421", "opendoar____::867"] +["roar________::712", "opendoar____::1658"] +["roar________::3396", "opendoar____::3322"] +["roar________::999", "opendoar____::250"] +["roar________::4090", "opendoar____::2230"] +["opendoar____::1569", "roar________::136"] +["opendoar____::305", "roar________::1240"] +["roar________::5087", "opendoar____::2471"] +["opendoar____::2309", "roar________::4385"] +["roar________::3268", "opendoar____::2269"] +["opendoar____::1970", "roar________::3176"] +["opendoar____::590", "roar________::347"] +["opendoar____::2958", "roar________::4698"] +["roar________::1317", "opendoar____::1099"] +["roar________::1404", "opendoar____::574"] +["roar________::4110", "opendoar____::2234"] +["opendoar____::346", "roar________::1419", "roar________::2526"] +["roar________::4167", "opendoar____::2259"] +["opendoar____::1708", "roar________::1475"] +["roar________::1217", "opendoar____::1242"] +["roar________::76", "opendoar____::978"] +["roar________::331", "opendoar____::924"] +["opendoar____::137", "roar________::4995", "roar________::500"] +["opendoar____::1499", "roar________::5188", "roar________::964"] +["opendoar____::2735", "roar________::6229", "roar________::9532"] +["roar________::345", "opendoar____::439"] +["opendoar____::93", "roar________::342"] +["roar________::4376", "opendoar____::2310"] +["opendoar____::1600", "roar________::303"] +["opendoar____::1876", "roar________::464"] +["opendoar____::76", "roar________::280", "roar________::5186"] +["opendoar____::438", "roar________::344"] +["roar________::466", "opendoar____::1610"] +["roar________::574", "opendoar____::159"] +["opendoar____::713", "roar________::984"] +["roar________::721", "opendoar____::1580"] +["opendoar____::901", "roar________::1425"] +["opendoar____::320", "roar________::1464"] +["roar________::970", "opendoar____::1358"] +["roar________::314", "opendoar____::89"] +["opendoar____::928", "roar________::1302"] +["roar________::373", "opendoar____::1186", "roar________::5586"] +["roar________::1273", "opendoar____::565", "roar________::4730"] +["opendoar____::882", "roar________::1386"] +["roar________::1108", "opendoar____::547"] +["opendoar____::1483", "roar________::2304"] +["opendoar____::2053", "roar________::5695", "roar________::5461", "roar________::3930", "roar________::3579"] +["roar________::183", "opendoar____::933"] +["opendoar____::91", "roar________::335"] +["roar________::443", "opendoar____::1148"] +["opendoar____::676", "roar________::324"] +["roar________::251", "opendoar____::68"] +["opendoar____::2107", "roar________::3713"] +["opendoar____::1301", "roar________::1534"] +["roar________::332", "opendoar____::96"] +["roar________::526", "opendoar____::468"] +["roar________::555", "opendoar____::153"] +["roar________::359", "roar________::4645", "roar________::5532", "opendoar____::123"] +["roar________::6416", "opendoar____::932"] +["roar________::252", "opendoar____::1454"] +["roar________::403", "opendoar____::1168"] +["roar________::3925", "roar________::5546", "opendoar____::2193"] +["roar________::3708", "opendoar____::2344"] +["opendoar____::2445", "roar________::5030"] +["roar________::358", "opendoar____::364"] +["opendoar____::2414", "roar________::3873"] +["opendoar____::2822", "roar________::4456"] +["opendoar____::984", "roar________::911"] +["opendoar____::1142", "roar________::51"] +["roar________::1209", "opendoar____::2166"] +["roar________::341", "opendoar____::1365"] +["roar________::4934", "roar________::3207", "opendoar____::1932"] +["roar________::2409", "roar________::951", "opendoar____::493"] +["opendoar____::1896", "roar________::3059"] +["opendoar____::9491", "roar________::3629"] +["roar________::120", "opendoar____::1304"] +["opendoar____::433", "roar________::336"] +["roar________::277", "roar________::5442", "roar________::16196", "opendoar____::410"] +["opendoar____::2303", "roar________::4274"] +["opendoar____::1960", "roar________::3253"] +["roar________::440", "opendoar____::498"] +["roar________::559", "opendoar____::1192"] +["roar________::3553", "roar________::1095", "opendoar____::1437"] +["opendoar____::2045", "roar________::1105"] +["roar________::3538", "opendoar____::2072"] +["opendoar____::2311", "roar________::4268"] +["opendoar____::2354", "roar________::4199"] +["opendoar____::235", "roar________::969"] +["opendoar____::658", "roar________::140"] +["roar________::3041", "opendoar____::1965"] +["roar________::768", "opendoar____::437"] +["roar________::1067", "opendoar____::1607"] +["opendoar____::880", "roar________::612"] +["roar________::19", "opendoar____::265", "roar________::2324"] +["roar________::1167", "opendoar____::1548"] +["roar________::822", "opendoar____::556"] +["opendoar____::1150", "roar________::736"] +["roar________::2808", "opendoar____::1827"] +["roar________::4124", "opendoar____::2248"] +["roar________::2416", "roar________::1004", "opendoar____::253"] +["roar________::780", "opendoar____::199"] +["roar________::5885", "roar________::3358", "opendoar____::2004"] +["opendoar____::1234", "roar________::1501", "roar________::5749"] +["roar________::725", "opendoar____::1508"] +["roar________::3304", "opendoar____::1985"] +["roar________::3322", "roar________::549", "opendoar____::151"] +["opendoar____::2517", "roar________::3817"] +["roar________::435", "opendoar____::966"] +["roar________::1198", "opendoar____::319"] +["opendoar____::2326", "roar________::4295"] +["opendoar____::1819", "roar________::2544"] +["opendoar____::1009", "roar________::4680", "roar________::1382"] +["roar________::3513", "opendoar____::2031"] +["opendoar____::2840", "roar________::2819"] +["roar________::2835", "opendoar____::1843"] +["roar________::1497", "opendoar____::1485", "roar________::5584"] +["opendoar____::473", "roar________::551"] +["opendoar____::116", "roar________::902"] +["roar________::3607", "opendoar____::2062"] +["roar________::5265", "roar________::380", "opendoar____::524"] +["opendoar____::2400", "roar________::4542"] +["opendoar____::1094", "roar________::523", "roar________::3714"] +["roar________::2918", "opendoar____::1855", "roar________::2928"] +["opendoar____::939", "roar________::885"] +["opendoar____::2766", "roar________::6884"] +["opendoar____::563", "roar________::531"] +["opendoar____::1571", "roar________::112"] +["roar________::448", "opendoar____::1645"] +["roar________::3841", "opendoar____::2160"] +["opendoar____::906", "roar________::5187"] +["roar________::2959", "opendoar____::2155"] +["opendoar____::432", "roar________::4677", "roar________::834"] +["roar________::327", "opendoar____::85"] +["opendoar____::453", "roar________::413"] +["roar________::2518", "opendoar____::1059"] +["roar________::274", "opendoar____::73"] +["opendoar____::1659", "roar________::1255"] +["roar________::26", "opendoar____::3276"] +["roar________::1259", "opendoar____::297"] +["roar________::3166", "opendoar____::1933"] +["roar________::2821", "opendoar____::1831"] +["opendoar____::28", "roar________::151"] +["opendoar____::1886", "roar________::3053"] +["opendoar____::462", "roar________::478", "roar________::5264"] +["roar________::636", "roar________::5156", "opendoar____::173"] +["opendoar____::1445", "roar________::106", "roar________::4687"] +["roar________::293", "roar________::3148", "opendoar____::959", "roar________::3419"] +["opendoar____::2645", "roar________::3390"] +["opendoar____::2109", "roar________::3540"] +["opendoar____::542", "roar________::1104"] +["roar________::292", "opendoar____::420"] +["opendoar____::396", "roar________::1517"] +["roar________::4637", "opendoar____::497", "roar________::1206"] +["roar________::364", "opendoar____::103"] +["opendoar____::179", "roar________::4726", "roar________::722"] +["roar________::5448", "opendoar____::631", "roar________::1008"] +["roar________::3539", "roar________::3663", "opendoar____::2087"] +["roar________::461", "opendoar____::124"] +["opendoar____::387", "roar________::35"] +["roar________::3126", "opendoar____::1443", "roar________::958", "roar________::2391"] +["opendoar____::1616", "roar________::2283"] +["roar________::1069", "opendoar____::1620"] +["roar________::1232", "opendoar____::1103"] +["roar________::1129", "opendoar____::1488"] +["roar________::1385", "opendoar____::1279"] +["opendoar____::2085", "roar________::5456", "roar________::3641"] +["roar________::3630", "opendoar____::2091"] +["opendoar____::2379", "roar________::2617"] +["roar________::1480", "opendoar____::2815"] +["opendoar____::1703", "roar________::1563"] +["opendoar____::2436", "roar________::213"] +["roar________::2870", "opendoar____::1852"] +["opendoar____::1598", "roar________::325"] +["roar________::1085", "roar________::4789", "opendoar____::1501"] +["roar________::814", "opendoar____::206"] +["opendoar____::1118", "roar________::5699", "roar________::1269"] +["opendoar____::2076", "roar________::3500"] +["opendoar____::2487", "roar________::5273"] +["opendoar____::576", "roar________::1434"] +["opendoar____::241", "roar________::978"] +["roar________::1156", "opendoar____::10", "roar________::66"] +["roar________::3804", "roar________::3385", "opendoar____::2149"] +["opendoar____::1026", "roar________::774"] +["opendoar____::2360", "roar________::4985", "roar________::4531"] +["roar________::4638", "opendoar____::66"] +["opendoar____::125", "roar________::462"] +["roar________::2501", "opendoar____::1735"] +["opendoar____::2074", "roar________::3644"] +["opendoar____::366", "roar________::1485"] +["opendoar____::2231", "roar________::4133", "roar________::2936"] +["roar________::3696", "opendoar____::3846"] +["opendoar____::975", "roar________::927"] +["roar________::1119", "opendoar____::613"] +["roar________::2379", "opendoar____::1710"] +["roar________::3309", "opendoar____::2137"] +["opendoar____::2215", "roar________::4029"] +["roar________::233", "opendoar____::65"] +["roar________::2837", "opendoar____::699"] +["opendoar____::478", "roar________::568"] +["roar________::3410", "opendoar____::1229"] +["roar________::1413", "opendoar____::1322"] +["opendoar____::797", "roar________::779"] +["opendoar____::14", "roar________::5001", "roar________::80"] +["opendoar____::24", "roar________::119"] +["opendoar____::1226", "roar________::936", "roar________::5445"] +["opendoar____::1534", "roar________::1347"] +["opendoar____::889", "roar________::2346", "roar________::98"] +["opendoar____::2638", "roar________::6589"] +["roar________::671", "opendoar____::1165", "roar________::4636"] +["opendoar____::484", "roar________::627"] +["opendoar____::1554", "roar________::1458"] +["opendoar____::1167", "roar________::743"] +["opendoar____::2845", "roar________::7414"] +["opendoar____::1891", "roar________::1059", "roar________::2943"] +["roar________::4932", "roar________::979", "opendoar____::242"] +["opendoar____::2568", "roar________::5959"] +["roar________::338", "opendoar____::434"] +["roar________::2991", "opendoar____::1869"] +["opendoar____::2550", "roar________::1306"] +["roar________::5705", "roar________::1421", "opendoar____::78"] +["opendoar____::1832", "roar________::1228"] +["opendoar____::1193", "roar________::923"] +["roar________::207", "opendoar____::54"] +["roar________::590", "opendoar____::1688"] +["opendoar____::2000", "roar________::2449"] +["roar________::1448", "opendoar____::3", "roar________::5509"] +["opendoar____::2082", "roar________::3639"] +["roar________::3938", "opendoar____::2973"] +["opendoar____::1535", "roar________::261"] +["opendoar____::223", "roar________::906", "roar________::3050"] +["opendoar____::1141", "roar________::481"] +["opendoar____::922", "roar________::3406"] +["opendoar____::11", "roar________::67"] +["roar________::1107", "opendoar____::1477"] +["roar________::361", "opendoar____::81"] +["opendoar____::1401", "roar________::465"] +["opendoar____::606", "roar________::143"] +["roar________::879", "opendoar____::489"] +["roar________::1452", "opendoar____::766"] +["roar________::674", "opendoar____::59"] +["roar________::3653", "opendoar____::2134"] +["opendoar____::195", "roar________::734"] +["opendoar____::70", "roar________::266"] +["opendoar____::941", "roar________::378"] +["roar________::305", "opendoar____::1599"] +["opendoar____::2605", "roar________::6335", "roar________::3915"] +["roar________::33", "opendoar____::957"] +["roar________::4913", "opendoar____::2577"] +["opendoar____::518", "roar________::1528", "roar________::5561"] +["opendoar____::341", "roar________::1407"] +["roar________::147", "opendoar____::953"] +["opendoar____::1247", "roar________::95"] +["opendoar____::1153", "roar________::351"] +["roar________::221", "roar________::5623", "opendoar____::61"] +["roar________::1403", "opendoar____::338"] +["opendoar____::2023", "roar________::3426"] +["opendoar____::1702", "roar________::547", "roar________::4962"] +["roar________::3109", "roar________::384", "opendoar____::581"] +["roar________::88", "opendoar____::1478"] +["opendoar____::115", "roar________::661"] +["opendoar____::1396", "roar________::7062", "roar________::528", "roar________::5564"] +["roar________::12785", "opendoar____::2452", "roar________::5449", "roar________::5072"] +["opendoar____::56", "roar________::4679", "roar________::371", "roar________::5360"] +["roar________::2388", "opendoar____::1213"] +["roar________::3555", "roar________::486", "opendoar____::1525"] +["opendoar____::386", "roar________::103"] +["roar________::2565", "opendoar____::2104"] +["opendoar____::805", "roar________::1101"] +["opendoar____::917", "roar________::423"] +["opendoar____::625", "roar________::942"] +["roar________::954", "opendoar____::232"] +["roar________::483", "opendoar____::1325"] +["roar________::2488", "opendoar____::1720"] +["roar________::3374", "opendoar____::2007"] +["opendoar____::1507", "roar________::1307"] +["roar________::13359", "opendoar____::601", "roar________::13385", "roar________::749"] +["roar________::746", "roar________::2392", "opendoar____::931"] +["opendoar____::2339", "roar________::5184", "roar________::4308"] +["roar________::1564", "opendoar____::1733"] +["opendoar____::2063", "roar________::2649", "roar________::6393"] +["opendoar____::2482", "roar________::5239"] +["roar________::200", "opendoar____::49"] +["roar________::664", "opendoar____::184", "roar________::4724"] +["roar________::6206", "opendoar____::2729"] +["roar________::1090", "opendoar____::1628"] +["roar________::1292", "opendoar____::1156"] +["opendoar____::1955", "roar________::3194"] +["opendoar____::249", "roar________::996"] +["roar________::3642", "opendoar____::2075"] +["opendoar____::2371", "roar________::58"] +["opendoar____::313", "roar________::815"] +["roar________::862", "opendoar____::217"] +["opendoar____::2563", "roar________::5870"] +["roar________::14150", "opendoar____::1528", "roar________::4983", "roar________::383"] +["roar________::39", "opendoar____::730"] +["roar________::4320", "opendoar____::2364"] +["opendoar____::968", "roar________::690"] +["opendoar____::496", "roar________::1162", "roar________::1161"] +["roar________::1426", "opendoar____::2"] +["opendoar____::1", "roar________::31"] +["roar________::152", "opendoar____::406"] +["roar________::10577", "roar________::3992", "roar________::1541", "roar________::5185", "opendoar____::1391"] +["roar________::281", "opendoar____::77"] +["roar________::201", "opendoar____::50"] +["opendoar____::431", "roar________::328"] +["opendoar____::1845", "roar________::2856", "roar________::3202", "roar________::2846"] +["opendoar____::2438", "roar________::4854"] +["roar________::1144", "opendoar____::1315"] +["roar________::1365", "opendoar____::1378"] +["opendoar____::283", "roar________::3420", "roar________::5127"] +["roar________::5533", "opendoar____::839"] +["roar________::1438", "opendoar____::353"] +["roar________::2839", "roar________::93", "opendoar____::403"] +["opendoar____::1650", "roar________::96"] +["opendoar____::2806", "roar________::6882"] +["roar________::2608", "opendoar____::1760", "roar________::5530", "roar________::4590"] +["roar________::5317", "roar________::5735", "opendoar____::2492"] +["roar________::11496", "opendoar____::1693"] +["roar________::3020", "opendoar____::1879", "roar________::3401", "roar________::2995", "roar________::5252"] +["opendoar____::1900", "roar________::3094"] +["roar________::2475", "opendoar____::1726"] +["roar________::1130", "opendoar____::1559"] +["opendoar____::1318", "roar________::985"] +["roar________::848", "opendoar____::1341"] +["opendoar____::133", "roar________::482"] +["roar________::417", "opendoar____::764"] +["roar________::2575", "opendoar____::1753"] +["roar________::708", "opendoar____::191"] +["roar________::4578", "roar________::5574", "opendoar____::2372"] +["opendoar____::1244", "roar________::232"] +["opendoar____::1844", "roar________::514"] +["opendoar____::233", "roar________::3257", "roar________::966"] +["opendoar____::2760", "roar________::1034"] +["roar________::1003", "opendoar____::252"] +["opendoar____::1875", "roar________::2849", "roar________::5258"] +["roar________::4744", "opendoar____::2412"] +["roar________::396", "opendoar____::985"] +["roar________::753", "opendoar____::1307"] +["roar________::3924", "opendoar____::2176", "roar________::5700"] +["roar________::5514", "roar________::3554", "opendoar____::2047"] +["roar________::5441", "opendoar____::2439"] +["opendoar____::2265", "roar________::4171"] +["roar________::3521", "opendoar____::2092"] +["opendoar____::2139", "roar________::3704"] +["roar________::2653", "roar________::495", "opendoar____::902"] +["opendoar____::1423", "roar________::1194"] +["roar________::125", "opendoar____::1205"] +["roar________::300", "opendoar____::323"] +["opendoar____::393", "roar________::801", "roar________::5003"] +["roar________::1363", "opendoar____::322"] +["roar________::1226", "opendoar____::289"] +["roar________::1406", "opendoar____::340"] +["roar________::1243", "opendoar____::501", "roar________::5553"] +["opendoar____::328", "roar________::1379"] +["roar________::633", "opendoar____::794"] +["opendoar____::227", "roar________::934"] +["roar________::933", "opendoar____::226"] +["roar________::6083", "opendoar____::2590"] +["opendoar____::486", "roar________::654"] +["roar________::3421", "opendoar____::550"] +["roar________::3081", "roar________::2735", "opendoar____::1794"] +["opendoar____::1663", "roar________::174"] +["roar________::2841", "opendoar____::83", "roar________::819"] +["roar________::1051", "opendoar____::270"] +["opendoar____::762", "roar________::402"] +["opendoar____::923", "roar________::924"] +["opendoar____::314", "roar________::1453"] +["opendoar____::1611", "roar________::137"] +["opendoar____::333", "roar________::1394"] +["roar________::2484", "opendoar____::1772", "roar________::12864"] +["opendoar____::913", "roar________::910"] +["roar________::800", "opendoar____::203"] +["opendoar____::182", "roar________::662"] +["roar________::1513", "roar________::2400", "opendoar____::471", "roar________::4719"] +["roar________::569", "opendoar____::546"] +["opendoar____::2237", "roar________::4122"] +["roar________::1263", "roar________::7938", "opendoar____::1813"] +["roar________::4672", "roar________::49", "opendoar____::19"] +["roar________::2454", "opendoar____::1241", "roar________::11424"] +["roar________::582", "opendoar____::162"] +["opendoar____::458", "roar________::444"] +["opendoar____::2285", "roar________::4207"] +["opendoar____::972", "roar________::1349", "roar________::4676"] +["roar________::224", "opendoar____::62"] +["roar________::92", "opendoar____::399"] +["opendoar____::131", "roar________::1446"] +["roar________::4571", "opendoar____::2367"] +["roar________::199", "opendoar____::48"] +["roar________::1507", "opendoar____::476"] +["opendoar____::1820", "roar________::2785"] +["roar________::688", "opendoar____::1463"] +["roar________::4998", "roar________::11182", "roar________::1241", "opendoar____::1627"] +["roar________::591", "opendoar____::164"] +["roar________::1442", "opendoar____::358"] +["opendoar____::1988", "roar________::3302"] +["roar________::4028", "opendoar____::2214"] +["roar________::629", "opendoar____::169"] +["roar________::205", "opendoar____::53"] +["roar________::5474", "roar________::64", "opendoar____::1080"] +["roar________::196", "opendoar____::46"] +["roar________::3854", "roar________::11200", "opendoar____::2526"] +["roar________::471", "opendoar____::400", "roar________::2425"] +["roar________::3505", "opendoar____::2431", "roar________::5778"] +["roar________::1414", "opendoar____::343"] +["opendoar____::212", "roar________::867"] +["opendoar____::1035", "roar________::9708"] +["opendoar____::2660", "roar________::6914"] +["roar________::6878", "opendoar____::2900"] +["opendoar____::2770", "roar________::6838"] +["roar________::6829", "opendoar____::2591"] +["opendoar____::1871", "roar________::6770", "roar________::2988"] +["opendoar____::2757", "roar________::6745"] +["opendoar____::2657", "roar________::6737"] +["roar________::6730", "opendoar____::2651"] +["opendoar____::2878", "roar________::6707"] +["roar________::6692", "opendoar____::2629"] +["opendoar____::2804", "roar________::6688", "roar________::7829"] +["roar________::6555", "opendoar____::2694"] +["opendoar____::2653", "roar________::6536"] +["roar________::6477", "opendoar____::2635"] +["roar________::6452", "opendoar____::2773"] +["opendoar____::2654", "roar________::6371"] +["opendoar____::2764", "roar________::6363"] +["opendoar____::2618", "roar________::6330"] +["roar________::6256", "opendoar____::2597"] +["roar________::6241", "opendoar____::2759"] +["opendoar____::2782", "roar________::6232"] +["roar________::5795", "opendoar____::2381", "roar________::6199"] +["roar________::6194", "opendoar____::3558"] +["opendoar____::2870", "roar________::6190"] +["roar________::6062", "opendoar____::2584"] +["opendoar____::2576", "roar________::6058"] +["opendoar____::2548", "roar________::6048"] +["roar________::5996", "opendoar____::3286"] +["roar________::5986", "roar________::3736", "opendoar____::2123"] +["roar________::5943", "opendoar____::2566"] +["roar________::5930", "opendoar____::2567"] +["opendoar____::2586", "roar________::5911"] +["opendoar____::2721", "roar________::5903"] +["roar________::11212", "roar________::5891", "opendoar____::2539"] +["opendoar____::1061", "roar________::5889", "roar________::1106"] +["roar________::5850", "opendoar____::2559"] +["roar________::5835", "opendoar____::3362"] +["opendoar____::2561", "roar________::5817"] +["opendoar____::2556", "roar________::5798"] +["roar________::5791", "opendoar____::2554"] +["roar________::5774", "opendoar____::2921"] +["opendoar____::2613", "roar________::5725"] +["opendoar____::1678", "roar________::5720", "roar________::1474"] +["opendoar____::1509", "roar________::126", "roar________::5711"] +["roar________::5041", "opendoar____::2465", "roar________::5157", "roar________::5687"] +["roar________::5685", "opendoar____::2382", "roar________::4624"] +["roar________::5673", "opendoar____::2767"] +["roar________::5668", "opendoar____::3006"] +["roar________::5644", "opendoar____::2693"] +["opendoar____::935", "roar________::1139", "roar________::5628"] +["opendoar____::3203", "roar________::5614"] +["roar________::5606", "opendoar____::2555"] +["roar________::5595", "opendoar____::1461"] +["roar________::5593", "opendoar____::2832"] +["roar________::3214", "roar________::5587", "roar________::3158", "opendoar____::1916"] +["roar________::5577", "opendoar____::1622"] +["roar________::5578", "opendoar____::2491"] +["opendoar____::1518", "roar________::5571", "roar________::789"] +["roar________::5567", "opendoar____::2497"] +["roar________::5548", "roar________::761", "opendoar____::1470"] +["opendoar____::1266", "roar________::5545"] +["opendoar____::1444", "roar________::5542"] +["roar________::5543", "opendoar____::1071"] +["opendoar____::904", "roar________::5539", "roar________::864"] +["opendoar____::1178", "roar________::426", "roar________::5538"] +["roar________::5521", "opendoar____::415"] +["roar________::5520", "opendoar____::1231", "roar________::4275"] +["roar________::5468", "opendoar____::651"] +["roar________::5463", "roar________::9305", "opendoar____::1915"] +["roar________::5452", "opendoar____::2423", "roar________::4751"] +["roar________::2897", "roar________::2862", "opendoar____::1848", "roar________::5433"] +["roar________::919", "roar________::5425", "opendoar____::1047"] +["roar________::412", "roar________::5423", "opendoar____::1583"] +["roar________::5402", "opendoar____::1484"] +["opendoar____::2508", "roar________::5272"] +["opendoar____::1465", "roar________::5269"] +["opendoar____::2490", "roar________::5234", "roar________::5237"] +["roar________::5236", "opendoar____::3270"] +["roar________::5221", "opendoar____::239", "roar________::976", "roar________::2328"] +["roar________::5219", "opendoar____::1283"] +["opendoar____::2478", "roar________::5197"] +["roar________::5196", "opendoar____::2939"] +["opendoar____::2464", "roar________::5158"] +["opendoar____::2469", "roar________::5149"] +["roar________::5122", "opendoar____::2479"] +["opendoar____::2454", "roar________::5068"] +["opendoar____::2342", "roar________::5004"] +["roar________::5006", "opendoar____::1539"] +["opendoar____::2286", "roar________::4997"] +["opendoar____::956", "roar________::4973"] +["roar________::4936", "opendoar____::1092"] +["opendoar____::2599", "roar________::6225", "roar________::7274"] +["roar________::4815", "opendoar____::2425"] +["roar________::4707", "opendoar____::2403", "roar________::4533"] +["roar________::4864", "opendoar____::2440"] +["opendoar____::2415", "roar________::4625"] +["opendoar____::3219", "roar________::4554"] +["roar________::4694", "opendoar____::2404"] +["roar________::4670", "opendoar____::2393"] +["roar________::4784", "opendoar____::2421"] +["opendoar____::2258", "roar________::4168"] +["opendoar____::2376", "roar________::4588"] +["roar________::4226", "opendoar____::2336"] +["opendoar____::2233", "roar________::4127"] +["roar________::5063", "opendoar____::2363"] +["roar________::4476", "opendoar____::2356"] +["roar________::4041", "opendoar____::3189"] +["roar________::4591", "opendoar____::2375"] +["opendoar____::2223", "roar________::3996"] +["opendoar____::2409", "roar________::5074"] +["opendoar____::2199", "roar________::3990"] +["roar________::5015", "opendoar____::7440"] +["roar________::4873", "opendoar____::2433"] +["opendoar____::2181", "roar________::3952"] +["roar________::3769", "opendoar____::2125"] +["roar________::4088", "opendoar____::2224", "roar________::4077"] +["opendoar____::2256", "roar________::4140"] +["roar________::3718", "opendoar____::2132"] +["roar________::3745", "opendoar____::2894"] +["roar________::5560", "roar________::3701", "opendoar____::2046"] +["roar________::4023", "opendoar____::2206"] +["roar________::3842", "opendoar____::2153"] +["roar________::4025", "opendoar____::2207"] +["roar________::3512", "opendoar____::2040", "roar________::3551"] +["opendoar____::2229", "roar________::4071"] +["roar________::3456", "opendoar____::2025"] +["opendoar____::2312", "roar________::4386"] +["roar________::3515", "opendoar____::2042"] +["roar________::4273", "opendoar____::2325"] +["opendoar____::2305", "roar________::4270"] +["opendoar____::2316", "roar________::4272"] +["roar________::3453", "opendoar____::2216"] +["roar________::3466", "opendoar____::2016"] +["opendoar____::2323", "roar________::4352"] +["roar________::3657", "opendoar____::2090"] +["opendoar____::2017", "roar________::3470"] +["roar________::3288", "opendoar____::2667"] +["roar________::4075", "roar________::3387", "opendoar____::2015"] +["opendoar____::2307", "roar________::4380"] +["roar________::3574", "opendoar____::2064"] +["roar________::3190", "opendoar____::1963"] +["roar________::3258", "opendoar____::1939", "roar________::15586", "roar________::12789"] +["opendoar____::907", "roar________::3467"] +["roar________::4566", "opendoar____::2505"] +["roar________::3054", "opendoar____::1888", "roar________::3089"] +["opendoar____::777", "roar________::3088"] +["opendoar____::1969", "roar________::3242"] +["roar________::3633", "opendoar____::2077"] +["roar________::3359", "opendoar____::2005"] +["opendoar____::2122", "roar________::3726"] +["roar________::2964", "opendoar____::2829"] +["roar________::4388", "opendoar____::2299"] +["roar________::3119", "roar________::10021", "opendoar____::1903"] +["opendoar____::2020", "roar________::3471"] +["roar________::4022", "opendoar____::2203"] +["opendoar____::2012", "roar________::3357"] +["roar________::2955", "opendoar____::1865"] +["opendoar____::1961", "roar________::3260"] +["roar________::2858", "opendoar____::1846"] +["roar________::2927", "opendoar____::1862", "roar________::3756"] +["opendoar____::2036", "roar________::3232"] +["opendoar____::1833", "roar________::2806"] +["opendoar____::1856", "roar________::2917"] +["roar________::3106", "opendoar____::1912", "roar________::3108"] +["opendoar____::2304", "roar________::4383"] +["roar________::3217", "opendoar____::1957"] +["opendoar____::1990", "roar________::3294"] +["opendoar____::1785", "roar________::2676"] +["opendoar____::1817", "roar________::2760"] +["roar________::2626", "opendoar____::1771"] +["roar________::2599", "opendoar____::1766"] +["roar________::4384", "opendoar____::2308"] +["roar________::2622", "opendoar____::1767"] +["roar________::2868", "opendoar____::1911"] +["roar________::2602", "opendoar____::1769"] +["roar________::4640", "opendoar____::1646"] +["roar________::2510", "opendoar____::1736"] +["opendoar____::2079", "roar________::3477"] +["opendoar____::1889", "roar________::2517"] +["opendoar____::2008", "roar________::3408"] +["roar________::3324", "opendoar____::1989"] +["roar________::3468", "opendoar____::2018"] +["opendoar____::1931", "roar________::3165"] +["opendoar____::1717", "roar________::2820", "roar________::2372"] +["roar________::2678", "opendoar____::2113"] +["opendoar____::1986", "roar________::3303"] +["opendoar____::1983", "roar________::3363", "roar________::3276"] +["opendoar____::2306", "roar________::4266"] +["opendoar____::2882", "roar________::3926"] +["roar________::2465", "opendoar____::942"] +["roar________::4262", "opendoar____::2298"] +["opendoar____::1716", "roar________::2466"] +["opendoar____::1664", "roar________::2471"] +["opendoar____::1859", "roar________::2844"] +["roar________::3469", "opendoar____::2019"] +["opendoar____::1692", "roar________::1557"] +["roar________::2748", "opendoar____::1816"] +["opendoar____::2165", "roar________::3862"] +["opendoar____::1918", "roar________::3146"] +["opendoar____::2435", "roar________::4390"] +["opendoar____::1641", "roar________::24"] +["opendoar____::1835", "roar________::2822"] +["opendoar____::3327", "roar________::3752"] +["opendoar____::1699", "roar________::959"] +["opendoar____::1765", "roar________::1319"] +["roar________::2486", "opendoar____::40"] +["opendoar____::2792", "roar________::518"] +["opendoar____::1883", "roar________::520"] +["roar________::1191", "opendoar____::1711"] +["opendoar____::1593", "roar________::616"] +["roar________::296", "roar________::4644", "opendoar____::2101"] +["opendoar____::1694", "roar________::4977", "roar________::684"] +["roar________::284", "opendoar____::1586"] +["opendoar____::1633", "roar________::550"] +["roar________::2703", "opendoar____::1788"] +["roar________::765", "opendoar____::1476"] +["roar________::3648", "opendoar____::2081"] +["opendoar____::1632", "roar________::1248"] +["opendoar____::1714", "roar________::2464"] +["opendoar____::2238", "roar________::2373"] +["opendoar____::1887", "roar________::3048"] +["opendoar____::1553", "roar________::2458"] +["roar________::777", "opendoar____::1545"] +["opendoar____::1701", "roar________::1335"] +["opendoar____::2194", "roar________::366"] +["opendoar____::1581", "roar________::37"] +["roar________::11100", "opendoar____::1698", "roar________::893"] +["opendoar____::2297", "roar________::4349"] +["opendoar____::1589", "roar________::4"] +["roar________::4031", "opendoar____::2204"] +["roar________::5536", "roar________::595", "opendoar____::1472"] +["roar________::3060", "opendoar____::1894"] +["opendoar____::1520", "roar________::1516"] +["roar________::1080", "opendoar____::1532"] +["roar________::117", "opendoar____::1533"] +["roar________::1514", "opendoar____::3615"] +["opendoar____::2235", "roar________::2951", "roar________::1510"] +["roar________::3169", "opendoar____::1934"] +["roar________::1471", "opendoar____::1514"] +["roar________::2317", "opendoar____::292"] +["roar________::3651", "opendoar____::1899", "roar________::3080"] +["roar________::1128", "opendoar____::2399"] +["roar________::379", "opendoar____::1475"] +["roar________::1153", "opendoar____::1505"] +["roar________::431", "opendoar____::1479"] +["roar________::653", "opendoar____::1564"] +["opendoar____::1588", "roar________::961"] +["roar________::968", "opendoar____::234"] +["opendoar____::1490", "roar________::253"] +["roar________::1315", "opendoar____::1524"] +["roar________::1375", "opendoar____::1686"] +["roar________::111", "opendoar____::1591"] +["roar________::3283", "opendoar____::1976"] +["roar________::2811", "opendoar____::1826"] +["roar________::895", "opendoar____::2745"] +["opendoar____::1457", "roar________::4639"] +["roar________::1089", "opendoar____::1502"] +["roar________::167", "opendoar____::1399"] +["roar________::552", "opendoar____::1278"] +["opendoar____::1551", "roar________::2279"] +["roar________::1098", "opendoar____::1504"] +["opendoar____::1389", "roar________::1333"] +["roar________::4574", "opendoar____::1500", "roar________::1066"] +["opendoar____::1384", "roar________::1370"] +["roar________::3085", "roar________::7017", "roar________::368", "opendoar____::1402"] +["opendoar____::1552", "roar________::94"] +["roar________::3506", "opendoar____::2043"] +["opendoar____::1374", "roar________::1313"] +["opendoar____::1418", "roar________::874"] +["roar________::816", "opendoar____::1549"] +["opendoar____::2348", "roar________::4465"] +["roar________::610", "opendoar____::1426"] +["opendoar____::3974", "roar________::135"] +["roar________::4057", "opendoar____::2219"] +["roar________::1399", "opendoar____::1111"] +["roar________::492", "opendoar____::1405"] +["opendoar____::1460", "roar________::173"] +["opendoar____::1309", "roar________::424"] +["opendoar____::1768", "roar________::2621"] +["opendoar____::1601", "roar________::1352"] +["roar________::1094", "opendoar____::1630"] +["roar________::508", "opendoar____::1430"] +["opendoar____::1447", "roar________::898"] +["roar________::3111", "roar________::539", "opendoar____::1271"] +["roar________::3643", "opendoar____::2083"] +["roar________::1074", "opendoar____::1550"] +["opendoar____::1636", "roar________::484"] +["roar________::1357", "opendoar____::1567"] +["roar________::1239", "opendoar____::1380"] +["roar________::1544", "opendoar____::1067"] +["opendoar____::1274", "roar________::430"] +["roar________::845", "roar________::3084", "opendoar____::1217"] +["opendoar____::2328", "roar________::4416"] +["roar________::1103", "roar________::3508", "opendoar____::938"] +["opendoar____::1940", "roar________::3039"] +["opendoar____::1264", "roar________::446"] +["roar________::1200", "roar________::9146", "opendoar____::1183"] +["opendoar____::1371", "roar________::145"] +["opendoar____::1251", "roar________::916"] +["roar________::931", "opendoar____::1448"] +["roar________::2990", "opendoar____::1867"] +["opendoar____::1376", "roar________::928"] +["roar________::1300", "opendoar____::1058"] +["opendoar____::1920", "roar________::3154"] +["roar________::724", "opendoar____::1036", "roar________::12023"] +["opendoar____::1293", "roar________::291"] +["roar________::905", "opendoar____::1537"] +["roar________::946", "opendoar____::1243"] +["roar________::1469", "opendoar____::1212"] +["opendoar____::1602", "roar________::38"] +["roar________::578", "opendoar____::1054"] +["opendoar____::1821", "roar________::2786"] +["roar________::997", "opendoar____::1162"] +["roar________::998", "opendoar____::1163"] +["roar________::3087", "opendoar____::1898", "roar________::5205"] +["roar________::110", "roar________::10867", "opendoar____::1088"] +["roar________::745", "opendoar____::1222"] +["opendoar____::1225", "roar________::1215"] +["opendoar____::1682", "roar________::2598"] +["opendoar____::427", "roar________::2973"] +["opendoar____::1709", "roar________::2393"] +["opendoar____::1285", "roar________::755"] +["opendoar____::1068", "roar________::872"] +["opendoar____::1022", "roar________::3969"] +["opendoar____::1194", "roar________::1033"] +["roar________::769", "opendoar____::1048"] +["opendoar____::1853", "roar________::1092"] +["roar________::4996", "opendoar____::990"] +["opendoar____::1428", "roar________::805"] +["roar________::175", "roar________::4717", "opendoar____::1140"] +["roar________::1102", "opendoar____::989"] +["opendoar____::1625", "roar________::1169"] +["roar________::920", "opendoar____::1002"] +["roar________::1320", "opendoar____::969"] +["opendoar____::1257", "roar________::548"] +["opendoar____::1228", "roar________::1512"] +["roar________::726", "opendoar____::974"] +["opendoar____::1177", "roar________::1520"] +["opendoar____::1062", "roar________::762"] +["roar________::404", "opendoar____::1056"] +["roar________::1196", "opendoar____::1077"] +["opendoar____::1040", "roar________::622"] +["roar________::618", "opendoar____::1146"] +["roar________::12605", "roar________::855", "opendoar____::973"] +["roar________::2415", "opendoar____::927", "roar________::597"] +["roar________::1358", "opendoar____::987"] +["roar________::626", "opendoar____::950"] +["opendoar____::1189", "roar________::3787"] +["roar________::1303", "opendoar____::1037"] +["opendoar____::3321", "roar________::3395"] +["opendoar____::912", "roar________::75"] +["roar________::3772", "opendoar____::2127", "roar________::15856"] +["roar________::2406", "opendoar____::875"] +["opendoar____::1481", "roar________::2326"] +["roar________::2946", "opendoar____::1864"] +["opendoar____::1119", "roar________::4990"] +["roar________::1011", "opendoar____::759"] +["roar________::376", "opendoar____::119"] +["roar________::467", "roar________::5569", "opendoar____::562"] +["opendoar____::4125", "roar________::1369"] +["opendoar____::763", "roar________::1291"] +["opendoar____::585", "roar________::797"] +["opendoar____::549", "roar________::25"] +["opendoar____::538", "roar________::15", "roar________::2329"] +["roar________::828", "opendoar____::128"] +["roar________::830", "opendoar____::514"] +["opendoar____::1126", "roar________::1366"] +["opendoar____::1069", "roar________::1367"] +["roar________::4170", "opendoar____::2266"] +["roar________::718", "opendoar____::949"] +["opendoar____::963", "roar________::4952", "roar________::353"] +["opendoar____::905", "roar________::790"] +["opendoar____::1841", "roar________::2830"] +["opendoar____::370", "roar________::1495"] +["roar________::901", "opendoar____::555"] +["opendoar____::871", "roar________::989"] +["opendoar____::117", "roar________::1498"] +["roar________::731", "opendoar____::508"] +["opendoar____::589", "roar________::320"] +["opendoar____::1097", "roar________::1218"] +["roar________::286", "opendoar____::909"] +["roar________::1397", "opendoar____::419"] +["roar________::2344", "roar________::6", "opendoar____::383"] +["opendoar____::566", "roar________::297"] +["opendoar____::258", "roar________::10", "roar________::2340"] +["opendoar____::259", "roar________::5", "roar________::2341"] +["roar________::1460", "opendoar____::456"] +["roar________::1249", "opendoar____::293"] +["opendoar____::850", "roar________::1242"] +["roar________::757", "opendoar____::197"] +["roar________::365", "opendoar____::1640"] +["roar________::1235", "opendoar____::349"] +["roar________::1532", "opendoar____::375"] +["roar________::2321", "opendoar____::261", "roar________::8"] +["roar________::302", "opendoar____::430"] +["roar________::159", "opendoar____::1125"] +["opendoar____::263", "roar________::2332", "roar________::12"] +["roar________::702", "opendoar____::595"] +["roar________::1055", "opendoar____::779"] +["roar________::354", "opendoar____::272"] +["roar________::3287", "roar________::7", "roar________::2334", "opendoar____::260"] +["opendoar____::157", "roar________::2424"] +["opendoar____::369", "roar________::1491"] +["opendoar____::1814", "roar________::2742"] +["roar________::544", "opendoar____::149"] +["roar________::2322", "opendoar____::361", "roar________::17"] +["roar________::14", "roar________::2337", "opendoar____::264"] +["opendoar____::140", "roar________::513"] +["opendoar____::384", "roar________::20", "roar________::2327"] +["opendoar____::648", "roar________::1126"] +["roar________::1146", "opendoar____::1246"] +["roar________::1280", "opendoar____::298"] +["opendoar____::186", "roar________::670"] +["opendoar____::659", "roar________::1277"] +["opendoar____::174", "roar________::641"] +["opendoar____::256", "roar________::1032"] +["roar________::101", "opendoar____::79"] +["roar________::1431", "opendoar____::351"] +["roar________::1005", "opendoar____::254"] +["roar________::1551", "opendoar____::144"] +["roar________::1017", "opendoar____::531"] +["roar________::1252", "opendoar____::294"] +["roar________::1193", "opendoar____::1329"] +["opendoar____::64", "roar________::226"] +["opendoar____::481", "roar________::567"] +["opendoar____::397", "roar________::1412"] +["roar________::542", "opendoar____::148"] +["roar________::1373", "opendoar____::326"] +["opendoar____::2128", "roar________::3767"] +["opendoar____::465", "roar________::543"] +["opendoar____::359", "roar________::1443"] +["opendoar____::304", "roar________::1444"] +["roar________::1417", "opendoar____::575"] +["opendoar____::211", "roar________::837"] +["opendoar____::282", "roar________::1150"] +["roar________::645", "opendoar____::951"] +["opendoar____::650", "roar________::349"] +["opendoar____::661", "roar________::620"] +["opendoar____::286", "roar________::1174"] +["roar________::1147", "opendoar____::274", "roar________::13727"] +["opendoar____::537", "roar________::2331", "roar________::11"] +["opendoar____::1031", "roar________::2338"] +["roar________::9782", "opendoar____::965", "roar________::1540"] +["roar________::6313", "opendoar____::2750"] +["opendoar____::964", "roar________::747", "roar________::5681"] +["roar________::756", "opendoar____::1330", "roar________::5487"] +["roar________::5464", "roar________::181", "opendoar____::36"] +["roar________::5331", "opendoar____::2681"] +["opendoar____::2475", "roar________::5213"] +["roar________::3976", "roar________::5083", "opendoar____::2187", "roar________::5067"] +["roar________::5002", "opendoar____::2260"] +["roar________::4951", "opendoar____::2340"] +["roar________::4928", "opendoar____::2334"] +["roar________::4926", "opendoar____::2411"] +["roar________::4458", "opendoar____::2422"] +["opendoar____::2652", "roar________::4309"] +["opendoar____::2391", "roar________::4219"] +["opendoar____::296", "roar________::3840"] +["opendoar____::2111", "roar________::5189", "roar________::3615", "roar________::3766"] +["roar________::3951", "opendoar____::2180"] +["opendoar____::2178", "roar________::3899"] +["opendoar____::2205", "roar________::4033"] +["roar________::4387", "opendoar____::2301"] +["roar________::3833", "opendoar____::2172"] +["roar________::3341", "opendoar____::1994", "roar________::3931"] +["roar________::4467", "opendoar____::2346"] +["roar________::3366", "opendoar____::2030"] +["roar________::2570", "opendoar____::1755"] +["opendoar____::1756", "roar________::2530"] +["opendoar____::1842", "roar________::2854", "roar________::3375"] +["opendoar____::1822", "roar________::2757"] +["roar________::2285", "opendoar____::1784"] +["opendoar____::1904", "roar________::3124"] +["opendoar____::1754", "roar________::2596"] +["opendoar____::1880", "roar________::3018"] +["roar________::1468", "opendoar____::1503"] +["opendoar____::1382", "roar________::179"] +["roar________::4616", "opendoar____::1469", "roar________::288"] +["roar________::40", "opendoar____::1294"] +["opendoar____::1269", "roar________::2413"] +["roar________::793", "opendoar____::1253"] +["roar________::949", "opendoar____::1306"] +["roar________::321", "opendoar____::1106"] +["opendoar____::1275", "roar________::583"] +["opendoar____::2014", "roar________::3311"] +["opendoar____::1197", "roar________::792"] +["opendoar____::991", "roar________::1420"] +["opendoar____::886", "roar________::1133"] +["roar________::1361", "opendoar____::1393"] +["opendoar____::936", "roar________::1523"] +["opendoar____::1098", "roar________::264"] +["opendoar____::986", "roar________::12410", "roar________::1202"] +["opendoar____::952", "roar________::45"] +["opendoar____::1057", "roar________::1436"] +["roar________::967", "opendoar____::896"] +["roar________::73", "opendoar____::1261"] +["roar________::63", "opendoar____::7"] +["opendoar____::926", "roar________::3320"] +["roar________::4087", "opendoar____::642"] +["opendoar____::487", "roar________::2407"] +["roar________::4635", "roar________::2610", "opendoar____::1763"] +["opendoar____::306", "roar________::1337"] +["roar________::1030", "opendoar____::587"] +["roar________::4948", "roar________::1454", "opendoar____::317"] +["opendoar____::277", "roar________::1122"] +["roar________::2323", "roar________::13", "opendoar____::262"] +["roar________::1049", "opendoar____::268"] +["opendoar____::308", "roar________::11216"] +["opendoar____::5", "roar________::1392"] +["roar________::1135", "opendoar____::278"] +["roar________::1371", "opendoar____::324"] +["roar________::1353", "opendoar____::307"] +["roar________::6362", "opendoar____::3055"] +["opendoar____::1375", "roar________::6361", "roar________::1096"] +["opendoar____::2788", "roar________::6240"] +["opendoar____::2575", "roar________::5645"] +["opendoar____::1690", "roar________::5562"] +["roar________::5439", "opendoar____::2493"] +["roar________::5300", "opendoar____::2499"] +["opendoar____::2292", "roar________::4988"] +["opendoar____::2408", "roar________::4980"] +["roar________::4669", "opendoar____::2386"] +["opendoar____::2434", "roar________::4874"] +["opendoar____::1868", "roar________::2992", "roar________::4020"] +["opendoar____::1403", "roar________::3482"] +["roar________::3352", "opendoar____::2001"] +["roar________::3307", "opendoar____::2022"] +["opendoar____::1825", "roar________::2674"] +["roar________::4002", "roar________::4026", "opendoar____::2209"] +["roar________::2462", "opendoar____::1715"] +["roar________::3022", "opendoar____::1882"] +["opendoar____::2698", "roar________::2681"] +["roar________::2993", "opendoar____::1870"] +["roar________::56", "opendoar____::1689"] +["roar________::138", "opendoar____::1605"] +["opendoar____::1511", "roar________::4686", "roar________::220"] +["opendoar____::1164", "roar________::287"] +["roar________::3331", "opendoar____::388"] +["opendoar____::900", "roar________::178"] +["opendoar____::309", "roar________::1462"] +["opendoar____::30", "roar________::158"] +["opendoar____::229", "roar________::2701"] +["roar________::186", "opendoar____::38"] +["opendoar____::2924", "roar________::6936"] +["roar________::6475", "opendoar____::2633"] +["opendoar____::2793", "roar________::6425"] +["roar________::6031", "opendoar____::2573"] +["opendoar____::2377", "roar________::5642"] +["roar________::4589", "opendoar____::2378", "roar________::5559"] +["roar________::5415", "opendoar____::2504"] +["roar________::4987", "opendoar____::1299", "roar________::161"] +["opendoar____::2427", "roar________::4835"] +["opendoar____::2086", "roar________::3665"] +["opendoar____::1895", "roar________::3055"] +["opendoar____::1968", "roar________::3254", "roar________::3225"] +["opendoar____::1893", "roar________::3051"] +["roar________::5022", "opendoar____::1595"] +["roar________::2360", "opendoar____::1834"] +["opendoar____::1055", "roar________::876"] +["roar________::1504", "opendoar____::934"] +["roar________::350", "opendoar____::1458"] +["opendoar____::855", "roar________::1044"] +["opendoar____::1263", "roar________::447"] +["roar________::1461", "opendoar____::1100"] +["opendoar____::57", "roar________::3806"] +["roar________::987", "opendoar____::245"] +["opendoar____::2603", "roar________::6554"] +["roar________::15186", "roar________::5506", "roar________::1466", "opendoar____::914"] +["roar________::602", "roar________::2312", "opendoar____::1149", "roar________::5495"] +["opendoar____::523", "roar________::5466"] +["roar________::1481", "roar________::5453", "opendoar____::365"] +["roar________::4991", "opendoar____::2432"] +["opendoar____::2821", "roar________::4559"] +["roar________::3994", "opendoar____::2198"] +["opendoar____::1987", "roar________::3323"] +["roar________::2383", "opendoar____::1731"] +["opendoar____::1923", "roar________::3153"] +["opendoar____::2029", "roar________::2899"] +["opendoar____::1328", "roar________::752"] +["roar________::863", "opendoar____::1201"] +["opendoar____::213", "roar________::851"] +["opendoar____::362", "roar________::1424"] +["opendoar____::354", "roar________::1440"] +["roar________::5450", "opendoar____::945"] +["opendoar____::2271", "roar________::4105"] +["opendoar____::1634", "roar________::1229"] +["opendoar____::1906", "roar________::3114"] +["opendoar____::1560", "roar________::1127"] +["roar________::4945", "opendoar____::1619", "roar________::1088", "roar________::5529"] +["opendoar____::2514", "roar________::5632"] +["opendoar____::156", "roar________::5573"] +["opendoar____::2429", "roar________::4745"] +["opendoar____::2268", "roar________::4156"] +["opendoar____::1866", "roar________::2491"] +["opendoar____::1597", "roar________::330"] +["opendoar____::1292", "roar________::1393"] +["roar________::1524", "opendoar____::1407"] +["roar________::733", "opendoar____::1063"] +["opendoar____::1070", "roar________::168"] +["opendoar____::1258", "roar________::861"] +["opendoar____::1032", "roar________::658"] +["opendoar____::2917", "roar________::6071"] +["opendoar____::2522", "roar________::5952", "roar________::5697"] +["roar________::5904", "opendoar____::2564"] +["opendoar____::1604", "roar________::5535", "roar________::5987", "roar________::419"] +["roar________::16081", "roar________::15183", "roar________::3634", "roar________::5492", "opendoar____::2089"] +["roar________::3825", "opendoar____::2291"] +["opendoar____::1676", "roar________::990"] +["roar________::592", "opendoar____::758"] +["opendoar____::885", "roar________::1547"] +["opendoar____::147", "roar________::541"] +["roar________::1525", "opendoar____::373"] +["roar________::5576", "opendoar____::2502"] +["roar________::4003", "opendoar____::2202", "roar________::13005"] +["roar________::2818", "opendoar____::1326"] +["roar________::3911", "opendoar____::1510"] +["opendoar____::1280", "roar________::522"] +["opendoar____::1291", "roar________::1073"] +["opendoar____::1182", "roar________::704"] +["roar________::781", "opendoar____::916"] +["opendoar____::2636", "roar________::6306"] +["roar________::3773", "opendoar____::2130"] +["opendoar____::2121", "roar________::3754"] +["roar________::3052", "opendoar____::1890"] +["roar________::2272", "opendoar____::1683"] +["roar________::1428", "opendoar____::897"] +["opendoar____::852", "roar________::74"] +["roar________::3212", "opendoar____::1236"] +["roar________::5557", "roar________::766", "opendoar____::1649"] +["roar________::1409", "opendoar____::983"] +["roar________::1411", "opendoar____::520"] +["opendoar____::525", "roar________::873"] +["opendoar____::2179", "roar________::3929"] +["opendoar____::201", "roar________::786"] +["roar________::3683", "opendoar____::2099"] +["roar________::2405", "opendoar____::1707"] +["roar________::3967", "opendoar____::1749"] +["roar________::1519", "opendoar____::1411"] +["roar________::5550", "roar________::1019", "roar________::14050", "opendoar____::1441"] +["roar________::698", "opendoar____::1517"] +["opendoar____::579", "roar________::1099"] +["opendoar____::136", "roar________::497"] +["opendoar____::1573", "roar________::1254"] +["opendoar____::1406", "roar________::1086"] +["roar________::510", "opendoar____::467"] +["roar________::5512", "opendoar____::2494"] +["roar________::4921", "opendoar____::2257"] +["roar________::3007", "opendoar____::1176"] +["opendoar____::2135", "roar________::3230", "roar________::3986"] +["roar________::188", "opendoar____::39"] +["opendoar____::1675", "roar________::1376"] +["opendoar____::411", "roar________::204"] +["roar________::3684", "opendoar____::2105"] +["roar________::1546", "opendoar____::1368"] +["opendoar____::1925", "roar________::3151"] +["roar________::3210", "opendoar____::1941"] +["opendoar____::1224", "roar________::5773"] +["opendoar____::1629", "roar________::1257"] +["opendoar____::1730", "roar________::1511"] +["roar________::728", "roar________::727", "opendoar____::780"] +["opendoar____::300", "roar________::965"] +["roar________::5154", "opendoar____::2466"] +["roar________::1258", "opendoar____::583"] +["roar________::1287", "roar________::2402", "opendoar____::1240", "roar________::3256"] +["opendoar____::285", "roar________::1173"] +["opendoar____::504", "roar________::705"] +["opendoar____::1221", "roar________::760"] +["roar________::185", "opendoar____::407"] +["roar________::1013", "opendoar____::255"] +["opendoar____::1216", "roar________::748"] +["opendoar____::1161", "roar________::680"] +["roar________::195", "opendoar____::45"] +["roar________::5579", "opendoar____::1513", "roar________::907"] +["roar________::1494", "opendoar____::1195"] +["opendoar____::447", "roar________::389"] +["opendoar____::735", "roar________::1276"] +["opendoar____::47", "roar________::198"] +["opendoar____::405", "roar________::177"] +["opendoar____::1999", "roar________::640"] +["opendoar____::228", "roar________::935"] +["roar________::1427", "opendoar____::291"] +["roar________::6686", "opendoar____::2718"] +["opendoar____::42", "roar________::192"] +["roar________::5511", "opendoar____::2483", "roar________::8240", "roar________::5280"] +["opendoar____::1199", "roar________::1093"] +["roar________::2699", "opendoar____::1780"] +["opendoar____::1778", "roar________::2697"] +["opendoar____::1776", "roar________::2707"] +["opendoar____::1777", "roar________::2695"] +["roar________::142", "opendoar____::1653"] +["roar________::1533", "opendoar____::1516"] +["roar________::6228", "opendoar____::2610"] +["opendoar____::982", "roar________::505", "roar________::5558"] +["roar________::4946", "opendoar____::2293", "roar________::5181", "roar________::5544"] +["opendoar____::2185", "roar________::3975"] +["roar________::6724", "opendoar____::215"] +["opendoar____::2632", "roar________::6474"] +["roar________::6469", "opendoar____::2780"] +["opendoar____::2616", "roar________::6196"] +["roar________::1490", "opendoar____::355", "roar________::5983"] +["roar________::5698", "opendoar____::1108", "roar________::647"] +["opendoar____::1562", "roar________::692", "roar________::5540"] +["roar________::5500", "opendoar____::845"] +["roar________::858", "opendoar____::218", "roar________::5489"] +["opendoar____::2148", "roar________::3809"] +["opendoar____::2147", "roar________::3807"] +["opendoar____::2142", "roar________::3442"] +["roar________::3138", "roar________::3407", "opendoar____::1943"] +["opendoar____::1809", "roar________::2734"] +["opendoar____::1779", "roar________::2705"] +["roar________::2698", "roar________::2670", "opendoar____::1781"] +["opendoar____::738", "roar________::3281"] +["opendoar____::1538", "roar________::2412"] +["roar________::818", "opendoar____::1110", "roar________::4925"] +["roar________::228", "opendoar____::2141"] +["opendoar____::1462", "roar________::223"] +["roar________::1188", "opendoar____::737"] +["opendoar____::139", "roar________::504"] +["roar________::1040", "opendoar____::791"] +["opendoar____::266", "roar________::1041"] +["opendoar____::793", "roar________::8289", "roar________::1042"] +["roar________::983", "opendoar____::654"] +["opendoar____::236", "roar________::972"] +["roar________::980", "opendoar____::706"] +["opendoar____::240", "roar________::977"] +["roar________::372", "opendoar____::441"] +["roar________::1312", "opendoar____::718"] +["opendoar____::402", "roar________::87"] +["opendoar____::967", "roar________::1473"] +["opendoar____::171", "roar________::634"] +["roar________::1046", "opendoar____::267"] +["roar________::563", "opendoar____::843"] +["roar________::502", "opendoar____::611"] +["roar________::61", "opendoar____::629"] +["opendoar____::707", "roar________::1439"] +["roar________::956", "opendoar____::350"] +["opendoar____::52", "roar________::203"] +["opendoar____::344", "roar________::1415"] +["opendoar____::1184", "roar________::5513"] +["roar________::2422", "opendoar____::257"] +["opendoar____::477", "roar________::1508"] +["opendoar____::385", "roar________::219"] +["roar________::501", "roar________::5263", "opendoar____::138", "roar________::5422"] +["roar________::1278", "opendoar____::1471"] +["opendoar____::2358", "roar________::4549"] +["opendoar____::238", "roar________::975"] +["roar________::6900", "opendoar____::2980"] +["opendoar____::1847", "roar________::2850"] +["opendoar____::2088", "roar________::656"] +["opendoar____::2800", "roar________::6601"] +["opendoar____::2488", "roar________::5478"] +["roar________::3575", "opendoar____::2065"] +["opendoar____::1157", "roar________::360"] +["opendoar____::2579", "roar________::6069", "roar________::6014"] +["opendoar____::1752", "roar________::2576"] +["opendoar____::220", "roar________::878"] +["roar________::479", "opendoar____::997"] +["opendoar____::853", "roar________::214"] +["opendoar____::1971", "roar________::5522", "roar________::3226"] +["opendoar____::243", "roar________::982", "roar________::12856"] +["roar________::2457", "opendoar____::1718"] +["opendoar____::237", "roar________::973"] +["opendoar____::564", "roar________::1264"] +["roar________::202", "opendoar____::51"] +["roar________::11303", "opendoar____::3596"] +["opendoar____::1967", "roar________::5682", "roar________::6466"] +["roar________::4661", "opendoar____::715"] +["opendoar____::2405", "roar________::4757"] +["roar________::2551", "roar________::2421", "roar________::2784", "opendoar____::1696"] +["roar________::2894", "opendoar____::1857"] +["opendoar____::616", "roar________::1182"] +["opendoar____::621", "roar________::1187"] +["roar________::1181", "opendoar____::619"] +["opendoar____::1576", "roar________::1183"] +["roar________::1184", "opendoar____::1390"] +["roar________::838", "opendoar____::534"] +["opendoar____::618", "roar________::1177"] +["roar________::1175", "opendoar____::617"] +["opendoar____::615", "roar________::1186"] +["opendoar____::614", "roar________::1176"] +["opendoar____::622", "roar________::1178"] +["roar________::1179", "opendoar____::623"] +["roar________::129", "opendoar____::2704"] +["opendoar____::44", "roar________::194"] +["roar________::2587", "opendoar____::1902"] +["opendoar____::2688", "roar________::6891"] +["opendoar____::2401", "roar________::4602"] +["opendoar____::380", "roar________::1158"] +["roar________::6969", "opendoar____::2784"] +["roar________::4753", "opendoar____::2417"] +["opendoar____::2192", "roar________::3979"] +["roar________::2758", "opendoar____::1169"] +["opendoar____::1398", "roar________::604"] +["opendoar____::2100", "roar________::2580"] +["opendoar____::58", "roar________::1"] +["opendoar____::177", "roar________::605"] +["roar________::603", "opendoar____::80"] +["roar________::150", "opendoar____::1838"] +["opendoar____::1185", "roar________::5462"] +["roar________::4205", "opendoar____::2294"] +["opendoar____::1453", "roar________::2404"] +["roar________::1023", "opendoar____::918"] +["opendoar____::2557", "roar________::5915", "roar________::5840"] +["roar________::5752", "opendoar____::2542"] +["roar________::5718", "opendoar____::2245", "roar________::4121"] +["roar________::5692", "roar________::4130", "opendoar____::2243"] +["roar________::5690", "opendoar____::2094", "roar________::3662"] +["roar________::5683", "roar________::5497", "roar________::1552", "opendoar____::1158"] +["opendoar____::2520", "roar________::5657"] +["opendoar____::2250", "roar________::4132", "roar________::5621"] +["opendoar____::2227", "roar________::5585", "roar________::4089"] +["roar________::3609", "roar________::5582", "opendoar____::2068"] +["opendoar____::2159", "roar________::3839", "roar________::5583"] +["roar________::4027", "roar________::5565", "opendoar____::2212"] +["roar________::5556", "roar________::3534", "opendoar____::2044"] +["roar________::5549", "roar________::3664", "opendoar____::2093"] +["roar________::4271", "opendoar____::2318", "roar________::5503"] +["opendoar____::2210", "roar________::5475", "roar________::4021"] +["roar________::5432", "opendoar____::2211", "roar________::4030"] +["opendoar____::2254", "roar________::4128", "roar________::5256"] +["roar________::5131", "opendoar____::2462"] +["roar________::5132", "opendoar____::2455"] +["opendoar____::2264", "roar________::4165"] +["opendoar____::1917", "roar________::3130"] +["roar________::3612", "opendoar____::325"] +["opendoar____::2244", "roar________::4123"] +["opendoar____::2239", "roar________::4131"] +["opendoar____::2183", "roar________::3966"] +["roar________::3666", "opendoar____::2096"] +["opendoar____::2051", "roar________::3580"] +["opendoar____::2048", "roar________::3552"] +["roar________::3583", "opendoar____::2050"] +["roar________::3581", "opendoar____::2057"] +["opendoar____::2061", "roar________::3608"] +["opendoar____::2240", "roar________::4135"] +["roar________::3611", "opendoar____::2059"] +["roar________::3681", "opendoar____::2106"] +["opendoar____::273", "roar________::1053"] +["roar________::3606", "opendoar____::2060"] +["opendoar____::2056", "roar________::3582"] +["roar________::3079", "opendoar____::836"] +["roar________::4129", "opendoar____::2242"] +["opendoar____::2249", "roar________::4137"] +["roar________::4034", "opendoar____::2213"] +["roar________::3610", "opendoar____::2067"] +["opendoar____::2247", "roar________::778"] +["opendoar____::2084", "roar________::3649"] +["roar________::868", "opendoar____::517"] +["opendoar____::2545", "roar________::5746", "roar________::5779"] +["roar________::5570", "roar________::4126", "opendoar____::2246"] +["opendoar____::2058", "roar________::3578"] +["roar________::4134", "opendoar____::2251"] +["roar________::3577", "opendoar____::2054"] +["opendoar____::724", "roar________::4819"] +["opendoar____::25", "roar________::123"] +["roar________::5633", "opendoar____::2562"] +["opendoar____::1956", "roar________::3211"] +["opendoar____::368", "roar________::974"] +["roar________::1437", "opendoar____::352"] +["roar________::5124", "roar________::5460", "opendoar____::2461"] +["opendoar____::2052", "roar________::3576"] +["opendoar____::26", "roar________::130"] +["opendoar____::3948", "roar________::3391"] +["opendoar____::2118", "roar________::5447", "roar________::3707"] +["roar________::1560", "roar________::4968", "opendoar____::1660"] +["roar________::5609", "opendoar____::2855"] +["roar________::791", "opendoar____::511"] +["opendoar____::244", "roar________::981"] +["opendoar____::377", "roar________::1539", "roar________::5888"] +["roar________::11231", "opendoar____::2588", "roar________::6173"] +["opendoar____::2397", "roar________::4621", "roar________::5438"] +["roar________::5408", "opendoar____::2171"] +["opendoar____::1587", "roar________::5106"] +["roar________::4960", "opendoar____::2420"] +["opendoar____::2320", "roar________::4956"] +["roar________::2398", "opendoar____::279"] +["roar________::1091", "opendoar____::1621"] +["opendoar____::1209", "roar________::1518"] +["opendoar____::2370", "roar________::4315"] +["opendoar____::604", "roar________::576"] +["roar________::6427", "opendoar____::2771"] +["opendoar____::2169", "roar________::3893"] +["roar________::225", "opendoar____::63"] +["roar________::572", "opendoar____::158"] +["opendoar____::1722", "roar________::10677", "roar________::3685"] +["opendoar____::1187", "roar________::206"] +["opendoar____::43", "roar________::193"] +["roar________::459", "opendoar____::1166"] +["roar________::184", "opendoar____::37"] +["opendoar____::1323", "roar________::584"] +["roar________::189", "opendoar____::408"] +["roar________::5430", "opendoar____::988"] +["roar________::4992", "roar________::3682", "opendoar____::2098"] +["roar________::4263", "opendoar____::2300"] +["roar________::172", "opendoar____::1076"] +["roar________::4619", "opendoar____::2383"] +["opendoar____::1210", "roar________::97"] +["opendoar____::392", "roar________::1450"] +["opendoar____::187", "roar________::672"] +["opendoar____::190", "roar________::707"] +["roar________::720", "opendoar____::505"] +["roar________::5985", "roar________::1478", "opendoar____::580"] +["roar________::1250", "opendoar____::502"] +["roar________::17829", "opendoar____::10104"] +["roar________::17822", "opendoar____::10323"] +["opendoar____::10298", "roar________::17678"] +["roar________::17602", "opendoar____::10312"] +["roar________::17564", "opendoar____::1873", "roar________::8605"] +["opendoar____::10255", "roar________::17561"] +["roar________::17503", "opendoar____::4692"] +["opendoar____::2157", "roar________::17456"] +["opendoar____::10100", "roar________::17297"] +["opendoar____::10099", "roar________::17295"] +["roar________::17256", "opendoar____::10189"] +["opendoar____::10149", "roar________::17194"] +["roar________::17190", "opendoar____::10152"] +["roar________::17080", "opendoar____::10117"] +["opendoar____::10108", "roar________::17067"] +["opendoar____::10107", "roar________::17066"] +["opendoar____::3431", "roar________::17025"] +["roar________::16982", "opendoar____::10094"] +["opendoar____::10093", "roar________::16981"] +["opendoar____::10051", "roar________::16967"] +["roar________::16964", "opendoar____::10088"] +["opendoar____::3346", "roar________::16785"] +["roar________::16721", "opendoar____::10029"] +["opendoar____::3954", "roar________::16693"] +["roar________::16551", "opendoar____::10012"] +["opendoar____::4570", "roar________::16525"] +["roar________::16522", "opendoar____::9971"] +["roar________::16469", "opendoar____::4243"] +["roar________::16403", "opendoar____::9946"] +["roar________::16376", "opendoar____::4375"] +["opendoar____::9752", "roar________::16367"] +["opendoar____::1046", "roar________::6967", "roar________::16291"] +["roar________::16265", "opendoar____::3791"] +["opendoar____::3147", "roar________::15954", "roar________::16230"] +["roar________::16210", "opendoar____::4817"] +["roar________::16195", "opendoar____::15294"] +["opendoar____::3569", "roar________::16232"] +["roar________::16183", "opendoar____::9506"] +["opendoar____::9479", "roar________::16225", "roar________::16180"] +["roar________::15264", "roar________::16178", "opendoar____::4727"] +["opendoar____::9711", "roar________::16153"] +["roar________::16149", "opendoar____::9712"] +["roar________::16109", "opendoar____::4716"] +["opendoar____::9662", "roar________::16098"] +["roar________::15991", "opendoar____::9623", "roar________::16089"] +["roar________::16087", "opendoar____::9677"] +["roar________::16086", "opendoar____::9493"] +["roar________::16085", "opendoar____::9514"] +["roar________::16072", "opendoar____::9988"] +["opendoar____::3105", "roar________::16037"] +["roar________::15960", "opendoar____::9378"] +["roar________::15915", "opendoar____::4448"] +["roar________::15792", "opendoar____::1828", "roar________::91"] +["opendoar____::3529", "roar________::15775"] +["opendoar____::9528", "roar________::15765"] +["roar________::15723", "opendoar____::9447"] +["opendoar____::9494", "roar________::15710"] +["opendoar____::3224", "roar________::15684"] +["roar________::15616", "opendoar____::3297"] +["opendoar____::4883", "roar________::15611"] +["opendoar____::3145", "roar________::15604"] +["opendoar____::3915", "roar________::15587"] +["opendoar____::9458", "roar________::15576"] +["roar________::15541", "opendoar____::9428"] +["opendoar____::660", "roar________::7162", "roar________::15528"] +["opendoar____::1997", "roar________::3305", "roar________::15515"] +["roar________::15474", "opendoar____::4302"] +["opendoar____::4325", "roar________::15462"] +["roar________::15460", "opendoar____::9445"] +["roar________::15426", "opendoar____::4331"] +["opendoar____::4397", "roar________::15423"] +["roar________::15405", "opendoar____::4763"] +["roar________::15375", "opendoar____::4039"] +["roar________::15351", "opendoar____::9391"] +["roar________::15337", "opendoar____::1677"] +["opendoar____::4875", "roar________::15327"] +["roar________::15307", "opendoar____::4887"] +["opendoar____::4878", "roar________::15288"] +["opendoar____::4877", "roar________::15287"] +["opendoar____::4870", "roar________::15286"] +["roar________::15283", "opendoar____::4847"] +["roar________::15277", "opendoar____::4861"] +["opendoar____::4780", "roar________::15271"] +["roar________::15268", "opendoar____::3401"] +["roar________::15266", "opendoar____::4778"] +["roar________::15246", "opendoar____::4607"] +["opendoar____::4435", "roar________::15239"] +["opendoar____::4764", "roar________::15221"] +["roar________::15194", "opendoar____::4282"] +["roar________::15192", "opendoar____::3959"] +["roar________::15182", "opendoar____::4794"] +["opendoar____::4422", "roar________::15142"] +["opendoar____::3635", "roar________::15141"] +["opendoar____::2991", "roar________::15140", "roar________::9892"] +["opendoar____::4743", "roar________::15125"] +["opendoar____::4821", "roar________::15108"] +["opendoar____::979", "roar________::15101"] +["opendoar____::4842", "roar________::15090"] +["roar________::15075", "opendoar____::3854"] +["opendoar____::4783", "roar________::15073"] +["opendoar____::4701", "roar________::15261", "roar________::15071"] +["roar________::15036", "opendoar____::4379", "roar________::15039"] +["opendoar____::4693", "roar________::15035"] +["roar________::15027", "opendoar____::4666"] +["roar________::15025", "opendoar____::4667"] +["opendoar____::1493", "roar________::14955"] +["roar________::14935", "opendoar____::4712"] +["roar________::16263", "roar________::14929", "opendoar____::3820"] +["roar________::14918", "opendoar____::1313", "roar________::14919"] +["roar________::14899", "opendoar____::3082"] +["roar________::14773", "opendoar____::3228"] +["roar________::14772", "opendoar____::4609"] +["opendoar____::4560", "roar________::14763"] +["roar________::14737", "opendoar____::4177"] +["roar________::14719", "opendoar____::3570"] +["opendoar____::3195", "roar________::14688"] +["opendoar____::4486", "roar________::14678"] +["opendoar____::4366", "roar________::14674"] +["roar________::14667", "opendoar____::3552"] +["opendoar____::3595", "roar________::14659"] +["opendoar____::4567", "roar________::14650"] +["opendoar____::4518", "roar________::14356", "roar________::14616"] +["opendoar____::4532", "roar________::14615"] +["opendoar____::4294", "roar________::14583"] +["roar________::14558", "opendoar____::4446"] +["opendoar____::4423", "roar________::14546"] +["roar________::14511", "opendoar____::4193"] +["roar________::14428", "opendoar____::4303"] +["opendoar____::4278", "roar________::14413"] +["roar________::14400", "opendoar____::4273"] +["opendoar____::4409", "roar________::14382"] +["roar________::14372", "opendoar____::4232"] +["roar________::14366", "opendoar____::4158"] +["roar________::14293", "opendoar____::4208"] +["opendoar____::4207", "roar________::14288"] +["opendoar____::4183", "roar________::14274"] +["opendoar____::4174", "roar________::14272"] +["roar________::14162", "opendoar____::3965"] +["opendoar____::4175", "roar________::14161"] +["opendoar____::2952", "roar________::14160"] +["opendoar____::4035", "roar________::14159"] +["opendoar____::4006", "roar________::14158"] +["roar________::14099", "opendoar____::4059"] +["roar________::14065", "opendoar____::3293"] +["opendoar____::4064", "roar________::13965"] +["roar________::13843", "opendoar____::4264"] +["roar________::13771", "opendoar____::2668", "roar________::6502"] +["opendoar____::2816", "roar________::13747"] +["opendoar____::3815", "roar________::13715"] +["roar________::13646", "opendoar____::3122"] +["opendoar____::4077", "roar________::13568"] +["roar________::13539", "opendoar____::1034"] +["opendoar____::4066", "roar________::13507"] +["roar________::5014", "opendoar____::2443", "roar________::13496"] +["roar________::13331", "opendoar____::3883"] +["opendoar____::3917", "roar________::13329"] +["opendoar____::4062", "roar________::13313"] +["roar________::13312", "opendoar____::4061"] +["roar________::13293", "opendoar____::3075"] +["roar________::13274", "opendoar____::4038"] +["opendoar____::4068", "roar________::13271"] +["opendoar____::3361", "roar________::13194"] +["opendoar____::3989", "roar________::13180"] +["opendoar____::3672", "roar________::13171"] +["roar________::9751", "roar________::13160", "opendoar____::3343"] +["opendoar____::2802", "roar________::13132"] +["opendoar____::4036", "roar________::13100"] +["roar________::13092", "opendoar____::3925"] +["roar________::13042", "opendoar____::3353"] +["opendoar____::3763", "roar________::13033"] +["roar________::13028", "opendoar____::2365"] +["roar________::13024", "opendoar____::3844"] +["opendoar____::3891", "roar________::13022"] +["roar________::12990", "opendoar____::4044"] +["roar________::12983", "opendoar____::3930"] +["roar________::12981", "opendoar____::3455"] +["opendoar____::3395", "roar________::12969"] +["roar________::12937", "opendoar____::3913"] +["roar________::12932", "opendoar____::3922"] +["roar________::12925", "opendoar____::3903"] +["roar________::12915", "opendoar____::3924"] +["roar________::12913", "opendoar____::3921"] +["roar________::12898", "opendoar____::3889"] +["opendoar____::4058", "roar________::12893"] +["opendoar____::3893", "roar________::12885"] +["opendoar____::1531", "roar________::12867"] +["opendoar____::3888", "roar________::12860"] +["roar________::12859", "opendoar____::3885"] +["opendoar____::3887", "roar________::12858"] +["roar________::12857", "opendoar____::3886"] +["roar________::12850", "opendoar____::3897"] +["roar________::12846", "opendoar____::2790"] +["roar________::12843", "opendoar____::2641"] +["opendoar____::3281", "roar________::12842"] +["roar________::12841", "opendoar____::3905"] +["opendoar____::3859", "roar________::12831"] +["opendoar____::3741", "roar________::12809"] +["roar________::12805", "opendoar____::3502"] +["opendoar____::3895", "roar________::12796"] +["roar________::2708", "opendoar____::1786", "roar________::12777"] +["roar________::12762", "opendoar____::3992"] +["roar________::12726", "opendoar____::588"] +["opendoar____::3567", "roar________::12684"] +["opendoar____::3882", "roar________::12637"] +["opendoar____::3955", "roar________::12603"] +["roar________::12600", "opendoar____::2948"] +["opendoar____::4517", "roar________::12592"] +["opendoar____::3774", "roar________::12577"] +["roar________::12558", "opendoar____::3674"] +["opendoar____::3971", "roar________::12556"] +["roar________::12551", "opendoar____::1647"] +["opendoar____::3976", "roar________::12539"] +["opendoar____::3975", "roar________::12537"] +["roar________::12515", "opendoar____::3973"] +["roar________::12512", "opendoar____::3919"] +["opendoar____::1170", "roar________::12503"] +["roar________::12499", "opendoar____::3972"] +["opendoar____::3969", "roar________::12496"] +["roar________::12479", "opendoar____::3868"] +["opendoar____::3871", "roar________::12475"] +["opendoar____::3904", "roar________::12440"] +["opendoar____::3865", "roar________::12433"] +["roar________::12429", "opendoar____::3964"] +["opendoar____::3824", "roar________::12405"] +["opendoar____::3869", "roar________::12374"] +["roar________::12363", "opendoar____::3863"] +["roar________::12362", "opendoar____::1474"] +["opendoar____::3475", "roar________::12348"] +["opendoar____::1334", "roar________::12309"] +["opendoar____::3852", "roar________::12298"] +["roar________::12288", "opendoar____::2467"] +["opendoar____::3823", "roar________::12280"] +["opendoar____::3856", "roar________::12247"] +["roar________::12221", "opendoar____::3850"] +["roar________::12204", "opendoar____::3950"] +["roar________::12200", "opendoar____::3949"] +["opendoar____::3860", "roar________::12193"] +["roar________::12165", "opendoar____::3845"] +["opendoar____::3941", "roar________::12141"] +["roar________::12136", "opendoar____::3940"] +["roar________::12118", "opendoar____::3782"] +["opendoar____::2940", "roar________::12026"] +["roar________::11991", "opendoar____::3809"] +["roar________::11976", "opendoar____::3780"] +["roar________::11967", "opendoar____::3563"] +["roar________::11964", "opendoar____::3801"] +["opendoar____::3802", "roar________::11956"] +["roar________::11944", "opendoar____::3942"] +["opendoar____::3811", "roar________::11942"] +["roar________::11934", "opendoar____::3813"] +["roar________::11933", "opendoar____::3840"] +["roar________::11929", "opendoar____::3836"] +["opendoar____::3833", "roar________::11928"] +["opendoar____::3810", "roar________::11916"] +["roar________::11913", "opendoar____::3962"] +["opendoar____::3761", "roar________::11907"] +["opendoar____::3945", "roar________::11905"] +["roar________::11890", "opendoar____::3784"] +["opendoar____::3421", "roar________::11889"] +["roar________::11887", "opendoar____::3947"] +["roar________::11862", "opendoar____::3758"] +["roar________::11840", "opendoar____::2985"] +["roar________::11829", "opendoar____::3812"] +["opendoar____::3786", "roar________::11827"] +["roar________::11816", "opendoar____::3549"] +["roar________::11781", "opendoar____::3918"] +["opendoar____::3745", "roar________::11780"] +["roar________::11737", "opendoar____::3557"] +["roar________::11733", "opendoar____::3716"] +["opendoar____::3726", "roar________::11709"] +["opendoar____::3735", "roar________::11708"] +["opendoar____::3806", "roar________::11706"] +["opendoar____::3722", "roar________::11684"] +["roar________::11639", "opendoar____::3851"] +["opendoar____::3694", "roar________::11622"] +["roar________::11588", "opendoar____::3752"] +["roar________::11577", "opendoar____::3760"] +["roar________::11573", "opendoar____::3777"] +["roar________::11541", "opendoar____::4761"] +["roar________::11535", "opendoar____::3968"] +["opendoar____::3678", "roar________::11534"] +["opendoar____::3613", "roar________::11533"] +["roar________::11531", "opendoar____::3967"] +["roar________::11529", "opendoar____::2990", "roar________::8059"] +["roar________::11513", "opendoar____::3742"] +["opendoar____::3743", "roar________::11501"] +["roar________::11490", "opendoar____::3653"] +["opendoar____::3727", "roar________::11488"] +["opendoar____::3352", "roar________::11483"] +["opendoar____::3783", "roar________::11466"] +["opendoar____::3647", "roar________::11464"] +["roar________::11445", "opendoar____::1413"] +["roar________::11444", "opendoar____::3128"] +["roar________::11399", "opendoar____::3787"] +["opendoar____::3775", "roar________::11393"] +["opendoar____::3773", "roar________::11381"] +["opendoar____::3690", "roar________::11376"] +["roar________::11352", "opendoar____::3738"] +["roar________::11320", "opendoar____::3608"] +["roar________::11312", "opendoar____::3748"] +["roar________::11301", "opendoar____::3592"] +["opendoar____::3837", "roar________::11296"] +["roar________::11294", "opendoar____::3594"] +["roar________::11291", "opendoar____::3772"] +["opendoar____::2785", "roar________::11289"] +["roar________::11287", "opendoar____::3916"] +["roar________::11277", "opendoar____::3803"] +["opendoar____::3609", "roar________::11276"] +["roar________::11268", "opendoar____::3387"] +["opendoar____::3751", "roar________::11256"] +["opendoar____::3713", "roar________::11253"] +["roar________::11213", "opendoar____::2540", "roar________::5755"] +["roar________::11211", "opendoar____::3578"] +["roar________::11210", "opendoar____::702"] +["opendoar____::2536", "roar________::11209", "roar________::5750"] +["opendoar____::2534", "roar________::11207", "roar________::5689"] +["opendoar____::2530", "roar________::5721", "roar________::11206"] +["roar________::11203", "roar________::5742", "opendoar____::2537"] +["opendoar____::3585", "roar________::11202"] +["roar________::11201", "roar________::5710", "opendoar____::2527"] +["roar________::5691", "roar________::11198", "opendoar____::2524"] +["roar________::11194", "opendoar____::3582"] +["roar________::11193", "opendoar____::3581"] +["opendoar____::3580", "roar________::11191"] +["opendoar____::3866", "roar________::11180"] +["roar________::11177", "opendoar____::3624"] +["roar________::11168", "opendoar____::3682"] +["opendoar____::3834", "roar________::11160"] +["opendoar____::3835", "roar________::11157"] +["opendoar____::3544", "roar________::11134"] +["opendoar____::3598", "roar________::11130"] +["opendoar____::3566", "roar________::11128"] +["opendoar____::3076", "roar________::11124"] +["roar________::11092", "opendoar____::3771"] +["opendoar____::3934", "roar________::11089"] +["roar________::11083", "opendoar____::3714"] +["roar________::11063", "opendoar____::3564"] +["opendoar____::3614", "roar________::11062"] +["opendoar____::3574", "roar________::11059"] +["opendoar____::3769", "roar________::11058"] +["roar________::11043", "opendoar____::3480"] +["roar________::11026", "opendoar____::3644"] +["opendoar____::1051", "roar________::11023"] +["roar________::11004", "opendoar____::3796"] +["roar________::16494", "opendoar____::3793", "roar________::16495"] +["roar________::10969", "opendoar____::3768"] +["roar________::10964", "opendoar____::3767"] +["roar________::10959", "opendoar____::1450"] +["roar________::10932", "opendoar____::3645"] +["roar________::10901", "opendoar____::3766"] +["opendoar____::3966", "roar________::10893"] +["opendoar____::3434", "roar________::10866"] +["opendoar____::3363", "roar________::10848"] +["roar________::10838", "opendoar____::3636"] +["opendoar____::3317", "roar________::10806"] +["roar________::10802", "opendoar____::3623"] +["opendoar____::3632", "roar________::10775"] +["opendoar____::3640", "roar________::10770"] +["roar________::10762", "opendoar____::3535"] +["roar________::10749", "opendoar____::3555"] +["opendoar____::3498", "roar________::10729"] +["roar________::10689", "opendoar____::3634"] +["opendoar____::3508", "roar________::10688"] +["opendoar____::3263", "roar________::10667"] +["opendoar____::3506", "roar________::10665"] +["opendoar____::2968", "roar________::7908", "roar________::10659"] +["roar________::10645", "opendoar____::3505"] +["roar________::10606", "opendoar____::3626"] +["roar________::10597", "opendoar____::3622"] +["opendoar____::3620", "roar________::10571"] +["opendoar____::3619", "roar________::10565"] +["opendoar____::3616", "roar________::10561"] +["opendoar____::3539", "roar________::14547", "roar________::10545"] +["roar________::10522", "opendoar____::3365"] +["roar________::10505", "opendoar____::2901"] +["roar________::10485", "opendoar____::2752"] +["opendoar____::3553", "roar________::10476"] +["opendoar____::3607", "roar________::10475"] +["opendoar____::3681", "roar________::10471"] +["roar________::10463", "opendoar____::334"] +["opendoar____::3501", "roar________::10456"] +["roar________::10453", "opendoar____::3606"] +["opendoar____::3605", "roar________::10438"] +["opendoar____::3285", "roar________::10424"] +["roar________::10417", "opendoar____::3492"] +["roar________::10380", "opendoar____::3933"] +["roar________::10379", "opendoar____::3577"] +["opendoar____::3490", "roar________::10366"] +["roar________::10365", "opendoar____::3426"] +["roar________::10355", "opendoar____::3531"] +["opendoar____::3597", "roar________::10352"] +["opendoar____::3576", "roar________::10345"] +["roar________::10339", "opendoar____::3725"] +["roar________::10337", "opendoar____::3497"] +["opendoar____::3591", "roar________::10313"] +["roar________::10287", "opendoar____::3855"] +["roar________::10277", "opendoar____::3493"] +["opendoar____::1958", "roar________::10255"] +["roar________::10253", "opendoar____::3554"] +["roar________::10244", "opendoar____::3460", "roar________::10243"] +["roar________::10226", "opendoar____::3488"] +["roar________::10225", "opendoar____::3481"] +["opendoar____::3132", "roar________::10211"] +["opendoar____::3483", "roar________::10208"] +["opendoar____::3477", "roar________::10202"] +["roar________::10199", "opendoar____::3476"] +["opendoar____::3468", "roar________::10186"] +["opendoar____::3536", "roar________::10159"] +["roar________::10135", "opendoar____::3467"] +["opendoar____::3383", "roar________::10119"] +["roar________::10109", "opendoar____::3463"] +["roar________::10089", "opendoar____::3709"] +["opendoar____::3400", "roar________::10053"] +["opendoar____::3590", "roar________::10039"] +["opendoar____::3433", "roar________::10038"] +["opendoar____::3425", "roar________::10037"] +["opendoar____::3419", "roar________::10035"] +["roar________::10033", "opendoar____::3422"] +["opendoar____::3631", "roar________::10029"] +["opendoar____::3420", "roar________::10020"] +["opendoar____::3453", "roar________::10019"] +["roar________::10018", "opendoar____::3418"] +["opendoar____::3410", "roar________::10013"] +["opendoar____::3408", "roar________::10001"] +["opendoar____::3496", "roar________::9994"] +["roar________::9988", "opendoar____::3399"] +["roar________::9980", "opendoar____::3370"] +["roar________::9975", "opendoar____::3547"] +["roar________::9955", "opendoar____::3392"] +["opendoar____::3165", "roar________::9947"] +["roar________::9921", "opendoar____::3394"] +["opendoar____::3381", "roar________::9904"] +["opendoar____::3380", "roar________::9902"] +["opendoar____::3382", "roar________::9901"] +["roar________::9896", "opendoar____::3384"] +["opendoar____::3537", "roar________::9891"] +["roar________::9888", "opendoar____::10089"] +["roar________::9884", "opendoar____::3302"] +["opendoar____::2825", "roar________::6490", "roar________::9878"] +["opendoar____::1436", "roar________::9872"] +["roar________::9870", "opendoar____::3375"] +["opendoar____::3366", "roar________::9852"] +["opendoar____::3367", "roar________::9850"] +["opendoar____::3360", "roar________::9849"] +["opendoar____::3256", "roar________::9841"] +["roar________::9805", "opendoar____::3355"] +["roar________::9789", "opendoar____::3311"] +["roar________::9777", "opendoar____::2885"] +["roar________::9762", "opendoar____::3342"] +["opendoar____::3442", "roar________::9761"] +["roar________::9747", "opendoar____::3344"] +["opendoar____::3330", "roar________::9726"] +["roar________::9725", "opendoar____::3331"] +["roar________::9724", "opendoar____::3332"] +["roar________::9717", "opendoar____::3323"] +["opendoar____::3397", "roar________::9704"] +["roar________::9697", "opendoar____::3430"] +["opendoar____::3309", "roar________::9687"] +["roar________::9676", "opendoar____::3718"] +["opendoar____::3288", "roar________::9654"] +["roar________::9647", "opendoar____::3319"] +["roar________::9646", "opendoar____::3264"] +["roar________::9645", "opendoar____::3266"] +["roar________::9643", "opendoar____::3267"] +["roar________::9642", "opendoar____::3268"] +["roar________::9637", "opendoar____::10818"] +["opendoar____::3210", "roar________::9634"] +["roar________::9631", "opendoar____::3272"] +["opendoar____::3209", "roar________::9616"] +["opendoar____::2441", "roar________::5052", "roar________::9597"] +["opendoar____::3153", "roar________::9582"] +["opendoar____::3295", "roar________::9564"] +["opendoar____::3287", "roar________::9551"] +["opendoar____::CUDI", "roar________::9531"] +["opendoar____::3283", "roar________::9529"] +["roar________::9526", "opendoar____::3369"] +["opendoar____::3279", "roar________::9524"] +["roar________::9513", "opendoar____::3336"] +["opendoar____::3275", "roar________::9509"] +["opendoar____::3218", "roar________::9504"] +["opendoar____::3273", "roar________::9481"] +["roar________::9474", "opendoar____::3316"] +["roar________::9464", "opendoar____::3412"] +["opendoar____::3439", "roar________::9419"] +["opendoar____::3269", "roar________::9416"] +["opendoar____::3260", "roar________::9397"] +["roar________::9359", "opendoar____::2521", "roar________::5658"] +["roar________::9348", "opendoar____::3251"] +["roar________::9343", "opendoar____::2221"] +["roar________::9341", "opendoar____::3257"] +["opendoar____::3827", "roar________::9338"] +["roar________::9330", "opendoar____::2803"] +["opendoar____::3255", "roar________::9312"] +["opendoar____::3117", "roar________::9311"] +["opendoar____::3237", "roar________::9169"] +["roar________::9161", "opendoar____::3236"] +["opendoar____::3137", "roar________::9158"] +["roar________::9147", "opendoar____::2531", "roar________::5702"] +["roar________::9144", "opendoar____::717"] +["roar________::5717", "roar________::9142", "opendoar____::2533"] +["roar________::5694", "roar________::9141", "opendoar____::2532"] +["roar________::9140", "opendoar____::3244"] +["opendoar____::2529", "roar________::9139", "roar________::5715"] +["roar________::9138", "roar________::5744", "opendoar____::2538"] +["opendoar____::714", "roar________::9136"] +["opendoar____::3241", "roar________::9135"] +["roar________::9134", "opendoar____::2810"] +["opendoar____::3235", "roar________::9129"] +["roar________::9125", "opendoar____::3234"] +["opendoar____::3156", "roar________::9124"] +["roar________::9123", "opendoar____::3359"] +["roar________::9108", "opendoar____::3223"] +["opendoar____::3229", "roar________::9105"] +["opendoar____::3226", "roar________::9100"] +["roar________::9094", "opendoar____::3199"] +["opendoar____::3222", "roar________::9088"] +["opendoar____::3169", "roar________::9083"] +["roar________::9061", "opendoar____::3213"] +["opendoar____::3721", "roar________::9057"] +["roar________::9056", "opendoar____::3292"] +["opendoar____::3207", "roar________::9039"] +["roar________::9038", "opendoar____::3206"] +["opendoar____::3204", "roar________::9037"] +["opendoar____::3201", "roar________::9034"] +["roar________::9031", "opendoar____::3197"] +["roar________::9027", "opendoar____::3196"] +["roar________::9020", "opendoar____::3377"] +["roar________::9004", "opendoar____::3250"] +["roar________::9002", "opendoar____::3325"] +["opendoar____::3167", "roar________::9001"] +["opendoar____::3089", "roar________::8997"] +["roar________::8981", "opendoar____::3314"] +["roar________::8970", "opendoar____::2932"] +["opendoar____::3227", "roar________::8969"] +["opendoar____::2856", "roar________::8960"] +["roar________::8958", "opendoar____::3185"] +["opendoar____::3184", "roar________::8951"] +["roar________::8933", "opendoar____::3445"] +["roar________::8928", "opendoar____::3409"] +["opendoar____::3963", "roar________::8920"] +["opendoar____::3182", "roar________::8912"] +["roar________::8898", "opendoar____::2596"] +["roar________::8896", "opendoar____::3158"] +["opendoar____::3173", "roar________::8880"] +["opendoar____::3177", "roar________::8877"] +["opendoar____::3876", "roar________::8874"] +["roar________::8907", "opendoar____::3048"] +["opendoar____::3740", "roar________::8854"] +["roar________::8841", "opendoar____::3324"] +["roar________::8825", "opendoar____::3600"] +["opendoar____::3150", "roar________::8798"] +["opendoar____::2315", "roar________::8800"] +["roar________::8777", "opendoar____::3278"] +["roar________::8768", "opendoar____::3133"] +["roar________::8766", "opendoar____::3134"] +["roar________::8758", "opendoar____::3144"] +["roar________::8720", "opendoar____::3172"] +["opendoar____::2670", "roar________::8718"] +["opendoar____::3096", "roar________::8677"] +["opendoar____::3115", "roar________::8673"] +["roar________::8672", "opendoar____::3112"] +["roar________::8666", "opendoar____::3298"] +["opendoar____::3109", "roar________::8840"] +["opendoar____::3584", "roar________::8651"] +["opendoar____::2528", "roar________::8647", "roar________::5704"] +["opendoar____::3108", "roar________::8645"] +["roar________::8636", "opendoar____::3100"] +["roar________::8620", "opendoar____::3097"] +["roar________::8619", "opendoar____::3098"] +["roar________::8612", "opendoar____::3486"] +["opendoar____::1568", "roar________::8587"] +["opendoar____::3200", "roar________::8585"] +["opendoar____::3103", "roar________::8547"] +["roar________::8546", "opendoar____::2781"] +["opendoar____::3926", "roar________::8536"] +["opendoar____::3090", "roar________::8535"] +["opendoar____::3106", "roar________::8522"] +["roar________::8504", "opendoar____::3087"] +["roar________::8498", "opendoar____::3083"] +["roar________::8491", "opendoar____::3081"] +["opendoar____::3149", "roar________::8483"] +["roar________::8471", "opendoar____::3764"] +["opendoar____::2835", "roar________::8463"] +["roar________::8458", "opendoar____::3243"] +["roar________::8450", "opendoar____::3788"] +["opendoar____::2834", "roar________::8446"] +["opendoar____::3765", "roar________::8439"] +["opendoar____::3259", "roar________::8435"] +["roar________::8427", "opendoar____::3155"] +["roar________::8413", "opendoar____::3261"] +["opendoar____::3078", "roar________::8405"] +["opendoar____::3007", "roar________::8402"] +["opendoar____::2714", "roar________::8395"] +["opendoar____::2839", "roar________::8387"] +["roar________::8384", "opendoar____::2754"] +["roar________::8369", "opendoar____::2831"] +["opendoar____::3050", "roar________::8365"] +["opendoar____::3546", "roar________::8362"] +["opendoar____::3136", "roar________::8359"] +["roar________::8354", "opendoar____::2611"] +["opendoar____::3183", "roar________::8353"] +["opendoar____::3069", "roar________::8332"] +["roar________::8326", "opendoar____::3070"] +["roar________::8316", "opendoar____::3111"] +["roar________::8304", "opendoar____::3306"] +["roar________::8297", "opendoar____::3952"] +["roar________::8294", "opendoar____::3063"] +["opendoar____::3060", "roar________::8282"] +["opendoar____::3044", "roar________::8270"] +["roar________::8259", "opendoar____::3160"] +["opendoar____::3049", "roar________::8256"] +["roar________::8239", "opendoar____::3391"] +["roar________::8235", "opendoar____::1775"] +["roar________::8224", "opendoar____::3046"] +["roar________::8223", "opendoar____::3432"] +["opendoar____::2979", "roar________::8221"] +["roar________::8213", "opendoar____::3033"] +["roar________::8210", "opendoar____::3085"] +["roar________::8196", "opendoar____::3040"] +["opendoar____::3080", "roar________::8189"] +["roar________::8168", "opendoar____::3036"] +["roar________::8165", "opendoar____::3037"] +["roar________::8162", "opendoar____::3035"] +["opendoar____::3019", "roar________::8158"] +["opendoar____::3079", "roar________::8151"] +["opendoar____::3026", "roar________::8126"] +["opendoar____::3135", "roar________::8113"] +["opendoar____::3039", "roar________::8109"] +["opendoar____::2959", "roar________::8103", "roar________::7932"] +["opendoar____::3572", "roar________::8102"] +["opendoar____::3018", "roar________::8072"] +["opendoar____::3013", "roar________::7962", "roar________::8058"] +["roar________::8055", "opendoar____::3017"] +["opendoar____::3011", "roar________::8050"] +["roar________::8044", "opendoar____::2919"] +["roar________::8043", "opendoar____::3012"] +["opendoar____::3154", "roar________::8005"] +["roar________::7992", "opendoar____::3005"] +["roar________::7973", "opendoar____::2996"] +["opendoar____::2999", "roar________::7966"] +["opendoar____::2725", "roar________::7943"] +["roar________::7942", "opendoar____::2998"] +["opendoar____::3009", "roar________::7929"] +["opendoar____::3814", "roar________::7924"] +["roar________::7902", "roar________::5216", "opendoar____::2468"] +["opendoar____::2994", "roar________::7897"] +["roar________::7893", "opendoar____::2986"] +["opendoar____::7878", "roar________::7878"] +["opendoar____::2989", "roar________::7863"] +["roar________::7841", "opendoar____::2929"] +["roar________::7839", "opendoar____::2967"] +["opendoar____::2953", "roar________::7832"] +["roar________::7818", "opendoar____::2808"] +["opendoar____::3020", "roar________::7776"] +["opendoar____::2992", "roar________::7775"] +["opendoar____::2723", "roar________::7770", "roar________::7148"] +["roar________::7767", "opendoar____::1312", "roar________::5486"] +["opendoar____::2658", "roar________::7756"] +["roar________::7755", "opendoar____::2931"] +["opendoar____::2942", "roar________::7749"] +["roar________::7725", "opendoar____::3749"] +["roar________::7724", "opendoar____::2946"] +["opendoar____::2965", "roar________::7722"] +["roar________::7695", "opendoar____::2852"] +["opendoar____::3126", "roar________::7626"] +["opendoar____::1557", "roar________::556", "roar________::7619"] +["roar________::7618", "opendoar____::2661"] +["roar________::7591", "opendoar____::2904"] +["roar________::7586", "opendoar____::3277"] +["roar________::7575", "opendoar____::2884"] +["opendoar____::2896", "roar________::7572"] +["opendoar____::2892", "roar________::7553"] +["opendoar____::2893", "roar________::7552"] +["roar________::7551", "opendoar____::2891"] +["roar________::7550", "opendoar____::2890"] +["opendoar____::2865", "roar________::7541"] +["opendoar____::2903", "roar________::7540"] +["opendoar____::2879", "roar________::7513"] +["opendoar____::2755", "roar________::7500"] +["opendoar____::2824", "roar________::7498", "roar________::7483"] +["opendoar____::3071", "roar________::7477"] +["roar________::7476", "opendoar____::2941"] +["roar________::7465", "opendoar____::2868"] +["roar________::7461", "opendoar____::2814"] +["opendoar____::2871", "roar________::7452"] +["roar________::7436", "opendoar____::2867"] +["roar________::7434", "opendoar____::2860"] +["roar________::7415", "opendoar____::2851"] +["opendoar____::2881", "roar________::7411"] +["roar________::7401", "opendoar____::2848"] +["opendoar____::3123", "roar________::7393"] +["roar________::7390", "opendoar____::3121"] +["opendoar____::2850", "roar________::7388"] +["roar________::7387", "opendoar____::2949"] +["roar________::7376", "opendoar____::2706"] +["roar________::7375", "opendoar____::3212"] +["opendoar____::2844", "roar________::7374"] +["roar________::7369", "opendoar____::2736"] +["roar________::7356", "opendoar____::2836"] +["opendoar____::3024", "roar________::7355"] +["roar________::7354", "opendoar____::2758"] +["opendoar____::2858", "roar________::7338"] +["roar________::7330", "opendoar____::2811"] +["opendoar____::2797", "roar________::7325"] +["opendoar____::2795", "roar________::7310"] +["opendoar____::2787", "roar________::7296"] +["roar________::7277", "opendoar____::2783"] +["roar________::7275", "opendoar____::2966"] +["roar________::7263", "opendoar____::2685"] +["opendoar____::2748", "roar________::7262"] +["opendoar____::2682", "roar________::7256"] +["roar________::7245", "opendoar____::2945"] +["opendoar____::2762", "roar________::7243"] +["opendoar____::2765", "roar________::7241"] +["roar________::7231", "opendoar____::2753"] +["opendoar____::4063", "roar________::7230"] +["roar________::7219", "opendoar____::3099"] +["roar________::7218", "opendoar____::2739"] +["opendoar____::2740", "roar________::7208"] +["opendoar____::3290", "roar________::7203"] +["roar________::7177", "opendoar____::2607"] +["opendoar____::2722", "roar________::7151"] +["opendoar____::2716", "roar________::7144"] +["opendoar____::2700", "roar________::7125"] +["opendoar____::2746", "roar________::7118"] +["opendoar____::2744", "roar________::7117"] +["roar________::7097", "opendoar____::2872"] +["opendoar____::2761", "roar________::7092"] +["roar________::7085", "opendoar____::2678"] +["roar________::7079", "opendoar____::2713"] +["opendoar____::2928", "roar________::7076"] +["opendoar____::2895", "roar________::7071"] +["opendoar____::2702", "roar________::7063"] +["roar________::7057", "opendoar____::2982"] +["opendoar____::2687", "roar________::7037"] +["roar________::7033", "opendoar____::2683"] +["opendoar____::2826", "roar________::7010"] +["roar________::7005", "opendoar____::2070"] +["opendoar____::2675", "roar________::6990"] +["opendoar____::2916", "roar________::6949"] +["roar________::6940", "opendoar____::2672"] +["opendoar____::2727", "roar________::6901"] +["roar________::6899", "opendoar____::2703"] +["roar________::6868", "opendoar____::2819"] +["opendoar____::2828", "roar________::6855"] +["opendoar____::2726", "roar________::6764"] +["roar________::6699", "opendoar____::2809"] +["opendoar____::2644", "roar________::6640"] +["roar________::6639", "opendoar____::2648"] +["opendoar____::2778", "roar________::6605"] +["opendoar____::482", "roar________::6590"] +["opendoar____::3028", "roar________::6543"] +["opendoar____::2495", "roar________::6491", "roar________::3227"] +["roar________::3810", "roar________::6485", "opendoar____::2151"] +["opendoar____::2915", "roar________::6455"] +["roar________::6450", "opendoar____::2772"] +["roar________::6388", "opendoar____::2623"] +["roar________::6334", "opendoar____::2769"] +["opendoar____::2592", "roar________::6236"] +["opendoar____::5116", "roar________::6212"] +["opendoar____::2717", "roar________::6167"] +["roar________::6068", "opendoar____::2580"] +["roar________::6067", "opendoar____::2578"] +["roar________::6033", "opendoar____::2571"] +["opendoar____::2572", "roar________::6032"] +["roar________::6004", "opendoar____::2650"] +["roar________::5989", "opendoar____::1556", "roar________::883"] +["roar________::4929", "opendoar____::2287", "roar________::5982"] +["roar________::5964", "opendoar____::2570"] +["opendoar____::3119", "roar________::6041"] +["roar________::5958", "roar________::5098", "opendoar____::2446"] +["roar________::5957", "opendoar____::1124"] +["opendoar____::2569", "roar________::5956"] +["roar________::5947", "opendoar____::2981"] +["roar________::5890", "opendoar____::2560"] +["opendoar____::1029", "roar________::5887"] +["roar________::5884", "opendoar____::2175", "roar________::3878"] +["opendoar____::3720", "roar________::5856"] +["opendoar____::2565", "roar________::5842"] +["opendoar____::2849", "roar________::5812"] +["roar________::5796", "opendoar____::2549"] +["opendoar____::2552", "roar________::5794"] +["roar________::5769", "opendoar____::2518"] +["opendoar____::2551", "roar________::5763"] +["roar________::3112", "opendoar____::1473", "roar________::5758"] +["opendoar____::1892", "roar________::3049", "roar________::5759"] +["opendoar____::2541", "roar________::5757"] +["opendoar____::2535", "roar________::5754"] +["opendoar____::2547", "roar________::5753"] +["roar________::5751", "opendoar____::2543"] +["roar________::5747", "opendoar____::2546"] +["opendoar____::2544", "roar________::5745"] +["roar________::771", "roar________::5743", "opendoar____::1297"] +["roar________::835", "opendoar____::210", "roar________::5741"] +["roar________::5719", "roar________::4739", "opendoar____::2406"] +["roar________::5712", "opendoar____::461"] +["opendoar____::2523", "roar________::5713"] +["roar________::5714", "opendoar____::802"] +["roar________::4940", "opendoar____::2321", "roar________::5709"] +["opendoar____::1377", "roar________::5707", "roar________::234"] +["roar________::5708", "opendoar____::769"] +["opendoar____::2525", "roar________::5706"] +["opendoar____::846", "roar________::5701"] +["opendoar____::367", "roar________::5696"] +["opendoar____::2037", "roar________::5684", "roar________::3510"] +["roar________::5680", "opendoar____::775"] +["roar________::5656", "opendoar____::2516"] +["opendoar____::2519", "roar________::5652"] +["roar________::5646", "opendoar____::3818"] +["roar________::5054", "opendoar____::2442", "roar________::5631"] +["opendoar____::2509", "roar________::5629"] +["opendoar____::2512", "roar________::5626"] +["roar________::5627", "opendoar____::2513"] +["roar________::5625", "opendoar____::2510"] +["roar________::5624", "opendoar____::118"] +["opendoar____::1811", "roar________::5622", "roar________::2733"] +["roar________::5620", "opendoar____::1654"] +["roar________::5618", "opendoar____::2496", "roar________::5498"] +["roar________::5619", "opendoar____::1732"] +["opendoar____::1332", "roar________::5581"] +["roar________::5575", "opendoar____::2501"] +["roar________::2506", "roar________::5566", "opendoar____::1728"] +["roar________::4317", "roar________::5563", "opendoar____::2337"] +["roar________::5555", "opendoar____::697"] +["roar________::5552", "opendoar____::1578"] +["opendoar____::1996", "roar________::5551", "roar________::3417"] +["opendoar____::2038", "roar________::5547", "roar________::3514"] +["roar________::5541", "opendoar____::1254", "roar________::474"] +["opendoar____::1637", "roar________::5528"] +["opendoar____::1815", "roar________::5524", "roar________::4999", "roar________::2723"] +["roar________::5525", "opendoar____::170"] +["opendoar____::1783", "roar________::5526", "roar________::2672"] +["roar________::5523", "opendoar____::2506"] +["roar________::5510", "roar________::3861", "opendoar____::2162"] +["roar________::395", "roar________::5507", "opendoar____::891"] +["roar________::5502", "opendoar____::678"] +["opendoar____::1093", "roar________::5501"] +["opendoar____::2485", "roar________::5496"] +["roar________::5494", "opendoar____::2484"] +["opendoar____::1434", "roar________::5490"] +["roar________::5482", "roar________::5214", "opendoar____::2477"] +["opendoar____::1200", "roar________::5483"] +["opendoar____::1952", "roar________::3216", "roar________::5481"] +["roar________::5480", "roar________::4684", "opendoar____::2385"] +["roar________::5476", "opendoar____::993"] +["roar________::2872", "opendoar____::1851", "roar________::5473"] +["opendoar____::844", "roar________::5470"] +["opendoar____::1495", "roar________::5469"] +["roar________::5459", "opendoar____::1245"] +["opendoar____::1324", "roar________::5457"] +["opendoar____::1230", "roar________::5455", "roar________::258"] +["opendoar____::1494", "roar________::5451"] +["roar________::5446", "opendoar____::2503"] +["opendoar____::1884", "roar________::5443", "roar________::3032"] +["roar________::5444", "opendoar____::1543", "roar________::460"] +["roar________::3115", "opendoar____::1644", "roar________::5437"] +["roar________::5431", "opendoar____::1265"] +["roar________::5427", "opendoar____::765"] +["roar________::5424", "opendoar____::2507"] +["roar________::5420", "roar________::3605", "opendoar____::2069"] +["opendoar____::827", "roar________::5404"] +["roar________::5403", "roar________::3083", "opendoar____::691", "roar________::2335"] +["opendoar____::2498", "roar________::5332"] +["roar________::5327", "opendoar____::2791"] +["roar________::3486", "roar________::5283", "opendoar____::1354"] +["opendoar____::861", "roar________::5281"] +["roar________::5279", "opendoar____::512"] +["roar________::5278", "opendoar____::649"] +["roar________::5275", "opendoar____::2489"] +["roar________::5267", "opendoar____::866"] +["opendoar____::1290", "roar________::5259"] +["opendoar____::2474", "roar________::5260"] +["opendoar____::2480", "roar________::5253"] +["opendoar____::2481", "roar________::5254"] +["roar________::5222", "opendoar____::2473"] +["opendoar____::2225", "roar________::5218", "roar________::4086"] +["opendoar____::2472", "roar________::5215"] +["roar________::5209", "opendoar____::1666"] +["roar________::3199", "opendoar____::1944", "roar________::5210"] +["roar________::4955", "opendoar____::903", "roar________::5183"] +["roar________::5182", "opendoar____::2470"] +["roar________::5155", "opendoar____::1308"] +["opendoar____::2500", "roar________::5150"] +["opendoar____::2476", "roar________::5147"] +["opendoar____::2463", "roar________::5141"] +["roar________::5130", "opendoar____::2453"] +["opendoar____::2458", "roar________::5129"] +["roar________::5125", "opendoar____::2456"] +["opendoar____::2457", "roar________::5126"] +["opendoar____::2451", "roar________::5075"] +["opendoar____::2450", "roar________::5073"] +["roar________::5071", "opendoar____::2112", "roar________::3597"] +["roar________::5048", "opendoar____::2686"] +["opendoar____::2444", "roar________::5027"] +["opendoar____::1347", "roar________::5007"] +["opendoar____::2416", "roar________::5005"] +["roar________::5000", "opendoar____::2279"] +["roar________::4994", "opendoar____::2283"] +["opendoar____::860", "roar________::4993"] +["roar________::4986", "opendoar____::1563", "roar________::939"] +["roar________::4984", "opendoar____::2276"] +["roar________::4981", "roar________::4347", "opendoar____::2368"] +["roar________::4982", "roar________::881", "opendoar____::1014"] +["roar________::1476", "roar________::4979", "opendoar____::1574"] +["opendoar____::2277", "roar________::4976"] +["opendoar____::1109", "roar________::4974"] +["roar________::4975", "opendoar____::898"] +["opendoar____::767", "roar________::4971"] +["opendoar____::2284", "roar________::4966"] +["opendoar____::2402", "roar________::4967"] +["opendoar____::1585", "roar________::4964"] +["roar________::4965", "opendoar____::2428"] +["opendoar____::142", "roar________::4963"] +["opendoar____::2352", "roar________::4961"] +["opendoar____::2274", "roar________::4959"] +["opendoar____::2437", "roar________::4957"] +["roar________::4953", "opendoar____::2288"] +["opendoar____::2407", "roar________::4954"] +["opendoar____::2410", "roar________::4949"] +["roar________::4950", "opendoar____::2394"] +["roar________::472", "opendoar____::472", "roar________::4947"] +["opendoar____::2343", "roar________::4944"] +["opendoar____::2280", "roar________::4942"] +["opendoar____::2124", "roar________::3757", "roar________::4943"] +["opendoar____::2263", "roar________::4941"] +["opendoar____::865", "roar________::4938"] +["roar________::4939", "opendoar____::996"] +["opendoar____::2273", "roar________::4937"] +["roar________::4935", "opendoar____::710"] +["roar________::4933", "opendoar____::2313"] +["opendoar____::2333", "roar________::4931"] +["roar________::4930", "opendoar____::2389"] +["roar________::4927", "roar________::2423", "opendoar____::785"] +["opendoar____::2278", "roar________::4923"] +["opendoar____::2430", "roar________::4841"] +["roar________::4834", "opendoar____::2426"] +["roar________::4807", "opendoar____::781"] +["opendoar____::1837", "roar________::4790", "roar________::2662"] +["opendoar____::1487", "roar________::4788"] +["roar________::4787", "opendoar____::1105"] +["opendoar____::1922", "roar________::4785", "roar________::3149"] +["opendoar____::2413", "roar________::4782"] +["opendoar____::2419", "roar________::4783"] +["roar________::4754", "opendoar____::2418"] +["opendoar____::757", "roar________::4749"] +["opendoar____::1369", "roar________::4728"] +["roar________::4727", "opendoar____::1282"] +["opendoar____::1116", "roar________::4723", "roar________::930"] +["roar________::4722", "opendoar____::2396"] +["roar________::4720", "opendoar____::176"] +["opendoar____::1467", "roar________::4718"] +["roar________::4715", "opendoar____::821"] +["roar________::4716", "opendoar____::1506"] +["roar________::4714", "opendoar____::607"] +["opendoar____::1044", "roar________::4688"] +["roar________::4685", "opendoar____::1829"] +["roar________::4682", "opendoar____::2390"] +["opendoar____::1662", "roar________::4681"] +["roar________::4678", "opendoar____::1239"] +["roar________::3889", "opendoar____::2170", "roar________::4675"] +["roar________::4674", "opendoar____::416"] +["roar________::4671", "opendoar____::2133"] +["opendoar____::2558", "roar________::4662"] +["roar________::4642", "opendoar____::1250"] +["opendoar____::1287", "roar________::4641", "roar________::108"] +["roar________::4615", "opendoar____::2380"] +["opendoar____::2392", "roar________::4606"] +["roar________::3092", "opendoar____::1897", "roar________::4572"] +["roar________::4550", "opendoar____::2362"] +["opendoar____::2357", "roar________::4547"] +["opendoar____::2355", "roar________::4548"] +["roar________::4470", "opendoar____::2361"] +["roar________::4466", "opendoar____::2347"] +["opendoar____::2350", "roar________::4464"] +["roar________::4463", "opendoar____::2351"] +["opendoar____::2353", "roar________::4453"] +["roar________::4446", "opendoar____::2345"] +["roar________::4406", "opendoar____::2647"] +["opendoar____::2324", "roar________::4378"] +["opendoar____::2338", "roar________::4346"] +["roar________::4301", "opendoar____::2335"] +["opendoar____::2331", "roar________::4297"] +["opendoar____::2327", "roar________::4299"] +["roar________::4296", "opendoar____::2329"] +["roar________::4293", "opendoar____::2281"] +["opendoar____::2332", "roar________::4294"] +["opendoar____::2028", "roar________::3484", "roar________::4292"] +["roar________::4269", "opendoar____::2317"] +["opendoar____::2322", "roar________::4267"] +["opendoar____::2319", "roar________::4264"] +["opendoar____::2302", "roar________::4265"] +["opendoar____::2314", "roar________::4245"] +["roar________::4243", "opendoar____::2296"] +["opendoar____::1370", "roar________::4242"] +["opendoar____::1603", "roar________::8038"] +["roar________::4233", "opendoar____::2330"] +["opendoar____::2349", "roar________::4218"] +["opendoar____::2282", "roar________::4209"] +["roar________::4208", "opendoar____::2289"] +["roar________::4192", "opendoar____::2270"] +["opendoar____::2275", "roar________::4191"] +["roar________::4166", "opendoar____::2261"] +["roar________::4136", "opendoar____::2241"] +["opendoar____::2255", "roar________::4125"] +["roar________::4120", "opendoar____::2236"] +["roar________::4101", "opendoar____::2232"] +["opendoar____::2218", "roar________::4059"] +["roar________::4058", "opendoar____::2220"] +["roar________::4056", "opendoar____::2217"] +["opendoar____::2222", "roar________::4055"] +["roar________::4032", "opendoar____::2208"] +["opendoar____::2200", "roar________::4006"] +["opendoar____::2201", "roar________::4005"] +["opendoar____::2196", "roar________::3995"] +["roar________::3991", "opendoar____::2195"] +["roar________::3965", "roar________::3989", "opendoar____::1451"] +["opendoar____::2189", "roar________::3978"] +["roar________::3977", "opendoar____::2191"] +["roar________::3974", "opendoar____::2226"] +["roar________::3953", "opendoar____::1256"] +["roar________::3891", "opendoar____::2168"] +["roar________::3865", "opendoar____::2163"] +["roar________::3863", "opendoar____::2158"] +["opendoar____::2164", "roar________::3864"] +["opendoar____::2161", "roar________::3860"] +["roar________::3844", "opendoar____::2154"] +["opendoar____::2182", "roar________::3823"] +["opendoar____::2150", "roar________::3808"] +["opendoar____::2144", "roar________::3805"] +["roar________::3803", "opendoar____::2146"] +["opendoar____::2143", "roar________::3802"] +["roar________::3795", "opendoar____::2177"] +["opendoar____::2140", "roar________::3788"] +["opendoar____::2174", "roar________::3784"] +["opendoar____::2131", "roar________::3771"] +["opendoar____::2126", "roar________::3770"] +["opendoar____::2129", "roar________::3768"] +["roar________::3755", "opendoar____::2115"] +["opendoar____::1227", "roar________::3753"] +["opendoar____::2136", "roar________::3737"] +["roar________::3712", "opendoar____::2110"] +["roar________::3710", "opendoar____::2119"] +["roar________::3703", "opendoar____::2097"] +["opendoar____::2117", "roar________::3692"] +["roar________::3690", "opendoar____::2156"] +["roar________::3686", "opendoar____::2102"] +["opendoar____::2197", "roar________::3676"] +["opendoar____::2108", "roar________::3671"] +["roar________::3646", "opendoar____::2078"] +["opendoar____::2080", "roar________::3640"] +["opendoar____::1351", "roar________::3604"] +["roar________::3594", "opendoar____::2120"] +["roar________::3590", "opendoar____::2071"] +["roar________::3585", "opendoar____::1121"] +["roar________::3572", "opendoar____::2049"] +["roar________::3563", "opendoar____::2114"] +["roar________::3561", "opendoar____::2145"] +["opendoar____::2138", "roar________::3559"] +["roar________::3544", "opendoar____::2103"] +["opendoar____::2041", "roar________::3511"] +["opendoar____::2032", "roar________::3509"] +["opendoar____::2696", "roar________::3501"] +["opendoar____::2173", "roar________::3497"] +["roar________::3493", "opendoar____::2039"] +["roar________::3487", "opendoar____::1352"] +["opendoar____::1356", "roar________::3485"] +["opendoar____::1995", "roar________::3483"] +["roar________::3472", "opendoar____::2013"] +["opendoar____::2024", "roar________::3465"] +["opendoar____::2021", "roar________::3454"] +["opendoar____::2026", "roar________::3424"] +["roar________::3415", "opendoar____::2003"] +["opendoar____::1096", "roar________::3413"] +["roar________::2336", "roar________::3414", "opendoar____::1343"] +["opendoar____::2011", "roar________::3412"] +["opendoar____::1361", "roar________::3409", "roar________::310"] +["opendoar____::1348", "roar________::3411"] +["roar________::3403", "opendoar____::2010"] +["roar________::3402", "opendoar____::1314"] +["opendoar____::1998", "roar________::3373"] +["opendoar____::2009", "roar________::3370"] +["opendoar____::2027", "roar________::3364"] +["roar________::3321", "opendoar____::1818", "roar________::2761"] +["opendoar____::2997", "roar________::3318"] +["roar________::3306", "opendoar____::1992"] +["opendoar____::1991", "roar________::3289"] +["roar________::3286", "opendoar____::1979"] +["opendoar____::1984", "roar________::3284"] +["roar________::3285", "opendoar____::1977"] +["roar________::3282", "opendoar____::1981"] +["opendoar____::1974", "roar________::3279"] +["roar________::3280", "opendoar____::1972"] +["opendoar____::1973", "roar________::3278"] +["opendoar____::1015", "roar________::3277"] +["opendoar____::1975", "roar________::3275"] +["roar________::3270", "opendoar____::2002"] +["roar________::3255", "opendoar____::1964"] +["roar________::3252", "opendoar____::1962"] +["roar________::3215", "opendoar____::1942"] +["roar________::3213", "opendoar____::1954"] +["roar________::3208", "opendoar____::1947"] +["roar________::3205", "opendoar____::1953"] +["opendoar____::1937", "roar________::3206"] +["opendoar____::1951", "roar________::3203"] +["opendoar____::1949", "roar________::3204"] +["opendoar____::1936", "roar________::3200"] +["roar________::3197", "opendoar____::1320"] +["opendoar____::1959", "roar________::3198"] +["roar________::3195", "opendoar____::1946"] +["roar________::3196", "opendoar____::1950"] +["opendoar____::1043", "roar________::3192"] +["roar________::3193", "opendoar____::1938"] +["roar________::3191", "opendoar____::1945"] +["roar________::3160", "opendoar____::1926"] +["roar________::3159", "opendoar____::1924"] +["roar________::3157", "opendoar____::1919"] +["roar________::3155", "opendoar____::1927"] +["roar________::3152", "opendoar____::1921"] +["opendoar____::1929", "roar________::3150"] +["roar________::3147", "opendoar____::1930"] +["roar________::3127", "opendoar____::2035"] +["opendoar____::677", "roar________::3121"] +["opendoar____::1907", "roar________::3120"] +["opendoar____::17", "roar________::3116"] +["roar________::3117", "opendoar____::1914"] +["opendoar____::1905", "roar________::3118"] +["roar________::3113", "opendoar____::1913"] +["roar________::3110", "opendoar____::428"] +["opendoar____::528", "roar________::3107"] +["opendoar____::1935", "roar________::3102"] +["roar________::3093", "roar________::2553", "opendoar____::1744"] +["opendoar____::720", "roar________::3090"] +["opendoar____::792", "roar________::3091"] +["opendoar____::287", "roar________::3086", "roar________::1207"] +["opendoar____::740", "roar________::3082"] +["roar________::3030", "opendoar____::1885"] +["roar________::3019", "opendoar____::1878"] +["opendoar____::1877", "roar________::3006"] +["roar________::2971", "roar________::2940", "opendoar____::1858"] +["roar________::665", "opendoar____::1615", "roar________::2970"] +["roar________::2948", "opendoar____::1863"] +["opendoar____::1421", "roar________::2873"] +["opendoar____::1849", "roar________::2863"] +["opendoar____::1850", "roar________::2861"] +["roar________::2855", "opendoar____::1839"] +["roar________::1151", "opendoar____::1442", "roar________::2836"] +["roar________::2787", "opendoar____::1830"] +["roar________::2783", "opendoar____::1823"] +["roar________::2766", "opendoar____::2095"] +["opendoar____::1807", "roar________::2741"] +["opendoar____::1804", "roar________::2740"] +["roar________::2739", "opendoar____::1806"] +["roar________::2738", "opendoar____::1796"] +["roar________::2737", "opendoar____::1800"] +["roar________::2736", "opendoar____::1808"] +["opendoar____::1803", "roar________::2732"] +["roar________::2730", "opendoar____::1812"] +["opendoar____::1805", "roar________::2731"] +["opendoar____::1797", "roar________::2729"] +["opendoar____::1801", "roar________::2728"] +["opendoar____::1795", "roar________::2727"] +["roar________::2726", "opendoar____::1810"] +["roar________::2725", "opendoar____::1802"] +["opendoar____::1798", "roar________::2724"] +["opendoar____::1799", "roar________::2722"] +["roar________::2709", "opendoar____::1840"] +["opendoar____::1789", "roar________::2706"] +["opendoar____::1782", "roar________::2704"] +["roar________::2702", "opendoar____::1790"] +["roar________::2700", "opendoar____::1791"] +["roar________::2696", "opendoar____::1792"] +["roar________::2694", "opendoar____::1793"] +["roar________::2660", "opendoar____::1836"] +["roar________::2654", "opendoar____::1086"] +["roar________::2651", "opendoar____::1774"] +["roar________::2637", "opendoar____::1908"] +["opendoar____::1762", "roar________::2609"] +["opendoar____::1761", "roar________::2607"] +["opendoar____::1764", "roar________::2606"] +["opendoar____::1758", "roar________::2595"] +["opendoar____::1739", "roar________::2557"] +["roar________::2556", "opendoar____::1748"] +["roar________::2555", "opendoar____::1750"] +["roar________::2554", "opendoar____::1740"] +["roar________::2550", "opendoar____::1742"] +["opendoar____::1747", "roar________::2552"] +["opendoar____::1746", "roar________::2547"] +["opendoar____::1743", "roar________::2548"] +["opendoar____::1741", "roar________::2545"] +["opendoar____::1745", "roar________::2546"] +["roar________::2432", "opendoar____::1712", "roar________::2532"] +["roar________::2525", "opendoar____::1737"] +["opendoar____::1729", "roar________::2505"] +["roar________::2493", "opendoar____::1738"] +["roar________::2490", "opendoar____::1724"] +["opendoar____::1725", "roar________::2472"] +["roar________::2463", "roar________::1137", "opendoar____::495"] +["opendoar____::1706", "roar________::2461"] +["roar________::2446", "opendoar____::1719"] +["roar________::2442", "opendoar____::1713"] +["roar________::2439", "opendoar____::671"] +["opendoar____::665", "roar________::2418"] +["opendoar____::299", "roar________::2419"] +["opendoar____::712", "roar________::2414"] +["opendoar____::684", "roar________::2411"] +["roar________::2399", "opendoar____::1011"] +["opendoar____::1337", "roar________::2396"] +["opendoar____::816", "roar________::2390"] +["roar________::2386", "opendoar____::280"] +["roar________::2387", "opendoar____::826"] +["opendoar____::2374", "roar________::400"] +["opendoar____::1854", "roar________::243"] +["roar________::1123", "opendoar____::1671"] +["roar________::282", "opendoar____::1672"] +["roar________::148", "opendoar____::1665"] +["opendoar____::1727", "roar________::1339"] +["roar________::1289", "opendoar____::1656"] +["roar________::1294", "opendoar____::1319"] +["opendoar____::1542", "roar________::485"] +["roar________::1368", "opendoar____::1626"] +["opendoar____::1594", "roar________::116"] +["opendoar____::1570", "roar________::388"] +["opendoar____::295", "roar________::1429"] +["opendoar____::1577", "roar________::938"] +["roar________::810", "opendoar____::1561"] +["roar________::1140", "opendoar____::1425"] +["opendoar____::1606", "roar________::124"] +["roar________::1022", "opendoar____::251"] +["roar________::857", "opendoar____::1414"] +["roar________::416", "opendoar____::1519"] +["roar________::290", "opendoar____::948"] +["opendoar____::1482", "roar________::128"] +["roar________::940", "opendoar____::1498"] +["roar________::1324", "opendoar____::1074"] +["opendoar____::1614", "roar________::121"] +["opendoar____::1087", "roar________::401"] +["opendoar____::1496", "roar________::1314"] +["opendoar____::1360", "roar________::560"] +["roar________::1408", "opendoar____::2612"] +["roar________::133", "opendoar____::1584"] +["opendoar____::1016", "roar________::1006"] +["opendoar____::1419", "roar________::892"] +["opendoar____::1214", "roar________::619"] +["roar________::451", "opendoar____::1397"] +["opendoar____::1372", "roar________::571"] +["roar________::1290", "opendoar____::1373"] +["roar________::265", "opendoar____::1381"] +["opendoar____::1155", "roar________::1159"] +["opendoar____::1342", "roar________::866"] +["roar________::986", "opendoar____::1202"] +["roar________::601", "opendoar____::1270"] +["roar________::600", "opendoar____::1289"] +["roar________::1391", "opendoar____::1249"] +["roar________::854", "opendoar____::1237"] +["roar________::1143", "opendoar____::1208"] +["opendoar____::1609", "roar________::1272"] +["roar________::1213", "opendoar____::1529"] +["roar________::453", "opendoar____::1115"] +["roar________::1081", "opendoar____::1223"] +["opendoar____::1123", "roar________::1063"] +["opendoar____::1132", "roar________::607"] +["opendoar____::1136", "roar________::613"] +["opendoar____::1757", "roar________::5115"] +["opendoar____::1008", "roar________::1398"] +["roar________::271", "opendoar____::1006"] +["roar________::1110", "opendoar____::929"] +["roar________::693", "opendoar____::940"] +["opendoar____::946", "roar________::422"] +["opendoar____::3484", "roar________::1459"] +["opendoar____::1203", "roar________::1195"] +["roar________::118", "opendoar____::731"] +["roar________::1221", "opendoar____::1137"] +["roar________::46", "opendoar____::394"] +["opendoar____::35", "roar________::180"] +["opendoar____::74", "roar________::275"] +["roar________::312", "opendoar____::426"] +["roar________::410", "opendoar____::452"] +["opendoar____::129", "roar________::469"] +["roar________::717", "opendoar____::192"] +["roar________::852", "opendoar____::214"] +["opendoar____::522", "roar________::856"] +["roar________::1208", "opendoar____::288"] +["roar________::1441", "opendoar____::356"] +["roar________::1509", "opendoar____::372"] +["roar________::113", "opendoar____::404"] +["opendoar____::451", "roar________::408"] +["opendoar____::530", "roar________::1529"] +["roar________::269", "opendoar____::418"] +["roar________::1597", "opendoar____::1345"] +["roar________::2287", "opendoar____::1680"] +["roar________::2325", "opendoar____::1435"] +["opendoar____::1296", "roar________::2333"] +["opendoar____::1704", "roar________::2339"] +["opendoar____::1446", "roar________::2345"] +["roar________::2363", "opendoar____::1705"] diff --git a/data/out/report.txt b/data/out/report.txt new file mode 100644 index 0000000..149bb3d --- /dev/null +++ b/data/out/report.txt @@ -0,0 +1,466 @@ +Merged Groups = 32 +Mutual Extention = 90 +Extention to registry group via dedup = 88 +Extention to dedup group via registry = 202 +Number of new groups without duplicates = 210 +Number of registry extentions without duplicates = 195 +Number Groups with at least one entry for each registry = 17 + + + +********** ENTRIES FROM ALL REGISTRY ************** + + +["opendoar____::394", "fairsharing_::2702", "re3data_____::r3d100010765", "roar________::46"] +["fairsharing_::2820", "re3data_____::r3d100013120", "opendoar____::10134", "roar________::17137"] +["roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006", "fairsharing_::2504"] +["roar________::1532", "opendoar____::375", "fairsharing_::2536", "re3data_____::r3d100010423"] +["opendoar____::9768", "fairsharing_::2768", "re3data_____::r3d100013177", "roar________::16302"] +["opendoar____::3593", "roar________::11294", "fairsharing_::3331", "re3data_____::r3d100011800", "opendoar____::3594"] +["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"] +["opendoar____::2294", "fairsharing_::2557", "re3data_____::r3d100010750", "roar________::4205"] +["fairsharing_::1562", "roar________::269", "re3data_____::r3d100010213", "opendoar____::418"] +["fairsharing_::3027", "re3data_____::r3d100012692", "roar________::854", "opendoar____::1237"] +["re3data_____::r3d100011191", "fairsharing_::3142", "opendoar____::129", "roar________::469"] +["opendoar____::3893", "roar________::12885", "re3data_____::r3d100010157", "fairsharing_::3041"] +["roar________::1290", "fairsharing_::1989", "re3data_____::r3d100010129", "opendoar____::1373"] +["re3data_____::r3d100011086", "opendoar____::3576", "roar________::10345", "fairsharing_::2295"] +["fairsharing_::2760", "roar________::13313", "opendoar____::4062", "re3data_____::r3d100012316"] +["fairsharing_::3327", "opendoar____::109", "roar________::390", "re3data_____::r3d100010620"] +["opendoar____::495", "re3data_____::r3d100010766", "roar________::1137", "fairsharing_::2980", "roar________::2463"] + + + +********** MUTUAL EXTENTION GROUPS ************** + + +[[["opendoar____::2963", "re3data_____::r3d100010191"], ["fairsharing_::2114", "re3data_____::r3d100010191"], ["re3data_____::r3d100010191"]]] +[[["re3data_____::r3d100013120", "opendoar____::10134", "roar________::17137"], ["re3data_____::r3d100013120", "fairsharing_::2820"], ["re3data_____::r3d100013120"]]] +[[["fairsharing_::2558", "opendoar____::4241"], ["re3data_____::r3d100012385", "fairsharing_::2558"], ["fairsharing_::2558"]]] +[[["opendoar____::9768", "fairsharing_::2768", "roar________::16302"], ["fairsharing_::2768", "re3data_____::r3d100013177"], ["fairsharing_::2768"]]] +[[["fairsharing_::2676", "opendoar____::4164"], ["re3data_____::r3d100011817", "fairsharing_::2676"], ["fairsharing_::2676"]]] +[[["re3data_____::r3d100010468", "opendoar____::2659"], ["fairsharing_::2358", "re3data_____::r3d100010468"], ["re3data_____::r3d100010468"]]] +[[["re3data_____::r3d100012673", "opendoar____::10197"], ["re3data_____::r3d100012673", "fairsharing_::2608"], ["re3data_____::r3d100012673"]]] +[[["fairsharing_::2537", "opendoar____::3739"], ["re3data_____::r3d100010216", "fairsharing_::2537"], ["fairsharing_::2537"]]] +[[["fairsharing_::3262", "opendoar____::10274"], ["re3data_____::r3d100013343", "fairsharing_::3262"], ["fairsharing_::3262"]]] +[[["re3data_____::r3d100011538", "re3data_____::r3d100010412"], ["re3data_____::r3d100011538", "fairsharing_::2424"], ["re3data_____::r3d100011538"]]] +[[["roar________::5792", "opendoar____::2553"], ["roar________::5792", "re3data_____::r3d100013722"], ["roar________::5792"]]] +[[["re3data_____::r3d100010599", "opendoar____::88"], ["roar________::399", "opendoar____::88"], ["opendoar____::88"]]] +[[["roar________::3591", "roar________::4695"], ["roar________::3591", "opendoar____::2373", "roar________::4562"], ["roar________::3591"]]] +[[["roar________::3038", "opendoar____::578"], ["roar________::5220", "opendoar____::578"], ["opendoar____::578"]]] +[[["opendoar____::5057", "opendoar____::1530"], ["roar________::914", "opendoar____::1530"], ["opendoar____::1530"]]] +[[["opendoar____::1658", "roar________::8709"], ["roar________::712", "opendoar____::1658"], ["opendoar____::1658"]]] +[[["opendoar____::2230", "roar________::5385"], ["opendoar____::2230", "roar________::4090"], ["opendoar____::2230"]]] +[[["re3data_____::r3d100010751", "opendoar____::1610"], ["roar________::466", "opendoar____::1610"], ["opendoar____::1610"]]] +[[["roar________::3495", "opendoar____::153"], ["opendoar____::153", "roar________::555"], ["opendoar____::153"]]] +[[["opendoar____::364", "roar________::15907"], ["opendoar____::364", "roar________::358"], ["opendoar____::364"]]] +[[["opendoar____::10050", "roar________::2819"], ["roar________::2819", "opendoar____::2840"], ["roar________::2819"]]] +[[["roar________::3390", "roar________::6694"], ["opendoar____::2645", "roar________::3390"], ["roar________::3390"]]] +[[["opendoar____::1488", "re3data_____::r3d100012414"], ["opendoar____::1488", "roar________::1129"], ["opendoar____::1488"]]] +[[["opendoar____::3", "re3data_____::r3d100012604", "roar________::5509"], ["roar________::1448", "opendoar____::3", "roar________::5509"], ["opendoar____::3", "roar________::5509"]]] +[[["roar________::5561", "re3data_____::r3d100013102"], ["opendoar____::518", "roar________::5561", "roar________::1528"], ["roar________::5561"]]] +[[["opendoar____::61", "roar________::5623", "roar________::222"], ["opendoar____::61", "roar________::221", "roar________::5623"], ["opendoar____::61", "roar________::5623"]]] +[[["opendoar____::1525", "roar________::3555", "roar________::4437"], ["opendoar____::1525", "roar________::486", "roar________::3555"], ["opendoar____::1525", "roar________::3555"]]] +[[["opendoar____::232", "opendoar____::1104"], ["opendoar____::232", "roar________::954"], ["opendoar____::232"]]] +[[["roar________::4320", "opendoar____::5091"], ["opendoar____::2364", "roar________::4320"], ["roar________::4320"]]] +[[["re3data_____::r3d100011202", "opendoar____::956"], ["roar________::4973", "opendoar____::956"], ["opendoar____::956"]]] +[[["roar________::4273", "roar________::4369"], ["opendoar____::2325", "roar________::4273"], ["roar________::4273"]]] +[[["re3data_____::r3d100012564", "opendoar____::2829"], ["roar________::2964", "opendoar____::2829"], ["opendoar____::2829"]]] +[[["roar________::15", "roar________::16"], ["roar________::15", "opendoar____::538", "roar________::2329"], ["roar________::15"]]] +[[["opendoar____::157", "roar________::833"], ["roar________::2424", "opendoar____::157"], ["opendoar____::157"]]] +[[["re3data_____::r3d100013445", "roar________::1193"], ["opendoar____::1329", "roar________::1193"], ["roar________::1193"]]] +[[["roar________::8237", "roar________::73"], ["opendoar____::1261", "roar________::73"], ["roar________::73"]]] +[[["fairsharing_::3108", "opendoar____::2377"], ["roar________::5642", "opendoar____::2377"], ["opendoar____::2377"]]] +[[["roar________::870", "roar________::5466"], ["opendoar____::523", "roar________::5466"], ["roar________::5466"]]] +[[["roar________::4821", "roar________::4559"], ["roar________::4559", "opendoar____::2821"], ["roar________::4559"]]] +[[["re3data_____::r3d100013030", "opendoar____::1560"], ["opendoar____::1560", "roar________::1127"], ["opendoar____::1560"]]] +[[["roar________::5411", "opendoar____::1236"], ["opendoar____::1236", "roar________::3212"], ["opendoar____::1236"]]] +[[["opendoar____::9400", "roar________::6724"], ["opendoar____::215", "roar________::6724"], ["roar________::6724"]]] +[[["opendoar____::738", "re3data_____::r3d100013575"], ["opendoar____::738", "roar________::3281"], ["opendoar____::738"]]] +[[["re3data_____::r3d100011091", "opendoar____::793", "roar________::8289"], ["opendoar____::793", "roar________::8289", "roar________::1042"], ["opendoar____::793", "roar________::8289"]]] +[[["opendoar____::267", "fairsharing_::1987"], ["opendoar____::267", "roar________::1046"], ["opendoar____::267"]]] +[[["opendoar____::1613", "roar________::3681"], ["opendoar____::2106", "roar________::3681"], ["roar________::3681"]]] +[[["opendoar____::723", "roar________::3610"], ["opendoar____::2067", "roar________::3610"], ["roar________::3610"]]] +[[["roar________::16195", "opendoar____::4869"], ["roar________::16195", "opendoar____::15294"], ["roar________::16195"]]] +[[["opendoar____::9506", "roar________::15718"], ["opendoar____::9506", "roar________::16183"], ["opendoar____::9506"]]] +[[["roar________::16225", "roar________::15610", "opendoar____::9479"], ["roar________::16225", "opendoar____::9479", "roar________::16180"], ["roar________::16225", "opendoar____::9479"]]] +[[["opendoar____::9662", "roar________::16074"], ["roar________::16098", "opendoar____::9662"], ["opendoar____::9662"]]] +[[["roar________::15268", "roar________::16042"], ["opendoar____::3401", "roar________::15268"], ["roar________::15268"]]] +[[["roar________::15139", "roar________::15142"], ["opendoar____::4422", "roar________::15142"], ["roar________::15142"]]] +[[["roar________::13965", "opendoar____::4065"], ["roar________::13965", "opendoar____::4064"], ["roar________::13965"]]] +[[["opendoar____::3925", "re3data_____::r3d100012440"], ["opendoar____::3925", "roar________::13092"], ["opendoar____::3925"]]] +[[["opendoar____::3904", "roar________::13135"], ["opendoar____::3904", "roar________::12440"], ["opendoar____::3904"]]] +[[["roar________::11933", "roar________::12453"], ["roar________::11933", "opendoar____::3840"], ["roar________::11933"]]] +[[["opendoar____::5487", "roar________::11209"], ["opendoar____::2536", "roar________::5750", "roar________::11209"], ["roar________::11209"]]] +[[["opendoar____::1958", "roar________::16077"], ["opendoar____::1958", "roar________::10255"], ["opendoar____::1958"]]] +[[["opendoar____::3460", "roar________::17601"], ["opendoar____::3460", "roar________::10244", "roar________::10243"], ["opendoar____::3460"]]] +[[["roar________::10109", "opendoar____::3462"], ["roar________::10109", "opendoar____::3463"], ["roar________::10109"]]] +[[["roar________::9705", "opendoar____::3319"], ["roar________::9647", "opendoar____::3319"], ["opendoar____::3319"]]] +[[["roar________::9531", "opendoar____::3284"], ["roar________::9531", "opendoar____::CUDI"], ["roar________::9531"]]] +[[["re3data_____::r3d100012866", "roar________::9057"], ["roar________::9057", "opendoar____::3721"], ["roar________::9057"]]] +[[["roar________::15285", "roar________::8928"], ["roar________::8928", "opendoar____::3409"], ["roar________::8928"]]] +[[["roar________::8877", "roar________::8879"], ["opendoar____::3177", "roar________::8877"], ["roar________::8877"]]] +[[["roar________::8798", "roar________::8812"], ["roar________::8798", "opendoar____::3150"], ["roar________::8798"]]] +[[["roar________::14836", "opendoar____::3112"], ["roar________::8672", "opendoar____::3112"], ["opendoar____::3112"]]] +[[["roar________::8405", "roar________::8716"], ["roar________::8405", "opendoar____::3078"], ["roar________::8405"]]] +[[["opendoar____::3183", "roar________::8952"], ["roar________::8353", "opendoar____::3183"], ["opendoar____::3183"]]] +[[["roar________::8316", "roar________::11060"], ["opendoar____::3111", "roar________::8316"], ["roar________::8316"]]] +[[["roar________::8003", "roar________::7943"], ["roar________::7943", "opendoar____::2725"], ["roar________::7943"]]] +[[["roar________::7486", "opendoar____::2844"], ["roar________::7374", "opendoar____::2844"], ["opendoar____::2844"]]] +[[["roar________::7161", "roar________::7151"], ["roar________::7151", "opendoar____::2722"], ["roar________::7151"]]] +[[["opendoar____::2151", "roar________::6485", "opendoar____::4642"], ["opendoar____::2151", "roar________::6485", "roar________::3810"], ["opendoar____::2151", "roar________::6485"]]] +[[["roar________::7244", "roar________::6334"], ["opendoar____::2769", "roar________::6334"], ["roar________::6334"]]] +[[["roar________::6212", "opendoar____::2619"], ["opendoar____::5116", "roar________::6212"], ["roar________::6212"]]] +[[["opendoar____::2969", "opendoar____::2546"], ["roar________::5747", "opendoar____::2546"], ["opendoar____::2546"]]] +[[["opendoar____::2519", "roar________::17002"], ["opendoar____::2519", "roar________::5652"], ["opendoar____::2519"]]] +[[["opendoar____::678", "re3data_____::r3d100012060"], ["roar________::5502", "opendoar____::678"], ["opendoar____::678"]]] +[[["roar________::8772", "opendoar____::2112", "roar________::3597"], ["roar________::3597", "opendoar____::2112", "roar________::5071"], ["opendoar____::2112", "roar________::3597"]]] +[[["roar________::5027", "roar________::5028"], ["opendoar____::2444", "roar________::5027"], ["roar________::5027"]]] +[[["roar________::4975", "opendoar____::3499"], ["roar________::4975", "opendoar____::898"], ["roar________::4975"]]] +[[["roar________::13988", "opendoar____::1044"], ["opendoar____::1044", "roar________::4688"], ["opendoar____::1044"]]] +[[["roar________::4245", "roar________::4304"], ["opendoar____::2314", "roar________::4245"], ["roar________::4245"]]] +[[["roar________::5037", "roar________::3286"], ["opendoar____::1979", "roar________::3286"], ["roar________::3286"]]] +[[["roar________::2730", "roar________::2716"], ["roar________::2730", "opendoar____::1812"], ["roar________::2730"]]] +[[["re3data_____::r3d100013242", "opendoar____::1606"], ["opendoar____::1606", "roar________::124"], ["opendoar____::1606"]]] +[[["roar________::133", "roar________::2665"], ["opendoar____::1584", "roar________::133"], ["roar________::133"]]] +[[["opendoar____::3484", "roar________::10326"], ["opendoar____::3484", "roar________::1459"], ["opendoar____::3484"]]] + + + +********** MERGING EXTENTION GROUPS ************** + + +[[["re3data_____::r3d100010765", "opendoar____::394", "roar________::46", "fairsharing_::2702"], ["re3data_____::r3d100010765", "fairsharing_::2702"], ["re3data_____::r3d100010765", "fairsharing_::2702"]], [["re3data_____::r3d100010765", "opendoar____::394", "roar________::46", "fairsharing_::2702"], ["opendoar____::394", "roar________::46"], ["opendoar____::394", "roar________::46"]]] +[[["fairsharing_::2504", "roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006"], ["fairsharing_::2504", "re3data_____::r3d100000006"], ["fairsharing_::2504", "re3data_____::r3d100000006"]], [["fairsharing_::2504", "roar________::5552", "opendoar____::1578", "re3data_____::r3d100000006"], ["roar________::5552", "opendoar____::1578"], ["roar________::5552", "opendoar____::1578"]]] +[[["opendoar____::375", "re3data_____::r3d100010423", "fairsharing_::2536"], ["re3data_____::r3d100010423", "fairsharing_::2536"], ["re3data_____::r3d100010423", "fairsharing_::2536"]], [["opendoar____::375", "re3data_____::r3d100010423", "fairsharing_::2536"], ["roar________::1532", "opendoar____::375"], ["opendoar____::375"]]] +[[["opendoar____::3593", "fairsharing_::3331", "re3data_____::r3d100011800", "roar________::11294", "opendoar____::3594"], ["fairsharing_::3331", "re3data_____::r3d100011800"], ["fairsharing_::3331", "re3data_____::r3d100011800"]], [["opendoar____::3593", "fairsharing_::3331", "re3data_____::r3d100011800", "roar________::11294", "opendoar____::3594"], ["roar________::11294", "opendoar____::3594"], ["roar________::11294", "opendoar____::3594"]]] +[[["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"], ["re3data_____::r3d100011230", "fairsharing_::2326"], ["re3data_____::r3d100011230", "fairsharing_::2326"]], [["fairsharing_::2326", "re3data_____::r3d100011230", "opendoar____::1064", "roar________::992"], ["opendoar____::1064", "roar________::992"], ["opendoar____::1064", "roar________::992"]]] +[[["fairsharing_::2557", "roar________::4205", "opendoar____::2294"], ["fairsharing_::2557", "re3data_____::r3d100010750"], ["fairsharing_::2557"]], [["fairsharing_::2557", "roar________::4205", "opendoar____::2294"], ["roar________::4205", "opendoar____::2294"], ["roar________::4205", "opendoar____::2294"]]] +[[["fairsharing_::1562", "re3data_____::r3d100010213", "roar________::269", "opendoar____::418"], ["fairsharing_::1562", "re3data_____::r3d100010213"], ["fairsharing_::1562", "re3data_____::r3d100010213"]], [["fairsharing_::1562", "re3data_____::r3d100010213", "roar________::269", "opendoar____::418"], ["roar________::269", "opendoar____::418"], ["roar________::269", "opendoar____::418"]]] +[[["opendoar____::1237", "fairsharing_::3027", "re3data_____::r3d100012692"], ["fairsharing_::3027", "re3data_____::r3d100012692"], ["fairsharing_::3027", "re3data_____::r3d100012692"]], [["opendoar____::1237", "fairsharing_::3027", "re3data_____::r3d100012692"], ["roar________::854", "opendoar____::1237"], ["opendoar____::1237"]]] +[[["re3data_____::r3d100011191", "opendoar____::129"], ["re3data_____::r3d100011191", "fairsharing_::3142"], ["re3data_____::r3d100011191"]], [["re3data_____::r3d100011191", "opendoar____::129"], ["roar________::469", "opendoar____::129"], ["opendoar____::129"]]] +[[["opendoar____::3893", "roar________::12885", "fairsharing_::3041"], ["re3data_____::r3d100010157", "fairsharing_::3041"], ["fairsharing_::3041"]], [["opendoar____::3893", "roar________::12885", "fairsharing_::3041"], ["opendoar____::3893", "roar________::12885"], ["opendoar____::3893", "roar________::12885"]]] +[[["opendoar____::1373", "fairsharing_::1989", "re3data_____::r3d100010129"], ["fairsharing_::1989", "re3data_____::r3d100010129"], ["fairsharing_::1989", "re3data_____::r3d100010129"]], [["opendoar____::1373", "fairsharing_::1989", "re3data_____::r3d100010129"], ["roar________::1290", "opendoar____::1373"], ["opendoar____::1373"]]] +[[["fairsharing_::2295", "opendoar____::3576"], ["re3data_____::r3d100011086", "fairsharing_::2295"], ["fairsharing_::2295"]], [["fairsharing_::2295", "opendoar____::3576"], ["roar________::10345", "opendoar____::3576"], ["opendoar____::3576"]]] +[[["opendoar____::4062", "re3data_____::r3d100012316", "fairsharing_::2760", "roar________::13313"], ["re3data_____::r3d100012316", "fairsharing_::2760"], ["re3data_____::r3d100012316", "fairsharing_::2760"]], [["opendoar____::4062", "re3data_____::r3d100012316", "fairsharing_::2760", "roar________::13313"], ["opendoar____::4062", "roar________::13313"], ["opendoar____::4062", "roar________::13313"]]] +[[["fairsharing_::3327", "opendoar____::109"], ["fairsharing_::3327", "re3data_____::r3d100010620"], ["fairsharing_::3327"]], [["fairsharing_::3327", "opendoar____::109"], ["roar________::390", "opendoar____::109"], ["opendoar____::109"]]] +[[["opendoar____::495", "roar________::2463", "re3data_____::r3d100010766"], ["re3data_____::r3d100010766", "fairsharing_::2980"], ["re3data_____::r3d100010766"]], [["opendoar____::495", "roar________::2463", "re3data_____::r3d100010766"], ["roar________::1137", "opendoar____::495", "roar________::2463"], ["opendoar____::495", "roar________::2463"]]] +[[["roar________::5212", "opendoar____::2473", "re3data_____::r3d100013537"], ["roar________::5212", "re3data_____::r3d100013537"], ["roar________::5212", "re3data_____::r3d100013537"]], [["roar________::5212", "opendoar____::2473", "re3data_____::r3d100013537"], ["roar________::5222", "opendoar____::2473"], ["opendoar____::2473"]]] +[[["roar________::778", "re3data_____::r3d100010094"], ["opendoar____::186144", "re3data_____::r3d100010094"], ["re3data_____::r3d100010094"]], [["roar________::778", "re3data_____::r3d100010094"], ["opendoar____::2247", "roar________::778"], ["roar________::778"]]] +[[["roar________::16494", "roar________::10970", "roar________::16495", "opendoar____::4706"], ["re3data_____::r3d100013450", "roar________::10970", "opendoar____::4706"], ["roar________::10970", "opendoar____::4706"]], [["roar________::16494", "roar________::10970", "roar________::16495", "opendoar____::4706"], ["roar________::16494", "opendoar____::3793", "roar________::16495"], ["roar________::16494", "roar________::16495"]]] +[[["roar________::4562", "opendoar____::2115"], ["roar________::3591", "opendoar____::2373", "roar________::4562"], ["roar________::4562"]], [["roar________::4562", "opendoar____::2115"], ["roar________::3755", "opendoar____::2115"], ["opendoar____::2115"]]] +[[["roar________::4959", "opendoar____::1896"], ["roar________::3059", "opendoar____::1896"], ["opendoar____::1896"]], [["roar________::4959", "opendoar____::1896"], ["roar________::4959", "opendoar____::2274"], ["roar________::4959"]]] +[[["opendoar____::3332", "opendoar____::3238", "opendoar____::1059"], ["roar________::2518", "opendoar____::1059"], ["opendoar____::1059"]], [["opendoar____::3332", "opendoar____::3238", "opendoar____::1059"], ["opendoar____::3332", "roar________::9724"], ["opendoar____::3332"]]] +[[["roar________::976", "roar________::978"], ["opendoar____::241", "roar________::978"], ["roar________::978"]], [["roar________::976", "roar________::978"], ["opendoar____::239", "roar________::976", "roar________::5221", "roar________::2328"], ["roar________::976"]]] +[[["roar________::5567", "opendoar____::546"], ["opendoar____::546", "roar________::569"], ["opendoar____::546"]], [["roar________::5567", "opendoar____::546"], ["opendoar____::2497", "roar________::5567"], ["roar________::5567"]]] +[[["roar________::2510", "roar________::4671", "opendoar____::1736"], ["roar________::2510", "opendoar____::1736"], ["roar________::2510", "opendoar____::1736"]], [["roar________::2510", "roar________::4671", "opendoar____::1736"], ["opendoar____::2133", "roar________::4671"], ["roar________::4671"]]] +[[["roar________::8", "roar________::5"], ["roar________::2341", "opendoar____::259", "roar________::5"], ["roar________::5"]], [["roar________::8", "roar________::5"], ["opendoar____::261", "roar________::2321", "roar________::8"], ["roar________::8"]]] +[[["roar________::5439", "roar________::2705"], ["opendoar____::2493", "roar________::5439"], ["roar________::5439"]], [["roar________::5439", "roar________::2705"], ["roar________::2705", "opendoar____::1779"], ["roar________::2705"]]] +[[["roar________::2674", "roar________::1558", "roar________::892"], ["opendoar____::1825", "roar________::2674"], ["roar________::2674"]], [["roar________::2674", "roar________::1558", "roar________::892"], ["roar________::892", "opendoar____::1419"], ["roar________::892"]]] +[[["opendoar____::1941", "roar________::11092"], ["opendoar____::1941", "roar________::3210"], ["opendoar____::1941"]], [["opendoar____::1941", "roar________::11092"], ["opendoar____::3771", "roar________::11092"], ["roar________::11092"]]] +[[["roar________::2741", "roar________::2670", "roar________::2698"], ["opendoar____::1781", "roar________::2670", "roar________::2698"], ["roar________::2670", "roar________::2698"]], [["roar________::2741", "roar________::2670", "roar________::2698"], ["opendoar____::1807", "roar________::2741"], ["roar________::2741"]]] +[[["roar________::1041", "roar________::1043", "roar________::1042"], ["roar________::1041", "opendoar____::266"], ["roar________::1041"]], [["roar________::1041", "roar________::1043", "roar________::1042"], ["opendoar____::793", "roar________::8289", "roar________::1042"], ["roar________::1042"]]] +[[["roar________::2421", "roar________::6466", "roar________::2768", "opendoar____::1967"], ["roar________::5682", "roar________::6466", "opendoar____::1967"], ["roar________::6466", "opendoar____::1967"]], [["roar________::2421", "roar________::6466", "roar________::2768", "opendoar____::1967"], ["roar________::2421", "roar________::2784", "opendoar____::1696", "roar________::2551"], ["roar________::2421"]]] +[[["roar________::2725", "roar________::2704"], ["opendoar____::1802", "roar________::2725"], ["roar________::2725"]], [["roar________::2725", "roar________::2704"], ["roar________::2704", "opendoar____::1782"], ["roar________::2704"]]] + + + +********** DEDUP EXTENTION GROUPS ************** + + +[[["fairsharing_::2560", "re3data_____::r3d100011201", "opendoar____::4194"], ["fairsharing_::2560", "re3data_____::r3d100011201"], ["fairsharing_::2560", "re3data_____::r3d100011201"]]] +[[["fairsharing_::2542", "opendoar____::10329", "re3data_____::r3d100010691"], ["fairsharing_::2542", "re3data_____::r3d100010691"], ["fairsharing_::2542", "re3data_____::r3d100010691"]]] +[[["re3data_____::r3d100011805", "opendoar____::10062", "fairsharing_::3009"], ["re3data_____::r3d100011805", "fairsharing_::3009"], ["re3data_____::r3d100011805", "fairsharing_::3009"]]] +[[["re3data_____::r3d100012397", "fairsharing_::2524", "re3data_____::r3d100013223"], ["re3data_____::r3d100012397", "fairsharing_::2524"], ["re3data_____::r3d100012397", "fairsharing_::2524"]]] +[[["re3data_____::r3d100010066", "fairsharing_::1843", "opendoar____::2073"], ["re3data_____::r3d100010066", "fairsharing_::1843"], ["re3data_____::r3d100010066", "fairsharing_::1843"]]] +[[["re3data_____::r3d100011108", "fairsharing_::2778", "opendoar____::5870"], ["re3data_____::r3d100011108", "fairsharing_::2778"], ["re3data_____::r3d100011108", "fairsharing_::2778"]]] +[[["re3data_____::r3d100012435", "fairsharing_::2303", "opendoar____::4166"], ["fairsharing_::2303", "re3data_____::r3d100012435"], ["re3data_____::r3d100012435", "fairsharing_::2303"]]] +[[["fairsharing_::3080", "re3data_____::r3d100011898", "opendoar____::4344"], ["fairsharing_::3080", "re3data_____::r3d100011898"], ["fairsharing_::3080", "re3data_____::r3d100011898"]]] +[[["fairsharing_::2372", "opendoar____::4296", "re3data_____::r3d100010101"], ["fairsharing_::2372", "re3data_____::r3d100010101"], ["fairsharing_::2372", "re3data_____::r3d100010101"]]] +[[["fairsharing_::2452", "opendoar____::2954", "re3data_____::r3d100010051"], ["fairsharing_::2452", "re3data_____::r3d100010051"], ["fairsharing_::2452", "re3data_____::r3d100010051"]]] +[[["re3data_____::r3d100011890", "fairsharing_::2584", "opendoar____::10026"], ["re3data_____::r3d100011890", "fairsharing_::2584"], ["re3data_____::r3d100011890", "fairsharing_::2584"]]] +[[["opendoar____::3881", "re3data_____::r3d100011868", "fairsharing_::2453"], ["re3data_____::r3d100011868", "fairsharing_::2453"], ["re3data_____::r3d100011868", "fairsharing_::2453"]]] +[[["fairsharing_::2864", "re3data_____::r3d100000005", "opendoar____::2731"], ["fairsharing_::2864", "re3data_____::r3d100000005"], ["fairsharing_::2864", "re3data_____::r3d100000005"]]] +[[["opendoar____::10171", "re3data_____::r3d100012538", "fairsharing_::2955"], ["re3data_____::r3d100012538", "fairsharing_::2955"], ["re3data_____::r3d100012538", "fairsharing_::2955"]]] +[[["opendoar____::10272", "fairsharing_::3333", "re3data_____::r3d100013271"], ["fairsharing_::3333", "re3data_____::r3d100013271"], ["fairsharing_::3333", "re3data_____::r3d100013271"]]] +[[["opendoar____::3054", "fairsharing_::2508", "re3data_____::r3d100010734"], ["fairsharing_::2508", "re3data_____::r3d100010734"], ["fairsharing_::2508", "re3data_____::r3d100010734"]]] +[[["re3data_____::r3d100010078", "fairsharing_::3144", "roar________::3887"], ["re3data_____::r3d100010078", "fairsharing_::3144"], ["re3data_____::r3d100010078", "fairsharing_::3144"]]] +[[["re3data_____::r3d100013348", "roar________::11835", "opendoar____::9625"], ["re3data_____::r3d100013348", "opendoar____::9625"], ["opendoar____::9625", "re3data_____::r3d100013348"]]] +[[["opendoar____::1404", "re3data_____::r3d100013465", "roar________::10452"], ["opendoar____::1404", "re3data_____::r3d100013465"], ["opendoar____::1404", "re3data_____::r3d100013465"]]] +[[["re3data_____::r3d100013546", "roar________::1171", "opendoar____::605"], ["roar________::1171", "opendoar____::605"], ["roar________::1171", "opendoar____::605"]]] +[[["opendoar____::2447", "roar________::4442", "roar________::5051"], ["opendoar____::2447", "roar________::5051"], ["opendoar____::2447", "roar________::5051"]]] +[[["opendoar____::4395", "opendoar____::961", "roar________::631"], ["opendoar____::961", "roar________::631"], ["opendoar____::961", "roar________::631"]]] +[[["opendoar____::8789", "roar________::490", "opendoar____::134"], ["roar________::490", "opendoar____::134"], ["roar________::490", "opendoar____::134"]]] +[[["re3data_____::r3d100012232", "roar________::1240", "opendoar____::305"], ["roar________::1240", "opendoar____::305"], ["roar________::1240", "opendoar____::305"]]] +[[["roar________::1386", "re3data_____::r3d100013116", "opendoar____::882"], ["opendoar____::882", "roar________::1386"], ["opendoar____::882", "roar________::1386"]]] +[[["roar________::4377", "roar________::4274", "opendoar____::2303"], ["roar________::4274", "opendoar____::2303"], ["roar________::4274", "opendoar____::2303"]]] +[[["opendoar____::2311", "roar________::4268", "roar________::4374"], ["opendoar____::2311", "roar________::4268"], ["opendoar____::2311", "roar________::4268"]]] +[[["roar________::3592", "roar________::4585", "roar________::2617", "opendoar____::2379", "roar________::3693"], ["roar________::2617", "opendoar____::2379"], ["opendoar____::2379", "roar________::2617"]]] +[[["roar________::814", "opendoar____::206", "re3data_____::r3d100011218"], ["roar________::814", "opendoar____::206"], ["roar________::814", "opendoar____::206"]]] +[[["opendoar____::606", "roar________::143", "re3data_____::r3d100011169"], ["opendoar____::606", "roar________::143"], ["opendoar____::606", "roar________::143"]]] +[[["opendoar____::322", "roar________::1363", "re3data_____::r3d100012417"], ["opendoar____::322", "roar________::1363"], ["opendoar____::322", "roar________::1363"]]] +[[["opendoar____::1035", "roar________::9708", "roar________::9715"], ["opendoar____::1035", "roar________::9708"], ["opendoar____::1035", "roar________::9708"]]] +[[["roar________::5297", "roar________::5578", "opendoar____::2491"], ["roar________::5578", "opendoar____::2491"], ["roar________::5578", "opendoar____::2491"]]] +[[["roar________::3996", "opendoar____::2223", "opendoar____::4920"], ["roar________::3996", "opendoar____::2223"], ["roar________::3996", "opendoar____::2223"]]] +[[["roar________::4270", "roar________::4354", "opendoar____::2305"], ["roar________::4270", "opendoar____::2305"], ["roar________::4270", "opendoar____::2305"]]] +[[["opendoar____::2323", "roar________::4352", "roar________::4353"], ["opendoar____::2323", "roar________::4352"], ["opendoar____::2323", "roar________::4352"]]] +[[["opendoar____::1957", "roar________::3217", "roar________::2634"], ["opendoar____::1957", "roar________::3217"], ["roar________::3217", "opendoar____::1957"]]] +[[["roar________::4266", "roar________::4379", "opendoar____::2306"], ["roar________::4266", "opendoar____::2306"], ["roar________::4266", "opendoar____::2306"]]] +[[["roar________::4370", "roar________::4262", "roar________::4371", "opendoar____::2298"], ["roar________::4262", "opendoar____::2298"], ["roar________::4262", "opendoar____::2298"]]] +[[["roar________::539", "roar________::2945", "roar________::3111", "opendoar____::1271"], ["roar________::539", "opendoar____::1271", "roar________::3111"], ["roar________::539", "opendoar____::1271", "roar________::3111"]]] +[[["roar________::2973", "re3data_____::r3d100013225", "opendoar____::427"], ["roar________::2973", "opendoar____::427"], ["roar________::2973", "opendoar____::427"]]] +[[["roar________::4996", "opendoar____::990", "roar________::652"], ["opendoar____::990", "roar________::4996"], ["roar________::4996", "opendoar____::990"]]] +[[["re3data_____::r3d100011181", "roar________::302", "opendoar____::430"], ["roar________::302", "opendoar____::430"], ["roar________::302", "opendoar____::430"]]] +[[["roar________::349", "opendoar____::650", "re3data_____::r3d100012596"], ["roar________::349", "opendoar____::650"], ["roar________::349", "opendoar____::650"]]] +[[["opendoar____::1330", "roar________::756", "roar________::5487", "re3data_____::r3d100010690"], ["opendoar____::1330", "roar________::756", "roar________::5487"], ["opendoar____::1330", "roar________::756", "roar________::5487"]]] +[[["opendoar____::1469", "roar________::4616", "re3data_____::r3d100011274", "roar________::288"], ["opendoar____::1469", "roar________::4616", "roar________::288"], ["opendoar____::1469", "roar________::4616", "roar________::288"]]] +[[["opendoar____::1106", "re3data_____::r3d100011076", "roar________::321"], ["opendoar____::1106", "roar________::321"], ["opendoar____::1106", "roar________::321"]]] +[[["roar________::6102", "roar________::2462", "opendoar____::1715"], ["roar________::2462", "opendoar____::1715"], ["roar________::2462", "opendoar____::1715"]]] +[[["opendoar____::4320", "roar________::4745", "opendoar____::2429"], ["roar________::4745", "opendoar____::2429"], ["roar________::4745", "opendoar____::2429"]]] +[[["roar________::3911", "re3data_____::r3d100012376", "opendoar____::1510"], ["roar________::3911", "opendoar____::1510"], ["roar________::3911", "opendoar____::1510"]]] +[[["roar________::3052", "roar________::8703", "opendoar____::1890"], ["roar________::3052", "opendoar____::1890"], ["roar________::3052", "opendoar____::1890"]]] +[[["roar________::766", "roar________::5557", "opendoar____::1649", "roar________::3933"], ["roar________::766", "roar________::5557", "opendoar____::1649"], ["roar________::5557", "roar________::766", "opendoar____::1649"]]] +[[["roar________::13098", "opendoar____::1406", "roar________::1086"], ["roar________::1086", "opendoar____::1406"], ["opendoar____::1406", "roar________::1086"]]] +[[["re3data_____::r3d100013442", "opendoar____::2718", "roar________::6686"], ["opendoar____::2718", "roar________::6686"], ["opendoar____::2718", "roar________::6686"]]] +[[["re3data_____::r3d100012578", "roar________::11303", "opendoar____::3596"], ["roar________::11303", "opendoar____::3596"], ["roar________::11303", "opendoar____::3596"]]] +[[["roar________::2404", "opendoar____::1453", "roar________::157"], ["roar________::2404", "opendoar____::1453"], ["roar________::2404", "opendoar____::1453"]]] +[[["roar________::4315", "re3data_____::r3d100011183", "opendoar____::2370"], ["roar________::4315", "opendoar____::2370"], ["roar________::4315", "opendoar____::2370"]]] +[[["roar________::6427", "roar________::7269", "opendoar____::2771"], ["roar________::6427", "opendoar____::2771"], ["roar________::6427", "opendoar____::2771"]]] +[[["roar________::4358", "roar________::4263", "opendoar____::2300"], ["roar________::4263", "opendoar____::2300"], ["roar________::4263", "opendoar____::2300"]]] +[[["roar________::15775", "re3data_____::r3d100012394", "opendoar____::3529"], ["opendoar____::3529", "roar________::15775"], ["opendoar____::3529", "roar________::15775"]]] +[[["roar________::15765", "roar________::15805", "opendoar____::9528"], ["roar________::15765", "opendoar____::9528"], ["roar________::15765", "opendoar____::9528"]]] +[[["roar________::14929", "roar________::16263", "opendoar____::3820", "opendoar____::5226"], ["roar________::14929", "roar________::16263", "opendoar____::3820"], ["roar________::14929", "roar________::16263", "opendoar____::3820"]]] +[[["roar________::12499", "roar________::12517", "opendoar____::3972"], ["roar________::12499", "opendoar____::3972"], ["roar________::12499", "opendoar____::3972"]]] +[[["re3data_____::r3d100012285", "opendoar____::3824", "roar________::12405"], ["opendoar____::3824", "roar________::12405"], ["opendoar____::3824", "roar________::12405"]]] +[[["roar________::11684", "re3data_____::r3d100011654", "opendoar____::3722"], ["roar________::11684", "opendoar____::3722"], ["roar________::11684", "opendoar____::3722"]]] +[[["re3data_____::r3d100012051", "roar________::11444", "opendoar____::3128"], ["roar________::11444", "opendoar____::3128"], ["roar________::11444", "opendoar____::3128"]]] +[[["fairsharing_::2603", "roar________::9762", "opendoar____::3342"], ["roar________::9762", "opendoar____::3342"], ["roar________::9762", "opendoar____::3342"]]] +[[["roar________::9507", "roar________::9474", "re3data_____::r3d100012347", "opendoar____::3316"], ["roar________::9474", "opendoar____::3316"], ["roar________::9474", "opendoar____::3316"]]] +[[["roar________::9276", "roar________::9094", "opendoar____::3199"], ["roar________::9094", "opendoar____::3199"], ["roar________::9094", "opendoar____::3199"]]] +[[["opendoar____::3096", "roar________::8677", "roar________::12182"], ["opendoar____::3096", "roar________::8677"], ["opendoar____::3096", "roar________::8677"]]] +[[["opendoar____::3087", "roar________::8504", "opendoar____::4500"], ["opendoar____::3087", "roar________::8504"], ["opendoar____::3087", "roar________::8504"]]] +[[["roar________::7338", "opendoar____::2858", "roar________::7367"], ["roar________::7338", "opendoar____::2858"], ["roar________::7338", "opendoar____::2858"]]] +[[["roar________::7005", "roar________::7056", "opendoar____::2070"], ["roar________::7005", "opendoar____::2070"], ["roar________::7005", "opendoar____::2070"]]] +[[["roar________::6167", "opendoar____::2717", "roar________::6580"], ["roar________::6167", "opendoar____::2717"], ["roar________::6167", "opendoar____::2717"]]] +[[["opendoar____::2571", "roar________::6033", "re3data_____::r3d100010701"], ["opendoar____::2571", "roar________::6033"], ["opendoar____::2571", "roar________::6033"]]] +[[["roar________::5528", "roar________::1492", "opendoar____::1637"], ["roar________::5528", "opendoar____::1637"], ["roar________::5528", "opendoar____::1637"]]] +[[["opendoar____::2385", "roar________::4684", "roar________::4626", "roar________::5480"], ["roar________::5480", "roar________::4684", "opendoar____::2385"], ["roar________::5480", "roar________::4684", "opendoar____::2385"]]] +[[["roar________::5446", "opendoar____::2503", "roar________::8469"], ["roar________::5446", "opendoar____::2503"], ["roar________::5446", "opendoar____::2503"]]] +[[["roar________::5215", "opendoar____::2472", "roar________::9932"], ["roar________::5215", "opendoar____::2472"], ["roar________::5215", "opendoar____::2472"]]] +[[["opendoar____::2402", "roar________::6564", "roar________::4967"], ["opendoar____::2402", "roar________::4967"], ["opendoar____::2402", "roar________::4967"]]] +[[["roar________::4727", "opendoar____::1282", "re3data_____::r3d100011219"], ["roar________::4727", "opendoar____::1282"], ["roar________::4727", "opendoar____::1282"]]] +[[["roar________::2790", "roar________::4685", "opendoar____::1829"], ["roar________::4685", "opendoar____::1829"], ["roar________::4685", "opendoar____::1829"]]] +[[["roar________::4675", "roar________::3889", "re3data_____::r3d100011249", "opendoar____::2170"], ["roar________::4675", "roar________::3889", "opendoar____::2170"], ["roar________::4675", "roar________::3889", "opendoar____::2170"]]] +[[["roar________::3739", "opendoar____::2010", "roar________::3403"], ["opendoar____::2010", "roar________::3403"], ["roar________::3403", "opendoar____::2010"]]] +[[["roar________::3270", "opendoar____::2002", "roar________::3271"], ["roar________::3270", "opendoar____::2002"], ["roar________::3270", "opendoar____::2002"]]] +[[["roar________::2810", "roar________::2787", "roar________::2788", "opendoar____::1830"], ["roar________::2787", "opendoar____::1830"], ["roar________::2787", "opendoar____::1830"]]] +[[["roar________::3762", "opendoar____::1155", "roar________::1159"], ["opendoar____::1155", "roar________::1159"], ["opendoar____::1155", "roar________::1159"]]] +[[["roar________::3172", "opendoar____::1609", "roar________::1272"], ["opendoar____::1609", "roar________::1272"], ["opendoar____::1609", "roar________::1272"]]] + + + +********** REGISTRY EXTENTION GROUPS ************** + + +[[["re3data_____::r3d100012274", "roar________::6428"], ["re3data_____::r3d100012274", "roar________::6428", "opendoar____::1122"], ["re3data_____::r3d100012274", "roar________::6428"]]] +[[["opendoar____::1409", "roar________::5572"], ["opendoar____::5533", "opendoar____::1409", "roar________::5572", "re3data_____::r3d100013665", "roar________::309"], ["opendoar____::1409", "roar________::5572"]]] +[[["opendoar____::3533", "re3data_____::r3d100013352"], ["opendoar____::3533", "roar________::10776", "re3data_____::r3d100013352"], ["opendoar____::3533", "re3data_____::r3d100013352"]]] +[[["re3data_____::r3d100013362", "opendoar____::1267"], ["roar________::10637", "roar________::272", "re3data_____::r3d100013362", "opendoar____::1267"], ["re3data_____::r3d100013362", "opendoar____::1267"]]] +[[["opendoar____::2587", "re3data_____::r3d100013382"], ["opendoar____::2587", "roar________::6088", "re3data_____::r3d100013382"], ["opendoar____::2587", "re3data_____::r3d100013382"]]] +[[["opendoar____::719", "roar________::5988"], ["opendoar____::719", "re3data_____::r3d100013394", "roar________::5988"], ["opendoar____::719", "roar________::5988"]]] +[[["opendoar____::1527", "re3data_____::r3d100013427"], ["opendoar____::1527", "roar________::1341", "re3data_____::r3d100013427", "roar________::9559"], ["opendoar____::1527", "re3data_____::r3d100013427"]]] +[[["opendoar____::1385", "roar________::8784"], ["opendoar____::1385", "roar________::1164", "roar________::8784"], ["opendoar____::1385", "roar________::8784"]]] +[[["roar________::5531", "opendoar____::1232"], ["roar________::5531", "opendoar____::1232", "roar________::1488"], ["roar________::5531", "opendoar____::1232"]]] +[[["roar________::4781", "opendoar____::464"], ["roar________::498", "roar________::4781", "opendoar____::464"], ["roar________::4781", "opendoar____::464"]]] +[[["roar________::784", "roar________::5756"], ["roar________::784", "roar________::7861", "opendoar____::510", "roar________::5756"], ["roar________::784", "roar________::5756"]]] +[[["opendoar____::510", "roar________::7861"], ["roar________::784", "roar________::7861", "opendoar____::510", "roar________::5756"], ["opendoar____::510", "roar________::7861"]]] +[[["roar________::4969", "opendoar____::586"], ["roar________::4969", "roar________::215", "opendoar____::586"], ["roar________::4969", "opendoar____::586"]]] +[[["roar________::3416", "roar________::2838"], ["roar________::3416", "opendoar____::567", "roar________::2838", "roar________::3522"], ["roar________::3416", "roar________::2838"]]] +[[["roar________::1568", "opendoar____::409"], ["roar________::1568", "roar________::1227", "opendoar____::409"], ["roar________::1568", "opendoar____::409"]]] +[[["opendoar____::1154", "roar________::9104"], ["roar________::9104", "opendoar____::1154", "roar________::333"], ["roar________::9104", "opendoar____::1154"]]] +[[["roar________::70", "opendoar____::1400"], ["roar________::70", "roar________::2347", "opendoar____::1400"], ["roar________::70", "opendoar____::1400"]]] +[[["roar________::5306", "opendoar____::2033"], ["roar________::5306", "roar________::2511", "opendoar____::2033"], ["roar________::5306", "opendoar____::2033"]]] +[[["roar________::5429", "opendoar____::460"], ["roar________::457", "opendoar____::460", "roar________::5429"], ["roar________::5429", "opendoar____::460"]]] +[[["opendoar____::1623", "roar________::4440"], ["opendoar____::1623", "roar________::4440", "roar________::4683"], ["opendoar____::1623", "roar________::4440"]]] +[[["roar________::5204", "opendoar____::1700"], ["roar________::1132", "roar________::5204", "opendoar____::1700"], ["roar________::5204", "opendoar____::1700"]]] +[[["opendoar____::867", "roar________::5421"], ["opendoar____::867", "roar________::1247", "roar________::5421"], ["opendoar____::867", "roar________::5421"]]] +[[["roar________::2526", "opendoar____::346"], ["roar________::1419", "roar________::2526", "opendoar____::346"], ["roar________::2526", "opendoar____::346"]]] +[[["opendoar____::137", "roar________::4995"], ["opendoar____::137", "roar________::4995", "roar________::500"], ["opendoar____::137", "roar________::4995"]]] +[[["roar________::5186", "opendoar____::76"], ["roar________::5186", "opendoar____::76", "roar________::280"], ["roar________::5186", "opendoar____::76"]]] +[[["roar________::3930", "roar________::5695", "roar________::5461"], ["roar________::5695", "opendoar____::2053", "roar________::3579", "roar________::3930", "roar________::5461"], ["roar________::3930", "roar________::5695", "roar________::5461"]]] +[[["opendoar____::2193", "roar________::5546"], ["opendoar____::2193", "roar________::5546", "roar________::3925"], ["opendoar____::2193", "roar________::5546"]]] +[[["opendoar____::1932", "roar________::4934"], ["opendoar____::1932", "roar________::3207", "roar________::4934"], ["opendoar____::1932", "roar________::4934"]]] +[[["roar________::277", "roar________::5442"], ["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"], ["roar________::277", "roar________::5442"]]] +[[["opendoar____::410", "roar________::16196"], ["opendoar____::410", "roar________::277", "roar________::16196", "roar________::5442"], ["opendoar____::410", "roar________::16196"]]] +[[["opendoar____::1437", "roar________::3553"], ["opendoar____::1437", "roar________::3553", "roar________::1095"], ["opendoar____::1437", "roar________::3553"]]] +[[["roar________::5885", "opendoar____::2004"], ["roar________::5885", "roar________::3358", "opendoar____::2004"], ["roar________::5885", "opendoar____::2004"]]] +[[["roar________::4680", "opendoar____::1009"], ["roar________::4680", "opendoar____::1009", "roar________::1382"], ["roar________::4680", "opendoar____::1009"]]] +[[["roar________::5584", "opendoar____::1485"], ["opendoar____::1485", "roar________::5584", "roar________::1497"], ["roar________::5584", "opendoar____::1485"]]] +[[["opendoar____::524", "roar________::5265"], ["roar________::380", "opendoar____::524", "roar________::5265"], ["opendoar____::524", "roar________::5265"]]] +[[["roar________::2918", "opendoar____::1855"], ["opendoar____::1855", "roar________::2928", "roar________::2918"], ["opendoar____::1855", "roar________::2918"]]] +[[["opendoar____::432", "roar________::4677"], ["roar________::834", "opendoar____::432", "roar________::4677"], ["opendoar____::432", "roar________::4677"]]] +[[["opendoar____::462", "roar________::5264"], ["roar________::478", "opendoar____::462", "roar________::5264"], ["opendoar____::462", "roar________::5264"]]] +[[["roar________::4687", "opendoar____::1445"], ["roar________::106", "opendoar____::1445", "roar________::4687"], ["roar________::4687", "opendoar____::1445"]]] +[[["roar________::3419", "opendoar____::959"], ["roar________::3419", "roar________::3148", "opendoar____::959", "roar________::293"], ["roar________::3419", "opendoar____::959"]]] +[[["opendoar____::497", "roar________::4637"], ["roar________::1206", "opendoar____::497", "roar________::4637"], ["opendoar____::497", "roar________::4637"]]] +[[["roar________::4726", "opendoar____::179"], ["roar________::4726", "roar________::722", "opendoar____::179"], ["roar________::4726", "opendoar____::179"]]] +[[["opendoar____::2087", "roar________::3663"], ["roar________::3539", "opendoar____::2087", "roar________::3663"], ["opendoar____::2087", "roar________::3663"]]] +[[["roar________::2391", "opendoar____::1443"], ["roar________::2391", "roar________::958", "opendoar____::1443", "roar________::3126"], ["roar________::2391", "opendoar____::1443"]]] +[[["roar________::4789", "opendoar____::1501"], ["roar________::4789", "opendoar____::1501", "roar________::1085"], ["roar________::4789", "opendoar____::1501"]]] +[[["roar________::3385", "opendoar____::2149"], ["roar________::3385", "opendoar____::2149", "roar________::3804"], ["roar________::3385", "opendoar____::2149"]]] +[[["opendoar____::2231", "roar________::4133"], ["opendoar____::2231", "roar________::2936", "roar________::4133"], ["opendoar____::2231", "roar________::4133"]]] +[[["roar________::5001", "opendoar____::14"], ["roar________::5001", "opendoar____::14", "roar________::80"], ["roar________::5001", "opendoar____::14"]]] +[[["roar________::5445", "opendoar____::1226"], ["roar________::5445", "roar________::936", "opendoar____::1226"], ["roar________::5445", "opendoar____::1226"]]] +[[["opendoar____::889", "roar________::2346"], ["roar________::98", "opendoar____::889", "roar________::2346"], ["opendoar____::889", "roar________::2346"]]] +[[["roar________::4636", "opendoar____::1165"], ["roar________::4636", "opendoar____::1165", "roar________::671"], ["roar________::4636", "opendoar____::1165"]]] +[[["opendoar____::1891", "roar________::2943"], ["opendoar____::1891", "roar________::1059", "roar________::2943"], ["opendoar____::1891", "roar________::2943"]]] +[[["opendoar____::242", "roar________::4932"], ["roar________::979", "roar________::4932", "opendoar____::242"], ["opendoar____::242", "roar________::4932"]]] +[[["opendoar____::1702", "roar________::4962"], ["opendoar____::1702", "roar________::547", "roar________::4962"], ["opendoar____::1702", "roar________::4962"]]] +[[["roar________::3109", "opendoar____::581"], ["roar________::3109", "roar________::384", "opendoar____::581"], ["roar________::3109", "opendoar____::581"]]] +[[["roar________::528", "roar________::5564"], ["roar________::7062", "opendoar____::1396", "roar________::528", "roar________::5564"], ["roar________::528", "roar________::5564"]]] +[[["roar________::5449", "roar________::5072"], ["roar________::5072", "roar________::12785", "roar________::5449", "opendoar____::2452"], ["roar________::5449", "roar________::5072"]]] +[[["roar________::13385", "opendoar____::601", "roar________::13359"], ["roar________::13385", "roar________::749", "opendoar____::601", "roar________::13359"], ["roar________::13385", "opendoar____::601", "roar________::13359"]]] +[[["opendoar____::931", "roar________::2392"], ["roar________::746", "opendoar____::931", "roar________::2392"], ["opendoar____::931", "roar________::2392"]]] +[[["opendoar____::2339", "roar________::5184"], ["opendoar____::2339", "roar________::4308", "roar________::5184"], ["opendoar____::2339", "roar________::5184"]]] +[[["roar________::2649", "roar________::6393"], ["opendoar____::2063", "roar________::2649", "roar________::6393"], ["roar________::2649", "roar________::6393"]]] +[[["roar________::14150", "opendoar____::1528"], ["roar________::14150", "roar________::4983", "opendoar____::1528", "roar________::383"], ["roar________::14150", "opendoar____::1528"]]] +[[["roar________::3992", "roar________::5185"], ["roar________::10577", "roar________::1541", "roar________::3992", "roar________::5185", "opendoar____::1391"], ["roar________::3992", "roar________::5185"]]] +[[["roar________::3202", "roar________::2856"], ["roar________::3202", "roar________::2856", "roar________::2846", "opendoar____::1845"], ["roar________::3202", "roar________::2856"]]] +[[["opendoar____::283", "roar________::5127"], ["opendoar____::283", "roar________::5127", "roar________::3420"], ["opendoar____::283", "roar________::5127"]]] +[[["roar________::2839", "opendoar____::403"], ["roar________::93", "roar________::2839", "opendoar____::403"], ["roar________::2839", "opendoar____::403"]]] +[[["roar________::4590", "roar________::5530", "opendoar____::1760"], ["roar________::4590", "roar________::2608", "roar________::5530", "opendoar____::1760"], ["roar________::4590", "roar________::5530", "opendoar____::1760"]]] +[[["roar________::3401", "roar________::5252", "roar________::3020"], ["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"], ["roar________::3401", "roar________::5252", "roar________::3020"]]] +[[["roar________::2995", "opendoar____::1879"], ["roar________::3401", "opendoar____::1879", "roar________::2995", "roar________::3020", "roar________::5252"], ["roar________::2995", "opendoar____::1879"]]] +[[["roar________::5258", "opendoar____::1875"], ["roar________::5258", "roar________::2849", "opendoar____::1875"], ["roar________::5258", "opendoar____::1875"]]] +[[["opendoar____::2047", "roar________::5514"], ["roar________::3554", "opendoar____::2047", "roar________::5514"], ["opendoar____::2047", "roar________::5514"]]] +[[["opendoar____::393", "roar________::5003"], ["opendoar____::393", "roar________::5003", "roar________::801"], ["opendoar____::393", "roar________::5003"]]] +[[["roar________::1243", "roar________::5553"], ["roar________::1243", "roar________::5553", "opendoar____::501"], ["roar________::1243", "roar________::5553"]]] +[[["opendoar____::471", "roar________::4719"], ["opendoar____::471", "roar________::1513", "roar________::2400", "roar________::4719"], ["opendoar____::471", "roar________::4719"]]] +[[["roar________::1349", "roar________::4676"], ["roar________::1349", "roar________::4676", "opendoar____::972"], ["roar________::1349", "roar________::4676"]]] +[[["roar________::1241", "roar________::4998"], ["roar________::1241", "roar________::11182", "opendoar____::1627", "roar________::4998"], ["roar________::1241", "roar________::4998"]]] +[[["roar________::5474", "opendoar____::1080"], ["roar________::64", "roar________::5474", "opendoar____::1080"], ["roar________::5474", "opendoar____::1080"]]] +[[["roar________::2425", "opendoar____::400"], ["roar________::2425", "roar________::471", "opendoar____::400"], ["roar________::2425", "opendoar____::400"]]] +[[["roar________::7829", "roar________::6688"], ["roar________::7829", "roar________::6688", "opendoar____::2804"], ["roar________::7829", "roar________::6688"]]] +[[["roar________::6199", "opendoar____::2381"], ["roar________::5795", "roar________::6199", "opendoar____::2381"], ["roar________::6199", "opendoar____::2381"]]] +[[["roar________::5986", "opendoar____::2123"], ["opendoar____::2123", "roar________::3736", "roar________::5986"], ["opendoar____::2123", "roar________::5986"]]] +[[["roar________::1106", "opendoar____::1061"], ["roar________::5889", "roar________::1106", "opendoar____::1061"], ["roar________::1106", "opendoar____::1061"]]] +[[["opendoar____::1678", "roar________::5720"], ["roar________::1474", "opendoar____::1678", "roar________::5720"], ["opendoar____::1678", "roar________::5720"]]] +[[["roar________::5157", "opendoar____::2465", "roar________::5687"], ["roar________::5041", "opendoar____::2465", "roar________::5687", "roar________::5157"], ["roar________::5157", "opendoar____::2465", "roar________::5687"]]] +[[["roar________::1139", "roar________::5628"], ["roar________::1139", "opendoar____::935", "roar________::5628"], ["roar________::1139", "roar________::5628"]]] +[[["roar________::5587", "roar________::3214"], ["roar________::5587", "opendoar____::1916", "roar________::3214", "roar________::3158"], ["roar________::5587", "roar________::3214"]]] +[[["roar________::5571", "opendoar____::1518"], ["roar________::5571", "opendoar____::1518", "roar________::789"], ["roar________::5571", "opendoar____::1518"]]] +[[["roar________::5548", "roar________::761"], ["opendoar____::1470", "roar________::5548", "roar________::761"], ["roar________::5548", "roar________::761"]]] +[[["opendoar____::1178", "roar________::5538"], ["roar________::426", "opendoar____::1178", "roar________::5538"], ["opendoar____::1178", "roar________::5538"]]] +[[["roar________::5423", "opendoar____::1583"], ["roar________::5423", "opendoar____::1583", "roar________::412"], ["roar________::5423", "opendoar____::1583"]]] +[[["roar________::5234", "roar________::5237"], ["roar________::5234", "roar________::5237", "opendoar____::2490"], ["roar________::5234", "roar________::5237"]]] +[[["roar________::5221", "roar________::2328"], ["opendoar____::239", "roar________::976", "roar________::5221", "roar________::2328"], ["roar________::5221", "roar________::2328"]]] +[[["roar________::7274", "roar________::6225"], ["opendoar____::2599", "roar________::7274", "roar________::6225"], ["roar________::7274", "roar________::6225"]]] +[[["opendoar____::2403", "roar________::4707"], ["opendoar____::2403", "roar________::4533", "roar________::4707"], ["opendoar____::2403", "roar________::4707"]]] +[[["opendoar____::2046", "roar________::5560"], ["roar________::3701", "opendoar____::2046", "roar________::5560"], ["opendoar____::2046", "roar________::5560"]]] +[[["opendoar____::2040", "roar________::3551"], ["opendoar____::2040", "roar________::3512", "roar________::3551"], ["opendoar____::2040", "roar________::3551"]]] +[[["roar________::4075", "roar________::3387"], ["roar________::4075", "opendoar____::2015", "roar________::3387"], ["roar________::4075", "roar________::3387"]]] +[[["roar________::3089", "opendoar____::1888"], ["roar________::3089", "roar________::3054", "opendoar____::1888"], ["roar________::3089", "opendoar____::1888"]]] +[[["opendoar____::1903", "roar________::10021"], ["opendoar____::1903", "roar________::3119", "roar________::10021"], ["opendoar____::1903", "roar________::10021"]]] +[[["opendoar____::1912", "roar________::3108"], ["roar________::3108", "opendoar____::1912", "roar________::3106"], ["opendoar____::1912", "roar________::3108"]]] +[[["roar________::2820", "roar________::2372"], ["roar________::2820", "roar________::2372", "opendoar____::1717"], ["roar________::2820", "roar________::2372"]]] +[[["roar________::4977", "opendoar____::1694"], ["roar________::4977", "opendoar____::1694", "roar________::684"], ["roar________::4977", "opendoar____::1694"]]] +[[["roar________::11100", "roar________::893"], ["roar________::11100", "roar________::893", "opendoar____::1698"], ["roar________::11100", "roar________::893"]]] +[[["opendoar____::1472", "roar________::5536"], ["roar________::595", "opendoar____::1472", "roar________::5536"], ["opendoar____::1472", "roar________::5536"]]] +[[["roar________::3080", "roar________::3651"], ["opendoar____::1899", "roar________::3080", "roar________::3651"], ["roar________::3080", "roar________::3651"]]] +[[["opendoar____::1217", "roar________::845"], ["opendoar____::1217", "roar________::3084", "roar________::845"], ["opendoar____::1217", "roar________::845"]]] +[[["opendoar____::938", "roar________::3508"], ["roar________::1103", "opendoar____::938", "roar________::3508"], ["opendoar____::938", "roar________::3508"]]] +[[["opendoar____::1036", "roar________::12023"], ["roar________::724", "opendoar____::1036", "roar________::12023"], ["opendoar____::1036", "roar________::12023"]]] +[[["roar________::3087", "roar________::5205"], ["opendoar____::1898", "roar________::3087", "roar________::5205"], ["roar________::3087", "roar________::5205"]]] +[[["roar________::4717", "opendoar____::1140"], ["roar________::4717", "roar________::175", "opendoar____::1140"], ["roar________::4717", "opendoar____::1140"]]] +[[["opendoar____::562", "roar________::5569"], ["roar________::467", "opendoar____::562", "roar________::5569"], ["opendoar____::562", "roar________::5569"]]] +[[["opendoar____::963", "roar________::4952"], ["roar________::353", "opendoar____::963", "roar________::4952"], ["opendoar____::963", "roar________::4952"]]] +[[["roar________::2344", "opendoar____::383"], ["roar________::2344", "opendoar____::383", "roar________::6"], ["roar________::2344", "opendoar____::383"]]] +[[["roar________::2340", "opendoar____::258"], ["roar________::2340", "opendoar____::258", "roar________::10"], ["roar________::2340", "opendoar____::258"]]] +[[["roar________::2341", "opendoar____::259"], ["roar________::2341", "opendoar____::259", "roar________::5"], ["roar________::2341", "opendoar____::259"]]] +[[["roar________::2332", "opendoar____::263"], ["roar________::12", "roar________::2332", "opendoar____::263"], ["roar________::2332", "opendoar____::263"]]] +[[["roar________::2334", "opendoar____::260", "roar________::3287"], ["roar________::2334", "opendoar____::260", "roar________::7", "roar________::3287"], ["roar________::2334", "roar________::3287", "opendoar____::260"]]] +[[["roar________::2322", "opendoar____::361"], ["opendoar____::361", "roar________::17", "roar________::2322"], ["opendoar____::361", "roar________::2322"]]] +[[["opendoar____::264", "roar________::2337"], ["roar________::2337", "opendoar____::264", "roar________::14"], ["opendoar____::264", "roar________::2337"]]] +[[["roar________::2327", "opendoar____::384"], ["roar________::2327", "roar________::20", "opendoar____::384"], ["roar________::2327", "opendoar____::384"]]] +[[["roar________::9782", "opendoar____::965"], ["roar________::1540", "roar________::9782", "opendoar____::965"], ["roar________::9782", "opendoar____::965"]]] +[[["opendoar____::2187", "roar________::3976"], ["roar________::5083", "opendoar____::2187", "roar________::3976", "roar________::5067"], ["opendoar____::2187", "roar________::3976"]]] +[[["opendoar____::2111", "roar________::5189"], ["opendoar____::2111", "roar________::3766", "roar________::5189", "roar________::3615"], ["opendoar____::2111", "roar________::5189"]]] +[[["opendoar____::1994", "roar________::3931"], ["roar________::3341", "opendoar____::1994", "roar________::3931"], ["opendoar____::1994", "roar________::3931"]]] +[[["opendoar____::986", "roar________::12410"], ["opendoar____::986", "roar________::1202", "roar________::12410"], ["opendoar____::986", "roar________::12410"]]] +[[["opendoar____::1763", "roar________::4635"], ["opendoar____::1763", "roar________::4635", "roar________::2610"], ["opendoar____::1763", "roar________::4635"]]] +[[["roar________::2323", "opendoar____::262"], ["roar________::2323", "opendoar____::262", "roar________::13"], ["roar________::2323", "opendoar____::262"]]] +[[["roar________::6361", "opendoar____::1375"], ["roar________::1096", "roar________::6361", "opendoar____::1375"], ["roar________::6361", "opendoar____::1375"]]] +[[["opendoar____::1868", "roar________::4020"], ["opendoar____::1868", "roar________::2992", "roar________::4020"], ["opendoar____::1868", "roar________::4020"]]] +[[["roar________::5559", "opendoar____::2378"], ["roar________::5559", "roar________::4589", "opendoar____::2378"], ["roar________::5559", "opendoar____::2378"]]] +[[["roar________::4987", "opendoar____::1299"], ["roar________::4987", "roar________::161", "opendoar____::1299"], ["roar________::4987", "opendoar____::1299"]]] +[[["opendoar____::914", "roar________::15186"], ["opendoar____::914", "roar________::5506", "roar________::15186", "roar________::1466"], ["opendoar____::914", "roar________::15186"]]] +[[["roar________::5506", "roar________::1466"], ["opendoar____::914", "roar________::5506", "roar________::15186", "roar________::1466"], ["roar________::5506", "roar________::1466"]]] +[[["roar________::2312", "roar________::5495", "opendoar____::1149"], ["roar________::5495", "roar________::2312", "roar________::602", "opendoar____::1149"], ["roar________::2312", "roar________::5495", "opendoar____::1149"]]] +[[["opendoar____::365", "roar________::5453"], ["opendoar____::365", "roar________::5453", "roar________::1481"], ["opendoar____::365", "roar________::5453"]]] +[[["roar________::5535", "roar________::419"], ["opendoar____::1604", "roar________::419", "roar________::5535", "roar________::5987"], ["roar________::5535", "roar________::419"]]] +[[["roar________::15183", "roar________::16081"], ["roar________::3634", "roar________::16081", "roar________::5492", "roar________::15183", "opendoar____::2089"], ["roar________::15183", "roar________::16081"]]] +[[["roar________::5492", "roar________::3634"], ["roar________::3634", "roar________::16081", "roar________::5492", "roar________::15183", "opendoar____::2089"], ["roar________::5492", "roar________::3634"]]] +[[["roar________::5550", "roar________::1019"], ["roar________::5550", "opendoar____::1441", "roar________::14050", "roar________::1019"], ["roar________::5550", "roar________::1019"]]] +[[["roar________::3986", "roar________::3230"], ["roar________::3986", "roar________::3230", "opendoar____::2135"], ["roar________::3986", "roar________::3230"]]] +[[["opendoar____::1240", "roar________::3256"], ["opendoar____::1240", "roar________::1287", "roar________::3256", "roar________::2402"], ["opendoar____::1240", "roar________::3256"]]] +[[["opendoar____::2483", "roar________::5280", "roar________::5511"], ["opendoar____::2483", "roar________::5280", "roar________::5511", "roar________::8240"], ["opendoar____::2483", "roar________::5280", "roar________::5511"]]] +[[["roar________::5558", "opendoar____::982"], ["roar________::505", "roar________::5558", "opendoar____::982"], ["roar________::5558", "opendoar____::982"]]] +[[["roar________::4946", "roar________::5544"], ["opendoar____::2293", "roar________::4946", "roar________::5181", "roar________::5544"], ["roar________::4946", "roar________::5544"]]] +[[["opendoar____::2293", "roar________::5181"], ["opendoar____::2293", "roar________::4946", "roar________::5181", "roar________::5544"], ["opendoar____::2293", "roar________::5181"]]] +[[["roar________::5983", "opendoar____::355"], ["roar________::1490", "roar________::5983", "opendoar____::355"], ["roar________::5983", "opendoar____::355"]]] +[[["roar________::5698", "opendoar____::1108"], ["roar________::647", "roar________::5698", "opendoar____::1108"], ["roar________::5698", "opendoar____::1108"]]] +[[["roar________::692", "roar________::5540"], ["roar________::692", "opendoar____::1562", "roar________::5540"], ["roar________::692", "roar________::5540"]]] +[[["opendoar____::218", "roar________::5489"], ["roar________::5489", "opendoar____::218", "roar________::858"], ["opendoar____::218", "roar________::5489"]]] +[[["opendoar____::1110", "roar________::4925"], ["opendoar____::1110", "roar________::4925", "roar________::818"], ["opendoar____::1110", "roar________::4925"]]] +[[["roar________::5422", "opendoar____::138"], ["roar________::5422", "roar________::501", "opendoar____::138", "roar________::5263"], ["roar________::5422", "opendoar____::138"]]] +[[["opendoar____::1971", "roar________::5522"], ["opendoar____::1971", "roar________::3226", "roar________::5522"], ["opendoar____::1971", "roar________::5522"]]] +[[["opendoar____::1696", "roar________::2784"], ["roar________::2421", "roar________::2784", "opendoar____::1696", "roar________::2551"], ["opendoar____::1696", "roar________::2784"]]] +[[["opendoar____::1158", "roar________::5497", "roar________::5683"], ["opendoar____::1158", "roar________::1552", "roar________::5497", "roar________::5683"], ["opendoar____::1158", "roar________::5497", "roar________::5683"]]] +[[["roar________::5432", "roar________::4030"], ["opendoar____::2211", "roar________::5432", "roar________::4030"], ["roar________::5432", "roar________::4030"]]] +[[["opendoar____::1660", "roar________::4968"], ["opendoar____::1660", "roar________::1560", "roar________::4968"], ["opendoar____::1660", "roar________::4968"]]] +[[["roar________::5888", "opendoar____::377"], ["roar________::5888", "opendoar____::377", "roar________::1539"], ["roar________::5888", "opendoar____::377"]]] +[[["opendoar____::2588", "roar________::11231"], ["opendoar____::2588", "roar________::6173", "roar________::11231"], ["opendoar____::2588", "roar________::11231"]]] +[[["roar________::4992", "roar________::3682"], ["opendoar____::2098", "roar________::4992", "roar________::3682"], ["roar________::4992", "roar________::3682"]]] +[[["opendoar____::1873", "roar________::17564"], ["opendoar____::1873", "roar________::8605", "roar________::17564"], ["opendoar____::1873", "roar________::17564"]]] +[[["roar________::15954", "roar________::16230"], ["opendoar____::3147", "roar________::15954", "roar________::16230"], ["roar________::15954", "roar________::16230"]]] +[[["opendoar____::660", "roar________::15528"], ["roar________::7162", "roar________::15528", "opendoar____::660"], ["roar________::15528", "opendoar____::660"]]] +[[["opendoar____::4701", "roar________::15071"], ["opendoar____::4701", "roar________::15261", "roar________::15071"], ["opendoar____::4701", "roar________::15071"]]] +[[["roar________::15039", "roar________::15036"], ["roar________::15036", "roar________::15039", "opendoar____::4379"], ["roar________::15039", "roar________::15036"]]] +[[["roar________::14919", "roar________::14918"], ["roar________::14919", "opendoar____::1313", "roar________::14918"], ["roar________::14919", "roar________::14918"]]] +[[["roar________::12777", "opendoar____::1786"], ["roar________::12777", "opendoar____::1786", "roar________::2708"], ["roar________::12777", "opendoar____::1786"]]] +[[["roar________::10545", "roar________::14547"], ["roar________::10545", "opendoar____::3539", "roar________::14547"], ["roar________::10545", "roar________::14547"]]] +[[["roar________::10244", "roar________::10243"], ["opendoar____::3460", "roar________::10244", "roar________::10243"], ["roar________::10244", "roar________::10243"]]] +[[["opendoar____::2825", "roar________::9878"], ["roar________::6490", "opendoar____::2825", "roar________::9878"], ["opendoar____::2825", "roar________::9878"]]] +[[["roar________::5052", "opendoar____::2441"], ["roar________::9597", "roar________::5052", "opendoar____::2441"], ["roar________::5052", "opendoar____::2441"]]] +[[["opendoar____::2533", "roar________::9142"], ["roar________::5717", "opendoar____::2533", "roar________::9142"], ["opendoar____::2533", "roar________::9142"]]] +[[["opendoar____::2528", "roar________::8647"], ["roar________::5704", "opendoar____::2528", "roar________::8647"], ["opendoar____::2528", "roar________::8647"]]] +[[["roar________::7932", "opendoar____::2959"], ["roar________::8103", "roar________::7932", "opendoar____::2959"], ["opendoar____::2959", "roar________::7932"]]] +[[["opendoar____::1312", "roar________::7767"], ["roar________::5486", "opendoar____::1312", "roar________::7767"], ["opendoar____::1312", "roar________::7767"]]] +[[["roar________::7498", "roar________::7483"], ["roar________::7498", "roar________::7483", "opendoar____::2824"], ["roar________::7498", "roar________::7483"]]] +[[["roar________::5759", "opendoar____::1892"], ["roar________::3049", "roar________::5759", "opendoar____::1892"], ["opendoar____::1892", "roar________::5759"]]] +[[["opendoar____::1297", "roar________::5743"], ["roar________::771", "opendoar____::1297", "roar________::5743"], ["opendoar____::1297", "roar________::5743"]]] +[[["roar________::4940", "roar________::5709"], ["roar________::4940", "opendoar____::2321", "roar________::5709"], ["roar________::4940", "roar________::5709"]]] +[[["roar________::5707", "opendoar____::1377"], ["roar________::5707", "opendoar____::1377", "roar________::234"], ["roar________::5707", "opendoar____::1377"]]] +[[["opendoar____::2496", "roar________::5618"], ["opendoar____::2496", "roar________::5618", "roar________::5498"], ["opendoar____::2496", "roar________::5618"]]] +[[["roar________::5541", "roar________::474"], ["roar________::5541", "roar________::474", "opendoar____::1254"], ["roar________::5541", "roar________::474"]]] +[[["roar________::4999", "roar________::5524", "roar________::2723"], ["roar________::4999", "roar________::5524", "opendoar____::1815", "roar________::2723"], ["roar________::4999", "roar________::5524", "roar________::2723"]]] +[[["roar________::5507", "opendoar____::891"], ["roar________::5507", "roar________::395", "opendoar____::891"], ["roar________::5507", "opendoar____::891"]]] +[[["roar________::5482", "roar________::5214"], ["opendoar____::2477", "roar________::5482", "roar________::5214"], ["roar________::5482", "roar________::5214"]]] +[[["roar________::5437", "roar________::3115"], ["roar________::5437", "roar________::3115", "opendoar____::1644"], ["roar________::5437", "roar________::3115"]]] +[[["roar________::2335", "roar________::3083"], ["roar________::2335", "roar________::3083", "opendoar____::691", "roar________::5403"], ["roar________::2335", "roar________::3083"]]] +[[["opendoar____::691", "roar________::5403"], ["roar________::2335", "roar________::3083", "opendoar____::691", "roar________::5403"], ["opendoar____::691", "roar________::5403"]]] +[[["opendoar____::1354", "roar________::5283"], ["roar________::5283", "roar________::3486", "opendoar____::1354"], ["opendoar____::1354", "roar________::5283"]]] +[[["roar________::5218", "opendoar____::2225"], ["roar________::5218", "roar________::4086", "opendoar____::2225"], ["roar________::5218", "opendoar____::2225"]]] +[[["roar________::3199", "roar________::5210"], ["roar________::3199", "roar________::5210", "opendoar____::1944"], ["roar________::3199", "roar________::5210"]]] +[[["opendoar____::1563", "roar________::4986"], ["opendoar____::1563", "roar________::4986", "roar________::939"], ["opendoar____::1563", "roar________::4986"]]] +[[["opendoar____::472", "roar________::4947"], ["opendoar____::472", "roar________::4947", "roar________::472"], ["opendoar____::472", "roar________::4947"]]] +[[["roar________::3757", "roar________::4943"], ["roar________::3757", "roar________::4943", "opendoar____::2124"], ["roar________::3757", "roar________::4943"]]] +[[["opendoar____::1837", "roar________::4790"], ["opendoar____::1837", "roar________::4790", "roar________::2662"], ["opendoar____::1837", "roar________::4790"]]] +[[["roar________::3149", "opendoar____::1922"], ["roar________::3149", "roar________::4785", "opendoar____::1922"], ["roar________::3149", "opendoar____::1922"]]] +[[["opendoar____::1287", "roar________::4641"], ["opendoar____::1287", "roar________::4641", "roar________::108"], ["opendoar____::1287", "roar________::4641"]]] +[[["roar________::4292", "roar________::3484"], ["roar________::4292", "roar________::3484", "opendoar____::2028"], ["roar________::4292", "roar________::3484"]]] +[[["roar________::310", "roar________::3409"], ["opendoar____::1361", "roar________::310", "roar________::3409"], ["roar________::310", "roar________::3409"]]] +[[["opendoar____::287", "roar________::3086"], ["opendoar____::287", "roar________::1207", "roar________::3086"], ["opendoar____::287", "roar________::3086"]]] +[[["roar________::2970", "opendoar____::1615"], ["roar________::2970", "opendoar____::1615", "roar________::665"], ["roar________::2970", "opendoar____::1615"]]] +[[["roar________::2836", "opendoar____::1442"], ["roar________::1151", "roar________::2836", "opendoar____::1442"], ["roar________::2836", "opendoar____::1442"]]] +[[["opendoar____::1712", "roar________::2532"], ["opendoar____::1712", "roar________::2432", "roar________::2532"], ["opendoar____::1712", "roar________::2532"]]] diff --git a/data/out/report_registry_groups.txt b/data/out/report_registry_groups.txt new file mode 100644 index 0000000..1bbc381 --- /dev/null +++ b/data/out/report_registry_groups.txt @@ -0,0 +1,5 @@ +Fairsharing references to re3data = 787 +Re3Data references to Fairsharing = 452 +Re3Data references to opendoar = 20 +Re3Data references to roar = 9 +ROAR references to opendoar = 3174 diff --git a/data/out/toCheckGroups.txt b/data/out/toCheckGroups.txt new file mode 100644 index 0000000..9557215 --- /dev/null +++ b/data/out/toCheckGroups.txt @@ -0,0 +1,6 @@ +["fairsharing_::3652", "re3data_____::r3d100012729"] +["re3data_____::r3d100010543", "fairsharing_::3340"] +["re3data_____::r3d100010412", "fairsharing_::2424"] +["re3data_____::r3d100011257", "fairsharing_::1730"] +["fairsharing_::2163", "re3data_____::r3d100011343"] +["fairsharing_::2524", "re3data_____::r3d100013223"]